/* ============================================================
   THREATLEY.CSS — Shared Stylesheet
   Threatley | KvK 99817896 | info@threatley.nl
   ============================================================ */

/* ── Google Fonts ─────────────────────────────────────────── */
@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=DM+Mono:wght@300;400;500&family=DM+Sans:wght@300;400;500;600;700&display=swap');

/* ── CSS Variables ────────────────────────────────────────── */
:root {
  --ink:    #03080d;
  --void:   #060e16;
  --panel:  #091520;
  --edge:   #0d2035;
  --blue:   #0ea5e9;
  --cyan:   #22d3ee;
  --red:    #f43f5e;
  --amber:  #f59e0b;
  --white:  #eef6ff;
  --muted:  #3d6080;
  --muted2: #1e3a52;

  --font-display: 'Bebas Neue', sans-serif;
  --font-mono:    'DM Mono', monospace;
  --font-body:    'DM Sans', sans-serif;

  --radius: 4px;
  --transition: 0.25s ease;
  --glow: 0 0 24px rgba(14, 165, 233, 0.35);
  --glow-sm: 0 0 12px rgba(14, 165, 233, 0.2);
}

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

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

body {
  background: var(--void);
  color: var(--white);
  font-family: var(--font-body);
  line-height: 1.7;
  overflow-x: hidden;
  cursor: none;
}

img, svg { display: block; max-width: 100%; }
a { color: var(--blue); text-decoration: none; }
a:hover { color: var(--cyan); }
ul { list-style: none; }
button { cursor: none; }

/* ── Scrollbar ────────────────────────────────────────────── */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--void); }
::-webkit-scrollbar-thumb { background: var(--muted2); border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: var(--blue); }

/* ── Custom Cursor ────────────────────────────────────────── */
#cursor-dot,
#cursor-ring {
  position: fixed;
  border-radius: 50%;
  pointer-events: none;
  z-index: 99999;
  transition: opacity var(--transition);
}

#cursor-dot {
  width: 6px;
  height: 6px;
  background: var(--blue);
  transform: translate(-50%, -50%);
  box-shadow: 0 0 8px var(--blue);
}

#cursor-ring {
  width: 28px;
  height: 28px;
  border: 1.5px solid rgba(14, 165, 233, 0.6);
  transform: translate(-50%, -50%);
  transition: width 0.2s, height 0.2s, border-color 0.2s, opacity var(--transition);
}

body.cursor-hover #cursor-ring {
  width: 44px;
  height: 44px;
  border-color: var(--cyan);
}

/* ── Canvas Particle Background ───────────────────────────── */
#particle-canvas {
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  pointer-events: none;
  z-index: 0;
  opacity: 0.45;
}

/* ── Navigation ───────────────────────────────────────────── */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: 72px;
  display: flex;
  align-items: center;
  padding: 0 40px;
  background: transparent;
  transition: background var(--transition), box-shadow var(--transition);
}

nav.scrolled {
  background: rgba(6, 14, 22, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 1px 0 var(--edge);
}

.nav-inner {
  display: flex;
  align-items: center;
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  gap: 0;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  flex-shrink: 0;
}

.nav-logo img {
  width: 36px;
  height: 36px;
  border-radius: 4px;
}

.nav-logo-fallback {
  width: 36px;
  height: 36px;
  border: 1.5px solid var(--blue);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 22px;
  color: var(--blue);
  box-shadow: var(--glow-sm);
}

.nav-logo-text {
  font-family: var(--font-display);
  font-size: 22px;
  letter-spacing: 0.08em;
  color: var(--white);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
  margin-left: auto;
}

.nav-links a,
.nav-links .nav-dropdown-trigger {
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 500;
  color: rgba(238, 246, 255, 0.75);
  padding: 8px 14px;
  border-radius: var(--radius);
  transition: color var(--transition), background var(--transition);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 6px;
  white-space: nowrap;
  background: none;
  border: none;
  letter-spacing: 0.02em;
}

.nav-links a:hover,
.nav-links .nav-dropdown-trigger:hover,
.nav-links a.active,
.nav-links .nav-dropdown-trigger.active {
  color: var(--white);
  background: rgba(14, 165, 233, 0.1);
}

/* Dropdown */
.has-dropdown {
  position: relative;
}

.chevron {
  width: 14px;
  height: 14px;
  transition: transform 0.2s;
  stroke: currentColor;
  fill: none;
}

.has-dropdown:hover .chevron {
  transform: rotate(180deg);
}

.dropdown {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  min-width: 220px;
  background: var(--panel);
  border: 1px solid var(--edge);
  border-radius: 6px;
  padding: 8px 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: opacity 0.2s, transform 0.2s, visibility 0.2s;
  box-shadow: 0 12px 40px rgba(0,0,0,0.5);
  z-index: 100;
}

.has-dropdown:hover .dropdown,
.has-dropdown:focus-within .dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown a {
  display: block;
  padding: 10px 20px;
  font-size: 0.85rem;
  color: rgba(238, 246, 255, 0.75);
  transition: color var(--transition), background var(--transition);
  border-radius: 0;
}

.dropdown a:hover {
  color: var(--blue);
  background: rgba(14, 165, 233, 0.08);
}

.nav-cta {
  margin-left: 16px;
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  padding: 8px;
  margin-left: auto;
  z-index: 1100;
  cursor: pointer;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  transition: transform 0.3s, opacity 0.3s;
  border-radius: 2px;
}

.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile Fullscreen Menu */
.mobile-menu {
  position: fixed;
  inset: 0;
  background: rgba(6, 14, 22, 0.98);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  z-index: 1050;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s, visibility 0.3s;
}

.mobile-menu.open {
  opacity: 1;
  visibility: visible;
}

.mobile-menu a {
  font-family: var(--font-display);
  font-size: 2rem;
  letter-spacing: 0.06em;
  color: var(--white);
  padding: 8px 24px;
  transition: color var(--transition);
}

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

.mobile-menu-sub {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  margin-top: -4px;
  margin-bottom: 8px;
}

.mobile-menu-sub a {
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--muted);
  padding: 4px 24px;
}

.mobile-menu-sub a:hover { color: var(--blue); }

/* ── Buttons ──────────────────────────────────────────────── */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--blue);
  color: var(--void);
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 14px 28px;
  border: none;
  clip-path: polygon(8px 0%, 100% 0%, calc(100% - 8px) 100%, 0% 100%);
  transition: background var(--transition), box-shadow var(--transition), color var(--transition);
  text-decoration: none;
  cursor: pointer;
  white-space: nowrap;
}

.btn-primary:hover {
  background: var(--cyan);
  color: var(--void);
  box-shadow: var(--glow);
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: var(--white);
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 13px 27px;
  border: 1.5px solid var(--muted);
  border-radius: var(--radius);
  transition: border-color var(--transition), color var(--transition), background var(--transition);
  text-decoration: none;
  cursor: pointer;
  white-space: nowrap;
}

.btn-outline:hover {
  border-color: var(--blue);
  color: var(--blue);
  background: rgba(14, 165, 233, 0.06);
}

/* ── Badges & Tags ────────────────────────────────────────── */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  background: rgba(14, 165, 233, 0.12);
  border: 1px solid rgba(14, 165, 233, 0.3);
  color: var(--blue);
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.08em;
  padding: 4px 10px;
  border-radius: 2px;
  text-transform: uppercase;
}

.tag {
  display: inline-block;
  background: rgba(13, 32, 53, 0.8);
  border: 1px solid var(--muted2);
  color: var(--muted);
  font-family: var(--font-mono);
  font-size: 0.7rem;
  padding: 3px 8px;
  border-radius: 2px;
  letter-spacing: 0.06em;
}

/* ── Breadcrumb ───────────────────────────────────────────── */
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-mono);
  font-size: 0.75rem;
  color: var(--muted);
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.breadcrumb span { color: var(--muted2); }
.breadcrumb a { color: var(--muted); transition: color var(--transition); }
.breadcrumb a:hover { color: var(--blue); }

/* ── Label / Section Title ────────────────────────────────── */
.label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-mono);
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 16px;
}

.label::before {
  content: '';
  display: block;
  width: 24px;
  height: 1.5px;
  background: var(--blue);
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 4vw, 3.5rem);
  letter-spacing: 0.04em;
  color: var(--white);
  line-height: 1.05;
  margin-bottom: 16px;
}

.section-sub {
  font-size: 1.05rem;
  color: rgba(238, 246, 255, 0.6);
  max-width: 560px;
  line-height: 1.7;
  margin-bottom: 40px;
}

/* ── Section Wrappers ─────────────────────────────────────── */
.section-wrap {
  position: relative;
  z-index: 2;
  padding: 100px 40px;
  max-width: 1280px;
  margin: 0 auto;
}

section.dark {
  background: var(--void);
}

section.panel {
  background: var(--panel);
  border-top: 1px solid var(--edge);
  border-bottom: 1px solid var(--edge);
}

.full-section {
  position: relative;
  z-index: 1;
}

/* ── Hero (Homepage) ──────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  z-index: 1;
}

.hero-inner {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 120px 40px 80px;
  display: grid;
  grid-template-columns: 1fr 480px;
  gap: 60px;
  align-items: center;
}

.hero-eyebrow {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.hero-eyebrow::before {
  content: '';
  display: inline-block;
  width: 32px;
  height: 1px;
  background: var(--blue);
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(3.5rem, 7vw, 7rem);
  letter-spacing: 0.06em;
  line-height: 0.95;
  margin-bottom: 28px;
  color: var(--white);
}

.t-blue  { color: var(--blue); }
.t-solid { color: var(--white); }
.t-dim   { color: var(--muted); }

.hero-desc {
  font-size: 1.05rem;
  color: rgba(238, 246, 255, 0.65);
  max-width: 480px;
  line-height: 1.75;
  margin-bottom: 36px;
}

.hero-btns {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.hero-metrics {
  display: flex;
  gap: 32px;
  margin-top: 56px;
  padding-top: 32px;
  border-top: 1px solid var(--edge);
}

.hero-metric {
  display: flex;
  flex-direction: column;
}

.hero-metric-num {
  font-family: var(--font-display);
  font-size: 2rem;
  color: var(--blue);
  letter-spacing: 0.04em;
  line-height: 1;
}

.hero-metric-label {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-top: 4px;
}

/* Hero Logo Rings */
.hero-visual {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.logo-rings {
  position: relative;
  width: 380px;
  height: 380px;
}

.ring {
  position: absolute;
  top: 50%; left: 50%;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  border: 1px solid rgba(14, 165, 233, 0.15);
}

.ring-1 { width: 200px; height: 200px; border-color: rgba(14, 165, 233, 0.25); animation: rotate 18s linear infinite; }
.ring-2 { width: 290px; height: 290px; animation: rotate 28s linear infinite reverse; }
.ring-3 { width: 380px; height: 380px; animation: rotate 40s linear infinite; border-style: dashed; }

@keyframes rotate {
  from { transform: translate(-50%, -50%) rotate(0deg); }
  to   { transform: translate(-50%, -50%) rotate(360deg); }
}

.ring-dot {
  position: absolute;
  top: -4px; left: 50%;
  transform: translateX(-50%);
  width: 8px; height: 8px;
  background: var(--blue);
  border-radius: 50%;
  box-shadow: var(--glow-sm);
}

.data-tag {
  position: absolute;
  font-family: var(--font-mono);
  font-size: 0.65rem;
  color: var(--cyan);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  background: rgba(9, 21, 32, 0.9);
  border: 1px solid rgba(34, 211, 238, 0.25);
  padding: 4px 8px;
  border-radius: 2px;
  white-space: nowrap;
}

.logo-center {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 96px;
  height: 96px;
  background: var(--panel);
  border: 2px solid var(--blue);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--glow);
  overflow: hidden;
}

.logo-center img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.logo-center-fallback {
  font-family: var(--font-display);
  font-size: 3rem;
  color: var(--blue);
}

/* ── Page Hero (Subpages) ─────────────────────────────────── */
.page-hero {
  position: relative;
  min-height: 400px;
  display: flex;
  align-items: center;
  padding-top: 120px;
  padding-bottom: 60px;
  overflow: hidden;
  z-index: 1;
  border-bottom: 1px solid var(--edge);
}

.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 60% at 20% 50%, rgba(14, 165, 233, 0.08) 0%, transparent 70%);
  pointer-events: none;
}

.page-hero-inner {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 40px;
}

.page-hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 5vw, 5rem);
  letter-spacing: 0.05em;
  line-height: 1;
  color: var(--white);
  margin-bottom: 16px;
  margin-top: 8px;
}

.page-hero-sub {
  font-size: 1.1rem;
  color: rgba(238, 246, 255, 0.6);
  max-width: 580px;
  line-height: 1.7;
  margin-bottom: 28px;
}

.page-hero-btns {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 8px;
}

/* ── Ticker Bar ───────────────────────────────────────────── */
.ticker-bar {
  position: relative;
  z-index: 2;
  background: var(--edge);
  border-top: 1px solid rgba(14, 165, 233, 0.2);
  border-bottom: 1px solid rgba(14, 165, 233, 0.2);
  overflow: hidden;
  padding: 12px 0;
}

.ticker-track {
  display: flex;
  gap: 0;
  animation: ticker 30s linear infinite;
  width: max-content;
}

.ticker-track span {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  padding: 0 32px;
  white-space: nowrap;
}

.ticker-track span.accent {
  color: var(--blue);
}

@keyframes ticker {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ── Services Grid ────────────────────────────────────────── */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--edge);
  border: 1px solid var(--edge);
}

.service-card {
  background: var(--panel);
  padding: 36px 32px;
  transition: background var(--transition);
  position: relative;
  overflow: hidden;
  text-decoration: none;
  display: block;
  color: inherit;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 3px; height: 0;
  background: var(--blue);
  transition: height 0.3s;
}

.service-card:hover::before { height: 100%; }
.service-card:hover { background: rgba(9, 21, 32, 0.9); }

.service-num {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  color: var(--muted2);
  letter-spacing: 0.1em;
  margin-bottom: 16px;
}

.service-icon {
  width: 40px;
  height: 40px;
  margin-bottom: 20px;
  color: var(--blue);
}

.service-icon svg {
  width: 100%;
  height: 100%;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.5;
}

.service-card h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  letter-spacing: 0.04em;
  color: var(--white);
  margin-bottom: 12px;
}

.service-card p {
  font-size: 0.875rem;
  color: rgba(238, 246, 255, 0.55);
  line-height: 1.7;
  margin-bottom: 20px;
}

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

/* ── About / Split Layout ─────────────────────────────────── */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.split-logo {
  display: flex;
  align-items: center;
  justify-content: center;
}

.split-logo-box {
  width: 220px;
  height: 220px;
  background: var(--panel);
  border: 2px solid var(--blue);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--glow);
  overflow: hidden;
}

.split-logo-box img {
  width: 80%;
  height: 80%;
  object-fit: contain;
}

.split-logo-fallback {
  font-family: var(--font-display);
  font-size: 5rem;
  color: var(--blue);
}

/* ── Core Values Grid ─────────────────────────────────────── */
.values-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 48px;
}

.value-card {
  background: var(--panel);
  border: 1px solid var(--edge);
  border-top: 3px solid var(--blue);
  padding: 28px 24px;
  border-radius: var(--radius);
}

.value-card h4 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  letter-spacing: 0.04em;
  color: var(--white);
  margin-bottom: 10px;
}

.value-card p {
  font-size: 0.85rem;
  color: var(--muted);
  line-height: 1.6;
}

/* ── Process Steps ────────────────────────────────────────── */
.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
  background: var(--edge);
  margin-top: 48px;
}

.process-step {
  background: var(--panel);
  padding: 36px 28px;
  position: relative;
}

.process-step::after {
  content: '';
  position: absolute;
  top: 36px;
  right: -1px;
  width: 2px;
  height: 40px;
  background: var(--edge);
  display: none;
}

.step-num {
  font-family: var(--font-display);
  font-size: 3rem;
  color: var(--muted2);
  line-height: 1;
  margin-bottom: 16px;
}

.process-step h4 {
  font-family: var(--font-display);
  font-size: 1.4rem;
  letter-spacing: 0.04em;
  color: var(--white);
  margin-bottom: 12px;
}

.process-step p {
  font-size: 0.85rem;
  color: var(--muted);
  line-height: 1.6;
}

/* ── Pricing Cards ────────────────────────────────────────── */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 48px;
}

.pricing-grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  max-width: 720px;
  margin: 20px auto 0;
}

.price-card {
  background: var(--panel);
  border: 1px solid var(--edge);
  border-radius: 6px;
  padding: 36px 32px;
  position: relative;
  transition: border-color var(--transition), box-shadow var(--transition);
}

.price-card:hover {
  border-color: var(--muted2);
  box-shadow: 0 8px 32px rgba(0,0,0,0.4);
}

.price-card.featured {
  border-color: var(--blue);
  box-shadow: var(--glow);
}

.price-card.featured::before {
  content: 'AANBEVOLEN';
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--blue);
  color: var(--void);
  font-family: var(--font-mono);
  font-size: 0.65rem;
  letter-spacing: 0.12em;
  padding: 4px 12px;
  border-radius: 2px;
  font-weight: 700;
}

.price-label {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  color: var(--blue);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.price-card h3 {
  font-family: var(--font-display);
  font-size: 1.6rem;
  letter-spacing: 0.04em;
  color: var(--white);
  margin-bottom: 16px;
}

.price-num {
  font-family: var(--font-display);
  font-size: 2.8rem;
  color: var(--blue);
  letter-spacing: 0.02em;
  line-height: 1;
}

.price-num sup {
  font-size: 1.2rem;
  vertical-align: super;
}

.price-period {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  color: var(--muted);
  margin-top: 4px;
  margin-bottom: 24px;
}

.price-features {
  list-style: none;
  margin-bottom: 28px;
}

.price-features li {
  font-size: 0.875rem;
  color: rgba(238, 246, 255, 0.65);
  padding: 6px 0;
  border-bottom: 1px solid var(--edge);
  display: flex;
  align-items: center;
  gap: 8px;
}

.price-features li::before {
  content: '✓';
  color: var(--blue);
  font-weight: 700;
  flex-shrink: 0;
}

/* ── Warning Box ──────────────────────────────────────────── */
.warning-box {
  position: relative;
  z-index: 2;
  background: rgba(244, 63, 94, 0.06);
  border: 1px solid rgba(244, 63, 94, 0.3);
  border-left: 4px solid var(--red);
  border-radius: var(--radius);
  padding: 20px 24px;
  margin: 0 40px;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}

.warning-box.amber {
  background: rgba(245, 158, 11, 0.06);
  border-color: rgba(245, 158, 11, 0.3);
  border-left-color: var(--amber);
}

.warning-box p {
  font-size: 0.925rem;
  color: rgba(238, 246, 255, 0.8);
  line-height: 1.65;
  margin: 0;
}

.warning-box p strong {
  color: var(--red);
}

.warning-box.amber p strong {
  color: var(--amber);
}

.warning-icon {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.warning-icon svg {
  flex-shrink: 0;
  margin-top: 2px;
  color: var(--red);
}

.warning-box.amber .warning-icon svg { color: var(--amber); }

/* ── Audience Grid ────────────────────────────────────────── */
.audience-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-top: 40px;
}

.audience-card {
  background: var(--panel);
  border: 1px solid var(--edge);
  border-radius: 6px;
  padding: 28px 28px;
  display: flex;
  gap: 20px;
  align-items: flex-start;
}

.audience-icon {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  background: rgba(14, 165, 233, 0.1);
  border: 1px solid rgba(14, 165, 233, 0.25);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--blue);
}

.audience-icon svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.5;
}

.audience-card h4 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  letter-spacing: 0.04em;
  color: var(--white);
  margin-bottom: 6px;
}

.audience-card p {
  font-size: 0.85rem;
  color: var(--muted);
  line-height: 1.6;
}

/* ── Feature List ─────────────────────────────────────────── */
.feature-list {
  list-style: none;
  margin-top: 24px;
}

.feature-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 12px 0;
  border-bottom: 1px solid var(--edge);
  font-size: 0.9rem;
  color: rgba(238, 246, 255, 0.7);
  line-height: 1.6;
}

.feature-list li::before {
  content: '→';
  color: var(--blue);
  flex-shrink: 0;
  margin-top: 1px;
}

/* ── Stat Row ─────────────────────────────────────────────── */
.stat-row {
  display: flex;
  gap: 48px;
  align-items: flex-start;
  margin-top: 40px;
  flex-wrap: wrap;
}

.stat-item {}

.stat-num {
  font-family: var(--font-display);
  font-size: 3.5rem;
  color: var(--blue);
  letter-spacing: 0.02em;
  line-height: 1;
  margin-bottom: 4px;
}

.stat-label {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

/* ── Controls Table ───────────────────────────────────────── */
.controls-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 32px;
  font-size: 0.875rem;
}

.controls-table thead th {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  padding: 12px 20px;
  text-align: left;
  border-bottom: 1px solid var(--edge);
  background: rgba(9, 21, 32, 0.5);
}

.controls-table tbody tr {
  border-bottom: 1px solid var(--edge);
  transition: background var(--transition);
}

.controls-table tbody tr:hover {
  background: rgba(14, 165, 233, 0.04);
}

.controls-table td {
  padding: 16px 20px;
  color: rgba(238, 246, 255, 0.7);
  vertical-align: top;
}

.controls-table td:first-child {
  width: 44px;
  text-align: center;
}

.controls-table td:nth-child(2) {
  font-weight: 600;
  color: var(--white);
  white-space: nowrap;
  width: 220px;
}

.ctrl-icon {
  color: var(--blue);
  font-size: 1.1rem;
}

/* ── Threat Intel / CVE List ──────────────────────────────── */
.threat-grid {
  display: grid;
  grid-template-columns: 1fr 400px;
  gap: 60px;
  align-items: start;
  margin-top: 48px;
}

.cve-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.cve-item {
  background: var(--panel);
  border: 1px solid var(--edge);
  border-radius: 4px;
  padding: 16px 20px;
  display: grid;
  grid-template-columns: 120px 1fr auto;
  gap: 12px;
  align-items: center;
}

.cve-id {
  font-family: var(--font-mono);
  font-size: 0.78rem;
  color: var(--blue);
  letter-spacing: 0.06em;
}

.cve-desc {
  font-size: 0.85rem;
  color: rgba(238, 246, 255, 0.7);
}

.severity {
  font-family: var(--font-mono);
  font-size: 0.68rem;
  letter-spacing: 0.08em;
  padding: 4px 10px;
  border-radius: 2px;
  text-transform: uppercase;
}

.severity.critical {
  background: rgba(244, 63, 94, 0.15);
  color: var(--red);
  border: 1px solid rgba(244, 63, 94, 0.3);
}

.severity.high {
  background: rgba(245, 158, 11, 0.15);
  color: var(--amber);
  border: 1px solid rgba(245, 158, 11, 0.3);
}

.severity.medium {
  background: rgba(14, 165, 233, 0.12);
  color: var(--blue);
  border: 1px solid rgba(14, 165, 233, 0.3);
}

/* ── Radar SVG ────────────────────────────────────────────── */
.radar-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.radar-title {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
}

/* ── Contact Form ─────────────────────────────────────────── */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 80px;
  align-items: start;
}

.contact-info h3 {
  font-family: var(--font-display);
  font-size: 1.8rem;
  letter-spacing: 0.04em;
  color: var(--white);
  margin-bottom: 16px;
}

.contact-info p {
  font-size: 0.9rem;
  color: var(--muted);
  line-height: 1.7;
  margin-bottom: 28px;
}

.contact-details {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.contact-details li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.875rem;
  color: rgba(238, 246, 255, 0.7);
}

.contact-details li svg {
  flex-shrink: 0;
  color: var(--blue);
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.5;
}

.contact-details li a {
  color: inherit;
}

.contact-details li a:hover { color: var(--blue); }

.contact-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-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
}

.form-group input,
.form-group select,
.form-group textarea {
  background: var(--panel);
  border: 1px solid var(--edge);
  border-radius: var(--radius);
  padding: 12px 16px;
  color: var(--white);
  font-family: var(--font-body);
  font-size: 0.9rem;
  outline: none;
  transition: border-color var(--transition), box-shadow var(--transition);
  width: 100%;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(14, 165, 233, 0.1);
}

.form-group select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%233d6080' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 36px;
}

.form-group select option {
  background: var(--panel);
  color: var(--white);
}

.form-group textarea {
  resize: vertical;
  min-height: 140px;
}

.form-note {
  font-size: 0.78rem;
  color: var(--muted);
  line-height: 1.5;
}

.form-note a { color: var(--blue); }
.form-note a:hover { color: var(--cyan); }

/* ── Trust Bar ────────────────────────────────────────────── */
.trust-bar {
  position: relative;
  z-index: 2;
  border-top: 1px solid var(--edge);
  border-bottom: 1px solid var(--edge);
  padding: 32px 40px;
}

.trust-bar-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 32px;
  flex-wrap: wrap;
}

.trust-label {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  color: var(--muted);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  white-space: nowrap;
}

.trust-sectors {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.trust-sector {
  background: var(--panel);
  border: 1px solid var(--edge);
  color: rgba(238, 246, 255, 0.5);
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  padding: 6px 14px;
  border-radius: 2px;
  text-transform: uppercase;
}

/* ── Footer ───────────────────────────────────────────────── */
footer {
  position: relative;
  z-index: 2;
  background: var(--ink);
  border-top: 1px solid var(--edge);
}

.footer-top {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 48px;
  padding: 60px 40px;
  max-width: 1280px;
  margin: 0 auto;
}

.footer-brand {}

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

.footer-logo img {
  width: 32px;
  height: 32px;
  border-radius: 3px;
}

.footer-logo-fallback {
  width: 32px;
  height: 32px;
  border: 1.5px solid var(--blue);
  border-radius: 3px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 18px;
  color: var(--blue);
}

.footer-logo-text {
  font-family: var(--font-display);
  font-size: 18px;
  letter-spacing: 0.08em;
  color: var(--white);
}

.footer-tagline {
  font-size: 0.85rem;
  color: var(--muted);
  line-height: 1.6;
  margin-bottom: 16px;
}

.footer-contact-link {
  font-family: var(--font-mono);
  font-size: 0.8rem;
  color: var(--blue);
  display: block;
  margin-bottom: 6px;
}

.footer-kvk {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  color: var(--muted2);
  margin-top: 12px;
  line-height: 1.7;
}

.footer-col h5 {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 20px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--edge);
}

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

.footer-col ul li a,
.footer-col ul li button {
  font-size: 0.875rem;
  color: rgba(238, 246, 255, 0.5);
  transition: color var(--transition);
  background: none;
  border: none;
  padding: 0;
  font-family: var(--font-body);
}

.footer-col ul li a:hover,
.footer-col ul li button:hover {
  color: var(--blue);
  cursor: pointer;
}

.footer-bottom {
  border-top: 1px solid var(--edge);
  padding: 20px 40px;
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-copy {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  color: var(--muted2);
  letter-spacing: 0.05em;
}

.footer-badges {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.footer-badge {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  letter-spacing: 0.08em;
  padding: 4px 10px;
  border-radius: 2px;
  text-transform: uppercase;
  border: 1px solid var(--muted2);
  color: var(--muted);
}

/* ── Legal Modals ─────────────────────────────────────────── */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(3, 8, 13, 0.9);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  z-index: 9000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s, visibility 0.3s;
}

.modal-overlay.open {
  opacity: 1;
  visibility: visible;
}

.modal-box {
  background: var(--panel);
  border: 1px solid var(--edge);
  border-radius: 8px;
  width: 100%;
  max-width: 720px;
  max-height: 85vh;
  display: flex;
  flex-direction: column;
  box-shadow: 0 32px 80px rgba(0,0,0,0.7);
}

.modal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 28px;
  border-bottom: 1px solid var(--edge);
  flex-shrink: 0;
}

.modal-header h2 {
  font-family: var(--font-display);
  font-size: 1.4rem;
  letter-spacing: 0.04em;
  color: var(--white);
}

.modal-close {
  background: none;
  border: none;
  color: var(--muted);
  font-size: 1.4rem;
  line-height: 1;
  padding: 4px 8px;
  transition: color var(--transition);
  border-radius: var(--radius);
}

.modal-close:hover { color: var(--white); background: var(--edge); }

.modal-body {
  padding: 24px 28px;
  overflow-y: auto;
  flex: 1;
}

.modal-body h3 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  letter-spacing: 0.04em;
  color: var(--white);
  margin-top: 24px;
  margin-bottom: 10px;
}

.modal-body h3:first-child { margin-top: 0; }

.modal-body p {
  font-size: 0.875rem;
  color: rgba(238, 246, 255, 0.65);
  line-height: 1.7;
  margin-bottom: 12px;
}

.modal-body ul {
  list-style: disc;
  padding-left: 20px;
  margin-bottom: 12px;
}

.modal-body ul li {
  font-size: 0.875rem;
  color: rgba(238, 246, 255, 0.65);
  line-height: 1.6;
  margin-bottom: 4px;
}

.modal-body a { color: var(--blue); }
.modal-body a:hover { color: var(--cyan); }

.modal-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.82rem;
  margin: 12px 0 20px;
}

.modal-table th {
  background: var(--edge);
  color: var(--muted);
  font-family: var(--font-mono);
  font-size: 0.68rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 8px 12px;
  text-align: left;
  border: 1px solid var(--muted2);
}

.modal-table td {
  padding: 8px 12px;
  border: 1px solid var(--edge);
  color: rgba(238, 246, 255, 0.65);
  vertical-align: top;
  line-height: 1.5;
}

.modal-date {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  color: var(--muted2);
  margin-top: 24px;
  padding-top: 16px;
  border-top: 1px solid var(--edge);
}

/* ── Cookie Banner ────────────────────────────────────────── */
#cookie-banner {
  position: fixed;
  bottom: 24px;
  left: 24px;
  right: 24px;
  max-width: 640px;
  background: var(--panel);
  border: 1px solid var(--edge);
  border-radius: 8px;
  padding: 20px 24px;
  z-index: 8000;
  box-shadow: 0 8px 40px rgba(0,0,0,0.6);
  display: none;
}

#cookie-banner.visible { display: block; }

.cookie-inner {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.cookie-text {
  font-size: 0.85rem;
  color: rgba(238, 246, 255, 0.7);
  line-height: 1.6;
}

.cookie-text a { color: var(--blue); }

.cookie-btns {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.cookie-accept {
  background: var(--blue);
  color: var(--void);
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 10px 20px;
  border: none;
  border-radius: var(--radius);
  cursor: pointer;
  transition: background var(--transition);
}

.cookie-accept:hover { background: var(--cyan); }

.cookie-decline {
  background: transparent;
  color: var(--muted);
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 500;
  padding: 10px 20px;
  border: 1px solid var(--edge);
  border-radius: var(--radius);
  cursor: pointer;
  transition: color var(--transition), border-color var(--transition);
}

.cookie-decline:hover { color: var(--white); border-color: var(--muted2); }

/* ── Scroll Reveal ────────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.in-view {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* ── Ethics Box ───────────────────────────────────────────── */
.ethics-box {
  background: rgba(14, 165, 233, 0.05);
  border: 1px solid rgba(14, 165, 233, 0.3);
  border-left: 4px solid var(--blue);
  border-radius: var(--radius);
  padding: 24px 28px;
  margin-top: 48px;
}

.ethics-box h4 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  letter-spacing: 0.04em;
  color: var(--white);
  margin-bottom: 10px;
}

.ethics-box p {
  font-size: 0.875rem;
  color: rgba(238, 246, 255, 0.65);
  line-height: 1.7;
}

/* ── Methodology Cards ────────────────────────────────────── */
.method-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 40px;
}

.method-card {
  background: var(--panel);
  border: 1px solid var(--edge);
  border-radius: 6px;
  padding: 28px 24px;
}

.method-card .method-badge {
  font-family: var(--font-mono);
  font-size: 0.68rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--blue);
  background: rgba(14, 165, 233, 0.1);
  border: 1px solid rgba(14, 165, 233, 0.2);
  padding: 4px 10px;
  border-radius: 2px;
  display: inline-block;
  margin-bottom: 16px;
}

.method-card h4 {
  font-family: var(--font-display);
  font-size: 1.3rem;
  letter-spacing: 0.04em;
  color: var(--white);
  margin-bottom: 10px;
}

.method-card p {
  font-size: 0.85rem;
  color: var(--muted);
  line-height: 1.6;
}

/* ── Frameworks ───────────────────────────────────────────── */
.framework-grid {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 32px;
}

.framework-badge {
  background: var(--panel);
  border: 1px solid var(--edge);
  border-radius: 4px;
  padding: 12px 20px;
  font-family: var(--font-mono);
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  color: rgba(238, 246, 255, 0.6);
  text-transform: uppercase;
  transition: border-color var(--transition), color var(--transition);
}

.framework-badge:hover {
  border-color: var(--blue);
  color: var(--blue);
}

/* ── What Expect (Steps) ──────────────────────────────────── */
.expect-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 48px;
}

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

.expect-num {
  width: 44px;
  height: 44px;
  background: rgba(14, 165, 233, 0.1);
  border: 1.5px solid rgba(14, 165, 233, 0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 1.2rem;
  color: var(--blue);
}

.expect-step h4 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  letter-spacing: 0.04em;
  color: var(--white);
}

.expect-step p {
  font-size: 0.875rem;
  color: var(--muted);
  line-height: 1.6;
}

/* ── CTA Section ──────────────────────────────────────────── */
.cta-section {
  text-align: center;
  padding: 80px 40px;
}

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

.cta-inner .section-title {
  margin-bottom: 16px;
}

.cta-inner p {
  font-size: 1rem;
  color: var(--muted);
  margin-bottom: 32px;
  line-height: 1.7;
}

.cta-btns {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ── Glitch effect ────────────────────────────────────────── */
@keyframes glitch {
  0%, 95%, 100% { clip-path: none; transform: none; }
  96% {
    clip-path: polygon(0 20%, 100% 20%, 100% 40%, 0 40%);
    transform: translate(-3px, 1px);
  }
  97% {
    clip-path: polygon(0 60%, 100% 60%, 100% 75%, 0 75%);
    transform: translate(3px, -1px);
  }
  98% {
    clip-path: polygon(0 80%, 100% 80%, 100% 95%, 0 95%);
    transform: translate(-2px, 2px);
  }
}

.glitch { position: relative; }
.glitch::after {
  content: attr(data-text);
  position: absolute;
  left: 0; top: 0;
  color: var(--cyan);
  animation: glitch 6s infinite;
  pointer-events: none;
}

/* ── Disclosure Box ───────────────────────────────────────── */
.disclosure-box {
  background: var(--panel);
  border: 1px solid var(--edge);
  border-left: 4px solid var(--blue);
  border-radius: var(--radius);
  padding: 28px 32px;
  margin-top: 32px;
}

.disclosure-box h4 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  letter-spacing: 0.04em;
  color: var(--white);
  margin-bottom: 12px;
}

.disclosure-box p {
  font-size: 0.875rem;
  color: rgba(238, 246, 255, 0.65);
  line-height: 1.7;
  margin-bottom: 8px;
}

.disclosure-box ul {
  list-style: none;
  margin-top: 12px;
}

.disclosure-box ul li {
  font-size: 0.875rem;
  color: rgba(238, 246, 255, 0.65);
  padding: 5px 0;
  display: flex;
  align-items: center;
  gap: 10px;
}

.disclosure-box ul li::before {
  content: '✓';
  color: var(--blue);
  font-weight: 700;
}

/* ── Negative list ────────────────────────────────────────── */
.negative-list {
  list-style: none;
  margin-top: 20px;
}

.negative-list li {
  font-size: 0.9rem;
  color: rgba(238, 246, 255, 0.6);
  padding: 10px 0;
  border-bottom: 1px solid var(--edge);
  display: flex;
  align-items: center;
  gap: 12px;
}

.negative-list li::before {
  content: '✕';
  color: var(--red);
  font-size: 0.8rem;
  flex-shrink: 0;
}

/* ── Comparison grid ──────────────────────────────────────── */
.compare-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-top: 40px;
}

.compare-card {
  background: var(--panel);
  border: 1px solid var(--edge);
  border-radius: 6px;
  padding: 28px 24px;
}

.compare-card h4 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  letter-spacing: 0.04em;
  margin-bottom: 16px;
}

.compare-card.good h4 { color: var(--blue); }
.compare-card.bad h4 { color: var(--muted); }

.compare-card ul {
  list-style: none;
}

.compare-card ul li {
  font-size: 0.85rem;
  color: rgba(238, 246, 255, 0.65);
  padding: 7px 0;
  border-bottom: 1px solid var(--edge);
  display: flex;
  align-items: center;
  gap: 10px;
}

.compare-card.good ul li::before { content: '✓'; color: var(--blue); }
.compare-card.bad ul li::before { content: '✕'; color: var(--muted2); }

/* ── Risk Category ────────────────────────────────────────── */
.risk-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 32px;
}

.risk-card {
  background: var(--panel);
  border: 1px solid var(--edge);
  border-radius: 6px;
  padding: 20px 18px;
  text-align: center;
}

.risk-level {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 2px;
  margin-bottom: 12px;
  display: inline-block;
}

.risk-level.unacceptable { background: rgba(244,63,94,0.15); color: var(--red); border: 1px solid rgba(244,63,94,0.3); }
.risk-level.high { background: rgba(245,158,11,0.15); color: var(--amber); border: 1px solid rgba(245,158,11,0.3); }
.risk-level.limited { background: rgba(14,165,233,0.12); color: var(--blue); border: 1px solid rgba(14,165,233,0.3); }
.risk-level.minimal { background: rgba(61,96,128,0.15); color: var(--muted); border: 1px solid var(--edge); }

.risk-card h4 {
  font-family: var(--font-display);
  font-size: 1rem;
  letter-spacing: 0.04em;
  color: var(--white);
  margin-bottom: 8px;
}

.risk-card p {
  font-size: 0.78rem;
  color: var(--muted);
  line-height: 1.5;
}

/* ── ============================================================
   RESPONSIVE BREAKPOINTS
   ============================================================ */

@media (max-width: 1200px) {
  .hero-inner {
    grid-template-columns: 1fr;
    text-align: left;
  }

  .hero-visual {
    display: none;
  }

  .threat-grid {
    grid-template-columns: 1fr;
  }

  .radar-wrap { display: none; }
}

@media (max-width: 1100px) {
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .nav-cta { display: none; }

  .footer-top {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }

  .values-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .process-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .pricing-grid {
    grid-template-columns: 1fr 1fr;
  }

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

  .split {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .split-logo { display: none; }

  .risk-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  nav { padding: 0 20px; }

  .section-wrap { padding: 60px 20px; }

  .warning-box { margin: 0 20px; }

  .services-grid {
    grid-template-columns: 1fr;
  }

  .pricing-grid,
  .pricing-grid-2 {
    grid-template-columns: 1fr;
    max-width: 100%;
  }

  .method-grid {
    grid-template-columns: 1fr;
  }

  .audience-grid {
    grid-template-columns: 1fr;
  }

  .compare-grid {
    grid-template-columns: 1fr;
  }

  .expect-grid {
    grid-template-columns: 1fr;
  }

  .hero-metrics {
    flex-wrap: wrap;
    gap: 20px;
  }

  .page-hero-inner { padding: 0 20px; }

  .footer-top {
    grid-template-columns: 1fr;
    padding: 40px 20px;
  }

  .footer-bottom {
    padding: 16px 20px;
    flex-direction: column;
    text-align: center;
  }

  .trust-bar { padding: 20px; }

  .form-row { grid-template-columns: 1fr; }

  .cta-section { padding: 60px 20px; }

  .ticker-bar { display: none; }
}

@media (max-width: 480px) {
  .hero-title { font-size: 3rem; }

  .page-hero-title { font-size: 2.4rem; }

  .hero-btns, .page-hero-btns, .cta-btns {
    flex-direction: column;
    align-items: flex-start;
  }

  .btn-primary, .btn-outline {
    width: 100%;
    justify-content: center;
  }

  .process-grid {
    grid-template-columns: 1fr;
  }

  .values-grid {
    grid-template-columns: 1fr;
  }

  .risk-grid {
    grid-template-columns: 1fr 1fr;
  }
}
