/* ─── NAV ─────────────────────────────────────────────── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 20px 0;
  background: rgba(10, 10, 15, 0.88);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
}
.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-left { display: flex; align-items: center; gap: 32px; }
.logo { display: flex; align-items: center; gap: 10px; text-decoration: none; }
.logo-icon { font-size: 22px; }
.logo-text { font-family: var(--font-display); font-weight: 700; font-size: 20px; letter-spacing: -0.5px; color: var(--fg); }

.nav-dropdown { position: relative; }
.nav-dropdown-btn {
  display: inline-flex; align-items: center; gap: 6px;
  font-family: var(--font-display); font-size: 14px; font-weight: 500;
  color: var(--fg-muted); text-decoration: none;
  padding: 8px 12px; border-radius: var(--radius-sm);
  background: none; border: none; cursor: pointer;
  transition: all 0.2s;
}
.nav-dropdown-btn:hover { color: var(--fg); background: var(--bg-elevated); }
.nav-dropdown-btn svg { width: 12px; height: 12px; opacity: 0.6; }

.nav-dropdown-menu {
  display: none;
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 8px;
  min-width: 200px;
  box-shadow: 0 16px 48px rgba(0,0,0,0.4);
  z-index: 200;
}
.nav-dropdown-menu.open { display: block; }
.nav-dropdown-item {
  display: block;
  padding: 10px 14px;
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 500;
  color: var(--fg-muted);
  text-decoration: none;
  border-radius: var(--radius-sm);
  transition: all 0.15s;
}
.nav-dropdown-item:hover { background: var(--bg-elevated); color: var(--fg); }

.nav-right { display: flex; align-items: center; gap: 16px; }
.nav-link { font-family: var(--font-display); font-size: 14px; font-weight: 500; color: var(--fg-muted); text-decoration: none; padding: 8px 12px; border-radius: var(--radius-sm); transition: all 0.2s; }
.nav-link:hover { color: var(--fg); background: var(--bg-elevated); }
.nav-cta {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 9px 20px;
  background: var(--accent); color: var(--bg);
  border-radius: var(--radius-sm);
  font-family: var(--font-display); font-size: 13px; font-weight: 700;
  text-decoration: none;
  transition: all 0.2s;
}
.nav-cta:hover { background: #00e07a; }

/* ─── HERO ─────────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex; align-items: center; justify-content: center;
  padding: 120px 32px 80px;
  overflow: hidden;
  text-align: center;
}
.hero-content { max-width: 900px; position: relative; z-index: 2; }
.hero-badge {
  display: inline-block;
  padding: 8px 20px;
  border-radius: 100px;
  background: rgba(255,183,0,0.15);
  color: #ffb833;
  font-family: var(--font-display);
  font-size: 12px; font-weight: 600;
  letter-spacing: 1px; text-transform: uppercase;
  margin-bottom: 28px;
  border: 1px solid rgba(255,183,0,0.25);
}
.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(36px, 6vw, 64px);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -2px;
  margin-bottom: 28px;
}
.hero-sub {
  font-size: 18px; line-height: 1.7;
  color: var(--fg-muted);
  max-width: 680px; margin: 0 auto 48px;
}
.hero-cta-group {
  display: flex; gap: 16px; justify-content: center; align-items: center;
  flex-wrap: wrap; margin-bottom: 48px;
}
.hero-cta-primary {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 16px 40px;
  background: var(--accent); color: var(--bg);
  border-radius: var(--radius);
  font-family: var(--font-display); font-size: 15px; font-weight: 700;
  text-decoration: none;
  transition: all 0.25s ease;
}
.hero-cta-primary:hover { background: #00e07a; box-shadow: 0 0 40px rgba(0,255,136,0.3); transform: translateY(-2px); }
.hero-cta-secondary {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 16px 32px;
  background: transparent; color: var(--fg-muted);
  border-radius: var(--radius);
  font-family: var(--font-display); font-size: 15px; font-weight: 600;
  text-decoration: none; border: 1px solid var(--border);
  transition: all 0.25s ease;
}
.hero-cta-secondary:hover { border-color: var(--fg-muted); color: var(--fg); }
.hero-glow {
  position: absolute; top: 20%; left: 50%; transform: translateX(-50%);
  width: 600px; height: 600px;
  background: radial-gradient(circle, var(--accent-glow) 0%, transparent 70%);
  pointer-events: none; z-index: 1;
}

.text-red { color: var(--red); }
.text-accent { color: var(--accent); }

/* ─── STAT BAR ─────────────────────────────────────────── */
.stat-bar {
  display: flex; align-items: center; justify-content: center;
  gap: 0; padding: 32px 48px;
  background: var(--bg-card);
  border-radius: var(--radius);
  border: 1px solid var(--border);
  max-width: 900px; margin: 0 auto;
}
.stat-item { display: flex; flex-direction: column; align-items: center; gap: 6px; padding: 0 36px; }
.stat-number { font-family: var(--font-display); font-size: 38px; font-weight: 700; color: #ffb833; }
.stat-label { font-size: 13px; color: var(--fg-muted); text-align: center; line-height: 1.4; max-width: 140px; }
.stat-divider { width: 1px; height: 56px; background: var(--border); flex-shrink: 0; }

/* ─── SECTIONS ─────────────────────────────────────────── */
.section-inner { max-width: 1200px; margin: 0 auto; padding: 0 32px; }
.section-tag { display: inline-block; font-family: var(--font-display); font-size: 12px; font-weight: 600; letter-spacing: 2px; text-transform: uppercase; color: var(--accent); margin-bottom: 16px; }
section h2 { font-family: var(--font-display); font-size: clamp(28px, 4vw, 44px); font-weight: 700; line-height: 1.15; letter-spacing: -1px; margin-bottom: 40px; }

/* PAIN */
.pain { padding: 120px 0; background: var(--bg); }
.pain-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; margin-bottom: 48px; }
.pain-card {
  padding: 36px;
  background: var(--bg-card);
  border-radius: var(--radius);
  border: 1px solid var(--border);
  transition: border-color 0.3s;
}
.pain-card:hover { border-color: var(--red); }
.pain-icon { font-size: 28px; margin-bottom: 16px; }
.pain-card h3 { font-family: var(--font-display); font-size: 20px; font-weight: 600; margin-bottom: 10px; }
.pain-card p { font-size: 15px; color: var(--fg-muted); line-height: 1.6; }
.pain-quote {
  padding: 32px 36px;
  background: var(--red-dim);
  border: 1px solid rgba(255,68,68,0.2);
  border-radius: var(--radius);
  font-size: 16px; line-height: 1.7; color: var(--fg-muted);
}
.pain-quote strong { color: var(--red); }

/* SOLUTION */
.solution { padding: 120px 0; background: var(--bg-elevated); }
.solution-steps { display: flex; flex-direction: column; gap: 0; }
.solution-step { display: flex; align-items: flex-start; gap: 32px; padding: 40px 0; border-bottom: 1px solid var(--border); }
.solution-step:last-child { border-bottom: none; }
.step-num { font-family: var(--font-display); font-size: 48px; font-weight: 700; color: var(--accent); opacity: 0.3; min-width: 80px; line-height: 1; }
.step-content h3 { font-family: var(--font-display); font-size: 22px; font-weight: 600; margin-bottom: 10px; }
.step-content p { font-size: 15px; color: var(--fg-muted); line-height: 1.7; max-width: 600px; }

/* ROI */
.roi { padding: 120px 0; background: var(--bg); }
.roi-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; align-items: start; }
.roi-card {
  padding: 40px;
  background: var(--bg-card);
  border-radius: var(--radius);
  border: 1px solid var(--border);
}
.roi-card--scenario { border-color: rgba(255,68,68,0.2); }
.roi-card--recovery { border-color: var(--border-accent); background: linear-gradient(135deg, rgba(0,255,136,0.04) 0%, var(--bg-card) 60%); }
.roi-card h3 { font-family: var(--font-display); font-size: 18px; font-weight: 600; margin-bottom: 24px; padding-bottom: 20px; border-bottom: 1px solid var(--border); }
.roi-line { display: flex; justify-content: space-between; align-items: center; padding: 14px 0; border-bottom: 1px solid rgba(255,255,255,0.04); }
.roi-line:last-child { border-bottom: none; }
.roi-line-label { font-size: 14px; color: var(--fg-muted); }
.roi-line-value { font-family: var(--font-display); font-size: 16px; font-weight: 700; color: var(--fg); }
.roi-line-value.red { color: var(--red); }
.roi-line-value.green { color: var(--accent); }
.roi-big-num { font-family: var(--font-display); font-size: 56px; font-weight: 700; color: #ffb833; letter-spacing: -2px; line-height: 1; margin-bottom: 4px; }
.roi-big-sub { font-size: 13px; color: var(--fg-muted); }
.roi-cta-row { text-align: center; margin-top: 48px; }
.roi-cta {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 16px 40px;
  background: var(--accent); color: var(--bg);
  border-radius: var(--radius);
  font-family: var(--font-display); font-size: 16px; font-weight: 700;
  text-decoration: none;
  transition: all 0.25s ease;
}
.roi-cta:hover { background: #00e07a; box-shadow: 0 0 40px rgba(0,255,136,0.25); transform: translateY(-2px); }

/* CASE STUDY */
.case-study { padding: 120px 0; background: var(--bg-elevated); }
.case-study-card {
  padding: 56px;
  background: var(--bg-card);
  border-radius: var(--radius);
  border: 1px solid var(--border);
  position: relative; overflow: hidden;
  margin-bottom: 64px;
}
.case-study-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, #ffb833, #ff6b00);
}
.case-study-tag { display: inline-block; font-family: var(--font-display); font-size: 11px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: #ffb833; margin-bottom: 16px; }
.case-study-quote { font-family: var(--font-display); font-size: clamp(22px, 3vw, 32px); font-weight: 600; line-height: 1.35; color: var(--fg); margin-bottom: 32px; }
.case-study-quote em { color: #ffb833; font-style: normal; }
.case-study-metrics { display: flex; gap: 0; border-top: 1px solid var(--border); padding-top: 32px; }
.cs-metric { display: flex; flex-direction: column; gap: 8px; padding: 0 40px 0 0; }
.cs-metric:first-child { padding-left: 0; }
.cs-metric-value { font-family: var(--font-display); font-size: 40px; font-weight: 700; color: #ffb833; line-height: 1; }
.cs-metric-label { font-size: 13px; color: var(--fg-muted); max-width: 100px; line-height: 1.4; }

/* FEATURES */
.features { padding: 120px 0; background: var(--bg); }
.features-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }
.feature-card {
  padding: 36px;
  background: var(--bg-card);
  border-radius: var(--radius);
  border: 1px solid var(--border);
  transition: border-color 0.3s;
}
.feature-card:hover { border-color: rgba(255,183,0,0.3); }
.feature-icon { font-size: 28px; margin-bottom: 16px; }
.feature-card h3 { font-family: var(--font-display); font-size: 20px; font-weight: 600; margin-bottom: 10px; }
.feature-card p { font-size: 15px; color: var(--fg-muted); line-height: 1.6; }

/* PRICING */
.pricing { padding: 120px 0; background: var(--bg-elevated); }
.pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-bottom: 48px; }
.pricing-card {
  padding: 40px;
  background: var(--bg-card);
  border-radius: var(--radius);
  border: 1px solid var(--border);
  display: flex; flex-direction: column; gap: 0;
}
.pricing-card--highlight { border-color: rgba(255,183,0,0.4); background: linear-gradient(160deg, rgba(255,183,0,0.06) 0%, var(--bg-card) 60%); }
.pricing-tier { font-family: var(--font-display); font-size: 12px; font-weight: 600; letter-spacing: 1.5px; text-transform: uppercase; color: var(--fg-muted); margin-bottom: 12px; }
.pricing-amount { font-family: var(--font-display); font-size: 48px; font-weight: 700; color: var(--fg); line-height: 1; margin-bottom: 6px; }
.pricing-amount span { font-size: 16px; font-weight: 400; color: var(--fg-muted); }
.pricing-sub { font-size: 13px; color: var(--fg-muted); margin-bottom: 28px; line-height: 1.5; }
.pricing-features { list-style: none; display: flex; flex-direction: column; gap: 12px; margin-bottom: 28px; flex: 1; }
.pricing-features li { font-size: 14px; color: var(--fg-muted); padding-left: 20px; position: relative; }
.pricing-features li::before { content: '✓'; position: absolute; left: 0; color: var(--accent); font-weight: 700; }
.pricing-cta {
  display: block;
  padding: 14px 24px;
  background: var(--accent); color: var(--bg);
  border-radius: var(--radius-sm);
  font-family: var(--font-display); font-size: 14px; font-weight: 700;
  text-decoration: none; text-align: center;
  transition: all 0.2s;
}
.pricing-cta:hover { background: #00e07a; }
.pricing-card--highlight .pricing-cta { background: #ffb833; color: #0a0a0f; }
.pricing-card--highlight .pricing-cta:hover { background: #ffc933; }
.promo-callout {
  padding: 20px 28px;
  background: rgba(255,183,0,0.08);
  border: 1px solid rgba(255,183,0,0.2);
  border-radius: var(--radius);
  text-align: center;
  margin-bottom: 48px;
}
.promo-callout-tag { display: inline-block; font-family: var(--font-display); font-size: 11px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; color: #ffb833; margin-bottom: 6px; }
.promo-callout p { font-size: 14px; color: var(--fg-muted); }
.promo-callout p strong { color: #ffb833; }

/* FAQ */
.faq { padding: 120px 0; background: var(--bg); }
.faq-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }
.faq-item { padding: 32px; background: var(--bg-card); border-radius: var(--radius); border: 1px solid var(--border); transition: border-color 0.3s; }
.faq-item:hover { border-color: var(--border-accent); }
.faq-q { font-family: var(--font-display); font-size: 16px; font-weight: 600; color: var(--fg); margin-bottom: 12px; line-height: 1.4; }
.faq-a { font-size: 14px; color: var(--fg-muted); line-height: 1.7; }

/* CLOSING */
.closing { padding: 120px 0; text-align: center; background: var(--bg-elevated); position: relative; overflow: hidden; }
.closing-sub { font-size: 17px; color: var(--fg-muted); max-width: 560px; margin: 0 auto; line-height: 1.7; }
.closing-glow { position: absolute; bottom: -100px; left: 50%; transform: translateX(-50%); width: 700px; height: 350px; background: radial-gradient(ellipse, var(--accent-glow) 0%, transparent 70%); pointer-events: none; z-index: 1; }

/* FOOTER */
.footer { padding: 48px 0; border-top: 1px solid var(--border); }
.footer-inner { max-width: 1200px; margin: 0 auto; padding: 0 32px; text-align: center; }
.footer-brand { display: flex; align-items: center; justify-content: center; gap: 10px; margin-bottom: 12px; }
.footer-tagline { font-size: 14px; color: var(--fg-muted); margin-bottom: 8px; }
.footer-copy { font-size: 13px; color: var(--fg-dim); }

/* RESPONSIVE */
@media (max-width: 768px) {
  .pain-grid, .roi-grid, .features-grid, .faq-grid, .pricing-grid { grid-template-columns: 1fr; }
  .hero { min-height: auto; padding: 100px 20px 60px; }
  .stat-bar { flex-direction: column; gap: 20px; padding: 28px 24px; }
  .stat-divider { width: 48px; height: 1px; }
  .solution-step { flex-direction: column; gap: 16px; }
  .step-num { font-size: 32px; min-width: auto; }
  section h2 { margin-bottom: 28px; }
  .pain, .solution, .roi, .case-study, .features, .pricing, .faq, .closing { padding: 80px 0; }
  .section-inner { padding: 0 20px; }
  .hero-cta-group { flex-direction: column; align-items: center; gap: 12px; }
  .hero-cta-primary, .hero-cta-secondary { width: 100%; max-width: 320px; justify-content: center; }
  .nav-inner { padding: 0 20px; }
  .nav-left { gap: 16px; }
  .nav-link { display: none; }
  .case-study-card { padding: 32px 24px; }
  .case-study-metrics { flex-direction: column; gap: 24px; }
  .cs-metric { padding: 0; }
  .case-study-quote { font-size: 22px; }
}