/* =============================================================
   ADO-RE · SaaS Landing
   ============================================================= */

:root {
  /* Surfaces */
  --bg: #ffffff;
  --bg-soft: #f8fafc;
  --bg-tint: #f1f5f9;
  --surface: #ffffff;

  /* Borders */
  --border: #e2e8f0;
  --border-strong: #cbd5e1;
  --border-soft: #eef2f7;

  /* Text */
  --text: #0f172a;
  --text-secondary: #475569;
  --text-tertiary: #64748b;
  --text-muted: #94a3b8;

  /* Brand */
  --brand: #0f172a;
  --primary: #2563eb;
  --primary-hover: #1d4ed8;
  --primary-soft: #eff6ff;
  --primary-ring: rgba(37, 99, 235, 0.18);

  /* Accent */
  --accent: #10b981;
  --accent-soft: #ecfdf5;
  --accent-dark: #047857;

  /* Shadows */
  --shadow-xs: 0 1px 2px rgba(15, 23, 42, 0.04);
  --shadow-sm: 0 1px 3px rgba(15, 23, 42, 0.05), 0 1px 2px rgba(15, 23, 42, 0.03);
  --shadow-md: 0 4px 12px -2px rgba(15, 23, 42, 0.06), 0 2px 6px -2px rgba(15, 23, 42, 0.04);
  --shadow-lg: 0 16px 40px -8px rgba(15, 23, 42, 0.1), 0 8px 16px -6px rgba(15, 23, 42, 0.06);
  --shadow-xl: 0 30px 60px -12px rgba(15, 23, 42, 0.15), 0 16px 32px -8px rgba(15, 23, 42, 0.08);

  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-xl: 20px;
  --radius-2xl: 28px;

  --container: 1180px;
  --ease: cubic-bezier(0.25, 0.85, 0.35, 1);
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);

  /* Editorial surfaces shared by homepage and inner pages */
  --home-ink: #12202b;
  --home-paper: #f6f5f1;
  --home-warm: #ece8df;
  --home-line: rgba(18, 32, 43, 0.13);
}

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

html {
  scroll-behavior: smooth;
}

body {
  background: var(--bg);
  color: var(--text);
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

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

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

button {
  font-family: inherit;
  cursor: pointer;
}

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 28px;
}

/* =============================================================
   NAVIGATION
   ============================================================= */

.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  padding: 12px 0;
  transition: padding 0.3s var(--ease);
  pointer-events: none;
}

.nav.is-scrolled {
  padding-top: 8px;
}

.nav__inner {
  position: relative;
  width: min(calc(100% - 40px), var(--container));
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 62px;
  padding: 9px 11px 9px 16px;
  border: 1px solid rgba(15, 23, 42, 0.09);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 10px 32px rgba(15, 23, 42, 0.06);
  backdrop-filter: blur(18px) saturate(170%);
  -webkit-backdrop-filter: blur(18px) saturate(170%);
  transition: border-color 0.3s var(--ease), background 0.3s var(--ease), box-shadow 0.3s var(--ease);
  pointer-events: auto;
}

.nav.is-scrolled .nav__inner {
  border-color: rgba(15, 23, 42, 0.13);
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 14px 38px rgba(15, 23, 42, 0.1);
}

.nav__logo {
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
  max-width: min(280px, 62vw);
}

.nav__logo-img {
  display: block;
  height: 48px;
  width: auto;
  max-width: 100%;
}

.footer .nav__logo {
  max-width: 300px;
}

.footer .nav__logo-img {
  height: 56px;
}

@media (max-width: 700px) {
  .nav__logo-img { height: 36px; }
  .footer .nav__logo-img { height: 44px; }
}

.nav__links {
  display: flex;
  align-items: center;
  gap: 2px;
  font-size: 13px;
  font-weight: 550;
  color: var(--text-secondary);
}

.nav__links a {
  padding: 9px 11px;
  border-radius: 10px;
  transition: color 0.2s var(--ease), background 0.2s var(--ease);
}

.nav__links a:hover {
  color: var(--text);
  background: var(--bg-soft);
}

.nav__links a.is-active {
  color: var(--primary);
  font-weight: 600;
  background: var(--primary-soft);
}

.nav__actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.nav__actions > .btn {
  min-height: 42px;
  padding-inline: 18px;
  border-radius: 12px;
  box-shadow: none;
}

.nav__login {
  font-size: 14px;
  font-weight: 500;
  color: var(--text-secondary);
  transition: color 0.2s var(--ease);
}

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

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.nav__dropdown {
  position: relative;
}

.nav__dropdown > .nav-link {
  display: inline-flex;
  align-items: center;
  gap: 5px;
}

.nav__dropdown-panel {
  position: absolute;
  top: calc(100% + 18px);
  left: 50%;
  width: min(720px, 80vw);
  padding: 12px;
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 10px;
  border: 1px solid var(--border);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.98);
  box-shadow: var(--shadow-xl);
  opacity: 0;
  visibility: hidden;
  transform: translate(-42%, 10px);
  transition: opacity 160ms var(--ease), transform 160ms var(--ease), visibility 160ms;
}

.nav__dropdown::after {
  content: '';
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  height: 22px;
}

.nav__dropdown:hover .nav__dropdown-panel,
.nav__dropdown:focus-within .nav__dropdown-panel {
  opacity: 1;
  visibility: visible;
  transform: translate(-42%, 0);
}

.nav__dropdown-primary,
.nav__dropdown-expertise {
  display: grid;
  gap: 4px;
}

.nav__dropdown-primary a,
.nav__dropdown-expertise a {
  display: grid;
  gap: 3px;
  padding: 11px 12px;
  border-radius: 12px;
}

.nav__dropdown-primary a:hover,
.nav__dropdown-primary a:focus-visible,
.nav__dropdown-expertise a:hover,
.nav__dropdown-expertise a:focus-visible {
  background: var(--bg-soft);
}

.nav__dropdown-primary span {
  color: var(--text);
  font-weight: 650;
}

.nav__dropdown-primary small {
  color: var(--text-tertiary);
  font-size: 11.5px;
  font-weight: 450;
}

.nav__dropdown-expertise {
  padding: 10px;
  border-radius: 14px;
  background: var(--bg-soft);
}

.nav__dropdown-expertise > span,
.nav__mobile-label {
  padding: 4px 10px 6px;
  color: var(--text-tertiary);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.nav__dropdown-expertise a {
  color: var(--text-secondary);
  font-size: 12.5px;
}

.nav__toggle,
.nav__mobile {
  display: none;
}

.nav__toggle {
  width: 42px;
  height: 42px;
  padding: 11px;
  border: 1px solid var(--border);
  border-radius: 12px;
  background: var(--surface);
}

.nav__toggle > span:not(.sr-only) {
  display: block;
  width: 18px;
  height: 1.5px;
  margin: 4px 0;
  border-radius: 2px;
  background: var(--text);
}

@media (max-width: 960px) {
  .nav__links { display: none; }
  .nav__login { display: none; }
  .nav__toggle { display: block; }
  .nav__actions { margin-left: auto; }
  .nav__mobile {
    position: absolute;
    top: calc(100% + 9px);
    left: 0;
    right: 0;
    max-height: calc(100vh - 72px);
    overflow-y: auto;
    border: 1px solid var(--border);
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.98);
    box-shadow: var(--shadow-lg);
  }
  .nav__mobile:not([hidden]) { display: block; }
  .nav__mobile-inner { padding-top: 22px; padding-bottom: 28px; }
  .nav__mobile-audiences,
  .nav__mobile-expertise,
  .nav__mobile-main {
    display: grid;
    gap: 4px;
    margin-bottom: 18px;
  }
  .nav__mobile-audiences a,
  .nav__mobile-expertise a,
  .nav__mobile-link {
    display: grid;
    gap: 2px;
    padding: 11px 10px;
    border-bottom: 1px solid var(--border-soft);
    color: var(--text);
    font-size: 14px;
    font-weight: 600;
  }
  .nav__mobile-audiences small {
    color: var(--text-tertiary);
    font-size: 12px;
    font-weight: 450;
  }
  .nav__mobile-actions {
    display: grid;
    align-items: center;
    gap: 10px;
    padding-top: 4px;
    font-size: 14px;
    font-weight: 600;
  }
  .nav__mobile-actions .btn { width: 100%; }
  body.has-open-navigation { overflow: hidden; }
}

@media (max-width: 560px) {
  .nav__actions > .btn { display: none; }
  .nav { padding-inline: 10px; }
}

/* =============================================================
   BUTTONS
   ============================================================= */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 11px 20px;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: -0.005em;
  border-radius: var(--radius-sm);
  border: 1px solid transparent;
  transition: all 0.2s var(--ease);
  white-space: nowrap;
  line-height: 1;
}

.btn--primary {
  background: var(--text);
  color: #fff;
  box-shadow: var(--shadow-sm);
}

.btn--primary:hover {
  background: #1e293b;
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}

.btn--secondary {
  background: var(--surface);
  color: var(--text);
  border-color: var(--border-strong);
}

.btn--secondary:hover {
  border-color: var(--text);
  box-shadow: var(--shadow-sm);
}

.btn--sm {
  padding: 9px 16px;
  font-size: 13px;
}

.btn--lg {
  padding: 14px 24px;
  font-size: 15px;
}

/* =============================================================
   HERO
   ============================================================= */

.hero {
  padding: 140px 0 100px;
  background:
    radial-gradient(ellipse 60% 80% at 50% 0%, rgba(37, 99, 235, 0.06), transparent 60%),
    linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(15, 23, 42, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(15, 23, 42, 0.025) 1px, transparent 1px);
  background-size: 60px 60px;
  background-position: -1px -1px;
  mask-image: radial-gradient(ellipse 60% 60% at 50% 30%, #000, transparent 80%);
  -webkit-mask-image: radial-gradient(ellipse 60% 60% at 50% 30%, #000, transparent 80%);
  pointer-events: none;
}

.hero__inner {
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: 72px;
  align-items: center;
  position: relative;
  z-index: 1;
}

@media (max-width: 980px) {
  .hero__inner { grid-template-columns: 1fr; gap: 48px; }
  .hero { padding: 120px 0 60px; }
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 6px 14px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 500;
  color: var(--text-secondary);
  margin-bottom: 24px;
  box-shadow: var(--shadow-xs);
  animation: fadeUp 0.7s var(--ease-out) 0.05s both;
}

.hero__badge-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 8px rgba(16, 185, 129, 0.4);
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.6; transform: scale(0.85); }
}

.hero__title {
  font-size: clamp(36px, 4.6vw, 60px);
  line-height: 1.05;
  letter-spacing: -0.025em;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 20px;
  animation: fadeUp 0.8s var(--ease-out) 0.1s both;
}

.hero__title-accent {
  color: var(--text-tertiary);
  font-weight: 500;
}

.hero__sub {
  font-size: 18px;
  line-height: 1.6;
  color: var(--text-secondary);
  max-width: 540px;
  margin-bottom: 32px;
  animation: fadeUp 0.8s var(--ease-out) 0.2s both;
}

.hero__ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 32px;
  animation: fadeUp 0.8s var(--ease-out) 0.3s both;
}

.hero__trust {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  animation: fadeUp 0.8s var(--ease-out) 0.4s both;
}

.hero__trust-item {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  color: var(--text-secondary);
  font-weight: 500;
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(16px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Hero visual / browser mockup */

.hero__visual {
  position: relative;
  animation: fadeUp 1s var(--ease-out) 0.3s both;
}

.editorial-image {
  position: relative;
  display: block;
  margin: 0;
  min-height: 420px;
  overflow: hidden;
  border: 1px solid rgba(15, 23, 42, 0.1);
  border-radius: 28px;
  background: #e7e5e4;
  box-shadow: 0 28px 70px rgba(15, 23, 42, 0.16);
}

.editorial-image::after {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(180deg, transparent 58%, rgba(15, 23, 42, 0.62) 100%);
}

.editorial-image img,
.editorial-image .elementor-widget-image,
.editorial-image .elementor-widget-container {
  width: 100%;
  height: 100%;
}

.editorial-image img {
  display: block;
  min-height: 420px;
  object-fit: cover;
}

.editorial-image--home img {
  object-position: 66% center;
}

.editorial-image__caption {
  position: absolute;
  z-index: 2;
  left: 22px;
  right: 22px;
  bottom: 20px;
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(255, 255, 255, 0.94);
  font-size: 13px;
  font-weight: 600;
  line-height: 1.45;
}

.editorial-image__signal {
  width: 8px;
  height: 8px;
  flex: 0 0 auto;
  border-radius: 50%;
  background: #34d399;
  box-shadow: 0 0 0 5px rgba(52, 211, 153, 0.16);
}

@media (max-width: 600px) {
  .editorial-image,
  .editorial-image img { min-height: 340px; }
}

.browser {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
  transform: perspective(1500px) rotateY(-3deg) rotateX(2deg);
  transition: transform 0.6s var(--ease);
}

.browser:hover {
  transform: perspective(1500px) rotateY(0deg) rotateX(0deg);
}

.browser__bar {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  background: var(--bg-soft);
  border-bottom: 1px solid var(--border);
}

.browser__dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}

.browser__dot--red { background: #ff5f57; }
.browser__dot--yellow { background: #ffbd2e; }
.browser__dot--green { background: #28c840; }

.browser__url {
  margin-left: 8px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 12px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 6px;
  font-size: 12px;
  font-weight: 500;
  color: var(--text-tertiary);
  font-family: ui-monospace, 'SF Mono', Consolas, monospace;
}

.browser__body {
  position: relative;
  aspect-ratio: 16 / 10;
  background: #0f172a;
  overflow: hidden;
}

.browser__body video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.browser__overlay {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(180deg, rgba(15, 23, 42, 0.05) 0%, transparent 30%, transparent 70%, rgba(15, 23, 42, 0.5) 100%);
}

.browser__chip {
  position: absolute;
  bottom: 16px;
  left: 16px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 12px;
  background: rgba(255, 255, 255, 0.95);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 500;
  color: var(--text);
  box-shadow: var(--shadow-md);
}

.browser__chip-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 6px rgba(16, 185, 129, 0.6);
  animation: pulse 2s ease-in-out infinite;
}

/* Floating cards */

.float-card {
  position: absolute;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 12px 16px;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: var(--shadow-lg);
  animation: floatY 6s ease-in-out infinite;
}

.float-card--top {
  top: -16px;
  right: -30px;
  animation-delay: 0s;
}

.float-card--bottom {
  bottom: -20px;
  left: -30px;
  animation-delay: 3s;
}

@keyframes floatY {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

.float-card__icon {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  display: grid;
  place-items: center;
  flex-shrink: 0;
}

.float-card__icon--green {
  background: var(--accent-soft);
  color: var(--accent-dark);
}

.float-card__icon--blue {
  background: var(--primary-soft);
  color: var(--primary);
}

.float-card__title {
  font-size: 13px;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 1px;
}

.float-card__sub {
  font-size: 11px;
  color: var(--text-tertiary);
}

@media (max-width: 980px) {
  .float-card--top { right: 0; top: -10px; }
  .float-card--bottom { left: 0; bottom: -10px; }
}

@media (max-width: 600px) {
  .float-card { display: none; }
}

/* =============================================================
   TRUST STRIP
   ============================================================= */

.trust {
  padding: 28px 0;
  background: var(--surface);
  border-top: 1px solid var(--border-soft);
  border-bottom: 1px solid var(--border-soft);
}

.trust__label {
  text-align: center;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-muted);
  font-weight: 500;
  margin-bottom: 18px;
}

.trust__row {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 36px;
}

.trust__brand {
  font-size: 14px;
  font-weight: 500;
  color: var(--text-tertiary);
  letter-spacing: -0.005em;
  transition: color 0.2s var(--ease);
}

.trust__brand:hover {
  color: var(--text-secondary);
}

/* =============================================================
   SECTION COMMONS
   ============================================================= */

.section-head {
  max-width: 720px;
  margin-bottom: 56px;
}

.section-head--center {
  text-align: center;
  margin-inline: auto;
}

.section-eyebrow {
  display: inline-block;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-tertiary);
  margin-bottom: 14px;
}

.section-title {
  font-size: clamp(28px, 3.4vw, 44px);
  font-weight: 600;
  line-height: 1.1;
  letter-spacing: -0.025em;
  color: var(--text);
  margin-bottom: 16px;
}

.section-lead {
  font-size: 17px;
  color: var(--text-secondary);
  line-height: 1.6;
  max-width: 620px;
}

.section-head--center .section-lead {
  margin-inline: auto;
}

/* =============================================================
   PILLARS
   ============================================================= */

.pillars {
  padding: 96px 0;
  background: var(--bg);
}

.pillars__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

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

.pillar {
  position: relative;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  transition: all 0.3s var(--ease);
}

.pillar:hover {
  border-color: var(--border-strong);
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.pillar--featured {
  background: linear-gradient(180deg, #fbfdff 0%, var(--surface) 100%);
  border-color: var(--primary-ring);
  box-shadow: 0 0 0 4px var(--primary-soft);
}

.pillar--featured:hover {
  border-color: var(--primary);
}

.pillar__badge {
  position: absolute;
  top: -10px;
  left: 28px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.02em;
  padding: 4px 10px;
  background: var(--text);
  color: #fff;
  border-radius: 6px;
  text-transform: uppercase;
}

.pillar__head {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 12px;
}

.pillar__icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: var(--bg-soft);
  border: 1px solid var(--border);
  color: var(--text);
  display: grid;
  place-items: center;
  flex-shrink: 0;
}

.pillar__icon--featured {
  background: var(--primary-soft);
  border-color: rgba(37, 99, 235, 0.2);
  color: var(--primary);
}

.pillar__title {
  font-size: 18px;
  font-weight: 600;
  letter-spacing: -0.01em;
  color: var(--text);
}

.pillar__intro {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 24px;
}

.pillar__list {
  list-style: none;
  margin-bottom: 28px;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.pillar__list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.5;
}

.check {
  color: var(--accent);
  flex-shrink: 0;
  margin-top: 2px;
}

.pillar__link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  font-weight: 600;
  color: var(--primary);
  letter-spacing: -0.005em;
  transition: gap 0.25s var(--ease);
}

.pillar__link:hover {
  gap: 10px;
}

/* =============================================================
   SITUATIES (5 services)
   ============================================================= */

.situations {
  padding: 96px 0;
  background: var(--bg);
}

.situations__grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
}

@media (max-width: 1100px) {
  .situations__grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 760px) {
  .situations__grid { grid-template-columns: repeat(2, 1fr); }
}

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

.situation {
  position: relative;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 26px 22px;
  transition: all 0.25s var(--ease);
  display: flex;
  flex-direction: column;
}

.situation:hover {
  border-color: var(--border-strong);
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}

.situation__icon {
  width: 42px;
  height: 42px;
  border-radius: 10px;
  background: var(--primary-soft);
  border: 1px solid rgba(37, 99, 235, 0.12);
  color: var(--primary);
  display: grid;
  place-items: center;
  margin-bottom: 18px;
  flex-shrink: 0;
}

.situation__title {
  font-size: 15px;
  font-weight: 600;
  color: var(--text);
  letter-spacing: -0.01em;
  line-height: 1.3;
  margin-bottom: 8px;
}

.situation__copy {
  font-size: 13px;
  color: var(--text-secondary);
  line-height: 1.55;
}

/* =============================================================
   FEATURES
   ============================================================= */

.features {
  padding: 96px 0;
  background: var(--bg-soft);
  border-top: 1px solid var(--border-soft);
  border-bottom: 1px solid var(--border-soft);
}

.features__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

@media (max-width: 980px) {
  .features__grid { grid-template-columns: repeat(2, 1fr); }
}

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

.feature {
  position: relative;
  overflow: hidden;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
  transition: all 0.25s var(--ease);
}

.feature::after {
  content: '';
  position: absolute;
  right: -28px;
  bottom: -32px;
  width: 92px;
  height: 92px;
  border-radius: 50%;
  background: var(--primary-soft);
  opacity: 0.55;
}

.feature:hover {
  border-color: var(--border-strong);
  box-shadow: var(--shadow-sm);
  transform: translateY(-2px);
}

.feature__icon {
  width: 38px;
  height: 38px;
  border-radius: 8px;
  background: var(--primary-soft);
  color: var(--primary);
  display: grid;
  place-items: center;
  margin-bottom: 16px;
}

.feature__title {
  font-size: 16px;
  font-weight: 600;
  color: var(--text);
  letter-spacing: -0.01em;
  margin-bottom: 6px;
}

.feature__copy {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.55;
}

/* =============================================================
   PROOF
   Genummerde uitgangspunten op haarlijnen in plaats van kaarten.
   Drie opmaken: rij van vier, twee kolommen, of kop links.
   ============================================================= */

.proof {
  padding: 96px 0;
  background: var(--bg-soft);
  border-top: 1px solid var(--border-soft);
  border-bottom: 1px solid var(--border-soft);
}

.proof .section-head {
  margin-bottom: 48px;
}

.proof__list {
  list-style: none;
  display: grid;
}

.proof__item {
  padding: 24px 0;
  border-top: 1px solid var(--border);
}

.proof__nr {
  display: block;
  margin-bottom: 10px;
  color: var(--text-muted);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
}

.proof__title {
  margin-bottom: 6px;
  color: var(--text);
  font-size: 17px;
  font-weight: 600;
  letter-spacing: -0.01em;
}

.proof__copy {
  color: var(--text-secondary);
  font-size: 14.5px;
  line-height: 1.65;
}

.proof--row .section-head {
  margin-inline: auto;
  text-align: center;
}

.proof--row .section-head .section-lead {
  margin-inline: auto;
}

.proof--row .proof__list {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  column-gap: 32px;
}

/* Houdt de lopende tekst op één lijn wanneer een kop over twee regels valt. */
@media (min-width: 761px) {
  .proof--row .proof__title {
    min-height: 3.2em;
  }

  @supports (grid-template-rows: subgrid) {
    .proof--row .proof__list {
      grid-template-rows: auto auto auto;
    }

    .proof--row .proof__item {
      display: grid;
      grid-row: span 3;
      grid-template-rows: subgrid;
    }

    .proof--row .proof__title {
      min-height: 0;
    }
  }
}

.proof--columns .proof__list {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  column-gap: 72px;
}

.proof--split .proof__inner {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
  gap: 72px;
  align-items: start;
}

.proof--split .section-head {
  margin-bottom: 0;
}

.proof--split .proof__item {
  display: grid;
  grid-template-columns: 44px minmax(0, 1fr);
}

.proof--split .proof__item:first-child {
  padding-top: 0;
  border-top: 0;
}

.proof--split .proof__nr {
  grid-row: 1 / span 2;
  margin: 0;
  padding-top: 3px;
}

.proof--split .proof__title,
.proof--split .proof__copy {
  grid-column: 2;
}

@media (max-width: 1000px) {
  .proof--row .proof__list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    column-gap: 48px;
  }
}

@media (max-width: 900px) {
  .proof--split .proof__inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

@media (max-width: 760px) {
  .proof {
    padding: 72px 0;
  }

  .proof--row .proof__list,
  .proof--columns .proof__list {
    grid-template-columns: 1fr;
  }
}

/* =============================================================
   ROUTE
   Een route is een op zichzelf staande sectie met tekst en beeld.
   Opeenvolgende routes wisselen van kant; de haarlijn bovenaan
   scheidt ze zonder dat er een kader omheen komt.
   ============================================================= */

.route {
  background: var(--bg);
}

.route__inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.05fr);
  gap: clamp(36px, 5vw, 80px);
  align-items: center;
  padding-top: clamp(44px, 5vw, 72px);
  padding-bottom: clamp(44px, 5vw, 72px);
  border-top: 1px solid var(--border-soft);
}

/* De beeldkolom houdt dezelfde breedte, aan welke kant hij ook staat. */
.route--media-left .route__inner {
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 1fr);
}

.route--media-left .route__media {
  order: -1;
}

/* Routes zonder beeld staan als paar op een zachte band: nummer, kop en tekst
   naast elkaar. Dat geeft ritme tussen twee beeldsecties, in plaats van een
   rij waar zichtbaar een foto ontbreekt. */
.route--plain {
  background: var(--bg-soft);
}

.route--plain .route__inner {
  grid-template-columns: 44px minmax(0, 0.85fr) minmax(0, 1.25fr);
  gap: clamp(20px, 3vw, 44px);
  align-items: start;
  padding-top: clamp(36px, 4vw, 56px);
  padding-bottom: clamp(36px, 4vw, 56px);
  border-top-color: var(--border);
}

/* Waar de achtergrond wisselt is een haarlijn overbodig. */
.route:not(.route--plain) + .route--plain .route__inner,
.route--plain + .route:not(.route--plain) .route__inner {
  border-top: 0;
}

.route--plain .route__nr {
  margin-bottom: 0;
  padding-top: 7px;
}

.route--plain .route__title {
  margin-bottom: 0;
}

.route--plain .route__text {
  max-width: 60ch;
}

.route__nr {
  display: block;
  margin-bottom: 14px;
  color: var(--text-muted);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
}

.route__title {
  margin-bottom: 12px;
  color: var(--text);
  font-size: clamp(22px, 2.2vw, 28px);
  font-weight: 700;
  letter-spacing: -0.015em;
  line-height: 1.25;
}

.route__text {
  max-width: 46ch;
  margin-bottom: 22px;
  color: var(--text-secondary);
  font-size: 16px;
  line-height: 1.7;
}

.route__link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--primary);
  font-size: 15px;
  font-weight: 600;
}

.route__link span {
  transition: transform 180ms var(--ease);
}

.route__link:hover span {
  transform: translateX(3px);
}

.route__media {
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: 20px;
  background: #e7e5e4;
}

.route__media img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 3 / 2;
  object-fit: cover;
}

@media (max-width: 860px) {
  .route__inner,
  .route--media-left .route__inner,
  .route--plain .route__inner {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .route--plain .route__inner {
    gap: 14px;
  }

  .route--plain .route__nr {
    padding-top: 0;
  }

  /* Op één kolom staat het beeld altijd onder de tekst. */
  .route--media-left .route__media {
    order: 0;
  }
}

/* =============================================================
   SECURITY
   ============================================================= */

.security {
  padding: 96px 0;
  background: var(--bg);
}

.security__inner {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 80px;
  align-items: start;
}

@media (max-width: 980px) {
  .security__inner { grid-template-columns: 1fr; gap: 48px; }
}

.security__copy .section-lead {
  margin-bottom: 32px;
}

.security__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

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

.security__item {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 22px;
  transition: all 0.25s var(--ease);
}

.security__item:hover {
  border-color: var(--border-strong);
  transform: translateY(-2px);
  box-shadow: var(--shadow-sm);
}

.security__icon {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: var(--accent-soft);
  color: var(--accent-dark);
  display: grid;
  place-items: center;
  margin-bottom: 14px;
}

.security__item h4 {
  font-size: 15px;
  font-weight: 600;
  color: var(--text);
  letter-spacing: -0.01em;
  margin-bottom: 4px;
}

.security__item p {
  font-size: 13px;
  color: var(--text-secondary);
  line-height: 1.5;
}

/* =============================================================
   STATEMENT
   Kop, inleiding en één actie. Drie opmaken voor secties die geen
   kaarten nodig hebben: gecentreerd, gesplitst of in een paneel.
   ============================================================= */

.statement {
  padding: 96px 0;
  background: var(--bg);
}

.statement .section-lead {
  font-size: 18px;
}

.statement--center .statement__inner {
  max-width: 720px;
  text-align: center;
}

.statement--center .section-lead {
  margin-inline: auto;
}

.statement--center .btn,
.statement--split .btn {
  margin-top: 28px;
}

.statement--split .statement__inner {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1fr);
  gap: 72px;
  align-items: start;
}

.statement--split .section-title {
  margin-bottom: 0;
}

.statement--split .section-lead {
  max-width: 520px;
}

.statement__panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 48px;
  align-items: center;
  padding: 48px 56px;
  background: var(--bg-soft);
  border: 1px solid var(--border);
  border-radius: var(--radius-2xl);
}

.statement__panel .section-lead {
  max-width: 640px;
  margin-bottom: 0;
}

.statement__action .btn {
  white-space: nowrap;
}

@media (max-width: 900px) {
  .statement {
    padding: 72px 0;
  }

  .statement--split .statement__inner {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .statement__panel {
    grid-template-columns: 1fr;
    gap: 28px;
    padding: 36px 28px;
  }

  .statement__action .btn {
    white-space: normal;
  }
}

/* =============================================================
   MULTILINGUAL
   ============================================================= */

.multilingual {
  padding: 96px 0;
  background: var(--bg-soft);
  border-top: 1px solid var(--border-soft);
  border-bottom: 1px solid var(--border-soft);
}



/* =============================================================
   APPROACH / STEPS
   ============================================================= */

.approach {
  padding: 96px 0;
  background: var(--bg);
}

.steps {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 14px;
  position: relative;
}

.steps::before {
  content: '';
  position: absolute;
  top: 28px;
  left: 8%;
  right: 8%;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--primary) 15%, var(--accent) 85%, transparent);
  opacity: 0.28;
  z-index: 0;
}

@media (max-width: 980px) {
  .steps { grid-template-columns: 1fr; padding-left: 26px; }
  .steps::before {
    display: block;
    top: 14px;
    bottom: 14px;
    left: 8px;
    right: auto;
    width: 2px;
    height: auto;
    background: linear-gradient(180deg, var(--primary), var(--accent));
  }
}

.step {
  position: relative;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 24px 22px;
  z-index: 1;
  transition: all 0.25s var(--ease);
}

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

.step__num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 8px;
  background: var(--text);
  color: #fff;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: -0.01em;
  margin-bottom: 14px;
}

.step h4 {
  font-size: 15px;
  font-weight: 600;
  color: var(--text);
  letter-spacing: -0.01em;
  margin-bottom: 6px;
}

.step p {
  font-size: 13px;
  color: var(--text-secondary);
  line-height: 1.55;
}

/* =============================================================
   STATS
   ============================================================= */

.stats {
  padding: 64px 0;
  background: var(--bg-soft);
  border-top: 1px solid var(--border-soft);
  border-bottom: 1px solid var(--border-soft);
}

.stats__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}

@media (max-width: 760px) {
  .stats__grid { grid-template-columns: repeat(2, 1fr); gap: 24px; }
}

.stat {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.stat__num {
  font-size: clamp(28px, 3vw, 38px);
  font-weight: 600;
  letter-spacing: -0.025em;
  color: var(--text);
  line-height: 1;
}

.stat__num small {
  font-size: 15px;
  color: var(--text-tertiary);
  font-weight: 500;
  margin-left: 2px;
}

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

/* =============================================================
   CTA
   ============================================================= */

.cta {
  padding: 96px 0;
  background: var(--bg);
}

.cta__card {
  background:
    radial-gradient(ellipse 80% 60% at 50% 0%, rgba(37, 99, 235, 0.1), transparent 70%),
    var(--text);
  border-radius: var(--radius-2xl);
  padding: 72px 48px;
  text-align: center;
  position: relative;
  overflow: hidden;
  color: #fff;
}

.cta__card::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
  background-size: 40px 40px;
  mask-image: radial-gradient(ellipse 60% 60% at 50% 50%, #000, transparent 80%);
  -webkit-mask-image: radial-gradient(ellipse 60% 60% at 50% 50%, #000, transparent 80%);
  pointer-events: none;
}

.cta__card > * {
  position: relative;
  z-index: 1;
}

.cta__card .section-eyebrow {
  color: rgba(255, 255, 255, 0.7);
}

.cta__title {
  font-size: clamp(28px, 3.4vw, 44px);
  font-weight: 600;
  line-height: 1.15;
  letter-spacing: -0.025em;
  color: #fff;
  margin: 16px auto 16px;
  max-width: 640px;
}

.cta__sub {
  font-size: 17px;
  color: rgba(255, 255, 255, 0.75);
  margin-bottom: 32px;
  max-width: 520px;
  margin-inline: auto;
  line-height: 1.6;
}

.cta__actions {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 32px;
}

.cta__card .btn--primary {
  background: #fff;
  color: var(--text);
}

.cta__card .btn--primary:hover {
  background: #f1f5f9;
}

.cta__card .btn--secondary {
  background: transparent;
  color: #fff;
  border-color: rgba(255, 255, 255, 0.2);
}

.cta__card .btn--secondary:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.4);
}

.cta__trust {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 24px;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.7);
}

.cta__trust div {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

@media (max-width: 600px) {
  .cta__card { padding: 48px 24px; }
}

/* =============================================================
   FOOTER
   ============================================================= */

.footer {
  padding: 72px 0 32px;
  background: var(--bg-soft);
  border-top: 1px solid var(--border);
}

.footer__top {
  display: grid;
  grid-template-columns: minmax(240px, 0.85fr) minmax(0, 1.6fr);
  gap: 56px 72px;
  padding-bottom: 40px;
  border-bottom: 1px solid var(--border);
}

@media (max-width: 900px) {
  .footer__top { grid-template-columns: 1fr; gap: 40px; }
}

.footer__brand {
  display: flex;
  flex-direction: column;
  gap: 16px;
  max-width: 380px;
}

.footer__tag {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.65;
  margin: 0;
}

.footer__ids {
  display: grid;
  gap: 8px;
  margin: 2px 0 0;
  padding: 16px 0 0;
  border-top: 1px solid var(--border);
}

.footer__id {
  display: grid;
  grid-template-columns: 72px minmax(0, 1fr);
  gap: 10px;
  align-items: baseline;
}

.footer__id dt {
  margin: 0;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.footer__id dd {
  margin: 0;
  font-size: 13.5px;
  color: var(--text-secondary);
  font-variant-numeric: tabular-nums;
  letter-spacing: 0.01em;
  overflow-wrap: anywhere;
}

.footer__social {
  display: flex;
  gap: 8px;
  margin-top: 2px;
}

.footer__social-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  border-radius: 999px;
  border: 1px solid var(--border);
  color: var(--text-secondary);
  font-size: 13px;
  font-weight: 500;
  text-decoration: none;
  width: fit-content;
  transition: all 180ms var(--ease);
}

.footer__social-link:hover {
  color: var(--primary);
  border-color: var(--primary);
  background: var(--primary-soft);
  transform: translateY(-1px);
}

.footer__cols {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px 32px;
}

@media (max-width: 700px) {
  .footer__cols { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

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

.footer h5 {
  font-size: 12px;
  font-weight: 700;
  color: var(--text);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.footer ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer ul a {
  font-size: 14px;
  color: var(--text-secondary);
  transition: color 0.2s var(--ease);
}

.footer ul a:hover {
  color: var(--text);
}

.footer__base {
  padding-top: 22px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 14px 24px;
  font-size: 12.5px;
  color: var(--text-tertiary);
}

.footer__base-left {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.footer__legal {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 20px;
}

.footer__legal a {
  transition: color 0.2s var(--ease);
}

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

/* =============================================================
   REVEAL ANIMATIONS
   ============================================================= */

.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out);
}

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

/* =============================================================
   INNER PAGE — page hero
   ============================================================= */

.page-hero {
  position: relative;
  padding: 130px 0 70px;
  background: linear-gradient(180deg, var(--bg-soft) 0%, var(--bg) 100%);
  border-bottom: 1px solid var(--border-soft);
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(800px 400px at 80% -100px, rgba(37, 99, 235, 0.08), transparent),
    radial-gradient(600px 300px at 0% 0%, rgba(16, 185, 129, 0.05), transparent);
  pointer-events: none;
}

.page-hero__inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 24px;
  max-width: 820px;
}

.page-hero__inner--center {
  margin: 0 auto;
  text-align: center;
}

.page-hero__inner--wide { max-width: 100%; }

.page-hero__split {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 56px;
  align-items: center;
}

@media (max-width: 880px) {
  .page-hero__split { grid-template-columns: 1fr; gap: 32px; }
}

.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--text-tertiary);
  margin-bottom: 6px;
}

.breadcrumb a {
  color: var(--text-tertiary);
  font-weight: 500;
  text-decoration: none;
  transition: color 0.18s var(--ease);
}

.breadcrumb a:hover { color: var(--primary); }

.breadcrumb__sep { width: 12px; height: 12px; color: var(--text-muted); flex-shrink: 0; }

.breadcrumb__current {
  color: var(--text-secondary);
  font-weight: 500;
}

.page-hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  background: var(--primary-soft);
  color: var(--primary);
  border-radius: 99px;
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: 0.01em;
  width: fit-content;
  border: 1px solid rgba(37, 99, 235, 0.1);
}

.page-hero__eyebrow svg { width: 13px; height: 13px; stroke-width: 2.2; }

.page-hero__eyebrow--accent {
  background: var(--accent-soft);
  color: var(--accent-dark);
  border-color: rgba(16, 185, 129, 0.15);
}

.page-hero__eyebrow--warning {
  background: #fef3c7;
  color: #92400e;
  border-color: rgba(245, 158, 11, 0.18);
}

.page-hero__title {
  font-size: clamp(38px, 5vw, 56px);
  line-height: 1.06;
  letter-spacing: -0.028em;
  color: var(--text);
  font-weight: 700;
}

.page-hero__title-accent {
  color: var(--primary);
  background: linear-gradient(180deg, var(--primary) 0%, #1e40af 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.page-hero__lead {
  font-size: 18px;
  line-height: 1.65;
  color: var(--text-secondary);
  max-width: 640px;
}

.page-hero__inner--center .page-hero__lead { margin: 0 auto; }

.page-hero__ctas {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 10px;
}

.page-hero__meta {
  display: flex;
  gap: 28px;
  flex-wrap: wrap;
  margin-top: 18px;
  padding-top: 18px;
  border-top: 1px solid var(--border-soft);
}

.page-hero__meta-item {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.page-hero__meta-label {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-muted);
}

.page-hero__meta-value {
  font-size: 14.5px;
  font-weight: 600;
  color: var(--text);
}

.page-hero__visual {
  background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
  border-radius: var(--radius-2xl);
  padding: 36px 32px;
  color: white;
  position: relative;
  overflow: hidden;
  min-height: 360px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  box-shadow: var(--shadow-xl);
}

.page-hero__visual::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(500px 300px at 90% 10%, rgba(37, 99, 235, 0.4), transparent 60%),
    radial-gradient(400px 250px at 10% 90%, rgba(16, 185, 129, 0.25), transparent 60%);
  pointer-events: none;
}

.page-hero__visual-head {
  position: relative;
  z-index: 1;
  font-size: 11.5px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255, 255, 255, 0.55);
  margin-bottom: 8px;
}

.page-hero__visual-quote {
  position: relative;
  z-index: 1;
  font-size: 22px;
  font-weight: 600;
  line-height: 1.45;
  letter-spacing: -0.015em;
  margin-bottom: 16px;
}

.page-hero__visual-cite {
  position: relative;
  z-index: 1;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.7);
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  padding-top: 14px;
}

.page-hero__visual-cite strong {
  display: block;
  color: white;
  font-weight: 600;
  margin-bottom: 2px;
}

.page-hero__stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  position: relative;
  z-index: 1;
}

.page-hero__stat {
  padding: 12px 14px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
}

.page-hero__stat-num {
  font-size: 22px;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: white;
}

.page-hero__stat-label {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.7);
  margin-top: 1px;
}

/* =============================================================
   Content + Sidebar layout
   ============================================================= */

.content-section {
  padding: 90px 0;
}

.content-section--tight { padding: 60px 0; }
.content-section--flush-bottom { padding-bottom: 0; }
.content-section--bg-soft { background: var(--bg-soft); }
.content-section--bg-tint { background: var(--bg-tint); }

.content-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  gap: 64px;
  align-items: flex-start;
}

@media (max-width: 980px) {
  .content-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

.sticky-aside {
  position: sticky;
  top: 90px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.aside-nav {
  background: var(--surface);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-lg);
  padding: 8px;
}

.aside-nav__label {
  font-size: 10.5px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-muted);
  padding: 8px 12px 6px;
}

.aside-nav__link {
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 8px 12px;
  border-radius: 8px;
  font-size: 13.5px;
  font-weight: 500;
  color: var(--text-secondary);
  text-decoration: none;
  transition: all 0.16s var(--ease);
  border-left: 2px solid transparent;
}

.aside-nav__link:hover {
  background: var(--bg-soft);
  color: var(--text);
}

.aside-nav__link.is-active {
  background: var(--primary-soft);
  color: var(--primary);
  font-weight: 600;
}

.sidebar-cta {
  background: linear-gradient(160deg, #0f172a 0%, #1e293b 100%);
  border-radius: var(--radius-lg);
  padding: 24px 22px;
  color: white;
  position: relative;
  overflow: hidden;
}

.sidebar-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(300px 200px at 80% 0%, rgba(37, 99, 235, 0.5), transparent 60%);
  pointer-events: none;
}

.sidebar-cta__eyebrow {
  position: relative;
  z-index: 1;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 8px;
}

.sidebar-cta__title {
  position: relative;
  z-index: 1;
  font-size: 17px;
  font-weight: 600;
  letter-spacing: -0.01em;
  line-height: 1.4;
  margin-bottom: 8px;
}

.sidebar-cta__sub {
  position: relative;
  z-index: 1;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.55;
  margin-bottom: 16px;
}

.sidebar-cta__btn {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 9px 14px;
  background: white;
  color: var(--text);
  border-radius: 8px;
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.18s var(--ease);
}

.sidebar-cta__btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 12px 24px -8px rgba(0, 0, 0, 0.3);
}

.sidebar-cta__btn svg { width: 14px; height: 14px; }

.aside-meta {
  background: var(--bg-soft);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-lg);
  padding: 18px 20px;
}

.aside-meta__label {
  font-size: 10.5px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-muted);
  margin-bottom: 12px;
}

.aside-meta__item {
  display: flex;
  flex-direction: column;
  gap: 2px;
  padding: 10px 0;
  border-top: 1px solid var(--border-soft);
}

.aside-meta__item:first-of-type { border-top: 0; padding-top: 0; }

.aside-meta__item-key {
  font-size: 12px;
  color: var(--text-tertiary);
}

.aside-meta__item-val {
  font-size: 14px;
  font-weight: 600;
  color: var(--text);
}

/* =============================================================
   PROSE — rich text content
   ============================================================= */

.prose {
  font-size: 16px;
  line-height: 1.75;
  color: var(--text-secondary);
  max-width: 720px;
}

.prose h2 {
  font-size: 28px;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--text);
  line-height: 1.2;
  margin-top: 56px;
  margin-bottom: 16px;
  scroll-margin-top: 90px;
}

.prose h2:first-child { margin-top: 0; }

.prose h3 {
  font-size: 20px;
  font-weight: 600;
  letter-spacing: -0.015em;
  color: var(--text);
  line-height: 1.35;
  margin-top: 36px;
  margin-bottom: 12px;
}

.prose p { margin-bottom: 18px; }

.prose p:last-child { margin-bottom: 0; }

.prose ul, .prose ol {
  margin: 0 0 18px 0;
  padding-left: 22px;
}

.prose li { margin-bottom: 8px; }

.prose strong { color: var(--text); font-weight: 600; }

.prose blockquote {
  margin: 28px 0;
  padding: 18px 24px;
  border-left: 3px solid var(--primary);
  background: var(--primary-soft);
  font-size: 17px;
  line-height: 1.65;
  color: var(--text);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
}

.prose blockquote p:last-child { margin-bottom: 0; }

.prose a {
  color: var(--primary);
  text-decoration: none;
  border-bottom: 1px solid currentColor;
  transition: color 0.18s var(--ease);
}

.prose a:hover { color: var(--primary-hover); }

.prose__lead {
  font-size: 19px;
  line-height: 1.6;
  color: var(--text);
  font-weight: 400;
  margin-bottom: 24px;
}

/* =============================================================
   FAQ / Accordion
   ============================================================= */

.faq { display: flex; flex-direction: column; gap: 0; }

.faq__item {
  border-bottom: 1px solid var(--border-soft);
  padding: 18px 0;
}

.faq__item:first-child { padding-top: 0; }

.faq__q {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
  cursor: pointer;
  font-size: 17px;
  font-weight: 600;
  color: var(--text);
  letter-spacing: -0.01em;
  list-style: none;
  user-select: none;
}

.faq__q::-webkit-details-marker { display: none; }

.faq__q-icon {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--bg-soft);
  display: grid;
  place-items: center;
  flex-shrink: 0;
  transition: all 0.2s var(--ease);
}

.faq__q-icon svg { width: 12px; height: 12px; transition: transform 0.2s var(--ease); }

.faq__item[open] .faq__q-icon { background: var(--primary); color: white; }

.faq__item[open] .faq__q-icon svg { transform: rotate(45deg); }

.faq__a {
  padding-top: 14px;
  font-size: 15px;
  line-height: 1.7;
  color: var(--text-secondary);
  max-width: 720px;
}

.faq__a p { margin-bottom: 12px; }
.faq__a p:last-child { margin-bottom: 0; }

/* =============================================================
   Deliverables grid
   ============================================================= */

.deliverables {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 18px;
}

.deliverable {
  background: var(--surface);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-lg);
  padding: 24px 22px;
  transition: all 0.22s var(--ease);
}

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

.deliverable__icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: var(--primary-soft);
  color: var(--primary);
  display: grid;
  place-items: center;
  margin-bottom: 14px;
}

.deliverable__icon svg { width: 18px; height: 18px; stroke-width: 2; }

.deliverable__icon--accent { background: var(--accent-soft); color: var(--accent-dark); }
.deliverable__icon--indigo { background: #eef2ff; color: #4338ca; }
.deliverable__icon--warning { background: #fef3c7; color: #92400e; }

.deliverable__title {
  font-size: 16px;
  font-weight: 600;
  color: var(--text);
  letter-spacing: -0.01em;
  margin-bottom: 6px;
}

.deliverable__sub {
  font-size: 13.5px;
  color: var(--text-tertiary);
  line-height: 1.55;
}

.deliverable__link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 18px;
  color: var(--primary);
  font-size: 13.5px;
  font-weight: 700;
}

.deliverable__link span {
  transition: transform 180ms var(--ease);
}

.deliverable:hover .deliverable__link span {
  transform: translateX(3px);
}

/* These sections always carry four cards, so the track count is set explicitly
   rather than left to auto-fit, which would drop to three and leave the fourth
   card stranded on a row of its own. Four tracks only get the card's 260px
   minimum above ~1150px; below that the cards pair up two by two. */
.expertise-outcomes .deliverables {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.expertise-card {
  min-height: 240px;
  display: flex;
  flex-direction: column;
  padding: 28px;
}

.expertise-card .deliverable__sub {
  font-size: 14px;
}

.expertise-narrative {
  max-width: 960px;
  margin: 0 auto;
}

.expertise-narrative__section {
  display: grid;
  grid-template-columns: 72px minmax(0, 1fr);
  gap: 28px;
  padding: 44px 0;
  border-bottom: 1px solid var(--border);
}

.expertise-narrative__section:last-child {
  border-bottom: 0;
}

.expertise-narrative__num {
  color: var(--primary);
  font-size: 13px;
  font-weight: 750;
  letter-spacing: 0.08em;
}

.expertise-narrative h2 {
  margin: -8px 0 18px;
  color: var(--text);
  font-size: clamp(26px, 3vw, 38px);
  line-height: 1.15;
  letter-spacing: -0.025em;
}

.expertise-narrative p {
  max-width: 720px;
  margin-bottom: 14px;
  color: var(--text-secondary);
  font-size: 16px;
  line-height: 1.75;
}

.expertise-trust {
  margin-top: 26px;
}

@media (max-width: 1149px) {
  .expertise-outcomes .deliverables { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 700px) {
  .expertise-outcomes .deliverables { grid-template-columns: minmax(0, 1fr); }
  .expertise-narrative__section { grid-template-columns: 1fr; gap: 12px; padding: 32px 0; }
}

/* =============================================================
   Vertical timeline (for werkwijze deep-dive)
   ============================================================= */

.vtl {
  position: relative;
  padding-left: 36px;
}

.vtl::before {
  content: '';
  position: absolute;
  left: 13px;
  top: 12px;
  bottom: 12px;
  width: 2px;
  background: linear-gradient(180deg, var(--primary) 0%, var(--accent) 100%);
  opacity: 0.18;
}

.vtl__step {
  position: relative;
  padding: 0 0 36px 0;
}

.vtl__step:last-child { padding-bottom: 0; }

.vtl__num {
  position: absolute;
  left: -36px;
  top: 0;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: white;
  border: 2px solid var(--primary);
  color: var(--primary);
  display: grid;
  place-items: center;
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: -0.01em;
}

.vtl__step--accent .vtl__num {
  background: var(--primary);
  color: white;
  border-color: var(--primary);
}

.vtl__head {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 12px;
  margin-bottom: 6px;
}

.vtl__title {
  font-size: 19px;
  font-weight: 600;
  letter-spacing: -0.015em;
  color: var(--text);
}

.vtl__duration {
  font-size: 12.5px;
  color: var(--text-tertiary);
  font-weight: 500;
  white-space: nowrap;
}

.vtl__lead {
  font-size: 15px;
  line-height: 1.65;
  color: var(--text-secondary);
  margin-bottom: 14px;
  max-width: 640px;
}

.vtl__bullets {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 8px;
  margin-top: 12px;
}

.vtl__bullet {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 13.5px;
  color: var(--text-secondary);
  line-height: 1.55;
}

.vtl__bullet svg {
  width: 16px;
  height: 16px;
  color: var(--accent);
  flex-shrink: 0;
  margin-top: 2px;
}

/* =============================================================
   Lead form (aanvraag dienstverlening)
   ============================================================= */

.form-shell {
  background: var(--surface);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-md);
  overflow: hidden;
}

.form-progress {
  display: flex;
  padding: 0;
  background: var(--bg-soft);
  border-bottom: 1px solid var(--border-soft);
}

.form-progress__step {
  flex: 1;
  padding: 16px 20px;
  border-right: 1px solid var(--border-soft);
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  font-weight: 500;
  color: var(--text-tertiary);
  position: relative;
}

.form-progress__step:last-child { border-right: 0; }

.form-progress__step.is-active {
  background: var(--surface);
  color: var(--text);
  font-weight: 600;
}

.form-progress__step.is-done {
  color: var(--accent-dark);
}

.form-progress__num {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--border);
  color: white;
  display: grid;
  place-items: center;
  font-size: 11.5px;
  font-weight: 700;
  flex-shrink: 0;
}

.form-progress__step.is-active .form-progress__num {
  background: var(--primary);
}

.form-progress__step.is-done .form-progress__num {
  background: var(--accent);
}

.form-body {
  padding: 36px 40px;
  display: flex;
  flex-direction: column;
  gap: 22px;
}

@media (max-width: 600px) {
  .form-body { padding: 24px; }
  .form-progress__step { padding: 12px; font-size: 12px; }
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

@media (max-width: 600px) {
  .form-row { grid-template-columns: 1fr; }
}

.form-field { display: flex; flex-direction: column; gap: 6px; }

.form-label {
  font-size: 13px;
  font-weight: 600;
  color: var(--text);
  letter-spacing: -0.005em;
}

.form-hint {
  font-size: 12px;
  color: var(--text-tertiary);
  line-height: 1.55;
}

.form-input,
.form-select,
.form-textarea {
  height: 44px;
  padding: 0 14px;
  border: 1px solid var(--border);
  border-radius: 10px;
  background: var(--surface);
  font-size: 14px;
  color: var(--text);
  font-family: inherit;
  outline: none;
  transition: all 0.18s var(--ease);
  width: 100%;
}

.form-textarea {
  height: auto;
  min-height: 110px;
  padding: 12px 14px;
  line-height: 1.6;
  resize: vertical;
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3.5px var(--primary-ring);
}

.form-chiplist { display: flex; flex-wrap: wrap; gap: 8px; }

.form-chip {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 8px 14px;
  border: 1.5px solid var(--border);
  border-radius: 99px;
  background: var(--surface);
  font-size: 13px;
  font-weight: 500;
  color: var(--text-secondary);
  cursor: pointer;
  transition: all 0.15s var(--ease);
  font-family: inherit;
}

.form-chip:hover { border-color: var(--border-strong); }

.form-chip.is-selected {
  background: var(--primary-soft);
  border-color: var(--primary);
  color: var(--primary);
  font-weight: 600;
}

.form-chip svg { width: 14px; height: 14px; }

.form-foot {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 40px;
  border-top: 1px solid var(--border-soft);
  background: var(--bg-soft);
}

.form-foot__hint {
  font-size: 12.5px;
  color: var(--text-tertiary);
  display: flex;
  align-items: center;
  gap: 8px;
}

.form-foot__hint svg { width: 13px; height: 13px; color: var(--accent); }

/* =============================================================
   Founder / Profile card
   ============================================================= */

.profile-card {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 36px;
  align-items: center;
  background: var(--surface);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-xl);
  padding: 36px;
  box-shadow: var(--shadow-md);
}

@media (max-width: 720px) {
  .profile-card { grid-template-columns: 1fr; text-align: center; padding: 28px; }
}

.profile-card__photo {
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background: linear-gradient(160deg, #1e3a8a 0%, #2563eb 60%, #10b981 100%);
  display: grid;
  place-items: center;
  color: white;
  font-size: 64px;
  font-weight: 700;
  letter-spacing: -0.02em;
  box-shadow: var(--shadow-lg);
  position: relative;
  overflow: hidden;
}

@media (max-width: 720px) {
  .profile-card__photo { margin: 0 auto; width: 160px; height: 160px; font-size: 48px; }
}

.profile-card__photo::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(200px 200px at 30% 30%, rgba(255, 255, 255, 0.25), transparent 60%);
  pointer-events: none;
}

.profile-card__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 52% 18%;
  display: block;
}

.profile-card__photo:has(img) {
  background: var(--bg-soft);
}

.profile-card__photo:has(img)::after {
  display: none;
}

.profile-card__role {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--primary);
  margin-bottom: 4px;
}

.profile-card__name {
  font-size: 32px;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--text);
  line-height: 1.1;
  margin-bottom: 12px;
}

.profile-card__bio {
  font-size: 15.5px;
  line-height: 1.7;
  color: var(--text-secondary);
  margin-bottom: 18px;
}

.profile-card__creds {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  padding-top: 14px;
  border-top: 1px solid var(--border-soft);
}

.profile-card__cred {
  font-size: 12.5px;
  color: var(--text-tertiary);
  display: flex;
  align-items: center;
  gap: 6px;
}

.profile-card__cred svg { width: 14px; height: 14px; color: var(--accent); }

/* =============================================================
   Mini value-cards (for service pages — quick highlights)
   ============================================================= */

.value-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 16px;
  margin: 22px 0 0;
}

.value-card {
  padding: 18px 20px;
  background: var(--bg-soft);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-md);
}

.value-card__num {
  font-size: 24px;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--primary);
  display: block;
  line-height: 1;
  margin-bottom: 6px;
}

.value-card__label {
  font-size: 13.5px;
  color: var(--text-secondary);
  line-height: 1.5;
}

/* =============================================================
   Quote / testimonial banner
   ============================================================= */

.quote-band {
  padding: 80px 0;
  background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
  color: white;
  position: relative;
  overflow: hidden;
}

.quote-band::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(800px 400px at 80% 0%, rgba(37, 99, 235, 0.18), transparent 60%),
    radial-gradient(600px 300px at 0% 100%, rgba(16, 185, 129, 0.1), transparent 60%);
  pointer-events: none;
}

.quote-band__inner {
  position: relative;
  z-index: 1;
  max-width: 820px;
  text-align: center;
  margin: 0 auto;
}

.quote-band__mark {
  font-size: 80px;
  line-height: 0.6;
  color: var(--primary);
  font-family: 'Georgia', serif;
  margin-bottom: 12px;
  opacity: 0.85;
}

.quote-band__text {
  font-size: 28px;
  line-height: 1.4;
  font-weight: 500;
  letter-spacing: -0.015em;
  margin-bottom: 28px;
}

@media (max-width: 640px) {
  .quote-band { padding: 60px 0; }
  .quote-band__text { font-size: 22px; }
}

.quote-band__cite {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.7);
}

.quote-band__cite strong {
  display: block;
  color: white;
  font-weight: 600;
  margin-bottom: 2px;
}

/* =============================================================
   Logo / partner strip
   ============================================================= */

.partner-strip {
  padding: 60px 0;
  background: var(--bg-soft);
  border-top: 1px solid var(--border-soft);
  border-bottom: 1px solid var(--border-soft);
}

.partner-strip__label {
  text-align: center;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--text-muted);
  margin-bottom: 24px;
}

.partner-strip__row {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 44px;
  flex-wrap: wrap;
  opacity: 0.65;
}

.partner-strip__item {
  font-size: 18px;
  font-weight: 700;
  letter-spacing: -0.015em;
  color: var(--text);
  font-family: 'Georgia', serif;
}

/* =============================================================
   Compliance grid
   ============================================================= */

.cred-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 14px;
}

.cred {
  display: grid;
  grid-template-columns: 36px 1fr;
  gap: 14px;
  align-items: flex-start;
  padding: 16px 18px;
  background: var(--surface);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-md);
}

.cred__icon {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: var(--accent-soft);
  color: var(--accent-dark);
  display: grid;
  place-items: center;
}

.cred__icon svg { width: 16px; height: 16px; stroke-width: 2; }

.cred__icon--primary { background: var(--primary-soft); color: var(--primary); }

.cred__title {
  font-size: 14px;
  font-weight: 600;
  color: var(--text);
  letter-spacing: -0.005em;
  margin-bottom: 2px;
}

.cred__sub {
  font-size: 12.5px;
  color: var(--text-tertiary);
  line-height: 1.5;
}

/* =============================================================
   Contact channels (icon list)
   ============================================================= */

.channel-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.channel {
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 16px;
  align-items: center;
  padding: 18px 20px;
  background: var(--surface);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-md);
  text-decoration: none;
  color: var(--text);
  transition: all 0.2s var(--ease);
}

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

.channel__icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: var(--primary-soft);
  color: var(--primary);
  display: grid;
  place-items: center;
  flex-shrink: 0;
}

.channel__icon svg { width: 19px; height: 19px; }

.channel__icon--accent { background: var(--accent-soft); color: var(--accent-dark); }
.channel__icon--indigo { background: #eef2ff; color: #4338ca; }
.channel__icon--warning { background: #fef3c7; color: #92400e; }

.channel__title {
  font-size: 12.5px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--text-tertiary);
  margin-bottom: 2px;
}

.channel__value {
  font-size: 15.5px;
  font-weight: 600;
  color: var(--text);
  letter-spacing: -0.005em;
}

.channel__sub {
  font-size: 13px;
  color: var(--text-tertiary);
  margin-top: 2px;
}

/* Map placeholder */
.map-card {
  background: var(--surface);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.map-frame {
  position: relative;
  width: 100%;
  height: 260px;
  background:
    linear-gradient(0deg, rgba(15, 23, 42, 0.04), rgba(15, 23, 42, 0)),
    repeating-linear-gradient(45deg, var(--bg-soft) 0 16px, var(--bg-tint) 16px 32px);
  overflow: hidden;
}

.map-frame::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(160px 100px at 50% 50%, rgba(37, 99, 235, 0.18), transparent 60%);
}

.map-pin {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -100%);
  width: 32px;
  height: 32px;
  border-radius: 50% 50% 50% 0;
  background: var(--primary);
  rotate: -45deg;
  display: grid;
  place-items: center;
  color: white;
  box-shadow: 0 8px 24px -4px rgba(37, 99, 235, 0.5);
}

.map-pin svg { width: 14px; height: 14px; rotate: 45deg; }

.map-meta {
  padding: 18px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  border-top: 1px solid var(--border-soft);
}

.map-meta__address {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.5;
}

.map-meta__address strong { display: block; color: var(--text); font-weight: 600; margin-bottom: 2px; }

.map-meta__link {
  font-size: 13px;
  font-weight: 600;
  color: var(--primary);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  white-space: nowrap;
}

.map-meta__link svg { width: 14px; height: 14px; }

/* =============================================================
   Blog grid (empty state ready)
   ============================================================= */

.blog-empty {
  background: var(--surface);
  border: 1.5px dashed var(--border);
  border-radius: var(--radius-xl);
  padding: 60px 40px;
  text-align: center;
  max-width: 640px;
  margin: 0 auto;
}

.blog-empty__icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--primary-soft);
  color: var(--primary);
  display: grid;
  place-items: center;
  margin: 0 auto 18px;
}

.blog-empty__icon svg { width: 24px; height: 24px; }

.blog-empty__title {
  font-size: 22px;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--text);
  margin-bottom: 10px;
}

.blog-empty__lead {
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.65;
  max-width: 440px;
  margin: 0 auto 24px;
}

.newsletter-form {
  display: flex;
  gap: 10px;
  max-width: 440px;
  margin: 0 auto;
}

.newsletter-form--footer {
  margin: 0;
}

.newsletter-form__hint {
  font-size: 12.5px;
  color: var(--text-tertiary);
  margin: 10px 0 0;
  line-height: 1.5;
}

.form-trap {
  position: absolute !important;
  left: -10000px !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
}

.newsletter-form--footer + .newsletter-form__hint,
.newsletter-form--footer ~ .newsletter-form__hint {
  text-align: left;
}

.newsletter-signup__title {
  margin: 0 0 8px;
  font-size: 20px;
}

.newsletter-signup__lead {
  margin: 0 0 16px;
  color: var(--text-secondary);
  font-size: 15px;
  line-height: 1.6;
}

.newsletter-signup--band {
  margin-top: 56px;
  padding: 32px;
  border: 1px solid var(--home-line, var(--border));
  border-radius: 18px;
  background: var(--home-warm, var(--surface-soft));
  text-align: center;
}

.newsletter-signup--article {
  margin-top: 40px;
  padding-top: 28px;
  border-top: 1px solid var(--home-line, var(--border));
}

.article-sources {
  margin-top: 48px;
  padding: 24px 28px;
  border: 1px solid var(--border);
  border-radius: 16px;
  background: var(--bg-soft);
}

.article-sources h2 {
  margin-top: 0;
  font-size: 20px;
}

.article-sources li + li {
  margin-top: 8px;
}

.footer__newsletter {
  display: grid;
  grid-template-columns: minmax(200px, 280px) minmax(240px, 1fr);
  gap: 8px 40px;
  align-items: center;
  margin: 0;
  max-width: none;
  padding: 28px 0;
  border-bottom: 1px solid var(--border);
}

.footer__newsletter .newsletter-signup__title {
  grid-column: 1;
  grid-row: 1;
  font-size: 15px;
  margin: 0;
  text-align: left;
}

.footer__newsletter .newsletter-signup__lead {
  grid-column: 1;
  grid-row: 2;
  margin: 0;
  font-size: 13.5px;
  line-height: 1.55;
  text-align: left;
}

.footer__newsletter .newsletter-form {
  grid-column: 2;
  grid-row: 1 / span 2;
  margin: 0;
  max-width: 440px;
  width: 100%;
  justify-self: end;
}

.footer__newsletter .newsletter-form__hint {
  grid-column: 1 / -1;
  margin: 6px 0 0;
  text-align: left;
}

.footer__newsletter .form-alert {
  grid-column: 1 / -1;
}

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

  .footer__newsletter .newsletter-form {
    grid-column: 1;
    grid-row: auto;
    justify-self: stretch;
  }
}

@media (max-width: 520px) {
  .newsletter-form { flex-direction: column; }
}

.newsletter-form input {
  flex: 1;
  height: 44px;
  padding: 0 14px;
  border: 1px solid var(--border);
  border-radius: 10px;
  background: var(--surface);
  font-size: 14px;
  font-family: inherit;
  color: var(--text);
  outline: none;
}

.newsletter-form input:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3.5px var(--primary-ring);
}

/* =============================================================
   RESPONSIVE FINE-TUNING
   ============================================================= */

@media (max-width: 600px) {
  .container { padding: 0 20px; }
  .hero__ctas { flex-direction: column; align-items: stretch; }
  .btn { width: 100%; }
  .hero__trust { gap: 14px; }
  .multilingual__visual { grid-template-columns: 1fr; }
  .sync-line { display: none; }
  .doc--alt { transform: none; }
}

/* =============================================================
   NATIVE ELEMENTOR COMPATIBILITY
   The source classes remain the visual contract; Elementor wrappers are
   deliberately neutral so every text/image/button remains editor-native.
   ============================================================= */
.adore-elementor-native .elementor-element {
  --widgets-spacing: 0px;
}

.adore-elementor-native .e-con {
  --padding-top: 0;
  --padding-right: 0;
  --padding-bottom: 0;
  --padding-left: 0;
  --margin-top: 0;
  --margin-right: 0;
  --margin-bottom: 0;
  --margin-left: 0;
  --gap: 0;
}

.adore-elementor-native .elementor-widget-heading .elementor-heading-title {
  margin: 0;
  color: inherit;
  font: inherit;
  line-height: inherit;
  letter-spacing: inherit;
}

.adore-elementor-native .elementor-widget-text-editor p:last-child,
.adore-elementor-native .elementor-widget-text-editor ul:last-child,
.adore-elementor-native .elementor-widget-text-editor ol:last-child {
  margin-bottom: 0;
}

.adore-elementor-native .elementor-widget-button.btn {
  display: inline-block;
  width: auto;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.adore-elementor-native .elementor-widget-button.btn .elementor-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 11px 20px;
  border: 1px solid transparent;
  border-radius: var(--radius-sm);
  font-size: 14px;
  font-weight: 500;
  line-height: 1;
  letter-spacing: -0.005em;
  white-space: nowrap;
  transition: all 0.2s var(--ease);
}

.adore-elementor-native .elementor-widget-button.btn--primary .elementor-button {
  background: var(--text);
  color: #fff;
  box-shadow: var(--shadow-sm);
}

.adore-elementor-native .elementor-widget-button.btn--secondary .elementor-button {
  border-color: var(--border-strong);
  background: var(--surface);
  color: var(--text);
}

.adore-elementor-native .elementor-widget-button.btn--sm .elementor-button {
  padding: 9px 16px;
  font-size: 13px;
}

.adore-elementor-native .elementor-widget-button.btn--lg .elementor-button {
  padding: 14px 24px;
  font-size: 15px;
}

.adore-elementor-native .elementor-widget-image img {
  width: auto;
  max-width: 100%;
}

.adore-elementor-native .editorial-image .elementor-widget-image img {
  width: 100%;
  height: 100%;
  min-height: 420px;
  object-fit: cover;
}

.adore-shared-template,
.adore-shared-template > .elementor-widget-container,
.adore-shared-markup,
.adore-shared-markup__widget {
  width: 100%;
  margin: 0 !important;
  padding: 0 !important;
}

.adore-page-over .nav-link--over,
.adore-page-werkwijze .nav-link--werkwijze,
.adore-page-blog .nav-link--blog,
.adore-page-contact .nav-link--contact,
.adore-page-voor-ondernemers .nav-link--oplossingen,
.adore-page-voor-flex .nav-link--oplossingen,
.adore-page-voor-letselschade .nav-link--oplossingen,
.adore-page-advocaten-en-belangenbehartigers .nav-link--oplossingen,
.adore-page-verzekeraars-en-letselschadebureaus .nav-link--oplossingen,
.adore-page-arbodiensten-en-casemanagement .nav-link--oplossingen,
.adore-page-werkgevers-en-uitzendbureaus .nav-link--oplossingen {
  color: var(--primary);
}

/* =============================================================
   HOMEPAGE · EDITORIAL REDESIGN

   Scoped to the WordPress front page (and the static prototype's .home body).
   Inner pages share the same editorial tokens and have their own treatments
   under `body:not(.home)` at the end of this file.
   ============================================================= */

.home {
  --home-ink: #12202b;
  --home-paper: #f6f5f1;
  --home-warm: #ece8df;
  --home-line: rgba(18, 32, 43, 0.13);
}

.home .hero {
  min-height: min(900px, 100svh);
  padding: 156px 0 104px;
  display: flex;
  align-items: center;
  background:
    radial-gradient(circle at 12% 16%, rgba(37, 99, 235, 0.09), transparent 30%),
    linear-gradient(115deg, #fbfcfd 0%, #f5f5f2 60%, #eceae4 100%);
}

.home .hero::before {
  opacity: 0.45;
  background-size: 72px 72px;
  mask-image: linear-gradient(90deg, #000 0%, transparent 62%);
  -webkit-mask-image: linear-gradient(90deg, #000 0%, transparent 62%);
}

.home .hero__inner {
  grid-template-columns: minmax(0, 0.88fr) minmax(440px, 1.12fr);
  gap: clamp(52px, 7vw, 104px);
}

.home .hero__copy {
  max-width: 580px;
}

.home .hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 24px;
  color: var(--accent-dark);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.13em;
  line-height: 1.4;
  text-transform: uppercase;
}

.home .hero__eyebrow::before {
  content: '';
  width: 32px;
  height: 1px;
  background: currentColor;
}

.home .hero__title {
  max-width: 690px;
  margin-bottom: 26px;
  font-size: clamp(43px, 5.1vw, 70px);
  font-weight: 650;
  line-height: 0.99;
  letter-spacing: -0.045em;
}

.home .hero__title-accent {
  color: #53616d;
  font-weight: 450;
}

.home .hero__sub {
  max-width: 560px;
  margin-bottom: 34px;
  font-size: 18px;
  line-height: 1.72;
}

.home .hero__ctas {
  margin-bottom: 38px;
}

.home .hero__ctas .btn {
  min-height: 48px;
}

.home .hero__trust {
  gap: 10px 22px;
  padding-top: 22px;
  border-top: 1px solid var(--home-line);
}

.home .hero__trust-item {
  font-size: 12px;
}

.home .hero__visual {
  padding: 0;
}

.home .hero__visual::before {
  display: none;
}

.home .editorial-image--home {
  min-height: 590px;
  border: 0;
  border-radius: 4px 30px 4px 30px;
  box-shadow: 0 32px 80px rgba(18, 32, 43, 0.2);
}

.home .editorial-image--home img {
  min-height: 590px;
  object-position: 66% center;
}

.home .editorial-image--home .editorial-image__caption {
  right: auto;
  max-width: 400px;
  padding: 12px 16px;
  background: rgba(10, 20, 29, 0.74);
  backdrop-filter: blur(8px);
}

.home .trust {
  padding: 0;
  background: var(--home-ink);
  border: 0;
}

.home .trust .container {
  display: grid;
  grid-template-columns: minmax(190px, 0.75fr) minmax(0, 2.25fr);
  align-items: stretch;
}

.home .trust__label {
  margin: 0;
  padding: 30px 32px 30px 0;
  display: flex;
  align-items: center;
  text-align: left;
  color: rgba(255, 255, 255, 0.58);
  border-right: 1px solid rgba(255, 255, 255, 0.13);
}

.home .trust__row {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
}

.home .trust__brand {
  min-height: 84px;
  padding: 18px 22px;
  display: flex;
  align-items: center;
  color: rgba(255, 255, 255, 0.88);
  font-size: 13px;
  line-height: 1.35;
  border-right: 1px solid rgba(255, 255, 255, 0.1);
}

.home .trust__brand::before {
  content: '';
  width: 7px;
  height: 7px;
  margin-right: 11px;
  flex: 0 0 auto;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 5px rgba(16, 185, 129, 0.12);
}

.home .trust__brand:last-child {
  border-right: 0;
}

.home .pillars {
  padding: 132px 0 64px;
}

.home .pillars .section-head {
  max-width: 760px;
  display: block;
}

.home .pillars .section-eyebrow {
  display: block;
}

.home .pillars .section-title {
  margin-bottom: 0;
  max-width: 620px;
}

.home .pillars .section-lead {
  max-width: 680px;
  margin-top: 24px;
  font-size: 18px;
  line-height: 1.65;
}

.home .pillars__grid {
  gap: 0;
  border: 1px solid var(--home-line);
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 22px 60px rgba(18, 32, 43, 0.07);
}

.home .pillar,
.home .pillar--featured {
  min-height: 510px;
  padding: 38px 34px 32px;
  border: 0;
  border-right: 1px solid var(--home-line);
  border-radius: 0;
  box-shadow: none;
  background: #fff;
}

.home .pillar:last-child {
  border-right: 0;
}

.home .pillar--featured {
  color: #fff;
  background: var(--home-ink);
}

.home .pillar--featured .pillar__title,
.home .pillar--featured .pillar__intro,
.home .pillar--featured .pillar__list li,
.home .pillar--featured .pillar__link {
  color: inherit;
}

.home .pillar--featured .pillar__intro,
.home .pillar--featured .pillar__list li {
  color: rgba(255, 255, 255, 0.72);
}

.home .pillar--featured .pillar__icon {
  color: #fff;
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.16);
}

.home .pillar:hover,
.home .pillar--featured:hover {
  z-index: 1;
  transform: none;
  border-color: transparent;
  box-shadow: inset 0 4px 0 var(--accent);
}

.home .pillar__head {
  align-items: flex-start;
  flex-direction: column;
  margin-bottom: 22px;
}

.home .pillar__icon {
  width: 52px;
  height: 52px;
  border-radius: 50%;
}

.home .pillar__title {
  font-size: 22px;
}

.home .pillar__intro {
  font-size: 15px;
  line-height: 1.68;
}

.home .situations {
  padding: 70px 0 132px;
}

.home .situations .section-head {
  max-width: 760px;
  text-align: left;
  margin-inline: 0;
}

.home .situations .section-lead {
  margin-inline: 0;
}

.home .situations__grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.home .situation {
  height: 250px;
  min-height: 250px;
  grid-column: auto;
  padding: 32px;
  border-color: var(--home-line);
  border-radius: 18px;
  background: var(--home-paper);
}

.home .situation:nth-child(4),
.home .situation:nth-child(5) {
  grid-column: auto;
  min-height: 250px;
}

.home .situation__icon {
  background: #fff;
  border-color: var(--home-line);
  border-radius: 50%;
  margin-bottom: 32px;
}

.home .situation__title {
  max-width: none;
  min-height: 44px;
  margin-top: 0;
  margin-bottom: 12px;
  font-size: 17px;
}

.home .situation__copy {
  max-width: 440px;
  font-size: 14px;
}

.home .features {
  padding: 128px 0;
  border: 0;
  background: var(--home-paper);
}

.home .features .section-head {
  max-width: 780px;
}

.home .features__grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  overflow: visible;
  background: transparent;
  border: 0;
}

.home .feature {
  min-height: 310px;
  padding: 42px;
  border: 1px solid var(--home-line);
  border-radius: 18px;
}

.home .feature::before {
  content: '0' counter(home-proof);
  counter-increment: home-proof;
  position: absolute;
  right: 28px;
  top: 24px;
  color: var(--text-muted);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
}

.home .features__grid {
  counter-reset: home-proof;
}

.home .feature::after {
  width: 150px;
  height: 150px;
  right: -75px;
  bottom: -80px;
  opacity: 0.7;
}

.home .feature:hover {
  transform: none;
  box-shadow: inset 0 0 0 3px rgba(37, 99, 235, 0.09);
}

.home .feature__icon {
  width: 48px;
  height: 48px;
  margin-bottom: 42px;
  border-radius: 50%;
}

.home .feature__title {
  font-size: 20px;
}

.home .feature__copy {
  max-width: 470px;
  font-size: 15px;
  line-height: 1.7;
}

.home .proof {
  padding: 112px 0;
  border: 0;
  background: var(--home-paper);
}

.home .proof .section-head {
  max-width: 780px;
}

.home .proof__item {
  border-color: var(--home-line);
}

@media (max-width: 900px) {
  .home .proof {
    padding: 80px 0;
  }
}

.home .security {
  padding: 132px 0;
  color: #fff;
  background:
    radial-gradient(circle at 15% 10%, rgba(37, 99, 235, 0.24), transparent 36%),
    linear-gradient(135deg, #101e29, #172a38);
}

.home .security__inner {
  grid-template-columns: minmax(0, 0.72fr) minmax(0, 1.28fr);
  gap: clamp(60px, 8vw, 120px);
}

.home .security .section-eyebrow {
  color: #78dcb5;
}

.home .security .section-title {
  color: #fff;
}

.home .security .section-lead {
  color: rgba(255, 255, 255, 0.7);
}

.home .security .btn--secondary {
  background: transparent;
  color: #fff;
  border-color: rgba(255, 255, 255, 0.35);
}

.home .security .btn--secondary:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.7);
  color: #fff;
}

.home .security__grid {
  gap: 16px;
  background: transparent;
  border: 0;
}

.home .security__item {
  min-height: 210px;
  padding: 28px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.055);
}

.home .security__item:hover {
  transform: none;
  box-shadow: inset 0 0 0 2px rgba(120, 220, 181, 0.28);
}

.home .security__item h4 {
  color: #fff;
}

.home .security__item p {
  color: rgba(255, 255, 255, 0.63);
  line-height: 1.65;
}

.home .security__icon {
  color: #80e3bc;
  background: rgba(16, 185, 129, 0.13);
}

/* Op de homepage is dit de donkere ankersectie tussen het papierkleurige
   bewijsraster en de witte taalsectie. Zonder dat contrast lopen drie lichte
   secties in elkaar over. */
.home .statement {
  padding: 120px 0;
  color: #fff;
  background:
    radial-gradient(circle at 15% 10%, rgba(37, 99, 235, 0.24), transparent 36%),
    linear-gradient(135deg, #101e29, #172a38);
}

.home .statement .section-eyebrow {
  color: #78dcb5;
}

.home .statement .section-title {
  color: #fff;
}

.home .statement .section-lead {
  color: rgba(255, 255, 255, 0.7);
}

.home .statement .btn--secondary {
  background: transparent;
  color: #fff;
  border-color: rgba(255, 255, 255, 0.35);
}

.home .statement .btn--secondary:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.7);
  color: #fff;
}

.home .statement--split .statement__inner {
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1fr);
  gap: clamp(60px, 8vw, 110px);
}

.home .statement--panel {
  padding: 96px 0;
  background: #fff;
}

.home .statement--panel .statement__panel {
  padding: 56px;
  border: 0;
  border-radius: 24px;
  background:
    radial-gradient(circle at 12% 10%, rgba(37, 99, 235, 0.24), transparent 40%),
    linear-gradient(135deg, #101e29, #172a38);
}

@media (max-width: 900px) {
  .home .statement {
    padding: 88px 0;
  }

  .home .statement--split .statement__inner {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .home .statement--panel .statement__panel {
    padding: 36px 28px;
  }
}

.home .multilingual {
  padding: 132px 0;
  border: 0;
  background: #fff;
}

.home .multilingual__inner {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(420px, 1.08fr);
  gap: clamp(60px, 8vw, 110px);
  align-items: center;
}

.home .multilingual .section-head {
  margin-bottom: 34px;
}

.home .multilingual__languages {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 34px;
}

.home .multilingual__languages span {
  padding: 8px 12px;
  color: var(--home-ink);
  font-size: 12px;
  font-weight: 600;
  border: 1px solid var(--home-line);
  border-radius: 999px;
  background: var(--home-paper);
}

.home .multilingual__link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--primary);
  font-size: 14px;
  font-weight: 700;
}

.home .multilingual__link:hover {
  gap: 12px;
}

.home .editorial-image--language {
  min-height: 540px;
  border: 0;
  border-radius: 28px 4px 28px 4px;
  box-shadow: 0 26px 70px rgba(18, 32, 43, 0.15);
}

.home .editorial-image--language img {
  min-height: 540px;
  object-position: center;
}

.home .quote-band--home {
  padding: 112px 0;
  background: var(--home-paper);
  color: var(--home-ink);
}

.home .quote-band--home::before {
  background: radial-gradient(circle at 50% 0%, rgba(37, 99, 235, 0.08), transparent 55%);
}

.home .quote-band--home .quote-band__inner {
  max-width: 940px;
}

.home .quote-band--home .quote-band__mark {
  color: var(--accent-dark);
}

.home .quote-band--home .quote-band__text {
  font-family: Georgia, 'Times New Roman', serif;
  font-size: clamp(28px, 3.5vw, 44px);
  font-weight: 400;
  line-height: 1.32;
  letter-spacing: -0.02em;
}

.home .quote-band--home .quote-band__cite {
  color: var(--text-secondary);
}

.home .quote-band--home .quote-band__cite strong {
  color: var(--home-ink);
}

.home .approach {
  padding: 132px 0;
}

.home .approach .section-head {
  max-width: 790px;
}

.home .steps {
  gap: 0;
  border-top: 1px solid var(--home-line);
}

.home .steps::before {
  display: none;
}

.home .step {
  min-height: 280px;
  padding: 34px 24px;
  border: 0;
  border-right: 1px solid var(--home-line);
  border-radius: 0;
}

.home .step:last-child {
  border-right: 0;
}

.home .step:hover {
  transform: none;
  box-shadow: inset 0 4px 0 var(--primary);
}

.home .step__num {
  width: auto;
  height: auto;
  margin-bottom: 76px;
  justify-content: flex-start;
  color: var(--primary);
  background: transparent;
  font-size: 12px;
  letter-spacing: 0.1em;
}

.home .step h4 {
  font-size: 17px;
}

.home .step p {
  font-size: 14px;
  line-height: 1.65;
}

.home .stats {
  padding: 112px 0;
  border: 0;
  background: var(--home-paper);
}

.home .stats .section-head {
  max-width: 780px;
}

.home .stats__grid {
  gap: 0;
  border-top: 1px solid var(--home-line);
  border-bottom: 1px solid var(--home-line);
}

.home .stat {
  min-height: 180px;
  padding: 32px;
  justify-content: space-between;
  border-right: 1px solid var(--home-line);
}

.home .stat:last-child {
  border-right: 0;
}

.home .stat__num {
  font-size: clamp(32px, 3.7vw, 48px);
}

.home .cta {
  padding: 112px 0;
  background: #fff;
}

.home .cta__card {
  min-height: 520px;
  padding: 92px 64px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border-radius: 4px 36px 4px 36px;
  background:
    radial-gradient(circle at 82% 20%, rgba(16, 185, 129, 0.18), transparent 28%),
    radial-gradient(circle at 10% 90%, rgba(37, 99, 235, 0.23), transparent 35%),
    var(--home-ink);
}

.home .cta__title {
  max-width: 760px;
  font-family: Georgia, 'Times New Roman', serif;
  font-weight: 400;
  font-size: clamp(36px, 4.5vw, 58px);
}

.home .faq {
  max-width: 820px;
}

.home #faq {
  padding: 48px 0 24px;
}

.home .faq__item {
  border-bottom-color: var(--home-line);
}

.home .faq__q {
  letter-spacing: -0.02em;
}

@media (max-width: 1080px) {
  .home .hero {
    min-height: auto;
  }

  .home .hero__inner,
  .home .multilingual__inner {
    grid-template-columns: 1fr;
  }

  .home .hero__copy {
    max-width: 720px;
  }

  .home .hero__visual {
    max-width: 780px;
  }

  .home .pillars .section-head {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .home .pillars .section-eyebrow {
    grid-column: auto;
  }

  .home .pillars__grid {
    grid-template-columns: 1fr;
  }

  .home .pillar,
  .home .pillar--featured {
    min-height: 0;
    border-right: 0;
    border-bottom: 1px solid var(--home-line);
  }

  .home .pillar:last-child {
    border-bottom: 0;
  }

  .home .security__inner {
    grid-template-columns: 1fr;
  }

  .home .multilingual__copy {
    max-width: 760px;
  }

  .home .editorial-image--language {
    max-width: 780px;
  }
}

@media (max-width: 820px) {
  .home .trust .container {
    grid-template-columns: 1fr;
  }

  .home .trust__label {
    padding: 24px 0 16px;
    border-right: 0;
  }

  .home .trust__row {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .home .trust__brand {
    min-height: 70px;
    padding-left: 0;
  }

  .home .situations__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .home .situation,
  .home .situation:nth-child(4),
  .home .situation:nth-child(5) {
    height: 240px;
    grid-column: auto;
    min-height: 240px;
  }

  .home .features__grid {
    grid-template-columns: 1fr;
  }

  .home .steps {
    grid-template-columns: 1fr;
    border-left: 1px solid var(--home-line);
    border-top: 0;
  }

  .home .stats__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .home .step {
    min-height: 0;
    padding: 28px;
    border-right: 0;
    border-bottom: 1px solid var(--home-line);
  }

  .home .step:last-child {
    border-bottom: 0;
  }

  .home .step__num {
    margin-bottom: 28px;
  }
}

@media (max-width: 600px) {
  .home .hero {
    padding: 120px 0 72px;
  }

  .home .hero__inner {
    gap: 46px;
  }

  .home .hero__eyebrow {
    align-items: flex-start;
    font-size: 10px;
  }

  .home .hero__title {
    font-size: clamp(38px, 12vw, 52px);
    line-height: 1.02;
  }

  .home .hero__sub {
    font-size: 16px;
  }

  .home .hero__visual {
    padding: 0;
  }

  .home .hero__visual::before {
    display: none;
  }

  .home .editorial-image--home,
  .home .editorial-image--home img,
  .home .editorial-image--language,
  .home .editorial-image--language img {
    min-height: 380px;
  }

  .home .trust__row {
    grid-template-columns: 1fr;
  }

  .home .trust__brand {
    min-height: 56px;
    border-right: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
  }

  .home .pillars,
  .home .features,
  .home .security,
  .home .multilingual,
  .home .approach,
  .home .stats,
  .home .cta {
    padding-block: 84px;
  }

  .home .situations {
    padding: 40px 0 84px;
  }

  .home .situations__grid {
    grid-template-columns: 1fr;
  }

  .home .situation,
  .home .situation:nth-child(4),
  .home .situation:nth-child(5),
  .home .situation:last-child {
    height: auto;
    grid-column: auto;
    min-height: 220px;
  }

  .home .feature {
    min-height: 0;
    padding: 32px 26px;
  }

  .home .feature__icon {
    margin-bottom: 38px;
  }

  .home .security__grid {
    grid-template-columns: 1fr;
  }

  .home .security__item {
    min-height: 0;
  }

  .home .quote-band--home {
    padding-block: 84px;
  }

  .home .stats__grid {
    grid-template-columns: 1fr;
  }

  .home .stat {
    min-height: 140px;
    padding-inline: 0;
    border-right: 0;
    border-bottom: 1px solid var(--home-line);
  }

  .home .stat:last-child {
    border-bottom: 0;
  }

  .home .cta__card {
    min-height: 0;
    padding: 64px 24px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .home .hero__eyebrow,
  .home .hero__title,
  .home .hero__sub,
  .home .hero__ctas,
  .home .hero__trust,
  .home .hero__visual {
    animation: none;
  }
}

/* =============================================================
   INNER PAGES — editorial language (matches homepage)
   ============================================================= */

body:not(.home) {
  background: #fff;
}

body:not(.home) .page-hero {
  padding: 148px 0 88px;
  background:
    radial-gradient(circle at 12% 16%, rgba(37, 99, 235, 0.07), transparent 32%),
    linear-gradient(115deg, #fbfcfd 0%, var(--home-paper) 62%, var(--home-warm) 100%);
  border-bottom: 1px solid var(--home-line);
}

body:not(.home) .page-hero::before {
  display: none;
}

body:not(.home) .page-hero__title {
  font-size: clamp(40px, 5vw, 64px);
  font-weight: 650;
  letter-spacing: -0.042em;
  line-height: 1.02;
  color: var(--home-ink);
}

body:not(.home) .page-hero__title-accent {
  color: #53616d;
  font-weight: 450;
  background: none;
  -webkit-text-fill-color: unset;
}

body:not(.home) .page-hero__lead {
  font-size: 18px;
  line-height: 1.72;
  color: var(--text-secondary);
}

body:not(.home) .page-hero__eyebrow {
  padding: 0;
  background: none;
  border: 0;
  color: var(--accent-dark);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  border-radius: 0;
}

body:not(.home) .page-hero__eyebrow::before {
  content: '';
  width: 32px;
  height: 1px;
  background: currentColor;
}

body:not(.home) .breadcrumb {
  margin-bottom: 18px;
}

body:not(.home) .page-hero__meta {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  column-gap: 32px;
  row-gap: 18px;
  align-items: start;
  margin-top: 28px;
  padding-top: 22px;
  border-top: 1px solid var(--home-line);
}

body:not(.home) .page-hero__meta-item {
  min-width: 0;
  padding-right: 0;
}

body:not(.home) .page-hero__meta-value {
  line-height: 1.35;
}

@media (max-width: 640px) {
  body:not(.home) .page-hero__meta {
    grid-template-columns: 1fr;
  }
}

body:not(.home) .page-hero__split {
  gap: clamp(40px, 6vw, 88px);
  align-items: center;
}

body:not(.home) .page-hero .editorial-image--page {
  min-height: 520px;
  border: 0;
  border-radius: 4px 30px 4px 30px;
  box-shadow: 0 28px 70px rgba(18, 32, 43, 0.16);
}

body:not(.home) .page-hero .editorial-image--page img {
  min-height: 520px;
  object-position: center;
}

body:not(.home) .page-hero .hero__trust {
  margin-top: 28px;
  padding-top: 22px;
  border-top: 1px solid var(--home-line);
}

body:not(.home) .section-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--accent-dark);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.13em;
}

body:not(.home) .section-eyebrow::before {
  content: '';
  width: 28px;
  height: 1px;
  background: currentColor;
}

body:not(.home) .section-head--center .section-eyebrow {
  justify-content: center;
}

body:not(.home) .section-title {
  letter-spacing: -0.035em;
  color: var(--home-ink);
}

body:not(.home) .content-section {
  padding: 112px 0;
}

body:not(.home) .content-section--bg-soft,
body:not(.home) .content-section--bg-tint {
  background: var(--home-paper);
}

body:not(.home) .deliverable,
body:not(.home) .cred,
body:not(.home) .value-card {
  min-height: 220px;
  padding: 28px;
  border-color: var(--home-line);
  border-radius: 3px 22px 3px 22px;
  background: var(--home-paper);
  box-shadow: none;
}

/* Een bedrag met één regel toelichting vult geen kaart van 220px; dat levert
   alleen lege ruimte op. De grid houdt de kaarten in een rij toch al gelijk. */
body:not(.home) .value-card {
  min-height: 0;
  padding: 24px 26px;
}

body:not(.home) .content-section--bg-soft .deliverable,
body:not(.home) .content-section--bg-soft .cred,
body:not(.home) .content-section--bg-tint .deliverable {
  background: #fff;
}

body:not(.home) .deliverable:hover,
body:not(.home) .cred:hover {
  transform: none;
  box-shadow: inset 0 4px 0 var(--accent);
}

body:not(.home) .deliverable__icon,
body:not(.home) .cred__icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
}

body:not(.home) .faq {
  max-width: 820px;
  margin: 8px auto 0;
}

body:not(.home) .faq__item {
  padding: 22px 0;
  border-bottom-color: var(--home-line);
}

body:not(.home) .faq__q {
  font-size: 18px;
  letter-spacing: -0.02em;
}

body:not(.home) .cta {
  padding: 112px 0;
  background: #fff;
}

body:not(.home) .cta__card {
  min-height: 420px;
  padding: 84px 56px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border-radius: 4px 36px 4px 36px;
  background:
    radial-gradient(circle at 82% 20%, rgba(16, 185, 129, 0.18), transparent 28%),
    radial-gradient(circle at 10% 90%, rgba(37, 99, 235, 0.23), transparent 35%),
    var(--home-ink);
}

body:not(.home) .cta__card::before {
  display: none;
}

body:not(.home) .cta__title {
  max-width: 760px;
  font-family: Georgia, 'Times New Roman', serif;
  font-weight: 400;
  font-size: clamp(32px, 4.2vw, 52px);
  letter-spacing: -0.02em;
}

body:not(.home) .quote-band,
body:not(.home) .quote-band--editorial {
  padding: 112px 0;
  background: var(--home-paper);
  color: var(--home-ink);
}

body:not(.home) .quote-band::before,
body:not(.home) .quote-band--editorial::before {
  background: radial-gradient(circle at 50% 0%, rgba(37, 99, 235, 0.08), transparent 55%);
}

body:not(.home) .quote-band__mark {
  color: var(--accent-dark);
}

body:not(.home) .quote-band__text {
  font-family: Georgia, 'Times New Roman', serif;
  font-size: clamp(26px, 3.3vw, 42px);
  font-weight: 400;
  line-height: 1.32;
  letter-spacing: -0.02em;
}

body:not(.home) .quote-band__cite {
  color: var(--text-secondary);
}

body:not(.home) .quote-band__cite strong {
  color: var(--home-ink);
}

body:not(.home) .profile-card {
  gap: 36px;
  padding: 36px;
  border: 1px solid var(--home-line);
  border-radius: 4px 28px 4px 28px;
  background: var(--home-paper);
}

body:not(.home) .vtl__step {
  padding-bottom: 42px;
}

body:not(.home) .channel {
  border-color: var(--home-line);
  border-radius: 3px 18px 3px 18px;
}

body:not(.home) .aside-nav,
body:not(.home) .aside-meta,
body:not(.home) .sidebar-cta {
  border-color: var(--home-line);
  border-radius: 3px 18px 3px 18px;
}

body:not(.home) .expertise-narrative__section {
  border-color: var(--home-line);
}

body:not(.home) .blog-empty {
  padding: 72px 32px;
  border: 1px solid var(--home-line);
  border-radius: 4px 28px 4px 28px;
  background: var(--home-paper);
}

body:not(.home) .form-shell {
  border-color: var(--home-line);
  border-radius: 4px 28px 4px 28px;
}

body.adore-page-privacy .page-hero,
body.adore-page-voorwaarden .page-hero,
body.adore-page-klachtenprocedure .page-hero,
body.adore-page-verwerkersovereenkomst .page-hero {
  padding: 132px 0 56px;
  background: linear-gradient(180deg, var(--home-paper) 0%, #fff 100%);
}

body.adore-page-privacy .page-hero__title,
body.adore-page-voorwaarden .page-hero__title,
body.adore-page-klachtenprocedure .page-hero__title,
body.adore-page-verwerkersovereenkomst .page-hero__title {
  font-size: clamp(32px, 4vw, 46px);
}

@media (max-width: 880px) {
  body:not(.home) .page-hero {
    padding: 124px 0 64px;
  }

  body:not(.home) .page-hero .editorial-image--page,
  body:not(.home) .page-hero .editorial-image--page img {
    min-height: 360px;
  }

  body:not(.home) .content-section,
  body:not(.home) .cta,
  body:not(.home) .quote-band {
    padding-block: 80px;
  }

  body:not(.home) .cta__card {
    min-height: 0;
    padding: 56px 24px;
  }
}

/* =============================================================
   TARIEVEN
   Bedragen zijn de kern van deze pagina, dus die staan groot en
   alleen; de voorwaarde eronder hoort bij het bedrag en niet in
   een aparte lijst, zodat er niets dubbel staat.
   ============================================================= */

.pricing {
  padding: 104px 0;
  background: #fff;
}

.pricing--paper {
  background: var(--home-paper);
}

.pricing .section-head {
  max-width: 760px;
  margin-bottom: 40px;
}

.pricing .section-lead {
  max-width: 640px;
}

.pricing__ic {
  flex: 0 0 auto;
}

/* ---- Tariefkaarten ---- */

.pricing__cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 22px;
  align-items: stretch;
}

.pricing-card {
  display: flex;
  flex-direction: column;
  height: 100%;
  padding: 34px 34px 30px;
  background: #fff;
  border: 1px solid var(--home-line);
  border-radius: 3px 26px 3px 26px;
}

.pricing-card--lead {
  border-color: rgba(18, 32, 43, 0.3);
  box-shadow: 0 30px 70px -40px rgba(18, 32, 43, 0.5);
}

.pricing-card__kicker {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--accent-dark);
  font-size: 11.5px;
  font-weight: 800;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.pricing-card__kicker::before {
  content: "";
  width: 22px;
  height: 1px;
  background: currentColor;
}

.pricing-card__price {
  display: flex;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 4px 10px;
  margin: 20px 0 0;
  color: var(--home-ink);
  font-size: clamp(34px, 4.4vw, 46px);
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.04em;
}

.pricing-card__unit {
  font-size: 14.5px;
  font-weight: 500;
  letter-spacing: 0;
  color: var(--text-tertiary);
}

.pricing-card__points {
  display: grid;
  gap: 10px;
  margin: 20px 0 0;
  padding: 0;
  list-style: none;
}

.pricing-card__points li {
  display: flex;
  gap: 11px;
  color: var(--home-ink);
  font-size: 15px;
  font-weight: 600;
  line-height: 1.5;
}

.pricing-card__points .pricing__ic {
  width: 17px;
  height: 17px;
  margin-top: 3px;
  color: var(--accent);
}

.pricing-card__fine {
  margin: 18px 0 0;
  padding-top: 18px;
  border-top: 1px solid var(--home-line);
  color: var(--text-secondary);
  font-size: 14.5px;
  line-height: 1.7;
}

.pricing-card__foot {
  margin-top: auto;
  padding-top: 26px;
}

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

/* ---- Tarieventabel ---- */

.pricing__table-wrap {
  background: #fff;
  border: 1px solid var(--home-line);
  border-radius: 3px 26px 3px 26px;
  overflow: hidden;
}

.pricing__table {
  width: 100%;
  border-collapse: collapse;
}

.pricing__table th,
.pricing__table td {
  padding: 22px 26px;
  text-align: left;
  vertical-align: middle;
}

.pricing__table thead th {
  padding-top: 18px;
  padding-bottom: 18px;
  background: var(--home-paper);
  border-bottom: 1px solid var(--home-line);
  color: var(--text-tertiary);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.pricing__table thead th.is-discount {
  color: var(--accent-dark);
}

.pricing__table tbody tr + tr {
  border-top: 1px solid var(--home-line);
}

.pricing__table td:first-child {
  color: var(--home-ink);
  font-size: 16px;
  font-weight: 650;
}

.pricing__table td:first-child small {
  display: block;
  margin-top: 5px;
  color: var(--text-tertiary);
  font-size: 13.5px;
  font-weight: 400;
}

.pricing__table col.is-discount,
.pricing__table td.is-discount {
  background: rgba(16, 185, 129, 0.05);
}

.pricing__amount {
  color: var(--home-ink);
  font-size: 21px;
  font-weight: 700;
  letter-spacing: -0.02em;
  white-space: nowrap;
}

.pricing__amount--discount {
  color: var(--accent-dark);
}

.pricing__terms {
  display: grid;
  gap: 18px;
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
  counter-reset: pricing-term;
}

.pricing__terms li {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 16px;
  color: var(--text-secondary);
  font-size: 14.5px;
  line-height: 1.7;
}

.pricing__terms li::before {
  counter-increment: pricing-term;
  content: counter(pricing-term, decimal-leading-zero);
  align-self: start;
  color: var(--text-muted);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
}

/* ---- Inbegrepen ---- */

.pricing__incl {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 0.85fr);
  gap: 56px;
  align-items: start;
}

.pricing__check {
  display: grid;
  gap: 14px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.pricing__check li {
  display: flex;
  gap: 13px;
  color: var(--home-ink);
  font-size: 15.5px;
  line-height: 1.55;
}

.pricing__check .pricing__ic {
  width: 19px;
  height: 19px;
  margin-top: 3px;
  color: var(--accent);
}

.pricing__panel {
  padding: 32px 34px;
  background: var(--home-ink);
  border-radius: 3px 26px 3px 26px;
  color: #dfe7ec;
}

.pricing__panel h3 {
  margin: 0 0 6px;
  color: #fff;
  font-size: 17px;
  letter-spacing: -0.02em;
}

.pricing__panel p {
  margin: 0 0 18px;
  font-size: 14px;
  line-height: 1.65;
  opacity: 0.75;
}

.pricing__panel ul {
  display: grid;
  gap: 11px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.pricing__panel li {
  display: flex;
  gap: 12px;
  font-size: 14px;
  line-height: 1.55;
}

.pricing__panel .pricing__ic {
  width: 17px;
  height: 17px;
  margin-top: 3px;
  color: #5fd4a6;
}

/* ---- Aandachtspunten ---- */

.pricing__facts {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 16px;
}

.pricing__fact {
  display: flex;
  gap: 13px;
  margin: 0;
  padding: 22px 24px;
  background: #fff;
  border: 1px solid var(--home-line);
  border-radius: 3px 20px 3px 20px;
  color: var(--text-secondary);
  font-size: 14.5px;
  line-height: 1.65;
}

.pricing:not(.pricing--paper) .pricing__fact {
  background: var(--home-paper);
  border-color: transparent;
}

.pricing__fact .pricing__ic {
  width: 18px;
  height: 18px;
  margin-top: 4px;
  color: var(--accent-dark);
}

.pricing__note {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 16px;
  margin-top: 22px;
  padding: 24px 26px;
  background: var(--home-warm);
  border-radius: 3px 22px 3px 22px;
}

.pricing__note-label {
  align-self: start;
  padding: 5px 11px;
  border-radius: 99px;
  background: var(--home-ink);
  color: #fff;
  font-size: 10.5px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  white-space: nowrap;
}

.pricing__note p {
  margin: 0;
  color: var(--home-ink);
  font-size: 14.5px;
  line-height: 1.7;
  opacity: 0.85;
}

@media (max-width: 960px) {
  .pricing {
    padding: 76px 0;
  }

  .pricing__incl {
    grid-template-columns: 1fr;
    gap: 34px;
  }
}

@media (max-width: 720px) {
  .pricing-card {
    padding: 28px 24px 26px;
  }

  .pricing__table thead {
    display: none;
  }

  .pricing__table tbody tr {
    display: grid;
    gap: 2px;
    padding: 22px 24px;
  }

  .pricing__table td {
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: baseline;
    gap: 14px;
    padding: 6px 0;
  }

  .pricing__table td:first-child {
    display: block;
    padding-bottom: 14px;
  }

  .pricing__table td:first-child small {
    margin-top: 6px;
  }

  .pricing__table td[data-label]::before {
    content: attr(data-label);
    color: var(--text-tertiary);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
  }

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

.pricing__amount--soft,
.pricing__amount--discount.pricing__amount--soft {
  color: var(--text-tertiary);
  font-size: 14.5px;
  font-weight: 500;
  letter-spacing: 0;
}

/* ===========================================================
   Telefoonnummer als tekst

   Op een computer haalt landing.js het adres van een tel-link weg. Wat
   overblijft moet zich ook als tekst gedragen: geen wijzende cursor en geen
   beweging onder de muis, want er valt niets te klikken. Het nummer blijft
   wel te selecteren, zodat het over te nemen is.
   =========================================================== */

.is-phone-static {
  position: relative;
  cursor: default;
  user-select: text;
}

/* Staat het nummer als knop op de pagina, dan neemt een klik het over. */
.is-phone-static.is-phone-copy {
  cursor: copy;
}

.is-phone-static.is-copied::after {
  content: attr(data-copy-note);
  position: absolute;
  left: 50%;
  bottom: calc(100% + 8px);
  z-index: 2;
  transform: translateX(-50%);
  padding: 6px 10px;
  background: var(--text);
  border-radius: 8px;
  color: #fff;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0;
  white-space: nowrap;
  pointer-events: none;
}

.is-phone-static:hover,
.is-phone-static:focus {
  transform: none;
  text-decoration: none;
}

/* Per soort terug naar de rusttoestand, want een hover die wel beweegt maar
   niets doet, laat de bezoeker vergeefs klikken. */
.btn--primary.is-phone-static:hover {
  background: var(--text);
  box-shadow: var(--shadow-sm);
}

.btn--secondary.is-phone-static:hover {
  border-color: var(--border-strong);
  box-shadow: none;
}

.sidebar-cta__btn.is-phone-static:hover {
  box-shadow: none;
}

.channel.is-phone-static:hover {
  border-color: var(--border-soft);
  box-shadow: none;
}
