/* =========================================================
   Autorijschool Engelen — Design System
   Calm, confident, specialist. Built for the faalangst audience first.
   ========================================================= */

/* --- Tokens --- */
:root {
  /* Brand — bright "L-plate" cobalt blue, picked from the logo */
  --color-primary:        #1A78D8;   /* logo cobalt — friendly, confident */
  --color-primary-2:      #2E92EE;   /* lighter sky tone */
  --color-primary-ink:    #0E3A6E;   /* deep blue for headings */
  --color-primary-deep:   #0F4F94;   /* dark sections / footer */
  --color-accent:         #2E92EE;   /* harmonized with primary */
  --color-accent-2:       #BFE0F5;   /* soft sky tint */
  --color-cta:            #E58A40;   /* warmer, friendlier orange */
  --color-cta-2:          #F2A664;
  --color-soft:           #EEF6FC;   /* very light sky wash */
  --color-soft-2:         #F7FBFE;   /* almost-white sky */
  --color-cream:          #FAF6EF;   /* warm cream for human touch */
  --color-gold:           #F5A623;
  --color-success:        #2E7D32;
  --color-error:          #B03A2E;

  /* Neutrals */
  --color-ink:            #1F2937;
  --color-ink-2:          #5C6370;
  --color-ink-3:          #8A8F98;
  --color-line:           #DCE6F0;
  --color-bg-soft:        #F2F6FA;
  --color-bg:             #FFFFFF;

  /* Type */
  --font-sans: 'Lato', 'Source Sans Pro', 'Open Sans', system-ui, -apple-system, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;

  /* Spacing (8px grid) */
  --s-1: 4px;
  --s-2: 8px;
  --s-3: 12px;
  --s-4: 16px;
  --s-5: 24px;
  --s-6: 32px;
  --s-7: 48px;
  --s-8: 64px;
  --s-9: 80px;
  --s-10: 112px;

  /* Radius */
  --r-sm: 6px;
  --r-md: 10px;
  --r-lg: 16px;
  --r-pill: 999px;

  /* Shadow — soft, calm */
  --shadow-sm: 0 1px 2px rgba(15, 34, 54, 0.06);
  --shadow-md: 0 6px 24px rgba(15, 34, 54, 0.08);
  --shadow-lg: 0 18px 48px rgba(15, 34, 54, 0.10);

  /* Container */
  --max: 1180px;

  --transition: 180ms ease;
}

/* --- Reset --- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.7;
  color: var(--color-ink);
  background: var(--color-bg);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img, svg { display: block; max-width: 100%; height: auto; }
a { color: var(--color-primary-2); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--color-primary); }
a:focus-visible, button:focus-visible, input:focus-visible, textarea:focus-visible, select:focus-visible {
  outline: 3px solid var(--color-accent-2);
  outline-offset: 2px;
  border-radius: var(--r-sm);
}
button { font: inherit; cursor: pointer; }
ul, ol { padding-left: 1.25em; }

/* --- Type scale (1.25 ratio, 16 base) --- */
h1, h2, h3, h4, h5 {
  font-family: var(--font-sans);
  font-weight: 800;
  color: var(--color-primary-ink);
  letter-spacing: -0.012em;
  line-height: 1.2;
  margin: 0 0 var(--s-4);
}
h1 { font-size: clamp(2rem, 1.4rem + 2.6vw, 3.2rem); font-weight: 800; }
h2 { font-size: clamp(1.55rem, 1.15rem + 1.5vw, 2.25rem); }
h3 { font-size: clamp(1.2rem, 1.02rem + 0.7vw, 1.5rem); font-weight: 800; }
h4 { font-size: 1.1rem; font-weight: 700; letter-spacing: 0; }
p  { margin: 0 0 1em; }
.lead { font-size: 1.15rem; color: var(--color-ink-2); }

.eyebrow {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--color-accent);
  margin-bottom: var(--s-3);
}

/* --- Layout --- */
.container { width: 100%; max-width: var(--max); margin-inline: auto; padding-inline: var(--s-5); }
.section { padding-block: var(--s-9); position: relative; }
.section--soft { background: var(--color-bg-soft); }
.section--sky { background: linear-gradient(180deg, var(--color-soft-2) 0%, var(--color-soft) 100%); }
.section--cream { background: var(--color-cream); }

/* bghead-style chevron accents on light content sections — subtle, decorative */
.section--soft, .section--sky, .section--cream, .empathy {
  overflow: hidden;
}
.section--soft::after, .section--sky::after, .section--cream::after, .empathy::after {
  content: "";
  position: absolute;
  bottom: -1px; right: -2%;
  width: 14%; height: 36%;
  background: linear-gradient(135deg, #3CDCFF 0%, #1A78D8 100%);
  clip-path: polygon(100% 0, 100% 100%, 0 100%);
  opacity: 0.18;
  pointer-events: none;
  z-index: 0;
}
.section--soft > .container,
.section--sky > .container,
.section--cream > .container,
.empathy > .container { position: relative; z-index: 1; }
@media (max-width: 720px) {
  .section--soft::after, .section--sky::after, .section--cream::after, .empathy::after {
    width: 24%; height: 22%; opacity: 0.14;
  }
}
.section--ink {
  position: relative;
  background:
    radial-gradient(700px 380px at 95% 10%, rgba(60, 220, 255, 0.18), transparent 60%),
    linear-gradient(160deg, #0E1422 0%, #0F2A4F 60%, #0E1422 100%);
  color: #DDEBFB;
  overflow: hidden;
}
.section--ink::before {
  /* bghead-style chevron accent — bright cyan slash on the right */
  content: "";
  position: absolute;
  top: 0; right: -6%;
  width: 38%; height: 100%;
  background: linear-gradient(135deg, #3CDCFF 0%, #1A78D8 100%);
  clip-path: polygon(35% 0, 100% 0, 100% 100%, 0% 100%);
  opacity: 0.85;
  z-index: 0;
}
.section--ink::after {
  /* small left-side cyan triangle, mirroring the bghead composition */
  content: "";
  position: absolute;
  bottom: -1px; left: 0;
  width: 16%; height: 38%;
  background: linear-gradient(135deg, #3CDCFF 0%, #1A78D8 100%);
  clip-path: polygon(0 100%, 100% 100%, 0 0);
  opacity: 0.85;
  z-index: 0;
}
.section--ink > .container { position: relative; z-index: 1; }
.section--ink h1, .section--ink h2, .section--ink h3 { color: #fff; }
.section--ink a { color: #fff; }
@media (max-width: 720px) {
  .section--ink::before { width: 60%; right: -20%; opacity: 0.7; }
  .section--ink::after { width: 30%; height: 22%; opacity: 0.7; }
}

@media (max-width: 720px) {
  .section { padding-block: var(--s-7); }
}

.grid { display: grid; gap: var(--s-5); }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }
@media (max-width: 900px) { .grid-3, .grid-4 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; } }

.split {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: var(--s-8);
  align-items: center;
}
@media (max-width: 900px) { .split { grid-template-columns: 1fr; gap: var(--s-6); } }

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--s-2);
  padding: 14px 22px;
  border-radius: var(--r-sm);
  border: 1.5px solid transparent;
  font-weight: 700;
  font-size: 0.98rem;
  letter-spacing: 0.01em;
  text-decoration: none;
  transition: transform var(--transition), background var(--transition), color var(--transition), box-shadow var(--transition), border-color var(--transition);
  cursor: pointer;
  line-height: 1.2;
}
.btn:hover { transform: translateY(-1px); }
.btn--cta {
  background: linear-gradient(180deg, #EE9550 0%, #E58A40 100%);
  color: #fff;
  box-shadow: 0 8px 20px rgba(229, 138, 64, 0.28), inset 0 1px 0 rgba(255,255,255,0.25);
}
.btn--cta:hover { background: linear-gradient(180deg, #E58A40 0%, #D17A30 100%); color: #fff; }
.btn--calm {
  background: linear-gradient(180deg, #2E92EE 0%, #1A78D8 100%);
  color: #fff;
  box-shadow: 0 8px 20px rgba(15, 79, 148, 0.25), inset 0 1px 0 rgba(255,255,255,0.25);
}
.btn--calm:hover { background: linear-gradient(180deg, #1A78D8 0%, #0F4F94 100%); color: #fff; }
.btn--outline {
  background: transparent;
  color: var(--color-primary);
  border-color: var(--color-primary);
}
.btn--outline:hover { background: var(--color-primary); color: #fff; }
.btn--ghost {
  background: transparent;
  color: #fff;
  border-color: rgba(255,255,255,0.5);
}
.btn--ghost:hover { background: #fff; color: var(--color-primary); border-color: #fff; }
.btn--lg { padding: 16px 28px; font-size: 1.02rem; }
.btn--block { display: flex; width: 100%; }

/* --- Header / Nav --- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255,255,255,0.96);
  backdrop-filter: saturate(140%) blur(10px);
  border-bottom: 1px solid var(--color-line);
  box-shadow: 0 1px 0 rgba(15, 79, 148, 0.04);
}
.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--s-5);
  padding: 12px 0;
}
.brand {
  display: flex;
  align-items: center;
  gap: var(--s-3);
  text-decoration: none;
  color: var(--color-primary-ink);
}
.brand__logo {
  height: 46px;
  width: auto;
  border-radius: 6px;
  box-shadow: 0 2px 6px rgba(15, 79, 148, 0.10);
}
.brand__name {
  font-family: var(--font-sans);
  font-weight: 800;
  font-size: 1.08rem;
  line-height: 1.1;
  letter-spacing: -0.01em;
  color: var(--color-primary-ink);
}
.brand__tag {
  display: block;
  font-size: 0.7rem;
  color: var(--color-primary);
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-top: 3px;
}
@media (max-width: 600px) {
  .brand__tag { display: none; }
  .brand__logo { height: 40px; }
}
.nav { display: flex; align-items: center; gap: 4px; }
.nav a {
  position: relative;
  padding: 10px 14px;
  color: var(--color-ink);
  font-weight: 600;
  font-size: 0.94rem;
  border-radius: var(--r-sm);
  white-space: nowrap;
}
.nav a:hover { color: var(--color-primary); background: var(--color-bg-soft); }
.nav a.is-active { color: var(--color-primary); }
.nav a.is-active::after {
  content: "";
  position: absolute;
  left: 12px; right: 12px; bottom: 4px;
  height: 2px;
  background: var(--color-cta);
  border-radius: 2px;
}
.nav a.is-faalangst {
  color: var(--color-accent);
}
.nav a.is-faalangst.is-active { color: var(--color-accent); }
.nav a.is-faalangst.is-active::after { background: var(--color-accent); }

.header-cta {
  display: flex;
  align-items: center;
  gap: var(--s-3);
}
.phone-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
  color: var(--color-primary);
  padding: 8px 14px;
  border: 1.5px solid var(--color-line);
  border-radius: var(--r-pill);
  background: #fff;
  font-size: 0.95rem;
}
.phone-link:hover { border-color: var(--color-primary); color: var(--color-primary); }

.menu-toggle {
  display: none;
  width: 44px; height: 44px;
  background: none; border: 1.5px solid var(--color-line);
  border-radius: var(--r-sm);
  align-items: center; justify-content: center;
  color: var(--color-primary);
}
.menu-toggle svg { width: 22px; height: 22px; }

@media (max-width: 980px) {
  .nav, .header-cta .phone-link { display: none; }
  .menu-toggle { display: inline-flex; }
  .nav.is-open {
    display: flex;
    position: absolute;
    top: 100%; left: 0; right: 0;
    flex-direction: column;
    align-items: stretch;
    background: #fff;
    border-bottom: 1px solid var(--color-line);
    padding: var(--s-4);
    box-shadow: var(--shadow-md);
  }
  .nav.is-open a { padding: 14px 12px; border-radius: var(--r-sm); }
  .nav.is-open a + a { border-top: 1px solid var(--color-line); }
}

/* --- Hero --- */
.hero {
  position: relative;
  background:
    radial-gradient(800px 420px at 88% -10%, rgba(46, 146, 238, 0.16), transparent 60%),
    radial-gradient(700px 360px at -10% 110%, rgba(229, 138, 64, 0.10), transparent 60%),
    linear-gradient(180deg, #F4FAFE 0%, #E6F1FB 100%);
  overflow: hidden;
  padding: var(--s-10) 0 var(--s-9);
}
.hero::before {
  /* small cyan chevron accent in the bottom-left, echoing bghead */
  content: "";
  position: absolute;
  bottom: -1px; left: 0;
  width: 12%; height: 32%;
  background: linear-gradient(135deg, #3CDCFF 0%, #1A78D8 100%);
  clip-path: polygon(0 100%, 100% 100%, 0 0);
  opacity: 0.22;
  pointer-events: none;
  z-index: 0;
}
@media (max-width: 720px) {
  .hero::before { width: 24%; height: 18%; opacity: 0.18; }
}
.hero__inner { position: relative; z-index: 1; }
.hero__grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: var(--s-8);
  align-items: center;
}
@media (max-width: 980px) { .hero__grid { grid-template-columns: 1fr; gap: var(--s-6); } }

.hero h1 {
  font-size: clamp(2.1rem, 1.3rem + 2.8vw, 3.4rem);
  margin-bottom: var(--s-4);
}
.hero__lead {
  font-size: 1.15rem;
  color: var(--color-ink-2);
  max-width: 56ch;
}
.hero__ctas { display: flex; flex-wrap: wrap; gap: var(--s-3); margin-top: var(--s-5); }
.hero__trust { display: flex; flex-wrap: wrap; gap: var(--s-5) var(--s-6); margin-top: var(--s-7); }

/* Hero visual — bghead-inspired dark/cyan stage with the lesauto driving in */
.hero__visual {
  position: relative;
  aspect-ratio: 5/4;
  border-radius: 22px;
  background-color: #0E1422;
  background-image: url('/assets/img/bghead.png');
  background-size: cover;
  background-position: center;
  box-shadow:
    0 24px 60px rgba(10, 22, 44, 0.30),
    inset 0 1px 0 rgba(255,255,255,0.10);
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  justify-content: center;
}
.hero__visual::after {
  /* subtle vignette so the car reads cleanly */
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(120% 80% at 50% 60%, transparent 0%, rgba(0,0,0,0.22) 100%);
  pointer-events: none;
}
.hero__visual-car {
  position: relative;
  z-index: 2;
  width: 92%;
  margin-bottom: 8%;
  filter: drop-shadow(0 18px 22px rgba(0, 0, 0, 0.45));
  animation: car-roll-in 900ms cubic-bezier(.22,.85,.32,1) both;
}
@keyframes car-roll-in {
  0%   { transform: translateX(-12%) translateY(0);   opacity: 0; }
  60%  { opacity: 1; }
  100% { transform: translateX(0) translateY(0);      opacity: 1; }
}
@media (prefers-reduced-motion: reduce) {
  .hero__visual-car { animation: none; }
}
.hero__visual-card {
  position: absolute;
  background: #fff;
  border-radius: var(--r-md);
  padding: var(--s-3) var(--s-4);
  box-shadow:
    0 14px 30px rgba(10, 22, 44, 0.30),
    0 1px 0 rgba(255,255,255,0.6) inset;
  display: flex; align-items: center; gap: var(--s-3);
  font-size: 0.9rem;
  z-index: 3;
  animation: card-pop 700ms 700ms cubic-bezier(.22,.85,.32,1) both;
}
@keyframes card-pop {
  0%   { transform: translateY(8px) scale(0.96); opacity: 0; }
  100% { transform: translateY(0)    scale(1);    opacity: 1; }
}
@media (prefers-reduced-motion: reduce) {
  .hero__visual-card { animation: none; }
}
.hero__visual-card--rating { top: 7%; left: -4%; }
.hero__visual-card--years  { bottom: 14%; right: -4%; }
.hero__visual-tag {
  position: absolute;
  top: var(--s-5); left: var(--s-5);
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 12px;
  border-radius: var(--r-pill);
  background: rgba(255,255,255,0.10);
  backdrop-filter: blur(6px);
  border: 1px solid rgba(255,255,255,0.22);
  color: #fff;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.hero__visual-tag::before {
  content: "";
  width: 8px; height: 8px;
  border-radius: 50%;
  background: #3CDCFF;
  box-shadow: 0 0 0 4px rgba(60, 220, 255, 0.20);
}

/* Optional L-plate badge — used as decorative accent */
.l-plate {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: 10px;
  background: linear-gradient(160deg, #2E92EE 0%, #0F4F94 100%);
  color: #fff;
  font-family: var(--font-sans);
  font-weight: 900;
  font-size: 2rem;
  letter-spacing: -0.04em;
  box-shadow:
    0 6px 18px rgba(15, 79, 148, 0.30),
    inset 0 1px 0 rgba(255,255,255,0.30);
  flex-shrink: 0;
}
.l-plate--lg { width: 88px; height: 88px; font-size: 3.2rem; border-radius: 14px; }

/* --- Trust strip --- */
.trust-strip {
  display: flex;
  flex-wrap: wrap;
  gap: var(--s-5) var(--s-7);
  padding: var(--s-5) 0;
  border-top: 1px solid var(--color-line);
  border-bottom: 1px solid var(--color-line);
  align-items: center;
  justify-content: space-between;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: var(--s-3);
  color: var(--color-ink-2);
  font-size: 0.95rem;
}
.trust-item strong { color: var(--color-primary-ink); font-weight: 700; }

/* --- Rating badge --- */
.rating {
  display: inline-flex;
  align-items: center;
  gap: var(--s-3);
  background: #fff;
  border: 1px solid var(--color-line);
  border-radius: var(--r-pill);
  padding: 8px 16px 8px 12px;
  box-shadow: var(--shadow-sm);
}
.rating__stars {
  display: inline-flex;
  gap: 2px;
  color: var(--color-gold);
  font-size: 1.05rem;
  letter-spacing: 1px;
}
.rating__score { font-weight: 800; color: var(--color-primary-ink); font-size: 0.98rem; }
.rating__count { color: var(--color-ink-2); font-size: 0.88rem; }

/* --- Cards --- */
.card {
  background: #fff;
  border: 1px solid var(--color-line);
  border-radius: var(--r-md);
  padding: var(--s-6);
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}
.card:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); border-color: #D6DCE3; }
.card h3 { margin-bottom: var(--s-3); }
.card__icon {
  width: 44px; height: 44px;
  display: inline-flex; align-items: center; justify-content: center;
  background: rgba(74,144,164,0.10);
  color: var(--color-accent);
  border-radius: var(--r-sm);
  margin-bottom: var(--s-4);
}
.card--accent { border-left: 4px solid var(--color-accent); background: var(--color-soft); }
.card--cta-link {
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: inherit;
}
.card--cta-link::after {
  content: "→";
  font-size: 1.4rem;
  color: var(--color-cta);
  margin-top: auto;
  align-self: flex-start;
  transition: transform var(--transition);
}
.card--cta-link:hover { color: inherit; }
.card--cta-link:hover::after { transform: translateX(4px); }

/* Path cards — two audiences */
.paths { gap: var(--s-5); }
.path {
  position: relative;
  padding: var(--s-7);
  border-radius: var(--r-lg);
  border: 1px solid var(--color-line);
  background: #fff;
  display: flex; flex-direction: column;
  text-decoration: none;
  color: inherit;
  transition: transform var(--transition), box-shadow var(--transition);
  overflow: hidden;
}
.path::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg, rgba(27,58,92,0.04) 0%, transparent 50%);
  pointer-events: none;
}
.path:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); color: inherit; }
.path__eyebrow {
  font-size: 0.78rem; font-weight: 700; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--color-ink-2); margin-bottom: var(--s-2);
}
.path h3 { font-size: 1.55rem; margin-bottom: var(--s-3); font-weight: 900; }
.path p { color: var(--color-ink-2); margin-bottom: var(--s-5); }
.path__more {
  margin-top: auto;
  font-weight: 700;
  color: var(--color-cta);
  display: inline-flex; gap: 6px; align-items: center;
}
.path--rijles { background: linear-gradient(180deg, #FFFFFF 0%, #F0F7FD 100%); }
.path--rijles .path__eyebrow { color: var(--color-primary); }
.path--faalangst {
  background: linear-gradient(180deg, #FFFCF6 0%, var(--color-cream) 100%);
  border-color: rgba(229, 138, 64, 0.22);
}
.path--faalangst .path__eyebrow { color: var(--color-cta); }
.path--faalangst .path__more { color: var(--color-cta); }

/* --- Quote / testimonial --- */
.quote {
  background: var(--color-soft);
  border-left: 4px solid var(--color-accent);
  padding: var(--s-6) var(--s-7);
  border-radius: var(--r-md);
  font-size: 1.08rem;
  color: var(--color-primary-ink);
}
.quote__cite {
  display: block;
  margin-top: var(--s-3);
  font-size: 0.9rem;
  color: var(--color-ink-2);
  font-style: normal;
}

/* --- Faalangst section block --- */
.empathy {
  background: var(--color-cream);
  padding: var(--s-9) 0;
}
.empathy h2 { color: var(--color-primary-ink); }
.empathy .anxiety-types { gap: var(--s-5); }
.anxiety-card {
  background: #fff;
  border: 1px solid rgba(229, 138, 64, 0.18);
  border-top: 3px solid var(--color-cta);
  border-radius: var(--r-md);
  padding: var(--s-6);
  box-shadow: var(--shadow-sm);
}
.anxiety-card h3 { color: var(--color-primary-ink); font-weight: 800; font-size: 1.15rem; }

/* --- Steps / approach --- */
.steps { counter-reset: step; gap: var(--s-5); }
.step {
  position: relative;
  padding: var(--s-6);
  background: #fff;
  border: 1px solid var(--color-line);
  border-radius: var(--r-md);
}
.step::before {
  counter-increment: step;
  content: counter(step);
  position: absolute;
  top: -18px; left: var(--s-5);
  width: 36px; height: 36px;
  background: var(--color-primary);
  color: #fff;
  border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center;
  font-weight: 700;
  box-shadow: var(--shadow-sm);
}
.step h4 { margin-top: var(--s-3); }

/* --- Pricing --- */
.pricing-grid { gap: var(--s-5); align-items: stretch; }
.price-card {
  display: flex;
  flex-direction: column;
  background: #fff;
  border: 1px solid var(--color-line);
  border-radius: var(--r-lg);
  padding: var(--s-7);
  box-shadow: var(--shadow-sm);
  position: relative;
}
.price-card--featured {
  border-color: var(--color-cta);
  border-width: 2px;
  box-shadow: 0 12px 36px rgba(224,123,57,0.18);
}
.price-card__badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--color-cta);
  color: #fff;
  padding: 6px 14px;
  border-radius: var(--r-pill);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.price-card h3 { font-family: var(--font-sans); font-weight: 700; font-size: 1.25rem; }
.price-card__price {
  font-family: var(--font-sans);
  font-size: 2.4rem;
  font-weight: 900;
  color: var(--color-primary-ink);
  line-height: 1;
  margin: var(--s-3) 0;
  letter-spacing: -0.02em;
}
.price-card__per { font-size: 0.95rem; color: var(--color-ink-2); }
.price-card ul { list-style: none; padding: 0; margin: var(--s-4) 0 var(--s-6); }
.price-card li {
  padding: 8px 0 8px 26px;
  position: relative;
  border-bottom: 1px dashed var(--color-line);
  color: var(--color-ink);
}
.price-card li:last-child { border-bottom: 0; }
.price-card li::before {
  content: "✓";
  position: absolute;
  left: 0; top: 8px;
  color: var(--color-success);
  font-weight: 700;
}
.price-card .btn { margin-top: auto; }

.price-table {
  width: 100%;
  border-collapse: collapse;
  background: #fff;
  border: 1px solid var(--color-line);
  border-radius: var(--r-md);
  overflow: hidden;
}
.price-table th, .price-table td {
  padding: 14px 18px;
  text-align: left;
  border-bottom: 1px solid var(--color-line);
}
.price-table th { background: var(--color-bg-soft); font-weight: 700; color: var(--color-primary-ink); }
.price-table tr:last-child td { border-bottom: 0; }
.price-table td:last-child, .price-table th:last-child { text-align: right; }

.callout {
  background: rgba(46,125,50,0.08);
  border-left: 4px solid var(--color-success);
  padding: var(--s-5) var(--s-6);
  border-radius: var(--r-md);
  color: var(--color-primary-ink);
}
.callout--soft { background: var(--color-soft); border-left-color: var(--color-primary); }

/* --- Forms --- */
.form { display: grid; gap: var(--s-4); }
.field { display: grid; gap: 6px; }
.field label { font-weight: 700; color: var(--color-primary-ink); font-size: 0.95rem; }
.field input, .field textarea, .field select {
  font: inherit;
  width: 100%;
  padding: 12px 14px;
  background: #fff;
  border: 1.5px solid var(--color-line);
  border-radius: var(--r-sm);
  color: var(--color-ink);
  transition: border-color var(--transition), box-shadow var(--transition);
}
.field input:hover, .field textarea:hover, .field select:hover { border-color: #C7CFD8; }
.field input:focus, .field textarea:focus, .field select:focus {
  outline: 0;
  border-color: var(--color-primary-2);
  box-shadow: 0 0 0 3px rgba(46,109,164,0.18);
}
.field--error input, .field--error textarea, .field--error select { border-color: var(--color-error); }
.field__hint { font-size: 0.85rem; color: var(--color-ink-2); }
.field__error { font-size: 0.85rem; color: var(--color-error); margin-top: 2px; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: var(--s-4); }
@media (max-width: 600px) { .field-row { grid-template-columns: 1fr; } }

.form-card {
  background: #fff;
  border-radius: var(--r-lg);
  padding: var(--s-7);
  border: 1px solid var(--color-line);
  box-shadow: var(--shadow-md);
}

/* --- FAQ --- */
.faq { display: grid; gap: var(--s-3); }
.faq details {
  background: #fff;
  border: 1px solid var(--color-line);
  border-radius: var(--r-md);
  padding: var(--s-4) var(--s-5);
  transition: box-shadow var(--transition), border-color var(--transition);
}
.faq details[open] { border-color: var(--color-accent); box-shadow: var(--shadow-sm); }
.faq summary {
  list-style: none;
  cursor: pointer;
  font-weight: 700;
  color: var(--color-primary-ink);
  display: flex; justify-content: space-between; align-items: center;
  gap: var(--s-3);
  padding: 6px 0;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "+";
  font-size: 1.4rem;
  color: var(--color-accent);
  transition: transform var(--transition);
  line-height: 1;
}
.faq details[open] summary::after { content: "−"; }
.faq__body { padding: var(--s-3) 0 var(--s-2); color: var(--color-ink-2); }

/* --- Footer --- */
.site-footer {
  position: relative;
  background:
    radial-gradient(900px 500px at 95% -10%, rgba(60, 220, 255, 0.14), transparent 60%),
    linear-gradient(180deg, #0E1422 0%, #0F2A4F 100%);
  color: #C7DCF1;
  padding: var(--s-9) 0 var(--s-5);
  margin-top: var(--s-9);
  overflow: hidden;
}
.site-footer::before {
  content: "";
  position: absolute;
  top: 0; right: -4%;
  width: 22%; height: 60%;
  background: linear-gradient(135deg, #3CDCFF 0%, #1A78D8 100%);
  clip-path: polygon(35% 0, 100% 0, 100% 100%, 0% 100%);
  opacity: 0.55;
  pointer-events: none;
}
.site-footer > .container { position: relative; z-index: 1; }
.site-footer h4 {
  color: #fff;
  font-family: var(--font-sans);
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: var(--s-4);
}
.site-footer a { color: #C7DCF1; }
.site-footer a:hover { color: #fff; }
.site-footer__grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: var(--s-7);
}
@media (max-width: 900px) { .site-footer__grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 600px) { .site-footer__grid { grid-template-columns: 1fr; } }
.site-footer ul { list-style: none; padding: 0; margin: 0; }
.site-footer li { padding: 4px 0; }
.site-footer__bottom {
  margin-top: var(--s-7);
  padding-top: var(--s-5);
  border-top: 1px solid rgba(255,255,255,0.12);
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: var(--s-3);
  font-size: 0.85rem;
  color: #8FA8C0;
}
.footer-brand {
  display: flex; gap: var(--s-3); align-items: center; margin-bottom: var(--s-4);
  color: #fff;
}
.footer-brand img { height: 38px; border-radius: 4px; }
.footer-brand strong { font-family: var(--font-sans); font-weight: 900; font-size: 1.05rem; letter-spacing: -0.01em; }

/* --- Floating phone CTA (mobile) --- */
.float-call {
  position: fixed;
  right: 16px; bottom: 16px;
  z-index: 60;
  display: none;
  background: var(--color-cta);
  color: #fff;
  padding: 14px 18px;
  border-radius: var(--r-pill);
  box-shadow: var(--shadow-lg);
  font-weight: 700;
}
.float-call:hover { background: #C96A2E; color: #fff; }
@media (max-width: 720px) {
  .float-call { display: inline-flex; align-items: center; gap: 8px; }
}

/* --- Skip link for a11y --- */
.skip-link {
  position: absolute;
  left: -9999px;
  background: var(--color-primary);
  color: #fff;
  padding: 10px 14px;
  border-radius: var(--r-sm);
  z-index: 100;
}
.skip-link:focus { left: 12px; top: 12px; }

/* --- Utilities --- */
.text-center { text-align: center; }
.mt-0 { margin-top: 0; }
.mt-1 { margin-top: var(--s-3); }
.mt-2 { margin-top: var(--s-5); }
.mt-3 { margin-top: var(--s-7); }
.mb-0 { margin-bottom: 0; }
.mb-1 { margin-bottom: var(--s-3); }
.mb-2 { margin-bottom: var(--s-5); }
.muted { color: var(--color-ink-2); }
.hidden { display: none; }
.section-head { max-width: 70ch; margin: 0 auto var(--s-7); text-align: center; }
.section-head--left { text-align: left; margin-inline: 0; }
.tag {
  display: inline-block;
  background: rgba(27,58,92,0.08);
  color: var(--color-primary);
  border-radius: var(--r-pill);
  padding: 4px 10px;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.04em;
}
.tag--accent { background: rgba(74,144,164,0.12); color: var(--color-accent); }
.tag--cta { background: rgba(224,123,57,0.12); color: var(--color-cta); }

/* List with checks */
.checklist { list-style: none; padding: 0; margin: 0 0 var(--s-5); }
.checklist li {
  position: relative;
  padding: 6px 0 6px 28px;
}
.checklist li::before {
  content: "✓";
  position: absolute;
  left: 0; top: 6px;
  width: 20px; height: 20px;
  display: inline-flex; align-items: center; justify-content: center;
  color: var(--color-success);
  font-weight: 700;
}
.checklist--accent li::before { color: var(--color-accent); }

/* Page header for sub-pages — bghead-style dark hero (default) */
.page-head {
  position: relative;
  padding: var(--s-9) 0 var(--s-8);
  border-bottom: 0;
  color: #DDEBFB;
  background:
    radial-gradient(900px 440px at 12% 10%, rgba(60, 220, 255, 0.18), transparent 60%),
    linear-gradient(160deg, #0E1422 0%, #122E55 60%, #0E1422 100%);
  overflow: hidden;
}
.page-head::before {
  content: "";
  position: absolute;
  top: 0; right: -6%;
  width: 38%; height: 100%;
  background: linear-gradient(135deg, #3CDCFF 0%, #1A78D8 100%);
  clip-path: polygon(35% 0, 100% 0, 100% 100%, 0% 100%);
  opacity: 0.85;
  z-index: 0;
}
.page-head::after {
  content: "";
  position: absolute;
  bottom: -1px; left: 0;
  width: 14%; height: 38%;
  background: linear-gradient(135deg, #3CDCFF 0%, #1A78D8 100%);
  clip-path: polygon(0 100%, 100% 100%, 0 0);
  opacity: 0.85;
  z-index: 0;
}
.page-head > .container { position: relative; z-index: 1; }
.page-head .eyebrow { color: #BFE0F5; }
.page-head h1 { color: #fff; margin-bottom: var(--s-4); }
.page-head__lead { font-size: 1.18rem; color: #C7DCF1; }
.page-head a { color: #fff; }

@media (max-width: 720px) {
  .page-head::before { width: 60%; right: -20%; opacity: 0.7; }
  .page-head::after  { width: 28%; height: 22%; opacity: 0.7; }
}

/* Cream variant — calm/empathetic pages (faalangst, cadeaubon) */
.page-head--cream {
  color: var(--color-ink);
  background:
    radial-gradient(700px 360px at 88% -10%, rgba(229, 138, 64, 0.10), transparent 60%),
    linear-gradient(180deg, #FFFCF6 0%, var(--color-cream) 100%);
  border-bottom: 1px solid var(--color-line);
}
.page-head--cream::before, .page-head--cream::after { display: none; }
.page-head--cream .eyebrow { color: var(--color-cta); }
.page-head--cream h1 { color: var(--color-primary-ink); }
.page-head--cream .page-head__lead { color: var(--color-ink-2); }
.page-head--cream a { color: var(--color-primary); }

/* Split page-head — text left, hero visual right (lesauto). Inherits dark base. */
.page-head--split .container { max-width: var(--max); }
.page-head--split .page-head__grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: var(--s-7);
  align-items: center;
}
.page-head--split::before { display: none; }
.page-head--split::after  { display: none; }
@media (max-width: 900px) {
  .page-head--split .page-head__grid { grid-template-columns: 1fr; gap: var(--s-6); }
}
.page-head .container { max-width: 880px; }
.page-head h1 { margin-bottom: var(--s-4); }
.page-head__lead { font-size: 1.18rem; color: var(--color-ink-2); }

/* Print */
@media print {
  .site-header, .site-footer, .float-call { display: none; }
}
