:root {
    --primary-gradient: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    --secondary-accent: #f39c12;
    --text-primary: #1a1a2e;
    --text-secondary: #4a4a6a;
    --bg-light: #f8f9fb;
    --border-subtle: #e5e7eb;
    --success-color: #2ecc71;
}

* {
   margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior   :    smooth;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', system-ui, sans-serif;
  color: var(--text-primary);
	 background-color: #ffffff;
    line-height: 1.6;
}

.navigation-panel {
          background: #ffffff;
                    padding:1.2rem 0;
  border-bottom: 1px solid var(--border-subtle);
	position     : sticky;
  top :       0;
   z-index: 1000;
  backdrop-filter: blur(10px);
  background-color: rgba(255, 255, 255, 0.95);
}

.nav-container
	{
	    max-width: 1200px;
   margin :        0 auto;
  padding: 0 2rem;
   display: flex;
	 justify-content: space-between;
	align-items: center;
}

.nav-branding {
   flex: 0 0 auto;
}

.nav-logo {
   height: 45px;
   width: auto;
		display: block;
}

.nav-toggle {
          display: none;
   background: none;
 border: none;
  cursor: pointer;
   padding: 0.5rem;
  align-items: center;
    justify-content: center;


}  

.burger-icon {
		width :    28px;
	 height: 28px;
  stroke: var(--text-primary);
  transition: all 0.3s ease;
}

.nav-links {
         list-style: none;
   display: flex;
	gap: 3rem;
  align-items: center;
}

.nav-link {
    text-decoration: none;
	  color: var(--text-secondary);
	    font-weight :       500;
		 font-size: 0.95rem;
		 transition: color 0.3s ease;
	    position: relative;
}

.nav-link::after {
  content: '';
   position: absolute;
   bottom: -4px;
  left     :    0;
       width  :  0;
    height: 2px;
  background: var(--primary-gradient);
	transition     :       width 0.3s ease;
}  

.nav-link:hover::after {
  width: 100%;
}

.nav-link:hover {
  color: var(--text-primary);
}

.hero-section {
    position: relative;
        min-height: 600px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 50%, #f39c12 100%);
  display: flex;
    align-items: center;
   justify-content: center;
    overflow: hidden;
   color: #ffffff;
}



.hero-overlay {


	position  :      absolute;
     inset: 0;
     background: radial-gradient(circle at 20% 50%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 80% 80%, rgba(0, 0, 0, 0.1) 0%, transparent 50%);
     }

.hero-content {
         position: relative;
    z-index: 2;
       text-align: center;
      max-width: 700px;
    padding: 3rem 2rem;
}


.hero-title {
  font-size:  3.2rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.2;
  letter-spacing :        -0.5px;
}

.hero-subtitle {


  opacity: 0.95;
   font-size: 1.15rem;
   margin-bottom: 2.5rem;
        font-weight: 400;
   line-height :1.7;


}

.hero-button {
    display: inline-block;
	 padding: 1.2rem 2.5rem;
   background: #ffffff;
   color: #667eea;
   text-decoration: none;
      border-radius: 50px;
  font-weight: 600;
	font-size  :      1rem;
  transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
	 border: 2px solid #ffffff;
}

.hero-button:hover  
  {
     transform: translateY(-3px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.25);
       background: #f8f9fb;
     }

.featured-image-section {
    padding: 4rem 2rem;
  background: var(--bg-light);
}

.featured-wrapper {
                    max-width: 1100px;
   margin: 0 auto;
}

.featured-image {
   width: 100%;
   height :  auto;
   border-radius: 15px;
	 display: block;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.12);
    object-fit  :      cover;
}

.benefits-grid {
    padding: 5rem 2rem;
  background: #ffffff;
}

.benefits-header {
   text-align: center;
   max-width: 600px;
    margin: 0 auto 3.5rem;
}



.section-title {
  font-size: 2.5rem;
  font-weight: 700;
    margin-bottom: 1rem;
  background: var(--primary-gradient);
  background-clip: text;
}

.section-description {
  font-size: 1.05rem;

  color: var(--text-secondary);

   line-height: 1.6;
}

.benefits-container {

	   max-width: 1100px;
	margin: 0 auto;
    display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
   gap: 2.5rem;


}

.benefit-card {
    padding: 2.5rem 2rem;
        border-radius: 12px;
   background: #f8f9fb;
  border: 1px solid var(--border-subtle);
  transition: all 0.4s cubic-bezier(0.23, 1, 0.320, 1);
   position: relative;
  overflow     :        hidden;
}


.benefit-card::before {
     content: '';
   position :   absolute;
    top: 0;
  left: 0;
   right: 0;
    height: 4px;
  background: var(--primary-gradient);
  transform: scaleX(0);
   transform-origin: left;
	transition: transform 0.4s ease;
     }

.benefit-card:hover::before {
	  transform: scaleX(1);}

.benefit-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 40px rgba(102, 126, 234, 0.15);
    background: #ffffff;
} 

.benefit-icon-wrapper {
   width: 60px;
   height: 60px;
   margin-bottom : 1.5rem;
    display: flex;
	align-items: center;
   justify-content  :  center;
}

.benefit-icon {

    width: 45px;
  height: 45px;
   stroke: #667eea;
   fill: none;
   stroke-width: 2;
         stroke-linecap: round;
    stroke-linejoin: round;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;


}

.benefit-card:hover .benefit-icon {
  stroke: var(--secondary-accent);
  transform: scale(1.1) rotate(5deg);
     }

.benefit-title {
		font-size: 1.3rem;
  font-weight: 600;
 margin-bottom: 0.8rem;
  color: var(--text-primary);
}

.benefit-text {
    font-size: 0.95rem;
  color: var(--text-secondary);
   line-height: 1.7;}

.services-preview-section {
	   padding:    5rem 2rem;
  background: var(--bg-light);
}

.services-preview-header {
 text-align: center;
     margin-bottom    :      3.5rem;
}

.services-preview-grid {

	    max-width: 1100px;
   margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
   gap: 2.5rem;


}

.service-preview-item {
   background: #ffffff;
  border-radius: 12px;
  overflow: hidden;
   transition: all 0.4s ease;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    display: flex;
    flex-direction: column;
	 height: 100%;
}

.service-preview-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(102, 126, 234, 0.2);
}

.preview-image {
  width: 100%;
    height: 220px;
   object-fit  :  cover;
   display: block;
}

.preview-content {
       display: flex;
  padding: 1.8rem;
   flex-direction: column;
    flex: 1;
	}

.preview-content h3 {
          font-size: 1.3rem;
    font-weight :        600;
  margin-bottom: 1rem;
  color: var(--text-primary); 
	
}


.preview-content p


{
    font-size: 0.95rem;
  color: var(--text-secondary);
   line-height: 1.7;
          flex: 1;
}

.cta-section {
    padding: 5rem 2rem;
  background: #ffffff;
}

.cta-wrapper {
   max-width    :        1100px;
    margin: 0 auto;
   display: grid;
    grid-template-columns: 1fr 1fr;
  gap: 3rem;
   align-items :     center;
}

.cta-content {
  padding:  1rem;
}

.cta-title {
	font-size: 2.3rem;
    font-weight: 700;
       margin-bottom: 1.5rem;
  color: var(--text-primary);
   line-height: 1.3;
}

.cta-description {
	          font-size: 1.05rem;
  color: var(--text-secondary);
               margin-bottom: 2rem;
                    line-height: 1.8;

}

.cta-button {
	    display: inline-block;
      padding: 1.1rem 2.5rem;
  background: var(--primary-gradient);
  color: #ffffff;
					text-decoration: none;
	 border-radius: 50px;
  font-weight: 600;
   font-size: 1rem;
  transition :      all 0.3s ease;
  box-shadow: 0 8px 20px rgba(102, 126, 234, 0.35);
    border: 2px solid transparent;}

.cta-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(102, 126, 234, 0.45);}

.cta-image {
  width: 100%;
  max-width: 500px;
}

.cta-img {
                    width: 100%;
    height: auto;
         border-radius: 12px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
	 display: block;
}

.testimonials-section {
   padding: 5rem 2rem;
  background: var(--bg-light);
}

.testimonials-grid {
   max-width: 1100px;
    margin: 3rem auto 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.testimonial-block		{

    background: #ffffff;
	padding: 2.2rem;
   border-radius: 10px;
    border-left: 4px solid #667eea;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;

}

.testimonial-block:hover {
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
  transform: translateX(5px);
}

.testimonial-text {
  font-size: 0.95rem;
  color: var(--text-secondary);
    line-height: 1.8;
        margin-bottom   :    1.5rem;
   font-style: italic;
}

.testimonial-author {
     font-size     :     0.85rem;
   font-weight: 600;
  color: var(--text-primary);
  text-transform  :       uppercase;
	letter-spacing: 0.5px;}

.contact-form-section {
          padding: 5rem 2rem;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #ffffff;
}

.contact-wrapper{
  max-width: 700px;
  margin : 0 auto;
}

.contact-title {
  font-size: 2.3rem;
  font-weight: 700;
  margin-bottom: 1rem;
  text-align: center;
}

.contact-description {


  font-size: 1.05rem;
  text-align: center;
   margin-bottom: 2.5rem;
   opacity: 0.95;
   line-height: 1.6;
     }

.contact-form {
   display: flex;
   flex-direction: column;
   gap :        1.8rem;
}

.form-group {
	display: flex;
	       flex-direction    :      column;
}

.form-label {

   font-size: 0.95rem;
   font-weight     :  600;
  margin-bottom: 0.6rem;
	text-transform  :        uppercase;
  letter-spacing: 0.5px;
  opacity: 0.9;}

.form-input,
.form-textarea {
   padding :       1rem;
    border: none;
  border-radius    :     8px;
     font-size: 0.95rem;
  font-family: inherit;
  background: rgba(255, 255, 255, 0.95);
  color: var(--text-primary);
  transition : all 0.3s ease;


}

.form-input:focus,
.form-textarea:focus {
     outline: none;
   background: #ffffff;
  box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.3);
} 

.form-textarea {

	   resize: vertical;
  min-height: 120px;
}

.form-button {
   padding: 1.2rem 2rem; 
	  background: #ffffff; 
	  color: #667eea; 
	   border: none; 
	  border-radius: 50px; 
	    font-size  :      1rem; 
	  font-weight: 700; 
	    cursor: pointer; 
				transition: all 0.3s ease; 
	    text-transform: uppercase; 
	   letter-spacing: 0.5px; 
	  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.form-button:hover
	{
  transform: translateY(-2px);
  background: #f8f9fb;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.3);
}

.form-button:active {
  transform: translateY(0);
}

.footer-section {
	  background: #1a1a2e;
  color: #ffffff;
    padding: 4rem 2rem 2rem;


}

.footer-container  {
  max-width: 1100px;
  margin    :       0 auto 3rem;
    display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 3rem;
}

.footer-brand {
  flex-direction: column;
   display: flex;
}

.footer-logo {
 height: 50px;
 width: auto;
   margin-bottom: 1rem;
}

.footer-description {
   font-size: 0.9rem;
   line-height :  1.7;
   color  :  #b0b0c8;
}

.footer-navigation,
.footer-contacts  {
   display: flex;
       flex-direction: column;
}

.footer-heading {
   font-size: 1.05rem;
  font-weight: 700;
   margin-bottom: 1.5rem;
                    text-transform: uppercase;
   letter-spacing: 0.5px;
}


.footer-links   {
    list-style: none;
    display: flex;
    flex-direction: column;
   gap: 0.8rem;


}

.footer-links a {
   color: #b0b0c8;
   text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.3s ease; 

}

.footer-links a:hover {
    color: #667eea;
}



.footer-address {
    margin-bottom: 1.2rem;
   font-size :        0.9rem;
    line-height: 1.8;
    color: #b0b0c8;
}

.footer-phone {
    font-size: 0.9rem;
    color   :      #667eea;
  font-weight: 600;
       margin-bottom: 0.5rem;
}

.footer-email {


  font-size: 0.9rem;
  color: #b0b0c8;
     }

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 2rem;
   text-align: center;
}

.footer-copyright {
  font-size: 0.85rem;
   color: #7a7a8e;
}@media (max-width: 768px) {
    .nav-toggle {
        display: flex;
    }

    .nav-links {
        position: absolute;
        top: 65px;
        left: 0;
        right: 0;
        background: #ffffff;
        flex-direction: column;
        gap: 0;
        border-bottom: 1px solid var(--border-subtle);
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
    }

    .nav-links.active {
        max-height: 400px;
    }

    .nav-link {
        padding: 1rem 2rem;
        border-bottom: 1px solid var(--border-subtle);
    }

    .nav-link::after {
        display: none;
    }

    .hero-title {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .hero-section {
        min-height: 450px;
    }

    .hero-button {
        padding: 1rem 2rem;
    }

    .section-title {
        font-size: 1.8rem;
    }

    .cta-wrapper {
        grid-template-columns: 1fr;
    }

    .contact-form-section {
        padding: 3rem 1.5rem;
    }

    .contact-title {
        font-size: 1.8rem;
    }

    .footer-container {
        gap: 2rem;
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    .benefits-container {
        grid-template-columns: 1fr;
    }

    .services-preview-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    body {
        font-size: 14px;
    }

    .nav-container {
        padding: 0 1rem;
    }

    .hero-title {
        font-size: 1.6rem;
        margin-bottom: 1rem;
    }

    .hero-button {
        font-size: 0.9rem;
        padding: 0.9rem 1.8rem;
    }

    .section-title {
        font-size: 1.5rem;
    }

    .benefit-card {
        padding: 1.5rem;
    }

    .contact-form {
        gap: 1.3rem;
    }

    .form-input,
    .form-textarea {
        padding: 0.8rem;
    }

    .cta-title {
        font-size: 1.6rem;
    }
}.policySection {
	padding   :        80px 2rem;
   background: #f8f9fa;
}

.policyContainer {
  max-width :       800px;
    margin: 0 auto;
    text-align: left;
}

.policyContainer h2 {

    color: #2c3e50;
  font-size: 2.5rem;
    margin-bottom: 1.5rem;
  font-weight: 700;}

.policyContainer p {
    color: #7f8c8d; 
	   margin-bottom: 1.5rem; 
	      line-height: 1.7; 
	   font-size: 1.1rem;
}@media (max-width: 768px) {
    .policyContainer h2 {
        font-size: 2rem;
    }

    .policyContainer p {
        font-size: 1rem;
    }

    .policySection {
        padding: 60px 1rem;
    }
}.services-hero {
   position: relative;
	    min-height     :     500px;
	  background: linear-gradient(135deg, #764ba2 0%, #667eea 50%, #f39c12 100%);
		 display: flex;
	    align-items: center;
	    justify-content: center;
	  overflow: hidden;
		color: #ffffff;
}

.services-hero-overlay{

    position: absolute;
  inset: 0;
  background: radial-gradient(circle at 20% 50%, rgba(255, 255, 255, 0.15) 0%, transparent 50%),
                radial-gradient(circle at 80% 80%, rgba(0, 0, 0, 0.12) 0%, transparent 50%);


}



.services-hero-content {
   position: relative;
  z-index: 2;
    text-align: center;
        max-width: 800px;
	 padding: 3rem 2rem;
}

.services-hero-title {


      font-size: 2.8rem;
  font-weight: 700;
   margin-bottom: 1.2rem;
    line-height: 1.3;
   letter-spacing: -0.5px;
     }

.services-hero-subtitle {
  font-size: 1.2rem;
	 margin-bottom: 0;
   opacity: 0.95;
    line-height :    1.7;
    font-weight: 400;
}

.services-intro {
    padding: 4rem 2rem;
  background: #ffffff;
}

.services-intro-wrapper  {


  max-width: 900px;
         margin : 0 auto;
   text-align: center;


}

.services-section-title {

	   font-size: 2.3rem;
    font-weight: 700;
    margin-bottom: 1.2rem;
  background: var(--primary-gradient);
  background-clip  :text;
}

.services-intro-text {
   font-size     :        1.05rem;
  color: var(--text-secondary);
  line-height: 1.8;
 max-width: 700px;
	 margin: 0 auto;
}

.main-services {
   padding: 4rem 2rem;
  background: var(--bg-light);
}

.main-services-container {
    gap: 2.5rem;
  display: flex;
    margin: 0 auto;
   flex-direction: column;
          max-width: 1100px;
}

.service-card-large {


	background: #ffffff;
   border-radius: 12px;
    overflow :hidden;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.4s cubic-bezier(0.23, 1, 0.320, 1);
    display: flex;
        flex-direction: column;
    border-left: 5px solid #667eea;}

.service-card-large:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 50px rgba(102, 126, 234, 0.2);
}

.service-card-header {
  padding: 2rem 2rem 0;
    display:      flex;
	justify-content  :       space-between;
    align-items:flex-start;
    gap    :      2rem;
}

.service-card-title {
    font-size: 1.6rem;
    font-weight :      700;
  color: var(--text-primary);
    line-height: 1.3;
   flex: 1;
	
}

.service-duration {
   display     :inline-block;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
   color: #ffffff;
   padding: 0.6rem 1.2rem;
    border-radius: 50px;
   font-size: 0.85rem;
   font-weight    : 600;
   white-space: nowrap;
}

.service-card-body {

   padding: 1.5rem 2rem;
    flex: 1;}

.service-intro-text {
  font-size    : 1rem;
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.service-features {

  list-style: none;
    display  :     grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
   gap: 1rem;


}

.service-features li {
    padding-left:        2rem;
  position: relative;
       font-size    :0.95rem;
  color: var(--text-secondary);
  line-height: 1.6;
}  

.service-features li::before    {
  content: '';
  -webkit-border-radius: 50%;
  position: absolute;
	left: 0;
	top: 0.5rem;
 width: 8px;
    height:8px;
    background: #667eea;
  border-radius: 50%;
} 

.service-card-footer {

	    padding  :        1.5rem 2rem;
    background: #f8f9fb;
  border-top: 1px solid var(--border-subtle);

}

.service-target 
 {
   font-size: 0.9rem;

  color: var(--text-primary);

    font-weight   :        600;

   text-transform: uppercase;

  letter-spacing: 0.3px; 
	
}

.service-comparison  {
       padding: 4rem 2rem;
  background: #ffffff;
}

.comparison-table-wrapper     {
    max-width: 1200px;

  margin: 3rem auto 0;

   overflow-x: auto;

         border-radius: 10px;

  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.comparison-table
{
    width: 100%;
        border-collapse: collapse;
   font-size: 0.9rem;
}

.comparison-table thead {
	  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
   color: #ffffff; 
}

.comparison-table thead th


{
   padding: 1.5rem;
    text-align: left;
   font-weight: 700;
  text-transform: uppercase;
    letter-spacing: 0.3px;
	font-size: 0.85rem;
}

.comparison-table tbody td {
    padding: 1.5rem;
  border-bottom: 1px solid var(--border-subtle);
}

.comparison-table tbody tr:last-child td {
    border-bottom     : none;
}


.comparison-table tbody tr:nth-child(even) {

		background: #f8f9fb;
}

.comparison-table tbody tr:hover {
       background: #f0f0f5;
} 

.table-high {
    color: #2ecc71;
   font-weight: 600;
}

.table-medium {
  color: #f39c12;
   font-weight: 600;
}

.table-low {
    color:      #667eea;
     font-weight: 600;
}

.service-process {
    padding: 4rem 2rem;
  background: var(--bg-light);
}

.process-timeline	{
    max-width: 1000px;
    margin: 3rem auto 0;
   display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
   gap: 2rem;
}

.process-step {
  text-align: center;
  position: relative;
   padding    :    2rem 1.5rem;
}

.process-step:not(:last-child)::after {
  content: '';
   position :       absolute;
	 right: -1.5rem;
  top   : 50%;
         width: 3rem;
   height: 2px;
  background: linear-gradient(90deg, #667eea 0%, transparent 100%);
  transform: translateY(-50%);
}

.step-number {
    width   :     50px;

  height: 50px;

  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);

	color: #ffffff;

	border-radius: 50%;

   display: flex;

    align-items: center;

  justify-content: center;

   font-size: 1.6rem;

  font-weight:       700;

  margin: 0 auto 1.5rem;

  box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
}

.step-title	{
    font-size: 1.2rem;
   font-weight   :        700;
   margin-bottom: 0.8rem;
  color: var(--text-primary);
} 

.step-description {
    font-size: 0.9rem;
  color: var(--text-secondary);
    line-height: 1.6;
}

.service-faq

{
          padding: 4rem 2rem;
    background: #ffffff;
}

.faq-container {
   max-width: 900px;
   margin: 3rem auto 0;
   display     :        flex;
   flex-direction: column;
    gap: 1.2rem;
}

.faq-item {
  border: 1px solid var(--border-subtle);
    border-radius: 8px;
	 overflow: hidden;
      transition   :     all 0.3s ease;
}


.faq-item:hover {
         border-color: #667eea;
  box-shadow: 0 4px 12px rgba(102, 126, 234, 0.1);
}

.faq-question {
   padding: 1.5rem;
	 cursor: pointer;
  display: flex;
   align-items: center;
   justify-content: space-between;
  background: #f8f9fb;
   font-weight: 600;
    font-size    : 1rem;
  color: var(--text-primary);
  user-select: none;
}

.faq-question::after {
  content: '+';
    font-size: 1.5rem;
    color: #667eea;
          transition: transform 0.3s ease;
}

.faq-item[open] .faq-question {
    background: #ffffff; 
  border-bottom: 1px solid var(--border-subtle);
}

.faq-item[open] .faq-question::after {
  transform: rotate(45deg);
}

.faq-answer {
   padding: 1.5rem;
      background: #ffffff;
     color: var(--text-secondary);
     line-height   :  1.8; 

}

.faq-answer p {
  margin  :0;
}

.services-cta {

    padding: 4rem 2rem;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
	text-align: center;
   color: #ffffff;

}

.services-cta-title {

   font-size   :        2.3rem;
   font-weight   :      700;
  margin-bottom: 1.2rem;
     }

.services-cta-text {
  font-size: 1.1rem;
  margin-bottom: 2rem;
  opacity: 0.95;
    line-height: 1.6; 

}

.services-cta-button {
   display     :  inline-block;
    padding: 1.1rem 2.5rem;
    background: #ffffff;
     color   :       #667eea;
  text-decoration: none;
          border-radius: 50px;
    font-weight: 700;
   font-size: 1rem;
  transition: all 0.3s ease;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
   text-transform: uppercase;
  letter-spacing: 0.5px;
}

.services-cta-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.3);
  background: #f8f9fb;


     }

.thankyou-container 
 {
  min-height: calc(100vh - 300px);
    padding: 4rem 2rem;
  background: var(--bg-light);
      display: flex;
    align-items: center;
  justify-content: center;

}

.thankyou-wrapper {

    max-width: 700px;
   background: #ffffff;
   padding: 3.5rem 2.5rem;
   border-radius: 15px;
  box-shadow: 0 10px 40px rgba(102, 126, 234, 0.15);
    text-align: center;
	}

.thankyou-icon-wrapper {
	 width: 80px;
    height: 80px;
   margin: 0 auto 2rem;
  display   :flex;
   align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
   border-radius: 50%;
     }

.thankyou-icon {
   width: 50px;

	   height   :      50px;

	  stroke: #ffffff;

	  fill: none;

	   stroke-width: 2;

	   stroke-linecap: round;

	  stroke-linejoin: round;
}

.thankyou-title {


	font-size: 2.2rem;
   font-weight: 700;
  color: var(--text-primary);
    margin-bottom    :  0.5rem;


}

.thankyou-subtitle {
  font-size: 1.2rem;
  color: #2ecc71;
   font-weight  :   600;
  margin-bottom: 2rem;
}

.thankyou-content {
                    text-align: left;
}

.thankyou-message {
	font-size: 1rem;
  color: var(--text-secondary);
    line-height: 1.8;
  margin-bottom: 2.5rem;
	padding-bottom: 2rem;
  border-bottom: 1px solid var(--border-subtle);
}

.thankyou-steps {
    margin-bottom:      2.5rem;
          flex-direction: column;
  gap: 1.5rem;
        display: flex;
}

.step-item {


	 gap: 1.5rem;
	align-items: flex-start;
   display: flex;

}

.step-icon {
	width    :40px;
    height: 40px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
   color: #ffffff;
   border-radius   :50%;
    display:        flex;
       align-items: center;
  justify-content: center;
    font-weight: 700;
	font-size: 1.1rem;
  flex-shrink: 0;
}

.step-content h3 {
   font-size: 1.05rem;
   font-weight: 700;
  color: var(--text-primary);
   margin-bottom     :      0.3rem;
}

.step-content p {
       font-size: 0.9rem;
  color: var(--text-secondary);
  margin: 0;
  line-height: 1.6;


}

.thankyou-info-box {
          background: #f8f9fb;
   padding     :1.8rem;
  border-left   :        4px solid #667eea;
    border-radius: 8px;
    margin-bottom:      2rem;
}

.info-box-title {


   font-size: 1.1rem;

		font-weight: 700;

	  color: var(--text-primary);

	  margin-bottom: 1rem;
	}

.info-box-list {

  list-style: none;
    display: flex;
  flex-direction: column;
	gap     :      0.8rem;

}

.info-box-list li {
   font-size: 0.95rem;
  color: var(--text-secondary);
   line-height: 1.6;
   padding-left: 1.5rem;
    position: relative;
}

.info-box-list li::before {
  content: '';
    position: absolute;
    left  :     0;
  top: 0.7rem;
  width: 6px;
    height: 6px;
  background: #667eea;
  border-radius    :50%;
}

.thankyou-buttons {
	 display: flex;
	gap: 1rem;
    flex-wrap: wrap;
    justify-content: center;
  margin-bottom :    2rem;
}

.btn-primary,
.btn-secondary {
   padding: 1rem 2rem;
   border-radius: 50px;
  font-weight: 600;
	font-size     : 0.95rem;
   text-decoration: none;
    transition: all 0.3s ease;
  text-transform: uppercase;
	letter-spacing: 0.3px;
    cursor: pointer;
		border: none; 

}

.btn-primary {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #ffffff;
  box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
}

.btn-primary:hover {
  transform: translateY(-2px); 
	  box-shadow: 0 8px 25px rgba(102, 126, 234, 0.4);
}

.btn-secondary {

    background: #ffffff;
    color     : #667eea;
      border: 2px solid #667eea;


}

.btn-secondary:hover {
    background: #f8f9fb;
	 border-color: #764ba2;
   color: #764ba2;
}

.thankyou-social-notice    {
   padding-top: 1.5rem;
  border-top: 1px solid var(--border-subtle);
   font-size: 0.9rem;
  color: var(--text-secondary);
   line-height:  1.7;
}
@media (max-width: 768px) {
    .services-hero-title {
        font-size: 2rem;
    }

    .services-section-title {
        font-size: 1.8rem;
    }

    .service-card-header {
        flex-direction: column;
        padding: 1.5rem 1.5rem 0;
    }

    .service-duration {
        align-self: flex-start;
    }

    .service-features {
        grid-template-columns: 1fr;
    }

    .process-timeline {
        grid-template-columns: 1fr;
    }

    .process-step:not(:last-child)::after {
        display: none;
    }

    .comparison-table thead th,
    .comparison-table tbody td {
        padding: 1rem 0.8rem;
        font-size: 0.8rem;
    }

    .thankyou-wrapper {
        padding: 2.5rem 1.5rem;
    }

    .thankyou-title {
        font-size: 1.8rem;
    }

    .thankyou-buttons {
        flex-direction: column;
    }

    .btn-primary,
    .btn-secondary {
        width: 100%;
        text-align: center;
    }

    .step-item {
        gap: 1rem;
    }
}

@media (max-width: 480px) {
    .services-hero {
        min-height: 400px;
    }

    .services-hero-title {
        font-size: 1.6rem;
    }

    .services-hero-subtitle {
        font-size: 1rem;
    }

    .services-section-title {
        font-size: 1.5rem;
    }

    .service-card-large {
        border-left-width: 3px;
    }

    .service-card-header,
    .service-card-body,
    .service-card-footer {
        padding: 1.2rem;
    }

    .comparison-table-wrapper {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }

    .thankyou-wrapper {
        padding: 1.5rem 1rem;
    }

    .thankyou-title {
        font-size: 1.6rem;
    }

    .thankyou-icon-wrapper {
        width: 70px;
        height: 70px;
        margin-bottom: 1.5rem;
    }

    .thankyou-icon {
        width: 40px;
        height: 40px;
    }

    .services-cta-title {
        font-size: 1.8rem;
    }
}