/* ═══════════════════════════════════════════════
   TripNet Landing Page — styles.css
   v1.0 | February 2026
   ═══════════════════════════════════════════════ */

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

/* ── CSS Variables ── */
:root {
  /* Primary palette */
  --midnight: #0f1628;
  --deep-navy: #171b26;
  --navy: #293a83;
  --electric: #1c90cf;
  --sax: #3ba3db;
  --indigo: #4a2d8a;
  --footer-bg: #0a0e1a;

  /* Extended colors */
  --success: #059669;
  --warning: #d97706;
  --error: #dc2626;

  /* Glass surfaces */
  --glass-bg: rgba(255,255,255,0.04);
  --glass-bg-hover: rgba(255,255,255,0.07);
  --glass-border: rgba(255,255,255,0.08);
  --glass-border-hover: rgba(255,255,255,0.14);
  --glass-featured-border: rgba(28,144,207,0.3);

  /* Text */
  --text-primary: #e5e7eb;
  --text-secondary: #9ca3af;
  --text-tertiary: #6b7280;

  /* Gradients */
  --cta-gradient: linear-gradient(135deg, #1c90cf 0%, #3ba3db 40%, #4a2d8a 100%);
  --accent-glow: radial-gradient(ellipse at 50% 0%, rgba(28,144,207,0.12) 0%, transparent 60%);
  --section-divider: linear-gradient(90deg, transparent 0%, rgba(28,144,207,0.3) 50%, transparent 100%);

  /* Radii */
  --radius-xs: 4px;
  --radius-sm: 6px;
  --radius-md: 8px;
  --radius-lg: 10px;
  --radius-xl: 16px;

  /* Shadows */
  --shadow-sm: 0 2px 8px rgba(0,0,0,0.08);
  --shadow-md: 0 4px 24px rgba(0,0,0,0.12);
  --shadow-lg: 0 8px 32px rgba(0,0,0,0.18);
  --shadow-xl: 0 16px 48px rgba(0,0,0,0.25);
  --shadow-glow: 0 8px 32px rgba(28,144,207,0.08);
  --shadow-hero: 0 24px 64px rgba(0,0,0,0.3);

  /* Spacing */
  --space-xs: 4px;
  --space-sm: 8px;
  --space-md: 16px;
  --space-lg: 24px;
  --space-xl: 32px;
  --space-2xl: 48px;
  --space-3xl: 64px;
  --space-4xl: 96px;
  --space-5xl: 128px;
}

/* ── Light Theme ── */
[data-theme="light"] {
  --midnight: #ffffff;
  --deep-navy: #f4f6fb;
  --navy: #293a83;
  --electric: #1c90cf;
  --sax: #3ba3db;
  --indigo: #4a2d8a;
  --footer-bg: #f1f3f8;

  --glass-bg: rgba(0,0,0,0.02);
  --glass-bg-hover: rgba(0,0,0,0.04);
  --glass-border: rgba(0,0,0,0.08);
  --glass-border-hover: rgba(0,0,0,0.14);
  --glass-featured-border: rgba(28,144,207,0.25);

  --text-primary: #1a1a2e;
  --text-secondary: #4b5563;
  --text-tertiary: #6b7280;

  --cta-gradient: linear-gradient(135deg, #1c90cf 0%, #3ba3db 40%, #4a2d8a 100%);
  --accent-glow: radial-gradient(ellipse at 50% 0%, rgba(28,144,207,0.06) 0%, transparent 60%);
  --section-divider: linear-gradient(90deg, transparent 0%, rgba(28,144,207,0.15) 50%, transparent 100%);

  --shadow-sm: 0 2px 8px rgba(0,0,0,0.04);
  --shadow-md: 0 4px 24px rgba(0,0,0,0.06);
  --shadow-lg: 0 8px 32px rgba(0,0,0,0.08);
  --shadow-xl: 0 16px 48px rgba(0,0,0,0.10);
  --shadow-glow: 0 8px 32px rgba(28,144,207,0.06);
  --shadow-hero: 0 24px 64px rgba(0,0,0,0.10);
}

/* ── Base ── */
html {
  scroll-behavior: smooth;
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  background: var(--midnight);
  color: var(--text-primary);
  overflow-x: hidden;
  line-height: 1.6;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; }
ul { list-style: none; }

/* ── Container ── */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  width: 100%;
}

/* ═══════════════════════════════════════════════
   01 — NAVBAR
   ═══════════════════════════════════════════════ */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  border-bottom: 1px solid transparent;
  transition: background 0.3s ease-out, border-color 0.3s ease-out;
}

.navbar.scrolled {
  background: rgba(15,22,40,0.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom-color: rgba(255,255,255,0.06);
}

.navbar-inner {
  max-width: 1200px;
  width: 100%;
  padding: 0 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  flex-shrink: 0;
  display: flex;
  align-items: center;
}

.nav-logo img {
  height: 28px;
  width: auto;
}

.nav-links {
  display: flex;
  gap: 32px;
  align-items: center;
}

.nav-links a {
  font-size: 15px;
  font-weight: 400;
  color: var(--text-secondary);
  transition: color 0.2s;
  white-space: nowrap;
}

.nav-links a:hover { color: var(--text-primary); }

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

/* Language toggle */
.lang-toggle {
  display: flex;
  align-items: center;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-sm);
  overflow: hidden;
  margin-right: 8px;
}

.lang-btn {
  padding: 5px 10px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.02em;
  background: transparent;
  border: none;
  color: var(--text-tertiary);
  cursor: pointer;
  transition: all 0.2s;
}

.lang-btn[aria-pressed="true"] {
  background: rgba(28,144,207,0.15);
  color: var(--electric);
}

.lang-btn:hover:not([aria-pressed="true"]) {
  color: var(--text-secondary);
}

/* Theme toggle */
.theme-toggle {
  width: 36px; height: 36px;
  border-radius: var(--radius-sm);
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: var(--text-secondary);
  transition: all 0.2s;
  margin-right: 4px;
  color: var(--text-tertiary);
  flex-shrink: 0;
}

.theme-toggle:hover {
  background: rgba(255,255,255,0.1);
  color: var(--text-secondary);
}

.theme-toggle svg {
  width: 18px; height: 18px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.theme-toggle .icon-sun { display: block; }
.theme-toggle .icon-moon { display: none; }
[data-theme="light"] .theme-toggle .icon-sun { display: none; }
[data-theme="light"] .theme-toggle .icon-moon { display: block; }

[data-theme="light"] .theme-toggle {
  background: rgba(0,0,0,0.04);
  border-color: rgba(0,0,0,0.1);
  color: var(--text-tertiary);
}

[data-theme="light"] .theme-toggle:hover {
  background: rgba(0,0,0,0.08);
  color: var(--text-secondary);
}

/* Ghost button */
.btn-ghost {
  padding: 9px 20px;
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: var(--radius-md);
  background: transparent;
  color: var(--text-primary);
  font-size: 14px;
  font-weight: 400;
  cursor: pointer;
  transition: all 0.2s;
  white-space: nowrap;
}

.btn-ghost:hover {
  border-color: rgba(255,255,255,0.4);
}

.btn-ghost:focus-visible {
  outline: 2px solid var(--electric);
  outline-offset: 2px;
}

/* CTA button */
.btn-cta {
  padding: 9px 24px;
  border: none;
  border-radius: var(--radius-md);
  background: var(--cta-gradient);
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: transform 0.1s ease-out;
  white-space: nowrap;
}

.btn-cta:active { transform: scale(0.98); }

.btn-cta:focus-visible {
  outline: 2px solid var(--electric);
  outline-offset: 2px;
}

.btn-cta-lg {
  padding: 14px 32px;
  font-size: 17px;
  border-radius: var(--radius-lg);
}

.btn-cta-xl {
  padding: 16px 40px;
  font-size: 18px;
  border-radius: var(--radius-lg);
}

/* Mobile hamburger */
.nav-hamburger {
  display: none;
  width: 40px; height: 40px;
  background: transparent;
  border: none;
  cursor: pointer;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
}

.nav-hamburger span {
  width: 22px;
  height: 2px;
  background: var(--text-primary);
  border-radius: 2px;
  transition: all 0.25s ease-out;
}

.nav-hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; }
.nav-hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* Mobile menu overlay */
.mobile-menu {
  display: none;
  position: fixed;
  top: 72px;
  right: -100%;
  width: 280px;
  height: calc(100vh - 72px);
  background: rgba(15,22,40,0.97);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-left: 1px solid rgba(255,255,255,0.06);
  padding: 32px 24px;
  flex-direction: column;
  gap: 8px;
  transition: right 0.25s ease-out;
  z-index: 999;
  overflow-y: auto;
}

.mobile-menu.open { right: 0; }

.mobile-menu a {
  display: block;
  padding: 12px 0;
  font-size: 16px;
  color: var(--text-secondary);
  border-bottom: 1px solid rgba(255,255,255,0.04);
  transition: color 0.2s;
}

.mobile-menu a:hover { color: var(--text-primary); }

.mobile-menu .btn-cta,
.mobile-menu .btn-ghost {
  width: 100%;
  text-align: center;
  margin-top: 8px;
}

.mobile-lang-toggle {
  display: flex;
  gap: 8px;
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid rgba(255,255,255,0.06);
}

/* ═══════════════════════════════════════════════
   02 — HERO
   ═══════════════════════════════════════════════ */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 72px;
  position: relative;
  overflow: hidden;
  background: var(--midnight);
}

.hero-glow-1 {
  position: absolute;
  top: 10%; right: 15%;
  width: 800px; height: 800px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(28,144,207,0.08) 0%, transparent 60%);
  pointer-events: none;
}

.hero-glow-2 {
  position: absolute;
  top: 5%; right: 8%;
  width: 600px; height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(74,45,138,0.04) 0%, transparent 60%);
  pointer-events: none;
}

.hero-grid {
  display: grid;
  grid-template-columns: 55% 45%;
  gap: 48px;
  align-items: center;
  position: relative;
  z-index: 2;
}

.hero-text { max-width: 560px; }

.micro-label {
  font-size: 12px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--electric);
  margin-bottom: 12px;
}

.hero-headline {
  font-size: clamp(36px, 5vw, 64px);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--text-primary);
  margin-bottom: 16px;
}

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

.hero-ctas {
  display: flex;
  gap: 16px;
  margin-bottom: 24px;
  flex-wrap: wrap;
}

.hero-ctas .btn-ghost {
  padding: 14px 32px;
  font-size: 17px;
  border-radius: var(--radius-lg);
}

.hero-proof {
  font-size: 14px;
  color: var(--text-tertiary);
}

/* Hero illustration accent */
.hero-illustration {
  position: absolute;
  bottom: 10%;
  left: 2%;
  width: 200px;
  opacity: 0.06;
  pointer-events: none;
  z-index: 1;
}

/* ── Dashboard Mock ── */
.dashboard-mock {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-xl);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  padding: 20px;
  box-shadow: var(--shadow-hero);
  transform: perspective(1200px) rotateY(-4deg) rotateX(2deg);
  position: relative;
  margin-right: -60px;
}

.dash-topbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 14px;
  margin-bottom: 16px;
  background: rgba(255,255,255,0.03);
  border-radius: 10px;
}

.dash-topbar-title {
  font-size: 13px;
  font-weight: 600;
  color: var(--text-primary);
}

.dash-topbar-actions {
  display: flex;
  gap: 8px;
}

.dash-topbar-actions span {
  font-size: 11px;
  color: var(--text-tertiary);
  padding: 4px 10px;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 6px;
}

.dash-kpi-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-bottom: 16px;
}

.dash-kpi {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 10px;
  padding: 14px 16px;
}

.dash-kpi-label {
  font-size: 11px;
  color: var(--text-tertiary);
  margin-bottom: 6px;
}

.dash-kpi-value {
  font-size: 22px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 4px;
  font-feature-settings: 'tnum';
}

.dash-kpi-change {
  font-size: 11px;
  font-weight: 500;
}

.dash-kpi-change.up { color: var(--success); }
.dash-kpi-change.down { color: var(--error); }

.dash-chart {
  margin-bottom: 16px;
  padding: 14px 16px;
  background: rgba(255,255,255,0.02);
  border-radius: 10px;
}

.dash-chart-title {
  font-size: 11px;
  color: var(--text-tertiary);
  margin-bottom: 12px;
}

.chart-bar-row {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 8px;
}

.chart-bar-label {
  font-size: 10px;
  color: var(--text-tertiary);
  width: 56px;
  text-align: right;
  flex-shrink: 0;
}

.chart-bar-track {
  flex: 1;
  height: 10px;
  background: rgba(255,255,255,0.04);
  border-radius: 5px;
  overflow: hidden;
}

.chart-bar-fill {
  height: 100%;
  border-radius: 5px;
}

.dash-table { padding: 0 2px; }

.dash-table-header {
  display: grid;
  grid-template-columns: 1.2fr 1fr 0.8fr 0.8fr;
  gap: 8px;
  padding: 6px 12px;
  font-size: 10px;
  font-weight: 600;
  color: var(--text-tertiary);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.dash-table-row {
  display: grid;
  grid-template-columns: 1.2fr 1fr 0.8fr 0.8fr;
  gap: 8px;
  padding: 8px 12px;
  font-size: 11px;
  color: var(--text-secondary);
  border-bottom: 1px solid rgba(255,255,255,0.03);
}

.status-dot {
  display: inline-block;
  width: 7px; height: 7px;
  border-radius: 50%;
  margin-right: 5px;
  vertical-align: middle;
}

.status-dot.approved { background: var(--success); }
.status-dot.pending { background: var(--warning); }

.dash-amount {
  text-align: right;
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
}

/* ═══════════════════════════════════════════════
   SHARED — Sections
   ═══════════════════════════════════════════════ */
.section {
  padding: var(--space-4xl) 0;
  position: relative;
}

.section-alt { background: var(--deep-navy); }
.section-dark { background: var(--midnight); }

.section-header {
  text-align: center;
  margin-bottom: var(--space-2xl);
}

.section-header.left-align { text-align: left; }

.section-title {
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.015em;
  margin-bottom: var(--space-md);
}

.section-desc {
  font-size: 18px;
  line-height: 1.6;
  color: var(--text-secondary);
  max-width: 640px;
  margin: 0 auto;
}

.section-header.left-align .section-desc {
  margin: 0;
  max-width: 580px;
}

/* Section top glow */
.section-glow {
  position: absolute;
  top: -100px;
  left: 50%;
  transform: translateX(-50%);
  width: 600px; height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(28,144,207,0.06) 0%, transparent 60%);
  pointer-events: none;
}

/* ═══════════════════════════════════════════════
   03 — VALUE CARDS
   ═══════════════════════════════════════════════ */
.value-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.glass-card {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-xl);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  padding: 32px;
  box-shadow: var(--shadow-md);
  transition: transform 0.15s ease-out, background 0.15s, border-color 0.15s, box-shadow 0.15s;
}

.glass-card:hover {
  transform: translateY(-2px);
  background: var(--glass-bg-hover);
  border-color: var(--glass-border-hover);
  box-shadow: var(--shadow-lg);
}

.card-icon {
  width: 56px; height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(28,144,207,0.1);
  border: 1px solid rgba(28,144,207,0.3);
  margin-bottom: 16px;
}

.card-icon svg {
  width: 28px; height: 28px;
  stroke: var(--electric);
  fill: none;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.card-title {
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 12px;
}

.card-desc {
  font-size: 15px;
  line-height: 1.6;
  color: var(--text-secondary);
  margin-bottom: 20px;
}

.card-link {
  font-size: 14px;
  color: var(--electric);
  display: inline-block;
  transition: padding-left 0.15s;
}

.card-link:hover { padding-left: 4px; }

.card-link:focus-visible {
  outline: 2px solid var(--electric);
  outline-offset: 2px;
}

/* ═══════════════════════════════════════════════
   04 — TRUST
   ═══════════════════════════════════════════════ */
.trust-logos {
  display: flex;
  justify-content: center;
  gap: 48px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.trust-logo {
  width: 100px; height: 36px;
  background: rgba(255,255,255,0.06);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  color: var(--text-tertiary);
  opacity: 0.5;
  transition: opacity 0.2s;
  font-weight: 600;
  letter-spacing: 0.02em;
}

.trust-logo:hover { opacity: 0.8; }

.trust-stats {
  display: flex;
  justify-content: center;
  gap: 64px;
  margin-bottom: 32px;
  flex-wrap: wrap;
}

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

.trust-stat-value {
  font-size: 32px;
  font-weight: 700;
  color: var(--electric);
  margin-bottom: 4px;
  font-feature-settings: 'tnum';
}

.trust-stat-label {
  font-size: 14px;
  color: var(--text-tertiary);
}

.trust-badges {
  display: flex;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
}

.trust-badge {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  color: var(--text-tertiary);
}

.trust-badge-icon {
  width: 20px; height: 20px;
  border-radius: var(--radius-xs);
  background: rgba(255,255,255,0.06);
  display: flex;
  align-items: center;
  justify-content: center;
}

.trust-badge-icon svg {
  width: 12px; height: 12px;
  stroke: var(--text-tertiary);
  fill: none;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.badge-divider {
  width: 1px;
  height: 16px;
  background: rgba(255,255,255,0.08);
}

/* ═══════════════════════════════════════════════
   05 — TIMELINE
   ═══════════════════════════════════════════════ */
.timeline {
  position: relative;
  display: flex;
  justify-content: space-between;
  padding: 0 60px;
}

.timeline-line {
  position: absolute;
  top: 24px;
  left: 100px;
  right: 100px;
  height: 2px;
  background: rgba(255,255,255,0.1);
}

.timeline-step {
  position: relative;
  z-index: 2;
  text-align: center;
  width: 240px;
}

.timeline-node {
  width: 48px; height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid var(--electric);
  background: var(--deep-navy);
  font-size: 16px;
  font-weight: 700;
  color: var(--electric);
  margin: 0 auto 16px;
}

.timeline-node.active {
  background: var(--cta-gradient);
  color: #fff;
  border: none;
}

.timeline-step-title {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 8px;
}

.timeline-step-desc {
  font-size: 14px;
  line-height: 1.5;
  color: var(--text-secondary);
}

/* ═══════════════════════════════════════════════
   06 — PRODUCT PREVIEW
   ═══════════════════════════════════════════════ */
.preview-tabs {
  display: flex;
  justify-content: center;
  gap: 32px;
  margin-bottom: 32px;
}

.preview-tab {
  font-size: 15px;
  color: var(--text-tertiary);
  cursor: pointer;
  padding-bottom: 10px;
  border-bottom: 3px solid transparent;
  transition: all 0.2s;
  background: none;
  border-top: none;
  border-left: none;
  border-right: none;
  font-family: inherit;
}

.preview-tab.active {
  color: var(--text-primary);
  border-bottom-color: var(--electric);
  font-weight: 600;
}

.preview-tab:hover:not(.active) { color: var(--text-secondary); }

.preview-tab:focus-visible {
  outline: 2px solid var(--electric);
  outline-offset: 4px;
}

.preview-frame {
  max-width: 960px;
  margin: 0 auto;
  aspect-ratio: 16/10;
  background: var(--glass-bg);
  border: 2px solid rgba(255,255,255,0.12);
  border-radius: var(--radius-xl);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: var(--shadow-xl);
  transform: perspective(1200px) rotateX(2deg);
  overflow: hidden;
  position: relative;
}

.preview-screen {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.2s ease-out;
}

.preview-screen.active { opacity: 1; }

.preview-screen img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ═══════════════════════════════════════════════
   07 — PRICING
   ═══════════════════════════════════════════════ */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: start;
}

.pricing-card {
  padding: 36px 32px;
  position: relative;
}

.pricing-card.featured {
  transform: translateY(-16px);
  border-color: var(--glass-featured-border);
  box-shadow: var(--shadow-glow);
}

.pricing-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--cta-gradient);
  color: #fff;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 5px 16px;
  border-radius: var(--radius-sm);
  white-space: nowrap;
}

.pricing-tier {
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 8px;
}

.pricing-price {
  display: flex;
  align-items: baseline;
  gap: 4px;
  margin-bottom: 4px;
}

.pricing-amount {
  font-size: 44px;
  font-weight: 700;
  font-feature-settings: 'tnum';
}

.pricing-period {
  font-size: 14px;
  color: var(--text-tertiary);
}

.pricing-billing {
  font-size: 12px;
  color: var(--text-tertiary);
  margin-bottom: 24px;
}

.pricing-divider {
  height: 1px;
  background: rgba(255,255,255,0.08);
  margin-bottom: 24px;
}

.pricing-features { margin-bottom: 32px; }

.pricing-features li {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 6px 0;
  font-size: 14px;
  color: var(--text-secondary);
}

.pricing-features li.disabled { color: #4b5563; }

.feature-check {
  color: var(--success);
  font-size: 14px;
  width: 18px;
  text-align: center;
  flex-shrink: 0;
}

.feature-x {
  color: #4b5563;
  font-size: 13px;
  width: 18px;
  text-align: center;
  flex-shrink: 0;
}

.pricing-cta {
  width: 100%;
  padding: 12px;
  font-size: 15px;
  font-weight: 600;
  border-radius: var(--radius-lg);
}

.pricing-cta.primary {
  background: var(--cta-gradient);
  color: #fff;
  border: none;
}

.pricing-cta.secondary {
  background: transparent;
  color: var(--text-primary);
  border: 1px solid rgba(255,255,255,0.2);
}

.pricing-cta:active { transform: scale(0.98); }

.pricing-cta:focus-visible {
  outline: 2px solid var(--electric);
  outline-offset: 2px;
}

/* ═══════════════════════════════════════════════
   08 — WIZARD
   ═══════════════════════════════════════════════ */
.wizard-glow-1 {
  position: absolute;
  top: 10%; left: 50%;
  transform: translateX(-50%);
  width: 1000px; height: 1000px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(28,144,207,0.10) 0%, transparent 55%);
  pointer-events: none;
}

.wizard-glow-2 {
  position: absolute;
  top: 20%; right: 5%;
  width: 700px; height: 700px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(74,45,138,0.06) 0%, transparent 55%);
  pointer-events: none;
}

.wizard-layout {
  display: grid;
  grid-template-columns: 58% 42%;
  gap: 32px;
  position: relative;
  z-index: 2;
}

.wizard-form-panel { padding: 40px; }

.wizard-progress {
  display: flex;
  gap: 4px;
  margin-bottom: 32px;
}

.wizard-progress-seg {
  flex: 1;
  height: 4px;
  border-radius: var(--radius-xs);
  background: rgba(255,255,255,0.1);
  transition: background 0.2s;
}

.wizard-progress-seg.active { background: var(--electric); }

.wizard-step-title {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 8px;
}

.wizard-step-desc {
  font-size: 14px;
  color: var(--text-secondary);
  margin-bottom: 24px;
}

.wizard-step { display: none; }
.wizard-step.active { display: block; }

.form-group { margin-bottom: 20px; }

.form-label {
  font-size: 13px;
  font-weight: 500;
  color: var(--text-secondary);
  margin-bottom: 8px;
  display: block;
}

.form-options {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-option {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 16px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-md);
  cursor: pointer;
  transition: all 0.15s;
  font-size: 14px;
  color: var(--text-secondary);
}

.form-option:hover {
  background: rgba(255,255,255,0.08);
  border-color: rgba(255,255,255,0.16);
}

.form-option.selected {
  border-color: var(--electric);
  background: rgba(28,144,207,0.08);
  color: var(--text-primary);
}

.form-option:focus-visible {
  outline: 2px solid var(--electric);
  outline-offset: 2px;
}

.form-radio {
  width: 18px; height: 18px;
  border-radius: 50%;
  border: 2px solid rgba(255,255,255,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all 0.15s;
}

.form-option.selected .form-radio {
  border-color: var(--electric);
  background: var(--electric);
}

.form-radio-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: #fff;
  display: none;
}

.form-option.selected .form-radio-dot { display: block; }

.form-check {
  width: 18px; height: 18px;
  border-radius: var(--radius-xs);
  border: 2px solid rgba(255,255,255,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 11px;
  color: transparent;
  transition: all 0.15s;
}

.form-option.selected .form-check {
  border-color: var(--electric);
  background: var(--electric);
  color: #fff;
}

.wizard-nav {
  display: flex;
  justify-content: space-between;
  margin-top: 32px;
}

.wizard-back {
  background: none;
  border: none;
  color: var(--text-secondary);
  font-size: 14px;
  cursor: pointer;
  transition: color 0.2s;
  padding: 10px 16px;
}

.wizard-back:hover { color: var(--text-primary); }

.wizard-back:focus-visible {
  outline: 2px solid var(--electric);
  outline-offset: 2px;
}

.wizard-next {
  padding: 10px 28px;
  background: var(--cta-gradient);
  border: none;
  border-radius: var(--radius-md);
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: transform 0.1s;
}

.wizard-next:active { transform: scale(0.98); }

.wizard-next:focus-visible {
  outline: 2px solid var(--electric);
  outline-offset: 2px;
}

/* Wizard preview panel */
.wizard-preview-panel {
  padding: 32px;
  border-left: 1px solid rgba(28,144,207,0.2);
}

.preview-panel-title {
  font-size: 14px;
  font-weight: 600;
  color: var(--text-secondary);
  margin-bottom: 16px;
}

.preview-panel-divider {
  height: 1px;
  background: rgba(255,255,255,0.06);
  margin-bottom: 20px;
}

.preview-section { margin-bottom: 20px; }

.preview-section-label {
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  color: var(--electric);
  letter-spacing: 0.05em;
  margin-bottom: 8px;
}

.preview-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.preview-tag {
  padding: 4px 10px;
  background: rgba(255,255,255,0.06);
  border-radius: var(--radius-sm);
  font-size: 11px;
  color: var(--text-secondary);
}

.preview-section.incomplete {
  opacity: 0.3;
}

.preview-section.incomplete .preview-incomplete-msg {
  font-size: 12px;
  color: var(--text-tertiary);
  font-style: italic;
}

/* Wizard summary (step 4) */
.wizard-summary { display: none; }
.wizard-summary.active { display: block; }

.wizard-summary h4 {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--text-primary);
}

.wizard-summary-section {
  margin-bottom: 16px;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.wizard-summary-section:last-child {
  border-bottom: none;
}

.wizard-summary-ctas {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 24px;
}

.wizard-summary-ctas .btn-cta,
.wizard-summary-ctas .btn-ghost {
  width: 100%;
  text-align: center;
}

/* ═══════════════════════════════════════════════
   09 — FINAL CTA
   ═══════════════════════════════════════════════ */
.final-cta-section {
  padding: var(--space-5xl) 0 var(--space-4xl);
  text-align: center;
  position: relative;
  overflow: hidden;
  background: var(--midnight);
}

.final-glow-1 {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 1200px; height: 1200px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(28,144,207,0.10) 0%, transparent 50%);
  pointer-events: none;
}

.final-glow-2 {
  position: absolute;
  top: 40%; right: 20%;
  width: 800px; height: 800px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(74,45,138,0.08) 0%, transparent 50%);
  pointer-events: none;
}

.final-illustration {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 500px;
  opacity: 0.04;
  pointer-events: none;
}

.final-content { position: relative; z-index: 2; }

.final-headline {
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 700;
  line-height: 1.15;
  margin-bottom: 16px;
  max-width: 680px;
  margin-left: auto;
  margin-right: auto;
}

.final-sub {
  font-size: 18px;
  color: var(--text-secondary);
  max-width: 560px;
  margin: 0 auto 32px;
  line-height: 1.6;
}

.final-reassurance {
  font-size: 14px;
  color: var(--text-tertiary);
  margin-top: 16px;
}

/* ═══════════════════════════════════════════════
   10 — FOOTER
   ═══════════════════════════════════════════════ */
.footer {
  background: var(--footer-bg);
  padding: 64px 0 32px;
  border-top: 1px solid rgba(255,255,255,0.06);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}

.footer-logo img {
  height: 24px;
  width: auto;
}

.footer-brand-desc {
  font-size: 14px;
  color: var(--text-tertiary);
  line-height: 1.5;
  margin: 12px 0 16px;
}

.footer-social {
  display: flex;
  gap: 12px;
}

.footer-social-icon {
  width: 32px; height: 32px;
  border-radius: var(--radius-sm);
  background: rgba(255,255,255,0.06);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
}

.footer-social-icon:hover { background: rgba(255,255,255,0.1); }

.footer-social-icon svg {
  width: 16px; height: 16px;
  fill: var(--text-tertiary);
}

.footer-col-title {
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  color: var(--text-secondary);
  letter-spacing: 0.05em;
  margin-bottom: 16px;
}

.footer-links li { margin-bottom: 10px; }

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

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

.footer-links a:focus-visible {
  outline: 2px solid var(--electric);
  outline-offset: 2px;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.06);
  font-size: 12px;
  color: var(--text-tertiary);
}

.footer-bottom-right {
  display: flex;
  align-items: center;
  gap: 16px;
}

/* ═══════════════════════════════════════════════
   LIGHT MODE OVERRIDES
   ═══════════════════════════════════════════════ */
[data-theme="light"] .navbar.scrolled {
  background: rgba(255,255,255,0.88);
  border-bottom-color: rgba(0,0,0,0.06);
}

[data-theme="light"] .mobile-menu {
  background: rgba(255,255,255,0.97);
  border-left-color: rgba(0,0,0,0.06);
}

[data-theme="light"] .mobile-menu a {
  color: var(--text-secondary);
  border-bottom-color: rgba(0,0,0,0.04);
}

[data-theme="light"] .mobile-menu a:hover { color: var(--text-primary); }

[data-theme="light"] .lang-toggle {
  background: rgba(0,0,0,0.04);
  border-color: rgba(0,0,0,0.1);
}

[data-theme="light"] .lang-btn { color: var(--text-tertiary); }

[data-theme="light"] .lang-btn[aria-pressed="true"] {
  background: rgba(28,144,207,0.1);
  color: var(--electric);
}

[data-theme="light"] .btn-ghost {
  border-color: rgba(0,0,0,0.15);
  color: var(--text-primary);
}

[data-theme="light"] .btn-ghost:hover { border-color: rgba(0,0,0,0.3); }

[data-theme="light"] .hero-glow-1 {
  background: radial-gradient(circle, rgba(28,144,207,0.05) 0%, transparent 60%);
}

[data-theme="light"] .hero-glow-2 {
  background: radial-gradient(circle, rgba(74,45,138,0.03) 0%, transparent 60%);
}

[data-theme="light"] .dashboard-mock {
  background: rgba(255,255,255,0.7);
  border-color: rgba(0,0,0,0.08);
}

[data-theme="light"] .dash-topbar { background: rgba(0,0,0,0.02); }

[data-theme="light"] .dash-topbar-actions span {
  border-color: rgba(0,0,0,0.1);
  color: var(--text-tertiary);
}

[data-theme="light"] .dash-kpi {
  background: rgba(0,0,0,0.03);
  border-color: rgba(0,0,0,0.06);
}

[data-theme="light"] .dash-chart { background: rgba(0,0,0,0.01); }

[data-theme="light"] .chart-bar-track { background: rgba(0,0,0,0.04); }

[data-theme="light"] .dash-table-header { border-bottom-color: rgba(0,0,0,0.06); }
[data-theme="light"] .dash-table-row { border-bottom-color: rgba(0,0,0,0.03); }

[data-theme="light"] .section-glow {
  background: radial-gradient(circle, rgba(28,144,207,0.04) 0%, transparent 60%);
}

[data-theme="light"] .trust-logo { background: rgba(0,0,0,0.04); }

[data-theme="light"] .trust-badge-icon { background: rgba(0,0,0,0.04); }
[data-theme="light"] .trust-badge-icon svg { stroke: var(--text-tertiary); }

[data-theme="light"] .badge-divider { background: rgba(0,0,0,0.08); }

[data-theme="light"] .timeline-node { background: var(--deep-navy); }
[data-theme="light"] .timeline-line { background: rgba(0,0,0,0.08); }

[data-theme="light"] .preview-frame {
  border-color: rgba(0,0,0,0.1);
  background: rgba(255,255,255,0.5);
}

[data-theme="light"] .pricing-divider { background: rgba(0,0,0,0.06); }
[data-theme="light"] .pricing-features li.disabled { color: #9ca3af; }
[data-theme="light"] .feature-x { color: #9ca3af; }

[data-theme="light"] .pricing-cta.secondary {
  border-color: rgba(0,0,0,0.15);
  color: var(--text-primary);
}

[data-theme="light"] .form-option {
  background: rgba(0,0,0,0.03);
  border-color: rgba(0,0,0,0.1);
  color: var(--text-secondary);
}

[data-theme="light"] .form-option:hover {
  background: rgba(0,0,0,0.05);
  border-color: rgba(0,0,0,0.16);
}

[data-theme="light"] .form-radio { border-color: rgba(0,0,0,0.2); }

[data-theme="light"] .form-check {
  border-color: rgba(0,0,0,0.2);
  color: transparent;
}

[data-theme="light"] .wizard-progress-seg { background: rgba(0,0,0,0.08); }

[data-theme="light"] .wizard-preview-panel { border-left-color: rgba(28,144,207,0.15); }

[data-theme="light"] .preview-panel-divider { background: rgba(0,0,0,0.06); }

[data-theme="light"] .preview-tag { background: rgba(0,0,0,0.04); }

[data-theme="light"] .wizard-glow-1 {
  background: radial-gradient(circle, rgba(28,144,207,0.05) 0%, transparent 55%);
}

[data-theme="light"] .wizard-glow-2 {
  background: radial-gradient(circle, rgba(74,45,138,0.03) 0%, transparent 55%);
}

[data-theme="light"] .final-glow-1 {
  background: radial-gradient(circle, rgba(28,144,207,0.05) 0%, transparent 50%);
}

[data-theme="light"] .final-glow-2 {
  background: radial-gradient(circle, rgba(74,45,138,0.04) 0%, transparent 50%);
}

[data-theme="light"] .footer {
  border-top-color: rgba(0,0,0,0.06);
}

[data-theme="light"] .footer-social-icon {
  background: rgba(0,0,0,0.06);
}

[data-theme="light"] .footer-social-icon:hover { background: rgba(0,0,0,0.1); }

[data-theme="light"] .footer-social-icon svg { fill: var(--text-tertiary); }

[data-theme="light"] .footer-bottom { border-top-color: rgba(0,0,0,0.06); }

[data-theme="light"] .mobile-lang-toggle { border-top-color: rgba(0,0,0,0.06); }

/* ═══════════════════════════════════════════════
   CONTACT / DEMO FORM
   ═══════════════════════════════════════════════ */
.contact-section {
  padding: var(--space-4xl) 0;
  position: relative;
  background: var(--deep-navy);
}

.contact-section .section-glow {
  position: absolute;
  top: -100px; left: 50%;
  transform: translateX(-50%);
  width: 600px; height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(28,144,207,0.06) 0%, transparent 60%);
  pointer-events: none;
}

.contact-form-centered {
  max-width: 680px;
  margin: 0 auto;
}

.contact-form-card {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-xl);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  padding: 36px;
  box-shadow: var(--shadow-md);
}

.contact-form { display: flex; flex-direction: column; gap: 16px; }

.contact-form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

.contact-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.contact-field label {
  font-size: 13px;
  font-weight: 500;
  color: var(--text-secondary);
}

.contact-field input,
.contact-field textarea {
  padding: 12px 16px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-md);
  color: var(--text-primary);
  font-size: 14px;
  font-family: inherit;
  transition: border-color 0.2s, background 0.2s;
  outline: none;
}

.contact-field input::placeholder,
.contact-field textarea::placeholder {
  color: var(--text-tertiary);
}

.contact-field input:focus,
.contact-field textarea:focus {
  border-color: var(--electric);
  background: rgba(28,144,207,0.04);
}

.contact-field textarea { resize: vertical; min-height: 100px; }

[data-theme="light"] .contact-field input,
[data-theme="light"] .contact-field textarea {
  background: rgba(0,0,0,0.03);
  border-color: rgba(0,0,0,0.1);
}

[data-theme="light"] .contact-field input:focus,
[data-theme="light"] .contact-field textarea:focus {
  background: rgba(28,144,207,0.03);
}

.contact-submit {
  align-self: flex-start;
  padding: 12px 36px;
  background: var(--cta-gradient);
  border: none;
  border-radius: var(--radius-md);
  color: #fff;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: transform 0.1s;
}

.contact-submit:active { transform: scale(0.98); }
.contact-submit:disabled { opacity: 0.7; cursor: not-allowed; }

.contact-submit:focus-visible {
  outline: 2px solid var(--electric);
  outline-offset: 2px;
}

.contact-status {
  font-size: 14px;
  line-height: 1.5;
  min-height: 20px;
}

.contact-status.success { color: var(--success); }
.contact-status.error { color: var(--error); }

/* ═══════════════════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════════════════ */

/* Tablet */
@media (max-width: 1024px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .hero-text { max-width: 100%; }
  .dashboard-mock {
    transform: perspective(1200px) rotateX(2deg);
    max-width: 580px;
    margin: 0 auto;
  }
  .value-cards {
    grid-template-columns: 1fr;
    max-width: 480px;
    margin: 0 auto;
  }
  .timeline {
    flex-direction: column;
    padding: 0;
    gap: 32px;
  }
  .timeline-line { display: none; }
  .timeline-step {
    width: 100%;
    text-align: left;
    display: flex;
    gap: 16px;
    align-items: flex-start;
  }
  .timeline-node {
    margin: 0;
    flex-shrink: 0;
  }
  .pricing-grid {
    grid-template-columns: 1fr;
    max-width: 420px;
    margin: 0 auto;
  }
  .pricing-card.featured { transform: none; }
  .wizard-layout { grid-template-columns: 1fr; }
  .wizard-preview-panel {
    border-left: none;
    border-top: 1px solid rgba(28,144,207,0.2);
  }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .nav-links { display: none; }
  .nav-hamburger { display: flex; }
  .mobile-menu { display: flex; }
  [data-theme="light"] .wizard-preview-panel { border-left: none; border-top-color: rgba(28,144,207,0.15); }
}

/* Mobile */
@media (max-width: 640px) {
  .hero-ctas { flex-direction: column; }
  .hero-ctas .btn-ghost,
  .hero-ctas .btn-cta { width: 100%; text-align: center; }
  .trust-stats { gap: 32px; }
  .trust-logos { gap: 24px; }
  .footer-grid { grid-template-columns: 1fr; }
  .contact-form-row { grid-template-columns: 1fr; }
  .contact-submit { width: 100%; }
  .footer-bottom {
    flex-direction: column;
    gap: 12px;
    text-align: center;
  }
  .preview-tabs {
    gap: 16px;
    flex-wrap: wrap;
    justify-content: center;
  }
  .hero-illustration { display: none; }
  .section { padding: 64px 0; }
  .final-cta-section { padding: 96px 0 64px; }
}

@media (max-width: 480px) {
  .dash-kpi-row { grid-template-columns: 1fr; }
  .dash-table-header,
  .dash-table-row {
    grid-template-columns: 1fr 1fr;
    font-size: 10px;
  }
  .dash-table-header span:nth-child(3),
  .dash-table-header span:nth-child(4),
  .dash-table-row span:nth-child(3),
  .dash-table-row .dash-amount { display: none; }
}

/* ═══════════════════════════════════════════════
   PREFERS REDUCED MOTION
   ═══════════════════════════════════════════════ */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
  .dashboard-mock { transform: none; }
  .preview-frame { transform: none; }
  .glass-card:hover { transform: none; }
  .pricing-card.featured { transform: none; }
}

/* ═══════════════════════════════════════════════
   PRINT STYLES (for PDF wizard export)
   ═══════════════════════════════════════════════ */
@media print {
  body {
    background: #fff;
    color: #1a1a1a;
  }
  .navbar, .hero, .section, .footer,
  .final-cta-section, .mobile-menu { display: none !important; }
}
