/* ══════════════════════════════════════════
   ClearVault — Due Diligence Service
   Cold Intelligence Design System
══════════════════════════════════════════ */

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

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

:root {
  --bg: #080c10;
  --bg-alt: #0d1117;
  --card: #0d1117;
  --border: rgba(255,255,255,0.06);
  --border-strong: rgba(255,255,255,0.1);
  --text: #e6edf3;
  --text-muted: #7d8590;
  --text-dim: #3d444d;
  --amber: #f5a623;
  --amber-dark: #e8951a;
  --amber-glow: rgba(245,166,35,0.12);
  --blue: #58a6ff;
  --red: #f85149;
  --green: #3fb950;
  --radius: 12px;
  --radius-sm: 8px;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  background: var(--bg);
  color: var(--text);
  font-size: 15px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

.container { max-width: 1100px; margin: 0 auto; padding: 0 24px; }

/* ── Gradient text ── */
.gradient-text {
  background: linear-gradient(90deg, #f5a623, #ffd166, #f5a623);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  background-size: 200%;
  animation: shimmer 3s ease infinite;
}
@keyframes shimmer { 0%,100%{background-position:0%} 50%{background-position:100%} }

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 11px 22px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  border: none;
  transition: all 0.2s;
  white-space: nowrap;
}

.btn-primary {
  background: linear-gradient(135deg, var(--amber), var(--amber-dark));
  color: #080c10;
  font-weight: 700;
  box-shadow: 0 0 20px rgba(245,166,35,0.25);
}
.btn-primary:hover { transform: translateY(-1px); box-shadow: 0 0 32px rgba(245,166,35,0.45); }

.btn-outline {
  background: transparent;
  color: var(--text);
  border: 1px solid var(--border-strong);
}
.btn-outline:hover { background: rgba(255,255,255,0.04); border-color: rgba(245,166,35,0.3); color: var(--amber); }

.btn-ghost { background: transparent; color: var(--text-muted); }
.btn-ghost:hover { color: var(--amber); }

.btn-lg { padding: 14px 28px; font-size: 15px; border-radius: 10px; }

/* ── Nav ── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(8,12,16,0.85);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
  transition: all 0.3s;
}
.nav.scrolled { background: rgba(8,12,16,0.98); }

.nav-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
  height: 64px;
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-logo { display: flex; align-items: center; gap: 10px; text-decoration: none; flex-shrink: 0; }

.nav-logo-icon {
  width: 36px; height: 36px;
  background: linear-gradient(135deg, var(--amber), var(--amber-dark));
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  font-size: 13px; font-weight: 900; color: #080c10;
  font-family: 'JetBrains Mono', monospace;
}

.nav-logo-text { font-size: 17px; font-weight: 800; color: white; letter-spacing: -0.5px; }

.nav-links { display: flex; gap: 4px; flex: 1; }
.nav-links a {
  padding: 6px 12px;
  color: var(--text-muted);
  text-decoration: none;
  font-size: 13px;
  font-weight: 500;
  border-radius: 6px;
  transition: all 0.2s;
  font-family: 'JetBrains Mono', monospace;
  letter-spacing: 0.3px;
}
.nav-links a:hover { color: var(--amber); background: var(--amber-glow); }

.nav-actions { display: flex; gap: 8px; align-items: center; }

.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  margin-left: auto;
}
.nav-hamburger span { display: block; width: 22px; height: 2px; background: var(--text-muted); border-radius: 2px; transition: all 0.3s; }

.nav-mobile {
  display: none;
  flex-direction: column;
  gap: 4px;
  padding: 12px 24px 16px;
  border-top: 1px solid var(--border);
}
.nav-mobile a { padding: 10px 12px; color: var(--text-muted); text-decoration: none; font-size: 14px; font-weight: 500; border-radius: 6px; }
.nav-mobile a:hover { color: var(--amber); background: var(--amber-glow); }
.nav-mobile.open { display: flex; }

/* ── Hero ── */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding-top: 64px;
}

.hero-bg { position: absolute; inset: 0; pointer-events: none; }

.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
}
.hero-orb-1 {
  width: 500px; height: 500px;
  top: -150px; right: -100px;
  background: radial-gradient(circle, rgba(245,166,35,0.1) 0%, transparent 70%);
}
.hero-orb-2 {
  width: 400px; height: 400px;
  bottom: -100px; left: -100px;
  background: radial-gradient(circle, rgba(88,166,255,0.06) 0%, transparent 70%);
}

.hero-grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(245,166,35,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(245,166,35,0.03) 1px, transparent 1px);
  background-size: 60px 60px;
}

/* Scanline overlay */
.hero-grid::after {
  content: '';
  position: absolute; inset: 0;
  background: repeating-linear-gradient(
    0deg,
    transparent,
    transparent 2px,
    rgba(0,0,0,0.08) 2px,
    rgba(0,0,0,0.08) 4px
  );
  pointer-events: none;
}

.hero .container { position: relative; z-index: 2; padding-top: 80px; padding-bottom: 80px; }

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(245,166,35,0.08);
  border: 1px solid rgba(245,166,35,0.2);
  color: var(--amber);
  padding: 5px 14px;
  border-radius: 4px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 28px;
  font-family: 'JetBrains Mono', monospace;
}

.badge-dot {
  width: 6px; height: 6px;
  background: var(--amber);
  border-radius: 50%;
  animation: pulse 2s infinite;
}
@keyframes pulse { 0%,100%{opacity:1;transform:scale(1)} 50%{opacity:0.5;transform:scale(0.8)} }

.hero-title {
  font-size: 68px;
  font-weight: 900;
  line-height: 1.0;
  letter-spacing: -3px;
  color: white;
  margin-bottom: 20px;
}

.hero-sub {
  font-size: 18px;
  color: var(--text-muted);
  max-width: 520px;
  line-height: 1.7;
  margin-bottom: 36px;
}

.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 60px; }

.hero-stats {
  display: flex;
  align-items: center;
  background: rgba(255,255,255,0.02);
  border: 1px solid var(--border);
  border-left: 3px solid var(--amber);
  border-radius: 8px;
  padding: 18px 28px;
  width: fit-content;
  gap: 0;
}
.hero-stat { text-align: center; padding: 0 24px; }
.hero-stat-value { font-size: 22px; font-weight: 900; color: var(--amber); letter-spacing: -0.5px; font-family: 'JetBrains Mono', monospace; }
.hero-stat-label { font-size: 10px; font-weight: 600; color: var(--text-dim); text-transform: uppercase; letter-spacing: 1px; margin-top: 3px; }
.hero-stat-divider { width: 1px; height: 36px; background: var(--border); flex-shrink: 0; }

/* ── Trust Bar ── */
.trust-bar {
  padding: 18px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: rgba(245,166,35,0.02);
  overflow: hidden;
}
.trust-bar .container { display: flex; align-items: center; justify-content: center; gap: 24px; flex-wrap: wrap; }
.trust-label {
  font-size: 10px;
  font-weight: 700;
  color: var(--text-dim);
  text-transform: uppercase;
  letter-spacing: 2px;
  white-space: nowrap;
  font-family: 'JetBrains Mono', monospace;
}
.trust-items { display: flex; gap: 8px; flex-wrap: wrap; justify-content: center; }
.trust-item {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(245,166,35,0.05);
  border: 1px solid rgba(245,166,35,0.12);
  color: var(--text-muted);
  padding: 4px 12px;
  border-radius: 3px;
  font-size: 11px;
  font-weight: 500;
  font-family: 'JetBrains Mono', monospace;
  letter-spacing: 0.3px;
}
.trust-item svg { color: var(--amber); opacity: 0.7; }

/* ── Sections ── */
.section { padding: 96px 0; }
.section-alt { background: var(--bg-alt); }

.section-header { text-align: center; margin-bottom: 56px; }
.section-eyebrow {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 12px;
  font-family: 'JetBrains Mono', monospace;
}
.section-title {
  font-size: 38px;
  font-weight: 900;
  color: white;
  letter-spacing: -1.5px;
  margin-bottom: 14px;
}
.section-sub { font-size: 16px; color: var(--text-muted); max-width: 480px; margin: 0 auto; }

/* ── Steps ── */
.steps { display: flex; align-items: flex-start; gap: 0; }
.step {
  flex: 1;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px 28px;
  position: relative;
  transition: border-color 0.2s;
  border-top: 2px solid transparent;
}
.step:hover { border-color: rgba(245,166,35,0.25); border-top-color: var(--amber); }

.step-num {
  font-size: 48px;
  font-weight: 900;
  color: var(--amber);
  line-height: 1;
  margin-bottom: 16px;
  font-family: 'JetBrains Mono', monospace;
  opacity: 0.9;
}

.step-icon {
  width: 48px; height: 48px;
  background: var(--amber-glow);
  border: 1px solid rgba(245,166,35,0.2);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  color: var(--amber);
  margin-bottom: 16px;
}

.step-title { font-size: 17px; font-weight: 700; color: white; margin-bottom: 10px; }
.step-desc { font-size: 14px; color: var(--text-muted); line-height: 1.6; }

.step-connector {
  flex-shrink: 0;
  padding: 0 16px;
  margin-top: 80px;
  color: var(--text-dim);
}

/* ── Checks Grid ── */
.checks-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }

.check-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 24px;
  transition: all 0.2s;
  border-left: 3px solid transparent;
}
.check-card:hover { border-color: rgba(245,166,35,0.2); border-left-color: var(--amber); transform: translateY(-2px); box-shadow: 0 8px 32px rgba(0,0,0,0.3); }

.check-icon {
  width: 46px; height: 46px;
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 16px;
}
.check-icon-purple, .check-icon-blue, .check-icon-red, .check-icon-green, .check-icon-yellow {
  background: rgba(245,166,35,0.08);
  color: var(--amber);
  border: 1px solid rgba(245,166,35,0.15);
}

.check-title { font-size: 15px; font-weight: 700; color: white; margin-bottom: 8px; }
.check-desc { font-size: 13px; color: var(--text-muted); line-height: 1.5; margin-bottom: 14px; }
.check-list { list-style: none; }
.check-list li {
  font-size: 12px;
  color: var(--text-muted);
  padding: 3px 0;
  display: flex;
  align-items: center;
  gap: 8px;
}
.check-list li::before { content: '▸'; color: var(--amber); font-size: 10px; }

/* ── Report Preview ── */
.report-preview { display: flex; gap: 48px; align-items: center; }
.report-preview-left { flex-shrink: 0; }

.report-mock {
  width: 340px;
  background: #0a0e13;
  border: 1px solid rgba(245,166,35,0.2);
  border-radius: 12px;
  padding: 28px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.6), 0 0 40px rgba(245,166,35,0.06);
  position: relative;
}
.report-mock::before {
  content: 'INTELLIGENCE REPORT';
  position: absolute;
  top: 12px; right: 12px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 2px;
  color: rgba(245,166,35,0.3);
}

.report-mock-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 24px; }
.report-mock-logo { display: flex; align-items: center; gap: 8px; }
.report-mock-icon {
  width: 28px; height: 28px;
  background: linear-gradient(135deg, var(--amber), var(--amber-dark));
  border-radius: 6px;
  display: flex; align-items: center; justify-content: center;
  font-size: 10px; font-weight: 900; color: #080c10;
  font-family: 'JetBrains Mono', monospace;
}
.report-mock-brand { font-size: 13px; font-weight: 800; color: white; }
.report-mock-div { font-size: 8px; color: var(--amber); letter-spacing: 2px; text-transform: uppercase; font-family: 'JetBrains Mono', monospace; }
.report-mock-badge {
  background: rgba(248,81,73,0.1);
  border: 1px solid rgba(248,81,73,0.3);
  color: var(--red);
  padding: 3px 8px;
  border-radius: 3px;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  font-family: 'JetBrains Mono', monospace;
}

.report-mock-title { font-size: 26px; font-weight: 900; color: white; line-height: 1.1; letter-spacing: -1px; margin-bottom: 20px; }
.report-mock-title span { color: var(--amber); }

.report-mock-score {
  background: rgba(245,166,35,0.06);
  border: 1px solid rgba(245,166,35,0.15);
  border-radius: 8px;
  padding: 14px 18px;
  text-align: center;
  margin-bottom: 20px;
}
.score-label { font-size: 9px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: var(--amber); margin-bottom: 4px; font-family: 'JetBrains Mono', monospace; }
.score-val { font-size: 40px; font-weight: 900; color: var(--amber); line-height: 1; letter-spacing: -2px; font-family: 'JetBrains Mono', monospace; }
.score-val span { font-size: 16px; color: #3d444d; font-weight: 400; }
.score-tag { font-size: 10px; font-weight: 700; color: var(--red); margin-top: 2px; text-transform: uppercase; letter-spacing: 1px; font-family: 'JetBrains Mono', monospace; }

.mock-bar-row { display: flex; align-items: center; gap: 8px; margin-bottom: 8px; }
.mock-bar-row span { font-size: 10px; color: #7d8590; width: 130px; flex-shrink: 0; font-family: 'JetBrains Mono', monospace; }
.mock-bar { flex: 1; height: 4px; background: #1c2128; border-radius: 2px; overflow: hidden; }
.mock-bar-fill { height: 100%; border-radius: 2px; }

.report-preview-right { flex: 1; }
.preview-features { display: flex; flex-direction: column; gap: 20px; }
.preview-feature { display: flex; gap: 16px; align-items: flex-start; }
.pf-icon { font-size: 22px; flex-shrink: 0; margin-top: 2px; }
.pf-title { font-size: 15px; font-weight: 700; color: white; margin-bottom: 4px; }
.pf-desc { font-size: 13px; color: var(--text-muted); line-height: 1.5; }

/* ── Pricing ── */
.pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-bottom: 24px; }

.pricing-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px 28px;
  position: relative;
  transition: all 0.2s;
}
.pricing-card:hover { border-color: rgba(245,166,35,0.2); }

.pricing-card-featured {
  border-color: rgba(245,166,35,0.35);
  background: rgba(245,166,35,0.04);
  transform: translateY(-4px);
  box-shadow: 0 0 40px rgba(245,166,35,0.08);
}

.pricing-popular {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, var(--amber), var(--amber-dark));
  color: #080c10;
  padding: 4px 14px;
  border-radius: 20px;
  font-size: 11px;
  font-weight: 700;
  white-space: nowrap;
  font-family: 'JetBrains Mono', monospace;
}

.pricing-name { font-size: 18px; font-weight: 800; color: white; margin-bottom: 4px; }
.pricing-desc { font-size: 13px; color: var(--text-muted); margin-bottom: 20px; }
.pricing-price {
  font-size: 40px;
  font-weight: 900;
  color: var(--amber);
  letter-spacing: -2px;
  margin-bottom: 4px;
  font-family: 'JetBrains Mono', monospace;
}
.pricing-price span { font-size: 14px; color: var(--text-dim); font-weight: 400; letter-spacing: 0; }
.pricing-time { font-size: 12px; color: var(--text-dim); margin-bottom: 24px; font-family: 'JetBrains Mono', monospace; }

.pricing-features { list-style: none; margin-bottom: 28px; }
.pricing-features li {
  padding: 6px 0;
  font-size: 13px;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 10px;
  border-bottom: 1px solid rgba(255,255,255,0.03);
}
.pricing-features li:last-child { border-bottom: none; }
.pf-yes { color: var(--amber); font-weight: 700; }
.pf-no { color: var(--text-dim); }

.pricing-btn { width: 100%; justify-content: center; }

.pricing-enterprise {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px 32px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
}
.pe-title { font-size: 17px; font-weight: 700; color: white; margin-bottom: 6px; }
.pe-desc { font-size: 14px; color: var(--text-muted); max-width: 600px; }

/* ── Order Form ── */
.order-wrap { max-width: 700px; margin: 0 auto; }
.order-form {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 40px;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-bottom: 16px; }
.form-group { margin-bottom: 16px; }
.form-label { display: block; font-size: 12px; font-weight: 600; color: var(--text-muted); margin-bottom: 8px; text-transform: uppercase; letter-spacing: 0.8px; font-family: 'JetBrains Mono', monospace; }
.form-input {
  width: 100%;
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 12px 14px;
  color: var(--text);
  font-size: 14px;
  font-family: inherit;
  transition: all 0.2s;
  outline: none;
}
.form-input:focus { border-color: rgba(245,166,35,0.5); background: rgba(245,166,35,0.03); box-shadow: 0 0 0 3px rgba(245,166,35,0.08); }
.form-input::placeholder { color: var(--text-dim); }
.form-select { cursor: pointer; }
.form-textarea { resize: vertical; min-height: 100px; }

.file-drop {
  border: 2px dashed var(--border-strong);
  border-radius: var(--radius-sm);
  padding: 32px;
  text-align: center;
  color: var(--text-dim);
  cursor: pointer;
  transition: all 0.2s;
}
.file-drop:hover { border-color: rgba(245,166,35,0.4); color: var(--text-muted); background: var(--amber-glow); }
.file-drop svg { margin: 0 auto 10px; display: block; color: var(--text-dim); }
.file-drop p { font-size: 14px; margin-bottom: 4px; }
.file-drop-sub { font-size: 12px; color: var(--text-dim); font-family: 'JetBrains Mono', monospace; }

.form-check { display: flex; align-items: flex-start; gap: 10px; margin-bottom: 20px; }
.form-check input { margin-top: 2px; accent-color: var(--amber); flex-shrink: 0; }
.form-check label { font-size: 13px; color: var(--text-muted); line-height: 1.5; cursor: pointer; }

.form-submit { width: 100%; justify-content: center; }
.form-note { text-align: center; font-size: 12px; color: var(--text-dim); margin-top: 12px; font-family: 'JetBrains Mono', monospace; }

/* ── FAQ ── */
.faq-list { max-width: 720px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid var(--border); }
.faq-q {
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  color: var(--text);
  padding: 20px 0;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  font-family: inherit;
  transition: color 0.2s;
}
.faq-q:hover { color: var(--amber); }
.faq-q svg { flex-shrink: 0; color: var(--text-dim); transition: transform 0.3s; }
.faq-q.open svg { transform: rotate(180deg); color: var(--amber); }
.faq-a { display: none; padding: 0 0 20px; font-size: 14px; color: var(--text-muted); line-height: 1.7; }
.faq-a.open { display: block; }

/* ── CTA ── */
.cta-section {
  padding: 96px 0;
  background: linear-gradient(135deg, var(--amber) 0%, var(--amber-dark) 100%);
  position: relative;
  overflow: hidden;
  text-align: center;
}
.cta-section::before {
  content: '';
  position: absolute; inset: 0;
  background: repeating-linear-gradient(
    0deg, transparent, transparent 3px, rgba(0,0,0,0.04) 3px, rgba(0,0,0,0.04) 6px
  );
}
.cta-orb { display: none; }
.cta-inner { position: relative; z-index: 2; }
.cta-title { font-size: 52px; font-weight: 900; color: #080c10; letter-spacing: -2px; margin-bottom: 16px; }
.cta-sub { font-size: 18px; color: rgba(8,12,16,0.65); margin-bottom: 36px; }
.cta-section .btn-primary {
  background: #080c10;
  color: var(--amber);
  box-shadow: none;
}
.cta-section .btn-primary:hover {
  background: #0d1117;
  box-shadow: 0 8px 32px rgba(0,0,0,0.3);
}

/* ── Footer ── */
.footer {
  background: #04070a;
  border-top: 1px solid var(--border);
  padding: 60px 0 32px;
}
.footer-inner { display: flex; gap: 64px; margin-bottom: 48px; }
.footer-brand { flex: 1; }
.footer-tagline { font-size: 13px; color: var(--text-dim); margin-top: 12px; font-family: 'JetBrains Mono', monospace; }
.footer-links { display: flex; gap: 48px; }
.footer-col { display: flex; flex-direction: column; gap: 10px; }
.footer-col-title { font-size: 11px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: var(--text-dim); margin-bottom: 4px; font-family: 'JetBrains Mono', monospace; }
.footer-col a { font-size: 14px; color: var(--text-muted); text-decoration: none; transition: color 0.2s; }
.footer-col a:hover { color: var(--amber); }
.footer-bottom { border-top: 1px solid var(--border); padding-top: 24px; font-size: 12px; color: var(--text-dim); font-family: 'JetBrains Mono', monospace; }

/* ── Responsive ── */
@media (max-width: 900px) {
  .hero-title { font-size: 44px; }
  .nav-links { display: none; }
  .nav-actions { display: none; }
  .nav-hamburger { display: flex; }
  .steps { flex-direction: column; }
  .step-connector { display: none; }
  .checks-grid { grid-template-columns: repeat(2, 1fr); }
  .pricing-grid { grid-template-columns: 1fr; }
  .pricing-card-featured { transform: none; }
  .report-preview { flex-direction: column; }
  .report-mock { width: 100%; }
  .footer-inner { flex-direction: column; gap: 32px; }
  .footer-links { flex-wrap: wrap; gap: 32px; }
}

@media (max-width: 600px) {
  .hero-title { font-size: 34px; letter-spacing: -1.5px; }
  .hero-stats { flex-direction: column; align-items: flex-start; gap: 16px; }
  .hero-stat-divider { display: none; }
  .section-title { font-size: 28px; }
  .cta-title { font-size: 32px; }
  .checks-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .order-form { padding: 24px; }
  .pricing-enterprise { flex-direction: column; align-items: flex-start; }
}

/* ── Report Viewer / Scroller ── */
.report-viewer { display: flex; gap: 48px; align-items: flex-start; }
.rv-left { flex-shrink: 0; width: 480px; }
.rv-right { flex: 1; }

.rv-frame {
  background: #0d1117;
  border: 1px solid rgba(245,166,35,0.15);
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0,0,0,0.5), 0 0 40px rgba(245,166,35,0.04);
}

.rv-topbar {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 16px;
  background: rgba(0,0,0,0.3);
  border-bottom: 1px solid rgba(255,255,255,0.04);
}
.rv-dots { display: flex; gap: 5px; }
.rv-dots span { width: 10px; height: 10px; border-radius: 50%; }
.rv-dots span:nth-child(1) { background: #f85149; }
.rv-dots span:nth-child(2) { background: #f5a623; }
.rv-dots span:nth-child(3) { background: #3fb950; }
.rv-filename {
  flex: 1;
  text-align: center;
  font-size: 11px;
  color: #3d444d;
  font-family: 'JetBrains Mono', monospace;
  letter-spacing: 0.5px;
}
.rv-download {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 11px;
  color: var(--amber);
  text-decoration: none;
  font-family: 'JetBrains Mono', monospace;
  opacity: 0.7;
  transition: opacity 0.2s;
}
.rv-download:hover { opacity: 1; }

.rv-scroll {
  height: 520px;
  overflow-y: auto;
  overflow-x: hidden;
  scroll-behavior: smooth;
  scroll-snap-type: y mandatory;
  -webkit-overflow-scrolling: touch;
}
.rv-scroll::-webkit-scrollbar { width: 4px; }
.rv-scroll::-webkit-scrollbar-track { background: transparent; }
.rv-scroll::-webkit-scrollbar-thumb { background: rgba(245,166,35,0.3); border-radius: 2px; }
.rv-scroll::-webkit-scrollbar-thumb:hover { background: rgba(245,166,35,0.5); }

.rv-page {
  width: 100%;
  display: block;
  scroll-snap-align: start;
}

.rv-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  padding: 12px 16px;
  background: rgba(0,0,0,0.3);
  border-top: 1px solid rgba(255,255,255,0.04);
}
.rv-nav-btn {
  width: 32px; height: 32px;
  border-radius: 8px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  color: #7d8590;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.2s;
}
.rv-nav-btn:hover { background: rgba(245,166,35,0.1); color: var(--amber); border-color: rgba(245,166,35,0.25); }

.rv-page-indicator { display: flex; gap: 6px; align-items: center; }
.rv-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: #1c2128;
  border: 1px solid rgba(255,255,255,0.08);
  cursor: pointer;
  transition: all 0.2s;
}
.rv-dot.active { background: var(--amber); border-color: var(--amber); box-shadow: 0 0 8px rgba(245,166,35,0.4); }
.rv-dot:hover { border-color: rgba(245,166,35,0.4); }

.rv-counter {
  font-size: 11px;
  color: #3d444d;
  font-family: 'JetBrains Mono', monospace;
  margin-left: 8px;
}

.rv-features { display: flex; flex-direction: column; gap: 20px; }
.rv-feature { display: flex; gap: 16px; align-items: flex-start; }
.rv-feature-icon { font-size: 22px; flex-shrink: 0; margin-top: 2px; }
.rv-feature-title { font-size: 15px; font-weight: 700; color: white; margin-bottom: 4px; }
.rv-feature-desc { font-size: 13px; color: var(--text-muted); line-height: 1.5; }

@media (max-width: 900px) {
  .report-viewer { flex-direction: column; }
  .rv-left { width: 100%; }
  .rv-scroll { height: 400px; }
}

/* ── Enhanced Mobile Responsiveness ── */
@media (max-width: 600px) {
  .hero { padding-top: 56px; }
  .hero .container { padding-top: 48px; padding-bottom: 48px; }
  .hero-badge { font-size: 10px; padding: 4px 10px; }
  .hero-actions { flex-direction: column; gap: 10px; }
  .hero-actions .btn { width: 100%; justify-content: center; }
  .hero-stats { width: 100%; padding: 16px 20px; }
  .hero-stat { padding: 0; text-align: left; }

  .trust-bar .container { flex-direction: column; gap: 12px; }
  .trust-label { text-align: center; }
  .trust-items { justify-content: center; }

  .section { padding: 64px 0; }
  .section-header { margin-bottom: 36px; }
  .section-title { font-size: 26px; letter-spacing: -1px; }
  .section-sub { font-size: 14px; }

  .stat-grid { grid-template-columns: 1fr 1fr; }

  .step { padding: 24px 20px; }
  .step-num { font-size: 36px; }

  .pricing-card { padding: 24px 20px; }
  .pricing-price { font-size: 32px; }

  .pricing-enterprise { padding: 20px; }
  .pe-desc { font-size: 13px; }

  .order-form { padding: 20px; border-radius: 12px; }
  .form-label { font-size: 11px; }

  .file-drop { padding: 24px; }

  .cta-title { font-size: 28px; letter-spacing: -1px; }
  .cta-sub { font-size: 15px; }
  .cta-section { padding: 64px 0; }

  .footer-inner { gap: 24px; }
  .footer-links { gap: 24px; }

  .nav-inner { height: 56px; padding: 0 16px; }
  .container { padding: 0 16px; }

  /* Report viewer mobile */
  .rv-left { width: 100%; }
  .rv-scroll { height: 360px; }
  .rv-features { gap: 16px; }
  .rv-feature-title { font-size: 14px; }
  .rv-feature-desc { font-size: 12px; }
}

@media (max-width: 380px) {
  .hero-title { font-size: 28px; letter-spacing: -1px; }
  .section-title { font-size: 22px; }
  .cta-title { font-size: 24px; }
  .pricing-price { font-size: 28px; }
  .stat-grid { grid-template-columns: 1fr; }
}

/* Touch-friendly buttons and inputs */
@media (hover: none) and (pointer: coarse) {
  .btn { min-height: 48px; }
  .form-input { min-height: 48px; font-size: 16px; } /* prevents iOS zoom */
  .form-select { min-height: 48px; font-size: 16px; }
  .faq-q { min-height: 52px; }
  .rv-nav-btn { width: 40px; height: 40px; }
  .rv-dot { width: 10px; height: 10px; }
  .nav-hamburger { padding: 8px; }
}
