﻿/* ============================================================
   Zenvest Edge — Main Stylesheet
   Color Theme: Enterprise Green (#00843D) + Deep Black
   ============================================================ */

/* ── Variables ── */
:root {
  --green-primary:   #00843D;
  --green-dark:      #006730;
  --green-bright:    #00b352;
  --green-neon:      #00ff88;
  --green-glow:      rgba(0, 132, 61, 0.12);
  --green-glow-strong: rgba(0, 132, 61, 0.30);

  --bg-base:        #070c08;
  --bg-dark:        #060a07;
  --bg-card:        #0c160e;
  --bg-card-2:      #101c12;
  --bg-card-hover:  #152318;

  --border-green:         rgba(0, 132, 61, 0.22);
  --border-green-hover:   rgba(0, 132, 61, 0.55);
  --border-subtle:        rgba(255, 255, 255, 0.06);

  --text-primary:   #ffffff;
  --text-secondary: #8fb89f;
  --text-muted:     #4d6b57;
  --text-accent:    #00ff88;

  --shadow-green: 0 0 40px rgba(0, 132, 61, 0.18);
  --shadow-card:  0 4px 32px rgba(0, 0, 0, 0.7);
  --shadow-hover: 0 8px 48px rgba(0, 132, 61, 0.22);

  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;

  --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-mono: 'JetBrains Mono', 'Fira Code', 'Courier New', monospace;

  --transition:      0.2s ease;
  --transition-slow: 0.4s ease;

  --max-width:  1280px;
  --nav-height: 72px;
}

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-sans);
  background: var(--bg-base);
  color: var(--text-primary);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
h1, h2, h3, h4, h5 { line-height: 1.2; font-weight: 700; }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

/* ── Layout ── */
.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}
.section { padding: 96px 0; }
.section-alt {
  background: linear-gradient(180deg, rgba(0,132,61,0.04) 0%, transparent 100%);
}

/* ── Navigation ── */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: var(--nav-height);
  background: rgba(7, 12, 8, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border-green);
  transition: background var(--transition-slow), box-shadow var(--transition-slow);
}
.navbar.scrolled {
  background: rgba(7, 12, 8, 0.98);
  box-shadow: 0 2px 32px rgba(0,0,0,0.85);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

/* Logo */
.nav-logo {
  display: flex; align-items: center; gap: 10px;
  font-weight: 800; font-size: 1.2rem;
  letter-spacing: -0.02em;
  transition: opacity var(--transition);
}
.nav-logo:hover { opacity: 0.85; }
.nav-logo-icon {
  width: 38px; height: 38px;
  background: var(--green-primary);
  border-radius: 9px;
  display: flex; align-items: center; justify-content: center;
  font-size: 18px;
  box-shadow: 0 0 18px rgba(0,132,61,0.55);
}
.nav-logo-text { display: flex; flex-direction: column; line-height: 1.1; }
.nav-logo-name { color: var(--text-primary); font-size: 1.1rem; }
.nav-logo-sub {
  font-size: 0.58rem; font-weight: 400;
  color: var(--text-muted);
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

/* Links */
.nav-links { display: flex; align-items: center; gap: 2px; list-style: none; }
.nav-item { position: relative; }
.nav-link {
  display: flex; align-items: center; gap: 4px;
  padding: 8px 14px;
  border-radius: var(--radius-sm);
  font-size: 0.88rem; font-weight: 500;
  color: var(--text-secondary);
  transition: color var(--transition), background var(--transition);
  cursor: pointer; white-space: nowrap;
}
.nav-link:hover, .nav-link.active {
  color: var(--text-primary);
  background: rgba(0,132,61,0.1);
}
.arrow { transition: transform var(--transition); font-style: normal; font-size: 0.7rem; }
.nav-item:hover .arrow { transform: rotate(180deg); }

/* Dropdown */
.nav-dropdown {
  position: absolute;
  top: calc(100% + 10px);
  left: 50%;
  transform: translateX(-50%) translateY(-8px);
  background: var(--bg-card-2);
  border: 1px solid var(--border-green);
  border-radius: var(--radius-md);
  padding: 8px;
  min-width: 252px;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition), transform var(--transition);
  box-shadow: var(--shadow-card);
}
.nav-item:hover .nav-dropdown {
  opacity: 1; pointer-events: all;
  transform: translateX(-50%) translateY(0);
}
.nav-dropdown-item {
  display: flex; align-items: center; gap: 11px;
  padding: 10px 13px;
  border-radius: var(--radius-sm);
  font-size: 0.86rem;
  color: var(--text-secondary);
  transition: all var(--transition);
}
.nav-dropdown-item:hover { background: var(--green-glow); color: var(--text-primary); }
.nav-dropdown-item-icon { font-size: 1.05rem; width: 22px; text-align: center; }
.nav-dropdown-item-text strong { display: block; font-size: 0.86rem; color: var(--text-primary); font-weight: 600; }
.nav-dropdown-item-text span { font-size: 0.73rem; color: var(--text-muted); }
.nav-divider { height: 1px; background: var(--border-green); margin: 6px 8px; }

/* Login Button */
.btn-login {
  display: inline-flex; align-items: center; gap: 7px;
  padding: 10px 22px;
  background: var(--green-primary); color: #fff;
  font-size: 0.88rem; font-weight: 700;
  border-radius: var(--radius-sm);
  border: none; cursor: pointer;
  transition: all var(--transition);
  box-shadow: 0 0 22px rgba(0,132,61,0.45);
  letter-spacing: 0.01em;
}
.btn-login:hover {
  background: var(--green-bright);
  box-shadow: 0 0 36px rgba(0,179,82,0.6);
  transform: translateY(-1px);
}

/* ── Hero ── */
.hero {
  min-height: 100vh;
  display: flex; align-items: center;
  padding-top: var(--nav-height);
  position: relative; overflow: hidden;
  background:
    radial-gradient(ellipse 80% 55% at 50% -5%, rgba(0,132,61,0.13) 0%, transparent 70%),
    radial-gradient(ellipse 50% 35% at 85% 80%, rgba(0,100,48,0.07) 0%, transparent 60%),
    var(--bg-base);
}
.hero::before {
  content: '';
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(0,132,61,0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0,132,61,0.035) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(ellipse 90% 85% at 50% 50%, black 20%, transparent 100%);
  pointer-events: none;
}
.hero-content {
  position: relative; z-index: 1;
  text-align: center; max-width: 920px;
  margin: 0 auto; padding: 80px 24px;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 9px;
  padding: 6px 16px;
  background: rgba(0,132,61,0.13);
  border: 1px solid var(--border-green-hover);
  border-radius: 100px;
  font-size: 0.75rem; font-weight: 700;
  color: var(--green-bright);
  letter-spacing: 0.1em; text-transform: uppercase;
  margin-bottom: 32px;
}
.hero-badge-dot {
  width: 6px; height: 6px;
  background: var(--green-neon); border-radius: 50%;
  animation: pulse-dot 2s infinite;
}
@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.4; transform: scale(0.7); }
}
.hero-title {
  font-size: clamp(2.6rem, 6.5vw, 4.8rem);
  font-weight: 900; letter-spacing: -0.035em;
  margin-bottom: 26px; line-height: 1.06;
}
.hero-title .accent { color: var(--green-primary); }
.hero-subtitle {
  font-size: clamp(1rem, 2vw, 1.18rem);
  color: var(--text-secondary);
  max-width: 620px; margin: 0 auto 52px;
  line-height: 1.75;
}
.hero-cta {
  display: flex; align-items: center; justify-content: center;
  gap: 16px; flex-wrap: wrap; margin-bottom: 72px;
}

/* Buttons */
.btn-primary {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 34px;
  background: var(--green-primary); color: #fff;
  font-size: 1rem; font-weight: 700;
  border-radius: var(--radius-sm); border: none; cursor: pointer;
  transition: all var(--transition);
  box-shadow: 0 0 34px rgba(0,132,61,0.55);
  letter-spacing: 0.01em;
}
.btn-primary:hover {
  background: var(--green-bright);
  box-shadow: 0 0 52px rgba(0,179,82,0.65);
  transform: translateY(-2px);
}
.btn-secondary {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 32px;
  background: transparent; color: var(--text-primary);
  font-size: 1rem; font-weight: 600;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border-green-hover);
  cursor: pointer; transition: all var(--transition);
}
.btn-secondary:hover {
  background: var(--green-glow);
  border-color: var(--green-primary);
}

/* Stats bar */
.hero-stats {
  display: flex; align-items: stretch;
  border: 1px solid var(--border-green);
  border-radius: var(--radius-md);
  background: rgba(12,22,14,0.85);
  backdrop-filter: blur(12px);
  overflow: hidden; max-width: 680px; margin: 0 auto;
}
.hero-stat {
  flex: 1; padding: 22px 14px; text-align: center;
  border-right: 1px solid var(--border-green);
}
.hero-stat:last-child { border-right: none; }
.hero-stat-value {
  font-size: 1.9rem; font-weight: 800;
  color: var(--green-bright); line-height: 1; margin-bottom: 5px;
}
.hero-stat-label {
  font-size: 0.7rem; color: var(--text-muted);
  text-transform: uppercase; letter-spacing: 0.09em; font-weight: 500;
}

/* ── Section headers ── */
.section-header { text-align: center; margin-bottom: 64px; }
.section-label {
  display: inline-block; font-size: 0.7rem; font-weight: 700;
  color: var(--green-bright); text-transform: uppercase;
  letter-spacing: 0.16em; margin-bottom: 12px;
}
.section-title {
  font-size: clamp(1.9rem, 4vw, 2.9rem);
  font-weight: 800; letter-spacing: -0.025em; margin-bottom: 16px;
}
.section-desc {
  font-size: 1.05rem; color: var(--text-secondary);
  max-width: 580px; margin: 0 auto; line-height: 1.7;
}

/* ── Feature Grid ── */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(270px, 1fr));
  gap: 18px;
}
.feature-card {
  background: var(--bg-card);
  border: 1px solid var(--border-green);
  border-radius: var(--radius-md);
  padding: 26px;
  display: flex; flex-direction: column; gap: 14px;
  transition: all var(--transition);
  cursor: pointer; position: relative; overflow: hidden;
}
.feature-card::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, var(--green-primary), var(--green-bright));
  opacity: 0; transition: opacity var(--transition);
}
.feature-card:hover {
  border-color: var(--border-green-hover);
  background: var(--bg-card-hover);
  transform: translateY(-3px);
  box-shadow: var(--shadow-hover);
}
.feature-card:hover::before { opacity: 1; }
.feature-card-header {
  display: flex; align-items: flex-start;
  justify-content: space-between; gap: 12px;
}
.feature-icon {
  width: 46px; height: 46px;
  background: rgba(0,132,61,0.14);
  border: 1px solid var(--border-green);
  border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem; flex-shrink: 0;
}
.feature-type-badge {
  font-size: 0.62rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.1em;
  padding: 3px 9px; border-radius: 100px;
}
.badge-scanner {
  background: rgba(0,132,61,0.18);
  color: var(--green-bright);
  border: 1px solid rgba(0,132,61,0.38);
}
.badge-tool {
  background: rgba(59,130,246,0.12);
  color: #60a5fa;
  border: 1px solid rgba(59,130,246,0.28);
}
.feature-card-title { font-size: 1.02rem; font-weight: 700; color: var(--text-primary); }
.feature-card-sub   { font-size: 0.73rem; color: var(--text-muted); font-weight: 500; }
.feature-card-desc  { font-size: 0.88rem; color: var(--text-secondary); line-height: 1.62; flex: 1; }
.feature-card-link {
  display: flex; align-items: center; gap: 6px;
  font-size: 0.83rem; font-weight: 600; color: var(--green-bright);
  margin-top: auto; transition: gap var(--transition);
}
.feature-card:hover .feature-card-link { gap: 11px; }

/* ── Steps ── */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 24px;
}
.step-card {
  background: var(--bg-card);
  border: 1px solid var(--border-green);
  border-radius: var(--radius-md);
  padding: 32px 26px; position: relative; overflow: hidden;
}
.step-number {
  font-size: 3.8rem; font-weight: 900;
  color: rgba(0,132,61,0.1); line-height: 1;
  margin-bottom: 16px; font-family: var(--font-mono);
}
.step-icon { font-size: 1.7rem; margin-bottom: 12px; }
.step-title { font-size: 1.08rem; font-weight: 700; margin-bottom: 10px; }
.step-desc { font-size: 0.88rem; color: var(--text-secondary); line-height: 1.62; }

/* ── Flow Diagram ── */
.flow-diagram {
  display: flex; align-items: stretch;
  background: var(--bg-card);
  border: 1px solid var(--border-green);
  border-radius: var(--radius-lg); overflow: hidden;
}
.flow-col {
  flex: 1; padding: 30px 22px;
  border-right: 1px solid var(--border-green);
}
.flow-col:last-child { border-right: none; }
.flow-col-title {
  font-size: 0.68rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.13em;
  color: var(--green-bright); margin-bottom: 18px;
}
.flow-item {
  display: flex; align-items: center; gap: 10px;
  padding: 9px 11px; border-radius: var(--radius-sm);
  font-size: 0.83rem; color: var(--text-secondary);
  margin-bottom: 5px; border: 1px solid transparent;
  transition: all var(--transition);
}
.flow-item:hover {
  background: var(--green-glow);
  border-color: var(--border-green);
  color: var(--text-primary);
}
.flow-item-icon { font-size: 0.95rem; width: 20px; text-align: center; }
.flow-arrow {
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem; color: var(--green-primary); width: 44px; flex-shrink: 0;
}

/* ── Scanner Preview (mockup table) ── */
.scanner-preview {
  background: var(--bg-card);
  border: 1px solid var(--border-green);
  border-radius: var(--radius-md); overflow: hidden;
}
.scanner-preview-header {
  display: flex; align-items: center; justify-content: space-between;
  padding: 13px 18px;
  background: rgba(0,132,61,0.07);
  border-bottom: 1px solid var(--border-green);
}
.scanner-preview-title {
  font-size: 0.75rem; font-weight: 700;
  color: var(--green-bright); text-transform: uppercase; letter-spacing: 0.1em;
}
.scanner-preview-badge {
  font-size: 0.62rem; padding: 2px 9px;
  background: rgba(0,255,136,0.08);
  border: 1px solid rgba(0,255,136,0.25);
  border-radius: 100px; color: var(--green-neon); font-weight: 600;
}
.scanner-table { width: 100%; border-collapse: collapse; font-size: 0.83rem; font-family: var(--font-mono); }
.scanner-table th {
  padding: 10px 16px; text-align: left;
  font-size: 0.67rem; font-weight: 600; text-transform: uppercase;
  letter-spacing: 0.09em; color: var(--text-muted);
  border-bottom: 1px solid var(--border-green);
  background: rgba(0,0,0,0.25);
}
.scanner-table td {
  padding: 11px 16px;
  border-bottom: 1px solid rgba(0,132,61,0.07);
  color: var(--text-secondary);
}
.scanner-table tr:last-child td { border-bottom: none; }
.scanner-table tr:hover td { background: var(--green-glow); color: var(--text-primary); }
.symbol-cell   { font-weight: 700; color: var(--text-primary) !important; }
.bias-bullish  { color: #00ff88 !important; font-weight: 600; }
.bias-bearish  { color: #ff4d4d !important; font-weight: 600; }
.bias-neutral  { color: #ffd700 !important; font-weight: 600; }

/* ── CTA Section ── */
.cta-section {
  background: linear-gradient(135deg,
    rgba(0,132,61,0.13) 0%,
    rgba(0,0,0,0) 50%,
    rgba(0,103,48,0.09) 100%
  );
  border-top: 1px solid var(--border-green);
  border-bottom: 1px solid var(--border-green);
}
.cta-inner { text-align: center; padding: 100px 24px; }
.cta-title  { font-size: clamp(1.8rem, 4vw, 2.8rem); font-weight: 800; letter-spacing: -0.025em; margin-bottom: 16px; }
.cta-desc   { font-size: 1.05rem; color: var(--text-secondary); margin-bottom: 42px; max-width: 500px; margin-left: auto; margin-right: auto; }

/* ── Footer ── */
.footer {
  background: var(--bg-dark);
  border-top: 1px solid var(--border-green);
  padding: 56px 0 32px;
}
.footer-inner {
  display: grid;
  grid-template-columns: 2fr repeat(3, 1fr);
  gap: 48px; margin-bottom: 48px;
}
.footer-brand { display: flex; flex-direction: column; gap: 12px; }
.footer-brand-name { font-size: 1.15rem; font-weight: 800; color: var(--text-primary); }
.footer-brand-desc { font-size: 0.84rem; color: var(--text-muted); line-height: 1.65; max-width: 250px; }
.footer-col-title {
  font-size: 0.72rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: 0.12em; color: var(--text-secondary); margin-bottom: 16px;
}
.footer-links { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-links li a { font-size: 0.86rem; color: var(--text-muted); transition: color var(--transition); }
.footer-links li a:hover { color: var(--green-bright); }
.footer-bottom {
  display: flex; align-items: center; justify-content: space-between;
  padding-top: 24px; border-top: 1px solid var(--border-subtle);
  font-size: 0.78rem; color: var(--text-muted);
  flex-wrap: wrap; gap: 12px;
}
.footer-disclaimer { font-size: 0.7rem; color: var(--text-muted); max-width: 580px; }

/* ── Inner Page Hero ── */
.page-hero {
  padding-top: calc(var(--nav-height) + 60px);
  padding-bottom: 60px; position: relative; overflow: hidden;
  background:
    radial-gradient(ellipse 55% 70% at 20% -10%, rgba(0,132,61,0.09) 0%, transparent 60%),
    var(--bg-base);
}
.breadcrumb {
  display: flex; align-items: center; gap: 8px;
  font-size: 0.8rem; color: var(--text-muted); margin-bottom: 22px;
}
.breadcrumb a { color: var(--text-muted); transition: color var(--transition); }
.breadcrumb a:hover { color: var(--green-bright); }
.breadcrumb-sep { color: var(--border-green-hover); }
.page-hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 5px 13px;
  background: rgba(0,132,61,0.1);
  border: 1px solid var(--border-green-hover);
  border-radius: 100px;
  font-size: 0.7rem; font-weight: 700;
  color: var(--green-bright); letter-spacing: 0.1em;
  text-transform: uppercase; margin-bottom: 18px;
}
.page-hero-title {
  font-size: clamp(2rem, 5vw, 3.6rem);
  font-weight: 900; letter-spacing: -0.03em; margin-bottom: 18px;
}
.page-hero-desc {
  font-size: 1.08rem; color: var(--text-secondary);
  max-width: 600px; line-height: 1.75; margin-bottom: 34px;
}

/* ── Detail Sections ── */
.detail-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
.detail-grid.reverse { direction: rtl; }
.detail-grid.reverse > * { direction: ltr; }
.detail-label {
  font-size: 0.7rem; font-weight: 700; color: var(--green-bright);
  text-transform: uppercase; letter-spacing: 0.16em; margin-bottom: 12px;
}
.detail-title { font-size: clamp(1.5rem, 3vw, 2.1rem); font-weight: 800; letter-spacing: -0.02em; margin-bottom: 16px; }
.detail-desc  { font-size: 0.94rem; color: var(--text-secondary); line-height: 1.72; margin-bottom: 26px; }

.feature-list { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.feature-list li {
  display: flex; align-items: flex-start; gap: 10px;
  font-size: 0.9rem; color: var(--text-secondary);
}
.feature-list li::before {
  content: '✓';
  min-width: 20px; height: 20px;
  background: rgba(0,132,61,0.18);
  border: 1px solid rgba(0,132,61,0.38);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.62rem; font-weight: 700; color: var(--green-bright);
  flex-shrink: 0; margin-top: 1px;
}

/* ── Navigation Tip Box ── */
.nav-tip {
  background: rgba(0,132,61,0.07);
  border: 1px solid var(--border-green-hover);
  border-radius: var(--radius-md);
  padding: 20px 24px;
  display: flex; align-items: flex-start; gap: 16px;
}
.nav-tip-icon { font-size: 1.4rem; flex-shrink: 0; margin-top: 2px; }
.nav-tip-title { font-size: 0.84rem; font-weight: 700; color: var(--green-bright); margin-bottom: 6px; }
.nav-tip-desc  { font-size: 0.86rem; color: var(--text-secondary); line-height: 1.62; }

/* ── Animations ── */
.fade-in { opacity: 0; transform: translateY(22px); transition: opacity 0.65s ease, transform 0.65s ease; }
.fade-in.visible { opacity: 1; transform: translateY(0); }
.fade-in-delay-1 { transition-delay: 0.1s; }
.fade-in-delay-2 { transition-delay: 0.2s; }
.fade-in-delay-3 { transition-delay: 0.3s; }
.fade-in-delay-4 { transition-delay: 0.4s; }

/* ── Live dot ── */
.live-dot {
  display: inline-block; width: 7px; height: 7px;
  background: var(--green-neon); border-radius: 50%;
  animation: pulse-dot 1.6s infinite;
}

/* ── Utility ── */
.text-green  { color: var(--green-bright); }
.text-muted  { color: var(--text-muted); }
.text-center { text-align: center; }
.mt-4 { margin-top: 16px; }
.mt-8 { margin-top: 32px; }
.mt-12 { margin-top: 48px; }
.mb-4 { margin-bottom: 16px; }
.mb-8 { margin-bottom: 32px; }
.mb-12 { margin-bottom: 48px; }

/* ── Responsive ── */
@media (max-width: 960px) {
  .footer-inner     { grid-template-columns: 1fr 1fr; }
  .detail-grid      { grid-template-columns: 1fr; }
  .detail-grid.reverse { direction: ltr; }
  .flow-diagram     { flex-direction: column; }
  .flow-col         { border-right: none; border-bottom: 1px solid var(--border-green); }
  .flow-col:last-child { border-bottom: none; }
}
@media (max-width: 768px) {
  .section { padding: 64px 0; }
  .nav-links { display: none; }
  .hero-stats { flex-wrap: wrap; }
  .hero-stat { border-right: none; border-bottom: 1px solid var(--border-green); flex: 0 0 50%; }
  .hero-stat:nth-child(odd) { border-right: 1px solid var(--border-green); }
}
@media (max-width: 480px) {
  .hero-cta { flex-direction: column; align-items: stretch; }
  .btn-primary, .btn-secondary { justify-content: center; }
  .footer-inner { grid-template-columns: 1fr; gap: 28px; }
}
