/* =========================================================================
   PhysiGrow — Design System
   Colours sampled directly from the PhysiGrow logo.
   ========================================================================= */

:root {
  /* Brand — sampled from logo */
  --navy:        #032673;
  --navy-deep:   #021A4E;
  --navy-ink:    #01102F;
  --green:       #62AA1A;
  --green-bright:#7CC220;
  --lime:        #CAE929;
  --teal:        #007874;
  --cyan:        #0090C5;

  /* Neutrals */
  --ink:      #0B1730;
  --slate:    #3D4B63;
  --muted:    #64748B;
  --line:     #E3E9F2;
  --line-soft:#EEF2F8;
  --bg:       #FFFFFF;
  --bg-alt:   #F4F7FB;
  --bg-tint:  #F0F5FA;

  /* Signature gradient */
  --grad: linear-gradient(90deg, var(--cyan) 0%, var(--teal) 32%, var(--green) 68%, var(--lime) 100%);
  --grad-cta: linear-gradient(135deg, var(--green-bright) 0%, #B9E12A 100%);

  /* Type */
  --font: ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto,
          "Helvetica Neue", Arial, sans-serif;

  /* Space */
  --gut: clamp(20px, 5vw, 32px);
  --sec: clamp(64px, 9vw, 116px);
  --radius: 16px;
  --radius-sm: 10px;

  --shadow-sm: 0 1px 2px rgba(3, 38, 115, .06), 0 4px 12px rgba(3, 38, 115, .05);
  --shadow:    0 2px 4px rgba(3, 38, 115, .05), 0 12px 32px rgba(3, 38, 115, .09);
  --shadow-lg: 0 4px 8px rgba(3, 38, 115, .05), 0 28px 64px rgba(3, 38, 115, .16);
}

/* ---------- Reset / base ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

body {
  margin: 0;
  font-family: var(--font);
  font-size: 17px;
  line-height: 1.65;
  color: var(--slate);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img, svg, video, iframe { max-width: 100%; }
img { height: auto; display: block; }

h1, h2, h3, h4 {
  color: var(--navy-deep);
  font-weight: 800;
  letter-spacing: -0.022em;
  line-height: 1.12;
  margin: 0 0 .5em;
  text-wrap: balance;
}
h1 { font-size: clamp(2.15rem, 5.6vw, 3.9rem); letter-spacing: -0.032em; }
h2 { font-size: clamp(1.75rem, 4vw, 2.75rem); letter-spacing: -0.028em; }
h3 { font-size: clamp(1.2rem, 2vw, 1.45rem); }
h4 { font-size: 1.05rem; }
p  { margin: 0 0 1.15em; }
p:last-child { margin-bottom: 0; }
strong { color: var(--navy-deep); font-weight: 700; }

a { color: var(--navy); text-decoration-color: rgba(3,38,115,.3); text-underline-offset: 3px; }
a:hover { text-decoration-color: currentColor; }

:focus-visible {
  outline: 3px solid var(--cyan);
  outline-offset: 3px;
  border-radius: 4px;
}

.skip {
  position: absolute; left: -9999px; top: 0; z-index: 999;
  background: var(--navy); color: #fff; padding: 12px 20px;
  border-radius: 0 0 8px 0; font-weight: 700;
}
.skip:focus { left: 0; }

/* ---------- Layout ---------- */
.wrap { width: min(1160px, 100% - (var(--gut) * 2)); margin-inline: auto; }
.wrap-narrow { width: min(820px, 100% - (var(--gut) * 2)); margin-inline: auto; }
.section { padding: var(--sec) 0; }
.section-sm { padding: clamp(44px, 6vw, 72px) 0; }

.bg-alt  { background: var(--bg-alt); }
.bg-navy { background: var(--navy-deep); }
.bg-ink  { background: var(--navy-ink); }

.bg-navy, .bg-ink { color: rgba(255,255,255,.80); }
.bg-navy h1, .bg-navy h2, .bg-navy h3, .bg-navy h4,
.bg-ink h1, .bg-ink h2, .bg-ink h3, .bg-ink h4 { color: #fff; }
.bg-navy strong, .bg-ink strong { color: #fff; }
.bg-navy a, .bg-ink a { color: var(--lime); }

.center { text-align: center; }
.center .lede { margin-inline: auto; }

/* ---------- Type helpers ---------- */
.eyebrow {
  display: inline-flex; align-items: center; gap: 9px;
  font-size: .755rem; font-weight: 800; letter-spacing: .12em;
  text-transform: uppercase; color: var(--teal);
  margin: 0 0 18px;
}
.eyebrow::before {
  content: ""; width: 26px; height: 3px; border-radius: 2px;
  background: var(--grad); flex: none;
}
.bg-navy .eyebrow, .bg-ink .eyebrow { color: var(--lime); }
.eyebrow.no-rule::before { display: none; }

.lede {
  font-size: clamp(1.06rem, 1.6vw, 1.24rem);
  line-height: 1.6;
  max-width: 62ch;
}
.section-head { max-width: 46rem; margin-bottom: clamp(36px, 5vw, 60px); }
.section-head.center { margin-inline: auto; }

.hl { color: var(--navy); }
.bg-navy .hl, .bg-ink .hl { color: var(--lime); }

.grad-text {
  background: linear-gradient(94deg, var(--cyan), var(--teal) 40%, var(--green) 78%);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent; color: var(--teal);
}
.bg-navy .grad-text, .bg-ink .grad-text {
  background: linear-gradient(94deg, #35C5F0, #7ED321 55%, var(--lime));
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
}

.small { font-size: .875rem; }
.micro { font-size: .8rem; color: var(--muted); line-height: 1.55; }
.bg-navy .micro, .bg-ink .micro { color: rgba(255,255,255,.55); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  padding: 17px 30px;
  font: inherit; font-size: 1.0rem; font-weight: 800; letter-spacing: -.01em;
  border: 2px solid transparent; border-radius: 999px;
  text-decoration: none; cursor: pointer;
  transition: transform .16s ease, box-shadow .16s ease, background-color .16s ease, color .16s ease;
  text-align: center;
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }

.btn-primary {
  background: var(--grad-cta);
  color: var(--navy-deep);
  box-shadow: 0 4px 14px rgba(98,170,26,.32), 0 12px 30px rgba(3,38,115,.14);
}
.btn-primary:hover { box-shadow: 0 8px 22px rgba(98,170,26,.42), 0 18px 42px rgba(3,38,115,.18); }

.btn-navy { background: var(--navy); color: #fff; box-shadow: var(--shadow); }
.btn-navy:hover { background: var(--navy-deep); }

.btn-ghost { background: transparent; border-color: rgba(3,38,115,.24); color: var(--navy); }
.btn-ghost:hover { border-color: var(--navy); background: rgba(3,38,115,.04); }

/* .cta-band is a dark surface too — without it here, ghost buttons render
   navy-on-navy and are effectively invisible. */
.bg-navy .btn-ghost, .bg-ink .btn-ghost, .cta-band .btn-ghost {
  border-color: rgba(255,255,255,.32); color: #fff;
}
.bg-navy .btn-ghost:hover, .bg-ink .btn-ghost:hover, .cta-band .btn-ghost:hover {
  border-color: #fff; background: rgba(255,255,255,.08);
}

.btn-lg { padding: 20px 38px; font-size: 1.08rem; }
.btn-sm { padding: 12px 22px; font-size: .92rem; }
.btn-block { display: flex; width: 100%; }

.btn-row { display: flex; flex-wrap: wrap; gap: 14px; align-items: center; }
.btn-row.center { justify-content: center; }

.cta-note { font-size: .855rem; color: var(--muted); margin-top: 16px; }
.bg-navy .cta-note, .bg-ink .cta-note { color: rgba(255,255,255,.62); }

/* ---------- Header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(255,255,255,.94);
  backdrop-filter: saturate(180%) blur(14px);
  -webkit-backdrop-filter: saturate(180%) blur(14px);
  border-bottom: 1px solid var(--line-soft);
}
.site-header.scrolled { box-shadow: 0 2px 18px rgba(3,38,115,.08); }
.nav { display: flex; align-items: center; gap: 20px; min-height: 76px; }
.brand { display: flex; align-items: center; flex: none; margin-right: auto; text-decoration: none; }
.brand img { width: 172px; }

.nav-links { display: flex; align-items: center; gap: 4px; }
.nav-links a {
  padding: 10px 14px; border-radius: 8px;
  color: var(--slate); font-weight: 650; font-size: .945rem; text-decoration: none;
  transition: color .15s ease, background-color .15s ease;
}
.nav-links a:hover { color: var(--navy); background: var(--bg-tint); }
.nav-links a.active { color: var(--navy); }

.nav-cta { flex: none; }

.nav-toggle {
  display: none; flex: none;
  width: 46px; height: 46px; border: 1px solid var(--line);
  border-radius: 10px; background: #fff; cursor: pointer;
  align-items: center; justify-content: center;
}
.nav-toggle span {
  display: block; width: 20px; height: 2px; background: var(--navy);
  border-radius: 2px; position: relative;
  transition: background .2s ease;
}
.nav-toggle span::before, .nav-toggle span::after {
  content: ""; position: absolute; left: 0; width: 20px; height: 2px;
  background: var(--navy); border-radius: 2px; transition: transform .22s ease;
}
.nav-toggle span::before { top: -6px; }
.nav-toggle span::after  { top: 6px; }
.nav-toggle[aria-expanded="true"] span { background: transparent; }
.nav-toggle[aria-expanded="true"] span::before { transform: translateY(6px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span::after  { transform: translateY(-6px) rotate(-45deg); }

@media (max-width: 940px) {
  .nav-toggle { display: flex; }
  .nav-links {
    position: absolute; left: 0; right: 0; top: 100%;
    flex-direction: column; align-items: stretch; gap: 2px;
    background: #fff; border-bottom: 1px solid var(--line);
    padding: 12px var(--gut) 22px;
    box-shadow: 0 18px 30px rgba(3,38,115,.10);
    display: none;
  }
  .nav-links.open { display: flex; }
  .nav-links a { padding: 14px 12px; font-size: 1.02rem; border-radius: 10px; }
  .nav-links .btn { margin-top: 8px; }
  .nav-cta.desktop-only { display: none; }
  .brand img { width: 150px; }
}
@media (min-width: 941px) { .nav-links .btn { display: none; } }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  padding: clamp(48px, 7vw, 84px) 0 clamp(56px, 7vw, 90px);
  background:
    radial-gradient(1100px 520px at 88% -8%, rgba(0,144,197,.10), transparent 62%),
    radial-gradient(760px 420px at 4% 8%, rgba(98,170,26,.09), transparent 60%),
    var(--bg);
  overflow: hidden;
}
.hero-grid {
  display: grid; grid-template-columns: 1.02fr .98fr;
  gap: clamp(32px, 5vw, 60px); align-items: center;
}
@media (max-width: 980px) { .hero-grid { grid-template-columns: 1fr; } }

.hero h1 { margin-bottom: .62em; }
.hero .lede { margin-bottom: 30px; }

.qualifier {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 8px 16px 8px 12px; margin-bottom: 24px;
  background: #fff; border: 1px solid var(--line);
  border-radius: 999px; box-shadow: var(--shadow-sm);
  font-size: .805rem; font-weight: 750; color: var(--navy-deep);
  letter-spacing: -.005em;
}
.qualifier .dot {
  width: 8px; height: 8px; border-radius: 50%; flex: none;
  background: var(--green-bright);
  box-shadow: 0 0 0 3px rgba(124,194,32,.22);
}

/* Video */
.video-card {
  background: #fff; border: 1px solid var(--line);
  border-radius: 20px; padding: 12px;
  box-shadow: var(--shadow-lg);
}
.video-card .frame { border-radius: 12px; overflow: hidden; background: var(--navy-ink); }
.video-card .cap {
  display: flex; align-items: center; justify-content: center; gap: 8px;
  padding: 13px 8px 5px; font-size: .82rem; font-weight: 700; color: var(--navy-deep);
}
.video-card .cap .dot {
  width: 7px; height: 7px; border-radius: 50%; background: #E5484D; flex: none;
  animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse { 0%,100% { opacity: 1; } 50% { opacity: .35; } }
@media (prefers-reduced-motion: reduce) { .video-card .cap .dot { animation: none; } }

/* ---------- Logo/trust strip ---------- */
.strip { border-block: 1px solid var(--line); background: var(--bg-alt); }
.strip-inner {
  display: flex; flex-wrap: wrap; align-items: center;
  justify-content: center; gap: 14px 34px; padding: 22px 0;
}
.strip-item {
  display: inline-flex; align-items: center; gap: 9px;
  font-size: .855rem; font-weight: 700; color: var(--navy-deep);
}
.strip-item svg { flex: none; color: var(--teal); }
.strip-sep { width: 1px; height: 20px; background: var(--line); }
@media (max-width: 700px) { .strip-sep { display: none; } }

/* ---------- Cards ---------- */
.grid { display: grid; gap: 22px; }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }
@media (max-width: 940px) {
  .grid-3, .grid-4 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
}

.card {
  background: #fff; border: 1px solid var(--line);
  border-radius: var(--radius); padding: 30px 28px;
  box-shadow: var(--shadow-sm);
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.card h3 { margin-bottom: .55em; }
.card p:last-child { margin-bottom: 0; }
.card-hover:hover { transform: translateY(-4px); box-shadow: var(--shadow); border-color: #D3DEEE; }

.bg-alt .card { border-color: #DFE7F1; }
.bg-navy .card, .bg-ink .card {
  background: rgba(255,255,255,.055);
  border-color: rgba(255,255,255,.13);
  box-shadow: none;
}

.card-num {
  display: inline-flex; align-items: center; justify-content: center;
  width: 46px; height: 46px; border-radius: 12px;
  background: var(--navy); color: #fff;
  font-size: 1.02rem; font-weight: 800; letter-spacing: -.02em;
  margin-bottom: 20px;
}
.card-num.grad { background: var(--grad); color: var(--navy-deep); }
.bg-navy .card-num, .bg-ink .card-num { background: var(--grad); color: var(--navy-deep); }

.icon-badge {
  display: inline-flex; align-items: center; justify-content: center;
  width: 48px; height: 48px; border-radius: 13px;
  background: linear-gradient(140deg, rgba(0,144,197,.13), rgba(98,170,26,.13));
  color: var(--teal); margin-bottom: 20px;
}
.bg-navy .icon-badge, .bg-ink .icon-badge {
  background: rgba(255,255,255,.09); color: var(--lime);
}

/* ---------- Pillars ---------- */
.pillar {
  display: grid; grid-template-columns: 88px 1fr;
  gap: clamp(20px, 3vw, 34px);
  padding: clamp(28px, 4vw, 42px) 0;
  border-top: 1px solid var(--line);
}
.pillar:last-child { border-bottom: 1px solid var(--line); }
.bg-navy .pillar, .bg-ink .pillar { border-color: rgba(255,255,255,.14); }
.pillar-num {
  font-size: clamp(2.6rem, 5vw, 3.6rem); font-weight: 800;
  line-height: .9; letter-spacing: -.05em;
  background: var(--grad); -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
}
.pillar h3 { font-size: clamp(1.32rem, 2.4vw, 1.7rem); }
@media (max-width: 640px) {
  .pillar { grid-template-columns: 1fr; gap: 12px; }
}

/* ---------- Split ---------- */
.split {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: clamp(32px, 5vw, 68px); align-items: center;
}
.split.wide-left { grid-template-columns: 1.15fr .85fr; }
.split.wide-right { grid-template-columns: .85fr 1.15fr; }
@media (max-width: 940px) {
  .split, .split.wide-left, .split.wide-right { grid-template-columns: 1fr; }
  .split .order-first-mobile { order: -1; }
}

/* ---------- Versus / comparison ---------- */
.versus { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; }
@media (max-width: 780px) { .versus { grid-template-columns: 1fr; } }

.vs-col { border-radius: var(--radius); padding: 30px 28px; border: 1px solid var(--line); }
.vs-col h3 { display: flex; align-items: center; gap: 11px; margin-bottom: 22px; font-size: 1.15rem; }
.vs-tag {
  display: inline-flex; align-items: center; justify-content: center;
  width: 26px; height: 26px; border-radius: 50%; flex: none; font-size: .95rem;
}
.vs-bad { background: #FEF6F6; border-color: #F6DADA; }
.vs-bad h3 { color: #A5343A; }
.vs-bad .vs-tag { background: #F3C7C7; color: #8E2429; }
.vs-good { background: #F4FAEE; border-color: #DCEBC9; }
.vs-good h3 { color: #3E7113; }
.vs-good .vs-tag { background: var(--grad-cta); color: var(--navy-deep); }

.vs-list { list-style: none; margin: 0; padding: 0; display: grid; gap: 13px; }
.vs-list li { position: relative; padding-left: 27px; font-size: .96rem; }
.vs-list li::before {
  position: absolute; left: 0; top: -1px; font-weight: 800; font-size: 1.05rem;
}
.vs-bad .vs-list li::before  { content: "\00d7"; color: #C0555B; }
.vs-good .vs-list li::before { content: "\2713"; color: var(--green); }

/* ---------- Check lists ---------- */
.checks { list-style: none; margin: 0; padding: 0; display: grid; gap: 14px; }
.checks li { position: relative; padding-left: 34px; }
.checks li::before {
  content: ""; position: absolute; left: 0; top: 3px;
  width: 21px; height: 21px; border-radius: 50%;
  background: var(--grad-cta);
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Ccircle cx='12' cy='12' r='12'/%3E%3C/svg%3E") center/contain no-repeat;
          mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Ccircle cx='12' cy='12' r='12'/%3E%3C/svg%3E") center/contain no-repeat;
}
.checks li::after {
  content: ""; position: absolute; left: 6px; top: 9px;
  width: 9px; height: 5px;
  border-left: 2.2px solid var(--navy-deep);
  border-bottom: 2.2px solid var(--navy-deep);
  transform: rotate(-45deg);
}
.checks.two-col { grid-template-columns: 1fr 1fr; gap: 14px 30px; }
@media (max-width: 700px) { .checks.two-col { grid-template-columns: 1fr; } }

.crosses { list-style: none; margin: 0; padding: 0; display: grid; gap: 14px; }
.crosses li { position: relative; padding-left: 34px; }
.crosses li::before {
  content: "\00d7"; position: absolute; left: 3px; top: -2px;
  font-size: 1.35rem; font-weight: 700; color: #C0555B; line-height: 1.35;
}

/* ---------- Stats ---------- */
.stat-row { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
@media (max-width: 880px) { .stat-row { grid-template-columns: repeat(2, 1fr); } }
.stat { padding: 4px 0; }
.stat .n {
  display: block; font-size: clamp(2rem, 4.2vw, 2.9rem); font-weight: 800;
  letter-spacing: -.04em; line-height: 1.05; color: var(--navy-deep);
  margin-bottom: 6px;
}
.bg-navy .stat .n, .bg-ink .stat .n {
  background: var(--grad); -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
}
.stat .l { font-size: .875rem; line-height: 1.45; color: var(--muted); }
.bg-navy .stat .l, .bg-ink .stat .l { color: rgba(255,255,255,.66); }

/* ---------- Before / After table ---------- */
.ba-table { width: 100%; border-collapse: collapse; font-size: .96rem; }
.ba-table th, .ba-table td { padding: 15px 16px; text-align: left; }
.ba-table thead th {
  font-size: .72rem; letter-spacing: .1em; text-transform: uppercase;
  color: var(--muted); font-weight: 800; border-bottom: 1px solid var(--line);
}
.ba-table tbody tr + tr { border-top: 1px solid var(--line-soft); }
.ba-table td:first-child { color: var(--muted); }
.ba-table td:last-child { color: var(--navy-deep); font-weight: 750; }
.bg-navy .ba-table thead th { color: rgba(255,255,255,.55); border-color: rgba(255,255,255,.16); }
.bg-navy .ba-table tbody tr + tr { border-color: rgba(255,255,255,.10); }
.bg-navy .ba-table td:first-child { color: rgba(255,255,255,.58); }
.bg-navy .ba-table td:last-child { color: var(--lime); }

.table-scroll { overflow-x: auto; -webkit-overflow-scrolling: touch; max-width: 100%; }
.table-scroll table { min-width: 520px; }

/* Grid/flex children default to min-width:auto, which lets wide content
   (tables, long words, embeds) blow out the track. Reset it everywhere. */
.grid > *, .split > *, .hero-grid > *, .versus > *,
.pillar > *, .tl-item > *, .footer-grid > *, .stat-row > *,
.guarantee > *, .checks li, .vs-list li { min-width: 0; }

/* ---------- Timeline ---------- */
.timeline { display: grid; gap: 0; position: relative; }
.tl-item {
  display: grid; grid-template-columns: 152px 1fr; gap: clamp(18px, 3vw, 36px);
  padding: 26px 0; border-top: 1px solid var(--line); position: relative;
}
.tl-item:last-child { border-bottom: 1px solid var(--line); }
.tl-when {
  font-size: .75rem; font-weight: 800; letter-spacing: .09em; text-transform: uppercase;
  color: var(--teal); padding-top: 4px;
}
.tl-item h3 { font-size: 1.14rem; margin-bottom: .4em; }
@media (max-width: 700px) {
  .tl-item { grid-template-columns: 1fr; gap: 8px; }
}

/* ---------- Quote ---------- */
.quote {
  border-left: 3px solid transparent;
  border-image: var(--grad) 1;
  padding: 4px 0 4px 26px;
  font-size: clamp(1.12rem, 2vw, 1.42rem);
  line-height: 1.5; font-weight: 650; color: var(--navy-deep);
  letter-spacing: -.015em;
}
.bg-navy .quote, .bg-ink .quote { color: #fff; }
.quote-by { margin-top: 16px; font-size: .875rem; font-weight: 700; color: var(--muted); }
.bg-navy .quote-by, .bg-ink .quote-by { color: rgba(255,255,255,.6); }

/* ---------- Callout / disclosure ---------- */
.callout {
  border-radius: var(--radius); padding: clamp(26px, 3.5vw, 38px);
  background: var(--bg-alt); border: 1px solid var(--line);
}
.callout.accent {
  background: linear-gradient(135deg, rgba(0,144,197,.07), rgba(98,170,26,.07));
  border-color: rgba(0,120,116,.22);
}
.callout.plain-white { background: #fff; }
.bg-navy .callout, .bg-ink .callout {
  background: rgba(255,255,255,.05); border-color: rgba(255,255,255,.14);
}
.callout h3 { margin-bottom: .5em; }

.rule-top { border-top: 3px solid transparent; border-image: var(--grad) 1; }

/* ---------- Guarantee ---------- */
.guarantee {
  display: grid; grid-template-columns: auto 1fr; gap: clamp(22px, 3vw, 36px);
  align-items: center;
  border-radius: var(--radius);
  padding: clamp(28px, 4vw, 44px);
  background: linear-gradient(135deg, rgba(0,144,197,.08), rgba(202,233,41,.10));
  border: 1px solid rgba(0,120,116,.2);
}
.guarantee-seal {
  width: 96px; height: 96px; border-radius: 50%; flex: none;
  display: grid; place-items: center;
  background: var(--grad-cta); color: var(--navy-deep);
  box-shadow: 0 8px 26px rgba(98,170,26,.3);
}
@media (max-width: 640px) {
  .guarantee { grid-template-columns: 1fr; text-align: left; }
}

/* ---------- FAQ ---------- */
.faq { border-top: 1px solid var(--line); }
.faq details { border-bottom: 1px solid var(--line); }
.faq summary {
  list-style: none; cursor: pointer;
  padding: 24px 46px 24px 0; position: relative;
  font-size: clamp(1.02rem, 1.7vw, 1.12rem); font-weight: 750;
  color: var(--navy-deep); letter-spacing: -.015em; line-height: 1.4;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: ""; position: absolute; right: 8px; top: 31px;
  width: 11px; height: 11px;
  border-right: 2.4px solid var(--teal); border-bottom: 2.4px solid var(--teal);
  transform: rotate(45deg); transition: transform .22s ease;
}
.faq details[open] summary::after { transform: rotate(-135deg); top: 34px; }
.faq summary:hover { color: var(--navy); }
.faq .faq-body { padding: 0 40px 26px 0; }
.faq .faq-body p:last-child { margin-bottom: 0; }

/* ---------- CTA band ---------- */
.cta-band {
  position: relative; overflow: hidden;
  background: var(--navy-deep);
}
.cta-band::before {
  content: ""; position: absolute; inset: 0;
  background:
    radial-gradient(760px 400px at 82% 0%, rgba(0,144,197,.30), transparent 62%),
    radial-gradient(620px 360px at 12% 100%, rgba(98,170,26,.26), transparent 62%);
  pointer-events: none;
}
.cta-band .wrap, .cta-band .wrap-narrow { position: relative; }
.cta-band h2, .cta-band h3 { color: #fff; }

/* .cta-band is a dark surface, so it needs the same treatment .bg-navy/.bg-ink
   get. Without these, teal eyebrows and muted-grey notes sit on navy at
   unreadable contrast. */
.cta-band .eyebrow  { color: var(--lime); }
.cta-band .cta-note { color: rgba(255,255,255,.66); }
.cta-band .micro    { color: rgba(255,255,255,.58); }
.cta-band .hl       { color: var(--lime); }

/* ---------- Embeds (GHL) ---------- */
.embed-card {
  background: #fff; border: 1px solid var(--line);
  border-radius: 20px; padding: clamp(14px, 2.5vw, 26px);
  box-shadow: var(--shadow-lg);
}
/* GHL's form_embed.js sets an explicit inline height once loaded, and it does
   so reliably for surveys, forms and calendars. min-height here is ONLY to stop
   a zero-height flash before that script runs — keep it low, or it becomes a
   floor that leaves dead space under short survey steps. */
.embed-card iframe { display: block; width: 100%; border: 0; min-height: 180px; }
.embed-note {
  display: flex; align-items: flex-start; gap: 10px;
  margin-top: 18px; padding-top: 18px; border-top: 1px solid var(--line-soft);
  font-size: .8rem; color: var(--muted); line-height: 1.5;
}
.embed-note svg { flex: none; margin-top: 2px; color: var(--teal); }

/* ---------- Steps (progress) ---------- */
.steps { display: flex; align-items: center; justify-content: center; gap: 0; flex-wrap: wrap; margin-bottom: 40px; }
.step { display: flex; align-items: center; gap: 11px; font-size: .845rem; font-weight: 750; color: var(--muted); }
.step .n {
  width: 30px; height: 30px; border-radius: 50%; flex: none;
  display: grid; place-items: center; font-size: .82rem; font-weight: 800;
  background: var(--line-soft); color: var(--muted);
}
.step.done .n { background: var(--grad-cta); color: var(--navy-deep); }
.step.done { color: var(--navy-deep); }
.step.now .n { background: var(--navy); color: #fff; }
.step.now { color: var(--navy-deep); }
.step-line { width: clamp(24px, 6vw, 62px); height: 2px; background: var(--line); margin: 0 12px; }
@media (max-width: 620px) { .step span.lbl { display: none; } .step-line { margin: 0 8px; } }

/* ---------- Article / prose ---------- */
.prose { font-size: 1.06rem; }
.prose h2 { margin-top: 2em; font-size: clamp(1.5rem, 3vw, 2rem); }
.prose h3 { margin-top: 1.7em; font-size: clamp(1.15rem, 2vw, 1.35rem); }
.prose ul, .prose ol { padding-left: 1.3em; margin: 0 0 1.3em; }
.prose li { margin-bottom: .6em; }
.prose > *:first-child { margin-top: 0; }
.prose blockquote {
  margin: 1.8em 0; padding: 4px 0 4px 24px;
  border-left: 3px solid transparent; border-image: var(--grad) 1;
  font-size: 1.12rem; font-weight: 650; color: var(--navy-deep);
}
.article-meta {
  display: flex; flex-wrap: wrap; gap: 8px 18px; align-items: center;
  font-size: .84rem; color: var(--muted);
  padding-bottom: 26px; margin-bottom: 34px; border-bottom: 1px solid var(--line);
}

.toc {
  background: var(--bg-alt); border: 1px solid var(--line);
  border-radius: var(--radius); padding: 24px 28px; margin-bottom: 42px;
}
.toc h4 { font-size: .74rem; letter-spacing: .1em; text-transform: uppercase; color: var(--muted); margin-bottom: 14px; }
.toc ol { margin: 0; padding-left: 1.2em; display: grid; gap: 8px; font-size: .95rem; }

/* ---------- Footer ---------- */
.site-footer { background: var(--navy-ink); color: rgba(255,255,255,.62); padding: clamp(52px, 7vw, 76px) 0 34px; }
.site-footer a { color: rgba(255,255,255,.72); text-decoration: none; }
.site-footer a:hover { color: #fff; text-decoration: underline; }
.footer-grid {
  display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 36px; padding-bottom: 40px;
}
@media (max-width: 880px) { .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; } }
@media (max-width: 520px) { .footer-grid { grid-template-columns: 1fr; } }

.footer-brand { display: inline-flex; align-items: center; gap: 12px; margin-bottom: 18px; text-decoration: none; }
.footer-brand img { width: 42px; }
.footer-word { font-size: 1.3rem; font-weight: 800; letter-spacing: -.03em; color: #fff; }
.footer-word em { font-style: normal; color: var(--lime); }

.footer-grid h4 {
  color: #fff; font-size: .74rem; letter-spacing: .1em;
  text-transform: uppercase; margin-bottom: 16px;
}
.footer-list { list-style: none; margin: 0; padding: 0; display: grid; gap: 11px; font-size: .93rem; }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.12); padding-top: 26px;
  display: flex; flex-wrap: wrap; gap: 14px 26px; justify-content: space-between;
  font-size: .805rem; color: rgba(255,255,255,.45);
}
.footer-bottom nav { display: flex; flex-wrap: wrap; gap: 20px; }
.disclaimer {
  font-size: .755rem; line-height: 1.6; color: rgba(255,255,255,.38);
  max-width: 78ch; margin-top: 18px;
}

/* ---------- Sticky mobile CTA ---------- */
.sticky-cta {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 90;
  padding: 12px var(--gut) calc(12px + env(safe-area-inset-bottom));
  background: rgba(255,255,255,.96);
  backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
  border-top: 1px solid var(--line);
  display: none;
  transform: translateY(110%); transition: transform .28s ease;
}
.sticky-cta.show { transform: translateY(0); }
@media (max-width: 780px) { .sticky-cta { display: block; } body { padding-bottom: 4px; } }

/* ---------- Reveal ---------- */
.reveal { opacity: 0; transform: translateY(18px); transition: opacity .6s ease, transform .6s ease; }
.reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  .btn:hover, .card-hover:hover { transform: none; }
}

/* ---------- Utilities ---------- */
.mt-0 { margin-top: 0; } .mt-1 { margin-top: 12px; } .mt-2 { margin-top: 24px; }
.mt-3 { margin-top: 36px; } .mt-4 { margin-top: 48px; }
.mb-0 { margin-bottom: 0; } .mb-2 { margin-bottom: 24px; } .mb-3 { margin-bottom: 36px; }
.visually-hidden {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}
