/* ============================================================
   SHOUTcastServer.nl — Broadcast Red Design
   Font: Space Grotesk | Accent: #ff2244 | BG: #0a0a0b
   ============================================================ */

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

:root {
  --bg:          #0a0a0b;
  --surface:     #111113;
  --surface2:    #18181b;
  --surface3:    #1f1f23;
  --accent:      #ff2244;
  --accent-soft: rgba(255, 34, 68, 0.12);
  --accent-glow: rgba(255, 34, 68, 0.25);
  --text:        #f4f4f5;
  --text-soft:   #a1a1aa;
  --border:      #27272a;
  --border2:     #3f3f46;
  --green:       #22c55e;
  --yellow:      #eab308;
  --radius:      12px;
  --radius-lg:   20px;
  --shadow:      0 4px 24px rgba(0,0,0,0.4);
}

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: 'Space Grotesk', system-ui, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

.container { max-width: 1160px; margin: 0 auto; padding: 0 24px; }

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

/* ============================================================
   TICKER
   ============================================================ */
.ticker-wrap {
  background: var(--accent);
  overflow: hidden;
  height: 34px;
  display: flex;
  align-items: center;
}
.ticker-track {
  display: flex;
  gap: 0;
  white-space: nowrap;
  animation: ticker-scroll 40s linear infinite;
  will-change: transform;
}
.ticker-item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
  padding: 0 28px;
  color: #fff;
}
.ticker-dot {
  width: 5px; height: 5px;
  background: rgba(255,255,255,0.6);
  border-radius: 50%;
  flex-shrink: 0;
}
@keyframes ticker-scroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ============================================================
   NAV
   ============================================================ */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  padding: 16px 0;
  transition: background .2s, box-shadow .2s;
}
.nav.scrolled {
  background: rgba(10,10,11,.92);
  backdrop-filter: blur(12px);
  box-shadow: 0 1px 0 var(--border);
}
.nav-inner {
  display: flex;
  align-items: center;
  gap: 24px;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 17px;
  font-weight: 700;
  letter-spacing: -.02em;
  flex-shrink: 0;
}
.onair-dot {
  width: 8px; height: 8px;
  background: var(--accent);
  border-radius: 50%;
  animation: blink 1.4s ease-in-out infinite;
  flex-shrink: 0;
}
@keyframes blink { 0%,100%{opacity:1} 50%{opacity:.3} }
.logo-accent { color: var(--accent); }
.nav-links {
  display: flex;
  gap: 4px;
  margin-left: auto;
}
.nav-links a {
  padding: 6px 12px;
  font-size: 14px;
  font-weight: 500;
  color: var(--text-soft);
  border-radius: 6px;
  transition: color .15s, background .15s;
}
.nav-links a:hover { color: var(--text); background: var(--surface2); }

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  font-family: inherit;
  font-size: 14px;
  font-weight: 600;
  border-radius: 8px;
  border: none;
  cursor: pointer;
  transition: transform .15s, box-shadow .15s, opacity .15s;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-1px); }
.btn:active { transform: translateY(0); }

.btn-red {
  background: var(--accent);
  color: #fff;
  box-shadow: 0 2px 12px var(--accent-glow);
}
.btn-red:hover { box-shadow: 0 4px 24px var(--accent-glow); }

.btn-outline-red {
  background: transparent;
  color: var(--accent);
  border: 1.5px solid var(--accent);
}
.btn-outline-red:hover { background: var(--accent-soft); }

.btn-ghost {
  background: transparent;
  color: var(--text-soft);
  border: 1.5px solid var(--border2);
}
.btn-ghost:hover { border-color: var(--text-soft); color: var(--text); }

.btn-ghost-white {
  background: transparent;
  color: #fff;
  border: 1.5px solid rgba(255,255,255,.35);
}
.btn-ghost-white:hover { border-color: #fff; }

.btn-nav { font-size: 13px; padding: 8px 16px; }
.btn-xl  { font-size: 16px; padding: 14px 28px; border-radius: 10px; }
.btn-full { width: 100%; justify-content: center; margin-top: 16px; }

/* Nav toggle (mobile) */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  margin-left: auto;
}
.nav-toggle span {
  display: block;
  width: 22px; height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: transform .2s, opacity .2s;
}
.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile menu */
.mobile-menu {
  display: none;
  flex-direction: column;
  gap: 4px;
  padding: 16px 24px 24px;
  background: var(--surface);
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 57px;
  z-index: 99;
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  padding: 10px 12px;
  font-size: 15px;
  font-weight: 500;
  color: var(--text-soft);
  border-radius: 8px;
}
.mobile-menu a:hover { background: var(--surface2); color: var(--text); }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  min-height: 86vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  text-align: center;
  padding: 80px 0 100px;
}

/* Signal rings */
.signal-rings {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
}
.ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid var(--accent);
  animation: ring-expand 4s ease-out infinite;
}
.ring-1 { animation-delay: 0s; }
.ring-2 { animation-delay: 1s; }
.ring-3 { animation-delay: 2s; }
.ring-4 { animation-delay: 3s; }
@keyframes ring-expand {
  0%   { width: 80px;  height: 80px;  opacity: .6; }
  100% { width: 700px; height: 700px; opacity: 0; }
}

.hero-icon {
  position: relative;
  z-index: 2;
  margin-bottom: 28px;
  width: 64px; height: 64px;
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 760px;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--accent-soft);
  border: 1px solid var(--accent-glow);
  color: var(--accent);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 100px;
  margin-bottom: 24px;
}
.live-pulse {
  width: 7px; height: 7px;
  background: var(--accent);
  border-radius: 50%;
  animation: blink 1.2s ease-in-out infinite;
  flex-shrink: 0;
}
.hero-title {
  font-size: clamp(32px, 5vw, 60px);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -.03em;
  margin-bottom: 20px;
}
.hero-accent {
  color: var(--accent);
  position: relative;
}
.hero-sub {
  font-size: 18px;
  color: var(--text-soft);
  max-width: 580px;
  margin: 0 auto 36px;
  line-height: 1.65;
}
.hero-ctas {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 24px;
}
.hero-proof {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  font-size: 13px;
  color: var(--text-soft);
}
.hero-proof span::before { content: ''; }
.hero-scroll {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  color: var(--text-soft);
  animation: bounce 2s ease-in-out infinite;
  z-index: 2;
}
@keyframes bounce { 0%,100%{transform:translateX(-50%) translateY(0)} 50%{transform:translateX(-50%) translateY(6px)} }

/* ============================================================
   STATS BAR
   ============================================================ */
.stats-bar {
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 32px 0;
}
.stats-grid {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}
.stat-item { text-align: center; flex: 1; min-width: 100px; }
.stat-num {
  font-size: 28px;
  font-weight: 700;
  letter-spacing: -.03em;
  color: var(--text);
  line-height: 1;
}
.stat-unit { font-size: 16px; font-weight: 500; color: var(--accent); }
.stat-label { font-size: 12px; color: var(--text-soft); margin-top: 4px; font-weight: 500; }
.stat-divider { width: 1px; height: 40px; background: var(--border); flex-shrink: 0; }

/* ============================================================
   SECTIONS — shared
   ============================================================ */
.section { padding: 88px 0; }
.dark-section { background: var(--surface); }

.section-header { text-align: center; margin-bottom: 56px; }
.section-tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 12px;
  padding: 4px 12px;
  background: var(--accent-soft);
  border-radius: 100px;
  border: 1px solid var(--accent-glow);
}
.light-tag { color: var(--accent); }
.section-title {
  font-size: clamp(26px, 3.5vw, 40px);
  font-weight: 700;
  letter-spacing: -.03em;
  line-height: 1.15;
}
.light-title { color: var(--text); }
.section-sub { font-size: 17px; color: var(--text-soft); max-width: 560px; margin: 14px auto 0; }
.light-sub { color: var(--text-soft); }

/* Reveal animation */
.reveal { opacity: 0; transform: translateY(20px); transition: opacity .5s ease, transform .5s ease; transition-delay: var(--d, 0s); }
.revealed { opacity: 1; transform: translateY(0); }

/* ============================================================
   UITLEG
   ============================================================ */
.uitleg-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.uitleg-text .section-tag { margin-bottom: 12px; }
.uitleg-text .section-title { text-align: left; font-size: clamp(24px, 2.8vw, 34px); margin-bottom: 16px; }
.uitleg-text p { color: var(--text-soft); margin-bottom: 14px; line-height: 1.7; }
.uitleg-text strong { color: var(--text); }
.uitleg-list { list-style: none; margin-top: 20px; display: flex; flex-direction: column; gap: 10px; }
.uitleg-list li { display: flex; align-items: flex-start; gap: 10px; font-size: 15px; color: var(--text-soft); }
.uitleg-list svg { flex-shrink: 0; margin-top: 2px; }

/* Flow diagram */
.flow-diagram {
  display: flex;
  flex-direction: column;
  gap: 0;
  background: var(--surface2);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
}
.flow-node {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px;
  border-radius: var(--radius);
  background: var(--surface3);
  border: 1px solid var(--border);
}
.highlight-node {
  background: var(--accent-soft);
  border-color: var(--accent);
}
.flow-icon {
  width: 40px; height: 40px;
  background: var(--surface);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-soft);
  flex-shrink: 0;
}
.highlight-node .flow-icon { color: var(--accent); background: var(--bg); }
.flow-node span { font-size: 14px; font-weight: 600; line-height: 1.3; }
.flow-node small { font-size: 11px; color: var(--text-soft); font-weight: 400; display: block; }
.flow-arrow {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  padding: 8px 0;
}
.flow-arrow-label { font-size: 10px; color: var(--text-soft); letter-spacing: .05em; text-transform: uppercase; }

/* ============================================================
   VERGELIJKING
   ============================================================ */
.compare-wrap { overflow-x: auto; -webkit-overflow-scrolling: touch; }
.compare-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
}
.compare-table th, .compare-table td {
  padding: 14px 16px;
  text-align: left;
  border-bottom: 1px solid var(--border);
}
.compare-table th {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .04em;
  text-transform: uppercase;
  color: var(--text-soft);
  background: var(--surface2);
}
.compare-table th:first-child { border-radius: var(--radius) 0 0 0; }
.compare-table th:last-child  { border-radius: 0 var(--radius) 0 0; }
.compare-table tr:last-child td { border-bottom: none; }
.compare-table tr:hover td { background: var(--surface2); }
.col-v2 { background: var(--accent-soft) !important; border-left: 2px solid var(--accent) !important; border-right: 2px solid var(--accent) !important; }
.compare-table thead .col-v2 { border-top: 2px solid var(--accent) !important; }
.compare-table tr:last-child .col-v2 { border-bottom: 2px solid var(--accent) !important; border-radius: 0 0 var(--radius) 0; }
.badge-best {
  background: var(--accent);
  color: #fff;
  font-size: 10px;
  padding: 2px 8px;
  border-radius: 100px;
  margin-left: 8px;
  font-weight: 600;
  letter-spacing: .04em;
  vertical-align: middle;
}
.yes-val  { color: var(--green); font-weight: 600; }
.no-val   { color: var(--text-soft); }
.partial-val { color: var(--yellow); }

/* ============================================================
   FEATURES — rows
   ============================================================ */
.features-rows { display: flex; flex-direction: column; gap: 2px; }
.feature-row {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  padding: 24px 28px;
  border-radius: var(--radius);
  background: var(--surface);
  border: 1px solid var(--border);
  transition: border-color .2s, background .2s;
}
.feature-row:hover { border-color: var(--border2); background: var(--surface2); }
.feature-row-icon {
  width: 48px; height: 48px;
  background: var(--accent-soft);
  border: 1px solid var(--accent-glow);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  flex-shrink: 0;
}
.feature-row-body { flex: 1; }
.feature-row-body h3 { font-size: 16px; font-weight: 700; margin-bottom: 6px; }
.feature-row-body p  { font-size: 14px; color: var(--text-soft); line-height: 1.65; }
.feature-row-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 12px;
  align-self: flex-end;
  flex-shrink: 0;
}
.feature-row-tags span {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .04em;
  padding: 3px 10px;
  background: var(--surface2);
  border: 1px solid var(--border);
  border-radius: 100px;
  color: var(--text-soft);
}

/* ============================================================
   STAPPEN
   ============================================================ */
.steps-grid {
  display: grid;
  grid-template-columns: 1fr 40px 1fr 40px 1fr;
  gap: 0;
  align-items: start;
}
.step {
  background: var(--surface2);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
}
.step-number {
  font-size: 48px;
  font-weight: 700;
  color: var(--accent);
  letter-spacing: -.04em;
  line-height: 1;
  margin-bottom: 16px;
  opacity: .8;
}
.step-body h3 { font-size: 18px; font-weight: 700; margin-bottom: 10px; }
.step-body p  { font-size: 14px; color: var(--text-soft); line-height: 1.65; }
.step-link {
  display: inline-block;
  margin-top: 14px;
  font-size: 14px;
  font-weight: 600;
  color: var(--accent);
  transition: gap .15s;
}
.step-link:hover { text-decoration: underline; }
.step-connector {
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 60px;
}
.step-connector::after {
  content: '';
  display: block;
  width: 24px; height: 2px;
  background: linear-gradient(90deg, var(--border2), var(--accent));
  border-radius: 2px;
}

/* ============================================================
   PRICING
   ============================================================ */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  align-items: start;
}
.pricing-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  position: relative;
  transition: border-color .2s, transform .2s;
}
.pricing-card:hover { transform: translateY(-3px); }
.pricing-card.featured {
  border-color: var(--accent);
  background: var(--surface2);
  box-shadow: 0 0 40px var(--accent-soft);
}
.pkg-badge {
  position: absolute;
  top: -13px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--accent);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  padding: 4px 16px;
  border-radius: 100px;
  white-space: nowrap;
}
.pkg-slots {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 6px;
}
.pkg-name {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 8px;
}
.pkg-price {
  font-size: 44px;
  font-weight: 700;
  letter-spacing: -.04em;
  color: var(--text);
  line-height: 1;
  margin-bottom: 12px;
}
.pkg-price span { font-size: 16px; color: var(--text-soft); font-weight: 400; }
.pkg-desc { font-size: 13px; color: var(--text-soft); margin-bottom: 20px; line-height: 1.5; }
.pkg-list { list-style: none; display: flex; flex-direction: column; gap: 9px; }
.pkg-list li {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 13px;
  color: var(--text-soft);
}
.pkg-list li svg { flex-shrink: 0; margin-top: 1px; }
.pkg-addon { color: var(--text-soft) !important; font-style: italic; padding-top: 4px; }
.pricing-note {
  text-align: center;
  margin-top: 32px;
  font-size: 14px;
  color: var(--text-soft);
}
.text-link { color: var(--accent); font-weight: 600; }
.text-link:hover { text-decoration: underline; }

/* ============================================================
   REVIEWS
   ============================================================ */
.stars-display {
  font-size: 20px;
  color: var(--yellow);
  margin-top: 12px;
}
.stars-display span { font-size: 14px; color: var(--text-soft); margin-left: 6px; font-weight: 400; font-family: inherit; }
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.review-card {
  background: var(--surface2);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
}
.review-stars { color: var(--yellow); font-size: 16px; margin-bottom: 14px; }
.review-card p { font-size: 15px; color: var(--text-soft); line-height: 1.65; font-style: italic; margin-bottom: 16px; }
.review-name { font-size: 14px; font-weight: 700; }
.review-station { font-size: 12px; color: var(--text-soft); margin-top: 2px; }

/* ============================================================
   FAQ
   ============================================================ */
.faq-list { max-width: 800px; margin: 0 auto; display: flex; flex-direction: column; gap: 2px; }
.faq-item {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: border-color .2s;
}
.faq-item.open { border-color: var(--accent); }
.faq-q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 22px;
  background: none;
  border: none;
  cursor: pointer;
  font-family: inherit;
  font-size: 15px;
  font-weight: 600;
  color: var(--text);
  text-align: left;
  transition: background .15s;
}
.faq-q:hover { background: var(--surface2); }
.faq-icon {
  width: 18px; height: 18px;
  flex-shrink: 0;
  color: var(--text-soft);
  transition: transform .2s;
}
.faq-item.open .faq-icon { transform: rotate(180deg); }
.faq-a { display: none; padding: 0 22px 18px; }
.faq-item.open .faq-a { display: block; }
.faq-a p { font-size: 14px; color: var(--text-soft); line-height: 1.7; }
.faq-a strong { color: var(--text); }

/* ============================================================
   FINAL CTA
   ============================================================ */
.cta-section {
  background: radial-gradient(ellipse 70% 60% at 50% 50%, rgba(255,34,68,.12) 0%, var(--bg) 70%);
  padding: 96px 0;
  border-top: 1px solid var(--border);
}
.cta-inner { text-align: center; max-width: 640px; margin: 0 auto; }
.cta-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 20px;
  padding: 5px 14px;
  background: var(--accent-soft);
  border: 1px solid var(--accent-glow);
  border-radius: 100px;
}
.cta-inner h2 { font-size: clamp(28px, 4vw, 48px); font-weight: 700; letter-spacing: -.03em; margin-bottom: 14px; }
.cta-inner p  { font-size: 17px; color: var(--text-soft); margin-bottom: 32px; }
.cta-actions  { display: flex; align-items: center; justify-content: center; gap: 12px; flex-wrap: wrap; margin-bottom: 20px; }
.cta-via { font-size: 13px; color: var(--text-soft); }
.cta-via a { color: var(--accent); font-weight: 600; }

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: var(--surface);
  border-top: 1px solid var(--border);
  padding: 56px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
}
.footer-logo {
  font-size: 18px;
  font-weight: 700;
  letter-spacing: -.02em;
  display: block;
  margin-bottom: 12px;
}
.footer-brand p { font-size: 14px; color: var(--text-soft); line-height: 1.65; }
.footer-brand a { color: var(--accent); }
.footer-col h4 { font-size: 13px; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; color: var(--text-soft); margin-bottom: 16px; }
.footer-col a { display: block; font-size: 14px; color: var(--text-soft); padding: 4px 0; transition: color .15s; }
.footer-col a:hover { color: var(--text); }
.footer-bottom {
  border-top: 1px solid var(--border);
  padding: 18px 0;
}
.footer-bottom p { font-size: 12px; color: var(--text-soft); text-align: center; }
.footer-bottom a { color: var(--accent); }

/* ============================================================
   STICKY CTA
   ============================================================ */
.sticky-cta {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 200;
  transform: translateY(100%);
  transition: transform .3s ease;
  display: none;
}
.sticky-cta.visible { transform: translateY(0); }
.sticky-btn {
  display: block;
  width: 100%;
  text-align: center;
  background: var(--accent);
  color: #fff;
  font-family: inherit;
  font-size: 15px;
  font-weight: 700;
  padding: 16px 24px;
  cursor: pointer;
  transition: background .15s;
}
.sticky-btn:hover { background: #e01e3a; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .uitleg-grid { grid-template-columns: 1fr; gap: 48px; }
  .steps-grid { grid-template-columns: 1fr; gap: 16px; }
  .step-connector { display: none; }
  .pricing-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .nav-links { display: none; }
  .btn-nav { display: none; }
  .nav-toggle { display: flex; }
  .hero { min-height: 75vh; }
  .hero-title { font-size: clamp(28px, 7vw, 42px); }
  .hero-sub { font-size: 16px; }
  .section { padding: 64px 0; }
  .stats-grid { gap: 24px; }
  .stat-divider { display: none; }
  .stats-grid { justify-content: center; gap: 28px 40px; }
  .feature-row { flex-direction: column; gap: 14px; }
  .feature-row-tags { margin-top: 4px; }
  .pricing-grid { grid-template-columns: 1fr; max-width: 400px; margin: 0 auto; }
  .reviews-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .sticky-cta { display: block; }
}

@media (max-width: 480px) {
  .container { padding: 0 16px; }
  .hero-ctas { flex-direction: column; align-items: stretch; }
  .hero-ctas .btn { justify-content: center; }
  .compare-table { font-size: 12px; }
  .compare-table th, .compare-table td { padding: 10px 10px; }
}
