/* ============================================================
   Hartman Elektra — Design Tokens
   Exacte merkkleuren van hartmanelektra.nl (logo-brons)
   ============================================================ */

:root {
  /* Colors — Hartman brand (brons, geen fel geel) */
  --color-bg: #07090c;
  --color-bg-secondary: #0e1116;
  --color-surface: #121720;
  --color-surface-hover: #171d28;
  /* Dieper brons — minder ‘geel’, dichter bij logo-bruin */
  --color-primary: #7a5c30;
  --color-primary-soft: #957240;
  --color-primary-deep: #5c4524;
  --color-primary-dim: rgba(122, 92, 48, 0.12);
  --color-glow: rgba(122, 92, 48, 0.12);
  --color-text: #f7f7f5;
  --color-muted: #9ba3ae;
  --color-muted-2: #6b7380;
  --color-border: rgba(255, 255, 255, 0.08);
  --color-border-strong: rgba(255, 255, 255, 0.14);
  --color-danger: #c44b4b;
  --color-danger-soft: rgba(196, 75, 75, 0.15);
  --color-success: #3dd68c;
  --color-success-soft: rgba(61, 214, 140, 0.15);
  --color-white: #ffffff;
  --color-black: #000000;
  --worklight-boost: 0;

  --font-display: 'Manrope', system-ui, sans-serif;
  --font-body: 'Inter', system-ui, sans-serif;
  --font-mono: ui-monospace, 'SFMono-Regular', Menlo, Consolas, monospace;

  --text-xs: clamp(0.7rem, 0.65rem + 0.2vw, 0.75rem);
  --text-sm: clamp(0.8rem, 0.75rem + 0.25vw, 0.875rem);
  --text-base: clamp(0.95rem, 0.9rem + 0.25vw, 1.0625rem);
  --text-lg: clamp(1.05rem, 1rem + 0.35vw, 1.25rem);
  --text-xl: clamp(1.25rem, 1.1rem + 0.6vw, 1.5rem);
  --text-2xl: clamp(1.5rem, 1.25rem + 1vw, 2rem);
  --text-3xl: clamp(2rem, 1.5rem + 2vw, 3rem);
  --text-4xl: clamp(2.5rem, 1.75rem + 3vw, 4rem);
  --text-hero: clamp(2.75rem, 1.5rem + 5.5vw, 6rem);

  --leading-tight: 1.05;
  --leading-snug: 1.2;
  --leading-normal: 1.6;
  --tracking-tight: -0.03em;
  --tracking-wide: 0.08em;
  --tracking-mega: 0.14em;

  --space-2xs: 0.25rem;
  --space-xs: 0.5rem;
  --space-sm: 0.75rem;
  --space-md: 1rem;
  --space-lg: 1.5rem;
  --space-xl: 2rem;
  --space-2xl: 3rem;
  --space-3xl: 4.5rem;
  --space-4xl: 6.5rem;
  --space-5xl: 9rem;

  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --radius-2xl: 32px;
  --radius-full: 9999px;

  --container: 1440px;
  --content: 1240px;
  --narrow: 720px;
  --header-h: 72px;
  --header-h-scrolled: 60px;
  --mobile-cta-h: 72px;

  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-in-out: cubic-bezier(0.45, 0, 0.55, 1);
  --duration-fast: 160ms;
  --duration-base: 280ms;
  --duration-slow: 500ms;

  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.25);
  --shadow-md: 0 8px 32px rgba(0, 0, 0, 0.35);
  --shadow-glow: 0 0 24px var(--color-glow);

  --z-base: 1;
  --z-header: 100;
  --z-mega: 110;
  --z-overlay: 200;
  --z-modal: 300;
  --z-cursor: 400;
  --z-toast: 500;
}

html.worklight-on {
  --color-bg: #10141a;
  --color-bg-secondary: #161b24;
  --color-surface: #1a2130;
  --worklight-boost: 1;
}

@media (prefers-reduced-motion: reduce) {
  :root {
    --duration-fast: 0ms;
    --duration-base: 0ms;
    --duration-slow: 0ms;
  }
}
/* ============================================================
   Hartman Elektra — Base
   ============================================================ */

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-h) + 1.5rem);
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
}

body {
  font-family: var(--font-body);
  font-size: var(--text-base);
  line-height: var(--leading-normal);
  color: var(--color-text);
  background: var(--color-bg);
  min-height: 100dvh;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body.has-custom-cursor {
  cursor: none;
}

body.has-custom-cursor a,
body.has-custom-cursor button,
body.has-custom-cursor [role='button'],
body.has-custom-cursor input,
body.has-custom-cursor textarea,
body.has-custom-cursor select,
body.has-custom-cursor label {
  cursor: none;
}

img,
svg,
video {
  display: block;
  max-width: 100%;
  height: auto;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
textarea,
select {
  font: inherit;
  color: inherit;
}

button {
  background: none;
  border: none;
  cursor: pointer;
}

ul,
ol {
  list-style: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-display);
  font-weight: 650;
  line-height: var(--leading-tight);
  letter-spacing: var(--tracking-tight);
  text-wrap: balance;
}

p {
  text-wrap: pretty;
}

::selection {
  background: var(--color-primary);
  color: var(--color-bg);
}

:focus-visible {
  outline: 2px solid var(--color-primary);
  outline-offset: 3px;
}

.skip-link {
  position: absolute;
  left: var(--space-md);
  top: -100px;
  z-index: var(--z-toast);
  background: var(--color-primary);
  color: var(--color-bg);
  padding: var(--space-sm) var(--space-md);
  border-radius: var(--radius-sm);
  font-weight: 600;
}

.skip-link:focus {
  top: var(--space-md);
}

.container {
  width: min(100% - 2.5rem, var(--container));
  margin-inline: auto;
}

.container--content {
  width: min(100% - 2.5rem, var(--content));
  margin-inline: auto;
}

.container--narrow {
  width: min(100% - 2.5rem, var(--narrow));
  margin-inline: auto;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-mono);
  font-size: var(--text-xs);
  font-weight: 500;
  letter-spacing: var(--tracking-mega);
  text-transform: uppercase;
  color: var(--color-muted);
}

.eyebrow__dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--color-muted-2);
  box-shadow: none;
  animation: none;
}

@keyframes pulse-dot {
  0%,
  100% {
    box-shadow: 0 0 0 0 var(--color-glow);
  }
  50% {
    box-shadow: 0 0 0 8px transparent;
  }
}

.section {
  padding-block: var(--space-4xl);
  position: relative;
}

.section--tight {
  padding-block: var(--space-3xl);
}

.section__header {
  margin-bottom: var(--space-2xl);
  max-width: 40rem;
}

.section__header--center {
  margin-inline: auto;
  text-align: center;
}

.section__title {
  font-size: var(--text-3xl);
  margin-top: var(--space-sm);
  white-space: pre-line;
}

.section__sub {
  margin-top: var(--space-md);
  color: var(--color-muted);
  font-size: var(--text-lg);
  max-width: 36rem;
}

.section__header--center .section__sub {
  margin-inline: auto;
}

.text-muted {
  color: var(--color-muted);
}

.text-primary {
  color: var(--color-primary);
}

.mono {
  font-family: var(--font-mono);
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity var(--duration-slow) var(--ease-out),
    transform var(--duration-slow) var(--ease-out);
}

.reveal.is-visible {
  opacity: 1;
  transform: none;
}

@media (prefers-reduced-motion: reduce) {
  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .eyebrow__dot {
    animation: none;
  }
}
/* ============================================================
   Hartman Elektra — Components
   ============================================================ */

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  min-height: 48px;
  padding: 0.75rem 1.35rem;
  border-radius: var(--radius-md);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: var(--text-sm);
  letter-spacing: -0.01em;
  transition:
    transform var(--duration-fast) var(--ease-out),
    background var(--duration-base) var(--ease-out),
    border-color var(--duration-base) var(--ease-out),
    color var(--duration-base) var(--ease-out),
    box-shadow var(--duration-base) var(--ease-out);
  white-space: nowrap;
  text-decoration: none;
  border: 1px solid transparent;
  position: relative;
}

.btn__arrow {
  display: inline-block;
  transition: transform var(--duration-fast) var(--ease-out);
}

.btn:hover .btn__arrow,
.btn:focus-visible .btn__arrow {
  transform: translateX(4px);
}

.btn--primary {
  background: var(--color-primary);
  color: #0a0a0a;
  box-shadow: none;
}

.btn--primary:hover {
  background: var(--color-primary-soft);
  box-shadow: none;
  color: #0a0a0a;
}

.btn--secondary {
  background: transparent;
  border-color: var(--color-border-strong);
  color: var(--color-text);
}

.btn--secondary:hover {
  border-color: var(--color-primary);
  background: var(--color-primary-dim);
}

.btn--dark {
  background: var(--color-surface);
  border-color: var(--color-border);
  color: var(--color-text);
}

.btn--dark:hover {
  background: var(--color-surface-hover);
  border-color: var(--color-border-strong);
}

.btn--danger {
  background: var(--color-danger);
  color: var(--color-white);
}

.btn--danger:hover {
  filter: brightness(1.08);
}

.btn--ghost {
  background: transparent;
  color: var(--color-muted);
  padding-inline: 0.5rem;
}

.btn--ghost:hover {
  color: var(--color-text);
}

.btn--link {
  background: transparent;
  color: var(--color-text);
  padding-inline: 0;
  min-height: auto;
}

.btn--link:hover {
  color: var(--color-muted);
}

.btn--lg {
  min-height: 56px;
  padding-inline: 1.75rem;
  font-size: var(--text-base);
}

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

.btn--icon {
  width: 48px;
  height: 48px;
  padding: 0;
  border-radius: var(--radius-full);
}

/* ---------- Cards ---------- */
.card {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-xl);
  padding: var(--space-xl);
  transition:
    background var(--duration-base) var(--ease-out),
    border-color var(--duration-base) var(--ease-out),
    transform var(--duration-base) var(--ease-out);
}

.card:hover {
  border-color: var(--color-border-strong);
}

.choice-card {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
  min-height: 200px;
  padding: var(--space-xl);
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-xl);
  overflow: hidden;
  text-align: left;
  transition:
    background var(--duration-base) var(--ease-out),
    border-color var(--duration-base) var(--ease-out),
    transform var(--duration-base) var(--ease-out);
}

.choice-card .choice-card__num,
.choice-card .choice-card__title,
.choice-card .choice-card__text,
.choice-card .choice-card__link {
  text-shadow: 0 1px 12px rgba(0, 0, 0, 0.55);
}

.choice-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(var(--color-border) 1px, transparent 1px),
    linear-gradient(90deg, var(--color-border) 1px, transparent 1px);
  background-size: 24px 24px;
  opacity: 0;
  transition: opacity var(--duration-base) var(--ease-out);
  pointer-events: none;
}

.choice-card:hover {
  background: var(--color-surface-hover);
  border-color: var(--color-border-strong);
  transform: rotate(-0.4deg);
}

.choice-card:hover::before {
  opacity: 1;
}

.choice-card__num {
  font-family: var(--font-mono);
  font-size: var(--text-xs);
  letter-spacing: var(--tracking-wide);
  color: var(--color-muted-2);
}

.choice-card__title {
  font-size: var(--text-xl);
  font-weight: 650;
  position: relative;
}

.choice-card__text {
  color: var(--color-muted);
  position: relative;
  flex: 1;
}

.choice-card__link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  color: var(--color-text);
  font-weight: 600;
  font-size: var(--text-sm);
  position: relative;
  margin-top: auto;
}

.choice-card:hover .choice-card__link span {
  transform: translateX(4px);
}

.choice-card__link span {
  display: inline-block;
  transition: transform var(--duration-fast) var(--ease-out);
}

/* ---------- Project card ---------- */
.project-card {
  display: block;
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  border: 1px solid var(--color-border);
  background: var(--color-surface);
  isolation: isolate;
}

.project-card__media {
  aspect-ratio: 16 / 11;
  background:
    linear-gradient(135deg, #121720 0%, #0e1116 50%, #1a1520 100%),
    repeating-linear-gradient(
      0deg,
      transparent,
      transparent 31px,
      rgba(255, 255, 255, 0.03) 31px,
      rgba(255, 255, 255, 0.03) 32px
    );
  overflow: hidden;
  position: relative;
}

.project-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--duration-slow) var(--ease-out);
}

.project-card:hover .project-card__media img {
  transform: scale(1.05);
}

.project-card__placeholder {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  color: var(--color-muted-2);
  font-family: var(--font-mono);
  font-size: var(--text-xs);
  letter-spacing: var(--tracking-wide);
  text-transform: uppercase;
}

.project-card__body {
  padding: var(--space-lg);
}

.project-card__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: var(--space-sm);
}

.tag {
  display: inline-flex;
  align-items: center;
  padding: 0.25rem 0.55rem;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  font-family: var(--font-mono);
  font-size: 0.65rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--color-muted);
}

.project-card__title {
  font-size: var(--text-xl);
  margin-bottom: 0.35rem;
}

.project-card__loc {
  color: var(--color-muted);
  font-size: var(--text-sm);
}

/* ---------- Review card ---------- */
.review-card {
  background: var(--color-bg-secondary);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-xl);
  padding: var(--space-2xl);
  min-width: min(100%, 380px);
  flex: 0 0 min(100%, 420px);
}

.review-card__stars {
  color: var(--color-muted);
  letter-spacing: 0.15em;
  margin-bottom: var(--space-md);
  font-size: var(--text-sm);
}

.review-card__quote {
  font-size: var(--text-lg);
  line-height: 1.45;
  margin-bottom: var(--space-lg);
}

.review-card__author {
  font-family: var(--font-mono);
  font-size: var(--text-xs);
  letter-spacing: var(--tracking-wide);
  text-transform: uppercase;
  color: var(--color-muted);
}

/* ---------- Forms ---------- */
.field {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
}

.field__label {
  font-size: var(--text-sm);
  font-weight: 500;
  color: var(--color-text);
}

.field__hint {
  font-size: var(--text-xs);
  color: var(--color-muted);
}

.field__error {
  font-size: var(--text-sm);
  color: var(--color-danger);
  display: none;
}

.field.is-invalid .field__error {
  display: block;
}

.field.is-invalid .field__input,
.field.is-invalid .field__textarea {
  border-color: var(--color-danger);
}

.field__input,
.field__textarea,
.field__select {
  width: 100%;
  min-height: 48px;
  padding: 0.75rem 1rem;
  background: var(--color-bg);
  border: 1px solid var(--color-border-strong);
  border-radius: var(--radius-md);
  color: var(--color-text);
  transition: border-color var(--duration-fast) var(--ease-out);
}

.field__textarea {
  min-height: 120px;
  resize: vertical;
}

.field__input:focus,
.field__textarea:focus,
.field__select:focus {
  border-color: var(--color-primary);
  outline: none;
}

.field__input::placeholder,
.field__textarea::placeholder {
  color: var(--color-muted-2);
}

.honeypot {
  position: absolute;
  left: -9999px;
  opacity: 0;
  height: 0;
  width: 0;
  overflow: hidden;
}

/* ---------- Upload ---------- */
.upload-box {
  border: 1px dashed var(--color-border-strong);
  border-radius: var(--radius-xl);
  padding: var(--space-2xl);
  text-align: center;
  background: var(--color-bg);
  transition:
    border-color var(--duration-base) var(--ease-out),
    background var(--duration-base) var(--ease-out);
}

.upload-box.is-dragover {
  border-color: var(--color-primary);
  background: var(--color-primary-dim);
}

.upload-box__icon {
  width: 40px;
  height: 40px;
  margin: 0 auto var(--space-md);
  color: var(--color-muted);
}

.upload-box__title {
  font-weight: 600;
  margin-bottom: 0.35rem;
}

.upload-previews {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
  gap: var(--space-md);
  margin-top: var(--space-lg);
}

.upload-thumb {
  position: relative;
  aspect-ratio: 1;
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--color-border);
  background: var(--color-surface);
}

.upload-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.upload-thumb__meta {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 0.4rem;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.85));
  font-family: var(--font-mono);
  font-size: 0.55rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.upload-thumb__remove {
  position: absolute;
  top: 0.35rem;
  right: 0.35rem;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.7);
  color: var(--color-text);
  display: grid;
  place-items: center;
  font-size: 0.85rem;
}

/* ---------- FAQ ---------- */
.faq-item {
  border-bottom: 1px solid var(--color-border);
}

.faq-item__btn {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-md);
  padding: var(--space-lg) 0;
  text-align: left;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: var(--text-base);
}

.faq-item__icon {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  border: 1px solid var(--color-border);
  border-radius: 50%;
  display: grid;
  place-items: center;
  transition: transform var(--duration-base) var(--ease-out);
}

.faq-item.is-open .faq-item__icon {
  transform: rotate(45deg);
  border-color: var(--color-border-strong);
  color: var(--color-text);
}

.faq-item__panel {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows var(--duration-base) var(--ease-out);
}

.faq-item.is-open .faq-item__panel {
  grid-template-rows: 1fr;
}

.faq-item__content {
  overflow: hidden;
}

.faq-item__content p {
  padding-bottom: var(--space-lg);
  color: var(--color-muted);
  max-width: 40rem;
}

/* ---------- Metric ---------- */
.metric {
  padding: var(--space-xl) 0;
  border-top: 1px solid var(--color-border);
}

.metric__label {
  font-family: var(--font-mono);
  font-size: var(--text-xs);
  letter-spacing: var(--tracking-mega);
  text-transform: uppercase;
  color: var(--color-muted-2);
  margin-bottom: var(--space-sm);
}

.metric__title {
  font-size: var(--text-2xl);
  margin-bottom: var(--space-xs);
}

.metric__text {
  color: var(--color-muted);
}

/* ---------- Status bar ---------- */
.status-bar {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--color-border);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.status-bar__item {
  background: var(--color-bg-secondary);
  padding: var(--space-md) var(--space-lg);
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.status-bar__label {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  letter-spacing: var(--tracking-wide);
  text-transform: uppercase;
  color: var(--color-muted-2);
}

.status-bar__value {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-size: var(--text-sm);
  font-weight: 600;
}

.status-bar__value a {
  color: var(--color-text);
}

.status-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--color-success);
  box-shadow: 0 0 0 0 rgba(61, 214, 140, 0.4);
  animation: pulse-dot 2s var(--ease-in-out) infinite;
}

/* ---------- CTA section ---------- */
.cta-band {
  position: relative;
  padding: var(--space-4xl) 0;
  background: var(--color-bg-secondary);
  border-block: 1px solid var(--color-border);
  overflow: hidden;
}

.cta-band__title {
  font-size: var(--text-4xl);
  white-space: pre-line;
  margin-bottom: var(--space-md);
}

.cta-band__sub {
  color: var(--color-muted);
  font-size: var(--text-lg);
  max-width: 32rem;
  margin-bottom: var(--space-xl);
}

.cta-band__actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-md);
}

/* ---------- Circuit line ---------- */
.circuit-line {
  width: 100%;
  height: 2px;
  overflow: visible;
  color: var(--color-border-strong);
}

.circuit-line path {
  fill: none;
  stroke: currentColor;
  stroke-width: 1.5;
  stroke-dasharray: 8 6;
  opacity: 0.4;
}

.circuit-line.is-drawn path {
  animation: circuit-flow 12s linear infinite;
}

@keyframes circuit-flow {
  to {
    stroke-dashoffset: -200;
  }
}

/* ---------- Power grid ---------- */
.power-grid {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
  opacity: 0.45;
}

.power-grid canvas,
.power-grid svg {
  width: 100%;
  height: 100%;
}

/* ---------- Emergency ---------- */
.emergency-card {
  background: linear-gradient(135deg, #1a1010 0%, var(--color-surface) 100%);
  border: 1px solid rgba(255, 77, 77, 0.35);
  border-radius: var(--radius-xl);
  padding: var(--space-2xl);
}

.emergency-card__phone {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  color: var(--color-text);
  margin: var(--space-lg) 0;
}

/* ---------- Process ---------- */
.process-track {
  position: relative;
  display: grid;
  gap: var(--space-xl);
}

.process-track__line {
  position: absolute;
  left: 15px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: var(--color-border);
}

.process-track__progress {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 0%;
  background: var(--color-primary);
  box-shadow: none;
  transition: height 0.1s linear;
}

.process-step {
  display: grid;
  grid-template-columns: 32px 1fr;
  gap: var(--space-lg);
  position: relative;
}

.process-step__node {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 2px solid var(--color-border);
  background: var(--color-bg);
  display: grid;
  place-items: center;
  font-family: var(--font-mono);
  font-size: 0.65rem;
  color: var(--color-muted);
  z-index: 1;
  transition:
    border-color var(--duration-base),
    color var(--duration-base),
    box-shadow var(--duration-base);
}

.process-step.is-active .process-step__node {
  border-color: var(--color-primary);
  color: var(--color-primary);
  box-shadow: none;
}

.process-step__title {
  font-size: var(--text-lg);
  margin-bottom: 0.35rem;
}

.process-step__text {
  color: var(--color-muted);
}

@media (min-width: 900px) {
  .process-track {
    grid-template-columns: repeat(5, 1fr);
    gap: var(--space-md);
  }

  .process-track__line {
    left: 0;
    right: 0;
    top: 15px;
    bottom: auto;
    height: 2px;
    width: auto;
  }

  .process-track__progress {
    width: 0%;
    height: 100%;
    transition: width 0.1s linear;
  }

  .process-step {
    grid-template-columns: 1fr;
    gap: var(--space-md);
  }
}

/* ---------- Lead choice ---------- */
.lead-choice {
  display: grid;
  gap: var(--space-md);
  grid-template-columns: 1fr;
}

@media (min-width: 640px) {
  .lead-choice {
    grid-template-columns: repeat(2, 1fr);
  }
}

.lead-choice__item {
  display: flex;
  align-items: center;
  gap: var(--space-md);
  padding: var(--space-lg);
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  text-align: left;
  min-height: 88px;
  transition:
    border-color var(--duration-fast),
    background var(--duration-fast),
    transform var(--duration-fast);
}

.lead-choice__item:hover,
.lead-choice__item.is-selected {
  border-color: var(--color-primary);
  background: var(--color-primary-dim);
}

.lead-choice__item.is-selected {
  box-shadow: inset 0 0 0 1px var(--color-primary);
}

.lead-choice__icon {
  font-size: 1.5rem;
  flex-shrink: 0;
}

.lead-choice__label {
  font-weight: 650;
  font-family: var(--font-display);
}

/* ---------- Scroll CTA bar ---------- */
.scroll-cta {
  position: fixed;
  left: 50%;
  bottom: 1.25rem;
  transform: translateX(-50%) translateY(120%);
  z-index: var(--z-overlay);
  display: flex;
  align-items: center;
  gap: var(--space-md);
  padding: 0.75rem 0.75rem 0.75rem 1.25rem;
  background: rgba(10, 12, 16, 0.92);
  backdrop-filter: blur(16px);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-full);
  box-shadow: var(--shadow-md);
  transition: transform var(--duration-base) var(--ease-out);
  max-width: calc(100% - 2rem);
}

.scroll-cta.is-visible {
  transform: translateX(-50%) translateY(0);
}

.scroll-cta__text {
  font-size: var(--text-sm);
  color: var(--color-muted);
}

.scroll-cta__text strong {
  color: var(--color-text);
  font-weight: 600;
}

@media (max-width: 768px) {
  .scroll-cta {
    display: none;
  }
}

/* ---------- Floating quick action ---------- */
.fab {
  position: fixed;
  right: 1.25rem;
  bottom: 1.25rem;
  z-index: var(--z-overlay);
}

.fab__toggle {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--color-surface);
  color: var(--color-text);
  border: 1px solid var(--color-border-strong);
  display: grid;
  place-items: center;
  font-size: 0;
  box-shadow: var(--shadow-md);
  transition: transform var(--duration-fast) var(--ease-out), border-color var(--duration-fast);
}

.fab__toggle::before {
  content: '';
  width: 18px;
  height: 18px;
  background: var(--color-text);
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='black' d='M13 2L4 14h7l-1 8 10-14h-7l1-6z'/%3E%3C/svg%3E") center / contain no-repeat;
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='black' d='M13 2L4 14h7l-1 8 10-14h-7l1-6z'/%3E%3C/svg%3E") center / contain no-repeat;
}

.fab__toggle:hover {
  transform: scale(1.06);
  border-color: var(--color-text);
}

.fab__menu {
  position: absolute;
  bottom: calc(100% + 0.75rem);
  right: 0;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  opacity: 0;
  pointer-events: none;
  transform: translateY(8px);
  transition:
    opacity var(--duration-base),
    transform var(--duration-base);
}

.fab.is-open .fab__menu {
  opacity: 1;
  pointer-events: auto;
  transform: none;
}

.fab__item {
  white-space: nowrap;
  padding: 0.7rem 1rem;
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  font-size: var(--text-sm);
  font-weight: 600;
  text-align: right;
  box-shadow: var(--shadow-sm);
}

.fab__item:hover {
  border-color: var(--color-primary);
}

@media (max-width: 768px) {
  .fab {
    bottom: calc(var(--mobile-cta-h) + 0.75rem);
  }
}

/* ---------- Custom cursor ---------- */
.cursor-dot,
.cursor-ring {
  position: fixed;
  top: 0;
  left: 0;
  pointer-events: none;
  z-index: var(--z-cursor);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  mixed-blend-mode: difference;
}

.cursor-dot {
  width: 6px;
  height: 6px;
  background: #ffffff;
}

.cursor-ring {
  width: 36px;
  height: 36px;
  border: 1px solid rgba(255, 255, 255, 0.45);
  display: grid;
  place-items: center;
  font-family: var(--font-mono);
  font-size: 0.55rem;
  letter-spacing: 0.1em;
  color: #ffffff;
  transition:
    width var(--duration-fast),
    height var(--duration-fast),
    background var(--duration-fast),
    border-color var(--duration-fast);
}

.cursor-ring.is-hover {
  width: 56px;
  height: 56px;
  background: rgba(255, 255, 255, 0.08);
}

.cursor-ring.is-view,
.cursor-ring.is-select {
  width: 72px;
  height: 72px;
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.7);
}

/* ---------- Page transition ---------- */
.page-sweep {
  position: fixed;
  inset: 0 auto 0 0;
  width: 100%;
  height: 2px;
  top: 0;
  background: var(--color-primary);
  transform: scaleX(0);
  transform-origin: left;
  z-index: var(--z-toast);
  pointer-events: none;
  box-shadow: none;
}

.page-sweep.is-active {
  animation: sweep 320ms var(--ease-out) forwards;
}

@keyframes sweep {
  0% {
    transform: scaleX(0);
    opacity: 1;
  }
  70% {
    transform: scaleX(1);
    opacity: 1;
  }
  100% {
    transform: scaleX(1);
    opacity: 0;
  }
}

/* ---------- Loader ---------- */
.loader {
  position: fixed;
  inset: 0;
  z-index: 999;
  background: var(--color-bg);
  display: grid;
  place-items: center;
  transition: opacity 400ms var(--ease-out), visibility 400ms;
}

.loader.is-done {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.loader__logo {
  height: 56px;
  width: auto;
  opacity: 0;
  animation: loader-logo-in 400ms var(--ease-out) forwards;
}

@keyframes loader-logo-in {
  to {
    opacity: 1;
  }
}

.loader__brand {
  display: none;
}

/* ---------- Mobile sticky CTA ---------- */
.mobile-cta {
  display: none;
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: var(--z-overlay);
  padding: 0.75rem 1rem calc(0.75rem + env(safe-area-inset-bottom));
  background: rgba(7, 9, 12, 0.92);
  backdrop-filter: blur(16px);
  border-top: 1px solid var(--color-border);
  gap: 0.75rem;
}

.mobile-cta .btn {
  flex: 1;
}

@media (max-width: 768px) {
  .mobile-cta {
    display: flex;
  }

  body {
    padding-bottom: calc(var(--mobile-cta-h) + env(safe-area-inset-bottom));
  }

  body.is-storing-page .mobile-cta {
    display: none;
  }
}

/* ---------- Breadcrumb ---------- */
.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  align-items: center;
  font-size: var(--text-sm);
  color: var(--color-muted);
  margin-bottom: var(--space-xl);
}

.breadcrumb a:hover {
  color: var(--color-text);
}

.breadcrumb__sep {
  opacity: 0.4;
}

/* ---------- Checkbox / privacy ---------- */
.check {
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
  font-size: var(--text-sm);
  color: var(--color-muted);
}

.check input {
  margin-top: 0.2rem;
  width: 18px;
  height: 18px;
  accent-color: var(--color-primary);
  flex-shrink: 0;
}

.check a {
  color: var(--color-primary);
  text-decoration: underline;
  text-underline-offset: 2px;
}
/* ============================================================
   Hartman Elektra — Layout (header, footer, nav)
   ============================================================ */

.site-header {
  position: fixed;
  top: 1rem;
  left: 0;
  right: 0;
  z-index: var(--z-header);
  pointer-events: none;
}

.site-header__inner {
  pointer-events: auto;
  width: min(100% - 2rem, var(--container));
  margin-inline: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: var(--header-h);
  padding: 0.65rem 1rem;
  background: rgba(10, 12, 16, 0.72);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-lg);
  transition:
    min-height var(--duration-base) var(--ease-out),
    padding var(--duration-base) var(--ease-out),
    background var(--duration-base);
}

.site-header.is-scrolled .site-header__inner {
  min-height: var(--header-h-scrolled);
  padding-block: 0.4rem;
  background: rgba(10, 12, 16, 0.88);
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  flex-shrink: 0;
}

.logo__img {
  height: 40px;
  width: auto;
  display: block;
}

.site-header.is-scrolled .logo__img {
  height: 34px;
}

.logo__mark {
  width: 36px;
  height: 36px;
  flex-shrink: 0;
}

.logo__text {
  display: flex;
  flex-direction: column;
  line-height: 1.05;
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: 0.06em;
  font-size: 0.72rem;
}

.logo__text span:last-child {
  color: var(--color-muted);
  font-weight: 500;
}

.footer-brand__logo {
  height: 56px;
  width: auto;
  margin-bottom: var(--space-md);
}

.loader__logo {
  height: 56px;
  width: auto;
  opacity: 0;
  animation: loader-logo-in 400ms var(--ease-out) forwards;
}

@keyframes loader-logo-in {
  to {
    opacity: 1;
  }
}

.loader__brand {
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: 0.2em;
  font-size: 0.85rem;
  position: relative;
  display: none;
}

.nav-desktop {
  display: none;
  align-items: center;
  gap: 0.15rem;
}

.nav-desktop__link {
  padding: 0.55rem 0.7rem;
  font-size: var(--text-sm);
  font-weight: 500;
  color: var(--color-muted);
  border-radius: var(--radius-sm);
  transition: color var(--duration-fast), background var(--duration-fast);
  position: relative;
}

.nav-desktop__link:hover,
.nav-desktop__link[aria-expanded='true'] {
  color: var(--color-text);
  background: rgba(255, 255, 255, 0.04);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.header-phone {
  display: none;
  align-items: center;
  gap: 0.45rem;
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--color-text);
  padding: 0.4rem 0.5rem;
  border-radius: var(--radius-sm);
}

.header-phone:hover {
  color: var(--color-text);
}

.header-phone svg {
  width: 16px;
  height: 16px;
  color: var(--color-muted);
}

.nav-toggle {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--color-border);
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 1.5px;
  background: var(--color-text);
  position: relative;
}

.nav-toggle span::before,
.nav-toggle span::after {
  content: '';
  position: absolute;
  left: 0;
  width: 18px;
  height: 1.5px;
  background: var(--color-text);
}

.nav-toggle span::before {
  top: -6px;
}

.nav-toggle span::after {
  top: 6px;
}

@media (min-width: 1100px) {
  .nav-desktop {
    display: flex;
  }

  .header-phone {
    display: inline-flex;
  }

  .nav-toggle {
    display: none;
  }

  .header-actions .btn--header-cta {
    display: inline-flex;
  }
}

.btn--header-cta {
  display: none;
}

@media (min-width: 1100px) {
  .btn--header-cta {
    display: inline-flex;
  }
}

/* Mega menu */
.mega {
  position: absolute;
  top: calc(100% + 0.5rem);
  left: 50%;
  transform: translateX(-50%) translateY(8px);
  width: min(920px, calc(100vw - 2rem));
  background: rgba(14, 17, 22, 0.96);
  backdrop-filter: blur(24px);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-xl);
  padding: var(--space-xl);
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: var(--space-xl);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition:
    opacity var(--duration-base) var(--ease-out),
    transform var(--duration-base) var(--ease-out),
    visibility var(--duration-base);
  box-shadow: var(--shadow-md);
}

.mega.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}

.mega__list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.35rem;
}

.mega__link {
  display: block;
  padding: 0.85rem 1rem;
  border-radius: var(--radius-md);
  font-weight: 600;
  font-size: var(--text-sm);
  color: var(--color-text);
  transition: background var(--duration-fast);
}

.mega__link:hover {
  background: var(--color-surface-hover);
  color: var(--color-text);
}

.mega__feature {
  background: linear-gradient(160deg, #1a1210 0%, var(--color-surface) 100%);
  border: 1px solid rgba(255, 77, 77, 0.25);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

.mega__feature-status {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-family: var(--font-mono);
  font-size: 0.65rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-danger);
}

.mega__feature-status i {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--color-danger);
  display: block;
  animation: pulse-dot 1.5s infinite;
}

.mega__feature-title {
  font-size: var(--text-xl);
}

.mega__feature-phone {
  font-size: var(--text-lg);
  font-weight: 700;
  color: var(--color-text);
  margin: 0.25rem 0;
}

/* Mobile nav */
.mobile-nav {
  position: fixed;
  inset: 0;
  z-index: var(--z-modal);
  background: var(--color-bg);
  padding: 6rem 1.5rem 2rem;
  display: flex;
  flex-direction: column;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity var(--duration-base), visibility var(--duration-base);
}

.mobile-nav.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.mobile-nav__links {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  flex: 1;
}

.mobile-nav__links a {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 6vw, 2.5rem);
  font-weight: 650;
  padding: 0.4rem 0;
  border-bottom: 1px solid var(--color-border);
}

.mobile-nav__footer {
  padding-top: var(--space-xl);
  border-top: 1px solid var(--color-border);
}

.mobile-nav__footer .eyebrow {
  margin-bottom: var(--space-sm);
}

.mobile-nav__phone {
  display: block;
  font-size: var(--text-2xl);
  font-weight: 700;
  color: var(--color-text);
  margin-bottom: var(--space-md);
}

/* Footer */
.site-footer {
  background: var(--color-bg-secondary);
  border-top: 1px solid var(--color-border);
  padding: var(--space-4xl) 0 var(--space-2xl);
}

.footer-grid {
  display: grid;
  gap: var(--space-2xl);
  grid-template-columns: 1fr;
  margin-bottom: var(--space-3xl);
}

@media (min-width: 768px) {
  .footer-grid {
    grid-template-columns: 1.4fr 1fr 1fr 1fr;
  }
}

.footer-brand__name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: var(--text-2xl);
  letter-spacing: 0.04em;
  line-height: 1.1;
  margin-bottom: var(--space-md);
}

.footer-brand__name span {
  display: block;
  color: var(--color-muted);
  font-weight: 500;
  font-size: 0.85em;
}

.footer-brand__text {
  color: var(--color-muted);
  max-width: 18rem;
  margin-bottom: var(--space-lg);
}

.footer-col__title {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: var(--tracking-wide);
  text-transform: uppercase;
  color: var(--color-muted-2);
  margin-bottom: var(--space-md);
}

.footer-col a {
  display: block;
  padding: 0.35rem 0;
  color: var(--color-muted);
  font-size: var(--text-sm);
  transition: color var(--duration-fast);
}

.footer-col a:hover {
  color: var(--color-text);
}

.footer-contact a {
  color: var(--color-text);
  font-weight: 600;
}

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: var(--space-md);
  padding-top: var(--space-xl);
  border-top: 1px solid var(--color-border);
  font-family: var(--font-mono);
  font-size: 0.65rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-muted-2);
}

.footer-bottom a {
  color: var(--color-muted);
}

.footer-bottom a:hover {
  color: var(--color-text);
}

.worklight-toggle {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.65rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-muted);
}

.worklight-toggle__switch {
  width: 36px;
  height: 20px;
  border-radius: 999px;
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  position: relative;
}

.worklight-toggle__switch::after {
  content: '';
  position: absolute;
  top: 2px;
  left: 2px;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--color-muted);
  transition: transform var(--duration-fast), background var(--duration-fast);
}

html.worklight-on .worklight-toggle__switch::after {
  transform: translateX(16px);
  background: var(--color-primary);
}

/* Scroll progress / section indicator */
.scroll-rail {
  display: none;
  position: fixed;
  right: 1.25rem;
  top: 50%;
  transform: translateY(-50%);
  z-index: var(--z-base);
  width: 2px;
  height: 180px;
  background: var(--color-border);
}

.scroll-rail__fill {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 0%;
  background: var(--color-primary);
  box-shadow: none;
}

.scroll-rail__nodes {
  position: absolute;
  inset: 0;
}

.scroll-rail__node {
  position: absolute;
  left: 50%;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--color-bg);
  border: 1px solid var(--color-border-strong);
  transform: translate(-50%, -50%);
  transition: border-color var(--duration-fast), background var(--duration-fast);
}

.scroll-rail__node.is-active {
  background: var(--color-primary);
  border-color: var(--color-primary);
  box-shadow: none;
}

@media (min-width: 1200px) {
  .scroll-rail {
    display: block;
  }
}

/* Main offset for fixed header */
.site-main {
  padding-top: calc(var(--header-h) + 2.5rem);
}
/* ============================================================
   Hartman Elektra — Page styles
   ============================================================ */

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: calc(100dvh - var(--header-h) - 3rem);
  display: grid;
  align-items: center;
  padding-bottom: var(--space-2xl);
  overflow: hidden;
}

.hero__grid {
  display: grid;
  gap: var(--space-2xl);
  align-items: center;
}

@media (min-width: 1024px) {
  .hero__grid {
    grid-template-columns: 1.05fr 0.95fr;
    gap: var(--space-3xl);
  }
}

.hero__eyebrow {
  margin-bottom: var(--space-lg);
}

.hero__title {
  font-size: var(--text-hero);
  font-weight: 700;
  line-height: 0.98;
  letter-spacing: -0.04em;
  margin-bottom: var(--space-lg);
}

.hero__title .line {
  display: block;
}

.hero__title .electric {
  color: var(--color-text);
  text-shadow: none;
  animation: none;
}

.hero__sub {
  font-size: var(--text-lg);
  color: var(--color-muted);
  max-width: 34rem;
  margin-bottom: var(--space-xl);
  line-height: 1.55;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-md);
  margin-bottom: var(--space-xl);
}

.hero__checks {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.25rem;
}

.hero__checks li {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: var(--text-sm);
  color: var(--color-muted);
}

.hero__checks li::before {
  content: '';
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: transparent;
  border: 1px solid var(--color-muted-2);
  box-shadow: inset 0 0 0 3px var(--color-bg);
  flex-shrink: 0;
}

/* Meterkast visual */
.panel-visual {
  position: relative;
  aspect-ratio: 1 / 1.05;
  max-width: 520px;
  margin-inline: auto;
  background: linear-gradient(160deg, #121720 0%, #0a0c10 100%);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-2xl);
  padding: var(--space-lg);
  box-shadow:
    0 40px 80px rgba(0, 0, 0, 0.45),
    inset 0 1px 0 rgba(255, 255, 255, 0.04);
  transform-style: preserve-3d;
  transition: transform 0.15s linear;
}

.panel-visual__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: var(--space-md);
  font-family: var(--font-mono);
  font-size: 0.65rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-muted);
}

.panel-visual__body {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: var(--space-md);
  height: calc(100% - 2rem);
}

.panel-rail {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.panel-rail__label {
  font-family: var(--font-mono);
  font-size: 0.55rem;
  letter-spacing: 0.1em;
  color: var(--color-muted-2);
  text-transform: uppercase;
}

.panel-node {
  flex: 1;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  background: var(--color-bg);
  padding: 0.65rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
  overflow: hidden;
}

.panel-node.is-live {
  border-color: var(--color-border-strong);
}

.panel-node__led {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--color-success);
  box-shadow: 0 0 10px rgba(61, 214, 140, 0.6);
  align-self: flex-end;
}

.panel-node__led.is-warn {
  background: var(--color-muted);
  box-shadow: none;
}

.panel-node__name {
  font-family: var(--font-mono);
  font-size: 0.6rem;
  letter-spacing: 0.08em;
  color: var(--color-muted);
}

.panel-groups {
  display: grid;
  grid-template-rows: repeat(4, 1fr);
  gap: 0.5rem;
}

.panel-group {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 0.65rem;
  padding: 0.55rem 0.75rem;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.02);
}

.panel-group__breaker {
  width: 18px;
  height: 28px;
  border-radius: 3px;
  background: #2a3140;
  border: 1px solid var(--color-border-strong);
  position: relative;
}

.panel-group__breaker::after {
  content: '';
  position: absolute;
  left: 3px;
  right: 3px;
  top: 4px;
  height: 10px;
  background: #6b7380;
  border-radius: 2px;
  box-shadow: none;
}

.panel-group__label {
  font-family: var(--font-mono);
  font-size: 0.58rem;
  letter-spacing: 0.08em;
  color: var(--color-muted);
}

.panel-group__amp {
  font-family: var(--font-mono);
  font-size: 0.58rem;
  color: var(--color-muted);
}

.panel-circuit {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: visible;
}

.panel-circuit path {
  fill: none;
  stroke: rgba(255, 255, 255, 0.28);
  stroke-width: 1.5;
  opacity: 0.7;
  stroke-dasharray: 120;
  stroke-dashoffset: 120;
  animation: draw-circuit 1.8s var(--ease-out) forwards;
}

@keyframes draw-circuit {
  to {
    stroke-dashoffset: 0;
  }
}

.panel-labels {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.panel-float-label {
  position: absolute;
  font-family: var(--font-mono);
  font-size: 0.55rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-muted);
  background: rgba(7, 9, 12, 0.85);
  border: 1px solid var(--color-border);
  padding: 0.25rem 0.45rem;
  border-radius: 4px;
  opacity: 0;
  animation: fade-label 0.5s ease forwards;
}

.panel-float-label:nth-child(1) {
  top: 12%;
  left: -4%;
  animation-delay: 0.6s;
}
.panel-float-label:nth-child(2) {
  top: 38%;
  right: -6%;
  animation-delay: 1s;
}
.panel-float-label:nth-child(3) {
  bottom: 18%;
  left: 8%;
  animation-delay: 1.3s;
}
.panel-float-label:nth-child(4) {
  bottom: 8%;
  right: 10%;
  animation-delay: 1.6s;
}

@keyframes fade-label {
  to {
    opacity: 1;
  }
}

@media (prefers-reduced-motion: reduce) {
  .panel-circuit path,
  .panel-float-label {
    animation: none;
    opacity: 1;
    stroke-dashoffset: 0;
  }
}

/* Situation grid */
.situation-grid {
  display: grid;
  gap: var(--space-md);
  grid-template-columns: 1fr;
}

@media (min-width: 640px) {
  .situation-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .situation-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* Sticky services */
.sticky-services {
  display: grid;
  gap: var(--space-2xl);
}

@media (min-width: 900px) {
  .sticky-services {
    grid-template-columns: 0.9fr 1.1fr;
    gap: var(--space-3xl);
    align-items: start;
  }

  .sticky-services__left {
    position: sticky;
    top: calc(var(--header-h) + 2rem);
  }
}

.service-scroll-item {
  padding: var(--space-2xl) 0;
  border-top: 1px solid var(--color-border);
  display: grid;
  gap: var(--space-md);
  grid-template-columns: auto 1fr auto;
  align-items: start;
  transition: opacity var(--duration-base);
}

.service-scroll-item__num {
  font-family: var(--font-mono);
  font-size: var(--text-sm);
  color: var(--color-muted-2);
}

.service-scroll-item__title {
  font-size: var(--text-2xl);
  margin-bottom: 0.35rem;
}

.service-scroll-item__text {
  color: var(--color-muted);
}

.service-scroll-item__link {
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--color-muted);
  white-space: nowrap;
}

.service-scroll-item:hover .service-scroll-item__link {
  color: var(--color-text);
}

/* Medical feature */
.medical-feature {
  position: relative;
  background: #06080b;
  border-block: 1px solid var(--color-border);
  overflow: hidden;
}

.medical-feature__grid {
  display: grid;
  gap: var(--space-3xl);
  align-items: center;
}

@media (min-width: 960px) {
  .medical-feature__grid {
    grid-template-columns: 1fr 1fr;
  }
}

.medical-blueprint {
  aspect-ratio: 4 / 3;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-xl);
  background:
    linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    var(--color-surface);
  background-size: 28px 28px, 28px 28px, auto;
  position: relative;
  padding: var(--space-lg);
}

.medical-blueprint__room {
  position: absolute;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.03);
}

.medical-blueprint__label {
  position: absolute;
  font-family: var(--font-mono);
  font-size: 0.55rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-muted);
  white-space: nowrap;
}

.medical-blueprint svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.medical-blueprint path {
  fill: none;
  stroke: rgba(255, 255, 255, 0.35);
  stroke-width: 1.25;
  opacity: 0.7;
  stroke-dasharray: 400;
  stroke-dashoffset: 400;
}

.medical-blueprint.is-drawn path {
  animation: draw-circuit 2s var(--ease-out) forwards;
}

/* Trust */
.trust-block {
  display: grid;
  gap: var(--space-2xl);
}

@media (min-width: 900px) {
  .trust-block {
    grid-template-columns: 1fr 1.2fr;
    gap: var(--space-4xl);
  }
}

.trust-metrics {
  display: grid;
  gap: 0;
}

/* Service terminal */
.service-terminal {
  background: var(--color-bg);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-xl);
  overflow: hidden;
}

.service-terminal__bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.75rem 1rem;
  border-bottom: 1px solid var(--color-border);
  font-family: var(--font-mono);
  font-size: 0.65rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-muted);
}

.service-terminal__body {
  padding: var(--space-lg);
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.terminal-row {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 1rem;
  align-items: center;
  padding: 0.85rem 1rem;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  background: var(--color-surface);
  transition: border-color var(--duration-fast);
}

.terminal-row:hover {
  border-color: var(--color-border-strong);
}

.terminal-row__name {
  font-weight: 600;
  font-size: var(--text-sm);
}

.terminal-row__name::before {
  content: '> ';
  color: var(--color-muted-2);
  font-family: var(--font-mono);
}

.terminal-row__status {
  font-family: var(--font-mono);
  font-size: 0.6rem;
  letter-spacing: 0.1em;
  color: var(--color-success);
}

/* Projects showcase */
.projects-showcase {
  display: grid;
  gap: var(--space-md);
}

@media (min-width: 768px) {
  .projects-showcase {
    grid-template-columns: 1.3fr 1fr;
  }

  .projects-showcase .project-card:first-child {
    grid-row: span 2;
  }

  .projects-showcase .project-card:first-child .project-card__media {
    aspect-ratio: auto;
    height: 100%;
    min-height: 320px;
  }
}

/* Reviews slider */
.reviews-slider {
  display: flex;
  gap: var(--space-md);
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding-bottom: var(--space-md);
  scrollbar-width: thin;
  scrollbar-color: var(--color-border) transparent;
}

.reviews-slider > * {
  scroll-snap-align: start;
}

/* Work area map */
.area-map {
  position: relative;
  aspect-ratio: 16 / 10;
  border-radius: var(--radius-2xl);
  border: 1px solid var(--color-border);
  background:
    radial-gradient(circle at 48% 52%, rgba(255, 255, 255, 0.04), transparent 35%),
    linear-gradient(180deg, #0e1116, #07090c);
  overflow: hidden;
}

.area-map__pulse {
  position: absolute;
  left: 48%;
  top: 52%;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--color-text);
  transform: translate(-50%, -50%);
  box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.25);
  animation: map-pulse 2.5s infinite;
  z-index: 2;
}

@keyframes map-pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.35);
  }
  70% {
    box-shadow: 0 0 0 40px transparent;
  }
  100% {
    box-shadow: 0 0 0 0 transparent;
  }
}

.area-map__city {
  position: absolute;
  font-family: var(--font-mono);
  font-size: 0.65rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-muted);
  transform: translate(-50%, -50%);
}

.area-map__city.is-primary {
  color: var(--color-text);
  font-weight: 600;
}

.area-map__ring {
  position: absolute;
  left: 48%;
  top: 52%;
  width: 28%;
  aspect-ratio: 1;
  border: 1px dashed rgba(255, 255, 255, 0.18);
  border-radius: 50%;
  transform: translate(-50%, -50%);
}

/* ---------- Visual work catalog ---------- */
.work-hero {
  position: relative;
  min-height: min(70dvh, 640px);
  display: grid;
  align-items: end;
  border-radius: var(--radius-2xl);
  overflow: hidden;
  border: 1px solid var(--color-border);
  margin-bottom: var(--space-2xl);
}

.work-hero__media {
  position: absolute;
  inset: 0;
}

.work-hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.work-hero__media::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(7, 9, 12, 0.2) 0%, rgba(7, 9, 12, 0.88) 70%);
}

.work-hero__content {
  position: relative;
  z-index: 1;
  padding: var(--space-2xl);
  max-width: 40rem;
}

.work-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  margin-bottom: var(--space-xl);
  position: sticky;
  top: calc(var(--header-h) + 1rem);
  z-index: 5;
  padding: 0.65rem;
  background: rgba(7, 9, 12, 0.85);
  backdrop-filter: blur(12px);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
}

.work-grid {
  display: grid;
  gap: var(--space-md);
  grid-template-columns: 1fr;
}

@media (min-width: 700px) {
  .work-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1100px) {
  .work-grid {
    grid-template-columns: repeat(12, 1fr);
    grid-auto-rows: minmax(220px, auto);
  }

  .work-card--hero {
    grid-column: span 8;
    grid-row: span 2;
    min-height: 460px;
  }

  .work-card--large {
    grid-column: span 6;
    min-height: 320px;
  }

  .work-card--medium {
    grid-column: span 4;
    min-height: 280px;
  }

  .work-card--small {
    grid-column: span 4;
    min-height: 240px;
  }

  .work-card--urgent {
    grid-column: span 8;
    min-height: 280px;
  }
}

.work-card {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  min-height: 260px;
  border-radius: var(--radius-xl);
  overflow: hidden;
  border: 1px solid var(--color-border);
  isolation: isolate;
  text-decoration: none;
  color: inherit;
  background: var(--color-surface);
  transition: transform var(--duration-base) var(--ease-out), border-color var(--duration-base);
}

.work-card:hover {
  transform: translateY(-3px);
  border-color: var(--color-border-strong);
}

.work-card__media {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.work-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease-out);
}

.work-card:hover .work-card__media img {
  transform: scale(1.06);
}

.work-card__media::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(7, 9, 12, 0.05) 20%, rgba(7, 9, 12, 0.92) 100%);
}

.work-card--urgent .work-card__media::after {
  background: linear-gradient(180deg, rgba(40, 10, 10, 0.2) 10%, rgba(20, 8, 8, 0.92) 100%);
}

.work-card__body {
  position: relative;
  z-index: 1;
  padding: var(--space-lg);
}

.work-card__group {
  font-family: var(--font-mono);
  font-size: 0.62rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-muted);
  margin-bottom: 0.4rem;
}

.work-card__title {
  font-size: clamp(1.15rem, 1rem + 0.8vw, 1.65rem);
  margin-bottom: 0.45rem;
  max-width: 18ch;
}

.work-card--hero .work-card__title {
  font-size: clamp(1.6rem, 1.2rem + 1.5vw, 2.4rem);
  max-width: 14ch;
}

.work-card__text {
  color: rgba(247, 247, 245, 0.72);
  font-size: var(--text-sm);
  max-width: 36ch;
  margin-bottom: 0.75rem;
}

.work-card__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
  align-items: center;
}

.work-card__arrow {
  margin-left: auto;
  color: var(--color-text);
  font-weight: 700;
  transition: transform var(--duration-fast);
}

.work-card:hover .work-card__arrow {
  transform: translateX(4px);
}

.work-list {
  display: grid;
  gap: 0;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-xl);
  overflow: hidden;
  background: var(--color-surface);
}

.work-list__item {
  display: grid;
  grid-template-columns: 88px 1fr auto;
  gap: var(--space-md);
  align-items: center;
  padding: 0.85rem 1rem;
  border-bottom: 1px solid var(--color-border);
  transition: background var(--duration-fast);
}

.work-list__item:last-child {
  border-bottom: 0;
}

.work-list__item:hover {
  background: var(--color-primary-dim);
}

.work-list__thumb {
  width: 88px;
  height: 64px;
  border-radius: var(--radius-sm);
  overflow: hidden;
  border: 1px solid var(--color-border);
}

.work-list__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.work-list__title {
  font-weight: 650;
  font-size: var(--text-sm);
}

.work-list__group {
  font-family: var(--font-mono);
  font-size: 0.58rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-muted);
}

/* Photo strip homepage */
.photo-rail {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.5rem;
  margin-top: var(--space-xl);
}

@media (max-width: 768px) {
  .photo-rail {
    grid-template-columns: repeat(2, 1fr);
  }

  .work-list__item {
    grid-template-columns: 72px 1fr;
  }

  .work-list__item .work-card__arrow {
    display: none;
  }
}

.photo-rail__item {
  aspect-ratio: 4 / 3;
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--color-border);
  position: relative;
}

.photo-rail__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.photo-rail__item span {
  position: absolute;
  left: 0.5rem;
  bottom: 0.5rem;
  font-family: var(--font-mono);
  font-size: 0.55rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-text);
  background: rgba(0, 0, 0, 0.55);
  padding: 0.2rem 0.4rem;
  border-radius: 3px;
}

/* Bento services */
.bento {
  display: grid;
  gap: var(--space-md);
  grid-template-columns: 1fr;
}

@media (min-width: 768px) {
  .bento {
    grid-template-columns: repeat(6, 1fr);
    grid-auto-rows: minmax(180px, auto);
  }

  .bento__item--large {
    grid-column: span 3;
    grid-row: span 2;
  }

  .bento__item--wide {
    grid-column: span 4;
  }

  .bento__item--tall {
    grid-column: span 2;
    grid-row: span 2;
  }

  .bento__item--medium {
    grid-column: span 3;
  }

  .bento__item--small {
    grid-column: span 2;
  }
}

.bento__item {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: var(--space-xl);
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-xl);
  min-height: 180px;
  transition:
    border-color var(--duration-base),
    transform var(--duration-base),
    background var(--duration-base);
  position: relative;
  overflow: hidden;
}

.bento__item::after {
  display: none;
}

.bento__item:hover {
  border-color: var(--color-border-strong);
  background: var(--color-surface-hover);
  transform: translateY(-2px);
}

.bento__item h3 {
  font-size: var(--text-xl);
  margin-bottom: 0.5rem;
  position: relative;
}

.bento__item p {
  color: var(--color-muted);
  font-size: var(--text-sm);
  position: relative;
}

.bento__item--large h3 {
  font-size: var(--text-2xl);
}

/* Page hero (inner pages) */
.page-hero {
  padding: var(--space-3xl) 0 var(--space-2xl);
  position: relative;
}

.page-hero__title {
  font-size: var(--text-4xl);
  white-space: pre-line;
  margin: var(--space-md) 0;
  max-width: 16ch;
}

.page-hero__sub {
  color: var(--color-muted);
  font-size: var(--text-lg);
  max-width: 36rem;
  margin-bottom: var(--space-xl);
}

/* Offerte / Elektra Check */
.check-shell {
  max-width: 760px;
  margin-inline: auto;
}

.check-progress {
  display: flex;
  gap: 0.35rem;
  margin-bottom: var(--space-2xl);
}

.check-progress__seg {
  flex: 1;
  height: 3px;
  background: var(--color-border);
  border-radius: 2px;
  overflow: hidden;
}

.check-progress__seg.is-done,
.check-progress__seg.is-current {
  background: var(--color-primary);
}

.check-progress__seg.is-current {
  opacity: 0.55;
}

.check-step {
  display: none;
}

.check-step.is-active {
  display: block;
  animation: step-in 280ms var(--ease-out);
}

@keyframes step-in {
  from {
    opacity: 0;
    transform: translateY(12px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}

.check-step__title {
  font-size: var(--text-3xl);
  margin-bottom: var(--space-sm);
}

.check-step__sub {
  color: var(--color-muted);
  margin-bottom: var(--space-xl);
}

.check-nav {
  display: flex;
  justify-content: space-between;
  gap: var(--space-md);
  margin-top: var(--space-2xl);
  padding-top: var(--space-xl);
  border-top: 1px solid var(--color-border);
}

/* Result dashboard */
.result-dash {
  border: 1px solid var(--color-border);
  border-radius: var(--radius-xl);
  overflow: hidden;
  background: var(--color-surface);
}

.result-dash__head {
  padding: var(--space-xl);
  border-bottom: 1px solid var(--color-border);
  background: var(--color-success-soft);
}

.result-dash__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: var(--color-border);
}

.result-dash__cell {
  background: var(--color-surface);
  padding: var(--space-lg);
}

.result-dash__cell dt {
  font-family: var(--font-mono);
  font-size: 0.6rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-muted-2);
  margin-bottom: 0.35rem;
}

.result-dash__cell dd {
  font-weight: 600;
}

.result-next {
  padding: var(--space-xl);
  border-top: 1px solid var(--color-border);
}

.result-next ol {
  display: grid;
  gap: var(--space-md);
  margin: var(--space-md) 0 var(--space-xl);
}

.result-next li {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: var(--space-md);
  align-items: center;
}

.result-next__num {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 1px solid var(--color-border);
  display: grid;
  place-items: center;
  font-family: var(--font-mono);
  font-size: 0.65rem;
  color: var(--color-muted);
}

/* Storing page */
.storing-hero {
  text-align: center;
  padding: var(--space-3xl) 0;
}

.storing-hero__title {
  font-size: var(--text-4xl);
  margin: var(--space-md) 0;
}

.signal-icon {
  width: 48px;
  height: 48px;
  margin: 0 auto;
  position: relative;
}

.signal-icon span {
  position: absolute;
  inset: 0;
  border: 2px solid var(--color-danger);
  border-radius: 50%;
  animation: signal 1.5s ease-out infinite;
}

.signal-icon span:nth-child(2) {
  animation-delay: 0.4s;
}

.signal-icon i {
  position: absolute;
  inset: 30%;
  background: var(--color-danger);
  border-radius: 50%;
}

@keyframes signal {
  from {
    transform: scale(0.4);
    opacity: 1;
  }
  to {
    transform: scale(1.4);
    opacity: 0;
  }
}

.storing-actions {
  display: grid;
  gap: var(--space-md);
  max-width: 480px;
  margin: var(--space-2xl) auto;
}

.storing-actions .btn {
  min-height: 64px;
  font-size: var(--text-lg);
}

.issue-grid {
  display: grid;
  gap: var(--space-md);
  grid-template-columns: 1fr;
}

@media (min-width: 640px) {
  .issue-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 960px) {
  .issue-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.issue-card {
  padding: var(--space-lg);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  background: var(--color-surface);
  text-align: left;
  min-height: 96px;
  font-weight: 600;
  transition: border-color var(--duration-fast), background var(--duration-fast);
}

.issue-card:hover,
.issue-card.is-selected {
  border-color: var(--color-primary);
  background: var(--color-primary-dim);
}

/* Contact split */
.contact-split {
  display: grid;
  gap: var(--space-3xl);
}

@media (min-width: 900px) {
  .contact-split {
    grid-template-columns: 1fr 1fr;
    align-items: start;
  }
}

.contact-channels {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
  margin-top: var(--space-xl);
}

.contact-channel {
  display: flex;
  align-items: center;
  gap: var(--space-md);
  padding: var(--space-lg);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  background: var(--color-surface);
  transition: border-color var(--duration-fast);
}

.contact-channel:hover {
  border-color: var(--color-primary);
}

.contact-channel__label {
  font-family: var(--font-mono);
  font-size: 0.6rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-muted-2);
}

.contact-channel__value {
  font-weight: 650;
}

/* Before/after */
.ba-slider {
  position: relative;
  aspect-ratio: 16 / 10;
  border-radius: var(--radius-xl);
  overflow: hidden;
  border: 1px solid var(--color-border);
  user-select: none;
  touch-action: none;
}

.ba-slider__layer {
  position: absolute;
  inset: 0;
}

.ba-slider__layer--after {
  background: linear-gradient(135deg, #1a2030, #0e1116);
}

.ba-slider__layer--before {
  background: linear-gradient(135deg, #2a1a12, #12100e);
  width: 50%;
  overflow: hidden;
  border-right: 2px solid var(--color-primary);
}

.ba-slider__label {
  position: absolute;
  top: 1rem;
  font-family: var(--font-mono);
  font-size: 0.65rem;
  letter-spacing: 0.12em;
  padding: 0.35rem 0.55rem;
  background: rgba(0, 0, 0, 0.65);
  border-radius: 4px;
}

.ba-slider__label--before {
  left: 1rem;
}
.ba-slider__label--after {
  right: 1rem;
}

.ba-slider__handle {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 40px;
  transform: translateX(-50%);
  display: grid;
  place-items: center;
  cursor: ew-resize;
  z-index: 2;
}

.ba-slider__handle::before {
  content: '';
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--color-primary);
  color: var(--color-bg);
  box-shadow: none;
}

.ba-slider__content {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-muted);
  padding: 2rem;
  text-align: center;
}

/* Meterkast comparison */
.compare-panels {
  display: grid;
  gap: var(--space-md);
}

@media (min-width: 768px) {
  .compare-panels {
    grid-template-columns: 1fr 1fr;
  }
}

.compare-panel {
  border: 1px solid var(--color-border);
  border-radius: var(--radius-xl);
  padding: var(--space-xl);
  background: var(--color-surface);
  min-height: 280px;
}

.compare-panel--old {
  opacity: 0.75;
}

.compare-panel--new {
  border-color: var(--color-border-strong);
}

.compare-panel__title {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-muted);
  margin-bottom: var(--space-lg);
}

/* Filters */
.filter-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: var(--space-xl);
}

.filter-btn {
  min-height: 40px;
  padding: 0.45rem 0.9rem;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-full);
  font-size: var(--text-sm);
  color: var(--color-muted);
  transition: border-color var(--duration-fast), color var(--duration-fast), background var(--duration-fast);
}

.filter-btn.is-active,
.filter-btn:hover {
  color: #0a0a0a;
  background: var(--color-primary);
  border-color: var(--color-primary);
}

/* Legal */
.legal-content {
  max-width: 720px;
}

.legal-content h2 {
  font-size: var(--text-xl);
  margin: var(--space-2xl) 0 var(--space-md);
}

.legal-content p,
.legal-content li {
  color: var(--color-muted);
  margin-bottom: var(--space-sm);
}

.legal-content ul {
  padding-left: 1.25rem;
  list-style: disc;
  margin-bottom: var(--space-md);
}

/* 404 */
.error-page {
  min-height: 70dvh;
  display: grid;
  place-items: center;
  text-align: center;
  padding: var(--space-3xl) 0;
}

.error-page__code {
  font-family: var(--font-mono);
  font-size: var(--text-sm);
  letter-spacing: 0.2em;
  color: var(--color-danger);
  margin-bottom: var(--space-md);
}

.error-page__title {
  font-size: var(--text-4xl);
  margin-bottom: var(--space-md);
}

.error-page__broken {
  width: min(100%, 320px);
  margin: var(--space-2xl) auto;
  opacity: 0.6;
}

/* Situation links particulier */
.situation-links {
  display: grid;
  gap: var(--space-md);
}

.situation-link {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: var(--space-lg) var(--space-xl);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  background: var(--color-surface);
  font-weight: 650;
  font-size: var(--text-lg);
  transition: border-color var(--duration-fast), transform var(--duration-fast);
}

.situation-link:hover {
  border-color: var(--color-primary);
  transform: translateX(4px);
}

.situation-link span {
  color: var(--color-primary);
  transition: transform var(--duration-fast);
}

.situation-link:hover span {
  transform: translateX(4px);
}

/* Branch cards zakelijk */
.branch-grid {
  display: grid;
  gap: var(--space-md);
  grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
}

.branch-card {
  padding: var(--space-xl) var(--space-lg);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  background: var(--color-surface);
  text-align: center;
  font-weight: 600;
  transition: border-color var(--duration-fast), background var(--duration-fast);
}

.branch-card:hover {
  border-color: var(--color-primary);
  background: var(--color-primary-dim);
}

/* Project detail power drawing */
.power-drawing {
  display: flex;
  flex-direction: column;
  gap: 0;
  max-width: 280px;
}

.power-drawing__item {
  display: grid;
  grid-template-columns: 20px 1fr;
  gap: var(--space-md);
  align-items: start;
  padding: var(--space-sm) 0;
  opacity: 0.35;
  transition: opacity var(--duration-base);
}

.power-drawing__item.is-active {
  opacity: 1;
}

.power-drawing__dot {
  width: 12px;
  height: 12px;
  margin-top: 4px;
  border-radius: 50%;
  border: 2px solid var(--color-primary);
  background: transparent;
}

.power-drawing__item.is-active .power-drawing__dot {
  background: var(--color-primary);
  box-shadow: none;
}

.power-drawing__label {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

/* Calculator */
.calc-options {
  display: grid;
  gap: 0.65rem;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  margin-bottom: var(--space-xl);
}

.calc-option {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.9rem 1rem;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  background: var(--color-surface);
  cursor: pointer;
  min-height: 52px;
}

.calc-option:has(input:checked) {
  border-color: var(--color-primary);
  background: var(--color-primary-dim);
}

.calc-option input {
  accent-color: var(--color-primary);
  width: 18px;
  height: 18px;
}

.calc-result {
  padding: var(--space-xl);
  border: 1px solid rgba(143, 107, 56, 0.3);
  border-radius: var(--radius-xl);
  background: var(--color-primary-dim);
  display: none;
}

.calc-result.is-visible {
  display: block;
}

/* FAQ cats */
.faq-cats {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: var(--space-xl);
}

.faq-cat {
  min-height: 40px;
  padding: 0.45rem 0.9rem;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-full);
  font-size: var(--text-sm);
  color: var(--color-muted);
}

.faq-cat.is-active {
  background: var(--color-primary);
  color: #0a0a0a;
  border-color: var(--color-primary);
}

.faq-panel {
  display: none;
}

.faq-panel.is-active {
  display: block;
}
