body {
  background-image: unset;
}

/* =====5. HOME PAGE SPECIFIC (HERO) S==== */

.hero-section {
  padding-top: 54px;
  padding-bottom: 40px;
  position: relative;
  overflow: hidden;
  background: linear-gradient(105deg, #ffffff 30%, #ffe4e1 100%);
}

.hero-grid-bg {
  position: absolute;
  top: 0;
  right: 0;
  width: 50%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
  background-image: 
    linear-gradient(rgba(255, 255, 255, 1) 2px, transparent 2px),
    linear-gradient(90deg, rgba(255, 255, 255, 1) 2px, transparent 2px);
  background-size: 50px 50px;
}

.hero-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 71px;
  position: relative;
  z-index: 2;
}

.hero-content {
  width: 100%;
  max-width: 627px;
  margin-left: 0; 
}

.hero-title {
  font-size: 54px;
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-bottom: 24px;
  color: #000;
}

.hero-description {
  font-size: 18px;
  color: #565656;
  line-height: 1.5;
  margin-bottom: 32px;
  max-width: 500px;
}

.hero-form {
  position: relative;
  max-width: 480px;
  margin-bottom: 32px;
}

.hero-form input[type="email"] {
  width: 100%;
  padding: 18px 24px;
  padding-right: 160px;
  border: 1px solid #e5e7eb;
  border-radius: 999px;
  font-size: 15px;
  background-color: #f9fafb;
  outline: none;
  transition: 0.2s;
  font-family: inherit;
}

.hero-form .btn {
  position: absolute;
  top: 6px;
  right: 6px;
  bottom: 6px;
  padding: 0 32px;
  border: none;
}

.social-proof {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background-color: #eef2ff;
  padding: 5px 24px 5px 5px; 
  border-radius: 999px;
  font-size: 15px; 
  font-weight: 500;
  color: #1877F2; 
}

.hero-image-wrapper {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 407px;
}

.hero-img {
  max-width: 100%;
  height: auto;
}

.hero-disclaimer {
  text-align: center;
  margin-top: 63px;
  position: relative;
  z-index: 2;
  max-width: 768px; 
  margin-left: auto; 
  margin-right: auto;
}
/* =====5. HOME PAGE SPECIFIC (HERO) E==== */

/* =====6. FAQ S==== */
.faq-section {
  padding-top: 50px; 
  padding-bottom: 50px;
  background-color: #fff;
  margin-bottom: 0;
}

.faq-header {
  text-align: center;
  max-width: 768px;
  margin: 0 auto 50px;
}

.faq-title {
  font-size: 40px;
  font-weight: 700;
  color: #000;
  margin-bottom: 16px;
  letter-spacing: -0.5px;
}

.faq-subtitle {
  font-size: 20px;
  margin-top: 0;
  color: #565656;
  font-weight: 400;
}

.faq-container {
  max-width: 768px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.faq-item {
  background-color: #F9FAFB;
  border-radius: 8px;
  overflow: hidden;
  transition: all 0.3s ease;
  width: 100%;
  max-width: 768px; 
  margin-left: auto;
  margin-right: auto;
}

.faq-question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px;
  background: none;
  border: none;
  text-align: left;
  cursor: pointer;
  font-family: var(--font-primary);
  font-size: 18px;
  font-weight: 500;
  color: #000;
}

.faq-answer {
  padding: 0 24px 0; 
  color: #3A3A3A;
  font-size: 16px;
  line-height: 1.6;
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-icon {
  flex-shrink: 0;
  margin-left: 20px;
  width: 24px;
  height: 24px;
  position: relative; 
}

.faq-icon svg {
  display: block;
  width: 100%;
  height: 100%;
  transition: transform 0.3s ease;
  position: absolute; 
  top: 0;
  left: 0;
  color: var(--color-tertiary);
}

.faq-icon .icon-plus {
  opacity: 1;
  transform: rotate(0deg);
}

.faq-icon .icon-minus {
  opacity: 0;
  transform: rotate(-90deg); 
}

.faq-item.active .faq-icon .icon-plus {
  opacity: 0;
  transform: rotate(90deg);
}

.faq-item.active .faq-icon .icon-minus {
  opacity: 1;
  transform: rotate(0deg);
}

.faq-item.active .faq-answer {
  max-height: 500px; 
  opacity: 1;
  padding-bottom: 24px;
}

.faq-footer {
  text-align: center;
  margin-top: 40px;
}
/* =====6. FAQ E==== */

/* =====7. CLIENT TESTIMONIALS S==== */
.testimonials-section {
  padding-top: 77px;
  padding-bottom: 77px;
  background-color: #fff;
  position: relative;
  overflow: hidden;
  margin-bottom: 0;
}

.testimonials-header {
  text-align: center;
  margin-bottom: 50px;
}

.testimonials-title {
  font-size: 40px;
  font-weight: 700;
  color: #000;
}

.testimonials-slider-wrapper {
  position: relative;
  max-width: 1250px;
  margin: 0 auto;
}

.testimonials-slider .slick-track {
  display: flex;
  gap: 36px; 
}

.testimonials-slider .slick-slide {
  height: auto;
  display: flex; 
  justify-content: center; 
}

.slick-slide .testimonial-card {
  height: 100%;
  display: flex;
  flex-direction: column;
}

.testimonials-section .container {
  max-width: 1250px; 
  
}

.testimonial-card {
  background-color: #F9FAFB;
  border-radius: 12px;
  padding: 20px 20px 40px 20px; 
  margin: 0;
  text-align: center;
  border: 1px solid #f3f4f6;
  width: 100%;
  max-width: 367px;
  display: flex !important; 
  flex-direction: column !important; 
  justify-content: space-between; 
  align-items: center; 
  max-height: 233px;
  min-width: 367px;
}

.testimonial-quote {
  font-size: 18px;
  line-height: 1.6;
  color: #3A3A3A;
  margin-bottom: 32px;
  flex-grow: 1; 
  display: flex;
  align-items: flex-start; 
  justify-content: center;
}

.testimonial-author {
  margin-top: auto; 
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center; 
  width: 100%;
}

.author-name {
  font-size: 16px;
  font-weight: 700;
  color: #000;
  margin-bottom: 4px;
  display: block; 
}

.author-role {
  font-size: 14px;
  color: #565656;
  display: block; 
}

.slider-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background-color: #fff;
  border: 1px solid #e5e7eb;
  color: #000;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  z-index: 10;
  transition: all 0.2s;
}

.slider-arrow:hover {
  border-color: #000;
  background-color: #f9fafb;
}

.testimonials-controls {
  position: absolute;
  top: 55%; 
  left: 0;
  width: 100%;
  transform: translateY(-50%);
  display: flex;
  justify-content: space-between;
  pointer-events: none; 
  height: 0;
}

.slider-arrow {
  pointer-events: auto; 
  position: relative; 
  transform: none;
  top: auto;
}

.slider-prev {
  margin-left: -70px; 
}

.slider-next {
  margin-right: -70px; 
}
/* =====7. CLIENT TESTIMONIALS E==== */


/* ==========================================================================
   8. RESPONSIVE MEDIA QUERIES
   ========================================================================== */

/* Laptop (1200px and down) */
@media (max-width: 1200px) {
    .container { max-width: 960px; }
    .hero-title { font-size: 48px; }
    .hero-image-wrapper { margin-left: 0; }
    .slider-prev { margin-left: -20px; }
    .slider-next { margin-right: -20px; }
}

/* Tablet (992px and down) */
@media (max-width: 992px) {
    .container { max-width: 720px; }
    
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 40px;
    }
    .hero-content {
        max-width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    .hero-description { margin-left: auto; margin-right: auto; }
}


@media (max-width: 768px) {
    .container { max-width: 100%; padding-left: 20px; padding-right: 20px; }
    
   
    
    
    
    .hero-section { padding-top: 40px; }
    .hero-title { font-size: 30px;line-height: 1.2; }
    .hero-title br, .hero-description br {
      display: none;
    }
    .hero-description { font-size: 16px; margin-top: 0;}
    .hero-form { max-width: 100%; }
    .hero-form input[type="email"] { padding-right: 140px; }
    .hero-form .btn { padding: 0 20px; }
    .hero-image-wrapper { min-height: auto; margin-left: 0; }
    
    .faq-header {margin-bottom: 30px;}
    .faq-title { font-size: 30px; line-height: normal; }
    .faq-subtitle { font-size: 18px; }
    .faq-question { font-size: 16px; padding: 20px; }
    
    .testimonials-section {
      padding-top: 30px;
      padding-bottom: 50px;
    }
    .testimonials-header {
      margin-bottom: 20px;
    }
    .testimonial-card {
        min-width: 0 !important;
        max-width: 100% !important;
        height: auto;
        max-height: none;
        
    }
    .testimonials-title { font-size: 30px; }
    .testimonials-controls {
        position: relative;
        top: 0;
        transform: none;
        margin-top: 30px;
        justify-content: center;
        gap: 20px;
        height: auto;
        pointer-events: auto;
        padding: 0;
    }
    .slider-prev, .slider-next {
        margin: 0 !important;
        position: static !important;
        transform: none !important;
        width: 44px;
        height: 44px;
    }

    .testimonials-slider .slick-track {
        gap: 0;
    }
}


@media (max-width: 480px) {
    
    .container { padding-left: 10px; padding-right: 10px; }
    
    .hero-form input[type="email"] { 
        padding-right: 20px; 
        border-radius: 12px;
        margin-bottom: 10px;
    }
    .hero-form .btn { 
        position: static; 
        width: 100%; 
        padding: 15px;
    }
    
    .social-proof { font-size: 13px; padding: 5px 15px; }
}


