/* =========================================================
   ICEO Flow — Digitale handleiding
   Mobile-first, helder & functioneel
   ========================================================= */

:root {
  --page-pad: 20px;
  --max-w: 560px;
}

/* ============ TRANSPORT CHECK (in module) ============ */
.tcheck {
  border: 1.5px solid var(--color-border);
  border-radius: var(--r-lg);
  padding: 22px;
  margin: 4px 0 32px;
  background: var(--neutral-0);
  transition: border-color var(--dur-base), background var(--dur-base);
}
.tcheck__head {
  display: flex;
  gap: 14px;
  align-items: center;
  margin-bottom: 12px;
}
.tcheck__icon {
  width: 44px; height: 44px;
  flex-shrink: 0;
  border-radius: 12px;
  background: var(--iceo-purple);
  color: #fff;
  display: grid;
  place-items: center;
  transition: background var(--dur-base);
}
.tcheck__icon svg { width: 24px; height: 24px; }
.tcheck__eyebrow {
  margin: 0 0 2px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--iceo-purple);
}
.tcheck__title {
  margin: 0;
  font-size: 20px;
  line-height: 1.15;
  letter-spacing: -0.015em;
  font-weight: 700;
  color: var(--iceo-purple-dark);
}
.tcheck__text {
  margin: 0 0 18px;
  font-size: 14px;
  line-height: 1.55;
  color: var(--color-ink-muted);
}
.tcheck__text b { color: var(--iceo-purple-dark); }

.tcheck__choices {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.tcheck__choice {
  display: grid;
  grid-template-columns: 22px 1fr;
  gap: 12px;
  padding: 14px 16px;
  background: var(--neutral-0);
  border: 1.5px solid var(--color-border);
  border-radius: var(--r-md);
  cursor: pointer;
  transition: border-color var(--dur-base), background var(--dur-base);
  align-items: start;
}
.tcheck__choice:hover { border-color: var(--iceo-purple-light); }
.tcheck__choice input { position: absolute; opacity: 0; pointer-events: none; }
.tcheck__box {
  width: 22px; height: 22px;
  border: 2px solid var(--color-border-strong);
  border-radius: 50%;
  margin-top: 1px;
  position: relative;
  transition: border-color var(--dur-base);
}
.tcheck__box::after {
  content: '';
  position: absolute;
  inset: 4px;
  border-radius: 50%;
  background: var(--iceo-purple);
  transform: scale(0);
  transition: transform var(--dur-base) var(--ease-out);
}
.tcheck__choice input:checked ~ .tcheck__box { border-color: var(--iceo-purple); }
.tcheck__choice input:checked ~ .tcheck__box::after { transform: scale(1); }
.tcheck__choice:has(input:checked) { border-color: var(--iceo-purple); background: var(--color-bg-tinted); }
.tcheck__choice input:focus-visible ~ .tcheck__box { box-shadow: var(--shadow-glow); }
.tcheck__label { font-size: 14px; line-height: 1.4; color: var(--color-ink-muted); }
.tcheck__label b { display: block; font-size: 15px; color: var(--iceo-purple-dark); font-weight: 700; margin-bottom: 2px; }

.tcheck__result {
  display: grid;
  grid-template-columns: 24px 1fr;
  gap: 12px;
  align-items: center;
  margin-top: 16px;
  padding: 14px 16px;
  border-radius: var(--r-md);
}
.tcheck__result[hidden] { display: none; }
.tcheck__result-icon { width: 24px; height: 24px; }
.tcheck__result-icon--ok, .tcheck__result-icon--wait { display: none; }
.tcheck[data-state="ok"] .tcheck__result-icon--ok { display: block; }
.tcheck[data-state="wait"] .tcheck__result-icon--wait { display: block; }
.tcheck__result p { margin: 0; font-size: 14px; line-height: 1.45; font-weight: 600; }

/* ---- GREEN: good to go ---- */
.tcheck[data-state="ok"] {
  border-color: var(--iceo-green-dark);
  background: rgba(0,171,10,0.04);
}
.tcheck[data-state="ok"] .tcheck__icon { background: var(--iceo-green-dark); }
.tcheck[data-state="ok"] .tcheck__result {
  background: var(--iceo-green-light);
  color: var(--iceo-purple-dark);
}
.tcheck[data-state="ok"] .tcheck__result-icon { color: var(--iceo-green-dark); }

/* ---- ORANGE: must wait 24h ---- */
.tcheck[data-state="wait"] {
  border-color: var(--color-warning);
  background: rgba(232,165,20,0.06);
}
.tcheck[data-state="wait"] .tcheck__icon { background: var(--color-warning); }
.tcheck[data-state="wait"] .tcheck__result {
  background: rgba(232,165,20,0.14);
  color: #6b4a00;
}
.tcheck[data-state="wait"] .tcheck__result-icon { color: var(--color-warning); }

/* ============ PACKAGE CONTENTS ============ */
.pack { margin-top: 4px; }
.pack__label {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin: 0 0 10px;
}
.pack__label--need { color: var(--iceo-purple); }
.pack__item--need {
  display: grid;
  grid-template-columns: 40px 1fr;
  gap: 16px;
  padding: 20px;
  background: var(--color-bg-tinted);
  border: 1.5px solid var(--iceo-purple);
  border-radius: var(--r-lg);
  align-items: start;
}
.pack__item--need + .pack__item--need { margin-top: 10px; }
.pack__check {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--iceo-purple);
  color: #fff;
  display: grid;
  place-items: center;
}
.pack__check svg { width: 22px; height: 22px; }
.pack__name {
  margin: 0 0 4px;
  font-size: 20px;
  font-weight: 700;
  letter-spacing: -0.01em;
  color: var(--iceo-purple-dark);
}
.pack__desc { margin: 0; font-size: 14px; line-height: 1.5; color: var(--color-ink-muted); }
.pack__incl {
  margin: 8px 0 0;
  font-size: 12px;
  line-height: 1.45;
  color: var(--color-ink-muted);
  display: flex;
  align-items: baseline;
  gap: 6px;
}
.pack__incl::before {
  content: '+';
  font-weight: 700;
  color: var(--iceo-purple);
}
.pack__incl b { color: var(--iceo-purple-dark); font-weight: 600; }

.pack__divider {
  display: flex;
  align-items: center;
  gap: 14px;
  margin: 28px 0 16px;
}
.pack__divider::before,
.pack__divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--color-border);
}
.pack__divider span {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-ink-soft);
  white-space: nowrap;
}

.pack__note {
  margin: 0 0 16px;
  font-size: 14px;
  line-height: 1.55;
  color: var(--color-ink-muted);
}
.pack__note b { color: var(--iceo-purple-dark); }

.pack__rest {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 1px;
}
.pack__rest li {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 4px;
  font-size: 14px;
  color: var(--color-ink-soft);
  border-bottom: 1px solid rgba(38,1,73,0.06);
}
.pack__rest li:last-child { border-bottom: 0; }
.pack__rest li::before {
  content: '';
  width: 16px; height: 16px;
  flex-shrink: 0;
  border-radius: 4px;
  border: 1.5px solid var(--color-border-strong);
  background:
    linear-gradient(45deg, transparent 44%, var(--color-border-strong) 44%, var(--color-border-strong) 56%, transparent 56%);
}

body {
  background: #faf7fb;
  color: var(--color-ink);
  padding-bottom: 80px;
}

main {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--page-pad);
}

/* ============ TOP BAR ============ */
.top {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(250,247,251,0.92);
  backdrop-filter: saturate(140%) blur(12px);
  -webkit-backdrop-filter: saturate(140%) blur(12px);
  border-bottom: 1px solid var(--color-border);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px var(--page-pad);
  height: 56px;
}
.top__brand img { height: 22px; }
.top__meta .t-eyebrow { color: var(--color-ink-muted); }

/* language switcher */
.langswitch {
  display: inline-flex;
  align-items: center;
  gap: 2px;
  padding: 3px;
  border: 1px solid var(--color-border);
  border-radius: var(--r-pill);
  background: var(--neutral-0);
}
.langswitch__globe {
  width: 16px; height: 16px;
  color: var(--color-ink-soft);
  margin: 0 4px 0 6px;
  flex-shrink: 0;
}
.langswitch__btn {
  border: 0;
  background: transparent;
  border-radius: var(--r-pill);
  padding: 5px 10px;
  font: inherit;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: var(--color-ink-muted);
  cursor: pointer;
  transition: background var(--dur-fast), color var(--dur-fast);
  -webkit-tap-highlight-color: transparent;
}
.langswitch__btn:hover { color: var(--iceo-purple-dark); }
.langswitch__btn.is-active {
  background: var(--iceo-purple);
  color: #fff;
}
.langswitch__btn:focus-visible { outline: 2px solid var(--iceo-purple); outline-offset: 1px; }

/* ============ PROGRESS ============ */
.progress {
  position: sticky;
  top: 56px;
  z-index: 39;
  background: #faf7fb;
  border-bottom: 1px solid var(--color-border);
  padding: 12px var(--page-pad) 14px;
}
.progress__track {
  height: 6px;
  background: var(--iceo-purple-light);
  border-radius: 999px;
  overflow: hidden;
}
.progress__fill {
  height: 100%;
  width: 0%;
  background: var(--iceo-purple);
  border-radius: 999px;
  transition: width 360ms var(--ease-out);
}
.progress__label {
  margin-top: 8px;
  display: flex;
  align-items: baseline;
  gap: 6px;
  font-size: 13px;
  color: var(--color-ink-muted);
}
.progress__label > span:first-child { color: var(--color-ink); font-weight: 700; font-size: 15px; }
.progress__sep { opacity: 0.4; }
.progress__text { margin-left: 4px; }
.progress__reset {
  margin-left: auto;
  background: transparent;
  border: 0;
  color: var(--iceo-purple);
  font-weight: 600;
  font-size: 13px;
  padding: 0;
}

/* ============ HERO ============ */
.hero {
  padding: 44px 0;
}
.hero__eyebrow { color: var(--iceo-purple); }
.hero__title {
  font-size: clamp(48px, 12vw, 72px);
  line-height: 0.95;
  letter-spacing: -0.03em;
  font-weight: 800;
  margin: 16px 0 20px;
  color: var(--iceo-purple-dark);
}
.hero__title em {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 400;
  color: var(--iceo-purple);
}
.hero__lead {
  font-size: 17px;
  line-height: 1.6;
  color: var(--color-ink-muted);
  margin: 0 0 24px;
}
.hero__chips {
  list-style: none;
  padding: 0;
  margin: 0 0 32px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.hero__chips li {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
  background: var(--color-bg-tinted);
  border-radius: 999px;
  padding: 8px 14px;
  font-size: 13px;
  font-weight: 600;
  color: var(--iceo-purple-dark);
}
.dot { width: 8px; height: 8px; border-radius: 50%; background: var(--iceo-purple); flex-shrink: 0; }
.dot--alt { background: var(--iceo-lavender); }
.dot--alt2 { background: var(--iceo-purple-dark); }
.hero__cta { width: 100%; }

/* ============ BLOCK ============ */
.block {
  padding: 44px 0;
  margin: 0 calc(-1 * var(--page-pad));
  padding-left: var(--page-pad);
  padding-right: var(--page-pad);
}
.block--tinted {
  background: var(--color-bg-tinted);
  border-radius: var(--r-xl);
  margin: 0 0 48px;
  padding: 40px 24px;
}
.block__eyebrow { color: var(--iceo-purple); margin: 0 0 12px; }
.block__title {
  font-size: clamp(28px, 6vw, 36px);
  line-height: 1.1;
  letter-spacing: -0.02em;
  font-weight: 700;
  margin: 0 0 12px;
  color: var(--iceo-purple-dark);
}
.block__lead {
  font-size: 16px;
  line-height: 1.55;
  color: var(--color-ink-muted);
  margin: 0 0 28px;
}

/* ============ RULES (locatie) ============ */
.reqs {
  margin: 4px 0 16px;
  border: 1px solid var(--color-border);
  border-radius: var(--r-md);
  overflow: hidden;
  background: var(--color-bg-tinted);
}
.reqs summary {
  list-style: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 18px;
  font-size: 15px;
  font-weight: 700;
  color: var(--iceo-purple-dark);
  -webkit-tap-highlight-color: transparent;
}
.reqs summary::-webkit-details-marker { display: none; }
.reqs__pin { width: 20px; height: 20px; color: var(--iceo-purple); flex-shrink: 0; }
.reqs summary > span:nth-child(2) { flex: 1; }
.reqs__chev {
  font-size: 22px;
  font-weight: 400;
  color: var(--iceo-purple);
  transition: transform var(--dur-base) var(--ease-out);
  flex-shrink: 0;
}
.reqs[open] .reqs__chev { transform: rotate(45deg); }
.reqs[open] { border-color: var(--iceo-purple-light); }
.reqs__body { padding: 0 18px 18px; }
.reqs__body .rules { margin-bottom: 16px; }
.reqs__body .rules li { border-bottom-color: rgba(38,1,73,0.1); }

.rules {
  list-style: none;
  padding: 0;
  margin: 0 0 32px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.rules li {
  display: grid;
  grid-template-columns: 36px 1fr;
  gap: 14px;
  padding: 14px 0;
  border-bottom: 1px solid rgba(38,1,73,0.08);
  align-items: start;
}
.rules li:last-child { border-bottom: 0; }
.rules__num {
  font-family: ui-monospace, monospace;
  font-size: 12px;
  color: var(--iceo-purple);
  font-weight: 700;
  padding-top: 2px;
}
.rules p { margin: 0; font-size: 15px; line-height: 1.5; color: var(--color-ink); }
.rules b { font-weight: 700; color: var(--iceo-purple-dark); }

/* ============ WARNINGS ============ */
.warnings {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 24px;
}
.warning {
  display: grid;
  grid-template-columns: 24px 1fr;
  gap: 14px;
  padding: 16px 18px;
  background: var(--neutral-0);
  border: 1.5px solid var(--iceo-purple-light);
  border-radius: var(--r-md);
  align-items: start;
}
.warning--danger {
  border-color: var(--iceo-purple);
  background: var(--iceo-purple-dark);
  color: #fff;
}
.warning__icon { width: 24px; height: 24px; color: var(--iceo-purple); margin-top: 1px; }
.warning--danger .warning__icon { color: var(--iceo-green-light); }
.warning p { margin: 0; font-size: 15px; line-height: 1.5; font-weight: 600; }

/* ============ CHECKPOINT (luchtvrij) ============ */
.checkpoint {
  margin: 8px 0 40px;
  padding: 22px;
  background: var(--neutral-0);
  border: 2px solid var(--iceo-green-dark);
  border-radius: var(--r-lg);
  box-shadow: 0 0 0 4px rgba(0,171,10,0.08), var(--shadow-md);
  scroll-margin-top: 120px;
}
.checkpoint__bar {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
}
.checkpoint__icon {
  width: 34px; height: 34px;
  flex-shrink: 0;
  border-radius: 10px;
  background: var(--iceo-green-dark);
  color: #fff;
  display: grid;
  place-items: center;
}
.checkpoint__icon svg { width: 19px; height: 19px; }
.checkpoint__kicker {
  margin: 0;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--iceo-green-dark);
}
.checkpoint__title {
  margin: 0 0 8px;
  font-size: 24px;
  line-height: 1.1;
  letter-spacing: -0.015em;
  font-weight: 800;
  color: var(--iceo-purple-dark);
}
.checkpoint__text {
  margin: 0 0 18px;
  font-size: 15px;
  line-height: 1.55;
  color: var(--color-ink-muted);
}
.checkpoint__text b { color: var(--iceo-purple-dark); }
.checkpoint__do {
  margin: 0 0 10px;
  font-size: 13px;
  font-weight: 700;
  color: var(--iceo-purple-dark);
}
.checkpoint__list {
  list-style: none;
  margin: 0 0 18px;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.checkpoint__list li {
  display: grid;
  grid-template-columns: 26px 1fr;
  gap: 12px;
  align-items: start;
}
.checkpoint__num {
  width: 26px; height: 26px;
  flex-shrink: 0;
  border-radius: 50%;
  background: var(--iceo-green-light);
  color: var(--iceo-green-dark);
  font-size: 13px;
  font-weight: 800;
  display: grid;
  place-items: center;
}
.checkpoint__list p { margin: 0; font-size: 15px; line-height: 1.45; color: var(--color-ink); }
.checkpoint__list b { font-weight: 700; color: var(--iceo-purple-dark); }
.checkpoint__done {
  margin: 0 0 18px;
  padding: 12px 14px;
  background: rgba(0,171,10,0.06);
  border-radius: var(--r-md);
  font-size: 14px;
  line-height: 1.5;
  font-weight: 600;
  color: var(--iceo-purple-dark);
}
.checkpoint__done b { color: var(--iceo-green-dark); }
.checkpoint .step__next { margin: 0; }

/* ============ KOELER: VIDEO + ACCORDION (stap 6\u201310) ============ */
.koeler { margin: 8px 0 20px; scroll-margin-top: 120px; }
.koeler__title {
  font-size: clamp(28px, 6vw, 36px);
  line-height: 1.05;
  letter-spacing: -0.02em;
  font-weight: 800;
  margin: 12px 0 12px;
  color: var(--iceo-purple-dark);
}
.koeler__lead {
  font-size: 16px;
  line-height: 1.55;
  color: var(--color-ink-muted);
  margin: 0 0 20px;
}
.koeler__lead b { color: var(--iceo-purple-dark); }

/* video facade */
.ytfacade {
  position: relative;
  aspect-ratio: 16 / 9;
  border-radius: var(--r-lg);
  overflow: hidden;
  cursor: pointer;
  background: var(--iceo-purple-dark);
  box-shadow: var(--shadow-md);
  border: 1.5px solid var(--iceo-purple);
}
.ytfacade__thumb {
  width: 100%; height: 100%;
  object-fit: cover;
  opacity: 0.92;
  transition: transform var(--dur-slow) var(--ease-out), opacity var(--dur-base);
}
.ytfacade:hover .ytfacade__thumb { transform: scale(1.03); opacity: 1; }
.ytfacade__play {
  position: absolute;
  inset: 0;
  margin: auto;
  width: 76px; height: 76px;
  border: 0;
  border-radius: 50%;
  background: var(--iceo-green);
  color: var(--iceo-purple-dark);
  display: grid;
  place-items: center;
  box-shadow: 0 10px 30px rgba(38,1,73,0.35);
  transition: transform var(--dur-base) var(--ease-out);
}
.ytfacade__play svg { width: 34px; height: 34px; margin-left: 3px; }
.ytfacade:hover .ytfacade__play { transform: scale(1.08); }
.ytfacade__badge {
  position: absolute;
  left: 14px; bottom: 14px;
  background: rgba(38,1,73,0.78);
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.02em;
  padding: 6px 12px;
  border-radius: var(--r-pill);
  -webkit-backdrop-filter: blur(6px);
  backdrop-filter: blur(6px);
}
.ytfacade.is-playing { cursor: default; }
.ytfacade__iframe { width: 100%; height: 100%; border: 0; display: block; }

/* divider to manual steps */
.koeler__divider {
  display: flex;
  align-items: center;
  gap: 14px;
  margin: 26px 0 6px;
}
.koeler__divider::before,
.koeler__divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--color-border);
}
.koeler__divider span {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--iceo-purple);
  white-space: nowrap;
}
.koeler__hint {
  margin: 0 0 18px;
  font-size: 14px;
  line-height: 1.5;
  color: var(--color-ink-muted);
  text-align: center;
}
.koeler__cp-lead {
  margin: 0 0 18px;
  font-size: 15px;
  line-height: 1.55;
  color: var(--color-ink-muted);
}

/* accordion list */
.folds { display: flex; flex-direction: column; gap: 12px; }
details.fold,
details.step--fold {
  margin: 0;
  padding: 0;
  background: var(--neutral-0);
  border: 1px solid var(--color-border);
  border-radius: var(--r-md);
  overflow: hidden;
  scroll-margin-top: 120px;
  transition: border-color var(--dur-base), box-shadow var(--dur-base);
}
details.step--fold[open] { border-color: var(--iceo-purple-light); box-shadow: var(--shadow-sm); }
details.fold--ref { background: var(--color-bg-tinted); border-style: dashed; }

.fold__head {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 18px;
  cursor: pointer;
  list-style: none;
  -webkit-tap-highlight-color: transparent;
}
.fold__head::-webkit-details-marker { display: none; }
.fold__num {
  font-family: ui-monospace, monospace;
  font-size: 13px;
  font-weight: 700;
  color: var(--color-ink-soft);
  flex-shrink: 0;
}
.fold__num--ref {
  width: 24px; height: 24px;
  border-radius: 50%;
  background: var(--iceo-purple);
  color: #fff;
  display: grid;
  place-items: center;
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 15px;
}
.fold__title {
  flex: 1;
  font-size: 17px;
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: -0.01em;
  color: var(--iceo-purple-dark);
  min-width: 0;
}
.fold__title-sub { font-weight: 500; color: var(--color-ink-muted); }
.fold__status {
  flex-shrink: 0;
  width: 22px; height: 22px;
  border-radius: 50%;
  background: var(--iceo-green-dark);
  color: #fff;
  display: none;
  place-items: center;
}
.fold__status svg { width: 13px; height: 13px; }
.step.is-done .fold__status { display: grid; }
.step.is-done .fold__title { color: var(--iceo-purple); }
.step.is-done .fold__num { color: var(--iceo-purple); }
.fold__chev {
  flex-shrink: 0;
  font-size: 24px;
  line-height: 1;
  font-weight: 300;
  color: var(--iceo-purple);
  transition: transform var(--dur-base) var(--ease-out);
}
details[open] > .fold__head .fold__chev { transform: rotate(45deg); }

.fold__body {
  padding: 4px 18px 20px;
  border-top: 1px solid var(--color-border);
}
.fold--ref .fold__body { border-top-color: var(--color-border); }
.fold__body > *:first-child { margin-top: 14px; }

/* "mark as done" control inside a fold */
.fold__done {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 18px;
  padding: 10px 16px;
  border-radius: var(--r-pill);
  background: var(--color-bg-tinted);
  cursor: pointer;
  font-size: 14px;
  font-weight: 600;
  color: var(--iceo-purple-dark);
  -webkit-tap-highlight-color: transparent;
}
.fold__done .step__cb { position: absolute; opacity: 0; pointer-events: none; }
.fold__done-box {
  width: 22px; height: 22px;
  border: 2px solid var(--color-border-strong);
  border-radius: 6px;
  flex-shrink: 0;
  position: relative;
  transition: background var(--dur-base), border-color var(--dur-base);
}
.fold__done-box::after {
  content: '';
  position: absolute;
  left: 6px; top: 2px;
  width: 7px; height: 12px;
  border: solid transparent;
  border-width: 0 2.4px 2.4px 0;
  transform: rotate(45deg);
  transition: border-color var(--dur-base);
}
.fold__done .step__cb:checked ~ .fold__done-box {
  background: var(--iceo-purple);
  border-color: var(--iceo-purple);
}
.fold__done .step__cb:checked ~ .fold__done-box::after { border-color: var(--iceo-green-light); }
.fold__done .step__cb:focus-visible ~ .fold__done-box { box-shadow: var(--shadow-glow); }

/* ============ CONTROL PANEL ============ */
.panel-intro {
  margin: 0 0 16px;
  padding: 24px 20px;
  background: var(--color-bg-tinted);
  border-radius: var(--r-lg);
  scroll-margin-top: 120px;
}
.panel-intro .block__eyebrow { margin-bottom: 10px; }
.panel-intro .block__title { font-size: clamp(24px, 5.5vw, 30px); }
.panel-intro .block__lead { font-size: 15px; margin-bottom: 22px; }

.cp {
  background: linear-gradient(180deg, #2a2a2a, #0d0d0d);
  border-radius: 60px;
  padding: 24px 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  box-shadow: var(--shadow-lg), inset 0 1px 0 rgba(255,255,255,0.08);
  border: 1px solid rgba(0,0,0,0.4);
}

/* Physical button columns (left / right) */
.cp__btns {
  display: flex;
  flex-direction: column;
  gap: 14px;
  flex-shrink: 0;
}
.cp__btn {
  width: 48px; height: 48px;
  border-radius: 50%;
  background: radial-gradient(circle at 50% 35%, #3a3a3a, #161616);
  border: 1px solid rgba(255,255,255,0.14);
  box-shadow: inset 0 1px 1px rgba(255,255,255,0.12), 0 2px 4px rgba(0,0,0,0.5);
  display: grid;
  place-items: center;
  color: #f3f0e8;
  cursor: pointer;
  transition: all var(--dur-base) var(--ease-out);
  padding: 0;
}
.cp__btn svg { width: 22px; height: 22px; }
.cp__btn:hover, .cp__btn:focus-visible {
  border-color: var(--iceo-lavender);
  color: var(--iceo-lavender);
  outline: none;
}
.cp__btn.is-active {
  border-color: var(--iceo-lavender);
  color: var(--iceo-lavender);
  box-shadow: inset 0 1px 1px rgba(255,255,255,0.12), 0 0 0 4px rgba(219,153,219,0.22);
}

/* Indicator columns */
.cp__inds {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  flex-shrink: 0;
}
.cp__ind {
  width: 30px; height: 30px;
  background: transparent;
  border: 0;
  border-radius: 8px;
  display: grid;
  place-items: center;
  color: #e7d7b4;
  opacity: 0.92;
  cursor: pointer;
  transition: transform var(--dur-base) var(--ease-out), opacity var(--dur-base), filter var(--dur-base);
  padding: 0;
}
.cp__ind svg { width: 22px; height: 22px; }
.cp__ind--heat { color: #ff5a3c; }
.cp__ind--cool { color: #45a8ff; }
.cp__ind--auto { color: #2ad53a; }
.cp__ind--status { color: #e7d7b4; }
.cp__ind:hover, .cp__ind:focus-visible {
  opacity: 1;
  transform: scale(1.1);
  outline: none;
  filter: drop-shadow(0 0 5px currentColor);
}
.cp__ind.is-active {
  opacity: 1;
  transform: scale(1.12);
  filter: drop-shadow(0 0 8px currentColor);
}
.cp__ind-auto {
  display: grid;
  place-items: center;
  width: 22px; height: 22px;
  border: 2px solid currentColor;
  border-radius: 50%;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: -0.02em;
}

/* ============ MINI CONTROL PANEL (stap 7 & 8) ============ */
.cpmini {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  max-width: 360px;
  margin: 16px auto 8px;
  padding: 16px 20px;
  background: linear-gradient(180deg, #2a2a2a, #0d0d0d);
  border-radius: 44px;
  border: 1px solid rgba(0,0,0,0.4);
  box-shadow: var(--shadow-md), inset 0 1px 0 rgba(255,255,255,0.08);
}
.cpmini__col { display: flex; flex-direction: column; align-items: center; gap: 10px; }
.cpmini__btn {
  width: 38px; height: 38px;
  border-radius: 50%;
  background: radial-gradient(circle at 50% 35%, #3a3a3a, #161616);
  border: 1px solid rgba(255,255,255,0.14);
  box-shadow: inset 0 1px 1px rgba(255,255,255,0.12);
  display: grid;
  place-items: center;
  color: #f3f0e8;
}
.cpmini__btn svg { width: 18px; height: 18px; }
.cpmini__ind {
  width: 24px; height: 24px;
  display: grid;
  place-items: center;
  color: #f4f2ee;
  opacity: 0.85;
}
.cpmini__ind svg { width: 18px; height: 18px; }
.cpmini__ind--heat { color: #ff5a3c; opacity: 1; }
.cpmini__ind--cool { color: #45a8ff; opacity: 1; }
.cpmini__ind--auto { color: #2ad53a; opacity: 1; }
.cpmini__ind--status { color: #e7d7b4; opacity: 0.9; }
.cpmini__auto {
  display: grid; place-items: center;
  width: 18px; height: 18px;
  border: 1.6px solid currentColor;
  border-radius: 50%;
  font-size: 10px; font-weight: 800;
}
/* lit indicator states */
.cpmini__ind.is-green {
  color: var(--iceo-green);
  opacity: 1;
  filter: drop-shadow(0 0 6px rgba(20,232,31,0.7));
}
.cpmini__ind.is-red {
  color: #ff453a;
  opacity: 1;
  filter: drop-shadow(0 0 6px rgba(255,69,58,0.7));
}
/* highlighted element */
.cpmini .is-hl.cpmini__btn {
  border-color: var(--iceo-green);
  color: var(--iceo-green);
  box-shadow: inset 0 1px 1px rgba(255,255,255,0.12), 0 0 0 4px rgba(20,232,31,0.28);
  animation: hlpulse 1.8s var(--ease-in-out) infinite;
}
.cpmini .is-hl.cpmini__ind {
  color: var(--iceo-green);
  opacity: 1;
  filter: drop-shadow(0 0 6px rgba(20,232,31,0.7));
}
@keyframes hlpulse {
  0%, 100% { box-shadow: inset 0 1px 1px rgba(255,255,255,0.12), 0 0 0 4px rgba(20,232,31,0.28); }
  50% { box-shadow: inset 0 1px 1px rgba(255,255,255,0.12), 0 0 0 7px rgba(20,232,31,0.12); }
}
.cpmini-cap {
  margin: 0 0 16px;
  text-align: center;
  font-size: 13px;
  font-weight: 600;
  color: var(--color-ink-muted);
}
.cpmini-cap b { color: var(--iceo-purple-dark); }

/* ============ RCD DIAGRAM (stap 6) ============ */
.rcd {
  margin: 16px 0;
  padding: 24px;
  background: var(--neutral-0);
  border: 1px solid var(--color-border);
  border-radius: var(--r-md);
}
.rcd__svg { width: 100%; height: auto; display: block; }
.rcd__img { width: 100%; max-width: 380px; height: auto; display: block; margin: 0 auto; }

/* Detail */
.cp-detail {
  margin-top: 16px;
  padding: 18px 20px;
  background: var(--color-bg-tinted);
  border-radius: var(--r-md);
  border-left: 3px solid var(--iceo-purple);
  min-height: 80px;
}
.cp-detail__title {
  margin: 0 0 4px;
  font-size: 15px;
  font-weight: 700;
  color: var(--iceo-purple-dark);
  letter-spacing: -0.01em;
}
.cp-detail__text {
  margin: 0;
  font-size: 14px;
  line-height: 1.5;
  color: var(--color-ink-muted);
}

/* ============ STEPS ============ */
.steps { padding: 8px 0 0; }
.steps__head { margin-bottom: 32px; }

.step {
  background: var(--neutral-0);
  border: 1px solid var(--color-border);
  border-radius: var(--r-lg);
  padding: 24px 20px;
  margin-bottom: 16px;
  scroll-margin-top: 120px;
  transition: border-color var(--dur-base), box-shadow var(--dur-base);
}
.step.is-done {
  border-color: var(--iceo-purple-light);
  background: linear-gradient(180deg, rgba(74,43,140,0.03), transparent);
}
.step.is-done .step__num { color: var(--iceo-purple); }
.step.is-done .step__title { text-decoration: line-through; text-decoration-color: rgba(38,1,73,0.25); text-decoration-thickness: 2px; }

.step__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 14px;
}
.step__num {
  font-family: ui-monospace, monospace;
  font-size: 13px;
  font-weight: 700;
  color: var(--iceo-purple);
  letter-spacing: 0.04em;
}

/* Custom checkbox */
.step__check {
  display: inline-flex;
  align-items: center;
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
}
.step__cb { position: absolute; opacity: 0; pointer-events: none; }
.step__check-box {
  width: 32px; height: 32px;
  border: 2px solid var(--color-border-strong);
  border-radius: 10px;
  background: var(--neutral-0);
  display: grid;
  place-items: center;
  transition: all var(--dur-base) var(--ease-out);
  position: relative;
}
.step__check-box::after {
  content: '';
  width: 14px; height: 8px;
  border-left: 3px solid transparent;
  border-bottom: 3px solid transparent;
  transform: rotate(-45deg) translate(2px, -2px);
  transition: border-color var(--dur-base);
}
.step__cb:checked ~ .step__check-box {
  background: var(--iceo-purple);
  border-color: var(--iceo-purple);
}
.step__cb:checked ~ .step__check-box::after {
  border-color: var(--iceo-green-light);
}
.step__cb:focus-visible ~ .step__check-box {
  box-shadow: var(--shadow-glow);
}

.step__title {
  font-size: 22px;
  line-height: 1.2;
  letter-spacing: -0.015em;
  font-weight: 700;
  color: var(--iceo-purple-dark);
  margin: 0 0 12px;
}
.step__text {
  font-size: 16px;
  line-height: 1.55;
  color: var(--color-ink);
  margin: 0 0 16px;
}
.step__note {
  font-size: 14px;
  color: var(--color-ink-muted);
  margin: -4px 0 16px;
  padding-left: 12px;
  border-left: 2px solid var(--color-border-strong);
}

.step__media {
  margin: 16px 0;
}
.step__media--placeholder { aspect-ratio: 4/3; }
.step__media--photo {
  border-radius: var(--r-md);
  overflow: hidden;
  background: var(--color-bg-tinted);
}
.step__media--photo img {
  width: 100%;
  height: auto;
  display: block;
}

/* Title/text left, smaller image right */
.step__split {
  display: flex;
  align-items: center;
  gap: 16px;
}
.step__split-text { flex: 1; min-width: 0; }
.step__split-text .step__title { margin-bottom: 8px; }
.step__split-text .step__text { margin-bottom: 0; }
.step__media--side {
  flex: 0 0 42%;
  max-width: 42%;
  margin: 0;
  align-self: stretch;
}
.step__media--side img { height: 100%; object-fit: cover; }
@media (max-width: 460px) {
  .step__media--side { flex-basis: 38%; max-width: 38%; }
}
.ph {
  width: 100%; height: 100%;
  background: repeating-linear-gradient(135deg, var(--neutral-100) 0 12px, var(--neutral-50) 12px 24px);
  border: 1.5px dashed var(--color-border-strong);
  border-radius: var(--r-md);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  color: var(--color-ink-muted);
  text-align: center;
  padding: 24px;
}
.ph__icon { width: 36px; height: 36px; opacity: 0.5; }
.ph__label { margin: 0; font-size: 14px; font-weight: 700; color: var(--iceo-purple); }
.ph__hint { margin: 0; font-size: 11px; font-family: ui-monospace, monospace; opacity: 0.7; letter-spacing: 0.04em; text-transform: uppercase; }

.step__next {
  display: inline-flex;
  align-items: center;
  margin-top: 8px;
  color: var(--iceo-purple);
  font-weight: 700;
  font-size: 14px;
  text-decoration: none;
}
.step__next:hover { color: var(--iceo-purple-dark); }

/* ============ TIPS ============ */
.tip {
  display: grid;
  grid-template-columns: 24px 1fr;
  gap: 12px;
  padding: 14px 16px;
  background: var(--color-bg-tinted);
  border-radius: var(--r-md);
  margin: 12px 0 16px;
  align-items: start;
}
.tip__icon { width: 22px; height: 22px; color: var(--iceo-purple); margin-top: 1px; }
.tip p { margin: 0; font-size: 14px; line-height: 1.5; color: var(--iceo-purple-dark); }
.tip--success {
  background: var(--iceo-green-light);
  color: var(--iceo-purple-dark);
}
.tip--success .tip__icon { color: var(--iceo-purple-dark); }
.tip--success p { color: var(--iceo-purple-dark); font-weight: 600; }

/* ============ MICRO LIST (stap 3) ============ */
.micro {
  list-style: none;
  padding: 0;
  margin: 0 0 16px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.micro li {
  display: grid;
  grid-template-columns: 28px 1fr;
  gap: 12px;
  align-items: center;
  padding: 12px 14px;
  background: var(--color-bg-tinted);
  border-radius: 12px;
  font-size: 14px;
  font-weight: 600;
  color: var(--iceo-purple-dark);
}
.micro li > span {
  width: 28px; height: 28px;
  background: var(--iceo-purple);
  color: #fff;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-family: ui-monospace, monospace;
  font-size: 13px;
  font-weight: 700;
}

/* ============ RESET (stap 4) ============ */
.reset {
  background: var(--neutral-50);
  border: 1px solid var(--color-border);
  border-radius: var(--r-md);
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin: 12px 0 8px;
}
.reset__indicator {
  display: flex;
  align-items: center;
  gap: 10px;
}
.reset__dot {
  width: 12px; height: 12px;
  border-radius: 50%;
  background: #d23b3b;
  box-shadow: 0 0 12px rgba(210,59,59,0.6);
  animation: pulse 2s var(--ease-in-out) infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.55; }
}
.reset__label {
  font-size: 12px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--color-ink-muted);
}
.reset__buttons { display: flex; gap: 8px; }
.reset__btn {
  flex: 1;
  padding: 12px;
  border-radius: 10px;
  background: var(--neutral-0);
  border: 1.5px solid var(--color-border-strong);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--color-ink);
  cursor: pointer;
}
.reset__btn--reset {
  background: var(--iceo-purple-dark);
  color: #fff;
  border-color: var(--iceo-purple-dark);
}
.reset__hint {
  margin: 0;
  font-size: 13px;
  line-height: 1.5;
  color: var(--color-ink-muted);
}
.reset__hint b { color: var(--iceo-purple-dark); }

/* ============ MODUS LIST (stap 6) ============ */
.modus {
  list-style: none;
  padding: 0;
  margin: 8px 0 16px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.modus li {
  display: grid;
  grid-template-columns: 32px 1fr;
  gap: 14px;
  padding: 16px;
  background: var(--color-bg-tinted);
  border-radius: var(--r-md);
  align-items: start;
}
.modus__num {
  width: 32px; height: 32px;
  background: var(--iceo-purple);
  color: #fff;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-weight: 800;
  font-size: 14px;
}
.modus__title { margin: 0 0 4px; font-size: 15px; font-weight: 700; color: var(--iceo-purple-dark); line-height: 1.35; }
.modus__sub { margin: 0; font-size: 14px; color: var(--color-ink-muted); }

/* ============ ADVICE (aanbeveling) ============ */
.advice {
  background: var(--iceo-purple);
  color: #fff;
  border-radius: var(--r-md);
  padding: 18px 20px;
  margin: 4px 0 18px;
}
.advice__tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--iceo-lavender);
  margin-bottom: 8px;
}
.advice__text { margin: 0; font-size: 15px; line-height: 1.55; color: rgba(255,255,255,0.9); }
.advice__text b { color: #fff; font-weight: 700; }

/* ============ MODE CYCLE (stap 6) ============ */
.cycle {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  padding: 20px;
  background: var(--color-bg-tinted);
  border-radius: var(--r-md);
  margin-bottom: 16px;
}
.cycle__node {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  width: 78px;
  padding: 14px 8px;
  background: var(--neutral-0);
  border: 1.5px solid var(--color-border);
  border-radius: var(--r-sm);
  text-align: center;
}
.cycle__node svg { width: 24px; height: 24px; }
.cycle__node span:last-child {
  font-size: 12px;
  font-weight: 700;
  color: var(--iceo-purple-dark);
}
.cycle__node--heat { color: #d23b3b; }
.cycle__node--cool { color: #2f7de1; }
.cycle__node--auto { color: var(--iceo-green-dark); }
.cycle__auto {
  display: grid;
  place-items: center;
  width: 24px; height: 24px;
  border: 2px solid currentColor;
  border-radius: 50%;
  font-size: 13px;
  font-weight: 800;
}
.cycle__node.is-recommended {
  border-color: var(--iceo-green-dark);
  box-shadow: 0 0 0 3px rgba(0,171,10,0.12);
}
.cycle__rec {
  position: absolute;
  top: -10px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--iceo-green-dark);
  color: #fff;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 3px 7px;
  border-radius: 999px;
  white-space: nowrap;
}
.cycle__arrow {
  font-size: 12px;
  font-weight: 700;
  color: var(--iceo-purple);
  font-family: ui-monospace, monospace;
}
.cycle__loop {
  flex-basis: 100%;
  margin-top: 4px;
  font-size: 12px;
  color: var(--color-ink-muted);
  font-style: italic;
}

/* ============ KBD ============ */
.kbd {
  display: inline-grid;
  place-items: center;
  min-width: 26px;
  height: 26px;
  padding: 0 8px;
  border-radius: 7px;
  background: var(--iceo-purple);
  color: #fff;
  font-family: ui-monospace, monospace;
  font-size: 13px;
  font-weight: 700;
  vertical-align: -3px;
  box-shadow: 0 1px 0 rgba(38,1,73,0.4), inset 0 1px 0 rgba(255,255,255,0.08);
}
.kbd--power { background: var(--iceo-purple-dark); color: #fff; }
.kbd svg { vertical-align: middle; }

/* ============ TEMP (stap 7) ============ */
.temp {
  display: grid;
  grid-template-columns: 56px 1fr 56px;
  gap: 12px;
  align-items: center;
  background: var(--iceo-purple-dark);
  border-radius: var(--r-lg);
  padding: 18px;
  margin: 8px 0 16px;
}
.temp__btn {
  width: 56px; height: 56px;
  border-radius: 50%;
  border: 1.5px solid rgba(255,255,255,0.18);
  background: rgba(255,255,255,0.08);
  color: var(--iceo-lavender);
  display: grid;
  place-items: center;
  cursor: pointer;
  transition: all var(--dur-fast) var(--ease-out);
}
.temp__btn:hover { background: rgba(219,153,219,0.18); border-color: var(--iceo-lavender); color: #fff; }
.temp__btn:active { transform: scale(0.96); }
.temp__btn svg { width: 22px; height: 22px; }
.temp__display { text-align: center; color: var(--iceo-lavender); }
.temp__value {
  font-family: ui-monospace, monospace;
  font-size: 56px;
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1;
}
.temp__unit { font-size: 22px; opacity: 0.7; margin-left: 2px; }
.temp__hint {
  margin: 6px 0 0;
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 700;
  color: rgba(255,255,255,0.4);
}

/* ============ COMPLETION ============ */
.complete {
  margin: 40px 0;
  border-radius: var(--r-2xl);
  background: var(--iceo-purple-dark);
  color: #fff;
  padding: 56px 28px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.complete::before {
  content: '';
  position: absolute;
  inset: -40% -10% auto auto;
  width: 70%;
  aspect-ratio: 1;
  background: radial-gradient(circle, rgba(219,153,219,0.35), transparent 60%);
  pointer-events: none;
}
.complete__inner { position: relative; }
.complete .t-eyebrow { color: var(--iceo-lavender); }
.complete__title {
  font-size: clamp(36px, 9vw, 52px);
  letter-spacing: -0.025em;
  font-weight: 800;
  line-height: 1;
  color: #fff;
  margin: 12px 0 16px;
}
.complete__text {
  font-size: 17px;
  line-height: 1.5;
  color: rgba(255,255,255,0.78);
  margin: 0 auto;
  max-width: 320px;
  font-weight: 400;
}

/* ============ AFTER ============ */
.after {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.after__card {
  background: var(--color-bg-tinted);
  border-radius: var(--r-md);
  padding: 20px;
}
.after__title {
  font-size: 18px;
  font-weight: 700;
  color: var(--iceo-purple-dark);
  margin: 0 0 8px;
  letter-spacing: -0.01em;
}
.after__text { margin: 0; font-size: 15px; line-height: 1.5; color: var(--color-ink); }
.after__note {
  margin: 8px 0 0;
  font-size: 13px;
  line-height: 1.5;
  color: var(--color-ink-muted);
  font-style: italic;
}

/* ---- Topcover care ---- */
.cover-cta {
  display: flex;
  align-items: center;
  gap: 14px;
  width: 100%;
  text-align: left;
  margin: 4px 0 16px;
  padding: 16px 18px;
  background: var(--iceo-purple-dark);
  border: 0;
  border-radius: var(--r-md);
  color: #fff;
  cursor: pointer;
  transition: transform var(--dur-fast) var(--ease-out), box-shadow var(--dur-base);
}
.cover-cta:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); }
.cover-cta__icon { width: 26px; height: 26px; color: var(--iceo-lavender); flex-shrink: 0; }
.cover-cta__text { flex: 1; font-size: 13px; line-height: 1.4; color: rgba(255,255,255,0.72); }
.cover-cta__text b { display: block; font-size: 15px; color: #fff; font-weight: 700; letter-spacing: -0.01em; margin-bottom: 2px; }
.cover-cta__chev { font-size: 18px; font-weight: 700; color: var(--iceo-lavender); flex-shrink: 0; }

.cover-care {
  margin-top: 16px;
  padding: 24px;
  background: var(--color-bg-tinted);
  border-radius: var(--r-lg);
}
.cover-care__title {
  margin: 0 0 8px;
  font-size: 18px;
  font-weight: 700;
  letter-spacing: -0.01em;
  color: var(--iceo-purple-dark);
}
.cover-care__text { margin: 0 0 16px; font-size: 15px; line-height: 1.55; color: var(--color-ink); }
.cover-care__text b { color: var(--iceo-purple-dark); font-weight: 700; }
.cover-care__media {
  margin: 0;
  border-radius: var(--r-md);
  overflow: hidden;
  background: var(--neutral-0);
}
.cover-care__media img { width: 100%; height: auto; display: block; }
.cover-care__note {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 14px 0 0;
  padding: 12px 16px;
  background: var(--neutral-0);
  border: 1.5px solid var(--iceo-pink);
  border-radius: var(--r-md);
  font-size: 13px;
  font-weight: 600;
  color: var(--iceo-purple-dark);
}

/* ============ WIFI ============ */
.wifi {
  background: var(--iceo-purple-dark);
  color: #fff;
  border-radius: var(--r-xl);
  padding: 40px 28px;
  margin: 40px 0;
  text-align: center;
}
.wifi__inner .t-eyebrow { color: var(--iceo-lavender); }
.wifi__icon { width: 36px; height: 36px; color: var(--iceo-lavender); margin: 0 auto 8px; }
.wifi__title {
  font-size: clamp(22px, 5.5vw, 28px);
  letter-spacing: -0.02em;
  font-weight: 700;
  margin: 8px 0 20px;
  line-height: 1.2;
}
.wifi__list {
  list-style: none;
  padding: 0;
  margin: 0 0 20px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.wifi__list li {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 10px;
  padding: 12px 16px;
  font-size: 14px;
  font-weight: 600;
}
.wifi__note {
  margin: 0;
  font-size: 13px;
  color: rgba(255,255,255,0.55);
  font-style: italic;
}
.wifi__app-intro {
  margin: 4px 0 16px;
  font-size: 15px;
  line-height: 1.5;
  color: rgba(255,255,255,0.82);
}
.wifi__app-intro b { color: #fff; font-weight: 700; }
.wifi__apps {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-bottom: 22px;
}
.storebtn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 18px;
  border-radius: var(--r-md);
  background: #fff;
  border: 1px solid rgba(255,255,255,0.9);
  color: var(--iceo-purple-dark);
  transition: transform var(--dur-fast) var(--ease-out), box-shadow var(--dur-base) var(--ease-out);
}
.storebtn:hover { transform: translateY(-2px); box-shadow: 0 10px 24px rgba(0,0,0,0.25); }
.storebtn:active { transform: translateY(0); }
.storebtn__icon { width: 24px; height: 24px; flex-shrink: 0; }
.storebtn__text { display: flex; flex-direction: column; line-height: 1.1; text-align: left; }
.storebtn__top { font-size: 10px; font-weight: 600; letter-spacing: 0.02em; color: var(--color-ink-muted); text-transform: uppercase; }
.storebtn__store { font-size: 16px; font-weight: 800; letter-spacing: -0.01em; }

.wifi__help {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 18px;
  padding: 14px 22px;
  border-radius: var(--r-pill);
  background: transparent;
  border: 1.5px solid rgba(255,255,255,0.35);
  color: #fff;
  font-weight: 700;
  font-size: 15px;
  cursor: pointer;
  transition: background var(--dur-base), border-color var(--dur-base);
}
.wifi__help svg { width: 20px; height: 20px; color: var(--iceo-lavender); }
.wifi__help:hover { background: rgba(255,255,255,0.1); border-color: var(--iceo-lavender); }

/* ============ SHEET MODAL (wifi help) ============ */
.sheet {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: grid;
  place-items: end center;
  padding: 0;
}
.sheet[hidden] { display: none; }
.sheet__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(38, 1, 73, 0.55);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  animation: gateFade 280ms var(--ease-out);
}
.sheet__panel {
  position: relative;
  width: 100%;
  max-width: 560px;
  max-height: 92dvh;
  overflow-y: auto;
  background: #faf7fb;
  border-radius: var(--r-xl) var(--r-xl) 0 0;
  padding: 32px 24px 28px;
  box-shadow: var(--shadow-lg);
  animation: sheetUp 380ms var(--ease-out);
}
@keyframes sheetUp { from { transform: translateY(100%); } }
.sheet__close {
  position: absolute;
  top: 16px; right: 16px;
  width: 40px; height: 40px;
  border-radius: 50%;
  border: 0;
  background: var(--neutral-100);
  color: var(--iceo-purple-dark);
  display: grid;
  place-items: center;
  cursor: pointer;
  transition: background var(--dur-base);
}
.sheet__close:hover { background: var(--neutral-200); }
.sheet__close svg { width: 20px; height: 20px; }

.sheet__notice {
  display: grid;
  grid-template-columns: 24px 1fr;
  gap: 14px;
  padding: 18px;
  background: var(--iceo-purple-dark);
  color: #fff;
  border-radius: var(--r-md);
  margin: 8px 0 24px;
  align-items: start;
}
.sheet__notice-icon { width: 24px; height: 24px; color: var(--iceo-lavender); margin-top: 1px; }
.sheet__notice-title { margin: 0 0 5px; font-size: 16px; font-weight: 700; letter-spacing: -0.01em; }
.sheet__notice-text { margin: 0; font-size: 13.5px; line-height: 1.55; color: rgba(255,255,255,0.75); }

.sheet__eyebrow { color: var(--iceo-purple); margin: 0 0 8px; }
.sheet__title {
  font-size: 28px;
  line-height: 1.1;
  letter-spacing: -0.02em;
  font-weight: 800;
  color: var(--iceo-purple-dark);
  margin: 0 0 20px;
}
.sheet__intro {
  margin: -8px 0 20px;
  font-size: 15px;
  line-height: 1.55;
  color: var(--color-ink);
}
.sheet__intro b { color: var(--iceo-purple-dark); font-weight: 700; }
.sheet__warn {
  margin: 16px 0 0;
  padding: 14px 16px;
  background: var(--neutral-0);
  border: 1.5px solid var(--iceo-pink);
  border-radius: var(--r-md);
  font-size: 13px;
  font-weight: 600;
  color: var(--iceo-purple-dark);
}
  list-style: none;
  padding: 0;
  margin: 0 0 24px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.wsteps li {
  display: grid;
  grid-template-columns: 34px 1fr;
  gap: 14px;
  padding: 16px;
  background: var(--neutral-0);
  border: 1px solid var(--color-border);
  border-radius: var(--r-md);
  align-items: start;
}
.wsteps__num {
  width: 34px; height: 34px;
  background: var(--iceo-purple);
  color: #fff;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-weight: 800;
  font-size: 15px;
}
.wsteps__title { margin: 0 0 4px; font-size: 15px; font-weight: 700; color: var(--iceo-purple-dark); line-height: 1.3; }
.wsteps__text { margin: 0; font-size: 14px; line-height: 1.5; color: var(--color-ink-muted); }
.wsteps__text b { color: var(--iceo-purple-dark); font-weight: 700; }
.wkbd {
  display: inline-grid;
  place-items: center;
  width: 22px; height: 22px;
  border-radius: 6px;
  background: var(--iceo-purple);
  color: #fff;
  vertical-align: -5px;
}

.sheet__contact {
  background: var(--color-bg-tinted);
  border-radius: var(--r-md);
  padding: 20px;
  text-align: center;
}
.sheet__contact-text { margin: 0 0 14px; font-size: 14px; line-height: 1.5; color: var(--color-ink); }
.sheet__contact .btn { width: 100%; }

/* ============ FAQ ============ */
.faq {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.faq__item {
  background: var(--neutral-0);
  border: 1px solid var(--color-border);
  border-radius: var(--r-md);
  overflow: hidden;
}
.faq__item summary {
  list-style: none;
  cursor: pointer;
  padding: 18px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  font-size: 15px;
  font-weight: 700;
  color: var(--iceo-purple-dark);
  letter-spacing: -0.005em;
  -webkit-tap-highlight-color: transparent;
}
.faq__item summary::-webkit-details-marker { display: none; }
.faq__chev {
  font-size: 22px;
  font-weight: 400;
  color: var(--iceo-purple);
  transition: transform var(--dur-base) var(--ease-out);
  flex-shrink: 0;
}
.faq__item[open] .faq__chev { transform: rotate(45deg); }
.faq__item[open] { border-color: var(--iceo-purple); }
.faq__body {
  padding: 0 20px 20px;
  font-size: 14px;
  line-height: 1.6;
  color: var(--color-ink-muted);
}
.faq__body p { margin: 0; }
.faq__body b { color: var(--iceo-purple-dark); font-weight: 700; }

/* ============ WATER CARE / UPSELL ============ */
.care {
  padding: 44px 0;
}
.care__eyebrow { color: var(--iceo-purple); margin: 0 0 12px; }
.care__title {
  font-size: clamp(28px, 6vw, 36px);
  line-height: 1.1;
  letter-spacing: -0.02em;
  font-weight: 700;
  color: var(--iceo-purple-dark);
  margin: 0 0 12px;
}
.care__lead {
  font-size: 16px;
  line-height: 1.55;
  color: var(--color-ink-muted);
  margin: 0 0 28px;
}
.care__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  margin-bottom: 16px;
}
.carecard {
  display: flex;
  flex-direction: column;
  background: var(--neutral-0);
  border: 1px solid var(--color-border);
  border-radius: var(--r-lg);
  overflow: hidden;
  transition: transform var(--dur-base) var(--ease-out), box-shadow var(--dur-base) var(--ease-out), border-color var(--dur-base);
}
.carecard:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
  border-color: var(--iceo-purple-light);
}
.carecard__media {
  aspect-ratio: 1 / 1;
  background: var(--color-bg-tinted);
  overflow: hidden;
}
.carecard__media img { width: 100%; height: 100%; object-fit: cover; }
.carecard__body { padding: 20px; display: flex; flex-direction: column; gap: 8px; flex: 1; }
.carecard__tag {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--iceo-purple);
}
.carecard__name { margin: 0; font-size: 21px; font-weight: 700; letter-spacing: -0.01em; color: var(--iceo-purple-dark); }
.carecard__desc { margin: 0; font-size: 14px; line-height: 1.5; color: var(--color-ink-muted); }
.carecard__foot {
  margin-top: auto;
  padding-top: 12px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
.carecard__price { display: flex; align-items: baseline; gap: 8px; }
.carecard__price b { font-size: 20px; font-weight: 800; color: var(--iceo-purple-dark); letter-spacing: -0.01em; }
.carecard__from { font-size: 14px; color: var(--color-ink-soft); text-decoration: line-through; }
.carecard__cta {
  font-size: 14px;
  font-weight: 700;
  color: var(--iceo-purple);
  white-space: nowrap;
}
.carecard:hover .carecard__cta { color: var(--iceo-green-dark); }

.care__combo {
  display: grid;
  grid-template-columns: 28px 1fr;
  gap: 14px;
  align-items: center;
  padding: 18px 20px;
  background: var(--iceo-green-light);
  border-radius: var(--r-md);
}
.care__combo-icon { width: 28px; height: 28px; color: var(--iceo-purple-dark); }
.care__combo p { margin: 0; font-size: 14px; line-height: 1.5; color: var(--iceo-purple-dark); }
.care__combo b { font-weight: 800; }

/* ============ REFERRAL ============ */
.refer {
  margin: 40px 0;
  background: var(--iceo-purple-dark);
  color: #fff;
  border-radius: var(--r-2xl);
  padding: 48px 28px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.refer::before {
  content: '';
  position: absolute;
  inset: auto -10% -50% auto;
  width: 70%;
  aspect-ratio: 1;
  background: radial-gradient(circle, rgba(219,153,219,0.3), transparent 60%);
  pointer-events: none;
}
.refer__inner { position: relative; }
.refer__badge {
  display: inline-block;
  white-space: nowrap;
  background: var(--iceo-green);
  color: var(--iceo-purple-dark);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.02em;
  padding: 7px 16px;
  border-radius: var(--r-pill);
  margin-bottom: 16px;
}
.refer__title {
  font-size: clamp(26px, 6vw, 36px);
  line-height: 1.1;
  letter-spacing: -0.02em;
  font-weight: 800;
  margin: 0 0 14px;
}
.refer__text {
  font-size: 16px;
  line-height: 1.6;
  color: rgba(255,255,255,0.78);
  margin: 0 auto 24px;
  max-width: 420px;
}
.refer__cta { width: 100%; max-width: 320px; }

@media (min-width: 560px) {
  .care__grid { grid-template-columns: 1fr 1fr; }
}

/* ============ GUIDED SESSIONS ============ */
.sessions {
  margin: 40px 0;
  padding: 40px 24px;
  background: var(--color-bg-tinted);
  border-radius: var(--r-xl);
}
.sessions .block__eyebrow { margin-bottom: 12px; }
.sessions .block__title { font-size: clamp(26px, 5.5vw, 34px); }
.sessions .block__lead { font-size: 15px; margin-bottom: 24px; }
.sessions__embed { border-radius: 12px; }
.sessions__embed iframe { display: block; width: 100%; }

/* ============ FOOTER ============ */
.foot {
  margin-top: 48px;
  padding: 32px 0;
  border-top: 1px solid var(--color-border);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  text-align: center;
}
.foot__logo { height: 22px; opacity: 0.5; }
.foot__line { margin: 0; font-size: 12px; color: var(--color-ink-muted); letter-spacing: 0.04em; }
.foot__top {
  font-size: 13px;
  font-weight: 700;
  color: var(--iceo-purple);
  margin-top: 4px;
}

/* ============ RESPONSIVE — wider screens ============ */
@media (min-width: 720px) {
  :root { --page-pad: 32px; --max-w: 720px; }
  .hero { padding: 80px 0 44px; }
  .step { padding: 32px; }
  .cp { padding: 36px 28px; }
  .complete { padding: 80px 40px; }
}
