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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-sans);
  font-size: var(--text-base);
  line-height: 1.6;
  color: var(--color-text);
  background: var(--color-bg);
}

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

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding-left: var(--sp-xl);
  padding-right: var(--sp-xl);
}

.section { padding-top: var(--sp-3xl); padding-bottom: var(--sp-3xl); scroll-margin-top: calc(var(--sp-3xl) + var(--sp-2xl)); }
.section + .section { padding-top: 0; }

.section-head {
  display: flex;
  flex-direction: column;
  gap: var(--sp-s);
  margin-bottom: var(--sp-2xl);
  max-width: 640px;
}

h1 { font-size: var(--text-4xl); line-height: 1.1; letter-spacing: -0.02em; text-wrap: balance; }
h2 { font-size: var(--text-3xl); line-height: 1.15; letter-spacing: -0.01em; text-wrap: balance; }
h3 { font-size: var(--text-xl); line-height: 1.3; }

.lead { font-size: var(--text-lg); color: var(--color-muted); }
.muted { color: var(--color-muted); }
.hl { color: var(--select); }
.hero-full-content .hl { color: #4bc98a; }
.eyebrow {
  font-size: var(--text-sm);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--select);
  font-weight: 700;
}

body { padding-top: calc(var(--sp-3xl) + var(--sp-2xl)); }
body.has-hero { padding-top: 0; }

.site-header {
  position: fixed;
  top: var(--sp-l);
  left: var(--sp-l);
  right: var(--sp-l);
  z-index: 50;
}
.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--sp-xl);
  padding-top: var(--sp-m);
  padding-bottom: var(--sp-m);
  background: rgba(18, 18, 20, 0.62);
  backdrop-filter: blur(16px) saturate(1.5);
  -webkit-backdrop-filter: blur(16px) saturate(1.5);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
}
.site-header .logo { color: #45c07f; }
.site-header .logo span { color: #45c07f; opacity: 0.6; }
.site-header .header-cta.btn--primary {
  background: var(--select);
  border-color: var(--select);
  color: #ffffff;
}
.site-header .header-cta.btn--primary:hover {
  background: #178a49;
  border-color: #178a49;
}
.site-header .main-nav a { color: var(--accent-ink); }
.logo {
  font-size: var(--text-xl);
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--color-text);
}
.logo span { color: var(--color-muted); }
.main-nav { display: flex; align-items: center; gap: var(--sp-xs); position: relative; }
.main-nav a {
  text-decoration: none;
  color: var(--color-text);
  font-size: var(--text-base);
  padding: var(--sp-s) var(--sp-l);
  border-radius: var(--radius-md);
  position: relative;
  z-index: 1;
}
.main-nav a.is-active { font-weight: 600; }
.nav-pill {
  position: absolute;
  background: rgba(255, 255, 255, 0.18);
  border-radius: var(--radius-md);
  transition: left 0.3s ease, width 0.3s ease, top 0.3s ease, height 0.3s ease, opacity 0.2s ease;
  opacity: 0;
  z-index: 0;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--sp-s);
  height: var(--control-h);
  padding-left: var(--sp-xl);
  padding-right: var(--sp-xl);
  border-radius: var(--radius-pill);
  border: 1px solid var(--color-text);
  font-family: var(--font-sans);
  font-size: var(--text-base);
  font-weight: 600;
  cursor: pointer;
  text-decoration: none;
  white-space: nowrap;
  transition: background 0.15s ease, color 0.15s ease;
}
.btn--primary { background: var(--select); color: #ffffff; border-color: var(--select); }
.btn--primary:hover { background: #178a49; border-color: #178a49; }
.btn--neutral { background: transparent; color: var(--color-text); }
.btn--neutral:hover { background: var(--surface-2); }

.hero-full {
  position: relative;
  display: flex;
  align-items: stretch;
  min-height: 50vh;
  overflow: hidden;
}
.hero-full--sub { min-height: 50vh; }
/* Inhalt vertikal zentriert; Trust-Block auf JEDEM Hero darunter (alle gleich hoch) */
.hero-full-content { justify-content: center; }
.hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-bg--top { object-position: center top; }

.hero-slides { position: absolute; inset: 0; z-index: 0; }
.hero-slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 1.4s ease;
}
.hero-slide.is-active { opacity: 1; }

@view-transition {
  navigation: auto;
}
::view-transition-old(root) {
  animation-duration: 0.35s;
  animation-timing-function: ease;
}
::view-transition-new(root) {
  animation-duration: 0.35s;
  animation-timing-function: ease;
}
.hero-full::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(12, 12, 14, 0.78) 0%, rgba(12, 12, 14, 0.45) 55%, rgba(12, 12, 14, 0.15) 100%);
}
.hero-full-content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: var(--sp-xl);
  padding-top: calc(var(--sp-3xl) + var(--sp-2xl));
  padding-bottom: var(--sp-3xl);
  color: var(--accent-ink);
  max-width: 1200px;
  width: 100%;
}
.hero-full-content h1 { max-width: 700px; }
.hero-full-content .eyebrow { color: #4bc98a; }
.hero-full-content .lead { color: rgba(247, 247, 245, 0.85); max-width: 620px; }
.hero-actions { display: flex; gap: var(--sp-l); flex-wrap: wrap; }

/* Trust-Block: 3 Glas-Karten im Hero (Icon | Divider | Wert + Text) */
.hero-trust {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: var(--sp-xl);
}
.trust-card {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: var(--sp-l);
  padding: var(--sp-l) var(--sp-xl);
  background: rgba(20, 20, 22, 0.5);
  backdrop-filter: blur(14px) saturate(1.3);
  -webkit-backdrop-filter: blur(14px) saturate(1.3);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius-lg);
  color: #ffffff;
}
.trust-ico { flex: none; width: 2.75rem; height: 2.75rem; color: #4bc98a; }
.trust-ico svg { width: 100%; height: 100%; }
.trust-ico--star { color: var(--star); }
.trust-divider { flex: none; align-self: stretch; width: 1px; background: rgba(255, 255, 255, 0.22); }
.trust-text { display: flex; flex-direction: column; gap: var(--sp-xs); min-width: 0; }
.trust-value { font-size: var(--text-2xl); font-weight: 800; letter-spacing: -0.01em; }
.trust-label { color: rgba(255, 255, 255, 0.82); font-size: var(--text-sm); }
@media (max-width: 820px) {
  .hero-trust { grid-template-columns: 1fr; }
}
.btn--ghostlight {
  background: transparent;
  color: var(--accent-ink);
  border-color: var(--accent-ink);
}
.btn--ghostlight:hover { background: rgba(247, 247, 245, 0.15); }


.config-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: var(--sp-2xl);
  align-items: start;
}

.config-preview {
  position: sticky;
  top: calc(var(--sp-3xl) + var(--sp-2xl));
  align-self: start;
  display: flex;
  flex-direction: column;
  gap: var(--sp-l);
}
.stage {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: var(--sp-l);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.stage svg { width: 100%; height: 42vh; min-height: 320px; max-height: 460px; }

.price-box {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: var(--sp-xl);
  display: flex;
  flex-direction: column;
  gap: var(--sp-xl);
}
.price-row {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: var(--sp-l);
}
.price-value { font-size: var(--text-3xl); font-weight: 800; letter-spacing: -0.01em; }
.price-note { font-size: var(--text-sm); color: var(--color-muted); }

.summary-grid {
  display: grid;
  grid-template-columns: 40% 60%;
  row-gap: var(--sp-s);
  font-size: var(--text-base);
}
.summary-grid dt { color: var(--color-muted); }
.summary-grid dd { font-weight: 600; text-align: right; }

.price-actions { display: flex; justify-content: flex-end; gap: var(--sp-l); }

.config-options { display: flex; flex-direction: column; gap: var(--sp-2xl); }
.opt-group { display: flex; flex-direction: column; gap: var(--sp-l); }
.opt-group-title {
  font-size: var(--text-sm);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-weight: 700;
}
.opt-cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--sp-l);
}
.opt-cards--2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }

.opt-card {
  display: flex;
  align-items: center;
  gap: var(--sp-l);
  padding: var(--sp-l);
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  cursor: pointer;
  text-align: left;
  font-family: var(--font-sans);
  font-size: var(--text-base);
  color: var(--color-text);
  transition: border-color 0.15s ease, background 0.15s ease;
}
.opt-card:hover { border-color: var(--color-muted); }
.opt-card .opt-text {
  display: flex;
  flex-direction: column;
  gap: var(--sp-xs);
  min-width: 0;
}
.opt-card .opt-name { font-weight: 600; }
.opt-card .opt-hint { font-size: var(--text-sm); color: var(--color-muted); }
.opt-card .opt-check {
  margin-left: auto;
  flex-shrink: 0;
  width: 1.5rem;
  height: 1.5rem;
  border-radius: var(--radius-pill);
  border: 1px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: var(--text-sm);
  color: transparent;
  background: var(--surface-2);
}
.opt-card.is-active {
  border-color: var(--select);
  background: var(--select-bg);
}
.opt-card.is-active .opt-name { color: var(--select); }
.opt-card.is-active .opt-check {
  background: var(--select);
  border-color: var(--select);
  color: #ffffff;
}

.opt-thumb {
  width: 2.5rem;
  height: 3.75rem;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-text);
}
.opt-thumb svg { width: 100%; height: 100%; }

.swatch {
  width: 3rem;
  height: 3rem;
  flex-shrink: 0;
  border-radius: var(--radius-sm);
  border: 1px solid var(--line);
}

.dim-inputs {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: var(--sp-l);
}
.field { display: flex; flex-direction: column; gap: var(--sp-s); }
.field--full { grid-column: 1 / -1; }
.field[hidden] { display: none; }

.seg {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-s);
}
.seg-btn {
  height: var(--control-h);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--surface);
  font-family: var(--font-sans);
  font-size: var(--text-base);
  font-weight: 600;
  color: var(--color-text);
  cursor: pointer;
  transition: border-color 0.15s ease, background 0.15s ease, color 0.15s ease;
}
.seg-btn:hover { border-color: var(--color-muted); }
.seg-btn.is-active {
  border-color: var(--select);
  background: var(--select-bg);
  color: var(--select);
}
.field label { font-size: var(--text-sm); font-weight: 600; white-space: nowrap; }
.field input,
.field textarea {
  height: var(--control-h);
  padding-left: var(--sp-l);
  padding-right: var(--sp-l);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--surface);
  font-family: var(--font-sans);
  font-size: var(--text-base);
  color: var(--color-text);
  width: 100%;
}
.field textarea {
  height: auto;
  min-height: 10rem;
  padding-top: var(--sp-m);
  padding-bottom: var(--sp-m);
  resize: vertical;
}
.field input:focus,
.field textarea:focus {
  outline: 2px solid var(--color-text);
  outline-offset: 1px;
}
.field .hint { font-size: var(--text-sm); color: var(--color-muted); }

.benefits {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: var(--sp-xl);
}
.benefit-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: var(--sp-xl);
  display: flex;
  flex-direction: column;
  gap: var(--sp-l);
}
.benefit-card .benefit-icon {
  width: 2.75rem;
  height: 2.75rem;
  color: var(--select);
}
.benefit-card .benefit-icon svg { width: 100%; height: 100%; }

.cta-banner {
  background: var(--accent);
  color: var(--accent-ink);
  border-radius: var(--radius-lg);
  padding: var(--sp-2xl);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--sp-2xl);
  flex-wrap: wrap;
}
.cta-banner .cta-copy {
  display: flex;
  flex-direction: column;
  gap: var(--sp-s);
  max-width: 620px;
}
.cta-banner p { color: var(--accent-ink); opacity: 0.8; }
.cta-banner--light {
  background: var(--surface);
  border: 1px solid var(--line);
  color: var(--color-text);
  padding: var(--sp-xl);
  margin-top: var(--sp-2xl);
}
.cta-banner--light p { color: var(--color-muted); opacity: 1; }
.btn--light {
  background: var(--color-bg);
  color: var(--color-text);
  border-color: var(--color-bg);
}
.btn--light:hover { background: var(--surface-2); border-color: var(--surface-2); }

.tile-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: var(--sp-xl);
}
.tile {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: var(--sp-xl);
  display: flex;
  flex-direction: column;
  gap: var(--sp-l);
  text-decoration: none;
  color: var(--color-text);
  transition: border-color 0.15s ease, transform 0.15s ease;
}
.tile:hover { border-color: var(--color-muted); transform: translateY(-2px); }
.tile-icon {
  width: 3rem;
  height: 4.5rem;
  display: flex;
  color: var(--color-text);
}
.tile-icon svg { width: 100%; height: 100%; }
.tile-grid--2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.tile-grid--2 .tile {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  grid-template-rows: auto auto 1fr;
  column-gap: var(--sp-2xl);
  row-gap: var(--sp-l);
}
.tile-grid--2 .tile-icon {
  grid-column: 1;
  grid-row: 1 / span 3;
  width: 100%;
  height: 100%;
  min-height: 15rem;
  background: var(--surface-2);
  border-radius: var(--radius-md);
  align-items: center;
  justify-content: center;
  padding: var(--sp-xl);
}
.tile-grid--2 .tile-icon svg { max-height: 13rem; }
.tile-grid--2 .tile h3,
.tile-grid--2 .tile p,
.tile-grid--2 .tile .tile-link { grid-column: 2; }
.tile-grid--2 .tile .tile-link { align-self: end; justify-self: end; }
.tile-link {
  margin-top: auto;
  font-weight: 700;
  font-size: var(--text-base);
  color: var(--select);
}
.tile-link::after { content: " →"; }

.media-split {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: var(--sp-2xl);
  align-items: stretch;
}
.media-copy {
  display: flex;
  flex-direction: column;
  gap: var(--sp-l);
}
.media-actions { display: flex; gap: var(--sp-l); }
.media-img {
  width: 100%;
  height: 100%;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
  object-fit: cover;
}

.banner-full {
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  min-height: 640px;
  padding-top: var(--sp-3xl);
  padding-bottom: var(--sp-3xl);
}
.banner-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.glass-card .media-actions { flex-wrap: wrap; }
.glass-card {
  position: relative;
  max-width: 560px;
  background: rgba(20, 20, 22, 0.45);
  backdrop-filter: blur(14px) saturate(1.4);
  -webkit-backdrop-filter: blur(14px) saturate(1.4);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: var(--radius-lg);
  padding: var(--sp-2xl);
  display: flex;
  flex-direction: column;
  gap: var(--sp-l);
  color: var(--accent-ink);
}
.glass-card .eyebrow { color: rgba(247, 247, 245, 0.75); }
.glass-card p { color: rgba(247, 247, 245, 0.88); }
.glass-card--wide {
  max-width: none;
  width: 100%;
}
.glass-card--wide p { max-width: 720px; }

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: var(--sp-xl);
}

.table-wrap {
  overflow-x: auto;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  margin-bottom: var(--sp-l);
}
.data-table {
  width: 100%;
  table-layout: fixed;
  border-collapse: collapse;
  font-size: var(--text-base);
}
.data-table th,
.data-table td {
  text-align: left;
  padding: var(--sp-m) var(--sp-xl);
  border-bottom: 1px solid var(--line);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.data-table th:not(:first-child),
.data-table td:not(:first-child) { text-align: right; }
.data-table th {
  background: var(--accent);
  color: var(--accent-ink);
  font-weight: 600;
}
.data-table tbody tr:last-child td { border-bottom: none; }
.data-table tbody tr:hover { background: var(--surface-2); }
.info-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: var(--sp-xl);
  display: flex;
  flex-direction: column;
  gap: var(--sp-l);
}
.profile-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--sp-l);
}
.badge {
  font-size: var(--text-sm);
  font-weight: 700;
  padding: var(--sp-xs) var(--sp-m);
  border-radius: var(--radius-pill);
  background: var(--select-bg);
  color: var(--select);
  border: 1px solid var(--select);
  white-space: nowrap;
}
.badge--neutral {
  background: var(--surface-2);
  color: var(--color-muted);
  border-color: var(--line);
}
.profile-figure {
  background: var(--surface-2);
  border-radius: var(--radius-md);
  padding: var(--sp-l);
  display: flex;
  justify-content: center;
}
.profile-figure svg { width: 10rem; height: auto; }
.spec-grid {
  display: grid;
  grid-template-columns: 45% 55%;
  row-gap: var(--sp-s);
  font-size: var(--text-base);
}
.spec-grid dt { color: var(--color-muted); }
.spec-grid dd { font-weight: 600; }

.extra-list {
  display: flex;
  flex-direction: column;
  gap: var(--sp-xl);
}
.extra-card {
  flex-direction: row;
  align-items: stretch;
  gap: var(--sp-2xl);
  padding: var(--sp-2xl);
}
.extra-icon {
  width: 13rem;
  align-self: stretch;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-text);
  background: var(--surface-2);
  border-radius: var(--radius-md);
  padding: var(--sp-xl);
}
.extra-icon svg { width: 100%; height: 100%; max-height: 11rem; }
.extra-body {
  display: flex;
  flex-direction: column;
  gap: var(--sp-l);
  flex: 1;
  min-width: 0;
}
.extra-card .check-list {
  display: flex;
  flex-direction: column;
  gap: var(--sp-s);
}

.check-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: var(--sp-s);
}
.check-list li {
  padding-left: var(--sp-xl);
  position: relative;
  color: var(--color-muted);
}
.check-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--select);
  font-weight: 700;
}

/* Leitsatz / Pull-Quote */
.pullquote {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: var(--sp-xl);
}
.pullquote blockquote {
  margin: 0;
  font-size: var(--text-3xl);
  line-height: 1.25;
  font-weight: 700;
  letter-spacing: -0.02em;
  text-wrap: balance;
}
.pullquote blockquote em {
  font-style: normal;
  color: var(--select);
}
.pullquote .quote-by {
  font-size: var(--text-sm);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--color-muted);
  font-weight: 600;
}

/* Zeitleiste / Unser Weg (verbundene Karten) */
.story-timeline {
  position: relative;
  max-width: 720px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: var(--sp-xl);
}
.story-timeline::before {
  content: "";
  position: absolute;
  left: 8px;
  top: 24px;
  bottom: 24px;
  width: 2px;
  background: var(--line);
}
.story-timeline .story-progress {
  position: absolute;
  left: 8px;
  top: 24px;
  width: 2px;
  height: 0;
  background: var(--select);
  transition: height 0.15s linear;
}
.story-item {
  position: relative;
  margin-left: 44px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: var(--sp-xl);
  display: flex;
  flex-direction: column;
  gap: var(--sp-xs);
  transition: border-color 0.3s ease;
}
.story-item::before {
  content: "";
  position: absolute;
  left: -44px;
  top: 24px;
  width: 18px;
  height: 18px;
  border-radius: var(--radius-pill);
  background: var(--color-bg);
  box-shadow: 0 0 0 2px var(--line);
  transition: background 0.3s ease, box-shadow 0.3s ease;
}
.story-item::after {
  content: "";
  position: absolute;
  left: -26px;
  top: 32px;
  width: 26px;
  height: 2px;
  background: var(--line);
  transition: background 0.3s ease;
}
.story-item.is-reached {
  border-color: var(--select);
}
.story-item.is-reached::before {
  background: var(--select);
  box-shadow: 0 0 0 2px var(--select);
}
.story-item.is-reached::after {
  background: var(--select);
}
.story-item .story-year {
  font-size: var(--text-sm);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-weight: 700;
  color: var(--select);
}
.story-item h3 { font-size: var(--text-xl); }
.story-item p { color: var(--color-muted); max-width: 60ch; }

.signature {
  font-weight: 600;
  color: var(--color-text);
}

.stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: var(--sp-xl);
}
.stat {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: var(--sp-2xl) var(--sp-xl);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--sp-s);
  text-align: center;
}
.stat .stat-ico {
  width: 2.5rem;
  height: 2.5rem;
  color: var(--select);
  margin-bottom: var(--sp-s);
}
.stat .stat-ico svg { width: 100%; height: 100%; }
.stat-value { font-size: var(--text-3xl); font-weight: 800; letter-spacing: -0.01em; }

.steps {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: var(--sp-xl);
}
.steps--3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.step {
  position: relative;
  overflow: hidden;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: var(--sp-2xl);
  display: flex;
  flex-direction: column;
  gap: var(--sp-l);
  transition: border-color 0.2s ease;
}
.step:hover { border-color: var(--color-muted); }
.step p { max-width: 46ch; position: relative; }
.step h3 { position: relative; }
.step-num {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: var(--radius-pill);
  background: var(--select);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  position: relative;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: var(--sp-l);
  width: 100%;
}
.faq-item {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  transition: border-color 0.2s ease;
}
.faq-item[open] { border-color: var(--color-text); }
.faq-item summary {
  font-weight: 600;
  font-size: var(--text-lg);
  cursor: pointer;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--sp-l);
  padding: var(--sp-xl);
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::marker { content: ""; }
.faq-item summary::after {
  content: "";
  flex-shrink: 0;
  width: 2rem;
  height: 2rem;
  border-radius: var(--radius-pill);
  border: 1px solid var(--line);
  background-color: var(--surface-2);
  background-image:
    linear-gradient(var(--color-text), var(--color-text)),
    linear-gradient(var(--color-text), var(--color-text));
  background-repeat: no-repeat;
  background-position: center;
  background-size: 0.875rem 2px, 2px 0.875rem;
  transition: transform 0.25s ease, background-color 0.2s ease, border-color 0.2s ease;
}
.faq-item[open] summary::after {
  transform: rotate(45deg);
  background-color: var(--accent);
  border-color: var(--accent);
  background-image:
    linear-gradient(var(--accent-ink), var(--accent-ink)),
    linear-gradient(var(--accent-ink), var(--accent-ink));
}
.faq-body {
  display: flex;
  flex-direction: column;
  gap: var(--sp-l);
  padding: 0 var(--sp-xl) var(--sp-xl);
}
.faq-body p { color: var(--color-muted); max-width: 70ch; }

.contact-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: var(--sp-xl);
  align-items: stretch;
}
.contact-info { height: 100%; }
.contact-form-box {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: var(--sp-xl);
  display: flex;
  flex-direction: column;
  gap: var(--sp-xl);
  height: 100%;
}
.contact-form {
  display: flex;
  flex-direction: column;
  gap: var(--sp-l);
  flex: 1;
}
.contact-form .field:has(textarea) { flex: 1; }
.contact-form textarea { height: 100%; }
.field-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: var(--sp-l);
}
.field-row--3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.form-actions {
  display: flex;
  justify-content: flex-end;
  margin-top: var(--sp-s);
}
.notice {
  border-radius: var(--radius-md);
  padding: var(--sp-l);
  display: flex;
  flex-direction: column;
  gap: var(--sp-xs);
}
.notice--ok {
  background: var(--select-bg);
  border: 1px solid var(--select);
}
.notice--error {
  background: #fbeaea;
  border: 1px solid var(--danger);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: var(--sp-l);
}
.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: var(--control-h);
  height: var(--control-h);
  padding: var(--sp-m);
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: var(--radius-md);
  cursor: pointer;
}
.nav-toggle span {
  display: block;
  height: 2px;
  width: 100%;
  background: var(--accent-ink);
}

.marquee {
  overflow: hidden;
  mask-image: linear-gradient(90deg, transparent, #000000 8%, #000000 92%, transparent);
  -webkit-mask-image: linear-gradient(90deg, transparent, #000000 8%, #000000 92%, transparent);
}
.marquee-track {
  display: flex;
  gap: var(--sp-xl);
  width: max-content;
  animation: marquee 120s linear infinite;
}
.marquee:hover .marquee-track { animation-play-state: paused; }
@keyframes marquee {
  to { transform: translateX(calc(-50% - var(--sp-xl) / 2)); }
}
@media (prefers-reduced-motion: reduce) {
  .marquee-track { animation: none; }
  .marquee { overflow-x: auto; mask-image: none; -webkit-mask-image: none; }
}
.review-card {
  width: 340px;
  flex-shrink: 0;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: var(--sp-xl);
  display: flex;
  flex-direction: column;
  gap: var(--sp-l);
}
.review-stars {
  color: var(--star);
  font-size: var(--text-lg);
  letter-spacing: 0.15em;
}
.review-text { color: var(--color-muted); }
.review-name {
  margin-top: auto;
  font-weight: 600;
  font-size: var(--text-sm);
}

.site-footer {
  background: var(--accent);
  color: var(--accent-ink);
  margin-top: var(--sp-3xl);
}
.site-footer .muted { color: rgba(247, 247, 245, 0.65); }
.foot-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: var(--sp-2xl);
  padding-top: var(--sp-3xl);
  padding-bottom: var(--sp-2xl);
}
.foot-col {
  display: flex;
  flex-direction: column;
  gap: var(--sp-s);
}
.foot-brand {
  font-size: var(--text-xl);
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.foot-brand { color: #45c07f; }
.foot-brand span { color: #45c07f; opacity: 0.6; }
.foot-title {
  font-size: var(--text-sm);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-weight: 700;
}
.foot-col a {
  text-decoration: none;
  color: rgba(247, 247, 245, 0.65);
}
.foot-col a:hover { color: var(--accent-ink); }
.foot-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--sp-xl);
  flex-wrap: wrap;
  border-top: 1px solid rgba(247, 247, 245, 0.18);
  padding-top: var(--sp-xl);
  padding-bottom: var(--sp-xl);
  font-size: var(--text-sm);
  color: rgba(247, 247, 245, 0.65);
}

@media (max-width: 980px) {
  h1 { font-size: var(--text-3xl); }
  h2 { font-size: var(--text-2xl); }
  .hero { padding-top: var(--sp-2xl); padding-bottom: var(--sp-2xl); }
  .hero .container { grid-template-columns: 1fr; gap: var(--sp-2xl); }
  .section { padding-top: var(--sp-2xl); padding-bottom: var(--sp-2xl); }
  .config-grid { grid-template-columns: 1fr; }
  .config-preview { display: contents; }
  .stage {
    position: sticky;
    top: calc(var(--sp-3xl) + var(--sp-2xl));
    z-index: 10;
    order: 0;
    padding: var(--sp-l);
  }
  .config-options { order: 1; }
  .price-box { order: 2; }
  .stage svg {
    width: 16rem;
    height: 16rem;
    min-height: 0;
    margin-left: auto;
    margin-right: auto;
  }
  .benefits { grid-template-columns: 1fr; }
  .tile-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .media-split { grid-template-columns: 1fr; gap: var(--sp-xl); }
  .media-split .media-img { height: auto; max-height: 340px; order: -1; }
  .grid-3 { grid-template-columns: 1fr; }
  .extra-card { flex-direction: column; }
  .extra-card .check-list { grid-template-columns: 1fr; }
  .extra-icon { width: 100%; height: 9rem; align-self: auto; }
  .tile-grid--2 { grid-template-columns: 1fr; }
  .tile-grid--2 .tile { grid-template-columns: 1fr; grid-template-rows: auto; }
  .tile-grid--2 .tile-icon {
    grid-column: 1;
    grid-row: auto;
    min-height: 9rem;
    height: 9rem;
  }
  .tile-grid--2 .tile h3,
  .tile-grid--2 .tile p,
  .tile-grid--2 .tile .tile-link { grid-column: 1; }
  .stats { grid-template-columns: 1fr; }
  .steps { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .contact-grid { grid-template-columns: 1fr; }
  .contact-info { order: 2; height: auto; }
  .field-row--3 { grid-template-columns: 1fr; }
  .steps--3 { grid-template-columns: 1fr; }
  .foot-grid { grid-template-columns: 1fr; gap: var(--sp-xl); }
}

@media (max-width: 1120px) {
  .main-nav {
    display: none;
    position: absolute;
    top: calc(100% + var(--sp-s));
    left: 0;
    right: 0;
    background: rgba(20, 20, 22, 0.72);
    backdrop-filter: blur(16px) saturate(1.5);
    -webkit-backdrop-filter: blur(16px) saturate(1.5);
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-card);
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: var(--sp-l);
  }
  .main-nav.is-open { display: flex; }
  .main-nav a {
    padding: var(--sp-m);
    border-radius: var(--radius-md);
  }
  .main-nav a:hover { background: rgba(255, 255, 255, 0.12); }
  .main-nav a.is-active { background: rgba(255, 255, 255, 0.18); }
  .nav-pill { display: none; }
  .site-header .container { position: relative; }
  .nav-toggle { display: flex; }
}

@media (max-width: 640px) {
  .header-cta { display: none; }
  .tile-grid { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr; }
  .opt-cards--2 { grid-template-columns: 1fr; }
  .dim-inputs { grid-template-columns: 1fr; }
  .field-row { grid-template-columns: 1fr; }
  .cta-banner { padding: var(--sp-xl); }
  .price-actions .btn { width: 100%; }
  .form-actions .btn { width: 100%; }
}

/* ============ Über-uns: editorial ============ */
.reveal { opacity: 0; transform: translateY(18px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.is-visible { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
}

.manifesto {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: var(--sp-3xl);
  align-items: center;
}
.manifesto-copy { display: flex; flex-direction: column; gap: var(--sp-l); }
.manifesto-statement {
  font-size: clamp(1.75rem, 3.4vw, 2.9rem);
  line-height: 1.18;
  font-weight: 750;
  letter-spacing: -0.02em;
  text-wrap: balance;
  margin: 0;
}
.manifesto-stats {
  display: flex;
  flex-direction: column;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-card);
}
.mstat {
  display: flex;
  align-items: center;
  gap: var(--sp-l);
  padding: var(--sp-xl);
  border-bottom: 1px solid var(--line);
}
.mstat:last-child { border-bottom: none; }
.mstat-ico {
  width: 2.4rem;
  height: 2.4rem;
  color: var(--select);
  flex-shrink: 0;
}
.mstat-ico svg { width: 100%; height: 100%; }
.mstat-body { display: flex; flex-direction: column; gap: 2px; }
.mstat .n {
  font-size: var(--text-2xl);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.1;
}
.mstat .l { color: var(--color-muted); font-size: var(--text-sm); }

/* Gerahmter Leitsatz als Glas-Feld */
.frame-quote {
  position: relative;
  max-width: 900px;
  margin: 0 auto;
  border: 2px solid var(--color-text);
  border-radius: var(--radius-md);
  padding: clamp(2rem, 6vw, 4rem) clamp(1.5rem, 5vw, 3.5rem);
  text-align: center;
  background:
    linear-gradient(180deg, rgba(207, 224, 230, 0.18), rgba(207, 224, 230, 0.06));
  overflow: hidden;
}
.frame-quote::before,
.frame-quote::after {
  content: "";
  position: absolute;
  background: var(--color-text);
  opacity: 0.14;
}
.frame-quote::before { left: 50%; top: 0; bottom: 0; width: 2px; }
.frame-quote::after { top: 50%; left: 0; right: 0; height: 2px; }
.frame-quote blockquote {
  position: relative;
  margin: 0;
  font-size: clamp(1.5rem, 3.4vw, 2.4rem);
  line-height: 1.25;
  font-weight: 700;
  letter-spacing: -0.02em;
  text-wrap: balance;
}
.frame-quote blockquote em { font-style: normal; color: var(--select); }
.frame-quote .quote-by {
  position: relative;
  margin-top: var(--sp-l);
  font-size: var(--text-sm);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--color-muted);
  font-weight: 600;
}

/* Tür-Reveal: Flügel öffnen sich beim Scrollen */
.door-reveal {
  position: relative;
  width: 100%;
  margin: 0;
  min-height: clamp(460px, 72vh, 800px);
  overflow: hidden;
  background: transparent;
  border: 4px solid #111113;
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
}
.reveal-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}
.reveal-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(calc(1.08 + var(--open, 0) * 0.32));
  transition: transform 0.6s ease;
}
.reveal-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(12, 14, 18, 0.38), rgba(12, 14, 18, 0.52));
}
.reveal-quote {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 760px;
  padding: clamp(2rem, 6vw, 4rem) clamp(1.5rem, 5vw, 3.5rem);
  opacity: 1;
  color: #ffffff;
}
.reveal-quote blockquote { text-shadow: 0 1px 20px rgba(0, 0, 0, 0.35); }
.reveal-quote .quote-by { color: rgba(255, 255, 255, 0.78); }
.reveal-quote blockquote {
  margin: 0;
  font-size: clamp(1.5rem, 3.4vw, 2.4rem);
  line-height: 1.25;
  font-weight: 700;
  letter-spacing: -0.02em;
  text-wrap: balance;
}
.reveal-quote blockquote em { font-style: normal; color: #5fd39a; }
.reveal-quote .quote-by {
  margin-top: var(--sp-l);
  font-size: var(--text-sm);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: rgba(255, 255, 255, 0.78);
  font-weight: 600;
}
.reveal-quote { transition: opacity 0.55s ease; }

/* feste Seitenteile (Trennwand), je in der Mitte geteilt */
.door-side {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 20%;
  z-index: 3;
  background-color: rgba(215, 228, 233, 0.55);
  backdrop-filter: blur(7px) saturate(1.2);
  -webkit-backdrop-filter: blur(7px) saturate(1.2);
  background-image:
    linear-gradient(to right, rgba(17,17,19,0) calc(50% - 1px), #111113 calc(50% - 1px), #111113 calc(50% + 1px), rgba(17,17,19,0) calc(50% + 1px)),
    repeating-linear-gradient(to bottom, rgba(17, 17, 19, 0) 0, rgba(17, 17, 19, 0) calc(20% - 1.5px), #111113 calc(20% - 1.5px), #111113 20%);
}
.door-side-left { left: 0; border-right: 2px solid #111113; }
.door-side-right { right: 0; border-left: 2px solid #111113; }

/* öffnende Türflügel in der Mitte, parken vor den Seitenteilen (Griffe bleiben sichtbar) */
.leaf {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 30%;
  z-index: 4;
  background-color: rgba(215, 228, 233, 0.55);
  backdrop-filter: blur(7px) saturate(1.2);
  -webkit-backdrop-filter: blur(7px) saturate(1.2);
  background-image: repeating-linear-gradient(to bottom, rgba(17, 17, 19, 0) 0, rgba(17, 17, 19, 0) calc(20% - 1.5px), #111113 calc(20% - 1.5px), #111113 20%);
  transition: transform 0.55s cubic-bezier(0.33, 1, 0.68, 1);
  will-change: transform;
}
.leaf-left { left: 20%; border: 1.5px solid #111113; border-top: none; border-bottom: none; transform: translateX(calc(var(--open, 0) * -88%)); }
.leaf-right { right: 20%; border: 1.5px solid #111113; border-top: none; border-bottom: none; transform: translateX(calc(var(--open, 0) * 88%)); }
/* Griff "Linea rund" wie im Konfigurator: schlanker, voll gerundeter Rundstab */
.leaf-left::after,
.leaf-right::after {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 7px;
  height: 24%;
  min-height: 130px;
  border-radius: 4px;
  background: linear-gradient(to right, #17171a 0%, #3c3c41 42%, #26262a 100%);
  box-shadow: 0 2px 7px rgba(0, 0, 0, 0.3);
}
.leaf-left::after { right: 12px; }
.leaf-right::after { left: 12px; }
@media (prefers-reduced-motion: reduce) {
  .leaf { display: none; }
}

/* Werte mit Linien-Icons */
.value-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--surface);
}
.value-cell {
  padding: var(--sp-2xl);
  display: flex;
  flex-direction: column;
  gap: var(--sp-l);
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.value-cell:nth-child(2n) { border-right: none; }
.value-cell:nth-last-child(-n+2) { border-bottom: none; }
.value-ico {
  width: 2.75rem;
  height: 2.75rem;
  color: var(--select);
}
.value-ico svg { width: 100%; height: 100%; }
.value-cell h3 { font-size: var(--text-lg); }
.value-cell p { color: var(--color-muted); }

/* Große redaktionelle Zahlen */
.bigstats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: var(--sp-2xl);
}
.bigstat { display: flex; flex-direction: column; gap: var(--sp-s); }
.bigstat .n {
  font-size: clamp(3rem, 7vw, 4.75rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1;
}
.bigstat .n span { color: var(--select); }
.bigstat .lbl { color: var(--color-muted); max-width: 24ch; }
.bigstat + .bigstat { border-left: 1px solid var(--line); padding-left: var(--sp-2xl); }

@media (max-width: 820px) {
  .manifesto { grid-template-columns: 1fr; gap: var(--sp-2xl); }
  .value-grid { grid-template-columns: 1fr; }
  .value-cell { border-right: none; }
  .value-cell:nth-last-child(2) { border-bottom: 1px solid var(--line); }
  .bigstats { grid-template-columns: 1fr; gap: var(--sp-xl); }
  .bigstat + .bigstat { border-left: none; padding-left: 0; }
}

/* ============ Bauträger-Seite ============ */
.field select {
  height: var(--control-h);
  padding-left: var(--sp-l);
  padding-right: var(--sp-l);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--surface);
  font-family: var(--font-sans);
  font-size: var(--text-base);
  color: var(--color-text);
  width: 100%;
  cursor: pointer;
}
.field select:focus { outline: 2px solid var(--color-text); outline-offset: 1px; }

.pitch {
  display: flex;
  flex-direction: column;
  gap: var(--sp-2xl);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--surface);
  padding: var(--sp-2xl);
}
.pitch-lead {
  font-size: var(--text-2xl);
  font-weight: 700;
  line-height: 1.3;
  letter-spacing: -0.01em;
  max-width: 46rem;
}
.pitch-points {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: var(--sp-xl);
}
.pitch-point {
  display: flex;
  align-items: center;
  gap: var(--sp-l);
  font-weight: 600;
}
.pitch-ico {
  flex: none;
  width: 2.75rem;
  height: 2.75rem;
  display: grid;
  place-items: center;
  border-radius: var(--radius-md);
  background: var(--select-bg);
  color: var(--select);
}
.pitch-ico svg { width: 1.5rem; height: 1.5rem; }

.stat-band {
  background: var(--accent);
  color: var(--accent-ink);
  border-radius: var(--radius-lg);
  padding: var(--sp-2xl);
  display: flex;
  flex-direction: column;
  gap: var(--sp-xl);
}
.stat-band-title {
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: var(--text-sm);
  font-weight: 700;
  color: #4bc98a;
}
.stat-band-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
}
.stat-band .sb {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: var(--sp-s);
  padding: 0 var(--sp-xl);
}
.stat-band .sb + .sb { border-left: 1px solid rgba(247, 247, 245, 0.14); }
.sb-ico {
  width: 2.75rem;
  height: 2.75rem;
  display: grid;
  place-items: center;
  border-radius: var(--radius-pill);
  background: rgba(75, 201, 138, 0.14);
  color: #4bc98a;
}
.sb-ico svg { width: 1.4rem; height: 1.4rem; }
.stat-band .n {
  font-size: var(--text-3xl);
  font-weight: 800;
  letter-spacing: -0.02em;
  color: #4bc98a;
}
.stat-band .l { color: rgba(247, 247, 245, 0.72); font-size: var(--text-sm); }

.ref-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: var(--sp-xl);
}
.ref-card {
  display: flex;
  flex-direction: column;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-card);
}
.ref-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}
.ref-body {
  display: flex;
  flex-direction: column;
  gap: var(--sp-s);
  padding: var(--sp-xl);
}
.ref-type {
  font-size: var(--text-sm);
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--select);
}

@media (max-width: 980px) {
  .pitch-points { grid-template-columns: 1fr; gap: var(--sp-l); }
  .stat-band-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: var(--sp-xl); }
  .ref-grid { grid-template-columns: 1fr; }
}
@media (max-width: 640px) {
  .stat-band-grid { grid-template-columns: 1fr; }
}

/* ============ Kontakt-Seite ============ */
.opt-cards--3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.opt-cards--3 .opt-card {
  position: relative;
  flex-direction: column;
  align-items: flex-start;
  gap: var(--sp-s);
  padding-right: var(--sp-2xl);
}
.opt-cards--3 .opt-check {
  position: absolute;
  top: var(--sp-l);
  right: var(--sp-l);
  margin-left: 0;
}
.opt-card input[type="radio"] {
  position: absolute;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}
.opt-thumb--sm { width: 1.75rem; height: 1.75rem; }
.opt-thumb--sm svg { width: 100%; height: 100%; color: var(--select); }
.opt-cards--3 .opt-hint { white-space: normal; overflow-wrap: anywhere; }
.opt-card:has(input[type="radio"]:checked) {
  border-color: var(--select);
  background: var(--select-bg);
}
.opt-card:has(input[type="radio"]:checked) .opt-name { color: var(--select); }
.opt-card:has(input[type="radio"]:checked) .opt-check {
  background: var(--select);
  border-color: var(--select);
  color: #ffffff;
}
.opt-card:has(input[type="radio"]:focus-visible) {
  outline: 2px solid var(--color-text);
  outline-offset: 2px;
}
.field-row[hidden] { display: none; }

.map-embed {
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-card);
}
.map-embed iframe {
  display: block;
  width: 100%;
  height: 420px;
  border: 0;
}

.cf-split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: var(--sp-2xl);
  align-items: stretch;
}
.cf-left,
.cf-right {
  display: flex;
  flex-direction: column;
  gap: var(--sp-l);
}
.cf-left > .field { flex: 1; }
.opt-cards--fill { flex: 1; grid-auto-rows: 1fr; }

.info-tiles {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: var(--sp-xl);
  margin-top: var(--sp-xl);
}
.info-tile {
  display: flex;
  flex-direction: column;
  gap: var(--sp-s);
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: var(--sp-xl);
}
.info-tile .it-ico {
  width: 2.5rem;
  height: 2.5rem;
  display: grid;
  place-items: center;
  border-radius: var(--radius-md);
  background: var(--select-bg);
  color: var(--select);
  margin-bottom: var(--sp-xs);
}
.info-tile .it-ico svg { width: 1.4rem; height: 1.4rem; }
.info-tile h3 { font-size: var(--text-lg); }

@media (max-width: 820px) {
  .cf-split { grid-template-columns: 1fr; gap: var(--sp-xl); }
  .info-tiles { grid-template-columns: 1fr; }
}
@media (max-width: 640px) {
  .opt-cards--3 { grid-template-columns: 1fr; }
}

/* ============ Lofttüren-Seite: interaktiver Tür-Explorer ============ */
.door-explorer {
  display: grid;
  grid-template-columns: minmax(0, 340px) minmax(0, 1fr);
  gap: var(--sp-3xl);
  align-items: stretch;
}
.door-stage { position: relative; width: 100%; }
.door-svg {
  display: block;
  width: 100%;
  height: auto;
  filter: drop-shadow(0 20px 44px rgba(17, 17, 19, 0.2));
}
.door-hotspot {
  position: absolute;
  transform: translate(-50%, -50%);
  width: 2rem;
  height: 2rem;
  padding: 0;
  border: none;
  background: transparent;
  cursor: pointer;
  z-index: 2;
}
.dh-dot {
  position: relative;
  display: block;
  width: 1.25rem;
  height: 1.25rem;
  margin: auto;
  border-radius: 50%;
  background: var(--select);
  border: 3px solid #ffffff;
  box-shadow: 0 2px 8px rgba(17, 17, 19, 0.4);
}
.dh-dot::before {
  content: "+";
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-size: 0.85rem;
  font-weight: 700;
  line-height: 1;
}
.door-hotspot::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 1.25rem;
  height: 1.25rem;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  border: 2px solid var(--select);
  animation: dhPulse 2.2s ease-out infinite;
}
@keyframes dhPulse {
  0% { transform: translate(-50%, -50%) scale(1); opacity: 0.7; }
  100% { transform: translate(-50%, -50%) scale(2.6); opacity: 0; }
}
.door-hotspot.is-on .dh-dot { transform: scale(1.18); }
.door-hotspot--profil { left: 5%; top: 42%; }
.door-hotspot--farbe { left: 50%; top: 4%; }
.door-hotspot--glas { left: 28%; top: 26%; }
.door-hotspot--sprossen { left: 50%; top: 50%; }
.door-hotspot--griff { left: 88%; top: 50%; }
.door-hotspot--typ { left: 50%; top: 96%; }

/* Rechte Spalte: Tabs + Detail-Panel (wie Konfigurator) */
.door-detail { display: flex; flex-direction: column; gap: var(--sp-l); }
.door-tabs { display: grid; grid-template-columns: repeat(6, minmax(0, 1fr)); gap: var(--sp-s); }
.door-tab {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--sp-s);
  padding: var(--sp-s) var(--sp-m);
  border: 1px solid var(--line);
  border-radius: var(--radius-pill);
  background: var(--surface);
  font-family: var(--font-sans);
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--color-text);
  cursor: pointer;
  transition: border-color 0.15s ease, background 0.15s ease, color 0.15s ease;
}
.door-tab:hover { border-color: var(--color-muted); }
.door-tab.is-on { border-color: var(--select); background: var(--select-bg); color: var(--select); }
.dl-ico { width: 1.1rem; height: 1.1rem; color: var(--select); }
.dl-ico svg { width: 100%; height: 100%; }

.door-panel {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: var(--sp-l);
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
  padding: var(--sp-2xl);
  min-height: 17rem;
}
.door-panel.is-anim { animation: doorPanelIn 0.28s ease; }
@keyframes doorPanelIn {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: none; }
}
.pop-ico { width: 2.75rem; height: 2.75rem; color: var(--select); }
.pop-ico svg { width: 100%; height: 100%; }
.door-panel h3 { font-size: var(--text-xl); }
.door-panel p { color: var(--color-muted); }
.pop-tags { display: flex; flex-wrap: wrap; gap: var(--sp-s); }
.pop-tag {
  font-size: var(--text-sm);
  padding: 0.2rem var(--sp-m);
  border: 1px solid var(--line);
  border-radius: var(--radius-pill);
  background: var(--surface-2);
  color: var(--color-text);
}
/* Produkt-Optionen: feste, einheitlich große quadratische Cards, als Grid je Kategorie */
.pop-icons,
.lt-cat-icons {
  display: grid;
  grid-template-columns: repeat(3, 8.5rem);
  gap: var(--sp-m);
  justify-content: start;
}
/* 4er-Kategorien als 2x2 */
.pop-icons--sprossen, .lt-cat-icons--sprossen,
.pop-icons--typ, .lt-cat-icons--typ {
  grid-template-columns: repeat(2, 8.5rem);
}
.pop-icon {
  width: 8.5rem;
  height: 8.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: var(--sp-m);
  padding: var(--sp-l);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--surface-2);
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--color-text);
  text-align: center;
}
.pop-icon-svg {
  width: 2.6rem;
  height: 4.2rem;
  display: grid;
  place-items: center;
  color: var(--color-text);
}
.pop-icon-svg svg { width: 100%; height: 100%; }
.pop-icon-label { line-height: 1.2; }

/* Detail-Sektionen je Kategorie: jede Zeile EINE Card, Links-rechts-Aufteilung */
.lt-cats { display: flex; flex-direction: column; gap: var(--sp-xl); }
.lt-cat {
  display: flex;
  flex-direction: column;
  gap: var(--sp-l);
  padding: var(--sp-2xl);
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
  scroll-margin-top: calc(var(--sp-3xl) + var(--sp-2xl));
}
.lt-cat-main {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
  gap: var(--sp-2xl);
  align-items: center;
}
.lt-cat-copy { display: flex; flex-direction: column; align-items: flex-start; gap: var(--sp-l); }
.lt-cat-link { align-self: flex-end; }
.lt-cat-ico { width: 2.75rem; height: 2.75rem; color: var(--select); }
.lt-cat-ico svg { width: 100%; height: 100%; }
.lt-cat-copy h3 { font-size: var(--text-2xl); }
@media (max-width: 820px) {
  .door-tabs { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .lt-cat-main { grid-template-columns: 1fr; gap: var(--sp-xl); }
}
@media (max-width: 480px) {
  .door-tabs { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .pop-icons, .lt-cat-icons,
  .pop-icons--sprossen, .lt-cat-icons--sprossen,
  .pop-icons--typ, .lt-cat-icons--typ { grid-template-columns: repeat(2, minmax(0, 8.5rem)); }
  .pop-icon { width: 100%; }
}
.door-panel .btn { margin-top: var(--sp-xs); }

@media (max-width: 820px) {
  .door-explorer { grid-template-columns: 1fr; gap: var(--sp-2xl); }
  .door-stage { max-width: 320px; margin: 0 auto; }
}
@media (prefers-reduced-motion: reduce) {
  .door-hotspot::after { animation: none; }
  .door-panel.is-anim { animation: none; }
}
