/* QuantumSearch Security Research — Website Styles v4
   Design: Swiss Alpine Vault — Brighter, Bolder, Better Fonts
   Palette: Deep navy (not black) + glacier blue + aurora emerald + alpine warmth */

@import url('https://fonts.googleapis.com/css2?family=Bricolage+Grotesque:opsz,wght@12..96,400;12..96,600;12..96,700;12..96,800&family=Plus+Jakarta+Sans:ital,wght@0,300;0,400;0,500;0,600;0,700;1,400&family=JetBrains+Mono:wght@400;500;600&display=swap');

/* ─── Variables ─── */
:root {
  /* Backgrounds — visible navy, not abyss black */
  --bg-primary: #0f1628;
  --bg-secondary: #141d35;
  --bg-card: #1a2544;
  --bg-card-hover: #1f2d50;
  --bg-elevated: #243358;

  /* Accent — aurora + glacier */
  --accent: #00d4aa;
  --accent-soft: #00c49c;
  --accent-dim: rgba(0, 212, 170, 0.1);
  --accent-glow: rgba(0, 212, 170, 0.22);
  --accent-warm: #00e6b8;
  --glacier: #38bdf8;
  --glacier-dim: rgba(56, 189, 248, 0.1);
  --glacier-glow: rgba(56, 189, 248, 0.18);
  --amber: #e0a87c;
  --amber-dim: rgba(224, 168, 124, 0.1);

  /* Status */
  --danger: #ff6b7a;
  --danger-dim: rgba(255, 107, 122, 0.1);

  /* Text — brighter, more readable */
  --text-primary: #f0f4fa;
  --text-secondary: #9eabc0;
  --text-muted: #6b7a94;

  /* Borders — more visible */
  --border: rgba(255, 255, 255, 0.07);
  --border-accent: rgba(0, 212, 170, 0.15);
  --border-glacier: rgba(56, 189, 248, 0.15);
  --border-strong: rgba(255, 255, 255, 0.1);

  /* Typography */
  --font-display: 'Bricolage Grotesque', sans-serif;
  --font-body: 'Plus Jakarta Sans', sans-serif;
  --font-mono: 'JetBrains Mono', monospace;

  /* Layout */
  --max-width: 1160px;
  --nav-height: 64px;
  --radius: 14px;
  --radius-lg: 22px;
}

/* ─── Reset ─── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 17px; }

body {
  font-family: var(--font-body);
  font-weight: 400;
  color: var(--text-primary);
  background: var(--bg-primary);
  line-height: 1.75;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* ─── Atmospheric layer ─── */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background:
    radial-gradient(ellipse 100% 45% at 50% -8%, rgba(56, 189, 248, 0.05) 0%, transparent 50%),
    radial-gradient(ellipse 60% 50% at 85% 10%, rgba(0, 212, 170, 0.03) 0%, transparent 50%),
    linear-gradient(rgba(56, 189, 248, 0.015) 1px, transparent 1px),
    linear-gradient(90deg, rgba(56, 189, 248, 0.015) 1px, transparent 1px);
  background-size: 100% 100%, 100% 100%, 90px 90px, 90px 90px;
  pointer-events: none;
  z-index: 0;
}

/* Subtle grain */
body::after {
  content: '';
  position: fixed;
  inset: 0;
  opacity: 0.25;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 0;
}

::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--bg-primary); }
::-webkit-scrollbar-thumb { background: rgba(56, 189, 248, 0.2); border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: rgba(56, 189, 248, 0.35); }
::selection { background: var(--accent); color: var(--bg-primary); }

/* ─── Navigation ─── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--nav-height);
  background: rgba(15, 22, 40, 0.75);
  backdrop-filter: blur(28px) saturate(180%);
  -webkit-backdrop-filter: blur(28px) saturate(180%);
  border-bottom: 1px solid var(--border);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.4s;
}

.nav.scrolled {
  background: rgba(15, 22, 40, 0.95);
  border-bottom-color: var(--border-glacier);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.25);
}

.nav-inner {
  max-width: var(--max-width);
  width: 100%;
  padding: 0 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.2rem;
  color: var(--text-primary);
  text-decoration: none;
  letter-spacing: -0.02em;
  display: flex;
  align-items: center;
  gap: 0.6rem;
  transition: opacity 0.2s;
}

.nav-logo:hover { opacity: 0.85; }

.nav-logo .logo-mark {
  width: 30px; height: 30px;
  background: linear-gradient(135deg, var(--accent), var(--glacier));
  border-radius: 7px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  font-weight: 800;
  color: var(--bg-primary);
}

.nav-links {
  display: flex;
  gap: 2rem;
  list-style: none;
}

.nav-links a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.92rem;
  font-weight: 500;
  transition: color 0.2s;
  position: relative;
}

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

.nav-links a.active::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--accent), var(--glacier));
  border-radius: 1px;
}

.nav-cta {
  background: linear-gradient(135deg, var(--accent), var(--glacier));
  color: var(--bg-primary);
  padding: 0.5rem 1.25rem;
  border-radius: 8px;
  font-weight: 700;
  font-size: 0.85rem;
  text-decoration: none;
  transition: all 0.3s;
}

.nav-cta:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 24px var(--glacier-glow);
}

.nav-mobile-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--text-primary);
  font-size: 1.5rem;
  cursor: pointer;
}

/* ─── Dropdown — FIXED hover gap ─── */
.nav-dropdown { position: relative; }
.nav-dropdown > a { cursor: pointer; }

/* Invisible bridge to prevent hover gap */
.nav-dropdown::after {
  content: '';
  position: absolute;
  top: 100%;
  left: -1rem;
  right: -1rem;
  height: 1rem;
  background: transparent;
}

.nav-dropdown-menu {
  display: none;
  position: absolute;
  top: calc(100% + 0.5rem);
  left: 50%;
  transform: translateX(-50%);
  background: var(--bg-elevated);
  border: 1px solid var(--border-strong);
  border-radius: var(--radius);
  padding: 0.5rem 0;
  min-width: 220px;
  list-style: none;
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.4);
  z-index: 100;
}

.nav-dropdown:hover .nav-dropdown-menu { display: block; }

.nav-dropdown-menu li a {
  display: block;
  padding: 0.6rem 1.25rem;
  color: var(--text-secondary);
  text-decoration: none;
  font-size: 0.88rem;
  font-weight: 500;
  transition: all 0.15s;
  white-space: nowrap;
}

.nav-dropdown-menu li a:hover {
  color: var(--accent);
  background: var(--accent-dim);
}

/* ─── Layout ─── */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 2rem;
}

.page-content {
  padding-top: var(--nav-height);
  position: relative;
  z-index: 1;
}

section { padding: 5.5rem 0; }

/* ─── Typography — BIGGER ─── */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--text-primary);
}

h1 { font-size: clamp(3rem, 6vw, 4.75rem); font-weight: 800; }
h2 { font-size: clamp(2rem, 4vw, 3rem); }
h3 { font-size: 1.45rem; }
h4 { font-size: 1.1rem; font-family: var(--font-body); font-weight: 600; }

p { color: var(--text-secondary); max-width: 620px; font-size: 1.05rem; }

.label {
  font-family: var(--font-mono);
  font-size: 0.78rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--glacier);
  display: flex;
  align-items: center;
  gap: 0.6rem;
  margin-bottom: 1rem;
}

.label::before {
  content: '';
  width: 24px;
  height: 1.5px;
  background: linear-gradient(90deg, var(--glacier), transparent);
}

.accent {
  background: linear-gradient(135deg, var(--accent), var(--glacier));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

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

/* ─── Buttons ─── */
.btn-primary {
  background: linear-gradient(135deg, var(--accent), var(--accent-soft));
  color: var(--bg-primary);
  padding: 0.9rem 2.2rem;
  border-radius: 10px;
  font-weight: 700;
  font-size: 0.95rem;
  text-decoration: none;
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  border: none;
  cursor: pointer;
  font-family: var(--font-body);
  position: relative;
  overflow: hidden;
}

.btn-primary::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--glacier), var(--accent));
  opacity: 0;
  transition: opacity 0.35s;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px var(--accent-glow), 0 4px 16px var(--glacier-glow);
}

.btn-primary:hover::before { opacity: 1; }
.btn-primary span, .btn-primary { position: relative; z-index: 1; }

.btn-secondary {
  background: transparent;
  color: var(--text-primary);
  padding: 0.9rem 2.2rem;
  border-radius: 10px;
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  border: 1px solid var(--border-strong);
  transition: all 0.35s;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  cursor: pointer;
  font-family: var(--font-body);
}

.btn-secondary:hover {
  border-color: var(--glacier);
  color: var(--glacier);
  background: var(--glacier-dim);
  box-shadow: 0 0 20px var(--glacier-glow);
}

.btn-ghost {
  background: var(--accent-dim);
  border: 1px solid var(--border-accent);
  color: var(--accent);
  font-weight: 600;
  font-size: 0.92rem;
  cursor: pointer;
  font-family: var(--font-body);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.65rem 1.5rem;
  border-radius: 8px;
  transition: all 0.3s;
}

.btn-ghost:hover {
  background: rgba(0, 212, 170, 0.15);
  border-color: var(--accent);
  box-shadow: 0 0 20px var(--accent-glow);
}

/* ─── Hero ─── */
.hero {
  min-height: 92vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0; right: 0;
  height: 40%;
  background:
    linear-gradient(155deg, transparent 42%, rgba(26, 37, 68, 0.5) 42.1%, rgba(26, 37, 68, 0.5) 43%, transparent 43.1%),
    linear-gradient(160deg, transparent 30%, rgba(20, 29, 53, 0.7) 30.1%, rgba(20, 29, 53, 0.7) 32%, transparent 32.1%),
    linear-gradient(170deg, transparent 38%, rgba(26, 37, 68, 0.4) 38.1%, rgba(26, 37, 68, 0.4) 40%, transparent 40.1%),
    linear-gradient(200deg, transparent 35%, rgba(20, 29, 53, 0.6) 35.1%, rgba(20, 29, 53, 0.6) 37%, transparent 37.1%),
    linear-gradient(to top, var(--bg-primary) 0%, transparent 60%);
  pointer-events: none;
  z-index: 0;
}

.hero::after {
  content: '';
  position: absolute;
  top: 5%; left: 50%;
  transform: translateX(-50%);
  width: 120%; height: 70%;
  background:
    radial-gradient(ellipse 40% 30% at 30% 30%, rgba(0, 212, 170, 0.06) 0%, transparent 60%),
    radial-gradient(ellipse 35% 25% at 70% 25%, rgba(56, 189, 248, 0.06) 0%, transparent 50%),
    radial-gradient(ellipse 50% 20% at 50% 80%, rgba(224, 168, 124, 0.03) 0%, transparent 50%);
  pointer-events: none;
  z-index: 0;
  animation: aurora 12s ease-in-out infinite alternate;
}

@keyframes aurora {
  0% { opacity: 0.7; transform: translateX(-50%) scale(1); }
  50% { opacity: 1; transform: translateX(-48%) scale(1.05); }
  100% { opacity: 0.8; transform: translateX(-52%) scale(1.02); }
}

.hero-content { position: relative; z-index: 2; max-width: 680px; }
.hero h1 { margin-bottom: 1.5rem; }
.hero p { font-size: 1.15rem; margin-bottom: 2.5rem; line-height: 1.8; }

.hero-buttons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  align-items: center;
}

/* ─── Risk Banner ─── */
.risk-banner {
  background: linear-gradient(135deg, var(--danger-dim), rgba(255, 107, 122, 0.04));
  border: 1px solid rgba(255, 107, 122, 0.15);
  border-radius: var(--radius);
  padding: 0.9rem 1.3rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 2rem;
  max-width: 560px;
  backdrop-filter: blur(8px);
}

.risk-banner .risk-icon { font-size: 1.2rem; flex-shrink: 0; }
.risk-banner p { font-size: 0.92rem; color: var(--text-secondary); margin: 0; max-width: none; }
.risk-banner strong { color: var(--danger); }

/* ─── Trust Bar ─── */
.trust-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2.5rem;
  padding: 1.5rem 0;
  flex-wrap: wrap;
  border-bottom: 1px solid var(--border);
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--text-muted);
  font-size: 0.88rem;
  font-weight: 500;
}

.trust-item .trust-icon { font-size: 1.05rem; }

/* ─── Stats Bar ─── */
.stats-bar {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  padding: 3rem 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  margin: 3rem 0;
}

.stat { text-align: center; }

.stat-number {
  font-family: var(--font-display);
  font-size: 2.75rem;
  font-weight: 800;
  background: linear-gradient(135deg, var(--accent), var(--glacier));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: 0.5rem;
}

.stat-label { font-size: 0.88rem; color: var(--text-muted); font-weight: 500; }

/* ─── Free CTA Card ─── */
.free-cta-card {
  background: linear-gradient(135deg, var(--bg-card) 0%, var(--bg-elevated) 100%);
  border: 1px solid var(--border-accent);
  border-radius: var(--radius-lg);
  padding: 2.75rem;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 2rem;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.free-cta-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--accent), var(--glacier), transparent);
}

.free-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: linear-gradient(135deg, var(--accent), var(--glacier));
  color: var(--bg-primary);
  padding: 0.3rem 0.85rem;
  border-radius: 6px;
  font-size: 0.76rem;
  font-weight: 700;
  font-family: var(--font-mono);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 0.85rem;
}

.free-cta-card h3 { font-size: 1.65rem; margin-bottom: 0.5rem; }
.free-cta-card p { font-size: 1rem; }

/* ─── Cards ─── */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
  margin-top: 2.5rem;
}

.card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--accent), var(--glacier));
  opacity: 0;
  transition: opacity 0.4s;
}

.card:hover {
  border-color: var(--border-glacier);
  background: var(--bg-card-hover);
  transform: translateY(-4px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2), 0 0 40px var(--glacier-glow);
}

.card:hover::before { opacity: 1; }

.card-icon {
  width: 48px; height: 48px;
  background: linear-gradient(135deg, var(--accent-dim), var(--glacier-dim));
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  margin-bottom: 1.25rem;
  color: var(--glacier);
  font-family: var(--font-mono);
  font-weight: 600;
}

.card h3 { margin-bottom: 0.6rem; }
.card p { font-size: 0.95rem; line-height: 1.7; }

/* ─── Section Headers ─── */
.section-header { max-width: 620px; margin-bottom: 2.5rem; }
.section-header h2 { margin-bottom: 0.75rem; }
.section-header.centered { text-align: center; margin-left: auto; margin-right: auto; }
.section-header.centered p { margin-left: auto; margin-right: auto; }
.section-header.centered .label { justify-content: center; }

/* ─── Feature Row ─── */
.feature-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  padding: 3rem 0;
}

.feature-row.reverse { direction: rtl; }
.feature-row.reverse > * { direction: ltr; }

.feature-visual {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem;
  font-family: var(--font-mono);
  font-size: 0.82rem;
  color: var(--accent);
  line-height: 1.9;
  position: relative;
  overflow: hidden;
}

.feature-visual::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 36px;
  background: rgba(56, 189, 248, 0.03);
  border-bottom: 1px solid var(--border);
}

.feature-visual .dots {
  position: absolute;
  top: 12px; left: 16px;
  display: flex;
  gap: 6px;
}

.feature-visual .dots span { width: 10px; height: 10px; border-radius: 50%; }
.feature-visual .dots span:first-child { background: #ff5f57; }
.feature-visual .dots span:nth-child(2) { background: #ffbd2e; }
.feature-visual .dots span:nth-child(3) { background: #28c840; }

.feature-visual code {
  display: block;
  margin-top: 1.5rem;
  white-space: pre;
  overflow-x: auto;
}

.feature-text h3 { font-size: 1.55rem; margin-bottom: 0.75rem; }
.feature-text p { margin-bottom: 1.25rem; }

.feature-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
}

.feature-list li {
  font-size: 0.95rem;
  color: var(--text-secondary);
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}

.feature-list li::before {
  content: '\2713';
  color: var(--accent);
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 3px;
}

/* ─── Process Timeline ─── */
.process-timeline {
  display: flex;
  align-items: flex-start;
  margin-top: 3rem;
}

.process-step {
  flex: 1;
  text-align: center;
  padding: 0 0.75rem;
  position: relative;
}

.process-step::after {
  content: '';
  position: absolute;
  top: 18px; right: 0;
  width: 50%; height: 1px;
  background: var(--border-strong);
}

.process-step::before {
  content: '';
  position: absolute;
  top: 18px; left: 0;
  width: 50%; height: 1px;
  background: var(--border-strong);
}

.process-step:first-child::before { display: none; }
.process-step:last-child::after { display: none; }

.process-dot {
  width: 36px; height: 36px;
  background: var(--bg-card);
  border: 2px solid var(--glacier);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 0.85rem;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--glacier);
  position: relative;
  z-index: 2;
}

.process-step h4 { font-size: 0.95rem; margin-bottom: 0.3rem; }
.process-step p { font-size: 0.85rem; color: var(--text-muted); max-width: none; }

.process-step .process-tag {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  color: var(--accent);
  margin-top: 0.4rem;
}

/* ─── Pricing Cards ─── */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  margin-top: 3rem;
  align-items: start;
}

.pricing-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2.5rem 2rem;
  position: relative;
  transition: all 0.4s;
}

.pricing-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.25);
}

.pricing-card.featured {
  border-color: var(--glacier);
  background: linear-gradient(180deg, rgba(56, 189, 248, 0.06) 0%, var(--bg-card) 35%);
  transform: scale(1.04);
  z-index: 2;
  box-shadow: 0 0 60px var(--glacier-glow), 0 16px 48px rgba(0, 0, 0, 0.25);
}

.pricing-card.featured:hover { transform: scale(1.04) translateY(-5px); }

.pricing-badge {
  position: absolute;
  top: -12px; left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, var(--accent), var(--glacier));
  color: var(--bg-primary);
  padding: 0.3rem 1rem;
  border-radius: 20px;
  font-size: 0.72rem;
  font-weight: 700;
  font-family: var(--font-mono);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  white-space: nowrap;
}

.pricing-name { font-family: var(--font-display); font-weight: 700; font-size: 1.2rem; margin-bottom: 0.3rem; }
.pricing-tagline { font-size: 0.88rem; color: var(--text-muted); margin-bottom: 1.5rem; }

.pricing-price {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 2.2rem;
  color: var(--text-primary);
  line-height: 1;
  margin-bottom: 0.25rem;
}

.pricing-price .currency { font-size: 1rem; font-weight: 600; color: var(--text-secondary); vertical-align: top; margin-right: 2px; }
.pricing-price .period { font-size: 0.85rem; font-weight: 500; color: var(--text-muted); }
.pricing-equiv { font-size: 0.8rem; color: var(--text-muted); margin-bottom: 1.5rem; }
.pricing-equiv .savings { color: var(--accent); font-weight: 600; }
.pricing-divider { height: 1px; background: var(--border); margin: 1.5rem 0; }

.pricing-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  margin-bottom: 2rem;
}

.pricing-features li {
  font-size: 0.92rem;
  color: var(--text-secondary);
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
}

.pricing-features li::before {
  content: '\2713';
  color: var(--accent);
  font-weight: 700;
  flex-shrink: 0;
  font-size: 0.85rem;
  margin-top: 3px;
}

.pricing-features li.highlight { color: var(--text-primary); font-weight: 500; }
.pricing-card .btn-primary, .pricing-card .btn-secondary { width: 100%; justify-content: center; }

/* ─── Service Detail ─── */
.service-detail {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  margin-bottom: 1.25rem;
  position: relative;
  transition: all 0.3s;
}

.service-detail:hover { border-color: var(--border-glacier); box-shadow: 0 0 40px rgba(56, 189, 248, 0.05); }

.service-detail .service-number {
  font-family: var(--font-display);
  font-size: 3.5rem;
  font-weight: 800;
  background: linear-gradient(135deg, rgba(0, 212, 170, 0.08), rgba(56, 189, 248, 0.06));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  position: absolute;
  top: 1.5rem; right: 2rem;
  line-height: 1;
}

.service-detail h3 { font-size: 1.45rem; margin-bottom: 0.6rem; }

.service-includes { display: grid; grid-template-columns: 1fr 1fr; gap: 0.6rem; }

.service-includes li {
  font-size: 0.92rem;
  color: var(--text-secondary);
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  list-style: none;
}

.service-includes li::before { content: '\25B8'; color: var(--glacier); flex-shrink: 0; }

/* ─── Approach / Values ─── */
.approach-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.25rem; margin-top: 2.5rem; }

.approach-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem;
  text-align: center;
  transition: all 0.3s;
}

.approach-card:hover { border-color: var(--border-glacier); }

.approach-card .approach-number {
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 800;
  background: linear-gradient(135deg, var(--accent), var(--glacier));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 0.75rem;
}

.approach-card h3 { margin-bottom: 0.5rem; }
.approach-card p { font-size: 0.95rem; color: var(--text-secondary); }

.values-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.25rem; margin-top: 1.5rem; }

.value-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.5rem;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: border-color 0.3s;
}

.value-item:hover { border-color: var(--border-glacier); }

.value-item .value-marker {
  width: 3px;
  height: 100%;
  min-height: 44px;
  background: linear-gradient(180deg, var(--accent), var(--glacier));
  border-radius: 2px;
  flex-shrink: 0;
}

.value-item h4 { margin-bottom: 0.25rem; }
.value-item p { font-size: 0.92rem; }

/* ─── Track Record ─── */
.milestone-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.25rem;
  margin-top: 2.5rem;
}

.milestone-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem;
  transition: all 0.3s;
}

.milestone-card:hover { border-color: var(--border-glacier); transform: translateY(-3px); box-shadow: 0 16px 48px rgba(0, 0, 0, 0.2); }

.milestone-card .milestone-severity {
  display: inline-block;
  padding: 0.2rem 0.6rem;
  border-radius: 6px;
  font-size: 0.72rem;
  font-weight: 700;
  font-family: var(--font-mono);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 0.85rem;
}

.milestone-card .milestone-severity.critical { background: var(--danger-dim); color: var(--danger); }
.milestone-card .milestone-severity.high { background: rgba(255, 165, 2, 0.1); color: #ffa502; }
.milestone-card .milestone-severity.platform { background: var(--glacier-dim); color: var(--glacier); }
.milestone-card .milestone-severity.engagement { background: var(--accent-dim); color: var(--accent); }

.milestone-card h3 { font-size: 1.2rem; margin-bottom: 0.5rem; }
.milestone-card p { font-size: 0.92rem; }

.milestone-card .milestone-meta {
  margin-top: 1rem;
  padding-top: 0.75rem;
  border-top: 1px solid var(--border);
  display: flex;
  gap: 1.25rem;
  flex-wrap: wrap;
}

.milestone-card .milestone-meta span {
  font-size: 0.78rem;
  color: var(--text-muted);
  font-family: var(--font-mono);
}

/* ─── Contact ─── */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 3.5rem; margin-top: 2rem; }

.contact-info-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.25rem;
  margin-bottom: 0.85rem;
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  transition: border-color 0.3s;
}

.contact-info-card:hover { border-color: var(--border-glacier); }

.contact-info-card .info-icon {
  width: 40px; height: 40px;
  background: linear-gradient(135deg, var(--accent-dim), var(--glacier-dim));
  border-radius: 9px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--glacier);
  font-size: 1rem;
  flex-shrink: 0;
}

.contact-info-card h4 { margin-bottom: 0.2rem; }
.contact-info-card p { font-size: 0.88rem; color: var(--text-muted); }

/* ─── Forms ─── */
.form-group { margin-bottom: 1.1rem; }
.form-group label { display: block; font-size: 0.88rem; font-weight: 500; color: var(--text-secondary); margin-bottom: 0.4rem; }

.form-group input, .form-group textarea, .form-group select {
  width: 100%;
  background: var(--bg-primary);
  border: 1px solid var(--border-strong);
  border-radius: 9px;
  padding: 0.85rem 1rem;
  color: var(--text-primary);
  font-family: var(--font-body);
  font-size: 0.95rem;
  transition: border-color 0.2s, box-shadow 0.2s;
  outline: none;
}

.form-group input:focus, .form-group textarea:focus, .form-group select:focus {
  border-color: var(--glacier);
  box-shadow: 0 0 0 3px var(--glacier-dim);
}

.form-group textarea { min-height: 120px; resize: vertical; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }

/* ─── CTA Section ─── */
.cta-section {
  text-align: center;
  padding: 6rem 0;
  position: relative;
}

.cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 50% 35% at 40% 50%, rgba(0, 212, 170, 0.05) 0%, transparent 60%),
    radial-gradient(ellipse 40% 30% at 60% 50%, rgba(56, 189, 248, 0.04) 0%, transparent 50%);
  pointer-events: none;
}

.cta-section h2 { margin-bottom: 0.75rem; }
.cta-section p { margin: 0 auto 2rem; text-align: center; }

/* ─── Section Alpine ─── */
.section-alpine {
  background: linear-gradient(180deg, var(--bg-primary) 0%, var(--bg-secondary) 15%, var(--bg-secondary) 85%, var(--bg-primary) 100%);
  position: relative;
}

.section-alpine::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent 10%, var(--border-glacier) 50%, transparent 90%);
}

.section-alpine::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent 10%, var(--border-glacier) 50%, transparent 90%);
}

/* ─── Footer ─── */
.footer {
  border-top: 1px solid var(--border);
  padding: 2.5rem 0;
  margin-top: 2rem;
}

.footer-inner { display: flex; justify-content: space-between; align-items: center; }
.footer-copy { font-size: 0.82rem; color: var(--text-muted); }
.footer-links { display: flex; gap: 2rem; list-style: none; }
.footer-links a { color: var(--text-muted); text-decoration: none; font-size: 0.82rem; transition: color 0.2s; }
.footer-links a:hover { color: var(--glacier); }

/* ─── Fear/Reminder Sticky Notes ─── */
.sticky-note {
  background: linear-gradient(135deg, rgba(255, 165, 2, 0.08), rgba(255, 165, 2, 0.03));
  border-left: 3px solid #ffa502;
  border-radius: 0 var(--radius) var(--radius) 0;
  padding: 1rem 1.25rem;
  margin: 2rem 0;
  max-width: 520px;
  position: relative;
}

.sticky-note p {
  font-size: 0.92rem;
  color: var(--text-secondary);
  margin: 0;
  max-width: none;
  font-style: italic;
  line-height: 1.6;
}

.sticky-note strong { color: #ffa502; font-style: normal; }

.sticky-note .sticky-icon {
  position: absolute;
  top: -10px;
  left: -6px;
  width: 22px;
  height: 22px;
  background: #ffa502;
  color: var(--bg-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  font-weight: 800;
  line-height: 1;
}

.sticky-note.danger .sticky-icon {
  background: var(--danger);
}

.sticky-note.centered {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.sticky-note.danger {
  background: linear-gradient(135deg, rgba(255, 107, 122, 0.08), rgba(255, 107, 122, 0.03));
  border-left-color: var(--danger);
}

.sticky-note.danger strong { color: var(--danger); }

/* ─── Success Popup / Modal ─── */
.popup-overlay {
  position: fixed;
  inset: 0;
  background: rgba(15, 22, 40, 0.85);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s;
}

.popup-overlay.active {
  opacity: 1;
  pointer-events: auto;
}

.popup-box {
  background: var(--bg-elevated);
  border: 1px solid var(--border-accent);
  border-radius: var(--radius-lg);
  padding: 3rem;
  max-width: 440px;
  width: 90%;
  text-align: center;
  transform: scale(0.9) translateY(20px);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
}

.popup-overlay.active .popup-box {
  transform: scale(1) translateY(0);
}

.popup-box .popup-icon {
  width: 64px;
  height: 64px;
  background: var(--accent-dim);
  border: 2px solid var(--accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  margin: 0 auto 1.25rem;
  color: var(--accent);
}

.popup-box h3 {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
}

.popup-box p {
  font-size: 1rem;
  margin: 0 auto 1.5rem;
  text-align: center;
  max-width: none;
}

.popup-close {
  background: linear-gradient(135deg, var(--accent), var(--accent-soft));
  color: var(--bg-primary);
  border: none;
  padding: 0.75rem 2rem;
  border-radius: 10px;
  font-weight: 700;
  font-size: 0.95rem;
  cursor: pointer;
  font-family: var(--font-body);
  transition: all 0.3s;
}

.popup-close:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 24px var(--accent-glow);
}

/* ─── World Map ─── */
.world-map-container {
  position: relative;
  max-width: 800px;
  margin: 2.5rem auto 0;
  text-align: center;
}

.world-map-container svg {
  width: 100%;
  height: auto;
  opacity: 0.35;
}

.world-map-container .map-dots {
  position: absolute;
  inset: 0;
}

.map-dot {
  position: absolute;
  width: 8px;
  height: 8px;
  background: var(--accent);
  border-radius: 50%;
  box-shadow: 0 0 12px var(--accent-glow), 0 0 4px var(--accent);
}

.map-dot::after {
  content: '';
  position: absolute;
  inset: -4px;
  border: 1px solid var(--accent);
  border-radius: 50%;
  opacity: 0.4;
  animation: map-pulse 2.5s ease-out infinite;
}

@keyframes map-pulse {
  0% { transform: scale(1); opacity: 0.4; }
  100% { transform: scale(2.5); opacity: 0; }
}

.map-dot .map-label {
  position: absolute;
  top: -22px;
  left: 50%;
  transform: translateX(-50%);
  font-family: var(--font-mono);
  font-size: 0.65rem;
  color: var(--text-muted);
  white-space: nowrap;
  font-weight: 500;
}

/* ─── Use-Case Cards ─── */
.usecase-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.25rem;
  margin-top: 2.5rem;
}

.usecase-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem;
  transition: all 0.35s;
}

.usecase-card:hover {
  border-color: var(--border-glacier);
  transform: translateY(-3px);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.2);
}

.usecase-card .usecase-scenario {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--amber);
  margin-bottom: 0.75rem;
}

.usecase-card h3 { font-size: 1.2rem; margin-bottom: 0.5rem; }

.usecase-card p { font-size: 0.92rem; }

.usecase-card .usecase-result {
  margin-top: 1rem;
  padding-top: 0.75rem;
  border-top: 1px solid var(--border);
  font-size: 0.85rem;
  color: var(--accent);
  font-weight: 600;
  white-space: nowrap;
}

/* ─── Animations ─── */
.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1), transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.fade-in.visible { opacity: 1; transform: translateY(0); }
.fade-in-delay-1 { transition-delay: 0.1s; }
.fade-in-delay-2 { transition-delay: 0.2s; }
.fade-in-delay-3 { transition-delay: 0.3s; }
.fade-in-delay-4 { transition-delay: 0.4s; }
.fade-in-delay-5 { transition-delay: 0.5s; }

/* ─── Responsive ─── */
@media (max-width: 768px) {
  html { font-size: 16px; }
  .nav-links, .nav-cta { display: none; }
  .nav-mobile-toggle { display: block; }

  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: var(--nav-height);
    left: 0; right: 0;
    background: var(--bg-secondary);
    padding: 1.5rem 2rem;
    border-bottom: 1px solid var(--border);
    gap: 1rem;
  }

  .nav-dropdown-menu {
    position: static;
    transform: none;
    margin-top: 0.5rem;
    background: transparent;
    border: none;
    box-shadow: none;
    padding: 0 0 0 1rem;
    min-width: auto;
    display: block;
  }

  .stats-bar { grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }
  .feature-row, .feature-row.reverse { grid-template-columns: 1fr; gap: 2rem; direction: ltr; }
  .contact-grid, .service-includes, .values-grid { grid-template-columns: 1fr; }
  .cards-grid { grid-template-columns: 1fr; }
  .approach-grid, .pricing-grid, .milestone-grid { grid-template-columns: 1fr; }
  .pricing-card.featured { transform: none; }
  .pricing-card.featured:hover { transform: translateY(-5px); }
  .free-cta-card { grid-template-columns: 1fr; }
  .process-timeline { flex-direction: column; gap: 1rem; }
  .process-step::before, .process-step::after { display: none; }
  .form-row { grid-template-columns: 1fr; }
  .hero { min-height: 80vh; padding-top: 2rem; }
  .hero::before { display: none; }
  section { padding: 3.5rem 0; }
  .footer-inner { flex-direction: column; gap: 1rem; text-align: center; }
  .trust-bar { gap: 1rem; }
  .usecase-grid { grid-template-columns: 1fr; }
  .world-map-container { display: none; }
  .map-dot .map-label { display: none; }
}
