/* ============================================================
   CherryAI Marketing Site — styles.css
   Colors extracted from the React/MUI source components.
   ============================================================ */

/* --- Reset & Base --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: 72px;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  color: #1E1E28;
  background: #FFFFFF;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 16px;
}
@media (min-width: 768px) {
  .container { padding: 0 24px; }
}

.text-center { text-align: center; }
.text-cherry { color: #E6394A; }

/* --- Shared Typography --- */
.section-label {
  color: #C42D3E;
  font-size: 20px;
  font-weight: 600;
  letter-spacing: -0.4px;
  line-height: 1.2;
}

.section-heading {
  color: #101847;
  font-size: 28px;
  font-weight: 600;
  letter-spacing: -0.36px;
  line-height: 1.2;
  margin-top: 24px;
}
@media (min-width: 768px) {
  .section-heading { font-size: 36px; }
}

.section-subheading {
  color: rgba(16, 24, 71, 0.7);
  font-size: 20px;
  font-weight: 400;
  letter-spacing: -0.8px;
  line-height: 1.5;
  max-width: 700px;
  margin-top: 24px;
}

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 600;
  height: 48px;
  padding: 0 24px;
  text-transform: none;
  transition: background-color 0.2s ease, color 0.2s ease;
}

.btn--primary {
  background-color: #E6394A;
  box-shadow: 0 1px 2px rgba(0,0,0,0.08);
  color: #FFFFFF;
}
.btn--primary:hover { background-color: #C42D3E; }

.btn--outline {
  background-color: #FFFFFF;
  border: 1px solid #E6394A;
  color: #E6394A;
}
.btn--outline:hover { background-color: rgba(230, 57, 74, 0.04); }

/* ============================================================
   NAV BAR
   ============================================================ */
.nav {
  position: sticky;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1100;
  background: #FFFFFF;
  border-bottom: 1px solid #E2E8F0;
  box-shadow: 0 1px 2px rgba(0,0,0,0.08);
  height: 72px;
}

.nav__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}
@media (min-width: 768px) {
  .nav__container { padding: 0 24px; }
}

.nav__logo-link { display: inline-flex; align-items: center; }
.nav__logo { height: 32px; width: auto; }

.nav__links { display: none; }
@media (min-width: 768px) {
  .nav__links { display: flex; }
}
.nav__links ul { display: flex; gap: 4px; }
.nav__links a {
  color: #475569;
  font-size: 14px;
  font-weight: 500;
  padding: 6px 16px;
  border-radius: 4px;
  transition: color 0.15s, background 0.15s;
}
.nav__links a:hover {
  color: #101847;
  background: rgba(0,0,0,0.04);
}

.nav__actions { display: flex; align-items: center; gap: 8px; }

.nav__login {
  display: none;
  color: #475569;
  font-size: 14px;
  font-weight: 500;
  padding: 6px 16px;
  border-radius: 4px;
  transition: color 0.15s;
}
.nav__login:hover { color: #101847; }
@media (min-width: 768px) {
  .nav__login { display: inline-flex; }
}

.nav__cta { display: none; }
@media (min-width: 768px) {
  .nav__cta { display: inline-flex; }
}

/* Hamburger */
.nav__hamburger {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}
@media (min-width: 768px) {
  .nav__hamburger { display: none; }
}
.nav__hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: #475569;
  border-radius: 2px;
  transition: transform 0.2s, opacity 0.2s;
}

/* Mobile menu */
.nav__mobile {
  position: fixed;
  top: 0;
  right: -100%;
  width: 280px;
  height: 100vh;
  background: #FFFFFF;
  box-shadow: -4px 0 24px rgba(0,0,0,0.12);
  z-index: 1200;
  transition: right 0.3s ease;
}
.nav__mobile.is-open {
  right: 0;
}
.nav__mobile-inner { padding: 16px; }
.nav__mobile-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 24px;
}
.nav__mobile-close {
  background: none;
  border: none;
  font-size: 28px;
  color: #475569;
  cursor: pointer;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.nav__mobile nav ul { display: flex; flex-direction: column; gap: 4px; }
.nav__mobile nav a {
  display: block;
  padding: 10px 12px;
  color: #475569;
  font-size: 14px;
  font-weight: 500;
  border-radius: 4px;
  transition: background 0.15s, color 0.15s;
}
.nav__mobile nav a:hover {
  background: rgba(0,0,0,0.04);
  color: #101847;
}
.nav__mobile-cta {
  display: block;
  width: 100%;
  margin-top: 16px;
  text-align: center;
}

/* Overlay */
.nav__overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.3);
  z-index: 1199;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
}
.nav__overlay.is-visible {
  opacity: 1;
  pointer-events: auto;
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  overflow: hidden;
  padding-top: 64px;
  padding-bottom: 160px;
  background-image: url('/assets/images/hero-bg-pattern.png');
  background-position: center top;
  background-repeat: no-repeat;
  background-size: cover;
}
@media (min-width: 768px) {
  .hero { padding-top: 120px; padding-bottom: 0; }
}

.hero__bg-cherry {
  position: absolute;
  right: -30%;
  top: -100px;
  width: 50%;
  aspect-ratio: 1314 / 1381;
  background-image: url('/assets/images/hero-cherry-bg.png');
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  opacity: 0.12;
  z-index: 0;
}
@media (min-width: 768px) {
  .hero__bg-cherry { right: -5%; top: -208px; width: 68%; }
}

.hero__container { position: relative; z-index: 1; }

.hero__text { max-width: 800px; }

.hero__headline {
  color: #1E1E28;
  font-size: 36px;
  font-weight: 600;
  letter-spacing: -1.12px;
  line-height: 1.2;
  margin-top: 24px;
}
@media (min-width: 768px) {
  .hero__headline { font-size: 56px; }
}

.hero__subheading {
  color: #475569;
  font-size: 18px;
  font-weight: 400;
  line-height: 1.5;
  margin-top: 24px;
}
@media (min-width: 768px) {
  .hero__subheading { font-size: 24px; }
}

.hero__text .btn { margin-top: 24px; }

.hero__image {
  margin-top: 40px;
  max-width: 1152px;
}
@media (min-width: 768px) {
  .hero__image { margin-top: 64px; }
}
.hero__image img {
  width: 100%;
  border-radius: 30px 30px 0 0;
  box-shadow: 0 0 50px rgba(230, 57, 74, 0.5);
  object-fit: cover;
  object-position: top;
}
@media (min-width: 768px) {
  .hero__image img { height: 563px; }
}

/* ============================================================
   VALUE PROP BAR
   ============================================================ */
.value-prop {
  background: #FFFFFF;
  padding: 48px 0;
  text-align: center;
}
@media (min-width: 768px) {
  .value-prop { padding: 72px 0; }
}

.value-prop__stats {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  margin-top: 24px;
}
@media (min-width: 768px) {
  .value-prop__stats { flex-direction: row; justify-content: center; gap: 0; }
}

.value-prop__stat { text-align: center; padding: 16px 0; width: 314px; }
.value-prop__stat-value {
  color: #E6394A;
  font-size: 36px;
  font-weight: 600;
  letter-spacing: -0.48px;
  line-height: 1.2;
}
@media (min-width: 768px) {
  .value-prop__stat-value { font-size: 48px; }
}
.value-prop__stat-label {
  display: block;
  color: rgba(13, 19, 57, 0.7);
  font-size: 16px;
  margin-top: 16px;
}

.value-prop__stat-divider {
  display: none;
}
@media (min-width: 768px) {
  .value-prop__stat-divider {
    display: block;
    width: 1px;
    height: 99px;
    background: rgba(16, 24, 71, 0.15);
    margin: 0 24px;
  }
}

.value-prop__logos {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 24px;
  margin-top: 32px;
}
@media (min-width: 768px) {
  .value-prop__logos { gap: 80px; }
}
.value-prop__logos img {
  height: 40px;
  width: auto;
  max-width: 160px;
  object-fit: contain;
  mix-blend-mode: luminosity;
  opacity: 0.7;
}
@media (min-width: 768px) {
  .value-prop__logos img { height: 48px; max-width: 200px; }
}
/* Fincham logo has a taller aspect ratio — boost height to match visual weight */
.value-prop__logos img:last-child { height: 56px; }
@media (min-width: 768px) {
  .value-prop__logos img:last-child { height: 72px; }
}

/* ============================================================
   PROBLEM & SOLUTION
   ============================================================ */
.problem-solution {
  background: #FFFFFF;
  padding: 48px 0;
}
@media (min-width: 768px) {
  .problem-solution { padding: 81px 0; }
}

.ps-card {
  border-radius: 15px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  margin-top: 40px;
}
@media (min-width: 768px) {
  .ps-card { flex-direction: row; min-height: 493px; }
}

.ps-card--old {
  border: 5px solid #FBD0D5;
  background: #FFFFFF;
}

.ps-card--cherry {
  background: #FDE6E8;
  box-shadow: 0 0 20px rgba(0,0,0,0.1);
}
@media (min-width: 768px) {
  .ps-card--cherry { flex-direction: row; }
}

.ps-card__image {
  flex-shrink: 0;
  overflow: hidden;
  height: 280px;
}
@media (min-width: 768px) {
  .ps-card--old .ps-card__image { width: 583px; height: 100%; }
  .ps-card--cherry .ps-card__image { width: 55%; padding: 24px; }
}
.ps-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.ps-card--cherry .ps-card__image img {
  border: 3px solid #FEF2F3;
  border-radius: 15px;
  box-shadow: 0 0 50px rgba(0,0,0,0.1);
}

.ps-card__content {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 32px;
}
@media (min-width: 768px) {
  .ps-card__content { padding: 64px; }
}

.ps-card__title {
  color: #1E1E28;
  font-size: 24px;
  font-weight: 600;
  line-height: 1.2;
  margin-bottom: 24px;
}

.ps-card__points { display: flex; flex-direction: column; gap: 24px; }

.key-point {
  display: flex;
  gap: 24px;
  align-items: flex-start;
}
.key-point__icon {
  flex-shrink: 0;
  width: 58px;
  height: 58px;
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.key-point__icon--pink { background: #FDE6E8; }
.key-point__icon--red { background: #E6394A; }
.key-point__title {
  color: #1E1E28;
  font-size: 18px;
  font-weight: 600;
  line-height: 1.2;
}
.key-point__desc {
  color: rgba(13, 19, 57, 0.7);
  font-size: 16px;
  line-height: 1.5;
  margin-top: 8px;
}

/* ============================================================
   FEATURES
   ============================================================ */
.features {
  background: linear-gradient(180deg, #FEF9FA 47.6%, #F0D8DD 100%);
  padding: 48px 0;
  scroll-margin-top: 72px;
}
@media (min-width: 768px) {
  .features { padding: 81px 0; }
}

.features__grid { margin-top: 48px; }

.features__row {
  display: grid;
  gap: 24px;
  grid-template-columns: 1fr;
}
@media (min-width: 768px) {
  .features__row { grid-template-columns: 2fr 1fr; }
  .features__row--reverse { grid-template-columns: 1fr 2fr; }
}
.features__row + .features__row { margin-top: 24px; }

.feature-card {
  background: #64748B;
  border-radius: 15px;
  box-shadow: 0 0 50px rgba(0,0,0,0.1);
  overflow: hidden;
  position: relative;
  min-height: 320px;
}
@media (min-width: 768px) {
  .feature-card { height: 493px; }
}

.feature-card__text {
  padding: 32px;
  position: relative;
  z-index: 2;
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
@media (min-width: 768px) {
  .feature-card--wide .feature-card__text {
    flex-direction: column;
    width: 40%;
  }
}

.feature-card__icon {
  flex-shrink: 0;
  width: 58px;
  height: 58px;
  background: #E6394A;
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.feature-card__title {
  color: #FFFFFF;
  font-size: 18px;
  font-weight: 600;
  line-height: 1.2;
}

.feature-card__desc {
  color: rgba(255, 255, 255, 0.7);
  font-size: 16px;
  line-height: 1.5;
  margin-top: 8px;
  max-width: 320px;
}

.feature-card__image {
  display: none;
}
@media (min-width: 768px) {
  .feature-card__image {
    display: block;
    position: absolute;
    overflow: hidden;
  }
  .feature-card--wide .feature-card__image {
    left: 38.6%;
    top: 48px;
    bottom: 0;
    width: 599px;
  }
  .feature-card--narrow .feature-card__image,
  .feature-card__image--narrow {
    left: 32px;
    top: 149px;
    bottom: 0;
    width: 352px;
  }
  .feature-card__image img {
    border: 10px solid #FBD0D5;
    border-radius: 20px;
    box-shadow: 0 0 20px rgba(230,57,74,0.15);
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  .feature-card--narrow .feature-card__image img {
    border-radius: 15px;
  }
}

/* ============================================================
   HOW IT WORKS
   ============================================================ */
.how-it-works {
  background-color: #FFFFFF;
  background-image: radial-gradient(circle, rgba(0,0,0,0.06) 1px, transparent 1px);
  background-size: 24px 24px;
  padding: 48px 0;
  scroll-margin-top: 72px;
}
@media (min-width: 768px) {
  .how-it-works { padding: 80px 0; }
}

.how-it-works__steps {
  display: flex;
  flex-direction: column;
  gap: 32px;
  margin-top: 48px;
  position: relative;
}
@media (min-width: 768px) {
  .how-it-works__steps {
    flex-direction: row;
    justify-content: center;
    gap: 24px;
  }
}

.how-it-works__line {
  display: none;
}
@media (min-width: 768px) {
  .how-it-works__line {
    display: block;
    position: absolute;
    top: 88px;
    left: 192px;
    right: 192px;
    border-top: 3px dashed #F59E0B;
    z-index: 0;
  }
}

.how-it-works__step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 40px 24px;
  position: relative;
  z-index: 1;
  width: 100%;
}
@media (min-width: 768px) {
  .how-it-works__step { width: 384px; }
}

.how-it-works__number {
  width: 96px;
  height: 96px;
  background: #E6394A;
  border-radius: 20px;
  box-shadow: 0 0 20px rgba(0,0,0,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #FFFFFF;
  font-size: 40px;
  font-weight: 700;
  letter-spacing: 2px;
}

.how-it-works__title {
  color: #1E1E28;
  font-size: 24px;
  font-weight: 600;
  margin-top: 24px;
}

.how-it-works__desc {
  color: rgba(13, 19, 57, 0.7);
  font-size: 16px;
  line-height: 1.5;
  margin-top: 8px;
}

/* ============================================================
   GIFT TYPES
   ============================================================ */
.gift-types {
  background: #FFFFFF;
  padding: 48px 0;
  position: relative;
  overflow: hidden;
}
@media (min-width: 768px) {
  .gift-types { padding: 80px 0; }
}

.gift-types__dots {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(196,45,62,0.08) 1px, transparent 1px);
  background-size: 24px 24px;
  z-index: 0;
}

.gift-types__fade {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 0%, transparent 31.7%, rgba(255,255,255,0.8) 60%, #FFFFFF 100%);
  z-index: 0;
}

.gift-types__container { position: relative; z-index: 1; }

.gift-types__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  margin-top: 48px;
}
@media (min-width: 768px) {
  .gift-types__grid { grid-template-columns: repeat(3, 1fr); }
}

.gift-card {
  background: #FDE6E8;
  border-radius: 15px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  min-height: 280px;
}
@media (min-width: 768px) {
  .gift-card { height: 418px; }
}

.gift-card__content {
  padding: 32px;
  padding-bottom: 16px;
  flex-shrink: 0;
}

.gift-card__icon {
  width: 58px;
  height: 58px;
  background: #FFFFFF;
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.gift-card__title {
  color: #1E1E28;
  font-size: 18px;
  font-weight: 600;
  line-height: 1.2;
  margin-top: 16px;
}

.gift-card__desc {
  color: rgba(13, 19, 57, 0.7);
  font-size: 16px;
  line-height: 1.5;
  margin-top: 8px;
  max-width: 280px;
}

.gift-card__image {
  display: none;
}
@media (min-width: 768px) {
  .gift-card__image {
    display: flex;
    flex: 1;
    justify-content: center;
    overflow: hidden;
    padding: 0 28px;
    min-height: 0;
  }
  .gift-card__image img {
    border-radius: 15px 15px 0 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
  }
}

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.testimonials {
  background: #FFFFFF;
  padding: 48px 0;
}
@media (min-width: 768px) {
  .testimonials { padding: 80px 0; }
}

.testimonials__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  margin-top: 48px;
}
@media (min-width: 768px) {
  .testimonials__grid { grid-template-columns: repeat(3, 1fr); }
}

.testimonial-card {
  background: #FFFFFF;
  border: 5px solid #FBD0D5;
  border-radius: 15px;
  box-shadow: 0 0 20px #FDE6E8;
  padding: 40px;
  display: flex;
  flex-direction: column;
}

.testimonial-card__quote-icon {
  transform: rotate(180deg);
  width: 53px;
  height: 45px;
}

.testimonial-card__text {
  color: #25363F;
  font-size: 16px;
  line-height: 1.5;
  margin-top: 24px;
  flex: 1;
}

.testimonial-card__author {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 32px;
}

.testimonial-card__avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
}

.testimonial-card__name {
  color: #000000;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.43;
}

.testimonial-card__company {
  color: rgba(0, 0, 0, 0.7);
  font-size: 14px;
  line-height: 1.57;
}

/* ============================================================
   PRICING
   ============================================================ */
.pricing {
  background: #FDE6E8;
  padding: 48px 0;
  scroll-margin-top: 72px;
}
@media (min-width: 768px) {
  .pricing { padding: 80px 0; }
}

.pricing__grid {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-top: 48px;
  align-items: center;
}
@media (min-width: 768px) {
  .pricing__grid { flex-direction: row; justify-content: center; }
}

.pricing-card {
  background: #FFFFFF;
  border-radius: 15px;
  padding: 32px;
  display: flex;
  flex-direction: column;
  width: 100%;
  max-width: 384px;
  position: relative;
}
@media (min-width: 768px) {
  .pricing-card { height: 478px; }
}

.pricing-card--featured {
  border: 3px solid #E6394A;
  box-shadow: 0 0 20px rgba(0,0,0,0.2);
}

.pricing-card__badge {
  position: absolute;
  top: -21px;
  left: 50%;
  transform: translateX(-50%);
  background: #F59E0B;
  color: #FFFFFF;
  font-size: 14px;
  font-weight: 600;
  padding: 8px 16px;
  border-radius: 50px;
  white-space: nowrap;
}

.pricing-card__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.pricing-card__name {
  color: #1E1E28;
  font-size: 18px;
  font-weight: 600;
}

.pricing-card__range {
  color: #64748B;
  font-size: 14px;
}

.pricing-card__price {
  display: flex;
  align-items: baseline;
  margin-top: 16px;
}

.pricing-card__amount {
  color: #1E1E28;
  font-size: 36px;
  font-weight: 600;
  letter-spacing: -0.36px;
}

.pricing-card__period {
  color: #64748B;
  font-size: 16px;
  margin-left: 4px;
}

.pricing-card__description {
  color: rgba(13, 19, 57, 0.7);
  font-size: 16px;
  line-height: 1.5;
  margin-top: 16px;
}

.pricing-card__features {
  margin-top: 30px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.pricing-card__features li {
  display: flex;
  align-items: center;
  gap: 6px;
  color: #1E1E28;
  font-size: 14px;
  line-height: 1.57;
}
.pricing-card__features img { flex-shrink: 0; }

.pricing-card__cta {
  margin-top: auto;
  padding-top: 30px;
  width: 100%;
}

.pricing__footer {
  text-align: center;
  margin-top: 40px;
  color: #52525B;
  font-size: 16px;
  font-weight: 600;
}

/* ============================================================
   FAQ
   ============================================================ */
.faq {
  position: relative;
  scroll-margin-top: 72px;
}

.faq__bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, #FDE6E8 60%, #FFFFFF 100%);
}

.faq__dots {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(0,0,0,0.12) 1px, transparent 1px);
  background-size: 24px 24px;
}

.faq__container {
  position: relative;
  z-index: 1;
  padding-top: 48px;
  padding-bottom: 48px;
  display: flex;
  flex-direction: column;
  gap: 32px;
}
@media (min-width: 768px) {
  .faq__container {
    flex-direction: row;
    gap: 24px;
    padding-top: 80px;
    padding-bottom: 80px;
  }
}

.faq__left, .faq__right { flex: 1; }
@media (min-width: 768px) {
  .faq__left { max-width: 588px; }
  .faq__right { max-width: 588px; }
}

.faq__accordion { display: flex; flex-direction: column; gap: 8px; }

.faq__item {
  background: #FFFFFF;
  border-radius: 10px;
  overflow: hidden;
}

.faq__question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  padding: 0 24px;
  height: 70px;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  font-weight: 600;
  color: #000000;
  line-height: 1.57;
}

.faq__icon {
  font-size: 20px;
  font-weight: 400;
  transition: transform 0.2s ease;
  flex-shrink: 0;
}
.faq__item.is-open .faq__icon {
  transform: rotate(45deg);
}

.faq__answer {
  padding: 0 24px 24px;
}
.faq__answer p {
  color: rgba(16, 24, 71, 0.7);
  font-size: 16px;
  line-height: 1.5;
}

/* ============================================================
   CTA SECTION
   ============================================================ */
.cta-section {
  padding: 0 16px;
}
@media (min-width: 768px) {
  .cta-section { padding: 80px 24px; max-width: 1248px; margin: 0 auto; }
}

.cta-section__inner {
  background: #1E1E28;
  border-radius: 0;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  min-height: 400px;
}
@media (min-width: 768px) {
  .cta-section__inner {
    flex-direction: row;
    border-radius: 24px;
  }
}

.cta-section__text {
  padding: 32px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
@media (min-width: 768px) {
  .cta-section__text { padding: 64px; flex: 0 0 45%; }
}

.cta-section__heading {
  color: #FFFFFF;
  font-size: 28px;
  font-weight: 600;
  letter-spacing: -0.36px;
  line-height: 1.2;
  margin-top: 16px;
}
@media (min-width: 768px) {
  .cta-section__heading { font-size: 36px; }
}

.cta-section__subheading {
  color: rgba(255, 255, 255, 0.7);
  font-size: 16px;
  line-height: 1.5;
  max-width: 400px;
  margin-top: 16px;
}

.cta-section__text .btn { margin-top: 24px; align-self: flex-start; }

.cta-section__image {
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 0 16px 32px;
}
@media (min-width: 768px) {
  .cta-section__image { flex: 0 0 55%; padding: 32px; }
}
.cta-section__image img {
  border-radius: 12px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.3);
  max-width: 540px;
  width: 100%;
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: #FFFFFF;
  border-top: 1px solid #E2E8F0;
}

.footer__container {
  display: flex;
  flex-direction: column;
  gap: 32px;
  padding-top: 32px;
  padding-bottom: 32px;
}
@media (min-width: 768px) {
  .footer__container {
    flex-direction: row;
    justify-content: space-between;
    padding-top: 48px;
    padding-bottom: 48px;
  }
}

.footer__brand { display: flex; flex-direction: column; gap: 16px; }
.footer__copyright {
  color: #64748B;
  font-size: 14px;
}

.footer__links { display: flex; gap: 48px; }
@media (min-width: 768px) {
  .footer__links { gap: 80px; }
}

.footer__col {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footer__col-heading {
  color: #64748B;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.footer__col a {
  color: #64748B;
  font-size: 14px;
  transition: color 0.15s;
}
.footer__col a:hover { color: #E6394A; }
