:root{
  --bg: #f6f7fb;
  --surface: #ffffff;
  --text: #0f172a;
  --muted: #475569;
  --line: rgba(15, 23, 42, .10);
  --shadow: 0 10px 30px rgba(2, 6, 23, .08);
  --shadow-sm: 0 6px 16px rgba(2, 6, 23, .06);
  --radius: 18px;
  --radius-sm: 14px;
  --blue: #1d4ed8; /* koningsblauw */
  --blue-2: rgba(29, 78, 216, .12);
  --focus: rgba(29, 78, 216, .35);
  --container: 1120px;
}

*{box-sizing:border-box}
html,body{height:100%}

body{
  margin:0;
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial;
  /* originele “textuur” terug: zachte radial gradients */
  background:
    radial-gradient(1200px 600px at 50% -10%, rgba(29,78,216,.06), transparent 60%),
    radial-gradient(900px 500px at 10% 10%, rgba(29,78,216,.05), transparent 60%),
    var(--bg);
  color:var(--text);
  line-height:1.55;
  overflow-x:hidden; /* voorkomt horizontale canvas/glow artifacts */
}

/* Ensure hidden attribute always wins */
[hidden]{display:none !important;}

a{color:inherit}
img{max-width:100%;display:block}

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

.skip-link{
  position:absolute;
  left:-999px;
  top:10px;
  background:rgba(255,255,255,.96);
  padding:10px 12px;
  border-radius:10px;
  border:1px solid var(--line);
  box-shadow:var(--shadow-sm);
}
.skip-link:focus{left:12px;z-index:9999}

/* ---------------- Header ---------------- */
.site-header{
  position:sticky;
  top:0;
  z-index:50;
  backdrop-filter: blur(10px);
  background: rgba(246,247,251,.88);
  border-bottom:1px solid rgba(15,23,42,.06);
}

.header-inner{
  display:flex;
  align-items:center;
  gap:16px;
  padding:14px 0;
}

/* Brand link: blijft altijd binnen header, zonder rare overflow */
.brand{
  display:flex;
  align-items:center;
  gap:12px;
  text-decoration:none;
  min-width:0;     /* belangrijk: voorkomt rare layout-reserve */
  flex:0 0 auto;   /* brand groeit niet onbeperkt */
}

/* --- Brand mark (basis: werkt altijd, ook als fallback) --- */
.brand-mark{
  flex:0 0 auto;
  align-self:center;

  width:40px;
  height:40px;
  border-radius:14px;
  background: linear-gradient(180deg, rgba(29,78,216,.22), rgba(29,78,216,.12));
  border:1px solid rgba(29,78,216,.25);
  display:grid;
  place-items:center;
  box-shadow: 0 10px 18px rgba(29,78,216,.10);
  position:relative;
  overflow:hidden;
}

.brand-mark::after{
  content:"";
  position:absolute;
  inset:-40% -80%;
  background:linear-gradient(90deg, transparent, rgba(255,255,255,.35), transparent);
  transform:translateX(-30%);
  animation:brandSheen 7s ease-in-out infinite;
  opacity:.65;
}

@keyframes brandSheen{
  0%,45%{transform:translateX(-30%)}
  75%,100%{transform:translateX(30%)}
}

.brand-mark .rw{
  font-weight:800;
  letter-spacing:.02em;
  color:var(--blue);
}

/* --- Logo mode: GEEN kader/bubble + logo liggend (zelfde headerhoogte, sloopt header niet) --- */
/* Dit werkt alleen als je element echt: class="brand-mark has-logo" heeft */
.brand-mark.has-logo{
  width:auto;                 /* breedte volgt logo (dus geen “witte ruimte”) */
  height:40px;                /* header-ritme blijft gelijk */
  padding:0;

  background: transparent !important;
  border: 0 !important;
  box-shadow: none !important;

  border-radius:0 !important;       /* voorkomt clipping aan hoeken */
  overflow: visible !important;     /* clip nooit het logo */
  display:inline-flex;
  align-items:center;
}

.brand-mark.has-logo::after{
  display:none !important;          /* sheen uit: anders lijkt het alsnog op een kader */
}

/* Het echte logo (img) */
/* BELANGRIJK:
   - hoogte = 40px zodat header niet hoger wordt
   - width:auto zodat de liggende verhouding intact blijft */
.brand-mark .brand-logo{
  display:block;
  height:40px;          /* SAFE: breekt de header niet */
  width:auto;           /* behoudt liggende verhouding */
  max-width:240px;      /* cap zodat navigatie niet wegduwt */
  object-fit:contain;
}

/* Fallback RW verbergen zodra logo actief is */
.brand-mark.has-logo .rw{
  display:none !important;
}

/* Brand text */
.brand-text{
  display:flex;
  flex-direction:column;
  gap:2px;
}
.brand-name{font-weight:800}
.brand-tagline{font-size:13px;color:var(--muted)}

/* Navigation */
.site-nav{
  margin-left:auto;
  display:flex;
  gap:10px;
  align-items:center;
}

.site-nav a{
  text-decoration:none;
  font-weight:600;
  font-size:14px;
  padding:8px 10px;
  border-radius:12px;
  color:rgba(15,23,42,.86);
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease, border-color .18s ease;
  border:1px solid transparent;
}

.site-nav a:hover{
  background: rgba(29,78,216,.06);
  border-color: rgba(29,78,216,.14);
  box-shadow: 0 10px 18px rgba(29,78,216,.08);
  transform: translateY(-1px);
}

.site-nav a[aria-current="page"]{
  background: rgba(29,78,216,.08);
  border-color: rgba(29,78,216,.18);
}

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

.icon-btn{
  width:38px;
  height:38px;
  border-radius:14px;
  border:1px solid rgba(15,23,42,.10);
  background:rgba(255,255,255,.92);
  display:grid;
  place-items:center;
  cursor:pointer;
  box-shadow: var(--shadow-sm);
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}
.icon-btn:hover{
  transform:translateY(-1px);
  border-color:rgba(29,78,216,.22);
  box-shadow:0 16px 30px rgba(29,78,216,.10);
}
.icon{font-size:16px}

.menu-btn{display:none;gap:0;border:0;background:transparent;cursor:pointer}
.menu-lines{
  width:22px;
  height:2px;
  background:rgba(15,23,42,.65);
  border-radius:999px;
  position:relative;
  display:inline-block;
}
.menu-lines::before,
.menu-lines::after{
  content:"";
  position:absolute;
  left:0;
  width:22px;
  height:2px;
  background:rgba(15,23,42,.65);
  border-radius:999px;
}
.menu-lines::before{top:-7px}
.menu-lines::after{top:7px}

/* ---------------- Buttons ---------------- */
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:11px 14px;
  border-radius:14px;
  border:1px solid transparent;
  font-weight:700;
  font-size:14px;
  text-decoration:none;
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease, background .18s ease;
  user-select:none;
}

.btn.primary{
  background:var(--blue);
  color:#fff;
  box-shadow: 0 18px 30px rgba(29,78,216,.18);
  position:relative;
  overflow:hidden;
}
.btn.primary:hover{
  transform:translateY(-1px);
  box-shadow: 0 26px 46px rgba(29,78,216,.22);
  border-color: rgba(255,255,255,.22);
}
.btn.primary::after{
  content:"";
  position:absolute;
  inset:-40% -60%;
  background:linear-gradient(90deg, transparent, rgba(255,255,255,.22), transparent);
  transform:translateX(-30%);
  animation:btnSheen 6.5s ease-in-out infinite;
  pointer-events:none;
  opacity:.65;
}

@keyframes btnSheen{
  0%,45%{transform:translateX(-30%)}
  75%,100%{transform:translateX(30%)}
}

.btn.ghost{
  background:rgba(255,255,255,.88);
  border-color: rgba(15,23,42,.12);
  box-shadow: var(--shadow-sm);
}
.btn.ghost:hover{
  transform:translateY(-1px);
  border-color:rgba(29,78,216,.20);
  box-shadow:0 18px 30px rgba(29,78,216,.10);
}
.btn.full{width:100%}

.site-main{padding-bottom:34px}

/* ---------------- Hero ---------------- */
.hero{padding:44px 0 18px}
.hero-grid{
  display:grid;
  grid-template-columns: 1.2fr .8fr;
  gap:22px;
  align-items:center;
}
.hero-copy{padding:22px 0}
.eyebrow{
  display:inline-flex;
  align-items:center;
  gap:8px;
  font-weight:800;
  color:rgba(29,78,216,.95);
  letter-spacing:.02em;
}
.hero-title{font-size:44px;line-height:1.08;margin:12px 0 12px}
.hero-text{font-size:16px;color:rgba(15,23,42,.78);max-width:54ch}
.hero-actions{display:flex;gap:12px;margin-top:18px;flex-wrap:wrap}
.hero-visual{display:flex;justify-content:flex-end}
.hero-img{
  width:min(420px, 100%);
  filter: drop-shadow(0 26px 46px rgba(2,6,23,.12));
  border-radius: var(--radius);
}

/* ---------------- Page hero ---------------- */
.page-hero{padding:28px 0 10px}
.page-hero h1{margin:0 0 8px;font-size:38px;line-height:1.12}
.lead{margin:0;color:rgba(15,23,42,.74);max-width:70ch}

.section{padding:18px 0 18px}

/* ---------------- Layout helpers ---------------- */
.grid.two{display:grid;grid-template-columns:1fr 1fr;gap:16px}
.stack{display:flex;flex-direction:column;gap:16px}

/* ---------------- Cards ---------------- */
.card{
  background: rgba(255,255,255,.92);
  border:1px solid rgba(15,23,42,.10);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  padding:18px;
  position:relative;
}
.card.large{padding:20px}

.card::before{
  content:"";
  position:absolute;
  inset:0;
  border-radius:inherit;
  pointer-events:none;
  box-shadow:0 0 0 0 rgba(29,78,216,.00);
  animation:cardGlow 8s ease-in-out infinite;
}

@keyframes cardGlow{
  0%,100%{box-shadow:0 0 0 0 rgba(29,78,216,.00)}
  50%{box-shadow:0 0 0 1px rgba(29,78,216,.10)}
}

.card h2,.card h3{margin:0 0 10px}
.muted{color:rgba(15,23,42,.66)}
.small{font-size:13px}
.small-link{color:var(--blue);font-weight:700;text-decoration:none}
.small-link:hover{text-decoration:underline}

.bullets{margin:0;padding-left:18px;color:rgba(15,23,42,.76)}
.bullets li{margin:8px 0}

/* ---------------- Addons ---------------- */
.addon-list{display:flex;flex-direction:column;gap:10px}
.addon-item{
  padding:12px 12px;
  border-radius:14px;
  border:1px dashed rgba(29,78,216,.20);
  background: linear-gradient(180deg, rgba(255,255,255,.88), rgba(255,255,255,.82));
}
.addon-item .row{display:flex;justify-content:space-between;gap:12px;align-items:baseline}
.addon-item .name{font-weight:800}
.addon-item .price{font-weight:900;color:var(--blue)}
.addon-item .text{margin-top:6px;color:rgba(15,23,42,.72)}

/* ---------------- FAQ ---------------- */
.faq{display:flex;flex-direction:column;gap:10px}
.faq-item{border-top:1px solid rgba(15,23,42,.08);padding-top:10px}
.faq-item:first-child{border-top:0;padding-top:0}
.faq-item .q{font-weight:800;margin:0 0 4px}
.faq-item .a{margin:0;color:rgba(15,23,42,.72)}

/* ---------------- Note bars ---------------- */
.note-bar{
  padding:14px 14px;
  border-radius:14px;
  border:1px dashed rgba(29,78,216,.25);
  background: rgba(29,78,216,.06);
  color:rgba(15,23,42,.78);
}
.note-bar.small{padding:12px}

/* ---------------- Steps ---------------- */
.steps{display:flex;flex-direction:column;gap:12px}
.step{
  padding:14px;
  border-radius:14px;
  background:rgba(255,255,255,.88);
  border:1px solid rgba(15,23,42,.08);
}
.step .t{font-weight:900;margin:0 0 6px}
.step .p{margin:0;color:rgba(15,23,42,.72)}
.steps-list{margin:0;padding-left:18px;color:rgba(15,23,42,.76)}
.steps-list li{margin:8px 0}

/* ---------------- Projects ---------------- */
.project-grid{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap:16px;
  margin-top:10px;
}
.project-card{padding:0;overflow:hidden}
.project-media{background:rgba(29,78,216,.05);border-bottom:1px solid rgba(15,23,42,.08)}
.project-media img{width:100%;height:180px;object-fit:cover}
.project-body{padding:16px}


.t-meta{margin-top:4px; font-size:13px; opacity:.8}
.badge{
  display:inline-flex;
  align-items:center;
  gap:8px;
  padding:6px 10px;
  border-radius:999px;
  background: rgba(29,78,216,.10);
  border:1px solid rgba(29,78,216,.18);
  font-weight:800;
  color:rgba(29,78,216,.95);
  font-size:12px;
}

.project-title{margin:10px 0 6px;font-size:18px}
.project-text{margin:0 0 10px;color:rgba(15,23,42,.72)}

/* ---------------- CTA band ---------------- */
.cta-band{
  margin-top:18px;
  padding:16px;
  border-radius: var(--radius);
  border:1px solid rgba(29,78,216,.18);
  background: linear-gradient(180deg, rgba(29,78,216,.07), rgba(255,255,255,.82));
  box-shadow: var(--shadow-sm);
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:16px;
}
.cta-inner h3{margin:0}
.cta-inner p{margin:2px 0 0}

/* ---------------- Forms ---------------- */
.form{display:flex;flex-direction:column;gap:12px;margin-top:10px}
.field{display:flex;flex-direction:column;gap:6px}

input, textarea{
  border-radius:14px;
  border:1px solid rgba(15,23,42,.14);
  padding:12px 12px;
  font: inherit;
  background: rgba(255,255,255,.96);
  box-shadow: 0 10px 18px rgba(2,6,23,.05);
  outline: none;
  transition: border-color .18s ease, box-shadow .18s ease, transform .18s ease;
}

input:focus, textarea:focus{
  border-color: rgba(29,78,216,.45);
  box-shadow: 0 0 0 4px rgba(29,78,216,.16);
  transform: translateY(-1px);
}

/* ---------------- Footer ---------------- */
.site-footer{
  border-top:1px solid rgba(15,23,42,.08);
  background: rgba(246,247,251,.88);
}
.footer-inner{display:flex;justify-content:space-between;gap:16px;padding:18px 0}
.footer-brand{font-weight:900}
.footer-note{color:rgba(15,23,42,.70)}
.footer-links{display:flex;gap:10px;justify-content:flex-end;flex-wrap:wrap}
.footer-links a{color:rgba(15,23,42,.72);text-decoration:none;font-weight:700;font-size:13px}
.footer-links a:hover{color:rgba(29,78,216,.95)}
.footer-copy{margin-top:6px;color:rgba(15,23,42,.60);font-size:13px;text-align:right}

/* ---------------- Search overlay ---------------- */
.search-overlay{
  z-index: 10000;
  backdrop-filter: blur(6px);
  position:fixed;
  inset:0;
  background: rgba(2,6,23,.55);
  display:flex;
  align-items:center;
  justify-content:center;
  padding:24px;
}
.search-panel{
  position: relative;
  z-index: 10001;
  width:min(720px, 100%);
  background: rgba(255,255,255,.97);
  border:1px solid rgba(15,23,42,.14);
  border-radius: var(--radius);
  box-shadow: 0 30px 80px rgba(2,6,23,.22);
  padding:16px;
}
.search-top{display:flex;justify-content:space-between;align-items:center;margin-bottom:10px}
.search-title{font-weight:900}
.search-field input{width:100%}
.search-results{margin-top:12px;display:flex;flex-direction:column;gap:10px}
.search-hit{
  border:1px solid rgba(15,23,42,.10);
  border-radius: 14px;
  padding:12px;
  background: rgba(255,255,255,.92);
  box-shadow: var(--shadow-sm);
  text-decoration:none;
}
.search-hit:hover{border-color:rgba(29,78,216,.22);box-shadow:0 18px 30px rgba(29,78,216,.10)}
.search-hit .t{font-weight:900;margin:0 0 2px}
.search-hit .s{margin:0;color:rgba(15,23,42,.70);font-size:13px}
.search-hint{margin-top:10px;color:rgba(15,23,42,.60);font-size:13px}
kbd{
  background:rgba(15,23,42,.06);
  border:1px solid rgba(15,23,42,.10);
  border-bottom-color:rgba(15,23,42,.18);
  padding:2px 6px;
  border-radius:8px;
  font-weight:800;
}

/* ---------------- Reveal animations ---------------- */
.reveal{
  opacity:0;
  transform: translateY(10px);
  transition: opacity .65s ease, transform .65s ease;
}
.reveal.in{opacity:1;transform: translateY(0)}

/* --- Layout rhythm: consistent spacing between blocks --- */
.section > .container{display:flex;flex-direction:column;gap:16px}
[data-mount="home.sections"]{display:flex;flex-direction:column;gap:16px}
[data-mount="contact.cards"]{display:flex;flex-direction:column;gap:12px}
/* -------------------------------------------------------- */

/* ---------------- Responsive ---------------- */
@media (max-width: 980px){
  .hero-grid{grid-template-columns: 1fr; }
  .hero-visual{justify-content:flex-start}
  .project-grid{grid-template-columns: 1fr 1fr}
  .site-nav{display:none}
  .menu-btn{display:inline-flex}
  .brand{min-width:0}
}

@media (max-width: 640px){
  .hero-title{font-size:36px}
  .grid.two{grid-template-columns:1fr}
  .project-grid{grid-template-columns: 1fr}
  .cta-band{flex-direction:column;align-items:flex-start}
  .footer-inner{flex-direction:column}
  .footer-copy{text-align:left}
}

/* ---------------- Mobile menu panel ---------------- */
.mobile-nav{
  position:fixed;
  top:72px;
  left:0;
  right:0;
  background: rgba(255,255,255,.97);
  border-bottom:1px solid rgba(15,23,42,.10);
  backdrop-filter: blur(10px);
  box-shadow: 0 20px 50px rgba(2,6,23,.12);
  padding:12px 16px;
  display:none;
}
.mobile-nav.open{display:block}
.mobile-nav a{
  display:block;
  padding:10px 12px;
  border-radius:14px;
  text-decoration:none;
  font-weight:800;
  color:rgba(15,23,42,.86);
  border:1px solid transparent;
}
.mobile-nav a:hover{
  background: rgba(29,78,216,.06);
  border-color: rgba(29,78,216,.16);
}

/* =========================
   Prijsindicator (Diensten)
   ========================= */
.price-indicator{
  display:flex;
  flex-direction:column;
  gap:16px;
}

.price-row{
  border:1px solid rgba(15,23,42,.10);
  border-radius:14px;
  padding:16px;
  background: rgba(255,255,255,.96);
}

.price-row-top{
  display:grid;
  grid-template-columns: 1fr auto; /* links: alles, rechts: prijs */
  align-items:center;
  gap:12px;
  font-weight:800;
}

.price-amount{
  justify-self:end;       /* altijd helemaal rechts */
  text-align:right;
  white-space:nowrap;     /* €200 blijft 1 geheel */
}

.price-name{font-size:15px}
.price-amount{font-size:16px;color:var(--blue)}

.price-desc{
  margin-top:6px;
  font-size:13px;
  color:var(--muted);
}

.price-options{
  display:flex;
  flex-direction:column;
  gap:12px;
}

.price-option{
  display:flex;
  gap:12px;
  padding:12px;
  border-radius:12px;
  border:1px solid rgba(15,23,42,.10);
  cursor:pointer;
  transition: background .2s ease, border-color .2s ease;
  background: rgba(255,255,255,.90);
}

.price-option:hover{
  background: rgba(29,78,216,.05);
  border-color: var(--blue);
}

.price-check{margin-top:4px}

.price-option-body{
  display:flex;
  flex-direction:column;
  gap:4px;

  /* FIX: body pakt beschikbare breedte zodat title-row 100% kan zijn */
  flex:1;
  min-width:0;
}

.price-option-title{
  display:flex;
  align-items:baseline;
  gap:12px;
  font-weight:700;

  /* FIX: laat deze regel altijd de volle breedte pakken */
  width:100%;
}

/* FIX: duw prijs altijd helemaal naar rechts (ook als markup varieert) */
.price-option-title .price-option-price,
.price-option-title > :last-child{
  margin-left:auto;
  text-align:right;
  white-space:nowrap;
}

.price-option-price{color:var(--blue)}

.price-option-text{
  font-size:13px;
  color:var(--muted);
}

.price-total{margin-top:12px}

/* =========================================================
   Network background canvas (always-on)
   ========================================================= */
#network-bg{
  position: fixed;
  inset: 0;
  width: 100vw;
  height: 100vh;
  z-index: -1;            /* achter alles */
  pointer-events: none;   /* nooit klikken blokkeren */
}
/* =========================================================
   Mobile-only header cleanup (alleen telefoon)
   - Verbergt:
     1) "Twan Rieksen Webdesign" (brand-naam in header)
     2) "Kant-en-klare websites..." (tagline in header)
     3) Header CTA knop "Offerte aanvragen"
   - Laat iPad + desktop ongemoeid
   ========================================================= */
@media (max-width: 520px){
  .brand-text .brand-tagline{
    display:none !important;
  }

  /* 2) CTA knop "Offerte aanvragen" in de header verbergen
        (werkt als jouw knop de class .btn heeft, wat in jouw CSS zo is) */
  .site-header .header-actions .btn{
    display: none !important;
  }
}
/* =========================================================
   Mobile header alignment fix (alleen telefoon)
   - Logo iets naar rechts
   - Search + menu volledig rechts uitlijnen
   ========================================================= */
@media (max-width: 520px){

  /* Header layout: logo links, acties rechts */
  .header-inner{
    display:flex;              /* safety */
    align-items:center;
  }

  /* 1) Logo iets naar rechts */
  .brand{
    margin-left: 6px;          /* pas aan: 4–10px is meestal genoeg */
  }

  /* 2) Zet de knoppen (search + hamburger) helemaal naar rechts */
  .header-actions{
    margin-left: auto !important;
    display:flex;
    align-items:center;
    gap: 10px;                 /* afstand tussen search en hamburger */
  }

  /* 3) Zorg dat de hamburger zichtbaar is en rechts staat */
  .menu-btn{
    display:inline-flex !important;
    margin-left: 0 !important;
  }

  /* Als je per ongeluk ergens .site-nav of andere dingen zichtbaar had: */
  .site-nav{ display:none !important; }
}
/* =========================
   A11Y / Focus polish
   ========================= */

/* Alleen focus-ring bij toetsenbord (niet bij muisklik) */
:focus { outline: none; }

:focus-visible{
  outline: 3px solid var(--focus);
  outline-offset: 3px;
  border-radius: 14px; /* past bij jouw rounded stijl */
}

/* Zorg dat links/knoppen een nette focus-ring krijgen */
a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible{
  box-shadow: 0 0 0 4px rgba(29,78,216,.16);
}
/* =========================
   (Optie 10) Unified hover-lift
   ========================= */

:root{
  --lift: translateY(-1px);
  --lift-shadow: 0 18px 30px rgba(29,78,216,.10);
}

.btn:hover,
.icon-btn:hover,
.site-nav a:hover,
.card:hover,
.search-hit:hover{
  transform: var(--lift);
}

.btn.ghost:hover,
.icon-btn:hover,
.site-nav a:hover,
.search-hit:hover{
  box-shadow: var(--lift-shadow);
}
/* =========================
   (Optie 10) Spacing rhythm (override)
   ========================= */

:root{
  --space-1: 10px;
  --space-2: 16px;
  --space-3: 22px;
}

.section{
  padding: var(--space-3) 0;
}

.section > .container,
[data-mount="home.sections"],
[data-mount="contact.cards"]{
  display:flex;
  flex-direction:column;
  gap: var(--space-2);
}

@media (max-width: 640px){
  .section{ padding: var(--space-2) 0; }
  .section > .container,
  [data-mount="home.sections"],
  [data-mount="contact.cards"]{
    gap: var(--space-1);
  }
}
/* =========================
   (Optie 10) Typography polish
   ========================= */

h1,h2,h3{
  letter-spacing: -0.02em;
}

h1{ margin: 0 0 10px; }
h2{ margin: 0 0 10px; }
h3{ margin: 0 0 8px; }

p{ margin: 0; }
p + p{ margin-top: 10px; }

/* =========================
   (Optie 10) Reduce motion
   ========================= */
@media (prefers-reduced-motion: reduce){
  *{
    animation: none !important;
    transition: none !important;
    scroll-behavior: auto !important;
  }
}
/* Diensten: maak de add-ons lijst scrollbaar zodat kolommen gelijker ogen */
.addons-card .addon-list{
  max-height: 420px;
  overflow: auto;
  padding-right: 6px;
}

/* Nettere scrollbar (werkt in moderne browsers) */
.addons-card .addon-list::-webkit-scrollbar{
  width: 10px;
}
.addons-card .addon-list::-webkit-scrollbar-thumb{
  border-radius: 999px;
  border: 3px solid transparent;
  background-clip: content-box;
  background-color: rgba(0,0,0,0.18);
}

/* Add-ons scroll hint: klein, strak, maar duidelijk */
.addons-card .scroll-hint{
  margin: 6px 0 10px;
  font-size: 13px;
  opacity: 0.9;
}

/* Visuele cue dat de lijst scrollbaar is: zachte fade onderaan */
.addons-card{
  position: relative;
}
.addons-card .addon-list{
  position: relative;
}
.addons-card .addon-list::after{
  content: "";
  position: sticky;
  bottom: 0;
  left: 0;
  right: 0;
  display: block;
  height: 26px;
  pointer-events: none;
  /* Zachte overlay die naar onder toe "dichtloopt" */
  background: linear-gradient(to bottom, rgba(255,255,255,0), rgba(255,255,255,0.95));
}

.cta-actions{
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: flex-end;
}
