/* ============================================================
   NetOps SaaS — Signal Precision Design System
   shared.css · v3.2
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=DM+Mono:wght@400;500;700&family=Outfit:wght@300;400;500;600;700;800&display=swap');

/* ── CSS Variables ────────────────────────────────────────── */
:root {
  --bg:           #040a06;
  --surface:      #091410;
  --surface-2:    #0d1c15;
  --border:       #122018;
  --border-2:     #1a2e20;
  --accent:       #12f070;
  --accent-dim:   rgba(18,240,112,0.10);
  --accent-glow:  rgba(18,240,112,0.25);
  --cyan:         #00d4ff;
  --amber:        #ffb703;
  --red:          #ff4d6d;
  --purple:       #c084fc;
  --text:         #c8e6d0;
  --text-2:       #5a8c6e;
  --text-3:       #2a4a35;
  --wa:           #25D366;
  --wa-hover:     #1db954;
  --max:          1260px;
  --radius:       12px;
  --radius-lg:    18px;
  /* legacy aliases kept for pricing.html compat */
  --ink:          #c8e6d0;
  --ink-2:        #5a8c6e;
  --mute:         #2a4a35;
  --accent-2:     #12f070;
  --warn:         #ffb703;
  --line-2:       #122018;
  --bg-2:         #091410;
}

/* ── Reset ────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: 'Outfit', system-ui, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: var(--text);
  background: var(--bg);
  overflow-x: hidden;
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
button { cursor: pointer; border: none; background: none; font: inherit; }
h1,h2,h3,h4,h5,h6 { line-height: 1.15; }

/* ── Grid texture on bg ───────────────────────────────────── */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  background-image:
    linear-gradient(rgba(18,240,112,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(18,240,112,0.03) 1px, transparent 1px);
  background-size: 60px 60px;
}

/* ── Wrap ─────────────────────────────────────────────────── */
.wrap {
  max-width: var(--max);
  margin-inline: auto;
  padding-inline: 24px;
  position: relative;
  z-index: 1;
}

/* ── Animations ───────────────────────────────────────────── */
@keyframes fade-up {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes pulse-dot {
  0%,100% { opacity: 1; transform: scale(1); }
  50%      { opacity: 0.5; transform: scale(1.4); }
}
@keyframes scanline {
  0%   { transform: translateY(-100%); }
  100% { transform: translateY(100vh); }
}
@keyframes glow-pulse {
  0%,100% { opacity: 0.6; }
  50%      { opacity: 1; }
}
@keyframes float {
  0%,100% { transform: translateY(0); }
  50%      { transform: translateY(-8px); }
}

.fade-up { animation: fade-up 0.6s ease both; }
.fade-up-2 { animation: fade-up 0.6s 0.15s ease both; }
.fade-up-3 { animation: fade-up 0.6s 0.30s ease both; }
.fade-up-4 { animation: fade-up 0.6s 0.45s ease both; }

/* ── NAV ──────────────────────────────────────────────────── */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(4,10,6,0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
}
.nav-inner {
  max-width: var(--max);
  margin-inline: auto;
  padding: 0 24px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.nav-left { display: flex; align-items: center; gap: 36px; }
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'DM Mono', monospace;
  font-weight: 700;
  font-size: 18px;
  color: var(--text);
  letter-spacing: -0.02em;
}
.logo-dot {
  width: 10px; height: 10px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 10px var(--accent-glow);
  animation: pulse-dot 2s ease-in-out infinite;
  flex-shrink: 0;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
}
.nav-links a {
  font-size: 14px;
  font-weight: 500;
  color: var(--text-2);
  padding: 6px 12px;
  border-radius: 8px;
  transition: color 0.2s, background 0.2s;
}
.nav-links a:hover,
.nav-links a.active {
  color: var(--text);
  background: var(--accent-dim);
}
.nav-links a.active { color: var(--accent); }

.nav-right {
  display: flex;
  align-items: center;
  gap: 10px;
}
.nav-signin {
  font-size: 14px;
  font-weight: 500;
  color: var(--text-2);
  padding: 8px 14px;
  border-radius: 8px;
  transition: color 0.2s;
}
.nav-signin:hover { color: var(--text); }

.nav-toggle {
  display: none;
  color: var(--text);
  padding: 6px;
}

/* ── Mobile drawer ────────────────────────────────────────── */
.mobile-drawer {
  display: none;
  position: fixed;
  top: 64px; left: 0; right: 0;
  background: rgba(4,10,6,0.98);
  border-bottom: 1px solid var(--border);
  padding: 20px 24px 32px;
  z-index: 99;
  flex-direction: column;
  gap: 4px;
  backdrop-filter: blur(20px);
}
.mobile-drawer.open { display: flex; }
.mobile-drawer a {
  font-size: 16px;
  font-weight: 500;
  color: var(--text-2);
  padding: 12px 0;
  border-bottom: 1px solid var(--border);
  display: block;
}
.mobile-drawer a:last-child { border-bottom: none; }
.mobile-drawer a:hover { color: var(--accent); }

/* ── Buttons ──────────────────────────────────────────────── */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--accent);
  color: #040a06;
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 15px;
  padding: 14px 24px;
  border-radius: var(--radius);
  transition: opacity 0.2s, box-shadow 0.2s, transform 0.15s;
  white-space: nowrap;
}
.btn-primary:hover {
  opacity: 0.9;
  box-shadow: 0 0 32px var(--accent-glow);
  transform: translateY(-1px);
}
.btn-primary.lg { font-size: 17px; padding: 18px 32px; border-radius: var(--radius-lg); }

.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: var(--text);
  font-family: 'Outfit', sans-serif;
  font-weight: 600;
  font-size: 15px;
  padding: 13px 24px;
  border-radius: var(--radius);
  border: 1px solid var(--border-2);
  transition: border-color 0.2s, color 0.2s, background 0.2s;
  white-space: nowrap;
}
.btn-ghost:hover {
  border-color: var(--accent);
  color: var(--accent);
  background: var(--accent-dim);
}
.btn-ghost.lg { font-size: 17px; padding: 17px 32px; border-radius: var(--radius-lg); }

.btn-wa {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--wa);
  color: #fff;
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 15px;
  padding: 14px 24px;
  border-radius: var(--radius);
  transition: background 0.2s, transform 0.15s;
  white-space: nowrap;
}
.btn-wa:hover { background: var(--wa-hover); transform: translateY(-1px); }
.btn-wa.lg { font-size: 17px; padding: 18px 32px; border-radius: var(--radius-lg); }

/* Legacy compat */
.btn { display: inline-flex; align-items: center; gap: 8px; font-weight: 600; font-size: 14px; padding: 10px 18px; border-radius: var(--radius); transition: all 0.2s; cursor: pointer; }
.btn-p { background: var(--accent); color: #040a06; font-weight: 700; }
.btn-p:hover { opacity: 0.88; box-shadow: 0 0 24px var(--accent-glow); }
.btn-s { border: 1px solid var(--border-2); color: var(--text); }
.btn-s:hover { border-color: var(--accent); color: var(--accent); }
.btn-accent { background: var(--accent); color: #040a06; font-weight: 700; }

/* ── Cards ────────────────────────────────────────────────── */
.card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
}
.card-dark {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
}
.card-accent {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
  position: relative;
  overflow: hidden;
}
.card-accent::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 3px; height: 100%;
  background: var(--card-color, var(--accent));
}

/* ── Badges ───────────────────────────────────────────────── */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: 'DM Mono', monospace;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.04em;
  padding: 6px 12px;
  border-radius: 99px;
  border: 1px solid currentColor;
  opacity: 0.9;
}
.badge-green  { color: var(--accent);  background: rgba(18,240,112,0.08);  border-color: rgba(18,240,112,0.3); }
.badge-cyan   { color: var(--cyan);   background: rgba(0,212,255,0.08);    border-color: rgba(0,212,255,0.3); }
.badge-amber  { color: var(--amber);  background: rgba(255,183,3,0.08);    border-color: rgba(255,183,3,0.3); }
.badge-purple { color: var(--purple); background: rgba(192,132,252,0.08);  border-color: rgba(192,132,252,0.3); }

/* ── HERO ─────────────────────────────────────────────────── */
.hero {
  position: relative;
  padding: 100px 0 80px;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  bottom: -20%; left: -10%;
  width: 60%;
  height: 80%;
  background: radial-gradient(ellipse at center, rgba(18,240,112,0.12) 0%, transparent 70%);
  pointer-events: none;
}
.hero-tag {
  font-family: 'DM Mono', monospace;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 20px;
}
.hero h1 {
  font-family: 'DM Mono', monospace;
  font-weight: 700;
  font-size: clamp(36px, 5.5vw, 72px);
  line-height: 1.08;
  letter-spacing: -0.03em;
  color: var(--text);
  margin-bottom: 24px;
}
.hero h1 .hl { color: var(--accent); }
.hero-lead {
  font-size: clamp(16px, 1.5vw, 20px);
  font-weight: 400;
  color: var(--text-2);
  line-height: 1.65;
  max-width: 560px;
  margin-bottom: 36px;
}
.hero-ctas {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 20px;
}
.hero-hints {
  font-size: 13px;
  color: var(--text-3);
  font-family: 'DM Mono', monospace;
}
.hero-hints span { color: var(--accent); margin-right: 4px; }
.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 60px;
}

/* ── Feature rows ─────────────────────────────────────────── */
.feature-rows { display: grid; gap: 0; }
.feature-row {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 40px;
  padding: 36px 0;
  border-bottom: 1px solid var(--border);
}
.feature-row:last-child { border-bottom: none; }
.feature-row-left { display: flex; align-items: flex-start; gap: 24px; }
.feature-num {
  font-family: 'DM Mono', monospace;
  font-size: 13px;
  font-weight: 700;
  color: var(--text-3);
  line-height: 1;
  padding-top: 4px;
  min-width: 24px;
}
.feature-text h3 {
  font-family: 'Outfit', sans-serif;
  font-size: 20px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 6px;
}
.feature-text p {
  font-size: 15px;
  color: var(--text-2);
  line-height: 1.6;
}
.feature-stat {
  text-align: right;
  flex-shrink: 0;
}
.feature-stat .big {
  font-family: 'DM Mono', monospace;
  font-size: clamp(36px, 4vw, 64px);
  font-weight: 700;
  color: var(--accent);
  line-height: 1;
  display: block;
}
.feature-stat .label {
  font-size: 12px;
  color: var(--text-2);
  font-family: 'DM Mono', monospace;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

/* ── Grid helpers ─────────────────────────────────────────── */
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }

/* ── Sections ─────────────────────────────────────────────── */
.section { padding: 100px 0; position: relative; z-index: 1; }
.section-dark {
  padding: 100px 0;
  background: var(--bg);
  position: relative;
  z-index: 1;
}
.section-surface {
  padding: 100px 0;
  background: var(--surface);
  position: relative;
  z-index: 1;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.section-tinted {
  padding: 100px 0;
  background: var(--surface-2);
  position: relative;
  z-index: 1;
}

.section-head {
  text-align: center;
  margin-bottom: 60px;
}
.section-head h2 {
  font-family: 'DM Mono', monospace;
  font-size: clamp(28px, 3.5vw, 48px);
  font-weight: 700;
  letter-spacing: -0.03em;
  color: var(--text);
  margin-bottom: 16px;
}
.section-head p {
  font-size: 17px;
  color: var(--text-2);
  max-width: 540px;
  margin-inline: auto;
}
.section-head .eyebrow {
  font-family: 'DM Mono', monospace;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 12px;
  display: block;
}
.section-head .accent { color: var(--accent); }

/* ── CTA Final section ────────────────────────────────────── */
.cta-section {
  padding: 120px 0;
  position: relative;
  overflow: hidden;
  z-index: 1;
}
.cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 120%, rgba(18,240,112,0.15) 0%, transparent 65%);
  pointer-events: none;
}
.cta-section .wrap { text-align: center; position: relative; z-index: 1; }
.cta-section h2 {
  font-family: 'DM Mono', monospace;
  font-size: clamp(30px, 4vw, 52px);
  font-weight: 700;
  letter-spacing: -0.03em;
  color: var(--text);
  margin-bottom: 20px;
}
.cta-section h2 .accent { color: var(--accent); }
.cta-section p {
  font-size: 18px;
  color: var(--text-2);
  max-width: 480px;
  margin: 0 auto 40px;
  line-height: 1.6;
}
.cta-btns {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 14px;
}

/* Legacy cta-final compat */
.cta-final {
  padding: 100px 24px;
  text-align: center;
  background: var(--surface);
  border-top: 1px solid var(--border);
  position: relative;
  z-index: 1;
}
.cta-final h2 { font-family: 'DM Mono', monospace; font-size: clamp(28px,3.5vw,44px); font-weight:700; letter-spacing:-0.03em; color:var(--text); margin-bottom:16px; }
.cta-final p { color: var(--text-2); font-size:17px; margin-bottom:36px; }
.cta-final .accent { color: var(--accent); }

/* ── Footer ───────────────────────────────────────────────── */
.footer {
  background: var(--bg);
  border-top: 1px solid var(--border);
  padding: 80px 0 40px;
  position: relative;
  z-index: 1;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 64px;
}
.footer-brand .logo { margin-bottom: 16px; }
.footer-brand p {
  font-size: 14px;
  color: var(--text-2);
  line-height: 1.6;
  max-width: 220px;
}
.footer-col h4 {
  font-family: 'DM Mono', monospace;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-3);
  margin-bottom: 16px;
}
.footer-col a, .footer-col span {
  display: block;
  font-size: 14px;
  color: var(--text-2);
  padding: 5px 0;
  transition: color 0.2s;
}
.footer-col a:hover { color: var(--accent); }
.footer-bottom {
  border-top: 1px solid var(--border);
  padding-top: 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 13px;
  color: var(--text-3);
}

/* Legacy footer compat */
.footer-top { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr 1fr; gap: 48px; margin-bottom: 40px; }
.footer-tag { font-size:14px; color:var(--text-2); line-height:1.5; max-width:200px; }
.footer-col-list { display:flex; flex-direction:column; gap:6px; margin-top:12px; }
.footer-col-list a { font-size:14px; color:var(--text-2); }
.footer-col-list a:hover { color:var(--accent); }
.footer-col-list span { font-size:14px; color:var(--text-3); }
.footer-bot { border-top:1px solid var(--border); padding-top:24px; display:flex; justify-content:space-between; font-size:13px; color:var(--text-3); }

/* ── WA FAB ───────────────────────────────────────────────── */
.wa-fab {
  position: fixed;
  bottom: 28px; right: 28px;
  z-index: 200;
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--wa);
  color: #fff;
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 14px;
  padding: 14px 20px 14px 16px;
  border-radius: 99px;
  box-shadow: 0 8px 32px rgba(37,211,102,0.4);
  transition: background 0.2s, transform 0.2s;
}
.wa-fab:hover {
  background: var(--wa-hover);
  transform: translateY(-3px);
}
.wa-fab .label { white-space: nowrap; }

/* ── Mockup panels ────────────────────────────────────────── */
.mock-panel {
  background: var(--surface);
  border: 1px solid var(--border-2);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 32px 80px rgba(0,0,0,0.6), 0 0 0 1px rgba(18,240,112,0.05);
}
.mock-titlebar {
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 14px 18px;
  background: var(--bg);
  border-bottom: 1px solid var(--border);
}
.mock-dot { width: 10px; height: 10px; border-radius: 50%; }
.mock-title {
  font-family: 'DM Mono', monospace;
  font-size: 11px;
  color: var(--text-3);
  margin-left: 8px;
  letter-spacing: 0.06em;
}
.mock-body { padding: 20px; display: flex; flex-direction: column; gap: 10px; }

/* ── Chip / eyebrow label (legacy) ───────────────────────── */
.chip {
  display: inline-flex;
  align-items: center;
  font-family: 'DM Mono', monospace;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  background: rgba(18,240,112,0.08);
  border: 1px solid rgba(18,240,112,0.25);
  padding: 5px 12px;
  border-radius: 99px;
  margin-bottom: 16px;
}

/* ── Stats row ────────────────────────────────────────────── */
.stats-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.stat-item {
  background: var(--surface);
  padding: 28px 24px;
  text-align: center;
}
.stat-big {
  font-family: 'DM Mono', monospace;
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 700;
  color: var(--accent);
  line-height: 1;
  display: block;
  margin-bottom: 8px;
}
.stat-label {
  font-size: 13px;
  color: var(--text-2);
}

/* ── Integration logos ────────────────────────────────────── */
.integrations-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
}
.integ-pill {
  font-family: 'DM Mono', monospace;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.05em;
  padding: 10px 18px;
  border-radius: 8px;
  background: var(--surface);
  border: 1px solid var(--border-2);
  color: var(--text-2);
  transition: border-color 0.2s, color 0.2s;
}
.integ-pill:hover { border-color: var(--accent); color: var(--accent); }

/* ── Testimonial card ─────────────────────────────────────── */
.testi-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.testi-quote {
  font-size: 18px;
  font-weight: 600;
  color: var(--text);
  line-height: 1.5;
}
.testi-quote::before { content: '"'; color: var(--accent); font-size: 32px; font-family: 'DM Mono', monospace; display: block; margin-bottom: 8px; }
.testi-meta { display: flex; align-items: center; gap: 14px; }
.testi-avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--surface-2);
  border: 2px solid var(--border-2);
  display: flex; align-items: center; justify-content: center;
  font-family: 'DM Mono', monospace;
  font-size: 14px;
  font-weight: 700;
  color: var(--accent);
  flex-shrink: 0;
}
.testi-name { font-size: 14px; font-weight: 700; color: var(--text); }
.testi-role { font-size: 12px; color: var(--text-2); margin-top: 2px; }
.stars { color: var(--accent); font-size: 14px; letter-spacing: 2px; }

/* ── Product cards (index) ────────────────────────────────── */
.product-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px;
  position: relative;
  overflow: hidden;
  transition: border-color 0.3s, transform 0.3s;
}
.product-card:hover { transform: translateY(-4px); }
.product-card::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: var(--product-color, var(--accent));
  opacity: 0.6;
}
.product-card-icon {
  width: 48px; height: 48px;
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px;
  font-size: 22px;
}
.product-card h3 {
  font-family: 'DM Mono', monospace;
  font-size: 18px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 10px;
}
.product-card p {
  font-size: 14px;
  color: var(--text-2);
  line-height: 1.6;
  margin-bottom: 20px;
}
.product-card-tags { display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: 24px; }
.product-card-tag {
  font-family: 'DM Mono', monospace;
  font-size: 11px;
  padding: 4px 10px;
  border-radius: 4px;
  background: var(--surface-2);
  color: var(--text-2);
  border: 1px solid var(--border);
}
.product-link {
  font-size: 14px;
  font-weight: 700;
  color: var(--product-color, var(--accent));
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: gap 0.2s;
}
.product-link:hover { gap: 10px; }

/* ── ROI calculator ───────────────────────────────────────── */
.roi-section {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.roi-inner { display: grid; grid-template-columns: 1fr 1fr; }
.roi-form { padding: 48px; border-right: 1px solid var(--border); }
.roi-result { padding: 48px; background: var(--bg); position: relative; overflow: hidden; }
.roi-result::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 100%, rgba(18,240,112,0.12) 0%, transparent 65%);
}
.roi-label {
  font-family: 'DM Mono', monospace;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-3);
  margin-bottom: 10px;
  display: block;
}
.roi-input-row { margin-bottom: 24px; }
.roi-input-row label { display: block; font-size: 14px; color: var(--text-2); margin-bottom: 8px; }
.roi-input-row .roi-val {
  font-family: 'DM Mono', monospace;
  font-size: 28px;
  font-weight: 700;
  color: var(--text);
}
.roi-saving {
  font-family: 'DM Mono', monospace;
  font-size: clamp(36px, 5vw, 64px);
  font-weight: 700;
  color: var(--accent);
  line-height: 1;
  display: block;
  margin-bottom: 8px;
  position: relative;
  z-index: 1;
}
.roi-saving-label { font-size: 14px; color: var(--text-2); margin-bottom: 32px; position: relative; z-index: 1; }
.roi-metrics { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; position: relative; z-index: 1; }
.roi-metric { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius); padding: 16px; }
.roi-metric .val { font-family: 'DM Mono', monospace; font-size: 22px; font-weight: 700; color: var(--accent); }
.roi-metric .desc { font-size: 12px; color: var(--text-2); margin-top: 4px; }

/* ── Table override (pricing) ─────────────────────────────── */
table { width: 100%; border-collapse: collapse; font-size: 14px; }
thead th { background: var(--surface-2); padding: 18px 24px; font-weight: 600; text-align: left; font-family: 'DM Mono', monospace; font-size: 12px; letter-spacing: 0.06em; text-transform: uppercase; color: var(--text-2); }
tbody td { padding: 14px 24px; border-top: 1px solid var(--border); color: var(--text-2); }
tbody tr:hover { background: rgba(18,240,112,0.02); }

/* ── FAQ (pricing) ────────────────────────────────────────── */
.faq-item { padding: 24px 0; border-top: 1px solid var(--border); }
.faq-item summary { font-size: 17px; font-weight: 600; cursor: pointer; list-style: none; display: flex; justify-content: space-between; color: var(--text); }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item p { color: var(--text-2); margin-top: 14px; line-height: 1.7; font-size: 15px; }

/* ── Responsive ───────────────────────────────────────────── */
@media (max-width: 1100px) {
  .footer-grid, .footer-top { grid-template-columns: 1fr 1fr; }
  .stats-row { grid-template-columns: repeat(2, 1fr); }
  .roi-inner { grid-template-columns: 1fr; }
  .roi-form { border-right: none; border-bottom: 1px solid var(--border); }
}
@media (max-width: 900px) {
  .hero-grid { grid-template-columns: 1fr; gap: 48px; }
  .hero-right { order: -1; }
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .feature-row { grid-template-columns: 1fr; gap: 20px; }
  .feature-stat { text-align: left; }
  .nav-links { display: none; }
  .nav-toggle { display: flex; }
  .price-grid { grid-template-columns: 1fr !important; }
  .price-card.featured { transform: none !important; }
}
@media (max-width: 640px) {
  .hero { padding: 72px 0 60px; }
  .section, .section-dark, .section-surface, .section-tinted { padding: 72px 0; }
  .cta-section { padding: 80px 0; }
  .footer-grid, .footer-top { grid-template-columns: 1fr; gap: 32px; }
  .stats-row { grid-template-columns: repeat(2, 1fr); }
  .wa-fab .label { display: none; }
  .wa-fab { padding: 16px; }
  .hero h1 { font-size: clamp(30px, 8vw, 44px); }
  .grid-2 { grid-template-columns: 1fr; }
}
