/* Rijschool Schulte - stylesheet
   Palette derived from the world of the business: asphalt, road markings,
   winter light over Drenthe. One signature element: the lane marking. */

:root {
  --asfalt: #14181d;
  --asfalt-800: #1d232a;
  --asfalt-700: #2a323b;
  --asfalt-600: #3b4650;
  --grijs-500: #5f6b78;
  --grijs-300: #b9c2cb;
  --grijs-200: #dde2e8;
  --mist: #f3f5f7;
  --wit: #ffffff;
  --markering: #ffc21f;
  --markering-800: #e3a600;
  --markering-100: #fff4d3;
  --groen: #14705a;
  --groen-100: #e2f2ed;
  --rood: #b3261e;

  --font: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial,
    "Noto Sans", sans-serif;

  --wrap: 1140px;
  --radius: 14px;
  --radius-sm: 8px;
  --shadow: 0 1px 2px rgba(20, 24, 29, .06), 0 12px 32px rgba(20, 24, 29, .08);
  --shadow-lg: 0 2px 4px rgba(20, 24, 29, .08), 0 24px 60px rgba(20, 24, 29, .16);
}

/* ---------- reset ---------- */

*, *::before, *::after { box-sizing: border-box; }

html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font);
  font-size: 17px;
  line-height: 1.65;
  color: var(--asfalt-800);
  background: var(--wit);
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; }

h1, h2, h3, h4 {
  margin: 0 0 .5em;
  line-height: 1.14;
  letter-spacing: -.022em;
  font-weight: 800;
  color: var(--asfalt);
}

h1 { font-size: clamp(2.1rem, 1.35rem + 3.1vw, 3.55rem); }
h2 { font-size: clamp(1.55rem, 1.2rem + 1.5vw, 2.25rem); }
h3 { font-size: clamp(1.15rem, 1.03rem + .5vw, 1.35rem); }
h4 { font-size: 1.02rem; }

p, ul, ol, dl, table { margin: 0 0 1.1rem; }

a { color: var(--asfalt); text-decoration-color: var(--markering-800); text-underline-offset: .18em; }
a:hover { color: var(--markering-800); }

strong { font-weight: 700; }

:focus-visible {
  outline: 3px solid var(--markering-800);
  outline-offset: 2px;
  border-radius: 3px;
}

/* ---------- layout helpers ---------- */

.wrap { width: 100%; max-width: var(--wrap); margin: 0 auto; padding: 0 20px; }
.wrap-narrow { max-width: 780px; }

.section { padding: clamp(3rem, 1.6rem + 5vw, 5.5rem) 0; }
.section-tight { padding: clamp(2.2rem, 1.4rem + 3vw, 3.6rem) 0; }
.section-mist { background: var(--mist); }
.section-dark { background: var(--asfalt); color: var(--grijs-200); }
.section-dark h2, .section-dark h3 { color: var(--wit); }
.section-dark a { color: var(--markering); }

.label {
  display: inline-block;
  margin: 0 0 .9rem;
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--markering-800);
}
.section-dark .label { color: var(--markering); }

.lead { font-size: 1.12rem; color: var(--asfalt-700); }
.section-dark .lead,
.hero .lead,
.cta-band .lead { color: var(--grijs-300); }

.skip {
  position: absolute;
  left: -9999px;
  top: 0;
  background: var(--markering);
  color: var(--asfalt);
  padding: .7rem 1.1rem;
  font-weight: 700;
  z-index: 100;
}
.skip:focus { left: 0; }

/* the signature element: a road marking */
.lane {
  height: 7px;
  border: 0;
  margin: 0;
  background-image: repeating-linear-gradient(
    90deg,
    var(--markering) 0 54px,
    transparent 54px 110px
  );
}
.lane-thin { height: 5px; opacity: .85; }

/* ---------- buttons ---------- */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .55rem;
  padding: .85rem 1.4rem;
  border: 2px solid transparent;
  border-radius: 999px;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.2;
  text-decoration: none;
  cursor: pointer;
  transition: transform .15s ease, background-color .15s ease, color .15s ease,
    border-color .15s ease;
}
.btn:hover { transform: translateY(-2px); }

.btn-primary { background: var(--markering); color: var(--asfalt); }
.btn-primary:hover { background: var(--markering-800); color: var(--asfalt); }

.btn-dark { background: var(--asfalt); color: var(--wit); }
.btn-dark:hover { background: var(--asfalt-700); color: var(--wit); }

.btn-ghost { border-color: var(--asfalt-600); color: var(--asfalt); background: transparent; }
.btn-ghost:hover { border-color: var(--asfalt); background: var(--asfalt); color: var(--wit); }

/* anything sitting on the asphalt background */
.section-dark .btn-ghost,
.hero .btn-ghost,
.cta-band .btn-ghost,
.lander .btn-ghost { border-color: var(--asfalt-600); color: var(--wit); }
.section-dark .btn-ghost:hover,
.hero .btn-ghost:hover,
.cta-band .btn-ghost:hover,
.lander .btn-ghost:hover { background: var(--wit); color: var(--asfalt); border-color: var(--wit); }

.btn-sm { padding: .6rem 1rem; font-size: .92rem; }

.btn-row { display: flex; flex-wrap: wrap; gap: .8rem; margin: 1.6rem 0 0; }

/* ---------- header + navigation ---------- */

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: var(--wit);
  border-bottom: 1px solid var(--grijs-200);
}

.header-inner {
  display: flex;
  align-items: center;
  gap: 1rem;
  min-height: 74px;
  flex-wrap: wrap;
}

.brand {
  display: flex;
  align-items: center;
  gap: .7rem;
  text-decoration: none;
  margin-right: auto;
  padding: .5rem 0;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border-radius: 11px;
  background: var(--asfalt);
  color: var(--markering);
  font-weight: 800;
  font-size: 1.05rem;
  letter-spacing: .02em;
  flex: none;
}

.brand-text { display: flex; flex-direction: column; line-height: 1.2; }
.brand-text strong { font-size: 1.08rem; color: var(--asfalt); letter-spacing: -.01em; }
.brand-text span { font-size: .78rem; color: var(--grijs-500); }

@media (max-width: 480px) {
  .brand-text span { display: none; }
  .brand-text strong { font-size: 1rem; }
  .brand-mark { width: 40px; height: 40px; }
  .nav-toggle-label { padding: .5rem .85rem; }
  .header-inner { min-height: 64px; }
}

.nav-toggle { position: absolute; opacity: 0; width: 1px; height: 1px; }

.nav-toggle-label {
  display: inline-flex;
  align-items: center;
  gap: .55rem;
  padding: .6rem .95rem;
  border: 2px solid var(--grijs-200);
  border-radius: 999px;
  font-weight: 700;
  font-size: .95rem;
  cursor: pointer;
  user-select: none;
}
.nav-toggle:focus-visible + .nav-toggle-label {
  outline: 3px solid var(--markering-800);
  outline-offset: 2px;
}

.bars { position: relative; display: block; width: 18px; height: 2px; background: var(--asfalt); }
.bars::before, .bars::after {
  content: "";
  position: absolute;
  left: 0;
  width: 18px;
  height: 2px;
  background: var(--asfalt);
}
.bars::before { top: -6px; }
.bars::after { top: 6px; }

.site-nav { display: none; width: 100%; padding: .4rem 0 1.1rem; }
.nav-toggle:checked ~ .site-nav { display: block; }

.site-nav ul {
  list-style: none;
  margin: 0 0 .9rem;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: .1rem;
}

.site-nav a {
  display: block;
  padding: .6rem .2rem;
  font-weight: 600;
  text-decoration: none;
  border-bottom: 1px solid var(--grijs-200);
}
.site-nav a[aria-current] { color: var(--markering-800); }

.site-nav .btn { width: 100%; }

@media (min-width: 900px) {
  .nav-toggle-label { display: none; }
  .site-nav {
    display: flex;
    align-items: center;
    gap: 1.4rem;
    width: auto;
    padding: 0;
  }
  .site-nav ul { flex-direction: row; margin: 0; gap: 1.35rem; }
  .site-nav a { padding: .3rem 0; border-bottom: 2px solid transparent; font-size: .97rem; }
  .site-nav a:hover { border-bottom-color: var(--markering); }
  .site-nav a[aria-current] { border-bottom-color: var(--markering-800); }
  .site-nav .btn { width: auto; }
}

/* ---------- hero ---------- */

.hero {
  position: relative;
  background: var(--asfalt);
  color: var(--grijs-200);
  overflow: hidden;
}
.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0 0;
  height: 7px;
  background-image: repeating-linear-gradient(
    90deg,
    var(--markering) 0 54px,
    transparent 54px 110px
  );
}
.hero::before {
  content: "";
  position: absolute;
  top: -30%;
  right: -12%;
  width: 46rem;
  height: 46rem;
  border-radius: 50%;
  background: radial-gradient(circle at 35% 35%, rgba(255, 194, 31, .17), transparent 62%);
  pointer-events: none;
}

.hero-inner {
  position: relative;
  display: grid;
  gap: 2.6rem;
  padding: clamp(2.8rem, 1.5rem + 5vw, 5rem) 0 clamp(3.2rem, 2rem + 5vw, 5.4rem);
}

.hero h1 { color: var(--wit); max-width: 15ch; }
.hero h1 em { font-style: normal; color: var(--markering); }
.hero p { color: var(--grijs-300); max-width: 54ch; font-size: 1.12rem; }

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: .6rem;
  padding: .45rem .95rem .45rem .5rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, .07);
  border: 1px solid rgba(255, 255, 255, .12);
  font-size: .87rem;
  font-weight: 600;
  color: var(--wit);
  margin-bottom: 1.4rem;
}
.hero-badge span {
  display: grid;
  place-items: center;
  min-width: 30px;
  height: 30px;
  padding: 0 .5rem;
  border-radius: 999px;
  background: var(--markering);
  color: var(--asfalt);
  font-weight: 800;
  font-size: .8rem;
}

.hero-card {
  background: var(--wit);
  color: var(--asfalt-800);
  border-radius: var(--radius);
  padding: 1.6rem;
  box-shadow: var(--shadow-lg);
}
.hero-card h2 { font-size: 1.22rem; }
.hero-card dl { margin: 0; }
.hero-card dt {
  font-size: .78rem;
  text-transform: uppercase;
  letter-spacing: .11em;
  color: var(--grijs-500);
  font-weight: 700;
}
.hero-card dd { margin: .1rem 0 1rem; font-weight: 600; }
.hero-card dd:last-child { margin-bottom: 0; }
.hero-card a { font-weight: 700; }

@media (min-width: 950px) {
  .hero-inner { grid-template-columns: 1.35fr .85fr; align-items: center; gap: 3.4rem; }
}

/* ---------- facts strip ---------- */

.facts {
  display: grid;
  gap: 1px;
  background: var(--grijs-200);
  border-top: 1px solid var(--grijs-200);
  border-bottom: 1px solid var(--grijs-200);
}
.facts div { background: var(--wit); padding: 1.4rem 1.2rem; }
.facts dt {
  font-size: 1.55rem;
  font-weight: 800;
  color: var(--asfalt);
  letter-spacing: -.02em;
  line-height: 1.1;
}
.facts dd { margin: .25rem 0 0; font-size: .93rem; color: var(--grijs-500); }
@media (min-width: 700px) { .facts { grid-template-columns: repeat(4, 1fr); } }

/* ---------- cards & grids ---------- */

.grid { display: grid; gap: 1.3rem; }
@media (min-width: 700px) { .grid-2 { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 900px) { .grid-3 { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 700px) { .grid-4 { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1000px) { .grid-4 { grid-template-columns: repeat(4, 1fr); } }

.card {
  position: relative;
  display: flex;
  flex-direction: column;
  background: var(--wit);
  border: 1px solid var(--grijs-200);
  border-radius: var(--radius);
  padding: 1.5rem;
  transition: transform .16s ease, box-shadow .16s ease, border-color .16s ease;
}
.card h3 { margin-bottom: .4rem; }
.card p { color: var(--asfalt-700); margin-bottom: 1rem; }
.card p:last-of-type { margin-bottom: 0; }
.card .card-link { margin-top: auto; padding-top: 1rem; font-weight: 700; text-decoration: none; }
.card .card-link::after { content: " \2192"; }
.card:hover { transform: translateY(-3px); box-shadow: var(--shadow); border-color: var(--grijs-300); }

.card-num {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  margin-bottom: .9rem;
  border-radius: 10px;
  background: var(--markering-100);
  color: var(--markering-800);
  font-weight: 800;
}

.card-price {
  display: inline-block;
  margin: 0 0 .8rem;
  padding: .3rem .7rem;
  border-radius: 999px;
  background: var(--groen-100);
  color: var(--groen);
  font-weight: 700;
  font-size: .9rem;
}

/* ---------- lists ---------- */

.ticks { list-style: none; padding: 0; margin: 0 0 1.2rem; }
.ticks li { position: relative; padding: .28rem 0 .28rem 1.9rem; }
.ticks li::before {
  content: "";
  position: absolute;
  left: 0;
  top: .72em;
  width: 11px;
  height: 6px;
  border-left: 2.5px solid var(--markering-800);
  border-bottom: 2.5px solid var(--markering-800);
  transform: rotate(-45deg);
}
.section-dark .ticks li::before { border-color: var(--markering); }

.steps { list-style: none; counter-reset: step; padding: 0; margin: 0; display: grid; gap: 1.1rem; }
.steps li {
  counter-increment: step;
  position: relative;
  padding: 0 0 0 3.4rem;
}
.steps li::before {
  content: counter(step);
  position: absolute;
  left: 0;
  top: 0;
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--asfalt);
  color: var(--markering);
  font-weight: 800;
}
.steps h3 { margin-bottom: .25rem; }
.steps p { margin: 0; color: var(--asfalt-700); }
@media (min-width: 900px) { .steps { grid-template-columns: repeat(2, 1fr); gap: 1.8rem 2.4rem; } }

/* ---------- prices ---------- */

.price-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--wit);
  border: 1px solid var(--grijs-200);
  border-radius: var(--radius);
  overflow: hidden;
}
.price-table caption {
  text-align: left;
  font-weight: 800;
  font-size: 1.05rem;
  padding: 0 0 .6rem;
  color: var(--asfalt);
}
.price-table th, .price-table td {
  text-align: left;
  padding: .75rem 1rem;
  border-bottom: 1px solid var(--grijs-200);
  font-size: .98rem;
}
.price-table thead th {
  background: var(--mist);
  font-size: .78rem;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--grijs-500);
}
.price-table td:last-child, .price-table th:last-child { text-align: right; white-space: nowrap; font-weight: 700; }
.price-table tbody tr:last-child td { border-bottom: 0; }

@media (max-width: 600px) {
  .price-table th, .price-table td { padding: .65rem .7rem; font-size: .93rem; }
  .price-table td:last-child, .price-table th:last-child { white-space: normal; }
}

.pkg {
  border: 1px solid var(--grijs-200);
  border-radius: var(--radius);
  padding: 1.5rem;
  background: var(--wit);
  display: flex;
  flex-direction: column;
}
.pkg-name { font-size: .82rem; text-transform: uppercase; letter-spacing: .12em; color: var(--markering-800); font-weight: 700; }
.pkg-amount { font-size: 2rem; font-weight: 800; letter-spacing: -.03em; color: var(--asfalt); line-height: 1.1; margin: .3rem 0 .1rem; }
.pkg-sub { font-size: .92rem; color: var(--grijs-500); margin: 0 0 1rem; }
.pkg .btn { margin-top: auto; }

.note { font-size: .9rem; color: var(--grijs-500); }

/* ---------- faq ---------- */

.faq { border-top: 1px solid var(--grijs-200); }
.faq details { border-bottom: 1px solid var(--grijs-200); }
.faq summary {
  cursor: pointer;
  padding: 1.05rem 2.4rem 1.05rem 0;
  font-weight: 700;
  font-size: 1.05rem;
  position: relative;
  list-style: none;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "";
  position: absolute;
  right: .5rem;
  top: 1.5rem;
  width: 10px;
  height: 10px;
  border-right: 2.5px solid var(--markering-800);
  border-bottom: 2.5px solid var(--markering-800);
  transform: rotate(45deg);
  transition: transform .18s ease;
}
.faq details[open] summary::after { transform: rotate(-135deg); }
.faq .faq-body { padding: 0 0 1.2rem; color: var(--asfalt-700); max-width: 68ch; }
.faq .faq-body p:last-child { margin-bottom: 0; }

/* ---------- callout / cta band ---------- */

.callout {
  background: var(--markering-100);
  border-radius: var(--radius);
  padding: 1.5rem;
  border-left: 6px solid var(--markering);
}
.callout p:last-child { margin-bottom: 0; }

.cta-band { background: var(--asfalt); color: var(--grijs-200); }
.cta-band h2 { color: var(--wit); }
.cta-band .wrap { display: grid; gap: 1.6rem; padding-top: clamp(2.6rem, 1.6rem + 3vw, 4rem); padding-bottom: clamp(2.6rem, 1.6rem + 3vw, 4rem); }
@media (min-width: 900px) {
  .cta-band .wrap { grid-template-columns: 1.25fr .75fr; align-items: center; }
}

/* ---------- contact blocks ---------- */

.contact-grid { display: grid; gap: 1.5rem; }
@media (min-width: 850px) { .contact-grid { grid-template-columns: 1fr 1fr; } }

.contact-card {
  border: 1px solid var(--grijs-200);
  border-radius: var(--radius);
  padding: 1.5rem;
  background: var(--wit);
}
.contact-card h3 { margin-bottom: .3rem; }
.contact-card address { font-style: normal; color: var(--asfalt-700); }

.map-link {
  display: block;
  border: 1px solid var(--grijs-200);
  border-radius: var(--radius);
  overflow: hidden;
  text-decoration: none;
  background:
    repeating-linear-gradient(135deg, rgba(255, 194, 31, .10) 0 14px, transparent 14px 28px),
    var(--mist);
}
.map-link .map-face { display: grid; place-items: center; padding: 2.4rem 1.2rem; text-align: center; }
.map-link .map-pin {
  width: 42px; height: 42px; border-radius: 50% 50% 50% 0;
  background: var(--markering-800); transform: rotate(-45deg); margin-bottom: 1rem;
  box-shadow: var(--shadow);
}
.map-link strong { display: block; color: var(--asfalt); }
.map-link span { font-size: .93rem; color: var(--grijs-500); }
.map-link:hover { border-color: var(--markering-800); }

/* ---------- breadcrumb + subnav ---------- */

.crumbs { font-size: .88rem; color: var(--grijs-500); padding: 1rem 0 0; }
.crumbs ol { list-style: none; display: flex; flex-wrap: wrap; gap: .45rem; margin: 0; padding: 0; }
.crumbs li::after { content: "/"; margin-left: .45rem; color: var(--grijs-300); }
.crumbs li:last-child::after { content: ""; }
.crumbs a { color: var(--grijs-500); }

.subnav { display: flex; flex-wrap: wrap; gap: .5rem; margin: 0 0 2rem; padding: 0; list-style: none; }
.subnav a {
  display: inline-block;
  padding: .45rem .9rem;
  border: 1px solid var(--grijs-200);
  border-radius: 999px;
  font-size: .92rem;
  font-weight: 600;
  text-decoration: none;
  background: var(--wit);
}
.subnav a:hover { border-color: var(--asfalt); }
.subnav a[aria-current] { background: var(--asfalt); color: var(--wit); border-color: var(--asfalt); }

/* ---------- page header ---------- */

.page-head { background: var(--mist); border-bottom: 1px solid var(--grijs-200); }
.page-head .wrap { padding-top: 1rem; padding-bottom: clamp(1.8rem, 1.2rem + 2vw, 3rem); }
.page-head h1 { max-width: 20ch; }
.page-head .lead { max-width: 62ch; margin-bottom: 0; }

/* ---------- prose ---------- */

.prose { max-width: 72ch; }
.prose h2 { margin-top: 2.4rem; }
.prose h3 { margin-top: 1.8rem; }
.prose > :first-child { margin-top: 0; }

/* ---------- footer ---------- */

.site-footer { background: var(--asfalt); color: var(--grijs-300); padding: 3rem 0 0; font-size: .96rem; }
.site-footer h2, .site-footer h3 { color: var(--wit); font-size: 1rem; margin-bottom: .7rem; }
.site-footer a { color: var(--grijs-200); }
.site-footer a:hover { color: var(--markering); }
.footer-grid { display: grid; gap: 2rem; padding-bottom: 2.4rem; }
@media (min-width: 800px) { .footer-grid { grid-template-columns: 1.4fr 1fr 1fr; gap: 3rem; } }
.footer-grid ul { list-style: none; margin: 0; padding: 0; }
.footer-grid li { padding: .18rem 0; }
.footer-grid address { font-style: normal; }
.footer-bottom {
  border-top: 1px solid var(--asfalt-700);
  padding: 1.2rem 0 1.6rem;
  font-size: .86rem;
  color: var(--grijs-500);
  display: flex;
  flex-wrap: wrap;
  gap: .4rem 1.2rem;
}

/* ---------- video landing page ---------- */

.lander { background: var(--asfalt); color: var(--grijs-200); min-height: 100vh; display: flex; flex-direction: column; }
.lander a { color: var(--markering); }
.lander .btn-primary { color: var(--asfalt); }
.lander .btn-dark { color: var(--wit); }
.lander .brand-mark { background: rgba(255, 255, 255, .07); border: 1px solid rgba(255, 255, 255, .16); }
.lander-head { padding: 2rem 0 0; }
.lander-main { flex: 1; padding: 2rem 0 3.5rem; }
.lander h1 { color: var(--wit); font-size: clamp(1.85rem, 1.3rem + 2.4vw, 2.9rem); max-width: 18ch; }
.lander .lead { color: var(--grijs-300); max-width: 58ch; }

.player-shell {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--asfalt-800);
  border: 1px solid var(--asfalt-700);
  box-shadow: var(--shadow-lg);
}
.player-shell video { display: block; width: 100%; height: auto; background: #000; }

.player-placeholder {
  display: grid;
  place-items: center;
  text-align: center;
  gap: .6rem;
  aspect-ratio: 16 / 9;
  padding: 1.5rem;
  background:
    repeating-linear-gradient(90deg, rgba(255, 194, 31, .13) 0 54px, transparent 54px 110px)
      bottom / 100% 7px no-repeat,
    linear-gradient(140deg, var(--asfalt-700), var(--asfalt-800));
}
.player-placeholder .play-mark {
  display: grid;
  place-items: center;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: rgba(255, 194, 31, .16);
  border: 2px solid var(--markering);
}
.player-placeholder .play-mark::after {
  content: "";
  width: 0;
  height: 0;
  margin-left: 4px;
  border-left: 18px solid var(--markering);
  border-top: 11px solid transparent;
  border-bottom: 11px solid transparent;
}
.player-placeholder strong { color: var(--wit); font-size: 1.05rem; }
.player-placeholder span { color: var(--grijs-300); font-size: .95rem; max-width: 40ch; }

.lander-grid { display: grid; gap: 2rem; align-items: start; }
@media (min-width: 950px) { .lander-grid { grid-template-columns: 1.5fr 1fr; gap: 2.8rem; } }

.lander-cta {
  background: rgba(255, 255, 255, .05);
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: var(--radius);
  padding: 1.5rem;
}
.lander-cta h2 { color: var(--wit); font-size: 1.18rem; }
.lander-cta p { color: var(--grijs-300); }
.lander-cta .btn { width: 100%; margin-bottom: .7rem; }
.lander-cta .btn:last-child { margin-bottom: 0; }

.lander-foot { border-top: 1px solid var(--asfalt-700); padding: 1.4rem 0 2rem; font-size: .88rem; color: var(--grijs-500); }

/* ---------- motion ---------- */

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: .001ms !important;
    transition-duration: .001ms !important;
  }
  .btn:hover, .card:hover { transform: none; }
}

/* ---------- print ---------- */

@media print {
  .site-header, .cta-band, .btn-row, .site-footer { display: none; }
  body { font-size: 12pt; color: #000; }
}
