/* ============================================================
   CST Academy — ABA Therapy Service Page
   Tokens locked to /screenshots/design-system/00-DESIGN-SYSTEM-v2.md
   (Figma-verified, May 2026)
   ============================================================ */

:root {
  /* Brand palette (Figma-verified hex) */
  --navy: #163A4C;
  --navy-deep: #112337;
  --blue: #3B7EAB;
  --blue-mid: #5598C5;
  --blue-age: #6DAADD;
  --powder: #9EC7E4;
  --pale: #F2F8FD;        /* light section bg */
  --pale-deep: #DEEFF9;   /* trust strip / pill bg */
  --purple: #49264F;
  --gold: #FFC233;
  --white: #FFFFFF;
  --off-white: #F5F5F5;
  --body: #1C1C20;
  --muted: #686E77;
  --card-border: #C9C9C9;
  --card-shadow: 0 6px 29px rgba(0,0,0,0.09);

  /* Layout (Themeco X grid as used by live site) */
  --maxw: 1200px;
  --section-pad: 80px;
  --radius-card: 20px;
  --radius-btn: 20px;
  --radius-input: 10px;
}

/* ----- Reset / base ----- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; font-size: 18px; overflow-x: hidden; }
body {
  margin: 0;
  font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  color: var(--body);
  font-size: 16px;
  line-height: 1.625;
  background: var(--white);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img { max-width: 100%; display: block; }
a { color: var(--blue); text-decoration: none; }
a:hover { color: var(--navy); }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
input, select, textarea { font-family: inherit; font-size: inherit; }

/* ----- Wrapper (1200px max, 88% width below) ----- */
.wrap {
  width: 88%;
  max-width: var(--maxw);
  margin: 0 auto;
}

/* ----- Section base ----- */
section { padding: var(--section-pad) 0; }
.bg-pale     { background: var(--pale); }
.bg-pale-deep { background: var(--pale-deep); }
.bg-white    { background: var(--white); }
.bg-navy     { background: var(--navy); color: var(--white); }
.bg-purple   { background: var(--purple); color: var(--white); }

/* ----- Typography ----- */
h1, h2, h3, h4 { color: var(--navy); margin: 0; font-weight: 700; text-wrap: balance; }
h1 {
  font-family: 'Poppins', sans-serif;
  font-weight: 800;
  font-size: 2.25rem;        /* 40.5px */
  line-height: 1.3;
  letter-spacing: 0;
}
h2 {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 50px;
  line-height: 60px;
  letter-spacing: 0;
}
h3 {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 24px;
  line-height: 32px;
}
.h3-sm {
  font-size: 20px;
  line-height: 1;
}
.bg-navy h1, .bg-navy h2, .bg-navy h3,
.bg-purple h1, .bg-purple h2, .bg-purple h3 { color: var(--white); }

.eyebrow {
  font-family: 'Quicksand', 'Poppins', sans-serif;
  font-weight: 700;
  color: var(--purple);
  font-size: 16px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin: 0 0 12px;
}
.lede {
  font-size: 20px;
  line-height: 1.5;
  color: var(--body);
  max-width: 64ch;
}
.bg-navy .lede, .bg-purple .lede { color: var(--white); }

.section-head { text-align: center; margin: 0 auto 50px; max-width: 980px; }
.section-head h2 { margin: 0; }
.section-head .lede { margin: 15px auto 0; }
.section-head .head-ctas {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
  margin-top: 28px;
}
.section-head.purple h2 { color: var(--purple); }

/* ----- Buttons ----- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 17px;
  line-height: 19.2px;
  border-radius: var(--radius-btn);
  border: none;
  text-decoration: none;
  padding: 13px 24px;
  min-height: 46px;
  transition: background .15s ease, color .15s ease, transform .12s ease, box-shadow .2s ease;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-1px); }
.btn-primary { background: var(--navy); color: var(--white); }
.btn-primary:hover { background: var(--navy-deep); color: var(--white); }
.btn-secondary { background: var(--white); color: var(--navy); border: 1px solid var(--navy); }
.btn-secondary:hover { background: var(--navy); color: var(--white); }
.btn-purple { background: var(--purple); color: var(--white); }
.btn-purple:hover { background: #5e3266; color: var(--white); }
.btn-white-on-dark { background: var(--white); color: var(--navy); }
.btn-white-on-dark:hover { background: var(--gold); color: var(--navy); }
.btn-outline-white { background: transparent; color: var(--white); border: 1px solid var(--white); }
.btn-outline-white:hover { background: var(--white); color: var(--navy); }
.btn .arrow {
  width: 17px;
  height: 17px;
  display: inline-block;
  flex-shrink: 0;
}
.btn .arrow svg { width: 100%; height: 100%; display: block; }

.tlink {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-weight: 700;
  color: var(--blue);
  font-size: 16px;
}
.tlink::after { content: "→"; transition: transform .15s ease; }
.tlink:hover::after { transform: translateX(3px); }

/* ----- Top trust strip ----- */
.topstrip {
  background: var(--navy);
  padding: 10px 0;
  padding-top: calc(10px + env(safe-area-inset-top));
  font-family: 'Poppins', sans-serif;
}
.topstrip .wrap { display: flex; align-items: center; justify-content: space-between; gap: 16px; flex-wrap: wrap; }
.topstrip .left { display: flex; align-items: center; gap: 8px; }
.topstrip .left .medal { max-width: 30px; height: auto; display: block; }
.topstrip .tagline { color: #fff; font-weight: 700; font-size: 15px; line-height: 1.3; }
.topstrip .right { display: flex; align-items: center; gap: 16px; }
.topstrip a {
  color: rgba(255,255,255,0.75);
  font-weight: 700;
  font-size: 16px;
  display: inline-flex;
  align-items: center;
  gap: 5px;
}
.topstrip a:hover { color: #fff; }
.topstrip .ts-icon { width: 16px; height: 16px; flex-shrink: 0; filter: brightness(0) invert(1); opacity: 0.75; }
.topstrip a:hover .ts-icon { opacity: 1; }

/* ----- Header ----- */
.header {
  background: var(--white);
  border-bottom: 1px solid var(--pale);
  position: sticky;
  top: 0;
  z-index: 999;
}
.header .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding-top: 10px;
  padding-bottom: 10px;
  flex-wrap: nowrap;
}
.logo { display: inline-flex; flex-shrink: 0; }
.logo img { max-width: 70px; width: auto; height: auto; display: block; }

.nav {
  display: none;
  align-items: center;
  gap: 4px;
  flex: 1 1 auto;
  justify-content: center;
  flex-wrap: nowrap;
}
.nav a {
  color: var(--navy);
  font-weight: 700;
  font-size: 16px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 0 0.75em;
  white-space: nowrap;
  line-height: 1;
}
.nav a:hover { color: var(--blue); }
.nav .caret {
  display: inline-flex;
  width: 12px;
  height: 12px;
  font-size: 12px;
  color: currentColor;
  align-items: center;
  justify-content: center;
  line-height: 1;
  flex-shrink: 0;
}
.nav .caret svg { width: 100%; height: 100%; fill: currentColor; display: block; }
.header .actions { display: flex; align-items: center; gap: 12px; flex-shrink: 0; }

.btn-header {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--navy);
  color: rgba(255,255,255,0.75);
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 16px;
  text-transform: uppercase;
  letter-spacing: 0;
  padding: 0.2em 1em;
  border-radius: 3px;
  border: none;
  box-shadow: none;
  text-decoration: none;
  line-height: 1.5;
  white-space: nowrap;
}
.btn-header:hover { background: var(--navy-deep); color: #fff; }
@media (min-width: 979px) { .nav { display: flex; } }

/* ----- Breadcrumbs ----- */
.breadcrumbs {
  background: var(--pale-deep);
  padding: 14px 0;
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 14px;
  color: var(--navy);
}
.breadcrumbs ol {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}
.breadcrumbs a { color: var(--navy); font-weight: 700; text-decoration: none; }
.breadcrumbs a:hover { color: rgba(22,58,76,0.75); }
.breadcrumbs li { display: inline-flex; align-items: center; }
.breadcrumbs .x-crumbs-delimiter {
  color: rgba(22,58,76,0.75);
  font-weight: 700;
  margin: 0 8px;
}

/* ============================================================
   SECTION 2 — Hero (pale blue bg, 50/50 split with curved image)
   ============================================================ */
.hero {
  background: var(--pale);
  padding: 60px 0;
  position: relative;
  overflow: hidden;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  align-items: center;
}
@media (min-width: 1000px) {
  .hero-grid { grid-template-columns: 1.15fr 1fr; gap: 0; }
}
.hero-content { padding-right: 24px; }
.hero h1 {
  font-family: 'Poppins', sans-serif;
  font-weight: 800;
  font-size: 2.25rem;
  line-height: 1.3;
  color: var(--navy);
  margin-bottom: 18px;
}
.hero h1 .accent { color: var(--blue); }
.hero .h2-sub {
  font-family: 'Source Serif 4', 'Merriweather', serif;
  font-weight: 800;
  font-size: 1.3rem;
  line-height: 1.4;
  color: var(--navy);
  margin: 0 0 16px;
}
.hero .lede { color: var(--body); margin-bottom: 22px; max-width: 60ch; }
.hero .hero-ctas { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 16px; }
.hero .hero-ctas .phone-link {
  color: var(--navy);
  font-weight: 700;
  font-size: 16px;
  display: inline-flex;
  align-items: center;
  align-self: center;
  gap: 6px;
}
.hero .trust-rect-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 8px;
}
.trust-rect {
  background: var(--white);
  border: 1px solid var(--navy);
  border-radius: 10px;
  padding: 10px 14px;
  font-family: 'Poppins', sans-serif;
  font-size: 15px;
  color: var(--navy);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  line-height: 1.2;
}
.trust-rect .ck { color: var(--blue); font-weight: 700; }

/* Hero image with curved cutout */
.hero-image-wrap {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: 420px;
  overflow: hidden;
}
.hero-image-wrap svg.cutout {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
  z-index: 1;
  pointer-events: none;
}
.hero-image-wrap img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  clip-path: url(#hero-curve-clip);
}

/* ============================================================
   SECTION 3 — Trust band (deeper pale blue)
   ============================================================ */
.trust-band {
  background: var(--pale-deep);
  padding: 28px 0;
}
.trust-band-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 20px 36px;
}
.trust-item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 16px;
  color: var(--navy);
}
.trust-item .tk { color: var(--blue); font-weight: 700; font-size: 18px; }

/* ============================================================
   SECTION 4 — Symptom grid (white sections, big H2)
   ============================================================ */
.sym-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}
@media (min-width: 700px)  { .sym-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1000px) { .sym-grid { grid-template-columns: repeat(4, 1fr); } }
.sym-card {
  background: var(--white);
  border: 1px solid var(--card-border);
  border-radius: var(--radius-card);
  box-shadow: var(--card-shadow);
  padding: 26px 22px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: transform .15s ease, box-shadow .15s ease;
}
.sym-card:hover { transform: translateY(-2px); box-shadow: 0 14px 38px rgba(0,0,0,0.12); }
.sym-card .icon-wrap {
  width: 80px; height: 80px;
  background: var(--pale);
  border-radius: 16px;
  display: flex; align-items: center; justify-content: center;
  padding: 8px;
}
.sym-card .icon-wrap img { width: 100%; height: 100%; object-fit: contain; }
.sym-card h3 { font-size: 18px; line-height: 1.3; }
.sym-card p {
  margin: 0;
  font-size: 16px;
  line-height: 26px;
  letter-spacing: 0.5px;
  color: var(--body);
  opacity: 0.8;
}

.center-cta { text-align: center; margin-top: 44px; }
.center-cta .helper {
  display: block;
  margin: 14px auto 0;
  color: var(--muted);
  font-size: 14px;
  max-width: 540px;
}

/* ============================================================
   SECTION 5 — BCBA wall
   ============================================================ */
.bcba-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}
@media (min-width: 700px)  { .bcba-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1000px) { .bcba-grid { grid-template-columns: repeat(3, 1fr); } }
.bcba-card {
  background: var(--white);
  border: 1px solid var(--card-border);
  border-radius: var(--radius-card);
  box-shadow: var(--card-shadow);
  padding: 22px;
  display: flex; flex-direction: column; gap: 14px;
  transition: transform .15s ease, box-shadow .15s ease;
}
.bcba-card:hover { transform: translateY(-2px); box-shadow: 0 14px 38px rgba(0,0,0,0.12); }
.bcba-photo {
  width: 100%;
  aspect-ratio: 1/1;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--pale), #c9def1);
  overflow: hidden;
  position: relative;
}
.bcba-photo img { width: 100%; height: 100%; object-fit: cover; object-position: top center; }
.bcba-photo.placeholder { display: flex; align-items: center; justify-content: center; }
.bcba-photo.placeholder .ph-text {
  color: var(--muted);
  font-size: 12px;
  font-weight: 600;
  text-align: center;
  padding: 16px;
  z-index: 2;
}
.bcba-photo.placeholder::before {
  content: "";
  position: absolute;
  inset: 24% 30% 50% 30%;
  background: var(--powder);
  border-radius: 50% 50% 45% 45%;
  opacity: 0.5;
}
.bcba-photo.placeholder::after {
  content: "";
  position: absolute;
  inset: 58% 18% 0 18%;
  background: var(--powder);
  border-radius: 50% 50% 0 0;
  opacity: 0.5;
}
.bcba-name { font-weight: 700; color: var(--navy); font-size: 20px; }
.bcba-cred {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  color: var(--blue);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-top: 2px;
}
.bcba-quote {
  font-style: italic;
  font-size: 16px;
  color: var(--body);
  line-height: 26px;
  letter-spacing: 0.5px;
  opacity: 0.9;
  margin: 0;
}
.bcba-loc {
  margin-top: auto;
  font-size: 14px;
  color: var(--muted);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

/* ============================================================
   SECTION 6 — What is ABA + How it works (split)
   ============================================================ */
.aba-split {
  display: grid;
  grid-template-columns: 1fr;
  gap: 56px;
  align-items: start;
}
@media (min-width: 1000px) { .aba-split { grid-template-columns: 0.85fr 1.4fr; gap: 80px; } }
.aba-def h2 { font-size: 50px; line-height: 60px; color: var(--navy); margin-bottom: 18px; }
.aba-def p { margin: 0 0 16px; font-size: 18px; line-height: 1.6; }
.aba-def .inline-photo {
  margin-top: 28px;
  border-radius: var(--radius-card);
  overflow: hidden;
  aspect-ratio: 4/3;
  box-shadow: var(--card-shadow);
}
.aba-def .inline-photo img { width: 100%; height: 100%; object-fit: cover; }

.aba-how h2 { font-size: 50px; line-height: 60px; color: var(--purple); margin-bottom: 28px; }
.steps { display: flex; flex-direction: column; gap: 20px; }
.step {
  background: var(--white);
  border: 1px solid var(--card-border);
  border-radius: var(--radius-card);
  box-shadow: var(--card-shadow);
  padding: 24px 28px;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 22px;
  align-items: flex-start;
}
.step-num {
  width: 46px; height: 46px;
  border-radius: 50px;
  background: var(--purple);
  color: var(--white);
  display: inline-flex; align-items: center; justify-content: center;
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 20px;
  flex-shrink: 0;
}
.step h3 { font-size: 22px; line-height: 1.3; margin-bottom: 6px; }
.step p { margin: 0; color: var(--body); opacity: 0.85; font-size: 16px; line-height: 26px; }

/* ============================================================
   SECTION 7 — Integrated services
   ============================================================ */
.svc-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}
@media (min-width: 700px)  { .svc-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1000px) { .svc-grid { grid-template-columns: repeat(3, 1fr); } }
.svc-card {
  background: var(--white);
  border: 1px solid var(--card-border);
  border-radius: var(--radius-card);
  box-shadow: var(--card-shadow);
  padding: 26px;
  display: flex; flex-direction: column; gap: 16px;
  transition: transform .15s ease, box-shadow .15s ease;
}
.svc-card:hover { transform: translateY(-2px); box-shadow: 0 14px 38px rgba(0,0,0,0.12); }
.svc-card-head {
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
}
.svc-icon {
  width: 70px; height: 70px;
  background: var(--pale-deep);
  border-radius: 16px;
  display: flex; align-items: center; justify-content: center;
}
.svc-icon img { width: 44px; height: 44px; }
.age-pill {
  background: var(--blue-age);
  border-radius: 10px;
  padding: 4px 10px;
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 12px;
  color: var(--white);
  line-height: 1;
}
.svc-card h3 {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 24px;
  line-height: 32px;
  color: var(--navy);
}
.svc-card p {
  margin: 0;
  font-size: 16px;
  line-height: 26px;
  letter-spacing: 0.5px;
  color: var(--body);
  opacity: 0.8;
  flex: 1;
}
.svc-card .tlink { margin-top: auto; }

/* ============================================================
   SECTION 8 — Testimonials
   ============================================================ */
.t-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}
@media (min-width: 900px) { .t-grid { grid-template-columns: repeat(3, 1fr); } }
.t-card {
  background: var(--white);
  border: 1px solid var(--card-border);
  border-radius: var(--radius-card);
  box-shadow: var(--card-shadow);
  padding: 32px 28px;
  display: flex; flex-direction: column; gap: 16px;
}
.t-card .g-logo { width: 140px; height: auto; display: block; }
.t-quote {
  margin: 0;
  color: var(--body);
  font-size: 16px;
  line-height: 26px;
  letter-spacing: 0.5px;
}
.t-attr {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 16px;
  line-height: 26px;
  letter-spacing: 0.5px;
  color: var(--body);
}
.t-outcomes {
  display: flex; flex-wrap: wrap; gap: 8px;
  margin-top: auto;
  padding-top: 16px;
  border-top: 1px solid var(--pale-deep);
}
.outcome-pill {
  background: var(--pale-deep);
  color: var(--navy);
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 12.5px;
  padding: 8px 14px;
  border-radius: 10px;
  line-height: 1.3;
}
.outcome-pill .when { color: var(--blue); font-weight: 700; margin-right: 6px; }

/* ============================================================
   SECTION 9 — Conversion handoff (navy bg, dual cards)
   ============================================================ */
.conv-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  align-items: stretch;
}
@media (min-width: 900px) { .conv-grid { grid-template-columns: 1fr 1fr; gap: 32px; } }
.conv-card {
  background: var(--white);
  border-radius: var(--radius-card);
  padding: 40px 36px;
  display: flex; flex-direction: column; gap: 16px;
  color: var(--body);
  box-shadow: var(--card-shadow);
}
.conv-card h3 { color: var(--navy); font-size: 26px; line-height: 1.3; }
.conv-card p { margin: 0; font-size: 16px; line-height: 26px; opacity: 0.85; }
.conv-card .big-icon {
  width: 76px; height: 76px;
  background: var(--pale-deep);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 4px;
}
.conv-card .big-icon img { width: 46px; height: 46px; }
.conv-card .helper { color: var(--muted); font-size: 13px; opacity: 1; }
.conv-card .btn { margin-top: 8px; width: 100%; padding-left: 20px; padding-right: 20px; }

/* Form fields */
.form-row { display: grid; grid-template-columns: 1fr; gap: 12px; }
@media (min-width: 600px) { .form-row.two { grid-template-columns: 1fr 1fr; } }
.field { display: flex; flex-direction: column; gap: 6px; }
.field label { font-size: 13px; font-weight: 700; color: var(--navy); }
.field input, .field select, .field textarea {
  background: var(--pale);
  border: 1px solid var(--powder);
  border-radius: var(--radius-input);
  padding: 12px 14px;
  font-size: 15px;
  color: var(--body);
  transition: border-color .15s ease, box-shadow .15s ease;
}
.field input::placeholder, .field textarea::placeholder { color: rgba(22,58,76,0.5); }
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none;
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(59, 126, 171, 0.15);
}

/* ============================================================
   SECTION 10 — FAQ + specializations + Google + bottom CTA + footer
   ============================================================ */
.faq {
  max-width: 1100px;
  margin: 0 auto;
}
.faq details {
  border: 1px solid rgba(22,58,76,0.2);
  border-top: none;
  padding: 24px 29px;
  background: var(--white);
}
.faq details:first-of-type { border-top: 1px solid rgba(22,58,76,0.2); }
.faq summary {
  list-style: none;
  cursor: pointer;
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  color: var(--purple);
  font-size: 20px;
  line-height: 26px;
  letter-spacing: 0.5px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "";
  display: inline-block;
  width: 14px;
  height: 14px;
  background-color: var(--purple);
  clip-path: polygon(0 0, 0 100%, 100% 50%);
  transition: transform .2s ease;
  flex-shrink: 0;
}
.faq details[open] summary::after { transform: rotate(90deg); }
.faq .answer {
  margin: 12px 0 0;
  color: var(--navy);
  font-family: 'Poppins', sans-serif;
  font-size: 18px;
  line-height: 1.5;
  opacity: 0.8;
  padding-right: 32px;
}

.spec-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  margin-top: 36px;
}
@media (min-width: 700px)  { .spec-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1000px) { .spec-grid { grid-template-columns: repeat(3, 1fr); } }
.spec-card {
  background: var(--white);
  border: 1px solid var(--card-border);
  border-radius: var(--radius-card);
  box-shadow: var(--card-shadow);
  padding: 32px 24px 28px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 14px;
  color: var(--navy);
  transition: transform .15s ease, box-shadow .15s ease;
}
.spec-card:hover { transform: translateY(-2px); box-shadow: 0 14px 38px rgba(0,0,0,0.12); }
.spec-icon {
  width: 72px;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.spec-icon img { max-width: 100%; max-height: 100%; object-fit: contain; }
.spec-card h3 {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 18px;
  line-height: 1.4;
  color: var(--navy);
  margin: 0;
}
.spec-abbr {
  font-weight: 600;
  color: var(--muted);
  font-size: 15px;
}

.google-strip {
  background: radial-gradient(ellipse at 20% 50%, rgba(255, 194, 51, 0.10) 0%, transparent 55%),
              radial-gradient(ellipse at 80% 50%, rgba(73, 38, 79, 0.10) 0%, transparent 55%),
              radial-gradient(ellipse at 50% 100%, rgba(59, 126, 171, 0.12) 0%, transparent 60%),
              var(--white);
  padding: 64px 24px 72px;
  border-radius: var(--radius-card);
  border: 1px solid var(--card-border);
  box-shadow: var(--card-shadow);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 14px;
  text-align: center;
  margin: 72px auto 0;
  max-width: 800px;
}
.gstars-row {
  display: inline-flex;
  gap: 6px;
  font-size: 26px;
  color: var(--gold);
  line-height: 1;
  filter: drop-shadow(0 2px 3px rgba(255, 194, 51, 0.4));
}
.g-big {
  font-family: 'Poppins', sans-serif;
  font-weight: 800;
  font-size: 72px;
  line-height: 1;
  color: var(--navy);
  letter-spacing: -0.01em;
  margin-top: 4px;
}
.g-headline {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 32px;
  line-height: 1.2;
  color: var(--navy);
}
.g-cta { margin-top: 18px; }

@media (max-width: 700px) {
  .g-big { font-size: 56px; }
  .g-headline { font-size: 24px; }
  .gstars-row { font-size: 22px; }
}

/* Bottom CTA banner (purple) */
.bottom-cta { text-align: center; padding: 80px 0; }
.bottom-cta h2 { color: var(--white); margin-bottom: 18px; }
.bottom-cta .lede { color: var(--white); margin: 0 auto 28px; opacity: 0.95; text-wrap: balance; }
.bottom-cta .row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: center;
  align-items: center;
}
.bottom-cta .row .btn,
.bottom-cta .row .phone-pill { max-width: 100%; }
.bottom-cta .phone-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--white);
  color: var(--purple);
  border-radius: var(--radius-btn);
  padding: 13px 24px;
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 17px;
  text-decoration: none;
  white-space: nowrap;
}
.bottom-cta .phone-pill img { width: 19px; height: 19px; }

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: var(--navy);
  color: rgba(255,255,255,0.9);
  padding: 64px 0 32px;
}
.footer .cols {
  display: grid;
  grid-template-columns: 1fr;
  gap: 56px;
  margin-bottom: 48px;
}
@media (min-width: 800px) { .footer .cols { grid-template-columns: 1fr 1.2fr 1.5fr; } }
.footer-links { display: flex; flex-direction: column; gap: 16px; }
.footer-links a {
  color: var(--white);
  font-family: 'Poppins', sans-serif;
  font-weight: 400;
  font-size: 16px;
  text-decoration: underline;
  text-underline-offset: 4px;
}
.footer-links a:hover { color: var(--gold); }

.footer-contact { display: flex; flex-direction: column; gap: 18px; }
.footer-contact .btn { width: fit-content; }
.footer-contact a { color: var(--white); }
.footer-contact .row {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'Poppins', sans-serif;
  font-size: 16px;
  color: var(--white);
}
.footer-contact .row img { width: 18px; height: 18px; }
.footer-socials { display: flex; gap: 14px; }
.footer-socials a {
  display: inline-flex;
  width: 32px; height: 32px;
  align-items: center; justify-content: center;
  color: var(--white);
  font-size: 18px;
}
.footer-socials a:hover { color: var(--gold); }

.footer-family { display: flex; flex-direction: column; gap: 16px; }
.footer-family .lockup { display: flex; align-items: center; gap: 14px; }
.footer-family .lockup img { width: 72px; height: auto; }
.footer-family .lockup .label {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 15px;
  color: var(--white);
  line-height: 1.3;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.footer-family p {
  font-size: 15px;
  color: rgba(255,255,255,0.85);
  line-height: 1.55;
  margin: 0;
  max-width: 36ch;
}
.family-brands {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px 24px;
  margin-top: 8px;
}
.family-brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--white);
  font-size: 14px;
  font-weight: 600;
}
.family-brand .brand-shield {
  width: 38px; height: 38px;
  background: var(--white);
  border-radius: 6px;
  display: inline-flex; align-items: center; justify-content: center;
  color: var(--navy);
  font-size: 10px; font-weight: 700;
  text-align: center;
  line-height: 1.05;
  padding: 4px;
}
.family-cta {
  margin-top: 24px;
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 22px;
  color: var(--white);
}
.footer .legal {
  border-top: 1px solid rgba(255,255,255,0.12);
  padding-top: 20px;
  display: flex; flex-wrap: wrap; justify-content: space-between; align-items: center;
  gap: 12px;
  font-size: 13px;
  color: rgba(255,255,255,0.55);
}
.footer .legal a { color: rgba(255,255,255,0.55); text-decoration: underline; }
.footer .legal a:hover { color: var(--gold); }

/* ----- Sticky mobile bar ----- */
.sticky-bar {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  background: var(--white);
  border-top: 1px solid var(--card-border);
  padding: 10px 12px calc(10px + env(safe-area-inset-bottom));
  display: none;
  gap: 10px;
  z-index: 100;
  box-shadow: 0 -6px 16px rgba(22,58,76,0.1);
}
.sticky-call,
.sticky-book {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2px;
  border-radius: var(--radius-btn);
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  text-decoration: none;
  min-height: 54px;
  padding: 8px 12px;
  text-align: center;
  line-height: 1.1;
}
.sticky-call {
  background: var(--navy);
  color: var(--white);
}
.sticky-call:hover { background: var(--navy-deep); color: var(--white); }
.sticky-call-top {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 15px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.sticky-call-top svg { flex-shrink: 0; }
.sticky-call-num {
  font-size: 13px;
  font-weight: 600;
  opacity: 0.9;
}
.sticky-book {
  background: var(--white);
  color: var(--navy);
  border: 1px solid var(--navy);
  font-size: 16px;
}
.sticky-book:hover { background: var(--navy); color: var(--white); }
@media (max-width: 978px) {
  .sticky-bar { display: flex; }
  body { padding-bottom: 80px; }
}

/* ----- Responsive H2 tighten on small screens ----- */
@media (max-width: 700px) {
  h2 { font-size: 30px; line-height: 1.2; }
  .aba-def h2, .aba-how h2 { font-size: 30px; line-height: 1.2; }
  .hero h1 { font-size: 30px; }
  .bottom-cta { padding: 56px 0; }
  .bottom-cta h2 { font-size: 28px; }
  .bottom-cta .lede { font-size: 16px; }
  .btn { font-size: 15px; padding: 11px 18px; white-space: normal; line-height: 1.25; }
  .conv-card { padding: 28px 22px; }
  .conv-card .btn { padding: 13px 16px; }
  .conv-card h3 { font-size: 22px; }
  .topstrip { padding-top: max(48px, calc(10px + env(safe-area-inset-top))); }
  .topstrip .wrap { flex-direction: column; align-items: flex-start; gap: 8px; }
  .topstrip .right { gap: 12px; }
  .topstrip a { font-size: 14px; }
  .topstrip .tagline { font-size: 14px; }
  .hero-content { padding-right: 0; }
  .trust-band-row { gap: 12px 18px; justify-content: flex-start; flex-direction: column; align-items: flex-start; }
  .trust-item { font-size: 14px; align-items: flex-start; text-align: left; }
  .bottom-cta .phone-pill { white-space: normal; font-size: 16px; padding: 12px 18px; }
  .g-big { font-size: 48px; }
}

/* Prevent grid/flex children from forcing a wider min-content width */
.conv-grid > *,
.svc-grid > *,
.sym-grid > *,
.bcba-grid > *,
.t-grid > *,
.spec-grid > * { min-width: 0; }
