/* ==========================================================================
   CAR DIAMOND — Fahrzeugveredelungs-Manufaktur Deggendorf
   Design-System · Premium Dark / Magenta / Silber-Diamant
   ========================================================================== */

/* ----------  Design Tokens  ---------- */
:root {
  /* Farben — Basis */
  --bg:            #08080a;
  --bg-2:          #0d0e12;
  --surface:       #141620;
  --surface-2:     #1a1d29;
  --surface-3:     #22263440;

  --border:        rgba(255,255,255,.08);
  --border-2:      rgba(255,255,255,.14);
  --border-brand:  rgba(230,0,126,.35);

  /* Text */
  --text:          #f3f4f7;
  --text-soft:     #c8ccd6;
  --muted:         #8a909e;
  --muted-2:       #666c7a;

  /* Marke — Magenta / Diamant */
  --brand:         #e6007e;
  --brand-bright:  #ff2d9b;
  --brand-deep:    #b8005f;
  --brand-glow:    rgba(230,0,126,.45);
  --brand-soft:    rgba(230,0,126,.12);

  /* Silber / Platin (Diamant) */
  --silver:        #d6dbe4;
  --silver-2:      #9aa1b0;
  --gold:          #e8c98a;

  /* Verläufe */
  --grad-brand:    linear-gradient(120deg, #ff2d9b 0%, #e6007e 55%, #b8005f 100%);
  --grad-diamond:  linear-gradient(180deg, #ffffff 0%, #d7dce5 42%, #9aa1b0 100%);
  --grad-dark:     linear-gradient(180deg, #0d0e12 0%, #08080a 100%);
  --grad-glass:    linear-gradient(160deg, rgba(255,255,255,.06), rgba(255,255,255,.015));

  /* Schatten */
  --shadow-sm:     0 2px 10px rgba(0,0,0,.35);
  --shadow:        0 18px 40px -18px rgba(0,0,0,.7);
  --shadow-lg:     0 40px 80px -30px rgba(0,0,0,.85);
  --shadow-brand:  0 20px 46px -18px var(--brand-glow);

  /* Radius */
  --r-sm: 10px;
  --r:    16px;
  --r-lg: 22px;
  --r-xl: 30px;
  --r-pill: 999px;

  /* Maße */
  --container: 1240px;
  --gutter: clamp(20px, 5vw, 44px);
  --header-h: 84px;

  /* Typo */
  --font-display: 'Sora', system-ui, sans-serif;
  --font-body: 'Inter', system-ui, -apple-system, sans-serif;

  /* Motion */
  --ease: cubic-bezier(.22,.61,.36,1);
  --ease-out: cubic-bezier(.16,1,.3,1);
}

/* ----------  Reset  ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .001ms !important; transition-duration: .001ms !important; }
}

body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text);
  line-height: 1.65;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

img, svg, video { display: block; max-width: 100%; }
img { height: auto; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; padding: 0; }
button { font: inherit; cursor: pointer; border: none; background: none; color: inherit; }
input, textarea, select { font: inherit; color: inherit; }
::selection { background: var(--brand); color: #fff; }

/* ----------  Typografie  ---------- */
h1, h2, h3, h4 { font-family: var(--font-display); font-weight: 700; line-height: 1.08; letter-spacing: -.02em; }
h1 { font-size: clamp(2.5rem, 6vw, 4.6rem); font-weight: 800; }
h2 { font-size: clamp(2rem, 4.4vw, 3.2rem); }
h3 { font-size: clamp(1.3rem, 2.2vw, 1.7rem); }
p  { color: var(--text-soft); }

.display-diamond {
  background: var(--grad-diamond);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.text-brand { color: var(--brand-bright); }

/* ----------  Layout Utilities  ---------- */
.container { width: 100%; max-width: var(--container); margin-inline: auto; padding-inline: var(--gutter); }
.section { padding: clamp(64px, 9vw, 132px) 0; position: relative; }
.section--tight { padding: clamp(48px, 6vw, 84px) 0; }
/* Feste Kopfzeile nicht über Sprungziele legen */
:target, section[id], [id^="pakete"], [id^="produkte"], [id^="leistungen"], [id^="formular"] { scroll-margin-top: calc(var(--header-h) + 24px); }
.center { text-align: center; }
.mx-auto { margin-inline: auto; }
.maxw-60 { max-width: 60ch; }
.maxw-720 { max-width: 720px; }

/* Eyebrow / Section-Head */
.eyebrow {
  display: inline-flex; align-items: center; gap: .6em;
  font-family: var(--font-display);
  font-size: .78rem; font-weight: 600; letter-spacing: .22em; text-transform: uppercase;
  color: var(--brand-bright);
}
.eyebrow::before {
  content: ""; width: 26px; height: 1px;
  background: linear-gradient(90deg, transparent, var(--brand));
}
.eyebrow.is-centered::after {
  content: ""; width: 26px; height: 1px;
  background: linear-gradient(90deg, var(--brand), transparent);
}
.section-head { max-width: 680px; margin-bottom: clamp(38px, 5vw, 60px); }
.section-head.is-centered { margin-inline: auto; text-align: center; }
.section-head p { margin-top: 18px; font-size: 1.08rem; }
.section-head h2 { margin-top: 16px; }

/* ----------  Buttons  ---------- */
.btn {
  --pad-y: 15px; --pad-x: 30px;
  display: inline-flex; align-items: center; justify-content: center; gap: .6em;
  padding: var(--pad-y) var(--pad-x);
  font-family: var(--font-display); font-weight: 600; font-size: .98rem; letter-spacing: .01em;
  border-radius: var(--r-pill);
  transition: transform .35s var(--ease-out), box-shadow .35s var(--ease), background .3s, color .3s, border-color .3s;
  will-change: transform;
  position: relative; white-space: nowrap;
}
.btn svg { width: 18px; height: 18px; }
.btn--primary { background: var(--grad-brand); color: #fff; box-shadow: var(--shadow-brand); }
.btn--primary:hover { transform: translateY(-3px); box-shadow: 0 26px 54px -16px var(--brand-glow); }
.btn--ghost { border: 1.5px solid var(--border-2); color: var(--text); background: rgba(255,255,255,.02); }
.btn--ghost:hover { border-color: var(--brand); color: #fff; transform: translateY(-3px); background: var(--brand-soft); }
.btn--light { background: var(--text); color: #0b0b0e; }
.btn--light:hover { transform: translateY(-3px); box-shadow: var(--shadow); }
.btn--sm { --pad-y: 11px; --pad-x: 20px; font-size: .9rem; }
.btn--block { width: 100%; }

/* Text-Link mit Pfeil */
.link-arrow {
  display: inline-flex; align-items: center; gap: .5em;
  font-family: var(--font-display); font-weight: 600; font-size: .95rem;
  color: var(--brand-bright);
}
.link-arrow svg { width: 17px; height: 17px; transition: transform .3s var(--ease-out); }
.link-arrow:hover svg { transform: translateX(5px); }

/* ----------  Header / Navigation  ---------- */
.site-header {
  position: fixed; inset: 0 0 auto 0; z-index: 90;
  height: var(--header-h);
  display: flex; align-items: center;
  transition: height .4s var(--ease), background .4s, border-color .4s, backdrop-filter .4s;
  border-bottom: 1px solid transparent;
}
.site-header.is-scrolled {
  height: 68px;
  background: rgba(8,8,10,.82);
  backdrop-filter: blur(18px) saturate(140%);
  -webkit-backdrop-filter: blur(18px) saturate(140%);
  border-bottom-color: var(--border);
}
.nav { display: flex; align-items: center; justify-content: space-between; width: 100%; gap: 24px; }

.brand { display: flex; align-items: center; gap: 12px; flex-shrink: 0; }
.brand img { width: 44px; height: auto; filter: drop-shadow(0 4px 12px rgba(0,0,0,.5)); transition: transform .4s var(--ease-out); }
.brand:hover img { transform: rotate(-4deg) scale(1.04); }
.brand__word { font-family: var(--font-display); font-weight: 800; font-size: 1.16rem; letter-spacing: .02em; line-height: 1; }
.brand__word span { color: var(--brand-bright); }
.brand__sub { display: block; font-family: var(--font-body); font-weight: 500; font-size: .58rem; letter-spacing: .32em; text-transform: uppercase; color: var(--muted); margin-top: 4px; }

.nav__links { display: flex; align-items: center; gap: 4px; }
.nav__links > a, .nav__item > button {
  display: inline-flex; align-items: center; gap: .35em;
  padding: 9px 15px; border-radius: var(--r-pill);
  font-size: .95rem; font-weight: 500; color: var(--text-soft);
  transition: color .25s, background .25s;
}
.nav__links > a:hover, .nav__item > button:hover,
.nav__links > a.is-active { color: #fff; background: rgba(255,255,255,.05); }
.nav__item { position: relative; }
.nav__item > button svg { width: 15px; height: 15px; opacity: .7; transition: transform .3s; }
.nav__item:hover > button svg { transform: rotate(180deg); }

/* Dropdown */
.nav__menu {
  position: absolute; top: calc(100% + 12px); left: 50%; transform: translate(-50%, 8px);
  min-width: 240px; padding: 10px;
  background: rgba(18,20,28,.96); backdrop-filter: blur(20px);
  border: 1px solid var(--border); border-radius: var(--r);
  box-shadow: var(--shadow-lg);
  opacity: 0; visibility: hidden; transition: opacity .24s var(--ease), transform .24s var(--ease);
}
/* Unsichtbare Hover-Brücke: schließt die Lücke zwischen Button und Menü,
   damit das Dropdown beim Rübergehen nicht flackert/schließt. */
.nav__menu::before {
  content: ""; position: absolute; left: 0; right: 0; top: -22px; height: 24px;
}
/* Hover UND Fokus (Tastatur) öffnen das Menü zuverlässig */
.nav__item:hover .nav__menu,
.nav__item:focus-within .nav__menu { opacity: 1; visibility: visible; transform: translate(-50%, 0); }
.nav__menu a {
  display: flex; align-items: center; gap: 12px;
  padding: 11px 13px; border-radius: var(--r-sm);
  font-size: .94rem; color: var(--text-soft); transition: background .2s, color .2s;
}
.nav__menu a:hover { background: var(--brand-soft); color: #fff; }
.nav__menu a svg { width: 18px; height: 18px; color: var(--brand-bright); flex-shrink: 0; }

.nav__cta { display: flex; align-items: center; gap: 14px; flex-shrink: 0; }
.nav__phone { display: inline-flex; align-items: center; gap: 9px; font-weight: 600; font-size: .95rem; color: var(--text); }
.nav__phone svg { width: 18px; height: 18px; color: var(--brand-bright); }
.nav__phone:hover { color: var(--brand-bright); }

/* Burger */
.nav__toggle { display: none; width: 46px; height: 46px; border-radius: 12px; border: 1px solid var(--border-2); position: relative; }
.nav__toggle span { position: absolute; left: 12px; right: 12px; height: 2px; background: var(--text); border-radius: 2px; transition: transform .35s var(--ease), opacity .25s; }
.nav__toggle span:nth-child(1) { top: 16px; }
.nav__toggle span:nth-child(2) { top: 22px; }
.nav__toggle span:nth-child(3) { top: 28px; }
body.nav-open .nav__toggle span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
body.nav-open .nav__toggle span:nth-child(2) { opacity: 0; }
body.nav-open .nav__toggle span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

/* ----------  Hero  ---------- */
/* isolation: isolate → eigener Stacking-Context; Ebenen mit positivem z-index sauber gestapelt */
.hero { position: relative; isolation: isolate; min-height: 100vh; display: flex; align-items: center; padding-top: var(--header-h); overflow: hidden; background: var(--bg); }

/* 3D-Szene (Three.js Canvas mountet hier) — Basis-Ebene */
.hero__scene {
  position: absolute; inset: 0; z-index: 0;
  background:
    radial-gradient(90% 80% at 70% 42%, rgba(230,0,126,.14) 0%, transparent 55%),
    radial-gradient(120% 120% at 72% 45%, #17101d 0%, #0c0b11 45%, var(--bg) 100%);
}
.hero__scene canvas { display: block; width: 100%; height: 100%; }
/* Weicher Halo hinter dem Diamanten */
.hero__glow {
  position: absolute; z-index: 1; width: 62vw; height: 62vw; max-width: 720px; max-height: 720px;
  right: -6vw; top: 6%;
  background: radial-gradient(circle, var(--brand-glow) 0%, transparent 66%);
  filter: blur(30px); opacity: .5; pointer-events: none;
  animation: heroGlow 7s ease-in-out infinite;
}
@keyframes heroGlow { 0%,100% { opacity: .38; transform: scale(1); } 50% { opacity: .6; transform: scale(1.06); } }
/* Scrim: links abdunkeln für Textlesbarkeit, rechts frei für den Diamanten */
.hero__scrim {
  position: absolute; inset: 0; z-index: 2; pointer-events: none;
  background:
    linear-gradient(90deg, var(--bg) 0%, rgba(8,8,10,.72) 28%, rgba(8,8,10,.08) 56%, transparent 78%),
    linear-gradient(180deg, rgba(8,8,10,.4) 0%, transparent 22%, transparent 68%, var(--bg) 100%);
}
/* Inhalt & Scroll-Indikator über allen Ebenen */
.hero > .container { position: relative; z-index: 3; }
/* Mobil: Diamant mittig hinter dem Text → stärkerer Scrim + Textschatten für Lesbarkeit */
@media (max-width: 900px) {
  .hero__scrim {
    background: linear-gradient(180deg, rgba(8,8,10,.5) 0%, rgba(8,8,10,.34) 42%, rgba(8,8,10,.74) 100%);
  }
  .hero__content { text-shadow: 0 2px 24px rgba(0,0,0,.55); }
}
.hero__content { max-width: 720px; position: relative; }
.hero__badge {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 9px 18px; border-radius: var(--r-pill);
  background: rgba(255,255,255,.05); border: 1px solid var(--border-2);
  backdrop-filter: blur(8px);
  font-family: var(--font-display); font-size: .8rem; font-weight: 500; letter-spacing: .05em;
  color: var(--text-soft); margin-bottom: 28px;
}
.hero__badge .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--brand-bright); box-shadow: 0 0 0 4px var(--brand-soft); animation: pulse 2.4s infinite; }
@keyframes pulse { 0%,100% { opacity: 1; } 50% { opacity: .4; } }
.hero h1 { margin-bottom: 26px; }
.hero__lead { font-size: clamp(1.06rem, 1.6vw, 1.28rem); color: var(--text-soft); max-width: 560px; margin-bottom: 38px; }
.hero__actions { display: flex; flex-wrap: wrap; gap: 16px; }
.hero__stats { display: flex; flex-wrap: wrap; gap: clamp(28px, 5vw, 60px); margin-top: 60px; }
.hero__stat b { display: block; font-family: var(--font-display); font-weight: 800; font-size: clamp(1.9rem, 3.4vw, 2.7rem); line-height: 1; background: var(--grad-diamond); -webkit-background-clip: text; background-clip: text; color: transparent; }
.hero__stat span { font-size: .86rem; color: var(--muted); letter-spacing: .03em; margin-top: 8px; display: block; }
.hero__scroll { position: absolute; z-index: 3; bottom: 30px; left: 50%; transform: translateX(-50%); display: flex; flex-direction: column; align-items: center; gap: 8px; font-size: .72rem; letter-spacing: .2em; text-transform: uppercase; color: var(--muted); }
.hero__scroll i { width: 1px; height: 42px; background: linear-gradient(var(--brand-bright), transparent); animation: scrolldrop 2s infinite; }
@keyframes scrolldrop { 0% { transform: scaleY(0); transform-origin: top; } 45% { transform: scaleY(1); transform-origin: top; } 55% { transform: scaleY(1); transform-origin: bottom; } 100% { transform: scaleY(0); transform-origin: bottom; } }

/* ----------  Marquee / Trust  ---------- */
.trust { border-block: 1px solid var(--border); background: var(--bg-2); }
.trust__row { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 30px; padding: 30px 0; }
.trust__item { display: flex; align-items: center; gap: 13px; color: var(--text-soft); font-size: .96rem; }
.trust__item svg { width: 26px; height: 26px; color: var(--brand-bright); flex-shrink: 0; }
.trust__item b { color: #fff; font-weight: 600; }

/* ----------  Service Cards Grid  ---------- */
.grid { display: grid; gap: clamp(18px, 2.4vw, 26px); }
.grid--3 { grid-template-columns: repeat(3, 1fr); }
.grid--2 { grid-template-columns: repeat(2, 1fr); }
.grid--4 { grid-template-columns: repeat(4, 1fr); }

.svc-card {
  position: relative; overflow: hidden;
  border-radius: var(--r-lg); border: 1px solid var(--border);
  background: var(--surface); isolation: isolate;
  transform: perspective(1100px) rotateX(var(--card-rx, 0deg)) rotateY(var(--card-ry, 0deg)) translateY(var(--card-ty, 0px));
  transition: transform .22s var(--ease-out), border-color .4s, box-shadow .4s;
  min-height: 380px; display: flex; flex-direction: column; justify-content: flex-end;
}
.svc-card__img { position: absolute; inset: 0; z-index: -2; }
.svc-card__img img { width: 100%; height: 100%; object-fit: cover; transition: transform .8s var(--ease-out); }
.svc-card::after { content: ""; position: absolute; inset: 0; z-index: -1; background: linear-gradient(180deg, rgba(8,8,10,.15) 0%, rgba(8,8,10,.55) 45%, rgba(8,8,10,.95) 100%); transition: background .4s; }
.svc-card:hover { --card-ty: -8px; border-color: var(--border-brand); box-shadow: var(--shadow-lg); }
.svc-card:hover .svc-card__img img { transform: scale(1.08); }
.svc-card__body { padding: 26px; position: relative; }
.svc-card__icon { width: 46px; height: 46px; border-radius: 13px; display: grid; place-items: center; background: var(--brand-soft); border: 1px solid var(--border-brand); margin-bottom: 16px; }
.svc-card__icon svg { width: 24px; height: 24px; color: var(--brand-bright); }
.svc-card h3 { margin-bottom: 8px; }
.svc-card__list { display: flex; flex-wrap: wrap; gap: 7px; margin: 14px 0 20px; }
.svc-card__list li { font-size: .78rem; color: var(--text-soft); padding: 5px 11px; border-radius: var(--r-pill); background: rgba(255,255,255,.05); border: 1px solid var(--border); }
.svc-card .link-arrow::after { content: ""; position: absolute; inset: 0; z-index: 5; }

/* ----------  Feature / Split  ---------- */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(30px, 5vw, 72px); align-items: center; }
.split--reverse .split__media { order: 2; }
.split__media { position: relative; }
.split__media img { width: 100%; border-radius: var(--r-lg); box-shadow: var(--shadow-lg); }
.split__media--stack { aspect-ratio: 4/5; }
.media-frame { position: relative; border-radius: var(--r-lg); overflow: hidden; }
.media-frame::before { content: ""; position: absolute; inset: 0; z-index: 2; border-radius: inherit; border: 1px solid var(--border-2); pointer-events: none; }
.media-badge {
  position: absolute; z-index: 3; bottom: 22px; left: 22px; right: 22px;
  display: flex; align-items: center; gap: 16px;
  padding: 16px 20px; border-radius: var(--r);
  background: rgba(12,13,18,.72); backdrop-filter: blur(14px); border: 1px solid var(--border-2);
}
.media-badge b { font-family: var(--font-display); font-size: 1.5rem; color: var(--brand-bright); line-height: 1; }
.media-badge span { font-size: .84rem; color: var(--text-soft); }

/* Feature list mit Diamant-Bullets */
.feature-list { display: grid; gap: 16px; margin-top: 26px; }
.feature-list li { display: flex; gap: 15px; align-items: flex-start; }
.feature-list .fi {
  flex-shrink: 0; width: 30px; height: 30px; border-radius: 9px; margin-top: 2px;
  display: grid; place-items: center; background: var(--brand-soft); border: 1px solid var(--border-brand);
}
.feature-list .fi svg { width: 16px; height: 16px; color: var(--brand-bright); }
.feature-list h4 { font-family: var(--font-body); font-weight: 700; font-size: 1rem; margin-bottom: 2px; color: #fff; }
.feature-list p { font-size: .93rem; margin: 0; }

/* Diamant-Bullet Liste (Leistungsdetails) */
.check-list { display: grid; gap: 12px; }
.check-list li { position: relative; padding-left: 30px; color: var(--text-soft); font-size: .98rem; }
.check-list li::before {
  content: ""; position: absolute; left: 0; top: .5em;
  width: 11px; height: 11px; transform: rotate(45deg);
  background: var(--grad-brand); border-radius: 2px;
  box-shadow: 0 0 0 4px var(--brand-soft);
}

/* ----------  Stats Band  ---------- */
.stats-band { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; background: var(--border); border: 1px solid var(--border); border-radius: var(--r-lg); overflow: hidden; }
.stats-band .stat { background: var(--surface); padding: 36px 26px; text-align: center; }
.stats-band .stat b { display: block; font-family: var(--font-display); font-weight: 800; font-size: clamp(2rem, 3.6vw, 3rem); background: var(--grad-diamond); -webkit-background-clip: text; background-clip: text; color: transparent; line-height: 1; }
.stats-band .stat span { display: block; margin-top: 10px; color: var(--muted); font-size: .9rem; }

/* ----------  Pricing / Pakete  ---------- */
.price-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.price-card {
  display: flex; flex-direction: column;
  padding: 32px 26px; border-radius: var(--r-lg);
  background: var(--surface); border: 1px solid var(--border);
  transition: transform .4s var(--ease-out), border-color .4s, box-shadow .4s;
}
.price-card:hover { transform: translateY(-6px); border-color: var(--border-2); box-shadow: var(--shadow); }
.price-card.is-featured { border-color: var(--border-brand); background: linear-gradient(180deg, rgba(230,0,126,.09), var(--surface) 40%); box-shadow: var(--shadow-brand); }
.price-card__tag { align-self: flex-start; font-size: .72rem; font-weight: 600; letter-spacing: .14em; text-transform: uppercase; color: var(--brand-bright); padding: 5px 12px; border-radius: var(--r-pill); background: var(--brand-soft); border: 1px solid var(--border-brand); margin-bottom: 18px; }
.price-card h3 { font-size: 1.35rem; }
.price-card__dur { color: var(--muted); font-size: .9rem; margin-top: 4px; }
.price-card__price { font-family: var(--font-display); font-weight: 800; font-size: 2.1rem; margin: 20px 0 6px; }
.price-card__price small { font-size: .9rem; font-weight: 500; color: var(--muted); }
.price-card .check-list { margin: 20px 0 26px; }
.price-card .check-list li { font-size: .9rem; padding-left: 26px; }
.price-card .check-list li::before { width: 9px; height: 9px; box-shadow: none; }
.price-card .btn { margin-top: auto; }

/* ----------  Produkte Grid  ---------- */
.prod-card {
  padding: 26px; border-radius: var(--r-lg);
  background: var(--surface); border: 1px solid var(--border);
  transition: transform .4s var(--ease-out), border-color .4s, background .4s;
}
.prod-card:hover { transform: translateY(-5px); border-color: var(--border-brand); background: var(--surface-2); }
.prod-card__head { display: flex; align-items: center; gap: 13px; margin-bottom: 16px; }
.prod-card__badge { font-family: var(--font-display); font-weight: 800; font-size: .9rem; letter-spacing: .04em; color: #fff; padding: 8px 12px; border-radius: 10px; background: var(--grad-brand); box-shadow: var(--shadow-brand); white-space: nowrap; }
.prod-card h3 { font-size: 1.15rem; }
.prod-card ul { display: grid; gap: 9px; }
.prod-card li { position: relative; padding-left: 22px; font-size: .9rem; color: var(--text-soft); }
.prod-card li::before { content: ""; position: absolute; left: 0; top: .55em; width: 7px; height: 7px; transform: rotate(45deg); background: var(--brand); border-radius: 1px; }
.prod-card p { font-size: .92rem; }

/* ----------  Gallery  ---------- */
.gallery { display: grid; grid-template-columns: repeat(4, 1fr); grid-auto-rows: 220px; gap: 14px; }
.gallery__item { position: relative; overflow: hidden; border-radius: var(--r); border: 1px solid var(--border); cursor: zoom-in; }
.gallery__item img { width: 100%; height: 100%; object-fit: cover; transition: transform .7s var(--ease-out); }
.gallery__item::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 55%, rgba(8,8,10,.55)); opacity: 0; transition: opacity .4s; }
.gallery__item:hover img { transform: scale(1.08); }
.gallery__item:hover::after { opacity: 1; }
.gallery__item.tall { grid-row: span 2; }
.gallery__item.wide { grid-column: span 2; }

/* Lightbox */
.lightbox { position: fixed; inset: 0; z-index: 200; display: grid; place-items: center; padding: 5vw; background: rgba(4,4,6,.92); backdrop-filter: blur(10px); opacity: 0; visibility: hidden; transition: opacity .35s; }
.lightbox.is-open { opacity: 1; visibility: visible; }
.lightbox img { max-width: 92vw; max-height: 88vh; border-radius: var(--r); box-shadow: var(--shadow-lg); }
.lightbox__close { position: absolute; top: 24px; right: 24px; width: 50px; height: 50px; border-radius: 50%; border: 1px solid var(--border-2); background: rgba(255,255,255,.06); display: grid; place-items: center; }
.lightbox__close svg { width: 22px; height: 22px; }
.lightbox__nav { position: absolute; top: 50%; transform: translateY(-50%); width: 54px; height: 54px; border-radius: 50%; border: 1px solid var(--border-2); background: rgba(255,255,255,.06); display: grid; place-items: center; transition: background .3s; }
.lightbox__nav:hover { background: var(--brand); }
.lightbox__nav.prev { left: 20px; } .lightbox__nav.next { right: 20px; }

/* ----------  CTA Band  ---------- */
.cta-band { position: relative; overflow: hidden; border-radius: var(--r-xl); padding: clamp(44px, 6vw, 76px); border: 1px solid var(--border-brand); background: linear-gradient(120deg, rgba(230,0,126,.16), rgba(20,22,32,.6)); }
.cta-band::before { content: ""; position: absolute; right: -10%; top: -40%; width: 480px; height: 480px; background: radial-gradient(circle, var(--brand-glow), transparent 65%); filter: blur(10px); pointer-events: none; }
.cta-band__inner { position: relative; display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 30px; }
.cta-band h2 { max-width: 16ch; }
.cta-band p { margin-top: 12px; max-width: 46ch; }
.cta-band__actions { display: flex; flex-wrap: wrap; gap: 14px; }

/* ----------  Page Hero (Unterseiten)  ---------- */
.page-hero { position: relative; padding: calc(var(--header-h) + clamp(56px,8vw,110px)) 0 clamp(48px,7vw,90px); overflow: hidden; }
.page-hero__media { position: absolute; inset: 0; z-index: -2; }
.page-hero__media img { width: 100%; height: 100%; object-fit: cover; object-position: center 35%; }
.page-hero__media::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(8,8,10,.86) 0%, rgba(8,8,10,.7) 55%, var(--bg) 100%), linear-gradient(90deg, rgba(8,8,10,.7), transparent 70%); }
.page-hero__inner { max-width: 760px; }
.breadcrumb { display: flex; align-items: center; gap: 9px; font-size: .84rem; color: var(--muted); margin-bottom: 22px; }
.breadcrumb a:hover { color: var(--brand-bright); }
.breadcrumb svg { width: 14px; height: 14px; opacity: .6; }
.page-hero h1 { margin-bottom: 18px; }
.page-hero__lead { font-size: clamp(1.05rem, 1.5vw, 1.22rem); max-width: 600px; color: var(--text-soft); }

/* ----------  Info Cards (Kontakt)  ---------- */
.info-card { padding: 30px; border-radius: var(--r-lg); background: var(--surface); border: 1px solid var(--border); height: 100%; transition: border-color .3s, transform .3s; }
.info-card:hover { border-color: var(--border-brand); transform: translateY(-4px); }
.info-card__icon { width: 52px; height: 52px; border-radius: 14px; display: grid; place-items: center; background: var(--brand-soft); border: 1px solid var(--border-brand); margin-bottom: 18px; }
.info-card__icon svg { width: 26px; height: 26px; color: var(--brand-bright); }
.info-card h3 { font-size: 1.2rem; margin-bottom: 8px; }
.info-card a { color: var(--text-soft); }
.info-card a:hover { color: var(--brand-bright); }

/* ----------  Form  ---------- */
.form { display: grid; gap: 18px; }
.form__row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.field { display: grid; gap: 8px; }
.field label { font-size: .86rem; font-weight: 600; color: var(--text-soft); font-family: var(--font-display); }
.field input, .field textarea {
  width: 100%; padding: 14px 16px; border-radius: var(--r-sm);
  background: var(--bg-2); border: 1px solid var(--border-2); color: var(--text);
  transition: border-color .25s, box-shadow .25s, background .25s;
}
.field textarea { min-height: 150px; resize: vertical; }
.field input:focus, .field textarea:focus { outline: none; border-color: var(--brand); box-shadow: 0 0 0 4px var(--brand-soft); background: var(--surface); }
.field input::placeholder, .field textarea::placeholder { color: var(--muted-2); }
.form__consent { display: flex; align-items: flex-start; gap: 12px; font-size: .88rem; color: var(--muted); }
.form__consent input { width: 20px; height: 20px; margin-top: 2px; accent-color: var(--brand); flex-shrink: 0; }
.form__consent a { color: var(--brand-bright); }
.form__note { font-size: .85rem; color: var(--muted); }
.form-status { padding: 14px 16px; border-radius: var(--r-sm); font-size: .92rem; display: none; }
.form-status.ok { display: block; background: rgba(46,204,113,.1); border: 1px solid rgba(46,204,113,.35); color: #7ee2a8; }
.form-status.err { display: block; background: rgba(231,76,60,.1); border: 1px solid rgba(231,76,60,.35); color: #f0928a; }

/* ----------  Legal / Prose  ---------- */
.prose { max-width: 820px; }
.prose h2 { font-size: 1.5rem; margin: 42px 0 14px; }
.prose h3 { font-size: 1.15rem; margin: 28px 0 10px; }
.prose p, .prose li { color: var(--text-soft); margin-bottom: 12px; font-size: 1rem; }
.prose a { color: var(--brand-bright); text-decoration: underline; text-underline-offset: 3px; }
.prose ul { list-style: disc; padding-left: 22px; }
.prose strong { color: #fff; }

/* ----------  Footer  ---------- */
.footer { border-top: 1px solid var(--border); background: var(--bg-2); padding-top: clamp(56px, 7vw, 84px); }
.footer__grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.2fr; gap: clamp(30px, 4vw, 56px); padding-bottom: 54px; }
.footer__brand .brand { margin-bottom: 20px; }
.footer__brand p { font-size: .95rem; max-width: 34ch; }
.footer__social { display: flex; gap: 12px; margin-top: 22px; }
.footer__social a { width: 42px; height: 42px; border-radius: 11px; border: 1px solid var(--border-2); display: grid; place-items: center; transition: background .3s, border-color .3s, transform .3s; }
.footer__social a:hover { background: var(--brand); border-color: var(--brand); transform: translateY(-3px); }
.footer__social svg { width: 19px; height: 19px; }
.footer__col h4 { font-family: var(--font-display); font-size: .8rem; letter-spacing: .16em; text-transform: uppercase; color: var(--muted); margin-bottom: 20px; }
.footer__col ul { display: grid; gap: 11px; }
.footer__col a { font-size: .95rem; color: var(--text-soft); transition: color .25s, padding .25s; }
.footer__col a:hover { color: var(--brand-bright); padding-left: 5px; }
.footer__contact li { display: flex; gap: 12px; font-size: .95rem; color: var(--text-soft); margin-bottom: 13px; }
.footer__contact svg { width: 18px; height: 18px; color: var(--brand-bright); flex-shrink: 0; margin-top: 3px; }
.footer__bottom { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 16px; padding: 24px 0; border-top: 1px solid var(--border); font-size: .85rem; color: var(--muted); }
.footer__bottom a { color: var(--muted); }
.footer__bottom a:hover { color: var(--text); }
.footer__legal { display: flex; gap: 22px; flex-wrap: wrap; }

/* ----------  Scroll Reveal  ---------- */
[data-reveal] { opacity: 0; transform: translateY(28px); transition: opacity .8s var(--ease-out), transform .8s var(--ease-out); }
[data-reveal].is-in { opacity: 1; transform: none; }
[data-reveal][data-delay="1"] { transition-delay: .09s; }
[data-reveal][data-delay="2"] { transition-delay: .18s; }
[data-reveal][data-delay="3"] { transition-delay: .27s; }
[data-reveal][data-delay="4"] { transition-delay: .36s; }

/* ----------  Diamond Divider  ---------- */
.divider-diamond { display: flex; align-items: center; justify-content: center; gap: 14px; margin: 0 auto; color: var(--brand); }
.divider-diamond::before, .divider-diamond::after { content: ""; height: 1px; width: min(120px, 20vw); background: linear-gradient(90deg, transparent, var(--border-2)); }
.divider-diamond svg { width: 16px; height: 16px; }

/* ==========================================================================
   Responsive
   ========================================================================== */
@media (max-width: 1080px) {
  .grid--4 { grid-template-columns: repeat(2, 1fr); }
  .price-grid { grid-template-columns: repeat(2, 1fr); }
  .footer__grid { grid-template-columns: 1fr 1fr; }
  .footer__brand { grid-column: 1 / -1; }
}
@media (max-width: 900px) {
  :root { --header-h: 72px; }
  .nav__links, .nav__phone span { display: none; }
  .nav__toggle { display: block; }

  /* Mobile Nav Panel */
  .nav__links {
    position: fixed; inset: var(--header-h) 0 0 0; z-index: 80;
    flex-direction: column; align-items: stretch; justify-content: flex-start; gap: 4px;
    padding: 26px var(--gutter); overflow-y: auto;
    background: rgba(8,8,10,.98); backdrop-filter: blur(20px);
    transform: translateX(100%); transition: transform .45s var(--ease);
  }
  body.nav-open .nav__links { display: flex; transform: translateX(0); }
  .nav__links > a, .nav__item > button { width: 100%; justify-content: space-between; padding: 15px 16px; font-size: 1.05rem; border-radius: var(--r-sm); }
  .nav__item { width: 100%; }
  .nav__menu { position: static; opacity: 1; visibility: visible; transform: none; box-shadow: none; background: transparent; border: none; padding: 4px 0 8px 14px; min-width: 0; display: none; }
  .nav__item.is-open .nav__menu { display: block; }
  .nav__item.is-open > button svg { transform: rotate(180deg); }
  .split { grid-template-columns: 1fr; }
  .split--reverse .split__media { order: 0; }
  .stats-band { grid-template-columns: repeat(2, 1fr); }
  .gallery { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 180px; }
}
@media (max-width: 680px) {
  body { font-size: 16px; }
  .grid--3, .grid--2, .grid--4 { grid-template-columns: 1fr; }
  .price-grid { grid-template-columns: 1fr; }
  .form__row { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr; }
  .hero__actions { flex-direction: column; align-items: stretch; }
  .hero__actions .btn { width: 100%; }
  .cta-band__actions { width: 100%; }
  .cta-band__actions .btn { flex: 1; }
  .gallery { grid-template-columns: 1fr 1fr; grid-auto-rows: 150px; }
  .gallery__item.wide { grid-column: span 2; }
  .stats-band { grid-template-columns: 1fr 1fr; }
}
