/* ============================================
   TrustusFix — V5 Premium Design System
   ============================================ */

:root {
  --blue-50: #EFF6FF;
  --blue-100: #DBEAFE;
  --blue-200: #BFDBFE;
  --blue-500: #3B82F6;
  --blue-600: #2563EB;
  --blue-700: #1D4ED8;
  --blue-800: #1E40AF;
  --blue-900: #1E3A5F;
  --blue-950: #0F172A;

  --green-50: #F0FDF4;
  --green-100: #DCFCE7;
  --green-500: #22C55E;
  --green-600: #16A34A;
  --green-700: #15803D;

  --orange-50: #FFF7ED;
  --orange-100: #FFEDD5;
  --orange-500: #F97316;
  --orange-600: #EA580C;

  --red-50: #FEF2F2;
  --red-100: #FEE2E2;
  --red-500: #EF4444;
  --red-600: #DC2626;

  --gray-50: #F8FAFC;
  --gray-100: #F1F5F9;
  --gray-200: #E2E8F0;
  --gray-300: #CBD5E1;
  --gray-400: #94A3B8;
  --gray-500: #64748B;
  --gray-600: #475569;
  --gray-700: #334155;
  --gray-800: #1E293B;
  --gray-900: #0F172A;

  --trust: var(--blue-600);
  --safe: var(--green-600);
  --caution: var(--orange-500);
  --risk: var(--red-600);

  --max-w: 1140px;
  --r-sm: 8px;
  --r-md: 12px;
  --r-lg: 16px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { font-size: 16px; scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }
body { font-family: 'DM Sans', sans-serif; color: var(--gray-700); background: #fff; line-height: 1.6; overflow-x: hidden; }
h1,h2,h3,h4,h5,h6 { font-family: 'Sora', sans-serif; font-weight: 700; line-height: 1.15; color: var(--gray-900); }
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
.container { max-width: var(--max-w); margin: 0 auto; padding: 0 24px; }

/* ---- Icon System ----
   Unified: viewBox 24x24, stroke-width 1.75, round caps/joins
   Sizes: --inline 16px, --problem 20px, --guarantee 22px, --check/cross 16px
   ---- */
.icon { display: inline-flex; align-items: center; justify-content: center; flex-shrink: 0; }
.icon svg { display: block; }
.icon--inline { width: 16px; height: 16px; }
.icon--inline svg { width: 16px; height: 16px; }
.icon--problem { width: 22px; height: 22px; color: var(--gray-400); transition: color 0.15s; }
.icon--problem svg { width: 22px; height: 22px; }
.hero__problem-card:hover .icon--problem { color: var(--trust); }
.icon--chevron { width: 14px; height: 14px; position: absolute; right: 14px; top: 50%; transform: translateY(-50%); color: var(--gray-300); transition: color 0.15s, transform 0.15s; }
.icon--chevron svg { width: 14px; height: 14px; }
.hero__problem-card:hover .icon--chevron { color: var(--trust); transform: translateY(-50%) translateX(2px); }
.icon--guarantee { width: 22px; height: 22px; color: var(--trust); margin-top: 1px; }
.icon--guarantee svg { width: 22px; height: 22px; }
.icon--check, .icon--cross { width: 16px; height: 16px; }
.icon--check svg, .icon--cross svg { width: 16px; height: 16px; }
.icon--check-sm { width: 13px; height: 13px; }
.icon--check-sm svg { width: 13px; height: 13px; }

/* ---- Authority Bar ---- */
.authority-bar {
  background: var(--blue-950);
  color: rgba(255,255,255,0.85);
  padding: 9px 0;
  font-size: 0.8rem;
  letter-spacing: 0.01em;
}
.authority-bar .container { display: flex; align-items: center; justify-content: center; gap: 28px; flex-wrap: wrap; }
.authority-bar__item { display: flex; align-items: center; gap: 7px; white-space: nowrap; }
.authority-bar__dot { width: 5px; height: 5px; border-radius: 50%; background: var(--green-500); }
.authority-bar__score { background: rgba(255,255,255,0.1); padding: 2px 10px; border-radius: 20px; font-weight: 700; color: #fff; }

/* ---- Navigation ---- */
.nav { background: #fff; border-bottom: 1px solid var(--gray-100); position: sticky; top: 0; z-index: 90; }
.nav .container { display: flex; align-items: center; justify-content: space-between; height: 60px; }
.nav__logo { font-family: 'Sora', sans-serif; font-weight: 800; font-size: 1.3rem; color: var(--blue-900); display: flex; align-items: center; gap: 8px; letter-spacing: -0.02em; }
.nav__logo-icon { flex-shrink: 0; }
.nav__links { display: flex; align-items: center; gap: 28px; list-style: none; }
.nav__links a { font-size: 0.875rem; font-weight: 500; color: var(--gray-500); transition: color 0.15s; }
.nav__links a:hover { color: var(--trust); }
.nav__cta { background: var(--trust); color: #fff !important; padding: 8px 18px; border-radius: var(--r-sm); font-weight: 600; transition: background 0.15s; }
.nav__cta:hover { background: var(--blue-700); }

/* Hamburger */
.nav__toggle { display: none; background: none; border: none; cursor: pointer; width: 28px; height: 20px; position: relative; z-index: 100; }
.nav__toggle span { display: block; width: 100%; height: 2px; background: var(--gray-700); border-radius: 2px; position: absolute; left: 0; transition: all 0.25s; }
.nav__toggle span:nth-child(1) { top: 0; }
.nav__toggle span:nth-child(2) { top: 9px; }
.nav__toggle span:nth-child(3) { top: 18px; }
.nav__toggle--open span:nth-child(1) { top: 9px; transform: rotate(45deg); }
.nav__toggle--open span:nth-child(2) { opacity: 0; }
.nav__toggle--open span:nth-child(3) { top: 9px; transform: rotate(-45deg); }

.nav__mobile-menu {
  display: none; position: fixed; top: 60px; left: 0; right: 0; bottom: 0;
  background: #fff; z-index: 80; flex-direction: column; padding: 32px 24px; gap: 0;
  transform: translateX(100%); transition: transform 0.3s ease;
}
.nav__mobile-menu a { display: block; padding: 16px 0; font-size: 1.0625rem; font-weight: 500; color: var(--gray-700); border-bottom: 1px solid var(--gray-100); }
.nav__mobile-cta { background: var(--trust); color: #fff !important; text-align: center; border-radius: var(--r-sm); padding: 14px !important; margin-top: 16px; border: none !important; }
.nav__mobile-menu--open { transform: translateX(0); }

/* ---- Buttons ---- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 12px 24px; border-radius: var(--r-sm); font-family: 'Sora', sans-serif;
  font-weight: 600; font-size: 0.875rem; border: none; cursor: pointer;
  transition: all 0.15s ease; white-space: nowrap;
}
.btn-primary { background: var(--trust); color: #fff; box-shadow: 0 1px 4px rgba(37,99,235,0.2); }
.btn-primary:hover { background: var(--blue-700); box-shadow: 0 2px 8px rgba(37,99,235,0.3); transform: translateY(-1px); }
.btn-secondary { background: transparent; color: var(--gray-600); border: 1px solid var(--gray-200); }
.btn-secondary:hover { border-color: var(--gray-300); color: var(--gray-800); }
.btn-large { padding: 14px 32px; font-size: 0.9375rem; }
.btn-white { background: #fff; color: var(--trust); box-shadow: 0 2px 12px rgba(0,0,0,0.12); }
.btn-white:hover { transform: translateY(-1px); box-shadow: 0 4px 20px rgba(0,0,0,0.15); }

/* ---- Section helpers ---- */
.section-label {
  font-family: 'Sora', sans-serif; font-size: 0.6875rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.12em; color: var(--trust); margin-bottom: 8px;
}
.section-label--red { color: var(--red-600); }
.section-title { font-size: 2rem; font-weight: 800; color: var(--gray-900); margin-bottom: 10px; letter-spacing: -0.025em; }
.section-title--left { text-align: left; }
.section-title--sm { font-size: 1.5rem; }
.section-header { text-align: center; margin-bottom: 48px; }
.section-subtitle { font-size: 1rem; color: var(--gray-500); max-width: 520px; margin: 0 auto; }
.section-desc { font-size: 0.9375rem; color: var(--gray-500); line-height: 1.6; margin-bottom: 24px; }

/* ---- HERO ---- */
.hero { background: linear-gradient(170deg, var(--blue-50) 0%, #fff 60%); padding: 56px 0 72px; }
.hero__badge {
  display: inline-flex; align-items: center; gap: 8px; background: var(--green-50);
  border: 1px solid var(--green-100); color: var(--green-700); padding: 5px 14px;
  border-radius: 40px; font-size: 0.75rem; font-weight: 600; margin-bottom: 20px;
}
.hero__badge-dot { width: 7px; height: 7px; background: var(--green-500); border-radius: 50%; animation: pulse 2s infinite; }
@keyframes pulse { 0%,100% { opacity: 1; } 50% { opacity: 0.3; } }

.hero__title { font-size: 3rem; font-weight: 800; color: var(--blue-950); max-width: 600px; margin-bottom: 12px; letter-spacing: -0.03em; }
.hero__subtitle { font-size: 1.125rem; color: var(--gray-500); max-width: 480px; margin-bottom: 36px; }

.hero__problems { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; max-width: 520px; margin-bottom: 28px; }
.hero__problem-card {
  background: #fff; border: 1.5px solid var(--gray-200); border-radius: var(--r-md);
  padding: 16px 18px; cursor: pointer; transition: all 0.2s; display: flex;
  align-items: center; gap: 12px; position: relative;
}
.hero__problem-card:hover, .hero__problem-card--active { border-color: var(--trust); box-shadow: 0 2px 12px rgba(37,99,235,0.1); }
.hero__problem-card--active { background: var(--blue-50); }
.hero__problem-name { font-family: 'Sora', sans-serif; font-weight: 600; font-size: 0.875rem; color: var(--gray-800); }
.hero__problem-desc { font-size: 0.75rem; color: var(--gray-400); margin-top: 1px; }

.hero__cta-row { display: flex; align-items: center; gap: 14px; flex-wrap: wrap; }
.hero__reassure { font-size: 0.8125rem; color: var(--gray-400); }

/* ---- PRIJSRADAR — asymmetrisch 2-kolom ---- */
.price-radar { padding: 80px 0; background: #fff; }
.price-radar__layout { display: grid; grid-template-columns: 1fr 1.1fr; gap: 64px; align-items: start; }
.price-radar__text .section-title { max-width: 360px; }
.price-radar__stat {
  padding: 16px 20px; background: var(--green-50); border: 1px solid var(--green-100);
  border-radius: var(--r-md); font-size: 0.875rem; color: var(--gray-600);
}
.price-radar__stat strong { color: var(--green-700); }

.price-bar { margin-bottom: 20px; }
.price-bar__header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 0; padding: 12px 16px; background: var(--gray-50); border-radius: var(--r-sm); }
.price-bar__label { font-family: 'Sora', sans-serif; font-weight: 600; font-size: 0.8125rem; display: flex; align-items: center; gap: 6px; }
.price-bar__label--safe { color: var(--green-700); }
.price-bar__label--caution { color: var(--orange-600); }
.price-bar__label--risk { color: var(--red-600); }
.price-bar__value { font-family: 'Sora', sans-serif; font-weight: 700; font-size: 0.875rem; }
.price-bar__value--safe { color: var(--green-700); }
.price-bar__value--caution { color: var(--orange-600); }
.price-bar__value--risk { color: var(--red-600); }

.price-bar__track { height: 44px; border-radius: var(--r-sm); display: flex; overflow: hidden; margin-top: 8px; }
.price-bar__segment { display: flex; align-items: center; justify-content: center; font-size: 0.75rem; font-weight: 600; color: #fff; transition: flex 0.4s ease; }
.price-bar__segment--safe { background: var(--green-600); flex: 5; }
.price-bar__segment--caution { background: var(--orange-500); flex: 3; }
.price-bar__segment--risk { background: var(--red-600); flex: 2; }

/* ---- RODE VLAGGEN — 3 grote items ---- */
.red-flags { padding: 72px 0; background: var(--gray-50); }
.red-flags .section-header { margin-bottom: 40px; }
.red-flags__grid { display: flex; flex-direction: column; gap: 16px; max-width: 720px; margin: 0 auto; }
.red-flag-card {
  display: flex; align-items: flex-start; gap: 20px; padding: 24px 28px;
  background: #fff; border: 1px solid var(--red-100); border-radius: var(--r-md);
  transition: box-shadow 0.2s;
}
.red-flag-card:hover { box-shadow: 0 4px 16px rgba(0,0,0,0.06); }
.red-flag-card__number {
  font-family: 'Sora', sans-serif; font-size: 1.75rem; font-weight: 800;
  color: var(--red-100); line-height: 1; flex-shrink: 0; min-width: 36px;
}
.red-flag-card__title { font-family: 'Sora', sans-serif; font-size: 1rem; font-weight: 700; color: var(--gray-900); margin-bottom: 4px; }
.red-flag-card__detail { font-size: 0.875rem; color: var(--gray-500); line-height: 1.5; }

.red-flags__warning {
  display: flex; align-items: center; gap: 10px; justify-content: center;
  margin-top: 32px; padding: 14px 24px; background: var(--orange-50);
  border: 1px solid var(--orange-100); border-radius: var(--r-md);
  max-width: 600px; margin-left: auto; margin-right: auto; color: var(--gray-600); font-size: 0.875rem;
}
.red-flags__warning svg { color: var(--orange-500); flex-shrink: 0; }

/* ---- BEDRIJVEN ---- */
.companies { padding: 80px 0; background: #fff; }
.company-recommended {
  max-width: 640px; margin: 0 auto 36px; background: #fff;
  border: 2px solid var(--trust); border-radius: var(--r-lg); padding: 28px;
  position: relative; box-shadow: 0 4px 24px rgba(37,99,235,0.08);
}
.company-recommended__label {
  position: absolute; top: -12px; left: 24px; background: var(--trust);
  color: #fff; padding: 4px 14px; border-radius: 20px; font-family: 'Sora', sans-serif;
  font-size: 0.6875rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.06em;
}
.company-card__header { display: flex; align-items: flex-start; justify-content: space-between; margin-bottom: 16px; }
.company-card__info h3 { font-size: 1.25rem; margin-bottom: 4px; }
.company-card__meta { display: flex; gap: 14px; font-size: 0.8125rem; color: var(--gray-400); margin-top: 4px; }
.company-card__score { text-align: center; }
.company-card__score-value { font-family: 'Sora', sans-serif; font-size: 2.25rem; font-weight: 800; color: var(--green-600); line-height: 1; }
.company-card__score-label { font-size: 0.625rem; color: var(--gray-400); text-transform: uppercase; letter-spacing: 0.06em; font-weight: 700; margin-top: 2px; }

.company-card__badges { display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: 16px; }
.badge { display: inline-flex; align-items: center; padding: 4px 10px; border-radius: 20px; font-size: 0.6875rem; font-weight: 600; }
.badge--green { background: var(--green-50); color: var(--green-700); border: 1px solid var(--green-100); }
.badge--blue { background: var(--blue-50); color: var(--blue-700); border: 1px solid var(--blue-100); }

.company-card__scores { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; margin-bottom: 20px; }
.score-item { display: flex; align-items: center; justify-content: space-between; padding: 8px 12px; background: var(--gray-50); border-radius: var(--r-sm); }
.score-item__label { font-size: 0.75rem; color: var(--gray-500); }
.score-item__value { font-family: 'Sora', sans-serif; font-weight: 700; font-size: 0.8125rem; color: var(--green-600); }

.company-card__cta { display: flex; gap: 10px; }
.company-card__cta .btn { flex: 1; }

.company-alternatives { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; max-width: 640px; margin: 0 auto; }
.company-alt { background: #fff; border: 1px solid var(--gray-200); border-radius: var(--r-md); padding: 20px; transition: border-color 0.2s; }
.company-alt:hover { border-color: var(--gray-300); }
.company-alt__label { font-size: 0.625rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.06em; color: var(--gray-400); margin-bottom: 8px; }
.company-alt h4 { font-size: 1rem; margin-bottom: 2px; }
.company-alt__score { font-family: 'Sora', sans-serif; font-size: 1.375rem; font-weight: 800; color: var(--green-600); margin: 8px 0; }
.company-alt__meta { font-size: 0.75rem; color: var(--gray-400); margin-bottom: 14px; }
.company-alt .btn { width: 100%; padding: 9px; font-size: 0.8125rem; }

/* ---- HOE HET WERKT — horizontaal, compact ---- */
.how-it-works { padding: 64px 0; background: var(--blue-50); }
.how-it-works .section-title { margin-bottom: 32px; }
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.step { display: flex; gap: 14px; align-items: flex-start; }
.step__number {
  font-family: 'Sora', sans-serif; font-size: 0.8125rem; font-weight: 800;
  width: 32px; height: 32px; display: flex; align-items: center; justify-content: center;
  background: var(--trust); color: #fff; border-radius: 50%; flex-shrink: 0;
}
.step__title { font-size: 0.875rem; font-weight: 700; margin-bottom: 2px; }
.step__desc { font-size: 0.8125rem; color: var(--gray-500); line-height: 1.4; }

/* ---- GARANTIE — horizontal strip ---- */
.guarantee { padding: 0; background: #fff; border-top: 1px solid var(--gray-100); border-bottom: 1px solid var(--gray-100); }
.guarantee__strip { display: grid; grid-template-columns: repeat(4, 1fr); }
.guarantee__item {
  display: flex; align-items: flex-start; gap: 14px; padding: 28px 20px;
  border-right: 1px solid var(--gray-100);
}
.guarantee__item:last-child { border-right: none; }
.guarantee__item svg { color: var(--trust); flex-shrink: 0; margin-top: 2px; }
.guarantee__item strong { font-family: 'Sora', sans-serif; font-size: 0.8125rem; font-weight: 700; color: var(--gray-900); display: block; }
.guarantee__item span { font-size: 0.75rem; color: var(--gray-400); }

/* ---- SOCIAL PROOF — dominant, clean ---- */
.social-proof { padding: 72px 0; background: var(--blue-950); }
.stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; max-width: 860px; margin: 0 auto; }
.stat { text-align: center; }
.stat__value { font-family: 'Sora', sans-serif; font-size: 2.75rem; font-weight: 800; color: #fff; line-height: 1; margin-bottom: 6px; }
.stat__value--green { color: var(--green-500); }
.stat__value--red { color: var(--red-500); }
.stat__label { font-size: 0.8125rem; color: rgba(255,255,255,0.45); }

/* ---- LIVE ACTIVITEIT — compact ---- */
.live-activity { padding: 56px 0; background: var(--gray-50); }
.live-activity__header { display: flex; justify-content: space-between; align-items: flex-end; margin-bottom: 24px; }
.live-activity__check { font-size: 0.75rem; color: var(--gray-400); }
.live-activity__check strong { color: var(--gray-500); }
.live-activity__feed { max-width: 100%; }
.live-item {
  display: flex; align-items: center; justify-content: space-between;
  padding: 14px 20px; background: #fff; border: 1px solid var(--gray-100);
  border-radius: var(--r-sm); margin-bottom: 8px;
}
.live-item__left { display: flex; align-items: center; gap: 12px; }
.live-item__dot { width: 8px; height: 8px; background: var(--green-500); border-radius: 50%; animation: pulse 2s infinite; }
.live-item__city { font-family: 'Sora', sans-serif; font-weight: 700; font-size: 0.875rem; color: var(--gray-800); margin-right: 8px; }
.live-item__problem { font-size: 0.8125rem; color: var(--gray-400); }
.live-item__right { text-align: right; display: flex; align-items: center; gap: 16px; }
.live-item__price { font-family: 'Sora', sans-serif; font-weight: 700; color: var(--green-600); }
.live-item__time { font-size: 0.6875rem; color: var(--gray-400); }

/* ---- POSITIONERING ---- */
.positioning { padding: 72px 0; background: #fff; }
.positioning .section-header { margin-bottom: 36px; }
.positioning__table { max-width: 760px; margin: 0 auto; border-radius: var(--r-lg); overflow: hidden; border: 1px solid var(--gray-200); }
.positioning__row { display: grid; grid-template-columns: 1.2fr 1fr 1fr; border-bottom: 1px solid var(--gray-100); }
.positioning__row:last-child { border-bottom: none; }
.positioning__row--header { background: var(--gray-50); font-family: 'Sora', sans-serif; font-weight: 700; font-size: 0.8125rem; color: var(--gray-600); }
.positioning__cell { padding: 14px 18px; font-size: 0.8125rem; display: flex; align-items: center; gap: 8px; }
.positioning__cell:not(:last-child) { border-right: 1px solid var(--gray-100); }
.positioning__cell--highlight { background: var(--blue-50); font-weight: 600; color: var(--trust); }

/* ---- CTA BLOK ---- */
.cta-block {
  padding: 64px 0; background: linear-gradient(135deg, var(--blue-600), var(--blue-800));
  color: #fff; text-align: center; position: relative; overflow: hidden;
}
.cta-block::before {
  content: ''; position: absolute; top: -60%; left: -20%; width: 140%; height: 220%;
  background: radial-gradient(ellipse, rgba(255,255,255,0.05) 0%, transparent 60%); pointer-events: none;
}
.cta-block .container { position: relative; z-index: 1; }
.cta-block__title { font-size: 2.25rem; font-weight: 800; color: #fff; margin-bottom: 8px; }
.cta-block__subtitle { font-size: 1rem; color: rgba(255,255,255,0.65); margin-bottom: 28px; }
.cta-block__reassurance { display: flex; justify-content: center; gap: 24px; margin-top: 20px; flex-wrap: wrap; }
.cta-block__reassurance span { font-size: 0.75rem; color: rgba(255,255,255,0.5); }

/* ---- FOOTER ---- */
.footer { background: var(--gray-900); color: var(--gray-400); padding: 48px 0 24px; }
.footer .container { display: flex; justify-content: space-between; flex-wrap: wrap; gap: 36px; }
.footer__brand { max-width: 260px; }
.footer__logo { font-family: 'Sora', sans-serif; font-weight: 800; font-size: 1.125rem; color: #fff; margin-bottom: 10px; }
.footer__desc { font-size: 0.8125rem; line-height: 1.5; }
.footer__links h4 { font-family: 'Sora', sans-serif; font-size: 0.75rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; color: var(--gray-300); margin-bottom: 14px; }
.footer__links ul { list-style: none; }
.footer__links li { margin-bottom: 8px; }
.footer__links a { font-size: 0.8125rem; color: var(--gray-400); transition: color 0.15s; }
.footer__links a:hover { color: #fff; }
.footer__bottom { border-top: 1px solid rgba(255,255,255,0.08); margin-top: 36px; padding-top: 20px; text-align: center; font-size: 0.6875rem; color: var(--gray-500); }

/* ---- STICKY CTA ---- */
.sticky-cta { display: none; position: fixed; bottom: 0; left: 0; right: 0; z-index: 200; padding: 10px 16px; background: #fff; border-top: 1px solid var(--gray-200); box-shadow: 0 -2px 16px rgba(0,0,0,0.06); }
.sticky-cta .btn { width: 100%; padding: 13px; font-size: 0.9375rem; }

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
  .price-radar__layout { grid-template-columns: 1fr; gap: 40px; }
  .price-radar__text .section-title { max-width: 100%; }
  .steps { grid-template-columns: 1fr 1fr; gap: 16px; }
  .guarantee__strip { grid-template-columns: 1fr 1fr; }
  .guarantee__item:nth-child(2) { border-right: none; }
  .stats { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .authority-bar .container { gap: 10px; font-size: 0.6875rem; }
  .authority-bar__item:nth-child(3), .authority-bar__item:nth-child(4) { display: none; }

  .nav__links { display: none; }
  .nav__toggle { display: block; }
  .nav__mobile-menu { display: flex; }

  .hero { padding: 40px 0 56px; }
  .hero__title { font-size: 2.125rem; }
  .hero__subtitle { font-size: 1rem; }
  .hero__problems { grid-template-columns: 1fr; gap: 10px; max-width: 100%; }

  .section-title { font-size: 1.5rem; }
  .section-title--sm { font-size: 1.25rem; }

  .price-radar { padding: 56px 0; }

  .red-flags { padding: 56px 0; }
  .red-flag-card { padding: 20px; gap: 14px; }
  .red-flag-card__number { font-size: 1.25rem; min-width: 28px; }

  .companies { padding: 56px 0; }
  .company-recommended { padding: 22px; }
  .company-card__header { flex-direction: column-reverse; gap: 10px; }
  .company-card__scores { grid-template-columns: 1fr; gap: 6px; }
  .company-card__cta { flex-direction: column; }
  .company-alternatives { grid-template-columns: 1fr; }

  .how-it-works { padding: 48px 0; }
  .steps { grid-template-columns: 1fr; gap: 12px; }

  .guarantee__strip { grid-template-columns: 1fr; }
  .guarantee__item { border-right: none; border-bottom: 1px solid var(--gray-100); padding: 20px; }
  .guarantee__item:last-child { border-bottom: none; }

  .stats { grid-template-columns: 1fr 1fr; gap: 16px; }
  .stat__value { font-size: 2rem; }

  .live-activity { padding: 40px 0; }
  .live-activity__header { flex-direction: column; align-items: flex-start; gap: 8px; }

  .positioning { padding: 56px 0; }
  .positioning__row { grid-template-columns: 1fr; }
  .positioning__cell:not(:last-child) { border-right: none; border-bottom: 1px solid var(--gray-100); }
  .positioning__row--header { display: none; }

  .cta-block { padding: 48px 0; }
  .cta-block__title { font-size: 1.75rem; }
  .cta-block__reassurance { gap: 12px; }

  .footer .container { flex-direction: column; gap: 28px; }

  .sticky-cta { display: block; }
  body { padding-bottom: 64px; }
}

@media (max-width: 480px) {
  .hero__title { font-size: 1.75rem; }
  .stat__value { font-size: 1.5rem; }
}

/* ============================================
   TRUSTUSFIX VERIFIED — Badge System
   ============================================ */

/* --- Full Badge (profiel, aanbevolen card) --- */
.tf-verified {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px 6px 10px;
  background: var(--blue-50);
  border: 1px solid var(--blue-200);
  border-radius: 8px;
  font-family: 'Sora', sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--blue-700);
  cursor: pointer;
  position: relative;
  transition: background 0.15s, border-color 0.15s;
  white-space: nowrap;
}
.tf-verified:hover {
  background: var(--blue-100);
  border-color: var(--blue-500);
}
.tf-verified__shield {
  flex-shrink: 0;
}

/* --- Compact Badge (alt cards, kleine contexten) --- */
.tf-verified--compact {
  padding: 3px 10px 3px 7px;
  font-size: 0.6875rem;
  gap: 5px;
  border-radius: 6px;
}
.tf-verified--compact .tf-verified__shield {
  width: 14px;
  height: 14px;
}

/* --- Outline variant (lichte achtergrond) --- */
.tf-verified--outline {
  background: transparent;
  border: 1.5px solid var(--blue-200);
}
.tf-verified--outline:hover {
  background: var(--blue-50);
}

/* --- Status varianten --- */
.tf-verified--monitoring {
  background: var(--orange-50);
  border-color: var(--orange-100);
  color: var(--orange-600);
}
.tf-verified--monitoring:hover {
  background: var(--orange-100);
  border-color: var(--orange-500);
}

.tf-verified--suspended {
  background: var(--red-50);
  border-color: var(--red-100);
  color: var(--red-600);
}

/* --- Tooltip --- */
.tf-verified__tooltip {
  display: none;
  position: absolute;
  bottom: calc(100% + 10px);
  left: 50%;
  transform: translateX(-50%);
  width: 280px;
  padding: 16px;
  background: var(--gray-900);
  color: #fff;
  border-radius: var(--r-md);
  font-family: 'DM Sans', sans-serif;
  font-size: 0.8125rem;
  font-weight: 400;
  line-height: 1.5;
  box-shadow: 0 8px 30px rgba(0,0,0,0.2);
  z-index: 50;
  pointer-events: none;
}
.tf-verified__tooltip::after {
  content: '';
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  border: 6px solid transparent;
  border-top-color: var(--gray-900);
}
.tf-verified:hover .tf-verified__tooltip {
  display: block;
}
.tf-verified__tooltip-title {
  font-family: 'Sora', sans-serif;
  font-weight: 700;
  font-size: 0.8125rem;
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 6px;
}
.tf-verified__tooltip-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.tf-verified__tooltip-list li {
  padding: 3px 0;
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.75rem;
  color: rgba(255,255,255,0.75);
}
.tf-verified__tooltip-list svg {
  flex-shrink: 0;
}

/* --- Badge in bedrijfskaart context --- */
.company-card__header .tf-verified {
  margin-top: 4px;
}

/* --- Badge embedded (toekomstig extern gebruik) --- */
.tf-embed {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  background: #fff;
  border: 1px solid var(--gray-200);
  border-radius: var(--r-sm);
  font-family: 'Sora', sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--gray-700);
  text-decoration: none;
  transition: border-color 0.15s;
}
.tf-embed:hover {
  border-color: var(--blue-500);
}

@media (max-width: 768px) {
  .tf-verified__tooltip {
    width: 240px;
    left: 0;
    transform: none;
  }
  .tf-verified__tooltip::after {
    left: 24px;
    transform: none;
  }
}
