/* ===================================
   SHARED STYLES — DRYVE
   Fonts, variables, reset, header,
   nav, logo, CTA, footer, responsive
   =================================== */

@font-face { font-display: swap; font-family: "Rubik"; font-weight: 400; src: url("fonts/rubik-v31-latin-regular.woff2") format("woff2"); }
@font-face { font-display: swap; font-family: "Rubik"; font-weight: 500; src: url("fonts/rubik-v31-latin-500.woff2") format("woff2"); }
@font-face { font-display: swap; font-family: "Rubik"; font-weight: 700; src: url("fonts/rubik-v31-latin-700.woff2") format("woff2"); }
@font-face { font-display: swap; font-family: "Rubik"; font-weight: 900; src: url("fonts/rubik-v31-latin-900.woff2") format("woff2"); }

:root {
  --navy: #0A1628;
  --accent: #1a2d45;
  --accent-warm: linear-gradient(145deg, #fd3d3a 0%, #e8282a 100%);
  --gradient: linear-gradient(145deg, var(--navy) 40%, var(--accent) 100%);
  --red: #fd3d3a;
  --red-hover: #d32f3c;
  --gray-0: #ffffff;
  --gray-50: #F5F5F5;
  --gray-75: #F5F5F5;
  --gray-100: #F5F5F5;
  --text: #0A1628;
  --muted: #4d4d4d;
  --radius: 12px;
  --shadow: 0 4px 16px rgba(10, 22, 40, 0.12);
  --shadow-hi: 0 8px 32px rgba(10, 22, 40, 0.16);
  --check: #58b678;
  --maxw: 1200px;
  --ease: cubic-bezier(0.22, 0.61, 0.36, 1);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html, body { margin: 0; padding: 0; width: 100%; }
body {
  overflow-x: hidden;
  background: #fff;
  color: var(--text);
  font-family: "Rubik", sans-serif;
  line-height: 1.75;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  scroll-behavior: smooth;
}

.wrap { max-width: var(--maxw); margin: 0 auto; padding: 0 2rem; }
a { color: var(--accent); text-decoration: none; transition: color 0.25s var(--ease); }
a:hover { color: var(--navy); }

/* ===================================
   HEADER
   =================================== */
header {
  position: sticky;
  top: 0;
  z-index: 999;
  background: #fff;
  border-bottom: 1px solid #e6ebf0;
  height: 80px;
  box-shadow: none;
  transition: box-shadow 0.3s ease, background-color 0.3s ease;
}

body.scrolled header { box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06); }

.header-inner {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 1.75rem;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand { display: flex; align-items: center; gap: 10px; text-decoration: none; }

/* ===================================
   LOGO
   =================================== */
.dryve-logo {
  font-family: 'Rubik', sans-serif;
  font-weight: 900;
  font-size: 3rem;
  color: var(--navy) !important;
  -webkit-text-fill-color: var(--navy) !important;
  position: relative;
  display: inline-flex;
  align-items: baseline;
  letter-spacing: -0.12em;
  line-height: 1;
  text-decoration: none;
}

.dryve-dot {
  width: 0.2em;
  height: 0.2em;
  background-color: var(--red);
  border-radius: 20%;
  display: inline-block;
  margin-left: 0.15em;
  position: relative;
  top: 0em;
  animation: dotPulse 5s ease-in-out infinite;
}

.dryve-dot::before,
.dryve-dot::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  border-radius: 20%;
  border: 2px solid var(--red);
  opacity: 0;
}

.dryve-dot::before { animation: ripple 5s ease-out infinite; }
.dryve-dot::after { animation: ripple 5s ease-out 2.5s infinite; }

@keyframes dotPulse {
  0%, 40%, 100% { transform: scale(1); opacity: 1; }
  20% { transform: scale(1.08); opacity: 0.98; }
}

@keyframes ripple {
  0% { width: 100%; height: 100%; opacity: 0.3; }
  40% { width: 200%; height: 200%; opacity: 0; }
  40.01%, 100% { width: 100%; height: 100%; opacity: 0; }
}

/* ===================================
   NAV
   =================================== */
nav a {
  margin-left: 1.25rem;
  font-weight: 400;
  color: var(--navy);
  transition: color 0.25s ease;
}
nav a:hover { color: var(--red); }

.nav-dropdown { position: relative; display: inline-block; margin-left: 1.25rem; }
.nav-dropdown-toggle { margin-left: 0 !important; cursor: pointer; }
.nav-dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: -1rem;
  padding-top: 0.5rem;
  z-index: 1000;
}
.nav-dropdown-menu-inner {
  background: #fff;
  border-radius: var(--radius);
  box-shadow: var(--shadow-hi);
  min-width: 160px;
  padding: 0.5rem 0;
}
.nav-dropdown:hover .nav-dropdown-menu,
.nav-dropdown.open .nav-dropdown-menu { display: block; }
.nav-dropdown-menu a {
  display: block;
  padding: 0.6rem 1.25rem;
  margin: 0;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--navy);
}
.nav-dropdown-menu a:hover { background: var(--gray-50); color: var(--red); }

.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 4px;
  background: none;
  border: 0;
  outline: 0;
  cursor: pointer;
}
.menu-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--navy);
  transition: all 0.3s ease;
}
.menu-toggle.active span:nth-child(1) { transform: rotate(45deg) translate(4px, 4px); }
.menu-toggle.active span:nth-child(2) { opacity: 0; }
.menu-toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(4px, -4px); }

/* ===================================
   CTA BUTTON
   =================================== */
.cta {
  display: inline-block;
  background: var(--accent-warm);
  border-radius: 10px;
  box-shadow: var(--shadow);
  color: #fff;
  font-weight: 600;
  padding: 14px 28px;
  text-decoration: none;
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease), background 0.25s var(--ease);
}
.cta:hover {
  background: linear-gradient(145deg, var(--accent) 0%, var(--navy) 100%);
  transform: translateY(-2px);
  box-shadow: var(--shadow-hi);
  color: #fff;
}

header .cta {
  background: var(--accent-warm);
  color: #fff !important;
  padding: 10px 22px;
  border-radius: 8px;
  font-weight: 600;
  box-shadow: var(--shadow);
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease);
}
header .cta:hover { transform: translateY(-1px); box-shadow: var(--shadow-hi); }

/* ===================================
   FOOTER
   =================================== */
footer {
  padding: 20px 0;
  text-align: left;
  background: #fff;
  color: #4d4d4d;
  border-top: 1px solid #e6ebf0;
  font-size: 14px;
}
footer a { color: var(--accent); font-weight: 400; text-decoration: none; }
footer a:hover { color: var(--navy); }

.footer-grid {
  display: grid;
  grid-template-columns: 4fr 3fr 3fr 3fr;
  gap: 2rem;
  border-top: 1px solid #e6ebf0;
  padding-top: 2rem;
}
.footer-col { font-size: 0.8rem; color: #4d4d4d; line-height: 2.2; }
.footer-col-label { color: var(--navy); font-size: 0.75rem; letter-spacing: 0.08em; text-transform: uppercase; }
.link-muted { color: #4d4d4d; text-decoration: none; }

/* ===================================
   UTILITY CLASSES
   =================================== */
.text-muted { font-size: 0.8rem; color: var(--muted); }
.text-muted-sm { font-size: 0.85rem; color: var(--muted); font-weight: 500; }
.trust-divider { width: 1px; height: 20px; background: #dce3e9; }

/* ===================================
   RESPONSIVE — SHARED
   =================================== */
@media (max-width: 768px) {
  nav {
    position: fixed;
    top: 80px;
    left: 0;
    width: 100vw;
    background: #fff;
    box-shadow: 0 6px 24px rgba(0, 0, 0, 0.1);
    display: none;
    flex-direction: column;
    align-items: center;
    padding: 1.5rem 0;
    z-index: 999;
  }
  nav.open { display: flex; animation: slideDown 0.25s ease forwards; }
  nav a { margin: 0.75rem 0; font-size: 1.05rem; color: var(--navy); }
  nav span { display: none; }
  .nav-dropdown { margin-left: 0; }
  .nav-dropdown-menu { position: static; padding-top: 0; }
  .nav-dropdown-menu-inner { box-shadow: none; background: transparent; padding: 0; }
  .nav-dropdown-menu a { text-align: center; padding: 0.4rem 0; font-size: 0.9rem; color: var(--muted); }
  .menu-toggle { display: flex; }
  nav .cta { margin-left: 0 !important; }
  nav span[style] { display: none !important; }

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

@media (max-width: 480px) {
  .footer-grid { grid-template-columns: 1fr; }
}

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

/* ===================================
   LAYOUT — INDEX
   =================================== */
section { padding: 100px 0; }
h1, h2, h3 { margin: 0 0 0.75rem; }
h1 { letter-spacing: -0.02em; }
p { margin: 0 0 1.6rem; }

.grid { display: grid; grid-template-columns: repeat(12, 1fr); gap: 3.2rem; }
.col-3 { grid-column: span 3; }
.col-4 { grid-column: span 4; }
.col-5 { grid-column: span 5; }
.col-6 { grid-column: span 6; }
.col-7 { grid-column: span 7; }
.col-8 { grid-column: span 8; }

@media (max-width: 960px) {
  .grid { grid-template-columns: repeat(6, 1fr); gap: 2rem; }
  .col-3, .col-4, .col-5, .col-6, .col-7, .col-8 { grid-column: span 6; }
  #signalen .col-4 { grid-column: span 3; }
}
@media (max-width: 640px) {
  .grid { grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
  .col-3, .col-4, .col-5, .col-6, .col-7, .col-8 { grid-column: span 4; }
}

/* ===================================
   HERO
   =================================== */
.hero {
  position: relative;
  background: var(--gradient);
  color: #fff;
  text-align: center;
  min-height: calc(100vh - 130px);
  display: flex;
  align-items: center;
  padding: 120px 0 80px;
  overflow: hidden;
}
.hero h1 { font-size: clamp(40px, 5.5vw, 60px); font-weight: 700; line-height: 1.3em; margin-bottom: 2rem; }
.hero .kicker { font-size: 22px; font-weight: 500; color: #c6daee; margin-bottom: 6px; }
.hero .sub { font-size: 16px; font-weight: 500; color: #c6daee; margin-bottom: 68px; }
.hero .cta { background: var(--accent-warm); color: #fff; border: none; }
.hero .cta:hover { background: linear-gradient(145deg, var(--accent) 0%, var(--navy) 100%); transform: translateY(-2px); }

.trust-strip { background: #fff; border-bottom: 1px solid #e6ebf0; padding: 1rem 0; }

.hero-author { position: relative; display: inline-flex; align-items: center; gap: 12px; margin-top: 0; text-decoration: none; color: #fff; opacity: 0.9; transition: opacity 0.3s var(--ease), transform 0.3s var(--ease); }
.hero-author.right { float: right; margin-right: 2%; }
.hero-author:hover { opacity: 1; transform: translateY(-2px); }
.hero-author img { width: 80px; aspect-ratio: 455 / 548; height: auto; object-fit: cover; transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease); }
.hero-author:hover img { transform: scale(1.03); }
.hero-author-text { font-size: 15px; line-height: 1.3; text-align: left; }
.hero-author-text strong { font-weight: 700; color: #fff; }
.hero-author-text span { font-weight: 400; color: rgba(255, 255, 255, 0.85); font-size: 14px; }
.hero-arrow { position: absolute; right: 33%; top: 60%; width: 100px; opacity: 0.5; transform: rotate(40deg); }

/* ===================================
   SECTIONS
   =================================== */
section.light { background: #fff; color: var(--text); }
section.gray { background: linear-gradient(180deg, var(--gray-50), var(--gray-75)); color: var(--text); }
section.navy { background: var(--gradient); color: #fff; }

section h2 { font-size: 40px; color: var(--navy); margin-bottom: 1rem; }
section.navy h2 { color: #fff; }
section.navy p, section.navy li, section.navy a { color: #e9edf2; }
section.navy a:hover { color: #fff; }
section.navy .card p { color: var(--text); }

/* ===================================
   CARDS
   =================================== */
.card { border-radius: var(--radius); padding: 24px; box-shadow: var(--shadow); transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease); }
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow-hi); }
.card.light { background: #fff; color: var(--text); }
.card.gray { background: var(--gray-100); color: var(--text); }
.card.gradient { background: var(--gradient); color: #fff; }
.card.dark { background: #102a45; color: #fff; }
.card h3 { margin-bottom: 1.6rem; font-size: 1.5rem; }
.card.gradient h3, .card.dark h3 { color: #fff; }
.card.gradient p, .card.dark p { color: #e8eef3; }
.card.gradient p strong, .card.dark p strong { color: #fff; }

/* ===================================
   UTILITIES
   =================================== */
.text-center { text-align: center; }
.pain-text { margin: 0; font-size: 0.95rem; line-height: 1.6; }
.section-header { text-align: center; max-width: 680px; margin: 0 auto 2.5rem; }
.section-header-lg { text-align: center; max-width: 680px; margin: 0 auto 3rem; }
.pillar-label { font-size: 0.7rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: #fd3d3a; margin-bottom: 0.75rem; }
.cta-wrap { text-align: center; margin-top: 2.5rem; }
.footercta { font-size: 40px; }

/* ===================================
   TEAM
   =================================== */
.team-photo { width: 90px; height: 90px; object-fit: cover; clip-path: url(#hexagon-clip); margin-bottom: 0.75rem; }
.team-photo-placeholder { opacity: 0.5; }
.team-name { font-weight: 700; font-size: 0.9rem; }
.team-role { font-size: 0.8rem; color: var(--muted); }

/* ===================================
   CHECKLIST
   =================================== */
ul.checklist { list-style: none; margin-top: 0.25rem; padding-left: 0; }
ul.checklist li { position: relative; padding-left: 26px; margin: 0.5rem 0; }
ul.checklist li::before { content: ""; display: inline-block; width: 16px; height: 16px; background: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%2358B678' stroke-width='5' stroke-linecap='round' stroke-linejoin='round'><polyline points='20 6 9 17 4 12'/></svg>") no-repeat center; background-size: contain; position: absolute; left: 0; top: 0.2rem; }
ul.checklist.light li::before { content: ""; background: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%2358B678' stroke-width='5' stroke-linecap='round' stroke-linejoin='round'><polyline points='20 6 9 17 4 12'/></svg>") no-repeat center; background-size: contain; }
.card.gradient ul.checklist.light li { color: #e9edf2; }

/* ===================================
   ABOUT
   =================================== */
.about-photo { display: flex; flex-direction: column; align-items: center; text-align: center; }
.about-photo img { width: 200px; aspect-ratio: 455 / 548; height: auto; object-fit: cover; transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease); }
.about-photo img:hover { transform: scale(1.02); }
.about-photo .quote { margin-top: 1.5rem; font-style: italic; font-weight: 500; color: var(--text); max-width: 300px; line-height: 1.6; }

/* ===================================
   CONTACT / SUBHERO
   =================================== */
.subhero { text-align: center; background: var(--gradient); color: #fff; padding: 200px 0; }
.subhero h2 { font-size: 40px; color: #fff; margin-bottom: 1rem; }
.subhero p { color: #e9edf2; font-size: 18px; margin: 0.75rem auto 1.75rem; max-width: 720px; }
.contact-actions { display: flex; flex-direction: column; align-items: center; gap: 1rem; }
.contact-actions .cta { background: #fff; color: var(--navy); font-weight: 600; padding: 8px 24px; border-radius: 10px; border: 2px solid transparent; transition: all 0.3s var(--ease); box-shadow: var(--shadow); }
.contact-actions .cta:hover { background: transparent; color: #fff; border-color: #fff; box-shadow: var(--shadow-hi); transform: translateY(-2px); }
.contact-actions p { margin: 0; font-size: 16px; }
.contact-actions a { color: #fff; font-weight: 600; text-decoration: none; transition: color 0.3s var(--ease); }
.contact-actions a:hover { color: #c6daee; }

/* ===================================
   REVEAL ANIMATION
   =================================== */
.reveal { opacity: 0; transform: translateY(16px); transition: opacity 0.6s var(--ease), transform 0.6s var(--ease); }
.reveal.is-visible { opacity: 1; transform: none; }

/* ===================================
   COOKIE BANNER
   =================================== */
.cookie-banner {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  background: var(--gradient);
  color: #fff;
  padding: 1.25rem 2rem;
  border-top: none;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  flex-wrap: wrap;
  box-shadow: 0 -4px 24px rgba(0, 0, 0, 0.15);
  font-size: 0.85rem;
  line-height: 1.5;
}
.cookie-banner.hidden { display: none; }
.cookie-banner.visible { display: flex; }
body:has(.cookie-banner.visible) .hero { min-height: calc(100vh - 250px); }
.cookie-banner p { margin: 0; max-width: 600px; color: rgba(255,255,255,0.75); }
.cookie-banner a { color: #fff; font-weight: 600; text-decoration: underline; text-underline-offset: 2px; }
.cookie-banner a:hover { color: var(--red); }
.cookie-buttons { display: flex; gap: 0.75rem; flex-shrink: 0; }
.cookie-btn {
  padding: 0.6rem 1.25rem;
  border-radius: 8px;
  font-family: "Rubik", sans-serif;
  font-size: 0.8rem;
  font-weight: 600;
  cursor: pointer;
  border: none;
  transition: all 0.2s ease;
}
.cookie-btn-accept {
  background: #c91c1e;
  color: #fff;
}
.cookie-btn-accept:hover {
  background: #a8171a;
}
.cookie-btn-reject {
  background: transparent;
  color: rgba(255,255,255,0.7);
  border: 1.5px solid rgba(255,255,255,0.3);
}
.cookie-btn-reject:hover {
  border-color: #fff;
  color: #fff;
}

@media (max-width: 640px) {
  .cookie-banner {
    flex-direction: column;
    text-align: center;
    padding: 1.25rem 1.5rem;
  }
  .cookie-buttons { width: 100%; }
  .cookie-btn { flex: 1; }
}

/* ===================================
   FAQ ACCORDION
   =================================== */
.faq-item { border-bottom: 1px solid #e6ebf0; }
.faq-item:first-child { border-top: 1px solid #e6ebf0; }
.faq-question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.25rem 0;
  background: none;
  border: none;
  font-family: "Rubik", sans-serif;
  font-size: 1rem;
  font-weight: 600;
  color: var(--navy);
  cursor: pointer;
  text-align: left;
}
.faq-question svg {
  flex-shrink: 0;
  transition: transform 0.3s ease;
}
.faq-item.open .faq-question svg {
  transform: rotate(180deg);
}
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}
.faq-item.open .faq-answer {
  max-height: 300px;
}
.faq-answer p {
  padding-bottom: 1.25rem;
  font-size: 0.95rem;
  color: var(--muted);
  line-height: 1.7;
}

/* ===================================
   REVIEWS HEADER
   =================================== */
.header-reviews { display: flex; align-items: center; gap: 0.4rem; text-decoration: none; margin-left: 1.25rem; }
.header-stars { color: #fd3d3a; font-size: 0.85rem; letter-spacing: 1px; }
.header-reviews-text { font-size: 0.8rem; font-weight: 600; color: var(--navy); }
.header-reviews-count { font-weight: 400; color: var(--muted); }

/* ===================================
   QUICK SCAN
   =================================== */
.scan-layout { display: grid; grid-template-columns: 1fr 1fr; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-hi); }
.scan-left { background: var(--gradient); color: #fff; padding: 3rem 2.5rem; display: flex; flex-direction: column; justify-content: center; }
.scan-left-title { font-size: clamp(1.5rem, 2.5vw, 2rem) !important; color: #fff !important; background: none !important; -webkit-text-fill-color: #fff !important; line-height: 1.2; margin-bottom: 1rem; }
.scan-left p { font-size: 1rem; line-height: 1.7; opacity: 0.92; margin-bottom: 1.75rem; }
.scan-badge { display: inline-block; background: rgba(255, 255, 255, 0.18); color: #fff; font-size: 0.7rem; font-weight: 600; padding: 0.3rem 0.85rem; border-radius: 100px; margin-bottom: 1.25rem; letter-spacing: 0.06em; text-transform: uppercase; }
.scan-reasons { list-style: none; padding: 0; margin: 0 0 2rem; }
.scan-reasons li { display: flex; align-items: center; gap: 0.65rem; font-size: 0.95rem; font-weight: 500; margin-bottom: 0.75rem; }
.scan-reasons li svg { flex-shrink: 0; opacity: 0.9; }
.scan-trust { display: flex; align-items: center; gap: 0.5rem; font-size: 0.8rem; opacity: 0.7; margin-top: auto; }
.scan-right { background: var(--gray-50); padding: 2rem 2.5rem; min-height: 480px; display: flex; flex-direction: column; }
.scan-progress { height: 3px; background: #dce3e9; border-radius: 3px; margin-bottom: 0.5rem; overflow: hidden; }
.scan-progress__fill { height: 100%; background: var(--red); width: 0%; transition: width 0.4s var(--ease); border-radius: 3px; }
.scan-step-indicator { font-size: 0.75rem; color: var(--muted); margin-bottom: 1.5rem; min-height: 1.1em; }
.scan-screen { display: none; opacity: 0; transform: translateY(12px); transition: opacity 0.45s ease, transform 0.45s ease; flex: 1; }
.scan-screen.active { display: flex; flex-direction: column; }
.scan-screen.visible { opacity: 1; transform: translateY(0); }
.scan-intro-icon { margin-bottom: 1.25rem; }
.scan-q-title { font-size: 1.2rem; font-weight: 600; color: var(--navy); margin-bottom: 0.4rem; line-height: 1.35; }
.scan-q-desc { font-size: 0.9rem; color: var(--muted); margin-bottom: 1.5rem; line-height: 1.5; }
.scan-q-number { font-size: 0.7rem; font-weight: 600; color: #d32f3c; text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 0.6rem; }
.scan-start-btn { align-self: flex-start; border: none; cursor: pointer; font-family: "Rubik", sans-serif; font-size: 0.95rem; }
.scan-options { display: flex; flex-direction: column; gap: 0.5rem; }
.scan-option { background: #fff; border: 1.5px solid #dce3e9; border-radius: 10px; padding: 0.8rem 1rem; cursor: pointer; transition: all 0.2s ease; display: flex; align-items: center; gap: 0.75rem; user-select: none; -webkit-tap-highlight-color: transparent; }
.scan-option:hover { border-color: var(--accent); background: #f8f9fb; }
.scan-option.selected { border-color: #d32f3c; background: rgba(253, 61, 58, 0.06); }
.scan-option__radio { width: 18px; height: 18px; border-radius: 50%; border: 2px solid #dce3e9; flex-shrink: 0; position: relative; transition: all 0.2s ease; }
.scan-option.selected .scan-option__radio { border-color: #d32f3c; }
.scan-option.selected .scan-option__radio::after { content: ""; position: absolute; top: 3px; left: 3px; width: 8px; height: 8px; border-radius: 50%; background: var(--red); }
.scan-option__text { font-size: 0.875rem; color: var(--text); line-height: 1.4; }
.scan-back-btn { background: none; border: 1px solid #dce3e9; border-radius: 8px; padding: 0.5rem 1.2rem; font-family: "Rubik", sans-serif; font-size: 0.8rem; color: var(--muted); cursor: pointer; margin-top: 1.25rem; align-self: flex-start; transition: all 0.2s ease; }
.scan-back-btn:hover { border-color: var(--accent); color: var(--text); }
.scan-result-badge { display: inline-flex; align-items: center; gap: 0.4rem; padding: 0.35rem 0.85rem; border-radius: 100px; font-size: 0.75rem; font-weight: 600; margin-bottom: 1rem; }
.scan-result-badge--low { background: rgba(239, 68, 68, 0.1); color: #dc2626; }
.scan-result-badge--mid { background: rgba(230, 162, 60, 0.12); color: #b45309; }
.scan-result-badge--high { background: rgba(34, 197, 94, 0.1); color: #16a34a; }
.scan-result-badge__dot { width: 7px; height: 7px; border-radius: 50%; }
.scan-result-badge--low .scan-result-badge__dot { background: #dc2626; }
.scan-result-badge--mid .scan-result-badge__dot { background: #b45309; }
.scan-result-badge--high .scan-result-badge__dot { background: #16a34a; }
.scan-result-title { font-size: 1.3rem; font-weight: 700; color: var(--navy); margin-bottom: 0.5rem; line-height: 1.25; }
.scan-result-sub { font-size: 0.875rem; color: var(--muted); line-height: 1.6; margin-bottom: 1.25rem; }
.scan-meter { display: flex; gap: 3px; margin-bottom: 1.5rem; }
.scan-meter__seg { height: 5px; flex: 1; border-radius: 3px; background: #dce3e9; transition: background 0.5s ease; }
.scan-meter__seg.filled--low { background: #dc2626; }
.scan-meter__seg.filled--mid { background: #fd3d3a; }
.scan-meter__seg.filled--high { background: #16a34a; }
.scan-recs-label { font-size: 0.65rem; font-weight: 600; color: var(--muted); text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 0.65rem; }
.scan-rec { background: #fff; border: 1px solid #e6ebf0; border-radius: 10px; padding: 0.85rem 1rem; margin-bottom: 0.5rem; display: flex; gap: 0.7rem; align-items: flex-start; font-size: 0.85rem; line-height: 1.5; color: var(--text); }
.scan-rec__icon { flex-shrink: 0; width: 18px; height: 18px; margin-top: 2px; }
.scan-rec__icon svg { display: block; }
.scan-result-divider { height: 1px; background: #e6ebf0; margin: 1.25rem 0; }
.scan-result-cta { text-align: center; }
.scan-result-cta h4 { font-size: 1.05rem; font-weight: 600; color: var(--navy); margin-bottom: 0.4rem; }
.scan-result-cta p { font-size: 0.825rem; color: var(--muted); margin-bottom: 1rem; }
.scan-result-cta .cta { display: inline-block; border: none; cursor: pointer; font-family: "Rubik", sans-serif; font-size: 0.9rem; text-decoration: none; background: var(--accent-warm); color: #fff; }
.scan-result-cta .cta:hover { background: linear-gradient(145deg, var(--accent) 0%, var(--navy) 100%); color: #fff; }
.scan-reset-btn { background: none; border: none; color: var(--muted); font-size: 0.8rem; cursor: pointer; margin-top: 0.75rem; font-family: "Rubik", sans-serif; text-decoration: underline; text-underline-offset: 2px; }
.scan-reset-btn:hover { color: var(--text); }

.scan-email-wrap { margin-top: 2rem; text-align: center; }
.scan-email-divider { width: 40px; height: 1px; background: #dce3e9; margin: 0 auto 1.25rem; }
.scan-email-label { font-size: 0.75rem; color: var(--muted); margin-bottom: 0.75rem; text-transform: uppercase; letter-spacing: 0.05em; font-weight: 500; }
.scan-email-form { display: flex; gap: 0; justify-content: center; max-width: 340px; margin: 0 auto; border-radius: 10px; overflow: hidden; box-shadow: var(--shadow); }
.scan-email-input { flex: 1; padding: 0.75rem 1rem; border: none; font-family: "Rubik", sans-serif; font-size: 0.85rem; color: var(--navy); background: #fff; outline: none; }
.scan-email-input::placeholder { color: #aab; }
.scan-email-btn { padding: 0.75rem 1.25rem; background: var(--navy); color: #fff; border: none; font-family: "Rubik", sans-serif; font-size: 0.85rem; font-weight: 600; cursor: pointer; transition: background 0.2s ease; white-space: nowrap; }
.scan-email-btn:hover { background: var(--accent); }
.scan-email-msg { font-size: 0.8rem; margin-top: 0.75rem; text-align: center; }

/* ===================================
   PAGE-SPECIFIC (privacy, etc.)
   =================================== */
.page-hero { background: var(--gradient); color: #fff; padding: 60px 0; text-align: center; }
.page-hero h1 { font-size: clamp(1.5rem, 4vw, 2.5rem); font-weight: 700; }
.content { max-width: 760px; margin: 0 auto; padding: 4rem 2rem; }
.content h2 { font-size: 1.2rem; font-weight: 700; margin: 2.5rem 0 0.75rem; }
.content h3 { font-size: 1rem; font-weight: 700; margin: 1.5rem 0 0.5rem; }
.content p { margin-bottom: 1rem; color: #444; font-size: 0.95rem; }
.content ul { margin: 0.5rem 0 1rem 1.25rem; color: #444; font-size: 0.95rem; }
.content li { margin-bottom: 0.4rem; }
.content a { color: var(--red); text-decoration: none; }
.content a:hover { color: var(--navy); }

/* ===================================
   RESPONSIVE — INDEX
   =================================== */
@media (max-width: 1024px) {
  .hero { padding: 140px 0 120px; background-position: center top; }
  .hero h1 { font-size: clamp(32px, 6vw, 52px); line-height: 1.2; }
  .hero .kicker { font-size: 20px; }
  .hero .sub { font-size: 15px; margin-bottom: 48px; }
}

@media (max-width: 900px) {
  #over .grid { grid-template-columns: 1fr; text-align: center; }
  .about-photo img { margin-top: 2rem; }
  .scan-layout { grid-template-columns: 1fr; }
  .scan-left { padding: 2rem; }
  .scan-right { min-height: 420px; padding: 1.75rem 2rem; }
}

@media (max-width: 768px) {
  .header-inner { flex-wrap: wrap; justify-content: space-between; align-items: center; padding: 10px 20px; }
  .header-reviews { display: none; }
  .hero { padding: 120px 0 80px; min-height: auto; background-size: cover; background-position: center top; }
  .hero h1 { font-size: 30px; padding: 0 1rem; }
  .hero .kicker { font-size: 15px; margin-bottom: 6px; }
  .hero .sub { font-size: 15px; margin-bottom: 40px; }
  .hero .cta { padding: 14px 28px; font-size: 16px; }
  .hero-author.right { float: none; margin: 40px auto 0; justify-content: center; text-align: center; }
  .hero-author { flex-direction: column; gap: 10px; }
  .hero-author img { width: 90px; height: 90px; object-fit: contain; }
  .hero-author-text { text-align: center; }
  .hero-arrow { display: none; }
  section h2 { font-size: 28px; }
  section { padding: 50px 0; }
  ul.checklist li { position: relative; padding-left: 26px; margin: 0.5rem 0; font-size: 0.9em; }
  .footercta { font-size: 34px; }
  .page-hero { padding: 120px 0 40px; }

  /* Inline-styled sections override */
  #signalen { padding: 50px 0 !important; }

  /* Trust-strip stacked */
  .trust-strip .wrap { flex-direction: column; gap: 0.75rem; }
  .trust-divider { width: 48px; height: 1px; }

  /* Team foto's smaller gap */
  .team-row { gap: 1.5rem; }
  .team-photo { width: 70px; height: 70px; }

  /* Partner logos kleiner */
  .partner-logos img { height: 30px !important; }
}

@media (max-width: 640px) {
  .subhero { padding: 80px 0; }
  .subhero h2 { font-size: 28px; }
  .card h3 { margin-bottom: 1.6rem; font-size: 1.1rem; }
  .scan-left { padding: 1.5rem; }
  .scan-right { padding: 1.25rem 1.5rem; min-height: 380px; }
  .scan-left-title { font-size: 1.35rem !important; }
}

@media (max-width: 480px) {
  .hero { padding: 100px 0 60px; }
  .hero h1 { font-size: 24px; }
  .hero .cta { font-size: 15px; padding: 12px 24px; }
  .team-row { gap: 1rem; }
  .team-photo { width: 60px; height: 60px; }
  .team-name { font-size: 0.8rem; }
  .partner-logos { gap: 1.5rem !important; }
  .partner-logos img { height: 25px !important; }
  .faq-question { font-size: 0.9rem; padding: 1rem 0; }
}
