/* ============================================================
   Near Me Personal Trainer — Clinical Authority Design System
   styles.css · v20260522-dark
   ============================================================ */

/* ── 1. Custom Properties ──────────────────────────────────── */
:root {
  /* Colour palette — DARK THEME */
  --bg:          #0A0B0A;
  --green:       #A3E635;
  --green-dark:  #84CC16;
  --green-light: rgba(163,230,53,.12);
  --green-mid:   rgba(163,230,53,.28);
  --green-bright:#B6F23D;
  --ink:         #F4F8F2;
  --ink-60:      #AEB7AC;
  --ink-30:      rgba(174,183,172,.38);
  --ink-12:      rgba(163,230,53,.16);
  --amber:       #A3E635;
  --amber-dark:  #84CC16;
  --amber-light: rgba(163,230,53,.10);
  --white:       #F4F8F2;
  --surface:     #141714;
  --surface-alt: #1B1F1A;
  --line:        rgba(163,230,53,.16);

  /* Legacy aliases — keeps existing HTML references working */
  --teal:        #A3E635;
  --teal-dark:   #84CC16;
  --teal-light:  rgba(163,230,53,.12);
  --teal-mid:    rgba(163,230,53,.28);

  /* Typography */
  --sans: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --serif: Georgia, 'Times New Roman', serif;

  /* Fluid type scale (clamp: min, preferred, max) */
  --text-xs:   clamp(.75rem,  1.2vw,  .825rem);
  --text-sm:   clamp(.875rem, 1.4vw,  .9375rem);
  --text-base: clamp(.9375rem,1.6vw,  1rem);
  --text-md:   clamp(1rem,    1.8vw,  1.125rem);
  --text-lg:   clamp(1.125rem,2vw,    1.25rem);
  --text-xl:   clamp(1.25rem, 2.4vw,  1.5rem);
  --text-2xl:  clamp(1.5rem,  2.8vw,  1.875rem);
  --text-3xl:  clamp(1.875rem,3.5vw,  2.5rem);
  --text-4xl:  clamp(2.25rem, 4.5vw,  3.25rem);
  --text-5xl:  clamp(2.75rem, 5.5vw,  4rem);

  /* Spacing */
  --space-1:  .25rem;
  --space-2:  .5rem;
  --space-3:  .75rem;
  --space-4:  1rem;
  --space-5:  1.25rem;
  --space-6:  1.5rem;
  --space-8:  2rem;
  --space-10: 2.5rem;
  --space-12: 3rem;
  --space-16: 4rem;
  --space-20: 5rem;
  --space-24: 6rem;

  /* Container + padding */
  --container: 1140px;
  --pad: clamp(1rem, 4vw, 2rem);

  /* Radius */
  --r-sm:  6px;
  --r-md:  12px;
  --r-lg:  20px;
  --r-xl:  28px;
  --r-pill: 999px;

  /* Shadows — green-tinted for dark theme */
  --shadow-sm: 0 1px 3px rgba(0,0,0,.40), 0 1px 2px rgba(0,0,0,.30);
  --shadow-md: 0 4px 16px -4px rgba(0,0,0,.55), 0 2px 6px -2px rgba(0,0,0,.35);
  --shadow-lg: 0 12px 40px -12px rgba(0,0,0,.70), 0 4px 12px -4px rgba(0,0,0,.45);

  /* Transitions */
  --ease: cubic-bezier(.4,0,.2,1);
  --dur: .2s;
}

/* ── 2. Reset ──────────────────────────────────────────────── */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  font-size: 100%;
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}
body {
  font-family: var(--sans);
  font-size: var(--text-base);
  line-height: 1.65;
  color: var(--ink-60);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img, video, svg { display: block; max-width: 100%; height: auto; }
a { color: var(--green); text-decoration: none; }
a:hover { text-decoration: underline; text-underline-offset: 3px; }
ul, ol { list-style: none; }
button { font-family: inherit; cursor: pointer; }
input, select, textarea { font-family: inherit; }
h1,h2,h3,h4,h5,h6 {
  font-family: var(--sans);
  font-weight: 700;
  letter-spacing: -.03em;
  line-height: 1.18;
  color: var(--ink);
}

/* ── 3. Typography ─────────────────────────────────────────── */
h1 { font-size: var(--text-5xl); }
h2 { font-size: var(--text-3xl); }
h3 { font-size: var(--text-xl); }
h4 { font-size: var(--text-lg); }
h5 { font-size: var(--text-md); }
h6 { font-size: var(--text-base); }

p { line-height: 1.7; color: var(--ink-60); }
p + p { margin-top: var(--space-4); }

.eyebrow {
  display: inline-block;
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: var(--space-3);
}
.lede {
  font-size: var(--text-lg);
  line-height: 1.6;
  color: var(--ink-60);
}
.serif-accent {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 400;
}

/* ── 4. Container ──────────────────────────────────────────── */
.container {
  width: 100%;
  max-width: var(--container);
  margin-left: auto;
  margin-right: auto;
  padding-left: var(--pad);
  padding-right: var(--pad);
}

/* ── 5. Skip link ──────────────────────────────────────────── */
.skip-link {
  position: absolute;
  top: -100%;
  left: var(--space-4);
  z-index: 999;
  padding: var(--space-2) var(--space-4);
  background: var(--green);
  color: #0A0B0A;
  border-radius: var(--r-md);
  font-weight: 600;
  font-size: var(--text-sm);
}
.skip-link:focus { top: var(--space-4); text-decoration: none; }

/* ── 6. Button system ──────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-2);
  padding: .75rem 1.5rem;
  border-radius: var(--r-pill);
  font-size: var(--text-sm);
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: -.01em;
  text-decoration: none;
  border: 1.5px solid transparent;
  transition: background var(--dur) var(--ease),
              color var(--dur) var(--ease),
              border-color var(--dur) var(--ease),
              transform var(--dur) var(--ease),
              box-shadow var(--dur) var(--ease);
  white-space: nowrap;
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
}
.btn:hover { transform: translateY(-1px); text-decoration: none; }
.btn:active { transform: translateY(0); }
.btn:focus-visible { outline: 3px solid var(--green); outline-offset: 3px; }

/* Primary — Green CTA (black text for high contrast) */
.btn-primary {
  background: var(--green);
  color: #0A0B0A;
  border-color: var(--green);
  box-shadow: 0 2px 8px rgba(163,230,53,.25);
}
.btn-primary:hover {
  background: var(--green-bright);
  border-color: var(--green-bright);
  box-shadow: 0 4px 16px rgba(163,230,53,.35);
  color: #0A0B0A;
}

/* Secondary — Green outlined */
.btn-secondary {
  background: transparent;
  color: var(--green);
  border-color: var(--green);
}
.btn-secondary:hover {
  background: var(--green-light);
  color: var(--green-bright);
  border-color: var(--green-bright);
}

/* Ghost — subtle */
.btn-ghost {
  background: transparent;
  color: var(--ink);
  border-color: var(--ink-30);
}
.btn-ghost:hover {
  background: var(--surface);
  border-color: var(--ink-60);
}

/* Teal solid (legacy alias — maps to green) */
.btn-teal {
  background: var(--green);
  color: #0A0B0A;
  border-color: var(--green);
}
.btn-teal:hover {
  background: var(--green-bright);
  border-color: var(--green-bright);
  color: #0A0B0A;
}

/* WhatsApp */
.btn-whatsapp {
  background: #25D366;
  color: #0A0B0A;
  border-color: #25D366;
}
.btn-whatsapp:hover {
  background: #1DAE57;
  border-color: #1DAE57;
  color: #0A0B0A;
}

/* Size modifiers */
.btn-lg { padding: 1rem 2rem; font-size: var(--text-base); }
.btn-sm { padding: .5rem 1rem; font-size: var(--text-xs); }

/* ── 7. Header & Nav ───────────────────────────────────────── */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(10,11,10,.96);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--line);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-4);
  padding-top: var(--space-3);
  padding-bottom: var(--space-3);
  padding-left: var(--pad);
  padding-right: var(--pad);
  max-width: var(--container);
  margin-left: auto;
  margin-right: auto;
}
.site-logo {
  font-size: var(--text-md);
  font-weight: 700;
  letter-spacing: -.03em;
  color: var(--ink);
  line-height: 1.1;
  text-decoration: none;
  flex-shrink: 0;
}
.site-logo:hover { text-decoration: none; color: var(--green); }
.site-logo .logo-mark {
  display: inline-block;
  width: 28px;
  height: 28px;
  background: var(--green);
  border-radius: var(--r-sm);
  vertical-align: middle;
  margin-right: var(--space-2);
  position: relative;
  top: -1px;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: var(--space-6);
}
.nav-links a {
  font-size: var(--text-sm);
  font-weight: 500;
  color: var(--ink-60);
  text-decoration: none;
  transition: color var(--dur) var(--ease);
}
.nav-links a:hover { color: var(--green); text-decoration: none; }
.nav-links a[aria-current="page"] { color: var(--green); font-weight: 600; }
.nav-cta { flex-shrink: 0; }

/* ── 8. Hero ───────────────────────────────────────────────── */
.hero {
  background: var(--bg);
  padding-top: clamp(3.5rem, 8vw, 6rem);
  padding-bottom: clamp(3rem, 6vw, 5rem);
  border-bottom: 1px solid var(--line);
}
.hero-inner {
  max-width: 860px;
}
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  background: var(--green-light);
  color: var(--green);
  border: 1px solid var(--green-mid);
  border-radius: var(--r-pill);
  padding: .35rem .9rem;
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: .10em;
  text-transform: uppercase;
  margin-bottom: var(--space-5);
}
.hero-eyebrow::before {
  content: '';
  display: inline-block;
  width: 7px;
  height: 7px;
  background: var(--green);
  border-radius: 50%;
}
.hero h1 {
  font-size: var(--text-5xl);
  font-weight: 800;
  letter-spacing: -.04em;
  line-height: 1.08;
  color: var(--ink);
  max-width: 22ch;
  margin-bottom: var(--space-6);
}
.hero h1 .accent-teal { color: var(--green); }
.hero-sub {
  font-size: var(--text-lg);
  color: var(--ink-60);
  max-width: 60ch;
  line-height: 1.6;
  margin-bottom: var(--space-8);
}
.hero-cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-3);
  margin-bottom: var(--space-8);
}

/* ── 9. Short-Answer / Citable Block ──────────────────────── */
.short-answer {
  background: var(--surface);
  border: 1.5px solid var(--green-mid);
  border-left: 4px solid var(--green);
  border-radius: var(--r-lg);
  padding: var(--space-6) var(--space-6) var(--space-5);
  max-width: 720px;
}
.short-answer-label {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: .10em;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: var(--space-3);
}
.short-answer-label::before {
  content: '';
  display: inline-block;
  width: 16px;
  height: 16px;
  background: var(--green-light);
  border: 1.5px solid var(--green-mid);
  border-radius: 4px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='none'%3E%3Cpath d='M3 8.5L6.5 12 13 5' stroke='%23A3E635' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-size: 12px;
  background-position: center;
  background-repeat: no-repeat;
}
.short-answer p {
  font-size: var(--text-md);
  line-height: 1.65;
  color: var(--ink);
  font-weight: 500;
}
.short-answer-source {
  margin-top: var(--space-3);
  font-size: var(--text-xs);
  color: var(--ink-60);
}

/* ── 10. Proof / Stat Row ──────────────────────────────────── */
.proof-row {
  background: var(--surface);
  padding: clamp(1.75rem, 3.5vw, 2.75rem) 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.proof-row-inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-6);
  align-items: center;
  padding-left: var(--pad);
  padding-right: var(--pad);
  max-width: var(--container);
  margin-left: auto;
  margin-right: auto;
}
.proof-stat {
  text-align: center;
  border-right: 1px solid rgba(163,230,53,.16);
  padding-right: var(--space-6);
}
.proof-stat:last-child { border-right: 0; padding-right: 0; }
.proof-stat-number {
  display: block;
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 800;
  letter-spacing: -.04em;
  line-height: 1;
  color: var(--green);
  margin-bottom: var(--space-2);
}
.proof-stat-label {
  display: block;
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--ink-60);
  line-height: 1.3;
}

/* ── 11. Section base ──────────────────────────────────────── */
.section {
  padding-top: clamp(3rem, 6vw, 5rem);
  padding-bottom: clamp(3rem, 6vw, 5rem);
}
.section-alt { background: var(--surface); }
.section-teal { background: var(--surface); }
.section-header {
  max-width: 680px;
  margin-bottom: clamp(2rem, 4vw, 3.5rem);
}
.section-header h2 { margin-bottom: var(--space-3); }

/* ── 12. Pillar Cards ──────────────────────────────────────── */
.pillar-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-5);
}
.pillar-card {
  background: var(--surface);
  border: 1.5px solid var(--line);
  border-radius: var(--r-xl);
  padding: var(--space-6);
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
  text-decoration: none;
  transition: transform var(--dur) var(--ease),
              box-shadow var(--dur) var(--ease),
              border-color var(--dur) var(--ease);
  position: relative;
  overflow: hidden;
}
.pillar-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--green);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .3s var(--ease);
}
.pillar-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--green-mid);
  text-decoration: none;
}
.pillar-card:hover::after { transform: scaleX(1); }
.pillar-card:focus-visible { outline: 3px solid var(--green); outline-offset: 3px; }
.pillar-icon {
  width: 48px;
  height: 48px;
  background: var(--green-light);
  border-radius: var(--r-md);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.pillar-icon svg { width: 24px; height: 24px; color: var(--green); }
.pillar-tag {
  display: inline-block;
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: .10em;
  text-transform: uppercase;
  color: var(--green);
  background: var(--green-light);
  border-radius: var(--r-pill);
  padding: .2rem .7rem;
}
.pillar-card h3 {
  font-size: var(--text-xl);
  color: var(--ink);
  letter-spacing: -.03em;
}
.pillar-card p {
  font-size: var(--text-sm);
  color: var(--ink-60);
  line-height: 1.6;
  flex-grow: 1;
}
.pillar-card-cta {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--green);
  margin-top: auto;
}
.pillar-card-cta::after {
  content: '→';
  transition: transform var(--dur) var(--ease);
}
.pillar-card:hover .pillar-card-cta::after { transform: translateX(4px); }

/* ── 13. Intent Chips ──────────────────────────────────────── */
.chip-row {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-3);
}
.chip {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  background: var(--surface);
  border: 1.5px solid var(--line);
  border-radius: var(--r-pill);
  padding: .6rem 1.1rem;
  min-height: 44px;
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--ink-60);
  text-decoration: none;
  transition: background var(--dur) var(--ease),
              border-color var(--dur) var(--ease),
              transform var(--dur) var(--ease),
              color var(--dur) var(--ease);
  white-space: nowrap;
}
.chip:hover {
  background: var(--green-light);
  border-color: var(--green);
  color: var(--green);
  transform: translateY(-1px);
  text-decoration: none;
}
.chip:focus-visible { outline: 3px solid var(--green); outline-offset: 2px; }
.chip-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--green-mid);
  flex-shrink: 0;
  transition: background var(--dur) var(--ease);
}
.chip:hover .chip-dot { background: var(--green); }

/* ── 14. Model/Conversion Section ──────────────────────────── */
.model-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}
.model-text { max-width: 520px; }
.model-text h2 { margin-bottom: var(--space-5); }
.model-text p { margin-bottom: var(--space-4); color: var(--ink-60); }
.model-text .btn-row {
  display: flex;
  gap: var(--space-3);
  flex-wrap: wrap;
  margin-top: var(--space-8);
}
.model-proof-card {
  background: var(--surface);
  border: 1.5px solid var(--line);
  border-radius: var(--r-xl);
  padding: var(--space-8);
  box-shadow: var(--shadow-md);
}
.model-stat-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-5);
  margin-bottom: var(--space-6);
}
.model-stat strong {
  display: block;
  font-size: var(--text-2xl);
  font-weight: 800;
  letter-spacing: -.04em;
  color: var(--green);
  line-height: 1;
  margin-bottom: var(--space-1);
}
.model-stat span {
  font-size: var(--text-xs);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--ink-60);
}
.model-package {
  background: var(--surface-alt);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: var(--space-5);
}
.model-package-label {
  font-size: var(--text-xs);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .10em;
  color: var(--green);
  margin-bottom: var(--space-2);
}
.model-package-name {
  font-size: var(--text-lg);
  font-weight: 700;
  color: var(--ink);
  margin-bottom: var(--space-1);
}
.model-package-price {
  font-size: var(--text-2xl);
  font-weight: 800;
  color: var(--ink);
  letter-spacing: -.04em;
}
.model-package-price small {
  font-size: var(--text-sm);
  font-weight: 500;
  color: var(--ink-60);
  letter-spacing: 0;
}
.model-package-detail {
  font-size: var(--text-xs);
  color: var(--ink-60);
  margin-top: var(--space-2);
}

/* ── 15. CTA Strip ─────────────────────────────────────────── */
.cta-strip {
  background: var(--surface);
  padding: clamp(2.5rem, 5vw, 4rem) 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.cta-strip-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-6);
  flex-wrap: wrap;
  padding-left: var(--pad);
  padding-right: var(--pad);
  max-width: var(--container);
  margin-left: auto;
  margin-right: auto;
}
.cta-strip-text h2 {
  color: var(--ink);
  font-size: var(--text-2xl);
  max-width: 34ch;
  margin-bottom: var(--space-2);
}
.cta-strip-text p {
  color: var(--ink-60);
  font-size: var(--text-base);
  max-width: 48ch;
}
.cta-strip-actions {
  display: flex;
  gap: var(--space-3);
  flex-wrap: wrap;
  flex-shrink: 0;
}

/* ── 16. FAQ Accordion ─────────────────────────────────────── */
.faq-list {
  max-width: 780px;
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}
.faq-item {
  background: var(--surface);
  border: 1.5px solid var(--line);
  border-radius: var(--r-lg);
  overflow: hidden;
  transition: box-shadow var(--dur) var(--ease), border-color var(--dur) var(--ease);
}
.faq-item:hover { border-color: var(--green-mid); }
.faq-item[open] {
  border-color: var(--green-mid);
  box-shadow: var(--shadow-sm);
}
.faq-item summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-4);
  padding: var(--space-5) var(--space-6);
  cursor: pointer;
  list-style: none;
  font-size: var(--text-md);
  font-weight: 600;
  color: var(--ink);
  letter-spacing: -.02em;
  line-height: 1.35;
  -webkit-tap-highlight-color: transparent;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary:focus-visible { outline: 3px solid var(--green); outline-offset: -3px; border-radius: var(--r-lg); }
.faq-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  background: var(--surface-alt);
  border-radius: 50%;
  flex-shrink: 0;
  color: var(--green);
  font-size: 1.2rem;
  line-height: 1;
  font-weight: 400;
  transition: background var(--dur) var(--ease), transform var(--dur) var(--ease);
}
.faq-item[open] .faq-toggle {
  background: var(--green-light);
  transform: rotate(45deg);
}
.faq-body {
  padding: 0 var(--space-6) var(--space-5);
  border-top: 1px solid var(--line);
}
.faq-body p {
  font-size: var(--text-base);
  color: var(--ink-60);
  line-height: 1.7;
  padding-top: var(--space-4);
}
.faq-body p + p { margin-top: var(--space-3); }
.faq-body strong { color: var(--ink); font-weight: 600; }
.faq-body a { color: var(--green); font-weight: 500; }
.faq-disclaimer {
  font-size: var(--text-xs);
  color: var(--ink-60);
  font-style: italic;
  margin-top: var(--space-3);
  padding-top: var(--space-3);
  border-top: 1px solid var(--line);
}

/* ── 17. Footer ────────────────────────────────────────────── */
.site-footer {
  background: var(--surface);
  color: var(--ink-60);
  border-top: 1px solid var(--line);
  padding-top: clamp(3rem, 6vw, 5rem);
  padding-bottom: clamp(2rem, 4vw, 3rem);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: clamp(2rem, 4vw, 3.5rem);
  padding-bottom: clamp(2rem, 4vw, 3rem);
  border-bottom: 1px solid rgba(163,230,53,.12);
  padding-left: var(--pad);
  padding-right: var(--pad);
  max-width: var(--container);
  margin-left: auto;
  margin-right: auto;
}
.footer-brand .site-logo {
  color: var(--ink);
  font-size: var(--text-base);
  display: inline-block;
  margin-bottom: var(--space-4);
}
.footer-brand p {
  font-size: var(--text-sm);
  color: var(--ink-60);
  line-height: 1.65;
  max-width: 28ch;
}
.footer-col h4 {
  font-size: var(--text-sm);
  font-weight: 700;
  color: var(--ink);
  letter-spacing: .05em;
  text-transform: uppercase;
  margin-bottom: var(--space-4);
}
.footer-col ul {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}
.footer-col a {
  font-size: var(--text-sm);
  color: var(--ink-60);
  text-decoration: none;
  transition: color var(--dur) var(--ease);
}
.footer-col a:hover { color: var(--green); text-decoration: none; }
.footer-bottom {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: var(--space-4);
  flex-wrap: wrap;
  padding-top: clamp(1.5rem, 3vw, 2rem);
  padding-left: var(--pad);
  padding-right: var(--pad);
  max-width: var(--container);
  margin-left: auto;
  margin-right: auto;
}
.footer-copyright {
  font-size: var(--text-xs);
  color: #7C857B;
  line-height: 1.6;
}
.footer-disclosure {
  font-size: var(--text-xs);
  color: #7C857B;
  max-width: 56ch;
  line-height: 1.6;
  text-align: right;
}

/* ── 18. Sticky CTA (mobile) ───────────────────────────────── */
.sticky-cta {
  display: none;
  position: fixed;
  bottom: var(--space-4);
  left: var(--space-4);
  right: var(--space-4);
  z-index: 40;
  background: var(--green);
  color: #0A0B0A;
  border-radius: var(--r-pill);
  padding: .9rem 1.5rem;
  text-align: center;
  font-weight: 700;
  font-size: var(--text-sm);
  text-decoration: none;
  box-shadow: 0 8px 24px rgba(163,230,53,.30);
  transition: transform .35s var(--ease), opacity .35s var(--ease);
}
.sticky-cta:hover { text-decoration: none; color: #0A0B0A; }
@media (max-width: 720px) {
  .sticky-cta { display: flex; align-items: center; justify-content: center; gap: var(--space-2); }
}

/* ── 19. WhatsApp Float ────────────────────────────────────── */
.wa-float {
  position: fixed;
  bottom: var(--space-6);
  right: var(--space-5);
  z-index: 41;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  background: #25D366;
  border-radius: 50%;
  box-shadow: 0 4px 16px rgba(37,211,102,.40);
  text-decoration: none;
  color: #fff;
  transition: transform var(--dur) var(--ease), box-shadow var(--dur) var(--ease), bottom .35s var(--ease);
}
.wa-float:hover {
  transform: scale(1.08);
  box-shadow: 0 6px 24px rgba(37,211,102,.55);
  text-decoration: none;
  color: #fff;
}
.wa-float svg { width: 28px; height: 28px; }
@media (max-width: 720px) {
  .wa-float { bottom: 5.4rem; }
}

/* ── 20. Breadcrumb ────────────────────────────────────────── */
.breadcrumb {
  padding: var(--space-3) 0;
  font-size: var(--text-xs);
  color: var(--ink-60);
}
.breadcrumb a { color: var(--ink-60); }
.breadcrumb a:hover { color: var(--green); }
.breadcrumb span { margin: 0 .4rem; opacity: .5; }

/* ── 21. Star Rating ───────────────────────────────────────── */
.star-rating {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--ink);
}
.stars {
  display: inline-flex;
  gap: 1px;
  color: var(--green);
  font-size: 1rem;
}

/* ── 22. Divider ───────────────────────────────────────────── */
.divider { height: 1px; background: var(--line); border: 0; margin: 0; }

/* ── 23. Responsive: Tablet ──────────────────────────────────*/
@media (max-width: 980px) {
  .pillar-grid { grid-template-columns: repeat(2, 1fr); }
  .model-grid { grid-template-columns: 1fr; }
  .model-proof-card { max-width: 480px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: var(--space-8); }
  .proof-row-inner { grid-template-columns: repeat(2, 1fr); }
  .proof-stat:nth-child(2) { border-right: 0; padding-right: 0; }
  .proof-stat:nth-child(3) { border-right: 1px solid rgba(163,230,53,.16); border-top: 1px solid rgba(163,230,53,.16); padding-top: var(--space-5); padding-right: var(--space-6); }
  .proof-stat:nth-child(4) { border-right: 0; border-top: 1px solid rgba(163,230,53,.16); padding-top: var(--space-5); padding-right: 0; }
  .nav-links { gap: var(--space-4); }
  .nav-links a { font-size: var(--text-xs); }
  .cta-strip-inner { flex-direction: column; align-items: flex-start; }
}

/* ── 24. Responsive: Mobile ────────────────────────────────── */
@media (max-width: 640px) {
  .pillar-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-disclosure { text-align: left; }
  .hero h1 { letter-spacing: -.035em; }
  .hero-cta-row { flex-direction: column; align-items: flex-start; }
  .hero-cta-row .btn { width: 100%; justify-content: center; }
  .chip-row { gap: var(--space-2); }
  .model-stat-row { grid-template-columns: 1fr 1fr; }
  /* Proof row: stack to 2x2 on small screens */
  .proof-row-inner { grid-template-columns: 1fr 1fr; gap: var(--space-4); }
  .proof-stat-number { font-size: clamp(1.5rem, 6vw, 2rem); }
  .proof-stat { padding-right: var(--space-3); }
  .proof-stat:nth-child(2) { padding-right: 0; }
  .proof-stat:nth-child(3) { padding-right: var(--space-3); }
  .proof-stat:nth-child(4) { padding-right: 0; }
  /* Short answer: tighter on small screens */
  .short-answer { padding: var(--space-5); }
}

/* ── 25. Reduced motion ────────────────────────────────────── */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { transition: none !important; animation: none !important; }
  html { scroll-behavior: auto; }
}

/* ── 26. Focus visible (global) ───────────────────────────── */
:focus-visible {
  outline: 3px solid var(--green);
  outline-offset: 3px;
  border-radius: var(--r-sm);
}
