/* ═══════════════════════════════════════
   TOKENS
════════════════════════════════════════ */
:root {
  --green:        #1a7a3c;
  --green-dark:   #156030;
  --green-mid:    #239b50;
  --green-light:  #e8f5ed;
  --green-xlight: #f2faf5;
  --text:         #0c1a10;
  --text-mid:     #2d4736;
  --muted:        #4a6355;
  --muted-light:  #7a9888;
  --bg:           #f9fdfb;
  --surface:      #ffffff;
  --border:       rgba(26, 122, 60, 0.12);
  --border-soft:  rgba(26, 122, 60, 0.07);
  --shadow-sm:    0 2px 8px rgba(12, 26, 16, 0.06);
  --shadow:       0 8px 32px rgba(12, 26, 16, 0.09);
  --shadow-lg:    0 20px 60px rgba(12, 26, 16, 0.13);
  --radius-sm:    10px;
  --radius:       16px;
  --radius-lg:    24px;
}

/* ═══════════════════════════════════════
   RESET & BASE
════════════════════════════════════════ */
*, *::before, *::after { box-sizing: border-box; }

html, body { margin: 0; padding: 0; }

body {
  font-family: "Manrope", "Segoe UI", system-ui, sans-serif;
  font-size: 1rem;
  line-height: 1.6;
  color: var(--text);
  background-color: var(--bg);
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 {
  font-family: "Sora", "Segoe UI", system-ui, sans-serif;
  line-height: 1.18;
  letter-spacing: -0.025em;
  margin-top: 0;
  color: var(--text);
}

h1 { font-size: clamp(2rem, 4.5vw, 3.4rem); margin-bottom: 1rem; font-weight: 800; }
h2 { font-size: clamp(1.5rem, 3vw, 2.25rem); margin-bottom: 0.75rem; font-weight: 700; }
h3 { font-size: 1.05rem; margin-bottom: 0.4rem; font-weight: 700; }

p { margin-top: 0; }
a { color: inherit; }
ul, ol { margin: 0; }

img, svg { display: block; }

/* ═══════════════════════════════════════
   ACCESSIBILITY
════════════════════════════════════════ */
.skip-link {
  position: absolute;
  left: -9999px;
  z-index: 200;
}
.skip-link:focus {
  left: 1rem;
  top: 1rem;
  background: var(--surface);
  padding: 0.6rem 1rem;
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow);
  font-weight: 600;
}

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

/* ═══════════════════════════════════════
   LAYOUT
════════════════════════════════════════ */
.container {
  width: min(1140px, 92vw);
  margin-inline: auto;
}

.section {
  padding-block: 5rem;
}

/* ═══════════════════════════════════════
   HEADER
════════════════════════════════════════ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(249, 253, 251, 0.88);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border-soft);
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 68px;
  gap: 1rem;
}

/* Brand */
.brand {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  text-decoration: none;
  flex-shrink: 0;
}

.brand-mark {
  width: 2rem;
  height: 2rem;
  border-radius: 999px;
  background: var(--green);
  display: grid;
  place-items: center;
  flex-shrink: 0;
}

.brand-text {
  font-family: "Sora", sans-serif;
  font-weight: 800;
  font-size: 1.15rem;
  color: var(--text);
  letter-spacing: -0.03em;
}

/* Nav */
#primary-nav {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.nav-list {
  display: flex;
  list-style: none;
  padding: 0;
  margin: 0;
  gap: 0.15rem;
}

.nav-list a {
  text-decoration: none;
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--text-mid);
  padding: 0.4rem 0.65rem;
  border-radius: 8px;
  transition: background 0.15s, color 0.15s;
}

.nav-list a:hover {
  background: var(--green-light);
  color: var(--green-dark);
}

.nav-cta { margin-left: 0.5rem; }

/* Mobile toggle */
.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  border-radius: 8px;
}
.nav-toggle span {
  display: block;
  height: 2px;
  width: 100%;
  background: var(--text);
  border-radius: 2px;
  transition: transform 0.2s, opacity 0.2s;
}
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ═══════════════════════════════════════
   BUTTONS
════════════════════════════════════════ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  border: none;
  border-radius: 999px;
  font-family: inherit;
  font-weight: 700;
  font-size: 0.97rem;
  text-decoration: none;
  cursor: pointer;
  min-height: 48px;
  padding: 0.3rem 1.4rem;
  transition: background 0.15s, transform 0.1s, box-shadow 0.15s;
  white-space: nowrap;
}

.btn:active { transform: scale(0.97); }

.btn-sm {
  min-height: 38px;
  font-size: 0.88rem;
  padding: 0.2rem 1rem;
}

.btn-primary {
  background: var(--green);
  color: #fff;
  box-shadow: 0 2px 12px rgba(26, 122, 60, 0.28);
}
.btn-primary:hover, .btn-primary:focus-visible {
  background: var(--green-dark);
  box-shadow: 0 4px 18px rgba(26, 122, 60, 0.35);
}

.btn-secondary {
  background: var(--green-light);
  color: var(--green-dark);
  border: 1.5px solid rgba(26, 122, 60, 0.22);
}
.btn-secondary:hover, .btn-secondary:focus-visible {
  background: #d4eedd;
  border-color: var(--green);
}

.btn-appstore {
  background: #0d0d0d;
  color: #fff;
  padding-left: 1.1rem;
  padding-right: 1.35rem;
  gap: 0.65rem;
}
.btn-appstore:hover, .btn-appstore:focus-visible {
  background: #222;
}
.btn-appstore svg {
  flex-shrink: 0;
}
.btn-appstore span {
  display: flex;
  flex-direction: column;
  text-align: left;
  line-height: 1.2;
}
.btn-appstore small {
  font-size: 0.68rem;
  font-weight: 500;
  opacity: 0.8;
}
.btn-appstore strong {
  font-size: 1rem;
  font-weight: 700;
}

.btn-appstore-light {
  background: rgba(255, 255, 255, 0.15);
  border: 1.5px solid rgba(255, 255, 255, 0.4);
  backdrop-filter: blur(6px);
}
.btn-appstore-light:hover, .btn-appstore-light:focus-visible {
  background: rgba(255, 255, 255, 0.25);
}

.btn-outline-white {
  background: transparent;
  color: #fff;
  border: 2px solid rgba(255, 255, 255, 0.55);
  min-height: 48px;
  padding: 0.3rem 1.4rem;
}
.btn-outline-white:hover, .btn-outline-white:focus-visible {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.8);
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  align-items: center;
}

/* ═══════════════════════════════════════
   EYEBROW / SECTION LABELS
════════════════════════════════════════ */
.eyebrow {
  display: inline-block;
  font-weight: 700;
  font-size: 0.76rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--green);
  margin-bottom: 0.9rem;
}
.eyebrow-light { color: rgba(255, 255, 255, 0.75); }

.section-eyebrow {
  display: inline-block;
  font-weight: 700;
  font-size: 0.76rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--green);
  background: var(--green-light);
  padding: 0.28rem 0.75rem;
  border-radius: 999px;
  margin-bottom: 1rem;
}
.section-eyebrow-alt {
  background: #e0f0e8;
  color: var(--green-dark);
}

.section-intro {
  color: var(--muted);
  max-width: 68ch;
  font-size: 1.05rem;
  margin-bottom: 2.5rem;
}

/* ═══════════════════════════════════════
   CARDS
════════════════════════════════════════ */
.card {
  background: var(--surface);
  border-radius: var(--radius);
  border: 1px solid var(--border);
  padding: 1.5rem;
  box-shadow: var(--shadow-sm);
}

.card-grid {
  display: grid;
  gap: 1.1rem;
}

.grid-3 { grid-template-columns: 1fr; }
.grid-2-3 { grid-template-columns: 1fr; }

.card-icon { position: relative; }

.card-icon-wrap {
  width: 48px;
  height: 48px;
  background: var(--green-light);
  border-radius: var(--radius-sm);
  display: grid;
  place-items: center;
  margin-bottom: 1rem;
}

.card-cta-card {
  background: var(--green-xlight);
  border-color: rgba(26, 122, 60, 0.18);
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}
.card-cta-card h3 { margin-bottom: 0; }
.card-cta-card p { color: var(--muted); flex: 1; }
.card-cta-card .btn { align-self: flex-start; margin-top: auto; }

.free-badge {
  display: inline-block;
  background: var(--green);
  color: #fff;
  font-size: 0.74rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  padding: 0.25rem 0.65rem;
  border-radius: 999px;
  align-self: flex-start;
}

/* ═══════════════════════════════════════
   HERO
════════════════════════════════════════ */
.hero {
  position: relative;
  overflow: hidden;
  padding-block: 5rem 4rem;
}

/* Pitch line decoration */
.hero-pitch {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.pitch-circle {
  position: absolute;
  right: -10%;
  top: 50%;
  transform: translateY(-50%);
  width: 520px;
  height: 520px;
  border: 2px solid rgba(26, 122, 60, 0.07);
  border-radius: 999px;
}

.pitch-line-h {
  position: absolute;
  right: calc(-10% + 260px - 1px);
  top: 0;
  bottom: 0;
  width: 2px;
  background: rgba(26, 122, 60, 0.06);
}

.pitch-arc {
  position: absolute;
  right: calc(-10% + 170px);
  bottom: -80px;
  width: 180px;
  height: 180px;
  border: 2px solid rgba(26, 122, 60, 0.07);
  border-radius: 999px;
}

.hero-grid {
  display: grid;
  gap: 2.5rem;
  align-items: center;
  position: relative;
}

.hero-content { max-width: 600px; }

.hero-subtitle {
  font-size: 1.1rem;
  color: var(--muted);
  max-width: 54ch;
  margin-bottom: 1.75rem;
}

.trust-chips {
  list-style: none;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1.5rem;
}

.trust-chips li {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.86rem;
  font-weight: 600;
  color: var(--text-mid);
  background: var(--surface);
  border: 1px solid var(--border);
  padding: 0.32rem 0.7rem;
  border-radius: 999px;
  box-shadow: var(--shadow-sm);
}

/* App mockup */
.hero-visual {
  display: flex;
  justify-content: center;
}

.app-mockup {
  background: var(--surface);
  border-radius: 28px;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border);
  width: 100%;
  max-width: 320px;
  overflow: hidden;
}

.mockup-bar {
  background: var(--green);
  height: 48px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding-bottom: 8px;
}

.mockup-notch {
  width: 72px;
  height: 6px;
  background: rgba(255,255,255,0.3);
  border-radius: 999px;
}

.mockup-body {
  padding: 1.1rem;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.mockup-section-label {
  font-family: "Sora", sans-serif;
  font-weight: 700;
  font-size: 1rem;
  color: var(--text);
}

.mockup-search-row {
  display: flex;
  gap: 0.5rem;
}

.mockup-chip {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.78rem;
  font-weight: 600;
  background: var(--green-xlight);
  border: 1px solid var(--border);
  color: var(--green-dark);
  padding: 0.28rem 0.6rem;
  border-radius: 999px;
}

.chip-dot {
  width: 7px;
  height: 7px;
  border-radius: 999px;
  flex-shrink: 0;
}
.chip-dot-location { background: #e85555; }
.chip-dot-sport    { background: var(--green); }

.mockup-results-label {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--muted-light);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.mockup-coach-card {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  padding: 0.65rem 0.75rem;
  background: var(--green-xlight);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-sm);
}

.mockup-coach-card-dim {
  opacity: 0.55;
}

.mc-avatar {
  width: 38px;
  height: 38px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  font-size: 0.7rem;
  font-weight: 800;
  color: #fff;
  flex-shrink: 0;
}
.mc-avatar-green { background: var(--green); }
.mc-avatar-teal  { background: #0e7a6e; }
.mc-avatar-olive { background: #5a7a3c; }

.mc-info {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 1px;
}
.mc-name   { font-size: 0.82rem; font-weight: 700; color: var(--text); }
.mc-detail { font-size: 0.72rem; color: var(--muted); }

.mc-badge {
  font-size: 0.65rem;
  font-weight: 700;
  color: var(--green-dark);
  background: rgba(26, 122, 60, 0.12);
  padding: 0.1rem 0.4rem;
  border-radius: 4px;
  align-self: flex-start;
}

.mc-stars {
  font-size: 0.7rem;
  color: #f0a500;
  flex-shrink: 0;
  letter-spacing: -0.05em;
}
.mc-stars-dim { color: #ccc; }

.mockup-cta-btn {
  text-align: center;
  background: var(--green);
  color: #fff;
  font-size: 0.82rem;
  font-weight: 700;
  padding: 0.6rem;
  border-radius: 10px;
  margin-top: 0.2rem;
}

/* ═══════════════════════════════════════
   COACHES SECTION
════════════════════════════════════════ */
.coaches-section {
  background: var(--surface);
  border-top: 1px solid var(--border-soft);
  border-bottom: 1px solid var(--border-soft);
}

/* ═══════════════════════════════════════
   PARENTS SECTION
════════════════════════════════════════ */
.parents-section { background: var(--bg); }

.parents-grid {
  display: grid;
  gap: 2rem;
}

.parents-steps {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.step {
  display: flex;
  gap: 1.1rem;
  align-items: flex-start;
}

.step-num {
  width: 36px;
  height: 36px;
  border-radius: 999px;
  background: var(--green);
  color: #fff;
  font-weight: 800;
  font-size: 0.88rem;
  display: grid;
  place-items: center;
  flex-shrink: 0;
  margin-top: 0.1rem;
}

.step-body h3 { margin-bottom: 0.25rem; }
.step-body p  { color: var(--muted); margin: 0; font-size: 0.97rem; }

.highlight-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: var(--shadow);
  height: 100%;
}

.highlight-icon {
  width: 60px;
  height: 60px;
  background: var(--green-light);
  border-radius: var(--radius);
  display: grid;
  place-items: center;
  margin-bottom: 1.1rem;
}

.highlight-card h3 { margin-bottom: 0.6rem; }
.highlight-card p  { color: var(--muted); margin-bottom: 1.25rem; }

.highlight-list {
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
  margin-bottom: 1.5rem;
}

.highlight-list li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--text-mid);
}

/* ═══════════════════════════════════════
   DIFFERENTIATION SECTION
════════════════════════════════════════ */
.diff-section {
  background: var(--surface);
  border-top: 1px solid var(--border-soft);
  border-bottom: 1px solid var(--border-soft);
}

.diff-grid {
  display: grid;
  gap: 0;
  grid-template-columns: 1fr auto 1fr;
  align-items: start;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.diff-col { padding: 1.75rem; }

.diff-col-other { background: #fafafa; border-right: 1px solid var(--border); }
.diff-col-coachii { background: var(--green-xlight); }

.diff-col-header { margin-bottom: 1.1rem; }

.diff-badge {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 700;
  padding: 0.3rem 0.85rem;
  border-radius: 999px;
}

.diff-badge-other   { background: #eee; color: #555; }
.diff-badge-coachii { background: var(--green); color: #fff; }

.diff-list {
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
}

.diff-list li {
  font-size: 0.93rem;
  color: var(--muted);
  padding-left: 0.1rem;
}

.diff-list-active li {
  display: flex;
  align-items: flex-start;
  gap: 0.55rem;
  color: var(--text-mid);
  font-weight: 600;
}
.diff-list-active svg { flex-shrink: 0; margin-top: 2px; }

.diff-vs {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  font-weight: 800;
  font-size: 0.9rem;
  color: var(--muted-light);
  background: #f5f5f5;
  border-right: 1px solid var(--border);
  writing-mode: vertical-lr;
  letter-spacing: 0.1em;
}

/* ═══════════════════════════════════════
   HOW IT WORKS
════════════════════════════════════════ */
.hiw-section { background: var(--bg); }

.hiw-steps {
  display: grid;
  gap: 1rem;
  align-items: start;
}

.hiw-step {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.75rem;
  box-shadow: var(--shadow-sm);
  position: relative;
}

.hiw-number {
  font-family: "Sora", sans-serif;
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--green-light);
  line-height: 1;
  margin-bottom: 0.75rem;
  letter-spacing: -0.04em;
}

.hiw-icon {
  width: 52px;
  height: 52px;
  background: var(--green-light);
  border-radius: var(--radius-sm);
  display: grid;
  place-items: center;
  margin-bottom: 1rem;
}

.hiw-step h3 { margin-bottom: 0.45rem; }
.hiw-step p  { color: var(--muted); margin: 0; font-size: 0.97rem; }

.hiw-connector { display: none; }

/* ═══════════════════════════════════════
   TRUST SECTION
════════════════════════════════════════ */
.trust-section {
  background: var(--surface);
  border-top: 1px solid var(--border-soft);
  border-bottom: 1px solid var(--border-soft);
}

.trust-card {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.trust-icon {
  width: 52px;
  height: 52px;
  background: var(--green-light);
  border-radius: var(--radius-sm);
  display: grid;
  place-items: center;
  margin-bottom: 0.5rem;
}

.trust-card h3 { margin-bottom: 0.25rem; }
.trust-card p  { color: var(--muted); font-size: 0.95rem; margin: 0; }

.trust-note {
  margin-top: 2rem;
  padding: 1rem 1.25rem;
  background: #fffbf0;
  border: 1px solid #f0d070;
  border-radius: var(--radius-sm);
  font-size: 0.86rem;
  color: #6b5700;
  max-width: 72ch;
}

/* ═══════════════════════════════════════
   SEO SECTION
════════════════════════════════════════ */
.seo-section { background: var(--bg); }

.seo-content {
  display: grid;
  gap: 2.5rem;
}

.seo-text p {
  color: var(--muted);
  font-size: 0.97rem;
  line-height: 1.75;
  margin-bottom: 1rem;
}
.seo-text strong { color: var(--text-mid); }
.seo-text em     { font-style: italic; }

.sports-tags-wrap h3 { margin-bottom: 0.85rem; }

.tag-list {
  list-style: none;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.tag-list li {
  background: var(--green-light);
  color: var(--green-dark);
  font-weight: 700;
  font-size: 0.85rem;
  padding: 0.38rem 0.8rem;
  border-radius: 999px;
  border: 1px solid rgba(26, 122, 60, 0.18);
}

.tag-note {
  margin-top: 0.85rem;
  font-size: 0.84rem;
  color: var(--muted-light);
  font-style: italic;
}

/* ═══════════════════════════════════════
   FEATURES SECTION
════════════════════════════════════════ */
.features-section {
  background: var(--surface);
  border-top: 1px solid var(--border-soft);
  border-bottom: 1px solid var(--border-soft);
}

.feature-card {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.feature-icon {
  width: 44px;
  height: 44px;
  background: var(--green-light);
  border-radius: var(--radius-sm);
  display: grid;
  place-items: center;
  margin-bottom: 0.5rem;
}

.feature-card h3 { margin-bottom: 0.2rem; }
.feature-card p  { color: var(--muted); font-size: 0.93rem; margin: 0; }

/* ═══════════════════════════════════════
   FAQ
════════════════════════════════════════ */
.faq-section { background: var(--bg); }

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  max-width: 780px;
}

details {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 1rem 1.1rem;
  transition: box-shadow 0.15s;
}

details[open] { box-shadow: var(--shadow-sm); }

summary {
  font-family: "Manrope", sans-serif;
  font-weight: 700;
  font-size: 0.97rem;
  cursor: pointer;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  color: var(--text);
}

summary::-webkit-details-marker { display: none; }

summary::after {
  content: "+";
  font-size: 1.3rem;
  font-weight: 400;
  color: var(--green);
  flex-shrink: 0;
  transition: transform 0.2s;
}

details[open] summary::after {
  transform: rotate(45deg);
}

summary + p {
  margin-top: 0.65rem;
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.65;
  margin-bottom: 0;
}

/* ═══════════════════════════════════════
   FINAL CTA
════════════════════════════════════════ */
.final-cta-section { padding-block: 3rem 4rem; }

.final-cta-card {
  background: var(--green);
  border-radius: var(--radius-lg);
  padding: 3.5rem 2.5rem;
  position: relative;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(26, 122, 60, 0.35);
}

.final-deco {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.final-deco-circle {
  position: absolute;
  right: -8%;
  top: 50%;
  transform: translateY(-50%);
  width: 480px;
  height: 480px;
  border: 2px solid rgba(255,255,255,0.08);
  border-radius: 999px;
}

.final-deco-arc {
  position: absolute;
  right: calc(-8% + 240px - 80px);
  bottom: -80px;
  width: 160px;
  height: 160px;
  border: 2px solid rgba(255,255,255,0.07);
  border-radius: 999px;
}

.final-cta-content {
  position: relative;
  max-width: 600px;
}

.final-cta-content h2 {
  color: #fff;
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  margin-bottom: 0.75rem;
}

.final-cta-content p {
  color: rgba(255,255,255,0.78);
  font-size: 1.05rem;
  margin-bottom: 1.75rem;
}

.final-cta-row { gap: 0.85rem; }

/* ═══════════════════════════════════════
   FOOTER
════════════════════════════════════════ */
.site-footer {
  background: var(--surface);
  border-top: 1px solid var(--border-soft);
  padding-top: 3rem;
  padding-bottom: 2rem;
}

.footer-inner {
  display: grid;
  gap: 2.5rem;
  margin-bottom: 2rem;
}

.footer-brand { max-width: 340px; }

.footer-brand .brand { margin-bottom: 0.85rem; }

.footer-desc {
  font-size: 0.9rem;
  color: var(--muted);
  line-height: 1.6;
  margin-bottom: 0.5rem;
}

.footer-made {
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--green);
  text-transform: uppercase;
  letter-spacing: 0.07em;
  margin: 0;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
}

.footer-nav {
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
}

.footer-nav a {
  text-decoration: none;
  font-size: 0.9rem;
  color: var(--muted);
  font-weight: 500;
  transition: color 0.15s;
}
.footer-nav a:hover { color: var(--green); }

.footer-legal a { font-size: 0.85rem; }

.footer-bottom {
  border-top: 1px solid var(--border-soft);
  padding-top: 1.25rem;
}

.footer-bottom p {
  font-size: 0.84rem;
  color: var(--muted-light);
  margin: 0;
}

/* ═══════════════════════════════════════
   TABLET: 680px+
════════════════════════════════════════ */
@media (min-width: 680px) {
  .grid-3     { grid-template-columns: repeat(2, 1fr); }
  .grid-2-3   { grid-template-columns: repeat(2, 1fr); }
  .seo-content { grid-template-columns: 1.4fr 1fr; }
  .parents-grid { grid-template-columns: 1fr 1fr; }
  .footer-inner { grid-template-columns: 1fr 1fr; }

  .hiw-steps {
    grid-template-columns: 1fr auto 1fr auto 1fr;
    align-items: stretch;
  }
  .hiw-connector {
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 4.5rem;
    color: var(--border);
  }
  .hiw-connector::after {
    content: "";
    display: block;
    width: 32px;
    height: 2px;
    background: var(--border);
    border-radius: 2px;
  }
}

/* ═══════════════════════════════════════
   DESKTOP: 960px+
════════════════════════════════════════ */
@media (min-width: 960px) {
  .hero-grid {
    grid-template-columns: 1.15fr 0.85fr;
    gap: 3rem;
  }

  .grid-3   { grid-template-columns: repeat(3, 1fr); }
  .grid-2-3 { grid-template-columns: repeat(3, 1fr); }

  .hiw-steps {
    grid-template-columns: 1fr auto 1fr auto 1fr;
  }

  .nav-toggle { display: none; }
}

/* ═══════════════════════════════════════
   MOBILE NAV
════════════════════════════════════════ */
@media (max-width: 959px) {
  .nav-toggle { display: flex; }

  #primary-nav {
    display: none;
    position: absolute;
    top: 68px;
    left: 0;
    right: 0;
    background: var(--surface);
    border-bottom: 1px solid var(--border-soft);
    box-shadow: var(--shadow);
    flex-direction: column;
    align-items: stretch;
    padding: 1rem;
    gap: 0.3rem;
    z-index: 99;
  }

  #primary-nav.nav-open { display: flex; }

  .nav-list {
    flex-direction: column;
    gap: 0.15rem;
  }

  .nav-list a {
    display: block;
    padding: 0.6rem 0.75rem;
    font-size: 0.95rem;
  }

  .nav-cta {
    margin: 0.4rem 0 0;
    text-align: center;
    border-radius: var(--radius-sm);
  }
}

/* ═══════════════════════════════════════
   DIFF GRID MOBILE
════════════════════════════════════════ */
@media (max-width: 679px) {
  .diff-grid {
    grid-template-columns: 1fr;
  }
  .diff-col-other {
    border-right: none;
    border-bottom: 1px solid var(--border);
  }
  .diff-vs {
    writing-mode: horizontal-tb;
    height: 40px;
    width: 100%;
    border-right: none;
    border-bottom: 1px solid var(--border);
  }
}

/* ═══════════════════════════════════════
   FINAL CTA RESPONSIVE
════════════════════════════════════════ */
@media (max-width: 560px) {
  .final-cta-card { padding: 2.25rem 1.5rem; }
  .final-cta-row  { flex-direction: column; }
  .final-cta-row .btn { width: 100%; justify-content: center; }
}

/* ═══════════════════════════════════════
   HERO VISUAL RESPONSIVE
════════════════════════════════════════ */
@media (max-width: 959px) {
  .hero-visual { display: none; }
  .pitch-circle,
  .pitch-line-h,
  .pitch-arc   { opacity: 0.4; }
}

@media (min-width: 960px) {
  .hero-visual { display: flex; }
}

/* ═══════════════════════════════════════
   PRINT
════════════════════════════════════════ */
@media print {
  .site-header,
  .nav-toggle,
  .hero-visual,
  .hero-pitch,
  .final-deco { display: none; }
}
