/* ============================================================
   Homepage styles
   ============================================================ */

/* ---------- Hero (split) ---------- */
.hero {
  position: relative;
  overflow: hidden;
  padding: var(--s7) 0 var(--s6);
}
.hero__inner {
  width: 90%;
  max-width: 1480px;
  margin: 0 auto;
  padding: 0 var(--s3);
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: clamp(var(--s5), 6vw, var(--s8));
  align-items: center;
}
.hero h1 { margin-bottom: var(--s2); }
.hero__sub {
  font-size: var(--fs-md);
  color: var(--ink-soft);
  max-width: 32em;
  margin-bottom: var(--s4);
}
.hero__trust {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: var(--s3);
  margin-top: var(--s5);
}

.avatars { display: flex; flex: 0 0 auto; }
.avatars img {
  width: 52px; height: 52px;
  border-radius: 50%;
  border: none;
  object-fit: cover;
  margin-left: -14px;
  background: var(--lavender-soft);
  box-shadow: 0 2px 8px rgba(0,67,71,0.12);
}
.avatars img:first-child { margin-left: 0; }

.hero__stats { display: flex; gap: var(--s4); }
.hero__stat { display: flex; flex-direction: column; line-height: 1.1; }
.hero__stat strong {
  font-size: var(--fs-xl);
  font-weight: 700;
  color: var(--coral);
  letter-spacing: -0.02em;
}
.hero__stat span { font-size: var(--fs-xs); color: var(--teal-muted); max-width: 11em; margin-top: 0.2em; }

/* VSL frame */
.vsl {
  position: relative;
  aspect-ratio: 16 / 9;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--teal);
  box-shadow: var(--shadow-lift);
}
.vsl iframe, .vsl video { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }
.vsl__placeholder {
  position: absolute; inset: 0;
  display: grid; place-items: center;
  color: var(--aqua);
  font-size: var(--fs-sm);
}
.vsl__play {
  width: 64px; height: 64px;
  border-radius: 50%;
  background: var(--coral);
  display: grid; place-items: center;
  margin: 0 auto var(--s2);
  box-shadow: 0 8px 28px rgba(249, 92, 64, 0.45);
}
@media (max-width: 900px) {
  .hero__inner { grid-template-columns: 1fr; gap: var(--s4); }
}

/* ---------- Credibility strip ---------- */
.cred {
  background: var(--aqua);
  padding: var(--s5) 0;
}
.cred__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--s4);
  text-align: center;
}
.cred__grid > div {
  position: relative;
}
.cred__grid > div + div::before {
  content: "";
  position: absolute;
  left: calc(var(--s4) * -0.5);
  top: 10%;
  bottom: 10%;
  width: 1px;
  background: rgba(0, 67, 71, 0.14);
}
.cred__num {
  display: block;
  font-size: clamp(2.5rem, 4vw, 3.5rem);
  font-weight: 700;
  color: var(--coral);
  line-height: 1.05;
  letter-spacing: -0.02em;
}
.cred__num em { font-style: normal; color: var(--coral); }
.cred__label {
  display: block;
  margin-top: 0.5em;
  font-size: var(--fs-sm);
  color: var(--teal);
  font-weight: 500;
  letter-spacing: 0.01em;
  max-width: 16em;
  margin-left: auto;
  margin-right: auto;
}
@media (max-width: 700px) {
  .cred__grid { grid-template-columns: 1fr; gap: var(--s4); }
  .cred__grid > div + div::before { display: none; }
}

/* ---------- Embedded qualification quiz (shared with form.html) ---------- */
.quiz-section { padding: var(--s4) 0; background: var(--cream); }
.quiz-card {
  width: 100%;
  max-width: 760px;
  margin: 0 auto;
  background: #fff;
  border-radius: var(--radius);
  box-shadow: var(--shadow-card);
  padding: var(--s5);
  transition: max-width 0.3s var(--ease);
}
.quiz-card.has-booking, .quiz-card.has-reco { max-width: 940px; }
.quiz-head { text-align: center; margin-bottom: var(--s4); }
.quiz-head h2 { font-size: var(--fs-xl); margin-bottom: var(--s1); }
.quiz-head p { color: var(--ink-soft); font-size: var(--fs-sm); margin: 0; }

.progress {
  height: 5px;
  background: rgba(0, 67, 71, 0.08);
  border-radius: var(--radius-pill);
  margin-bottom: var(--s4);
  overflow: hidden;
}
.progress__bar {
  height: 100%;
  background: var(--coral);
  border-radius: var(--radius-pill);
  width: 10%;
  transition: width 0.4s var(--ease);
}

.step { display: none; }
.step.is-active { display: block; animation: stepIn 0.35s var(--ease); }
@keyframes stepIn { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: none; } }
@media (prefers-reduced-motion: reduce) { .step.is-active { animation: none; } }

.step h2 { font-size: var(--fs-lg); margin-bottom: var(--s1); }
.step .hint { color: var(--ink-soft); font-size: var(--fs-sm); margin-bottom: var(--s3); }

.choices { display: grid; gap: var(--s2); margin-top: var(--s3); }
.choice {
  display: block;
  width: 100%;
  text-align: left;
  font-family: inherit;
  font-size: var(--fs-base);
  font-weight: 500;
  color: var(--teal);
  background: var(--cream);
  border: 1px solid rgba(0, 67, 71, 0.15);
  border-radius: var(--radius-sm);
  padding: var(--s2) var(--s3);
  min-height: 52px;
  cursor: pointer;
  transition: border-color 0.15s, box-shadow 0.15s;
}
.choice:hover { border-color: var(--coral); box-shadow: 0 2px 10px rgba(249, 92, 64, 0.12); }
.choice:focus-visible { outline: 3px solid var(--purple); outline-offset: 2px; }
.choice small { display: block; font-weight: 400; color: var(--teal-muted); font-size: var(--fs-xs); margin-top: 0.15em; }
.choice strong { color: var(--coral); font-weight: 600; }

/* Contact step */
.field { margin-bottom: var(--s3); }
.field label { display: block; font-weight: 600; font-size: var(--fs-sm); margin-bottom: 0.4em; }
.field input {
  width: 100%;
  font-family: inherit;
  font-size: 16px;
  padding: 0.7em 1em;
  min-height: 48px;
  border: 1px solid rgba(0, 67, 71, 0.18);
  border-radius: var(--radius-sm);
  background: var(--cream);
  color: var(--teal);
}
.field input:focus { outline: none; border-color: var(--purple); box-shadow: 0 0 0 3px rgba(149, 105, 239, 0.15); }
.field .error { display: none; color: var(--coral); font-size: var(--fs-xs); margin-top: 0.35em; }
.field.has-error input { border-color: var(--coral); }
.field.has-error .error { display: block; }
.privacy-note { font-size: var(--fs-xs); color: var(--teal-muted); text-align: center; margin-top: var(--s2); }
.freebie-img {
  display: block;
  width: 100%;
  max-width: 300px;
  margin: 0 auto var(--s3);
  border-radius: var(--radius-sm);
  box-shadow: 6px 6px 0 0 var(--lime);
}

.back-link {
  background: none; border: none; cursor: pointer;
  font-family: inherit; font-size: var(--fs-sm); font-weight: 500;
  color: var(--teal-muted); padding: 0.5em 0.75em; border-radius: var(--radius-sm);
  margin-top: var(--s2);
}
.back-link:hover { color: var(--teal); }
.back-link:focus-visible { outline: 3px solid var(--purple); }

/* Recommendation card */
.reco { text-align: center; }
.reco__badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5em;
  font-size: var(--fs-xs);
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--olive);
  background: var(--lime-soft);
  border-radius: var(--radius-pill);
  padding: 0.45em 1.1em;
  margin-bottom: var(--s3);
}
.reco__img {
  width: 100%;
  max-width: 480px;
  border-radius: var(--radius-sm);
  margin: 0 auto var(--s3);
  display: block;
  object-fit: cover;
  object-position: 50% 25%;
  aspect-ratio: 16 / 9;
}
.reco__img--circle { width: 130px; aspect-ratio: 1; border-radius: 50%; }
.reco__img--edge { object-position: 50% 18%; }
.reco__img--illustration { aspect-ratio: auto; max-width: 280px; object-fit: contain; }
.reco h2 { font-size: var(--fs-xl); margin-bottom: 0.35em; }
.reco__sub { font-size: var(--fs-md); color: var(--ink-soft); max-width: 40em; margin: 0 auto var(--s3); }
.reco__checklist { list-style: none; margin: 0 auto var(--s3); padding: 0; max-width: 34em; text-align: left; }
.reco__checklist li {
  display: flex;
  gap: 0.7em;
  align-items: flex-start;
  font-size: var(--fs-sm);
  color: var(--ink);
  margin-bottom: 0.65em;
}
.reco__checklist svg { flex: 0 0 18px; margin-top: 0.2em; }
.reco__invest { font-size: var(--fs-md); font-weight: 600; color: var(--teal); margin-bottom: 0.2em; }
.reco__invest-note { font-size: var(--fs-xs); color: var(--teal-muted); margin-bottom: var(--s3); }
.reco__ctas { display: flex; flex-direction: column; align-items: center; gap: var(--s2); margin-top: var(--s2); }
.reco__cta-note { font-size: var(--fs-base); font-weight: 500; color: var(--ink); max-width: 28em; margin: var(--s4) auto var(--s2); }
.reco__alt-text { font-size: var(--fs-base); font-weight: 500; color: var(--ink); margin: var(--s4) auto 0; }
.reco__alt {
  background: none; border: none; cursor: pointer;
  font-family: inherit; font-size: var(--fs-sm); font-weight: 500;
  color: var(--teal-muted); text-decoration: underline; text-underline-offset: 3px; padding: 0.5em;
}
.reco__alt:hover { color: var(--teal); }

/* Senior split options */
.option-split { display: grid; grid-template-columns: 1fr 1fr; gap: var(--s3); margin: var(--s3) 0; text-align: center; }
.option-split__card {
  border: 1px solid rgba(0, 67, 71, 0.12);
  border-radius: var(--radius-sm);
  padding: var(--s3);
  display: flex;
  flex-direction: column;
  align-items: center;
}
.option-split__tag {
  font-size: var(--fs-xs);
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--purple);
  margin-bottom: 0.5em;
}
.option-split__card h3 { font-size: var(--fs-md); margin-bottom: 0.35em; }
.option-split__card p { font-size: var(--fs-xs); color: var(--ink-soft); flex: 1; margin-bottom: var(--s2); }
@media (max-width: 640px) { .option-split { grid-template-columns: 1fr; } }

.booking-embed { margin-top: var(--s3); min-height: 620px; }
.wj-slot { display: flex; justify-content: center; }

/* ---------- Logo marquee ---------- */
.marquee-section {
  background: var(--cream);
  padding: var(--s5) 0;
}
.marquee-section__label {
  text-align: center;
  font-size: var(--fs-sm);
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--teal-muted);
  margin-bottom: var(--s4);
}
.marquee {
  overflow: hidden;
  position: relative;
  -webkit-mask-image: linear-gradient(to right, transparent, #000 8%, #000 92%, transparent);
  mask-image: linear-gradient(to right, transparent, #000 8%, #000 92%, transparent);
}
.marquee__track {
  display: flex;
  align-items: center;
  gap: var(--s7);
  width: max-content;
  animation: marquee 38s linear infinite;
  will-change: transform;
}
.marquee__track img {
  height: 120px;
  width: auto;
  /* Recolor the monochrome school marks to brand coral */
  filter: brightness(0) saturate(100%) invert(48%) sepia(67%) saturate(2616%) hue-rotate(334deg) brightness(99%) contrast(96%);
}
@media (max-width: 700px) { .marquee__track img { height: 80px; } }
@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
@media (prefers-reduced-motion: reduce) {
  .marquee__track { animation: none; flex-wrap: wrap; width: auto; justify-content: center; }
}

/* ---------- Roadmap (centered-node alternating timeline) ---------- */
.roadmap {
  position: relative;
  max-width: 1080px;
  margin: var(--s5) auto 0;
}
.roadmap__line {
  position: absolute;
  top: 8px; bottom: 8px;
  left: 50%;
  width: 3px;
  transform: translateX(-50%);
  background: repeating-linear-gradient(
    to bottom,
    var(--coral) 0 9px,
    transparent 9px 18px
  );
}
.roadmap__item {
  position: relative;
  margin-bottom: var(--s3);
}
.roadmap__item:last-child { margin-bottom: 0; }
/* Stagger: pull each item up so left+right cards overlap vertically (no visual overlap since they're on opposite sides) */
.roadmap__item + .roadmap__item { margin-top: calc(var(--s5) * -1); }

/* Cards sit on alternating sides; the line div is child 1, so items are
   children 2-6: even children (2,4,6) go left, odd children (3,5) go right. */
.roadmap__card {
  width: 44%;
  background: #fff;
  border-radius: var(--radius);
  padding: var(--s4);
  text-align: left;
  box-shadow: var(--shadow-card);
}
.roadmap__item:nth-child(even) .roadmap__card { margin-right: auto; }
.roadmap__item:nth-child(odd) .roadmap__card { margin-left: auto; }

/* Numbered node centered exactly on the line */
.roadmap__node {
  position: absolute;
  top: var(--s4);
  left: 50%;
  transform: translate(-50%, -50%);
  width: 54px; height: 54px;
  border-radius: 50%;
  background: var(--lavender);
  display: grid;
  place-items: center;
  font-weight: 700;
  font-size: var(--fs-md);
  color: var(--teal);
  z-index: 2;
  box-shadow: 0 0 0 7px var(--aqua);
}
.roadmap > .roadmap__item:nth-child(2) .roadmap__node { background: var(--lavender); }
.roadmap > .roadmap__item:nth-child(3) .roadmap__node { background: var(--lime); }
.roadmap > .roadmap__item:nth-child(4) .roadmap__node { background: var(--lavender); }
.roadmap > .roadmap__item:nth-child(5) .roadmap__node { background: var(--lime); }
.roadmap > .roadmap__item:nth-child(6) .roadmap__node { background: var(--coral); color: #fff; }

.roadmap__when {
  display: inline-block;
  font-size: var(--fs-xs);
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--coral);
  margin-bottom: 0.4em;
}
.roadmap__card h3 { font-size: var(--fs-lg); margin-bottom: 0.4em; }
.roadmap__card > p { font-size: var(--fs-sm); color: var(--ink-soft); margin: 0; }

.roadmap__list {
  list-style: none;
  margin: var(--s3) 0 0;
  padding: 0;
}
.roadmap__list li {
  position: relative;
  padding-left: 1.9em;
  font-size: var(--fs-sm);
  color: var(--ink);
  margin-bottom: 0.7em;
  line-height: 1.55;
}
.roadmap__list li:last-child { margin-bottom: 0; }
.roadmap__list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.15em;
  width: 1.25em;
  height: 1.25em;
  border-radius: 50%;
  background: var(--lime);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23004347' stroke-width='3.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M5 13l4 4L19 7'/%3E%3C/svg%3E");
  background-size: 0.85em;
  background-repeat: no-repeat;
  background-position: center;
}

/* Closing "ready to start" block, continues the timeline color block */
.roadmap-close {
  text-align: center;
  max-width: 36em;
  margin: var(--s6) auto 0;
}
.roadmap-close__icon { display: block; margin: 0 auto var(--s2); }
.roadmap-close h3 { font-size: var(--fs-xl); margin-bottom: var(--s2); }
.roadmap-close p { font-size: var(--fs-md); color: var(--ink-soft); margin: 0 auto var(--s4); max-width: 44em; }

@media (max-width: 820px) {
  .roadmap { max-width: 560px; }
  .roadmap__line { left: 22px; transform: none; }
  /* Reset stagger on mobile — all cards are on the same side */
  .roadmap__item + .roadmap__item { margin-top: 0; }
  .roadmap__card,
  .roadmap__item:nth-child(even) .roadmap__card,
  .roadmap__item:nth-child(odd) .roadmap__card {
    width: auto;
    margin: 0 0 0 56px;
  }
  .roadmap__node,
  .roadmap__item:nth-child(even) .roadmap__node,
  .roadmap__item:nth-child(odd) .roadmap__node {
    left: 22px; transform: translate(-50%, -50%);
    width: 44px; height: 44px; font-size: var(--fs-sm);
  }
}

/* ---------- Testimonial video slider ---------- */
.vslider {
  position: relative;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: var(--s2);
}
.vslider__track {
  display: flex;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  gap: var(--s4);
  scrollbar-width: none;
  padding: var(--s2) 0;
}
.vslider__track::-webkit-scrollbar { display: none; }
.vslider__slide {
  flex: 0 0 100%;
  scroll-snap-align: center;
}
.vframe {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%;
  height: 0;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 8px 8px 0 0 var(--lime);
}
.vframe iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}
.vslider__cap {
  text-align: center;
  margin-top: var(--s3);
  font-weight: 600;
  font-size: var(--fs-sm);
  color: var(--purple);
}
.vslider__arrow {
  flex: 0 0 auto;
  width: 48px; height: 48px;
  border-radius: 50%;
  border: none;
  background: #fff;
  color: var(--teal);
  box-shadow: var(--shadow-card);
  cursor: pointer;
  display: grid;
  place-items: center;
  transition: transform 0.18s var(--ease), box-shadow 0.18s var(--ease), background 0.18s;
}
.vslider__arrow:hover { transform: translateY(-3px); box-shadow: var(--shadow-lift); background: var(--coral); color: #fff; }
.vslider__arrow:focus-visible { outline: 3px solid var(--purple); outline-offset: 2px; }
.vslider__dots {
  grid-column: 1 / -1;
  display: flex;
  justify-content: center;
  gap: 0.6em;
  margin-top: var(--s3);
}
.vslider__dot {
  width: 10px; height: 10px;
  border-radius: 50%;
  border: none;
  background: var(--lavender);
  cursor: pointer;
  padding: 0;
  transition: background 0.2s, transform 0.2s;
}
.vslider__dot.is-active { background: var(--coral); transform: scale(1.25); }
@media (max-width: 640px) {
  .vslider { grid-template-columns: 1fr; }
  .vslider__arrow { display: none; }
}

/* ---------- Why us (3 cards, like current site) ---------- */
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--s3);
  margin-top: var(--s5);
}
.why-card {
  background: var(--lavender);
  border-radius: var(--radius);
  padding: var(--s5) var(--s4);
  text-align: center;
  box-shadow: none;
  transition: transform 0.2s var(--ease);
}
.why-card:hover { transform: translateY(-4px); }
.why-card img { height: 120px; width: auto; margin: 0 auto var(--s3); }
.why-card h3 { font-size: var(--fs-lg); margin-bottom: 0.4em; }
.why-card p { font-size: var(--fs-sm); color: var(--ink-soft); margin: 0; }
@media (max-width: 820px) { .why-grid { grid-template-columns: 1fr; } }

/* ---------- Testimonials (image-top masonry wall) ---------- */
.testi-grid {
  column-count: 3;
  column-gap: var(--s4);
  margin-top: var(--s5);
}
.testi {
  background: #fff;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  break-inside: avoid;
  margin-bottom: var(--s4);
  display: inline-block;
  width: 100%;
}
.testi__img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  object-position: center 28%;
  background: var(--lavender-soft);
}
.testi__body { padding: var(--s4); }
.testi blockquote {
  margin: 0 0 var(--s3);
  font-size: var(--fs-sm);
}
.testi blockquote::before { content: "\201C"; color: var(--coral); font-size: 2em; line-height: 0; vertical-align: -0.35em; margin-right: 0.05em; }
.testi__name { font-weight: 700; font-size: var(--fs-sm); line-height: 1.3; color: var(--teal); }
.testi__school { font-size: var(--fs-xs); color: var(--coral); font-weight: 600; margin-top: 0.1em; }
@media (max-width: 920px) { .testi-grid { column-count: 2; } }
@media (max-width: 620px) { .testi-grid { column-count: 1; } }

/* ---------- Founder ---------- */
.founder-section {
  background: #fff;
}
.founder {
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: var(--s6);
  align-items: center;
}
.founder__photo img {
  width: 100%;
  max-width: 320px;
  border-radius: 50%;
  aspect-ratio: 1;
  object-fit: cover;
}
.founder__body h2 { font-size: var(--fs-xl); }
.founder__body p { color: var(--ink-soft); font-size: var(--fs-sm); max-width: 52em; }
@media (max-width: 860px) {
  .founder { grid-template-columns: 1fr; gap: var(--s4); }
  .founder__photo { max-width: 220px; margin: 0 auto; }
}

/* ---------- Email capture band ---------- */
.email-band {
  background: var(--teal);
  border-radius: var(--radius);
  padding: var(--s5);
  color: var(--cream);
  text-align: center;
}
.email-band .eyebrow { color: var(--lime); }
.email-band h2 { color: var(--cream); font-size: var(--fs-xl); margin-bottom: var(--s2); max-width: 20em; margin-left: auto; margin-right: auto; }
.email-band p { color: var(--aqua); font-size: var(--fs-sm); max-width: 36em; margin: 0 auto var(--s4); }
.email-band__cta { display: flex; justify-content: center; }
.email-band__form {
  display: flex;
  gap: var(--s2);
  max-width: 480px;
  margin: 0 auto;
}
.email-band__form input {
  flex: 1;
  min-width: 0;
  font-family: inherit;
  font-size: 16px;
  padding: 0 1.1em;
  min-height: 48px;
  border: none;
  border-radius: var(--radius-pill);
  background: #fff;
  color: var(--teal);
}
.email-band__form input:focus { outline: 3px solid var(--lime); }
.sr-only {
  position: absolute; width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden;
  clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}
@media (max-width: 560px) {
  .email-band__form { flex-direction: column; }
}

/* ---------- FAQ ---------- */
.faq { max-width: var(--container-narrow); margin: var(--s5) auto 0; }
.faq details {
  background: #fff;
  border-radius: var(--radius);
  margin-bottom: var(--s2);
  box-shadow: var(--shadow-card);
  transition: box-shadow 0.2s var(--ease);
}
.faq details[open] { box-shadow: var(--shadow-lift); }
.faq summary {
  cursor: pointer;
  font-weight: 600;
  font-size: var(--fs-md);
  color: var(--teal);
  padding: var(--s3) var(--s4);
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: var(--s3);
  min-height: 56px;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "";
  flex: 0 0 auto;
  width: 26px; height: 26px;
  border-radius: 50%;
  background: var(--lime);
  position: relative;
  transition: background 0.25s var(--ease);
}
.faq summary::before {
  content: "+";
  position: absolute;
  right: calc(var(--s4) + 4px);
  font-size: 1.25em;
  font-weight: 500;
  line-height: 1;
  color: var(--teal);
  z-index: 1;
  transition: transform 0.3s var(--ease);
  pointer-events: none;
}
.faq details[open] summary::before { transform: rotate(135deg); }
.faq details[open] summary::after { background: var(--coral-light); }
.faq summary:focus-visible { outline: 3px solid var(--purple); outline-offset: 2px; border-radius: var(--radius); }
/* Animated answer panel (height transition driven by JS; falls back to
   native <details> toggle if JS is unavailable). */
.faq__a {
  overflow: hidden;
  transition: height 0.3s var(--ease);
}
.faq__a > div { padding: 0 var(--s4) var(--s4); font-size: var(--fs-sm); color: var(--ink-soft); }
.faq summary { position: relative; }

/* ---------- Final CTA ---------- */
.bridge { text-align: center; }
.bridge h2 { max-width: 24em; margin-left: auto; margin-right: auto; }
.bridge p { color: var(--aqua); max-width: 44em; margin: 0 auto var(--s4); font-size: var(--fs-md); }
