/* ═══════════════════════════════════════════════════
   OppEngine Landing Page — Premium Design System
   ═══════════════════════════════════════════════════ */

/* ─── Tokens ──────────────────────────────────────── */
:root {
  --bg: #030308;
  --bg-card: rgba(255,255,255,0.03);
  --bg-card-hover: rgba(255,255,255,0.05);
  --border: rgba(255,255,255,0.07);
  --border-hover: rgba(255,255,255,0.14);
  --text: #F1F5F9;
  --text-muted: #94A3B8;
  --text-faint: #475569;
  --accent: #3B82F6;
  --accent-glow: rgba(59,130,246,0.25);
  --purple: #8B5CF6;
  --green: #10B981;
  --amber: #F59E0B;
  --red: #EF4444;
  --font: 'Inter', sans-serif;
  --display: 'Outfit', sans-serif;
  --ease: cubic-bezier(0.25, 0.8, 0.25, 1);
  --ease-bounce: cubic-bezier(0.34, 1.56, 0.64, 1);
  --max: 1200px;
}

/* ─── Reset ──────────────────────────────────────── */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  line-height: 1.6;
}
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-thumb { background: rgba(255,255,255,0.1); border-radius: 3px; }

/* ─── Reusable ────────────────────────────────────── */
.section-inner { max-width: var(--max); margin: 0 auto; padding: 0 32px; }
.section-eyebrow {
  display: inline-block;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 14px;
}
.section-title {
  font-family: var(--display);
  font-size: clamp(28px, 3.5vw, 44px);
  font-weight: 700;
  letter-spacing: -1px;
  line-height: 1.15;
  margin-bottom: 16px;
}
.section-body { color: var(--text-muted); font-size: 16px; line-height: 1.7; max-width: 560px; }
.section-header-center { text-align: center; max-width: 640px; margin: 0 auto 60px; }
.section-body-center { color: var(--text-muted); font-size: 16px; line-height: 1.7; margin-top: 8px; }
.text-gradient {
  background: linear-gradient(135deg, var(--accent), var(--purple));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.text-red {
  background: linear-gradient(135deg, var(--red), #F97316);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* ─── NAV ─────────────────────────────────────────── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 200;
  border-bottom: 1px solid transparent;
  transition: all 0.3s var(--ease);
}
.nav.scrolled {
  background: rgba(3,3,8,0.9);
  border-color: var(--border);
  backdrop-filter: blur(20px);
}
.nav-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 20px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--display);
  font-size: 20px;
  font-weight: 700;
}
.nav-logo-icon { color: var(--accent); filter: drop-shadow(0 0 8px rgba(59,130,246,0.5)); }
.nav-links {
  display: flex;
  gap: 32px;
}
.nav-links a {
  font-size: 14px;
  font-weight: 500;
  color: var(--text-muted);
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--text); }
.nav-actions { display: flex; align-items: center; gap: 12px; }
.btn-nav-ghost {
  font-size: 14px;
  font-weight: 600;
  color: var(--text-muted);
  padding: 8px 20px;
  border-radius: 99px;
  transition: color 0.2s;
}
.btn-nav-ghost:hover { color: var(--text); }
.btn-nav-primary {
  background: linear-gradient(135deg, var(--accent), var(--purple));
  color: white;
  font-size: 14px;
  font-weight: 600;
  padding: 9px 22px;
  border-radius: 99px;
  transition: all 0.25s var(--ease);
  box-shadow: 0 2px 14px var(--accent-glow);
}
.btn-nav-primary:hover { transform: translateY(-1px); box-shadow: 0 4px 20px var(--accent-glow); }

/* ─── HERO ────────────────────────────────────────── */
.hero {
  min-height: 100vh;
  padding-top: 100px;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.hero-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  opacity: 0.15;
  pointer-events: none;
}
.hero-blob-1 { width: 600px; height: 600px; background: var(--accent); top: -100px; left: -100px; animation: blobFloat 12s ease-in-out infinite; }
.hero-blob-2 { width: 500px; height: 500px; background: var(--purple); top: 200px; right: -150px; animation: blobFloat 16s ease-in-out infinite reverse; }
.hero-blob-3 { width: 400px; height: 400px; background: var(--green); bottom: 0; left: 30%; animation: blobFloat 10s ease-in-out infinite 2s; }
@keyframes blobFloat {
  0%,100% { transform: translate(0,0) scale(1); }
  50% { transform: translate(30px, -30px) scale(1.05); }
}

.hero-inner {
  max-width: var(--max);
  width: 100%;
  padding: 0 32px;
  text-align: center;
  position: relative;
  z-index: 2;
  padding-top: 60px;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(59,130,246,0.08);
  border: 1px solid rgba(59,130,246,0.2);
  padding: 8px 18px;
  border-radius: 99px;
  font-size: 13px;
  font-weight: 500;
  color: var(--accent);
  margin-bottom: 32px;
}
.badge-dot {
  width: 7px; height: 7px;
  background: var(--green);
  border-radius: 50%;
  animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse {
  0%,100% { box-shadow: 0 0 0 0 rgba(16,185,129,0.4); }
  50% { box-shadow: 0 0 0 6px rgba(16,185,129,0); }
}
.hero-title {
  font-family: var(--display);
  font-size: clamp(40px, 6vw, 80px);
  font-weight: 900;
  letter-spacing: -2px;
  line-height: 1.05;
  margin-bottom: 24px;
}
.hero-title-gradient {
  background: linear-gradient(135deg, var(--accent) 0%, var(--purple) 50%, #EC4899 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.hero-subtitle {
  max-width: 620px;
  margin: 0 auto 40px;
  font-size: 18px;
  line-height: 1.7;
  color: var(--text-muted);
}
.hero-cta-group {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}
.btn-hero-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, var(--accent), var(--purple));
  color: white;
  font-size: 16px;
  font-weight: 700;
  padding: 16px 32px;
  border-radius: 99px;
  box-shadow: 0 4px 30px var(--accent-glow);
  transition: all 0.3s var(--ease);
}
.btn-hero-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 40px var(--accent-glow); }
.btn-arrow { transition: transform 0.25s; }
.btn-hero-primary:hover .btn-arrow { transform: translateX(4px); }
.btn-hero-secondary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border);
  color: var(--text);
  font-size: 15px;
  font-weight: 600;
  padding: 15px 28px;
  border-radius: 99px;
  transition: all 0.25s;
}
.btn-hero-secondary:hover { border-color: var(--border-hover); background: rgba(255,255,255,0.07); }
.play-icon { font-size: 12px; }

.hero-trust {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  color: var(--text-muted);
  font-size: 14px;
}
.trust-avatars { display: flex; }
.trust-avatar {
  width: 32px; height: 32px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: 13px; color: white;
  font-family: var(--display);
  border: 2px solid var(--bg);
  margin-left: -8px;
}
.trust-avatars .trust-avatar:first-child { margin-left: 0; }
.trust-text strong { color: var(--text); }

/* App Preview */
.hero-preview {
  max-width: var(--max);
  width: 100%;
  padding: 60px 32px 0;
  position: relative;
  z-index: 2;
}
.preview-browser {
  background: rgba(10,10,20,0.9);
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 30px 80px rgba(0,0,0,0.6), 0 0 0 1px rgba(255,255,255,0.05);
  backdrop-filter: blur(10px);
}
.preview-browser-bar {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 20px;
  background: rgba(255,255,255,0.02);
  border-bottom: 1px solid var(--border);
}
.preview-dots { display: flex; gap: 6px; }
.preview-dots span {
  width: 10px; height: 10px; border-radius: 50%;
}
.preview-dots span:nth-child(1) { background: #EF4444; }
.preview-dots span:nth-child(2) { background: #F59E0B; }
.preview-dots span:nth-child(3) { background: #10B981; }
.preview-url {
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border);
  padding: 4px 14px;
  border-radius: 6px;
  font-size: 12px;
  color: var(--text-faint);
  font-family: 'SF Mono', monospace;
  flex: 1;
  max-width: 280px;
  margin: 0 auto;
}
.preview-content {
  display: flex;
  height: 360px;
}
.mini-sidebar {
  width: 180px;
  background: rgba(5,5,15,0.8);
  border-right: 1px solid var(--border);
  padding: 20px 12px;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.mini-logo {
  font-family: var(--display);
  font-size: 13px;
  font-weight: 700;
  color: var(--text);
  padding: 0 8px;
  margin-bottom: 14px;
}
.mini-nav-item {
  font-size: 12px;
  font-weight: 500;
  padding: 8px 10px;
  border-radius: 6px;
  color: var(--text-muted);
}
.mini-nav-item.active {
  background: rgba(59,130,246,0.08);
  color: var(--accent);
  border-left: 2px solid var(--accent);
}
.mini-main {
  flex-grow: 1;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  overflow: hidden;
}
.mini-kpis { display: flex; gap: 12px; }
.mini-kpi {
  flex: 1;
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 10px 14px;
}
.mini-kpi-val {
  display: block;
  font-family: var(--display);
  font-size: 20px;
  font-weight: 700;
  color: var(--text);
  line-height: 1;
  margin-bottom: 3px;
}
.mini-kpi-label { font-size: 10px; color: var(--text-faint); }
.mini-section-label { font-size: 12px; font-weight: 600; color: var(--text-muted); }
.mini-opp-card {
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 10px 14px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.mini-opp-cat { font-size: 9px; font-weight: 600; letter-spacing: 0.8px; color: var(--accent); margin-bottom: 2px; }
.mini-opp-title { font-size: 12px; font-weight: 600; color: var(--text); }
.mini-opp-meta { font-size: 10px; color: var(--text-faint); margin-top: 2px; }
.mini-score {
  width: 34px; height: 34px;
  border-radius: 50%;
  border: 2px solid rgba(16,185,129,0.5);
  color: var(--green);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--display);
  font-size: 12px;
  font-weight: 800;
  flex-shrink: 0;
}
.mini-pulse-bar {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 10px;
  color: var(--text-faint);
  padding: 8px 0;
  border-top: 1px solid var(--border);
  margin-top: auto;
}
.pulse-dot {
  width: 7px; height: 7px;
  background: var(--green);
  border-radius: 50%;
  animation: pulse 2s infinite;
}

/* Floating Cards */
.float-card {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 12px;
  background: rgba(10,14,26,0.95);
  border: 1px solid var(--border-hover);
  border-radius: 12px;
  padding: 14px 18px;
  font-size: 13px;
  backdrop-filter: blur(10px);
  box-shadow: 0 10px 30px rgba(0,0,0,0.4);
  animation: floatY 4s ease-in-out infinite;
}
.float-card-1 { bottom: 60px; right: -20px; animation-delay: 0s; }
.float-card-2 { top: 60px; left: -30px; animation-delay: 2s; opacity: 0.85; }
@keyframes floatY {
  0%,100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}
.float-card-icon { font-size: 20px; flex-shrink: 0; }
.float-card-title { font-weight: 600; font-size: 12px; color: var(--text); }
.float-card-sub { font-size: 11px; color: var(--text-muted); margin-top: 2px; }
.float-card-score {
  font-family: var(--display);
  font-size: 16px;
  font-weight: 800;
  color: var(--green);
  margin-left: auto;
}

/* ─── LOGOS ───────────────────────────────────────── */
.logos-section {
  padding: 60px 0;
  text-align: center;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  margin-top: 80px;
  background: rgba(255,255,255,0.01);
}
.logos-label {
  font-size: 13px;
  font-weight: 500;
  color: var(--text-faint);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 28px;
}
.logos-row {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 32px;
}
.source-chip {
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border);
  padding: 7px 16px;
  border-radius: 99px;
  font-size: 13px;
  color: var(--text-muted);
  font-weight: 500;
  transition: all 0.25s;
}
.source-chip:hover { border-color: var(--accent); color: var(--accent); }

/* ─── PAIN ────────────────────────────────────────── */
.pain-section { padding: 100px 0; }
.pain-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 60px;
  align-items: center;
}
.pain-stats { display: flex; gap: 32px; margin-top: 36px; }
.pain-stat-num {
  font-family: var(--display);
  font-size: 36px;
  font-weight: 800;
  background: linear-gradient(135deg, var(--accent), var(--purple));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  line-height: 1;
  margin-bottom: 6px;
}
.pain-stat-label { font-size: 12px; color: var(--text-muted); line-height: 1.4; }
.pain-right { display: flex; flex-direction: column; gap: 16px; }
.pain-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 24px;
}
.pain-card.good { border-color: rgba(16,185,129,0.2); }
.pain-card.bad { border-color: rgba(239,68,68,0.15); }
.pain-card-header { display: flex; align-items: center; gap: 10px; margin-bottom: 16px; }
.pain-card-icon { font-size: 18px; }
.pain-card-title { font-weight: 700; font-size: 15px; }
.pain-card-list { display: flex; flex-direction: column; gap: 8px; }
.pain-card-list li { font-size: 13px; color: var(--text-muted); padding-left: 0; }

/* ─── HOW IT WORKS ────────────────────────────────── */
.how-section { padding: 100px 0; }
.steps-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.step-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 32px;
  position: relative;
  transition: all 0.3s var(--ease);
}
.step-card:hover { transform: translateY(-4px); border-color: rgba(59,130,246,0.3); }
.step-number {
  font-family: var(--display);
  font-size: 64px;
  font-weight: 900;
  color: rgba(255,255,255,0.04);
  position: absolute;
  top: 16px;
  right: 20px;
  line-height: 1;
}
.step-icon-wrap { font-size: 36px; margin-bottom: 16px; }
.step-title { font-family: var(--display); font-size: 20px; font-weight: 700; margin-bottom: 12px; }
.step-body { font-size: 14px; color: var(--text-muted); line-height: 1.7; margin-bottom: 20px; }
.step-tech { display: flex; flex-wrap: wrap; gap: 6px; }
.tech-tag {
  font-size: 11px;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 99px;
  background: rgba(59,130,246,0.08);
  border: 1px solid rgba(59,130,246,0.15);
  color: var(--accent);
}

/* ─── FEATURES ────────────────────────────────────── */
.features-section { padding: 100px 0; }
.features-big-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto auto;
  gap: 16px;
}
.feature-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 32px;
  transition: all 0.3s var(--ease);
}
.feature-card:hover { border-color: var(--border-hover); }
.feature-large { grid-column: span 2; }
.feature-icon { font-size: 32px; margin-bottom: 16px; }
.feature-title { font-family: var(--display); font-size: 20px; font-weight: 700; margin-bottom: 10px; }
.feature-body { font-size: 14px; color: var(--text-muted); line-height: 1.7; margin-bottom: 24px; }

/* Pain demo */
.feature-demo {
  background: rgba(0,0,0,0.3);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 16px;
}
.pain-demo { display: flex; flex-direction: column; gap: 12px; }
.pain-signal {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 10px;
  background: rgba(255,255,255,0.02);
  border-radius: 8px;
  border-left: 3px solid var(--accent);
}
.signal-source { font-size: 10px; font-weight: 600; color: var(--accent); text-transform: uppercase; letter-spacing: 0.5px; }
.signal-text { font-size: 12px; color: var(--text-muted); line-height: 1.5; }
.signal-score { font-size: 11px; font-weight: 700; color: var(--amber); }

/* Cross demo */
.cross-demo { display: flex; flex-direction: column; gap: 10px; }
.cross-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  padding: 10px;
  background: rgba(255,255,255,0.02);
  border-radius: 8px;
}
.cross-flag { font-weight: 600; white-space: nowrap; }
.cross-arrow { color: var(--accent); font-weight: 700; }
.cross-idea { font-size: 12px; color: var(--text-muted); margin-left: auto; }

/* ─── PROOF ───────────────────────────────────────── */
.proof-section { padding: 80px 0; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.proof-stat-row {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0;
  flex-wrap: wrap;
}
.proof-stat { text-align: center; padding: 24px 48px; }
.proof-stat-num {
  font-family: var(--display);
  font-size: 48px;
  font-weight: 900;
  background: linear-gradient(135deg, var(--text), var(--text-muted));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  line-height: 1;
  margin-bottom: 8px;
}
.proof-stat-label { font-size: 14px; color: var(--text-muted); }
.proof-divider { width: 1px; height: 60px; background: var(--border); }

/* ─── TESTIMONIALS ────────────────────────────────── */
.testimonials-section { padding: 100px 0; }
.testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.testimonial-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 32px;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.testimonial-featured {
  background: linear-gradient(135deg, rgba(59,130,246,0.05), rgba(139,92,246,0.05));
  border-color: rgba(59,130,246,0.2);
}
.testimonial-badge {
  position: absolute;
  top: -10px;
  left: 32px;
  background: linear-gradient(135deg, var(--accent), var(--purple));
  color: white;
  font-size: 11px;
  font-weight: 700;
  padding: 3px 12px;
  border-radius: 99px;
}
.testimonial-stars { font-size: 14px; color: var(--amber); letter-spacing: 2px; }
.testimonial-text { font-size: 15px; color: var(--text-muted); line-height: 1.75; flex-grow: 1; }
.testimonial-author { display: flex; align-items: center; gap: 12px; margin-top: auto; }
.testimonial-avatar {
  width: 40px; height: 40px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: 16px; color: white;
  font-family: var(--display);
  flex-shrink: 0;
}
.testimonial-name { font-weight: 700; font-size: 14px; }
.testimonial-role { font-size: 12px; color: var(--text-muted); }

/* ─── PRICING ─────────────────────────────────────── */
.pricing-section { padding: 100px 0; }
.pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-bottom: 40px; }
.pricing-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 36px;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 0;
  transition: all 0.3s var(--ease);
}
.pricing-card:hover { transform: translateY(-4px); }
.pricing-featured {
  background: linear-gradient(135deg, rgba(59,130,246,0.06), rgba(139,92,246,0.06));
  border-color: rgba(59,130,246,0.25);
  box-shadow: 0 0 40px rgba(59,130,246,0.08);
}
.pricing-recommended {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, var(--accent), var(--purple));
  color: white;
  font-size: 12px;
  font-weight: 700;
  padding: 5px 18px;
  border-radius: 99px;
  white-space: nowrap;
}
.pricing-plan {
  font-family: var(--display);
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 12px;
}
.pricing-price {
  font-family: var(--display);
  font-size: 52px;
  font-weight: 900;
  letter-spacing: -2px;
  margin-bottom: 10px;
  line-height: 1;
}
.pricing-per { font-size: 18px; font-weight: 400; color: var(--text-muted); letter-spacing: 0; }
.pricing-desc { font-size: 13px; color: var(--text-muted); line-height: 1.6; margin-bottom: 28px; }
.pricing-features {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 32px;
  flex-grow: 1;
}
.pricing-features li { font-size: 14px; color: var(--text-muted); }
.pricing-features li:first-of-type(✓) { color: var(--green); }
.btn-pricing {
  display: block;
  text-align: center;
  font-size: 14px;
  font-weight: 700;
  padding: 14px;
  border-radius: 12px;
  transition: all 0.25s;
}
.btn-pricing-primary {
  background: linear-gradient(135deg, var(--accent), var(--purple));
  color: white;
  box-shadow: 0 2px 14px var(--accent-glow);
}
.btn-pricing-primary:hover { transform: translateY(-2px); box-shadow: 0 4px 24px var(--accent-glow); }
.btn-pricing-ghost {
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border);
  color: var(--text);
}
.btn-pricing-ghost:hover { border-color: var(--border-hover); background: rgba(255,255,255,0.07); }
.pricing-enterprise {
  text-align: center;
  font-size: 14px;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}
.link-underline { color: var(--accent); text-decoration: underline; text-underline-offset: 3px; }

/* ─── FINAL CTA ───────────────────────────────────── */
.final-cta {
  padding: 120px 32px;
  text-align: center;
  position: relative;
  overflow: hidden;
  border-top: 1px solid var(--border);
}
.final-cta-blob-1, .final-cta-blob-2 {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.12;
  pointer-events: none;
}
.final-cta-blob-1 { width: 500px; height: 500px; background: var(--accent); top: -100px; left: -100px; }
.final-cta-blob-2 { width: 500px; height: 500px; background: var(--purple); bottom: -100px; right: -100px; }
.final-cta-inner { position: relative; z-index: 2; max-width: 700px; margin: 0 auto; }
.final-cta-title {
  font-family: var(--display);
  font-size: clamp(32px, 4vw, 56px);
  font-weight: 900;
  letter-spacing: -1.5px;
  line-height: 1.1;
  margin-bottom: 20px;
}
.final-cta-sub { font-size: 17px; color: var(--text-muted); margin-bottom: 36px; }
.final-cta-note { font-size: 13px; color: var(--text-faint); margin-top: 16px; }

/* ─── FOOTER ──────────────────────────────────────── */
.footer {
  border-top: 1px solid var(--border);
  padding: 60px 32px;
  text-align: center;
}
.footer-inner { max-width: var(--max); margin: 0 auto; display: flex; flex-direction: column; align-items: center; gap: 16px; }
.footer-logo { display: flex; align-items: center; gap: 8px; font-family: var(--display); font-size: 18px; font-weight: 700; }
.footer-tagline { font-size: 13px; color: var(--text-faint); max-width: 380px; }
.footer-links { display: flex; gap: 24px; }
.footer-links a { font-size: 13px; color: var(--text-faint); transition: color 0.2s; }
.footer-links a:hover { color: var(--text); }
.footer-copy { font-size: 12px; color: var(--text-faint); }

/* ─── RESPONSIVE ──────────────────────────────────── */
@media (max-width: 1024px) {
  .features-big-grid { grid-template-columns: 1fr 1fr; }
  .feature-large { grid-column: span 2; }
  .pain-grid { grid-template-columns: 1fr; }
  .pain-stats { flex-direction: column; gap: 20px; }
}
@media (max-width: 768px) {
  .nav-links { display: none; }
  .hero-title { font-size: 40px; letter-spacing: -1px; }
  .hero-subtitle { font-size: 16px; }
  .steps-grid { grid-template-columns: 1fr; }
  .features-big-grid { grid-template-columns: 1fr; }
  .feature-large { grid-column: span 1; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .pricing-grid { grid-template-columns: 1fr; }
  .proof-stat { padding: 20px 24px; }
  .proof-divider { display: none; }
  .mini-sidebar { display: none; }
  .float-card { display: none; }
}
