/* ============================================
   Elev8 Online Coaching — Stylesheet
   ============================================ */

:root {
  --navy:        #14174a;
  --navy-2:      #232a73;
  --navy-3:      #3a3f88;
  --magenta:     #c9265e;
  --magenta-2:   #e6447a;
  --pink:        #ec5a8e;
  --pink-soft:   #fce4ed;
  --pink-bg:     #fdf3f7;
  --lavender-bg: #f8f6fc;

  --text:        #14174a;
  --text-soft:   #4a4d6b;
  --text-muted:  #6e718e;

  --bg:          #ffffff;
  --bg-soft:     #faf8fc;
  --border:      #e8e5f0;
  --border-soft: #f1eef7;

  --shadow-sm: 0 1px 2px rgba(20, 23, 74, 0.06);
  --shadow-md: 0 8px 28px rgba(20, 23, 74, 0.08);
  --shadow-lg: 0 24px 64px rgba(20, 23, 74, 0.12);

  --gradient-brand: linear-gradient(135deg, #14174a 0%, #2a2d6b 45%, #c9265e 100%);
  --gradient-soft:  linear-gradient(135deg, #fdf3f7 0%, #f8f6fc 100%);
  --gradient-accent: linear-gradient(135deg, #c9265e 0%, #ec5a8e 100%);

  --radius-sm: 8px;
  --radius:    14px;
  --radius-lg: 24px;
  --radius-xl: 36px;

  --container: 1200px;
  --container-narrow: 880px;
}

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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
  font-size: 16px;
  line-height: 1.65;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img { max-width: 100%; display: block; height: auto; }
a { color: var(--magenta); text-decoration: none; transition: color .2s ease; }
a:hover { color: var(--navy); }

ul, ol { padding-left: 1.25rem; }
li { margin-bottom: 0.4rem; }

/* ---------- Typography ---------- */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.15;
  color: var(--navy);
}
h1 { font-size: clamp(2.25rem, 4.6vw, 3.75rem); }
h2 { font-size: clamp(1.75rem, 3.2vw, 2.5rem); }
h3 { font-size: clamp(1.25rem, 2vw, 1.5rem); }
h4 { font-size: 1.125rem; }

p { color: var(--text-soft); margin-bottom: 1rem; }
.lead { font-size: 1.125rem; color: var(--text-soft); }

.eyebrow {
  display: inline-block;
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--magenta);
  margin-bottom: 1rem;
}

/* ---------- Layout ---------- */
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}
.container-narrow {
  max-width: var(--container-narrow);
  margin: 0 auto;
  padding: 0 24px;
}

section { padding: clamp(64px, 8vw, 112px) 0; }
.section-tight { padding: clamp(48px, 6vw, 80px) 0; }

.section-head {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 56px;
}
.section-head p { font-size: 1.0625rem; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-weight: 600;
  font-size: 0.9375rem;
  padding: 14px 28px;
  border-radius: 999px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: all .2s ease;
  white-space: nowrap;
}
.btn-primary {
  background: var(--gradient-accent);
  color: #fff;
  box-shadow: 0 6px 20px rgba(201, 38, 94, 0.25);
}
.btn-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 10px 28px rgba(201, 38, 94, 0.35);
  color: #fff;
}
.btn-outline {
  background: transparent;
  color: var(--navy);
  border-color: var(--border);
}
.btn-outline:hover {
  border-color: var(--navy);
  background: var(--navy);
  color: #fff;
}
.btn-light {
  background: #fff;
  color: var(--navy);
}
.btn-light:hover { background: var(--pink-soft); color: var(--navy); }

/* ---------- Header / Nav ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border-soft);
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 24px;
  max-width: var(--container);
  margin: 0 auto;
}
.nav-logo img {
  height: 42px;
  width: auto;
}
.nav-logo-fallback {
  font-weight: 800;
  font-size: 1.4rem;
  letter-spacing: 0.02em;
  background: var(--gradient-brand);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.nav-links li { margin: 0; }
.nav-links a {
  color: var(--text);
  font-weight: 500;
  font-size: 0.9375rem;
  transition: color .2s ease;
}
.nav-links a:hover { color: var(--magenta); }
.nav-cta { margin-left: 8px; }

.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}
.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--navy);
  margin: 5px 0;
  border-radius: 2px;
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  padding: clamp(72px, 10vw, 128px) 0 clamp(56px, 8vw, 96px);
  background: var(--gradient-soft);
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute;
  top: -200px; right: -200px;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(236, 90, 142, 0.18) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}
.hero::after {
  content: "";
  position: absolute;
  bottom: -260px; left: -160px;
  width: 520px; height: 520px;
  background: radial-gradient(circle, rgba(20, 23, 74, 0.10) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}
.hero-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  align-items: center;
  gap: 64px;
}
.hero-content { max-width: 620px; }
.hero h1 {
  margin-bottom: 1.25rem;
}
.hero h1 .accent {
  background: var(--gradient-accent);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.hero p {
  font-size: 1.125rem;
  margin-bottom: 2rem;
  max-width: 540px;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.hero-visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 380px;
}
.hero-visual .blob {
  position: absolute;
  inset: 0;
  background: var(--gradient-brand);
  border-radius: 48% 52% 60% 40% / 50% 60% 40% 50%;
  opacity: 0.95;
  animation: morph 14s ease-in-out infinite alternate;
}
.hero-visual .badge {
  position: relative;
  z-index: 2;
  background: rgba(255,255,255,0.96);
  backdrop-filter: blur(8px);
  border-radius: var(--radius-lg);
  padding: 28px 32px;
  box-shadow: var(--shadow-lg);
  max-width: 320px;
  text-align: center;
}
.hero-visual .badge-stat {
  font-size: 2.4rem;
  font-weight: 800;
  background: var(--gradient-accent);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  letter-spacing: -0.02em;
  display: block;
  margin-bottom: 6px;
}
.hero-visual .badge-label {
  font-size: 0.875rem;
  color: var(--text-soft);
  font-weight: 500;
}

@keyframes morph {
  0%   { border-radius: 48% 52% 60% 40% / 50% 60% 40% 50%; }
  50%  { border-radius: 58% 42% 40% 60% / 60% 40% 60% 40%; }
  100% { border-radius: 42% 58% 50% 50% / 40% 50% 50% 60%; }
}

/* ---------- Trust Strip ---------- */
.trust-strip {
  background: var(--navy);
  color: #fff;
  padding: 28px 0;
}
.trust-strip-inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  text-align: center;
}
.trust-stat .num {
  font-size: 1.75rem;
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.02em;
  display: block;
}
.trust-stat .label {
  font-size: 0.8125rem;
  color: rgba(255,255,255,0.72);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

/* ---------- Cards / Features ---------- */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.card {
  background: #fff;
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--border);
}
.card .icon-wrap {
  width: 56px; height: 56px;
  border-radius: 16px;
  background: var(--gradient-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}
.card .icon-wrap svg { width: 28px; height: 28px; color: var(--magenta); stroke: var(--magenta); }
.card h3 { margin-bottom: 10px; }
.card p { font-size: 0.9375rem; margin: 0; }

/* ---------- Approach (split section) ---------- */
.bg-soft { background: var(--lavender-bg); }
.bg-pink { background: var(--pink-bg); }

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.split-text h2 { margin-bottom: 1.25rem; }
.split-text ul {
  list-style: none;
  padding: 0;
  margin-top: 1.5rem;
}
.split-text ul li {
  position: relative;
  padding-left: 32px;
  margin-bottom: 14px;
  color: var(--text-soft);
  font-size: 0.9375rem;
}
.split-text ul li::before {
  content: "";
  position: absolute;
  left: 0; top: 8px;
  width: 18px; height: 18px;
  background: var(--gradient-accent);
  border-radius: 50%;
  background-image:
    linear-gradient(135deg, #c9265e 0%, #ec5a8e 100%);
  box-shadow: 0 2px 6px rgba(201,38,94,0.3);
}
.split-text ul li::after {
  content: "✓";
  position: absolute;
  left: 4px; top: 5px;
  color: #fff;
  font-size: 11px;
  font-weight: 700;
}

.split-visual {
  position: relative;
  border-radius: var(--radius-lg);
  background: var(--gradient-brand);
  padding: 56px 44px;
  color: #fff;
  min-height: 320px;
  overflow: hidden;
}
.split-visual::before {
  content: "";
  position: absolute;
  top: -80px; right: -80px;
  width: 240px; height: 240px;
  background: radial-gradient(circle, rgba(255,255,255,0.18) 0%, transparent 70%);
  border-radius: 50%;
}
.split-visual h3 { color: #fff; font-size: 1.5rem; margin-bottom: 14px; }
.split-visual p { color: rgba(255,255,255,0.85); margin-bottom: 0; }
.split-visual .quote {
  font-size: 1.25rem;
  font-weight: 500;
  font-style: italic;
  line-height: 1.5;
  color: #fff;
  margin-bottom: 1.5rem;
}
.split-visual .attrib {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.72);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

/* ---------- Phases / timeline ---------- */
.phases {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 16px;
}
.phase {
  background: #fff;
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  position: relative;
  transition: all .25s ease;
}
.phase:hover {
  border-color: var(--magenta);
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}
.phase .num {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  color: var(--magenta);
  text-transform: uppercase;
  margin-bottom: 8px;
}
.phase h3 { font-size: 1.125rem; margin-bottom: 8px; }
.phase p { font-size: 0.9rem; margin: 0; }

/* ---------- Founders ---------- */
.founders {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}
.founder-card {
  background: #fff;
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-lg);
  padding: 40px 36px;
  position: relative;
  overflow: hidden;
}
.founder-card::before {
  content: "";
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 4px;
  background: var(--gradient-accent);
}
.founder-card .role {
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--magenta);
  margin-bottom: 8px;
}
.founder-card h3 { margin-bottom: 12px; }
.founder-card .creds {
  font-size: 0.875rem;
  color: var(--text-soft);
  margin-bottom: 16px;
  font-weight: 500;
}
.founder-card p { font-size: 0.9375rem; margin-bottom: 0; }

/* ---------- Outcomes ---------- */
.outcomes {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.outcome {
  background: #fff;
  border: 1px solid var(--border-soft);
  border-radius: var(--radius);
  padding: 24px;
  display: flex;
  align-items: flex-start;
  gap: 14px;
}
.outcome .check {
  flex: none;
  width: 28px; height: 28px;
  border-radius: 50%;
  background: var(--gradient-accent);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 0.875rem;
}
.outcome p {
  margin: 0;
  font-size: 0.9375rem;
  color: var(--text);
  font-weight: 500;
}

/* ---------- FAQ ---------- */
.faq {
  max-width: 820px;
  margin: 0 auto;
}
.faq-item {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  margin-bottom: 14px;
  overflow: hidden;
  transition: border-color .2s ease;
}
.faq-item[open] { border-color: var(--magenta); }
.faq-item summary {
  cursor: pointer;
  list-style: none;
  padding: 22px 26px;
  font-weight: 600;
  font-size: 1rem;
  color: var(--navy);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+";
  font-size: 1.5rem;
  color: var(--magenta);
  font-weight: 400;
  transition: transform .2s ease;
}
.faq-item[open] summary::after { content: "−"; }
.faq-item .faq-body {
  padding: 0 26px 22px;
  color: var(--text-soft);
  font-size: 0.9375rem;
}
.faq-item .faq-body p { margin-bottom: 0; }

/* ---------- CTA section ---------- */
.cta-section {
  background: var(--gradient-brand);
  color: #fff;
  border-radius: var(--radius-xl);
  padding: clamp(48px, 6vw, 72px);
  text-align: center;
  margin: 0 24px;
  position: relative;
  overflow: hidden;
}
.cta-section::before {
  content: "";
  position: absolute;
  top: -100px; right: -100px;
  width: 320px; height: 320px;
  background: radial-gradient(circle, rgba(236, 90, 142, 0.4) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}
.cta-section h2 {
  color: #fff;
  margin-bottom: 1rem;
  position: relative;
  z-index: 2;
}
.cta-section p {
  color: rgba(255,255,255,0.88);
  max-width: 600px;
  margin: 0 auto 2rem;
  font-size: 1.0625rem;
  position: relative;
  z-index: 2;
}
.cta-section .btn { position: relative; z-index: 2; }

/* ---------- Footer ---------- */
.site-footer {
  background: var(--navy);
  color: rgba(255,255,255,0.72);
  padding: 64px 0 32px;
  margin-top: 80px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,0.12);
}
.footer-brand img { height: 36px; width: auto; margin-bottom: 16px; filter: brightness(0) invert(1); }
.footer-brand-fallback {
  display: inline-block;
  font-weight: 800;
  font-size: 1.4rem;
  color: #fff;
  margin-bottom: 16px;
}
.footer-brand p {
  color: rgba(255,255,255,0.64);
  font-size: 0.875rem;
  max-width: 280px;
  margin-bottom: 16px;
}
.footer-brand .legal-name {
  color: rgba(255,255,255,0.86);
  font-size: 0.8125rem;
  font-weight: 600;
  display: block;
  margin-bottom: 4px;
}
.footer-brand .address {
  color: rgba(255,255,255,0.64);
  font-size: 0.8125rem;
  font-style: normal;
  line-height: 1.6;
}
.footer-col h4 {
  color: #fff;
  font-size: 0.875rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.footer-col ul {
  list-style: none;
  padding: 0;
}
.footer-col li { margin-bottom: 10px; }
.footer-col a {
  color: rgba(255,255,255,0.7);
  font-size: 0.9375rem;
  transition: color .2s ease;
}
.footer-col a:hover { color: var(--pink); }

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 16px;
  padding-top: 28px;
  font-size: 0.8125rem;
  color: rgba(255,255,255,0.5);
}
.footer-bottom a { color: rgba(255,255,255,0.7); }
.footer-bottom a:hover { color: #fff; }

/* ---------- Page hero (subpages) ---------- */
.page-hero {
  background: var(--gradient-soft);
  padding: clamp(72px, 10vw, 112px) 0 clamp(56px, 6vw, 80px);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: "";
  position: absolute;
  top: -120px; right: -120px;
  width: 360px; height: 360px;
  background: radial-gradient(circle, rgba(236, 90, 142, 0.18) 0%, transparent 70%);
  border-radius: 50%;
}
.page-hero .container { position: relative; z-index: 2; }
.page-hero p { font-size: 1.0625rem; max-width: 680px; margin: 1rem auto 0; }

/* ---------- Long-form content (legal pages) ---------- */
.prose {
  max-width: 760px;
  margin: 0 auto;
}
.prose p { margin-bottom: 1.25rem; font-size: 1rem; line-height: 1.75; }
.prose h2 {
  margin-top: 3rem;
  margin-bottom: 1rem;
  font-size: 1.5rem;
}
.prose h3 {
  margin-top: 2rem;
  margin-bottom: 0.75rem;
  font-size: 1.1875rem;
}
.prose ul, .prose ol {
  margin-bottom: 1.25rem;
  padding-left: 1.5rem;
}
.prose li {
  margin-bottom: 0.5rem;
  color: var(--text-soft);
  line-height: 1.7;
}
.prose strong { color: var(--navy); font-weight: 600; }
.prose a { color: var(--magenta); text-decoration: underline; text-underline-offset: 3px; }
.prose .effective-date {
  font-size: 0.875rem;
  color: var(--text-muted);
  margin-bottom: 2.5rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--border);
}
.prose .callout {
  background: var(--pink-bg);
  border-left: 3px solid var(--magenta);
  padding: 20px 24px;
  border-radius: 8px;
  margin: 1.5rem 0;
}
.prose .callout p:last-child { margin-bottom: 0; }

/* ---------- Contact page ---------- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}
.contact-info {
  background: var(--bg-soft);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-lg);
  padding: 40px;
}
.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 28px;
  padding-bottom: 28px;
  border-bottom: 1px solid var(--border-soft);
}
.contact-item:last-child { border-bottom: none; padding-bottom: 0; margin-bottom: 0; }
.contact-item .icon {
  flex: none;
  width: 44px; height: 44px;
  border-radius: 12px;
  background: var(--gradient-accent);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.125rem;
}
.contact-item .label {
  font-size: 0.8125rem;
  color: var(--text-muted);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 600;
  margin-bottom: 4px;
}
.contact-item .value {
  color: var(--navy);
  font-weight: 500;
  font-size: 1rem;
  line-height: 1.5;
}
.contact-item .value a { color: var(--magenta); }

.contact-aside {
  background: var(--gradient-brand);
  border-radius: var(--radius-lg);
  padding: 40px;
  color: #fff;
}
.contact-aside h3 { color: #fff; margin-bottom: 14px; }
.contact-aside p {
  color: rgba(255,255,255,0.85);
  font-size: 0.9375rem;
}
.contact-aside ul {
  list-style: none;
  padding: 0;
  margin-top: 1.5rem;
}
.contact-aside li {
  position: relative;
  padding-left: 24px;
  margin-bottom: 12px;
  color: rgba(255,255,255,0.92);
  font-size: 0.9375rem;
}
.contact-aside li::before {
  content: "→";
  position: absolute;
  left: 0;
  color: var(--pink);
}

/* ---------- Helpers ---------- */
.text-center { text-align: center; }
.mt-2 { margin-top: 2rem; }
.mb-0 { margin-bottom: 0; }

/* ---------- Responsive ---------- */
@media (max-width: 960px) {
  .hero-inner { grid-template-columns: 1fr; gap: 48px; }
  .hero-visual { min-height: 280px; }
  .split { grid-template-columns: 1fr; gap: 40px; }
  .feature-grid { grid-template-columns: 1fr; }
  .phases { grid-template-columns: repeat(2, 1fr); }
  .founders { grid-template-columns: 1fr; }
  .outcomes { grid-template-columns: 1fr; }
  .trust-strip-inner { grid-template-columns: repeat(2, 1fr); gap: 20px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .contact-grid { grid-template-columns: 1fr; }
}

@media (max-width: 720px) {
  .nav-links {
    display: none;
    position: absolute;
    top: 72px; left: 0; right: 0;
    background: #fff;
    flex-direction: column;
    gap: 0;
    padding: 12px 24px 20px;
    border-bottom: 1px solid var(--border);
    box-shadow: var(--shadow-md);
  }
  .nav-links.is-open { display: flex; }
  .nav-links li { width: 100%; }
  .nav-links a { display: block; padding: 12px 0; border-bottom: 1px solid var(--border-soft); }
  .nav-links .nav-cta { margin: 12px 0 0; width: 100%; text-align: center; }
  .nav-toggle { display: block; }

  section { padding: 56px 0; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .trust-strip-inner { grid-template-columns: 1fr 1fr; }
  .phases { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: 8px; }
  .cta-section { padding: 40px 28px; }
}

/* ---------- Print ---------- */
@media print {
  .site-header, .site-footer, .cta-section, .nav-toggle { display: none; }
  body { color: #000; background: #fff; }
}
