/* ============================================================
   CONSTRUCTION CREW — Design System v4  (light & fresh)
   Wit/licht als basis, electric blue (#29f8ff) accent,
   donkere hero + footer als anchors. Bold maar luchtig.
   ============================================================ */

:root {
  --page: #f4f7fb;
  --surface: #ffffff;
  --tint: #e9eff7;          /* lichte, licht-blauwe sectietint */
  --tint-2: #dfe8f2;
  --dark: #0b1222;          /* hero / footer — blauw-getint donker */
  --dark-2: #111b30;        /* donkere kaart / panel */

  --accent: #29f8ff;        /* huisstijlkleur (fills, glow) */
  --accent-2: #00d3e4;
  --accent-deep: #0a8391;   /* cyaan als tekst/rand op licht */
  --accent-ink: #04161a;    /* tekst op cyaan vlak */

  --ink: #0e1626;           /* hoofdtekst op licht */
  --ink-2: #48566c;         /* gedempte tekst op licht */
  --ink-3: #7a8698;
  --white: #ffffff;
  --text-on-dark: #eaf0f8;
  --dim-on-dark: #a3b0c4;

  --line: rgba(14,24,42,.10);
  --line-2: rgba(14,24,42,.16);
  --line-dark: rgba(255,255,255,.12);

  --glow: 0 0 0 1px rgba(41,248,255,.4), 0 0 30px -6px rgba(41,248,255,.6);
  --glow-soft: 0 10px 30px -12px rgba(10,131,145,.35);
  --shadow: 0 20px 50px -26px rgba(14,24,42,.35);
  --shadow-sm: 0 8px 24px -16px rgba(14,24,42,.4);
  --radius: 16px;
  --maxw: 1220px;
  --ease: cubic-bezier(.16,.84,.44,1);
  --font-head: "Archivo", system-ui, sans-serif;
  --font-body: "Inter", system-ui, sans-serif;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
::selection { background: var(--accent); color: var(--accent-ink); }

body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--page);
  line-height: 1.6;
  font-size: 17px;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
::-webkit-scrollbar { width: 11px; }
::-webkit-scrollbar-track { background: var(--page); }
::-webkit-scrollbar-thumb { background: #c4d0de; border-radius: 20px; border: 2px solid var(--page); }
::-webkit-scrollbar-thumb:hover { background: var(--accent-deep); }

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

h1,h2,h3,h4 { font-family: var(--font-head); font-weight: 800; line-height: 1.0; letter-spacing: -.02em; text-transform: uppercase; }

.container { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 26px; }

/* ---------- utility ---------- */
.accent { color: var(--accent-deep); }
.eyebrow {
  font-family: var(--font-head); text-transform: uppercase; font-weight: 700;
  letter-spacing: .2em; font-size: .74rem; color: var(--accent-deep);
  display: inline-flex; align-items: center; gap: 11px;
}
.eyebrow::before { content:""; width: 30px; height: 2px; background: var(--accent-deep); }

.section { padding: 100px 0; position: relative; background: var(--page); }
.section--tight { padding: 66px 0; }
.section--tint { background: var(--tint); }
.section--dark { background: var(--dark); color: var(--text-on-dark); }
.section--dark .eyebrow { color: var(--accent); }
.section--dark .eyebrow::before { background: var(--accent); box-shadow: 0 0 10px var(--accent); }

.lead { font-size: 1.3rem; line-height: 1.5; max-width: 62ch; color: var(--ink-2); }
.section--dark .lead { color: var(--dim-on-dark); }

/* hex backdrop op lichte secties (heel subtiel) */
.hexbg::before {
  content:""; position:absolute; inset:0; z-index:0; pointer-events:none; opacity:.6;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='56' height='66' viewBox='0 0 56 66'%3E%3Cpath d='M28 0L56 16.5V49.5L28 66 0 49.5V16.5z' fill='none' stroke='%230e1626' stroke-opacity='0.04' stroke-width='1'/%3E%3C/svg%3E");
  background-size: 56px 66px;
}
.hexbg > * { position: relative; z-index: 1; }
.section--dark.hexbg::before { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='56' height='66' viewBox='0 0 56 66'%3E%3Cpath d='M28 0L56 16.5V49.5L28 66 0 49.5V16.5z' fill='none' stroke='%2329f8ff' stroke-opacity='0.08' stroke-width='1'/%3E%3C/svg%3E"); }

/* ---------- buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--font-head); text-transform: uppercase; font-weight: 700;
  letter-spacing: .04em; font-size: .95rem; padding: 15px 28px;
  border-radius: 999px; border: 2px solid transparent; cursor: pointer;
  transition: transform .2s var(--ease), background .2s, color .2s, border-color .2s, box-shadow .2s;
  line-height: 1; white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }
.btn--accent { background: var(--accent); color: var(--accent-ink); box-shadow: 0 8px 24px -10px rgba(41,248,255,.7); }
.btn--accent:hover { box-shadow: 0 12px 30px -8px rgba(41,248,255,.85); }
.btn--dark { background: var(--dark); color: #fff; }
.btn--dark:hover { background: #16223a; }
.btn--ghost { background: transparent; border-color: var(--line-2); color: var(--ink); }
.btn--ghost:hover { border-color: var(--accent-deep); color: var(--accent-deep); box-shadow: var(--glow-soft); }
.btn--white { background:#fff; color: var(--ink); box-shadow: var(--shadow-sm); }
.section--dark .btn--ghost, .hero .btn--ghost, .page-hero .btn--ghost { border-color: var(--line-dark); color: #fff; }
.section--dark .btn--ghost:hover, .hero .btn--ghost:hover, .page-hero .btn--ghost:hover { border-color: var(--accent); color: var(--accent); box-shadow:none; }
.btn--lg { padding: 18px 34px; font-size: 1.05rem; }

/* ---------- header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(255,255,255,.82); backdrop-filter: blur(14px) saturate(1.2);
  border-bottom: 1px solid var(--line);
}
.site-header .container { display:flex; align-items:center; justify-content:space-between; height: 76px; }
.brand { display:flex; align-items:center; }
.brand img { height: 44px; width:auto; }
.nav { display:flex; align-items:center; gap: 30px; }
.nav a { color: var(--ink-2); font-weight: 600; font-size: .95rem; transition: color .2s; position: relative; }
.nav a:hover, .nav a.active { color: var(--ink); }
.nav a.active::after { content:""; position:absolute; left:0; right:0; bottom:-6px; height:2px; background: var(--accent-deep); }
.header-cta { display:flex; align-items:center; gap:14px; }
.menu-toggle { display:none; background:none; border:0; cursor:pointer; padding:8px; }
.menu-toggle span { display:block; width:26px; height:2.5px; background:var(--ink); margin:5px 0; transition:.25s; border-radius:2px; }

/* ---------- ticker ---------- */
.ticker { background: var(--accent); color: var(--accent-ink); overflow: hidden; }
.ticker-track { display: inline-flex; gap: 42px; padding: 10px 0; white-space: nowrap; animation: scroll-x 34s linear infinite; }
.ticker-track span { font-family: var(--font-head); font-weight: 800; text-transform: uppercase; font-size: .85rem; letter-spacing: .06em; display:inline-flex; align-items:center; gap:42px; }
.ticker-track span::after { content:"◆"; font-size:.6rem; }
@keyframes scroll-x { to { transform: translateX(-50%); } }

/* ---------- hero ---------- */
.hero { position: relative; background: var(--dark); color: #fff; min-height: 90vh; display:flex; align-items:center; padding: 90px 0 80px; overflow: hidden; }
.hero::before {
  content:""; position:absolute; inset:0; z-index:0;
  background:
    radial-gradient(1100px 660px at 76% -6%, rgba(41,248,255,.30), transparent 60%),
    radial-gradient(760px 480px at 6% 112%, rgba(41,248,255,.16), transparent 58%);
  animation: heroGlow 11s ease-in-out infinite alternate;
}
.hero-hexwrap {
  position:absolute; inset:0; z-index:0; pointer-events:none; overflow:hidden;
  -webkit-mask-image: radial-gradient(1100px 760px at 68% 22%, #000, transparent 78%);
  mask-image: radial-gradient(1100px 760px at 68% 22%, #000, transparent 78%);
}
.hero-hex {
  position:absolute; top:-132px; left:-112px; right:0; bottom:0; opacity:.9;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='56' height='66' viewBox='0 0 56 66'%3E%3Cpath d='M28 0L56 16.5V49.5L28 66 0 49.5V16.5z' fill='none' stroke='%2329f8ff' stroke-opacity='0.16' stroke-width='1'/%3E%3C/svg%3E");
  background-size: 56px 66px;
  animation: hexMove 36s linear infinite;
  will-change: transform;
}
@keyframes hexMove { from { transform: translate3d(0,0,0); } to { transform: translate3d(112px,132px,0); } }
@keyframes heroGlow { from { opacity: .82; } to { opacity: 1; } }
.hero .container { position: relative; z-index: 3; }
.hero-badge {
  display:inline-flex; align-items:center; gap:10px; padding:8px 16px; border-radius:999px;
  border:1px solid var(--line-dark); background: rgba(255,255,255,.05); font-size:.8rem; font-weight:600; color: var(--dim-on-dark);
  margin-bottom: 26px;
}
.hero-badge .pulse { width:8px; height:8px; border-radius:50%; background: var(--accent); box-shadow:0 0 0 0 rgba(41,248,255,.7); animation: pulse 2s infinite; }
@keyframes pulse { 0%{box-shadow:0 0 0 0 rgba(41,248,255,.6);} 70%{box-shadow:0 0 0 10px rgba(41,248,255,0);} 100%{box-shadow:0 0 0 0 rgba(41,248,255,0);} }
.hero h1 { font-size: clamp(2.9rem, 7.4vw, 6.4rem); font-weight: 900; letter-spacing: -.03em; }
.hero h1 .grad { background: linear-gradient(120deg, var(--accent), #bafcff 55%, var(--accent)); -webkit-background-clip: text; background-clip: text; color: transparent; filter: drop-shadow(0 0 22px rgba(41,248,255,.4)); }
.hero p { margin-top: 28px; font-size: 1.3rem; max-width: 60ch; color: var(--dim-on-dark); }
.hero-actions { margin-top: 40px; display:flex; flex-wrap:wrap; gap:16px; }
.hero-strip { margin-top: 58px; display:flex; flex-wrap:wrap; gap: 14px 34px; padding-top: 28px; border-top:1px solid var(--line-dark); }
.hero-strip span { display:flex; align-items:center; gap:10px; font-weight:600; color: var(--dim-on-dark); font-size:.98rem; }
.hero-strip .dot { width:7px; height:7px; border-radius:50%; background: var(--accent); box-shadow:0 0 10px var(--accent); }

/* ---------- marquee ---------- */
.marquee { padding: 26px 0; border-top:1px solid var(--line); border-bottom:1px solid var(--line); background: var(--surface); overflow:hidden; -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent); mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent); }
.marquee-track { display:inline-flex; gap: 30px; white-space:nowrap; animation: scroll-x 40s linear infinite; }
.marquee-track:hover { animation-play-state: paused; }
.marquee-item { font-family: var(--font-head); font-weight:800; text-transform:uppercase; font-size: clamp(1.3rem,2.4vw,2rem); color: var(--accent-deep); letter-spacing:-.01em; display:inline-flex; align-items:center; gap:30px; transition: color .2s; }
.marquee-item:hover { color: #064e57; }
.marquee-item::after { content:"●"; font-size:.5rem; color: var(--accent); }

/* ---------- section head ---------- */
.sec-head { max-width: 820px; }
.sec-head h2 { font-size: clamp(2.1rem, 4.4vw, 3.5rem); margin-top: 18px; font-weight:900; }
.sec-head p { margin-top: 18px; font-size: 1.16rem; color: var(--ink-2); }
.section--dark .sec-head p { color: var(--dim-on-dark); }
.center { text-align:center; margin-left:auto; margin-right:auto; }
.center .eyebrow { justify-content:center; }

/* ---------- stats ---------- */
.stats { display:grid; grid-template-columns: repeat(4,1fr); gap: 20px; }
.stat { padding: 30px 26px; border:1px solid var(--line); border-radius: var(--radius); background: var(--surface); box-shadow: var(--shadow-sm); transition: border-color .25s, box-shadow .25s, transform .25s; }
.stat:hover { border-color: rgba(10,131,145,.35); box-shadow: var(--shadow); transform: translateY(-4px); }
.stat .num { font-family: var(--font-head); font-weight:900; font-size: clamp(2.4rem,4.4vw,3.5rem); color: var(--accent-deep); line-height:1; letter-spacing:-.03em; }
.stat .lbl { margin-top:10px; font-weight:600; color: var(--ink-2); }
.section--dark .stat { background: var(--dark-2); border-color: var(--line-dark); }
.section--dark .stat .num { color: var(--accent); }
.section--dark .stat .lbl { color: var(--dim-on-dark); }

/* ---------- bento / tiles ---------- */
.bento { display:grid; grid-template-columns: repeat(6,1fr); grid-auto-rows: minmax(150px, auto); gap: 18px; margin-top: 52px; }
.tile {
  position:relative; overflow:hidden; border:1px solid var(--line); border-radius: var(--radius);
  background: var(--surface); padding: 30px; display:flex; flex-direction:column; box-shadow: var(--shadow-sm);
  transition: transform .28s var(--ease), border-color .28s, box-shadow .28s;
  color: var(--ink);
}
.tile::after { content:""; position:absolute; inset:0; background: radial-gradient(400px 220px at var(--mx,80%) 0%, rgba(41,248,255,.10), transparent 60%); opacity:0; transition:opacity .3s; pointer-events:none; }
.tile:hover { transform: translateY(-5px); border-color: rgba(10,131,145,.35); box-shadow: var(--shadow); }
.tile:hover::after { opacity:1; }
.tile p { margin-top:12px; color: var(--ink-2); font-size: 1rem; }
.tile .ic { width:52px; height:52px; border-radius:13px; display:grid; place-items:center; background: rgba(41,248,255,.14); color: var(--accent-deep); margin-bottom:18px; border:1px solid rgba(10,131,145,.25); }
.tile .ic svg { width:26px; height:26px; }
.tile h3 { font-size: 1.42rem; font-weight:800; }
.tile .more { margin-top:auto; padding-top:18px; font-family:var(--font-head); font-weight:700; text-transform:uppercase; font-size:.82rem; letter-spacing:.06em; color: var(--accent-deep); display:inline-flex; align-items:center; gap:8px; }
.tile .more::after { content:"→"; transition:transform .2s; }
.tile:hover .more::after { transform: translateX(6px); }
.col-3 { grid-column: span 3; } .col-2 { grid-column: span 2; } .col-4 { grid-column: span 4; } .col-6 { grid-column: span 6; }
.row-2 { grid-row: span 2; }
.tile--accent { background: linear-gradient(155deg, #eafeff, #d6faff); border-color: rgba(10,131,145,.3); }
.tile--accent .ic { background: var(--accent); color: var(--accent-ink); border-color: transparent; }

/* ---------- chips ---------- */
.chips { display:flex; flex-wrap:wrap; gap:12px; margin-top:44px; }
.chip {
  display:inline-flex; align-items:center; gap:10px; padding:13px 20px; border-radius:999px;
  border:1px solid var(--line-2); background: var(--surface); color: var(--ink); font-weight:600; font-size:.98rem;
  box-shadow: var(--shadow-sm);
  transition: border-color .2s, color .2s, box-shadow .2s, transform .2s;
}
.chip .em { font-size:1.15rem; }
.chip:hover { border-color: var(--accent-deep); color: var(--accent-deep); transform: translateY(-2px); box-shadow: var(--shadow); }

/* ---------- split / steps ---------- */
.split { display:grid; grid-template-columns: 1.05fr .95fr; gap: 64px; align-items:center; }
.steps { display:grid; gap: 18px; margin-top: 40px; }
.step { display:flex; gap: 20px; align-items:flex-start; padding: 22px; border:1px solid var(--line); border-radius: var(--radius); background: var(--surface); box-shadow: var(--shadow-sm); transition: border-color .25s, box-shadow .25s, transform .25s; }
.step:hover { border-color: rgba(10,131,145,.3); box-shadow: var(--shadow); transform: translateY(-3px); }
.step .n { flex:none; width:48px; height:48px; border-radius:50%; display:grid; place-items:center; font-family:var(--font-head); font-weight:900; font-size:1.2rem; background: var(--accent); color: var(--accent-ink); }
.step h4 { font-size:1.2rem; }
.step p { margin-top:6px; color: var(--ink-2); }
.section--dark .step { background: var(--dark-2); border-color: var(--line-dark); }
.section--dark .step p { color: var(--dim-on-dark); }

/* dark accent panel (kaart voor contrast op licht) */
.panel {
  background: linear-gradient(160deg, var(--dark-2), var(--dark)); color:#fff;
  border:1px solid rgba(255,255,255,.08); border-radius: 22px; padding: 42px; position:relative; overflow:hidden;
  box-shadow: var(--shadow);
}
.panel::before { content:""; position:absolute; inset:0; background: radial-gradient(560px 300px at 92% 0%, rgba(41,248,255,.22), transparent 60%); }
.panel > * { position:relative; }
.panel .quote { font-family:var(--font-head); font-weight:900; text-transform:uppercase; font-size:2rem; line-height:1.06; }
.panel .quote .accent { color: var(--accent); }
.panel .who { margin-top:22px; color: var(--dim-on-dark); font-weight:600; }

/* ---------- checklist ---------- */
.checklist { list-style:none; display:grid; gap:14px; margin-top:26px; }
.checklist li { display:flex; gap:14px; align-items:flex-start; font-size:1.05rem; color: var(--ink); }
.checklist li::before { content:"✓"; flex:none; width:27px; height:27px; border-radius:8px; background: var(--accent); color: var(--accent-ink); display:grid; place-items:center; font-weight:800; font-size:.9rem; }
.checklist li strong { color: var(--ink); }
.panel .checklist li, .section--dark .checklist li { color: var(--text-on-dark); }
.panel .checklist li strong, .section--dark .checklist li strong { color:#fff; }

/* ---------- why feature grid ---------- */
.why-grid { display:grid; grid-template-columns: repeat(3,1fr); gap: 18px; margin-top: 48px; }
.why-card { border:1px solid var(--line); border-radius: var(--radius); background: var(--surface); padding: 28px; box-shadow: var(--shadow-sm); transition: transform .25s, box-shadow .25s, border-color .25s; }
.why-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); border-color: rgba(10,131,145,.3); }
.why-card .ic { width:48px; height:48px; border-radius:12px; display:grid; place-items:center; background: rgba(41,248,255,.14); color: var(--accent-deep); border:1px solid rgba(10,131,145,.22); margin-bottom:16px; }
.why-card .ic svg { width:24px; height:24px; }
.why-card h4 { font-size:1.15rem; }
.why-card p { margin-top:9px; color: var(--ink-2); }

/* ---------- partner logos ---------- */
.logos { display:flex; flex-wrap:nowrap; align-items:center; justify-content:center; gap: 40px; margin-top: 26px; }
.logos img { height: 32px; width:auto; opacity:.66; transition: opacity .25s, transform .25s; }
.logos img:hover { opacity:1; transform: translateY(-2px); }
.logo-item { display:flex; align-items:center; gap:11px; color: var(--ink-3); font-family: var(--font-head); font-weight:800; text-transform:uppercase; letter-spacing:.02em; font-size:1.15rem; opacity:.7; transition: opacity .2s, color .2s; }
.logo-item svg { width:30px; height:30px; }
.logo-item:hover { opacity:1; color: var(--ink); }
@media (max-width:600px){ .logos { gap: 22px; } .logos img { height: 24px; } }
.logo-slider { overflow:hidden; margin-top: 26px; -webkit-mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent); mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent); }
.logo-track { display:flex; align-items:center; gap: 64px; width:max-content; animation: scroll-x 26s linear infinite; }
.logo-track:hover { animation-play-state: paused; }
.logo-track img { height: 30px; width:auto; opacity:.6; transition: opacity .25s; }
.logo-track img:hover { opacity:1; }
@media (max-width:600px){ .logo-track { gap: 40px; } .logo-track img { height: 24px; } }

/* ---------- cta band ---------- */
.cta-band { position:relative; overflow:hidden; background: var(--accent); color: var(--accent-ink); }
.cta-band::before { content:""; position:absolute; inset:0; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='56' height='66' viewBox='0 0 56 66'%3E%3Cpath d='M28 0L56 16.5V49.5L28 66 0 49.5V16.5z' fill='none' stroke='%23000' stroke-opacity='0.07' stroke-width='1'/%3E%3C/svg%3E"); background-size:56px 66px; }
.cta-band .container { position:relative; display:flex; align-items:center; justify-content:space-between; gap:40px; flex-wrap:wrap; }
.cta-band h2 { font-size: clamp(2rem,3.8vw,3.1rem); max-width:20ch; font-weight:900; }
.cta-band p { margin-top:10px; color: rgba(4,22,26,.72); font-size:1.1rem; }
.cta-band .btn--dark { background: var(--accent-ink); color:#fff; border-color: transparent; }

/* ---------- page hero (sub) ---------- */
.page-hero { position:relative; overflow:hidden; padding: 92px 0 74px; background: var(--dark); color:#fff; }
.page-hero::before { content:""; position:absolute; inset:0; background: radial-gradient(780px 440px at 82% -16%, rgba(41,248,255,.24), transparent 60%); }
.page-hero::after { content:""; position:absolute; inset:0; opacity:.7; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='56' height='66' viewBox='0 0 56 66'%3E%3Cpath d='M28 0L56 16.5V49.5L28 66 0 49.5V16.5z' fill='none' stroke='%2329f8ff' stroke-opacity='0.12' stroke-width='1'/%3E%3C/svg%3E"); background-size:56px 66px; -webkit-mask-image: radial-gradient(760px 500px at 80% 10%, #000, transparent 75%); mask-image: radial-gradient(760px 500px at 80% 10%, #000, transparent 75%); }
.page-hero .container { position:relative; z-index:1; }
.page-hero h1 { font-size: clamp(2.4rem,5.4vw,4.4rem); font-weight:900; }
.page-hero h1 .grad { background: linear-gradient(120deg, var(--accent), #bafcff, var(--accent)); -webkit-background-clip:text; background-clip:text; color:transparent; }
.page-hero p { margin-top:20px; max-width:62ch; font-size:1.22rem; color: var(--dim-on-dark); }
.page-hero .eyebrow { color: var(--accent); }
.page-hero .eyebrow::before { background: var(--accent); }
.breadcrumb { color: rgba(163,176,196,.8); font-size:.9rem; margin-bottom:18px; font-weight:600; }
.breadcrumb a:hover { color: var(--accent); }

/* ---------- prose ---------- */
.prose { max-width: 780px; }
.prose h2 { font-size:1.9rem; margin: 42px 0 14px; }
.prose h3 { font-size:1.3rem; margin: 30px 0 10px; color: var(--accent-deep); }
.prose p { margin-bottom:18px; color: var(--ink-2); }
.prose strong { color: var(--ink); }
.prose ul { margin:0 0 20px 0; padding-left:0; list-style:none; display:grid; gap:11px; }
.prose ul li { display:flex; gap:12px; color: var(--ink-2); }
.prose ul li::before { content:""; flex:none; width:9px; height:9px; margin-top:9px; background: var(--accent-deep); border-radius:2px; }

/* ---------- FAQ ---------- */
.faq { display:grid; gap:14px; margin-top:44px; max-width: 860px; }
.faq details { border:1px solid var(--line); border-radius: 14px; background: var(--surface); overflow:hidden; box-shadow: var(--shadow-sm); }
.faq summary { cursor:pointer; padding: 20px 24px; font-family:var(--font-head); font-weight:700; text-transform:uppercase; font-size:1rem; list-style:none; display:flex; justify-content:space-between; align-items:center; gap:16px; color: var(--ink); }
.faq summary::-webkit-details-marker { display:none; }
.faq summary::after { content:"+"; color: var(--accent-deep); font-size:1.5rem; font-weight:400; transition: transform .2s; }
.faq details[open] summary::after { transform: rotate(45deg); }
.faq details[open] summary { border-bottom:1px solid var(--line); }
.faq .a { padding: 18px 24px 22px; color: var(--ink-2); }

/* ---------- related sectors ---------- */
.rel-grid { display:grid; grid-template-columns: repeat(4,1fr); gap:14px; margin-top:44px; }
.rel { display:flex; align-items:center; gap:12px; padding:16px 18px; border:1px solid var(--line); border-radius:12px; background: var(--surface); font-weight:600; box-shadow: var(--shadow-sm); transition: border-color .2s, box-shadow .2s, transform .2s, color .2s; }
.rel:hover { border-color: var(--accent-deep); box-shadow: var(--shadow); transform: translateY(-2px); color: var(--accent-deep); }
.rel .em { font-size:1.3rem; }

/* ---------- configurator ---------- */
.config { border:1px solid var(--line); border-radius: 22px; background: var(--surface); box-shadow: var(--shadow); position:relative; overflow:hidden; }
.config::before { content:""; position:absolute; inset:0; background: radial-gradient(600px 300px at 100% 0%, rgba(41,248,255,.12), transparent 60%); pointer-events:none; }
.config-inner { position:relative; padding: 34px; }
.config-steps { display:flex; gap:10px; margin-bottom: 26px; }
.config-steps .s { flex:1; height:5px; border-radius:99px; background: var(--tint-2); overflow:hidden; }
.config-steps .s.active { background: var(--accent); }
.config h3 { font-size: 1.5rem; }
.config .q { color: var(--ink-2); margin: 6px 0 22px; }
.opt-grid { display:grid; grid-template-columns: repeat(3,1fr); gap: 12px; }
.opt { border:1.5px solid var(--line-2); border-radius: 13px; background: var(--surface); padding: 16px 15px; cursor:pointer; text-align:left; transition: border-color .2s, background .2s, transform .2s; font-family: inherit; color: var(--ink); position:relative; }
.opt:hover { border-color: var(--accent-deep); transform: translateY(-2px); }
.opt.sel { border-color: var(--accent-deep); background: #eafeff; }
.opt.sel::after { content:"✓"; position:absolute; top:10px; right:12px; width:20px; height:20px; border-radius:6px; background: var(--accent); color: var(--accent-ink); display:grid; place-items:center; font-size:.75rem; font-weight:800; }
.opt .em { font-size: 1.5rem; display:block; margin-bottom:8px; }
.opt .n { font-weight:700; font-size:.96rem; }
.config-nav { display:flex; justify-content:space-between; align-items:center; margin-top: 24px; gap:14px; }
.config-summary { border:1px solid rgba(10,131,145,.3); border-radius:14px; background: #eafeff; padding: 22px; }
.config-summary .row { display:flex; justify-content:space-between; gap:16px; padding:8px 0; border-bottom:1px solid var(--line); font-size:.98rem; }
.config-summary .row:last-child { border-bottom:0; }
.config-summary .row span:first-child { color: var(--ink-2); }
.config-summary .row span:last-child { font-weight:700; color: var(--ink); text-align:right; }
.link-btn { background:none; border:0; color: var(--ink-2); font-weight:600; cursor:pointer; font-family:inherit; font-size:.95rem; }
.link-btn:hover { color: var(--ink); }

/* ---------- duo cta ---------- */
.duo { display:grid; grid-template-columns:1fr 1fr; gap:20px; margin-top: 44px; }
.duo-card { position:relative; overflow:hidden; border:1px solid var(--line); border-radius: 20px; padding: 40px; background: var(--surface); box-shadow: var(--shadow-sm); transition: border-color .25s, box-shadow .25s, transform .25s; }
.duo-card:hover { border-color: rgba(10,131,145,.35); box-shadow: var(--shadow); transform: translateY(-4px); }
.duo-card.is-accent { background: linear-gradient(155deg, #eafeff, #d6faff); border-color: rgba(10,131,145,.3); }
.duo-card h3 { font-size:1.8rem; }
.duo-card p { color: var(--ink-2); margin:12px 0 22px; }

/* ---------- trust bar ---------- */
.trust { display:flex; flex-wrap:wrap; align-items:center; justify-content:center; gap: 14px 30px; }
.trust .t-lbl { font-family:var(--font-head); text-transform:uppercase; letter-spacing:.14em; font-size:.72rem; color: var(--ink-3); }
.trust .t-item { display:flex; align-items:center; gap:9px; font-weight:600; color: var(--ink-2); font-size:.95rem; }
.trust .t-item svg { width:18px; height:18px; color: var(--accent-deep); }

/* ---------- vacatures ---------- */
.vac { display:grid; gap:16px; margin-top: 8px; max-width: 900px; }
.vac-card { border:1px solid var(--line); border-radius:16px; background:var(--surface); box-shadow:var(--shadow-sm); overflow:hidden; transition: border-color .2s, box-shadow .2s; }
.vac-card[open] { border-color: rgba(10,131,145,.3); box-shadow: var(--shadow); }
.vac-card summary { list-style:none; cursor:pointer; padding:24px 26px; display:flex; justify-content:space-between; align-items:flex-start; gap:20px; }
.vac-card summary::-webkit-details-marker { display:none; }
.vac-card summary::after { content:"+"; color: var(--accent-deep); font-size:1.6rem; font-weight:400; line-height:1; transition: transform .2s; flex:none; }
.vac-card[open] summary::after { transform: rotate(45deg); }
.vac-title { font-size:1.3rem; font-family:var(--font-head); font-weight:800; text-transform:uppercase; color:var(--ink); }
.vac-meta { display:flex; flex-wrap:wrap; gap:8px; margin-top:12px; }
.vac-tag { font-size:.8rem; font-weight:600; color:var(--accent-deep); background:#eafeff; border:1px solid rgba(10,131,145,.22); border-radius:99px; padding:5px 12px; display:inline-flex; align-items:center; gap:6px; }
.vac-body { padding:4px 26px 28px; border-top:1px solid var(--line); }
.vac-body p { color:var(--ink-2); margin:16px 0; }
.vac-body h4 { font-size:1rem; margin:18px 0 10px; }
.vac-body ul { list-style:none; display:grid; gap:9px; padding:0; margin:0 0 8px; }
.vac-body ul li { display:flex; gap:12px; color:var(--ink-2); }
.vac-body ul li::before { content:""; flex:none; width:8px; height:8px; margin-top:9px; background:var(--accent-deep); border-radius:2px; }
.vac-apply { display:flex; flex-wrap:wrap; gap:12px; margin-top:22px; }
.vac-group { margin:42px 0 6px; font-family:var(--font-head); text-transform:uppercase; letter-spacing:.14em; font-size:.82rem; font-weight:800; color:var(--accent-deep); }
.vac-group:first-child { margin-top:0; }
.vac-group-sub { color:var(--ink-2); font-size:.95rem; margin:0 0 14px; }
.vac-tag--hot { background:var(--accent); color:#04252a; border-color:transparent; font-weight:700; }
.vac-empty { border:1px dashed var(--line-2); border-radius:16px; background:var(--surface); padding:40px; text-align:center; }
.vac-empty p { color:var(--ink-2); margin:8px 0 20px; }

/* ---------- forms ---------- */
.form-wrap { display:grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items:start; }
.form-card { background: var(--surface); border:1px solid var(--line); border-radius: 20px; padding: 38px; box-shadow: var(--shadow); }
.field { margin-bottom: 20px; }
.field label { display:block; font-family:var(--font-head); text-transform:uppercase; font-weight:700; font-size:.78rem; letter-spacing:.06em; margin-bottom:8px; color: var(--ink); }
.field label .req { color: var(--accent-deep); }
.field input, .field textarea, .field select { width:100%; padding:14px 16px; font-size:1rem; font-family:var(--font-body); color: var(--ink); border:1.5px solid var(--line-2); border-radius:11px; background: #fbfcfe; transition: border-color .2s, box-shadow .2s; }
.field input::placeholder, .field textarea::placeholder { color: var(--ink-3); }
.field input:focus, .field textarea:focus, .field select:focus { outline:none; border-color: var(--accent-deep); box-shadow: 0 0 0 3px rgba(41,248,255,.22); }
.field textarea { min-height:120px; resize:vertical; }
.field .hint { font-size:.85rem; color: var(--ink-2); margin-top:6px; }
.checkgrid { display:grid; grid-template-columns:1fr 1fr; gap:10px; }
.check { display:flex; align-items:center; gap:10px; padding:12px 14px; border:1.5px solid var(--line-2); border-radius:10px; cursor:pointer; font-size:.95rem; transition:border-color .2s, background .2s; }
.check:hover { border-color: var(--accent-deep); }
.check input { width:auto; accent-color: var(--accent-deep); }
.form-note { font-size:.85rem; color: var(--ink-2); margin-top:14px; }

/* ---------- footer ---------- */
.site-footer { background: var(--dark); color: var(--dim-on-dark); padding: 76px 0 34px; border-top:1px solid var(--line-dark); position:relative; overflow:hidden; }
.footer-grid { display:grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 40px; position:relative; }
.footer-brand img { height: 28px; margin-bottom: 18px; }
.footer-about p { max-width:34ch; }
.footer-grid h5 { font-family:var(--font-head); text-transform:uppercase; color:#fff; font-size:.9rem; letter-spacing:.08em; margin-bottom:16px; }
.footer-grid a { display:block; padding:5px 0; color: var(--dim-on-dark); transition: color .2s; }
.footer-grid a:hover { color: var(--accent); }
.footer-bottom { margin-top:52px; padding-top:24px; border-top:1px solid var(--line-dark); display:flex; justify-content:space-between; flex-wrap:wrap; gap:16px; font-size:.88rem; }
.social { display:flex; gap:12px; margin-top:14px; }
.social a { width:40px; height:40px; border-radius:10px; border:1px solid var(--line-dark); display:grid; place-items:center; color:#fff; transition:.2s; }
.social a:hover { background: var(--accent); color: var(--accent-ink); border-color: var(--accent); }
.social svg { width:18px; height:18px; }

/* ---------- whatsapp float ---------- */
.wa-float { position: fixed; right: 22px; bottom: 22px; z-index: 90; width: 58px; height: 58px; border-radius: 50%; background:#25d366; color:#fff; display:grid; place-items:center; box-shadow: 0 12px 30px -8px rgba(37,211,102,.6); transition: transform .2s; }
.wa-float:hover { transform: scale(1.08); }
.wa-float svg { width:30px; height:30px; }

/* ---------- live bereikbaarheid ---------- */
.avail { display:inline-flex; align-items:center; gap:9px; font-weight:600; }
.avail .adot { width:9px; height:9px; border-radius:50%; background:#22c55e; box-shadow:0 0 0 0 rgba(34,197,94,.55); animation: pulse 2s infinite; flex:none; }
.avail.closed .adot { background:#94a3b8; animation:none; box-shadow:none; }

/* ---------- sectoren-zoekfilter ---------- */
.sector-search { max-width:440px; margin: 6px 0 -18px; position:relative; }
.sector-search input { width:100%; padding:15px 18px 15px 46px; font-size:1rem; font-family:var(--font-body); color:var(--ink); border:1.5px solid var(--line-2); border-radius:999px; background:var(--surface); box-shadow:var(--shadow-sm); transition:border-color .2s, box-shadow .2s; }
.sector-search input:focus { outline:none; border-color:var(--accent-deep); box-shadow:0 0 0 3px rgba(41,248,255,.22); }
.sector-search .sic { position:absolute; left:17px; top:50%; transform:translateY(-50%); width:19px; height:19px; }
.sector-empty { display:none; color:var(--ink-2); padding:26px 0 0; }

/* ---------- mobiele actiebalk ---------- */
.mob-cta { display:none; position:fixed; left:0; right:0; bottom:0; z-index:95; gap:10px; padding:10px 14px calc(10px + env(safe-area-inset-bottom)); background:#fff; border-top:1px solid var(--line); box-shadow: 0 -10px 28px -12px rgba(11,18,34,.18); }
.mob-cta .btn { flex:1; justify-content:center; padding:14px 10px; font-size:.9rem; }
@media (max-width: 720px) {
  .mob-cta { display:flex; }
  .wa-float, .to-top { display:none !important; }
  body { padding-bottom: 74px; }
}

/* ---------- knoppenrij ---------- */
.btn-row { display:flex; flex-wrap:wrap; gap:14px; }
@media (max-width: 600px) {
  .btn-row .btn, .hero-actions .btn { flex:1 1 100%; justify-content:center; }
}

/* ---------- merk: hero-watermerk ---------- */
.hero-mark { position:absolute; right:-70px; top:50%; transform: translateY(-50%); height: 120%; width:auto; opacity:.05; z-index:0; pointer-events:none; user-select:none; }

/* ---------- merk: sectienummers ---------- */
.sec-head { position: relative; }
.sec-num { position:absolute; top:-34px; left:-6px; font-family:var(--font-head); font-weight:900; font-size: 5.2rem; line-height:1; color: transparent; -webkit-text-stroke: 1.5px rgba(10,131,145,.18); pointer-events:none; user-select:none; }
.section--dark .sec-num { -webkit-text-stroke-color: rgba(41,248,255,.16); }
@media (max-width:720px){ .sec-num { font-size: 3.6rem; top:-24px; } }

/* ---------- merk: footer statement ---------- */
.footer-tag { font-family:var(--font-head); font-weight:900; text-transform:uppercase; letter-spacing:-.02em; font-size: clamp(2.6rem, 9vw, 6.4rem); line-height:.95; color: transparent; -webkit-text-stroke: 1px rgba(255,255,255,.13); margin-bottom: 48px; user-select:none; }
.footer-tag .fx { -webkit-text-stroke: 0; color: var(--accent); }

/* ---------- merk: terug naar boven (hexagon) ---------- */
.to-top { position: fixed; right: 25px; bottom: 94px; z-index: 90; width: 52px; height: 58px; display:grid; place-items:center; background: var(--dark); color: var(--accent); border:0; cursor:pointer; clip-path: polygon(50% 0, 100% 25%, 100% 75%, 50% 100%, 0 75%, 0 25%); opacity: 0; transform: translateY(12px); transition: opacity .3s, transform .3s; }
.to-top.show { opacity: 1; transform: none; }
.to-top svg { width: 20px; height: 20px; stroke: currentColor; fill:none; stroke-width: 2.5; stroke-linecap: round; stroke-linejoin: round; }
.to-top:hover { color: #fff; }

/* ---------- nav hover underline ---------- */
.nav a::before { content:""; position:absolute; left:0; right:100%; bottom:-6px; height:2px; background: var(--accent-deep); transition: right .25s var(--ease); }
.nav a:hover::before { right:0; }
.nav a.active::before { display:none; }

/* ---------- lijn-iconen (blauw) ---------- */
.sic { width:20px; height:20px; stroke: currentColor; fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; color: var(--accent-deep); flex: none; vertical-align: -4px; }
.eyebrow .sic { width:17px; height:17px; color: inherit; }
.rel .sic { width:22px; height:22px; }
.ic .sic { width:26px; height:26px; color: inherit; }
.opt .sic { width:22px; height:22px; display:block; margin-bottom:8px; }
.vac-tag .sic { width:14px; height:14px; vertical-align:-2px; }

/* ---------- hero spotlight (subtiel) ---------- */
.hero-spot { position:absolute; inset:0; z-index:1; pointer-events:none; background: radial-gradient(300px 300px at var(--spx,50%) var(--spy,40%), rgba(41,248,255,.13), transparent 70%); transition: opacity .3s; }

/* ---------- WOW: preloader ---------- */
#cc-loader { position: fixed; inset: 0; z-index: 999; background: var(--dark); display: grid; place-items: center; transition: clip-path .55s cubic-bezier(.7,0,.3,1); clip-path: inset(0 0 0 0); }
#cc-loader.done { clip-path: inset(0 0 100% 0); pointer-events: none; }
#cc-loader img { width: 84px; height: auto; opacity: 0; transform: scale(.86); animation: markIn .8s .1s var(--ease) forwards, markGlow 1.4s .5s ease-in-out infinite alternate; filter: drop-shadow(0 0 0 rgba(41,248,255,0)); }
@keyframes markIn { to { opacity: 1; transform: scale(1); } }
@keyframes markGlow { from { filter: drop-shadow(0 0 6px rgba(41,248,255,.25)); } to { filter: drop-shadow(0 0 22px rgba(41,248,255,.65)); } }

/* ---------- WOW: hero entrance ---------- */
@keyframes heroRise { from { opacity: 0; transform: translateY(34px); filter: blur(6px); } to { opacity: 1; transform: none; filter: none; } }
.hero .hero-badge { animation: heroRise .7s .15s var(--ease) both; }
.hero h1 { animation: heroRise .8s .28s var(--ease) both; }
.hero p { animation: heroRise .8s .42s var(--ease) both; }
.hero .hero-actions { animation: heroRise .8s .55s var(--ease) both; }
.hero .hero-strip { animation: heroRise .8s .7s var(--ease) both; }

/* ---------- WOW: flip word ---------- */
.flip-word { display: inline-block; color: var(--accent); font-weight: 700; transition: transform .3s var(--ease), opacity .3s; }
.flip-word.out { transform: translateY(-10px); opacity: 0; }

/* ---------- WOW: magnetic & tilt ---------- */
.magnet { transition: transform .18s ease-out; will-change: transform; }
.tile, .why-card { will-change: transform; }

/* ---------- reveal met blur ---------- */
[data-reveal] { filter: blur(5px); }
[data-reveal].in { filter: none; }

/* ---------- scroll progress + reveal ---------- */
.scroll-progress { position: fixed; top: 0; left: 0; height: 3px; width: 0; background: linear-gradient(90deg, var(--accent), #00d3e4); z-index: 200; transition: width .1s linear; }
[data-reveal] { opacity:0; transform: translateY(26px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
[data-reveal].in { opacity:1; transform:none; }

/* ---------- responsive ---------- */
@media (max-width: 1000px) {
  .bento { grid-template-columns: repeat(2,1fr); }
  .col-3,.col-2,.col-4,.col-6 { grid-column: span 1; }
  .col-wide { grid-column: span 2 !important; }
  .split { grid-template-columns:1fr; gap:44px; }
  .form-wrap { grid-template-columns:1fr; gap:40px; }
  .footer-grid { grid-template-columns:1fr 1fr; }
  .stats { grid-template-columns:1fr 1fr; }
  .rel-grid { grid-template-columns:1fr 1fr; }
  .why-grid { grid-template-columns:1fr 1fr; }
}
@media (max-width: 720px) {
  body { font-size:16px; }
  .section { padding: 72px 0; }
  .nav, .header-cta .btn--ghost { display:none; }
  .menu-toggle { display:block; }
  .nav.open { display:flex; flex-direction:column; align-items:flex-start; gap:4px; position:absolute; top:76px; left:0; right:0; background: var(--surface); padding:18px 26px 26px; border-bottom:1px solid var(--line); box-shadow: var(--shadow); }
  .nav.open a { padding:11px 0; font-size:1.05rem; width:100%; color: var(--ink); }
  .bento { grid-template-columns:1fr; }
  .col-wide { grid-column: span 1 !important; }
  .hero { min-height: auto; }
  .duo, .why-grid { grid-template-columns:1fr; }
  .opt-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 480px) { .stats, .rel-grid, .checkgrid, .opt-grid { grid-template-columns:1fr; } }

@media (prefers-reduced-motion: reduce) {
  .ticker-track, .marquee-track, .logo-track { animation: none; }
  [data-reveal] { opacity:1; transform:none; transition:none; filter:none; }
  .hero-badge .pulse { animation:none; }
  .hero::before, .hero-hex, .page-hero::after { animation: none; }
  .hero .hero-badge, .hero h1, .hero p, .hero .hero-actions, .hero .hero-strip { animation: none; }
  #cc-loader { display:none; }
  .magnet { transition:none; }
}

/* ---------- kennismaking plannen ---------- */
.plan { background: var(--surface); border:1px solid var(--line); border-radius:22px; padding: 34px 32px; box-shadow: var(--shadow); }
.plan .eyebrow { margin-bottom: 10px; display:block; }
.plan h2 { font-size: clamp(1.7rem, 3.2vw, 2.3rem); font-weight:900; line-height:1.1; }
.plan > p.lead { font-size: 1.05rem; margin-top: 10px; }
.plan-step { margin-top: 22px; }
.plan-step > span { display:block; font-family: var(--font-head); text-transform:uppercase; letter-spacing:.09em; font-size:.74rem; font-weight:800; color: var(--ink-3); margin-bottom: 9px; }
.plan-chips { display:flex; flex-wrap:wrap; gap:9px; }
.plan-chip { display:inline-flex; align-items:center; gap:8px; border:1.5px solid var(--line-2); background:#fff; color:var(--ink); border-radius:99px; padding:10px 16px; font-size:.94rem; font-weight:600; cursor:pointer; transition: border-color .18s, background .18s, transform .12s; font-family:inherit; }
.plan-chip:hover { border-color: var(--accent-deep); transform: translateY(-1px); }
.plan-chip .sic { width:17px; height:17px; color: var(--accent-deep); }
.plan-chip.on { border-color: transparent; background: var(--dark); color:#fff; }
.plan-chip.on .sic { color: var(--accent); }
.plan-fields { display:grid; grid-template-columns:1fr 1fr; gap:12px; margin-top:22px; }
.plan-fields input { width:100%; border:1.5px solid var(--line-2); border-radius:12px; padding:13px 15px; font:inherit; font-size:.95rem; background:#fbfdff; }
.plan-fields input:focus { outline:2px solid var(--accent); border-color:transparent; }
.plan-go { margin-top: 20px; display:flex; flex-wrap:wrap; gap:12px; align-items:center; }
.plan-go .btn { flex:0 0 auto; }
.plan-alt { font-size:.9rem; color: var(--ink-3); }
.plan-alt a { color: var(--accent-deep); font-weight:600; text-decoration:underline; text-underline-offset:3px; }
.plan-note { margin-top:14px; font-size:.86rem; color: var(--ink-3); display:flex; align-items:center; gap:7px; }
.plan-note .sic { width:15px; height:15px; color: var(--accent-deep); }
@media (max-width: 560px) { .plan { padding: 26px 20px; } .plan-fields { grid-template-columns:1fr; } .plan-go .btn { width:100%; justify-content:center; } }

/* compacte verwijzing naar de planner */
.plan-band { display:flex; flex-wrap:wrap; align-items:center; gap:18px; justify-content:space-between; border:1.5px solid var(--line); border-radius:18px; background: var(--surface); padding: 22px 26px; box-shadow: var(--shadow-sm); }
.plan-band h3 { font-size:1.25rem; font-weight:800; }
.plan-band p { color: var(--ink-2); font-size:.96rem; margin-top:4px; }

/* ---------- cookiemelding ---------- */
.cookiebar { position: fixed; left: 16px; right: 16px; bottom: 16px; z-index: 200; max-width: 640px; margin: 0 auto;
  background: var(--dark); color: var(--text-on-dark); border: 1px solid var(--line-dark); border-radius: 18px;
  padding: 20px 22px; display: flex; flex-wrap: wrap; align-items: center; gap: 14px 20px; justify-content: space-between;
  box-shadow: 0 24px 60px -20px rgba(0,0,0,.6); opacity: 0; transform: translateY(16px); transition: opacity .3s var(--ease), transform .3s var(--ease); }
.cookiebar.show { opacity: 1; transform: none; }
.cookiebar p { font-size: .92rem; line-height: 1.5; color: var(--dim-on-dark); flex: 1 1 260px; margin: 0; }
.cookiebar a { color: var(--accent); text-decoration: underline; text-underline-offset: 3px; }
.cookiebar-btns { display: flex; gap: 10px; flex: 0 0 auto; }
.cookiebar .btn { padding: 12px 20px; font-size: .85rem; }
.cookiebar .btn--ghost { border-color: var(--line-dark); color: #fff; }
.cookiebar .btn--ghost:hover { border-color: var(--accent); color: var(--accent); box-shadow: none; }
@media (max-width: 720px) {
  .cookiebar { bottom: 86px; padding: 18px; }
  .cookiebar-btns { width: 100%; }
  .cookiebar .btn { flex: 1; justify-content: center; }
}
