/* ═══════════════════════════════════════════════
   LAUNDRY AUTOMATIC LAAK — WASPROGRAMMA CONCEPT
   Licht thema · IJswit · Elektrisch blauw
   Display: Unbounded · Body: Hanken Grotesk
   Machine: Chivo Mono
   ═══════════════════════════════════════════════ */

:root {
  --ijswit: #F4F9FF;
  --wit: #FFFFFF;
  --wolk: #E6F0FC;
  --inkt: #0A2450;
  --inkt-70: rgba(10, 36, 80, 0.72);
  --inkt-45: rgba(10, 36, 80, 0.45);
  --inkt-15: rgba(10, 36, 80, 0.14);
  --inkt-08: rgba(10, 36, 80, 0.07);
  --elektrisch: #1E6DFF;
  --elektrisch-diep: #0F4FD6;
  --ijs: #4FC3F7;
  --nacht: #041A3D;
  --nacht-2: #08265A;
  --schuim: #EAF4FF;
  --schuim-45: rgba(234, 244, 255, 0.45);
  --schuim-15: rgba(234, 244, 255, 0.14);
  --groen: #1FB86B;

  --font-display: "Unbounded", sans-serif;
  --font-body: "Hanken Grotesk", sans-serif;
  --font-mono: "Chivo Mono", monospace;

  --shadow-card: 0 12px 34px rgba(10, 36, 80, 0.08);
  --shadow-lift: 0 22px 54px rgba(10, 36, 80, 0.14);
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; scroll-padding-top: 90px; }

body {
  font-family: var(--font-body);
  color: var(--inkt);
  line-height: 1.65;
  background:
    radial-gradient(1000px 600px at 85% -8%, rgba(30, 109, 255, 0.10), transparent 60%),
    radial-gradient(800px 600px at 0% 30%, rgba(79, 195, 247, 0.10), transparent 55%),
    var(--ijswit);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

::selection { background: var(--elektrisch); color: var(--wit); }

a:focus-visible, summary:focus-visible {
  outline: 3px solid var(--elektrisch);
  outline-offset: 3px;
  border-radius: 4px;
}

/* ── MACHINEDISPLAY BALK ─────────────────── */
.display-bar {
  position: fixed;
  top: 14px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 100;
  width: min(1100px, calc(100vw - 28px));
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 12px 20px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid var(--inkt-15);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 14px 40px rgba(10, 36, 80, 0.12);
}
.display-brand { display: flex; align-items: center; gap: 12px; text-decoration: none; color: var(--inkt); }
.display-brand-mark {
  width: 30px; height: 30px;
  border-radius: 9px;
  box-shadow: 0 4px 14px rgba(30, 109, 255, 0.35);
}
.display-brand-name { font-family: var(--font-display); font-size: 0.72rem; font-weight: 600; letter-spacing: 0.1em; }
.display-brand-name b { color: var(--elektrisch); font-weight: 800; }

.display-readout {
  display: flex;
  align-items: center;
  gap: 14px;
  font-family: var(--font-mono);
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  color: #8FD8FF;
  padding: 8px 18px;
  border-radius: 10px;
  background: var(--nacht);
  border: 1px solid rgba(79, 195, 247, 0.3);
  box-shadow: inset 0 0 22px rgba(30, 109, 255, 0.25);
  text-shadow: 0 0 12px rgba(111, 214, 255, 0.65);
}
.readout-cell { display: inline-flex; align-items: center; gap: 8px; }
.readout-sep { color: rgba(143, 216, 255, 0.3); text-shadow: none; }
.led { width: 8px; height: 8px; border-radius: 50%; background: #3CE08A; box-shadow: 0 0 10px #3CE08A; animation: blink 2.4s infinite; }
.led.closed { background: #FF5A5A; box-shadow: 0 0 10px #FF5A5A; animation: none; }
@keyframes blink { 0%,100% { opacity: 1; } 50% { opacity: 0.35; } }

.display-cta {
  font-family: var(--font-mono);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-decoration: none;
  color: var(--wit);
  background: var(--elektrisch);
  padding: 10px 18px;
  border-radius: 10px;
  transition: background 0.25s, transform 0.25s var(--ease);
  white-space: nowrap;
  box-shadow: 0 8px 22px rgba(30, 109, 255, 0.35);
}
.display-cta:hover { background: var(--elektrisch-diep); transform: translateY(-2px); }

/* ── PROGRAMMARAIL ───────────────────────── */
.program-rail {
  position: fixed;
  right: 26px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 90;
  display: flex;
  flex-direction: column;
  gap: 26px;
}
.rail-line {
  position: absolute;
  left: 5px;
  top: 8px;
  bottom: 8px;
  width: 2px;
  background: var(--inkt-15);
  border-radius: 2px;
}
.rail-fill {
  width: 100%;
  height: 0%;
  background: linear-gradient(180deg, var(--ijs), var(--elektrisch));
  border-radius: 2px;
  transition: height 0.2s linear;
}
.program-rail a {
  position: relative;
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}
.program-rail a i {
  width: 12px; height: 12px;
  border-radius: 50%;
  background: var(--wit);
  border: 2px solid var(--inkt-45);
  transition: 0.3s;
  flex: none;
}
.program-rail a span {
  font-family: var(--font-mono);
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--inkt-45);
  opacity: 0;
  transform: translateX(6px);
  transition: 0.3s var(--ease);
  order: -1;
  text-align: right;
  width: 84px;
}
.program-rail a:hover span { opacity: 1; transform: none; }
.program-rail a.active i { background: var(--elektrisch); border-color: var(--elektrisch); box-shadow: 0 0 0 5px rgba(30, 109, 255, 0.18); }
.program-rail a.active span { opacity: 1; transform: none; color: var(--elektrisch); }

/* ── FASE SECTIES ────────────────────────── */
.phase { position: relative; padding: 130px 0; }
.phase-inner { width: min(1080px, 90vw); margin: 0 auto; }
.phase-alt {
  background: var(--wolk);
  border-top: 1px solid var(--inkt-08);
  border-bottom: 1px solid var(--inkt-08);
}

.phase-tag {
  font-family: var(--font-mono);
  font-size: 0.76rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  color: var(--inkt-45);
  margin-bottom: 26px;
}
.phase-tag b {
  color: var(--wit);
  background: var(--elektrisch);
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 6px;
  margin-right: 14px;
}

.phase-title {
  font-family: var(--font-display);
  font-size: clamp(1.9rem, 4.6vw, 3.3rem);
  font-weight: 800;
  line-height: 1.12;
  letter-spacing: -0.01em;
  margin-bottom: 60px;
  max-width: 800px;
}
.glow { color: var(--elektrisch); }

/* ── HERO ────────────────────────────────── */
.phase-hero {
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 150px 0 90px;
  overflow: hidden;
}
.hero-tag { width: min(1200px, 92vw); margin: 0 auto 30px; }

.caustics {
  position: absolute;
  inset: -20%;
  background:
    radial-gradient(600px 400px at 20% 30%, rgba(30, 109, 255, 0.12), transparent 60%),
    radial-gradient(500px 500px at 75% 20%, rgba(79, 195, 247, 0.14), transparent 55%),
    radial-gradient(700px 500px at 60% 85%, rgba(30, 109, 255, 0.10), transparent 60%);
  animation: caustics 16s ease-in-out infinite alternate;
  pointer-events: none;
}
@keyframes caustics {
  from { transform: translate3d(-2%, -1%, 0) scale(1); }
  to   { transform: translate3d(2%, 2%, 0) scale(1.06); }
}

.hero-bubbles i {
  position: absolute;
  bottom: -6vh;
  border-radius: 50%;
  border: 1px solid rgba(30, 109, 255, 0.28);
  background: radial-gradient(circle at 32% 30%, rgba(255, 255, 255, 0.9), rgba(79, 195, 247, 0.06) 70%);
  animation: bubble-rise linear infinite;
}
.hero-bubbles i:nth-child(1)  { left: 6%;  width: 22px; height: 22px; animation-duration: 13s; }
.hero-bubbles i:nth-child(2)  { left: 14%; width: 10px; height: 10px; animation-duration: 17s; animation-delay: 2s; }
.hero-bubbles i:nth-child(3)  { left: 24%; width: 30px; height: 30px; animation-duration: 11s; animation-delay: 4s; }
.hero-bubbles i:nth-child(4)  { left: 37%; width: 12px; height: 12px; animation-duration: 19s; animation-delay: 1s; }
.hero-bubbles i:nth-child(5)  { left: 49%; width: 18px; height: 18px; animation-duration: 14s; animation-delay: 6s; }
.hero-bubbles i:nth-child(6)  { left: 60%; width: 8px;  height: 8px;  animation-duration: 21s; animation-delay: 3s; }
.hero-bubbles i:nth-child(7)  { left: 70%; width: 26px; height: 26px; animation-duration: 12s; animation-delay: 7s; }
.hero-bubbles i:nth-child(8)  { left: 80%; width: 14px; height: 14px; animation-duration: 16s; animation-delay: 5s; }
.hero-bubbles i:nth-child(9)  { left: 88%; width: 20px; height: 20px; animation-duration: 13.5s; animation-delay: 8s; }
.hero-bubbles i:nth-child(10) { left: 94%; width: 9px;  height: 9px;  animation-duration: 18s; animation-delay: 10s; }
@keyframes bubble-rise {
  to { transform: translateY(-115vh); opacity: 0; }
}

.hero-title {
  width: min(1200px, 92vw);
  margin: 0 auto;
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(2.6rem, 10.2vw, 8.2rem);
  line-height: 0.98;
  letter-spacing: -0.015em;
  text-transform: uppercase;
}
.hero-title .line { display: block; }
.line-outline {
  color: transparent;
  -webkit-text-stroke: 2px rgba(30, 109, 255, 0.55);
}
.line-solid { color: var(--inkt); }
.line-solid:last-child {
  background: linear-gradient(92deg, var(--inkt) 10%, var(--elektrisch) 60%, var(--ijs) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.dial-wrap {
  display: inline-block;
  vertical-align: baseline;
  width: 0.92em;
  height: 0.92em;
  margin: 0 0.12em;
  transform: translateY(0.12em);
}
.dial { width: 100%; height: 100%; }
.dial-ring { fill: none; stroke: rgba(30, 109, 255, 0.35); stroke-width: 3; }
.dial-ticks line { stroke: rgba(30, 109, 255, 0.55); stroke-width: 3; stroke-linecap: round; }
.dial-face { fill: var(--wit); stroke: var(--elektrisch); stroke-width: 3; }
.dial-needle { stroke: var(--elektrisch); stroke-width: 6; stroke-linecap: round; }
.dial-dot { fill: var(--elektrisch); }
#heroDial { filter: drop-shadow(0 10px 22px rgba(30, 109, 255, 0.3)); will-change: transform; }

.hero-foot {
  width: min(1200px, 92vw);
  margin: 56px auto 0;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 40px;
}
.hero-sub { max-width: 460px; font-size: 1.12rem; color: var(--inkt-70); }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }

.btn-fill, .btn-line {
  font-family: var(--font-mono);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-decoration: none;
  padding: 16px 28px;
  border-radius: 12px;
  transition: transform 0.25s var(--ease), background 0.25s, box-shadow 0.25s;
  white-space: nowrap;
}
.btn-fill {
  color: var(--wit);
  background: linear-gradient(120deg, var(--elektrisch), var(--elektrisch-diep));
  box-shadow: 0 14px 34px rgba(30, 109, 255, 0.35);
}
.btn-fill:hover { transform: translateY(-3px); box-shadow: 0 20px 44px rgba(30, 109, 255, 0.45); }
.btn-line {
  color: var(--inkt);
  border: 1px solid var(--inkt-45);
  background: rgba(255, 255, 255, 0.6);
}
.btn-line:hover { transform: translateY(-3px); background: var(--wit); border-color: var(--elektrisch); color: var(--elektrisch); }
.btn-big { padding: 19px 34px; font-size: 0.88rem; }

.scroll-hint {
  position: absolute;
  bottom: 26px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-mono);
  font-size: 0.68rem;
  letter-spacing: 0.24em;
  color: var(--inkt-45);
}
.scroll-hint i { font-style: normal; animation: hint 1.8s ease-in-out infinite; }
@keyframes hint { 0%,100% { transform: translateY(0); } 50% { transform: translateY(6px); } }

/* ── GIGANTISCHE MARQUEE ─────────────────── */
.giant-marquee {
  overflow: hidden;
  border-top: 1px solid var(--inkt-08);
  border-bottom: 1px solid var(--inkt-08);
  padding: 26px 0;
  background: var(--wit);
}
.giant-track {
  display: flex;
  width: max-content;
  animation: marquee 26s linear infinite;
}
.giant-track span {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(2.4rem, 6.5vw, 5rem);
  text-transform: uppercase;
  letter-spacing: 0.02em;
  color: transparent;
  -webkit-text-stroke: 1.6px rgba(30, 109, 255, 0.35);
  white-space: nowrap;
}
@keyframes marquee { to { transform: translateX(-50%); } }

/* ── FASE 01 · SPECS ─────────────────────── */
.spec-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
}
.spec {
  display: flex;
  gap: 26px;
  align-items: flex-start;
  padding: 38px 34px;
  border-radius: 20px;
  background: var(--wit);
  border: 1px solid var(--inkt-08);
  box-shadow: var(--shadow-card);
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease);
}
.spec:hover { transform: translateY(-5px); box-shadow: var(--shadow-lift); }
.spec-num {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 2.1rem;
  line-height: 1;
  color: var(--elektrisch);
  min-width: 104px;
}
.spec-num small { font-size: 0.85rem; font-weight: 600; margin-left: 4px; color: var(--inkt-45); }
.spec h3 { font-family: var(--font-display); font-size: 1.02rem; font-weight: 600; margin-bottom: 10px; }
.spec p { color: var(--inkt-70); font-size: 0.98rem; max-width: 340px; }

/* ── FASE 02 · STAPPEN ───────────────────── */
.cycle-steps {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.cycle-step {
  position: relative;
  padding: 36px 30px 46px;
  border-radius: 20px;
  background: var(--wit);
  border: 1px solid var(--inkt-08);
  box-shadow: var(--shadow-card);
  overflow: hidden;
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease);
}
.cycle-step:hover { transform: translateY(-6px); box-shadow: var(--shadow-lift); }
.cycle-index {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  color: var(--elektrisch);
}
.cycle-step h3 { font-family: var(--font-display); font-size: 1.12rem; font-weight: 600; margin: 16px 0 12px; }
.cycle-step p { color: var(--inkt-70); font-size: 0.97rem; }
.cycle-bar {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 6px;
  background: var(--wolk);
}
.cycle-bar i {
  display: block;
  height: 100%;
  background: linear-gradient(90deg, var(--ijs), var(--elektrisch));
}

/* ── FASE 03 · PANEEL (donker machinedisplay) ── */
.panel {
  border-radius: 22px;
  background: linear-gradient(170deg, var(--nacht-2), var(--nacht));
  color: var(--schuim);
  border: 1px solid rgba(79, 195, 247, 0.2);
  box-shadow: 0 30px 70px rgba(10, 36, 80, 0.3);
  padding: 14px 34px 30px;
}
.panel-head {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 18px;
  padding: 26px 0 14px;
}
.panel-head-second { margin-top: 26px; border-top: 1px solid var(--schuim-15); padding-top: 32px; }
.panel-title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1rem;
  letter-spacing: 0.18em;
  color: #8FD8FF;
}
.panel-note { font-family: var(--font-mono); font-size: 0.7rem; letter-spacing: 0.18em; color: var(--schuim-45); }

.panel-row {
  display: flex;
  align-items: baseline;
  gap: 18px;
  padding: 20px 0;
  border-top: 1px solid rgba(234, 244, 255, 0.09);
  transition: background 0.25s;
}
.panel-row:hover { background: rgba(79, 195, 247, 0.05); }
.row-led {
  align-self: center;
  width: 10px; height: 10px;
  border-radius: 50%;
  background: var(--elektrisch);
  box-shadow: 0 0 12px rgba(30, 109, 255, 0.9);
  flex: none;
}
.row-featured .row-led { background: #8FD8FF; box-shadow: 0 0 14px rgba(143, 216, 255, 1); }
.row-name { font-family: var(--font-display); font-size: 1.02rem; font-weight: 600; white-space: nowrap; }
.row-name em {
  font-style: normal;
  font-family: var(--font-mono);
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  color: var(--nacht);
  background: #8FD8FF;
  border-radius: 5px;
  padding: 3px 8px;
  margin-left: 10px;
  vertical-align: middle;
}
.row-desc { color: var(--schuim-45); font-size: 0.92rem; white-space: nowrap; }
.row-dots {
  flex: 1;
  border-bottom: 2px dotted rgba(234, 244, 255, 0.18);
  transform: translateY(-4px);
}
.row-price {
  font-family: var(--font-mono);
  font-size: 1.5rem;
  font-weight: 600;
  color: #8FD8FF;
  text-shadow: 0 0 16px rgba(111, 214, 255, 0.55);
  white-space: nowrap;
}

/* ── CALCULATOR ──────────────────────────── */
.calc {
  margin-top: 26px;
  border-radius: 22px;
  background: var(--wit);
  border: 1px solid var(--inkt-08);
  box-shadow: var(--shadow-card);
  overflow: hidden;
}
.calc-head {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 18px;
  padding: 26px 34px 20px;
  border-bottom: 1px solid var(--inkt-08);
}
.calc-head .panel-title { color: var(--elektrisch); }
.calc-head .panel-note { color: var(--inkt-45); }

.calc-body {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
}
.calc-controls { padding: 30px 34px 36px; display: grid; gap: 30px; }

.calc-label {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--inkt-45);
  margin-bottom: 14px;
}
.calc-options { display: flex; flex-wrap: wrap; gap: 10px; }
.calc-options button {
  font-family: var(--font-display);
  font-size: 0.86rem;
  font-weight: 600;
  color: var(--inkt);
  background: var(--ijswit);
  border: 1.5px solid var(--inkt-15);
  border-radius: 12px;
  padding: 13px 20px;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 3px;
  transition: border-color 0.25s, background 0.25s, transform 0.25s var(--ease), box-shadow 0.25s;
}
.calc-options button span {
  font-family: var(--font-mono);
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  color: var(--inkt-45);
}
.calc-options button:hover { transform: translateY(-2px); border-color: var(--elektrisch); }
.calc-options button:focus-visible { outline: 3px solid var(--elektrisch); outline-offset: 2px; }
.calc-options button.active {
  background: var(--elektrisch);
  border-color: var(--elektrisch);
  color: var(--wit);
  box-shadow: 0 10px 24px rgba(30, 109, 255, 0.3);
}
.calc-options button.active span { color: rgba(255, 255, 255, 0.75); }

.calc-slider { display: flex; align-items: center; gap: 20px; }
.calc-slider input[type="range"] {
  flex: 1;
  appearance: none;
  -webkit-appearance: none;
  height: 8px;
  border-radius: 8px;
  background: linear-gradient(90deg, var(--elektrisch) var(--fill, 45%), var(--wolk) var(--fill, 45%));
  cursor: pointer;
}
.calc-slider input[type="range"]::-webkit-slider-thumb {
  appearance: none;
  -webkit-appearance: none;
  width: 26px; height: 26px;
  border-radius: 50%;
  background: var(--wit);
  border: 3px solid var(--elektrisch);
  box-shadow: 0 4px 14px rgba(30, 109, 255, 0.4);
}
.calc-slider input[type="range"]::-moz-range-thumb {
  width: 22px; height: 22px;
  border-radius: 50%;
  background: var(--wit);
  border: 3px solid var(--elektrisch);
  box-shadow: 0 4px 14px rgba(30, 109, 255, 0.4);
}
.calc-slider input[type="range"]:focus-visible { outline: 3px solid var(--elektrisch); outline-offset: 4px; }
.calc-minutes {
  font-family: var(--font-mono);
  font-size: 1rem;
  font-weight: 600;
  color: var(--elektrisch);
  min-width: 76px;
  text-align: right;
}

.calc-result {
  background: linear-gradient(170deg, var(--nacht-2), var(--nacht));
  color: var(--schuim);
  padding: 36px 34px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 8px;
}
.calc-result-label {
  font-family: var(--font-mono);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.26em;
  color: var(--schuim-45);
}
.calc-total {
  font-family: var(--font-mono);
  font-size: clamp(2.6rem, 4.5vw, 3.4rem);
  font-weight: 600;
  line-height: 1.1;
  color: #8FD8FF;
  text-shadow: 0 0 26px rgba(111, 214, 255, 0.6);
}
.calc-breakdown {
  font-family: var(--font-mono);
  font-size: 0.78rem;
  letter-spacing: 0.06em;
  color: var(--schuim-45);
  min-height: 2.4em;
}
.calc-cta { margin-top: 14px; text-align: center; }
.calc-note { font-size: 0.82rem; color: var(--schuim-45); }

@media (max-width: 900px) {
  .calc-body { grid-template-columns: 1fr; }
  .calc-controls { padding: 26px 24px 30px; }
  .calc-result { padding: 30px 24px; }
  .calc-head { padding: 22px 24px 16px; flex-direction: column; gap: 6px; }
}


.faq-strip { margin-top: 54px; }
.faq-strip details {
  background: var(--wit);
  border: 1px solid var(--inkt-08);
  border-radius: 16px;
  box-shadow: var(--shadow-card);
  margin-bottom: 14px;
}
.faq-strip summary {
  list-style: none;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  padding: 22px 26px;
  font-family: var(--font-display);
  font-size: 0.98rem;
  font-weight: 600;
  transition: color 0.25s;
}
.faq-strip summary:hover { color: var(--elektrisch); }
.faq-strip summary::-webkit-details-marker { display: none; }
.faq-ind {
  font-family: var(--font-mono);
  font-size: 1.3rem;
  color: var(--elektrisch);
  transition: transform 0.3s var(--ease);
  flex: none;
}
details[open] .faq-ind { transform: rotate(45deg); }
.faq-strip details p { padding: 0 26px 24px; color: var(--inkt-70); max-width: 640px; }

/* ── FASE 04 · KLAAR ─────────────────────── */
.finish-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.finish-block {
  padding: 40px 34px;
  border-radius: 20px;
  background: var(--wit);
  border: 1px solid var(--inkt-08);
  box-shadow: var(--shadow-card);
}
.finish-label {
  font-family: var(--font-mono);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.24em;
  color: var(--inkt-45);
}
.finish-big {
  font-family: var(--font-display);
  font-size: clamp(1.25rem, 2.1vw, 1.6rem);
  font-weight: 800;
  line-height: 1.25;
  margin: 16px 0 12px;
}
.finish-mono { font-family: var(--font-mono); font-weight: 600; color: var(--elektrisch); }
.finish-arrow { margin: 0 10px; color: var(--inkt-45); }
.finish-sub { color: var(--inkt-70); font-size: 0.96rem; }
.finish-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 46px; }

/* ── EINDSIGNAAL ─────────────────────────── */
.end-signal {
  text-align: center;
  padding: 130px 5vw;
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(700px 420px at 50% 120%, rgba(79, 195, 247, 0.35), transparent 65%),
    linear-gradient(150deg, var(--elektrisch-diep), var(--elektrisch));
  color: var(--wit);
  border-radius: 34px;
  width: min(1200px, 94vw);
  margin: 0 auto 60px;
}
.end-ring {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
}
.end-ring span {
  position: absolute;
  left: 50%; top: 50%;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  animation: ring 5s ease-out infinite;
}
.end-ring span:nth-child(2) { animation-delay: 1.6s; }
.end-ring span:nth-child(3) { animation-delay: 3.2s; }
@keyframes ring {
  from { width: 120px; height: 120px; margin: -60px; opacity: 1; }
  to   { width: 720px; height: 720px; margin: -360px; opacity: 0; }
}
.end-tag {
  font-family: var(--font-mono);
  font-size: 0.74rem;
  font-weight: 600;
  letter-spacing: 0.3em;
  color: #A8F5CD;
  margin-bottom: 24px;
}
.end-title {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4.4vw, 3rem);
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 44px;
}
.end-signal .btn-fill {
  background: var(--wit);
  color: var(--elektrisch-diep);
  box-shadow: 0 16px 40px rgba(4, 26, 61, 0.3);
}
.end-signal .btn-fill:hover { box-shadow: 0 22px 50px rgba(4, 26, 61, 0.4); }

/* ── FOOTER ──────────────────────────────── */
.footer { border-top: 1px solid var(--inkt-08); padding: 44px 0; background: var(--wit); }
.footer-inner {
  width: min(1080px, 90vw);
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}
.footer-brand { font-family: var(--font-display); font-size: 0.78rem; font-weight: 600; letter-spacing: 0.1em; }
.footer-brand b { color: var(--elektrisch); font-weight: 800; }
.footer-meta, .footer-copy { font-family: var(--font-mono); font-size: 0.74rem; letter-spacing: 0.06em; color: var(--inkt-45); }
.footer-meta a { color: var(--inkt-70); text-decoration: none; }
.footer-meta a:hover { color: var(--elektrisch); }

/* ── WHATSAPP ────────────────────────────── */
.whatsapp-fab {
  position: fixed;
  left: 22px;
  bottom: 22px;
  z-index: 90;
  width: 56px; height: 56px;
  border-radius: 16px;
  background: #25D366;
  color: #fff;
  display: grid;
  place-items: center;
  box-shadow: 0 14px 34px rgba(37, 211, 102, 0.4);
  transition: transform 0.25s var(--ease);
}
.whatsapp-fab:hover { transform: scale(1.08) rotate(-4deg); }

/* ── REVEAL ──────────────────────────────── */
.spec, .cycle-step, .panel, .finish-block, .faq-strip details {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease), box-shadow 0.35s var(--ease);
}
.in-view { opacity: 1 !important; transform: none !important; }

/* ── RESPONSIEF ──────────────────────────── */
@media (max-width: 1180px) {
  .program-rail { display: none; }
}
@media (max-width: 900px) {
  .phase { padding: 90px 0; }
  .hero-foot { flex-direction: column; align-items: flex-start; }
  .spec-list { grid-template-columns: 1fr; }
  .cycle-steps { grid-template-columns: 1fr; }
  .finish-grid { grid-template-columns: 1fr; }
  .readout-hide-sm { display: none; }
  .display-brand-name { display: none; }
}
@media (max-width: 640px) {
  .display-bar { padding: 10px 14px; gap: 10px; }
  .display-readout { font-size: 0.72rem; padding: 7px 12px; gap: 10px; }
  .row-desc { display: none; }
  .row-name { white-space: normal; }
  .panel { padding: 10px 20px 22px; }
  .hero-actions, .finish-actions { width: 100%; }
  .hero-actions a, .finish-actions a { flex: 1; text-align: center; }
  .hero-title { font-size: clamp(2.4rem, 13vw, 4rem); }
  .end-signal { padding: 90px 6vw; }
}

/* ── MINDER BEWEGING ─────────────────────── */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .caustics, .hero-bubbles i, .giant-track, .led, .scroll-hint i, .end-ring span { animation: none !important; }
  #heroDial { transform: none !important; }
  .spec, .cycle-step, .panel, .finish-block, .faq-strip details { opacity: 1; transform: none; transition: none; }
}
