/* ═══════════════════════════════════════
   KELVANTIS — style.css
   Mobile-first, BEM, CSS Variables
═══════════════════════════════════════ */

/* ─── 1. CSS Variables ─── */
:root {
  --color-bg: #0A0F1E;
  --color-surface: #111827;
  --color-surface-2: #1a2235;
  --color-border: rgba(255, 255, 255, 0.07);
  --color-border-hover: rgba(255, 255, 255, 0.14);
  --color-accent: #05FE82;
  --color-accent-dark: #04C864;
  --color-accent-glow: rgba(5, 254, 130, 0.2);
  --color-text: #F0F2F5;
  --color-text-muted: #9CA3AF;
  --color-grey: #6B7280;
  --color-white: #ffffff;

  --font-heading: 'Sora', -apple-system, sans-serif;
  --font-body: 'Inter', -apple-system, sans-serif;

  --radius-xs: 6px;
  --radius-sm: 10px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --radius-xl: 28px;
  --radius-full: 9999px;

  --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.4);
  --shadow-md: 0 4px 20px rgba(0, 0, 0, 0.5);
  --shadow-lg: 0 8px 40px rgba(0, 0, 0, 0.6);
  --shadow-glow: 0 0 30px rgba(5, 254, 130, 0.25);
  --shadow-glow-lg: 0 0 60px rgba(5, 254, 130, 0.3);

  --transition-fast: 0.15s ease;
  --transition: 0.25s ease;
  --transition-slow: 0.4s ease;

  --navbar-h: 68px;
  --container-max: 1200px;
  --container-pad: 1.25rem;

  --section-pad: 5rem 0;
}

/* ─── 1b. Light Theme Overrides ─── */
html[data-theme="light"] {
  --color-bg: #F5F7FA;
  --color-surface: #FFFFFF;
  --color-surface-2: #EFF2F7;
  --color-border: rgba(0, 0, 0, 0.08);
  --color-border-hover: rgba(0, 0, 0, 0.16);
  --color-text: #0D1117;
  --color-text-muted: #4B5563;
  --color-grey: #6B7280;
  --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.1);
  --shadow-md: 0 4px 20px rgba(0, 0, 0, 0.12);
  --shadow-lg: 0 8px 40px rgba(0, 0, 0, 0.16);
  --shadow-glow: 0 0 30px rgba(5, 254, 130, 0.2);
  --shadow-glow-lg: 0 0 60px rgba(5, 254, 130, 0.25);
}

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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  scroll-padding-top: var(--navbar-h);
  transition: background-color 0.3s ease;
}

body {
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.6;
  color: var(--color-text);
  background-color: var(--color-bg);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img, svg {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

ul {
  list-style: none;
}

button {
  font-family: var(--font-body);
  cursor: pointer;
  border: none;
  background: none;
}

::selection {
  background: var(--color-accent);
  color: var(--color-bg);
}

/* ─── 3. Utilities ─── */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--container-pad);
}

.section {
  padding: var(--section-pad);
}

.section__header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 4rem;
}

.section__label {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-accent);
  background: rgba(5, 254, 130, 0.1);
  border: 1px solid rgba(5, 254, 130, 0.2);
  padding: 0.3rem 0.85rem;
  border-radius: var(--radius-full);
  margin-bottom: 1.25rem;
}

.section__title {
  font-family: var(--font-heading);
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: var(--color-text);
  margin-bottom: 1rem;
}

.section__subtitle {
  font-size: 1.0625rem;
  color: var(--color-text-muted);
  line-height: 1.7;
}

/* ─── 4. Buttons ─── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-family: var(--font-body);
  font-size: 0.9375rem;
  font-weight: 600;
  line-height: 1;
  border-radius: var(--radius-full);
  padding: 0.75rem 1.5rem;
  transition: all var(--transition);
  white-space: nowrap;
  cursor: pointer;
  text-decoration: none;
}

.btn--primary {
  background: var(--color-accent);
  color: #0A0F1E;
  box-shadow: var(--shadow-glow);
}

.btn--primary:hover {
  background: #28d968;
  box-shadow: var(--shadow-glow-lg);
  transform: translateY(-1px);
}

.btn--primary:active {
  transform: translateY(0);
}

.btn--ghost {
  background: transparent;
  color: var(--color-text-muted);
  border: 1px solid var(--color-border);
}

.btn--ghost:hover {
  border-color: var(--color-border-hover);
  color: var(--color-text);
  background: rgba(255, 255, 255, 0.04);
}

.btn--outline {
  background: transparent;
  color: var(--color-text);
  border: 1px solid var(--color-border);
}

.btn--outline:hover {
  border-color: rgba(5, 254, 130, 0.4);
  color: var(--color-accent);
  background: rgba(5, 254, 130, 0.05);
}

.btn--sm { padding: 0.6rem 1.125rem; font-size: 0.875rem; }
.btn--lg { padding: 0.875rem 1.75rem; font-size: 1rem; }
.btn--xl { padding: 1rem 2rem; font-size: 1.0625rem; }
.btn--full { width: 100%; }

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

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

/* Stagger children */
.reveal:nth-child(2) { transition-delay: 0.1s; }
.reveal:nth-child(3) { transition-delay: 0.15s; }
.reveal:nth-child(4) { transition-delay: 0.2s; }

/* ─── 6. Navbar ─── */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  height: var(--navbar-h);
  transition: background var(--transition), box-shadow var(--transition);
}

.navbar--scrolled {
  background: rgba(10, 15, 30, 0.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 1px 0 var(--color-border), 0 4px 20px rgba(0,0,0,0.4);
}

.navbar__container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--container-pad);
}

.navbar__logo {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  flex-shrink: 0;
}

.navbar__logo-icon {
  flex-shrink: 0;
}

.navbar__logo-text {
  font-family: var(--font-heading);
  font-size: 1.125rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--color-text);
}

.navbar__logo-accent {
  color: var(--color-accent);
}

.navbar__nav {
  display: none;
}

.navbar__links {
  display: flex;
  gap: 0.25rem;
}

.navbar__link {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--color-text-muted);
  padding: 0.5rem 0.875rem;
  border-radius: var(--radius-full);
  transition: color var(--transition), background var(--transition);
}

.navbar__link:hover,
.navbar__link.navbar__link--active {
  color: var(--color-text);
  background: rgba(255, 255, 255, 0.06);
}

.navbar__link--active {
  color: var(--color-accent) !important;
}

.navbar__actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.navbar__hamburger {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 36px;
  height: 36px;
  padding: 6px;
  border-radius: var(--radius-sm);
  transition: background var(--transition);
}

.navbar__hamburger:hover {
  background: rgba(255, 255, 255, 0.06);
}

.navbar__hamburger-line {
  display: block;
  width: 100%;
  height: 1.5px;
  background: var(--color-text);
  border-radius: 2px;
  transition: all var(--transition);
}

.navbar__hamburger.is-open .navbar__hamburger-line:nth-child(1) {
  transform: translateY(6.5px) rotate(45deg);
}
.navbar__hamburger.is-open .navbar__hamburger-line:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}
.navbar__hamburger.is-open .navbar__hamburger-line:nth-child(3) {
  transform: translateY(-6.5px) rotate(-45deg);
}

/* Mobile menu */
.navbar__mobile {
  display: none;
  background: rgba(10, 15, 30, 0.97);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-top: 1px solid var(--color-border);
  padding: 1.25rem var(--container-pad) 2rem;
}

.navbar__mobile.is-open {
  display: block;
}

.navbar__mobile-links {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.navbar__mobile-link {
  display: block;
  font-size: 1rem;
  font-weight: 500;
  color: var(--color-text-muted);
  padding: 0.75rem 1rem;
  border-radius: var(--radius-sm);
  transition: all var(--transition);
}

.navbar__mobile-link:hover {
  color: var(--color-text);
  background: rgba(255, 255, 255, 0.05);
}

.navbar__mobile-links li:last-child {
  margin-top: 1rem;
}

/* ─── 7. Hero ─── */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  padding: calc(var(--navbar-h) + 3rem) 0 4rem;
  overflow: hidden;
}

.hero__bg-grid {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(255,255,255,0.04) 1px, transparent 1px);
  background-size: 42px 42px;
  pointer-events: none;
  mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black, transparent);
  -webkit-mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black, transparent);
}

.hero__glow {
  position: absolute;
  top: 10%;
  left: 20%;
  width: 60vw;
  height: 60vw;
  max-width: 700px;
  max-height: 700px;
  background: radial-gradient(circle, rgba(5, 254, 130, 0.08) 0%, transparent 60%);
  pointer-events: none;
}

.hero__layout {
  display: flex;
  flex-direction: column;
  gap: 3rem;
  position: relative;
  z-index: 1;
}

/* Hero text */
.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--color-accent);
  background: rgba(5, 254, 130, 0.1);
  border: 1px solid rgba(5, 254, 130, 0.2);
  padding: 0.4rem 1rem;
  border-radius: var(--radius-full);
  margin-bottom: 1.5rem;
  width: fit-content;
}

.hero__badge-dot {
  width: 6px;
  height: 6px;
  background: var(--color-accent);
  border-radius: 50%;
  animation: pulse-dot 2s ease infinite;
  flex-shrink: 0;
}

@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.8); }
}

.hero__title {
  font-family: var(--font-heading);
  font-size: clamp(2.25rem, 6vw, 4rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.03em;
  margin-bottom: 1.25rem;
}

.hero__title-accent {
  color: var(--color-accent);
}

.hero__subtitle {
  font-size: clamp(1rem, 2vw, 1.125rem);
  color: var(--color-text-muted);
  line-height: 1.7;
  max-width: 520px;
  margin-bottom: 2rem;
}

.hero__ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 0.875rem;
  margin-bottom: 2.5rem;
}

.hero__trust {
  display: flex;
  align-items: center;
  gap: 0.875rem;
}

.hero__avatars {
  display: flex;
}

.hero__avatar {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 2px solid var(--color-bg);
  margin-left: -8px;
  display: block;
}

.hero__avatar:first-child { margin-left: 0; }

.hero__avatar--1 { background: linear-gradient(135deg, #34d399, #059669); }
.hero__avatar--2 { background: linear-gradient(135deg, #60a5fa, #2563eb); }
.hero__avatar--3 { background: linear-gradient(135deg, #f472b6, #db2777); }
.hero__avatar--4 { background: linear-gradient(135deg, #fb923c, #ea580c); }

.hero__trust-text {
  font-size: 0.875rem;
  color: var(--color-text-muted);
}

.hero__trust-text strong {
  color: var(--color-text);
}

/* Hero Visual */
.hero__visual {
  position: relative;
  width: 100%;
}

/* Floating stat cards */
.stat-card {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 0.625rem;
  background: rgba(17, 24, 39, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: 0.625rem 0.875rem;
  z-index: 10;
  box-shadow: var(--shadow-md);
}

.stat-card--1 {
  top: -1rem;
  left: -1rem;
  animation: float-1 4s ease-in-out infinite;
}

.stat-card--2 {
  top: 1.5rem;
  right: -0.5rem;
  animation: float-2 4.5s ease-in-out infinite 0.5s;
}

.stat-card--3 {
  bottom: -0.5rem;
  left: 10%;
  animation: float-3 5s ease-in-out infinite 1s;
}

@keyframes float-1 {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}
@keyframes float-2 {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}
@keyframes float-3 {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

.stat-card__icon {
  width: 30px;
  height: 30px;
  background: rgba(5, 254, 130, 0.12);
  border-radius: var(--radius-xs);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.stat-card__value {
  font-family: var(--font-heading);
  font-size: 0.9375rem;
  font-weight: 700;
  color: var(--color-text);
  line-height: 1;
}

.stat-card__label {
  font-size: 0.7rem;
  color: var(--color-text-muted);
  white-space: nowrap;
}

/* Dashboard */
.dashboard {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg), 0 0 0 1px var(--color-border);
}

.dashboard__header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.875rem 1rem;
  border-bottom: 1px solid var(--color-border);
  background: var(--color-surface-2);
}

.dashboard__window-controls {
  display: flex;
  gap: 6px;
  flex-shrink: 0;
}

.dashboard__window-controls span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
}

.dashboard__window-controls span:nth-child(1) { background: #ff5f57; }
.dashboard__window-controls span:nth-child(2) { background: #febc2e; }
.dashboard__window-controls span:nth-child(3) { background: #28c840; }

.dashboard__tabs {
  display: flex;
  gap: 0.25rem;
  flex: 1;
}

.dashboard__tab {
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--color-grey);
  padding: 0.35rem 0.75rem;
  border-radius: var(--radius-xs);
  transition: all var(--transition-fast);
  white-space: nowrap;
}

.dashboard__tab:hover {
  color: var(--color-text-muted);
  background: rgba(255,255,255,0.05);
}

.dashboard__tab--active {
  color: var(--color-text) !important;
  background: rgba(255,255,255,0.08) !important;
}

.dashboard__live {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.72rem;
  font-weight: 500;
  color: var(--color-accent);
  margin-left: auto;
  flex-shrink: 0;
}

.dashboard__live-dot {
  width: 6px;
  height: 6px;
  background: var(--color-accent);
  border-radius: 50%;
  animation: pulse-dot 2s ease infinite;
}

.dashboard__body {
  padding: 1.25rem;
}

/* Dashboard panels */
.dashboard__panel {
  display: none;
}

.dashboard__panel--active {
  display: block;
}

/* Website panel */
.dashboard__metrics {
  display: flex;
  gap: 0.75rem;
  margin-bottom: 1.25rem;
}

.dashboard__metric {
  flex: 1;
  background: var(--color-surface-2);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  padding: 0.75rem;
}

.dashboard__metric-label {
  display: block;
  font-size: 0.68rem;
  color: var(--color-grey);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 0.35rem;
}

.dashboard__metric-value {
  display: block;
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--color-text);
  line-height: 1;
  margin-bottom: 0.3rem;
}

.dashboard__metric-change {
  font-size: 0.7rem;
  font-weight: 600;
  color: var(--color-accent);
}

.dashboard__chart {
  background: var(--color-surface-2);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  padding: 1rem;
}

.chart-svg {
  width: 100%;
  height: auto;
}

.chart__line {
  stroke-dasharray: 600;
  stroke-dashoffset: 600;
  transition: stroke-dashoffset 1.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.chart__line.animated {
  stroke-dashoffset: 0;
}

.chart__area {
  opacity: 0;
  transition: opacity 0.8s ease 0.5s;
}

.chart__area.animated {
  opacity: 1;
}

.dashboard__chart-labels {
  display: flex;
  justify-content: space-between;
  margin-top: 0.5rem;
}

.dashboard__chart-labels span {
  font-size: 0.65rem;
  color: var(--color-grey);
}

/* AI panel */
.ai-chat {
  margin-bottom: 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
}

.ai-chat__message {
  display: flex;
  gap: 0.5rem;
  align-items: flex-start;
}

.ai-chat__message--user {
  justify-content: flex-end;
}

.ai-chat__message--user .ai-chat__bubble,
.ai-chat__message--user {
  font-size: 0.8rem;
  background: rgba(5, 254, 130, 0.12);
  border: 1px solid rgba(5, 254, 130, 0.2);
  color: var(--color-text);
  padding: 0.5rem 0.75rem;
  border-radius: 12px 12px 3px 12px;
  max-width: 80%;
  line-height: 1.4;
}

.ai-chat__bubble {
  font-size: 0.8rem;
  background: var(--color-surface-2);
  border: 1px solid var(--color-border);
  color: var(--color-text-muted);
  padding: 0.5rem 0.75rem;
  border-radius: 3px 12px 12px 12px;
  max-width: 80%;
  line-height: 1.4;
}

.ai-chat__bot-label {
  font-size: 0.6rem;
  font-weight: 700;
  color: var(--color-accent);
  background: rgba(5, 254, 130, 0.12);
  border: 1px solid rgba(5, 254, 130, 0.2);
  width: 26px;
  height: 26px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  letter-spacing: 0.02em;
}

.typing-indicator {
  display: flex;
  gap: 3px;
  align-items: center;
  padding: 0.25rem 0;
}

.typing-indicator span {
  width: 5px;
  height: 5px;
  background: var(--color-grey);
  border-radius: 50%;
  animation: typing 1.4s ease infinite;
}

.typing-indicator span:nth-child(2) { animation-delay: 0.2s; }
.typing-indicator span:nth-child(3) { animation-delay: 0.4s; }

@keyframes typing {
  0%, 60%, 100% { transform: translateY(0); opacity: 0.4; }
  30% { transform: translateY(-4px); opacity: 1; }
}

.ai-stats {
  display: flex;
  gap: 0.75rem;
}

.ai-stat {
  flex: 1;
  background: var(--color-surface-2);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  padding: 0.75rem;
  text-align: center;
}

.ai-stat__value {
  display: block;
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--color-accent);
  line-height: 1;
  margin-bottom: 0.3rem;
}

.ai-stat__label {
  font-size: 0.7rem;
  color: var(--color-grey);
}

/* Flow/Automations panel */
.flow {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0;
  margin-bottom: 1rem;
}

.flow__step {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  padding: 0.625rem 0.75rem;
  border-radius: var(--radius-sm);
  border: 1px solid var(--color-border);
  background: var(--color-surface-2);
  font-size: 0.8rem;
  color: var(--color-text-muted);
  width: 100%;
  transition: all var(--transition);
}

.flow__step--active {
  border-color: rgba(5, 254, 130, 0.3);
  background: rgba(5, 254, 130, 0.07);
  color: var(--color-text);
}

.flow__icon {
  width: 24px;
  height: 24px;
  background: rgba(5, 254, 130, 0.1);
  border-radius: var(--radius-xs);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.flow__check {
  margin-left: auto;
  color: var(--color-accent);
  font-size: 0.75rem;
  font-weight: 700;
}

.flow__connector {
  width: 1px;
  height: 12px;
  background: rgba(5, 254, 130, 0.25);
  margin-left: 1.25rem;
}

.flow__footer {
  margin-top: 0.75rem;
}

.flow__badge {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--color-accent);
  background: rgba(5, 254, 130, 0.1);
  border: 1px solid rgba(5, 254, 130, 0.2);
  padding: 0.3rem 0.75rem;
  border-radius: var(--radius-full);
}

/* ─── 8. Ticker ─── */
.ticker {
  position: relative;
  overflow: hidden;
  padding: 1.5rem 0;
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
  background: var(--color-surface);
}

.ticker__fade {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 120px;
  z-index: 2;
  pointer-events: none;
}

.ticker__fade--left {
  left: 0;
  background: linear-gradient(to right, var(--color-surface), transparent);
}

.ticker__fade--right {
  right: 0;
  background: linear-gradient(to left, var(--color-surface), transparent);
}

.ticker__track {
  display: flex;
  width: max-content;
  animation: ticker-scroll 30s linear infinite;
}

.ticker__track:hover {
  animation-play-state: paused;
}

@keyframes ticker-scroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.ticker__list {
  display: flex;
  align-items: center;
  gap: 0;
  padding: 0 1.5rem;
  white-space: nowrap;
}

.ticker__item {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--color-grey);
  padding: 0.35rem 1.5rem;
  transition: color var(--transition);
}

.ticker__item:hover {
  color: var(--color-text-muted);
}

.ticker__dot {
  color: rgba(5, 254, 130, 0.4);
  font-size: 1rem;
}

/* ─── 9. Process ─── */
.process__steps {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  position: relative;
}

.process__step {
  display: flex;
  gap: 1.5rem;
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 2rem;
  transition: border-color var(--transition), box-shadow var(--transition);
}

.process__step:hover {
  border-color: rgba(5, 254, 130, 0.2);
  box-shadow: 0 0 0 1px rgba(5, 254, 130, 0.05), var(--shadow-md);
}

.process__step-number {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  font-weight: 800;
  color: rgba(5, 254, 130, 0.12);
  line-height: 1;
  flex-shrink: 0;
  min-width: 3rem;
  letter-spacing: -0.03em;
}

.process__step-content {
  flex: 1;
}

.process__step-icon {
  width: 44px;
  height: 44px;
  background: rgba(5, 254, 130, 0.1);
  border: 1px solid rgba(5, 254, 130, 0.15);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-accent);
  margin-bottom: 1rem;
}

.process__step-title {
  font-family: var(--font-heading);
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--color-text);
  margin-bottom: 0.625rem;
  letter-spacing: -0.01em;
}

.process__step-desc {
  font-size: 0.9375rem;
  color: var(--color-text-muted);
  line-height: 1.65;
}

/* ─── 10. Services / Diensten ─── */
.diensten {
  background: radial-gradient(ellipse 60% 50% at 50% 100%, rgba(5,254,130,0.04) 0%, transparent 70%);
}

.diensten__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}

.diensten__card {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 2rem;
  transition: all var(--transition-slow);
  position: relative;
  overflow: hidden;
}

.diensten__card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(5,254,130,0.03) 0%, transparent 60%);
  opacity: 0;
  transition: opacity var(--transition-slow);
}

.diensten__card:hover {
  border-color: rgba(5, 254, 130, 0.2);
  transform: translateY(-3px);
  box-shadow: var(--shadow-glow), var(--shadow-md);
}

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

.diensten__card-icon {
  width: 52px;
  height: 52px;
  background: rgba(5, 254, 130, 0.1);
  border: 1px solid rgba(5, 254, 130, 0.15);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-accent);
  margin-bottom: 1.25rem;
}

.diensten__card-title {
  font-family: var(--font-heading);
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--color-text);
  margin-bottom: 0.75rem;
  letter-spacing: -0.01em;
}

.diensten__card-desc {
  font-size: 0.9375rem;
  color: var(--color-text-muted);
  line-height: 1.65;
  margin-bottom: 1.25rem;
}

.diensten__card-features {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.diensten__card-features li {
  font-size: 0.85rem;
  color: var(--color-text-muted);
  padding-left: 1.25rem;
  position: relative;
}

.diensten__card-features li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 5px;
  height: 5px;
  background: var(--color-accent);
  border-radius: 50%;
}

/* ─── 11. Pricing ─── */
.pricing {
  background: radial-gradient(ellipse 70% 60% at 50% 0%, rgba(5,254,130,0.05) 0%, transparent 70%);
}

.pricing__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
  align-items: start;
}

.pricing__card {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-xl);
  padding: 2rem;
  position: relative;
  transition: all var(--transition-slow);
}

.pricing__card:hover {
  border-color: var(--color-border-hover);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.pricing__card--featured {
  border-color: rgba(5, 254, 130, 0.35);
  background: linear-gradient(160deg, rgba(5,254,130,0.06) 0%, var(--color-surface) 50%);
  box-shadow: var(--shadow-glow), var(--shadow-md);
}

.pricing__card--featured:hover {
  border-color: rgba(5, 254, 130, 0.5);
  box-shadow: var(--shadow-glow-lg), var(--shadow-lg);
}

.pricing__popular-badge {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--color-bg);
  background: var(--color-accent);
  padding: 0.25rem 0.75rem;
  border-radius: var(--radius-full);
  margin-bottom: 1.25rem;
  letter-spacing: 0.04em;
}

.pricing__card-header {
  margin-bottom: 1.25rem;
}

.pricing__plan-name {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--color-text);
  margin-bottom: 0.75rem;
  letter-spacing: -0.02em;
}

.pricing__price {
  display: flex;
  align-items: baseline;
  gap: 0.15rem;
  margin-bottom: 0.25rem;
}

.pricing__currency {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--color-text-muted);
}

.pricing__amount {
  font-family: var(--font-heading);
  font-size: 2.75rem;
  font-weight: 800;
  color: var(--color-text);
  letter-spacing: -0.04em;
  line-height: 1;
}

.pricing__period {
  font-size: 1rem;
  color: var(--color-text-muted);
  margin-left: 0.1rem;
}

.pricing__price-note {
  font-size: 0.78rem;
  color: var(--color-grey);
}

.pricing__desc {
  font-size: 0.9rem;
  color: var(--color-text-muted);
  line-height: 1.6;
  margin-bottom: 1.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--color-border);
}

.pricing__features {
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
  margin-bottom: 1.75rem;
}

.pricing__feature {
  display: flex;
  align-items: flex-start;
  gap: 0.625rem;
  font-size: 0.875rem;
  line-height: 1.4;
}

.pricing__feature::before {
  content: '';
  flex-shrink: 0;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  margin-top: 1px;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}

.pricing__feature--yes {
  color: var(--color-text-muted);
}

.pricing__feature--yes::before {
  background-color: rgba(5, 254, 130, 0.15);
  background-image: url("data:image/svg+xml,%3Csvg width='10' height='10' viewBox='0 0 10 10' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M2 5l2 2 4-4' stroke='%2305FE82' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
}

.pricing__feature--no {
  color: var(--color-grey);
  opacity: 0.6;
}

.pricing__feature--no::before {
  background-color: rgba(107, 114, 128, 0.1);
  background-image: url("data:image/svg+xml,%3Csvg width='10' height='10' viewBox='0 0 10 10' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M3 3l4 4M7 3L3 7' stroke='%236B7280' stroke-width='1.5' stroke-linecap='round'/%3E%3C/svg%3E");
}

.pricing__footnote {
  font-size: 0.825rem;
  color: var(--color-grey);
  text-align: center;
  margin-top: 2.5rem;
  line-height: 1.6;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* ─── 12. Social Proof ─── */
.stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  padding: 2rem;
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-xl);
  margin-bottom: 2rem;
}

.stats__item {
  text-align: center;
  padding: 1rem;
}

.stats__number {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 5vw, 2.75rem);
  font-weight: 800;
  color: var(--color-accent);
  letter-spacing: -0.04em;
  line-height: 1;
}

.stats__suffix {
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 800;
  color: var(--color-accent);
  letter-spacing: -0.04em;
}

.stats__label {
  display: block;
  font-size: 0.825rem;
  color: var(--color-text-muted);
  margin-top: 0.4rem;
  line-height: 1.3;
}

.testimonials__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}

.testimonial {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 2rem;
  transition: all var(--transition-slow);
}

.testimonial:hover {
  border-color: var(--color-border-hover);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.testimonial__stars {
  color: #FBBF24;
  font-size: 0.875rem;
  margin-bottom: 1rem;
  letter-spacing: 0.1em;
}

.testimonial__quote {
  font-size: 0.9375rem;
  color: var(--color-text-muted);
  line-height: 1.7;
  font-style: normal;
  margin-bottom: 1.5rem;
  border: none;
  padding: 0;
}

.testimonial__quote::before {
  content: '"';
  font-family: var(--font-heading);
  font-size: 1.5rem;
  color: var(--color-accent);
  line-height: 0;
  vertical-align: -0.4em;
  margin-right: 0.1em;
}

.testimonial__author {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.testimonial__avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(5, 254, 130, 0.12);
  border: 1px solid rgba(5, 254, 130, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.65rem;
  font-weight: 700;
  color: var(--color-accent);
  flex-shrink: 0;
  letter-spacing: 0.02em;
}

.testimonial__name {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--color-text);
}

.testimonial__role {
  font-size: 0.8rem;
  color: var(--color-grey);
}

/* ─── 13. FAQ ─── */
.faq {
  background: radial-gradient(ellipse 60% 50% at 50% 0%, rgba(5,254,130,0.04) 0%, transparent 70%);
}

.faq__list {
  max-width: 740px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
}

.faq__item {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: border-color var(--transition);
}

.faq__item:has(.faq__question[aria-expanded="true"]) {
  border-color: rgba(5, 254, 130, 0.2);
}

.faq__question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.25rem 1.5rem;
  text-align: left;
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--color-text);
  transition: color var(--transition);
}

.faq__question:hover {
  color: var(--color-accent);
}

.faq__icon {
  flex-shrink: 0;
  color: var(--color-grey);
  transition: transform var(--transition), color var(--transition);
}

.faq__question[aria-expanded="true"] .faq__icon {
  transform: rotate(180deg);
  color: var(--color-accent);
}

.faq__answer {
  padding: 0 1.5rem 1.25rem;
}

.faq__answer p {
  font-size: 0.9375rem;
  color: var(--color-text-muted);
  line-height: 1.7;
}

/* ─── 14. CTA Section ─── */
.cta-section {
  padding: 4rem 0 6rem;
}

.cta-section__inner {
  position: relative;
  background: var(--color-surface);
  border: 1px solid rgba(5, 254, 130, 0.2);
  border-radius: var(--radius-xl);
  padding: 4rem 2rem;
  text-align: center;
  overflow: hidden;
}

.cta-section__glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 600px;
  height: 300px;
  background: radial-gradient(ellipse, rgba(5,254,130,0.1) 0%, transparent 70%);
  pointer-events: none;
}

.cta-section__title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 5vw, 3.25rem);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.03em;
  color: var(--color-text);
  margin-bottom: 1.25rem;
  position: relative;
  z-index: 1;
}

.cta-section__title-accent {
  color: var(--color-accent);
}

.cta-section__subtitle {
  font-size: clamp(0.9375rem, 2vw, 1.0625rem);
  color: var(--color-text-muted);
  line-height: 1.7;
  max-width: 520px;
  margin: 0 auto 2.5rem;
  position: relative;
  z-index: 1;
}

.cta-section__actions {
  margin-bottom: 1.5rem;
  position: relative;
  z-index: 1;
}

.cta-section__trust {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-size: 0.825rem;
  color: var(--color-grey);
  position: relative;
  z-index: 1;
}

/* ─── 15. Footer ─── */
.footer {
  background: var(--color-surface);
  border-top: 1px solid var(--color-border);
  padding: 4rem 0 2rem;
}

.footer__inner {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
  margin-bottom: 3rem;
}

.footer__logo {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  width: fit-content;
}

.footer__logo-text {
  font-family: var(--font-heading);
  font-size: 1.0625rem;
  font-weight: 700;
  color: var(--color-text);
  letter-spacing: -0.02em;
}

.footer__logo-accent {
  color: var(--color-accent);
}

.footer__tagline {
  margin-top: 0.75rem;
  font-size: 0.875rem;
  color: var(--color-grey);
}

.footer__nav {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}

.footer__nav-title {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--color-text);
  margin-bottom: 0.875rem;
}

.footer__nav-group ul {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.footer__nav-link {
  font-size: 0.875rem;
  color: var(--color-grey);
  transition: color var(--transition);
}

.footer__nav-link:hover {
  color: var(--color-text);
}

.footer__social-links {
  display: flex;
  gap: 0.75rem;
  margin-top: 0.5rem;
}

.footer__social-link {
  width: 38px;
  height: 38px;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-grey);
  transition: all var(--transition);
}

.footer__social-link:hover {
  border-color: rgba(5, 254, 130, 0.3);
  color: var(--color-accent);
  background: rgba(5, 254, 130, 0.06);
}

.footer__bottom {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  padding-top: 2rem;
  border-top: 1px solid var(--color-border);
}

.footer__copyright {
  font-size: 0.825rem;
  color: var(--color-grey);
}

.footer__powered {
  font-size: 0.8rem;
  color: var(--color-grey);
  opacity: 0.6;
  text-align: center;
}

.footer__legal {
  display: flex;
  gap: 1.25rem;
}

.footer__legal-link {
  font-size: 0.825rem;
  color: var(--color-grey);
  transition: color var(--transition);
}

.footer__legal-link:hover {
  color: var(--color-text);
}

/* ─── 16. Media Queries ─── */

/* Tablet — 640px */
@media (min-width: 640px) {
  :root {
    --container-pad: 1.75rem;
  }

  .stats {
    grid-template-columns: repeat(4, 1fr);
  }

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

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

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

  .footer__inner {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-between;
  }

  .footer__bottom {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }

  .cta-section__inner {
    padding: 5rem 3rem;
  }
}

/* Desktop — 1024px */
@media (min-width: 1024px) {
  :root {
    --container-pad: 2rem;
    --section-pad: 7rem 0;
  }

  .navbar__nav {
    display: flex;
    align-items: center;
  }

  .navbar__hamburger {
    display: none;
  }

  .hero {
    padding: calc(var(--navbar-h) + 4rem) 0 6rem;
  }

  .hero__layout {
    flex-direction: row;
    align-items: center;
    gap: 3rem;
  }

  .hero__text {
    flex: 1;
    max-width: 540px;
  }

  .hero__visual {
    flex: 1;
    max-width: 540px;
    padding: 2.5rem 1.5rem 1.5rem;
  }

  .process__steps {
    grid-template-columns: repeat(4, 1fr);
  }

  .process__step {
    flex-direction: column;
    gap: 1rem;
  }

  .diensten__grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .pricing__grid {
    grid-template-columns: repeat(3, 1fr);
    align-items: stretch;
  }

  .testimonials__grid {
    grid-template-columns: repeat(3, 1fr);
  }

  /* footer__nav becomes transparent wrapper so its 3 groups sit directly in the parent grid */
  .footer__nav {
    display: contents;
  }

  .footer__inner {
    display: grid;
    grid-template-columns: 2fr 1fr 1.5fr 1fr 1fr;
    gap: 2.5rem;
    align-items: start;
  }
}

/* Large Desktop — 1280px */
@media (min-width: 1280px) {
  :root {
    --container-max: 1240px;
  }
}

/* ─── 17. Reduced Motion ─── */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  html {
    scroll-behavior: auto;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}

/* ═══════════════════════════════════════
   18. VOOR WIE SECTION
═══════════════════════════════════════ */
.voor-wie {
  background: radial-gradient(ellipse 60% 50% at 50% 100%, rgba(5,254,130,0.04) 0%, transparent 70%);
}

.voor-wie__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}

.voor-wie__card {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  display: flex;
  align-items: flex-start;
  gap: 1.25rem;
  transition: all var(--transition-slow);
}

.voor-wie__card:hover {
  border-color: rgba(5, 254, 130, 0.2);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.voor-wie__icon {
  width: 46px;
  height: 46px;
  background: rgba(5, 254, 130, 0.08);
  border: 1px solid rgba(5, 254, 130, 0.12);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.voor-wie__title {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 600;
  color: var(--color-text);
  margin-bottom: 0.375rem;
  letter-spacing: -0.01em;
}

.voor-wie__desc {
  font-size: 0.875rem;
  color: var(--color-text-muted);
  line-height: 1.65;
}

.voor-wie__not-for {
  margin-top: 2.5rem;
  padding: 1.5rem 1.75rem;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  gap: 1.25rem;
  flex-wrap: wrap;
}

.voor-wie__not-for-title {
  font-size: 0.825rem;
  font-weight: 600;
  color: var(--color-text-muted);
  white-space: nowrap;
  flex-shrink: 0;
}

.voor-wie__not-for-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.voor-wie__not-for-item {
  font-size: 0.8rem;
  color: var(--color-grey);
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--color-border);
  padding: 0.275rem 0.75rem;
  border-radius: var(--radius-full);
}

/* Pricing plan sub-label (replaces price display) */
.pricing__plan-sub {
  font-size: 0.8rem;
  color: var(--color-grey);
  margin-top: 0.25rem;
}

@media (min-width: 640px) {
  .voor-wie__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .voor-wie__grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* ═══════════════════════════════════════
   19. WHATSAPP BUTTON
═══════════════════════════════════════ */
.wa-button {
  position: fixed;
  bottom: 1.75rem;
  right: 1.75rem;
  z-index: 90;
  width: 56px;
  height: 56px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.45);
  transition: transform var(--transition), box-shadow var(--transition);
  animation: wa-entrance 0.5s ease 1.5s both;
}

@keyframes wa-entrance {
  from { opacity: 0; transform: scale(0.5); }
  to { opacity: 1; transform: scale(1); }
}

.wa-button:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 30px rgba(37, 211, 102, 0.65);
}

.wa-button__tooltip {
  position: absolute;
  right: calc(100% + 12px);
  background: var(--color-surface);
  color: var(--color-text);
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 500;
  white-space: nowrap;
  padding: 0.4rem 0.875rem;
  border-radius: var(--radius-sm);
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-sm);
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition);
}

.wa-button:hover .wa-button__tooltip {
  opacity: 1;
}

/* ═══════════════════════════════════════
   19. COOKIE BANNER
═══════════════════════════════════════ */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 200;
  background: rgba(17, 24, 39, 0.97);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-top: 1px solid var(--color-border);
  padding: 1.125rem var(--container-pad);
  transform: translateY(100%);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.cookie-banner.is-visible {
  transform: translateY(0);
}

.cookie-banner__inner {
  max-width: var(--container-max);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.cookie-banner__text {
  font-size: 0.875rem;
  color: var(--color-text-muted);
  flex: 1;
  min-width: 220px;
  line-height: 1.5;
}

.cookie-banner__text a {
  color: var(--color-accent);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.cookie-banner__actions {
  display: flex;
  gap: 0.625rem;
  flex-shrink: 0;
}

/* ═══════════════════════════════════════
   20. MODAL & INTAKE FORM
═══════════════════════════════════════ */
.modal {
  position: fixed;
  inset: 0;
  z-index: 300;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease;
}

.modal.is-open {
  opacity: 1;
  pointer-events: all;
}

.modal__overlay {
  position: absolute;
  inset: 0;
  background: rgba(5, 8, 20, 0.88);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}

.modal__card {
  position: relative;
  z-index: 1;
  background: var(--color-surface);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-xl);
  padding: 2.5rem;
  width: 100%;
  max-width: 600px;
  max-height: 92svh;
  overflow-y: auto;
  transform: translateY(24px) scale(0.98);
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.7), 0 0 0 1px rgba(255,255,255,0.05);
  scrollbar-width: thin;
  scrollbar-color: var(--color-border) transparent;
}

.modal.is-open .modal__card {
  transform: translateY(0) scale(1);
}

.modal__close {
  position: absolute;
  top: 1.25rem;
  right: 1.25rem;
  width: 32px;
  height: 32px;
  border-radius: var(--radius-xs);
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--color-border);
  color: var(--color-text-muted);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition-fast);
  cursor: pointer;
}

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

.modal__header {
  margin-bottom: 2rem;
  padding-right: 2.5rem;
}

.modal__title {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--color-text);
  margin-bottom: 0.5rem;
  letter-spacing: -0.02em;
}

.modal__subtitle {
  font-size: 0.9rem;
  color: var(--color-text-muted);
  line-height: 1.55;
}

/* Form layout */
.form__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.form__group {
  display: flex;
  flex-direction: column;
  gap: 0.375rem;
  margin-bottom: 1rem;
}

.form__label {
  font-size: 0.825rem;
  font-weight: 600;
  color: var(--color-text);
}

.form__label-optional {
  font-weight: 400;
  color: var(--color-grey);
}

.form__input,
.form__select,
.form__textarea {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-sm);
  color: var(--color-text);
  font-family: var(--font-body);
  font-size: 0.9375rem;
  padding: 0.75rem 1rem;
  transition: border-color var(--transition), background var(--transition), box-shadow var(--transition);
  width: 100%;
  outline: none;
}

.form__input:focus,
.form__select:focus,
.form__textarea:focus {
  border-color: rgba(5, 254, 130, 0.5);
  background: rgba(5, 254, 130, 0.04);
  box-shadow: 0 0 0 3px rgba(5, 254, 130, 0.08);
}

.form__input:invalid:not(:placeholder-shown),
.form__select:invalid:not(:placeholder-shown) {
  border-color: rgba(239, 68, 68, 0.4);
}

.form__input::placeholder,
.form__textarea::placeholder {
  color: var(--color-grey);
}

.form__select {
  cursor: pointer;
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%236B7280' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem;
}

.form__select option {
  background: #111827;
  color: var(--color-text);
}

.form__textarea {
  resize: vertical;
  min-height: 80px;
}

.form__submit {
  margin-top: 0.25rem;
}

.form__disclaimer {
  font-size: 0.78rem;
  color: var(--color-grey);
  text-align: center;
  margin-top: 0.875rem;
  line-height: 1.5;
}

.form__link {
  color: var(--color-accent);
  text-decoration: underline;
  text-underline-offset: 2px;
}

/* Success state */
.modal__success {
  text-align: center;
  padding: 1.5rem 0;
}

.success__icon {
  width: 68px;
  height: 68px;
  background: rgba(5, 254, 130, 0.1);
  border: 2px solid rgba(5, 254, 130, 0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
}

.modal__success h3 {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--color-text);
  margin-bottom: 0.75rem;
  letter-spacing: -0.02em;
}

.modal__success p {
  font-size: 0.9375rem;
  color: var(--color-text-muted);
  line-height: 1.65;
  max-width: 380px;
  margin: 0 auto;
}

/* ─── Mobile overrides for new components ─── */
@media (max-width: 639px) {
  .form__row {
    grid-template-columns: 1fr;
  }

  .modal__card {
    padding: 1.75rem 1.25rem;
    border-radius: var(--radius-lg);
  }

  .cookie-banner__inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }

  .cookie-banner__actions {
    width: 100%;
    justify-content: flex-end;
  }

  .wa-button {
    bottom: 1.25rem;
    right: 1.25rem;
    width: 50px;
    height: 50px;
  }
}

/* ═══════════════════════════════════════
   LIGHT THEME — Element-specific overrides
═══════════════════════════════════════ */

html[data-theme="light"] body {
  background-color: var(--color-bg);
  color: var(--color-text);
}

html[data-theme="light"] .navbar--scrolled {
  background: rgba(245, 247, 250, 0.92);
  box-shadow: 0 1px 0 rgba(0,0,0,0.08), 0 4px 20px rgba(0,0,0,0.1);
}

html[data-theme="light"] .hero__bg-grid {
  background-image: linear-gradient(rgba(0,0,0,0.04) 1px, transparent 1px),
                    linear-gradient(90deg, rgba(0,0,0,0.04) 1px, transparent 1px);
}

html[data-theme="light"] .hero__glow {
  background: radial-gradient(circle, rgba(5, 254, 130, 0.07) 0%, transparent 60%);
}

html[data-theme="light"] .pricing__card--featured {
  background: linear-gradient(160deg, rgba(5,254,130,0.04) 0%, var(--color-surface) 50%);
}

html[data-theme="light"] .process__step-number {
  color: rgba(5, 254, 130, 0.22);
}

html[data-theme="light"] .ticker {
  background: var(--color-surface);
  border-color: var(--color-border);
}

html[data-theme="light"] .ticker__fade--left {
  background: linear-gradient(to right, var(--color-surface), transparent);
}

html[data-theme="light"] .ticker__fade--right {
  background: linear-gradient(to left, var(--color-surface), transparent);
}

html[data-theme="light"] .cta-section__inner {
  background: var(--color-surface);
}

/* ═══════════════════════════════════════
   NAVBAR TOGGLES — Theme & Language
═══════════════════════════════════════ */

.navbar__theme-toggle,
.navbar__lang-toggle {
  background: none;
  border: 1px solid var(--color-border);
  color: var(--color-text-muted);
  border-radius: var(--radius-xs);
  padding: 0.4rem 0.55rem;
  cursor: pointer;
  font-size: 0.75rem;
  font-family: var(--font-body);
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.3rem;
  transition: border-color var(--transition-fast), color var(--transition-fast), background var(--transition-fast);
  line-height: 1;
  letter-spacing: 0.03em;
  flex-shrink: 0;
}

.navbar__theme-toggle {
  width: 32px;
  height: 32px;
  padding: 0;
}

.navbar__lang-toggle {
  min-width: 36px;
  height: 32px;
}

.navbar__theme-toggle:hover,
.navbar__lang-toggle:hover {
  border-color: var(--color-accent);
  color: var(--color-accent);
  background: var(--color-accent-glow);
}

/* Hide on mobile — shown in mobile menu instead */
@media (max-width: 767px) {
  .navbar__theme-toggle,
  .navbar__lang-toggle {
    display: none;
  }
}

/* Mobile menu versions */
.navbar__mobile-toggles {
  display: flex;
  gap: 0.5rem;
  padding: 0.75rem 0 0.25rem;
}

.navbar__mobile-toggles .navbar__theme-toggle,
.navbar__mobile-toggles .navbar__lang-toggle {
  display: flex;
}

/* ═══════════════════════════════════════
   LANG TOGGLE — FLAG EMOJI SIZE
═══════════════════════════════════════ */
#langLabel, #langLabelMobile {
  font-size: 1.1rem;
  line-height: 1;
}

/* ═══════════════════════════════════════
   LIGHT MODE — Comprehensive Overrides
═══════════════════════════════════════ */

/* Navbar interactive states */
html[data-theme="light"] .navbar__mobile {
  background: rgba(245, 247, 250, 0.97);
}

html[data-theme="light"] .navbar__link:hover,
html[data-theme="light"] .navbar__link.navbar__link--active {
  background: rgba(0, 0, 0, 0.05);
}

html[data-theme="light"] .navbar__hamburger:hover {
  background: rgba(0, 0, 0, 0.05);
}

html[data-theme="light"] .navbar__mobile-link:hover {
  background: rgba(0, 0, 0, 0.04);
}

/* Buttons */
html[data-theme="light"] .btn--ghost:hover {
  background: rgba(0, 0, 0, 0.04);
}

/* Dashboard widget — stat cards */
html[data-theme="light"] .stat-card {
  background: #ffffff;
  border-color: #e5e7eb;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

/* Dashboard tab interactive states */
html[data-theme="light"] .dashboard__tab:hover {
  background: rgba(0, 0, 0, 0.05);
  color: var(--color-text-muted);
}

html[data-theme="light"] .dashboard__tab--active {
  background: rgba(0, 0, 0, 0.07) !important;
  color: var(--color-text) !important;
}

/* Voor wie section */
html[data-theme="light"] .voor-wie__not-for {
  background: rgba(0, 0, 0, 0.02);
}

html[data-theme="light"] .voor-wie__not-for-item {
  background: rgba(0, 0, 0, 0.03);
}

/* Footer */
html[data-theme="light"] .footer__social-link {
  background: rgba(0, 0, 0, 0.04);
}

/* Cookie banner */
html[data-theme="light"] .cookie-banner {
  background: rgba(245, 247, 250, 0.97);
}

/* Modal */
html[data-theme="light"] .modal__card {
  border-color: rgba(0, 0, 0, 0.1);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2), 0 0 0 1px rgba(0, 0, 0, 0.05);
}

html[data-theme="light"] .modal__close {
  background: rgba(0, 0, 0, 0.05);
}

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

/* Form inputs */
html[data-theme="light"] .form__input,
html[data-theme="light"] .form__select,
html[data-theme="light"] .form__textarea {
  background: #ffffff;
  border-color: rgba(0, 0, 0, 0.12);
}

html[data-theme="light"] .form__select option {
  background: #ffffff;
  color: var(--color-text);
}

/* Radial bg gradients — tone down in light mode */
html[data-theme="light"] .pricing {
  background: radial-gradient(ellipse 70% 60% at 50% 0%, rgba(5,254,130,0.04) 0%, transparent 70%);
}

html[data-theme="light"] .faq {
  background: radial-gradient(ellipse 60% 50% at 50% 0%, rgba(5,254,130,0.03) 0%, transparent 70%);
}

html[data-theme="light"] .voor-wie {
  background: none;
}

html[data-theme="light"] .diensten {
  background: none;
}

/* ═══════════════════════════════════════
   MOBILE RESPONSIVENESS
═══════════════════════════════════════ */

/* Hero visual — add padding on non-desktop to contain floating stat cards */
@media (max-width: 1023px) {
  .hero__visual {
    padding: 2.5rem 0.75rem 2rem;
  }
}

/* Very small screens */
@media (max-width: 479px) {
  /* Hide floating stat cards — they overflow on tiny screens */
  .stat-card {
    display: none;
  }

  .hero__visual {
    padding: 0;
  }

  /* Stack CTA buttons vertically */
  .hero__ctas {
    flex-direction: column;
    align-items: stretch;
  }

  .hero__ctas .btn {
    width: 100%;
    justify-content: center;
  }

  /* Process steps: single column, compact */
  .process__step {
    padding: 1.5rem;
    gap: 1rem;
  }

  /* Pricing: already 1-col, reduce padding */
  .pricing__card {
    padding: 1.5rem;
  }

  /* Reduce section padding */
  :root {
    --section-pad: 4rem 0;
  }

  /* CTA section */
  .cta-section__inner {
    padding: 2.5rem 1.5rem;
  }
}

/* ═══════════════════════════════════════
   RESULTATEN SECTION
═══════════════════════════════════════ */
.resultaten {
  background: radial-gradient(ellipse 60% 50% at 50% 50%, rgba(5,254,130,0.04) 0%, transparent 70%);
}

.resultaten__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

@media (min-width: 640px) {
  .resultaten__grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.resultaten__card {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-xl);
  padding: 2.5rem 2rem;
  text-align: center;
  position: relative;
  overflow: hidden;
  transition: border-color var(--transition-slow), transform var(--transition-slow), box-shadow var(--transition-slow);
}

.resultaten__card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 180px;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(5,254,130,0.5), transparent);
}

.resultaten__card:hover {
  border-color: rgba(5, 254, 130, 0.25);
  transform: translateY(-3px);
  box-shadow: var(--shadow-glow), var(--shadow-md);
}

.resultaten__icon {
  width: 56px;
  height: 56px;
  background: rgba(5, 254, 130, 0.1);
  border: 1px solid rgba(5, 254, 130, 0.2);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  color: var(--color-accent);
}

.resultaten__metric {
  font-family: var(--font-heading);
  font-size: clamp(2.5rem, 6vw, 3.5rem);
  font-weight: 800;
  color: var(--color-accent);
  letter-spacing: -0.04em;
  line-height: 1;
  margin-bottom: 0.75rem;
}

.resultaten__desc {
  font-size: 1rem;
  color: var(--color-text-muted);
  line-height: 1.5;
  max-width: 200px;
  margin: 0 auto;
}

/* ─── Navbar Dropdown ─── */
.navbar__dropdown-item {
  position: relative;
}
/* Invisible bridge fills the gap between trigger and panel so hover never breaks */
.navbar__dropdown-item::after {
  content: '';
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  height: 0.75rem;
}

.navbar__dropdown-trigger {
  display: flex;
  align-items: center;
  gap: 0.3rem;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--color-text-muted);
  padding: 0.5rem 0.875rem;
  border-radius: var(--radius-full);
  transition: color var(--transition), background var(--transition);
  cursor: pointer;
  background: none;
  border: none;
  font-family: var(--font-body);
}
.navbar__dropdown-trigger:hover {
  color: var(--color-text);
  background: rgba(255,255,255,0.06);
}
html[data-theme="light"] .navbar__dropdown-trigger:hover {
  background: rgba(0,0,0,0.05);
}

.navbar__dropdown-arrow {
  font-size: 0.65rem;
  transition: transform var(--transition-fast);
  opacity: 0.6;
}
.navbar__dropdown-item.is-open .navbar__dropdown-arrow,
.navbar__dropdown-item:hover .navbar__dropdown-arrow {
  transform: rotate(180deg);
}

.navbar__dropdown-panel {
  position: absolute;
  top: calc(100% + 0.5rem);
  left: -1rem;
  min-width: 260px;
  background: rgba(17, 24, 39, 0.96);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-lg);
  padding: 0.5rem;
  box-shadow: var(--shadow-lg);
  opacity: 0;
  pointer-events: none;
  transform: translateY(-6px);
  transition: opacity 0.2s ease, transform 0.2s ease;
  z-index: 200;
}
.navbar__dropdown-panel::before {
  content: '';
  position: absolute;
  top: -0.5rem;
  left: 0;
  right: 0;
  height: 0.5rem;
}
html[data-theme="light"] .navbar__dropdown-panel {
  background: rgba(245, 247, 250, 0.97);
  border-color: rgba(0,0,0,0.1);
}
.navbar__dropdown-item:hover .navbar__dropdown-panel,
.navbar__dropdown-item.is-open .navbar__dropdown-panel {
  opacity: 1;
  pointer-events: all;
  transform: translateY(0);
}

.navbar__dropdown-link {
  display: flex;
  align-items: flex-start;
  gap: 0.875rem;
  padding: 0.75rem 0.875rem;
  border-radius: var(--radius-sm);
  border-left: 2px solid transparent;
  transition: all var(--transition-fast);
  text-decoration: none;
  color: inherit;
}
.navbar__dropdown-link:hover {
  background: rgba(5, 254, 130, 0.06);
  border-left-color: var(--color-accent);
}
.navbar__dropdown-link-icon {
  font-size: 1.25rem;
  flex-shrink: 0;
  margin-top: 0.1rem;
}
.navbar__dropdown-link-text strong {
  display: block;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--color-text);
  margin-bottom: 0.15rem;
}
.navbar__dropdown-link-text small {
  font-size: 0.78rem;
  color: var(--color-text-muted);
  line-height: 1.3;
}

/* ─── Mobile Accordion ─── */
.navbar__mobile-accordion {
  width: 100%;
}
.navbar__mobile-accordion-trigger {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  font-size: 1rem;
  font-weight: 500;
  color: var(--color-text-muted);
  padding: 0.75rem 1rem;
  border-radius: var(--radius-sm);
  transition: all var(--transition);
  background: none;
  border: none;
  font-family: var(--font-body);
  cursor: pointer;
}
.navbar__mobile-accordion-trigger:hover {
  color: var(--color-text);
  background: rgba(255,255,255,0.05);
}
html[data-theme="light"] .navbar__mobile-accordion-trigger:hover {
  background: rgba(0,0,0,0.04);
}
.navbar__mobile-accordion-arrow {
  font-size: 0.65rem;
  transition: transform var(--transition-fast);
}
.navbar__mobile-accordion.is-open .navbar__mobile-accordion-arrow {
  transform: rotate(180deg);
}
.navbar__mobile-subnav {
  display: none;
  padding: 0.25rem 0 0.5rem 1rem;
  flex-direction: column;
  gap: 0.125rem;
}
.navbar__mobile-accordion.is-open .navbar__mobile-subnav {
  display: flex;
}
.navbar__mobile-subnav a {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  font-size: 0.9rem;
  color: var(--color-text-muted);
  padding: 0.5rem 0.875rem;
  border-radius: var(--radius-sm);
  transition: all var(--transition-fast);
  text-decoration: none;
}
.navbar__mobile-subnav a:hover {
  color: var(--color-accent);
  background: rgba(5,254,130,0.06);
}

/* ─── Diensten Overzicht (homepage sectie) ─── */
.diensten-overzicht {
  background: radial-gradient(ellipse 60% 50% at 50% 50%, rgba(5,254,130,0.04) 0%, transparent 70%);
}
.diensten-overzicht__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}
@media (min-width: 768px) {
  .diensten-overzicht__grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
.diensten-overzicht__card-link {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--color-accent);
  margin-top: 1.25rem;
  transition: gap var(--transition-fast);
  text-decoration: none;
}
.diensten-overzicht__card-link:hover {
  gap: 0.625rem;
}
.diensten-overzicht__card-emoji {
  font-size: 1.75rem;
  margin-bottom: 1rem;
}

/* ─── Dienst Hero (service page) ─── */
.dienst-hero {
  padding: calc(var(--navbar-h) + 4rem) 0 5rem;
  background: radial-gradient(ellipse 70% 60% at 30% 50%, rgba(5,254,130,0.06) 0%, transparent 60%);
  position: relative;
}
.dienst-hero__label {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-accent);
  background: rgba(5,254,130,0.1);
  padding: 0.35rem 0.875rem;
  border-radius: var(--radius-full);
  margin-bottom: 1.5rem;
}
.dienst-hero__title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.03em;
  color: var(--color-text);
  margin-bottom: 1.25rem;
  max-width: 700px;
}
.dienst-hero__title em {
  font-style: normal;
  color: var(--color-accent);
}
.dienst-hero__subtitle {
  font-size: clamp(1rem, 2vw, 1.125rem);
  color: var(--color-text-muted);
  line-height: 1.7;
  max-width: 580px;
  margin-bottom: 2.5rem;
}

/* ─── Andere Diensten (service page) ─── */
.andere-diensten {
  background: var(--color-surface);
  border-top: 1px solid var(--color-border);
}
.andere-diensten__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  margin-top: 2.5rem;
}
@media (min-width: 640px) {
  .andere-diensten__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
.andere-diensten__card {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.25rem 1.5rem;
  background: var(--color-surface-2);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  transition: all var(--transition);
  text-decoration: none;
  color: inherit;
}
.andere-diensten__card:hover {
  border-color: rgba(5,254,130,0.25);
  transform: translateX(4px);
}
.andere-diensten__card-emoji {
  font-size: 1.5rem;
  flex-shrink: 0;
}
.andere-diensten__card-text strong {
  display: block;
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--color-text);
  margin-bottom: 0.2rem;
}
.andere-diensten__card-text small {
  font-size: 0.8rem;
  color: var(--color-text-muted);
}

/* ═══════════════════════════════════════
   MOBILE UX IMPROVEMENTS
═══════════════════════════════════════ */

/* Footer nav: 3 groups, 2-col on mobile (3rd wraps to new row) */
.footer__nav {
  grid-template-columns: 1fr 1fr;
  row-gap: 2rem;
}

@media (max-width: 639px) {
  /* Hero: remove full-viewport height on mobile */
  .hero {
    min-height: auto;
    padding-top: calc(var(--navbar-h) + 2rem);
    padding-bottom: 3rem;
  }

  /* Tighter section padding on mobile */
  section {
    padding-block: 3.5rem;
  }

  /* Better touch targets for mobile nav */
  .navbar__mobile-link {
    padding-top: 0.75rem;
    padding-bottom: 0.75rem;
    display: block;
  }

  .navbar__mobile-subnav a {
    padding-top: 0.625rem;
    padding-bottom: 0.625rem;
  }

  /* Blog grid: tighter on mobile */
  .blog__grid {
    gap: 1rem;
  }
}

@media (max-width: 479px) {
  /* Hero heading: smaller on tiny screens */
  .hero__title {
    font-size: clamp(1.75rem, 8vw, 2.25rem);
    line-height: 1.15;
  }

  /* Service page headings */
  .dienst-hero__title {
    font-size: clamp(1.625rem, 7vw, 2rem);
  }

  /* Blog cards: compact padding */
  .blog-card {
    padding: 1.25rem;
  }

  /* Large buttons: readable on mobile */
  .btn--lg {
    font-size: 1rem;
    padding: 0.875rem 1.5rem;
  }
}

/* ═══════════════════════════════════════
   AUDIT FIXES — maart 2026
═══════════════════════════════════════ */

/* Fix 2 — WhatsApp knop verbergen (placeholder nummer) */
.wa-button { display: none !important; }

/* Fix 15 — Taalknop verbergen (geen EN versie beschikbaar) */
.navbar__lang-toggle { display: none !important; }

/* Fix 1 — Hero proof line */
.hero__proof {
  font-size: 0.9rem;
  color: var(--color-text-muted);
  margin-top: 1rem;
  line-height: 1.6;
  max-width: 480px;
}

/* Fix 4 — Footer social labels */
.footer__social-link {
  flex-direction: column;
  height: auto;
  min-height: 38px;
  padding: 0.625rem 0.75rem;
  gap: 4px;
}
.footer__social-label {
  font-size: 0.6875rem;
  color: var(--color-grey);
  line-height: 1;
}

/* Fix 9 — TOC (inhoudsopgave) blogposts */
.toc {
  background: rgba(5,254,130,0.04);
  border: 0.5px solid rgba(5,254,130,0.2);
  border-radius: 8px;
  padding: 1.25rem 1.5rem;
  margin: 1.5rem 0 2rem;
}
.toc-title {
  font-size: 0.6875rem;
  font-weight: 600;
  color: var(--color-grey);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 0.75rem;
}
.toc ol {
  margin: 0;
  padding-left: 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.toc a {
  color: var(--color-text);
  font-size: 0.875rem;
  text-decoration: none;
  opacity: 0.75;
  transition: opacity var(--transition), color var(--transition);
}
.toc a:hover { opacity: 1; color: var(--color-accent); }

/* Fix 10 — Gerelateerde artikelen */
.related-posts {
  padding: 3rem 0;
  border-top: 1px solid var(--color-border);
}
.related-posts__title {
  font-size: 1.125rem;
  font-weight: 700;
  margin-bottom: 1rem;
  font-family: var(--font-heading);
}
.related-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
}
.related-card {
  display: block;
  padding: 1rem 1.25rem;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  text-decoration: none;
  color: inherit;
  transition: border-color var(--transition), background var(--transition);
}
.related-card:hover {
  border-color: rgba(5,254,130,0.3);
  background: rgba(5,254,130,0.03);
}
.related-card__cat {
  font-size: 0.6875rem;
  color: var(--color-accent);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  display: block;
  margin-bottom: 6px;
}
.related-card h3 {
  font-size: 0.875rem;
  color: var(--color-text);
  line-height: 1.4;
  margin-bottom: 8px;
  font-weight: 500;
}
.related-card__time {
  font-size: 0.75rem;
  color: var(--color-grey);
}
@media (max-width: 640px) { .related-grid { grid-template-columns: 1fr; } }

/* Fix 12 — Leestijd op blog cards */
.blog-card__sep { color: var(--color-grey); margin: 0 0.25rem; }
.blog-card__readtime { color: var(--color-grey); font-size: 0.8125rem; }

/* Fix 13 — Categorie filter tabs */
.blog-filters {
  display: flex;
  gap: 8px;
  margin-bottom: 2rem;
  flex-wrap: wrap;
}
.filter-btn {
  padding: 6px 16px;
  border-radius: 99px;
  font-size: 0.8125rem;
  border: 0.5px solid rgba(255,255,255,0.12);
  background: transparent;
  color: var(--color-grey);
  cursor: pointer;
  font-family: var(--font-body);
  transition: color var(--transition), border-color var(--transition), background var(--transition);
}
.filter-btn:hover { color: var(--color-text); border-color: rgba(255,255,255,0.3); }
.filter-btn.active { color: var(--color-accent); border-color: var(--color-accent); }
[data-theme="light"] .filter-btn {
  border-color: rgba(0,0,0,0.12);
}
[data-theme="light"] .filter-btn:hover { border-color: rgba(0,0,0,0.3); }

/* ─── Diensten "wat is het" two-col layout — responsive ─── */
.voor-wie__grid--2col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

@media (max-width: 767px) {
  .voor-wie__grid--2col {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

/* ═══════════════════════════════════════
   MOBILE UX v2 — Dashboard + General
═══════════════════════════════════════ */

/* ─── Hero: tighter gap between text + dashboard on mobile ─── */
@media (max-width: 1023px) {
  .hero__layout {
    gap: 2rem;
  }
}

/* ─── Dashboard: compact on tablet/large-mobile ─── */
@media (max-width: 767px) {
  .hero__layout {
    gap: 1.5rem;
  }

  .dashboard__body {
    padding: 0.875rem;
  }

  .dashboard__metrics {
    gap: 0.5rem;
    margin-bottom: 0.875rem;
  }

  .dashboard__metric {
    padding: 0.625rem 0.5rem;
  }

  .dashboard__metric-value {
    font-size: 0.95rem;
  }

  .dashboard__metric-label {
    font-size: 0.62rem;
    letter-spacing: 0.04em;
  }

  .dashboard__chart {
    padding: 0.75rem;
  }
}

/* ─── Dashboard: minimal on very small screens ─── */
@media (max-width: 479px) {
  /* Hero text centered on mobile for better visual hierarchy */
  .hero__text {
    text-align: center;
  }

  .hero__badge {
    margin-left: auto;
    margin-right: auto;
  }

  .hero__subtitle {
    margin-left: auto;
    margin-right: auto;
  }

  .hero__ctas {
    justify-content: center;
  }

  .hero__proof {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
  }

  /* Dashboard: hide tabs + live badge, only show metrics + chart */
  .dashboard__tabs {
    display: none;
  }

  .dashboard__live {
    display: none;
  }

  .dashboard__window-controls {
    flex: 1;
  }

  .dashboard__header {
    padding: 0.625rem 0.875rem;
  }

  .dashboard__body {
    padding: 0.75rem;
  }

  .dashboard__metrics {
    gap: 0.375rem;
    margin-bottom: 0.75rem;
  }

  .dashboard__metric {
    padding: 0.5rem 0.375rem;
    text-align: center;
  }

  .dashboard__metric-value {
    font-size: 0.9rem;
  }

  .dashboard__metric-label {
    font-size: 0.58rem;
  }

  .dashboard__chart {
    padding: 0.625rem;
  }
}

/* ─── Pricing cards: better padding on mobile ─── */
@media (max-width: 639px) {
  .pricing__card {
    padding: 1.75rem 1.5rem;
  }

  .pricing__card-price {
    font-size: clamp(1.75rem, 8vw, 2.5rem);
  }
}

/* ─── Testimonials: tighter on mobile ─── */
@media (max-width: 639px) {
  .testimonials__card {
    padding: 1.5rem;
  }
}

/* ─── Section headings: scale down on mobile ─── */
@media (max-width: 479px) {
  .section__title {
    font-size: clamp(1.5rem, 7vw, 2rem);
  }

  .section__subtitle {
    font-size: 0.9375rem;
  }

  .hero__layout {
    gap: 1.25rem;
  }
}

/* ─── Footer: better mobile layout ─── */
@media (max-width: 639px) {
  .footer__brand {
    margin-bottom: 0.5rem;
  }

  .footer__social-links {
    flex-wrap: wrap;
  }

  .footer__bottom {
    gap: 0.75rem;
    text-align: center;
  }

  .footer__legal {
    justify-content: center;
  }
}

/* ─── CTA section: better mobile ─── */
@media (max-width: 479px) {
  .cta-section__actions {
    flex-direction: column;
    align-items: stretch;
  }

  .cta-section__actions .btn {
    text-align: center;
    justify-content: center;
  }
}
