/* ============================================================
   SEVEN TUNING — components
   ============================================================ */

/* ---------- Buttons ---------- */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-2);
  height: 46px;
  padding-inline: var(--space-5);
  border-radius: var(--r-md);
  font-size: var(--text-sm);
  font-weight: 520;
  letter-spacing: -0.008em;
  white-space: nowrap;
  border: 1px solid transparent;
  transition: background-color 0.18s var(--ease), border-color 0.18s var(--ease), color 0.18s var(--ease),
    transform 0.18s var(--ease), box-shadow 0.18s var(--ease);
  position: relative;
  isolation: isolate;
}

.btn:active {
  transform: translateY(1px);
}

.btn svg {
  width: 17px;
  height: 17px;
  flex: none;
}

.btn--primary {
  background: var(--text);
  color: var(--bg);
  border-color: var(--text);
}
.btn--primary:hover {
  background: #fff;
  border-color: #fff;
}
[data-theme='light'] .btn--primary:hover {
  background: #000;
  border-color: #000;
}

.btn--wa {
  background: var(--ok);
  color: #04170e;
  border-color: var(--ok);
  font-weight: 560;
}
.btn--wa:hover {
  filter: brightness(1.09);
  box-shadow: 0 0 0 4px rgba(47, 214, 138, 0.14);
}

.btn--accent {
  background: var(--accent);
  color: var(--accent-ink);
  border-color: var(--accent);
  font-weight: 560;
}
.btn--accent:hover {
  filter: brightness(1.1);
  box-shadow: 0 0 0 4px var(--accent-glow);
}

.btn--ghost {
  background: color-mix(in oklab, var(--surface-2) 70%, transparent);
  color: var(--text);
  border-color: var(--border-strong);
  backdrop-filter: blur(10px);
}
.btn--ghost:hover {
  background: var(--surface-3);
  border-color: var(--text-3);
}

.btn--quiet {
  background: transparent;
  color: var(--text-2);
  border-color: var(--border);
}
.btn--quiet:hover {
  color: var(--text);
  border-color: var(--border-strong);
  background: var(--surface-2);
}

.btn--sm {
  height: 36px;
  padding-inline: var(--space-4);
  font-size: var(--text-xs);
  border-radius: var(--r-sm);
}

.btn--lg {
  height: 54px;
  padding-inline: var(--space-6);
  font-size: var(--text-base);
}

.btn--block {
  width: 100%;
}

.btn[disabled] {
  opacity: 0.42;
  pointer-events: none;
}

.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  color: var(--accent);
  font-size: var(--text-sm);
  font-weight: 500;
}
.link-arrow svg {
  width: 14px;
  height: 14px;
  transition: transform 0.22s var(--ease);
}
.link-arrow:hover svg {
  transform: translateX(4px);
}

/* ---------- Chips / badges ---------- */

.chip {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  padding: 5px var(--space-3);
  border: 1px solid var(--border);
  border-radius: var(--r-full);
  background: var(--surface-2);
  color: var(--text-2);
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  white-space: nowrap;
}

.chip--accent {
  border-color: var(--accent-dim);
  color: var(--accent);
  background: color-mix(in oklab, var(--accent) 8%, transparent);
}

.tag {
  display: inline-flex;
  align-items: center;
  padding: 4px 9px;
  border-radius: var(--r-xs);
  background: var(--surface-3);
  border: 1px solid var(--border);
  color: var(--text-2);
  font-size: var(--text-xs);
  line-height: 1.3;
}

.pulse {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--ok);
  box-shadow: 0 0 0 0 rgba(47, 214, 138, 0.6);
  animation: pulse 2.6s infinite;
  flex: none;
}
@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(47, 214, 138, 0.5);
  }
  70% {
    box-shadow: 0 0 0 7px rgba(47, 214, 138, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(47, 214, 138, 0);
  }
}

/* ---------- Section heading ---------- */

.sec-head {
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
  margin-bottom: var(--space-12);
  position: relative;
  z-index: 1;
}

.sec-head__kicker {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  color: var(--accent);
  font-size: 1.07em;
}
.sec-head__kicker .num {
  color: var(--text-2);
  font-weight: 650;
  font-size: 1.08em;
  letter-spacing: 0.04em;
}
.sec-head__kicker::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--divider);
  max-width: 160px;
}

.sec-head h2 {
  max-width: 22ch;
}

.sec-head--wide h2 {
  max-width: 34ch;
}

.sec-head__row {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: var(--space-8);
  flex-wrap: wrap;
}

/* ============================================================
   UTILITY BAR + HEADER
   ============================================================ */

.site-bar {
  height: calc(var(--bar-h) + env(safe-area-inset-top, 0px));
  padding-top: env(safe-area-inset-top, 0px);
  overflow: hidden;
  background: var(--bg-deep);
  border-bottom: 1px solid var(--divider);
  display: flex;
  align-items: center;
  position: relative;
  z-index: 60;
}

.site-bar__in {
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  gap: var(--space-3);
  width: 100%;
  max-width: var(--shell);
  margin-inline: auto;
  padding-inline: var(--gutter);
  min-width: 0;
  overflow: hidden;
  white-space: nowrap;
}

.site-bar .mono {
  font-size: 10.5px;
  color: var(--text-3);
  letter-spacing: 0.08em;
  white-space: nowrap;
  flex: none;
}

.site-bar__status {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  color: var(--ok) !important;
  flex: none;
}
.type-caret {
  display: inline-block;
  width: 6px;
  height: 0.95em;
  margin-left: 4px;
  background: currentColor;
  animation: blink 1s steps(2) infinite;
  vertical-align: -1px;
}
@keyframes blink {
  0%, 49% { opacity: 1; }
  50%, 100% { opacity: 0; }
}

.site-bar__sep {
  color: var(--border-strong);
}

.site-bar__spacer {
  flex: 1 1 0.5rem;
  min-width: 8px;
}

.site-bar__hide,
.site-bar__mid,
.site-bar__wide {
  display: none;
}
@media (min-width: 720px) {
  .site-bar__mid {
    display: inline;
  }
}
@media (min-width: 800px) {
  .site-bar__sep.site-bar__wide {
    display: inline;
  }
  .site-bar .site-bar__copy {
    display: block;
    flex: 0 1 auto;
    min-width: 8rem;
    overflow: hidden;
    text-overflow: ellipsis;
  }
}

/* Language switch */
.lang {
  display: inline-flex;
  border: 1px solid var(--border);
  border-radius: var(--r-sm);
  background: var(--surface);
  overflow: visible;
}
.lang button {
  font-family: var(--font-mono);
  font-size: 10.5px;
  letter-spacing: 0.1em;
  padding: 3px 8px;
  color: var(--text-3);
  transition: color 0.16s, background-color 0.16s;
}
.lang button + button {
  border-left: 1px solid var(--border);
}
.lang button:hover {
  color: var(--text);
}
.lang button[aria-pressed='true'] {
  background: var(--accent);
  color: var(--accent-ink);
}

.icon-btn {
  display: inline-grid;
  place-items: center;
  width: 26px;
  height: 26px;
  border-radius: var(--r-sm);
  border: 1px solid var(--border);
  background: var(--surface);
  color: var(--text-2);
  transition: color 0.16s, border-color 0.16s;
}
.icon-btn:hover {
  color: var(--text);
  border-color: var(--border-strong);
}
.icon-btn svg {
  width: 13px;
  height: 13px;
}

.theme-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  height: 28px;
  padding: 0 9px 0 7px;
  border-radius: var(--r-sm);
  border: 1px solid var(--border-strong);
  background: var(--surface);
  color: var(--text);
  font-size: 11px;
  font-weight: 560;
  letter-spacing: 0.02em;
  flex: none;
  cursor: pointer;
  white-space: nowrap;
  overflow: visible;
  transition: color 0.16s, border-color 0.16s, background-color 0.16s;
}
.theme-btn svg {
  width: 14px;
  height: 14px;
  color: var(--accent);
  flex: none;
}
.theme-btn:hover {
  border-color: var(--accent-dim);
  background: var(--accent-soft);
  color: var(--text);
}
.theme-btn--head {
  height: 36px;
  padding: 0 11px 0 9px;
  font-size: 12px;
}
.theme-btn--head svg {
  width: 16px;
  height: 16px;
}
.theme-btn-wrap {
  position: relative;
  display: inline-flex;
  flex: none;
  overflow: visible;
}
/* First-visit pointer under the theme control (mobile + desktop).
   Position is fixed in JS so the sticky header cannot clip it. */
.theme-hint {
  position: fixed;
  display: grid;
  place-items: center;
  width: 28px;
  height: 28px;
  color: var(--accent);
  pointer-events: none;
  z-index: 80;
  transform: translateX(-50%);
}
.theme-hint[hidden] {
  display: none;
}
.theme-hint svg {
  width: 22px;
  height: 22px;
  transform: rotate(-90deg);
  animation: themeHintPulse 0.9s var(--ease) infinite;
  filter: drop-shadow(0 0 8px color-mix(in oklab, var(--accent) 55%, transparent));
}
@keyframes themeHintPulse {
  0%, 100% { transform: rotate(-90deg) translateX(0); opacity: 1; }
  50% { transform: rotate(-90deg) translateX(5px); opacity: 0.5; }
}
@media (prefers-reduced-motion: reduce) {
  .theme-hint svg {
    animation: none;
  }
}

.header-tools {
  display: flex;
  align-items: center;
  gap: 6px;
  flex: none;
  position: relative;
  z-index: 3;
  margin-left: 0;
  overflow: visible;
}
.lang-head {
  position: relative;
  overflow: visible;
}
.lang-head .lang-btn {
  height: 36px;
  min-width: 36px;
  padding: 0 8px;
  justify-content: center;
  border: 1px solid var(--border);
  border-radius: var(--r-sm);
  background: var(--surface);
  color: var(--text-3);
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  box-shadow: none;
}
.lang-head .lang-btn:hover {
  color: var(--text-2);
  border-color: var(--border-strong);
  background: var(--surface);
}
.lang-hint {
  position: absolute;
  right: calc(100% + 6px);
  top: 50%;
  display: grid;
  place-items: center;
  width: 28px;
  height: 28px;
  color: var(--accent);
  pointer-events: none;
  animation: langHintPulse 0.9s var(--ease) infinite;
}
.lang-hint[hidden] {
  display: none;
}
.lang-hint svg {
  width: 22px;
  height: 22px;
}
@keyframes langHintPulse {
  0%, 100% { transform: translate(-2px, -50%); opacity: 1; }
  50% { transform: translate(4px, -50%); opacity: 0.55; }
}
@media (max-width: 639.98px) {
  .lang-hint {
    right: 50%;
    top: calc(100% + 6px);
    animation: langHintPulseMob 0.9s var(--ease) infinite;
  }
  @keyframes langHintPulseMob {
    0%, 100% { transform: translate(50%, 0) rotate(-90deg); opacity: 1; }
    50% { transform: translate(50%, 4px) rotate(-90deg); opacity: 0.55; }
  }
}
@media (prefers-reduced-motion: reduce) {
  .type-caret {
    animation: none;
    opacity: 1;
  }
  .lang-hint {
    animation: none;
    transform: translateY(-50%);
  }
}
@media (max-width: 720px) {
  .theme-btn--head [data-theme-label],
  .theme-btn--head svg:last-of-type {
    display: none;
  }
  .theme-btn--head {
    width: 36px;
    min-width: 36px;
    max-width: 36px;
    padding: 0;
    justify-content: center;
    align-items: center;
    gap: 0;
    overflow: hidden;
  }
  .theme-btn--head svg:first-of-type {
    margin: 0;
    display: block;
  }
  .lang-head .lang-btn svg {
    display: none;
  }
}

/* ---------- Header ---------- */

.site-header {
  position: sticky;
  top: 0;
  z-index: 55;
  height: var(--header-h);
  display: flex;
  align-items: center;
  overflow: visible;
  border-bottom: 1px solid transparent;
  background: transparent;
  transition: background-color 0.3s var(--ease), border-color 0.3s var(--ease), backdrop-filter 0.3s;
}

.site-header.stuck {
  background: color-mix(in oklab, var(--bg) 82%, transparent);
  backdrop-filter: blur(18px) saturate(1.4);
  border-bottom-color: var(--divider);
}

.site-header__in {
  display: flex;
  align-items: center;
  gap: var(--space-6);
  width: 100%;
  max-width: var(--shell);
  margin-inline: auto;
  padding-inline: var(--gutter);
  min-width: 0;
  height: 100%;
}

/* Logo */
.brand {
  display: inline-flex;
  align-items: center;
  gap: var(--space-3);
  flex: none;
}
.brand__mark {
  width: 30px;
  height: 30px;
  color: var(--text);
  flex: none;
}
.brand__txt {
  display: flex;
  flex-direction: column;
  line-height: 1;
  gap: 3px;
}
.brand__name {
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.brand__sub {
  font-family: var(--font-mono);
  font-size: 9.5px;
  letter-spacing: 0.19em;
  text-transform: uppercase;
  color: var(--accent);
}

/* Nav */
.nav {
  display: none;
  align-items: center;
  gap: var(--space-1);
  margin-left: auto;
  min-width: 0;
  flex: 1 1 auto;
}
@media (min-width: 1060px) {
  .nav {
    display: flex;
  }
}
.nav a {
  padding: 8px var(--space-3);
  border-radius: var(--r-sm);
  font-size: var(--text-sm);
  color: var(--text-2);
  font-weight: 450;
  flex: none;
  max-width: 20ch;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  transition: color 0.16s, background-color 0.16s;
}
.nav a:hover {
  color: var(--text);
  background: var(--surface-2);
}
.nav a.active {
  color: var(--text);
}

.nav-more {
  position: relative;
  flex: none;
}
.nav-more__btn {
  height: 32px;
  padding: 0 10px;
  border-radius: var(--r-sm);
  border: 1px solid var(--border);
  background: var(--surface);
  color: var(--text);
  font-size: var(--text-xs);
  font-weight: 560;
}
.nav-more__btn:hover {
  border-color: var(--accent-dim);
  color: var(--accent);
}
.nav-more__menu {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  min-width: 180px;
  padding: 6px;
  border: 1px solid var(--border-strong);
  border-radius: 12px;
  background: var(--surface);
  box-shadow: var(--shadow-lg);
  z-index: 70;
  display: grid;
  gap: 2px;
}
.nav-more__menu[hidden] {
  display: none;
}
.nav-more__menu a {
  display: block;
  max-width: none;
  padding: 8px 10px;
  border-radius: 8px;
  color: var(--text-2);
  font-size: var(--text-sm);
}
.nav-more__menu a:hover {
  background: var(--surface-2);
  color: var(--text);
}
.header-oems {
  display: none;
  align-items: center;
  gap: 6px;
  flex: none;
  position: relative;
  z-index: 2;
  margin-left: 0;
}
.header-oem {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1px;
  flex: none;
  height: 36px;
  min-height: 36px;
  padding: 3px 8px;
  border-radius: var(--r-sm);
  border: 1px solid color-mix(in oklab, var(--accent) 45%, transparent);
  color: var(--accent);
  background: var(--surface);
  font-family: var(--font-mono);
  text-transform: uppercase;
  white-space: nowrap;
  line-height: 1.05;
  text-align: center;
}
.header-oem:hover {
  background: var(--accent-soft);
  color: var(--accent);
}
.header-oem__brand {
  font-size: 10px;
  letter-spacing: 0.06em;
  font-weight: 620;
}
.header-oem__kind {
  font-size: 8px;
  letter-spacing: 0.04em;
  opacity: 0.86;
}
@media (min-width: 1240px) {
  .header-oems {
    display: inline-flex;
  }
}

.card__photo {
  margin: calc(var(--space-6) * -1) calc(var(--space-6) * -1) 0;
  border-bottom: 1px solid var(--border);
  overflow: hidden;
  background: #0a0d14;
  position: relative;
}
.card__photo img {
  width: 100%;
  height: 172px;
  object-fit: cover;
  display: block;
  filter: saturate(0.92) contrast(1.05);
  cursor: zoom-in;
  transition: transform 0.3s var(--ease), filter 0.3s var(--ease);
}
.card__photo img:hover,
.card__photo img:focus-visible {
  transform: scale(1.035);
  filter: saturate(1) contrast(1.05);
}
.card__photo::after {
  content: '';
  position: absolute;
  right: 10px;
  bottom: 10px;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: rgba(6, 9, 14, 0.55);
  opacity: 0;
  transition: opacity 0.2s var(--ease);
  pointer-events: none;
  background-image: url("data:image/svg+xml;utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='11' cy='11' r='7'/%3E%3Cpath d='M21 21l-4.3-4.3'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 14px 14px;
}
.card__photo:hover::after {
  opacity: 1;
}
.ftr-hero {
  margin: 0 0 var(--space-6);
  position: relative;
  z-index: 0;
}
.ftr-hero img {
  width: 100%;
  max-height: 320px;
  object-fit: cover;
  display: block;
}

@media (max-width: 699.98px) {
  .card__photo img {
    height: 136px;
  }
  .ftr-hero img {
    max-height: 200px;
  }
}

.header__cta {
  display: none;
  align-items: center;
  flex-wrap: nowrap;
  gap: var(--space-2);
  min-width: 0;
  flex: 0 0 auto;
  position: relative;
  z-index: 2;
}
@media (min-width: 640px) {
  .header__cta {
    display: flex;
    margin-left: auto;
  }
}
@media (min-width: 1060px) {
  .header__cta {
    margin-left: 0;
  }
}

.kbd-hint {
  display: none;
  align-items: center;
  gap: var(--space-2);
  height: 36px;
  padding-inline: var(--space-3);
  border: 1px solid var(--border);
  border-radius: var(--r-sm);
  background: var(--surface);
  color: var(--text-3);
  font-family: var(--font-mono);
  font-size: 11px;
  white-space: nowrap;
  flex: none;
  transition: border-color 0.16s, color 0.16s;
}
.kbd-hint:hover {
  color: var(--text);
  border-color: var(--border-strong);
}
.kbd-hint__ico {
  display: inline-flex;
  width: 16px;
  height: 16px;
}
.kbd-hint__ico svg {
  width: 16px;
  height: 16px;
}
.kbd-hint kbd {
  display: none;
}
@media (min-width: 1180px) {
  .kbd-hint {
    display: inline-flex;
  }
}

.header__cta .btn,
.header__cta .kbd-hint {
  flex: none;
  overflow: hidden;
}
.header__cta .btn span,
.header__cta .kbd-hint [data-t] {
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 14ch;
}

.burger {
  display: inline-grid;
  place-items: center;
  width: 36px;
  height: 36px;
  border: 1px solid var(--border);
  border-radius: var(--r-sm);
  background: var(--surface);
  margin-left: 0;
  color: var(--text);
  flex: none;
  position: relative;
  z-index: 3;
}
.burger svg {
  width: 17px;
  height: 17px;
}

/* Mobile drawer */
.drawer {
  position: fixed;
  inset: 0;
  z-index: 90;
  background: var(--bg);
  display: flex;
  flex-direction: column;
  padding: var(--space-5) var(--gutter) var(--space-8);
  transform: translateY(-100%);
  transition: transform 0.42s var(--ease);
  overflow-y: auto;
  pointer-events: none;
  visibility: hidden;
}
.drawer.open {
  transform: none;
  pointer-events: auto;
  visibility: visible;
}
.drawer__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: var(--space-8);
}
.drawer nav {
  display: flex;
  flex-direction: column;
}
.drawer nav a {
  padding: var(--space-4) 0;
  border-bottom: 1px solid var(--divider);
  font-size: var(--text-lg);
  letter-spacing: -0.02em;
  display: flex;
  align-items: flex-start;
  gap: var(--space-4);
  white-space: normal;
}
.drawer nav a .mono {
  color: var(--text-3);
  font-size: 10px;
  flex: none;
  margin-top: 0.45em;
}
.drawer nav a span:last-child {
  min-width: 0;
  overflow-wrap: anywhere;
}
.drawer__foot {
  margin-top: var(--space-8);
  display: grid;
  gap: var(--space-3);
}
.drawer__foot .oem-btn,
#oemDrawerFoot {
  max-width: none;
  white-space: normal;
  height: auto;
  min-height: 46px;
  overflow-wrap: anywhere;
}

/* ============================================================
   HERO
   ============================================================ */

.hero {
  position: relative;
  overflow: hidden;
  margin-top: calc(var(--header-h) * -1);
  padding-top: calc(var(--header-h) + clamp(var(--space-16), 9vw, var(--space-32)));
  padding-bottom: clamp(var(--space-12), 6vw, var(--space-20));
  isolation: isolate;
}

.hero__media {
  position: absolute;
  inset: 0;
  z-index: -2;
}
.hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 62% 45%;
  opacity: calc(1 - var(--img-veil));
  transform: scale(1.04);
  animation: heroDrift 26s var(--ease-io) infinite alternate;
}
@keyframes heroDrift {
  to {
    transform: scale(1.11) translate3d(-1.5%, -1%, 0);
  }
}
.hero__media::after {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--hero-tint);
}
.hero__media::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 1;
  background: radial-gradient(ellipse 60% 50% at 12% 8%, var(--accent-glow), transparent 70%);
}

.hero__in {
  position: relative;
  display: grid;
  gap: clamp(var(--space-10), 5vw, var(--space-16));
}

.hero__kicker {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  flex-wrap: wrap;
  color: var(--text-2);
  margin-bottom: var(--space-6);
}
.hero__kicker--after {
  margin-top: var(--space-5);
  margin-bottom: var(--space-3);
  color: var(--text-3);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.hero__noguess {
  margin-top: var(--space-5);
}
.hero__kicker .dot {
  color: var(--accent);
}

.hero h1,
.hero__slogan {
  max-width: 22ch;
}
.hero__slogan span {
  display: block;
}
.hero h1 em {
  font-style: normal;
  color: var(--text-3);
  display: block;
}

.hero__lede {
  margin-top: var(--space-6);
  max-width: 56ch;
  font-size: var(--text-lg);
  color: var(--text-2);
  line-height: 1.5;
}
.hero__lede b {
  color: var(--text);
  font-weight: 500;
}

.hero__cta {
  margin-top: var(--space-8);
  display: flex;
  gap: var(--space-3);
  flex-wrap: wrap;
  align-items: stretch;
}
.hero__cta .btn {
  flex: 1 1 12.5rem;
  min-width: min(100%, 12.5rem);
  white-space: normal;
  height: auto;
  min-height: 48px;
  text-align: center;
  line-height: 1.25;
  padding-block: 12px;
}

/* Stat strip — independent figures, no shared box or 1px grid fill */
.stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-6);
  background: transparent;
  border: 0;
  overflow: visible;
  margin-top: var(--space-10);
  max-width: 720px;
}
@media (min-width: 700px) {
  .stats {
    grid-template-columns: repeat(4, 1fr);
  }
}
.stat {
  background: transparent;
  backdrop-filter: none;
  padding: var(--space-2) 0;
  display: flex;
  flex-direction: column;
  gap: var(--space-1);
}
.stat__v {
  font-size: var(--text-xl);
  font-weight: 560;
  letter-spacing: -0.04em;
  line-height: 1;
  font-family: var(--font-mono);
  font-variant-numeric: tabular-nums;
}
.stat__l {
  color: var(--text-3);
  font-size: 10.5px;
}

/* Brand ticker */
.ticker {
  position: relative;
  overflow: hidden;
  border-top: 1px solid var(--divider);
  border-bottom: 1px solid var(--divider);
  padding-block: var(--space-4);
  mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}
.ticker__track {
  display: flex;
  gap: var(--space-10);
  width: max-content;
  animation: marquee 38s linear infinite;
}
.ticker:hover .ticker__track {
  animation-play-state: paused;
}
@keyframes marquee {
  to {
    transform: translateX(-50%);
  }
}
.ticker span {
  font-family: var(--font-mono);
  font-size: var(--text-xs);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-3);
  white-space: nowrap;
}

/* ============================================================
   CAN-BUS DIAGRAM
   ============================================================ */

.busmap {
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  background: linear-gradient(180deg, var(--surface) 0%, var(--surface-2) 100%);
  overflow: hidden;
}
.busmap__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-4);
  padding: var(--space-3) var(--space-4);
  border-bottom: 1px solid var(--divider);
  flex-wrap: wrap;
}
.busmap__svg {
  padding: var(--space-6) var(--space-4);
}
.busmap svg {
  width: 100%;
  height: auto;
}
.bus-line {
  stroke: var(--border-strong);
  stroke-width: 1;
  fill: none;
}
.bus-flow {
  stroke: var(--accent);
  stroke-width: 1.4;
  fill: none;
  stroke-dasharray: 3 10;
  opacity: 0.85;
  animation: flow 2.6s linear infinite;
}
@keyframes flow {
  to {
    stroke-dashoffset: -26;
  }
}
.bus-car {
  stroke: var(--text-3);
  stroke-width: 1.1;
  fill: none;
  opacity: 0.5;
}
.bus-node rect {
  fill: var(--surface-3);
  stroke: var(--border-strong);
}
.bus-node text {
  font-family: var(--font-mono);
  font-size: 7px;
  letter-spacing: 0.09em;
  fill: var(--text-2);
  text-anchor: middle;
  text-transform: uppercase;
}
.bus-node.hot rect {
  fill: color-mix(in oklab, var(--accent) 14%, var(--surface-3));
  stroke: var(--accent-dim);
}
.bus-node.hot text {
  fill: var(--accent);
}
.busmap__foot {
  border-top: 1px solid var(--divider);
  padding: var(--space-3) var(--space-4);
  display: flex;
  gap: var(--space-5);
  flex-wrap: wrap;
}
.busmap__foot span {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.14em;
  color: var(--text-3);
}

/* ============================================================
   DOORS — "what brings you here"
   ============================================================ */

.doors {
  display: grid;
  gap: var(--space-4);
  grid-template-columns: 1fr;
}
@media (min-width: 860px) {
  .doors {
    grid-template-columns: 1fr 1fr;
  }
}

.door {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
  padding: clamp(var(--space-6), 3vw, var(--space-10));
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  background: var(--surface);
  overflow: hidden;
  transition: border-color 0.24s var(--ease), transform 0.24s var(--ease), background-color 0.24s;
  min-height: 260px;
  text-align: left;
  width: 100%;
}
.door::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle 420px at var(--mx, 30%) var(--my, 0%), var(--accent-glow), transparent 62%);
  opacity: 0;
  transition: opacity 0.32s var(--ease);
  pointer-events: none;
}
.door:hover {
  border-color: var(--accent-dim);
  transform: translateY(-3px);
}
.door:hover::before {
  opacity: 1;
}
.door__ico {
  width: 40px;
  height: 40px;
  border-radius: var(--r-md);
  border: 1px solid var(--border-strong);
  background: var(--surface-3);
  display: grid;
  place-items: center;
  color: var(--accent);
}
.door__ico svg {
  width: 19px;
  height: 19px;
}
.door h3 {
  font-size: var(--text-xl);
  letter-spacing: -0.032em;
}
.door p {
  color: var(--text-2);
  font-size: var(--text-sm);
  max-width: 42ch;
}
.door__foot {
  margin-top: auto;
  display: flex;
  align-items: center;
  gap: var(--space-4);
  flex-wrap: wrap;
  padding-top: var(--space-4);
}

/* ============================================================
   SERVICE CARDS
   ============================================================ */

.cards {
  display: grid;
  gap: var(--space-4);
  grid-template-columns: 1fr;
}
.cards > .empty {
  grid-column: 1 / -1;
}
@media (min-width: 700px) {
  .cards {
    grid-template-columns: 1fr 1fr;
  }
}
@media (min-width: 1080px) {
  .cards--3 {
    grid-template-columns: repeat(3, 1fr);
  }
}

.card {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
  padding: var(--space-6);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  background: var(--surface);
  transition: border-color 0.2s var(--ease), background-color 0.2s var(--ease), transform 0.2s var(--ease);
}
.card:hover {
  border-color: var(--border-strong);
  background: var(--surface-2);
}

.card__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-3);
}
.card__ico {
  width: 32px;
  height: 32px;
  border-radius: var(--r-sm);
  border: 1px solid var(--border-strong);
  background: var(--surface-3);
  display: grid;
  place-items: center;
  color: var(--accent);
  flex: none;
}
.card__ico svg {
  width: 16px;
  height: 16px;
}
.card h3,
.card__title {
  display: block;
  font-size: var(--text-base);
  font-weight: 560;
  letter-spacing: -0.018em;
}
.chip-dd {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  margin: 0;
}
.chip-dd__lab {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-3);
}
.chip-dd select {
  flex: 1 1 12rem;
  min-width: 0;
  height: 40px;
  padding: 0 32px 0 12px;
  border: 1px solid var(--border-strong);
  border-radius: var(--r-sm);
  background: var(--surface-2) url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'><path fill='%23888' d='M1 1l5 5 5-5'/></svg>") no-repeat right 10px center;
  color: var(--text);
  font: inherit;
  font-weight: 560;
  appearance: none;
  -webkit-appearance: none;
  cursor: pointer;
}
.chip-dd select:focus {
  outline: 2px solid var(--accent-dim);
  outline-offset: 1px;
}
.chip-legal {
  font-size: 12px;
  color: var(--text-3);
  line-height: 1.45;
}
button.card {
  appearance: none;
  font: inherit;
  color: inherit;
  cursor: pointer;
  width: 100%;
  text-align: left;
}
.card__lead {
  display: block;
  color: var(--text-2);
  font-size: var(--text-sm);
  line-height: 1.55;
}
.card__more {
  margin: 0;
}
.card__more summary {
  display: inline-flex;
  align-items: center;
  gap: 0.55em;
  list-style: none;
  cursor: pointer;
  user-select: none;
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 560;
  letter-spacing: 0.02em;
  color: var(--text-2);
  padding: 8px 12px;
  border: 1px solid var(--border-strong);
  border-radius: var(--r-sm);
  background: var(--surface-2);
  width: fit-content;
  max-width: 100%;
  line-height: 1.2;
}
.card__more summary::-webkit-details-marker,
.card__more summary::marker {
  display: none;
  content: '';
}
.card__more summary::after {
  content: '';
  width: 0.42em;
  height: 0.42em;
  border-right: 1.5px solid var(--accent);
  border-bottom: 1.5px solid var(--accent);
  transform: rotate(45deg);
  margin-top: -0.12em;
  flex-shrink: 0;
}
.card__more summary:hover {
  color: var(--text);
  border-color: var(--accent-dim);
}
.card__more summary:focus-visible {
  outline: 2px solid var(--accent-dim);
  outline-offset: 2px;
}
.card__more[open] summary {
  color: var(--text);
  border-color: var(--accent-dim);
}
.card__more[open] summary::after {
  transform: rotate(-135deg);
  margin-top: 0.12em;
}
.card__more-body {
  margin-top: var(--space-3);
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}
.card__copy:has(.card__more[open]) .card__lead--teaser {
  display: none;
}
.card__more summary .more-open {
  display: none;
}
.card__more[open] summary .more-closed {
  display: none;
}
.card__more[open] summary .more-open {
  display: inline;
}
.card__bullets {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: var(--space-1);
}
.card__meta {
  margin-top: auto;
  padding-top: var(--space-4);
  border-top: 1px solid var(--divider);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-3);
  flex-wrap: wrap;
}
.price {
  font-family: var(--font-mono);
  font-size: var(--text-sm);
  color: var(--text);
  font-variant-numeric: tabular-nums;
}
.price small {
  color: var(--text-3);
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-right: 5px;
}

#svcGrid.is-collapsed .card.is-extra,
#svcGrid.is-collapsed .card[hidden],
.is-collapsed > .is-extra {
  display: none !important;
}
#svcGrid:not(.is-collapsed) .card.is-extra,
:not(.is-collapsed) > .is-extra {
  animation: svcReveal 0.35s var(--ease);
}
@keyframes svcReveal {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
.svc-more-wrap {
  display: flex;
  justify-content: center;
  margin-top: var(--space-8);
  padding-top: 4px;
}
.svc-more-wrap[hidden] {
  display: none;
}
.svc-more-wrap .btn {
  background: var(--surface);
  color: var(--text);
  border: 1px solid var(--border-strong);
  box-shadow: 0 1px 0 color-mix(in oklab, var(--text) 14%, transparent);
  white-space: normal;
  height: auto;
  min-height: 46px;
  padding-block: 10px;
  backdrop-filter: none;
}
[data-theme='light'] .svc-more-wrap .btn {
  background: var(--bg);
  border-color: color-mix(in oklab, var(--text) 22%, var(--border));
  box-shadow: 0 1px 0 color-mix(in oklab, var(--text) 10%, transparent);
}
.svc-more-wrap .btn svg {
  width: 16px;
  height: 16px;
  transition: transform 0.2s var(--ease);
  transform: rotate(90deg);
}
.svc-more-wrap .btn[aria-expanded='true'] svg {
  transform: rotate(-90deg);
}

/* Filter bar */
.filters {
  display: flex;
  gap: var(--space-2);
  flex-wrap: wrap;
  align-items: center;
  margin-bottom: var(--space-8);
}
.filter {
  padding: 7px var(--space-4);
  border: 1px solid var(--border);
  border-radius: var(--r-full);
  background: var(--surface);
  color: var(--text-2);
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  transition: all 0.16s var(--ease);
}
.filter:hover {
  color: var(--text);
  border-color: var(--border-strong);
}
.filter[aria-pressed='true'] {
  background: var(--text);
  color: var(--bg);
  border-color: var(--text);
}

#fltFilters {
  flex-wrap: nowrap;
  overflow-x: auto;
  padding-bottom: 4px;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;
}
#fltFilters .filter {
  flex: none;
}

/* Search input */
.search {
  position: relative;
  flex: 1 1 240px;
  min-width: 200px;
}
.search input {
  width: 100%;
  height: 40px;
  padding: 0 var(--space-4) 0 38px;
  border: 1px solid var(--border);
  border-radius: var(--r-sm);
  background: var(--surface);
  font-size: var(--text-sm);
  transition: border-color 0.16s;
}
.search input:focus {
  outline: none;
  border-color: var(--accent-dim);
  box-shadow: 0 0 0 3px var(--accent-glow);
}
.search input::placeholder {
  color: var(--text-3);
}
.search svg {
  position: absolute;
  left: 13px;
  top: 50%;
  transform: translateY(-50%);
  width: 15px;
  height: 15px;
  color: var(--text-3);
  pointer-events: none;
}

/* ============================================================
   FAULT LIST (storingen)
   ============================================================ */

.faults {
  display: grid;
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  overflow: hidden;
}

.fault {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: var(--space-4);
  align-items: center;
  padding: var(--space-5);
  background: var(--surface);
  text-align: left;
  width: 100%;
  transition: background-color 0.16s var(--ease);
  position: relative;
}
.fault:hover {
  background: var(--surface-2);
}
.fault::after {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 2px;
  background: var(--accent);
  transform: scaleY(0);
  transition: transform 0.24s var(--ease);
}
.fault:hover::after {
  transform: scaleY(1);
}
.fault__l {
  display: flex;
  flex-direction: column;
  gap: 6px;
  min-width: 0;
}
.fault__brand {
  color: var(--accent);
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}
.fault__t {
  font-size: var(--text-base);
  font-weight: 520;
  letter-spacing: -0.018em;
}
.fault__sym {
  color: var(--text-2);
  font-size: var(--text-sm);
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.fault__r {
  display: flex;
  align-items: center;
  gap: var(--space-4);
  flex: none;
}
.fault__codes {
  display: none;
  gap: 5px;
}
@media (min-width: 780px) {
  .fault__codes {
    display: flex;
  }
}
.code-pill {
  font-family: var(--font-mono);
  font-size: 10.5px;
  padding: 3px 7px;
  border-radius: var(--r-xs);
  background: var(--surface-3);
  border: 1px solid var(--border);
  color: var(--text-2);
  letter-spacing: 0.05em;
}
.fault__go {
  width: 28px;
  height: 28px;
  border-radius: var(--r-sm);
  border: 1px solid var(--border);
  display: grid;
  place-items: center;
  color: var(--text-3);
  transition: all 0.18s var(--ease);
  flex: none;
}
.fault:hover .fault__go {
  color: var(--accent);
  border-color: var(--accent-dim);
  transform: translateX(2px);
}
.fault__go svg {
  width: 13px;
  height: 13px;
}

.empty {
  padding: var(--space-16) var(--space-6);
  text-align: center;
  background: var(--surface);
  display: grid;
  gap: var(--space-3);
  place-items: center;
}
.empty svg {
  width: 30px;
  height: 30px;
  color: var(--text-3);
}
.empty p {
  color: var(--text-2);
  font-size: var(--text-sm);
  max-width: 40ch;
}

/* ============================================================
   MODAL / SHEET (fault detail, command palette)
   ============================================================ */

.overlay {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: grid;
  background: rgba(2, 3, 5, 0.7);
  backdrop-filter: blur(6px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.26s var(--ease);
  padding: var(--gutter);
  overflow-y: auto;
}
.overlay.open {
  opacity: 1;
  pointer-events: auto;
}

.sheet {
  width: 100%;
  max-width: 760px;
  margin: auto;
  background: var(--surface);
  border: 1px solid var(--border-strong);
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-lg);
  transform: translateY(16px) scale(0.99);
  transition: transform 0.3s var(--ease);
  overflow: hidden;
}
.overlay.open .sheet {
  transform: none;
}

.sheet__head {
  position: sticky;
  top: 0;
  z-index: 2;
  display: flex;
  align-items: flex-start;
  gap: var(--space-4);
  padding: var(--space-5) var(--space-6);
  border-bottom: 1px solid var(--divider);
  background: color-mix(in oklab, var(--surface) 92%, transparent);
  backdrop-filter: blur(12px);
}
.sheet__head h3 {
  font-size: var(--text-lg);
}
.sheet__body {
  padding: var(--space-6);
  display: grid;
  gap: var(--space-8);
}
.sheet__foot {
  padding: var(--space-5) var(--space-6);
  border-top: 1px solid var(--divider);
  background: var(--surface-2);
  display: flex;
  gap: var(--space-3);
  flex-wrap: wrap;
  align-items: center;
}
.sheet__close {
  margin-left: auto;
  flex: none;
  width: 34px;
  height: 34px;
  border-radius: var(--r-sm);
  border: 1px solid var(--border);
  display: grid;
  place-items: center;
  color: var(--text-2);
}
.sheet__close:hover {
  color: var(--text);
  background: var(--surface-3);
}
.sheet__close svg {
  width: 15px;
  height: 15px;
}

.deflist {
  display: grid;
  gap: var(--space-3);
}
.deflist h4,
.deflist__h {
  color: var(--accent);
  font-family: var(--font-mono);
  font-size: 10.5px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 450;
}
.deflist ul {
  display: grid;
  gap: var(--space-2);
}
.deflist li {
  display: grid;
  grid-template-columns: 16px 1fr;
  gap: var(--space-3);
  font-size: var(--text-sm);
  color: var(--text-2);
  line-height: 1.55;
}
.deflist li::before {
  content: '';
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--border-strong);
  margin-top: 9px;
}
.deflist--num {
  counter-reset: s;
}
.deflist--num li {
  counter-increment: s;
}
.deflist--num li::before {
  content: counter(s, decimal-leading-zero);
  width: auto;
  height: auto;
  background: none;
  border-radius: 0;
  margin: 0;
  font-family: var(--font-mono);
  font-size: 10px;
  color: var(--accent);
  padding-top: 4px;
}

/* Command palette */
.palette {
  align-items: start;
}
.palette .sheet {
  max-width: 620px;
  margin-top: 12vh;
}
.palette__input {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  padding: var(--space-4) var(--space-5);
  border-bottom: 1px solid var(--divider);
}
.palette__input svg {
  width: 17px;
  height: 17px;
  color: var(--text-3);
  flex: none;
}
.palette__input input {
  flex: 1;
  font-size: var(--text-base);
}
.palette__input input:focus {
  outline: none;
}
.palette__results {
  max-height: min(52vh, 440px);
  overflow-y: auto;
  padding: var(--space-2);
}
.palette__group {
  padding: var(--space-3) var(--space-3) var(--space-1);
  color: var(--text-3);
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}
.pres {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  width: 100%;
  padding: var(--space-3);
  border-radius: var(--r-sm);
  text-align: left;
  font-size: var(--text-sm);
  color: var(--text-2);
}
.pres[data-sel='1'],
.pres:hover {
  background: var(--surface-3);
  color: var(--text);
}
.pres__k {
  font-family: var(--font-mono);
  font-size: 10px;
  color: var(--text-3);
  margin-left: auto;
  flex: none;
  letter-spacing: 0.08em;
}
.pres svg {
  width: 15px;
  height: 15px;
  color: var(--accent);
  flex: none;
}
.palette__foot {
  padding: var(--space-3) var(--space-5);
  border-top: 1px solid var(--divider);
  display: flex;
  gap: var(--space-5);
  background: var(--surface-2);
}
.palette__foot span {
  font-family: var(--font-mono);
  font-size: 10px;
  color: var(--text-3);
}

/* ============================================================
   FEATURE CATALOGUE
   ============================================================ */

.feat-grid {
  display: grid;
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  overflow: hidden;
  grid-template-columns: 1fr;
}
@media (min-width: 700px) {
  .feat-grid {
    grid-template-columns: 1fr 1fr;
  }
}
@media (min-width: 1080px) {
  .feat-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .feat-grid.is-collapsed {
    grid-template-columns: 1fr 1fr;
  }
}
.feat {
  background: var(--surface);
  padding: var(--space-5);
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
  transition: background-color 0.16s, border-color 0.16s;
  text-align: left;
  width: 100%;
  border: 0;
  color: inherit;
  font: inherit;
  cursor: pointer;
  appearance: none;
  -webkit-appearance: none;
}
.feat:hover {
  background: var(--surface-2);
}
.feat:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: -2px;
  z-index: 1;
}
.feat--media {
  padding-top: 0;
}
.feat__photo {
  margin: 0 calc(var(--space-5) * -1) var(--space-2);
  position: relative;
  overflow: hidden;
  background: #0a0d14;
  border-bottom: 1px solid var(--border);
}
.feat__photo img {
  width: 100%;
  height: 96px;
  object-fit: cover;
  display: block;
  filter: saturate(0.92) contrast(1.05);
}
.feat__photo-lab {
  position: absolute;
  left: 8px;
  bottom: 8px;
  padding: 3px 7px;
  border-radius: 3px;
  background: rgba(3, 4, 7, 0.72);
  color: #c9d0da;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  backdrop-filter: blur(6px);
}
@media (max-width: 699.98px) {
  .feat__photo img {
    height: 84px;
  }
}
.feat__top {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: var(--space-3);
}
.feat__n {
  font-size: var(--text-sm);
  font-weight: 520;
  letter-spacing: -0.012em;
}
.feat__tag {
  font-family: var(--font-mono);
  font-size: 9.5px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-3);
  flex: none;
}
.feat__d {
  font-size: var(--text-xs);
  color: var(--text-2);
  line-height: 1.55;
}
.feat .card__more {
  margin-top: 2px;
}
.feat .card__more summary {
  font-size: 11px;
  padding: 6px 10px;
}
.feat .card__lead--teaser {
  font-size: var(--text-xs);
  color: var(--text-2);
  line-height: 1.55;
}
.feat:has(.card__more[open]) .card__lead--teaser {
  display: none;
}
.feat__g {
  display: flex;
  gap: 4px;
  margin-top: auto;
  padding-top: var(--space-2);
}
.feat__g b {
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: 0.1em;
  padding: 2px 5px;
  border-radius: 3px;
  background: var(--surface-3);
  color: var(--text-3);
  font-weight: 450;
  border: 1px solid var(--border);
}

.feat-sheet__media {
  margin: 0;
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  overflow: hidden;
  background: #0a0d14;
}
.feat-sheet__media img {
  width: 100%;
  max-height: 320px;
  object-fit: cover;
  display: block;
}
.feat-sheet__media figcaption {
  display: grid;
  gap: 8px;
  padding: var(--space-3) var(--space-4);
  border-top: 1px solid var(--divider);
  background: var(--surface-2);
}
.feat-sheet__desc {
  font-size: var(--text-sm);
  color: var(--text-2);
  line-height: 1.6;
  margin: 0;
}

@media (max-width: 699.98px) {
  .feat-sheet__media img {
    max-height: 200px;
  }
}

.lightbox-figure {
  margin: 0;
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  overflow: hidden;
  background: #0a0d14;
  display: grid;
  place-items: center;
}
.lightbox-figure img {
  width: 100%;
  max-height: min(70vh, 640px);
  object-fit: contain;
  display: block;
}

/* ============================================================
   STEPS / WERKWIJZE
   ============================================================ */

.steps {
  display: grid;
  gap: var(--space-6);
  grid-template-columns: 1fr;
  counter-reset: st;
}
@media (min-width: 760px) {
  .steps {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 1080px) {
  .steps {
    grid-template-columns: repeat(4, 1fr);
  }
}
.step {
  counter-increment: st;
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
  padding-top: var(--space-5);
  border-top: 1px solid var(--border-strong);
  position: relative;
}
.step::before {
  content: counter(st, decimal-leading-zero);
  font-family: var(--font-mono);
  font-size: 10.5px;
  letter-spacing: 0.16em;
  color: var(--accent);
}
.step::after {
  content: '';
  position: absolute;
  top: -1px;
  left: 0;
  width: 34px;
  height: 2px;
  background: var(--accent);
}
.step h3 {
  font-size: var(--text-base);
}
.step p {
  font-size: var(--text-sm);
  color: var(--text-2);
}

/* ============================================================
   TOOLS / EQUIPMENT
   ============================================================ */

.tools-wrap {
  display: grid;
  gap: clamp(var(--space-8), 4vw, var(--space-16));
  align-items: start;
}
@media (min-width: 1000px) {
  .tools-wrap {
    grid-template-columns: 1.05fr 1fr;
  }
}
.tools-img {
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  overflow: hidden;
  position: relative;
  background: var(--surface);
}
.tools-img img {
  width: 100%;
  opacity: calc(1 - var(--img-veil) * 0.5);
}
.tools-img figcaption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: var(--space-4);
  background: linear-gradient(transparent, rgba(3, 4, 7, 0.9));
  color: #d8dce3;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.tool-list {
  display: grid;
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  overflow: hidden;
}
.tool {
  background: var(--surface);
  padding: var(--space-4) var(--space-5);
  display: grid;
  grid-template-columns: 1fr auto;
  gap: var(--space-3) var(--space-4);
  align-items: center;
  transition: background-color 0.16s;
}
.tool:hover {
  background: var(--surface-2);
}
.tool__n {
  font-size: var(--text-sm);
  font-weight: 520;
}
.tool__r {
  grid-column: 1 / -1;
  font-size: var(--text-xs);
  color: var(--text-2);
  line-height: 1.5;
}
.tool__k {
  font-family: var(--font-mono);
  font-size: 9.5px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  flex: none;
}

/* ============================================================
   PACKAGES
   ============================================================ */

.pkgs {
  display: grid;
  gap: var(--space-4);
  grid-template-columns: 1fr;
}
@media (min-width: 720px) {
  .pkgs {
    grid-template-columns: 1fr 1fr;
  }
}
@media (min-width: 1080px) {
  .pkgs {
    grid-template-columns: repeat(4, 1fr);
  }
  .pkgs.is-collapsed {
    grid-template-columns: 1fr 1fr;
  }
}
.pkg {
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
  padding: var(--space-6);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  background: var(--surface);
  position: relative;
  transition: border-color 0.2s, transform 0.2s var(--ease);
}
.pkg:hover {
  transform: translateY(-3px);
  border-color: var(--border-strong);
}
.pkg--hl {
  border-color: var(--accent-dim);
  background: linear-gradient(180deg, color-mix(in oklab, var(--accent) 7%, var(--surface)), var(--surface) 60%);
}
.pkg--hunt {
  box-shadow: 0 0 0 1px var(--accent-dim), 0 16px 40px -18px var(--accent-glow);
}
.pkg__badge {
  position: absolute;
  top: -1px;
  right: var(--space-5);
  transform: translateY(-50%);
  background: var(--accent);
  color: var(--accent-ink);
  font-family: var(--font-mono);
  font-size: 9.5px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 3px 8px;
  border-radius: var(--r-xs);
}
.pkg__deal {
  position: absolute;
  top: -1px;
  left: var(--space-5);
  transform: translateY(-50%);
  z-index: 1;
  background: color-mix(in oklab, var(--bg) 88%, var(--accent));
  color: var(--accent);
  border: 1px solid var(--accent-dim);
  font-family: var(--font-mono);
  font-size: 9.5px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 3px 8px;
  border-radius: var(--r-xs);
  cursor: pointer;
  line-height: 1.3;
  max-width: 46%;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.pkg__deal:hover,
.pkg__deal:focus-visible {
  background: var(--accent);
  color: var(--accent-ink);
  outline: none;
}
.pkg__k {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-3);
}
.pkg h3 {
  font-size: var(--text-base);
}
.pkg__p {
  font-family: var(--font-mono);
  font-size: var(--text-xl);
  font-weight: 500;
  letter-spacing: -0.03em;
  line-height: 1;
  font-variant-numeric: tabular-nums;
}
.pkg__p small {
  display: block;
  font-family: var(--font-mono);
  font-size: 9.5px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-3);
  margin-bottom: 5px;
  font-weight: 400;
}
.pkg ul {
  display: grid;
  gap: var(--space-2);
  padding-top: var(--space-4);
  border-top: 1px solid var(--divider);
}
.pkg li {
  display: grid;
  grid-template-columns: 15px 1fr;
  gap: var(--space-2);
  font-size: var(--text-xs);
  color: var(--text-2);
  line-height: 1.5;
}
.pkg li svg {
  width: 12px;
  height: 12px;
  color: var(--accent);
  margin-top: 3px;
}
.pkg .btn {
  margin-top: auto;
}

/* ============================================================
   TRADE / B2B
   ============================================================ */

.trade {
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  overflow: hidden;
  background: var(--surface);
  display: grid;
}
@media (min-width: 960px) {
  .trade {
    grid-template-columns: 0.9fr 1.1fr;
  }
}
.trade__l {
  padding: clamp(var(--space-6), 3vw, var(--space-10));
  background: linear-gradient(150deg, var(--surface-2), var(--surface));
  border-bottom: 1px solid var(--divider);
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
}
@media (min-width: 960px) {
  .trade__l {
    border-bottom: 0;
    border-right: 1px solid var(--divider);
  }
}
.trade__r {
  display: grid;
  gap: 1px;
  background: var(--divider);
}
@media (min-width: 620px) {
  .trade__r {
    grid-template-columns: 1fr 1fr;
  }
}
.trade__i {
  background: var(--surface);
  padding: var(--space-5);
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
}
.trade__i summary {
  cursor: pointer;
  list-style: none;
  display: grid;
  gap: 6px;
}
.trade__i summary::-webkit-details-marker {
  display: none;
}
.trade__i .trade__h {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-3);
}
.trade__i .trade__h h3 {
  margin: 0;
  flex: 1 1 auto;
  min-width: 0;
}
.trade__i .trade__chev {
  flex: none;
  width: 16px;
  height: 16px;
  color: var(--accent);
  transition: transform 0.18s var(--ease);
}
.trade__i[open] .trade__chev {
  transform: rotate(180deg);
}
.trade__i h3,
.trade__i h4 {
  font-size: var(--text-sm);
}
.trade__i p {
  font-size: var(--text-xs);
  color: var(--text-2);
  line-height: 1.55;
  margin: 8px 0 0;
}

/* ============================================================
   FAQ
   ============================================================ */

.faq {
  display: grid;
  gap: 1px;
  background: var(--border);
  border-block: 1px solid var(--border);
}
.qa {
  background: var(--surface);
}
.qa__q {
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 20px;
  gap: var(--space-4);
  align-items: center;
  padding: var(--space-5) var(--space-2);
  text-align: left;
  font-size: var(--text-base);
  font-weight: 460;
  letter-spacing: -0.015em;
  transition: color 0.16s;
}
.qa__q h3 {
  font: inherit;
  font-weight: inherit;
  margin: 0;
  text-align: left;
}
.qa__q:hover {
  color: var(--accent);
}
.qa__q svg {
  width: 16px;
  height: 16px;
  color: var(--text-3);
  transition: transform 0.28s var(--ease);
}
.qa[open] .qa__q svg,
.qa.open .qa__q svg {
  transform: rotate(45deg);
  color: var(--accent);
}
.qa__a {
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.34s var(--ease);
}
.qa__a > div {
  padding: 0 var(--space-2) var(--space-6);
  color: var(--text-2);
  font-size: var(--text-sm);
  line-height: 1.6;
  max-width: 74ch;
}

/* ============================================================
   BOOKING
   ============================================================ */

.book {
  display: grid;
  gap: clamp(var(--space-8), 4vw, var(--space-12));
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  background: var(--surface);
  padding: clamp(var(--space-6), 3.5vw, var(--space-12));
  position: relative;
  /* visible: overflow:hidden clipped native <select> dropdowns (bkSvc / bkDay) */
  overflow: visible;
}
@media (min-width: 1000px) {
  .book {
    grid-template-columns: 0.85fr 1.15fr;
  }
}
.book::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: radial-gradient(ellipse 70% 90% at 100% 0%, var(--accent-glow), transparent 60%);
  pointer-events: none;
}
.book__l {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: var(--space-5);
}
.book__form {
  position: relative;
  z-index: 2;
  display: grid;
  gap: var(--space-5);
}
.field {
  display: grid;
  gap: var(--space-2);
  position: relative;
  z-index: 1;
}
.field:focus-within {
  z-index: 5;
}
.field > label,
.fieldset > legend {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-3);
}
.inp {
  width: 100%;
  height: 46px;
  padding-inline: var(--space-4);
  border: 1px solid var(--border);
  border-radius: var(--r-sm);
  background: var(--surface-2);
  font-size: var(--text-sm);
  transition: border-color 0.16s, box-shadow 0.16s;
}
textarea.inp {
  height: auto;
  min-height: 92px;
  padding-block: var(--space-3);
  resize: vertical;
  line-height: 1.55;
}
select.inp {
  appearance: none;
  -webkit-appearance: none;
  cursor: pointer;
  pointer-events: auto;
  background-color: var(--surface-2);
  background-image: linear-gradient(45deg, transparent 50%, currentColor 50%),
    linear-gradient(135deg, currentColor 50%, transparent 50%);
  background-position: calc(100% - 19px) 21px, calc(100% - 14px) 21px;
  background-size: 5px 5px;
  background-repeat: no-repeat;
  padding-right: var(--space-10);
  color: var(--text);
  position: relative;
  z-index: 2;
}
select.inp option {
  background: var(--surface);
  color: var(--text);
}
select.inp optgroup {
  background: #0a0d14;
  color: var(--accent);
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.08em;
  font-weight: 600;
}
.inp:focus {
  outline: none;
  border-color: var(--accent-dim);
  box-shadow: 0 0 0 3px var(--accent-glow);
}
.inp::placeholder {
  color: var(--text-3);
}
.field--2 {
  display: grid;
  gap: var(--space-4);
}
@media (min-width: 620px) {
  .field--2 {
    grid-template-columns: 1fr 1fr;
  }
}
.fieldset {
  border: 0;
  padding: 0;
  display: grid;
  gap: var(--space-2);
}
.slots {
  display: flex;
  gap: var(--space-2);
  flex-wrap: wrap;
}
.slot {
  padding: 8px var(--space-4);
  border: 1px solid var(--border);
  border-radius: var(--r-sm);
  background: var(--surface-2);
  font-family: var(--font-mono);
  font-size: 11.5px;
  color: var(--text-2);
  transition: all 0.16s;
}
.slot:hover {
  border-color: var(--border-strong);
  color: var(--text);
}
.slot[aria-pressed='true'] {
  background: var(--accent);
  border-color: var(--accent);
  color: var(--accent-ink);
}

.contact-grid {
  display: grid;
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  overflow: hidden;
}
.contact-grid > div {
  background: var(--surface-2);
  padding: var(--space-4) var(--space-5);
  display: grid;
  gap: 3px;
}
.contact-grid dt {
  font-family: var(--font-mono);
  font-size: 9.5px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-3);
}
.contact-grid dd {
  font-size: var(--text-sm);
  margin: 0;
  line-height: 1.5;
}

/* ============================================================
   FOOTER
   ============================================================ */

.site-footer {
  border-top: 1px solid var(--divider);
  background: var(--bg-deep);
  padding-block: var(--space-16) var(--space-8);
  margin-top: var(--space-8);
}
.foot-grid {
  display: grid;
  gap: var(--space-10);
  grid-template-columns: 1fr;
}
@media (min-width: 760px) {
  .foot-grid {
    grid-template-columns: 1.4fr 1fr 1fr 1fr;
  }
}
.foot-col h2,
.foot-col h4 {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-3);
  margin-bottom: var(--space-4);
  font-weight: 450;
}
.foot-col ul {
  display: grid;
  gap: var(--space-2);
}
.foot-col a,
.foot-col li {
  font-size: var(--text-sm);
  color: var(--text-2);
}
.foot-col a:hover {
  color: var(--accent);
}
.foot-trust {
  margin-top: var(--space-10);
  padding-top: var(--space-6);
  border-top: 1px solid var(--divider);
}
.foot-trust__k {
  margin: 0 0 var(--space-3);
}
.foot-tag {
  margin-top: var(--space-4);
  max-width: none;
  font-size: 10px;
  line-height: 1.45;
  letter-spacing: 0.02em;
  white-space: normal;
}
.foot-trust__row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
  list-style: none;
  padding: 0;
  margin: 0;
}
.foot-trust__row[hidden],
#payMarksOff[hidden],
#payMarksLive[hidden] {
  display: none !important;
}
.foot-trust__row + .foot-trust__row:not([hidden]) {
  margin-top: 22px;
  padding-top: 18px;
  border-top: 1px solid var(--divider);
}
.pay-mark {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  height: 34px;
  padding: 0 10px;
  border: 1px solid var(--border);
  border-radius: var(--r-sm);
  background: var(--surface);
  color: var(--text);
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.pay-mark svg {
  display: block;
  flex: none;
  width: 15px;
  height: 15px;
}
.pay-mark--mc svg {
  width: 28px;
  height: 18px;
}
.pay-mark--ssl {
  color: var(--ok);
  border-color: color-mix(in oklab, var(--ok) 35%, var(--border));
}
.pay-mark--ssl svg {
  width: 13px;
  height: 13px;
}
.foot-bottom {
  margin-top: var(--space-6);
  padding-top: var(--space-6);
  border-top: 1px solid var(--divider);
  display: flex;
  justify-content: space-between;
  gap: var(--space-4);
  flex-wrap: wrap;
}
.foot-bottom .mono {
  font-size: 10px;
  color: var(--text-3);
}
.seo-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-2);
  margin-top: var(--space-8);
}
.seo-cloud a {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.06em;
  color: var(--text-3);
  padding: 3px 7px;
  border: 1px solid var(--divider);
  border-radius: var(--r-xs);
  transition: all 0.16s;
}
.seo-cloud a:hover {
  color: var(--accent);
  border-color: var(--accent-dim);
}

/* ============================================================
   STICKY DOCK (mobile)
   ============================================================ */

.dock {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 70;
  padding: var(--space-3) var(--gutter) calc(var(--space-3) + env(safe-area-inset-bottom));
  background: color-mix(in oklab, var(--bg) 38%, transparent);
  backdrop-filter: blur(22px) saturate(1.15);
  -webkit-backdrop-filter: blur(22px) saturate(1.15);
  border-top: 1px solid color-mix(in oklab, var(--divider) 55%, transparent);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-2);
  transform: translateY(110%);
  transition: transform 0.36s var(--ease);
  pointer-events: none;
}
.dock.show {
  transform: none;
  pointer-events: auto;
}
.dock .btn {
  min-width: 0;
  height: auto;
  min-height: 44px;
  white-space: normal;
  line-height: 1.2;
  padding-block: 8px;
  padding-inline: var(--space-3);
  text-align: center;
  font-weight: 620;
}
.dock .btn.btn--primary {
  background: #f4f6fa;
  color: #030407;
  border-color: #f4f6fa;
  box-shadow: 0 0 12px rgba(255, 255, 255, 0.28);
}
.dock .btn.btn--ghost {
  background: #ffffff;
  color: #030407;
  border-color: #ffffff;
  box-shadow: 0 0 12px rgba(255, 255, 255, 0.32);
}
.dock .btn.btn--book {
  background: var(--warn);
  color: #1a1000;
  border-color: var(--warn);
  box-shadow: 0 0 16px color-mix(in oklab, var(--warn) 55%, transparent);
}
.dock .btn.btn--accent {
  background: var(--accent);
  color: #04121a;
  border-color: var(--accent);
  box-shadow: 0 0 16px color-mix(in oklab, var(--accent) 55%, transparent);
}
.dock .btn.btn--wa {
  background: var(--ok);
  color: #04170e;
  border-color: var(--ok);
  box-shadow: 0 0 16px color-mix(in oklab, var(--ok) 50%, transparent);
}
[data-theme='light'] .dock .btn.btn--primary {
  background: #12141a;
  color: #f4f6fa;
  border-color: #12141a;
  box-shadow: none;
}
@media (min-width: 900px) {
  .dock {
    display: none;
  }
}

.wa-float {
  position: fixed;
  right: clamp(1rem, 3vw, 2rem);
  bottom: clamp(1rem, 3vw, 2rem);
  z-index: 70;
  display: none;
  align-items: center;
  gap: var(--space-2);
  height: 50px;
  padding-inline: var(--space-5);
  border-radius: var(--r-full);
  background: var(--ok);
  color: #04170e;
  font-size: var(--text-sm);
  font-weight: 560;
  box-shadow: 0 12px 32px -8px rgba(0, 0, 0, 0.6);
  transform: translateY(120%);
  transition: transform 0.4s var(--ease), filter 0.18s;
  pointer-events: none;
}
.wa-float.show {
  transform: none;
  pointer-events: auto;
}
.wa-float:hover {
  filter: brightness(1.08);
}
.wa-float svg {
  width: 19px;
  height: 19px;
}
@media (min-width: 900px) {
  .wa-float {
    display: inline-flex;
  }
}

/* Toast */
.toast {
  position: fixed;
  left: 50%;
  bottom: var(--space-8);
  transform: translate(-50%, 200%);
  z-index: 120;
  background: var(--text);
  color: var(--bg);
  padding: var(--space-3) var(--space-5);
  border-radius: var(--r-full);
  font-size: var(--text-sm);
  font-weight: 500;
  box-shadow: var(--shadow-lg);
  transition: transform 0.4s var(--ease);
  white-space: nowrap;
  max-width: calc(100vw - 2rem);
}
.toast.show {
  transform: translate(-50%, 0);
}

/* Notice banner */
.notice {
  display: flex;
  gap: var(--space-3);
  padding: var(--space-4) var(--space-5);
  border: 1px solid var(--border);
  border-left: 2px solid var(--warn);
  border-radius: var(--r-sm);
  background: var(--surface-2);
  font-size: var(--text-xs);
  color: var(--text-2);
  line-height: 1.55;
}
/* `.notice { display: flex }` above beats the browser's built-in
   `[hidden] { display: none }` rule (same specificity, later in the
   cascade), so a hidden notice — e.g. #bkPlaceHint under "Locatie" when
   Rotterdam isn't selected, or #shopNote — rendered as a permanently
   visible empty bordered box instead of disappearing. */
.notice[hidden] {
  display: none;
}
.notice svg {
  width: 15px;
  height: 15px;
  color: var(--warn);
  flex: none;
  margin-top: 2px;
}
.bk-place-hint {
  margin-top: 8px;
  border-left-color: var(--accent);
}
#bkDayCustom:not([hidden]),
#bkTimeCustom:not([hidden]),
#bkSvcCustom:not([hidden]) {
  margin-top: 8px;
}
.svc-more-wrap {
  overflow-anchor: auto;
}

/* Split feature block */
.split {
  display: grid;
  gap: clamp(var(--space-8), 4vw, var(--space-16));
  align-items: center;
}
@media (min-width: 960px) {
  .split {
    grid-template-columns: 1fr 1fr;
  }
  .split--rev > :first-child {
    order: 2;
  }
}
.split__media {
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  overflow: hidden;
  position: relative;
}
.split__media img {
  width: 100%;
  opacity: calc(1 - var(--img-veil) * 0.45);
  transition: transform 0.9s var(--ease);
}
.split__media:hover img {
  transform: scale(1.03);
}
.split__body {
  display: flex;
  flex-direction: column;
  gap: var(--space-5);
}
.checklist {
  display: grid;
  gap: var(--space-3);
}
.checklist li {
  display: grid;
  grid-template-columns: 18px 1fr;
  gap: var(--space-3);
  font-size: var(--text-sm);
  color: var(--text-2);
}
.checklist svg {
  width: 15px;
  height: 15px;
  color: var(--accent);
  margin-top: 4px;
}

/* ============================================================
   COOKIE BAR
   ============================================================ */

.cookie-bar {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 80;
  background: var(--bg-deep);
  border-top: 1px solid var(--divider);
  padding-block: var(--space-5);
}
.cookie-bar__in {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-5);
  align-items: flex-end;
  justify-content: space-between;
}
.cookie-bar__title {
  font-size: var(--text-sm);
  font-weight: 600;
  margin: 0 0 var(--space-2);
}
.cookie-bar__text {
  margin: 0;
  max-width: 62ch;
  font-size: var(--text-xs);
  color: var(--text-2);
  line-height: 1.5;
}
.cookie-bar__act {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-3);
}
.cookie-accept {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 1px;
  height: auto;
  min-height: 44px;
  padding-block: 7px;
  line-height: 1.15;
}
.cookie-accept em {
  font-style: normal;
  font-size: 9px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  opacity: 0.8;
}
@media (max-width: 699.98px) {
  .cookie-bar {
    bottom: 0;
    padding-bottom: calc(var(--space-4) + env(safe-area-inset-bottom, 0px));
    z-index: 90;
  }
}
html.cookie-open .dock,
html.cookie-open .wa-float,
html.cookie-open .shop-cart-float {
  visibility: hidden;
  pointer-events: none;
}
