/* ===================================================================
   CoolIQ — Website (relaunch) · Hybride Arctic Premium
   Licht-first basis + opt-in donkere "Arctic" secties.
   Bouwt voort op cooliq-tokens.css (typografie / spacing / radius /
   motion). Kleur draait op SEMANTISCHE context-variabelen, zodat
   elk component automatisch meekleurt in licht én donker.
   Positionering: de binnenklimaat-specialist.
   =================================================================== */

:root {
  /* ---------- LICHTE BASIS (standaard context) ---------- */
  --bg:          #EAF1F5;   /* pagina-achtergrond */
  --bg-soft:     #DCE7EE;   /* zachte band */
  --bg-surface:  #F6FBFD;   /* cards / panelen */
  --bg-raised:   #FFFFFF;   /* verhoogd / hover */
  --fg:          #102433;   /* koppen + body */
  --fg-muted:    #54677A;   /* meta / secundair */
  --fg-dim:      #7C8C99;   /* zwakst */
  --line:        rgba(11,34,51,0.13);
  --line-strong: rgba(11,34,51,0.24);
  --accent:      #1488C2;   /* azure op licht */
  --accent-hover:#11719F;
  --accent-tint: rgba(20,136,194,0.12);
  --accent-line: rgba(20,136,194,0.32);
  --on-accent:   #FFFFFF;
  --shadow-card: 0 20px 50px -30px rgba(11,34,51,0.32);
  --shadow-pop:  0 22px 50px -22px rgba(11,34,51,0.28);
  --hatch:       rgba(11,34,51,0.05);
  --frame-line:  rgba(11,34,51,0.22);

  --container: 1240px;
  --gutter: clamp(20px, 5vw, 64px);
  --nav-h: 76px;
}

/* ---------- DONKERE "ARCTIC" CONTEXT ---------- */
.ctx-dark {
  --bg:          #0D1420;
  --bg-soft:     #131C2B;
  --bg-surface:  #1E2938;
  --bg-raised:   #243349;
  --fg:          #EDF4FA;
  --fg-muted:    #93A2B4;
  --fg-dim:      #61728A;
  --line:        rgba(237,244,250,0.10);
  --line-strong: rgba(237,244,250,0.18);
  --accent:      #53C9FF;
  --accent-hover:#35B8EC;
  --accent-tint: rgba(83,201,255,0.12);
  --accent-line: rgba(83,201,255,0.32);
  --on-accent:   #08121C;
  --shadow-card: 0 26px 60px -34px rgba(0,0,0,0.7);
  --shadow-pop:  0 24px 54px -24px rgba(0,0,0,0.62);
  --hatch:       rgba(237,244,250,0.05);
  --frame-line:  rgba(237,244,250,0.18);
  background: var(--bg);
  color: var(--fg);
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { -webkit-font-smoothing: antialiased; text-rendering: optimizeLegibility; scroll-behavior: smooth; }
body {
  font-family: var(--font-body), system-ui, sans-serif;
  background: var(--bg); color: var(--fg); line-height: 1.55; overflow-x: hidden;
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; }

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

/* ====================== TYPOGRAFIE ====================== */
.eyebrow {
  font-family: var(--font-display); font-weight: 600; text-transform: uppercase;
  letter-spacing: 0.2em; font-size: 12px; color: var(--accent);
  display: inline-flex; align-items: center; gap: 11px;
}
.eyebrow::before { content: ""; width: 7px; height: 7px; background: var(--accent); flex: 0 0 auto; }
.eyebrow.plain::before { display: none; }
.mono { font-family: var(--font-mono); letter-spacing: 0.04em; }

h1, h2, h3, h4 { font-family: var(--font-display); font-weight: 800; letter-spacing: -0.03em; line-height: 1.02; color: var(--fg); text-wrap: balance; }
p, li { text-wrap: pretty; }
.h-display { font-size: clamp(46px, 6.4vw, 88px); line-height: 0.98; letter-spacing: -0.038em; }
.h1 { font-size: clamp(38px, 4.8vw, 66px); }
.h2 { font-size: clamp(30px, 3.8vw, 50px); }
.h3 { font-size: clamp(21px, 1.7vw, 25px); letter-spacing: -0.02em; }
.lead { font-size: clamp(17px, 1.4vw, 19px); line-height: 1.6; color: var(--fg-muted); }
.muted { color: var(--fg-muted); }
.accent-txt { color: var(--accent); }

/* ====================== KNOPPEN ====================== */
.btn {
  display: inline-flex; align-items: center; gap: 10px; font-family: var(--font-display);
  font-weight: 600; font-size: 15px; padding: 15px 24px; border-radius: var(--r-sm);
  border: 1.5px solid transparent; text-decoration: none; cursor: pointer; white-space: nowrap;
  transition: transform var(--dur-fast) var(--ease), background var(--dur-fast), color var(--dur-fast), border-color var(--dur-fast);
}
.btn .arr { transition: transform .2s var(--ease); }
.btn:hover .arr { transform: translateX(4px); }
.btn-accent { background: var(--cta); color: var(--cta-ink); font-weight: 700; }
.btn-accent:hover { background: var(--cta-hover); color: var(--cta-ink); transform: translateY(-2px); }
.btn-outline { border-color: var(--line-strong); color: var(--fg); }
.btn-outline:hover { border-color: var(--accent); color: var(--accent); }
.btn-ghost { color: var(--fg); border-color: var(--line-strong); }
.btn-ghost:hover { background: var(--accent-tint); }
.btn.lg { padding: 18px 30px; font-size: 16px; }
.btn.block { width: 100%; justify-content: center; }

/* tegel-link met pijl */
.sq-link {
  display: inline-flex; align-items: center; gap: 14px; text-decoration: none; color: var(--fg);
  font-family: var(--font-display); font-weight: 600; font-size: 12px; text-transform: uppercase; letter-spacing: 0.15em;
}
.sq-link .sq {
  width: 42px; height: 42px; flex: 0 0 auto; display: flex; align-items: center; justify-content: center;
  background: var(--accent-tint); color: var(--accent); border-radius: 3px;
  transition: background var(--dur-fast), color var(--dur-fast), transform var(--dur-fast);
}
.sq-link:hover .sq { background: var(--accent); color: var(--on-accent); transform: translateX(3px); }
.sq-link .sq svg { width: 16px; height: 16px; }

/* ====================== ICONEN ====================== */
.ico { width: 24px; height: 24px; fill: none; stroke: currentColor; stroke-width: 1.6; stroke-linecap: round; stroke-linejoin: round; }
.ico-tile {
  width: 50px; height: 50px; border-radius: 7px; background: var(--accent-tint); color: var(--accent);
  display: inline-flex; align-items: center; justify-content: center; flex: 0 0 auto;
}

/* ====================== NAVIGATIE (donker) ====================== */
.site-header {
  position: sticky; top: 0; z-index: 80; background: #0D1420;
  border-bottom: 1px solid rgba(237,244,250,0.10);
}
.site-header { --fg: #EDF4FA; --accent: #53C9FF; --fg-muted: #93A2B4; color: var(--fg); }
.nav { display: flex; align-items: center; gap: 28px; height: var(--nav-h); }
.brand { display: inline-flex; align-items: center; gap: 11px; text-decoration: none; flex: 0 0 auto; }
.mark { position: relative; width: 32px; height: 32px; border-radius: 8px; background: #EDF4FA; flex: 0 0 auto; }
.mark .frame { position: absolute; inset: 3.2px; border: 1.3px solid rgba(11,34,51,0.32); border-radius: 5.5px; }
.mark .iq { position: absolute; inset: 0; display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display); font-weight: 800; font-size: 13px; color: #0D1420; letter-spacing: -0.02em; }
.mark .tick { position: absolute; right: 4px; bottom: 4px; width: 6px; height: 1.3px; background: rgba(11,34,51,0.32);
  transform: translate(50%,-50%) rotate(-45deg); }
.wordmark { font-family: var(--font-display); font-weight: 800; font-size: 20px; letter-spacing: -0.022em; color: #EDF4FA; }
.wordmark .iq { color: #53C9FF; }

.nav-links { display: flex; align-items: center; gap: 26px; margin-left: 18px; }
.nav-link {
  color: #EDF4FA; text-decoration: none; font-weight: 600; font-size: 13px; text-transform: uppercase;
  letter-spacing: 0.12em; display: inline-flex; align-items: center; gap: 6px; opacity: 0.86;
  transition: opacity var(--dur-fast); white-space: nowrap; background: none; border: none; cursor: pointer;
  font-family: var(--font-display);
}
.nav-link:hover, .nav-link.is-active { opacity: 1; }
.nav-link .caret { color: #53C9FF; font-size: 9px; }
.nav-right { margin-left: auto; display: flex; align-items: center; gap: 18px; }
.nav-phone { font-family: var(--font-mono); font-size: 12px; letter-spacing: 0.06em; color: #93A2B4; white-space: nowrap; text-decoration: none; transition: color .16s ease; }
a.nav-phone:hover { color: var(--accent-on-dark, #53C9FF); }

/* dropdown */
.has-menu { position: relative; }
.menu {
  position: absolute; top: calc(100% + 14px); left: 50%; transform: translateX(-50%) translateY(8px);
  background: #1E2938; border: 1px solid rgba(237,244,250,0.18); border-radius: var(--r-lg);
  padding: 10px; min-width: 290px; box-shadow: 0 24px 54px -24px rgba(0,0,0,0.62); opacity: 0; visibility: hidden;
  transition: opacity var(--dur-fast), transform var(--dur-fast); z-index: 90;
}
.has-menu:hover .menu, .has-menu:focus-within .menu { opacity: 1; visibility: visible; transform: translateX(-50%) translateY(0); }
.menu a { display: flex; gap: 12px; align-items: flex-start; padding: 12px 13px; border-radius: var(--r-md); text-decoration: none; transition: background var(--dur-fast); }
.menu a:hover { background: #243349; }
.menu a .mt { font-family: var(--font-display); font-weight: 700; font-size: 14px; color: #EDF4FA; letter-spacing: -0.01em; }
.menu a .md { font-size: 12.5px; color: #93A2B4; margin-top: 2px; line-height: 1.4; }
.menu a .ico-tile { width: 38px; height: 38px; border-radius: 6px; background: rgba(83,201,255,0.12); color: #53C9FF; }
.menu a .ico-tile .ico { width: 19px; height: 19px; }

/* mobiel menu */
.nav-toggle { display: none; margin-left: auto; background: none; border: 1px solid rgba(237,244,250,0.18); border-radius: var(--r-sm);
  width: 44px; height: 44px; color: #EDF4FA; cursor: pointer; align-items: center; justify-content: center; }
.nav-toggle svg { width: 22px; height: 22px; }
.mobile-panel { display: none; }

/* ---------- mega-menu (premium, ruim) ---------- */
.has-mega { position: relative; }
.mega { position: absolute; top: calc(100% + 13px); left: 0; z-index: 90; display: flex; gap: 10px; padding: 14px;
  background: #1E2938; border: 1px solid rgba(237,244,250,0.18); border-radius: var(--r-xl);
  box-shadow: 0 30px 64px -26px rgba(0,0,0,0.72); width: 700px; max-width: calc(100vw - 32px);
  opacity: 0; visibility: hidden; transition: opacity .16s var(--ease); }
.mega.mega-right { left: auto; right: 0; }
.has-mega:hover .mega, .has-mega:focus-within .mega { opacity: 1; visibility: visible; }
.mega::before { content: ""; position: absolute; bottom: 100%; left: 0; right: 0; height: 16px; }
.mega-list { flex: 1; display: grid; grid-template-columns: 1fr 1fr; gap: 2px; align-content: start; }
.mega-list.one { grid-template-columns: 1fr; }
.mega-item { display: flex; gap: 12px; align-items: flex-start; padding: 11px 13px; border-radius: var(--r-md); text-decoration: none; transition: background .15s; }
.mega-item:hover { background: #243349; }
.mega-item .mi-n { font-family: var(--font-mono); font-size: 11px; color: #53C9FF; padding-top: 2px; flex: 0 0 auto; }
.mega-item .mt { font-family: var(--font-display); font-weight: 600; font-size: 14px; color: #EDF4FA; letter-spacing: -0.01em; line-height: 1.2; display: block; }
.mega-item .md { font-size: 12px; color: #93A2B4; margin-top: 3px; line-height: 1.4; display: block; }
.mega-panel { width: 272px; flex: 0 0 auto; display: flex; flex-direction: column; background: linear-gradient(180deg, #26384f, #1a2536);
  border: 1px solid rgba(83,201,255,0.32); border-radius: var(--r-lg); padding: 22px; text-decoration: none; }
.mega-panel .mp-h { font-family: var(--font-display); font-weight: 800; font-size: 18px; color: #EDF4FA; letter-spacing: -0.02em; line-height: 1.16; }
.mega-panel .mp-t { font-size: 12.5px; color: #93A2B4; margin-top: 10px; line-height: 1.5; }
.mega-panel .mp-cta { margin-top: 18px; display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  font-family: var(--font-display); font-weight: 600; font-size: 13px; text-decoration: none; color: #08121C; background: #53C9FF; padding: 11px 15px; border-radius: var(--r-sm); transition: background .15s; }
.mega-panel .mp-cta.ghost { background: transparent; color: #53C9FF; border: 1px solid rgba(83,201,255,0.4); }
.mega-panel:hover .mp-cta { background: #35B8EC; }
.mega-panel:hover .mp-cta.ghost { background: rgba(83,201,255,0.12); }
/* verrijkte mega-onderdelen */
.mega-list .mlbl { font-family: var(--font-mono); font-size: 10.5px; letter-spacing: 0.14em; text-transform: uppercase; color: #61728A; padding: 4px 13px 10px; grid-column: 1 / -1; }
.mega-panel .mp-sub { font-family: var(--font-mono); font-size: 10px; letter-spacing: 0.13em; text-transform: uppercase; color: #93A2B4; margin-top: 18px; margin-bottom: 8px; }
.mega-pop { display: flex; flex-direction: column; gap: 1px; }
.mega-pop a { display: flex; align-items: center; gap: 10px; padding: 8px 9px; margin: 0 -9px; border-radius: 8px; text-decoration: none; transition: background .15s; }
.mega-pop a:hover { background: rgba(237,244,250,0.06); }
.mega-pop .pi { width: 26px; height: 26px; border-radius: 6px; background: rgba(83,201,255,0.12); color: #53C9FF; display: flex; align-items: center; justify-content: center; flex: 0 0 auto; }
.mega-pop .pi .ico { width: 15px; height: 15px; }
.mega-pop .pt { font-size: 13px; color: #EDF4FA; font-weight: 500; flex: 1; }
.mega-pop .pa { color: #61728A; font-size: 13px; }
.mega-steps { display: flex; align-items: center; gap: 7px; margin: 14px 0 4px; }
.mega-steps .s { width: 30px; height: 30px; border-radius: 50%; border: 1px solid rgba(83,201,255,0.42); color: #53C9FF; font-family: var(--font-mono); font-size: 11px; display: flex; align-items: center; justify-content: center; flex: 0 0 auto; }
.mega-steps .ar { color: #61728A; font-size: 11px; }
.mega-check { display: flex; flex-direction: column; gap: 9px; margin: 14px 0 4px; }
.mega-check .ci { display: flex; gap: 9px; align-items: center; font-size: 13px; color: #EDF4FA; }
.mega-check .ci .ico { width: 16px; height: 16px; color: #53C9FF; flex: 0 0 auto; }
.mega-art { display: flex; flex-direction: column; gap: 1px; margin: 12px 0 4px; }
.mega-art a { display: flex; align-items: flex-start; gap: 10px; padding: 9px; margin: 0 -9px; border-radius: 8px; text-decoration: none; transition: background .15s; }
.mega-art a:hover { background: rgba(237,244,250,0.06); }
.mega-art .at { font-size: 13px; color: #EDF4FA; font-weight: 500; line-height: 1.3; flex: 1; }
.mega-art .aa { color: #53C9FF; flex: 0 0 auto; }
@media (max-width: 1100px) { .mega { width: 580px; } }
.mobile-panel .mh { display: block; font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase; color: #61728A; margin: 24px 0 4px; }
.mobile-panel .mh:first-child { margin-top: 2px; }

/* ====================== SECTIE-RITME ====================== */
.section { padding-block: var(--section-y); background: var(--bg); }
.section--soft { background: var(--bg-soft); }
.section--surface { background: var(--bg-surface); }
.section--dark { background: #0D1420; }

.section-head { max-width: 760px; margin-bottom: clamp(36px, 5vw, 56px); }
.section-head .eyebrow { margin-bottom: 20px; }
.section-head .lead { margin-top: 20px; }
.center { text-align: center; margin-inline: auto; }

/* ====================== GRIDS ====================== */
.grid { display: grid; gap: 24px; }
.g-2 { grid-template-columns: repeat(2, 1fr); }
.g-3 { grid-template-columns: repeat(3, 1fr); }
.g-4 { grid-template-columns: repeat(4, 1fr); }

/* ====================== KAARTEN ====================== */
.card {
  background: var(--bg-surface); border: 1px solid var(--line); border-radius: var(--r-lg); padding: 30px;
  display: flex; flex-direction: column; box-shadow: var(--shadow-card);
  transition: transform var(--dur) var(--ease), border-color var(--dur), background var(--dur);
}
.card:hover { transform: translateY(-5px); border-color: var(--accent-line); }
.ctx-dark .card { box-shadow: none; }
.ctx-dark .card:hover { background: var(--bg-raised); }

/* probleem-instapkaart */
.prob {
  display: flex; align-items: center; gap: 18px; padding: 22px 24px; background: var(--bg-surface);
  border: 1px solid var(--line); border-radius: var(--r-lg); text-decoration: none; color: var(--fg);
  transition: transform var(--dur) var(--ease), border-color var(--dur), background var(--dur);
}
.prob:hover { transform: translateY(-3px); border-color: var(--accent-line); }
.prob .ptxt { flex: 1; }
.prob .pt { font-family: var(--font-display); font-weight: 700; font-size: 16px; letter-spacing: -0.01em; }
.prob .pd { font-size: 13px; color: var(--fg-muted); margin-top: 3px; }
.prob .pa { color: var(--accent); flex: 0 0 auto; transition: transform var(--dur-fast); }
.prob:hover .pa { transform: translateX(4px); }

/* product-kaart */
.prod { position: relative; }
.prod .chead { display: flex; align-items: center; gap: 14px; margin-bottom: 20px; }
.prod .num { font-family: var(--font-mono); font-size: 13px; color: var(--fg-dim); letter-spacing: 0.1em; }
.prod .plabel { font-family: var(--font-display); font-weight: 600; font-size: 11px; text-transform: uppercase; letter-spacing: 0.16em; color: var(--accent); }
.prod h3 { margin-bottom: 12px; }
.prod p { font-size: 14.5px; line-height: 1.55; color: var(--fg-muted); }
.prod .metric { margin-top: 22px; padding-top: 20px; border-top: 1px solid var(--line); display: flex; align-items: baseline; gap: 12px; }
.prod .mv { font-family: var(--font-display); font-weight: 800; font-size: 34px; letter-spacing: -0.03em; color: var(--fg); line-height: 1; }
.prod .mu { font-family: var(--font-mono); font-size: 11px; color: var(--accent); letter-spacing: 0.06em; }
.prod .mk { display: block; font-size: 10px; text-transform: uppercase; letter-spacing: 0.13em; color: var(--fg-dim); font-weight: 600; margin-top: 4px; }
.prod .for { margin-top: 20px; display: flex; flex-direction: column; gap: 8px; }
.prod .for li { display: flex; gap: 10px; align-items: flex-start; font-size: 13.5px; color: var(--fg-muted); list-style: none; }
.prod .for li .ico { width: 17px; height: 17px; color: var(--accent); flex: 0 0 auto; margin-top: 2px; }
.prod .sq-link { margin-top: 24px; padding-top: 22px; border-top: 1px solid var(--line); }

/* reden / trust-cel */
.reason-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 36px 40px; }
@media (max-width: 860px) { .reason-grid { grid-template-columns: repeat(2, 1fr) !important; } }
@media (max-width: 560px) { .reason-grid { grid-template-columns: 1fr !important; } }
.reason { display: flex; flex-direction: column; gap: 14px; }
.reason h4 { font-size: 18px; }
.reason p { font-size: 14px; color: var(--fg-muted); line-height: 1.55; }

/* metric-strip */
.trust-strip { display: flex; flex-wrap: wrap; gap: 14px 32px; align-items: center; }
.trust-strip .ti { display: inline-flex; align-items: center; gap: 10px; font-size: 13px; color: var(--fg-muted); flex: 0 0 auto; white-space: nowrap; }
.trust-strip .ti .ico { width: 18px; height: 18px; color: var(--accent); }
.trust-strip .ti strong { color: var(--fg); font-weight: 600; }

/* ====================== FIGUUR / PLACEHOLDER ====================== */
.figure {
  position: relative; border-radius: var(--r-xl); overflow: hidden; background-color: var(--bg-surface);
  background-image: repeating-linear-gradient(45deg, var(--hatch) 0 1px, transparent 1px 11px);
  border: 1px solid var(--line);
}
.figure::after { content: ""; position: absolute; inset: 16px; border: 1.5px solid var(--frame-line); border-radius: 8px; pointer-events: none; }
.figure .fig-tag { position: absolute; bottom: 20px; left: 22px; font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.1em;
  color: var(--fg-muted); text-transform: uppercase; z-index: 2; }
.figure.r-16x9 { aspect-ratio: 16/9; }
.figure.r-4x3 { aspect-ratio: 4/3; }
.figure.r-1x1 { aspect-ratio: 1/1; }
.figure.r-3x2 { aspect-ratio: 3/2; }

/* feature-chip op figuur */
.fig-chip { position: absolute; top: 20px; right: 20px; background: #1E2938; border: 1px solid rgba(237,244,250,0.18);
  border-radius: var(--r-lg); padding: 18px 20px; max-width: 250px; box-shadow: 0 24px 54px -24px rgba(0,0,0,0.62); z-index: 2; color: #EDF4FA; }
.fig-chip .eyebrow { margin-bottom: 12px; font-size: 11px; color: #53C9FF; }
.fig-chip .eyebrow::before { background: #53C9FF; }
.fig-chip .ct { font-family: var(--font-display); font-weight: 700; font-size: 15px; color: #EDF4FA; }
.fig-chip .cv { margin-top: 6px; display: flex; align-items: baseline; justify-content: space-between; gap: 14px; }
.fig-chip .cv .v { font-family: var(--font-display); font-weight: 800; font-size: 22px; letter-spacing: -0.02em; }
.fig-chip .cv .v .a { color: #53C9FF; }

/* ====================== STAPPEN / PROCES ====================== */
.steps { display: grid; gap: 28px; }
.step { position: relative; padding-top: 26px; border-top: 2px solid var(--line-strong); }
.step .sn { font-family: var(--font-mono); font-size: 12px; color: var(--accent); letter-spacing: 0.1em; }
.step h4 { margin-top: 12px; font-size: 19px; }
.step p { margin-top: 10px; font-size: 14px; color: var(--fg-muted); line-height: 1.55; }

/* ====================== FAQ ====================== */
.faq { border-top: 1px solid var(--line); }
.faq .item { border-bottom: 1px solid var(--line); }
.faq .q { width: 100%; background: none; border: none; cursor: pointer; text-align: left; color: var(--fg);
  font-family: var(--font-display); font-weight: 700; font-size: clamp(17px, 1.5vw, 20px); letter-spacing: -0.01em;
  padding: 26px 48px 26px 0; position: relative; display: flex; }
.faq .q .pm { position: absolute; right: 4px; top: 50%; transform: translateY(-50%); width: 22px; height: 22px; color: var(--accent); transition: transform var(--dur); }
.faq .item.open .q .pm { transform: translateY(-50%) rotate(45deg); }
.faq .a { max-height: 0; overflow: hidden; transition: max-height var(--dur) var(--ease); }
.faq .a .inner { padding: 0 60px 26px 0; font-size: 15px; line-height: 1.65; color: var(--fg-muted); }

/* ====================== CTA-BAND ====================== */
.cta-inner { display: flex; align-items: center; justify-content: space-between; gap: 40px; flex-wrap: wrap; }
.cta-inner .ct-right { text-align: right; }
.cta-inner .ct-right .nav-phone { margin-top: 14px; display: block; color: var(--fg-muted); }
.cta-accent { background: linear-gradient(180deg, var(--bg-raised), var(--bg-surface)); border: 1px solid var(--accent-line);
  border-radius: var(--r-xl); padding: clamp(36px, 5vw, 64px); }

/* ====================== FOOTER (donker) ====================== */
.site-footer { background: #091019; color: #EDF4FA; border-top: 1px solid rgba(237,244,250,0.10); padding-top: clamp(56px, 6vw, 80px); }
.site-footer { --fg: #EDF4FA; --fg-muted: #93A2B4; --accent: #53C9FF; }
.foot-grid { display: grid; grid-template-columns: 1.6fr repeat(4, 1fr); gap: 40px; }
.foot-brand { max-width: 300px; }
.foot-brand .wordmark, .foot-brand .mark { }
.foot-brand p { margin-top: 18px; font-size: 13.5px; color: #93A2B4; line-height: 1.6; }
.foot-col h5 { font-family: var(--font-display); font-weight: 700; font-size: 12px; text-transform: uppercase; letter-spacing: 0.14em; color: #EDF4FA; margin-bottom: 16px; }
.foot-col a { display: block; text-decoration: none; color: #93A2B4; font-size: 13.5px; padding: 5px 0; transition: color var(--dur-fast); }
.foot-col a:hover { color: #53C9FF; }
.foot-bottom { margin-top: clamp(48px, 6vw, 72px); padding: 26px 0; border-top: 1px solid rgba(237,244,250,0.10);
  display: flex; align-items: center; justify-content: space-between; gap: 20px; flex-wrap: wrap; }
.foot-bottom .fb-meta { font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.06em; color: #61728A; text-transform: uppercase; }

/* ====================== REVEAL ====================== */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity var(--dur-slow) var(--ease), transform var(--dur-slow) var(--ease); }
.reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) { .reveal { opacity: 1; transform: none; transition: none; } }

/* ====================== RESPONSIVE ====================== */
@media (max-width: 1040px) {
  .foot-grid { grid-template-columns: 1fr 1fr 1fr; }
  .foot-brand { grid-column: 1 / -1; max-width: 420px; }
}
@media (max-width: 1280px) {
  .nav-links, .nav-right .nav-phone, .nav-right .btn { display: none; }
  .nav-toggle { display: inline-flex; }
  .mobile-panel.open { display: block; position: fixed; inset: var(--nav-h) 0 0; background: #0D1420; z-index: 70;
    padding: 28px var(--gutter); overflow-y: auto; }
  .mobile-panel .ml { display: block; font-family: var(--font-display); font-weight: 700; font-size: 22px; letter-spacing: -0.02em;
    color: #EDF4FA; text-decoration: none; padding: 16px 0; border-bottom: 1px solid rgba(237,244,250,0.10); }
  .mobile-panel .ml .sub { display: block; font-family: var(--font-body); font-weight: 400; font-size: 13px; color: #93A2B4; margin-top: 4px; letter-spacing: 0; }
  .mobile-panel .mcta { margin-top: 28px; display: flex; flex-direction: column; gap: 12px; }
}
@media (max-width: 920px) {
  .g-3, .g-4 { grid-template-columns: repeat(2, 1fr); }
  .cta-inner .ct-right { text-align: left; }
}
@media (max-width: 640px) {
  .g-2, .g-3, .g-4 { grid-template-columns: 1fr; }
  .trust-strip { gap: 12px 24px; }
}

/* ====================== COMMERCIELE PSYCHOLOGIE ======================
   Toegepast volgens de StorageIQ-standaard: hero-trustbar, geldvragen in
   vaste volgorde (opbrengst → anker → risico → drempel → urgentie) en
   proof vlak voor de eind-CTA. Cijfers blijven placeholder tot bevestigd. */

/* hero trustbar */
.trustbar { margin-top: 26px; padding-top: 22px; border-top: 1px solid var(--line); }
.trustbar .ti { font-size: 12.5px; }
.trustbar .ti .src { font-family: var(--font-mono); font-size: 10px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--fg-dim); }

/* geldvragen — vaste volgorde van geruststelling */
.money { display: grid; grid-template-columns: repeat(5, 1fr); gap: 14px; margin-top: 8px; }
.money .mz { background: var(--bg-surface); border: 1px solid var(--line); border-radius: var(--r-lg);
  padding: 22px 20px; display: flex; flex-direction: column; gap: 9px; }
.money .mz .z { font-family: var(--font-mono); font-size: 10px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--accent); }
.money .mz .v { font-family: var(--font-display); font-weight: 800; font-size: 23px; letter-spacing: -0.025em; color: var(--fg); line-height: 1.05; }
.money .mz .v.tbd { color: var(--fg-dim); font-size: 15px; font-weight: 700; border-bottom: 1px dashed var(--line-strong); align-self: flex-start; padding-bottom: 2px; }
.money .mz .d { font-size: 13px; color: var(--fg-muted); line-height: 1.5; }
.money-note { margin-top: 18px; font-size: 12.5px; color: var(--fg-dim); max-width: 76ch; }

/* proof vlak voor de eind-CTA */
.pquote { display: grid; grid-template-columns: auto 1fr; gap: 22px; align-items: start;
  background: var(--bg-surface); border: 1px solid var(--line); border-radius: var(--r-xl); padding: 30px 32px; }
.pquote .av { width: 54px; height: 54px; border-radius: 100px; background: var(--bg-raised); border: 1px solid var(--line);
  display: grid; place-items: center; font-family: var(--font-mono); font-size: 10px; color: var(--fg-dim); text-align: center; line-height: 1.2; }
.pquote blockquote { margin: 0; font-family: var(--font-display); font-weight: 600; font-size: clamp(17px, 2vw, 21px);
  letter-spacing: -0.02em; color: var(--fg); line-height: 1.4; }
.pquote .meta { margin-top: 12px; display: flex; flex-wrap: wrap; gap: 8px 18px; font-size: 12.5px; color: var(--fg-muted); }
.pquote .meta .src { font-family: var(--font-mono); font-size: 10px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--fg-dim); }
.pquote .stars { color: var(--accent); letter-spacing: 0.12em; }

@media (max-width: 1080px) { .money { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 720px) { .money { grid-template-columns: 1fr; } .pquote { grid-template-columns: 1fr; gap: 16px; padding: 24px; } }

/* ====================== CTA-DEKKING (bureau-advies) ====================== */

/* zachte conversie in elk blok */
.softcta { display: inline-flex; align-items: center; gap: 9px; margin-top: 26px;
  font-family: var(--font-display); font-weight: 700; font-size: 14.5px; letter-spacing: -0.01em;
  color: var(--cta); text-decoration: none; border-bottom: 1.5px solid var(--cta-line); padding-bottom: 3px;
  transition: color .2s var(--ease), border-color .2s var(--ease); }
.softcta:hover { color: var(--cta-hover); border-color: var(--cta); }
.softcta .arr { transition: transform .2s var(--ease); }
.softcta:hover .arr { transform: translateX(4px); }
.ctx-dark .softcta { color: var(--cta); }

/* inline formulier in de eind-CTA — geen doorklik naar contactpagina */
.cta-form { display: grid; grid-template-columns: 1fr 1fr; gap: 11px; margin-top: 4px; width: 100%; }
/* het formulier lijnt altijd links uit, ook in rechts-uitgelijnde CTA-panelen */
.cta-form, .cta-form label, .cta-form .reassure, .cta-alt { text-align: left; }
.cta-panel .cp-r { min-width: min(360px, 100%); }
.cta-inner .ct-right:has(.cta-form) { text-align: left; }
.cta-form .f-full { grid-column: 1 / -1; }
.cta-form label { display: block; font-family: var(--font-mono); font-size: 9.5px; text-transform: uppercase;
  letter-spacing: 0.12em; color: var(--fg-dim); margin-bottom: 6px; }
.cta-form input, .cta-form select { width: 100%; background: var(--bg-surface); border: 1px solid var(--line-strong);
  border-radius: var(--r-md); padding: 13px 14px; font-family: var(--font-body); font-size: 15px; color: var(--fg); }
.cta-form input:focus, .cta-form select:focus { outline: none; border-color: var(--cta); box-shadow: 0 0 0 3px var(--cta-tint); }
.cta-form input::placeholder { color: var(--fg-dim); }
.cta-form .btn { width: 100%; justify-content: center; }
.cta-form .reassure { grid-column: 1 / -1; display: flex; align-items: center; gap: 9px; font-size: 12.5px; color: var(--fg-muted); }
.cta-form .reassure .ico { width: 15px; height: 15px; color: var(--accent); flex: 0 0 auto; }
.cta-alt { margin-top: 12px; font-size: 13px; color: var(--fg-muted); }
.cta-alt a { color: var(--fg); text-decoration: underline; text-underline-offset: 3px; }

/* sticky mobiele CTA-balk */
.stickycta { display: none; }
@media (max-width: 860px) {
  .stickycta { display: flex; position: fixed; left: 0; right: 0; bottom: 0; z-index: 80; gap: 10px;
    padding: 11px 14px calc(11px + env(safe-area-inset-bottom));
    background: rgba(13,20,32,0.94); backdrop-filter: blur(14px); border-top: 1px solid rgba(246,251,253,0.12); }
  .stickycta .btn { flex: 1; justify-content: center; padding: 15px 16px; font-size: 15px; }
  .stickycta .btn-ghost { flex: 0 0 auto; color: #F6FBFD; border-color: rgba(246,251,253,0.28); }
  body { padding-bottom: 76px; }
}
@media (max-width: 720px) { .cta-form { grid-template-columns: 1fr; } }
