/* InburgerKlaar.nl - Design System */
/* ============================================ */

:root {
  /* Colors - locked tokens */
  --primary: #0A1F3D;
  --primary-light: #1A3A6B;
  --accent: #FF7847;
  --accent-soft: #FFE4D6;
  --surface: #FAF7F2;
  --surface-elevated: #FFFFFF;
  --text: #0F1419;
  --text-muted: #5A6478;
  --border: #E5E0D5;
  --border-strong: #D4CCBA;
  --success: #2D7A3E;
  --success-soft: #E8F3EA;
  --error: #B83232;
  --warning: #C77F1E;

  /* Type scale - fluid */
  --fs-xs: clamp(0.75rem, 0.7rem + 0.2vw, 0.825rem);
  --fs-sm: clamp(0.875rem, 0.85rem + 0.2vw, 0.95rem);
  --fs-base: clamp(1rem, 0.95rem + 0.25vw, 1.0625rem);
  --fs-lg: clamp(1.125rem, 1.05rem + 0.4vw, 1.25rem);
  --fs-xl: clamp(1.375rem, 1.2rem + 0.8vw, 1.625rem);
  --fs-2xl: clamp(1.75rem, 1.45rem + 1.5vw, 2.25rem);
  --fs-3xl: clamp(2.25rem, 1.8rem + 2.2vw, 3.25rem);
  --fs-4xl: clamp(2.75rem, 2rem + 3.5vw, 4.5rem);
  --fs-5xl: clamp(3.5rem, 2.5rem + 5vw, 6rem);

  /* Spacing - 8px grid */
  --space-1: 0.25rem;
  --space-2: 0.5rem;
  --space-3: 0.75rem;
  --space-4: 1rem;
  --space-5: 1.5rem;
  --space-6: 2rem;
  --space-7: 2.5rem;
  --space-8: 3rem;
  --space-9: 4rem;
  --space-10: 5rem;
  --space-12: 7rem;
  --space-14: 9rem;

  /* Radii */
  --radius-sm: 0.5rem;
  --radius-md: 0.75rem;
  --radius-lg: 1.25rem;
  --radius-xl: 2rem;
  --radius-full: 9999px;

  /* Shadows */
  --shadow-sm: 0 1px 2px rgba(10, 31, 61, 0.04), 0 2px 6px rgba(10, 31, 61, 0.04);
  --shadow-md: 0 4px 12px rgba(10, 31, 61, 0.06), 0 8px 24px rgba(10, 31, 61, 0.05);
  --shadow-lg: 0 8px 24px rgba(10, 31, 61, 0.08), 0 24px 56px rgba(10, 31, 61, 0.08);
  --shadow-xl: 0 24px 64px rgba(10, 31, 61, 0.12), 0 48px 120px rgba(10, 31, 61, 0.10);

  /* Layout */
  --container-max: 1240px;
  --container-narrow: 880px;
  --header-h: 76px;

  /* Motion */
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-in-out: cubic-bezier(0.65, 0, 0.35, 1);
  --dur-fast: 180ms;
  --dur-base: 320ms;
  --dur-slow: 600ms;
}

/* Reset */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: var(--fs-base);
  line-height: 1.6;
  color: var(--text);
  background: var(--surface);
  font-feature-settings: 'cv02', 'cv03', 'cv04', 'cv11';
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

img, svg { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: 0; background: transparent; color: inherit; }
ul, ol { list-style: none; }

/* Typography */
.display, h1, h2, h3, h4 {
  font-family: 'Cabinet Grotesk', 'Inter', system-ui, sans-serif;
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.05;
  color: var(--primary);
}
h1 { font-size: var(--fs-4xl); }
h2 { font-size: var(--fs-3xl); letter-spacing: -0.025em; }
h3 { font-size: var(--fs-xl); letter-spacing: -0.015em; line-height: 1.2; }
h4 { font-size: var(--fs-lg); letter-spacing: -0.01em; line-height: 1.3; }
p { color: var(--text-muted); }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  font-size: var(--fs-xs);
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent);
  padding: var(--space-2) var(--space-4);
  background: var(--accent-soft);
  border-radius: var(--radius-full);
}

/* Layout primitives */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--space-5);
}
@media (min-width: 768px) { .container { padding: 0 var(--space-6); } }
.section { padding: var(--space-12) 0; }
@media (min-width: 768px) { .section { padding: var(--space-14) 0; } }

/* Header */
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(250, 247, 242, 0.85);
  backdrop-filter: saturate(180%) blur(20px);
  -webkit-backdrop-filter: saturate(180%) blur(20px);
  border-bottom: 1px solid var(--border);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--header-h);
  gap: var(--space-5);
}
.logo {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  font-family: 'Cabinet Grotesk', sans-serif;
  font-weight: 800;
  font-size: 1.25rem;
  color: var(--primary);
  letter-spacing: -0.02em;
}
.logo-mark {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
  display: grid;
  place-items: center;
  color: var(--surface);
  font-weight: 800;
  font-size: 1.0625rem;
  letter-spacing: -0.02em;
  position: relative;
  overflow: hidden;
}
.logo-mark::after {
  content: '';
  position: absolute;
  inset: auto -8px -10px auto;
  width: 22px;
  height: 22px;
  background: var(--accent);
  border-radius: 50%;
  opacity: 0.95;
}
.logo-mark span { position: relative; z-index: 1; }

.nav-links {
  display: none;
  gap: var(--space-6);
  font-size: var(--fs-sm);
  font-weight: 500;
}
.nav-links a:hover { color: var(--accent); }
@media (min-width: 1024px) { .nav-links { display: flex; } }

.header-actions { display: flex; align-items: center; gap: var(--space-3); }

/* Language switcher */
.lang-switch {
  position: relative;
  display: inline-flex;
}
.lang-trigger {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  padding: var(--space-2) var(--space-4);
  border: 1px solid var(--border);
  background: var(--surface-elevated);
  border-radius: var(--radius-full);
  font-size: var(--fs-sm);
  font-weight: 600;
  color: var(--primary);
  transition: all var(--dur-fast) var(--ease-out);
}
.lang-trigger:hover { border-color: var(--primary); background: var(--surface); }
.lang-flag { font-size: 1.0625rem; line-height: 1; }
.lang-chevron { width: 14px; height: 14px; opacity: 0.6; transition: transform var(--dur-fast) var(--ease-out); }
.lang-switch[data-open="true"] .lang-chevron { transform: rotate(180deg); }

.lang-menu {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  min-width: 240px;
  background: var(--surface-elevated);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  padding: var(--space-2);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-4px);
  transition: all var(--dur-fast) var(--ease-out);
  max-height: 400px;
  overflow-y: auto;
}
.lang-switch[data-open="true"] .lang-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.lang-option {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  width: 100%;
  padding: var(--space-3) var(--space-4);
  border-radius: var(--radius-sm);
  font-size: var(--fs-sm);
  font-weight: 500;
  color: var(--text);
  text-align: left;
}
.lang-option:hover { background: var(--surface); }
.lang-option[aria-current="true"] { background: var(--accent-soft); color: var(--primary); font-weight: 600; }
.lang-name-native { color: var(--text-muted); font-size: var(--fs-xs); margin-left: auto; }

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-2);
  padding: var(--space-3) var(--space-5);
  font-size: var(--fs-sm);
  font-weight: 600;
  border-radius: var(--radius-full);
  transition: all var(--dur-fast) var(--ease-out);
  white-space: nowrap;
  position: relative;
  overflow: hidden;
}
.btn-primary {
  background: var(--primary);
  color: var(--surface);
}
.btn-primary:hover { background: var(--primary-light); transform: translateY(-1px); box-shadow: var(--shadow-md); }
.btn-accent {
  background: var(--accent);
  color: var(--surface-elevated);
  padding: var(--space-4) var(--space-7);
  font-size: var(--fs-base);
  font-weight: 700;
}
.btn-accent:hover { background: #ff8e63; transform: translateY(-2px); box-shadow: 0 12px 32px rgba(255, 120, 71, 0.4); }
.btn-ghost {
  background: transparent;
  color: var(--primary);
  border: 1px solid var(--border-strong);
  padding: var(--space-4) var(--space-6);
  font-size: var(--fs-base);
}
.btn-ghost:hover { border-color: var(--primary); background: var(--surface-elevated); }
.btn-lg { padding: var(--space-4) var(--space-7); font-size: var(--fs-base); }
.btn-icon { width: 18px; height: 18px; transition: transform var(--dur-fast) var(--ease-out); }
.btn:hover .btn-icon { transform: translateX(2px); }

/* Hero */
.hero {
  position: relative;
  padding: var(--space-12) 0 var(--space-14);
  background: var(--surface);
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  top: -10%;
  right: -10%;
  width: 60%;
  height: 70%;
  background: radial-gradient(circle at center, rgba(255, 120, 71, 0.15) 0%, transparent 60%);
  pointer-events: none;
}
.hero::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -20%;
  width: 70%;
  height: 80%;
  background: radial-gradient(circle at center, rgba(10, 31, 61, 0.06) 0%, transparent 55%);
  pointer-events: none;
}
.hero-inner {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-9);
  align-items: center;
}
@media (min-width: 1024px) {
  .hero-inner { grid-template-columns: 1.15fr 1fr; gap: var(--space-10); }
}
.hero-eyebrow { margin-bottom: var(--space-5); }
.hero h1 {
  font-size: var(--fs-5xl);
  line-height: 0.98;
  letter-spacing: -0.035em;
  margin-bottom: var(--space-5);
}
.hero h1 .accent {
  color: var(--accent);
  font-style: italic;
  font-weight: 800;
  position: relative;
  display: inline-block;
}
.hero h1 .accent::after {
  content: '';
  position: absolute;
  left: 4%;
  right: 4%;
  bottom: 6%;
  height: 12%;
  background: rgba(255, 120, 71, 0.22);
  z-index: -1;
  border-radius: 2px;
}
.hero-sub {
  font-size: var(--fs-lg);
  line-height: 1.55;
  color: var(--text-muted);
  margin-bottom: var(--space-7);
  max-width: 36rem;
}
.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-3);
  margin-bottom: var(--space-7);
}
.hero-trust {
  display: flex;
  align-items: center;
  gap: var(--space-5);
  flex-wrap: wrap;
}
.trust-avatars {
  display: flex;
  align-items: center;
}
.trust-avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 2px solid var(--surface);
  background: linear-gradient(135deg, var(--primary-light), var(--accent));
  margin-left: -10px;
  display: grid;
  place-items: center;
  color: white;
  font-weight: 700;
  font-size: 0.8125rem;
}
.trust-avatar:first-child { margin-left: 0; }
.trust-text {
  font-size: var(--fs-sm);
  color: var(--text-muted);
  line-height: 1.4;
}
.trust-text strong { color: var(--primary); font-weight: 700; display: block; }
.trust-stars {
  display: inline-flex;
  align-items: center;
  gap: 2px;
  color: var(--accent);
  font-size: 0.875rem;
  margin-bottom: 2px;
}

/* Hero visual */
.hero-visual {
  position: relative;
  aspect-ratio: 5 / 6;
  min-height: 420px;
}
.phone-mockup {
  position: absolute;
  width: 78%;
  max-width: 360px;
  aspect-ratio: 9 / 19;
  background: var(--primary);
  border-radius: 38px;
  padding: 12px;
  box-shadow: var(--shadow-xl);
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%) rotate(-3deg);
}
.phone-screen {
  width: 100%;
  height: 100%;
  background: var(--surface);
  border-radius: 26px;
  overflow: hidden;
  position: relative;
  padding: 18px 16px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.chat-msg {
  padding: 10px 14px;
  border-radius: 14px;
  font-size: 0.8125rem;
  line-height: 1.4;
  max-width: 85%;
  animation: slideIn var(--dur-slow) var(--ease-out) backwards;
}
.chat-msg.bot {
  background: var(--surface-elevated);
  border: 1px solid var(--border);
  align-self: flex-start;
  color: var(--text);
}
.chat-msg.user {
  background: var(--accent);
  color: var(--surface-elevated);
  align-self: flex-end;
}
.chat-msg.bot:nth-child(1) { animation-delay: 0.2s; }
.chat-msg.user:nth-child(2) { animation-delay: 0.6s; }
.chat-msg.bot:nth-child(3) { animation-delay: 1s; }
.chat-msg.user:nth-child(4) { animation-delay: 1.4s; }

@keyframes slideIn {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

.float-badge {
  position: absolute;
  background: var(--surface-elevated);
  border-radius: var(--radius-md);
  padding: var(--space-4);
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
  gap: var(--space-3);
  border: 1px solid var(--border);
  animation: floatBob 6s var(--ease-in-out) infinite;
}
.float-badge.top-right { top: 8%; right: 0; animation-delay: 0s; }
.float-badge.bot-left { bottom: 8%; left: 0; animation-delay: -3s; }

@keyframes floatBob {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}

.badge-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: var(--success-soft);
  color: var(--success);
  display: grid;
  place-items: center;
  font-weight: 800;
  font-size: 0.875rem;
  flex-shrink: 0;
}
.badge-icon.orange { background: var(--accent-soft); color: var(--accent); }
.badge-text { font-size: 0.8125rem; line-height: 1.3; }
.badge-text strong { display: block; color: var(--primary); font-weight: 700; }
.badge-text span { color: var(--text-muted); font-size: 0.75rem; }

/* Logo bar */
.logos-bar {
  padding: var(--space-7) 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: var(--surface);
}
.logos-inner { text-align: center; }
.logos-label {
  font-size: var(--fs-xs);
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: var(--space-5);
}
.logos-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: var(--space-7);
  opacity: 0.7;
}
.logo-placeholder {
  font-family: 'Cabinet Grotesk', sans-serif;
  font-weight: 700;
  color: var(--primary);
  font-size: var(--fs-base);
  letter-spacing: -0.01em;
  display: flex;
  align-items: center;
  gap: var(--space-2);
}
.logo-placeholder::before {
  content: '';
  width: 8px;
  height: 8px;
  background: var(--accent);
  border-radius: 50%;
}

/* Section heading */
.section-head {
  text-align: center;
  max-width: 720px;
  margin: 0 auto var(--space-9);
}
.section-head .eyebrow { margin-bottom: var(--space-4); }
.section-head h2 { margin-bottom: var(--space-4); }
.section-head p { font-size: var(--fs-lg); line-height: 1.55; }

/* 5 Exam cards */
.exams { background: var(--surface); }
.exams-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-4);
}
@media (min-width: 640px) { .exams-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .exams-grid { grid-template-columns: repeat(5, 1fr); } }

.exam-card {
  background: var(--surface-elevated);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: var(--space-6);
  position: relative;
  overflow: hidden;
  transition: all var(--dur-base) var(--ease-out);
}
.exam-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--accent);
}
.exam-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--dur-base) var(--ease-out);
}
.exam-card:hover::before { transform: scaleX(1); }

.exam-icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  background: var(--accent-soft);
  display: grid;
  place-items: center;
  margin-bottom: var(--space-4);
  color: var(--accent);
}
.exam-icon svg { width: 28px; height: 28px; }
.exam-card h3 { margin-bottom: var(--space-2); font-size: var(--fs-lg); }
.exam-card p { font-size: var(--fs-sm); line-height: 1.55; margin-bottom: var(--space-4); }
.exam-meta {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  font-size: var(--fs-xs);
  font-weight: 600;
  color: var(--text-muted);
}
.exam-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--success); }

/* How it works */
.how { background: var(--surface-elevated); border-top: 1px solid var(--border); }
.steps {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-7);
  counter-reset: step;
}
@media (min-width: 768px) { .steps { grid-template-columns: repeat(3, 1fr); } }
.step {
  position: relative;
  padding-top: var(--space-7);
  counter-increment: step;
}
.step::before {
  content: counter(step);
  position: absolute;
  top: 0;
  left: 0;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--primary);
  color: var(--surface);
  display: grid;
  place-items: center;
  font-family: 'Cabinet Grotesk', sans-serif;
  font-size: 1.5rem;
  font-weight: 800;
}
.step { padding-left: var(--space-7); padding-top: 0; min-height: 56px; }
.step-content { padding-top: 4px; padding-left: var(--space-5); }
.step h3 { margin-bottom: var(--space-2); }
.step p { font-size: var(--fs-base); line-height: 1.6; }

@media (min-width: 768px) {
  .step { padding: var(--space-9) 0 0 0; }
  .step::before { left: 50%; transform: translateX(-50%); }
  .step-content { text-align: center; padding: 0; }
}

/* AZC Partner */
.azc {
  background: var(--primary);
  color: var(--surface);
  position: relative;
  overflow: hidden;
}
.azc::before {
  content: '';
  position: absolute;
  top: -20%;
  right: -10%;
  width: 50%;
  height: 80%;
  background: radial-gradient(circle, rgba(255, 120, 71, 0.18) 0%, transparent 60%);
  pointer-events: none;
}
.azc-inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-9);
  align-items: center;
  position: relative;
}
@media (min-width: 1024px) { .azc-inner { grid-template-columns: 1fr 1fr; } }
.azc h2 { color: var(--surface); margin-bottom: var(--space-5); }
.azc h2 .accent { color: var(--accent); font-style: italic; }
.azc .eyebrow { background: rgba(255, 120, 71, 0.18); color: var(--accent); margin-bottom: var(--space-5); }
.azc-sub {
  font-size: var(--fs-lg);
  color: rgba(250, 247, 242, 0.75);
  margin-bottom: var(--space-7);
  line-height: 1.55;
}
.azc-features { display: grid; gap: var(--space-4); margin-bottom: var(--space-7); }
.azc-feature {
  display: flex;
  align-items: flex-start;
  gap: var(--space-3);
}
.feature-check {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--accent);
  color: var(--primary);
  display: grid;
  place-items: center;
  flex-shrink: 0;
  font-weight: 800;
}
.feature-check svg { width: 16px; height: 16px; }
.azc-feature strong { color: var(--surface); font-weight: 700; display: block; margin-bottom: 2px; font-size: var(--fs-base); }
.azc-feature span { color: rgba(250, 247, 242, 0.65); font-size: var(--fs-sm); line-height: 1.5; }

.azc-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-4);
}
.azc-stat {
  background: rgba(250, 247, 242, 0.06);
  border: 1px solid rgba(250, 247, 242, 0.12);
  border-radius: var(--radius-lg);
  padding: var(--space-6);
  backdrop-filter: blur(20px);
}
.azc-stat-num {
  font-family: 'Cabinet Grotesk', sans-serif;
  font-size: var(--fs-3xl);
  font-weight: 800;
  color: var(--accent);
  letter-spacing: -0.03em;
  line-height: 1;
  margin-bottom: var(--space-2);
  display: block;
}
.azc-stat-label { font-size: var(--fs-sm); color: rgba(250, 247, 242, 0.75); line-height: 1.4; }
.btn-on-dark { background: var(--accent); color: var(--primary); font-weight: 700; }
.btn-on-dark:hover { background: var(--surface); color: var(--primary); }

/* Pricing */
.pricing { background: var(--surface); }
.pricing-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-5);
  max-width: 1100px;
  margin: 0 auto;
}
@media (min-width: 768px) { .pricing-grid { grid-template-columns: repeat(3, 1fr); } }

.price-card {
  background: var(--surface-elevated);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: var(--space-7);
  display: flex;
  flex-direction: column;
  position: relative;
  transition: all var(--dur-base) var(--ease-out);
}
.price-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.price-card.featured {
  background: var(--primary);
  color: var(--surface);
  border-color: var(--primary);
  transform: scale(1.02);
}
.price-card.featured:hover { transform: scale(1.02) translateY(-4px); }
.price-card.featured h3, .price-card.featured .price-num { color: var(--surface); }
.price-card.featured p { color: rgba(250, 247, 242, 0.7); }
.price-card.featured .price-feature { color: rgba(250, 247, 242, 0.9); }
.price-card.featured .price-feature::before { background: var(--accent); color: var(--primary); }

.price-popular {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--accent);
  color: var(--primary);
  padding: var(--space-2) var(--space-4);
  border-radius: var(--radius-full);
  font-size: var(--fs-xs);
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.price-card h3 { margin-bottom: var(--space-2); font-size: var(--fs-xl); }
.price-card > p { font-size: var(--fs-sm); margin-bottom: var(--space-5); }
.price-num {
  font-family: 'Cabinet Grotesk', sans-serif;
  font-size: var(--fs-4xl);
  font-weight: 800;
  color: var(--primary);
  letter-spacing: -0.03em;
  line-height: 1;
  display: flex;
  align-items: baseline;
  gap: var(--space-2);
  margin-bottom: var(--space-2);
}
.price-period { font-family: 'Inter', sans-serif; font-size: var(--fs-base); font-weight: 500; color: var(--text-muted); }
.price-card.featured .price-period { color: rgba(250, 247, 242, 0.6); }
.price-note { font-size: var(--fs-xs); color: var(--text-muted); margin-bottom: var(--space-6); }
.price-card.featured .price-note { color: rgba(250, 247, 242, 0.6); }
.price-features { display: grid; gap: var(--space-3); margin-bottom: var(--space-7); flex: 1; }
.price-feature {
  display: flex;
  align-items: flex-start;
  gap: var(--space-3);
  font-size: var(--fs-sm);
  color: var(--text);
  line-height: 1.5;
}
.price-feature::before {
  content: '✓';
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--success-soft);
  color: var(--success);
  display: grid;
  place-items: center;
  font-size: 0.6875rem;
  font-weight: 800;
  flex-shrink: 0;
  margin-top: 2px;
}
.price-card .btn { width: 100%; }
.price-card.featured .btn-primary { background: var(--accent); color: var(--primary); }
.price-card.featured .btn-primary:hover { background: var(--surface); }

/* Testimonials */
.testimonials {
  background: var(--surface-elevated);
  border-top: 1px solid var(--border);
}
.test-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-5);
}
@media (min-width: 768px) { .test-grid { grid-template-columns: repeat(3, 1fr); } }
.test-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: var(--space-7);
}
.test-stars {
  display: flex;
  gap: 2px;
  margin-bottom: var(--space-4);
  color: var(--accent);
}
.test-quote {
  font-size: var(--fs-base);
  color: var(--text);
  line-height: 1.6;
  margin-bottom: var(--space-5);
}
.test-author {
  display: flex;
  align-items: center;
  gap: var(--space-3);
}
.test-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary-light), var(--accent));
  display: grid;
  place-items: center;
  color: var(--surface);
  font-weight: 700;
  font-size: 0.9375rem;
}
.test-author strong { display: block; color: var(--primary); font-weight: 700; font-size: var(--fs-sm); }
.test-author span { font-size: var(--fs-xs); color: var(--text-muted); }

/* FAQ */
.faq { background: var(--surface); }
.faq-list { max-width: var(--container-narrow); margin: 0 auto; }
.faq-item {
  border-bottom: 1px solid var(--border);
}
.faq-trigger {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: var(--space-5) 0;
  text-align: left;
  font-size: var(--fs-lg);
  font-weight: 600;
  color: var(--primary);
  font-family: 'Cabinet Grotesk', sans-serif;
}
.faq-trigger:hover { color: var(--accent); }
.faq-toggle {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--surface-elevated);
  border: 1px solid var(--border);
  display: grid;
  place-items: center;
  flex-shrink: 0;
  transition: all var(--dur-fast) var(--ease-out);
}
.faq-toggle svg { width: 16px; height: 16px; transition: transform var(--dur-fast) var(--ease-out); }
.faq-item[data-open="true"] .faq-toggle { background: var(--accent); border-color: var(--accent); color: var(--primary); }
.faq-item[data-open="true"] .faq-toggle svg { transform: rotate(45deg); }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--dur-base) var(--ease-out);
}
.faq-item[data-open="true"] .faq-answer { max-height: 400px; }
.faq-answer p {
  padding-bottom: var(--space-5);
  font-size: var(--fs-base);
  line-height: 1.6;
  max-width: 90%;
}

/* CTA banner */
.cta-banner {
  background: var(--surface);
  padding: var(--space-7) 0;
}
.cta-card {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
  color: var(--surface);
  border-radius: var(--radius-xl);
  padding: var(--space-10) var(--space-7);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-card::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 60%;
  height: 200%;
  background: radial-gradient(ellipse, rgba(255, 120, 71, 0.25) 0%, transparent 60%);
  pointer-events: none;
}
.cta-card h2 {
  color: var(--surface);
  margin-bottom: var(--space-4);
  position: relative;
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
}
.cta-card h2 .accent { color: var(--accent); font-style: italic; }
.cta-card p {
  color: rgba(250, 247, 242, 0.8);
  font-size: var(--fs-lg);
  margin-bottom: var(--space-7);
  position: relative;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}
.cta-card .btn { position: relative; }

/* Footer */
.footer {
  background: var(--primary);
  color: rgba(250, 247, 242, 0.7);
  padding: var(--space-9) 0 var(--space-6);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-7);
  margin-bottom: var(--space-7);
}
@media (min-width: 768px) { .footer-grid { grid-template-columns: 2fr 1fr 1fr 1fr; } }
.footer-brand p {
  color: rgba(250, 247, 242, 0.6);
  font-size: var(--fs-sm);
  margin-top: var(--space-4);
  max-width: 320px;
  line-height: 1.6;
}
.footer-brand .logo { color: var(--surface); margin-bottom: var(--space-2); }
.footer h4 {
  color: var(--surface);
  font-family: 'Inter', sans-serif;
  font-size: var(--fs-sm);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: var(--space-4);
}
.footer-col ul { display: grid; gap: var(--space-3); }
.footer-col a {
  color: rgba(250, 247, 242, 0.65);
  font-size: var(--fs-sm);
  transition: color var(--dur-fast) var(--ease-out);
}
.footer-col a:hover { color: var(--accent); }
.footer-bottom {
  padding-top: var(--space-5);
  border-top: 1px solid rgba(250, 247, 242, 0.12);
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: var(--space-4);
  font-size: var(--fs-xs);
  color: rgba(250, 247, 242, 0.5);
}
.footer-bottom .links { display: flex; gap: var(--space-5); }
.footer-bottom a:hover { color: var(--accent); }

/* RTL support voor Arabisch, Dari, Farsi */
[dir="rtl"] .lang-menu { left: 0; right: auto; }
[dir="rtl"] .lang-name-native { margin-left: 0; margin-right: auto; }
[dir="rtl"] .trust-avatar { margin-left: 0; margin-right: -10px; }
[dir="rtl"] .trust-avatar:first-child { margin-right: 0; }
[dir="rtl"] .btn-icon { transform: scaleX(-1); }
[dir="rtl"] .btn:hover .btn-icon { transform: scaleX(-1) translateX(2px); }
[dir="rtl"] .hero h1 .accent::after { right: 4%; left: 4%; }
[dir="rtl"] .step::before { left: auto; right: 0; }
[dir="rtl"] .step { padding-left: 0; padding-right: var(--space-7); }
[dir="rtl"] .step-content { padding-left: 0; padding-right: var(--space-5); }
@media (min-width: 768px) {
  [dir="rtl"] .step { padding-right: 0; }
  [dir="rtl"] .step::before { left: 50%; right: auto; transform: translateX(-50%); }
  [dir="rtl"] .step-content { padding-right: 0; }
}

/* Mobile menu */
.menu-btn {
  display: inline-flex;
  width: 40px;
  height: 40px;
  border-radius: var(--radius-full);
  border: 1px solid var(--border);
  align-items: center;
  justify-content: center;
  background: var(--surface-elevated);
}
@media (min-width: 1024px) { .menu-btn { display: none; } }

/* Utility */
.text-center { text-align: center; }
/* Fade-in is opt-in (added by JS only when supported); CSS-only fallback shows everything */
.fade-in { opacity: 0.001; transform: translateY(16px); transition: opacity var(--dur-slow) var(--ease-out), transform var(--dur-slow) var(--ease-out); }
.fade-in.visible { opacity: 1; transform: translateY(0); }
@media (prefers-reduced-motion: reduce) {
  .fade-in { opacity: 1 !important; transform: none !important; transition: none !important; }
}
