/* ═══════════════════════════════════════════════════════════════════════
   MERCILIUM BRAND WEBSITE — STYLESHEET
   Design: Dark enterprise, Space Grotesk + Inter, deep navy/indigo palette
   ═══════════════════════════════════════════════════════════════════════ */

/* ─── CSS Variables ──────────────────────────────────────────────────────── */
:root {
  --bg-base:       #050810;
  --bg-surface:    #0a0f1e;
  --bg-elevated:   #0f1629;
  --bg-card:       #131b2e;
  --bg-card-hover: #172035;

  --border:        rgba(255,255,255,0.07);
  --border-strong: rgba(255,255,255,0.12);

  --text-primary:   #f0f4ff;
  --text-secondary: #8b9cc8;
  --text-muted:     #4a5578;

  --accent-primary:  #4f6ef7;
  --accent-hover:    #6b85ff;
  --accent-glow:     rgba(79,110,247,0.25);
  --accent-subtle:   rgba(79,110,247,0.1);

  --green:   #22c55e;
  --yellow:  #f59e0b;
  --red:     #ef4444;
  --purple:  #a855f7;

  --gradient-primary: linear-gradient(135deg, #4f6ef7 0%, #a855f7 100%);
  --gradient-hero:    linear-gradient(180deg, #050810 0%, #0a0f1e 100%);

  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 16px;
  --radius-xl: 24px;

  --shadow-card: 0 4px 24px rgba(0,0,0,0.4);
  --shadow-glow: 0 0 60px rgba(79,110,247,0.15);

  --font-display: 'Space Grotesk', sans-serif;
  --font-body:    'Inter', sans-serif;

  --nav-height: 72px;
  --container:  1200px;
}

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

html { scroll-behavior: smooth; font-size: 16px; }

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

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
input, select, textarea { font-family: inherit; }

/* ─── Container ──────────────────────────────────────────────────────────── */
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

/* ─── Typography ─────────────────────────────────────────────────────────── */
.gradient-text {
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ─── Buttons ────────────────────────────────────────────────────────────── */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--accent-primary);
  color: #fff;
  padding: 10px 20px;
  border-radius: var(--radius-md);
  font-weight: 600;
  font-size: 14px;
  transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
  white-space: nowrap;
}
.btn-primary:hover {
  background: var(--accent-hover);
  transform: translateY(-1px);
  box-shadow: 0 8px 24px var(--accent-glow);
}
.btn-primary.btn-lg { padding: 14px 28px; font-size: 15px; border-radius: var(--radius-lg); }
.btn-primary.btn-full { width: 100%; justify-content: center; }

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: var(--text-primary);
  padding: 10px 20px;
  border-radius: var(--radius-md);
  font-weight: 600;
  font-size: 14px;
  border: 1px solid var(--border-strong);
  transition: border-color 0.2s, background 0.2s, transform 0.15s;
  white-space: nowrap;
}
.btn-outline:hover {
  border-color: var(--accent-primary);
  background: var(--accent-subtle);
  transform: translateY(-1px);
}
.btn-outline.btn-lg { padding: 14px 28px; font-size: 15px; border-radius: var(--radius-lg); }
.btn-outline.btn-full { width: 100%; justify-content: center; }

.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--text-secondary);
  padding: 10px 16px;
  font-weight: 500;
  font-size: 14px;
  border-radius: var(--radius-md);
  transition: color 0.2s, background 0.2s;
}
.btn-ghost:hover { color: var(--text-primary); background: var(--bg-elevated); }

/* ─── Section Shared ─────────────────────────────────────────────────────── */
.section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 64px;
}
.section-tag {
  display: inline-block;
  background: var(--accent-subtle);
  color: var(--accent-primary);
  border: 1px solid rgba(79,110,247,0.3);
  padding: 4px 14px;
  border-radius: 100px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.section-title {
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 700;
  line-height: 1.15;
  color: var(--text-primary);
  margin-bottom: 16px;
}
.section-subtitle {
  font-size: 17px;
  color: var(--text-secondary);
  line-height: 1.7;
}

/* ═══════════════════════════════════════════════════════════════════════════
   NAVBAR
   ═══════════════════════════════════════════════════════════════════════════ */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--nav-height);
  background: rgba(5,8,16,0.8);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  transition: background 0.3s;
}
.navbar.scrolled { background: rgba(5,8,16,0.95); }

.nav-container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
  height: 100%;
  display: flex;
  align-items: center;
  gap: 40px;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}
.logo-mark {
  width: 32px;
  height: 32px;
  background: var(--gradient-primary);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 16px;
  color: #fff;
}
.logo-text {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 18px;
  color: var(--text-primary);
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
  flex: 1;
}
.nav-links a {
  color: var(--text-secondary);
  font-size: 14px;
  font-weight: 500;
  padding: 6px 12px;
  border-radius: var(--radius-sm);
  transition: color 0.2s, background 0.2s;
}
.nav-links a:hover { color: var(--text-primary); background: var(--bg-elevated); }

.nav-actions { display: flex; align-items: center; gap: 8px; margin-left: auto; }
.nav-toggle { display: none; flex-direction: column; gap: 5px; padding: 4px; }
.nav-toggle span { display: block; width: 22px; height: 2px; background: var(--text-secondary); border-radius: 2px; transition: 0.3s; }

/* ═══════════════════════════════════════════════════════════════════════════
   HERO
   ═══════════════════════════════════════════════════════════════════════════ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: calc(var(--nav-height) + 60px) 24px 80px;
  overflow: hidden;
}
.hero-bg-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(79,110,247,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(79,110,247,0.04) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 80% 60% at 50% 40%, black, transparent);
}
.hero-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
}
.hero-glow-1 {
  width: 600px; height: 400px;
  background: rgba(79,110,247,0.12);
  top: 10%; left: 50%;
  transform: translateX(-50%);
}
.hero-glow-2 {
  width: 400px; height: 300px;
  background: rgba(168,85,247,0.08);
  top: 30%; right: 10%;
}
.hero-container {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--bg-card);
  border: 1px solid var(--border-strong);
  padding: 6px 16px;
  border-radius: 100px;
  font-size: 13px;
  color: var(--text-secondary);
  margin-bottom: 28px;
}
.badge-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 8px var(--green);
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}
.hero-title {
  font-family: var(--font-display);
  font-size: clamp(36px, 6vw, 68px);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -0.02em;
  margin-bottom: 24px;
  color: var(--text-primary);
}
.hero-subtitle {
  font-size: clamp(16px, 2vw, 19px);
  color: var(--text-secondary);
  line-height: 1.7;
  max-width: 640px;
  margin: 0 auto 36px;
}
.hero-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 56px;
}
.hero-stats {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  flex-wrap: wrap;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 20px 40px;
  display: inline-flex;
}
.stat-item { text-align: center; padding: 0 28px; }
.stat-number {
  display: block;
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 800;
  color: var(--text-primary);
  line-height: 1;
  margin-bottom: 4px;
}
.stat-label { font-size: 12px; color: var(--text-muted); font-weight: 500; }
.stat-divider { width: 1px; height: 40px; background: var(--border); }

/* ─── Hero Visual / Dashboard Mockup ────────────────────────────────────── */
.hero-visual {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 860px;
  margin: 64px auto 0;
  padding: 0 24px;
}
.dashboard-mockup {
  background: var(--bg-elevated);
  border: 1px solid var(--border-strong);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: 0 40px 80px rgba(0,0,0,0.6), 0 0 0 1px var(--border), var(--shadow-glow);
}
.mockup-bar {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 12px 16px;
  background: var(--bg-card);
  border-bottom: 1px solid var(--border);
}
.dot { width: 10px; height: 10px; border-radius: 50%; }
.dot.red { background: #ff5f57; }
.dot.yellow { background: #ffbd2e; }
.dot.green { background: #28c840; }
.mockup-url {
  margin-left: 12px;
  font-size: 12px;
  color: var(--text-muted);
  background: var(--bg-base);
  padding: 3px 12px;
  border-radius: 4px;
  border: 1px solid var(--border);
}
.mockup-content { display: flex; }
.mockup-sidebar {
  width: 52px;
  background: var(--bg-card);
  border-right: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  padding: 12px 0;
}
.sidebar-item {
  width: 36px; height: 36px;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  transition: 0.2s;
}
.sidebar-item.active { background: var(--accent-subtle); color: var(--accent-primary); }
.sidebar-item svg { width: 16px; height: 16px; }
.mockup-main { flex: 1; padding: 16px; }
.mockup-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 14px;
}
.mockup-title { font-size: 14px; font-weight: 600; color: var(--text-primary); }
.mockup-badge { font-size: 11px; font-weight: 600; padding: 3px 10px; border-radius: 100px; }
.mockup-badge.critical { background: rgba(239,68,68,0.15); color: #ef4444; }
.mockup-kpis { display: flex; gap: 10px; margin-bottom: 14px; }
.kpi-card {
  flex: 1;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 10px 12px;
}
.kpi-card.accent { border-color: rgba(79,110,247,0.3); background: var(--accent-subtle); }
.kpi-val { display: block; font-family: var(--font-display); font-size: 20px; font-weight: 700; color: var(--text-primary); }
.kpi-lbl { font-size: 11px; color: var(--text-muted); }
.mockup-list { display: flex; flex-direction: column; gap: 6px; }
.list-row {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 10px;
  background: var(--bg-card);
  border-radius: var(--radius-sm);
  font-size: 12px;
  color: var(--text-secondary);
}
.list-row .amount { margin-left: auto; font-weight: 600; color: var(--text-primary); }
.sev-dot { width: 7px; height: 7px; border-radius: 50%; flex-shrink: 0; }
.sev-dot.critical { background: var(--red); }
.sev-dot.high { background: var(--yellow); }
.sev-dot.medium { background: var(--accent-primary); }
.sev-dot.low { background: var(--green); }

/* ═══════════════════════════════════════════════════════════════════════════
   TRUST BAR
   ═══════════════════════════════════════════════════════════════════════════ */
.trust-bar {
  padding: 48px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: var(--bg-surface);
}
.trust-label {
  text-align: center;
  font-size: 13px;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 500;
  margin-bottom: 28px;
}
.trust-logos {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}
.erp-logo {
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 700;
  color: var(--text-muted);
  letter-spacing: 0.05em;
  text-align: center;
  text-transform: uppercase;
  opacity: 0.6;
  transition: opacity 0.2s;
}
.erp-logo:hover { opacity: 1; }

/* ═══════════════════════════════════════════════════════════════════════════
   PLATFORM
   ═══════════════════════════════════════════════════════════════════════════ */
.platform { padding: 120px 0; }
.platform-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.platform-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
  transition: border-color 0.2s, transform 0.2s, box-shadow 0.2s;
}
.platform-card:hover {
  border-color: rgba(79,110,247,0.3);
  transform: translateY(-3px);
  box-shadow: var(--shadow-card);
}
.platform-icon {
  width: 44px; height: 44px;
  background: var(--accent-subtle);
  border: 1px solid rgba(79,110,247,0.2);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-primary);
  margin-bottom: 16px;
}
.platform-icon svg { width: 20px; height: 20px; }
.platform-card h3 {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 10px;
}
.platform-card p { font-size: 14px; color: var(--text-secondary); line-height: 1.65; }

/* ═══════════════════════════════════════════════════════════════════════════
   SUITES
   ═══════════════════════════════════════════════════════════════════════════ */
.suites {
  padding: 120px 0;
  background: var(--bg-surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.suites-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.suite-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 36px 32px;
  position: relative;
  overflow: hidden;
  transition: transform 0.2s, box-shadow 0.2s;
}
.suite-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-card); }
.suite-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
}
.suite-procurement::before { background: linear-gradient(90deg, #4f6ef7, #6b85ff); }
.suite-finance::before { background: linear-gradient(90deg, #a855f7, #c084fc); }
.suite-controls::before { background: linear-gradient(90deg, #22c55e, #4ade80); }

.suite-number {
  font-family: var(--font-display);
  font-size: 48px;
  font-weight: 900;
  color: var(--border-strong);
  line-height: 1;
  margin-bottom: 16px;
}
.suite-icon {
  width: 48px; height: 48px;
  background: var(--accent-subtle);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-primary);
  margin-bottom: 20px;
}
.suite-icon svg { width: 22px; height: 22px; }
.suite-name {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 12px;
}
.suite-desc { font-size: 14px; color: var(--text-secondary); line-height: 1.65; margin-bottom: 24px; }
.suite-products { display: flex; flex-direction: column; gap: 10px; margin-bottom: 28px; }
.suite-products li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: var(--text-secondary);
}
.suite-products li svg { width: 14px; height: 14px; color: var(--accent-primary); flex-shrink: 0; }
.badge-live {
  background: rgba(34,197,94,0.15);
  color: var(--green);
  border: 1px solid rgba(34,197,94,0.3);
  font-size: 10px;
  font-weight: 700;
  padding: 2px 8px;
  border-radius: 100px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.suite-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  font-weight: 600;
  color: var(--accent-primary);
  transition: gap 0.2s;
}
.suite-link:hover { gap: 10px; }
.suite-link svg { width: 14px; height: 14px; }

/* ═══════════════════════════════════════════════════════════════════════════
   PRODUCT SPOTLIGHT
   ═══════════════════════════════════════════════════════════════════════════ */
.product-spotlight { padding: 120px 0; }
.spotlight-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}
.spotlight-features { display: flex; flex-direction: column; gap: 32px; }
.feature-item { display: flex; gap: 16px; }
.feature-icon {
  width: 40px; height: 40px;
  background: var(--accent-subtle);
  border: 1px solid rgba(79,110,247,0.2);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-primary);
  flex-shrink: 0;
  margin-top: 2px;
}
.feature-icon svg { width: 18px; height: 18px; }
.feature-text h4 {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 6px;
}
.feature-text p { font-size: 14px; color: var(--text-secondary); line-height: 1.65; }

/* Exception card mockup */
.exception-card {
  background: var(--bg-card);
  border: 1px solid var(--border-strong);
  border-radius: var(--radius-xl);
  padding: 24px;
  box-shadow: var(--shadow-card);
}
.exc-header { display: flex; justify-content: space-between; align-items: flex-start; margin-bottom: 16px; }
.exc-number { font-family: var(--font-display); font-size: 13px; font-weight: 700; color: var(--text-primary); margin-bottom: 2px; }
.exc-invoice { font-size: 12px; color: var(--text-muted); }
.badge-severity {
  font-size: 11px;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 100px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.badge-severity.critical { background: rgba(239,68,68,0.15); color: var(--red); border: 1px solid rgba(239,68,68,0.3); }
.exc-type {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 600;
  color: var(--yellow);
  margin-bottom: 16px;
}
.exc-type svg { width: 14px; height: 14px; }
.exc-amounts {
  display: flex;
  align-items: center;
  gap: 12px;
  background: var(--bg-elevated);
  border-radius: var(--radius-md);
  padding: 14px;
  margin-bottom: 12px;
}
.amount-col { flex: 1; }
.amount-label { display: block; font-size: 11px; color: var(--text-muted); margin-bottom: 4px; }
.amount-value { font-family: var(--font-display); font-size: 18px; font-weight: 700; color: var(--text-primary); }
.amount-value.po { color: var(--green); }
.amount-arrow { color: var(--text-muted); }
.amount-arrow svg { width: 16px; height: 16px; }
.exc-discrepancy {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
  color: var(--text-muted);
  margin-bottom: 16px;
  padding: 0 4px;
}
.disc-amount { font-weight: 700; color: var(--red); }
.exc-ai {
  background: rgba(79,110,247,0.06);
  border: 1px solid rgba(79,110,247,0.15);
  border-radius: var(--radius-md);
  padding: 14px;
  margin-bottom: 16px;
}
.ai-label {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  font-weight: 700;
  color: var(--accent-primary);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 8px;
}
.ai-label svg { width: 12px; height: 12px; }
.ai-text { font-size: 12px; color: var(--text-secondary); line-height: 1.6; margin-bottom: 10px; }
.ai-confidence {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  color: var(--text-muted);
}
.confidence-bar { flex: 1; height: 4px; background: var(--bg-base); border-radius: 2px; }
.confidence-fill { height: 100%; background: var(--accent-primary); border-radius: 2px; }
.exc-actions { display: flex; gap: 8px; }
.exc-btn {
  flex: 1;
  padding: 8px 4px;
  border-radius: var(--radius-sm);
  font-size: 12px;
  font-weight: 600;
  transition: 0.2s;
  cursor: pointer;
}
.exc-btn.approve { background: rgba(34,197,94,0.15); color: var(--green); border: 1px solid rgba(34,197,94,0.3); }
.exc-btn.reject { background: rgba(239,68,68,0.15); color: var(--red); border: 1px solid rgba(239,68,68,0.3); }
.exc-btn.escalate { background: rgba(245,158,11,0.15); color: var(--yellow); border: 1px solid rgba(245,158,11,0.3); }
.exc-btn:hover { filter: brightness(1.2); }

/* ═══════════════════════════════════════════════════════════════════════════
   VISION
   ═══════════════════════════════════════════════════════════════════════════ */
.vision {
  padding: 120px 0;
  position: relative;
  background: var(--bg-surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.vision-bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 50% at 50% 50%, rgba(79,110,247,0.06), transparent);
  pointer-events: none;
}
.vision-content { position: relative; max-width: 860px; margin: 0 auto; text-align: center; }
.vision-title {
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 800;
  line-height: 1.15;
  color: var(--text-primary);
  margin-bottom: 40px;
}
.vision-body {
  display: flex;
  flex-direction: column;
  gap: 20px;
  text-align: left;
  max-width: 720px;
  margin: 0 auto 56px;
}
.vision-body p { font-size: 16px; color: var(--text-secondary); line-height: 1.8; }
.vision-pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  text-align: left;
}
.pillar {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 24px;
}
.pillar-icon {
  width: 40px; height: 40px;
  background: var(--accent-subtle);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-primary);
  margin-bottom: 14px;
}
.pillar-icon svg { width: 18px; height: 18px; }
.pillar h4 {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 8px;
}
.pillar p { font-size: 14px; color: var(--text-secondary); line-height: 1.6; }

/* ═══════════════════════════════════════════════════════════════════════════
   ROADMAP
   ═══════════════════════════════════════════════════════════════════════════ */
.roadmap { padding: 120px 0; }
.roadmap-timeline {
  display: flex;
  flex-direction: column;
  gap: 0;
  max-width: 760px;
  margin: 0 auto;
  position: relative;
}
.roadmap-timeline::before {
  content: '';
  position: absolute;
  left: 60px;
  top: 0; bottom: 0;
  width: 1px;
  background: var(--border);
}
.wave-item {
  display: flex;
  gap: 32px;
  padding: 28px 0;
  position: relative;
}
.wave-marker {
  width: 120px;
  flex-shrink: 0;
  display: flex;
  justify-content: flex-end;
  padding-right: 24px;
  position: relative;
}
.wave-marker::after {
  content: '';
  position: absolute;
  right: -5px;
  top: 50%;
  transform: translateY(-50%);
  width: 10px; height: 10px;
  border-radius: 50%;
  background: var(--border-strong);
  border: 2px solid var(--bg-base);
  z-index: 1;
}
.wave-active .wave-marker::after {
  background: var(--accent-primary);
  box-shadow: 0 0 12px var(--accent-glow);
}
.wave-marker span {
  font-size: 12px;
  font-weight: 700;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding-top: 2px;
}
.wave-active .wave-marker span { color: var(--accent-primary); }
.wave-content { flex: 1; }
.wave-period { font-size: 12px; color: var(--text-muted); margin-bottom: 4px; }
.wave-content h4 {
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 10px;
}
.wave-products { display: flex; gap: 8px; flex-wrap: wrap; }
.product-tag {
  font-size: 12px;
  font-weight: 600;
  padding: 4px 12px;
  border-radius: 100px;
}
.product-tag.live {
  background: rgba(34,197,94,0.15);
  color: var(--green);
  border: 1px solid rgba(34,197,94,0.3);
}
.product-tag.upcoming {
  background: var(--bg-elevated);
  color: var(--text-muted);
  border: 1px solid var(--border);
}

/* ═══════════════════════════════════════════════════════════════════════════
   PRICING
   ═══════════════════════════════════════════════════════════════════════════ */
.pricing {
  padding: 120px 0;
  background: var(--bg-surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: start;
}
.pricing-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 36px 32px;
  position: relative;
}
.pricing-featured {
  border-color: rgba(79,110,247,0.4);
  background: linear-gradient(180deg, rgba(79,110,247,0.06) 0%, var(--bg-card) 100%);
  box-shadow: 0 0 40px rgba(79,110,247,0.1);
}
.plan-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gradient-primary);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  padding: 4px 16px;
  border-radius: 100px;
  white-space: nowrap;
}
.plan-name {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 16px;
}
.plan-price { margin-bottom: 12px; }
.price-amount {
  font-family: var(--font-display);
  font-size: 40px;
  font-weight: 800;
  color: var(--text-primary);
}
.price-period { font-size: 16px; color: var(--text-muted); }
.plan-desc { font-size: 14px; color: var(--text-secondary); line-height: 1.6; margin-bottom: 24px; padding-bottom: 24px; border-bottom: 1px solid var(--border); }
.plan-features { display: flex; flex-direction: column; gap: 12px; margin-bottom: 28px; }
.plan-features li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  color: var(--text-secondary);
}
.plan-features li svg { width: 14px; height: 14px; color: var(--green); flex-shrink: 0; margin-top: 2px; }

/* ═══════════════════════════════════════════════════════════════════════════
   DEMO SECTION
   ═══════════════════════════════════════════════════════════════════════════ */
.demo-section { padding: 120px 0; }
.demo-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
.demo-title {
  font-family: var(--font-display);
  font-size: clamp(28px, 3.5vw, 44px);
  font-weight: 800;
  color: var(--text-primary);
  line-height: 1.15;
  margin-bottom: 16px;
}
.demo-desc { font-size: 16px; color: var(--text-secondary); line-height: 1.7; margin-bottom: 32px; }
.demo-promises { display: flex; flex-direction: column; gap: 14px; }
.promise-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 15px;
  color: var(--text-secondary);
}
.promise-item svg { width: 16px; height: 16px; color: var(--accent-primary); flex-shrink: 0; }

/* Form */
.demo-form-wrapper {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 36px;
}
.demo-form { display: flex; flex-direction: column; gap: 16px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-group label { font-size: 13px; font-weight: 600; color: var(--text-secondary); }
.form-group input,
.form-group select,
.form-group textarea {
  background: var(--bg-elevated);
  border: 1px solid var(--border-strong);
  border-radius: var(--radius-md);
  padding: 10px 14px;
  font-size: 14px;
  color: var(--text-primary);
  transition: border-color 0.2s, box-shadow 0.2s;
  outline: none;
  width: 100%;
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--text-muted); }
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--accent-primary);
  box-shadow: 0 0 0 3px var(--accent-glow);
}
.form-group select { appearance: none; cursor: pointer; }
.form-group select option { background: var(--bg-elevated); }
.form-group textarea { resize: vertical; min-height: 80px; }
.form-disclaimer {
  font-size: 12px;
  color: var(--text-muted);
  text-align: center;
}
.form-disclaimer a { color: var(--accent-primary); }

.form-success {
  text-align: center;
  padding: 40px 20px;
}
.success-icon { color: var(--green); margin-bottom: 16px; }
.success-icon svg { width: 48px; height: 48px; }
.form-success h3 {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 10px;
}
.form-success p { font-size: 15px; color: var(--text-secondary); }

/* ═══════════════════════════════════════════════════════════════════════════
   FOOTER
   ═══════════════════════════════════════════════════════════════════════════ */
.footer {
  padding: 80px 0 40px;
  background: var(--bg-surface);
  border-top: 1px solid var(--border);
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 64px;
}
.footer-tagline { font-size: 14px; color: var(--text-muted); margin-top: 12px; margin-bottom: 20px; line-height: 1.6; }
.footer-social { display: flex; gap: 12px; }
.footer-social a {
  width: 36px; height: 36px;
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  transition: 0.2s;
}
.footer-social a:hover { color: var(--text-primary); border-color: var(--border-strong); }
.footer-social a svg { width: 14px; height: 14px; }
.footer-col h5 {
  font-size: 13px;
  font-weight: 700;
  color: var(--text-primary);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 16px;
}
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col a { font-size: 14px; color: var(--text-muted); transition: color 0.2s; }
.footer-col a:hover { color: var(--text-primary); }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 24px;
  border-top: 1px solid var(--border);
  font-size: 13px;
  color: var(--text-muted);
}

/* ═══════════════════════════════════════════════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════════════════════════════════════════════ */
@media (max-width: 1024px) {
  .platform-grid { grid-template-columns: repeat(2, 1fr); }
  .suites-grid { grid-template-columns: 1fr; max-width: 560px; margin: 0 auto; }
  .spotlight-grid { grid-template-columns: 1fr; gap: 48px; }
  .pricing-grid { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; }
  .demo-grid { grid-template-columns: 1fr; gap: 48px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
  .footer-brand { grid-column: 1 / -1; }
  .vision-pillars { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .nav-links { display: none; }
  .nav-toggle { display: flex; }
  .platform-grid { grid-template-columns: 1fr; }
  .hero-stats { flex-direction: column; gap: 16px; padding: 24px; }
  .stat-divider { width: 40px; height: 1px; }
  .mockup-kpis { flex-direction: column; }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }
  .hero-visual { display: none; }
}
