/* ============================================================
   Prosperium Home — Design System
   Warm-editorial, architektonisch, Premium. Cremeweiß / Navy / Orange.
   ============================================================ */

/* ---- Fonts ---- */
/* Selbst gehostet: siehe assets/fonts/fonts.css (kein externer Dienst, keine Datenuebertragung an Dritte) */

/* ---- Tokens ---- */
:root {
  --paper:      #F6F0E6;   /* warmes Papier, Seitenhintergrund */
  --paper-2:    #FBF7EF;   /* heller */
  --card:       #FFFFFF;
  --ink:        #15233A;   /* tiefes Tinten-Navy: Headlines/Text */
  --ink-soft:   #36465E;
  --muted:      #6E7682;   /* warmer Grauton */
  --navy:       #1A2C4D;   /* Markennavy */
  --navy-deep:  #101B2E;   /* dunkle Sektionen */
  --orange:     #D9820B;   /* Akzent (aus „Home") */
  --orange-br:  #F0980F;
  --olive:      #9A8C5C;   /* Schwung-Sekundär */
  --line:       rgba(21,35,58,.12);
  --line-soft:  rgba(21,35,58,.07);

  --font-display: 'Fraunces', 'Iowan Old Style', Georgia, serif;
  --font-body:    'Hanken Grotesk', system-ui, -apple-system, sans-serif;

  --wrap: 1180px;
  --radius: 18px;
  --radius-lg: 26px;
  --shadow-sm: 0 2px 10px rgba(21,35,58,.06);
  --shadow:    0 24px 60px rgba(21,35,58,.12);
  --shadow-lg: 0 50px 100px rgba(16,27,46,.22);
  --ease: cubic-bezier(.2,.7,.2,1);
}

/* ---- Reset ---- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; text-rendering: optimizeLegibility; }
body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--paper);
  line-height: 1.6;
  font-size: 17px;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

/* subtile Papier-Textur über der ganzen Seite */
body::before {
  content: ''; position: fixed; inset: 0; z-index: 0; pointer-events: none;
  opacity: .035;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='180' height='180'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='3'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}
.wrap { width: 100%; max-width: var(--wrap); margin: 0 auto; padding: 0 28px; position: relative; z-index: 1; }

/* ============================================================
   Typografie
   ============================================================ */
.display {
  font-family: var(--font-display);
  font-weight: 500;
  line-height: 1.02;
  letter-spacing: -.015em;
  color: var(--ink);
  font-size: clamp(2.6rem, 6vw, 4.6rem);
}
.display em { font-style: italic; font-weight: 400; color: var(--orange); }
h2.section-h {
  font-family: var(--font-display);
  font-weight: 500;
  line-height: 1.06;
  letter-spacing: -.01em;
  font-size: clamp(2rem, 4vw, 3.1rem);
  color: var(--ink);
}
h2.section-h em { font-style: italic; font-weight: 400; color: var(--orange); }
h3 { font-family: var(--font-display); font-weight: 500; font-size: 1.4rem; letter-spacing: -.01em; }

.eyebrow {
  font-family: var(--font-body);
  font-weight: 700; font-size: .74rem; letter-spacing: .22em; text-transform: uppercase;
  color: var(--orange);
  display: inline-flex; align-items: center; gap: 10px;
}
.eyebrow::before { content: ''; width: 26px; height: 1.5px; background: var(--orange); display: inline-block; }
.eyebrow.center::after { content: ''; width: 26px; height: 1.5px; background: var(--orange); display: inline-block; }
.eyebrow.center { justify-content: center; }

.lead { font-size: 1.12rem; color: var(--ink-soft); line-height: 1.7; }
.muted { color: var(--muted); }

/* ============================================================
   Header / Navigation  (LOGO immer klar sichtbar)
   ============================================================ */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(246,240,230,.82);
  backdrop-filter: saturate(140%) blur(14px);
  -webkit-backdrop-filter: saturate(140%) blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color .3s var(--ease), background .3s var(--ease), box-shadow .3s var(--ease);
}
.site-header.scrolled {
  border-bottom-color: var(--line);
  box-shadow: 0 8px 30px rgba(21,35,58,.06);
}
.nav {
  display: flex; align-items: center; justify-content: space-between;
  height: 78px;
}
.brand { display: flex; align-items: center; gap: 0; flex-shrink: 0; }
.brand img { height: 46px; width: auto; display: block; }
.nav-links { display: flex; align-items: center; gap: clamp(18px, 2vw, 30px); }
.nav-links a {
  font-weight: 600; font-size: .94rem; color: var(--ink);
  position: relative; padding: 6px 0; transition: color .2s;
}
.nav-links a::after {
  content: ''; position: absolute; left: 0; bottom: 0; height: 2px; width: 0;
  background: var(--orange); transition: width .25s var(--ease);
}
.nav-links a:hover { color: var(--orange); }
.nav-links a:hover::after, .nav-links a.active::after { width: 100%; }
.nav-links a.active { color: var(--ink); }

.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  font-family: var(--font-body); font-weight: 700; font-size: .95rem;
  padding: 13px 24px; border-radius: 100px; border: 1.5px solid transparent;
  cursor: pointer; transition: transform .2s var(--ease), box-shadow .2s var(--ease), background .2s, color .2s, border-color .2s;
  white-space: nowrap;
}
.btn-primary { background: var(--orange); color: #fff; box-shadow: 0 10px 26px rgba(217,130,11,.30); }
.btn-primary:hover { background: var(--orange-br); transform: translateY(-2px); box-shadow: 0 16px 34px rgba(217,130,11,.40); }
.btn-ink { background: var(--ink); color: var(--paper-2); }
.btn-ink:hover { transform: translateY(-2px); box-shadow: 0 16px 34px rgba(21,35,58,.25); }
.btn-ghost { background: transparent; color: var(--ink); border-color: var(--line); }
.btn-ghost:hover { border-color: var(--ink); transform: translateY(-2px); }
.btn-lg { padding: 16px 30px; font-size: 1rem; }
.btn .arrow { transition: transform .2s var(--ease); }
.btn:hover .arrow { transform: translateX(4px); }

.nav-cta { display: inline-flex; }
.nav-toggle { display: none; background: none; border: 0; cursor: pointer; width: 44px; height: 44px; }
.nav-toggle span { display: block; width: 24px; height: 2px; background: var(--ink); margin: 5px auto; transition: .3s; }

/* ============================================================
   Sektionen / Layout
   ============================================================ */
section { position: relative; }
.section { padding: clamp(72px, 10vw, 130px) 0; }
.section-tight { padding: clamp(48px, 6vw, 80px) 0; }
.section-head { max-width: 640px; }
.section-head.center { max-width: 720px; margin: 0 auto; text-align: center; }
.section-head .eyebrow { margin-bottom: 18px; }
.section-head p { margin-top: 18px; }

.bg-ink { background: var(--navy-deep); color: #E9E2D4; }
.bg-ink .section-h, .bg-ink .display, .bg-ink h3 { color: #F4EEE2; }
.bg-ink .lead, .bg-ink p { color: #B7B2A4; }
.bg-card { background: var(--paper-2); }

/* ============================================================
   Hero — Vollbild-Variante (Lifestyle-Foto + Creme-Karte)
   ============================================================ */
.hero-shot {
  position: relative; overflow: hidden;
  min-height: clamp(540px, 80vh, 800px);
  display: flex; align-items: flex-end;
}
.hero-shot-img {
  position: absolute; inset: 0; z-index: 0;
  width: 100%; height: 100%;
  object-fit: cover; object-position: 62% center;
}
.hero-shot::before {
  content: ''; position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(102deg, rgba(16,27,46,.50) 0%, rgba(16,27,46,.14) 40%, transparent 62%);
}
.hero-shot .wrap { position: relative; z-index: 2; width: 100%; padding-top: 56px; padding-bottom: clamp(44px,6vw,84px); }
.hero-card {
  max-width: 560px;
  background: rgba(247,242,233,.93);
  backdrop-filter: blur(7px) saturate(120%);
  -webkit-backdrop-filter: blur(7px) saturate(120%);
  border: 1px solid rgba(255,255,255,.55);
  border-radius: var(--radius-lg);
  padding: clamp(28px,3vw,46px);
  box-shadow: var(--shadow-lg);
}
.hero-card .hero-actions { margin-top: 28px; }
@media (max-width: 720px) {
  .hero-shot { display: block; min-height: 0; }
  .hero-shot-img { position: relative; height: 60vw; min-height: 230px; }
  .hero-shot::before { display: none; }
  .hero-shot .wrap { padding-top: 26px; }
  .hero-card { max-width: 100%; width: 100%; background: transparent; backdrop-filter: none; -webkit-backdrop-filter: none; border: 0; box-shadow: none; padding: 26px 0 0; }
  .hero-card h1, .hero-card .lead { max-width: 100%; overflow-wrap: break-word; hyphens: auto; }
}

/* ============================================================
   Hero — Split-Variante (Text + Geräte-Mockup)
   ============================================================ */
.hero { padding: clamp(48px,7vw,92px) 0 clamp(60px,8vw,110px); position: relative; }
.hero-grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: 64px; align-items: center; }
.hero h1 { margin: 22px 0 0; }
.hero .lead { margin-top: 26px; max-width: 30em; }
.hero-actions { margin-top: 38px; display: flex; gap: 16px; flex-wrap: wrap; }
.hero-assure { margin-top: 30px; display: flex; gap: 22px; flex-wrap: wrap; }
.hero-assure span { display: inline-flex; align-items: center; gap: 9px; font-size: .9rem; font-weight: 600; color: var(--ink-soft); }
.hero-assure svg { color: var(--orange); flex-shrink: 0; }

/* dekorativer Schwung (Logo-Motiv) hinter Hero-Bild */
.hero-visual { position: relative; }
.hero-visual::before {
  content: ''; position: absolute; inset: -8% -12% -8% 6%;
  background: radial-gradient(120% 90% at 70% 30%, rgba(217,130,11,.16), transparent 60%),
              radial-gradient(100% 80% at 30% 80%, rgba(26,44,77,.12), transparent 62%);
  filter: blur(8px); z-index: 0; border-radius: 40% 60% 55% 45%;
}

/* ============================================================
   Geräte-Mockups
   ============================================================ */
.device-phone {
  position: relative; z-index: 1; margin: 0 auto;
  width: min(310px, 78%); padding: 13px;
  background: linear-gradient(155deg, #2b2f3c, #161a24);
  border-radius: 44px;
  border: 1px solid rgba(255,255,255,.12);
  box-shadow:
    0 44px 90px rgba(16,27,46,.45),
    0 12px 30px rgba(16,27,46,.30),
    0 0 80px 6px rgba(217,130,11,.15),
    inset 0 1px 0 rgba(255,255,255,.14),
    inset 0 0 0 1px rgba(217,130,11,.04);
}
.device-phone::after { /* Kamera-Pille */
  content: ''; position: absolute; top: 24px; left: 50%; transform: translateX(-50%);
  width: 64px; height: 7px; border-radius: 10px; background: rgba(0,0,0,.55); z-index: 3;
}
.device-phone::before { /* Glas-Reflexion */
  content: ''; position: absolute; inset: 13px; border-radius: 32px; z-index: 2; pointer-events: none;
  background: linear-gradient(125deg, rgba(255,255,255,.13) 0%, rgba(255,255,255,.03) 16%, transparent 36%);
}
.device-phone img { position: relative; z-index: 1; width: 100%; border-radius: 32px; }

.device-tablet {
  position: relative; width: 100%; padding: 14px;
  background: linear-gradient(155deg, #2b2f3c, #161a24);
  border-radius: 22px;
  border: 1px solid rgba(255,255,255,.12);
  box-shadow:
    0 40px 84px rgba(16,27,46,.42),
    0 12px 28px rgba(16,27,46,.28),
    0 0 72px 6px rgba(217,130,11,.13),
    inset 0 1px 0 rgba(255,255,255,.14),
    inset 0 0 0 1px rgba(217,130,11,.04);
}

/* ============================================================
   Kundendemo
   Oeffentliche Live-Demo unter /kundendemo.html
   ============================================================ */
.customer-demo-page {
  background: #09111c;
  color: #eef3fb;
  min-height: 100vh;
}
.customer-demo-page::before {
  opacity: .02;
}
.customer-demo-shell {
  min-height: 100vh;
  background:
    radial-gradient(900px 520px at 82% 18%, rgba(255,204,88,.13), transparent 62%),
    radial-gradient(700px 460px at 18% 82%, rgba(74,158,255,.10), transparent 62%),
    #09111c;
}
.customer-demo-hero {
  width: min(1580px, 100%);
  min-height: 100vh;
  margin: 0 auto;
  padding: clamp(22px, 3vw, 44px);
  display: grid;
  grid-template-columns: minmax(300px, 380px) minmax(0, 1fr);
  gap: clamp(24px, 4vw, 56px);
  align-items: center;
}
.customer-demo-copy {
  position: relative;
  z-index: 2;
}
.customer-demo-brand {
  display: inline-flex;
  margin-bottom: clamp(36px, 8vh, 78px);
}
.customer-demo-brand img {
  width: 236px;
  height: auto;
}
.demo-pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #ffcc58;
  font-size: .76rem;
  font-weight: 800;
  letter-spacing: .18em;
  text-transform: uppercase;
}
.demo-pill span {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #74d46f;
  box-shadow: 0 0 18px rgba(116,212,111,.9);
}
.customer-demo-copy h1 {
  max-width: 9.5em;
  margin-top: 20px;
  font-family: var(--font-display);
  font-size: clamp(2.7rem, 5.5vw, 5.2rem);
  font-weight: 500;
  line-height: .98;
  letter-spacing: 0;
  color: #f7efe2;
}
.customer-demo-copy p {
  max-width: 34em;
  margin-top: 24px;
  color: #aebbd0;
  font-size: 1.08rem;
  line-height: 1.7;
}
.customer-demo-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
}
.customer-demo-actions button,
.demo-device {
  font: inherit;
  cursor: pointer;
}
.customer-demo-actions button {
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 999px;
  background: rgba(255,255,255,.07);
  color: #eef3fb;
  padding: 12px 17px;
  font-size: .93rem;
  font-weight: 800;
  transition: transform .2s var(--ease), border-color .2s, background .2s;
}
.customer-demo-actions button:hover {
  transform: translateY(-2px);
  border-color: rgba(255,204,88,.55);
  background: rgba(255,204,88,.12);
}
.demo-status {
  min-height: 1.5em;
  font-size: .92rem !important;
  color: #7788a5 !important;
}
.demo-online .demo-status::before {
  content: "Demo läuft. ";
  color: #74d46f;
}
.demo-error .demo-status {
  color: #ff7a50 !important;
}
.customer-demo-stage {
  display: grid;
  grid-template-columns: minmax(300px, 370px) minmax(500px, 1fr);
  gap: clamp(20px, 2.8vw, 34px);
  align-items: center;
}
.demo-tablet {
  position: relative;
  min-height: min(760px, 82vh);
  padding: 15px;
  border-radius: 35px;
  background: linear-gradient(145deg, #303747, #121722 62%);
  border: 1px solid rgba(255,255,255,.14);
  box-shadow:
    0 44px 100px rgba(0,0,0,.42),
    inset 0 1px 0 rgba(255,255,255,.12);
}
.demo-tablet::before {
  content: "";
  position: absolute;
  inset: 15px;
  z-index: 2;
  pointer-events: none;
  border-radius: 24px;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.06);
}
.demo-tablet-bar {
  position: absolute;
  top: 25px;
  left: 50%;
  z-index: 4;
  width: 78px;
  height: 7px;
  transform: translateX(-50%);
  border-radius: 99px;
  background: rgba(0,0,0,.58);
}
.demo-tablet iframe {
  position: relative;
  z-index: 1;
  width: 100%;
  height: calc(min(760px, 82vh) - 30px);
  min-height: 640px;
  border: 0;
  border-radius: 24px;
  background: #09111c;
}
.demo-home-panel {
  padding: clamp(16px, 2vw, 24px);
  border-radius: 28px;
  background: rgba(13, 24, 39, .78);
  border: 1px solid rgba(255,255,255,.09);
  box-shadow: 0 38px 90px rgba(0,0,0,.34), inset 0 1px 0 rgba(255,255,255,.06);
  backdrop-filter: blur(18px) saturate(140%);
  -webkit-backdrop-filter: blur(18px) saturate(140%);
}
.demo-home-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 18px;
}
.demo-home-head span {
  display: block;
  color: #7788a5;
  font-size: .76rem;
  font-weight: 800;
  letter-spacing: .16em;
  text-transform: uppercase;
}
.demo-home-head strong {
  display: block;
  margin-top: 2px;
  color: #f7efe2;
  font-size: 1rem;
}
.demo-home-head strong span {
  display: inline;
  color: inherit;
  font-size: inherit;
  font-weight: inherit;
  letter-spacing: 0;
  text-transform: none;
}
.demo-home-head i {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #74d46f;
  box-shadow: 0 0 22px rgba(116,212,111,.9);
}
.demo-floorplan {
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  grid-template-rows: minmax(260px, 1.05fr) minmax(230px, .95fr);
  gap: 12px;
  min-height: min(680px, 76vh);
}
.demo-room {
  position: relative;
  overflow: hidden;
  border-radius: 20px;
  padding: 18px;
  background:
    linear-gradient(135deg, rgba(255,240,212,.08), rgba(255,255,255,.018)),
    #111d2d;
  border: 1px solid rgba(255,255,255,.08);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.05), inset 0 -32px 70px rgba(0,0,0,.12);
}
.demo-room::after {
  content: "";
  position: absolute;
  inset: 12px;
  border-radius: 15px;
  border: 1px solid rgba(255,255,255,.045);
  pointer-events: none;
}
.room-glow {
  position: absolute;
  inset: -20%;
  opacity: 0;
  background:
    radial-gradient(circle at 46% 46%, rgba(255,204,88,.46), transparent 50%),
    radial-gradient(circle at 72% 78%, rgba(255,122,80,.14), transparent 42%);
  filter: blur(6px);
  transition: opacity .45s var(--ease);
}
.heat-haze {
  position: absolute;
  left: 8%;
  right: 8%;
  bottom: 0;
  height: 48%;
  opacity: 0;
  pointer-events: none;
  background:
    radial-gradient(ellipse at 50% 100%, rgba(255,122,80,.22), transparent 58%),
    repeating-linear-gradient(90deg, transparent 0 18px, rgba(255,204,88,.08) 18px 22px, transparent 22px 42px);
  filter: blur(8px);
  animation: demoHeatAir 2.4s ease-in-out infinite;
  transition: opacity .35s var(--ease);
}
.demo-room.is-heating .heat-haze {
  opacity: 1;
}
.demo-room.is-lit .room-glow {
  opacity: 1;
}
.demo-room.has-open-window {
  border-color: rgba(255,173,80,.42);
}
.demo-room.has-open-window::before {
  content: "";
  position: absolute;
  top: 14px;
  right: 14px;
  width: 22px;
  height: 22px;
  border-radius: 8px;
  background: rgba(255,173,80,.18);
  border: 1px solid rgba(255,173,80,.5);
  box-shadow: 0 0 24px rgba(255,173,80,.35);
}
.demo-room header {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: baseline;
}
.demo-room header span {
  color: #f7efe2;
  font-family: var(--font-display);
  font-size: clamp(1.15rem, 1.6vw, 1.45rem);
}
.demo-room header b {
  color: #9fb0c8;
  font-size: .86rem;
}
.room-state {
  position: relative;
  z-index: 2;
  margin-top: 2px;
  color: #a8b4c7;
  font-size: .75rem;
  line-height: 1.25;
  font-weight: 750;
}
.demo-room.is-heating .room-state {
  color: #ffdca0;
}
.demo-room.has-open-window .room-state {
  color: #ffbd79;
}
.demo-room-living {
  grid-column: 1;
  grid-row: 1;
}
.demo-room-kitchen {
  grid-column: 2;
  grid-row: 1;
}
.demo-room-bedroom {
  grid-column: 1;
  grid-row: 2;
}
.demo-room-hall {
  grid-column: 2;
  grid-row: 2;
}
.demo-device {
  position: absolute;
  z-index: 4;
  width: 72px;
  min-height: 62px;
  border: 1px solid rgba(255,255,255,.09);
  border-radius: 16px;
  background: rgba(5,10,18,.56);
  color: #91a0b8;
  display: grid;
  justify-items: center;
  gap: 4px;
  padding: 9px 7px 7px;
  transition: transform .2s var(--ease), border-color .2s, background .2s, box-shadow .2s;
}
.demo-device:hover {
  transform: translateY(-2px);
  border-color: rgba(255,204,88,.36);
}
.demo-device span {
  position: relative;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: #556176;
  transition: background .2s, box-shadow .2s, transform .2s;
}
.demo-device small {
  max-width: 100%;
  color: currentColor;
  font-size: .7rem;
  font-weight: 800;
  line-height: 1.1;
  white-space: normal;
}
.demo-device.is-active {
  color: #ffe1a1;
  background: rgba(255,204,88,.12);
  border-color: rgba(255,204,88,.4);
  box-shadow: 0 0 32px rgba(255,204,88,.16);
}
.demo-light.is-active span {
  background: #ffcc58;
  box-shadow: 0 0 28px rgba(255,204,88,.95);
}
.demo-dimmer.is-active span {
  opacity: calc(var(--level, 70%) / 100%);
}
.demo-cover span {
  width: 30px;
  height: 28px;
  border-radius: 7px;
  overflow: hidden;
  background: #243147;
}
.demo-cover span::after {
  content: "";
  position: absolute;
  inset: 0;
  transform: translateY(calc(var(--cover, 30%) - 100%));
  background: linear-gradient(#aeb9c8, #68758a);
  transition: transform .45s var(--ease);
}
.demo-cover.is-active span {
  box-shadow: 0 0 0 2px rgba(117,191,255,.12);
}
.demo-window span {
  border-radius: 8px;
  background: linear-gradient(135deg, #7edb78, #315b56);
}
.demo-window.is-active span {
  background: #ffad50;
  box-shadow: 0 0 22px rgba(255,122,80,.65);
}
.demo-heat span {
  background: linear-gradient(#ffcc58, #ff7a50);
}
.demo-heat.is-active span {
  animation: demoHeat 1.6s ease-in-out infinite;
}
.demo-motion span {
  background: #4a9eff;
}
.demo-motion.is-active span {
  animation: demoPulse 1.1s ease-in-out infinite;
}
.demo-room-living .demo-light { left: 17%; top: 38%; }
.demo-room-living .demo-dimmer { left: 42%; top: 38%; }
.demo-room-living .demo-cover { right: 12%; top: 38%; }
.demo-room-living .demo-motion { left: 24%; bottom: 34%; }
.demo-room-kitchen .demo-light { left: 18%; top: 40%; }
.demo-room-kitchen .demo-window { right: 16%; top: 40%; }
.demo-room-kitchen .demo-heat { left: 38%; bottom: 32%; }
.demo-room-bedroom .demo-light { left: 18%; top: 40%; }
.demo-room-bedroom .demo-cover { right: 16%; top: 40%; }
.demo-room-bedroom .demo-heat { left: 42%; bottom: 32%; }
.demo-room-hall .demo-light { left: 18%; top: 42%; }
.demo-room-hall .demo-motion { right: 18%; top: 42%; }
.demo-room-controls {
  position: absolute;
  z-index: 5;
  left: 18px;
  right: 18px;
  bottom: 16px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 10px;
  align-items: center;
}
.demo-room-living .demo-room-controls,
.demo-room-kitchen .demo-room-controls {
  bottom: 14px;
}
.demo-room-controls label {
  min-width: 0;
  color: #d8e0ec;
  font-size: .72rem;
  font-weight: 850;
}
.demo-room-controls output {
  color: #ffcc58;
  margin-left: 5px;
  font-variant-numeric: tabular-nums;
}
.demo-room-controls input[type="range"] {
  display: block;
  width: 100%;
  margin-top: 7px;
  accent-color: #ffcc58;
}
.demo-room-controls button,
.temp-stepper {
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 14px;
  background: rgba(5,10,18,.5);
  color: #eef3fb;
  font: inherit;
  font-size: .72rem;
  font-weight: 850;
}
.demo-room-controls > button {
  min-height: 42px;
  padding: 8px 10px;
}
.demo-room-controls > button span {
  display: block;
  margin-top: 2px;
  color: #ffcc58;
}
.temp-stepper {
  display: inline-flex;
  overflow: hidden;
  align-items: center;
}
.temp-stepper button {
  width: 34px;
  height: 40px;
  border: 0;
  background: transparent;
  color: #ffcc58;
  font-size: 1.1rem;
  font-weight: 900;
}
.temp-stepper span {
  min-width: 52px;
  text-align: center;
  color: #f6efe3;
  font-size: .78rem;
  font-weight: 900;
  font-variant-numeric: tabular-nums;
}
@keyframes demoPulse {
  0%, 100% { transform: scale(1); box-shadow: 0 0 16px rgba(74,158,255,.55); }
  50% { transform: scale(1.16); box-shadow: 0 0 34px rgba(74,158,255,.9); }
}
@keyframes demoHeat {
  0%, 100% { box-shadow: 0 0 18px rgba(255,122,80,.45); }
  50% { box-shadow: 0 0 36px rgba(255,122,80,.85); }
}
@keyframes demoHeatAir {
  0%, 100% { transform: translateY(3px) skewX(-2deg); }
  50% { transform: translateY(-4px) skewX(2deg); }
}
@media (max-width: 1180px) {
  .customer-demo-hero {
    grid-template-columns: 1fr;
    align-items: start;
  }
  .customer-demo-brand {
    margin-bottom: 28px;
  }
  .customer-demo-copy h1 {
    max-width: 12em;
  }
}
@media (max-width: 860px) {
  .customer-demo-stage {
    grid-template-columns: 1fr;
  }
  .demo-floorplan {
    min-height: 680px;
  }
}
@media (max-width: 620px) {
  .customer-demo-hero {
    padding: 18px;
  }
  .customer-demo-brand img {
    width: 190px;
  }
  .demo-tablet {
    height: 660px;
    min-height: 0;
    border-radius: 26px;
    overflow: hidden;
  }
  .demo-tablet iframe {
    width: 430px;
    min-height: 820px;
    height: 820px;
    border-radius: 18px;
    transform: scale(calc((100vw - 66px) / 430));
    transform-origin: top left;
  }
  .demo-floorplan {
    grid-template-columns: 1fr;
    grid-template-rows: repeat(4, minmax(220px, auto));
    min-height: 0;
  }
  .demo-room-living,
  .demo-room-kitchen,
  .demo-room-bedroom,
  .demo-room-hall {
    grid-column: 1;
    grid-row: auto;
  }
  .demo-device {
    width: 74px;
  }
  .demo-room-controls {
    grid-template-columns: 1fr;
  }
  .temp-stepper {
    justify-self: start;
  }
}

.customer-demo-page {
  background: #0a1019;
}
.customer-demo-shell {
  background:
    radial-gradient(1100px 620px at 72% 8%, rgba(255,205,129,.16), transparent 62%),
    radial-gradient(880px 600px at 18% 88%, rgba(94,150,189,.12), transparent 64%),
    linear-gradient(145deg, #0a1019 0%, #101624 48%, #17120d 100%);
}
.customer-demo-hero {
  width: min(1720px, 100%);
  grid-template-columns: minmax(310px, 420px) minmax(0, 1fr);
  gap: clamp(24px, 3.2vw, 50px);
}
.customer-demo-copy h1 {
  max-width: 10.4em;
  color: #fff1df;
}
.customer-demo-stage {
  grid-template-columns: minmax(340px, 470px) minmax(560px, 1fr);
  align-items: center;
}
.demo-device-preview {
  display: grid;
  justify-items: center;
  gap: 16px;
}
.demo-mode-switch {
  display: inline-flex;
  gap: 6px;
  padding: 5px;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 999px;
  background: rgba(255,255,255,.07);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.08);
}
.demo-mode-switch button {
  min-width: 92px;
  border: 0;
  border-radius: 999px;
  padding: 10px 14px;
  background: transparent;
  color: #aebbd0;
  font: inherit;
  font-size: .82rem;
  font-weight: 850;
  white-space: nowrap;
  cursor: pointer;
}
.demo-mode-switch button.is-active {
  color: #24180d;
  background: #ffcc8a;
  box-shadow: 0 8px 24px rgba(255,166,84,.24);
}
.demo-device-frame {
  position: relative;
  overflow: hidden;
  width: min(100%, 448px);
  height: min(760px, 78vh);
  min-height: 650px;
  padding: 16px;
  border-radius: 36px;
  background:
    linear-gradient(140deg, rgba(255,255,255,.18), transparent 18%),
    linear-gradient(145deg, #3b4351, #111722 60%, #080b10);
  border: 1px solid rgba(255,255,255,.16);
  box-shadow:
    0 46px 110px rgba(0,0,0,.45),
    0 12px 34px rgba(255,170,88,.08),
    inset 0 1px 0 rgba(255,255,255,.16);
  transition: width .32s var(--ease), height .32s var(--ease), border-radius .32s var(--ease), padding .32s var(--ease);
}
.demo-device-preview.is-phone .demo-device-frame {
  width: min(100%, 430px);
  height: min(934px, 80vh);
  min-height: 720px;
  padding: 13px;
  border-radius: 46px;
}
.demo-device-frame::before {
  content: "";
  position: absolute;
  inset: 16px;
  z-index: 2;
  pointer-events: none;
  border-radius: 24px;
  box-shadow:
    inset 0 0 0 1px rgba(255,255,255,.06),
    inset 0 0 35px rgba(255,255,255,.03);
}
.demo-device-preview.is-phone .demo-device-frame::before {
  inset: 13px;
  border-radius: 31px;
}
.demo-device-sensor {
  position: absolute;
  top: 26px;
  left: 50%;
  z-index: 4;
  width: 82px;
  height: 8px;
  transform: translateX(-50%);
  border-radius: 99px;
  background: rgba(0,0,0,.64);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.08);
}
.demo-device-preview.is-phone .demo-device-sensor {
  top: 22px;
  width: 74px;
  height: 22px;
}
.demo-device-frame iframe {
  position: relative;
  z-index: 1;
  border: 0;
  border-radius: 24px;
  background: #09111c;
  max-width: none;
}
.demo-device-preview.is-phone iframe {
  border-radius: 31px;
}
.demo-home-3d {
  min-height: min(820px, 82vh);
  padding: clamp(15px, 1.7vw, 22px);
  border-radius: 30px;
  background:
    linear-gradient(145deg, rgba(255,239,219,.11), rgba(255,255,255,.025)),
    rgba(11, 17, 27, .86);
  border: 1px solid rgba(255,255,255,.11);
  box-shadow:
    0 42px 110px rgba(0,0,0,.38),
    inset 0 1px 0 rgba(255,255,255,.08);
}
.demo-apartment-viewport {
  position: relative;
  overflow: hidden;
  height: min(720px, 72vh);
  min-height: 620px;
  border-radius: 24px;
  background:
    radial-gradient(circle at 32% 24%, rgba(255,212,144,.12), transparent 28%),
    linear-gradient(160deg, #182133 0%, #111827 48%, #221811 100%);
  box-shadow:
    inset 0 0 0 1px rgba(255,255,255,.06),
    inset 0 -80px 130px rgba(0,0,0,.28);
}
.demo-apartment-viewport canvas {
  display: block;
  width: 100%;
  height: 100%;
}
.demo-room-labels {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.demo-room-labels span {
  position: absolute;
  max-width: 190px;
  padding: 8px 10px;
  border-radius: 12px;
  background: rgba(9,17,28,.58);
  border: 1px solid rgba(255,255,255,.1);
  color: #fff1df;
  font-size: .76rem;
  font-weight: 850;
  line-height: 1.25;
  box-shadow: 0 12px 24px rgba(0,0,0,.22);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}
.demo-room-labels .living,
.demo-room-labels .kitchen,
.demo-room-labels .bedroom,
.demo-room-labels .hall {
  left: 50%;
  top: 50%;
}
@media (max-width: 1180px) {
  .customer-demo-hero {
    grid-template-columns: 1fr;
  }
  .customer-demo-stage {
    grid-template-columns: minmax(330px, 450px) minmax(520px, 1fr);
  }
}
@media (max-width: 980px) {
  .customer-demo-stage {
    grid-template-columns: 1fr;
  }
  .demo-device-frame {
    width: min(100%, 520px);
  }
  .demo-apartment-viewport {
    height: 620px;
    min-height: 560px;
  }
}
@media (max-width: 620px) {
  .customer-demo-copy h1 {
    font-size: clamp(2.35rem, 12vw, 3.3rem);
  }
  .demo-device-frame,
  .demo-device-preview.is-phone .demo-device-frame {
    width: min(100%, 342px);
    height: 660px;
    min-height: 0;
  }
  .demo-device-preview.is-tablet .demo-device-frame {
    width: min(100%, 430px);
    height: 650px;
  }
  .demo-home-3d {
    min-height: 0;
  }
  .demo-apartment-viewport {
    height: 500px;
    min-height: 0;
  }
  .demo-room-labels span {
    max-width: 150px;
    font-size: .68rem;
  }
}

/* Kundendemo Layout-Upgrade: Intro oben, darunter zwei klare Spalten. */
.customer-demo-hero {
  min-height: 100vh;
  align-items: start;
  grid-template-columns: minmax(0, 1fr);
  grid-template-rows: auto minmax(0, 1fr);
  gap: clamp(20px, 3vh, 34px);
}
.customer-demo-copy {
  display: grid;
  grid-template-columns: auto 1fr;
  grid-template-areas:
    "brand pill"
    "headline headline"
    "copy status";
  gap: 12px clamp(24px, 4vw, 64px);
  align-items: end;
  width: min(1480px, 100%);
  margin: 0 auto;
}
.customer-demo-brand {
  grid-area: brand;
  margin: 0;
}
.demo-pill {
  grid-area: pill;
  align-self: center;
}
.customer-demo-copy h1 {
  grid-area: headline;
  max-width: none;
  margin-top: 18px;
  font-size: clamp(3.2rem, 6vw, 6.6rem);
}
.customer-demo-copy p {
  grid-area: copy;
  max-width: 58em;
  margin-top: 0;
}
.customer-demo-copy .demo-status {
  grid-area: status;
  justify-self: end;
  align-self: center;
  max-width: 26em;
  text-align: right;
}
.customer-demo-stage {
  width: min(1720px, 100%);
  margin: 0 auto;
  grid-template-columns: minmax(760px, 1.16fr) minmax(540px, .84fr);
  align-items: stretch;
}
.demo-device-preview {
  align-content: start;
}
.demo-device-preview.is-landscape .demo-device-frame {
  width: min(100%, 1080px);
  height: min(620px, 66vh);
  min-height: 520px;
  padding: 14px 18px;
  border-radius: 30px;
}
.demo-device-preview.is-landscape .demo-device-frame::before {
  inset: 14px 18px;
  border-radius: 24px;
}
.demo-device-preview.is-landscape .demo-device-sensor {
  top: 50%;
  left: 28px;
  width: 8px;
  height: 72px;
  transform: translateY(-50%);
}
.demo-device-preview.is-landscape iframe {
  border-radius: 24px;
}
.demo-device-frame iframe {
  scrollbar-width: none;
}
.demo-home-3d,
.demo-device-frame {
  height: min(800px, 74vh);
  min-height: 620px;
}
.demo-apartment-viewport {
  height: calc(min(800px, 74vh) - 112px);
  min-height: 505px;
}
.demo-panel-tools {
  display: grid;
  gap: 10px;
  margin: 0 0 14px;
}
.demo-tool-group {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
}
.demo-tool-group span {
  min-width: 88px;
  color: #91a2bd;
  font-size: .72rem;
  font-weight: 900;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.demo-view-hint strong {
  color: #dbe6f4;
  font-size: .82rem;
  font-weight: 850;
}
.demo-tool-group button {
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 999px;
  background: rgba(255,255,255,.055);
  color: #dbe6f4;
  padding: 8px 11px;
  font: inherit;
  font-size: .74rem;
  font-weight: 850;
  cursor: pointer;
  transition: transform .2s var(--ease), background .2s, border-color .2s;
}
.demo-tool-group button:hover {
  transform: translateY(-1px);
  border-color: rgba(255,204,138,.45);
  background: rgba(255,204,138,.12);
}
.demo-tool-group button.is-active {
  color: #24180d;
  background: #ffcc8a;
  border-color: #ffcc8a;
}
.demo-tool-group button.is-busy {
  opacity: .65;
}
.customer-demo-cta {
  width: min(1480px, 100%);
  margin: clamp(18px, 3vh, 34px) auto 0;
  padding: clamp(24px, 3.6vw, 44px);
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: clamp(22px, 4vw, 56px);
  align-items: center;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 28px;
  background:
    radial-gradient(620px 260px at 88% 28%, rgba(255,204,138,.17), transparent 66%),
    linear-gradient(135deg, rgba(255,244,225,.11), rgba(255,255,255,.035));
  box-shadow:
    0 28px 80px rgba(0,0,0,.28),
    inset 0 1px 0 rgba(255,255,255,.08);
}
.customer-demo-cta .eyebrow {
  color: #ffcc8a;
}
.customer-demo-cta h2 {
  max-width: 16em;
  margin-top: 12px;
  color: #fff1df;
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(2rem, 3.2vw, 3.35rem);
  line-height: 1.04;
}
.customer-demo-cta p {
  max-width: 58em;
  margin-top: 14px;
  color: #aebbd0;
  line-height: 1.65;
}
.customer-demo-cta-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 12px;
}
.customer-demo-page .customer-demo-cta .btn-ghost {
  color: #fff1df;
  border-color: rgba(255,255,255,.22);
  background: rgba(255,255,255,.045);
}
.customer-demo-page .customer-demo-cta .btn-ghost:hover {
  border-color: rgba(255,204,138,.64);
}
@media (min-width: 1320px) {
  .demo-device-preview.is-tablet .demo-device-frame {
    width: min(100%, 610px);
  }
}
@media (max-width: 1180px) {
  .customer-demo-copy {
    grid-template-columns: 1fr;
    grid-template-areas:
      "brand"
      "pill"
      "headline"
      "copy"
      "status";
  }
  .customer-demo-copy .demo-status {
    justify-self: start;
    text-align: left;
  }
  .customer-demo-stage {
    grid-template-columns: 1fr;
  }
  .customer-demo-cta {
    grid-template-columns: 1fr;
  }
  .customer-demo-cta-actions {
    justify-content: flex-start;
  }
  .demo-device-frame {
    justify-self: center;
  }
}
@media (max-width: 760px) {
  .customer-demo-copy h1 {
    font-size: clamp(2.4rem, 12vw, 4rem);
  }
  .demo-tool-group span {
    width: 100%;
  }
  .demo-device-preview.is-landscape .demo-device-frame,
  .demo-device-preview.is-tablet .demo-device-frame {
    width: min(100%, 430px);
    height: 650px;
  }
  .customer-demo-cta-actions .btn {
    width: 100%;
    justify-content: center;
  }
}
.device-tablet::after { /* Glas-Reflexion */
  content: ''; position: absolute; inset: 14px; border-radius: 11px; z-index: 2; pointer-events: none;
  background: linear-gradient(120deg, rgba(255,255,255,.10) 0%, rgba(255,255,255,.02) 22%, transparent 42%);
}
.device-tablet img { position: relative; z-index: 1; width: 100%; border-radius: 11px; }

/* dezente Floating-Fakten am Hero-Gerät (sparsam, kein SaaS-Look) */
.float-card {
  position: absolute; z-index: 4;
  display: flex; align-items: center; gap: 11px;
  background: rgba(247,242,233,.95);
  backdrop-filter: blur(8px) saturate(120%);
  -webkit-backdrop-filter: blur(8px) saturate(120%);
  border: 1px solid rgba(255,255,255,.6);
  border-radius: 14px; padding: 11px 15px;
  box-shadow: 0 18px 44px rgba(16,27,46,.20);
  font-size: .84rem; font-weight: 700; color: var(--ink); white-space: nowrap;
}
.float-card .fc-ic { width: 30px; height: 30px; border-radius: 9px; background: rgba(217,130,11,.12); color: var(--orange); display: grid; place-items: center; flex-shrink: 0; }
.float-card small { display: block; font-weight: 500; color: var(--muted); font-size: .72rem; letter-spacing: .01em; }
@media (max-width: 720px) { .float-card { display: none; } }

.shot-caption { text-align: center; font-size: .8rem; color: var(--muted); margin-top: 16px; letter-spacing: .02em; }

/* gerahmter Screenshot (Galerie) */
.frame {
  border-radius: 16px; overflow: hidden; background: var(--navy-deep);
  border: 1px solid var(--line); box-shadow: var(--shadow);
}
.frame img { width: 100%; }

/* ============================================================
   Trust-Streifen
   ============================================================ */
.trust {
  border-top: 1px solid var(--line); border-bottom: 1px solid var(--line);
  background: var(--paper-2);
}
.trust-row { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 28px; padding: 30px 0; }
.trust-item { display: flex; align-items: center; gap: 13px; }
.trust-item svg { color: var(--orange); flex-shrink: 0; }
.trust-item b { font-weight: 700; font-size: .98rem; color: var(--ink); }
.trust-item span { display: block; font-size: .8rem; color: var(--muted); }

/* ============================================================
   Karten / Raster
   ============================================================ */
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 30px; }

.pillar {
  background: var(--card); border: 1px solid var(--line-soft);
  border-radius: var(--radius); padding: 36px 32px; box-shadow: var(--shadow-sm);
  transition: transform .3s var(--ease), box-shadow .3s var(--ease);
}
.pillar:hover { transform: translateY(-5px); box-shadow: var(--shadow); }
.pillar .num { font-family: var(--font-display); font-style: italic; color: var(--olive); font-size: 1.1rem; }
.pillar .ic { width: 52px; height: 52px; border-radius: 14px; display: grid; place-items: center;
  background: rgba(217,130,11,.10); color: var(--orange); margin-bottom: 22px; }
.pillar h3 { margin-bottom: 10px; }
.pillar p { color: var(--ink-soft); font-size: .96rem; }
/* Variante: Symbol und Ueberschrift in einer Zeile, Text darunter */
.pillar-inline { display: grid; grid-template-columns: auto 1fr; align-items: center; column-gap: 18px; }
.pillar-inline .ic { margin-bottom: 0; }
.pillar-inline h3 { margin-bottom: 0; }
.pillar-inline p { grid-column: 1 / -1; margin-top: 16px; }

/* Editorial Split (Bild + Text, abwechselnd) */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 70px; align-items: center; }
.split.reverse .split-media { order: 2; }
.split-media { position: relative; }
.split-copy h2 { margin-bottom: 18px; }
.split-copy .lead { margin-bottom: 22px; }
.feature-list { display: flex; flex-direction: column; gap: 14px; margin-top: 8px; }
.feature-list li { display: flex; gap: 13px; align-items: flex-start; font-size: 1rem; color: var(--ink-soft); }
.feature-list svg { color: var(--orange); flex-shrink: 0; margin-top: 3px; }

/* Schritt-Karten */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0; border: 1px solid var(--line); border-radius: var(--radius-lg); overflow: hidden; background: var(--card); }
.step { padding: 44px 36px; border-right: 1px solid var(--line); position: relative;
  display: grid; grid-template-columns: auto 1fr; align-items: center; column-gap: 18px; row-gap: 14px; }
.step:last-child { border-right: 0; }
.step .step-n { font-family: var(--font-display); font-size: 2.7rem; font-weight: 500; color: var(--paper); -webkit-text-stroke: 1.5px var(--olive); line-height: 1; }
.step h3 { margin-bottom: 0; }
.step p { color: var(--ink-soft); font-size: .95rem; grid-column: 1 / -1; }

/* ============================================================
   Pricing
   ============================================================ */
.price-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; align-items: stretch; }
.price-card {
  background: var(--card); border: 1px solid var(--line); border-radius: var(--radius-lg);
  padding: 38px 32px; display: flex; flex-direction: column; box-shadow: var(--shadow-sm);
  transition: transform .3s var(--ease), box-shadow .3s var(--ease);
}
.price-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.price-card.featured { background: var(--navy-deep); color: #E9E2D4; border-color: var(--navy-deep); transform: scale(1.02); }
.price-card.featured:hover { transform: scale(1.02) translateY(-6px); }
.price-card.featured h3, .price-card.featured .price-amt { color: #F4EEE2; }
.price-badge { align-self: flex-start; background: var(--orange); color: #fff; font-weight: 700; font-size: .72rem; letter-spacing: .12em; text-transform: uppercase; padding: 6px 13px; border-radius: 100px; margin-bottom: 18px; }
.price-name { font-family: var(--font-display); font-size: 1.5rem; font-weight: 500; }
.price-tag { color: var(--muted); font-size: .9rem; margin-top: 4px; }
.price-card.featured .price-tag { color: #9DA7B5; }
.price-amt { font-family: var(--font-display); font-size: 2.6rem; font-weight: 500; margin: 22px 0 2px; letter-spacing: -.01em; }
.price-amt span { font-size: 1.1rem; color: var(--muted); }
.price-sub { font-size: .8rem; color: var(--muted); }
.price-card.featured .price-sub { color: #9DA7B5; }
.price-hr { height: 1px; background: var(--line); margin: 26px 0; }
.price-card.featured .price-hr { background: rgba(255,255,255,.12); }
.price-feats { display: flex; flex-direction: column; gap: 13px; flex-grow: 1; margin-bottom: 28px; }
.price-feats li { display: flex; gap: 11px; align-items: flex-start; font-size: .92rem; }
.price-feats svg { color: var(--orange); flex-shrink: 0; margin-top: 3px; }
.price-feats li.off { opacity: .4; }
.price-feats li.off svg { color: var(--muted); }

/* ============================================================
   Konfigurator
   ============================================================ */
.konf { display: grid; grid-template-columns: 1.3fr .7fr; gap: 30px; align-items: start; min-width: 0; }
.konf-panel { min-width: 0; background: var(--card); border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 32px; box-shadow: var(--shadow-sm); }
.konf-block + .konf-block { margin-top: 30px; }
.konf-label { font-weight: 700; font-size: .95rem; margin-bottom: 16px; color: var(--ink); }
.konf-label b { color: var(--orange); font-family: var(--font-display); font-style: italic; margin-right: 8px; }
.chips { display: flex; flex-wrap: wrap; gap: 10px; }
.chip { display: inline-flex; }
.chip input { position: absolute; opacity: 0; }
.chip span { display: inline-flex; align-items: center; gap: 7px; padding: 10px 16px; border-radius: 100px; border: 1.5px solid var(--line); font-size: .9rem; font-weight: 600; cursor: pointer; transition: .2s; color: var(--ink-soft); }
.chip input:checked + span { background: var(--ink); color: var(--paper-2); border-color: var(--ink); }
.dev-rows { display: flex; flex-direction: column; gap: 6px; }
.dev-row { display: flex; align-items: center; justify-content: space-between; padding: 14px 4px; border-bottom: 1px solid var(--line-soft); }
.dev-row:last-child { border-bottom: 0; }
.dev-info { display: flex; align-items: center; gap: 14px; }
.dev-ic { width: 42px; height: 42px; border-radius: 11px; background: rgba(217,130,11,.10); color: var(--orange); display: grid; place-items: center; flex-shrink: 0; }
.dev-name { font-weight: 600; font-size: .95rem; }
.dev-hint { font-size: .78rem; color: var(--muted); }
.counter { display: flex; align-items: center; gap: 4px; }
.counter button { width: 34px; height: 34px; border-radius: 9px; border: 1.5px solid var(--line); background: var(--card); font-size: 1.2rem; cursor: pointer; color: var(--ink); transition: .15s; display: grid; place-items: center; }
.counter button:hover { border-color: var(--orange); color: var(--orange); }
.counter .val { width: 34px; text-align: center; font-weight: 700; font-variant-numeric: tabular-nums; }

.konf-summary { min-width: 0; background: var(--navy-deep); color: #E9E2D4; border-radius: var(--radius-lg); padding: 30px; position: sticky; top: 100px; box-shadow: var(--shadow); }
.konf-summary h4 { font-family: var(--font-display); font-weight: 500; font-size: 1.2rem; color: #F4EEE2; margin-bottom: 18px; }
.sum-lines { display: flex; flex-direction: column; gap: 10px; min-height: 40px; }
.sum-line { display: flex; justify-content: space-between; gap: 12px; font-size: .9rem; color: #C7C1B4; }
.sum-line > span:first-child { min-width: 0; }
.sum-line > span:last-child { white-space: nowrap; font-variant-numeric: tabular-nums; }
.sum-line-included > span:last-child { color: rgba(255,255,255,.68); font-weight: 700; }
.sum-empty { font-size: .88rem; color: #8A93A2; }
.sum-hr { height: 1px; background: rgba(255,255,255,.13); margin: 20px 0; }
.sum-base { display: flex; justify-content: space-between; font-size: .88rem; color: #C7C1B4; }
.sum-total { display: flex; justify-content: space-between; align-items: end; margin-top: 8px; }
.sum-total .t-label { font-size: .82rem; color: #9DA7B5; }
.sum-total .t-val { font-family: var(--font-display); font-size: 2.1rem; color: #F4EEE2; }
.sum-note { font-size: .76rem; color: #8A93A2; margin-top: 16px; line-height: 1.5; }
.konf-summary .btn { width: 100%; margin-top: 20px; }

/* ============================================================
   FAQ
   ============================================================ */
.faq-item { border-bottom: 1px solid var(--line); }
.faq-q { width: 100%; text-align: left; background: none; border: 0; cursor: pointer; padding: 26px 0; display: flex; justify-content: space-between; align-items: center; gap: 20px; font-family: var(--font-display); font-size: 1.18rem; font-weight: 500; color: var(--ink); }
.faq-q .pm { flex-shrink: 0; width: 26px; height: 26px; position: relative; transition: transform .3s var(--ease); }
.faq-q .pm::before, .faq-q .pm::after { content: ''; position: absolute; background: var(--orange); border-radius: 2px; top: 50%; left: 50%; transform: translate(-50%,-50%); }
.faq-q .pm::before { width: 14px; height: 2px; }
.faq-q .pm::after { width: 2px; height: 14px; transition: transform .3s var(--ease); }
.faq-item.open .pm::after { transform: translate(-50%,-50%) scaleY(0); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .35s var(--ease); }
.faq-a p { padding-bottom: 26px; color: var(--ink-soft); max-width: 60ch; }

/* ============================================================
   Kontakt / Formular
   ============================================================ */
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.field { display: flex; flex-direction: column; gap: 7px; }
.field.full { grid-column: 1 / -1; }
.field label { font-size: .82rem; font-weight: 700; color: var(--ink); letter-spacing: .01em; }
.field input, .field textarea, .field select {
  font-family: var(--font-body); font-size: .98rem; color: var(--ink);
  padding: 13px 16px; border-radius: 12px; border: 1.5px solid var(--line); background: var(--card);
  transition: border-color .2s, box-shadow .2s;
}
.field input:focus, .field textarea:focus, .field select:focus { outline: 0; border-color: var(--orange); box-shadow: 0 0 0 4px rgba(217,130,11,.12); }
.field textarea { resize: vertical; min-height: 130px; }
/* Honeypot — fuer Menschen unsichtbar */
.hp { position: absolute; left: -9999px; top: -9999px; width: 1px; height: 1px; overflow: hidden; }
#formStatus:empty { display: none; }
.form-ok { color: #2e6b34; background: rgba(46,107,52,.09); border: 1px solid rgba(46,107,52,.28); border-radius: 12px; padding: 14px 16px; font-size: .92rem; font-weight: 600; }
.form-err { color: #b3261e; background: rgba(179,38,30,.07); border: 1px solid rgba(179,38,30,.26); border-radius: 12px; padding: 14px 16px; font-size: .92rem; font-weight: 600; }

/* ---- Einwilligungs-Checkbox ---- */
.consent { display: flex; gap: 11px; align-items: flex-start; margin-top: 18px; }
.consent input { margin-top: 3px; width: 18px; height: 18px; flex-shrink: 0; accent-color: var(--orange); }
.consent label { font-size: .82rem; color: var(--ink-soft); line-height: 1.5; }
.consent a { color: var(--orange); text-decoration: underline; }

/* ============================================================
   Rechtstexte (Impressum, Datenschutz, AGB)
   ============================================================ */
.legal { max-width: 820px; margin: 0 auto; padding: clamp(48px,7vw,84px) 0; }
.legal .eyebrow { margin-bottom: 16px; }
.legal h1 { font-family: var(--font-display); font-weight: 500; font-size: clamp(2rem,4vw,2.9rem); letter-spacing: -.01em; color: var(--ink); margin-bottom: 8px; }
.legal-meta { color: var(--muted); font-size: .9rem; margin-bottom: 34px; }
.legal h2 { font-family: var(--font-display); font-weight: 500; font-size: 1.5rem; letter-spacing: -.01em; color: var(--ink); margin: 40px 0 12px; }
.legal h3 { font-size: 1.04rem; font-weight: 700; color: var(--ink); margin: 24px 0 8px; }
.legal p, .legal li { color: var(--ink-soft); line-height: 1.72; font-size: .98rem; }
.legal p { margin-bottom: 14px; }
.legal ul { margin: 0 0 16px 22px; list-style: disc; }
.legal ol { margin: 0 0 16px 22px; }
.legal li { margin-bottom: 6px; }
.legal a { color: var(--orange); text-decoration: underline; }
.legal strong { color: var(--ink); }
.legal address { font-style: normal; line-height: 1.7; }
.legal .note { background: var(--paper-2); border: 1px solid var(--line); border-left: 3px solid var(--orange); border-radius: 10px; padding: 16px 18px; font-size: .9rem; color: var(--ink-soft); margin: 22px 0; }
.legal .note strong { color: var(--orange); }

/* ============================================================
   CTA-Band
   ============================================================ */
.cta-band { background: var(--navy-deep); color: #F4EEE2; border-radius: var(--radius-lg); padding: clamp(44px,6vw,72px); text-align: center; position: relative; overflow: hidden; }
.cta-band::before { content: ''; position: absolute; inset: 0; background: radial-gradient(90% 120% at 80% 0%, rgba(217,130,11,.22), transparent 55%); }
.cta-band > * { position: relative; }
.cta-band h2 { color: #F8F3E9; margin-bottom: 14px; }
.cta-band p { color: #B7B2A4; max-width: 50ch; margin: 0 auto 30px; }

/* ============================================================
   Footer
   ============================================================ */
.site-footer { background: var(--navy-deep); color: #B7B2A4; padding: 70px 0 34px; }
.footer-top { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 40px; }
.footer-brand img { height: 50px; margin-bottom: 18px; }
.footer-brand p { font-size: .9rem; color: #9098A4; max-width: 28ch; }
.footer-col h5 { font-weight: 700; font-size: .78rem; letter-spacing: .14em; text-transform: uppercase; color: #6F7A8A; margin-bottom: 16px; }
.footer-col a { display: block; font-size: .92rem; color: #C7C1B4; padding: 6px 0; transition: color .2s; }
.footer-col a:hover { color: var(--orange-br); }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 14px; margin-top: 50px; padding-top: 26px; border-top: 1px solid rgba(255,255,255,.09); font-size: .82rem; color: #79828F; }

/* ============================================================
   Reveal-Animation
   ============================================================ */
.js .reveal { opacity: 0; transform: translateY(24px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.js .reveal.in { opacity: 1; transform: none; }
.js .reveal.d1 { transition-delay: .08s; }
.js .reveal.d2 { transition-delay: .16s; }
.js .reveal.d3 { transition-delay: .24s; }
.js .reveal.d4 { transition-delay: .32s; }
@media (prefers-reduced-motion: reduce) { .js .reveal { opacity: 1 !important; transform: none !important; } }

/* ============================================================
   Mobile-Menü-Overlay
   ============================================================ */
.mobile-menu { position: fixed; inset: 0; z-index: 99; background: var(--paper); display: flex; flex-direction: column; justify-content: center; align-items: center; gap: 8px; transform: translateY(-100%); transition: transform .4s var(--ease); }
.mobile-menu.open { transform: none; }
.mobile-menu a { font-family: var(--font-display); font-size: 1.8rem; font-weight: 500; padding: 12px; color: var(--ink); }
.mobile-menu a.cta { color: var(--orange); }

/* ============================================================
   Responsive
   ============================================================ */
@media (max-width: 980px) {
  .hero-grid { grid-template-columns: 1fr; gap: 40px; }
  .hero-visual { order: -1; }
  .split, .grid-2, .konf { grid-template-columns: 1fr; gap: 44px; }
  .split.reverse .split-media { order: 0; }
  .grid-3, .steps, .price-grid { grid-template-columns: 1fr; }
  .step { border-right: 0; border-bottom: 1px solid var(--line); }
  .step:last-child { border-bottom: 0; }
  .price-card.featured { transform: none; }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 30px; }
  .konf-summary { position: static; }
}
@media (max-width: 720px) {
  body { font-size: 16px; }
  .nav-links, .nav-cta { display: none; }
  .nav-toggle { display: block; }
  .form-grid { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; }
  .trust-row { gap: 18px; }
  .trust-item { width: 100%; }
}
/* Konfigurator + Bestellübersicht auf schmalen Phones: feste Breiten
   schrumpfen, damit keine Zeile über den Bildschirmrand läuft. */
@media (max-width: 640px) {
  .wrap { padding: 0 16px; }
  .konf-panel { padding: 20px 15px; }
  .konf-summary { padding: 22px 18px; }
  .konf-block + .konf-block { margin-top: 24px; }
  .kroom { padding: 14px 12px 6px; }
  .kdev { gap: 9px; padding: 9px 0; }
  .kdev-icon { width: 30px; height: 30px; border-radius: 8px; }
  .kdev-icon svg { width: 17px; height: 17px; }
  .kdev-right { gap: 8px; }
  .kdev-price { min-width: 0; font-size: .8rem; }
  .counter { gap: 3px; }
  .counter button { width: 30px; height: 30px; font-size: 1.05rem; }
  .counter .val { width: 22px; }
  .chip span { padding: 9px 13px; font-size: .86rem; }
  .konf-modal { padding: 10px; }
  .konf-modal-card { padding: 22px 18px 20px; border-radius: 18px; max-height: 92vh; }
  .konf-modal-card h3 { font-size: 1.2rem; }
}

/* ---------- Konfigurator (raum-basiert) ---------- */
.konf-hint-empty {
  padding: 28px; border: 1.5px dashed var(--line); border-radius: 14px;
  color: var(--ink-soft); font-size: .95rem; text-align: center;
}
.kroom { border: 1px solid var(--line); border-radius: 14px; padding: 18px 18px 8px; margin-bottom: 16px; background: var(--paper-2, #fff); }
.kroom-head { display: flex; align-items: center; gap: 12px; margin-bottom: 10px; }
.kroom-head h4 { font-size: 1.05rem; font-weight: 700; color: var(--ink); margin: 0 auto 0 0; }
.kroom-count { font-size: .78rem; color: var(--ink-soft); opacity: .7; font-variant-numeric: tabular-nums; white-space: nowrap; }
.kroom-remove { background: none; border: none; color: var(--ink-soft); font-size: .82rem; font-weight: 600; cursor: pointer; padding: 4px 6px; border-radius: 7px; transition: .15s; }
.kroom-remove:hover { color: var(--orange); background: rgba(217,130,11,.08); }

.kdev { display: flex; align-items: center; justify-content: space-between; gap: 12px; padding: 10px 0; border-top: 1px solid var(--line); }
.kdev:first-child { border-top: none; }
.kdev-icon { flex-shrink: 0; width: 34px; height: 34px; border-radius: 9px; display: grid; place-items: center; background: rgba(21,35,58,.05); color: var(--ink-soft); transition: .15s; }
.kdev.is-active .kdev-icon { background: rgba(217,130,11,.12); color: var(--orange); }
.kdev-info { display: flex; flex-direction: column; gap: 2px; min-width: 0; flex: 1 1 auto; }
.kdev-name { font-size: .94rem; font-weight: 600; color: var(--ink-soft); transition: color .15s; }
.kdev.is-active .kdev-name { color: var(--ink); font-weight: 700; }
.kdev-hint { font-size: .76rem; color: var(--ink-soft); opacity: .7; }
.kdev-hint.wired::before { content: '⚡ '; }
.kdev-hint.wireless::before { content: '🔋 '; }
.kdev-right { display: flex; align-items: center; gap: 14px; flex-shrink: 0; }
.kdev-price { font-size: .82rem; font-weight: 700; color: var(--ink); opacity: .55; min-width: 56px; text-align: right; font-variant-numeric: tabular-nums; }
.kdev.is-active .kdev-price { opacity: 1; color: var(--orange); }

/* Summary-Erweiterungen (dunkler Hintergrund) */
.konf-total-row { display: flex; align-items: baseline; justify-content: space-between; font-weight: 800; margin: 4px 0 6px; }
.konf-total-row span:first-child { font-size: 1rem; }
.konf-total-row span:last-child { font-size: 1.7rem; font-family: var(--font-display); font-variant-numeric: tabular-nums; }
.konf-tax { font-size: .76rem; opacity: .7; margin: 0 0 18px; }
.sum-note-inline { display: block; margin-top: 2px; font-style: normal; font-size: .72rem; line-height: 1.35; opacity: .6; }
.konf-optional { font-weight: 600; font-size: .72rem; text-transform: uppercase; letter-spacing: .05em; color: var(--ink-soft); opacity: .6; margin-left: 6px; }
.kacc-badge { display: inline-block; font-size: .68rem; font-weight: 700; color: var(--orange); border: 1px solid var(--orange); border-radius: 6px; padding: 1px 6px; margin-left: 6px; vertical-align: middle; }
.konf-coverage-box { background: rgba(255,255,255,.06); border-radius: 12px; padding: 14px 16px; margin-bottom: 16px; }
.konf-coverage-title { display: block; font-size: .78rem; text-transform: uppercase; letter-spacing: .06em; opacity: .65; margin-bottom: 8px; }
.konf-coverage { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 6px; }
.konf-coverage li { font-size: .9rem; display: flex; align-items: center; gap: 8px; }
.konf-coverage li::before { content: '✓'; color: var(--orange); font-weight: 800; }
.konf-coverage:empty::after { content: 'Wählen Sie Geräte, um Funktionen zu sehen.'; font-size: .85rem; opacity: .6; }
.konf-electrician { font-size: .78rem; opacity: .78; line-height: 1.5; margin: 0 0 16px; padding-left: 12px; border-left: 2px solid rgba(217,130,11,.6); }
.konf-summary .btn-primary { width: 100%; }
.konf-summary .btn-primary:disabled { opacity: .45; cursor: not-allowed; box-shadow: none; transform: none; }
.konf-advise-btn { width: 100%; margin-top: 10px; background: transparent; color: #E9E2D4; border: 1.5px solid rgba(255,255,255,.28); }
.konf-advise-btn:hover { border-color: rgba(255,255,255,.6); transform: translateY(-2px); }
.konf-status { font-size: .82rem; margin-top: 12px; min-height: 1em; }
.konf-status.err { color: #FFB4A2; }

/* ---------- Bestellübersicht (Modal vor PayPal) ---------- */
.konf-modal[hidden] { display: none; }
.konf-modal { position: fixed; inset: 0; z-index: 200; display: flex; align-items: center; justify-content: center; padding: 20px; }
.konf-modal-backdrop { position: absolute; inset: 0; background: rgba(16,27,46,.55); backdrop-filter: blur(3px); }
.konf-modal-card {
  position: relative; z-index: 1; width: 100%; max-width: 520px; max-height: 90vh;
  display: flex; flex-direction: column; background: var(--paper-2); color: var(--ink);
  border-radius: var(--radius-lg); padding: 30px 30px 26px; box-shadow: var(--shadow-lg);
  animation: kmIn .22s var(--ease, ease) both;
}
@keyframes kmIn { from { opacity: 0; transform: translateY(14px) scale(.98); } to { opacity: 1; transform: none; } }
.konf-modal-x { position: absolute; top: 14px; right: 16px; background: none; border: none; font-size: 1.7rem; line-height: 1; color: var(--muted); cursor: pointer; padding: 4px; border-radius: 8px; transition: .15s; }
.konf-modal-x:hover { color: var(--ink); background: rgba(21,35,58,.06); }
.konf-modal-card h3 { font-size: 1.35rem; font-weight: 800; color: var(--ink); margin: 0 6px 16px 0; }
.konf-modal-scroll { overflow-y: auto; flex: 0 1 auto; margin: 0 -6px; padding: 0 6px; }
.km-rooms { display: flex; flex-direction: column; gap: 8px; margin-bottom: 14px; }
.km-room { display: flex; flex-direction: column; gap: 2px; background: var(--card); border: 1px solid var(--line-soft); border-radius: 10px; padding: 10px 12px; }
.km-room b { font-size: .9rem; color: var(--ink); }
.km-room span { font-size: .8rem; color: var(--ink-soft); }
.km-lines { display: flex; flex-direction: column; gap: 7px; padding-top: 4px; border-top: 1px solid var(--line); }
.km-lines .sum-line { display: flex; justify-content: space-between; gap: 12px; font-size: .9rem; color: var(--ink-soft); }
.km-lines .sum-line span:last-child { font-variant-numeric: tabular-nums; white-space: nowrap; }
.km-total-row { display: flex; align-items: baseline; justify-content: space-between; font-weight: 800; margin: 14px 0 4px; padding-top: 12px; border-top: 1.5px solid var(--line); }
.km-total-row span:first-child { font-size: 1rem; }
.km-total-row span:last-child { font-size: 1.6rem; font-family: var(--font-display); font-variant-numeric: tabular-nums; color: var(--ink); }
.km-tax { font-size: .76rem; color: var(--muted); margin: 0 0 12px; }
.km-note { font-size: .78rem; color: var(--ink-soft); line-height: 1.5; margin: 0 0 16px; padding-left: 12px; border-left: 2px solid rgba(217,130,11,.6); }
.km-agb { display: flex; align-items: flex-start; gap: 10px; font-size: .86rem; color: var(--ink-soft); line-height: 1.45; margin-bottom: 12px; cursor: pointer; }
.km-agb input { margin-top: 2px; width: 17px; height: 17px; flex-shrink: 0; accent-color: var(--orange); cursor: pointer; }
.km-agb a { color: var(--orange); text-decoration: underline; }
.km-paypal { font-size: .78rem; color: var(--muted); margin: 0 0 16px; }
.km-paypal::before { content: '🔒 '; }
.konf-modal-card #km-pay { width: 100%; }
.konf-modal-card #km-pay:disabled { opacity: .45; cursor: not-allowed; box-shadow: none; transform: none; }
.km-back { width: 100%; margin-top: 10px; background: transparent; color: var(--ink-soft); border: 1.5px solid var(--line); }
.km-back:hover { border-color: var(--ink); transform: translateY(-2px); }
.konf-modal-card .konf-status { color: var(--ink-soft); }
.konf-modal-card .konf-status.err { color: #C0392B; }
.km-section-label { font-size: .76rem; font-weight: 700; text-transform: uppercase; letter-spacing: .06em; color: var(--muted); margin: 18px 0 10px; }
.km-section-label:first-child { margin-top: 0; }
.km-form { display: grid; grid-template-columns: 1fr 1fr; gap: 10px 12px; }
.km-field { display: flex; flex-direction: column; gap: 4px; }
.km-field.km-col2 { grid-column: 1 / -1; }
.km-field.km-narrow { max-width: 130px; }
.km-field span { font-size: .78rem; font-weight: 600; color: var(--ink-soft); }
.km-field input, .km-field select, .km-field textarea {
  font: inherit; font-size: .92rem; color: var(--ink); background: var(--card);
  border: 1.5px solid var(--line); border-radius: 10px; padding: 10px 12px; width: 100%;
  transition: border-color .15s;
}
.km-field input:focus, .km-field select:focus, .km-field textarea:focus { outline: none; border-color: var(--orange); }
.km-field input:invalid:not(:placeholder-shown) { border-color: #C0392B; }
.km-field textarea { resize: vertical; min-height: 44px; }
.km-check { grid-column: 1 / -1; display: flex; align-items: center; gap: 9px; font-size: .85rem; color: var(--ink-soft); cursor: pointer; margin-top: 2px; }
.km-check input { width: 16px; height: 16px; accent-color: var(--orange); cursor: pointer; }
.km-ship { display: grid; grid-template-columns: 1fr 1fr; gap: 10px 12px; padding: 12px; background: var(--card); border: 1px solid var(--line-soft); border-radius: 12px; }
.km-ship[hidden] { display: none; }
.km-agb + .km-agb { margin-top: 8px; }
@media (max-width: 640px) {
  .km-form, .km-ship { grid-template-columns: 1fr; }
  .km-field.km-narrow { max-width: none; }
}

/* ---- Promo-Strip (seitenübergreifend) ---- */
.promo-strip { background: var(--orange); color: #fff; padding: 10px 20px; display: flex; align-items: center; justify-content: center; gap: 16px; font-size: .9rem; font-weight: 500; position: relative; z-index: 100; }
.promo-strip-inner { display: flex; align-items: center; gap: 14px; flex-wrap: wrap; justify-content: center; }
.promo-strip-badge { background: rgba(255,255,255,.25); border-radius: 20px; padding: 2px 12px; font-weight: 800; font-size: .84rem; white-space: nowrap; }
.promo-strip-cta { background: rgba(255,255,255,.2); border: 1.5px solid rgba(255,255,255,.5); border-radius: 20px; padding: 5px 16px; font-weight: 700; color: #fff; font-size: .84rem; white-space: nowrap; transition: .15s; }
.promo-strip-cta:hover { background: rgba(255,255,255,.35); }
.promo-strip-close { background: none; border: none; color: rgba(255,255,255,.7); font-size: 1.5rem; line-height: 1; cursor: pointer; padding: 2px 8px; flex-shrink: 0; position: absolute; right: 14px; }
@media (max-width: 640px) { .promo-strip { font-size: .82rem; padding: 10px 40px 10px 16px; } }

/* ---- Paket-Karten ---- */
.konf-pakete-karten { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 32px; }
.paket-card { background: var(--card); border: 2px solid var(--line); border-radius: var(--radius); padding: 28px 24px 24px; display: flex; flex-direction: column; gap: 0; position: relative; transition: box-shadow .2s, border-color .2s; }
.paket-card:hover { box-shadow: var(--shadow); border-color: rgba(217,130,11,.3); }
.paket-card.paket-highlight { border-color: var(--orange); box-shadow: 0 0 0 4px rgba(217,130,11,.08); }
.paket-badge { display: inline-block; font-size: .7rem; font-weight: 700; text-transform: uppercase; letter-spacing: .07em; color: var(--orange); border: 1.5px solid var(--orange); border-radius: 20px; padding: 2px 10px; margin-bottom: 10px; align-self: flex-start; }
.paket-card h3 { font-family: var(--font-display); font-size: 1.7rem; font-weight: 500; color: var(--ink); margin-bottom: 3px; }
.paket-tagline { font-size: .87rem; color: var(--ink-soft); margin-bottom: 18px; }
.paket-price { margin-bottom: 20px; }
.paket-price-orig { display: block; font-size: .88rem; color: var(--muted); text-decoration: line-through; font-variant-numeric: tabular-nums; line-height: 1.4; }
.paket-price-main { display: block; font-family: var(--font-display); font-size: 2.2rem; font-weight: 500; color: var(--ink); font-variant-numeric: tabular-nums; line-height: 1.1; margin-bottom: 6px; }
.paket-highlight .paket-price-main { color: var(--orange); }
.paket-price-badge { display: inline-block; font-size: .74rem; font-weight: 700; color: var(--orange); background: rgba(217,130,11,.1); border-radius: 12px; padding: 2px 9px; }
.paket-punkte { list-style: none; display: flex; flex-direction: column; gap: 9px; margin-bottom: 22px; flex: 1; }
.paket-punkte li { font-size: .89rem; color: var(--ink-soft); display: flex; align-items: flex-start; gap: 8px; line-height: 1.35; }
.paket-punkte li::before { content: '✓'; color: var(--orange); font-weight: 800; flex-shrink: 0; }
@media (max-width: 900px) { .konf-pakete-karten { grid-template-columns: 1fr; gap: 20px; } }
@media (max-width: 640px) {
  .konf-pakete-karten { gap: 16px; margin-top: 24px; }
  .paket-card {
    padding: 22px 18px 20px;
    border-radius: 14px;
    border-width: 1.5px;
    box-shadow: 0 3px 18px rgba(21,35,58,.09);
  }
  .paket-card.paket-highlight {
    box-shadow: 0 4px 22px rgba(217,130,11,.18);
  }
  .paket-card h3 { font-size: 1.5rem; }
  .paket-tagline { font-size: .84rem; margin-bottom: 14px; }
  .paket-price { margin-bottom: 16px; }
  .paket-price-main { font-size: 1.95rem; }
  .paket-punkte { gap: 8px; margin-bottom: 18px; }
  .paket-punkte li { font-size: .86rem; }
}

/* Promo-Banner (innerhalb Konfigurator-Bereich) */
.konf-promo-banner { background: linear-gradient(90deg, rgba(217,130,11,.1), rgba(240,152,15,.05)); border: 1.5px solid rgba(217,130,11,.3); border-radius: var(--radius); padding: 14px 20px; display: flex; align-items: center; gap: 14px; flex-wrap: wrap; margin-bottom: 16px; }
@media (max-width: 640px) {
  .konf-promo-banner { padding: 12px 16px; gap: 8px; border-radius: 12px; margin-bottom: 12px; }
  .konf-promo-banner strong { font-size: .9rem; }
  .konf-promo-banner span { font-size: .82rem; }
}
.konf-promo-banner strong { color: var(--orange); font-size: .97rem; }
.konf-promo-banner span { font-size: .88rem; color: var(--ink-soft); }
.konf-promo-tage { background: var(--orange); color: #fff; border-radius: 12px; padding: 2px 10px; font-weight: 700; font-size: .8rem; white-space: nowrap; }

/* Discount-Anzeige in der Zusammenfassung */
.konf-total-disc { display: block; font-size: .88em; color: var(--muted); text-decoration: line-through; font-variant-numeric: tabular-nums; font-weight: 600; opacity: .8; }
.konf-total-net { font-family: var(--font-display); font-size: 1.7rem; font-variant-numeric: tabular-nums; color: var(--orange-br); }

@media (max-width: 640px) {
  .konf-panel, .konf-summary, .konf-block, .kroom, #konf-rooms, #konf-zubehoer { min-width: 0; width: 100%; }
  .kdev { align-items: flex-start; flex-wrap: wrap; gap: 9px; }
  .kdev-info { flex: 1 1 calc(100% - 39px); min-width: 0; }
  .kdev-right { width: 100%; justify-content: flex-end; padding-left: 39px; gap: 8px; }
  .kdev-hint { overflow-wrap: anywhere; }
  .sum-line { align-items: flex-start; }
}
