* {
   margin: 0;
    padding: 0;
    box-sizing: border-box;


}

html {
   scroll-behavior: smooth;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Helvetica Neue', sans-serif;
  line-height: 1.6;
  color: #2c3e50;
       background-color: #fafbfc;
}

a {
  text-decoration: none;
 color: inherit;
}

img {
  max-width: 100%;
    height: auto;
		 display     : block;
}

input, select, textarea, button {
  font-family: inherit;
}

.siteheader {
  background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  position: sticky;
  top: 0;
  z-index: 1000;
	}

.navbar 
 {
	padding: 16px 0; 

}

.navbar__container{
   max-width: 1200px;
  margin: 0 auto;
    padding: 0 20px;
  display: flex;
  justify-content:        space-between;
   align-items: center;
}

.navbar__logo {
   display  :      flex;
  align-items: center; 
	
}

.logo__image {
  height: 48px;
    width: auto;
  filter: brightness(0) invert(1);
}

.navbar__burger {
    display: none;
    background: none;
   border:    none;
    cursor: pointer;
  padding: 8px;
}

.burger__icon {
    width: 28px; 
   height: 28px; 
               stroke: #667eea;
} 

.navbar__menu {
  list-style: none;
   display: flex;
	 gap: 32px;
   align-items: center;
}

.navbar__item {
  transition: all 0.3s ease;
}

.navbar__link {
  transition: all 0.3s ease;
   padding: 8px 12px;
	color: #2c3e50;
    font-weight: 500;
   font-size: 15px;
       border-radius: 4px;
}

.navbar__link:hover {
    color: #667eea;
  background-color: rgba(102, 126, 234, 0.08);
}

.hero {
  padding: 80px 20px;

  background: linear-gradient(180deg, #ffffff 0%, rgba(102, 126, 234, 0.05) 100%);
}

.hero__wrapper {

         max-width    :      1200px;
  margin :       0 auto;
	display     :      grid;
  grid-template-columns: 1fr 1fr;
   gap: 48px;
    align-items: center;
}

.hero__content {
               display: flex;
  flex-direction: column;
    gap: 24px;
}

.hero__title {


         font-size     :   48px;
      font-weight: 700;
       line-height: 1.2;
      color :#1a2332;
      letter-spacing: -0.5px; 


}

.hero__text {
    font-size: 18px;
   color: #556b7f;
    line-height: 1.7;
}

.hero__button {
    display: inline-block;
               padding :        16px 32px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
   color: white;
     border-radius: 8px;
   font-weight: 600;
   font-size: 16px;
  transition: all 0.3s ease;
   width: fit-content;
  box-shadow: 0 4px 16px rgba(102, 126, 234, 0.3);
}

.hero__button:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(102, 126, 234, 0.4);
}

.hero__image {
  overflow     :  hidden;
       border-radius: 12px;
}

.hero__img {
  width: 100%;
   height:     auto;
    object-fit: cover;
   transition  :        transform 0.3s ease;
}

.hero__image:hover .hero__img {
  transform: scale(1.05); 
	
}

.services__overview {
   padding: 80px 20px;
    background-color: #fff;
}

.services__container {

	   max-width: 1200px;
  margin    :   0 auto;
	}

.services__title	{
   font-size: 40px;
    margin-bottom: 56px;
  font-weight: 700;
	text-align:  center;
   color: #1a2332;
}


.services__grid {
    display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 32px;

}

.service__card {
	 background: #fafbfc;
  border-radius: 12px;
   overflow: hidden;
  transition: all 0.4s ease;
  border :  1px solid #e8eef5;
}

.service__card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.1);
   background: #fff;
}

.card__image {
         overflow: hidden;
	 height: 240px;
}

.card__img {
    width: 100%;
   height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.service__card:hover .card__img {
  transform: scale(1.08);
}

.card__heading
	{
  font-size: 22px; 
	    font-weight: 700; 
	    padding: 24px 24px 16px; 
	   color: #1a2332;
}


.card__description {


    padding: 0 24px 24px;
    font-size: 15px;
   color: #556b7f;
	 line-height: 1.7;
}

.coaching__details {
  padding :   80px 20px;
  background: linear-gradient(135deg, rgba(102, 126, 234, 0.08) 0%, rgba(118, 75, 162, 0.06) 100%); 
	
}

.details__content     {
			max-width: 1200px;
   margin: 0 auto;


}

.details__title {
    font-size: 40px;
   font-weight: 700;
  text-align: center;
  margin-bottom   :        56px;
	color: #1a2332;
}

.details__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 40px;
}

.detail__item {
     display: flex;
    flex-direction: column;
    gap: 16px;
   text-align: center;
}

.item__icon {


      display: flex;
    justify-content: center;
   margin-bottom: 8px;


}

.icon__svg {
 width: 48px;

	 height: 48px;

		stroke: #667eea;

	  fill: none;

	    stroke-width: 2;

	   stroke-linecap: round;

	    stroke-linejoin: round;

	          transition: all 0.3s ease;


}

.detail__item:hover .icon__svg {
   stroke: #764ba2;
  filter: drop-shadow(0 0 8px rgba(102, 126, 234, 0.4));
}

.item__heading		{
    font-size: 20px; 
	  font-weight: 700; 
	  color    :   #1a2332;
}

.item__text		{


   font-size: 15px;
    color: #556b7f;
  line-height: 1.7;
}

.revenue__benefits		{
    padding: 80px 20px;
    background-color :  #fff;
     }

.revenue__inner {
   max-width: 1200px;
    margin     :0 auto;
}

.revenue__title {
	font-size: 40px;
   font-weight: 700;
        text-align: center;
        margin-bottom : 48px;
  color: #1a2332;
}

.benefits__list {
  display :      grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
   gap: 24px; 

}

.benefit__row {
  -moz-border-radius: 8px; 
	  display: flex; 
	  gap    :        16px; 
	  padding: 20px; 
	  -o-transition: all 0.3s ease; 
	  border-radius: 8px; 
	    -webkit-border-radius: 8px; 
	   background-color: #fafbfc; 
	    transition: all 0.3s ease; 
	 border: 1px solid #e8eef5;
}

.benefit__row:hover {
   background: #fff;
   border-color: #667eea;
  box-shadow: 0 4px 12px rgba(102, 126, 234, 0.12);
}

.benefit__check  {
   flex-shrink:     0;
   width: 24px;
    height:24px;
}

.check__icon {
  width  :      24px;
    height  :    24px;
    stroke: #2ecc71;
			fill: none;
   stroke-width: 2.5;
        transition: all 0.3s ease;
}

.benefit__row:hover .check__icon {
  filter: drop-shadow(0 0 4px rgba(46, 204, 113, 0.5)); 
	
}

.benefit__text {
    font-size: 15px;
	color    :  #2c3e50;
  line-height     :  1.6;
}

.cta__section {

	    padding  :80px 20px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  text-align: center;
}

.cta__wrapper {
   max-width: 600px;
	margin: 0 auto;
}

.cta__title {
    margin-bottom: 24px;
    line-height:        1.2;
        font-weight     :       700;
    font-size: 40px;
    color: white;
}

.cta__subtitle {
     font-size: 18px;
     color: rgba(255, 255, 255, 0.9);
       margin-bottom :       32px;
       line-height: 1.6;
}

.cta__button {
  display: inline-block;
   padding: 16px 36px;
	 background-color: white;
  color: #667eea;
  border-radius :   8px;
  font-weight: 700;
         font-size: 16px;
   transition: all 0.3s ease;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
}  

.cta__button:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25);
}

.contact__section {
    padding :      80px 20px;
  background: linear-gradient(180deg, rgba(102, 126, 234, 0.05) 0%, #ffffff 100%);
}

.contact__container {
  max-width: 700px;
  margin  :        0 auto;
}

.contact__title {
  font-weight: 700;
   font-size: 40px;
   margin-bottom   :   16px;
   text-align   :        center;
    color: #1a2332;
}

.contact__subtitle {
   font-size: 16px;
    text-align: center;
         color: #556b7f;
                    margin-bottom: 40px;
  line-height: 1.6;
	
}

.contact__form {
   display: flex;
                    flex-direction: column;
   gap: 24px;
}


.form__group {
    display: flex;
	
}

.form__input, .form__select, .form__textarea {
    border-radius: 8px;
    border: 2px solid #e8eef5;
   width  :      100%;
       font-size: 15px;
   background: white;
	color: #2c3e50;
       padding: 14px 16px;
    transition:    all 0.3s ease;
}

.form__input::placeholder, .form__textarea::placeholder {
  color     :     #9ca8b8;
}



.form__input:focus, .form__select:focus, .form__textarea:focus {
    outline: none;
                    border-color: #667eea;
  box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
    background: white;
}

.form__textarea {
   resize: vertical;
  min-height:   120px;
  font-family: inherit;
}

.form__button {

	    padding: 16px 32px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color   : white;
	border: none;
  border-radius: 8px;
  font-weight: 600;
  font-size: 16px;
	 cursor: pointer;
               transition   :all 0.3s ease;
  box-shadow: 0 4px 16px rgba(102, 126, 234, 0.3);


}

.form__button:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(102, 126, 234, 0.4);

}

.form__button:active {
  transform: translateY(0);
}


.sitefooter {
  background: #1a2332;
  color: rgba(255, 255, 255, 0.8);
   padding: 56px 20px 32px;
    margin-top     :       80px; 

}

.footer__container {
  max-width: 1200px;
  margin: 0 auto;
}

.footer__logo {
    margin-bottom: 40px;
}

.footer__logo__image {
  height: 40px;
  width: auto;
  filter: brightness(0) invert(1);
}

.footer__content {
    display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 40px;
   margin-bottom: 40px;
}  

.footer__section{
   display: flex;
	flex-direction   :    column;
    gap: 16px;
}

.footer__heading {
    font-weight: 700; 
  letter-spacing: 0.5px; 
    color: white; 
    text-transform: uppercase; 
  font-size: 14px;
}

.footer__links {
   list-style   :none;
  display: flex;
 flex-direction: column;
    gap: 12px;
}

.footer__link {
	font-size: 14px;
  color: rgba(255, 255, 255, 0.7);
    transition: all 0.3s ease;
}

.footer__link:hover {
  color: #667eea;
}

.footer__contacts    {
    list-style: none;
  display: flex;
   flex-direction    :   column;
         gap: 12px;
}

.contact__item {
     font-size: 14px;
  color: rgba(255, 255, 255, 0.7);
  line-height :1.6;
	}

.footer__bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
	padding-top: 24px;
   text-align: center;
}

.footer__copyright {

	  font-size: 13px;
  color: rgba(255, 255, 255, 0.5);
    line-height: 1.6; 



}

.navbar__menu.active {
    display    :        flex !important;
}@media (max-width: 768px) {
    .navbar__burger {
        display: block;
    }

    .navbar__menu {
        display: none;
        position: absolute;
        top: 70px;
        left: 0;
        right: 0;
        background: white;
        flex-direction: column;
        gap: 0;
        padding: 16px 0;
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
        border-radius: 0;
    }

    .navbar__item {
        width: 100%;
    }

    .navbar__link {
        display: block;
        padding: 12px 20px;
        border-radius: 0;
    }

    .hero {
        padding: 60px 20px;
    }

    .hero__wrapper {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .hero__title {
        font-size: 32px;
    }

    .hero__text {
        font-size: 16px;
    }

    .services__title, .details__title, .revenue__title, .cta__title, .contact__title {
        font-size: 28px;
    }

    .services__overview, .coaching__details, .revenue__benefits, .cta__section, .contact__section {
        padding: 60px 20px;
    }

    .services__grid, .details__grid, .benefits__list {
        gap: 20px;
    }

    .footer__content {
        grid-template-columns: 1fr;
        gap: 24px;
    }
}

@media (max-width: 480px) {
    .hero {
        padding: 40px 16px;
    }

    .hero__title {
        font-size: 24px;
    }

    .hero__text {
        font-size: 14px;
    }

    .services__title, .details__title, .revenue__title, .cta__title, .contact__title {
        font-size: 22px;
        margin-bottom: 32px;
    }

    .services__overview, .coaching__details, .revenue__benefits, .cta__section, .contact__section {
        padding: 40px 16px;
    }

    .hero__button, .cta__button {
        font-size: 14px;
        padding: 12px 24px;
    }

    .details__grid, .benefits__list {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .benefit__row {
        padding: 16px;
    }

    .form__input, .form__select, .form__textarea {
        padding: 12px 14px;
        font-size: 14px;
    }

    .form__button {
        padding: 14px 24px;
        font-size: 14px;
    }
}.policySection {
    padding   :     80px 2rem;
  background: #f8f9fa;
}

.policyContainer {
    max-width: 800px;
   margin: 0 auto;
  text-align   : left;
}

.policyContainer h2 {
   font-size :     2.5rem; 
   color :   #2c3e50; 
          margin-bottom: 1.5rem; 
   font-weight: 700;
}

.policyContainer p

{
  line-height: 1.7;
        margin-bottom: 1.5rem;
    font-size: 1.1rem;
    color  :       #7f8c8d;
}@media (max-width: 768px) {
    .policyContainer h2 {
        font-size: 2rem;
    }

    .policyContainer p {
        font-size: 1rem;
    }

    .policySection {
        padding: 60px 1rem;
    }
}.services__hero {
	    padding: 100px 20px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    text-align: center;
	}

.services__hero__wrapper  {
    max-width: 800px;
   margin: 0 auto;
}

.services__hero__title {
    line-height: 1.2;
   font-weight: 700;
	 margin-bottom     :     24px;
     color: white;
    font-size: 48px;
}

.services__hero__subtitle {
         font-size   :   20px;
  color: rgba(255, 255, 255, 0.9);
   line-height: 1.6;
}

.services__catalog {
	          padding: 80px 20px;
    background-color:     #fafbfc;
}

.catalog__container {
        max-width: 1200px;
	margin: 0 auto;
   display :      grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 32px;
}

.service__item 
 {

	background: white;
      border-radius:        12px;
    overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
   display: flex;
  flex-direction: column;
   border: 1px solid #e8eef5;


}

.service__item:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.15);
   border-color:  #667eea;
}

.service__header {
    padding:       32px 24px 16px;
  border-bottom: 2px solid #f5f7fa; 
	
}

.service__title {
  font-size: 24px;
  font-weight: 700;
   color: #1a2332;
  margin-bottom: 12px;
}

.service__price {
  font-size     :20px;
     font-weight     :700;
     color: #667eea;
   	margin: 0;
}

.service__content {
    padding: 24px;
	 flex-grow: 1;
}

.service__intro {
  font-size: 16px;
  color: #556b7f;
   margin-bottom: 24px;
    line-height: 1.6;
}

.service__features {
	 display: grid;
	grid-template-columns  :        1fr;
    gap     : 24px;
}

.feature__block {
   display: flex;
    gap: 12px;
     flex-direction: column;
}

.feature__heading {
   font-size: 14px;
  font-weight  :      700;
  color:      #1a2332;
  text-transform: uppercase;
   letter-spacing: 0.5px;


}

.feature__list
	{
   list-style: none;
	display: flex;
   flex-direction: column;
   gap: 10px;
}

.feature__item {
  line-height: 1.5;
    padding-left :16px;
   color: #556b7f;
   font-size    :      14px;
    position: relative;
}

.feature__item:before {
  content: '•';
   position: absolute;
   left     :   0;
   color: #667eea;
    font-weight: bold;
}

.service__button {
    display: block;
	margin-top: 24px;
   padding: 14px 24px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
	 color: white;
	border-radius: 8px;
   font-weight: 600;
    font-size: 15px;
      text-align: center;
		transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(102, 126, 234, 0.3);
                    text-decoration: none;
}

.service__button:hover


{
	  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(102, 126, 234, 0.4);}

.comparison__section {
   background: white;

   padding: 80px 20px;
}

.comparison__wrapper {
      max-width: 1200px;
	margin: 0 auto;
}

.comparison__title {
    font-size: 40px;
    font-weight:700;
	 text-align: center;
   margin-bottom: 56px;
  color: #1a2332;
}

.comparison__table {
   overflow-x: auto;
}

.table__header {
    display: grid;
     grid-template-columns: 2fr repeat(4, 1fr);
      gap :        16px;
       padding: 20px;
     background: linear-gradient(135deg, rgba(102, 126, 234, 0.08) 0%, rgba(118, 75, 162, 0.06) 100%);
     border-radius: 12px 12px 0 0;
       font-weight: 700;
       color: #1a2332;
}

.table__row {
  display: grid;
  grid-template-columns: 2fr repeat(4, 1fr);
  gap     :16px;
  padding: 20px;
  border-bottom: 1px solid #e8eef5;
   align-items: center; 
	
}

.table__row:last-child {
   border-bottom: none;
  border-radius: 0 0 12px 12px;
}

.table__cell
{
          color: #556b7f;
	text-align: center;
    justify-content: center;
  display  :     flex;
  font-size: 14px;
   align-items: center;
	
     }

.table__header .table__cell
	{
  color: #1a2332;
}

.table__row .table__cell:first-child,
.table__header .table__cell:first-child		{

  text-align: left;
   justify-content: flex-start;
}

.check__mark {

	  transition  : all 0.3s ease;
    width: 24px;
     stroke-width: 2.5;
    height     :    24px;}

.table__row:hover .check__mark {
  filter: drop-shadow(0 0 4px rgba(0, 0, 0, 0.2));
}

.faq__section
{
   padding: 80px 20px;

	  background: linear-gradient(180deg, rgba(102, 126, 234, 0.05) 0%, #ffffff 100%);
}

.faq__container {
     max-width: 900px;
	margin   :        0 auto;
}

.faq__title {
    font-size: 40px;
   font-weight: 700;
    text-align     :        center;
  margin-bottom   :     56px;
  color: #1a2332;
}

.faq__items {
   display: flex;
   flex-direction: column;
   gap: 16px;
}

.faq__item		{
   background  :    white;
   border     :   1px solid #e8eef5;
		border-radius: 8px;
      overflow: hidden;
    transition     :       all 0.3s ease;
}

.faq__item.active {
   border-color: #667eea;
  box-shadow: 0 4px 12px rgba(102, 126, 234, 0.15);
}

.faq__question {
   width: 100%;
  padding: 20px 24px;
	background: #fafbfc;
   border: none;
    cursor: pointer;
    display     :  flex;
    justify-content: space-between;
         align-items: center;
   font-size: 16px;
	font-weight: 600;
  color: #1a2332;
   transition: all 0.3s ease;
    text-align: left;
} 

.faq__item.active .faq__question  {
    background: #f5f7fa;
    color: #667eea;
}

.faq__question:hover {
  background: #f5f7fa;
}

.faq__icon {

   width    :       20px;
  height :   20px;
  stroke  :     #667eea;
  fill: none;
        stroke-width: 2;
   transition: transform 0.3s ease;


}

.faq__item.active .faq__icon {
  transform: rotate(180deg);
}

.faq__answer {
  max-height: 0;
  overflow:   hidden;
   transition: max-height 0.3s ease;
}

.faq__item.active .faq__answer {

	      max-height: 500px;
	}

.faq__answer p {

	  padding: 0 24px 20px;
   font-size: 15px;
  color: #556b7f;
   line-height: 1.7; 
	}  

.cta__final {
  padding: 80px 20px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
   text-align: center;
}

.cta__final__wrapper {
  max-width: 600px;
                    margin     : 0 auto;
}

.cta__final__title {
                    font-size: 40px;
  font-weight: 700;
   color: white;
  margin-bottom: 24px;
}

.cta__final__text {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.9);
   margin-bottom: 32px;
   line-height     :        1.6;
	
}

.cta__final__button  
  {
    display: inline-block;
    padding: 16px 36px;
   background-color: white;
  color: #667eea;
  border-radius: 8px;
	font-weight: 700;
    font-size: 16px;
    transition: all 0.3s ease;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
          text-decoration: none;
}

.cta__final__button:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25);
}

.thankyou__section {
	 padding  :     100px 20px;
  background: linear-gradient(180deg, #ffffff 0%, rgba(102, 126, 234, 0.05) 100%);
  min-height: 100vh;
}

.thankyou__wrapper {
  max-width: 700px;

          margin: 0 auto;

  text-align:      center;
}

.thankyou__icon {
                    margin-bottom: 32px;
    display: flex;
    justify-content: center;
}

.success__icon {
   stroke: #2ecc71;
	 fill: none;
   height: 80px;
  -webkit-animation: scaleIn 0.6s ease;
    width: 80px;
  stroke-width: 2;
   animation:        scaleIn 0.6s ease;
   -moz-animation: scaleIn 0.6s ease;
} @keyframes scaleIn {
    from {
        transform: scale(0);
        opacity: 0;
    }
    to {
        transform: scale(1);
        opacity: 1;
    }
}.thankyou__title {
   	font-size    :44px;
    font-weight: 700;
      color: #1a2332;
	margin-bottom: 16px;
}

.thankyou__subtitle {
         font-size  :   18px;
    color: #556b7f;
  margin-bottom   :     48px;
   line-height: 1.6;
}

.thankyou__details {
   background: white;
   border-radius :        12px;
    padding: 32px;
   margin-bottom: 32px;
  border: 2px solid #e8eef5;
} 

.detail__block {
   margin-bottom: 20px;
     text-align: left;
	padding-bottom: 20px;
    border-bottom: 1px solid #e8eef5;
}

.detail__block:last-child {
  margin-bottom: 0;
    padding-bottom: 0;
      border-bottom     :  none;
	
}

.detail__label {
    font-size: 12px;
  font-weight: 700;
   color: #9ca8b8;
  text-transform: uppercase;
   letter-spacing: 0.5px;
    margin-bottom: 4px;
}

.detail__value     {
  font-size: 18px;
  font-weight: 600;
    color: #1a2332;
        margin: 0;
}

.thankyou__message {
  background: rgba(102, 126, 234, 0.08);
   border-left: 4px solid #667eea;
   padding: 24px;
  border-radius: 8px;
   margin-bottom   :40px;
    text-align: left; 
	
}

.thankyou__message p {
	   font-size     :    15px;
  color: #556b7f;
   line-height: 1.7;
		margin: 0;


}

.thankyou__message p:last-child {
  margin-top: 12px; 

}

.phone__number {
   font-size: 24px;
                    font-weight   :700;
   color: #667eea;
    margin-top: 12px;
  margin-bottom: 0;
}

.thankyou__next__steps {
   background: white;
    border-radius: 12px;
		 padding: 40px;
  margin-bottom: 40px;
      border: 1px solid #e8eef5;
  text-align: left;
}

.next__steps__title {
  font-size: 28px;
	font-weight  :        700;
        color: #1a2332;
  text-align: center;
  margin-bottom :   32px;
}

.steps__list {
  display :  grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 24px;
}

.step__item {
   display: flex;
  gap:  16px;
}

.step__number {
    flex-shrink:   0;
        width: 48px;
   height    :        48px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
    border-radius: 50%;
   display: flex;
  align-items: center;
   justify-content: center;
   font-weight: 700;
    font-size: 18px;
}

.step__content {
  flex-grow: 1;
}

.step__title {
   font-size: 16px;
  font-weight: 700;
	color: #1a2332;
    margin-bottom: 8px;
}

.step__text {


	 font-size: 14px;
   color: #556b7f;
   line-height: 1.6;
   margin: 0;
	}

.thankyou__actions {
               flex-wrap   :        wrap;
   gap: 16px;
    justify-content: center;
  margin-bottom: 40px;
      display: flex;
}

.action__button


{
  padding  :        14px 28px;
   border-radius: 8px;
    font-weight: 600;
      font-size: 15px;
   text-decoration: none;
               transition: all 0.3s ease;
    display: inline-block;
}

.action__button--primary {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
  box-shadow: 0 4px 12px rgba(102, 126, 234, 0.3);
}

.action__button--primary:hover {
  transform: translateY(-2px);

	  box-shadow: 0 6px 18px rgba(102, 126, 234, 0.4);
}

.action__button--secondary {
	background: #fafbfc;
    color: #667eea;
  border     :      2px solid #667eea;
}

.action__button--secondary:hover {
    background: #667eea;
 color: white;
}

.thankyou__bonus {
	  background: linear-gradient(135deg, rgba(46, 204, 113, 0.08) 0%, rgba(46, 204, 113, 0.04) 100%);
   border: 2px solid #2ecc71;
   border-radius   :    12px;
  padding: 32px;
  text-align: center;

}

.bonus__title {

    font-size: 20px;
  font-weight: 700;
  color: #1a2332;
   margin-bottom: 12px;

}

.bonus__text {
	        font-size: 15px;
	  color: #556b7f;
	  margin-bottom:        24px;
	   line-height: 1.6;


}

.bonus__button {
	  padding    :    12px 24px;
  background: #2ecc71;
   color:  white;
	border     :    none;
  border-radius: 8px;
  font-weight: 600;
   font-size: 14px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.bonus__button:hover {
  -webkit-transform: translateY(-2px);

    background: #27ae60;

  -moz-transform: translateY(-2px);

  -ms-transform: translateY(-2px);

  transform: translateY(-2px);
}@media (max-width: 768px) {
    .services__hero__title {
        font-size: 32px;
    }

    .services__catalog {
        padding: 60px 20px;
    }

    .catalog__container {
        gap: 20px;
    }

    .table__header, .table__row {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .table__row .table__cell:first-child,
    .table__header .table__cell:first-child {
        text-align: center;
        justify-content: center;
    }

    .comparison__table {
        border-radius: 8px;
    }

    .faq__question {
        font-size: 14px;
        padding: 16px;
    }

    .faq__answer p {
        padding: 0 16px 16px;
    }

    .thankyou__wrapper {
        padding: 20px;
    }

    .thankyou__title {
        font-size: 32px;
    }

    .steps__list {
        grid-template-columns: 1fr;
    }

    .thankyou__actions {
        flex-direction: column;
    }

    .action__button {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .services__hero {
        padding: 60px 16px;
    }

    .services__hero__title {
        font-size: 24px;
    }

    .services__hero__subtitle {
        font-size: 16px;
    }

    .service__title {
        font-size: 20px;
    }

    .service__price {
        font-size: 18px;
    }

    .comparison__title, .faq__title {
        font-size: 28px;
    }

    .faq__question {
        font-size: 13px;
    }

    .thankyou__title {
        font-size: 24px;
    }

    .next__steps__title {
        font-size: 20px;
    }

    .thankyou__details {
        padding: 20px;
    }
}