:root {
  --bg: #080b12;
  --bg-elevated: #0f1320;
  --bg-card: #141929;
  --fg: #e4e2dd;
  --fg-muted: #8891a4;
  --accent: #ff6b2b;
  --accent-glow: rgba(255, 107, 43, 0.15);
  --border: rgba(255, 255, 255, 0.06);
  --font-heading: 'Space Grotesk', sans-serif;
  --font-body: 'DM Sans', sans-serif;
}

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

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--fg);
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

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

/* ---- HERO ---- */
.hero {
  min-height: 90vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 80px 24px;
  position: relative;
  background: radial-gradient(ellipse 70% 50% at 50% 0%, rgba(255, 107, 43, 0.08), transparent);
}

.hero-inner {
  max-width: 780px;
  text-align: center;
}

.hero-badge {
  display: inline-block;
  padding: 6px 18px;
  border: 1px solid var(--accent);
  border-radius: 100px;
  font-family: var(--font-heading);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 32px;
}

.hero h1 {
  font-family: var(--font-heading);
  font-size: clamp(40px, 7vw, 72px);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.03em;
  margin-bottom: 24px;
}

.hero-sub {
  font-size: 19px;
  color: var(--fg-muted);
  max-width: 600px;
  margin: 0 auto 48px;
  line-height: 1.7;
}

.hero-stat {
  display: flex;
  align-items: center;
  gap: 20px;
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 28px 36px;
  text-align: left;
  max-width: 520px;
  margin: 0 auto;
}

.stat-number {
  font-family: var(--font-heading);
  font-size: 48px;
  font-weight: 700;
  color: var(--accent);
  line-height: 1;
  flex-shrink: 0;
}

.stat-label {
  font-size: 15px;
  color: var(--fg-muted);
  line-height: 1.5;
}

/* ---- PROBLEM ---- */
.problem {
  padding: 120px 24px;
}

.problem-inner {
  max-width: 1000px;
  margin: 0 auto;
}

.problem h2, .how h2, .features h2, .roi h2, .closing h2 {
  font-family: var(--font-heading);
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 16px;
}

.problem-sub, .how-sub {
  color: var(--fg-muted);
  font-size: 18px;
  max-width: 640px;
  margin-bottom: 56px;
  line-height: 1.7;
}

.problem-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.problem-card {
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 36px 28px;
  text-align: center;
}

.problem-icon {
  font-size: 28px;
  margin-bottom: 16px;
  opacity: 0.5;
}

.problem-stat {
  font-family: var(--font-heading);
  font-size: 42px;
  font-weight: 700;
  color: var(--accent);
  margin-bottom: 12px;
  line-height: 1;
}

.problem-desc {
  font-size: 15px;
  color: var(--fg-muted);
  line-height: 1.55;
}

/* ---- HOW IT WORKS ---- */
.how {
  padding: 120px 24px;
  background: var(--bg-elevated);
}

.how-inner {
  max-width: 780px;
  margin: 0 auto;
}

.steps {
  display: flex;
  flex-direction: column;
  gap: 48px;
}

.step {
  display: flex;
  gap: 28px;
  align-items: flex-start;
}

.step-num {
  font-family: var(--font-heading);
  font-size: 56px;
  font-weight: 700;
  color: var(--accent);
  opacity: 0.3;
  line-height: 1;
  flex-shrink: 0;
  width: 72px;
}

.step-content h3 {
  font-family: var(--font-heading);
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 8px;
}

.step-content p {
  color: var(--fg-muted);
  font-size: 16px;
  line-height: 1.7;
}

/* ---- FEATURES ---- */
.features {
  padding: 120px 24px;
}

.features-inner {
  max-width: 1000px;
  margin: 0 auto;
}

.features h2 {
  margin-bottom: 56px;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.feature {
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 32px 26px;
  transition: border-color 0.2s;
}

.feature:hover {
  border-color: rgba(255, 107, 43, 0.25);
}

.feature-title {
  font-family: var(--font-heading);
  font-size: 17px;
  font-weight: 600;
  margin-bottom: 10px;
  color: var(--fg);
}

.feature p {
  font-size: 15px;
  color: var(--fg-muted);
  line-height: 1.6;
}

/* ---- ROI ---- */
.roi {
  padding: 120px 24px;
  background: var(--bg-elevated);
}

.roi-inner {
  max-width: 600px;
  margin: 0 auto;
}

.roi h2 {
  margin-bottom: 48px;
}

.roi-calc {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 36px;
  margin-bottom: 28px;
}

.roi-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 0;
  border-bottom: 1px solid var(--border);
}

.roi-row:last-child {
  border-bottom: none;
}

.roi-label {
  font-size: 15px;
  color: var(--fg-muted);
}

.roi-value {
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: 600;
}

.roi-total {
  padding-top: 20px;
  margin-top: 8px;
}

.roi-total .roi-label {
  color: var(--fg);
  font-weight: 600;
}

.roi-total .roi-value {
  font-size: 28px;
}

.roi-note {
  font-size: 15px;
  color: var(--fg-muted);
  line-height: 1.65;
  text-align: center;
}

/* ---- CLOSING ---- */
.closing {
  padding: 140px 24px;
  text-align: center;
  background: radial-gradient(ellipse 60% 40% at 50% 100%, rgba(255, 107, 43, 0.06), transparent);
}

.closing-inner {
  max-width: 700px;
  margin: 0 auto;
}

.closing h2 {
  margin-bottom: 20px;
  line-height: 1.2;
}

.closing-sub {
  font-size: 18px;
  color: var(--fg-muted);
  line-height: 1.7;
}

/* ---- FOOTER ---- */
.site-footer {
  padding: 48px 24px;
  border-top: 1px solid var(--border);
  text-align: center;
}

.footer-brand {
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 6px;
}

.footer-tagline {
  font-size: 14px;
  color: var(--fg-muted);
}

/* ---- RESPONSIVE ---- */
@media (max-width: 768px) {
  .problem-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .feature-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .step {
    flex-direction: column;
    gap: 12px;
  }

  .step-num {
    font-size: 36px;
    width: auto;
  }

  .hero-stat {
    flex-direction: column;
    text-align: center;
    padding: 24px;
  }

  .stat-label {
    text-align: center;
  }

  .hero {
    min-height: auto;
    padding: 100px 20px 80px;
  }

  .problem, .how, .features, .roi {
    padding: 80px 20px;
  }

  .closing {
    padding: 100px 20px;
  }

  .roi-calc {
    padding: 24px 20px;
  }
}
/* ---- CTA BUTTONS ---- */
.hero-ctas, .closing-ctas {
  display: flex;
  gap: 16px;
  justify-content: center;
  margin-bottom: 48px;
  flex-wrap: wrap;
}

.hero-cta-primary {
  display: inline-block;
  padding: 16px 32px;
  background: var(--accent);
  color: white;
  border-radius: 12px;
  font-family: var(--font-heading);
  font-size: 17px;
  font-weight: 600;
  text-decoration: none;
  transition: opacity 0.2s, transform 0.15s;
}

.hero-cta-primary:hover {
  opacity: 0.88;
  transform: translateY(-1px);
}

.hero-cta-secondary {
  display: inline-block;
  padding: 16px 32px;
  background: transparent;
  color: var(--fg-muted);
  border: 1px solid var(--border);
  border-radius: 12px;
  font-family: var(--font-heading);
  font-size: 17px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.2s;
}

.hero-cta-secondary:hover {
  border-color: var(--fg-muted);
  color: var(--fg);
}

.closing-ctas {
  margin-top: 40px;
  margin-bottom: 0;
}

/* ---- NAV ---- */
.site-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 0 24px;
  background: rgba(8, 11, 18, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}

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

.nav-brand {
  font-family: var(--font-heading);
  font-size: 20px;
  font-weight: 700;
  color: var(--fg);
  flex-shrink: 0;
}

.nav-tagline {
  font-size: 13px;
  color: var(--fg-muted);
  flex: 1;
  letter-spacing: 0.01em;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}

.nav-link {
  padding: 8px 14px;
  font-size: 14px;
  font-weight: 500;
  color: var(--fg-muted);
  text-decoration: none;
  border-radius: 8px;
  transition: color 0.2s;
}

.nav-link:hover {
  color: var(--fg);
}

.nav-link-secondary {
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  color: var(--fg);
  font-family: var(--font-heading);
  font-weight: 600;
}

.nav-link-secondary:hover {
  border-color: var(--accent);
  color: var(--accent);
}

/* Hero needs top padding for fixed nav */
.hero {
  padding-top: 144px;
}

/* ---- SECTION LABELS ---- */
.section-label {
  display: inline-block;
  font-family: var(--font-heading);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 16px;
}

/* ---- STAT STRIP ---- */
.stat-strip {
  background: var(--bg-elevated);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 40px 24px;
}

.stat-strip-inner {
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-around;
  gap: 24px;
  flex-wrap: wrap;
}

.stat-item {
  text-align: center;
}

.stat-item-number {
  font-family: var(--font-heading);
  font-size: 44px;
  font-weight: 700;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 8px;
}

.stat-item-label {
  font-size: 14px;
  color: var(--fg-muted);
  line-height: 1.5;
}

.stat-source {
  font-size: 12px;
  color: rgba(136, 145, 164, 0.6);
  display: block;
  margin-top: 3px;
}

.stat-divider {
  width: 1px;
  height: 60px;
  background: var(--border);
  flex-shrink: 0;
}

/* ---- EMERGENCY DISPATCH ---- */
.emergency-dispatch {
  padding: 120px 24px;
  background: var(--bg);
  position: relative;
  overflow: hidden;
}

.emergency-dispatch::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -200px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(255, 60, 60, 0.05), transparent 70%);
  pointer-events: none;
}

.emergency-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.emergency-label {
  color: #ff4444;
}

.emergency-content h2 {
  font-family: var(--font-heading);
  font-size: clamp(28px, 3.5vw, 42px);
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 20px;
  line-height: 1.15;
}

.emergency-desc {
  font-size: 17px;
  color: var(--fg-muted);
  line-height: 1.7;
  margin-bottom: 40px;
}

.emergency-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.emergency-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.emergency-icon {
  font-size: 22px;
  flex-shrink: 0;
  margin-top: 2px;
}

.emergency-item strong {
  display: block;
  font-family: var(--font-heading);
  font-size: 16px;
  font-weight: 600;
  color: var(--fg);
  margin-bottom: 3px;
}

.emergency-item span {
  font-size: 14px;
  color: var(--fg-muted);
  line-height: 1.5;
}

/* Dashboard mock */
.emergency-dashboard-mock {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.4);
}

.mock-header {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 14px 20px;
  background: var(--bg-elevated);
  border-bottom: 1px solid var(--border);
}

.mock-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  flex-shrink: 0;
}

.mock-dot-red { background: #ff5f57; }
.mock-dot-yellow { background: #ffbd2e; }
.mock-dot-green { background: #28ca41; }

.mock-title {
  font-size: 13px;
  color: var(--fg-muted);
  font-family: var(--font-heading);
  margin-left: 8px;
}

.mock-counter-section {
  padding: 24px 20px 16px;
  text-align: center;
  border-bottom: 1px solid var(--border);
}

.mock-counter-label {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--fg-muted);
  margin-bottom: 4px;
}

.mock-counter-number {
  font-family: var(--font-heading);
  font-size: 52px;
  font-weight: 700;
  color: #ff4444;
  line-height: 1;
}

.mock-counter-sub {
  font-size: 12px;
  color: var(--fg-muted);
  margin-top: 4px;
}

.mock-call-list {
  padding: 12px 0;
}

.mock-call {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 12px 20px;
  border-bottom: 1px solid var(--border);
  transition: background 0.15s;
}

.mock-call:last-child { border-bottom: none; }

.mock-call-badge {
  font-family: var(--font-heading);
  font-size: 11px;
  font-weight: 700;
  padding: 4px 8px;
  border-radius: 6px;
  flex-shrink: 0;
  letter-spacing: 0.05em;
}

.mock-call-p1 .mock-call-badge {
  background: rgba(255, 68, 68, 0.15);
  color: #ff4444;
  border: 1px solid rgba(255, 68, 68, 0.3);
}

.mock-call-badge-live {
  background: rgba(255, 107, 43, 0.15);
  color: var(--accent);
  border: 1px solid rgba(255, 107, 43, 0.3);
  animation: pulse-badge 1.5s infinite;
}

@keyframes pulse-badge {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.6; }
}

.mock-call-badge-p2 {
  background: rgba(136, 145, 164, 0.1);
  color: var(--fg-muted);
  border: 1px solid var(--border);
}

.mock-call-type {
  font-size: 13px;
  font-weight: 500;
  color: var(--fg);
  margin-bottom: 2px;
}

.mock-call-meta {
  font-size: 12px;
  color: var(--fg-muted);
}

.mock-stat-row {
  display: flex;
  border-top: 1px solid var(--border);
  padding: 16px 20px;
  gap: 0;
}

.mock-stat {
  flex: 1;
  text-align: center;
}

.mock-stat + .mock-stat {
  border-left: 1px solid var(--border);
}

.mock-stat-val {
  font-family: var(--font-heading);
  font-size: 20px;
  font-weight: 700;
  color: var(--fg);
}

.mock-stat-key {
  font-size: 11px;
  color: var(--fg-muted);
  margin-top: 3px;
}

/* ---- INTEGRATIONS STRIP ---- */
.integrations {
  padding: 60px 24px;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.integrations-inner {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.integrations-caption {
  font-size: 14px;
  color: var(--fg-muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 36px;
  font-family: var(--font-heading);
  font-weight: 500;
}

.integrations-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
}

.integration-item {
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 14px 22px;
  transition: border-color 0.2s;
}

.integration-item:hover {
  border-color: rgba(255, 107, 43, 0.2);
}

.integration-name {
  font-family: var(--font-heading);
  font-size: 15px;
  font-weight: 600;
  color: var(--fg);
}

.integration-badge {
  font-size: 11px;
  font-weight: 600;
  font-family: var(--font-heading);
  padding: 3px 8px;
  border-radius: 6px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.integration-badge-live {
  background: rgba(40, 202, 65, 0.12);
  color: #28ca41;
  border: 1px solid rgba(40, 202, 65, 0.25);
}

.integration-badge-soon {
  background: rgba(136, 145, 164, 0.08);
  color: var(--fg-muted);
  border: 1px solid var(--border);
}

/* ---- INTERACTIVE ROI CALCULATOR ---- */
.roi {
  background: var(--bg-elevated);
}

.roi-inner {
  max-width: 960px;
}

.roi-header {
  text-align: center;
  margin-bottom: 64px;
}

.roi-desc {
  font-size: 17px;
  color: var(--fg-muted);
  margin-top: 12px;
}

.roi-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  margin-bottom: 56px;
  align-items: start;
}

/* Inputs side */
.roi-input-group {
  margin-bottom: 36px;
}

.roi-input-group:last-of-type {
  margin-bottom: 0;
}

.roi-input-label {
  display: block;
  font-family: var(--font-heading);
  font-size: 14px;
  font-weight: 600;
  color: var(--fg);
  margin-bottom: 14px;
  letter-spacing: 0.02em;
}

.roi-slider {
  width: 100%;
  margin-bottom: 12px;
  -webkit-appearance: none;
  appearance: none;
  height: 4px;
  background: var(--border);
  border-radius: 2px;
  outline: none;
  cursor: pointer;
}

.roi-slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--accent);
  cursor: pointer;
  border: 3px solid var(--bg-card);
  box-shadow: 0 0 0 1px var(--accent);
  transition: transform 0.15s;
}

.roi-slider::-webkit-slider-thumb:hover {
  transform: scale(1.2);
}

.roi-slider::-moz-range-thumb {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--accent);
  cursor: pointer;
  border: 3px solid var(--bg-card);
}

.roi-input-display {
  display: flex;
  align-items: center;
  gap: 8px;
}

.roi-input-prefix {
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: 600;
  color: var(--fg-muted);
}

.roi-number-input {
  width: 100px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 8px 12px;
  font-family: var(--font-heading);
  font-size: 20px;
  font-weight: 600;
  color: var(--fg);
  outline: none;
  -moz-appearance: textfield;
}

.roi-number-input::-webkit-outer-spin-button,
.roi-number-input::-webkit-inner-spin-button {
  -webkit-appearance: none;
}

.roi-number-input:focus {
  border-color: var(--accent);
}

.roi-input-unit {
  font-size: 13px;
  color: var(--fg-muted);
}

.roi-assumption-note {
  font-size: 12px;
  color: rgba(136, 145, 164, 0.55);
  margin-top: 24px;
  line-height: 1.5;
  font-style: italic;
}

/* Results side */
.roi-results {
  display: flex;
  flex-direction: column;
  gap: 0;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
}

.roi-result-card {
  padding: 18px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid var(--border);
  transition: background 0.15s;
}

.roi-result-card:last-child {
  border-bottom: none;
}

.roi-result-label {
  font-size: 14px;
  color: var(--fg-muted);
}

.roi-result-value {
  font-family: var(--font-heading);
  font-size: 20px;
  font-weight: 700;
  color: var(--fg);
}

.roi-result-highlight {
  background: rgba(255, 107, 43, 0.04);
}

.roi-result-total {
  padding: 24px;
  background: rgba(255, 107, 43, 0.06);
}

.roi-result-total .roi-result-label {
  color: var(--fg);
  font-weight: 600;
  font-size: 15px;
}

.roi-result-total .roi-result-value {
  font-size: 28px;
}

.roi-cta {
  text-align: center;
}

.roi-cta-note {
  font-size: 13px;
  color: var(--fg-muted);
  margin-top: 12px;
}

/* ---- FOOTER UPDATE ---- */
.footer-links {
  display: flex;
  gap: 24px;
  justify-content: center;
  margin: 16px 0;
}

.footer-links a {
  font-size: 14px;
  color: var(--fg-muted);
  text-decoration: none;
  transition: color 0.2s;
}

.footer-links a:hover {
  color: var(--fg);
}

.footer-copy {
  font-size: 12px;
  color: rgba(136, 145, 164, 0.45);
  margin-top: 8px;
}

/* ---- PRICING PAGE ---- */
.pricing-hero {
  padding: 140px 24px 80px;
  text-align: center;
  background: radial-gradient(ellipse 70% 50% at 50% 0%, rgba(255, 107, 43, 0.08), transparent);
}

.pricing-hero-inner {
  max-width: 700px;
  margin: 0 auto;
}

.pricing-hero h1 {
  font-family: var(--font-heading);
  font-size: clamp(36px, 6vw, 64px);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.1;
  margin-bottom: 20px;
}

.pricing-sub {
  font-size: 19px;
  color: var(--fg-muted);
  line-height: 1.7;
}

.pricing-cards {
  padding: 80px 24px 120px;
}

.pricing-cards-inner {
  max-width: 860px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 24px;
  align-items: start;
}

.pricing-card {
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 40px;
  position: relative;
}

.pricing-card-featured {
  border-color: var(--accent);
  box-shadow: 0 0 40px rgba(255, 107, 43, 0.08);
}

.pricing-card-badge {
  display: inline-block;
  background: var(--accent);
  color: white;
  font-family: var(--font-heading);
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 4px 12px;
  border-radius: 100px;
  margin-bottom: 20px;
}

.pricing-card-name {
  font-family: var(--font-heading);
  font-size: 22px;
  font-weight: 700;
  color: var(--fg);
  margin-bottom: 8px;
}

.pricing-card-price {
  font-family: var(--font-heading);
  font-size: 52px;
  font-weight: 700;
  color: var(--fg);
  line-height: 1;
  margin-bottom: 16px;
}

.pricing-card-period {
  font-size: 20px;
  font-weight: 500;
  color: var(--fg-muted);
}

.pricing-card-desc {
  font-size: 15px;
  color: var(--fg-muted);
  line-height: 1.6;
  margin-bottom: 28px;
}

.pricing-features-list {
  list-style: none;
  margin-bottom: 36px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.pricing-features-list li {
  font-size: 15px;
  color: var(--fg);
  padding-left: 22px;
  position: relative;
  line-height: 1.5;
}

.pricing-features-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--accent);
  font-weight: 700;
}

.pricing-cta {
  display: block;
  text-align: center;
  width: 100%;
  box-sizing: border-box;
  margin-bottom: 0;
}

.pricing-note {
  font-size: 13px;
  color: var(--fg-muted);
  text-align: center;
  margin-top: 14px;
}

.pricing-faq {
  padding: 80px 24px;
  background: var(--bg-elevated);
}

.pricing-faq-inner {
  max-width: 720px;
  margin: 0 auto;
}

.pricing-faq h2 {
  font-family: var(--font-heading);
  font-size: 32px;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 48px;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 0;
  border-top: 1px solid var(--border);
}

.faq-item {
  border-bottom: 1px solid var(--border);
}

.faq-q {
  width: 100%;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  font-family: var(--font-heading);
  font-size: 17px;
  font-weight: 600;
  color: var(--fg);
  padding: 20px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}

.faq-q::after {
  content: '+';
  font-size: 22px;
  font-weight: 400;
  color: var(--fg-muted);
  flex-shrink: 0;
  transition: transform 0.2s;
}

.faq-item.faq-open .faq-q::after {
  transform: rotate(45deg);
}

.faq-a {
  font-size: 15px;
  color: var(--fg-muted);
  line-height: 1.7;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding-bottom 0.2s;
  padding-bottom: 0;
}

.faq-item.faq-open .faq-a {
  max-height: 200px;
  padding-bottom: 20px;
}

/* ---- BILLING TOGGLE ---- */
.billing-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-top: 32px;
}

.billing-toggle-label {
  font-family: var(--font-heading);
  font-size: 15px;
  font-weight: 500;
  color: var(--fg);
  display: flex;
  align-items: center;
  gap: 8px;
  transition: opacity 0.2s;
}

.save-badge {
  background: rgba(255, 107, 43, 0.15);
  color: var(--accent);
  border: 1px solid rgba(255, 107, 43, 0.3);
  padding: 2px 10px;
  border-radius: 100px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.05em;
}

.toggle-switch {
  position: relative;
  display: inline-block;
  cursor: pointer;
}

.toggle-switch input {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}

.toggle-track {
  display: block;
  width: 48px;
  height: 26px;
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: 100px;
  position: relative;
  transition: background 0.2s;
}

.toggle-track::after {
  content: '';
  position: absolute;
  top: 3px;
  left: 3px;
  width: 18px;
  height: 18px;
  background: var(--fg-muted);
  border-radius: 50%;
  transition: transform 0.2s, background 0.2s;
}

.toggle-switch input:checked + .toggle-track {
  background: var(--accent);
  border-color: var(--accent);
}

.toggle-switch input:checked + .toggle-track::after {
  transform: translateX(22px);
  background: #fff;
}

/* ---- THREE-COLUMN PRICING ---- */
.pricing-three-col {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 1080px;
}

.pricing-card-tagline {
  font-size: 13px;
  color: var(--fg-muted);
  margin-bottom: 20px;
  letter-spacing: 0.02em;
}

.pricing-card-price-wrap {
  margin-bottom: 28px;
}

.pricing-billed-note {
  font-size: 13px;
  color: var(--fg-muted);
  margin-top: 4px;
}

.beta-badge {
  display: inline-block;
  background: rgba(255, 200, 0, 0.12);
  color: #ffd740;
  border: 1px solid rgba(255, 215, 64, 0.3);
  padding: 1px 7px;
  border-radius: 4px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  vertical-align: middle;
  margin-left: 4px;
}

/* ---- COMPARE TABLE ---- */
.compare-plans {
  padding: 80px 24px;
}

.compare-inner {
  max-width: 900px;
  margin: 0 auto;
}

.compare-inner h2 {
  font-family: var(--font-heading);
  font-size: 32px;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 40px;
}

.compare-table-wrap {
  overflow-x: auto;
}

.compare-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
}

.compare-table th {
  font-family: var(--font-heading);
  font-size: 15px;
  font-weight: 600;
  text-align: left;
  padding: 16px 20px;
  border-bottom: 1px solid var(--border);
  color: var(--fg);
}

.compare-table th:not(:first-child) {
  text-align: center;
}

.compare-table td {
  padding: 14px 20px;
  border-bottom: 1px solid var(--border);
  color: var(--fg-muted);
}

.compare-table td:not(:first-child) {
  text-align: center;
  color: var(--fg);
}

.compare-table tr:hover td {
  background: var(--bg-elevated);
}

.col-featured {
  background: rgba(255, 107, 43, 0.04);
  color: var(--accent) !important;
}

/* ---- PAYMENT SUCCESS ---- */
.success-hero {
  min-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 80px 24px;
}

.success-inner {
  max-width: 600px;
  text-align: center;
}

.success-icon {
  width: 72px;
  height: 72px;
  background: rgba(255, 107, 43, 0.1);
  border: 2px solid var(--accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  color: var(--accent);
  margin: 0 auto 32px;
}

.success-hero h1 {
  font-family: var(--font-heading);
  font-size: clamp(36px, 6vw, 56px);
  font-weight: 700;
  letter-spacing: -0.03em;
  margin-bottom: 16px;
}

.success-sub {
  font-size: 18px;
  color: var(--fg-muted);
  margin-bottom: 48px;
  line-height: 1.6;
}

.success-steps {
  display: flex;
  flex-direction: column;
  gap: 20px;
  text-align: left;
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 32px;
  margin-bottom: 40px;
}

.success-step {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.step-num {
  width: 28px;
  height: 28px;
  background: var(--accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-size: 14px;
  font-weight: 700;
  color: #fff;
  flex-shrink: 0;
}

.step-text {
  font-size: 15px;
  color: var(--fg-muted);
  line-height: 1.6;
  padding-top: 3px;
}

.success-ctas {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ---- RESPONSIVE ADDITIONS ---- */
@media (max-width: 768px) {
  .nav-tagline { display: none; }
  .nav-links .nav-link:first-child { display: none; }

  .stat-strip-inner { gap: 32px; }
  .stat-divider { display: none; }

  .emergency-inner {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .roi-layout {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .roi-inner { max-width: 100%; }

  .integrations-grid { gap: 12px; }

  .pricing-cards-inner,
  .pricing-three-col {
    grid-template-columns: 1fr;
  }

  .pricing-card-enterprise { order: 2; }

  .compare-table th,
  .compare-table td { padding: 12px 12px; }

  .success-steps { padding: 24px; }
}
