/* ═══════════════════════════════════════════════════════════
   DM-XTech · Azolla-to-CBM · DM-X CBM · styles.css
   ═══════════════════════════════════════════════════════════ */

/* ── TOKENS ── */
:root {
  --forest-deep: #0D2B1E;
  --forest-mid:  #164D35;
  --forest-light:#256B49;
  --gold:        #C8973A;
  --gold-light:  #E2B96A;
  --gold-pale:   #F5EDD8;
  --cream:       #F8F4ED;
  --cream-dark:  #EDE7D9;
  --ink:         #1A1A2A;
  --ink-soft:    #4A5060;
  --ink-faint:   #7A8090;
  --white:       #FFFFFF;
  --line:        rgba(13,43,30,.15);
  --line-soft:   rgba(13,43,30,.08);
  --red-dark:    #7A1C1C;

  --font-display: 'Fraunces', serif;
  --font-sans:    'DM Sans', sans-serif;
  --font-mono:    'JetBrains Mono', monospace;

  --nav-h: 72px;
  --max-w: 1200px;
  --side:  clamp(24px, 5vw, 80px);
}

/* ── RESET ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { font-size: 16px; scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }
body {
  font-family: var(--font-sans);
  font-weight: 300;
  background: var(--cream);
  color: var(--ink);
  line-height: 1.7;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }

/* ── PRINT ── */
@media print {
  .site-nav, .page-next, .site-foot { display: none !important; }
  body { background: #fff; font-size: 11pt; }
  section { page-break-inside: avoid; }
}

/* ═══════════════════════════════
   NAV
═══════════════════════════════ */
.site-nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 200;
  height: var(--nav-h);
  background: rgba(13,43,30,.97);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  display: flex; align-items: center;
  padding: 0 var(--side);
  gap: 32px;
  border-bottom: 1px solid rgba(200,151,58,.2);
}
.brand {
  display: flex; align-items: center; gap: 10px;
  font-family: var(--font-display);
  font-size: 18px; font-weight: 500; color: var(--cream);
  white-space: nowrap; flex-shrink: 0;
  transition: opacity .2s;
}
.brand:hover { opacity: .8; }
.brand em {
  font-style: italic; font-weight: 300;
  font-size: 13px; color: var(--gold-light);
  border-left: 1px solid rgba(200,151,58,.4);
  padding-left: 10px; margin-left: 2px;
}
.brand-mark {
  width: 36px; height: 36px; flex-shrink: 0;
  background: var(--gold);
  clip-path: polygon(50% 0%, 100% 38%, 82% 100%, 18% 100%, 0% 38%);
  position: relative;
}
.brand-mark::after {
  content: ''; position: absolute; inset: 6px;
  background: var(--forest-deep);
  clip-path: polygon(50% 0%, 100% 38%, 82% 100%, 18% 100%, 0% 38%);
}
.nav-links {
  display: flex; align-items: center; gap: 4px;
  margin-left: auto; flex-wrap: nowrap;
}
.nav-links a {
  font-size: 13px; font-weight: 400;
  color: rgba(248,244,237,.65);
  padding: 6px 12px; border-radius: 3px;
  transition: color .2s, background .2s;
  white-space: nowrap;
}
.nav-links a:hover, .nav-links a.current {
  color: var(--gold-light);
  background: rgba(200,151,58,.1);
}
.nav-links .pill {
  background: var(--gold); color: var(--forest-deep) !important;
  font-weight: 600; padding: 6px 16px;
  border-radius: 40px; margin-left: 8px;
  transition: background .2s, transform .2s !important;
}
.nav-links .pill:hover { background: var(--gold-light); transform: translateY(-1px); }
.nav-toggle {
  display: none; background: none; border: none;
  color: var(--cream); font-size: 22px; cursor: pointer;
  margin-left: auto; padding: 4px 8px;
}

/* ═══════════════════════════════
   LAYOUT HELPERS
═══════════════════════════════ */
.wrap { max-width: var(--max-w); margin: 0 auto; padding: 0 var(--side); }
section { padding: 80px 0; }
section:nth-child(even) { background: var(--white); }
section:nth-child(odd)  { background: var(--cream); }
section.dark { background: var(--forest-deep) !important; color: var(--cream); }
section.gold  { background: var(--gold-pale) !important; }

/* ═══════════════════════════════
   PAGE HEADER
═══════════════════════════════ */
.page-header {
  background: var(--forest-deep);
  padding: calc(var(--nav-h) + 64px) 0 80px;
  position: relative; overflow: hidden;
}
.page-header::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; bottom: 0;
  background: radial-gradient(ellipse 80% 60% at 70% 40%, rgba(200,151,58,.07), transparent);
  pointer-events: none;
}
.page-header::after {
  content: '';
  position: absolute; bottom: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}
.page-header-wrap { max-width: var(--max-w); margin: 0 auto; padding: 0 var(--side); position: relative; }
.crumbs { font-size: 12px; color: rgba(248,244,237,.4); letter-spacing: .08em; margin-bottom: 20px; }
.crumbs a { color: rgba(200,151,58,.7); }
.crumbs a:hover { color: var(--gold-light); }
.num {
  font-family: var(--font-display); font-style: italic; font-weight: 300;
  font-size: clamp(72px, 12vw, 140px); line-height: 1;
  color: rgba(200,151,58,.12); letter-spacing: -.02em;
  margin-bottom: -20px; pointer-events: none;
}
.page-header h1 {
  font-family: var(--font-display); font-weight: 400;
  font-size: clamp(36px, 6vw, 72px); line-height: 1.08;
  color: var(--cream); letter-spacing: -.02em;
  max-width: 820px;
}
.page-header h1 em { font-style: italic; color: var(--gold-light); }
.page-header .lead {
  font-size: clamp(16px, 2vw, 20px); font-weight: 300;
  color: rgba(248,244,237,.7); max-width: 680px;
  line-height: 1.6; margin-top: 20px;
}

/* ═══════════════════════════════
   HERO (index only)
═══════════════════════════════ */
.hero {
  min-height: 100vh;
  background: var(--forest-deep);
  display: grid; place-items: center;
  position: relative; overflow: hidden;
  padding-top: var(--nav-h);
}
.hero-bg {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 70% 50% at 80% 40%, rgba(200,151,58,.06), transparent),
    radial-gradient(ellipse 50% 70% at 20% 70%, rgba(22,77,53,.5), transparent);
}
.hero-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 60px; align-items: center;
  max-width: var(--max-w); width: 100%; padding: 0 var(--side);
  position: relative; z-index: 1;
}
.hero-content { padding: 60px 0; }
.hero-kicker {
  font-family: var(--font-mono); font-size: 11px;
  letter-spacing: .2em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 24px;
  display: flex; align-items: center; gap: 12px;
}
.hero-kicker::before {
  content: ''; display: block; width: 32px; height: 1px; background: var(--gold);
}
.hero h1 {
  font-family: var(--font-display); font-weight: 300;
  font-size: clamp(44px, 6vw, 88px); line-height: 1.02;
  color: var(--cream); letter-spacing: -.03em;
}
.hero h1 em { font-style: italic; color: var(--gold-light); display: block; }
.hero h1 strong {
  font-weight: 600; color: var(--white);
  font-size: .95em;
}
.hero-sub {
  font-size: 18px; font-weight: 300;
  color: rgba(248,244,237,.6); margin-top: 28px;
  max-width: 480px; line-height: 1.6;
}
.hero-actions { display: flex; gap: 16px; margin-top: 40px; flex-wrap: wrap; }
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 28px; font-size: 14px; font-weight: 500;
  border-radius: 3px; cursor: pointer;
  transition: all .2s; border: none;
  font-family: var(--font-sans);
}
.btn-gold { background: var(--gold); color: var(--forest-deep); }
.btn-gold:hover { background: var(--gold-light); transform: translateY(-2px); }
.btn-outline {
  background: transparent; color: var(--cream);
  border: 1px solid rgba(248,244,237,.25);
}
.btn-outline:hover { border-color: var(--gold); color: var(--gold-light); }
.hero-stats {
  display: grid; grid-template-columns: repeat(2,1fr);
  gap: 16px; margin-top: 40px;
}
.hero-stat { border: 1px solid rgba(200,151,58,.2); padding: 20px; }
.hero-stat-val {
  font-family: var(--font-display); font-size: 36px;
  font-weight: 600; color: var(--white); line-height: 1;
}
.hero-stat-val sup { font-size: 20px; }
.hero-stat-label { font-size: 12px; color: rgba(200,151,58,.8); margin-top: 6px; letter-spacing: .05em; text-transform: uppercase; }

.hero-visual { position: relative; }
.hero-tank-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 12px;
}
.hero-tank-img {
  aspect-ratio: 3/4; overflow: hidden; position: relative;
  border: 1px solid rgba(200,151,58,.2);
}
.hero-tank-img img { width: 100%; height: 100%; object-fit: cover; }
.hero-tank-img:first-child { aspect-ratio: 2/3; grid-row: span 2; }
.hero-tag {
  position: absolute; bottom: 12px; left: 12px;
  font-family: var(--font-mono); font-size: 9px;
  background: rgba(13,43,30,.85); color: var(--gold);
  padding: 4px 8px; letter-spacing: .1em; text-transform: uppercase;
}

/* ═══════════════════════════════
   TYPOGRAPHY
═══════════════════════════════ */
.eyebrow {
  font-family: var(--font-mono); font-size: 10px;
  letter-spacing: .2em; text-transform: uppercase;
  color: var(--gold);
}
h2 {
  font-family: var(--font-display); font-weight: 400;
  font-size: clamp(28px, 4vw, 52px); line-height: 1.1;
  color: var(--forest-deep); letter-spacing: -.02em;
}
h2 em { font-style: italic; color: var(--forest-light); }
h2.on-dark { color: var(--cream); }
h2.on-dark em { color: var(--gold-light); }
h3 {
  font-family: var(--font-display); font-size: clamp(20px, 2.5vw, 28px);
  font-weight: 500; color: var(--forest-deep); letter-spacing: -.01em;
}
h3.on-dark { color: var(--cream); }
h4 {
  font-family: var(--font-sans); font-size: 13px;
  text-transform: uppercase; letter-spacing: .1em;
  font-weight: 500; color: var(--ink-faint);
}
p { color: var(--ink-soft); font-size: 15px; line-height: 1.75; }
p.lead { font-size: clamp(16px, 2vw, 20px); font-weight: 300; line-height: 1.6; }
p.on-dark { color: rgba(248,244,237,.7); }
strong { font-weight: 600; color: var(--ink); }
strong.on-dark { color: var(--cream); }

/* ═══════════════════════════════
   SECTION HEADERS
═══════════════════════════════ */
.sec-label {
  display: flex; align-items: center; gap: 16px;
  margin-bottom: 48px;
}
.sec-label-line {
  flex: 1; height: 1px; background: var(--line);
  max-width: 60px;
}
.sec-title { margin-bottom: 24px; }
.sec-intro {
  max-width: 640px; margin-bottom: 56px;
}

/* ═══════════════════════════════
   CARDS
═══════════════════════════════ */
.card-grid { display: grid; gap: 24px; }
.card-grid-2 { grid-template-columns: repeat(2,1fr); }
.card-grid-3 { grid-template-columns: repeat(3,1fr); }
.card-grid-4 { grid-template-columns: repeat(4,1fr); }

.card {
  background: var(--white);
  border: 1px solid var(--line);
  padding: 32px; position: relative;
  transition: transform .3s, box-shadow .3s;
}
.card:hover { transform: translateY(-4px); box-shadow: 0 20px 40px rgba(13,43,30,.08); }
.card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0;
  height: 3px; background: var(--gold);
  transform: scaleX(0); transform-origin: left;
  transition: transform .3s;
}
.card:hover::before { transform: scaleX(1); }
.card-icon {
  width: 48px; height: 48px; background: var(--gold-pale);
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px; font-size: 22px;
}
.card h3 { font-size: 20px; margin-bottom: 12px; }
.card p { font-size: 14px; }
.card-num {
  font-family: var(--font-display); font-style: italic;
  font-size: 48px; font-weight: 300; color: rgba(200,151,58,.2);
  position: absolute; bottom: 20px; right: 24px; line-height: 1;
}

/* ═══════════════════════════════
   STAT CARDS
═══════════════════════════════ */
.stat-row { display: grid; gap: 1px; background: var(--line); }
.stat-row-3 { grid-template-columns: repeat(3,1fr); }
.stat-row-4 { grid-template-columns: repeat(4,1fr); }
.stat {
  background: var(--forest-deep);
  padding: 40px 32px;
}
.stat-val {
  font-family: var(--font-display); font-weight: 600;
  font-size: clamp(32px, 4vw, 56px); line-height: 1;
  color: var(--white);
}
.stat-unit { font-size: .5em; font-weight: 300; color: var(--gold-light); }
.stat-label { font-size: 11px; letter-spacing: .15em; text-transform: uppercase; color: rgba(200,151,58,.7); margin-top: 10px; }
.stat-sub { font-size: 12px; color: rgba(248,244,237,.4); margin-top: 4px; }

/* ═══════════════════════════════
   TABLES
═══════════════════════════════ */
.tbl-wrap { overflow-x: auto; margin: 24px 0; }
table { width: 100%; border-collapse: collapse; font-size: 14px; }
thead tr { background: var(--forest-deep); color: var(--cream); }
thead th { padding: 14px 16px; text-align: left; font-weight: 400; font-size: 11px; letter-spacing: .1em; text-transform: uppercase; }
tbody tr { border-bottom: 1px solid var(--line-soft); }
tbody tr:hover { background: rgba(200,151,58,.03); }
tbody td { padding: 13px 16px; color: var(--ink-soft); }
tbody tr.sub-total td { background: rgba(13,43,30,.04); font-weight: 500; color: var(--forest-deep); }
tbody tr.total td { background: var(--forest-deep); color: var(--gold-light); font-weight: 500; }
.num-cell { font-family: var(--font-mono); font-size: 13px; text-align: right; }
.tag-cell {
  font-family: var(--font-mono); font-size: 11px;
  background: var(--forest-deep); color: var(--gold);
  padding: 2px 7px; border-radius: 2px; white-space: nowrap; display: inline-block;
}

/* ═══════════════════════════════
   CALLOUT
═══════════════════════════════ */
.callout {
  border-left: 4px solid var(--gold);
  background: var(--gold-pale);
  padding: 20px 24px; margin: 24px 0;
  border-radius: 0 4px 4px 0;
}
.callout p { margin: 0; font-size: 14px; }
.callout strong { color: var(--forest-deep); }
.callout-forest { border-left-color: var(--forest-mid); background: rgba(22,77,53,.06); }
.callout-red { border-left-color: var(--red-dark); background: rgba(122,28,28,.05); }

/* ═══════════════════════════════
   TWO-COL / THREE-COL
═══════════════════════════════ */
.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: start; }
.three-col { display: grid; grid-template-columns: repeat(3,1fr); gap: 40px; }
.col-2-1 { grid-template-columns: 2fr 1fr; }
.col-1-2 { grid-template-columns: 1fr 2fr; }

/* ═══════════════════════════════
   TIMELINE
═══════════════════════════════ */
.timeline { position: relative; padding-left: 28px; }
.timeline::before {
  content: ''; position: absolute; left: 6px; top: 8px; bottom: 8px;
  width: 2px; background: var(--line);
}
.tl-item { position: relative; margin-bottom: 32px; }
.tl-item::before {
  content: ''; position: absolute; left: -26px; top: 6px;
  width: 12px; height: 12px; border-radius: 50%;
  background: var(--gold); border: 3px solid var(--cream);
  box-shadow: 0 0 0 2px var(--gold);
}
.tl-phase {
  font-family: var(--font-mono); font-size: 10px;
  letter-spacing: .15em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 6px;
}
.tl-item h4 { font-size: 16px; font-weight: 600; color: var(--forest-deep); margin-bottom: 8px; letter-spacing: 0; }
.tl-item p { font-size: 14px; }

/* ═══════════════════════════════
   PROCESS FLOW
═══════════════════════════════ */
.flow-chain {
  display: flex; align-items: stretch; gap: 0;
  overflow-x: auto; margin: 40px 0;
}
.flow-step {
  flex: 1; min-width: 120px;
  background: var(--forest-deep); color: var(--cream);
  padding: 24px 20px; position: relative;
  text-align: center;
}
.flow-step:not(:last-child)::after {
  content: '▶';
  position: absolute; right: -14px; top: 50%;
  transform: translateY(-50%);
  color: var(--gold); font-size: 18px; z-index: 2;
}
.flow-step:nth-child(even) { background: var(--forest-mid); }
.flow-step-icon { font-size: 28px; margin-bottom: 10px; }
.flow-step-label {
  font-size: 11px; font-weight: 600; letter-spacing: .08em;
  text-transform: uppercase; color: var(--gold); margin-bottom: 6px;
}
.flow-step-desc { font-size: 12px; color: rgba(248,244,237,.6); line-height: 1.4; }

/* ═══════════════════════════════
   PILOT IMAGES
═══════════════════════════════ */
.pilot-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 24px; margin-top: 40px; }
.pilot-grid-4 { grid-template-columns: repeat(4,1fr); }
.pilot-card { display: flex; flex-direction: column; gap: 16px; }
.pilot-img-frame {
  position: relative; overflow: hidden;
  background: var(--forest-deep);
  aspect-ratio: 4/5; border: 1px solid var(--line);
}
.pilot-img-frame img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s ease; }
.pilot-card:hover .pilot-img-frame img { transform: scale(1.04); }
.pilot-img-frame::before {
  content: ''; position: absolute; top: 12px; left: 12px;
  width: 22px; height: 22px;
  border-top: 2px solid var(--gold); border-left: 2px solid var(--gold); z-index: 2;
}
.pilot-img-frame::after {
  content: ''; position: absolute; bottom: 12px; right: 12px;
  width: 22px; height: 22px;
  border-bottom: 2px solid var(--gold); border-right: 2px solid var(--gold); z-index: 2;
}
.pilot-img-num {
  position: absolute; top: 12px; right: 16px; z-index: 3;
  font-family: var(--font-display); font-style: italic;
  color: var(--gold); font-size: 20px; font-weight: 400;
}
.pilot-badge {
  position: absolute; bottom: 12px; left: 12px; z-index: 3;
  font-family: var(--font-mono); font-size: 9px; letter-spacing: .1em; text-transform: uppercase;
  background: rgba(13,43,30,.88); color: var(--gold-light);
  padding: 4px 10px;
}
.pilot-caption .eyebrow { display: block; margin-bottom: 8px; }
.pilot-caption h4 { font-family: var(--font-display); font-size: 17px; font-weight: 500; color: var(--forest-deep); margin-bottom: 8px; }
.pilot-caption p { font-size: 13px; line-height: 1.6; color: var(--ink-soft); margin: 0; }

/* ═══════════════════════════════
   RISK REGISTER
═══════════════════════════════ */
.risk-grid { display: grid; gap: 0; }
.risk-item {
  display: grid; grid-template-columns: 1fr auto auto 2fr;
  gap: 20px; align-items: center;
  padding: 16px 0; border-bottom: 1px solid var(--line-soft);
  font-size: 14px;
}
.risk-badge {
  font-size: 10px; padding: 3px 10px; font-weight: 500;
  border-radius: 2px; text-align: center; white-space: nowrap;
  font-family: var(--font-mono); letter-spacing: .05em;
}
.risk-low { background: rgba(22,77,53,.12); color: var(--forest-mid); }
.risk-med { background: rgba(200,151,58,.15); color: #7A5500; }
.risk-high { background: rgba(122,28,28,.12); color: var(--red-dark); }

/* ═══════════════════════════════
   PAGE-NEXT NAV
═══════════════════════════════ */
.page-next {
  background: #0D2B1E !important;
  color: #F8F4ED !important;
  border-top: 1px solid rgba(200,151,58,.15);
}
.page-next-inner {
  max-width: var(--max-w); margin: 0 auto; padding: 0 var(--side);
  display: grid; grid-template-columns: 1fr 1fr;
}
.page-next a,
.page-next a:link,
.page-next a:visited,
.page-next a:active {
  display: flex; align-items: center; gap: 24px;
  padding: 40px 0;
  color: #F8F4ED !important;
  text-decoration: none !important;
  transition: background .2s;
}
.page-next a:hover { opacity: .8; }
.page-next .prev { border-right: 1px solid rgba(200,151,58,.15); padding-right: 40px; }
.page-next .next { padding-left: 40px; justify-content: flex-end; text-align: right; }
.page-next .arrow {
  font-size: 32px;
  color: #E2B96A !important;
  flex-shrink: 0;
  font-weight: 400;
  line-height: 1;
  font-family: var(--font-body);
}
.page-next .label-small {
  font-size: 11px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: #C8973A !important;
  margin-bottom: 6px;
}
.page-next .label-big {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 500;
  color: #F8F4ED !important;
}

/* ═══════════════════════════════
   FOOTER
═══════════════════════════════ */
.site-foot {
  background: #081810; color: rgba(248,244,237,.5);
  padding: 64px 0 40px;
}
.foot-grid {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px; padding-bottom: 48px;
  border-bottom: 1px solid rgba(248,244,237,.08);
}
.site-foot h4 { color: var(--gold-light); font-size: 11px; margin-bottom: 16px; }
.site-foot ul { display: flex; flex-direction: column; gap: 10px; }
.site-foot ul a { font-size: 13px; color: rgba(248,244,237,.5); transition: color .2s; }
.site-foot ul a:hover { color: var(--gold-light); }
.site-foot p { font-size: 13px; line-height: 1.6; }
.foot-bottom {
  display: flex; justify-content: space-between; align-items: center;
  padding-top: 28px; font-size: 12px; color: rgba(248,244,237,.25);
}

/* ═══════════════════════════════
   RESPONSIVE
═══════════════════════════════ */
@media (max-width: 1100px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-visual { display: none; }
  .foot-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 900px) {
  :root { --side: 24px; }
  .nav-links { display: none; flex-direction: column; gap: 0; }
  .nav-links.open {
    display: flex; position: fixed; top: var(--nav-h); left: 0; right: 0;
    background: var(--forest-deep); padding: 16px 0;
    border-bottom: 1px solid rgba(200,151,58,.2);
  }
  .nav-links.open a { padding: 12px var(--side); border-radius: 0; }
  .nav-toggle { display: block; }
  .two-col, .three-col, .col-2-1, .col-1-2 { grid-template-columns: 1fr; }
  .card-grid-2, .card-grid-3, .card-grid-4 { grid-template-columns: 1fr; }
  .stat-row-3, .stat-row-4 { grid-template-columns: 1fr 1fr; }
  .pilot-grid, .pilot-grid-4 { grid-template-columns: 1fr; }
  .risk-item { grid-template-columns: 1fr; gap: 8px; }
  .page-next-inner { grid-template-columns: 1fr; }
  .page-next .prev { border-right: none; border-bottom: 1px solid rgba(200,151,58,.15); }
  .foot-grid { grid-template-columns: 1fr; }
  .foot-bottom { flex-direction: column; gap: 8px; text-align: center; }
  .flow-chain { flex-direction: column; }
  .flow-step:not(:last-child)::after { content: '▼'; right: auto; left: 50%; top: auto; bottom: -14px; transform: translateX(-50%); }
}
@media (max-width: 600px) {
  .hero h1 { font-size: 38px; }
  .stat-row-3, .stat-row-4 { grid-template-columns: 1fr; }
  .hero-stats { grid-template-columns: 1fr; }
}
