/* ─── RESET & BASE ──────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --bg:        #030a05;
  --bg-2:      #071009;
  --bg-card:   rgba(255,255,255,0.03);
  --bg-card-b: rgba(255,255,255,0.07);
  --green:     #22c55e;
  --green-d:   #16a34a;
  --green-l:   #86efac;
  --green-dim: rgba(34,197,94,0.12);
  --amber:     #ff9900;
  --purple:    #8b5cf6;
  --white:     #ffffff;
  --gray-1:    #f1f5f9;
  --gray-2:    #cbd5e1;
  --gray-3:    #64748b;
  --gray-4:    #334155;
  --border:    rgba(255,255,255,0.08);
  --border-g:  rgba(34,197,94,0.25);
  --radius:    16px;
  --radius-sm: 10px;
  --shadow-g:  0 0 60px rgba(34,197,94,0.15);
  --font:      'Inter', system-ui, sans-serif;
  --mono:      'JetBrains Mono', monospace;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--gray-1);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }

a { text-decoration: none; color: inherit; }

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

/* ─── SCROLLBAR ──────────────────────────────────────────────────── */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: var(--gray-4); border-radius: 3px; }

/* ─── BUTTONS ────────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  border-radius: 10px;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
  border: none;
  white-space: nowrap;
}
.btn-primary {
  background: linear-gradient(135deg, var(--green), var(--green-d));
  color: #fff;
  box-shadow: 0 4px 20px rgba(34,197,94,0.35);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(34,197,94,0.5);
}
.btn-outline {
  background: transparent;
  border: 1.5px solid var(--border-g);
  color: var(--green-l);
}
.btn-outline:hover {
  background: var(--green-dim);
  border-color: var(--green);
  transform: translateY(-2px);
}
.btn-ghost {
  background: transparent;
  color: var(--gray-2);
}
.btn-ghost:hover { color: var(--white); }
.btn-lg { padding: 16px 32px; font-size: 16px; border-radius: 12px; }
.btn-full { width: 100%; justify-content: center; }

/* ─── NAV ────────────────────────────────────────────────────────── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 0;
  transition: all 0.3s ease;
}
.nav.scrolled {
  background: rgba(3,10,5,0.85);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
}
.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px 24px;
  display: flex;
  align-items: center;
  gap: 40px;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 18px;
  font-weight: 700;
  color: var(--white);
}
.logo-icon { display: flex; align-items: center; }
.nav-links {
  display: flex;
  list-style: none;
  gap: 32px;
  flex: 1;
}
.nav-links a {
  color: var(--gray-3);
  font-size: 14px;
  font-weight: 500;
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--white); }
.nav-cta { display: flex; align-items: center; gap: 12px; margin-left: auto; }
.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(--gray-2);
  border-radius: 2px;
  transition: all 0.3s;
}

/* ─── GRADIENT TEXT ──────────────────────────────────────────────── */
.gradient-text {
  background: linear-gradient(135deg, var(--green) 0%, #4ade80 50%, var(--green-l) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ─── GLOWS ──────────────────────────────────────────────────────── */
.hero-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
  z-index: 0;
}
.hero-glow-1 {
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(34,197,94,0.18) 0%, transparent 70%);
  top: -200px; left: -100px;
  animation: glowFloat 8s ease-in-out infinite;
}
.hero-glow-2 {
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(139,92,246,0.12) 0%, transparent 70%);
  top: 100px; right: -100px;
  animation: glowFloat 10s ease-in-out infinite reverse;
}
.hero-glow-3 {
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(34,197,94,0.1) 0%, transparent 70%);
  bottom: 0; left: 40%;
  animation: glowFloat 12s ease-in-out infinite;
}
.hero-glow-4 {
  width: 700px; height: 400px;
  background: radial-gradient(ellipse, rgba(34,197,94,0.1) 0%, transparent 70%);
  top: 50%; left: 50%;
  transform: translate(-50%,-50%);
}
.hero-glow-5 {
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(139,92,246,0.08) 0%, transparent 70%);
  top: 0; right: 0;
}

@keyframes glowFloat {
  0%,100% { transform: translate(0,0) scale(1); }
  33% { transform: translate(30px,-20px) scale(1.05); }
  66% { transform: translate(-20px,30px) scale(0.95); }
}

/* ─── BADGE ──────────────────────────────────────────────────────── */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  border-radius: 100px;
  border: 1px solid var(--border-g);
  background: var(--green-dim);
  font-size: 13px;
  font-weight: 500;
  color: var(--green-l);
  margin-bottom: 24px;
}
.badge-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--green);
  animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse {
  0%,100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.6; transform: scale(0.85); }
}

/* ─── HERO ───────────────────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 120px 0 80px;
  overflow: hidden;
}
.hero-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0.4;
}
/* Two-column grid: text left, mockup right */
.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 60px;
  width: 100%;
  position: relative;
  z-index: 2;
}
.hero-content {
  position: relative;
}
.hero-title {
  font-size: clamp(48px, 6vw, 82px);
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: -2px;
  color: var(--white);
  margin-bottom: 24px;
}
.hero-subtitle {
  font-size: clamp(16px, 2vw, 20px);
  color: var(--gray-3);
  line-height: 1.7;
  margin-bottom: 40px;
  max-width: 540px;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 56px;
}
.hero-stats {
  display: flex;
  align-items: center;
  gap: 0;
  flex-wrap: wrap;
  gap: 24px;
}
.stat { display: flex; flex-direction: column; gap: 4px; }
.stat-value {
  font-size: 24px;
  font-weight: 800;
  color: var(--green);
  font-variant-numeric: tabular-nums;
}
.stat-label { font-size: 12px; color: var(--gray-3); text-transform: uppercase; letter-spacing: 0.08em; }
.stat-divider { width: 1px; height: 40px; background: var(--border); }

/* ─── HERO MOCKUP ────────────────────────────────────────────────── */
.hero-mockup {
  position: relative;
  z-index: 3;
  width: 100%;
  max-width: 520px;
  margin-left: auto;
  animation: floatMockup 6s ease-in-out infinite;
}
@keyframes floatMockup {
  0%,100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}
.mockup-window {
  background: rgba(7,16,9,0.92);
  border: 1px solid var(--border-g);
  border-radius: 18px;
  backdrop-filter: blur(20px);
  box-shadow: 0 24px 80px rgba(0,0,0,0.6), 0 0 0 1px rgba(34,197,94,0.1), inset 0 1px 0 rgba(255,255,255,0.06);
  overflow: hidden;
}
.mockup-bar {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 16px;
  background: rgba(255,255,255,0.03);
  border-bottom: 1px solid var(--border);
}
.dot { width: 12px; height: 12px; border-radius: 50%; }
.dot-red { background: #ff5f57; }
.dot-yellow { background: #febc2e; }
.dot-green { background: #28c840; }
.mockup-title { font-size: 12px; font-weight: 600; color: var(--gray-3); margin-left: 4px; flex: 1; text-align: center; }
.mockup-badge { font-size: 11px; font-weight: 700; color: var(--green); animation: pulse 1.5s ease-in-out infinite; }
.mockup-body { padding: 20px; display: flex; flex-direction: column; gap: 16px; }
.mockup-question { background: rgba(34,197,94,0.07); border: 1px solid rgba(34,197,94,0.2); border-radius: 10px; padding: 14px; }
.q-label { font-size: 10px; font-weight: 700; color: var(--green); text-transform: uppercase; letter-spacing: 0.1em; display: block; margin-bottom: 6px; }
.mockup-question p { font-size: 13px; color: var(--gray-2); font-style: italic; line-height: 1.5; }
.chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 12px;
  border-radius: 100px;
  font-size: 11px;
  font-weight: 600;
}
.chip-behavioral { background: rgba(251,191,36,0.15); color: #fbbf24; border: 1px solid rgba(251,191,36,0.25); }
.chip-green { background: rgba(34,197,94,0.15); color: var(--green-l); border: 1px solid rgba(34,197,94,0.25); }
.chip-blue { background: rgba(99,102,241,0.15); color: #a5b4fc; border: 1px solid rgba(99,102,241,0.25); }

.suggestion-item {
  display: flex;
  gap: 10px;
  font-size: 12.5px;
  color: var(--gray-2);
  line-height: 1.55;
  animation: slideInFade 0.5s ease both;
  padding: 4px 0;
}
@keyframes slideInFade {
  from { opacity: 0; transform: translateX(-8px); }
  to { opacity: 1; transform: translateX(0); }
}
.bullet { color: var(--green); font-size: 10px; margin-top: 4px; flex-shrink: 0; }
.suggestion-item strong { color: var(--green-l); }

.mockup-footer { border-top: 1px solid var(--border); padding-top: 12px; }
.latency-badge {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  color: var(--gray-3);
}
.pulse-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--green);
  animation: pulse 1s ease-in-out infinite;
}
.latency-badge strong { color: var(--green); }

.hero-scroll-hint {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  color: var(--gray-4);
  animation: scrollBounce 2s ease-in-out infinite;
  z-index: 2;
}
@keyframes scrollBounce {
  0%,100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(6px); }
}

/* ─── TRUST BAND ─────────────────────────────────────────────────── */
.trust-band {
  padding: 48px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: rgba(255,255,255,0.01);
}
.trust-label {
  text-align: center;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--gray-4);
  margin-bottom: 28px;
}
.trust-logos {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 40px;
  flex-wrap: wrap;
}
.trust-logo {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  opacity: 0.5;
  transition: opacity 0.2s;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--gray-3);
}
.trust-logo:hover { opacity: 1; }

/* ─── SECTION COMMON ─────────────────────────────────────────────── */
.section-header { text-align: center; margin-bottom: 64px; }
.section-tag {
  display: inline-block;
  padding: 5px 14px;
  border-radius: 100px;
  border: 1px solid var(--border-g);
  background: var(--green-dim);
  font-size: 12px;
  font-weight: 600;
  color: var(--green);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 20px;
}
.section-title {
  font-size: clamp(36px, 4vw, 56px);
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: -1.5px;
  color: var(--white);
  margin-bottom: 20px;
}
.section-subtitle {
  font-size: 17px;
  color: var(--gray-3);
  max-width: 560px;
  margin: 0 auto;
  line-height: 1.7;
}

/* ─── FEATURES ───────────────────────────────────────────────────── */
.features {
  padding: 120px 0;
  position: relative;
}
.feature-tabs {
  display: flex;
  justify-content: center;
  gap: 4px;
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 6px;
  width: fit-content;
  margin: 0 auto 48px;
}
.feature-tab {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 24px;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 600;
  color: var(--gray-3);
  background: none;
  border: none;
  cursor: pointer;
  transition: all 0.2s ease;
}
.feature-tab:hover { color: var(--gray-1); }
.feature-tab.active {
  background: var(--green-dim);
  color: var(--green-l);
  border: 1px solid var(--border-g);
}

.feature-panel { display: none; }
.feature-panel.active { display: block; animation: panelFade 0.4s ease; }
@keyframes panelFade {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}
.feature-panel-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.feature-panel-text h3 {
  font-size: clamp(28px, 3vw, 40px);
  font-weight: 800;
  color: var(--white);
  margin-bottom: 16px;
  line-height: 1.2;
  letter-spacing: -0.5px;
}
.feature-panel-text p {
  color: var(--gray-3);
  font-size: 16px;
  line-height: 1.7;
  margin-bottom: 28px;
}
.feature-list { list-style: none; display: flex; flex-direction: column; gap: 12px; }
.feature-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 15px;
  color: var(--gray-2);
}
.check { color: var(--green); font-size: 16px; flex-shrink: 0; margin-top: 1px; }

/* Visual cards */
.visual-card {
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 28px;
  backdrop-filter: blur(10px);
  box-shadow: 0 8px 40px rgba(0,0,0,0.3);
}
.visual-card-dark { background: rgba(3,8,5,0.8); border-color: var(--border-g); }
.visual-card-header { display: flex; gap: 8px; margin-bottom: 20px; }

.visual-question-list { display: flex; flex-direction: column; gap: 12px; margin-bottom: 24px; }
.vq-item {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 12px 14px;
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--border);
  border-radius: 10px;
  font-size: 13px;
  color: var(--gray-2);
  animation: slideInFade 0.4s ease calc(var(--i) * 0.1s) both;
}
.vq-cat { font-size: 10px; font-weight: 700; color: var(--green); text-transform: uppercase; letter-spacing: 0.1em; }

.visual-score { }
.score-label { font-size: 11px; font-weight: 600; color: var(--gray-4); text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 8px; }
.score-bar-wrap { height: 8px; background: rgba(255,255,255,0.06); border-radius: 4px; overflow: hidden; margin-bottom: 6px; }
.score-bar { height: 100%; width: var(--w); background: linear-gradient(90deg, var(--green), var(--green-l)); border-radius: 4px; transition: width 1.5s ease; }
.score-val { font-size: 12px; color: var(--green-l); font-weight: 600; }

/* Pipeline */
.pipeline-flow { display: flex; align-items: center; justify-content: space-between; gap: 8px; margin-bottom: 20px; flex-wrap: wrap; gap: 12px; }
.pipeline-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  flex: 1;
  min-width: 80px;
}
.pipeline-icon { font-size: 28px; }
.pipeline-step span { font-size: 12px; color: var(--gray-3); text-align: center; }
.pipeline-latency { font-size: 11px; font-weight: 700; color: var(--green); font-family: var(--mono); }
.pipeline-arrow { color: var(--green); font-size: 20px; flex-shrink: 0; }
.pipeline-total { text-align: center; font-size: 14px; color: var(--gray-3); padding-top: 16px; border-top: 1px solid var(--border); }
.green { color: var(--green); }

/* Report card */
.report-score-ring { display: flex; justify-content: center; margin-bottom: 24px; }
.score-ring-progress { transition: stroke-dashoffset 1.5s ease; }
.report-breakdown { display: flex; flex-direction: column; gap: 10px; }
.rb-item { display: flex; align-items: center; gap: 12px; font-size: 13px; }
.rb-item > span:first-child { width: 100px; color: var(--gray-3); flex-shrink: 0; }
.rb-bar { flex: 1; height: 6px; background: rgba(255,255,255,0.06); border-radius: 3px; overflow: hidden; }
.rb-bar div { height: 100%; background: linear-gradient(90deg, var(--green), var(--green-l)); border-radius: 3px; transition: width 1.5s ease; }
.rb-item > span:last-child { width: 28px; text-align: right; color: var(--green-l); font-weight: 700; font-size: 12px; }

/* ─── HOW IT WORKS ───────────────────────────────────────────────── */
.how-it-works {
  padding: 120px 0;
  position: relative;
  background: linear-gradient(180deg, transparent 0%, rgba(34,197,94,0.03) 50%, transparent 100%);
}
.steps {
  display: flex;
  align-items: flex-start;
  gap: 0;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0;
}
.step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 16px;
  flex: 1;
  min-width: 180px;
  max-width: 220px;
  padding: 32px 20px;
  border-radius: var(--radius);
  transition: all 0.3s ease;
  position: relative;
}
.step:hover {
  background: rgba(34,197,94,0.05);
  transform: translateY(-6px);
}
.step-number {
  font-size: 12px;
  font-weight: 800;
  color: var(--green);
  font-family: var(--mono);
  letter-spacing: 0.1em;
}
.step-icon {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: rgba(34,197,94,0.1);
  border: 1.5px solid var(--border-g);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--green);
  transition: all 0.3s;
}
.step:hover .step-icon {
  background: rgba(34,197,94,0.2);
  box-shadow: 0 0 30px rgba(34,197,94,0.3);
}
.step h3 { font-size: 17px; font-weight: 700; color: var(--white); }
.step p { font-size: 14px; color: var(--gray-3); line-height: 1.6; }
.step-connector {
  display: flex;
  align-items: center;
  margin-top: 60px;
  opacity: 0.4;
}

/* ─── SECURITY ───────────────────────────────────────────────────── */
.security-strip {
  padding: 64px 0;
  background: rgba(255,255,255,0.02);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.security-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}
.security-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}
.security-item svg { flex-shrink: 0; margin-top: 2px; }
.security-item strong { display: block; font-size: 14px; font-weight: 700; color: var(--white); margin-bottom: 4px; }
.security-item p { font-size: 13px; color: var(--gray-3); line-height: 1.5; }

/* ─── PRICING ────────────────────────────────────────────────────── */
.pricing {
  padding: 120px 0;
  position: relative;
  overflow: hidden;
}
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  align-items: start;
}
.pricing-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  transition: all 0.3s ease;
}
.pricing-card:hover {
  border-color: rgba(255,255,255,0.15);
  transform: translateY(-4px);
}
.pricing-card-featured {
  background: linear-gradient(145deg, rgba(34,197,94,0.08), rgba(22,163,74,0.04));
  border-color: var(--border-g);
  position: relative;
  box-shadow: 0 0 0 1px rgba(34,197,94,0.1), 0 20px 60px rgba(0,0,0,0.3);
  transform: scale(1.03);
}
.pricing-card-featured:hover { transform: scale(1.03) translateY(-4px); }
.pricing-card-bundle {
  background: linear-gradient(145deg, rgba(139,92,246,0.08), rgba(109,40,217,0.04));
  border-color: rgba(139,92,246,0.25);
}
.pricing-popular {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, var(--green), var(--green-d));
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  padding: 4px 16px;
  border-radius: 100px;
  white-space: nowrap;
}
.pricing-name { font-size: 14px; font-weight: 700; color: var(--gray-3); text-transform: uppercase; letter-spacing: 0.1em; }
.pricing-price {
  font-size: 40px;
  font-weight: 900;
  color: var(--white);
  line-height: 1;
}
.pricing-price span { font-size: 15px; font-weight: 400; color: var(--gray-3); }
.pricing-desc { font-size: 14px; color: var(--gray-3); line-height: 1.5; }
.pricing-features { list-style: none; display: flex; flex-direction: column; gap: 10px; flex: 1; }
.pricing-features li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  color: var(--gray-2);
}
.pricing-features li.muted { color: var(--gray-4); }
.pricing-features li.muted .check { color: var(--gray-4); }
.pricing-note { text-align: center; font-size: 14px; color: var(--gray-3); margin-top: 40px; }
.pricing-note a { color: var(--green); text-decoration: underline; }

/* ─── CONTACT FORM ───────────────────────────────────────────────── */
.contact {
  padding: 120px 0;
  position: relative;
}
.contact-form-wrap {
  max-width: 560px;
  margin: 0 auto;
}
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.form-group label {
  font-size: 13px;
  font-weight: 600;
  color: var(--gray-2);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.form-group input,
.form-group textarea {
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 14px 16px;
  font-size: 15px;
  font-family: var(--font);
  color: var(--white);
  transition: border-color 0.2s;
  outline: none;
  resize: vertical;
}
.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--green);
  box-shadow: 0 0 0 3px var(--green-dim);
}
.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--gray-4);
}
.form-status {
  text-align: center;
  font-size: 14px;
  min-height: 20px;
}
.form-status.success { color: var(--green-l); }
.form-status.error { color: #f87171; }

/* ─── FINAL CTA ──────────────────────────────────────────────────── */
.final-cta { padding: 120px 0; }
.cta-box {
  position: relative;
  background: linear-gradient(145deg, rgba(34,197,94,0.08), rgba(22,163,74,0.04));
  border: 1px solid var(--border-g);
  border-radius: 28px;
  padding: 80px 60px;
  text-align: center;
  overflow: hidden;
}
.cta-glow {
  position: absolute;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(34,197,94,0.12), transparent 70%);
  top: 50%;
  left: 50%;
  transform: translate(-50%,-50%);
  pointer-events: none;
}
.cta-box h2 {
  font-size: clamp(36px, 4vw, 56px);
  font-weight: 900;
  color: var(--white);
  line-height: 1.1;
  letter-spacing: -1.5px;
  margin-bottom: 20px;
  position: relative;
}
.cta-box p {
  font-size: 18px;
  color: var(--gray-3);
  margin-bottom: 40px;
  position: relative;
}
.cta-actions {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  position: relative;
}

/* ─── FOOTER ─────────────────────────────────────────────────────── */
.footer {
  padding: 64px 0 32px;
  border-top: 1px solid var(--border);
}
.footer-top {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 64px;
  margin-bottom: 48px;
}
.footer-brand { display: flex; flex-direction: column; gap: 16px; }
.footer-brand p { font-size: 14px; color: var(--gray-3); line-height: 1.6; }
.footer-links { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
.footer-col { display: flex; flex-direction: column; gap: 10px; }
.footer-col strong { font-size: 13px; font-weight: 700; color: var(--white); text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 4px; }
.footer-col a { font-size: 14px; color: var(--gray-3); transition: color 0.2s; }
.footer-col a:hover { color: var(--green-l); }
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 24px;
  border-top: 1px solid var(--border);
  flex-wrap: wrap;
  gap: 16px;
}
.footer-bottom p { font-size: 13px; color: var(--gray-4); }
.footer-badges { display: flex; gap: 8px; flex-wrap: wrap; }
.badge-small {
  padding: 3px 10px;
  border-radius: 100px;
  border: 1px solid var(--border);
  font-size: 11px;
  font-weight: 600;
  color: var(--gray-4);
}

/* ─── REVEAL ANIMATIONS ──────────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ─── RESPONSIVE ─────────────────────────────────────────────────── */
@media (max-width: 1100px) {
  .hero-mockup { width: 38vw; right: -30px; }
  .pricing-grid { grid-template-columns: repeat(2, 1fr); }
  .pricing-card-featured { transform: none; }
  .pricing-card-featured:hover { transform: translateY(-4px); }
  .security-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 900px) {
  .hero { padding: 100px 0 60px; }
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .hero-mockup {
    max-width: 520px;
    margin: 0 auto;
    animation: none;
  }
  .feature-panel-content { grid-template-columns: 1fr; gap: 40px; }
  .steps { gap: 8px; }
  .step-connector { display: none; }
  .footer-top { grid-template-columns: 1fr; gap: 40px; }
  .footer-links { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 768px) {
  .nav-links { display: none; }
  .nav-cta { display: none; }
  .nav-hamburger { display: flex; }
  .pricing-grid { grid-template-columns: 1fr; max-width: 420px; margin: 0 auto; }
  .security-grid { grid-template-columns: 1fr; }
  .hero-stats { gap: 16px; }
  .stat-divider { display: none; }
  .feature-tabs { flex-direction: column; width: 100%; }
  .cta-box { padding: 48px 24px; }
  .footer-links { grid-template-columns: repeat(2, 1fr); }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 480px) {
  .hero-title { letter-spacing: -1px; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: 100%; justify-content: center; }
  .footer-links { grid-template-columns: 1fr; }
}
