/* ================================================================
   PrivacyBased – Stylesheet
   ================================================================ */

/* Inter — self-hosted variable font (latin + latin-ext) */
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
  src: url('/fonts/inter-latin-ext.woff2') format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
  src: url('/fonts/inter-latin.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

:root {
  --blue-900: #071929;
  --blue-800: #0d2640;
  --blue-700: #0f3459;
  --blue-600: #103c67;
  --blue-500: #154273;
  --blue-400: #1d6aab;
  --blue-200: #7eb8e0;  /* lichtblauw voor tekst op donkere achtergronden */
  --blue-100: #cfe0f0;
  --blue-50:  #edf3f9;

  --slate-900: #0f172a;
  --slate-700: #334155;
  --slate-500: #64748b;
  --slate-400: #94a3b8;  /* lichtgrijs voor tekst op donkere achtergronden */
  --slate-300: #cbd5e1;
  --slate-100: #f1f5f9;
  --white:     #ffffff;

  --font: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --radius: 12px;
  --radius-sm: 8px;
  --shadow: 0 4px 24px rgba(15, 23, 42, .08);
  --shadow-lg: 0 12px 48px rgba(15, 23, 42, .14);

  --transition: 180ms ease;
}

/* ================================================================ RESET */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font);
  font-size: 1rem;
  line-height: 1.65;
  color: var(--slate-700);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

/* ================================================================ LAYOUT */
.container {
  width: 100%;
  max-width: 1120px;
  margin-inline: auto;
  padding-inline: clamp(1.25rem, 5vw, 2.5rem);
}

.section {
  padding-block: clamp(4rem, 8vw, 7rem);
}

.section--alt {
  background: var(--slate-100);
}

.section__header {
  text-align: center;
  max-width: 680px;
  margin-inline: auto;
  margin-bottom: 3.5rem;
}

.section__eyebrow {
  font-size: .8125rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--blue-500);
  margin-bottom: .5rem;
}

.section__intro {
  margin-top: .75rem;
  color: var(--slate-500);
  font-size: 1.0625rem;
}

/* ================================================================ TYPOGRAPHY */
h1, h2, h3 {
  font-weight: 700;
  line-height: 1.2;
  color: var(--slate-900);
}
h1 { font-size: clamp(2.2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.75rem, 4vw, 2.5rem); }
h3 { font-size: 1.125rem; }

/* ================================================================ BUTTONS */
.btn {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .75rem 1.625rem;
  border-radius: 50px;
  font-family: var(--font);
  font-size: .9375rem;
  font-weight: 600;
  cursor: pointer;
  transition: all var(--transition);
  border: 2px solid transparent;
  white-space: nowrap;
}

.btn--primary {
  background: var(--blue-500);
  color: var(--white);
}
.btn--primary:hover {
  background: var(--blue-600);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(37, 99, 235, .35);
}

.btn--outline {
  background: transparent;
  color: var(--blue-500);
  border-color: var(--blue-400);
}
.btn--outline:hover {
  background: var(--blue-50);
  border-color: var(--blue-500);
}

.btn--nav {
  background: var(--blue-500);
  color: var(--white);
  padding: .5rem 1.25rem;
  font-size: .875rem;
}
.btn--nav:hover { background: var(--blue-600); }

.btn--sm {
  padding: .5rem 1.125rem;
  font-size: .875rem;
}

.btn--full { width: 100%; justify-content: center; }

/* ================================================================ NAV */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(255, 255, 255, .85);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color var(--transition), box-shadow var(--transition);
}

.nav--scrolled {
  border-bottom-color: var(--slate-300);
  box-shadow: 0 2px 16px rgba(15, 23, 42, .07);
}

.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
}

.nav__logo {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--slate-900);
}
.nav__logo span { color: var(--blue-500); }

.nav__links {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav__links a {
  font-size: .9375rem;
  font-weight: 500;
  color: var(--slate-700);
  transition: color var(--transition);
}
.nav__links a:hover { color: var(--blue-500); }
.nav__links a.btn--nav,
.nav__links a.btn--nav:hover { color: var(--white); }

.nav__hamburger {
  display: none;
  background: none;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: var(--slate-700);
}

@media (max-width: 768px) {
  .nav__hamburger { display: block; }
  .nav__links {
    display: none;
    position: absolute;
    top: 68px;
    left: 0;
    right: 0;
    background: var(--white);
    flex-direction: column;
    padding: 1.5rem 1.5rem 2rem;
    gap: 1.25rem;
    border-bottom: 1px solid var(--slate-300);
    box-shadow: var(--shadow-lg);
  }
  .nav__links--open { display: flex; }
}

/* ================================================================ HERO */
.hero {
  padding-top: calc(68px + clamp(3rem, 7vw, 6rem));
  padding-bottom: clamp(3rem, 7vw, 6rem);
  background: linear-gradient(150deg, var(--blue-50) 0%, var(--white) 60%);
  overflow: hidden;
}

.hero__inner {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 4rem;
}

.hero__eyebrow {
  font-size: .8125rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--blue-500);
  margin-bottom: 1rem;
}

.hero h1 { margin-bottom: 1.25rem; }

.hero__sub {
  font-size: 1.125rem;
  color: var(--slate-500);
  max-width: 540px;
  margin-bottom: 2rem;
}

.hero__actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.hero__visual {
  flex-shrink: 0;
}

.shield {
  width: clamp(120px, 14vw, 200px);
  filter: drop-shadow(0 16px 40px rgba(37, 99, 235, .25));
  animation: float 5s ease-in-out infinite;
}

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

@media (max-width: 640px) {
  .hero__inner { grid-template-columns: 1fr; }
  .hero__visual { display: none; }
}

/* ================================================================ STATS */
.stats {
  background: var(--blue-900);
  padding-block: 2.5rem;
}

.stats__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 2rem;
  text-align: center;
}

.stat__number {
  display: block;
  font-size: 2rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1;
  margin-bottom: .375rem;
}

.stat__label {
  font-size: .8125rem;
  color: var(--blue-200);
  font-weight: 500;
}

/* ================================================================ EXPERTISE */
.expertise__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5rem;
}

.expertise__card {
  background: var(--white);
  border: 1px solid var(--slate-300);
  border-radius: var(--radius);
  padding: 2rem;
  transition: box-shadow var(--transition), transform var(--transition);
}
.expertise__card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-3px);
}

.card__icon {
  width: 44px;
  height: 44px;
  background: var(--blue-50);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  color: var(--blue-500);
}
.card__icon svg { width: 22px; height: 22px; }

.expertise__card h3 { margin-bottom: .5rem; }
.expertise__card p  { color: var(--slate-500); font-size: .9375rem; }

/* ================================================================ DIENSTEN */
.diensten__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
}

.dienst {
  background: var(--white);
  border-radius: var(--radius);
  padding: 1.75rem 2rem;
  border-left: 4px solid var(--blue-500);
  box-shadow: var(--shadow);
  transition: box-shadow var(--transition), transform var(--transition);
}
.dienst:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-2px);
}

.dienst h3 {
  color: var(--blue-700);
  margin-bottom: .5rem;
}
.dienst p {
  color: var(--slate-500);
  font-size: .9375rem;
}

/* ================================================================ SPREKER */
.spreker__inner {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 5rem;
  align-items: center;
}

.spreker__text h2 { margin-bottom: 1rem; }
.spreker__text p  { color: var(--slate-500); margin-bottom: 1.5rem; font-size: 1.0625rem; }

.spreker__topics {
  margin-bottom: 2rem;
}
.spreker__topics li {
  display: flex;
  align-items: center;
  gap: .625rem;
  padding: .4rem 0;
  font-size: .9375rem;
  color: var(--slate-700);
}
.spreker__topics li::before {
  content: '';
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--blue-500);
  flex-shrink: 0;
}

.quote-card {
  background: linear-gradient(135deg, var(--blue-900), var(--blue-700));
  border-radius: var(--radius);
  padding: 2.5rem;
  color: var(--white);
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.quote-icon {
  width: 48px;
  margin-bottom: 1rem;
  color: var(--blue-200);
}
.quote-card p {
  font-size: 1.0625rem;
  line-height: 1.7;
  font-style: italic;
  margin-bottom: 1rem;
  color: rgba(255,255,255,.9);
}
.quote-card span {
  font-size: .875rem;
  font-weight: 600;
  color: var(--blue-200);
}

@media (max-width: 900px) {
  .spreker__inner { grid-template-columns: 1fr; }
  .quote-card { max-width: 520px; }
}

/* ================================================================ INITIATIEVEN */
.initiatieven__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 1.5rem;
}

.initiatief {
  background: var(--white);
  border-radius: var(--radius);
  padding: 2rem;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 1rem;
  transition: box-shadow var(--transition);
}
.initiatief:hover { box-shadow: var(--shadow-lg); }

.initiatief__header {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.initiatief__logo {
  width: 52px;
  height: 52px;
  border-radius: 12px;
  background: var(--blue-900);
  color: var(--white);
  font-weight: 700;
  font-size: .875rem;
  display: flex;
  align-items: center;
  justify-content: center;
  letter-spacing: .05em;
  flex-shrink: 0;
}

.initiatief__header h3 { margin-bottom: .125rem; }
.initiatief__header a  { font-size: .875rem; color: var(--blue-500); font-weight: 500; }
.initiatief__header a:hover { text-decoration: underline; }

.initiatief p { color: var(--slate-500); font-size: .9375rem; flex: 1; }

/* ================================================================ CONTACT */
.contact {
  background: linear-gradient(150deg, var(--blue-900) 0%, var(--blue-800) 100%);
}

.contact .section__eyebrow { color: var(--blue-200); }
.contact h2 { color: var(--white); }
.contact p  { color: rgba(255,255,255,.7); }

.contact__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: start;
}

.contact__text h2 { margin-bottom: 1rem; }
.contact__text p  { margin-bottom: 2rem; font-size: 1.0625rem; }

.contact__details {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.contact__details li {
  display: flex;
  align-items: center;
  gap: .875rem;
}

.contact__details svg {
  width: 20px;
  height: 20px;
  color: var(--blue-200);
  flex-shrink: 0;
}

.contact__details a {
  color: rgba(255,255,255,.85);
  font-size: .9375rem;
  transition: color var(--transition);
}
.contact__details a:hover { color: var(--white); text-decoration: underline; }

/* FORM */
.contact__form {
  background: var(--white);
  border-radius: var(--radius);
  padding: 2.5rem;
  box-shadow: var(--shadow-lg);
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.form__group {
  display: flex;
  flex-direction: column;
  gap: .375rem;
}

.form__group label {
  font-size: .875rem;
  font-weight: 600;
  color: var(--slate-700);
}

.form__group input,
.form__group select,
.form__group textarea {
  font-family: var(--font);
  font-size: .9375rem;
  color: var(--slate-900);
  background: var(--white);
  border: 1.5px solid var(--slate-300);
  border-radius: var(--radius-sm);
  padding: .75rem 1rem;
  width: 100%;
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
  appearance: none;
}

.form__group input:focus,
.form__group select:focus,
.form__group textarea:focus {
  border-color: var(--blue-500);
  box-shadow: 0 0 0 3px rgba(37, 99, 235, .12);
}

.form__group textarea { resize: vertical; min-height: 120px; }

@media (max-width: 860px) {
  .contact__inner { grid-template-columns: 1fr; }
  .contact__form  { max-width: 560px; }
}

/* ================================================================ FOOTER */
.footer {
  background: var(--slate-900);
  padding-block: 2.5rem 1.5rem;
}

.footer__inner {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
  padding-bottom: 2rem;
  border-bottom: 1px solid rgba(255,255,255,.08);
}

.footer__brand .nav__logo { color: var(--white); }

.footer__brand p {
  color: var(--slate-400);
  font-size: .875rem;
  margin-top: .5rem;
  max-width: 280px;
}

.footer__links {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
  align-items: center;
}
.footer__links a {
  color: var(--slate-400);
  font-size: .875rem;
  transition: color var(--transition);
}
.footer__links a:hover { color: var(--white); }

.footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 1.5rem;
  flex-wrap: wrap;
  gap: 1rem;
}
.footer__bottom p {
  color: var(--slate-400);
  font-size: .8125rem;
}
.footer__legal a {
  color: var(--slate-400);
  font-size: .8125rem;
  transition: color var(--transition);
}
.footer__legal a:hover { color: var(--white); }

/* ================================================================ TOOL PAGES */
.tool-hero {
  padding-top: calc(68px + clamp(2.5rem, 6vw, 4.5rem));
  padding-bottom: clamp(2rem, 5vw, 3.5rem);
  background: linear-gradient(150deg, var(--blue-50) 0%, var(--white) 60%);
}
.tool-hero h1 { margin-bottom: 1rem; }
.tool-hero__intro {
  font-size: 1.0625rem;
  color: var(--slate-500);
  max-width: 720px;
}
.tool-hero__back {
  display: inline-block;
  font-size: .875rem;
  color: var(--blue-500);
  font-weight: 500;
  margin-bottom: 1rem;
}
.tool-hero__back:hover { text-decoration: underline; }

.tool-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
  margin-bottom: 3rem;
}

.tool-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 2rem;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 1rem;
  position: relative;
  border-top: 4px solid var(--blue-500);
}
.tool-card--soon { border-top-color: var(--slate-300); opacity: .85; }

.tool-card__badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
  font-size: .6875rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  background: var(--blue-50);
  color: var(--blue-700);
  padding: .25rem .625rem;
  border-radius: 999px;
}
.tool-card__badge--soon {
  background: var(--slate-100);
  color: var(--slate-500);
}

.tool-card h2 { font-size: 1.375rem; margin-top: .25rem; }
.tool-card__lead { color: var(--slate-700); font-size: .9375rem; }
.tool-card__features {
  font-size: .875rem;
  color: var(--slate-500);
  flex: 1;
}
.tool-card__features li {
  padding: .25rem 0 .25rem 1.25rem;
  position: relative;
}
.tool-card__features li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--blue-500);
  font-weight: 700;
}
.tool-card .btn { align-self: flex-start; margin-top: .25rem; }
.tool-card .btn[disabled] { opacity: .5; cursor: not-allowed; }

.tool-disclaimer {
  background: var(--white);
  border-left: 4px solid var(--blue-400);
  border-radius: var(--radius-sm);
  padding: 1.5rem 2rem;
  box-shadow: var(--shadow);
  max-width: 880px;
}
.tool-disclaimer h3 { font-size: 1rem; margin-bottom: .5rem; color: var(--blue-700); }
.tool-disclaimer p  { color: var(--slate-500); font-size: .9375rem; }

/* ================================================================ WIZARD */
.wizard {
  padding-block: clamp(2rem, 5vw, 3.5rem) clamp(3rem, 6vw, 5rem);
}

.wizard__shell {
  max-width: 820px;
  margin-inline: auto;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  padding: clamp(1.5rem, 4vw, 2.5rem);
}

.wizard__progress {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 2rem;
}
.wizard__progress span {
  font-size: .8125rem;
  font-weight: 600;
  color: var(--slate-500);
  letter-spacing: .04em;
  text-transform: uppercase;
  white-space: nowrap;
}
.wizard__progress-bar {
  flex: 1;
  height: 6px;
  background: var(--slate-100);
  border-radius: 999px;
  overflow: hidden;
}
.wizard__progress-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--blue-400), var(--blue-500));
  width: 0;
  transition: width 320ms ease;
}

.wizard__step {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}
.wizard__step[hidden] { display: none; }
.wizard__step h2 { font-size: 1.5rem; }
.wizard__step > p { color: var(--slate-500); font-size: .9375rem; }

.wizard__nav {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--slate-100);
  flex-wrap: wrap;
}
.wizard__nav .btn--prev { margin-right: auto; }
.wizard__nav--end { justify-content: flex-end; }

.wizard__disclaimer {
  background: var(--blue-50);
  border-radius: var(--radius-sm);
  padding: 1rem 1.25rem;
  font-size: .875rem;
  color: var(--slate-700);
}

.wizard__criteria {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.wizard__criterion {
  border: 1.5px solid var(--slate-300);
  border-radius: var(--radius-sm);
  padding: 1.25rem 1.5rem;
  transition: border-color var(--transition), background var(--transition);
}
.wizard__criterion:has(input:checked) {
  border-color: var(--blue-500);
  background: var(--blue-50);
}
.wizard__criterion h4 {
  font-size: 1rem;
  font-weight: 600;
  color: var(--slate-900);
  margin-bottom: .375rem;
}
.wizard__criterion p {
  font-size: .875rem;
  color: var(--slate-500);
  margin-bottom: .75rem;
}
.wizard__choice {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .375rem .875rem;
  margin-right: .5rem;
  border-radius: 999px;
  background: var(--slate-100);
  font-size: .875rem;
  font-weight: 500;
  cursor: pointer;
  transition: all var(--transition);
  user-select: none;
}
.wizard__choice input { position: absolute; opacity: 0; pointer-events: none; }
.wizard__choice:has(input:checked) {
  background: var(--blue-500);
  color: var(--white);
}

.wizard__result {
  border-radius: var(--radius);
  padding: 1.75rem 2rem;
  margin-bottom: 1.5rem;
}
.wizard__result--required {
  background: linear-gradient(135deg, #b91c1c, #7f1d1d);
  color: var(--white);
}
.wizard__result--maybe {
  background: linear-gradient(135deg, #d97706, #b45309);
  color: var(--white);
}
.wizard__result--unlikely {
  background: linear-gradient(135deg, var(--blue-700), var(--blue-900));
  color: var(--white);
}
.wizard__result__label {
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  opacity: .85;
  margin-bottom: .5rem;
}
.wizard__result h3 { color: var(--white); font-size: 1.5rem; margin-bottom: .5rem; }
.wizard__result p { color: rgba(255,255,255,.92); font-size: .9375rem; line-height: 1.65; }

.wizard__summary {
  border: 1px solid var(--slate-300);
  border-radius: var(--radius-sm);
  padding: 1.25rem 1.5rem;
  margin-bottom: 1.5rem;
}
.wizard__summary h4 {
  font-size: .875rem;
  font-weight: 600;
  color: var(--slate-700);
  margin-bottom: .75rem;
  text-transform: uppercase;
  letter-spacing: .04em;
}
.wizard__summary ul { font-size: .9375rem; color: var(--slate-700); }
.wizard__summary li { padding: .25rem 0 .25rem 1.5rem; position: relative; }
.wizard__summary li::before {
  content: '•';
  position: absolute;
  left: .375rem;
  color: var(--blue-500);
  font-weight: 700;
}
.wizard__summary li.is-empty { color: var(--slate-400); font-style: italic; }
.wizard__summary li.is-empty::before { content: '–'; }

/* ================================================================ LEAD MODAL */
.lead-modal__overlay {
  position: fixed;
  inset: 0;
  background: rgba(15, 23, 42, .6);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 200;
  padding: 1rem;
  animation: lead-fade 180ms ease;
}
@keyframes lead-fade { from { opacity: 0; } to { opacity: 1; } }

.lead-modal {
  background: var(--white);
  border-radius: var(--radius);
  padding: 2.5rem;
  max-width: 480px;
  width: 100%;
  box-shadow: var(--shadow-lg);
  position: relative;
  animation: lead-pop 220ms ease;
}
@keyframes lead-pop {
  from { transform: translateY(12px); opacity: .5; }
  to   { transform: translateY(0);    opacity: 1; }
}

.lead-modal h3 { margin-bottom: .5rem; }
.lead-modal__intro  { color: var(--slate-500); margin-bottom: 1.5rem; font-size: .9375rem; }
.lead-modal__legal  { color: var(--slate-400); margin-top: 1rem; font-size: .75rem; line-height: 1.5; }
.lead-modal__legal a { color: var(--blue-500); text-decoration: underline; }

.lead-modal form { display: flex; flex-direction: column; gap: 1rem; }
.lead-modal .form__group { gap: .375rem; }

.lead-modal__close {
  position: absolute;
  top: .75rem;
  right: 1rem;
  background: none;
  border: none;
  font-size: 1.75rem;
  color: var(--slate-500);
  cursor: pointer;
  line-height: 1;
}
.lead-modal__close:hover { color: var(--slate-900); }

.lead-modal__error {
  background: #fef2f2;
  color: #b91c1c;
  border-radius: var(--radius-sm);
  padding: .625rem .875rem;
  font-size: .875rem;
  display: none;
}
.lead-modal__error.is-visible { display: block; }

.btn[aria-busy="true"] {
  opacity: .7;
  pointer-events: none;
}

/* ================================================================ UTILITIES */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .01ms !important; transition-duration: .01ms !important; }
}

/* ================================================================ CONTACT FORM STATUS */
.contact__status {
  margin: 0 0 1rem;
  padding: 0;
  font-size: 0.95rem;
  line-height: 1.5;
}
.contact__status:empty {
  display: none;
}
.contact__status--ok {
  padding: .75rem 1rem;
  background: #ecfdf5;
  border: 1px solid #a7f3d0;
  color: #065f46;
  border-radius: 8px;
}
.contact__status--err {
  padding: .75rem 1rem;
  background: #fef2f2;
  border: 1px solid #fecaca;
  color: #991b1b;
  border-radius: 8px;
}

/* ================================================================ LEGAL PAGE */
.legal {
  max-width: 760px;
}
.legal h2 {
  margin-top: 2.25rem;
  margin-bottom: .75rem;
  font-size: 1.5rem;
  color: #0f172a;
}
.legal h3 {
  margin-top: 1.5rem;
  margin-bottom: .5rem;
  font-size: 1.125rem;
  color: #1e293b;
}
.legal p {
  margin: 0 0 1rem;
  line-height: 1.65;
  color: #334155;
}
.legal ul {
  margin: 0 0 1.25rem 1.25rem;
  padding: 0;
  color: #334155;
  line-height: 1.65;
}
.legal ul li {
  margin-bottom: .35rem;
}
.legal a {
  color: #1e40af;
  text-decoration: underline;
  text-underline-offset: 2px;
}
.legal a:hover {
  color: #0f172a;
}
