/* Baby Sleep Diary — cream & gold palette
   cream #FAF3EC · creamSoft #F5EBE0 · navy #1F3A5F · gold #C9A875 · rose #C8907D */

:root {
  --cream: #FAF3EC;
  --cream-soft: #F5EBE0;
  --navy: #1F3A5F;
  --gold: #C9A875;
  --rose: #C8907D;
  --serif: 'Cormorant Garamond', serif;
  --script: 'Dancing Script', cursive;
  --sans: 'Inter', sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
html, body { margin: 0; padding: 0; }
body {
  background: var(--cream);
  font-family: var(--sans);
  color: var(--navy);
}
a { color: inherit; }
button { font-family: inherit; }
button:focus, input:focus { outline: none; }
section { scroll-margin-top: 104px; }

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ---------- shared ---------- */
.eyebrow {
  font-size: 12px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}
.eyebrow-sm { font-size: 11px; margin-bottom: 8px; }

.script { font-family: var(--script); color: var(--rose); }

.heading-lg {
  font-family: var(--serif);
  font-size: 56px;
  font-weight: 500;
  color: var(--navy);
  margin: 0 0 16px;
  line-height: 1.1;
  letter-spacing: -0.01em;
}
.heading-lg .script-lg { font-size: 64px; }
.heading-md {
  font-family: var(--serif);
  font-size: 52px;
  font-weight: 500;
  color: var(--navy);
  margin: 0;
  line-height: 1.1;
  letter-spacing: -0.01em;
}

.section-head { text-align: center; margin-bottom: 72px; }
.section-sub {
  font-size: 15px;
  color: #1F3A5F99;
  max-width: 480px;
  margin: 16px auto 0;
  line-height: 1.6;
}
.section-sub-wide { max-width: 580px; }

/* inline like the design's SVG — the line-box gap is part of the layout */
.decoration { color: var(--gold); }

.btn {
  display: inline-block;
  padding: 16px 28px;
  border-radius: 999px;
  font-family: var(--sans);
  font-size: 14px;
  letter-spacing: 0.02em;
  text-decoration: none;
  text-align: center;
  cursor: pointer;
  border: none;
}
.btn-solid { background: var(--navy); color: var(--cream); font-weight: 500; padding: 16px 32px; }
.btn-outline { background: transparent; color: var(--navy); border: 1px solid #1F3A5F33; }
.btn-gold { background: var(--gold); color: var(--navy); font-weight: 500; }
.btn-block { display: block; width: 100%; padding: 13px 18px; font-size: 13px; font-weight: 500; }

/* ---------- nav ---------- */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: #FAF3ECEE;
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid #C9A87522;
  padding: 20px 80px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-brand { display: flex; align-items: center; gap: 14px; text-decoration: none; }
.nav-brand img { width: 64px; height: 64px; object-fit: contain; }
.wordmark {
  font-family: var(--serif);
  font-size: 20px;
  font-weight: 500;
  color: var(--navy);
  letter-spacing: 0.06em;
  display: flex;
  align-items: baseline;
  gap: 8px;
}
.wordmark-script { font-family: var(--script); font-size: 24px; color: var(--rose); letter-spacing: 0; }
.nav-links { display: flex; align-items: center; gap: 36px; font-size: 14px; }
.nav-links > a:not(.btn) { color: var(--navy); text-decoration: none; font-weight: 400; transition: color 0.2s; }
.nav-links > a:not(.btn):hover { color: var(--gold); }
.btn-nav { padding: 10px 20px; font-size: 13px; }

/* ---------- hero ---------- */
.hero {
  padding: 80px 80px 120px;
  background: var(--cream);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.hero-star {
  position: absolute;
  color: var(--gold);
  opacity: 1;
  transition: opacity 1.2s ease;
  pointer-events: none;
  line-height: 0;
}
.hero-logo {
  display: block;
  width: 540px;
  max-width: 100%;
  height: auto;
  object-fit: contain;
  margin: 0 auto 32px;
}
.hero-tagline {
  font-family: var(--serif);
  font-style: italic;
  font-size: 26px;
  line-height: 1.5;
  color: #1F3A5FDD;
  max-width: 620px;
  margin: 0 auto 12px;
}
.hero-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ---------- about ---------- */
.about {
  padding: 120px 80px;
  background: var(--cream-soft);
  position: relative;
  overflow: hidden;
}
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 100px;
  max-width: 1280px;
  margin: 0 auto;
  align-items: center;
}
.about-portrait {
  aspect-ratio: 4 / 5;
  background: linear-gradient(135deg, #C9A87525, #C8907D30);
  border-radius: 8px;
  position: relative;
  overflow: hidden;
  border: 1px solid #C9A87533;
}
.about-portrait img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
}
.about .eyebrow { margin-bottom: 24px; }
.about h2 { margin-bottom: 8px; }
.about-copy {
  font-family: var(--serif);
  font-size: 19px;
  line-height: 1.7;
  color: #1F3A5FDD;
  margin-top: 32px;
}
.about-copy p { margin: 0 0 20px; }
.about-goal { margin: 0 !important; font-style: italic; color: var(--gold); }

.credentials {
  max-width: 1080px;
  margin: 80px auto 0;
  padding-top: 40px;
  border-top: 1px solid #1F3A5F1A;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 48px;
  align-items: start;
}
.cred-k {
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 10px;
}
.cred-v { font-family: var(--serif); font-size: 17px; color: var(--navy); line-height: 1.45; }

.qualified {
  max-width: 1080px;
  margin: 100px auto 0;
  padding: 64px 72px;
  background: white;
  border: 1px solid #C9A87533;
  border-radius: 12px;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 56px;
  align-items: center;
}
.qualified > img {
  width: 200px;
  height: 200px;
  object-fit: contain;
  filter: drop-shadow(0 12px 26px #1F3A5F26);
}
.qualified .eyebrow { margin-bottom: 14px; }
.qualified h3 {
  font-family: var(--serif);
  font-size: 40px;
  font-weight: 500;
  color: var(--navy);
  margin: 0 0 20px;
  line-height: 1.1;
  letter-spacing: -0.01em;
}
.qualified h3 .script { font-size: 46px; }
.qualified p {
  font-family: var(--serif);
  font-size: 18px;
  line-height: 1.65;
  color: #1F3A5FCC;
  margin: 0;
  max-width: 560px;
}

/* ---------- quiz ---------- */
.quiz { padding: 120px 80px; background: var(--cream); }
.quiz-inner { max-width: 980px; margin: 0 auto; }
.quiz .section-head { margin-bottom: 56px; }
.quiz-card {
  background: var(--cream);
  border-radius: 24px;
  padding: 56px 64px;
  border: 1px solid #C9A87533;
  box-shadow: 0 30px 80px #1F3A5F15;
  position: relative;
  min-height: 480px;
}
.quiz-progress {
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: #C9A87520;
  border-radius: 24px 24px 0 0;
  overflow: hidden;
}
.quiz-progress-fill {
  height: 100%;
  width: 0;
  background: var(--gold);
  transition: width 0.5s cubic-bezier(.4, 0, .2, 1);
}
.quiz-step { animation: fadeIn 0.5s ease; }
.quiz-step-label {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 24px;
}
.quiz-question {
  font-family: var(--serif);
  font-size: 38px;
  font-weight: 500;
  color: var(--navy);
  margin: 0 0 12px;
  line-height: 1.15;
  letter-spacing: -0.01em;
}
.quiz-subtitle { font-size: 15px; color: #1F3A5F99; margin: 0 0 36px; line-height: 1.6; }
.quiz-options { display: grid; gap: 14px; }
.quiz-options.cols-2 { grid-template-columns: 1fr 1fr; }
.quiz-option {
  text-align: left;
  padding: 20px 24px;
  border: 1px solid #1F3A5F1A;
  border-radius: 14px;
  background: white;
  cursor: pointer;
  transition: all 0.2s ease;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.quiz-option:hover {
  border-color: var(--gold);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px #1F3A5F10;
}
.quiz-option .opt-label { font-size: 17px; font-weight: 500; color: var(--navy); }
.quiz-option .opt-sub { font-size: 13px; color: #1F3A5F80; }
.quiz-back {
  margin-top: 28px;
  background: none;
  border: none;
  color: #1F3A5F99;
  font-size: 13px;
  cursor: pointer;
  padding: 0;
}
.quiz-result { animation: fadeIn 0.6s ease; text-align: center; }
.quiz-result-moon { display: flex; justify-content: center; margin-bottom: 16px; color: var(--gold); }
.quiz-result-moon svg { stroke-width: 1.5; }
.quiz-result-label {
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}
.quiz-result h3 {
  font-family: var(--serif);
  font-size: 44px;
  font-weight: 500;
  color: var(--navy);
  margin: 0 0 20px;
  letter-spacing: -0.01em;
}
.quiz-result-summary {
  font-size: 16px;
  line-height: 1.7;
  color: #1F3A5FCC;
  max-width: 520px;
  margin: 0 auto 32px;
}
.quiz-result-pill {
  display: inline-block;
  padding: 12px 24px;
  background: #C9A8751A;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 500;
  color: var(--navy);
  letter-spacing: 0.03em;
  margin-bottom: 32px;
}
.quiz-result-actions { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }
.quiz-result-actions .btn-solid { padding: 14px 28px; }
.quiz-result-actions .btn-outline { padding: 14px 24px; }
.quiz-noscript { font-size: 15px; line-height: 1.6; color: #1F3A5F99; margin: 0; }

/* ---------- approach ---------- */
.approach { padding: 120px 80px; background: var(--cream); }
.approach-inner { max-width: 1280px; margin: 0 auto; }
.approach .section-head { margin-bottom: 80px; }
.pillars {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border: 1px solid #C9A87533;
  border-radius: 4px;
  background: white;
}
.pillar { padding: 48px 56px; }
.pillar:nth-child(odd) { border-right: 1px solid #C9A87533; }
.pillar:nth-child(-n+2) { border-bottom: 1px solid #C9A87533; }
.pillar-n { font-family: var(--serif); font-size: 14px; color: var(--gold); letter-spacing: 0.2em; margin-bottom: 16px; }
.pillar h3 {
  font-family: var(--serif);
  font-size: 32px;
  font-weight: 500;
  color: var(--navy);
  margin: 0 0 4px;
  letter-spacing: -0.01em;
}
.pillar-script { font-size: 22px; margin-bottom: 16px; }
.pillar p { font-size: 14.5px; line-height: 1.7; color: #1F3A5FAA; margin: 0; }

/* ---------- services ---------- */
.services { padding: 120px 80px; background: var(--cream-soft); }
.services-inner { max-width: 1280px; margin: 0 auto; }
.svc-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  align-items: stretch;
}
.svc-card {
  background: white;
  color: var(--navy);
  padding: 44px 28px;
  border-radius: 12px;
  border: 1px solid #C9A87533;
  display: flex;
  flex-direction: column;
}
.svc-featured {
  background: var(--navy);
  color: var(--cream);
  border-color: var(--navy);
  transform: translateY(-12px);
  box-shadow: 0 30px 60px #1F3A5F20;
}
.svc-tier {
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}
.svc-card h3 {
  font-family: var(--serif);
  font-size: 24px;
  font-weight: 500;
  margin: 0 0 8px;
  line-height: 1.2;
  letter-spacing: -0.01em;
}
.svc-price { font-family: var(--serif); font-size: 28px; font-weight: 500; color: var(--rose); margin-bottom: 20px; }
.svc-featured .svc-price { color: var(--gold); }
.svc-desc {
  font-size: 13.5px;
  line-height: 1.65;
  color: #1F3A5FAA;
  margin: 0 0 24px;
  padding-bottom: 24px;
  border-bottom: 1px solid #1F3A5F12;
}
.svc-featured .svc-desc { color: #FAF3ECCC; border-bottom-color: #FAF3EC22; }
.svc-card ul { list-style: none; padding: 0; margin: 0 0 28px; font-size: 13.5px; line-height: 1.6; flex: 1; }
.svc-card li { display: flex; align-items: flex-start; gap: 10px; margin-bottom: 10px; }
.svc-card li::before { content: "✦"; color: var(--gold); margin-top: 2px; flex-shrink: 0; }
.svc-card .btn-outline { color: var(--navy); }

.addons { margin-top: 64px; padding-top: 48px; border-top: 1px solid #1F3A5F1A; }
.addons-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  margin-bottom: 28px;
  flex-wrap: wrap;
  gap: 16px;
}
.addons-head h3 {
  font-family: var(--serif);
  font-size: 28px;
  font-weight: 500;
  color: var(--navy);
  margin: 0;
  letter-spacing: -0.01em;
}
.addons-head p { font-size: 13px; color: #1F3A5F88; margin: 0; max-width: 380px; line-height: 1.6; }
.addons-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.addon {
  background: white;
  border: 1px solid #C9A87522;
  border-radius: 10px;
  padding: 24px 28px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  text-decoration: none;
  color: inherit;
  transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
}
.addon:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 32px #1F3A5F10;
  border-color: #C9A87566;
}
.addon-top { display: flex; justify-content: space-between; align-items: baseline; gap: 12px; }
.addon-name { font-family: var(--serif); font-size: 19px; font-weight: 500; color: var(--navy); letter-spacing: -0.01em; }
.addon-price { font-family: var(--serif); font-size: 19px; font-weight: 500; color: var(--rose); white-space: nowrap; }
.addon p { font-size: 13px; line-height: 1.6; color: #1F3A5F99; margin: 0 0 6px; }
.addon-cta {
  margin-top: auto;
  padding-top: 10px;
  font-size: 12px;
  letter-spacing: 0.04em;
  color: var(--gold);
  font-weight: 500;
}

/* ---------- testimonials ---------- */
.testimonials { padding: 120px 80px; background: var(--navy); color: var(--cream); }
.testimonials-inner { max-width: 980px; margin: 0 auto; text-align: center; }
.decoration-testimonials { margin: 0 auto 48px; }
.quote-stage { min-height: 280px; }
.quote-mark { font-family: var(--serif); font-size: 96px; color: var(--gold); line-height: 1; margin-bottom: -20px; }
.quote-stage blockquote {
  font-family: var(--serif);
  font-style: italic;
  font-size: 28px;
  line-height: 1.5;
  margin: 0 0 32px;
  color: var(--cream);
  font-weight: 400;
  transition: opacity 0.4s;
}
.quote-author { font-size: 24px; color: var(--gold); margin-bottom: 4px; }
.quote-role { font-size: 12px; letter-spacing: 0.15em; text-transform: uppercase; color: #FAF3EC88; }
.quote-dots { display: flex; gap: 8px; justify-content: center; margin-top: 40px; }
.quote-dots button {
  width: 8px;
  height: 8px;
  border-radius: 4px;
  border: none;
  background: #FAF3EC33;
  cursor: pointer;
  transition: all 0.3s;
  padding: 0;
}
.quote-dots button.active { width: 32px; background: var(--gold); }

/* ---------- faq ---------- */
.faq { padding: 120px 80px; background: var(--cream-soft); }
.faq-inner { max-width: 920px; margin: 0 auto; }
.faq .section-head { margin-bottom: 64px; }
.faq-item { border-top: 1px solid #1F3A5F1A; }
.faq-item:last-child { border-bottom: 1px solid #1F3A5F1A; }
.faq-q {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  padding: 28px 0;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  font-family: var(--serif);
  font-size: 24px;
  color: var(--navy);
  letter-spacing: -0.01em;
}
.faq-plus {
  font-size: 20px;
  color: var(--gold);
  transition: transform 0.3s ease;
  display: inline-block;
  flex-shrink: 0;
}
.faq-item.open .faq-plus { transform: rotate(45deg); }
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.4s ease;
  padding-bottom: 0;
}
.faq-item.open .faq-a { max-height: 200px; padding-bottom: 28px; }
.faq-a p { font-size: 15px; line-height: 1.7; color: #1F3A5FAA; margin: 0; max-width: 700px; }

/* ---------- cta ---------- */
.cta { padding: 120px 80px; background: var(--cream); }
.cta-card {
  max-width: 920px;
  margin: 0 auto;
  background: white;
  border: 1px solid #C9A87533;
  border-radius: 16px;
  padding: 72px 80px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-moon {
  position: absolute;
  top: -40px;
  right: -40px;
  opacity: 0.4;
  color: var(--gold);
  stroke-width: 1.2;
}
.cta-content { position: relative; z-index: 1; }
.cta-content .eyebrow { margin-bottom: 20px; }
.cta-content h2 {
  font-family: var(--serif);
  font-size: 44px;
  font-weight: 500;
  color: var(--navy);
  margin: 0 0 16px;
  line-height: 1.15;
  letter-spacing: -0.01em;
}
.cta-content h2 .script { font-size: 50px; }
.cta-sub { font-size: 15px; line-height: 1.7; color: #1F3A5FAA; max-width: 500px; margin: 0 auto 32px; }
#cta-form { display: flex; gap: 8px; max-width: 460px; margin: 0 auto; }
#cta-form input[type="email"] {
  flex: 1;
  min-width: 0;
  padding: 14px 20px;
  border: 1px solid #1F3A5F22;
  border-radius: 999px;
  font-family: var(--sans);
  font-size: 14px;
  color: var(--navy);
  background: var(--cream);
}
#cta-form .btn-solid { padding: 14px 24px; font-size: 13px; white-space: nowrap; transition: opacity 0.2s; }
#cta-form .btn-solid:disabled { opacity: 0.6; cursor: default; }
.cta-success {
  padding: 20px 24px;
  background: #C9A8751A;
  border-radius: 12px;
  max-width: 460px;
  margin: 0 auto;
  font-size: 14px;
  color: var(--navy);
  line-height: 1.6;
}
.cta-heart { color: var(--rose); margin-right: 8px; vertical-align: middle; }
.cta-error { margin-top: 16px; font-size: 13px; color: var(--rose); line-height: 1.6; }
.cta-error a { color: var(--navy); }

/* ---------- footer ---------- */
.footer {
  padding: 80px 80px 48px;
  background: var(--cream-soft);
  border-top: 1px solid #C9A87533;
}
.footer-cols {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  gap: 64px;
  flex-wrap: wrap;
}
.footer-brand-row { display: flex; align-items: center; gap: 14px; margin-bottom: 20px; }
.footer-brand-row img { width: 56px; height: 56px; object-fit: contain; }
.footer-brand p { font-size: 13px; line-height: 1.7; color: #1F3A5F99; margin: 0 0 16px; max-width: 280px; }
.footer-made { font-size: 12px; color: #1F3A5F77; display: flex; align-items: center; gap: 6px; }
.footer-made svg { color: var(--rose); }
.footer-h {
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}
.footer-col ul { list-style: none; padding: 0; margin: 0; }
.footer-col li { margin-bottom: 10px; }
.footer-col a { font-size: 14px; color: var(--navy); text-decoration: none; }
.footer-disclaimer {
  max-width: 1200px;
  margin: 56px auto 0;
  padding-top: 24px;
  border-top: 1px solid #1F3A5F1A;
  font-size: 11px;
  line-height: 1.7;
  color: #1F3A5F88;
  letter-spacing: 0.01em;
  text-align: justify;
}
.footer-disclaimer-label {
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-right: 10px;
  font-weight: 500;
}
.footer-bottom {
  max-width: 1200px;
  margin: 24px auto 0;
  font-size: 12px;
  color: #1F3A5F77;
  display: flex;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}
.footer-cert { display: flex; align-items: center; gap: 10px; }
.footer-cert img { width: 28px; height: 28px; object-fit: contain; opacity: 0.95; }

/* ---------- responsive ---------- */
@media (max-width: 1100px) {
  .nav { padding: 20px 48px; }
  .hero, .about, .quiz, .approach, .services, .testimonials, .faq, .cta { padding-left: 48px; padding-right: 48px; }
  .footer { padding: 80px 48px 48px; }
  .svc-grid { grid-template-columns: 1fr 1fr; }
  .svc-featured { transform: none; }
  .about-grid { grid-template-columns: 1fr; gap: 56px; }
  .about-portrait { max-width: 480px; }
  .credentials { grid-template-columns: 1fr 1fr; }
  .addons-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 760px) {
  section { scroll-margin-top: 88px; }
  .nav { padding: 14px 24px; }
  .nav-brand img { width: 48px; height: 48px; }
  .nav-links > a:not(.btn-nav) { display: none; }
  .hero { padding: 56px 24px 80px; }
  .hero-logo { width: 360px; }
  .hero-tagline { font-size: 22px; }
  .hero-star { display: none; }
  .about, .quiz, .approach, .services, .testimonials, .faq, .cta { padding: 80px 24px; }
  .footer { padding: 64px 24px 40px; }
  .heading-lg { font-size: 40px; }
  .heading-lg .script-lg { font-size: 46px; }
  .heading-md { font-size: 36px; }
  .section-head { margin-bottom: 48px; }
  .credentials { grid-template-columns: 1fr; gap: 28px; }
  .qualified { grid-template-columns: 1fr; padding: 40px 32px; gap: 32px; justify-items: center; text-align: center; }
  .qualified p { text-align: left; }
  .quiz-card { padding: 36px 24px; min-height: 0; }
  .quiz-question { font-size: 30px; }
  .quiz-options.cols-2 { grid-template-columns: 1fr; }
  .pillars { grid-template-columns: 1fr; }
  .pillar { padding: 36px 28px; border-right: none !important; border-bottom: 1px solid #C9A87533; }
  .pillar:last-child { border-bottom: none; }
  .svc-grid { grid-template-columns: 1fr; }
  .addons-grid { grid-template-columns: 1fr; }
  .quote-stage blockquote { font-size: 22px; }
  .faq-q { font-size: 20px; padding: 22px 0; }
  .faq-item.open .faq-a { max-height: 400px; }
  .cta-card { padding: 48px 28px; }
  .cta-content h2 { font-size: 34px; }
  .cta-content h2 .script { font-size: 40px; }
  #cta-form { flex-direction: column; }
  .footer-cols { flex-direction: column; gap: 40px; }
  .footer-bottom { flex-direction: column; }
}
