/* ═══════════════════════════════════════════════════════════
   Peak & Grow Ltd. — Shared Stylesheet
   Brand Colors: Black #000000 · Gold #fed966 · Green #395723
   www.peakandgrow.com
═══════════════════════════════════════════════════════════ */

@import url('https://fonts.googleapis.com/css2?family=Fraunces:ital,opsz,wght@0,9..144,300;0,9..144,400;0,9..144,600;0,9..144,700;1,9..144,300;1,9..144,400&family=DM+Sans:wght@300;400;500;600;700&family=DM+Mono:wght@400;500&display=swap');

/* ── Variables ── */
:root {
  --dark:        #0d1a09;   /* very dark green-black */
  --dark2:       #1a2e0e;   /* slightly lighter dark */
  --mid:         #395723;   /* LOGO GREEN — nameplate */
  --brand:       #395723;   /* LOGO GREEN — primary brand */
  --brand-light: #5a8a34;   /* lighter green accent */
  --gold:        #fed966;   /* LOGO GOLD — center bar */
  --gold-dark:   #c9a800;   /* deeper gold */
  --red:         #ee0000;   /* LOGO RED — tagline accent */
  --charcoal:    #141414;
  --gray:        #6b7280;
  --light-gray:  #f5f4ee;   /* warm off-white matching logo bg */
  --off-white:   #fafaf7;
  --white:       #ffffff;
  --border:      rgba(57,87,35,0.15);
  --shadow:      0 4px 32px rgba(0,0,0,0.10);
  --shadow-lg:   0 16px 64px rgba(0,0,0,0.15);
  --font-display:'Fraunces', Georgia, serif;
  --font-body:   'DM Sans', system-ui, sans-serif;
  --font-mono:   'DM Mono', monospace;
  --ease:        cubic-bezier(0.22, 1, 0.36, 1);
  --nav-h:       72px;
  --radius:      8px;
}

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

/* ── Layout ── */
.container { max-width: 1200px; margin: 0 auto; padding: 0 clamp(20px, 5vw, 64px); }
.section { padding: clamp(64px, 10vw, 112px) 0; }
.section--dark     { background: #0d1a09; color: var(--white); }
.section--green    { background: var(--mid); color: var(--white); }
.section--gray     { background: var(--light-gray); }
.section--charcoal { background: var(--charcoal); color: var(--white); }
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(32px, 6vw, 80px); }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.align-center { align-items: center; }

/* ── Typography ── */
.label {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--font-mono); font-size: 11px; font-weight: 500;
  letter-spacing: 3px; text-transform: uppercase; color: var(--brand);
  margin-bottom: 14px;
}
.label::before { content: ''; width: 24px; height: 2px; background: var(--gold); border-radius: 1px; }
.label--light { color: var(--brand-light); }
.label--light::before { background: var(--gold); }
.label--gold { color: var(--gold); }
.label--gold::before { background: var(--white); }

.h1 { font-family: var(--font-display); font-size: clamp(40px, 6.5vw, 80px); font-weight: 700; line-height: 1.05; letter-spacing: -2px; }
.h2 { font-family: var(--font-display); font-size: clamp(30px, 4.5vw, 52px); font-weight: 600; line-height: 1.1; letter-spacing: -1.5px; }
.h3 { font-family: var(--font-display); font-size: clamp(20px, 2.5vw, 28px); font-weight: 600; line-height: 1.2; }
.h4 { font-family: var(--font-display); font-size: 20px; font-weight: 600; }

.lead { font-size: clamp(15px, 1.8vw, 18px); color: var(--gray); line-height: 1.75; font-weight: 300; }
.lead--light { color: rgba(255,255,255,0.6); }
.gold-rule { width: 48px; height: 3px; background: var(--gold); border-radius: 2px; margin: 18px 0 24px; }
.gold-rule--center { margin-left: auto; margin-right: auto; }
.text-center { text-align: center; }
.text-white { color: var(--white); }
.text-brand { color: var(--brand); }
.text-gold  { color: var(--gold); }
.italic { font-style: italic; }

/* ── Buttons ── */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 14px 28px; border-radius: 4px;
  font-family: var(--font-body); font-size: 14px; font-weight: 600;
  letter-spacing: 0.5px; transition: all 0.3s var(--ease);
  white-space: nowrap;
}
.btn svg { transition: transform 0.3s var(--ease); flex-shrink: 0; }
.btn:hover svg { transform: translateX(4px); }
.btn--primary { background: var(--gold); color: #000; }
.btn--primary:hover { background: var(--gold-dark); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(254,217,102,0.45); }
.btn--dark { background: #000; color: var(--white); }
.btn--dark:hover { background: var(--mid); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(0,0,0,0.25); }
.btn--brand { background: var(--brand); color: var(--white); }
.btn--brand:hover { background: var(--dark2); transform: translateY(-2px); }
.btn--outline-dark { border: 1.5px solid rgba(0,0,0,0.2); color: var(--charcoal); }
.btn--outline-dark:hover { border-color: var(--brand); color: var(--brand); }
.btn--outline-light { border: 1.5px solid rgba(255,255,255,0.3); color: var(--white); }
.btn--outline-light:hover { border-color: var(--gold); color: var(--gold); }
.btn--lg { padding: 17px 36px; font-size: 15px; }
.btn--sm { padding: 10px 20px; font-size: 13px; }

/* ── Logo ── */
.logo-mark { 
  display: inline-flex;
  margin-right: 300px; 
  align-items: left; 
  gap: 0; 
}

.logo-mark img.site-logo {
  height: 52px;
  width: auto;
  flex-shrink: 0;
  object-fit: contain;
  filter: drop-shadow(0 1px 3px rgba(0,0,0,0.3));
}
/* hide old svg/text children if any remain */
.logo-mark svg { display: none; }
.logo-text { display: none; }

/* ── Navbar ── */
#navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  height: var(--nav-h); display: flex; align-items: center;
  transition: background 0.4s var(--ease), box-shadow 0.4s var(--ease);
  background: rgba(0,0,0,0.92); backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(254,217,102,0.12);
}
#navbar.scrolled {
  background: rgba(0,0,0,0.97);
  box-shadow: 0 1px 0 rgba(254,217,102,0.1), 0 8px 32px rgba(0,0,0,0.35);
}
.nav-inner { display: flex; 
  align-items: center; 
  justify-content: space-between; 
  width: 100%; 
}

.nav-links { display: flex; 
  align-items: center; 
  gap: 32px;
 }

.nav-links a {
  font-size: 13.5px; 
  font-weight: 500; 
  color: rgba(255,255,255,0.72);
  letter-spacing: 0.3px; 
  transition: color 0.2s; 
  position: relative; 
  padding-bottom: 2px;
}

.nav-links a::after {
  content:''; 
  position: absolute; 
  bottom: -3px; 
  left: 0; 
  right: 0;
  height: 2px; 
  background: var(--gold);
  transform: scaleX(0); transform-origin: left;
  transition: transform 0.3s var(--ease);
}
.nav-links a:hover,
.nav-links a.active { color: var(--white); }
.nav-links a:hover::after,
.nav-links a.active::after { transform: scaleX(1); }
.nav-cta {
  padding: 10px 22px; 
  background: var(--gold); 
  color: #000;
  border-radius: 4px; 
  font-size: 13px; 
  font-weight: 700;
  transition: all 0.3s var(--ease);
  margin-left: 10px;
}
.nav-cta:hover { background: var(--gold-dark); transform: translateY(-1px); }

/* Hamburger */
.hamburger { display: none; flex-direction: column; gap: 5px; padding: 6px; }
.hamburger span { display: block; width: 24px; height: 2px; background: var(--white); border-radius: 2px; transition: all 0.3s var(--ease); }
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile menu */
.mobile-menu {
  display: none; 
  position: fixed; 
  inset: 0; 
  z-index: 999;
  background: #000; 
  padding: var(--nav-h) 0 40px;
  flex-direction: column; 
  align-items: center; 
  justify-content: center; 
  gap: 28px;
}
.mobile-menu.open { display: flex; animation: fadeIn 0.25s ease; }
.mobile-menu a { font-size: 26px; font-family: var(--font-display); font-weight: 600; color: var(--white); transition: color 0.2s; }
.mobile-menu a:hover { color: var(--gold); }

/* ── Page Hero (inner pages) ── */
.page-hero {
  background: #000; padding: calc(var(--nav-h) + 56px) 0 72px;
  position: relative; overflow: hidden;
}
.page-hero-bg {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, #000000 0%, #0d1a09 50%, #111a0a 100%);
}
.page-hero-grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(57,87,35,0.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(57,87,35,0.07) 1px, transparent 1px);
  background-size: 56px 56px;
}
.page-hero-stripe { position: absolute; left: 0; top: 0; bottom: 0; width: 5px; background: linear-gradient(to bottom, var(--gold), var(--gold-dark)); }
.page-hero-orb { position: absolute; border-radius: 50%; filter: blur(80px); opacity: 0.12; pointer-events: none; }
.page-hero-content { position: relative; z-index: 2; }
.breadcrumb { display: flex; align-items: center; gap: 8px; margin-bottom: 20px; font-size: 12px; color: rgba(255,255,255,0.35); }
.breadcrumb a { color: rgba(255,255,255,0.5); transition: color 0.2s; }
.breadcrumb a:hover { color: var(--gold); }
.breadcrumb span { color: var(--gold); }
.page-hero-title { font-family: var(--font-display); font-size: clamp(36px, 5.5vw, 68px); font-weight: 700; color: var(--white); line-height: 1.06; letter-spacing: -2px; margin-bottom: 20px; }
.page-hero-title em { font-style: italic; color: var(--gold); }
.page-hero-desc { font-size: clamp(15px, 1.8vw, 18px); color: rgba(255,255,255,0.55); line-height: 1.75; max-width: 600px; }

/* ── Ticker ── */
.ticker { background: var(--gold); overflow: hidden; height: 36px; display: flex; align-items: center; }
.ticker-track { display: flex; white-space: nowrap; animation: tickerScroll 30s linear infinite; }
.ticker-item { display: inline-flex; align-items: center; gap: 14px; padding: 0 28px; font-size: 11.5px; font-weight: 700; color: #000; letter-spacing: 1.5px; text-transform: uppercase; }
.ticker-dot { width: 4px; height: 4px; border-radius: 50%; background: #000; opacity: 0.35; }

/* ── Cards ── */
.card {
  background: var(--white); border: 1px solid var(--border); border-radius: var(--radius);
  transition: all 0.35s var(--ease); overflow: hidden;
}
.card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: var(--brand); }
.card-body { padding: 28px 32px; }
.card-top-bar { height: 5px; background: linear-gradient(90deg, var(--brand), var(--gold)); }

.stat-card { background: var(--light-gray); border-radius: var(--radius); padding: 28px 24px; text-align: center; transition: all 0.3s var(--ease); }
.stat-card:hover { background: var(--brand); }
.stat-card:hover .stat-card-val { color: var(--white); }
.stat-card:hover .stat-card-lbl { color: rgba(255,255,255,0.7); }
.stat-card-val { font-family: var(--font-display); font-size: 42px; font-weight: 700; color: #000; letter-spacing: -2px; line-height: 1; }
.stat-card-lbl { font-size: 12px; color: var(--gray); margin-top: 6px; font-weight: 500; }

/* ── Feature Box ── */
.feature-box {
  padding: 28px 32px; border-radius: var(--radius);
  border: 1px solid var(--border); background: var(--white);
  position: relative; overflow: hidden;
  transition: all 0.35s var(--ease);
}
.feature-box::before {
  content:''; position: absolute; left: 0; top: 0; bottom: 0;
  width: 4px; background: var(--gold);
  transform: scaleY(0); transform-origin: bottom;
  transition: transform 0.35s var(--ease);
}
.feature-box:hover { box-shadow: var(--shadow); border-color: var(--brand); }
.feature-box:hover::before { transform: scaleY(1); }
.feature-num { font-family: var(--font-mono); font-size: 10px; letter-spacing: 2px; color: var(--gold-dark); display: block; margin-bottom: 10px; }
.feature-title { font-family: var(--font-display); font-size: 18px; font-weight: 600; color: #000; margin-bottom: 8px; }
.feature-desc { font-size: 13.5px; color: var(--gray); line-height: 1.7; }

/* ── Dark Cards ── */
.dark-card {
  padding: 28px; border: 1px solid rgba(255,255,255,0.07);
  border-radius: var(--radius); background: rgba(255,255,255,0.03);
  transition: all 0.3s var(--ease);
}
.dark-card:hover { background: rgba(57,87,35,0.12); border-color: rgba(254,217,102,0.35); transform: translateY(-4px); }

/* ── FAQ ── */
.faq-item { border-bottom: 1px solid var(--border); }
.faq-question {
  width: 100%; text-align: left; padding: 20px 0;
  display: flex; justify-content: space-between; align-items: center;
  font-size: 15px; font-weight: 600; color: #000;
  cursor: pointer; transition: color 0.2s;
}
.faq-question:hover { color: var(--brand); }
.faq-icon { font-size: 20px; color: var(--gold-dark); transition: transform 0.3s var(--ease); flex-shrink: 0; }
.faq-item.open .faq-icon { transform: rotate(45deg); }
.faq-answer { overflow: hidden; max-height: 0; transition: max-height 0.4s var(--ease); }
.faq-answer-inner { padding: 0 0 20px; font-size: 14px; color: var(--gray); line-height: 1.75; }

/* ── Timeline ── */
.timeline { position: relative; }
.timeline::before { content:''; position: absolute; left: 30px; top: 0; bottom: 0; width: 2px; background: linear-gradient(to bottom, var(--brand), var(--gold)); }
.timeline-item { display: grid; grid-template-columns: 72px 1fr; gap: 28px; margin-bottom: 40px; align-items: start; }
.timeline-num {
  width: 60px; height: 60px; border-radius: 50%; background: #000;
  border: 2.5px solid var(--gold); color: var(--white);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display); font-size: 18px; font-weight: 700;
  position: relative; z-index: 1; flex-shrink: 0;
  transition: all 0.3s var(--ease);
}
.timeline-item:hover .timeline-num { background: var(--brand); border-color: var(--brand); transform: scale(1.1); }
.timeline-content { padding: 24px 28px; background: var(--white); border: 1px solid var(--border); border-radius: var(--radius); margin-top: 4px; transition: all 0.3s var(--ease); }
.timeline-item:hover .timeline-content { border-color: var(--gold); box-shadow: 0 8px 32px rgba(254,217,102,0.12); }
.timeline-title { font-family: var(--font-display); font-size: 18px; font-weight: 600; color: #000; margin-bottom: 8px; }
.timeline-desc { font-size: 13.5px; color: var(--gray); line-height: 1.7; }

/* ── Tag Pills ── */
.tag { display: inline-block; padding: 4px 12px; border-radius: 100px; font-size: 11px; font-weight: 600; letter-spacing: 0.5px; }
.tag--green { background: rgba(57,87,35,0.1); color: var(--mid); border: 1px solid rgba(57,87,35,0.2); }
.tag--gold  { background: rgba(254,217,102,0.15); color: var(--gold-dark); border: 1px solid rgba(254,217,102,0.4); }
.tag--dark  { background: rgba(0,0,0,0.07); color: #000; border: 1px solid rgba(0,0,0,0.14); }
.tags { display: flex; flex-wrap: wrap; gap: 6px; margin-top: 14px; }

/* ── Checklist ── */
.checklist { display: flex; flex-direction: column; gap: 10px; }
.checklist li { display: flex; align-items: flex-start; gap: 12px; font-size: 14px; color: var(--charcoal); line-height: 1.6; }
.checklist li::before { content: '✓'; color: var(--brand); font-weight: 700; font-size: 13px; margin-top: 2px; flex-shrink: 0; }
.checklist--white li { color: rgba(255,255,255,0.8); }
.checklist--white li::before { color: var(--gold); }

/* ── Process Steps ── */
.process-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 0; counter-reset: step; }
.process-step {
  padding: 32px 24px; border: 1px solid var(--border);
  border-right: none; position: relative; background: var(--white);
  transition: background 0.3s; counter-increment: step;
}
.process-step:last-child { border-right: 1px solid var(--border); }
.process-step:hover { background: var(--light-gray); }
.process-step::before {
  content: counter(step, decimal-leading-zero);
  display: block; font-family: var(--font-display); font-size: 42px;
  font-weight: 700; color: rgba(57,87,35,0.10); line-height: 1; margin-bottom: 10px;
}
.process-step-title { font-weight: 700; font-size: 14px; color: #000; margin-bottom: 8px; }
.process-step-desc { font-size: 12.5px; color: var(--gray); line-height: 1.6; }
.process-step-arrow {
  position: absolute; right: -12px; top: 50%;
  transform: translateY(-50%); z-index: 1;
  width: 24px; height: 24px; border-radius: 50%;
  background: var(--gold); display: flex; align-items: center; justify-content: center;
  font-size: 12px; color: #000; font-weight: 700;
}
.process-step:last-child .process-step-arrow { display: none; }

/* ── Stats Banner ── */
.stats-banner { background: linear-gradient(135deg, var(--brand), #0d1a09); padding: 64px 0; }
.stats-banner-grid { display: grid; grid-template-columns: repeat(4, 1fr); }
.stats-banner-item { text-align: center; padding: 24px; border-right: 1px solid rgba(255,255,255,0.12); }
.stats-banner-item:last-child { border-right: none; }
.stats-banner-val { font-family: var(--font-display); font-size: clamp(40px, 4vw, 56px); font-weight: 700; color: var(--white); letter-spacing: -2px; line-height: 1; }
.stats-banner-suffix { color: var(--gold); }
.stats-banner-lbl { font-size: 12.5px; color: rgba(255,255,255,0.55); margin-top: 6px; letter-spacing: 0.5px; }

/* ── CTA Banner ── */
.cta-banner { background: #000; padding: 80px 0; position: relative; overflow: hidden; }
.cta-banner::before { content:''; position: absolute; inset: 0; background: radial-gradient(ellipse at 65% 50%, rgba(57,87,35,0.18) 0%, transparent 70%); }
.cta-banner-inner { position: relative; z-index: 1; display: flex; justify-content: space-between; align-items: center; gap: 48px; flex-wrap: wrap; }
.cta-banner-title { font-family: var(--font-display); font-size: clamp(28px, 4vw, 44px); font-weight: 700; color: var(--white); line-height: 1.1; }
.cta-banner-title em { color: var(--gold); font-style: italic; }
.cta-banner-sub { font-size: 15px; color: rgba(255,255,255,0.42); margin-top: 10px; max-width: 480px; line-height: 1.65; }
.cta-banner-actions { display: flex; gap: 14px; flex-shrink: 0; flex-wrap: wrap; }

/* ── Form ── */
.form { display: flex; flex-direction: column; gap: 18px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.form-group { display: flex; flex-direction: column; gap: 7px; }
.form-group label { font-size: 11.5px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; color: var(--gray); }
.form-group input, .form-group select, .form-group textarea {
  padding: 13px 16px; border: 1.5px solid #e5e7eb; border-radius: 4px;
  font-family: var(--font-body); font-size: 14px; color: var(--charcoal);
  background: var(--white); outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
  border-color: var(--brand); box-shadow: 0 0 0 3px rgba(57,87,35,0.10);
}
.form-group textarea { resize: vertical; min-height: 130px; }
.form-success { display: none; padding: 18px; background: rgba(57,87,35,0.08); border: 1px solid var(--brand); border-radius: 6px; color: var(--mid); font-size: 14px; font-weight: 500; }

/* ── Footer ── */
footer { background: #0a0a0a; color: var(--white); padding-top: 64px; }
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 48px; padding-bottom: 48px; border-bottom: 1px solid rgba(255,255,255,0.07); }
.footer-desc { font-size: 13px; color: rgba(255,255,255,0.38); line-height: 1.75; margin: 16px 0 24px; max-width: 280px; }
.footer-social { display: flex; gap: 10px; }
.social-btn { width: 36px; height: 36px; border-radius: 6px; border: 1px solid rgba(255,255,255,0.1); background: rgba(255,255,255,0.04); display: flex; align-items: center; justify-content: center; font-size: 13px; color: rgba(255,255,255,0.5); transition: all 0.2s var(--ease); }
.social-btn:hover { background: var(--brand); border-color: var(--brand); color: var(--white); }
.footer-col h5 { font-size: 10.5px; font-weight: 700; letter-spacing: 2.5px; text-transform: uppercase; color: var(--gold); margin-bottom: 20px; }
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col ul li a { font-size: 13px; color: rgba(255,255,255,0.42); transition: color 0.2s; }
.footer-col ul li a:hover { color: var(--white); }
.footer-bottom { padding: 20px 0; display: flex; justify-content: space-between; align-items: center; font-size: 12px; color: rgba(255,255,255,0.22); flex-wrap: wrap; gap: 10px; }
.footer-bottom a { color: var(--gold); }

/* ── Back to top ── */
#back-top { position: fixed; bottom: 28px; right: 28px; z-index: 500; width: 44px; height: 44px; border-radius: 50%; background: var(--gold); color: #000; display: flex; align-items: center; justify-content: center; font-size: 18px; font-weight: 700; box-shadow: 0 4px 16px rgba(254,217,102,0.5); transition: all 0.3s var(--ease); opacity: 0; pointer-events: none; }
#back-top.visible { opacity:1; pointer-events: all; }
#back-top:hover { transform: translateY(-4px) scale(1.05); }

/* ── Animations ── */
@keyframes fadeUp { from { opacity:0; transform: translateY(40px); } to { opacity:1; transform: translateY(0); } }
@keyframes fadeIn { from { opacity:0; } to { opacity:1; } }
@keyframes tickerScroll { from { transform: translateX(0); } to { transform: translateX(-50%); } }
@keyframes float { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-10px); } }
@keyframes bgShift { 0%,100% { background-position: 0% 50%; } 50% { background-position: 100% 50%; } }
@keyframes pulse-ring { 0% { transform: scale(0.8); opacity:1; } 100% { transform: scale(2.2); opacity:0; } }

.reveal { opacity:0; transform: translateY(32px); transition: opacity 0.65s var(--ease), transform 0.65s var(--ease); }
.reveal.visible { opacity:1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }
.reveal-delay-5 { transition-delay: 0.5s; }

/* ── Responsive ── */
@media (max-width: 1024px) {
  .grid-3, .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .stats-banner-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .cta-banner-inner { flex-direction: column; }
}
@media (max-width: 768px) {
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .stats-banner-grid { grid-template-columns: 1fr 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .nav-links, .nav-cta { display: none; }
  .hamburger { display: flex; }
  .timeline::before { left: 26px; }
  .footer-bottom { flex-direction: column; text-align: center; }
}
@media (max-width: 480px) {
  .stats-banner-grid { grid-template-columns: 1fr; }
  .process-grid { grid-template-columns: 1fr; }
  .process-step { border-right: 1px solid var(--border); border-bottom: none; }
  .process-step:last-child { border-bottom: 1px solid var(--border); }
  .process-step-arrow { display: none; }
}
