/* =====================================================
   Rob van Maanen – Pharmaceutical Medicine Consulting
   Main Stylesheet
   ===================================================== */

/* ── Google Fonts ── */
@import url('https://fonts.googleapis.com/css2?family=DM+Sans:wght@300;400;500;600&family=DM+Serif+Display:ital@0;1&display=swap');

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

:root {
  --navy:        #1A3D5C;
  --steel:       #2E7DAA;
  --steel-light: #5BA8D0;
  --pale:        #a8d4ea;
  --ice:         #D6EEF8;
  --bg-hero:     #f0f4f7;
  --bg-services: #f8fafc;
  --green-out:   #EEF6F0;
  --green-acc:   #3A8C5A;
  --green-text:  #2a5e3a;
  --border:      rgba(26,61,92,0.12);
  --border-mid:  rgba(26,61,92,0.22);
  --text-primary:   #1a1a1a;
  --text-secondary: #5a6e7a;
  --text-muted:     #8aa0ad;
  --font-serif: 'DM Serif Display', Georgia, serif;
  --font-sans:  'DM Sans', system-ui, sans-serif;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-sans);
  font-size: 14px;
  line-height: 1.6;
  color: var(--text-primary);
  background: #ffffff;
}

/* ── Site Wrapper ── */
.site-wrapper {
  max-width: 960px;
  margin: 0 auto;
  background: #ffffff;
  box-shadow: 0 0 0 1px var(--border);
}

/* ── Page Visibility ── */
.page { display: none; }
.page.active { display: block; }

/* =====================================================
   NAVIGATION
   ===================================================== */
.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 32px;
  border-bottom: 0.5px solid var(--border);
  background: #ffffff;
  position: sticky;
  top: 0;
  z-index: 100;
}

.logo-area {
  display: flex;
  align-items: center;
  gap: 11px;
  text-decoration: none;
}

.logo-area img.logo-img {
  width: 44px;
  height: 44px;
  flex-shrink: 0;
}

.logo-name {
  font-family: var(--font-serif);
  font-size: 16px;
  color: var(--navy);
  line-height: 1.15;
}

.logo-tagline {
  font-size: 9px;
  color: var(--steel);
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-top: 2px;
}

.nav-links {
  display: flex;
  gap: 26px;
  list-style: none;
}

.nav-links a {
  font-size: 11px;
  font-weight: 500;
  color: var(--text-secondary);
  text-decoration: none;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  cursor: pointer;
  transition: color 0.18s;
}

.nav-links a:hover,
.nav-links a.active-link {
  color: var(--navy);
}

.nav-links a.active-link {
  border-bottom: 1.5px solid var(--navy);
  padding-bottom: 1px;
}

.nav-cta {
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 500;
  padding: 7px 18px;
  border-radius: 4px;
  background: var(--navy);
  color: #ffffff;
  border: none;
  cursor: pointer;
  transition: background 0.18s;
  text-decoration: none;
}

.nav-cta:hover { background: var(--steel); }

/* Hamburger (mobile) */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
}

.nav-toggle span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--navy);
  transition: all 0.2s;
}

/* =====================================================
   SHARED SECTION STYLES
   ===================================================== */
.section-header {
  display: flex;
  align-items: baseline;
  gap: 12px;
  padding: 22px 32px 12px;
  border-bottom: 0.5px solid var(--border);
}

.section-title {
  font-family: var(--font-serif);
  font-size: 17px;
  color: var(--navy);
  white-space: nowrap;
}

.section-rule {
  flex: 1;
  height: 0.5px;
  background: var(--border);
  margin-bottom: 2px;
}

.eyebrow {
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--steel);
  margin-bottom: 7px;
}

/* =====================================================
   PAGE 1 – PROFILE HERO
   ===================================================== */
.hero {
  display: grid;
  grid-template-columns: 220px 1fr;
  border-bottom: 0.5px solid var(--border);
}

.hero-photo-col {
  background: var(--bg-hero);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 32px 22px;
  border-right: 0.5px solid var(--border);
}

.photo-frame {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  overflow: hidden;
  border: 3px solid var(--navy);
  margin-bottom: 14px;
  flex-shrink: 0;
}

.photo-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.hero-name {
  font-family: var(--font-serif);
  font-size: 17px;
  color: var(--navy);
  text-align: center;
  line-height: 1.25;
  margin-bottom: 4px;
}

.hero-credentials {
  font-size: 10px;
  color: var(--text-secondary);
  text-align: center;
  letter-spacing: 0.04em;
  margin-bottom: 9px;
}

.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
  justify-content: center;
}

.badge {
  font-size: 9px;
  font-weight: 500;
  padding: 3px 8px;
  border-radius: 3px;
  background: var(--ice);
  color: var(--navy);
  letter-spacing: 0.02em;
}

.hero-text-col {
  padding: 32px 36px 28px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.hero-headline {
  font-family: var(--font-serif);
  font-size: 26px;
  line-height: 1.2;
  color: var(--navy);
  margin-bottom: 12px;
}

.hero-headline em { font-style: italic; color: var(--steel); }

.hero-summary {
  font-size: 12px;
  line-height: 1.75;
  color: var(--text-secondary);
  margin-bottom: 14px;
}

.tag-label {
  font-size: 8px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 5px;
}

.tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
  margin-bottom: 12px;
}

.mod-tag {
  font-size: 9px;
  font-weight: 500;
  padding: 3px 8px;
  border-radius: 3px;
  border: 0.5px solid var(--steel);
  color: var(--steel);
}

.stats-row {
  display: flex;
  gap: 24px;
  margin-top: 2px;
}

.stat-box { text-align: center; }

.stat-num {
  font-family: var(--font-serif);
  font-size: 24px;
  color: var(--navy);
  line-height: 1;
}

.stat-lbl {
  font-size: 9px;
  color: var(--text-muted);
  margin-top: 2px;
  letter-spacing: 0.04em;
}

/* =====================================================
   PAGE 1 – SERVICES GRID
   ===================================================== */
.services-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: var(--border);
  border-bottom: 0.5px solid var(--border);
}

.service-card {
  background: #ffffff;
  padding: 22px 24px;
}

.service-icon {
  width: 26px;
  height: 26px;
  border-radius: 4px;
  background: var(--ice);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 9px;
}

.service-icon svg { width: 13px; height: 13px; }

.service-title {
  font-size: 12px;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 5px;
}

.service-desc {
  font-size: 11px;
  line-height: 1.65;
  color: var(--text-secondary);
}

/* =====================================================
   PAGE 1 – CAREER TIMELINE
   ===================================================== */
.timeline {
  padding: 0 32px 28px;
}

.timeline-item {
  display: grid;
  grid-template-columns: 110px 1fr;
  gap: 16px;
  padding: 13px 0;
  border-bottom: 0.5px solid var(--border);
}

.timeline-item:last-child { border-bottom: none; }

.timeline-years {
  font-size: 10px;
  font-weight: 600;
  color: var(--steel);
  letter-spacing: 0.04em;
  padding-top: 2px;
}

.timeline-company {
  font-size: 12px;
  font-weight: 600;
  color: var(--navy);
}

.timeline-role {
  font-size: 11px;
  color: var(--text-secondary);
  margin-top: 1px;
}

.timeline-ta {
  font-size: 10px;
  color: var(--steel);
  margin-top: 3px;
  font-style: italic;
}

/* =====================================================
   PAGE 1 – QUALIFICATIONS
   ===================================================== */
.quals {
  padding: 0 32px 28px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}

.qual-col-title {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 10px;
}

.qual-item {
  display: flex;
  gap: 8px;
  align-items: flex-start;
  margin-bottom: 8px;
}

.qual-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--steel);
  margin-top: 4px;
  flex-shrink: 0;
}

.qual-text {
  font-size: 11px;
  color: var(--text-secondary);
  line-height: 1.5;
}

.qual-text strong {
  color: var(--text-primary);
  font-weight: 500;
}

/* =====================================================
   PAGE 2 – PROJECTS
   ===================================================== */
.projects-intro {
  padding: 22px 32px 0;
}

.projects-intro p {
  font-size: 12px;
  line-height: 1.75;
  color: var(--text-secondary);
  max-width: 600px;
}

.project-list {
  padding: 8px 32px 28px;
}

.project-card {
  border: 0.5px solid var(--border);
  border-radius: 8px;
  padding: 20px 22px;
  margin-top: 14px;
  transition: border-color 0.18s;
}

.project-card:hover { border-color: var(--border-mid); }

.project-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 8px;
}

.project-company-row {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 4px;
}

.project-company-tag {
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  background: var(--ice);
  color: var(--navy);
  padding: 2px 7px;
  border-radius: 3px;
}

.project-year {
  font-size: 10px;
  color: var(--text-muted);
}

.project-title {
  font-size: 14px;
  font-weight: 600;
  color: var(--navy);
  line-height: 1.3;
}

.skill-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
  flex-shrink: 0;
}

.skill-tag {
  font-size: 9px;
  font-weight: 500;
  padding: 2px 7px;
  border-radius: 3px;
  border: 0.5px solid var(--border-mid);
  color: var(--text-secondary);
  white-space: nowrap;
}

.skill-tag.highlight {
  background: var(--steel);
  border-color: var(--steel);
  color: #ffffff;
}

.project-body {
  font-size: 11px;
  line-height: 1.7;
  color: var(--text-secondary);
  margin-bottom: 10px;
}

.project-outcome {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  background: var(--green-out);
  border-left: 2.5px solid var(--green-acc);
  padding: 8px 12px;
  border-radius: 0 4px 4px 0;
}

.outcome-label {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: var(--green-acc);
  flex-shrink: 0;
  margin-top: 1px;
}

.outcome-text {
  font-size: 11px;
  color: var(--green-text);
  line-height: 1.55;
}

/* ── Recommendations ── */
.testimonials-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  padding: 0 32px 28px;
}

.testimonial-card {
  border: 0.5px solid var(--border);
  border-radius: 8px;
  padding: 18px 20px;
}

.testimonial-quote {
  font-size: 11px;
  line-height: 1.75;
  color: var(--text-secondary);
  font-style: italic;
  margin-bottom: 12px;
}

.testimonial-attr {
  font-size: 11px;
  font-weight: 600;
  color: var(--navy);
}

.testimonial-role {
  font-size: 10px;
  color: var(--text-secondary);
}

/* =====================================================
   PAGE 3 – SERVICES DETAIL
   ===================================================== */
.services-hero {
  background: var(--bg-hero);
  border-bottom: 0.5px solid var(--border);
  padding: 36px 40px;
}

.services-hero-title {
  font-family: var(--font-serif);
  font-size: 26px;
  color: var(--navy);
  margin-bottom: 10px;
  line-height: 1.2;
}

.services-hero-sub {
  font-size: 13px;
  line-height: 1.75;
  color: var(--text-secondary);
  max-width: 560px;
}

.service-block {
  border-bottom: 0.5px solid var(--border);
}

.service-block-inner {
  display: grid;
  grid-template-columns: 220px 1fr;
}

.service-block-label {
  padding: 28px 26px;
  border-right: 0.5px solid var(--border);
  background: var(--bg-services);
}

.service-block-num {
  font-family: var(--font-serif);
  font-size: 38px;
  color: var(--ice);
  line-height: 1;
  margin-bottom: 6px;
}

.service-block-name {
  font-family: var(--font-serif);
  font-size: 15px;
  color: var(--navy);
  line-height: 1.3;
  margin-bottom: 7px;
}

.service-block-tagline {
  font-size: 10px;
  color: var(--steel);
  font-weight: 500;
  letter-spacing: 0.03em;
}

.service-block-body {
  padding: 28px 34px;
}

.service-block-desc {
  font-size: 12px;
  line-height: 1.8;
  color: var(--text-secondary);
  margin-bottom: 18px;
}

.service-items-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 9px;
}

.service-item {
  display: flex;
  gap: 8px;
  align-items: flex-start;
}

.service-item-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--steel);
  margin-top: 5px;
  flex-shrink: 0;
}

.service-item-text {
  font-size: 11px;
  color: var(--text-secondary);
  line-height: 1.5;
}

.service-item-text strong {
  color: var(--navy);
  font-weight: 500;
}

.service-cta-band {
  background: var(--navy);
  padding: 28px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.service-cta-title {
  font-family: var(--font-serif);
  font-size: 20px;
  color: #ffffff;
}

.service-cta-sub {
  font-size: 11px;
  color: #a8c4d8;
  margin-top: 4px;
}

.service-cta-btn {
  font-family: var(--font-sans);
  font-size: 12px;
  font-weight: 500;
  padding: 10px 24px;
  border-radius: 4px;
  background: #ffffff;
  color: var(--navy);
  border: none;
  cursor: pointer;
  white-space: nowrap;
  transition: background 0.18s;
  text-decoration: none;
}

.service-cta-btn:hover { background: var(--ice); }

/* =====================================================
   PAGE 4 – PUBLICATIONS
   ===================================================== */
.pub-hero {
  background: var(--bg-hero);
  border-bottom: 0.5px solid var(--border);
  padding: 32px 40px;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px;
}

.pub-hero-title {
  font-family: var(--font-serif);
  font-size: 26px;
  color: var(--navy);
  margin-bottom: 8px;
}

.pub-hero-sub {
  font-size: 12px;
  line-height: 1.75;
  color: var(--text-secondary);
  max-width: 460px;
}

.pub-stats {
  display: flex;
  gap: 24px;
  flex-shrink: 0;
  align-self: flex-start;
  margin-top: 4px;
}

.pub-stat { text-align: center; }

.pub-stat-num {
  font-family: var(--font-serif);
  font-size: 30px;
  color: var(--navy);
  line-height: 1;
}

.pub-stat-lbl {
  font-size: 9px;
  color: var(--text-muted);
  letter-spacing: 0.04em;
  margin-top: 2px;
}

.pub-area-tags {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
  padding: 14px 32px;
  border-bottom: 0.5px solid var(--border);
}

.pub-area-tag {
  font-size: 9px;
  font-weight: 500;
  padding: 4px 10px;
  border-radius: 3px;
  background: var(--ice);
  color: var(--navy);
}

.publications-section {
  padding: 0 32px 28px;
}

.pub-section-header {
  display: flex;
  align-items: baseline;
  gap: 12px;
  padding: 18px 0 12px;
  border-bottom: 0.5px solid var(--border);
  margin-bottom: 4px;
}

.pub-section-title {
  font-family: var(--font-serif);
  font-size: 15px;
  color: var(--navy);
}

.pub-count {
  font-size: 10px;
  color: var(--text-muted);
}

.pub-item {
  padding: 9px 0;
  border-bottom: 0.5px solid var(--border);
  display: grid;
  grid-template-columns: 26px 1fr;
  gap: 10px;
  align-items: start;
}

.pub-item:last-child { border-bottom: none; }

.pub-num {
  font-size: 10px;
  color: var(--steel);
  font-weight: 600;
  padding-top: 1px;
}

.pub-title {
  font-size: 12px;
  font-weight: 500;
  color: var(--navy);
  margin-bottom: 2px;
  line-height: 1.4;
}

.pub-authors {
  font-size: 10px;
  color: var(--text-secondary);
  margin-bottom: 2px;
  line-height: 1.4;
}

.pub-journal {
  font-size: 10px;
  color: var(--steel);
  font-style: italic;
}

.presentations-section {
  padding: 0 32px 28px;
}

.pres-item {
  padding: 10px 0;
  border-bottom: 0.5px solid var(--border);
}

.pres-item:last-child { border-bottom: none; }

.pres-title {
  font-size: 12px;
  font-weight: 500;
  color: var(--navy);
  margin-bottom: 2px;
}

.pres-detail {
  font-size: 11px;
  color: var(--text-secondary);
}

/* =====================================================
   FOOTER
   ===================================================== */
.site-footer {
  padding: 14px 32px;
  border-top: 0.5px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.footer-name {
  font-size: 11px;
  font-weight: 500;
  color: var(--text-secondary);
}

.footer-contact {
  font-size: 11px;
  color: var(--text-secondary);
}

.footer-contact a {
  color: var(--steel);
  text-decoration: none;
}

.footer-contact a:hover { text-decoration: underline; }

.contact-btn {
  font-family: var(--font-sans);
  font-size: 11px;
  padding: 6px 14px;
  border-radius: 4px;
  border: 0.5px solid var(--navy);
  background: transparent;
  color: var(--navy);
  cursor: pointer;
  font-weight: 500;
  text-decoration: none;
  transition: background 0.18s, color 0.18s;
}

.contact-btn:hover {
  background: var(--navy);
  color: #ffffff;
}

/* =====================================================
   RESPONSIVE – TABLET / MOBILE
   ===================================================== */
@media (max-width: 768px) {
  .navbar { padding: 12px 20px; }

  .nav-links, .nav-cta { display: none; }

  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 60px;
    left: 0;
    right: 0;
    background: #ffffff;
    border-bottom: 0.5px solid var(--border);
    padding: 16px 20px;
    gap: 16px;
    z-index: 200;
  }

  .nav-toggle { display: flex; }

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

  .hero-photo-col {
    border-right: none;
    border-bottom: 0.5px solid var(--border);
    padding: 28px 20px 24px;
  }

  .hero-text-col { padding: 24px 20px; }

  .hero-headline { font-size: 22px; }

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

  .section-header { padding: 18px 20px 10px; }

  .timeline { padding: 0 20px 20px; }
  .timeline-item { grid-template-columns: 90px 1fr; }

  .quals { padding: 0 20px 20px; grid-template-columns: 1fr; }

  .project-list { padding: 8px 20px 24px; }
  .project-header { flex-direction: column; }
  .skill-tags { margin-top: 4px; }

  .testimonials-grid { grid-template-columns: 1fr; padding: 0 20px 20px; }

  .services-hero { padding: 26px 20px; }
  .service-block-inner { grid-template-columns: 1fr; }
  .service-block-label { border-right: none; border-bottom: 0.5px solid var(--border); }
  .service-block-body { padding: 20px 20px; }
  .service-items-grid { grid-template-columns: 1fr; }

  .service-cta-band {
    flex-direction: column;
    align-items: flex-start;
    padding: 24px 20px;
  }

  .pub-hero {
    flex-direction: column;
    padding: 24px 20px;
  }
  .pub-area-tags { padding: 12px 20px; }
  .publications-section { padding: 0 20px 24px; }
  .presentations-section { padding: 0 20px 24px; }

  .site-footer {
    flex-direction: column;
    align-items: flex-start;
    padding: 14px 20px;
    gap: 8px;
  }
}

@media (max-width: 480px) {
  .stats-row { gap: 14px; flex-wrap: wrap; }
  .pub-stats { gap: 14px; }
}

/* =====================================================
   PRIVACY POLICY LINK (footer)
   ===================================================== */
.privacy-link {
  font-family: var(--font-sans);
  font-size: 9px;
  font-weight: 500;
  color: var(--steel);
  text-decoration: underline;
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  line-height: inherit;
}

.privacy-link:hover { color: var(--navy); }

/* =====================================================
   PRIVACY POLICY OVERLAY
   ===================================================== */
.privacy-overlay {
  display: none;
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(26, 61, 92, 0.5);
  z-index: 500;
  overflow-y: auto;
  padding: 40px 20px;
}

.privacy-overlay.open { display: block; }

.privacy-modal {
  background: #ffffff;
  max-width: 700px;
  margin: 0 auto;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(26, 61, 92, 0.18);
}

.privacy-modal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 28px;
  border-bottom: 0.5px solid var(--border);
}

.privacy-modal-title {
  font-family: var(--font-serif);
  font-size: 20px;
  color: var(--navy);
}

.privacy-close {
  background: none;
  border: none;
  cursor: pointer;
  font-size: 18px;
  color: var(--text-secondary);
  line-height: 1;
  padding: 4px 8px;
  transition: color 0.15s;
}

.privacy-close:hover { color: var(--navy); }

.privacy-body {
  padding: 28px;
  max-height: 70vh;
  overflow-y: auto;
}

.privacy-intro {
  font-size: 12px;
  line-height: 1.75;
  color: var(--text-secondary);
  margin-bottom: 16px;
}

.privacy-section { margin-bottom: 20px; }

.privacy-section h3 {
  font-family: var(--font-serif);
  font-size: 15px;
  color: var(--navy);
  margin-bottom: 7px;
}

.privacy-section p {
  font-size: 12px;
  line-height: 1.75;
  color: var(--text-secondary);
  margin-bottom: 8px;
}

.privacy-section ul {
  padding-left: 18px;
  margin-bottom: 10px;
}

.privacy-section li {
  font-size: 12px;
  line-height: 1.7;
  color: var(--text-secondary);
  margin-bottom: 3px;
}

.privacy-section a {
  color: var(--steel);
  text-decoration: none;
}

.privacy-section a:hover { text-decoration: underline; }

.privacy-modal-footer {
  padding: 16px 28px;
  border-top: 0.5px solid var(--border);
  display: flex;
  justify-content: flex-end;
}

.privacy-modal-footer button {
  font-family: var(--font-sans);
  font-size: 12px;
  font-weight: 500;
  padding: 8px 22px;
  border-radius: 4px;
  background: var(--navy);
  color: #ffffff;
  border: none;
  cursor: pointer;
  transition: background 0.18s;
}

.privacy-modal-footer button:hover { background: var(--steel); }

/* KVK registration number in footer */
.footer-kvk {
  font-size: 9px;
  font-weight: 500;
  color: var(--text-secondary);
}
