/* ============================================
   ESCAPEGATE CAPITAL — Main Stylesheet
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Philosopher:ital,wght@0,400;0,700;1,400;1,700&family=Inter:wght@300;400;500;600;700&display=swap');

/* ── Custom Properties ── */
:root {
  --bg:          #1C2B3A;
  --bg-light:    #243447;
  --bg-card:     #1e3048;
  --gold:        #C8A45A;
  --gold-hover:  #d4b470;
  --gold-muted:  rgba(200,164,90,.15);
  --sage:        #6B8F71;
  --sage-hover:  #7aa080;
  --cream:       #F5F0E8;
  --text:        #2D2D2D;
  --text-light:  #8fa3b8;
  --border:      rgba(200,164,90,.2);
  --shadow:      0 4px 32px rgba(0,0,0,.35);
  --shadow-gold: 0 4px 24px rgba(200,164,90,.25);
  --radius:      8px;
  --radius-lg:   16px;
  --font-h:      'Philosopher', serif;
  --font-b:      'Inter', sans-serif;
  --nav-h:       80px;
  --max-w:       1200px;
  --transition:  .3s ease;
}

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-b);
  background: var(--bg);
  color: var(--cream);
  line-height: 1.65;
  overflow-x: hidden;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

/* ── Iconify — centre le SVG dans tout contexte flex ── */
iconify-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  vertical-align: middle;
  line-height: 1;
  flex-shrink: 0;
}

/* ── Typography ── */
h1, h2, h3, h4, h5 { font-family: var(--font-h); line-height: 1.2; }
h1 { font-size: clamp(2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.5rem); }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.75rem); }
h4 { font-size: 1.25rem; }
p  { color: var(--text-light); }
.text-gold  { color: var(--gold); }
.text-sage  { color: var(--sage); }
.text-cream { color: var(--cream); }

/* ── Layout Utilities ── */
.container { max-width: var(--max-w); margin: 0 auto; padding: 0 24px; }
.section    { padding: 80px 0; }
.section-sm { padding: 48px 0; }
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 32px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.flex    { display: flex; align-items: center; }
.flex-between { display: flex; align-items: center; justify-content: space-between; }
.text-center { text-align: center; }
.mt-4  { margin-top: 4px; }
.mt-8  { margin-top: 8px; }
.mt-16 { margin-top: 16px; }
.mt-24 { margin-top: 24px; }
.mt-32 { margin-top: 32px; }
.mt-48 { margin-top: 48px; }
.mb-4  { margin-bottom: 4px; }
.mb-8  { margin-bottom: 8px; }
.mb-16 { margin-bottom: 16px; }
.mb-24 { margin-bottom: 24px; }
.mb-32 { margin-bottom: 32px; }
.mb-48 { margin-bottom: 48px; }
.ml-8  { margin-left: 8px; }
.mr-8  { margin-right: 8px; }
.gap-12 { gap: 12px; }
.gap-16 { gap: 16px; }

/* ── Divider ── */
.divider-gold {
  width: 60px; height: 3px;
  background: linear-gradient(90deg, var(--gold), transparent);
  margin: 16px 0 24px;
}
.divider-gold.center { margin: 16px auto 24px; }

/* ── Buttons ── */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  font-family: var(--font-b); font-weight: 600; font-size: .9rem;
  padding: 12px 28px; border-radius: var(--radius); border: 2px solid transparent;
  cursor: pointer; transition: var(--transition); white-space: nowrap; letter-spacing: .5px;
}
.btn-gold {
  background: var(--gold); color: var(--bg); border-color: var(--gold);
}
.btn-gold:hover { background: var(--gold-hover); border-color: var(--gold-hover); transform: translateY(-2px); box-shadow: var(--shadow-gold); }

.btn-outline {
  background: transparent; color: var(--cream); border-color: var(--border);
}
.btn-outline:hover { border-color: var(--gold); color: var(--gold); }

.btn-sage {
  background: var(--sage); color: #fff; border-color: var(--sage);
}
.btn-sage:hover { background: var(--sage-hover); transform: translateY(-2px); }

.btn-ghost { background: transparent; color: var(--gold); padding: 8px 0; }
.btn-ghost:hover { color: var(--gold-hover); }

.btn-sm { padding: 8px 18px; font-size: .82rem; }
.btn-lg { padding: 16px 40px; font-size: 1rem; }

/* ── Navigation ── */
.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  height: var(--nav-h); background: rgba(28,43,58,.95);
  backdrop-filter: blur(12px); border-bottom: 1px solid var(--border);
  transition: var(--transition);
}
.site-header.scrolled { background: rgba(28,43,58,.99); box-shadow: var(--shadow); }

.navbar {
  height: var(--nav-h); max-width: var(--max-w); margin: 0 auto; padding: 0 24px;
  display: flex; align-items: center; gap: 40px;
}

.logo { display: flex; align-items: center; flex-shrink: 0; }
.logo svg { display: block; overflow: visible; }
.logo svg text { user-select: none; }

.nav-menu {
  display: flex; align-items: center; gap: 4px; flex: 1;
}

.nav-link {
  padding: 8px 14px; border-radius: var(--radius);
  font-family: var(--font-h); font-size: .95rem; font-weight: 400;
  color: var(--text-light); transition: var(--transition); white-space: nowrap;
}
.nav-link:hover, .nav-link.active { color: var(--gold); }

/* Dropdown */
.has-dropdown { position: relative; }
.dropdown {
  position: absolute; top: calc(100% + 8px); left: 0; min-width: 200px;
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 8px;
  opacity: 0; pointer-events: none; transform: translateY(-8px);
  transition: var(--transition); box-shadow: var(--shadow);
}
.has-dropdown:hover .dropdown { opacity: 1; pointer-events: all; transform: none; }
.dropdown li a {
  display: block; padding: 8px 14px; font-size: .86rem; color: var(--text-light);
  border-radius: 6px; transition: var(--transition);
}
.dropdown li a:hover { background: var(--gold-muted); color: var(--gold); }

.nav-actions { display: flex; align-items: center; gap: 12px; margin-left: auto; flex-shrink: 0; }

.lang-switch {
  font-size: .78rem; font-weight: 700; letter-spacing: 1px; color: var(--text-light);
  border: 1px solid var(--border); padding: 5px 10px; border-radius: 20px;
  transition: var(--transition);
}
.lang-switch:hover { color: var(--gold); border-color: var(--gold); }

/* ── Social icon buttons ── */
.social-btn {
  display: inline-flex; align-items: center; justify-content: center;
  width: 38px; height: 38px; border-radius: var(--radius);
  background: rgba(255,255,255,.04); border: 1px solid var(--border);
  color: var(--text-light); font-size: 20px; transition: var(--transition);
}
.social-btn:hover {
  color: var(--gold); background: var(--gold-muted); border-color: var(--gold);
  transform: translateY(-2px);
}

.nav-toggle {
  display: none; flex-direction: column; gap: 5px; background: none; border: none;
  cursor: pointer; padding: 4px; margin-left: auto;
}
.nav-toggle span {
  display: block; width: 24px; height: 2px; background: var(--cream); border-radius: 2px;
  transition: var(--transition);
}

/* ── Hero ── */
.hero {
  min-height: 100vh; display: flex; align-items: center;
  padding-top: var(--nav-h);
  background: linear-gradient(135deg, var(--bg) 0%, #0f1e2d 100%);
  position: relative; overflow: hidden;
}
.hero::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse 60% 60% at 70% 50%, rgba(200,164,90,.06), transparent);
}
.hero-content { position: relative; z-index: 1; max-width: 680px; }
.hero-badge {
  display: inline-block; padding: 6px 16px; border-radius: 20px;
  background: var(--gold-muted); border: 1px solid var(--border);
  font-size: .8rem; font-weight: 600; color: var(--gold); letter-spacing: 1px;
  text-transform: uppercase; margin-bottom: 24px;
}
.hero h1 { color: var(--cream); margin-bottom: 20px; }
.hero h1 span { color: var(--gold); font-style: italic; }
.hero p { font-size: 1.1rem; margin-bottom: 36px; max-width: 540px; }
.hero-cta { display: flex; gap: 16px; flex-wrap: wrap; }
.hero-stats {
  display: flex; gap: 40px; margin-top: 60px; padding-top: 40px;
  border-top: 1px solid var(--border);
}
.hero-stat-number {
  font-family: var(--font-h); font-size: 2rem; color: var(--gold); display: block;
}
.hero-stat-label { font-size: .8rem; color: var(--text-light); text-transform: uppercase; letter-spacing: 1px; }

/* ── Section Header ── */
.section-header { text-align: center; max-width: 640px; margin: 0 auto 56px; }
.section-tag {
  display: inline-block; font-size: .75rem; font-weight: 700; letter-spacing: 2px;
  text-transform: uppercase; color: var(--gold); margin-bottom: 12px;
}

/* ── Cards ── */
.card {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 32px; transition: var(--transition);
}
.card:hover { border-color: var(--gold); transform: translateY(-4px); box-shadow: var(--shadow-gold); }

.card-icon {
  width: 56px; height: 56px; border-radius: var(--radius);
  background: var(--gold-muted); display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem; margin-bottom: 20px;
}
.card h3 { color: var(--cream); margin-bottom: 10px; font-size: 1.2rem; }

/* Formation Card */
.formation-card {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--radius-lg); overflow: hidden; transition: var(--transition);
}
.formation-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-gold); border-color: var(--gold); }
.formation-card-img {
  height: 200px; background: linear-gradient(135deg, var(--bg-light), var(--bg-card));
  display: flex; align-items: center; justify-content: center; font-size: 3rem;
}
.formation-card-body { padding: 24px; }
.formation-card-price {
  font-family: var(--font-h); font-size: 1.5rem; color: var(--gold); margin: 16px 0;
}
.formation-card-price span { font-size: .85rem; color: var(--text-light); font-family: var(--font-b); }
.badge {
  display: inline-block; padding: 3px 10px; border-radius: 20px; font-size: .75rem; font-weight: 600;
  background: var(--gold-muted); color: var(--gold); border: 1px solid var(--border);
}
.badge-sage { background: rgba(107,143,113,.15); color: var(--sage); border-color: rgba(107,143,113,.3); }

/* ── Process Steps ── */
.steps { counter-reset: step; }
.step { display: flex; gap: 24px; padding: 24px 0; border-bottom: 1px solid var(--border); }
.step:last-child { border-bottom: none; }
.step-num {
  flex-shrink: 0; width: 48px; height: 48px; border-radius: 50%;
  border: 2px solid var(--gold); display: flex; align-items: center; justify-content: center;
  font-family: var(--font-h); color: var(--gold); font-size: 1.1rem; font-weight: 700;
}
.step-content h4 { color: var(--cream); margin-bottom: 6px; }

/* ── Pricing Table ── */
.pricing-card {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 40px 32px; text-align: center;
  position: relative; transition: var(--transition);
}
.pricing-card.featured {
  border-color: var(--gold); box-shadow: var(--shadow-gold);
}
.pricing-badge {
  position: absolute; top: -14px; left: 50%; transform: translateX(-50%);
  background: var(--gold); color: var(--bg); padding: 4px 16px;
  border-radius: 20px; font-size: .78rem; font-weight: 700;
}
.pricing-price {
  font-family: var(--font-h); font-size: 3rem; color: var(--gold);
  margin: 20px 0 4px;
}
.pricing-price span { font-size: 1rem; color: var(--text-light); font-family: var(--font-b); }
.pricing-features { text-align: left; margin: 24px 0; }
.pricing-features li {
  padding: 8px 0; border-bottom: 1px solid var(--border); font-size: .9rem;
  color: var(--text-light); display: flex; gap: 10px;
}
.pricing-features li::before { content: '✓'; color: var(--gold); font-weight: 700; flex-shrink: 0; }

/* ── Forms ── */
.form-group { margin-bottom: 20px; }
.form-label {
  display: block; font-size: .85rem; font-weight: 500; color: var(--cream); margin-bottom: 6px;
}
.form-control {
  width: 100%; padding: 12px 16px; background: var(--bg-light); border: 1px solid var(--border);
  border-radius: var(--radius); color: var(--cream); font-family: var(--font-b); font-size: .9rem;
  transition: var(--transition);
}
.form-control:focus {
  outline: none; border-color: var(--gold); box-shadow: 0 0 0 3px rgba(200,164,90,.1);
}
.form-control::placeholder { color: var(--text-light); }
select.form-control { cursor: pointer; }
textarea.form-control { resize: vertical; min-height: 120px; }
.form-error { font-size: .8rem; color: #e07070; margin-top: 4px; }
.form-success { font-size: .9rem; color: var(--sage); margin-top: 8px; }

/* ── Auth Pages ── */
.auth-page {
  min-height: 100vh; display: flex; align-items: center; justify-content: center;
  padding: calc(var(--nav-h) + 40px) 24px 40px;
  background: radial-gradient(ellipse 50% 80% at 50% 20%, rgba(200,164,90,.05), transparent);
}
.auth-card {
  width: 100%; max-width: 480px; background: var(--bg-card);
  border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 40px;
}
.auth-card h2 { color: var(--cream); margin-bottom: 8px; }
.auth-card p { margin-bottom: 28px; }
.auth-footer { text-align: center; margin-top: 20px; font-size: .88rem; color: var(--text-light); }
.auth-footer a { color: var(--gold); }
.auth-footer a:hover { color: var(--gold-hover); }

/* ── Dashboard ── */
.dashboard-layout {
  display: grid; grid-template-columns: 260px 1fr; min-height: calc(100vh - var(--nav-h));
  margin-top: var(--nav-h);
}
.sidebar {
  background: var(--bg-card); border-right: 1px solid var(--border);
  padding: 32px 16px; position: sticky; top: var(--nav-h); height: calc(100vh - var(--nav-h));
  overflow-y: auto;
}
.sidebar-nav { margin-top: 24px; }
.sidebar-nav li + li { margin-top: 4px; }
.sidebar-link {
  display: flex; align-items: center; gap: 10px; padding: 10px 14px;
  border-radius: var(--radius); font-size: .9rem; color: var(--text-light);
  transition: var(--transition);
}
.sidebar-link:hover, .sidebar-link.active {
  background: var(--gold-muted); color: var(--gold);
}
.sidebar-link span.icon { font-size: 1.1rem; width: 20px; text-align: center; }
.dashboard-content { padding: 40px; }
.dashboard-greeting { margin-bottom: 32px; }
.dashboard-greeting h2 { color: var(--cream); }
.stat-card {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 20px 24px;
}
.stat-card-value { font-family: var(--font-h); font-size: 2rem; color: var(--gold); }
.stat-card-label { font-size: .8rem; color: var(--text-light); margin-top: 4px; }

/* ── Blog ── */
.blog-card {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--radius-lg); overflow: hidden; transition: var(--transition);
}
.blog-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.blog-card-img {
  height: 180px;
  background: linear-gradient(135deg, var(--bg-light), var(--bg-card));
  display: flex; align-items: center; justify-content: center;
  font-size: 2.5rem;
}
.blog-card-body { padding: 20px; }
.blog-card-meta { font-size: .78rem; color: var(--text-light); margin-bottom: 8px; }
.blog-card h3 { color: var(--cream); font-size: 1.1rem; margin-bottom: 8px; }
.blog-card p { font-size: .88rem; }

/* ── Article ── */
.article-header {
  padding: calc(var(--nav-h) + 60px) 0 60px;
  background: linear-gradient(135deg, var(--bg) 0%, var(--bg-light) 100%);
}
.article-meta { display: flex; gap: 16px; font-size: .82rem; color: var(--text-light); flex-wrap: wrap; }
.article-content {
  max-width: 760px; margin: 0 auto; padding: 48px 24px;
}
.article-content p { color: var(--text-light); margin-bottom: 20px; line-height: 1.8; }
.article-content h2 { color: var(--cream); margin: 32px 0 12px; }
.article-content h3 { color: var(--cream); margin: 24px 0 10px; }

/* ── Video Player ── */
.player-wrap {
  background: #000; border-radius: var(--radius-lg); overflow: hidden;
  aspect-ratio: 16/9; position: relative;
}
.player-wrap iframe, .player-wrap video {
  width: 100%; height: 100%; border: none;
}
.player-overlay {
  position: absolute; inset: 0; display: flex; align-items: center; justify-content: center;
  background: rgba(0,0,0,.5); cursor: pointer; transition: var(--transition);
}
.player-overlay:hover { background: rgba(0,0,0,.3); }
.play-btn {
  width: 72px; height: 72px; border-radius: 50%;
  background: var(--gold); display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem; color: var(--bg); transition: var(--transition);
}
.player-overlay:hover .play-btn { transform: scale(1.1); }

/* ── Progress Bar ── */
.progress-bar-wrap { background: var(--bg-light); border-radius: 4px; height: 6px; }
.progress-bar { height: 100%; border-radius: 4px; background: var(--gold); transition: width .6s ease; }

/* ── Checkout ── */
.checkout-grid { display: grid; grid-template-columns: 1fr 380px; gap: 40px; align-items: start; }
.checkout-summary {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 32px; position: sticky; top: calc(var(--nav-h) + 20px);
}
.checkout-total {
  border-top: 1px solid var(--border); padding-top: 20px; margin-top: 20px;
  display: flex; justify-content: space-between; align-items: center;
}
.checkout-total strong { font-family: var(--font-h); font-size: 1.5rem; color: var(--gold); }

/* ── Alert / Notifications ── */
.alert {
  padding: 14px 18px; border-radius: var(--radius); margin-bottom: 16px; font-size: .9rem;
}
.alert-success { background: rgba(107,143,113,.15); border: 1px solid rgba(107,143,113,.4); color: var(--sage); }
.alert-error   { background: rgba(220,100,100,.1);  border: 1px solid rgba(220,100,100,.3); color: #e07070; }
.alert-info    { background: var(--gold-muted); border: 1px solid var(--border); color: var(--gold); }

/* ── CTA Banner ── */
.cta-section {
  padding: 80px 0;
  background: linear-gradient(135deg, var(--bg-light) 0%, #0f1e2d 100%);
  position: relative; overflow: hidden;
}
.cta-section::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse 50% 100% at 50% 0%, rgba(200,164,90,.08), transparent);
}
.cta-section .container { position: relative; z-index: 1; text-align: center; }

/* ── Footer ── */
.site-footer {
  background: #111e2b; border-top: 1px solid var(--border); padding: 64px 0 0;
}
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px; }
.footer-brand .logo-text { font-size: 1.4rem; }
.footer-brand p { margin-top: 16px; font-size: .88rem; line-height: 1.7; max-width: 280px; }
.footer-col h4 { color: var(--cream); font-size: .9rem; font-weight: 600; margin-bottom: 16px; letter-spacing: .5px; }
.footer-col ul li + li { margin-top: 8px; }
.footer-col ul li a {
  font-size: .87rem; color: var(--text-light); transition: var(--transition);
}
.footer-col ul li a:hover { color: var(--gold); }
.footer-bottom {
  margin-top: 48px; padding: 20px 0; border-top: 1px solid var(--border);
  display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px;
  font-size: .82rem; color: var(--text-light);
}
.footer-bottom a { color: var(--text-light); transition: var(--transition); }
.footer-bottom a:hover { color: var(--gold); }

/* ── Page Hero (inner pages) ── */
.page-hero {
  padding: calc(var(--nav-h) + 60px) 0 60px;
  background: linear-gradient(135deg, var(--bg) 0%, var(--bg-light) 100%);
  position: relative;
}
.page-hero::after {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

/* ── Breadcrumb ── */
.breadcrumb { display: flex; gap: 8px; font-size: .82rem; color: var(--text-light); margin-bottom: 16px; flex-wrap: wrap; }
.breadcrumb a { color: var(--text-light); }
.breadcrumb a:hover { color: var(--gold); }
.breadcrumb span.sep { color: var(--border); }

/* ── Tables ── */
.table-wrap { overflow-x: auto; }
table { width: 100%; border-collapse: collapse; font-size: .9rem; }
thead th {
  text-align: left; padding: 12px 16px; border-bottom: 1px solid var(--border);
  font-size: .78rem; text-transform: uppercase; letter-spacing: 1px; color: var(--text-light);
}
tbody td { padding: 14px 16px; border-bottom: 1px solid rgba(255,255,255,.04); color: var(--text-light); }
tbody tr:hover td { background: rgba(255,255,255,.02); }

/* ── Testimonials ── */
.testimonial-card {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 32px; position: relative;
}
.testimonial-card::before {
  content: '"'; font-family: var(--font-h); font-size: 5rem; color: var(--gold);
  opacity: .15; position: absolute; top: 8px; left: 24px; line-height: 1;
}
.testimonial-text { font-size: .95rem; line-height: 1.8; font-style: italic; margin-bottom: 24px; }
.testimonial-author { display: flex; align-items: center; gap: 12px; }
.testimonial-avatar {
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--gold-muted); border: 2px solid var(--border);
  display: flex; align-items: center; justify-content: center; font-size: 1.1rem;
}
.testimonial-name { color: var(--cream); font-weight: 600; font-size: .9rem; }
.testimonial-role { font-size: .8rem; color: var(--text-light); }

/* ── Responsive ── */
@media (max-width: 1024px) {
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .checkout-grid { grid-template-columns: 1fr; }
  .dashboard-layout { grid-template-columns: 1fr; }
  .sidebar { position: static; height: auto; }
}

@media (max-width: 768px) {
  .grid-2, .grid-3 { grid-template-columns: 1fr; }
  .nav-menu, .nav-actions { display: none; }
  .nav-menu.open, .nav-actions.open { display: flex; }
  .nav-toggle { display: flex; }
  .navbar { flex-wrap: wrap; height: auto; padding: 16px 24px; gap: 0; }
  .site-header { height: auto; }
  .nav-menu.open {
    flex-direction: column; align-items: flex-start; gap: 4px;
    width: 100%; padding: 16px 0; border-top: 1px solid var(--border);
  }
  .nav-actions.open { flex-direction: row; width: 100%; padding: 12px 0; gap: 10px; }
  .dropdown { position: static; opacity: 1; transform: none; pointer-events: all;
    box-shadow: none; border: none; background: rgba(255,255,255,.03); padding-left: 16px; }
  .hero-stats { flex-wrap: wrap; gap: 24px; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .section { padding: 56px 0; }
  .hero { min-height: auto; padding: calc(var(--nav-h) + 60px) 0 60px; }
  h1 { font-size: 2rem; }
  h2 { font-size: 1.5rem; }
}
