/* ============================================================
   Re-X — robuildings.com — Shared Stylesheet
   ============================================================ */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --green-dark: #1a3a2a;
  --green-mid: #1D9E75;
  --green-light: #e8f5ef;
  --green-pale: #f2f8f5;
  --green:     #1e3829;
  --accent:    #c8832a;
  --cream:     #edeae2;
  --cream-dark:#e4e0d7;
  --white:     #ffffff;
  --page-bg:   #faf9f6;
  --ink:       #1a1a18;
  --ink-mid:   #3d3d39;
  --ink-muted: #6b6b65;
  --ink-faint: #43433e;
  --border:    rgba(26,26,24,0.1);
  --serif:     'Playfair Display', Georgia, serif;
  --sans:      'DM Sans', system-ui, sans-serif;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--sans);
  background: var(--page-bg);
  color: var(--ink);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* ============================================================
   NAV
   ============================================================ */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(250,249,246,0.97);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  padding: 0 2.5rem;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  font-family: var(--sans);
  font-size: 18px;
  font-weight: 500;
  color: var(--ink);
  text-decoration: none;
  letter-spacing: -0.3px;
  flex-shrink: 0;
}
.logo span { color: var(--green-mid); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
  list-style: none;
}
.nav-links a {
  font-size: 13px;
  color: var(--ink-muted);
  text-decoration: none;
  transition: color .15s;
}
.nav-links a:hover { color: var(--ink); }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  z-index: 200;
}
.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--ink);
  border-radius: 2px;
  transition: all .25s;
}
.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ============================================================
   BUTTONS
   ============================================================ */
.btn-primary {
  background: var(--green-dark);
  color: white;
  border: none;
  border-radius: 6px;
  padding: 10px 20px;
  font-size: 13px;
  font-weight: 500;
  font-family: var(--sans);
  cursor: pointer;
  text-decoration: none;
  transition: background .15s, transform .1s;
  display: inline-block;
}
.btn-primary:hover { background: #0f2218; transform: translateY(-1px); }

.btn-nav {
  background: var(--green-dark);
  color: white !important;
  border: none;
  border-radius: 6px;
  padding: 9px 20px;
  font-size: 13px;
  font-weight: 500;
  font-family: var(--sans);
  cursor: pointer;
  text-decoration: none;
  transition: background .15s;
  display: inline-block;
}
.btn-nav:hover { background: #0f2218; }

.btn-outline {
  background: transparent;
  color: var(--green-mid);
  border: 1.5px solid var(--green-mid);
  border-radius: 6px;
  padding: 13px 28px;
  font-size: 15px;
  font-weight: 500;
  font-family: var(--sans);
  cursor: pointer;
  text-decoration: none;
  transition: all .15s;
  display: inline-block;
}
.btn-outline:hover { background: var(--green-mid); color: white; }

.btn-large {
  background: var(--green-mid);
  color: white;
  border: none;
  border-radius: 6px;
  padding: 15px 32px;
  font-size: 15px;
  font-weight: 500;
  font-family: var(--sans);
  cursor: pointer;
  text-decoration: none;
  transition: background .15s, transform .1s;
  display: inline-block;
}
.btn-large:hover { background: #0F6E56; transform: translateY(-1px); }

.btn-white {
  background: white;
  color: var(--green-dark);
  border: none;
  border-radius: 6px;
  padding: 15px 28px;
  font-size: 14px;
  font-weight: 500;
  font-family: var(--sans);
  cursor: pointer;
  white-space: nowrap;
  text-decoration: none;
  transition: transform .1s;
  display: inline-block;
}
.btn-white:hover { transform: translateY(-1px); }

.btn-cta {
  background: var(--green-dark);
  color: white;
  border: none;
  border-radius: 6px;
  padding: 13px 28px;
  font-size: 14px;
  font-weight: 500;
  font-family: var(--sans);
  cursor: pointer;
  text-decoration: none;
  transition: opacity .15s;
  display: inline-block;
}
.btn-cta:hover { opacity: 0.88; }

.btn-ghost {
  background: transparent;
  color: var(--ink-mid);
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 12px 24px;
  font-size: 14px;
  font-weight: 400;
  font-family: var(--sans);
  cursor: pointer;
  text-decoration: none;
  transition: border-color .15s;
  display: inline-block;
}
.btn-ghost:hover { border-color: var(--ink-mid); }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  background: var(--green-dark);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: center;
  text-align: center;
  padding: 0 2.5rem 5rem;
  position: relative;
  overflow: hidden;
  padding-top: 64px;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 50% at 80% 30%, rgba(29,158,117,0.12) 0%, transparent 60%),
    radial-gradient(ellipse 40% 40% at 20% 70%, rgba(29,158,117,0.07) 0%, transparent 50%);
}

.hero-label {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 2.5px;
  color: rgba(255,255,255,0.45);
  margin-bottom: 1.5rem;
  position: relative;
}

.hero h1 {
  font-family: var(--serif);
  font-size: clamp(38px, 6vw, 80px);
  font-weight: 400;
  font-style: italic;
  line-height: 1.05;
  color: white;
  max-width: 900px;
  position: relative;
  margin: 0 auto 2rem;
}

.hero h1 em {
  font-style: normal;
  color: rgba(255,255,255,0.45);
}

.hero-sub {
  font-size: 16px;
  color: rgba(255,255,255,0.6);
  max-width: 480px;
  line-height: 1.7;
  position: relative;
  margin: 0 auto 3rem;
}

.hero-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: rgba(255,255,255,0.1);
  border-radius: 10px;
  overflow: hidden;
  max-width: 900px;
  width: 100%;
  position: relative;
  margin: 0 auto;
  text-align: left;
}

.hero-card {
  background: rgba(255,255,255,0.04);
  padding: 1.5rem;
  cursor: pointer;
  transition: background .2s;
  text-decoration: none;
  display: block;
}
.hero-card:hover { background: rgba(255,255,255,0.08); }

.hero-card-label {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 2px;
  color: var(--green-mid);
  margin-bottom: 10px;
}

.hero-card h3 {
  font-size: 15px;
  font-weight: 500;
  color: white;
  margin-bottom: 8px;
  line-height: 1.3;
}

.hero-card p {
  font-size: 13px;
  color: rgba(255,255,255,0.5);
  line-height: 1.6;
  margin-bottom: 1rem;
}

.hero-card-cta {
  font-size: 13px;
  color: var(--green-mid);
  font-weight: 500;
}

/* ============================================================
   STAT BAR
   ============================================================ */
.stat-bar {
  background: var(--cream);
  border-bottom: 1px solid var(--border);
  padding: 2rem 2.5rem;
  display: flex;
  justify-content: center;
}

.stat-item {
  text-align: center;
  padding: 0 3rem;
  border-right: 1px solid var(--border);
}
.stat-item:last-child { border-right: none; }

.stat-number {
  font-family: var(--serif);
  font-size: 32px;
  font-weight: 400;
  color: var(--ink);
  display: block;
}

.stat-label {
  font-size: 12px;
  color: var(--ink-faint);
  margin-top: 4px;
  display: block;
}

/* ============================================================
   SECTIONS
   ============================================================ */
section { padding: 6rem 2.5rem; }

.section-inner {
  max-width: 1000px;
  margin: 0 auto;
}

.section-tag {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 2px;
  color: var(--green-mid);
  display: block;
  margin-bottom: 1.25rem;
}

.section-label {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 2px;
  color: var(--accent);
  display: block;
  margin-bottom: 1.25rem;
  text-transform: uppercase;
}

h2.section-title {
  font-family: var(--serif);
  font-size: clamp(28px, 3.5vw, 44px);
  font-weight: 400;
  line-height: 1.1;
  color: var(--ink);
  margin-bottom: 1.25rem;
}

.section-h {
  font-family: var(--serif);
  font-size: clamp(22px,2.5vw,32px);
  font-weight: 400;
  color: var(--ink);
  margin-bottom: 0.5rem;
}

.section-intro {
  text-align: center;
  font-size: 16px;
  color: var(--ink-muted);
  line-height: 1.75;
  max-width: 600px;
  margin-bottom: 3.5rem;
}

.section-sub {
  font-size: 13px;
  color: var(--ink-muted);
  margin-bottom: 2rem;
  line-height: 1.7;
}

/* ============================================================
   TABS
   ============================================================ */
.tab-row, .tabs {
  display: flex;
  gap: 8px;
  margin-bottom: 3.5rem;
}

.tab-btn, .tab {
  background: transparent;
  border: 1px solid var(--border);
  border-radius: 100px;
  padding: 9px 20px;
  font-size: 13px;
  font-weight: 400;
  font-family: var(--sans);
  color: var(--ink-muted);
  cursor: pointer;
  transition: all .15s;
}
.tab-btn:hover, .tab:hover { border-color: var(--green-mid); color: var(--green-mid); }
.tab-btn.active, .tab.active {
  background: var(--green-dark);
  border-color: var(--green-dark);
  color: white;
  font-weight: 500;
}

.tab-content { display: none; }
.tab-content.active { display: block; }

/* ============================================================
   STEPS
   ============================================================ */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
  border-radius: 12px;
  overflow: hidden;
}

.step-card, .step {
  background: white;
  padding: 2rem;
}

.step-num, .step .num {
  font-family: var(--serif);
  font-size: 42px;
  font-weight: 400;
  color: var(--green-dark);
  line-height: 1;
  margin-bottom: 1.25rem;
  display: block;
}

.step-card h3, .step h3 {
  font-size: 16px;
  font-weight: 500;
  color: var(--ink);
  margin-bottom: 0.75rem;
  line-height: 1.3;
}

.step-card p, .step p {
  font-size: 13px;
  color: var(--ink-muted);
  line-height: 1.7;
}

.step .note {
  display: inline-block;
  margin-top: 0.85rem;
  font-size: 12px;
  color: var(--accent);
  font-weight: 500;
}

/* ============================================================
   DELIVERABLES
   ============================================================ */
.deliverables {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
}

.deliverable {
  display: grid;
  grid-template-columns: 200px 1fr;
  border-bottom: 1px solid var(--border);
}
.deliverable:last-child { border-bottom: none; }

.dlv {
  display: grid;
  grid-template-columns: 190px 1fr;
  border-bottom: 1px solid var(--border);
}
.dlv:last-child { border-bottom: none; }

.deliverable-label, .dlv-l {
  background: var(--cream);
  padding: 1.75rem;
  border-right: 1px solid var(--border);
}

.deliverable-label span, .dlv-l .n {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 1.5px;
  color: var(--green-mid);
  display: block;
  margin-bottom: 8px;
}

.deliverable-label h3, .dlv-l h3 {
  font-family: var(--serif);
  font-size: 17px;
  font-weight: 400;
  color: var(--ink);
  line-height: 1.3;
}

.deliverable-body, .dlv-r {
  background: white;
  padding: 1.75rem 2rem;
}

.deliverable-body p, .dlv-r p {
  font-size: 14px;
  color: var(--ink-muted);
  line-height: 1.75;
}

.dlv-r h4 {
  font-size: 13px;
  font-weight: 500;
  color: var(--ink);
  margin-bottom: 0.5rem;
  line-height: 1.4;
}

/* ============================================================
   TIMELINE
   ============================================================ */
.timeline-strip, .timeline {
  display: flex;
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid var(--border);
  margin: 2.5rem 0 4rem;
  max-width: 700px;
}

.tl-item, .tl {
  flex: 1;
  padding: 12px 8px;
  text-align: center;
  font-size: 11px;
  font-weight: 400;
  color: var(--ink-faint);
  background: var(--cream);
  border-right: 1px solid var(--border);
  line-height: 1.4;
}
.tl-item:last-child, .tl:last-child { border-right: none; }
.tl-item.active, .tl.on {
  background: var(--green-dark);
  color: white;
  font-weight: 500;
}
.tl small { display: block; font-size: 10px; opacity: 0.7; }

/* ============================================================
   STATS
   ============================================================ */
.stats-trio, .stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
  border-radius: 12px;
  overflow: hidden;
  margin-bottom: 4rem;
}

.stats-cell, .stat {
  background: white;
  padding: 2rem 1.75rem;
  border-right: 1px solid var(--border);
}
.stats-cell:last-child, .stat:last-child { border-right: none; }

.stats-cell .big-num, .stat .big {
  font-family: var(--serif);
  font-size: 40px;
  font-weight: 400;
  color: var(--ink);
  display: block;
  margin-bottom: 6px;
}

.stats-cell .big-label, .stat p {
  font-size: 13px;
  color: var(--ink-muted);
  line-height: 1.5;
}

/* ============================================================
   AUDIENCE / WHO GRID
   ============================================================ */
.audience-grid, .who-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin-bottom: 4rem;
}

.audience-card, .who-card {
  background: white;
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 1.5rem;
}

.audience-card h4, .who-card h4 {
  font-size: 14px;
  font-weight: 500;
  color: var(--ink);
  margin-bottom: 6px;
}

.audience-card p, .who-card p {
  font-size: 13px;
  color: var(--ink-muted);
  line-height: 1.65;
}

/* ============================================================
   CTA BLOCK
   ============================================================ */
.cta-block {
  background: var(--green-dark);
  border-radius: 16px;
  padding: 3.5rem;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 2rem;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.cta-block::before {
  content: '';
  position: absolute;
  right: -60px; top: -60px;
  width: 280px; height: 280px;
  border-radius: 50%;
  border: 1px solid rgba(29,158,117,0.2);
}

.cta-block::after {
  content: '';
  position: absolute;
  right: -30px; top: -30px;
  width: 180px; height: 180px;
  border-radius: 50%;
  border: 1px solid rgba(29,158,117,0.15);
}

.cta-block h3 {
  font-family: var(--serif);
  font-size: clamp(22px, 2.5vw, 30px);
  font-weight: 400;
  font-style: italic;
  color: white;
  margin-bottom: 0.75rem;
  line-height: 1.2;
}

.cta-block p {
  font-size: 14px;
  color: rgba(255,255,255,0.6);
  line-height: 1.7;
  max-width: 480px;
}

.cta-block .note {
  font-size: 12px;
  color: rgba(255,255,255,0.35);
  margin-top: 0.75rem;
}

.cta-row {
  padding: 3rem 2.5rem;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}

/* ============================================================
   PATHS (Auditors page)
   ============================================================ */
.paths-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-top: 2rem;
}

.path-card {
  border: 1px solid var(--border);
  border-radius: 8px;
  overflow: hidden;
}
.path-card.featured { border-color: var(--green-dark); }

.path-head {
  padding: 1.5rem 1.75rem 1.25rem;
  background: var(--cream);
  border-bottom: 1px solid var(--border);
}
.path-card.featured .path-head { background: var(--green-dark); }

.path-badge {
  display: inline-block;
  background: var(--accent);
  color: white;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 1.5px;
  padding: 3px 9px;
  border-radius: 3px;
  margin-bottom: 0.75rem;
  text-transform: uppercase;
}

.path-head h3 { font-size: 17px; font-weight: 500; color: var(--ink); margin-bottom: 0.35rem; }
.path-card.featured .path-head h3 { color: white; }
.path-head .for { font-size: 12px; color: var(--ink-faint); }
.path-card.featured .path-head .for { color: rgba(255,255,255,0.5); }

.path-body { padding: 1.5rem 1.75rem; background: var(--white); }
.path-body p { font-size: 13px; color: var(--ink-muted); line-height: 1.75; margin-bottom: 1.25rem; }
.path-body ul { list-style: none; }
.path-body ul li {
  font-size: 13px;
  color: var(--ink-muted);
  padding: 0.5rem 0;
  border-bottom: 1px solid var(--border);
  display: flex;
  gap: 8px;
  align-items: flex-start;
  line-height: 1.55;
}
.path-body ul li:last-child { border-bottom: none; }
.path-body ul li::before { content: '—'; color: var(--accent); flex-shrink: 0; font-size: 12px; margin-top: 1px; }

/* ============================================================
   MARKET STRIP (Auditors page)
   ============================================================ */
.market-strip { background: var(--green-dark); padding: 2.5rem; border-bottom: 1px solid var(--border); }
.market-inner { max-width: 860px; display: grid; grid-template-columns: repeat(3,1fr); gap: 2rem; }
.mstat .big { font-family: var(--serif); font-size: 38px; font-weight: 400; color: white; display: block; line-height: 1; margin-bottom: 0.5rem; }
.mstat p { font-size: 13px; color: rgba(255,255,255,0.5); line-height: 1.6; }

/* ============================================================
   RECERTIFICATION (Auditors page)
   ============================================================ */
.recert-section { padding: 3.5rem 2.5rem; border-bottom: 1px solid var(--border); background: var(--cream); }
.recert-inner { max-width: 860px; display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: start; }
.recert-inner h2 { font-family: var(--serif); font-size: clamp(22px,2.5vw,30px); font-weight: 400; color: var(--ink); margin-bottom: 0.75rem; }
.recert-inner p { font-size: 13px; color: var(--ink-muted); line-height: 1.8; margin-bottom: 0.75rem; }
.recert-list { list-style: none; }
.recert-list li { font-size: 13px; color: var(--ink-muted); padding: 0.75rem 0; border-bottom: 1px solid var(--border); display: flex; gap: 10px; align-items: flex-start; line-height: 1.6; }
.recert-list li:last-child { border-bottom: none; }
.recert-list li::before { content: '—'; color: var(--accent); flex-shrink: 0; font-size: 12px; margin-top: 2px; }

/* ============================================================
   REGION BAND
   ============================================================ */
.region-band { background: var(--cream); padding: 2rem 2.5rem; border-bottom: 1px solid var(--border); }
.region-inner { max-width: 860px; display: flex; align-items: center; justify-content: space-between; gap: 2rem; }
.region-inner p { font-size: 13px; color: var(--ink-muted); line-height: 1.7; max-width: 500px; }
.region-inner strong { color: var(--ink); font-weight: 500; }

/* ============================================================
   MISC
   ============================================================ */
.divider { height: 1px; background: var(--border); max-width: 1000px; margin: 0 auto; }

.inline-tag {
  display: inline-block;
  background: var(--green-light);
  color: #0F6E56;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 1.5px;
  padding: 4px 10px;
  border-radius: 4px;
  margin-bottom: 1.25rem;
}

.eyebrow {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 2px;
  color: var(--ink-faint);
  display: block;
  margin-bottom: 1rem;
  text-transform: uppercase;
}

.tab-intro h2 {
  font-family: var(--serif);
  font-size: clamp(20px, 2.2vw, 28px);
  font-weight: 400;
  color: var(--ink);
  line-height: 1.2;
  margin-bottom: 0.9rem;
}
.tab-intro p { font-size: 14px; color: var(--ink-muted); line-height: 1.8; margin-bottom: 0.75rem; }

.tl-label { font-size: 11px; font-weight: 500; letter-spacing: 2px; color: var(--ink-faint); display: block; margin-bottom: 0.6rem; }

/* FADE IN */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}
.fade-up { animation: fadeUp .6s ease forwards; opacity: 0; }
.fade-up:nth-child(1) { animation-delay: .1s; }
.fade-up:nth-child(2) { animation-delay: .2s; }
.fade-up:nth-child(3) { animation-delay: .3s; }
.fade-up:nth-child(4) { animation-delay: .4s; }
.fade-up:nth-child(5) { animation-delay: .5s; }

/* ============================================================
   FOOTER
   ============================================================ */
footer {
  background: var(--green-dark);
  padding: 2rem 2.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
footer .logo { color: white; }
footer .logo span { color: var(--green-mid); }
.footer-meta { font-size: 12px; color: rgba(255,255,255,0.35); }

/* ============================================================
   SECTION-SPECIFIC BACKGROUNDS
   ============================================================ */
.hero-band { background: var(--cream); padding: 3.5rem 2.5rem; border-bottom: 1px solid var(--border); }
.hero-inner, .top-inner, .paths-inner, .what-inner, .steps-inner, .who-inner { max-width: 860px; }
.hero-band h1 { font-family: var(--serif); font-size: clamp(28px, 3.8vw, 48px); font-weight: 400; color: var(--ink); line-height: 1.1; margin-bottom: 1.25rem; max-width: 700px; }
.hero-band p { font-size: 15px; color: var(--ink-muted); line-height: 1.8; max-width: 580px; margin-bottom: 0.75rem; }

.top-band { background: var(--cream); padding: 3.5rem 2.5rem 3rem; }
.top-band h1 { font-family: var(--serif); font-size: clamp(28px, 3.5vw, 44px); font-weight: 400; color: var(--ink); line-height: 1.1; margin-bottom: 0.6rem; }
.top-band .sub { font-size: 14px; color: var(--ink-muted); margin-bottom: 2rem; }

.content-band { background: var(--white); }
.what-section { padding: 3.5rem 2.5rem; border-bottom: 1px solid var(--border); }
.what-section h2 { font-family: var(--serif); font-size: clamp(22px, 2.5vw, 32px); font-weight: 400; color: var(--ink); margin-bottom: 2rem; }
.steps-section { padding: 3.5rem 2.5rem; border-bottom: 1px solid var(--border); }
.steps-inner h2 { font-family: var(--serif); font-size: clamp(22px,2.5vw,32px); font-weight: 400; color: var(--ink); margin-bottom: 0.4rem; }
.steps-inner .steps-sub { font-size: 13px; color: var(--ink-muted); margin-bottom: 2rem; }
.stats-section { padding: 0; border-bottom: 1px solid var(--border); }
.who-section { padding: 3.5rem 2.5rem; border-bottom: 1px solid var(--border); }
.who-inner h2 { font-family: var(--serif); font-size: clamp(22px,2.5vw,32px); font-weight: 400; color: var(--ink); margin-bottom: 1.5rem; }
.paths-section { padding: 3.5rem 2.5rem; border-bottom: 1px solid var(--border); background: var(--white); }

/* ============================================================
   MOBILE RESPONSIVE
   ============================================================ */
@media (max-width: 768px) {
  .nav-toggle { display: flex; }
  .nav-links {
    display: none;
    position: fixed;
    top: 64px; left: 0; right: 0;
    background: rgba(250,249,246,0.98);
    backdrop-filter: blur(12px);
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    padding: 1rem 0;
    border-bottom: 1px solid var(--border);
    z-index: 150;
  }
  .nav-links.open { display: flex; }
  .nav-links li { width: 100%; }
  .nav-links a {
    display: block;
    padding: 0.85rem 2rem;
    font-size: 15px;
    color: var(--ink) !important;
    border-bottom: 1px solid var(--border);
  }
  .nav-links li:last-child a {
    margin: 0.75rem 2rem 0.25rem;
    width: calc(100% - 4rem);
    text-align: center;
    border-bottom: none;
    border-radius: 6px;
  }

  .hero { padding: 80px 1.25rem 3rem; min-height: auto; }
  .hero h1 { font-size: clamp(28px, 8vw, 48px); }
  .hero-sub { font-size: 14px; }
  .hero-cards { grid-template-columns: 1fr; }

  .stat-bar { flex-wrap: wrap; padding: 1.5rem 1rem; }
  .stat-item { padding: 0.75rem 1rem; border-right: none; border-bottom: 1px solid var(--border); width: 50%; }
  .stat-item:nth-child(odd) { border-right: 1px solid var(--border); }
  .stat-item:last-child { border-bottom: none; }

  section { padding: 3rem 1.25rem; }
  .section-inner { max-width: 100%; }

  .steps-grid { grid-template-columns: 1fr !important; }
  .step, .step-card { border-right: none !important; border-bottom: 1px solid var(--border); }
  .step:last-child, .step-card:last-child { border-bottom: none; }

  .deliverable { grid-template-columns: 1fr; }
  .deliverable-label { border-right: none; border-bottom: 1px solid var(--border); }
  .dlv { grid-template-columns: 1fr !important; }
  .dlv-l { border-right: none !important; border-bottom: 1px solid var(--border); }

  .stats-trio { grid-template-columns: 1fr; margin-bottom: 2rem; }
  .stats-grid { grid-template-columns: 1fr !important; }
  .stat { border-right: none !important; border-bottom: 1px solid var(--border); }
  .stat:last-child { border-bottom: none; }

  .audience-grid { grid-template-columns: 1fr; margin-bottom: 2rem; }
  .who-grid { grid-template-columns: 1fr !important; }
  .paths-grid { grid-template-columns: 1fr !important; }
  .market-inner { grid-template-columns: 1fr !important; gap: 1.5rem; }
  .recert-inner { grid-template-columns: 1fr !important; gap: 1.5rem; }

  .cta-block { grid-template-columns: 1fr; padding: 2rem 1.5rem; text-align: center; }
  .cta-block .btn-white { width: 100%; text-align: center; display: block; margin-top: 1rem; }

  .tab-row, .tabs { flex-wrap: wrap; margin-bottom: 2rem; }
  .tab-btn, .tab { font-size: 12px; padding: 7px 14px; }

  .timeline-strip, .timeline { flex-wrap: wrap; margin-bottom: 2rem; }
  .tl-item, .tl { flex: 0 0 50%; border-bottom: 1px solid var(--border); }

  .paths-section, .what-section, .steps-section,
  .recert-section, .who-section { padding: 2.5rem 1.25rem; }

  .cta-row { padding: 2rem 1.25rem; flex-direction: column; }
  .btn-cta, .btn-ghost { width: 100%; text-align: center; }

  .region-inner { flex-direction: column; }
  .region-inner .btn-ghost { width: 100%; text-align: center; }

  .market-strip { padding: 2rem 1.25rem; }
  .hero-band { padding: 2.5rem 1.25rem; }
  .top-band { padding: 2.5rem 1.25rem 2rem; }

  footer { flex-direction: column; gap: 0.75rem; text-align: center; padding: 1.5rem 1.25rem; }
}

@media (max-width: 480px) {
  .hero h1 { font-size: clamp(24px, 7vw, 36px); }
  .stat-item { width: 100%; border-right: none !important; }
  .tl-item, .tl { flex: 0 0 100%; }
  h2.section-title, .section-h { font-size: clamp(20px, 6vw, 28px); }
  .hero-band h1 { font-size: clamp(24px, 7vw, 36px); }
}
