* {
  margin: 0;
  padding: 0;
	 box-sizing: border-box;
}

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
   line-height: 1.6;
  color: #333;
  overflow-x: hidden;
}

.container {
	    max-width: 1200px;
   margin: 0 auto;
   padding: 0 20px;
}

.main-navigation {
   position: fixed;
    top    : 0;
  width: 100%;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
    z-index: 1000;
   transition: all 0.3s ease;
    padding: 15px 0;
}

.main-navigation.scrolled {
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 2px 20px rgba(0,0,0,0.1);
  padding: 10px 0;
}

.nav-wrapper {
   max-width: 1200px;
  margin: 0 auto;
    padding: 0 20px;
  display: flex;
    justify-content  :        space-between;
  align-items: center;
}

.company-logo

{
   height     :       45px;
         width: auto;
}

.nav-links		{
	      display: flex;
   list-style  :    none;
  gap : 40px;}

.nav-links a {
    color: #333;
  transition: color 0.3s ease;
    font-weight: 500;
   position: relative;
  text-decoration: none;
}

.nav-links a:hover {
   color: #2c5aa0;
}

.nav-links a::after {
  content: '';
  position: absolute;
  width: 0;
    height: 2px;
    bottom: -5px;
    left: 0;
    background-color: #2c5aa0;
   transition: width 0.3s ease;
}

.nav-links a:hover::after {
    width     :    100%;
}


.burger-menu


{
    display: none;
    flex-direction   :    column;
    cursor: pointer;
}

.burger-menu span {
   width  :25px;
	height: 3px;
        background: #333;
   margin: 3px 0;
    transition: 0.3s;
}

.burger-menu.active span:nth-child(1) {
  transform: rotate(-45deg) translate(-5px, 6px);
}

.burger-menu.active span:nth-child(2) {
    opacity: 0;
}

.burger-menu.active span:nth-child(3) {
  transform: rotate(45deg) translate(-5px, -6px);
}

.mobile-menu {
    display: none;
   background: white;
  position: absolute;
         top: 100%;
    left   :      0;
    width: 100%;
  box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.mobile-menu.active {
   display: block;
}

.mobile-menu ul {
   list-style: none;
   padding: 20px;
}

.mobile-menu li

{
  margin: 15px 0;
}

.mobile-menu a {
    text-decoration: none;
   color: #333;
   font-size: 18px;
    font-weight: 500;
}

.hero-section {
    margin-top: 80px;
  padding:       100px 0;
  background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
  display: flex;
  align-items: center;
  min-height: 70vh;
}

.hero-content {
    max-width: 1200px;
               margin: 0 auto;
  padding: 0 20px;
  display: grid;
	 grid-template-columns: 1fr 1fr;
	 gap: 60px;
  align-items: center;
}

.hero-content h1   {
	    font-size: 3.2rem;
   color: #2c3e50;
   margin-bottom:       25px;
    line-height: 1.2;
  font-weight: 700;
	}  

.hero-description {
	font-size: 1.2rem;
   color: #666;
  margin-bottom: 35px;
  line-height: 1.7;
}

.hero-buttons {
  gap: 20px;
       display: flex;
      flex-wrap:    wrap;
}

.primary-btn, .secondary-btn {
	  padding   :   15px 30px;
    text-decoration: none;
  border-radius   :  8px;
    font-weight   :        600;
   transition: all 0.3s ease;
          display: inline-block;
     }

.primary-btn {
    background: #2c5aa0;
  color: white;


}

.primary-btn:hover {
 background: #1e3f73;
  transform: translateY(-2px); 
	
}

.secondary-btn {
	background: transparent;
  color: #2c5aa0;
    border     :  2px solid #2c5aa0;
}

.secondary-btn:hover {
   background: #2c5aa0;
  color: white;
}

.hero-image {
   width: 100%;
   height: auto;
  border-radius: 15px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.motivation-systems {
    background: white;
  padding: 100px 0;
	}

.motivation-systems h2   {

  margin-bottom    :  60px; 
          font-size: 2.8rem; 
  text-align: center; 
  color: #2c3e50; 
  font-weight  :     700;


}

.systems-grid 
 {
    display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
	 gap: 40px;
}

.system-card		{
	background: #f8f9fa;
   padding: 40px;
   border-radius: 15px;
    text-align: center;
   transition: transform 0.3s ease, box-shadow 0.3s ease;
}



.system-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0,0,0,0.1);
	
}

.system-card img {
  width: 100%;
    height: 200px;
  object-fit: cover;
    border-radius: 10px;
   margin-bottom: 25px; 

}

.system-card h3 {


   font-size: 1.5rem;
  color: #2c3e50;
   margin-bottom: 20px;
	font-weight: 600;
	}

.system-card p	{
  color: #666;
       line-height: 1.6;
}

.webinar-section
	{
	padding: 100px 0;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
}

.webinar-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
   gap: 60px;
    align-items: center;
}

.webinar-content h2 {
     font-size    :     2.5rem;
     margin-bottom: 25px;
  font-weight    : 700;
     } 

.webinar-content p {
   font-size :     1.1rem;
    line-height: 1.7;
  margin-bottom: 30px;
}

.webinar-details {
  margin-bottom: 35px;
}

.detail-item h4 
 {
  font-size: 1.3rem;
  margin-bottom  :    15px;
	color: #f1c40f;

}

.detail-item ul {
    list-style: none; 
  padding-left: 0;
}

.detail-item li {
    padding: 8px 0;
    position: relative;
    padding-left: 25px;
}

.detail-item li::before {
  content: '✓';
    font-weight: bold;
  color: #f1c40f;
  position: absolute;
    left: 0;
}

.webinar-btn{
    background: #f1c40f;
  color: #333;
    padding     :      15px 35px;
  text-decoration: none;
    border-radius: 8px;
		font-weight :      600;
    transition   :     all 0.3s ease;
  display: inline-block;
}

.webinar-btn:hover {
	background: #f39c12;
  transform: translateY(-2px);
	}

.webinar-image img {
   width: 100%;
          height:auto;
	border-radius: 15px;
}

.cta-section	{
	padding: 80px 0;
  background: #2c3e50;
  color: white;
  text-align   :center;
}

.cta-content h2 {
	    font-size:   2.5rem;
  margin-bottom: 25px;
	font-weight: 700;}

.cta-content p {
      font-size: 1.2rem;
  margin-bottom: 35px;
   max-width: 800px;
    margin-left: auto;
  margin-right: auto;
   line-height: 1.7;


}

.cta-button {
    background: #e74c3c;
    color: white;
  padding: 18px 40px;
    text-decoration: none;
   border-radius: 8px;
	font-weight: 600;
   font-size: 1.1rem;
    transition: all 0.3s ease;
  display: inline-block;
}

.cta-button:hover {
    background     :     #c0392b;
  transform: translateY(-2px);
     } 

.contact-section {
	   padding: 100px 0;

	    background: #f8f9fa;
     }

.contact-section h2 {
    text-align: center;
   font-size: 2.8rem;
    color: #2c3e50;
   margin-bottom: 60px;
  font-weight: 700;
}

.contact-wrapper {
   display: grid;
   grid-template-columns   :  2fr 1fr;
   gap: 60px;
}

.contact-form {
  background: white;
  padding   :       40px;
    border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);


}

.form-group{
    margin-bottom: 25px;
    position   : relative;
}

.form-group label {
  display: block;
  margin-bottom: 8px;
   color  :      #333;
    font-weight: 500;
   transition: all 0.3s ease;
}

.form-group input,
.form-group select,
.form-group textarea {
   width: 100%;
    padding: 15px;
    border:    2px solid #e1e5e9;
    border-radius: 8px;
	font-size: 16px;
  transition: all 0.3s ease;
  background: #fff;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
   outline: none;
    border-color: #2c5aa0;
  box-shadow: 0 0 0 3px rgba(44, 90, 160, 0.1);
}

.form-group.focused label{
       color: #2c5aa0; 
  transform: translateY(-2px);
}

.submit-btn

{
   background: #2c5aa0;
       color: white;
      padding: 15px 40px;
                       border: none;
      border-radius  :    8px;
      font-size: 16px;
     font-weight: 600;
      cursor: pointer;
       transition: all 0.3s ease;
       width :     100%; 
	
}

.submit-btn:hover {
   background: #1e3f73;
  transform: translateY(-2px);
}

.contact-info {
  background: white;
  padding: 40px;
	border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
	height: fit-content;
} 

.contact-info h3     {
   font-size    :    1.8rem;
    color: #2c3e50;
   margin-bottom: 30px;
   font-weight: 600;
}

.info-item   {
  margin-bottom: 25px;
}

.info-item h4 {
  color: #2c5aa0; 
    margin-bottom: 8px; 
    font-weight: 600;
}

.info-item p {
  color: #666;
       line-height: 1.6;
}

.main-footer {
         background: #2c3e50;
  color: white;
    padding: 60px 0 20px;
}

.footer-content {
       max-width: 1200px;
  margin: 0 auto;
   padding: 0 20px;
  display: grid;
  grid-template-columns: 1fr 2fr;
    gap: 60px;

}

.footer-logo {
	height: 50px;
  width: auto;
  filter: brightness(0) invert(1);
}

.footer-links {
       display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;

}

.link-column h4 {
   color: #f1c40f;
               margin-bottom: 20px;
   font-weight: 600;
}

.link-column ul {
    list-style: none;
}

.link-column li {
   margin-bottom    :    10px;
}

.link-column a {
    color: #ecf0f1;

	   text-decoration: none;

	  transition: color 0.3s ease;
}

.link-column a:hover   {
   color: #f1c40f;
}

.link-column p {
   color: #bdc3c7;
   line-height: 1.6;
}

.footer-bottom {

	    border-top: 1px solid #34495e;
 margin-top    :   40px;
          padding-top: 20px;
   text-align: center;
    max-width: 1200px;
   margin-left:  auto;
    margin-right     :     auto;
    padding-left  :    20px;
   padding-right: 20px;
     }

.footer-bottom p {
    color: #bdc3c7;
}@media (max-width: 768px) {
    .desktop-menu {
        display: none;
    }
    
    .burger-menu {
        display: flex;
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .hero-content h1 {
        font-size: 2.2rem;
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    .systems-grid {
        grid-template-columns: 1fr;
    }
    
    .webinar-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .contact-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .footer-links {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .motivation-systems h2,
    .contact-section h2 {
        font-size: 2.2rem;
    }
}

@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 1.8rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .primary-btn, .secondary-btn {
        width: 100%;
        text-align: center;
    }
    
    .contact-form,
    .contact-info {
        padding: 25px;
    }
    
    .system-card {
        padding: 25px;
    }
}body.menu-open {
  overflow: hidden;
}

.active-page {
	   color: #2c5aa0 !important;
   font-weight: 600;
}

.active-page::after {
  width: 100% !important;
}

.about-hero {
   margin-top: 80px;
   padding: 120px 0 80px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color :     white;

}

.about-hero-content {
   text-align: center;
  max-width   :   900px;
   margin: 0 auto;
}

.about-hero-content h1 {
    font-size: 3.5rem;

       margin-bottom    :    30px;

   font-weight: 700;

   line-height: 1.2;
}

.hero-subtitle {
   font-size: 1.3rem;
   line-height: 1.7;
   opacity: 0.95;
}

.story-section {

	    padding: 100px 0;
          background  :     white;}  

.story-content {
  display: grid;
    grid-template-columns: 1fr 1fr;
   gap: 60px;
  align-items: center;
}

.story-text h2 {
         font-size: 2.8rem;
      color: #2c3e50;
      margin-bottom: 30px;
     font-weight  :700; 

}

.story-text p {
   font-size: 1.1rem;
	 line-height     :       1.8;
    color: #555;
   margin-bottom: 25px;
}



.story-image img {
               width: 100%;
  height: auto;
   border-radius: 15px;
  box-shadow: 0 15px 35px rgba(0,0,0,0.1);
}

.mission-section{
    padding: 100px 0;
   background: #f8f9fa;
}

.mission-section h2 {
    text-align: center;
    font-size    :     2.8rem;
	color: #2c3e50;
   margin-bottom: 60px;
    font-weight: 700;
}

.mission-grid  {
   display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
   gap: 40px;
}

.mission-card {
   background: white;
                    padding: 40px;
   border-radius: 15px;
    text-align: center;
  box-shadow: 0 5px 20px rgba(0,0,0,0.08);
   transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.mission-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(0,0,0,0.15);
}

.mission-card h3 {
   font-size: 1.6rem;
   color: #2c5aa0;
	margin-bottom: 20px;
    font-weight: 600;
}

.mission-card p {
  line-height: 1.7;
	    color  :     #666;
}

.team-expertise {
	  padding: 100px 0;
	background: #2c3e50;
  color   :  white;


}

.team-expertise h2  
  {
  text-align    :        center;
   font-size: 2.8rem;
   margin-bottom: 60px;
 font-weight: 700;
}

.expertise-stats {
  display: grid;

	  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));

	   gap: 40px;

	  text-align: center;
	
}

.stat-item {
    padding: 20px;
}

.stat-number {
	   font-size: 4rem;
    font-weight: 700;
   color: #f1c40f;
   margin-bottom: 15px;
   display     :     block;}

.stat-label
{
    font-size: 1.1rem;
    color: #ecf0f1;
  line-height: 1.5;
}

.methodology-section {
    padding: 100px 0;
    background  :  white;
}

.methodology-content {
	 display: grid;
  grid-template-columns   :   1fr 1fr;
    gap: 60px;
                    align-items  :    center;
}

.methodology-image img {
   width: 100%;
   height: auto;
   border-radius: 15px;
  box-shadow: 0 15px 35px rgba(0,0,0,0.1);
}

.methodology-text h2 {
  font-size  : 2.8rem;
   color: #2c3e50;
   margin-bottom: 25px;
  font-weight: 700;
}

.methodology-text > p {
  font-size: 1.1rem;
  line-height: 1.8;
  color: #555;
  margin-bottom: 35px;
}

.methodology-points {
    space-y: 25px;


}

.method-point	{
  margin-bottom: 30px;
}

.method-point h4  
  {
    font-size: 1.3rem;
	 color: #2c5aa0;
	margin-bottom: 10px;
	 font-weight: 600;
}

.method-point p {
        color: #666;
  line-height: 1.7;
}

.results-section{
    padding: 100px 0;
  background: #f8f9fa;
}

.results-section h2		{

	    text-align: center;
  font-size: 2.8rem;
                    color: #2c3e50;
    margin-bottom: 60px;
	font-weight: 700;

}

.results-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
	 gap: 40px;
}

.result-item {
   background: white;
    border-radius: 15px;
	 overflow: hidden;
  box-shadow: 0 5px 20px rgba(0,0,0,0.08);
   transition: transform 0.3s ease;
}

.result-item:hover {
	  transform: translateY(-5px);


}

.result-item img {
   width: 100%;
    height: 200px;
	object-fit: cover;
}

.result-item h3 {
    font-size: 1.5rem;
    color: #2c3e50;
   margin: 25px 25px 15px;
  font-weight: 600;
}



.result-item p {
   color: #666;
		line-height: 1.7;
	   margin: 0 25px 25px;
}


.commitment-section {
  padding  :    100px 0;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
}

.commitment-content {
          margin: 0 auto;
   text-align: center;
   max-width: 1000px;
}

.commitment-content h2 {
  font-size: 2.8rem;
  font-weight: 700;
   margin-bottom: 30px;
}

.commitment-intro {
    font-size: 1.2rem;
    line-height: 1.7;
   margin-bottom: 50px;
   opacity: 0.95;
}

.commitment-promises {
   display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 40px;
    text-align: left;
}

.promise-item {
  background: rgba(255,255,255,0.1);
   padding :        30px;
   border-radius: 15px;
  backdrop-filter: blur(10px); 
	
}

.promise-item h4 {
    font-size: 1.4rem;
  margin-bottom: 15px;
   color:  #f1c40f;
    font-weight: 600;
}

.promise-item p {
    line-height    :    1.7;
   opacity     :   0.9; 
	
}

.thankyou-main {
  margin-top: 80px;
    padding: 80px 0;
  min-height: calc(100vh - 200px);
}

.thankyou-content {
    text-align: center;
   max-width: 900px;
  margin: 0 auto;
}

.success-animation {
  margin-bottom: 40px;
}

.checkmark-circle {
   width:80px;
    height: 80px;
  background : #27ae60;
  border-radius: 50%;
  display: inline-flex;
      align-items: center;
    justify-content   :  center;
        animation: scaleIn 0.6s ease-out;
}

.checkmark {
  width: 30px;
 height: 15px;
        border: 3px solid white;
   border-top: none;
		border-right: none;
  transform: rotate(-45deg);
  animation: checkmarkDraw 0.4s ease-out 0.2s both;
}@keyframes scaleIn {
    0% {
        transform: scale(0);
    }
    100% {
        transform: scale(1);
    }
}

@keyframes checkmarkDraw {
    0% {
        width: 0;
        height: 0;
    }
    100% {
        width: 30px;
        height: 15px;
    }
}.thankyou-content h1 {
	font-size: 3rem;
               color: #2c3e50;
   margin-bottom: 30px;
    font-weight: 700;

}

.confirmation-message {
  margin-bottom: 60px;
}

.main-message  {
   font-size: 1.2rem;
    color: #555;
   line-height: 1.7;
                    max-width: 700px;
   margin: 0 auto;
}

.next-steps   {
  margin-bottom: 60px;
}

.next-steps h2 {
    font-size: 2.3rem;
   color: #2c3e50;
    margin-bottom: 40px;
   font-weight: 600;
}

.steps-grid {
	 display    :    grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
  margin-bottom: 40px;
}

.step-item {
    background: #f8f9fa;
   padding: 30px;
  border-radius: 15px;
    text-align: center;
   transition: transform 0.3s ease;
}

.step-item:hover {
  transform: translateY(-3px);
}

.step-number  {
   width: 50px;
     height: 50px;
   	background: #2c5aa0;
     color: white;
      border-radius: 50%;
       display: flex;
     align-items: center;
      justify-content: center;
     font-size: 1.5rem;
     font-weight: 700;
       margin: 0 auto 20px;
}

.step-item h3 {
        font-size:      1.3rem;
    color: #2c3e50;
    margin-bottom: 15px;
  font-weight :600;
}

.step-item p {
    color: #666;
  line-height  :    1.6;
}

.while-waiting   {
    margin-bottom: 60px;
} 

.while-waiting h2 {
  color: #2c3e50;
    font-weight: 600;
    font-size: 2.3rem;
  margin-bottom: 40px;

}

.waiting-suggestions {
   display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
   gap: 40px;


}

.suggestion-card {
    background: white;
  border-radius: 15px;
	overflow: hidden;
  box-shadow: 0 5px 20px rgba(0,0,0,0.08);
  text-align: left;
          transition: transform 0.3s ease;
}

.suggestion-card:hover {
  transform: translateY(-3px);
}

.suggestion-card img {
 width  :      100%;
  height: 180px;
          object-fit: cover;
}

.suggestion-card h3 {
		font-size: 1.4rem;
  color: #2c3e50;
    margin: 25px 25px 15px;
    font-weight: 600;
	
}

.suggestion-card p {
  color   :      #666;
		 line-height: 1.6;
	    margin: 0 25px 25px;
}

.reassurance-section {
  background     :       #f8f9fa;
  padding: 40px;
  border-radius   :   15px;
  margin-bottom: 50px;
}

.reassurance-section h2 {

   font-weight: 600;
   font-size: 2rem;
    color :   #2c3e50;
    margin-bottom :       20px;

}

.reassurance-section p {
	 font-size: 1.1rem;
    color     :    #555;
  line-height: 1.7; 
	
	}

.action-buttons {
	flex-wrap: wrap;
    gap: 20px;
   justify-content: center;
  display: flex;
}@media (max-width: 768px) {
    .about-hero-content h1 {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .story-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .methodology-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .results-grid {
        grid-template-columns: 1fr;
    }
    
    .expertise-stats {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .thankyou-content h1 {
        font-size: 2.2rem;
    }
    
    .steps-grid {
        grid-template-columns: 1fr;
    }
    
    .waiting-suggestions {
        grid-template-columns: 1fr;
    }
    
    .action-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .action-buttons .primary-btn,
    .action-buttons .secondary-btn {
        width: 100%;
        max-width: 300px;
    }
}

@media (max-width: 480px) {
    .about-hero-content h1 {
        font-size: 2rem;
    }
    
    .stat-number {
        font-size: 3rem;
    }
    
    .expertise-stats {
        grid-template-columns: 1fr;
    }
    
    .commitment-promises {
        grid-template-columns: 1fr;
    }
    
    .mission-grid {
        grid-template-columns: 1fr;
    }
}.cookies-section,
.privacy-section {
  padding: 100px 0;
    background: #f8f9fa;
}

.cookies-section h1,
.privacy-section h1 {
  text-align :center;

   font-size   :  2.8rem;

   color: #2c3e50;

    margin-bottom: 40px;

   font-weight: 700;
     }

.cookies-section h2,
.privacy-section h2 {
      font-size: 1.8rem;
  color    :   #2c3e50;
   margin-top: 30px;
    margin-bottom: 15px;
    font-weight: 600;
}

.cookies-section p,
.privacy-section p {
    font-size: 1.1rem;
    color: #666;
                    line-height: 1.7;
    margin-bottom: 20px;
}

.cookies-section ul,
.privacy-section ul {
    padding-left: 20px;
    margin-bottom: 20px;
   list-style: none;
}


.cookies-section ul li,
.privacy-section ul li {
  position: relative;
   padding-left: 25px;
     margin-bottom: 10px;
    font-size: 1.1rem;
  color: #666;
}

.cookies-section ul li::before,
.privacy-section ul li::before {
  content: '✓';
   position  :      absolute;
               left: 0;
   color    :        #2c5aa0;
  font-weight  : bold;
}