/* =========================================================
   Pondruff Polier & PVD Beschichtungsservice
   Premium surface-finishing site — dark chrome aesthetic
   ========================================================= */

/* ---------- Design tokens ---------- */
:root {
  /* Surfaces — deep cinematic carbon (neutral/warm, no cool blue cast) */
  --obsidian: #050505;
  --graphite: #0d0c0e;
  --graphite-2: #151316;
  --steel: #302d31;
  --steel-soft: #1c1a1d;

  /* Metal / chrome */
  --chrome-hi: #f6f8fa;
  --chrome-mid: #aeb4bd;
  --chrome-lo: #767c86;

  /* Brand red (vivid, glossy) */
  --red: #e2001a;
  --red-bright: #ff2630;
  --red-deep: #7a0a12;
  --beam: rgba(226, 0, 26, 0.55);

  /* Text */
  --ink: #eef0f3;
  --ink-soft: #b6bac1;
  --ink-mute: #868b94;

  /* Effects */
  --radius: 14px;
  --radius-sm: 10px;
  --hair: rgba(255, 255, 255, 0.08);
  --hair-strong: rgba(255, 255, 255, 0.14);
  --shadow: 0 30px 60px -25px rgba(0, 0, 0, 0.8);
  --maxw: 1200px;

  --chrome-text: linear-gradient(
    175deg,
    #ffffff 0%,
    #cfd4da 28%,
    #8c929c 50%,
    #f1f3f5 64%,
    #a7adb6 84%,
    #d8dce1 100%
  );

  --ease: cubic-bezier(0.2, 0.7, 0.2, 1);
  --ease-out: cubic-bezier(0.23, 1, 0.32, 1);

  --font-display: "Saira Condensed", "Archivo", system-ui, sans-serif;
  --font-body: "IBM Plex Sans", system-ui, sans-serif;
  --font-mono: "IBM Plex Mono", ui-monospace, monospace;
}

/* ---------- Reset ---------- */
*,
*::before,
*::after { box-sizing: border-box; }

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

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.65;
  color: var(--ink-soft);
  background:
    radial-gradient(1200px 760px at 50% -6%, rgba(226, 0, 26, 0.16), transparent 60%),
    radial-gradient(900px 600px at 100% 8%, rgba(226, 0, 26, 0.11), transparent 55%),
    radial-gradient(800px 600px at 0% 30%, rgba(226, 0, 26, 0.09), transparent 55%),
    var(--obsidian);
  background-attachment: fixed;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

/* Living ambient red glow — slow drift + breathe behind everything (GPU only) */
body::before {
  content: ""; position: fixed; inset: -25%; z-index: -1; pointer-events: none;
  background:
    radial-gradient(38% 34% at 28% 18%, rgba(226, 0, 26, 0.16), transparent 62%),
    radial-gradient(44% 40% at 82% 72%, rgba(255, 38, 48, 0.12), transparent 62%);
  will-change: transform, opacity;
  animation: ambientDrift 18s ease-in-out infinite alternate;
}
@keyframes ambientDrift {
  0%   { transform: translate3d(-2%, -1%, 0) scale(1);    opacity: 0.75; }
  100% { transform: translate3d(3%, 2.5%, 0) scale(1.14); opacity: 1; }
}
@media (prefers-reduced-motion: reduce) { body::before { animation: none; } }

img { max-width: 100%; display: block; }
figure { margin: 0; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; }

h1, h2, h3 {
  font-family: var(--font-display);
  color: var(--ink);
  line-height: 1.04;
  letter-spacing: -0.02em;
  margin: 0;
  font-weight: 800;
  overflow-wrap: break-word; /* Notfall-Sicherung */
  hyphens: manual;           /* keine Auto-Trennung; bricht nur an gesetzten &shy; (Morphem-Grenzen) */
  text-wrap: balance;        /* ausgewogene Zeilenlängen */
}

/* ---------- Layout helpers ---------- */
.wrap {
  width: 100%;
  max-width: var(--maxw);
  margin-inline: auto;
  padding-inline: clamp(20px, 5vw, 48px);
}

.section {
  padding-block: clamp(72px, 11vw, 140px);
  position: relative;
}

.eyebrow {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.34em;
  text-transform: uppercase;
  color: var(--chrome-mid);
  display: inline-flex;
  align-items: center;
  gap: 0.7em;
  margin: 0 0 22px;
}
.eyebrow::before {
  content: "";
  width: 28px;
  height: 1px;
  background: linear-gradient(90deg, var(--red), transparent);
}

.section-head { max-width: 640px; margin-bottom: 56px; }
.section-head h2 {
  font-size: clamp(2rem, 4.4vw, 3.3rem);
}
.section-head p {
  margin: 20px 0 0;
  font-size: 1.08rem;
  color: var(--ink-soft);
}

/* Chrome text treatment — the signature element */
.chrome {
  background: var(--chrome-text);
  background-size: 100% 220%;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
  animation: chromeShift 9s ease-in-out infinite;
}
@keyframes chromeShift {
  0%, 100% { background-position: 50% 0%; }
  50% { background-position: 50% 100%; }
}
@media (prefers-reduced-motion: reduce) {
  .chrome { animation: none; }
}

.accent { color: var(--red-bright); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6em;
  padding: 15px 28px;
  border-radius: 999px;
  font-family: var(--font-mono);
  font-size: 0.82rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 500;
  border: 1px solid transparent;
  transition: transform 0.4s var(--ease-out), box-shadow 0.4s var(--ease-out),
    background 0.3s var(--ease), border-color 0.3s var(--ease);
  min-height: 48px;
}
.btn svg { width: 16px; height: 16px; transition: transform 0.4s var(--ease-out); }
.btn-primary:hover svg, .btn-ghost:hover svg { transform: translateX(3px); }

.btn-primary {
  background: linear-gradient(180deg, var(--red-bright), var(--red) 55%, var(--red-deep));
  color: #fff;
  box-shadow: 0 14px 30px -12px rgba(225, 30, 39, 0.7),
    inset 0 1px 0 rgba(255, 255, 255, 0.25);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 20px 40px -12px rgba(225, 30, 39, 0.85), inset 0 1px 0 rgba(255,255,255,0.3); }

.btn-ghost {
  background: rgba(255, 255, 255, 0.03);
  border-color: var(--hair-strong);
  color: var(--ink);
}
.btn-ghost:hover { border-color: var(--chrome-mid); transform: translateY(-2px); background: rgba(255,255,255,0.06); }

.btn-primary:active, .btn-ghost:active { transform: translateY(0) scale(0.96); transition-duration: 0.09s; }

.btn:focus-visible,
a:focus-visible,
input:focus-visible,
textarea:focus-visible,
button:focus-visible {
  outline: 2px solid var(--red-bright);
  outline-offset: 3px;
}

/* ---------- Header ---------- */
.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  transition: background 0.35s var(--ease), border-color 0.35s var(--ease), backdrop-filter 0.35s;
  border-bottom: 1px solid transparent;
}
.site-header.scrolled {
  background: rgba(11, 11, 13, 0.78);
  backdrop-filter: blur(14px) saturate(140%);
  border-bottom-color: var(--hair);
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  height: 76px;
}
.brand { display: inline-flex; align-items: center; gap: 13px; }
.brand img { width: 40px; height: 40px; }
.brand-text { display: flex; flex-direction: column; line-height: 1.05; }
.brand-text strong {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1rem;
  letter-spacing: 0.01em;
  color: var(--ink);
}
.brand-text span {
  font-family: var(--font-mono);
  font-size: 0.6rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--chrome-lo);
}

.nav-links { display: flex; align-items: center; gap: 6px; }
.nav-links a {
  font-family: var(--font-mono);
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-soft);
  padding: 10px 14px;
  border-radius: 8px;
  transition: color 0.2s, background 0.2s;
}
.nav-links a:hover { color: var(--ink); background: rgba(255,255,255,0.04); }
.nav-links a[aria-current="page"] { color: var(--ink); }
.nav-links a[aria-current="page"]::after {
  content: "";
  display: block;
  height: 2px;
  margin-top: 5px;
  background: linear-gradient(90deg, var(--red), transparent);
  border-radius: 2px;
}
.nav-cta { margin-left: 8px; }
.nav-cta[aria-current="page"]::after { display: none; }

.nav-toggle {
  display: none;
  background: none;
  border: 1px solid var(--hair-strong);
  border-radius: 9px;
  width: 46px; height: 46px;
  color: var(--ink);
  align-items: center; justify-content: center;
}
.nav-toggle svg { width: 22px; height: 22px; }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  padding-top: 76px;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    radial-gradient(120% 80% at 78% 8%, rgba(225, 30, 39, 0.22), transparent 55%),
    radial-gradient(90% 70% at 12% 100%, rgba(120, 130, 145, 0.12), transparent 60%),
    var(--obsidian);
}
/* brushed-metal sheen sweeping across the hero */
.hero-bg::after {
  content: "";
  position: absolute;
  inset: -20% -10%;
  background: linear-gradient(115deg, transparent 38%, rgba(255,255,255,0.05) 48%, rgba(255,255,255,0.12) 50%, rgba(255,255,255,0.05) 52%, transparent 62%);
  background-size: 300% 100%;
  animation: sheen 11s linear infinite;
  pointer-events: none;
}
@keyframes sheen {
  0% { background-position: 120% 0; }
  100% { background-position: -120% 0; }
}
@media (prefers-reduced-motion: reduce) {
  .hero-bg::after { animation: none; }
}
.hero-grid {
  position: absolute; inset: 0; z-index: 0;
  background-image:
    linear-gradient(var(--hair) 1px, transparent 1px),
    linear-gradient(90deg, var(--hair) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(110% 90% at 50% 0%, #000 30%, transparent 75%);
  opacity: 0.5;
}

/* Cinematic video hero */
.hero-video {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; object-position: 50% 38%;
  z-index: 0; will-change: transform; background: var(--obsidian);
  filter: brightness(0.46) contrast(1.04) saturate(1.05);
}
.hero--video .hero-bg { display: none; }
.hero-veil {
  position: absolute; inset: 0; z-index: 1; pointer-events: none; will-change: opacity;
  background:
    radial-gradient(70% 55% at 86% 8%, rgba(225, 30, 39, 0.26), transparent 55%),
    linear-gradient(90deg, rgba(6, 6, 8, 0.94) 0%, rgba(6, 6, 8, 0.66) 38%, rgba(6, 6, 8, 0.18) 70%, rgba(6, 6, 8, 0.05) 100%),
    linear-gradient(180deg, rgba(6, 6, 8, 0.55) 0%, rgba(6, 6, 8, 0.18) 26%, rgba(6, 6, 8, 0.5) 68%, rgba(6, 6, 8, 0.92) 100%);
}
.hero--video .hero-grid { z-index: 1; opacity: 0.35; }
.hero--video .hero h1,
.hero--video .hero-lead { text-shadow: 0 2px 34px rgba(0, 0, 0, 0.55); }
.hero--video .hero-stats { border-top-color: rgba(255, 255, 255, 0.16); }
@media (prefers-reduced-motion: reduce) {
  .hero-video { transform: none !important; }
}

.hero-inner { position: relative; z-index: 2; max-width: 960px; padding-block: 32px; }
.hero h1 {
  font-size: clamp(2.6rem, 6vw, 5rem);
  font-weight: 800;
  letter-spacing: -0.035em;
  margin-bottom: 24px;
}
.hero h1 .line { display: block; }
.hero-lead {
  font-size: clamp(1.02rem, 1.7vw, 1.25rem);
  color: var(--ink-soft);
  max-width: 600px;
  margin: 0 0 30px;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; }

.hero-stats {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(26px, 4vw, 56px);
  margin-top: 44px;
  padding-top: 28px;
  border-top: 1px solid var(--hair);
}
.hero-stats .stat .num {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  color: var(--ink);
  letter-spacing: -0.03em;
}
.hero-stats .stat .num span { color: var(--red-bright); }
.hero-stats .stat .lbl {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-mute);
  margin-top: 4px;
}

.scroll-cue {
  position: absolute;
  bottom: 26px; left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  font-family: var(--font-mono);
  font-size: 0.62rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--ink-mute);
  display: flex; flex-direction: column; align-items: center; gap: 10px;
}
.scroll-cue .bar { width: 1px; height: 40px; background: linear-gradient(var(--chrome-mid), transparent); }

/* ---------- Marquee trust strip ---------- */
.strip {
  border-block: 1px solid var(--hair);
  background: var(--graphite);
  overflow: hidden;
}
.strip-track {
  display: flex;
  gap: 56px;
  padding-block: 20px;
  white-space: nowrap;
  width: max-content;
  animation: marquee 32s linear infinite;
}
@keyframes marquee { to { transform: translateX(-50%); } }
@media (prefers-reduced-motion: reduce) {
  .strip-track { animation: none; flex-wrap: wrap; width: auto; justify-content: center; }
}
.strip-item {
  font-family: var(--font-mono);
  font-size: 0.8rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--chrome-lo);
  display: inline-flex; align-items: center; gap: 14px;
}
.strip-item::after { content: "◆"; color: var(--red); font-size: 0.6rem; }

/* ---------- Services ---------- */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
}
.card {
  position: relative;
  background: linear-gradient(180deg, var(--graphite-2), var(--graphite));
  border: 1px solid var(--hair);
  border-radius: var(--radius);
  padding: 34px 30px 36px;
  overflow: hidden;
  transition: transform 0.35s var(--ease), border-color 0.35s var(--ease), box-shadow 0.35s var(--ease);
}
.card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 2px;
  background: linear-gradient(90deg, var(--red), transparent 60%);
  opacity: 0;
  transition: opacity 0.35s var(--ease);
}
.card:hover {
  transform: translateY(-6px);
  border-color: var(--hair-strong);
  box-shadow: var(--shadow);
}
.card:hover::before { opacity: 1; }

.card-icon {
  width: 52px; height: 52px;
  border-radius: 12px;
  display: grid; place-items: center;
  background: radial-gradient(120% 120% at 30% 20%, rgba(255,255,255,0.08), rgba(255,255,255,0.02));
  border: 1px solid var(--hair-strong);
  margin-bottom: 22px;
}
.card-icon svg { width: 26px; height: 26px; stroke: var(--chrome-hi); }
.card h3 { font-size: 1.32rem; margin-bottom: 12px; font-weight: 700; }
.card p { margin: 0; font-size: 0.98rem; color: var(--ink-soft); }
.card .tag {
  display: inline-block;
  margin-top: 18px;
  font-family: var(--font-mono);
  font-size: 0.68rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--chrome-lo);
}

/* ---------- Process (numbered sequence) ---------- */
.process { background: var(--graphite); border-block: 1px solid var(--hair); }
.process-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  counter-reset: step;
}
.step {
  padding: 38px clamp(20px, 3vw, 40px);
  border-left: 1px solid var(--hair);
  position: relative;
}
.step:first-child { border-left: none; }
.step .idx {
  font-family: var(--font-mono);
  font-size: 0.8rem;
  letter-spacing: 0.2em;
  color: var(--red-bright);
  display: block;
  margin-bottom: 28px;
}
.step h3 { font-size: 1.45rem; margin-bottom: 12px; }
.step p { margin: 0; font-size: 0.98rem; }

/* ---------- Coatings / portfolio ---------- */
.coatings-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
}
.coat {
  border: 1px solid var(--hair);
  border-radius: var(--radius);
  background:
    radial-gradient(140% 120% at 100% 0%, rgba(225,30,39,0.08), transparent 55%),
    linear-gradient(180deg, var(--graphite-2), var(--graphite));
  padding: 32px 30px;
  transition: transform 0.35s var(--ease), border-color 0.35s var(--ease);
}
.coat:hover { transform: translateY(-5px); border-color: var(--hair-strong); }
.coat .badge {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.6rem;
  letter-spacing: -0.02em;
  margin-bottom: 14px;
}
.coat h3 { font-size: 1.12rem; font-weight: 600; color: var(--ink); margin-bottom: 10px; font-family: var(--font-body); letter-spacing: 0; }
.coat p { margin: 0 0 20px; font-size: 0.95rem; }
.coat ul { list-style: none; margin: 0; padding: 18px 0 0; border-top: 1px solid var(--hair); display: grid; gap: 10px; }
.coat li {
  font-family: var(--font-mono);
  font-size: 0.78rem;
  letter-spacing: 0.04em;
  color: var(--ink-soft);
  display: flex; align-items: center; gap: 10px;
}
.coat li::before { content: ""; width: 6px; height: 6px; background: var(--red); border-radius: 50%; flex: none; }

/* ---------- About / split ---------- */
.about-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(36px, 6vw, 80px);
  align-items: center;
}
.about-grid > *,
.contact-grid > *,
.section-head { min-width: 0; }
.about-copy p { font-size: 1.05rem; margin: 0 0 20px; }
.about-copy p:last-child { margin-bottom: 0; }
.about-figure {
  position: relative;
  border-radius: var(--radius);
  border: 1px solid var(--hair);
  background:
    conic-gradient(from 210deg at 50% 50%, #16171b, #23262d, #14151a, #2a2d34, #16171b);
  aspect-ratio: 4 / 5;
  display: grid;
  place-items: center;
  overflow: hidden;
}
.about-figure::before {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(125deg, transparent 40%, rgba(255,255,255,0.14) 50%, transparent 60%);
  background-size: 250% 100%;
  animation: sheen 8s linear infinite;
}
@media (prefers-reduced-motion: reduce) { .about-figure::before { animation: none; } }
.about-figure img { width: 56%; position: relative; z-index: 1; filter: drop-shadow(0 24px 40px rgba(0,0,0,0.6)); }

.facts { list-style: none; margin: 28px 0 0; padding: 0; display: grid; gap: 14px; }
.facts li { display: flex; gap: 14px; align-items: flex-start; font-size: 1rem; color: var(--ink-soft); }
.facts svg { width: 22px; height: 22px; stroke: var(--red-bright); flex: none; margin-top: 2px; }

/* ---------- Benefits ---------- */
.benefits { background: var(--graphite); border-block: 1px solid var(--hair); }
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 22px;
}
.benefit { padding: 4px; }
.benefit .b-icon {
  width: 44px; height: 44px; border-radius: 11px;
  display: grid; place-items: center;
  background: linear-gradient(180deg, rgba(225,30,39,0.18), rgba(225,30,39,0.04));
  border: 1px solid rgba(225,30,39,0.3);
  margin-bottom: 18px;
}
.benefit .b-icon svg { width: 22px; height: 22px; stroke: var(--red-bright); }
.benefit h3 { font-size: 1.12rem; margin-bottom: 8px; font-weight: 700; }
.benefit p { margin: 0; font-size: 0.95rem; }

/* ---------- Feature sections (alternating content + media) ---------- */
.feature-head {
  display: grid;
  grid-template-columns: 1.6fr auto;
  gap: 28px 40px;
  align-items: end;
  margin-bottom: 44px;
}
.feature-head .copy { max-width: 760px; }
.feature-head h2 { font-size: clamp(1.85rem, 3.4vw, 2.7rem); margin-bottom: 18px; }
.feature-head .lead { margin: 0; font-size: 1.05rem; color: var(--ink-soft); }
.feature-head .feature-cta { display: flex; gap: 12px; flex-wrap: wrap; align-self: center; }

.feature-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  align-items: stretch;
}

/* Media figure (photo slot with caption) */
.media {
  position: relative;
  border-radius: var(--radius);
  border: 1px solid var(--hair);
  overflow: hidden;
  min-height: 360px;
  background:
    radial-gradient(130% 110% at 25% 12%, #262931, #15161a 68%),
    conic-gradient(from 200deg at 50% 50%, #16171b, #21242b, #141519, #2a2d34, #16171b);
}
.media img { width: 100%; height: 100%; object-fit: cover; position: absolute; inset: 0; }
.media .ph {
  position: absolute; inset: 0; display: grid; place-items: center; opacity: 0.22;
}
.media .ph svg { width: 72px; height: 72px; stroke: var(--chrome-mid); fill: none; }
.media .ph-sheen {
  position: absolute; inset: 0;
  background: linear-gradient(120deg, transparent 42%, rgba(255,255,255,0.10) 50%, transparent 58%);
  background-size: 260% 100%;
  animation: sheen 9s linear infinite;
  pointer-events: none;
}
@media (prefers-reduced-motion: reduce) { .media .ph-sheen { animation: none; } }
.media .cap {
  position: absolute; left: 16px; right: 16px; bottom: 16px;
  background: rgba(11, 11, 13, 0.62);
  backdrop-filter: blur(10px) saturate(140%);
  border: 1px solid var(--hair-strong);
  border-radius: 12px;
  padding: 14px 16px;
}
.media .cap strong {
  display: block; color: var(--ink);
  font-family: var(--font-display); font-weight: 700; font-size: 1.04rem;
}
.media .cap span {
  font-family: var(--font-mono); font-size: 0.66rem; letter-spacing: 0.16em;
  text-transform: uppercase; color: var(--chrome-mid);
}

/* Info card with benefit items */
.info-card {
  background: linear-gradient(180deg, var(--graphite-2), var(--graphite));
  border: 1px solid var(--hair);
  border-radius: var(--radius);
  padding: clamp(24px, 3vw, 34px);
  display: flex; flex-direction: column; gap: 14px;
}
.info-card > h3 { font-size: 1.28rem; margin-bottom: 4px; }
.b-item {
  border: 1px solid var(--hair);
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.02);
  padding: 16px 18px;
  transition: border-color 0.25s var(--ease), background 0.25s var(--ease);
}
.b-item:hover { border-color: var(--hair-strong); background: rgba(255,255,255,0.035); }
.b-item h4 {
  display: flex; gap: 11px; align-items: center;
  font-family: var(--font-display); font-weight: 700; font-size: 1.02rem;
  color: var(--ink); margin: 0 0 6px; letter-spacing: -0.01em;
}
.b-item h4::before { content: ""; width: 9px; height: 9px; border-radius: 2px; background: var(--red); flex: none; }
.b-item p { margin: 0; font-size: 0.93rem; color: var(--ink-soft); }
.info-card .more {
  margin-top: 4px; align-self: flex-start;
  font-family: var(--font-mono); font-size: 0.74rem; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--red-bright);
  display: inline-flex; gap: 9px; align-items: center;
}
.info-card .more:hover { color: var(--chrome-hi); }
.info-card .more svg { width: 14px; height: 14px; }
.info-card .tip {
  margin: 6px 0 0; font-size: 0.9rem; color: var(--ink-mute);
  padding-top: 14px; border-top: 1px solid var(--hair);
}

/* Card "Zur Seite" link */
.card-link {
  margin-top: 22px;
  display: inline-flex; align-items: center; gap: 9px;
  font-family: var(--font-mono); font-size: 0.72rem; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--ink);
  border: 1px solid var(--hair-strong); padding: 10px 16px; border-radius: 999px;
  transition: border-color 0.25s var(--ease), color 0.25s var(--ease);
}
.card-link:hover { border-color: var(--red); color: var(--red-bright); }
.card-link svg { width: 14px; height: 14px; }

/* Before / after */
.ba-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-top: 24px; }
.ba-grid .media { min-height: 300px; }
.ba-tag {
  position: absolute; top: 16px; left: 16px;
  font-family: var(--font-mono); font-size: 0.64rem; letter-spacing: 0.16em;
  text-transform: uppercase; padding: 7px 12px; border-radius: 999px;
  background: rgba(11,11,13,0.7); border: 1px solid var(--hair-strong); color: var(--chrome-mid);
}
.ba-tag.after { background: rgba(225,30,39,0.16); border-color: rgba(225,30,39,0.4); color: #ffb4b8; }

/* Page hero (subpages) */
.page-hero {
  position: relative;
  padding: clamp(120px, 16vh, 180px) 0 clamp(48px, 7vw, 80px);
  overflow: hidden;
  border-bottom: 1px solid var(--hair);
}
.page-hero .hero-bg, .page-hero .hero-grid { position: absolute; inset: 0; z-index: 0; }
.page-hero .inner { position: relative; z-index: 2; max-width: 820px; }
.page-hero h1 { font-size: clamp(2.3rem, 5vw, 4rem); margin-bottom: 20px; }
.page-hero .lead { font-size: clamp(1.05rem, 1.8vw, 1.25rem); color: var(--ink-soft); max-width: 640px; margin: 0; }
.breadcrumb {
  font-family: var(--font-mono); font-size: 0.68rem; letter-spacing: 0.16em;
  text-transform: uppercase; color: var(--ink-mute); margin-bottom: 22px;
  display: flex; gap: 10px; align-items: center; flex-wrap: wrap;
}
.breadcrumb a { color: var(--chrome-mid); }
.breadcrumb a:hover { color: var(--red-bright); }
.breadcrumb .sep { color: var(--steel); }

/* 4-step process row */
.steps4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.pstep {
  border: 1px solid var(--hair); border-radius: var(--radius);
  background: linear-gradient(180deg, var(--graphite-2), var(--graphite));
  padding: 26px 22px;
}
.pstep .num {
  width: 36px; height: 36px; border-radius: 10px; display: grid; place-items: center;
  font-family: var(--font-display); font-weight: 800; color: #fff;
  background: linear-gradient(180deg, var(--red-bright), var(--red-deep));
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.25); margin-bottom: 16px;
}
.pstep h3 { font-size: 1.14rem; margin-bottom: 8px; }
.pstep p { margin: 0; font-size: 0.94rem; }

/* FAQ teaser (centered band) */
.faq-teaser { border-top: 1px solid var(--hair); text-align: center; }
.faq-teaser .inner { max-width: 680px; margin-inline: auto; }
.faq-teaser h2 { font-size: clamp(2rem, 4.4vw, 3.2rem); margin-bottom: 14px; }
.faq-teaser .rule { width: 60px; height: 2px; margin: 0 auto 24px; background: linear-gradient(90deg, transparent, var(--red), transparent); }
.faq-teaser p { margin: 0 auto 30px; color: var(--ink-soft); max-width: 560px; }
.faq-teaser .dots { display: flex; gap: 10px; justify-content: center; margin-top: 30px; }
.faq-teaser .dots i { width: 7px; height: 7px; border-radius: 50%; background: var(--steel); }
.faq-teaser .dots i.on { background: var(--red); }

/* Icon heading (cards on subpages) */
.ico-h { display: flex; align-items: center; gap: 13px; margin-bottom: 16px; }
.ico-h .ic {
  width: 38px; height: 38px; flex: none; border-radius: 10px; display: grid; place-items: center;
  background: linear-gradient(180deg, rgba(225,30,39,0.18), rgba(225,30,39,0.04));
  border: 1px solid rgba(225,30,39,0.3);
}
.ico-h .ic svg { width: 20px; height: 20px; stroke: var(--red-bright); fill: none; }
.ico-h h3 { font-size: 1.32rem; }

/* Chips */
.chips { display: flex; flex-wrap: wrap; gap: 10px; margin: 4px 0 0; }
.chip {
  font-family: var(--font-mono); font-size: 0.7rem; letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--ink); border: 1px solid var(--hair-strong); border-radius: 999px; padding: 8px 14px;
  display: inline-flex; gap: 8px; align-items: center; background: rgba(255,255,255,0.02);
}
.chip::before { content: ""; width: 7px; height: 7px; border-radius: 50%; background: var(--red); flex: none; }

/* Stat boxes */
.statbox-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; margin-top: 8px; }
.statbox { border: 1px solid var(--hair); border-radius: var(--radius-sm); background: rgba(255,255,255,0.02); padding: 16px 18px; }
.statbox .lbl { font-family: var(--font-mono); font-size: 0.62rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--ink-mute); display: block; margin-bottom: 6px; }
.statbox .val { font-family: var(--font-display); font-weight: 700; font-size: 1.04rem; color: var(--ink); }
.statbox .val .accent { color: var(--red-bright); }

/* About intro card with decorative logo */
.about-split { display: grid; grid-template-columns: 1.35fr 1fr; gap: 22px; align-items: stretch; }
.about-split .about-intro { margin: 0; }
.about-split .media { min-height: 100%; }
@media (max-width: 880px) { .about-split { grid-template-columns: 1fr; } .about-split .media { min-height: 280px; } }
.about-intro { position: relative; overflow: hidden; }
.about-intro > * { position: relative; z-index: 1; }
.about-intro .deco-logo {
  position: absolute; top: 24px; right: -10px; width: 240px; max-width: 38%;
  opacity: 0.12; z-index: 0; pointer-events: none;
}

/* Two-column card area + stack */
.cols-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; align-items: start; }
.stack { display: grid; gap: 20px; }

/* values grid inside a card */
.values-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

/* Contact action card */
.contact-card { background: radial-gradient(140% 120% at 0% 0%, rgba(225,30,39,0.12), transparent 55%), linear-gradient(180deg, var(--graphite-2), var(--graphite)); }
.contact-card .actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 8px; }

/* Coating portfolio cards */
.coat-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.coat-card {
  border: 1px solid var(--hair); border-radius: var(--radius);
  background: linear-gradient(180deg, var(--graphite-2), var(--graphite));
  overflow: hidden; display: flex; flex-direction: column;
  transition: transform 0.3s var(--ease), border-color 0.3s var(--ease), box-shadow 0.3s var(--ease);
}
.coat-card:hover { transform: translateY(-5px); border-color: var(--hair-strong); box-shadow: var(--shadow); }
.coat-card .img {
  position: relative; height: 200px; display: grid; place-items: center; overflow: hidden;
  background: radial-gradient(120% 120% at 30% 10%, #20232a, #0e0f12 72%);
  border-bottom: 1px solid var(--hair);
}
.coat-card .img img {
  position: relative; z-index: 1; max-height: 78%; max-width: 84%; width: auto; object-fit: contain;
  filter: drop-shadow(0 18px 36px rgba(0,0,0,0.7));
}
.coat-card .img .badge2 {
  position: absolute; top: 14px; right: 14px; z-index: 2;
  font-family: var(--font-mono); font-size: 0.62rem; letter-spacing: 0.16em; text-transform: uppercase;
  padding: 6px 11px; border-radius: 999px; background: rgba(225,30,39,0.16);
  border: 1px solid rgba(225,30,39,0.4); color: #ffb4b8;
}
.coat-card .body { padding: 22px 22px 24px; display: flex; flex-direction: column; gap: 12px; flex: 1; }
.coat-card h3 { font-size: 1.18rem; }
.coat-card .meta { font-family: var(--font-mono); font-size: 0.72rem; letter-spacing: 0.04em; color: var(--chrome-lo); margin: -4px 0 0; }
.coat-card .desc { margin: 0; font-size: 0.95rem; color: var(--ink-soft); }
.coat-card .tags { display: flex; flex-wrap: wrap; gap: 8px; }
.coat-card .tag2 { font-family: var(--font-mono); font-size: 0.66rem; letter-spacing: 0.04em; color: var(--ink-soft); padding: 5px 10px; border-radius: 999px; background: rgba(255,255,255,0.03); border: 1px solid var(--hair); }
.coat-card .actions { display: flex; gap: 10px; flex-wrap: wrap; margin-top: auto; padding-top: 6px; }
.coat-card .actions .btn { flex: 1 1 auto; padding: 12px 16px; font-size: 0.74rem; }

/* FAQ tabs + search */
.faq-bar { display: flex; flex-wrap: wrap; gap: 18px; align-items: center; justify-content: space-between; margin-bottom: 28px; }
.faq-tabs { display: flex; flex-wrap: wrap; gap: 8px; }
.faq-tab {
  font-family: var(--font-mono); font-size: 0.72rem; letter-spacing: 0.06em; text-transform: uppercase;
  color: var(--ink-soft); background: rgba(255,255,255,0.02); border: 1px solid var(--hair-strong);
  padding: 10px 15px; border-radius: 999px; cursor: pointer; transition: all 0.2s var(--ease);
}
.faq-tab:hover { color: var(--ink); border-color: var(--chrome-mid); }
.faq-tab:active { transform: scale(0.95); transition-duration: 0.08s; }
.faq-tab[aria-selected="true"] { background: linear-gradient(180deg, var(--red-bright), var(--red-deep)); color: #fff; border-color: transparent; }
.faq-search {
  position: relative; flex: 0 1 280px;
}
.faq-search input {
  width: 100%; background: var(--obsidian); border: 1px solid var(--steel); border-radius: 999px;
  color: var(--ink); padding: 12px 16px 12px 42px; font-family: var(--font-body); font-size: 0.92rem; min-height: 46px;
}
.faq-search input:focus { outline: none; border-color: var(--red); box-shadow: 0 0 0 3px rgba(225,30,39,0.18); }
.faq-search svg { position: absolute; left: 15px; top: 50%; transform: translateY(-50%); width: 17px; height: 17px; stroke: var(--ink-mute); pointer-events: none; }
.faq-item[hidden] { display: none; }

/* FAQ accordion */
.faq-list { max-width: 820px; display: grid; gap: 14px; }
.faq-item {
  border: 1px solid var(--hair); border-radius: var(--radius);
  background: linear-gradient(180deg, var(--graphite-2), var(--graphite));
  overflow: hidden;
}
.faq-item summary {
  list-style: none; cursor: pointer; padding: 20px 22px;
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  font-family: var(--font-display); font-weight: 700; font-size: 1.08rem; color: var(--ink);
  transition: background 0.3s var(--ease), color 0.3s var(--ease);
}
.faq-item summary:hover { background: rgba(255,255,255,0.03); }
.faq-item[open] summary { color: var(--red-bright); }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary .pm {
  width: 26px; height: 26px; flex: none; position: relative;
  border: 1px solid var(--hair-strong); border-radius: 7px;
  transition: transform 0.3s var(--ease-out), border-color 0.3s var(--ease);
}
.faq-item summary:active .pm { transform: scale(0.88); transition-duration: 0.08s; }
.faq-item[open] summary .pm { border-color: var(--red); }
.faq-item summary .pm::before,
.faq-item summary .pm::after {
  content: ""; position: absolute; background: var(--red-bright);
  top: 50%; left: 50%; transform: translate(-50%, -50%);
}
.faq-item summary .pm::before { width: 11px; height: 2px; }
.faq-item summary .pm::after { width: 2px; height: 11px; transition: opacity 0.2s; }
.faq-item[open] summary .pm::after { opacity: 0; }
.faq-item .ans { padding: 0 22px 22px; color: var(--ink-soft); }
.faq-item .ans p { margin: 0; }

/* Legal / prose */
.prose { max-width: 760px; }
.prose h2 { font-size: clamp(1.4rem, 2.6vw, 1.9rem); margin: 40px 0 14px; }
.prose h2:first-child { margin-top: 0; }
.prose p { margin: 0 0 16px; }
.prose a { color: var(--red-bright); }
.prose a:hover { color: var(--chrome-hi); }
.prose .todo {
  background: rgba(225,30,39,0.08);
  border: 1px dashed rgba(225,30,39,0.4);
  border-radius: var(--radius-sm);
  padding: 14px 16px; margin: 0 0 16px;
  font-size: 0.92rem; color: var(--ink-soft);
}

/* CTA band */
.cta-band { border-top: 1px solid var(--hair); background: var(--graphite); }
.cta-band .inner {
  display: grid; grid-template-columns: 1.4fr auto; gap: 28px 40px; align-items: center;
}
.cta-band h2 { font-size: clamp(1.8rem, 3.6vw, 2.6rem); margin-bottom: 12px; }
.cta-band p { margin: 0; color: var(--ink-soft); max-width: 560px; }
.cta-band .actions { display: flex; gap: 14px; flex-wrap: wrap; }

/* ---------- CTA / Contact ---------- */
.contact-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(36px, 6vw, 72px);
}
.contact-info h2 { font-size: clamp(2rem, 4.2vw, 3rem); margin-bottom: 22px; }
.contact-info p { font-size: 1.05rem; margin: 0 0 30px; }
.contact-list { list-style: none; margin: 0; padding: 0; display: grid; gap: 22px; }
.contact-list li { display: flex; gap: 16px; align-items: flex-start; }
.contact-list .ci-ic {
  width: 44px; height: 44px; flex: none; border-radius: 11px;
  display: grid; place-items: center;
  border: 1px solid var(--hair-strong);
  background: rgba(255,255,255,0.03);
}
.contact-list .ci-ic svg { width: 20px; height: 20px; stroke: var(--chrome-hi); }
.contact-list .ci-lbl {
  font-family: var(--font-mono); font-size: 0.66rem; letter-spacing: 0.2em;
  text-transform: uppercase; color: var(--ink-mute); display: block; margin-bottom: 3px;
}
.contact-list .ci-val { color: var(--ink); font-size: 1.02rem; }
.contact-list a.ci-val:hover { color: var(--red-bright); }

.form-card {
  background: linear-gradient(180deg, var(--graphite-2), var(--graphite));
  border: 1px solid var(--hair);
  border-radius: var(--radius);
  padding: clamp(26px, 4vw, 40px);
}
.field { margin-bottom: 20px; }
.field label {
  display: block;
  font-family: var(--font-mono);
  font-size: 0.68rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-soft);
  margin-bottom: 9px;
}
.field label .req { color: var(--red-bright); }
.field input,
.field textarea {
  width: 100%;
  background: var(--obsidian);
  border: 1px solid var(--steel);
  border-radius: var(--radius-sm);
  color: var(--ink);
  padding: 14px 16px;
  font-family: var(--font-body);
  font-size: 1rem;
  transition: border-color 0.2s, box-shadow 0.2s;
  min-height: 50px;
}
.field textarea { resize: vertical; min-height: 130px; }
.field input::placeholder,
.field textarea::placeholder { color: var(--ink-mute); }
.field input:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--red);
  box-shadow: 0 0 0 3px rgba(225, 30, 39, 0.18);
}
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-card .btn-primary { width: 100%; }
.form-note {
  font-size: 0.82rem; color: var(--ink-mute); margin: 16px 0 0; text-align: center;
}
.form-status {
  margin-top: 16px; padding: 14px 16px; border-radius: var(--radius-sm);
  font-size: 0.92rem; display: none;
}
.form-status.show { display: block; }
.form-status.ok { background: rgba(40, 170, 90, 0.12); border: 1px solid rgba(40,170,90,0.4); color: #8be3ab; }

/* ---------- Footer ---------- */
.site-footer {
  border-top: 1px solid var(--hair);
  background: var(--obsidian);
  padding-block: 60px 30px;
}
.footer-top {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 44px;
  border-bottom: 1px solid var(--hair);
}
.footer-brand .brand { margin-bottom: 18px; }
.footer-brand p { font-size: 0.95rem; max-width: 320px; margin: 0; }
.footer-col h4 {
  font-family: var(--font-mono); font-size: 0.7rem; letter-spacing: 0.2em;
  text-transform: uppercase; color: var(--ink-mute); margin: 0 0 18px;
}
.footer-col ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 12px; }
.footer-col a, .footer-col li { font-size: 0.95rem; color: var(--ink-soft); }
.footer-col a:hover { color: var(--red-bright); }
.footer-bottom {
  display: flex; flex-wrap: wrap; gap: 14px; justify-content: space-between;
  align-items: center; padding-top: 26px;
}
.footer-bottom p { margin: 0; font-size: 0.82rem; color: var(--ink-mute); }
.footer-bottom .legal { display: flex; gap: 22px; }
.footer-bottom .legal a { font-size: 0.82rem; color: var(--ink-mute); }
.footer-bottom .legal a:hover { color: var(--ink); }

/* ---------- Cinematic: pointer glow on cards ---------- */
.card, .coat-card, .info-card, .b-item { position: relative; }
.card::after, .coat-card::after, .info-card::after, .b-item::after {
  content: ""; position: absolute; inset: 0; border-radius: inherit; pointer-events: none;
  background: radial-gradient(240px circle at var(--mx, 50%) var(--my, 50%), rgba(255, 255, 255, 0.06), rgba(225, 30, 39, 0.05) 30%, transparent 60%);
  opacity: 0; transition: opacity 0.35s var(--ease); z-index: 3;
}
.card:hover::after, .coat-card:hover::after, .info-card:hover::after, .b-item:hover::after { opacity: 1; }
@media (prefers-reduced-motion: reduce) {
  .card::after, .coat-card::after, .info-card::after, .b-item::after { display: none; }
}

/* Hero parallax layers — smooth + GPU */
.hero-bg, .hero-grid, .hero-inner { will-change: transform; transition: transform 0.45s cubic-bezier(0.2,0.7,0.2,1); }
.hero:hover .hero-bg, .hero:hover .hero-grid, .hero:hover .hero-inner { transition-duration: 0.12s; }
@media (prefers-reduced-motion: reduce) {
  .hero-bg, .hero-grid, .hero-inner { transition: none !important; transform: none !important; }
}

/* ---------- Reveal animation ---------- */
.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out);
}
.reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
}

/* ---------- Responsive ---------- */
@media (max-width: 980px) {
  .about-grid { grid-template-columns: 1fr; }
  .about-figure { max-width: 420px; order: -1; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .process-grid { grid-template-columns: 1fr; }
  .step { border-left: none; border-top: 1px solid var(--hair); }
  .step:first-child { border-top: none; }
  .feature-head { grid-template-columns: 1fr; align-items: start; }
  .feature-row { grid-template-columns: 1fr; }
  .feature-row .media { min-height: 300px; order: -1; }
  .cta-band .inner { grid-template-columns: 1fr; }
  .cols-2 { grid-template-columns: 1fr; }
  .steps4 { grid-template-columns: 1fr 1fr; }
  .statbox-grid { grid-template-columns: 1fr; }
  .about-intro .deco-logo { display: none; }
  .coat-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 900px) {
  .nav-links { display: none; }
  .nav-toggle { display: inline-flex; }
  .site-header.open .nav-links {
    display: flex;
    position: absolute;
    top: 76px; left: 0; right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 4px;
    padding: 16px clamp(20px, 5vw, 48px) 24px;
    background: rgba(11,11,13,0.97);
    backdrop-filter: blur(14px);
    border-bottom: 1px solid var(--hair);
  }
  .site-header.open .nav-links a { padding: 14px; }
  .site-header.open .nav-cta { margin: 8px 0 0; }
  .nav-cta.desktop-only { display: none; }
  .footer-top { grid-template-columns: 1fr; }
  .field-row { grid-template-columns: 1fr; }
  .hero-stats { gap: 26px 38px; }
  .ba-grid { grid-template-columns: 1fr; }
  .steps4 { grid-template-columns: 1fr; }
  .values-2 { grid-template-columns: 1fr; }
  .coat-grid { grid-template-columns: 1fr; }
}

@media (max-width: 420px) {
  body { font-size: 16px; }
}

/* =========================================================
   PROMO / CINEMATIC RED THEME  (Bild-1-Look)
   ========================================================= */

/* Display headings in bold uppercase — punchy, two-tone-ready */
.page-hero h1,
.section-head h2,
.feature-head h2,
.cta-band h2,
.faq-teaser h2,
.contact-info h2,
.about-copy h2 {
  text-transform: uppercase;
  letter-spacing: -0.005em;
  font-weight: 800;
}
.faq-teaser h2 { letter-spacing: 0.01em; }
/* keep legal + card titles in natural case */
.prose h2, .coat-card h3, .card h3, .step h3, .pstep h3,
.benefit h3, .info-card h3, .ico-h h3, .b-item h4, .coat h3 { text-transform: none; }

/* Red two-tone accent word */
.accent { color: var(--red-bright); }

/* Circular red-ring icon badges (glossy, glowing) */
.card-icon,
.b-icon,
.ci-ic,
.ico-h .ic,
.benefit .b-icon {
  border-radius: 50%;
  border: 1.5px solid rgba(226, 0, 26, 0.55);
  background: radial-gradient(120% 120% at 30% 22%, rgba(226, 0, 26, 0.22), rgba(0, 0, 0, 0.45));
  box-shadow: 0 0 0 4px rgba(226, 0, 26, 0.05), 0 10px 26px -6px rgba(226, 0, 26, 0.55);
}
.card-icon svg,
.ci-ic svg { stroke: var(--red-bright); }
.card:hover .card-icon,
.benefit:hover .b-icon { box-shadow: 0 0 0 5px rgba(226, 0, 26, 0.09), 0 14px 34px -6px rgba(226, 0, 26, 0.7); }

/* Glossier primary buttons + stronger glow */
.btn-primary {
  background: linear-gradient(180deg, #ff3a43 0%, var(--red) 52%, var(--red-deep) 100%);
  box-shadow: 0 16px 34px -10px rgba(226, 0, 26, 0.8), inset 0 1px 0 rgba(255, 255, 255, 0.38);
}
.btn-primary:hover { box-shadow: 0 22px 46px -10px rgba(226, 0, 26, 0.95), inset 0 1px 0 rgba(255, 255, 255, 0.45); }

/* Eyebrow → brighter promo label */
.eyebrow { color: #d9dde3; }
.eyebrow::before { width: 30px; background: linear-gradient(90deg, var(--red-bright), transparent); box-shadow: 0 0 12px rgba(226,0,26,0.7); }

/* Banded sections get a glowing red top hairline (energy seam) */
.process, .benefits, .cta-band, .faq-teaser {
  border-top: 1px solid rgba(226, 0, 26, 0.22);
  box-shadow: 0 -1px 24px -6px rgba(226, 0, 26, 0.35);
}

/* Page-hero: red light-beam streaks (cinematic) */
.page-hero::before {
  content: "";
  position: absolute; inset: 0; z-index: 0; pointer-events: none;
  background:
    linear-gradient(115deg, transparent 38%, rgba(226, 0, 26, 0.10) 46%, transparent 52%),
    linear-gradient(115deg, transparent 60%, rgba(226, 0, 26, 0.07) 67%, transparent 72%);
  mask-image: radial-gradient(120% 100% at 50% 0%, #000 35%, transparent 80%);
}

/* CTA band: deep red ambient corner glow */
.cta-band {
  background:
    radial-gradient(900px 300px at 8% 0%, rgba(226, 0, 26, 0.16), transparent 60%),
    radial-gradient(700px 260px at 100% 100%, rgba(226, 0, 26, 0.12), transparent 60%),
    var(--graphite);
}

/* Card top-accent → brighter */
.card::before { background: linear-gradient(90deg, var(--red-bright), transparent 60%); box-shadow: 0 0 14px rgba(226,0,26,0.6); }

/* ---- Condensed poster headings (Saira Condensed) + white/red ---- */
.hero h1, .page-hero h1, .section-head h2, .feature-head h2,
.cta-band h2, .faq-teaser h2, .contact-info h2, .about-copy h2 {
  letter-spacing: 0;
  font-weight: 800;
}
.hero h1 {
  text-transform: uppercase;
  font-size: clamp(2.7rem, 7vw, 5.8rem);
  line-height: 0.96;
}
.hero h1 .line { color: #fff; display: block; }
.section-head h2 { font-size: clamp(2.1rem, 4.8vw, 3.8rem); line-height: 1.0; }
.feature-head h2 { font-size: clamp(2rem, 3.9vw, 3.05rem); line-height: 1.0; }
.page-hero h1 { font-size: clamp(2.6rem, 5.8vw, 4.7rem); line-height: 1.0; }
.cta-band h2, .faq-teaser h2 { font-size: clamp(2rem, 4.2vw, 3.1rem); }

/* Red promo eyebrow labels (white/red rhythm) */
.eyebrow { color: #ff5a61; }

/* =========================================================
   CINEMATIC INTRO  (scroll-storytelling: Marke → Video → Text)
   ========================================================= */
.cine { position: relative; height: 100svh; min-height: 600px; overflow: hidden; background: #050507; isolation: isolate; }
.cine-grain {
  position: absolute; inset: 0; z-index: 6; pointer-events: none; opacity: 0.06; mix-blend-mode: overlay;
  background: url('data:image/svg+xml;utf8,<svg viewBox="0 0 200 200" xmlns="http://www.w3.org/2000/svg"><filter id="n"><feTurbulence type="fractalNoise" baseFrequency="0.8" numOctaves="3" stitchTiles="stitch"/></filter><rect width="100%25" height="100%25" filter="url(%23n)"/></svg>');
}
.cine-grid {
  position: absolute; inset: 0; z-index: 1; opacity: 0.5;
  background-size: 60px 60px;
  background-image:
    linear-gradient(to right, rgba(255,255,255,0.05) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(255,255,255,0.05) 1px, transparent 1px);
  -webkit-mask-image: radial-gradient(ellipse at center, #000 0%, transparent 70%);
  mask-image: radial-gradient(ellipse at center, #000 0%, transparent 70%);
}
.cine-glow {
  position: absolute; inset: 0; z-index: 1; pointer-events: none;
  background:
    radial-gradient(70% 60% at 50% 18%, rgba(226,0,26,0.22), transparent 60%),
    radial-gradient(60% 50% at 50% 100%, rgba(226,0,26,0.12), transparent 60%);
}
.cine-layer {
  position: absolute; inset: 0; z-index: 4;
  display: grid; place-items: center; text-align: center; padding: 0 clamp(20px, 5vw, 48px);
  will-change: transform, opacity;
}

/* Beat 1 — Marke (Partikel-Effekt + statische Tagline) */
.cine-brand { z-index: 5; display: block; padding: 0; }
.cine-brand .fallback { position: absolute; inset: 0; display: grid; place-items: center; text-align: center; padding: 0 clamp(20px, 5vw, 48px); }
.cine-canvas { position: absolute; inset: 0; width: 100%; height: 100%; display: none; pointer-events: none; }
.cine-brand.particles .fallback { display: none; }
.cine-brand.particles .cine-canvas { display: block; }
.cine-tag-static {
  position: absolute; left: 50%; bottom: 12%; transform: translateX(-50%); z-index: 7; display: none;
  font-family: var(--font-mono); text-transform: uppercase; letter-spacing: 0.3em; white-space: nowrap;
  color: #ff5a61; font-size: clamp(1.0rem, 2.7vw, 1.55rem); text-align: center;
  text-shadow: 0 0 26px rgba(226, 0, 26, 0.65);
}
.cine-brand.particles .cine-tag-static { display: block; }
.cine-brand img {
  width: clamp(150px, 22vw, 300px); height: auto; display: block;
  filter: drop-shadow(0 30px 72px rgba(226,0,26,0.5));
  margin: 0 auto clamp(14px, 2.2vw, 24px);
}
.cine-brand .word {
  font-family: "Sora", var(--font-display); font-weight: 800; text-transform: none;
  font-size: clamp(2.8rem, 10vw, 8rem); letter-spacing: -0.03em; line-height: 0.92; color: #fff;
}
.cine-brand .company {
  font-family: var(--font-display); font-weight: 700; text-transform: uppercase;
  letter-spacing: 0.04em; font-size: clamp(0.95rem, 2.3vw, 1.6rem); color: #fff;
  margin-top: clamp(10px, 1.6vw, 16px);
}
.cine-brand .tag {
  font-family: var(--font-mono); text-transform: uppercase; letter-spacing: 0.3em;
  color: #ff5a61; margin-top: clamp(10px, 1.4vw, 16px); font-size: clamp(0.64rem, 1.4vw, 0.8rem);
}

/* Beat 2 — Video (größer, Hochformat, vollständig sichtbar) */
.cine-frame { z-index: 3; }
.cine-frame .frame-inner {
  position: relative; width: min(94vw, 1180px); height: min(82svh, 760px);
  border-radius: 20px; overflow: hidden;
  border: 1px solid rgba(255,255,255,0.12);
  box-shadow: 0 60px 140px -30px #000, 0 0 0 1px rgba(226,0,26,0.22), 0 0 90px -10px rgba(226,0,26,0.45);
}
.cine-frame video { width: 100%; height: 100%; object-fit: cover; object-position: 50% 42%; display: block; filter: brightness(0.9) contrast(1.03); }
.cine-frame .frame-cap {
  position: absolute; left: 16px; bottom: 14px; z-index: 2;
  font-family: var(--font-mono); font-size: 0.66rem; letter-spacing: 0.16em; text-transform: uppercase;
  color: #fff; background: rgba(8,8,10,0.55); border: 1px solid rgba(255,255,255,0.14);
  padding: 8px 12px; border-radius: 999px; backdrop-filter: blur(8px);
}

/* Beat 3 — Hero-Inhalt (einzeilige Headline + Text + Buttons + Stats) */
.cine-quote { z-index: 4; place-items: center; }
.cine-quote .inner { width: 100%; max-width: var(--maxw); padding-inline: clamp(20px, 5vw, 48px); text-align: left; }
.cine-quote h2 {
  font-family: var(--font-display); font-weight: 800; text-transform: uppercase; color: #fff;
  font-size: clamp(1.6rem, 5vw, 3.5rem); line-height: 1.0; letter-spacing: 0; margin: 0 0 22px;
  white-space: nowrap;
}
.cine-quote .hero-lead { margin: 0 0 30px; }
.cine-quote .hero-stats { margin-top: 40px; }
@media (max-width: 760px) {
  .cine-quote h2 { white-space: normal; }
  /* Statement-Beat auf dem Handy: Inhalt oben ausrichten (statt zentriert), damit die
     Headline nie unter den Sticky-Header rutscht; kompakter, damit alles zwischen
     Header und unterer Aktionsleiste in den Viewport passt – nichts mehr abgeschnitten. */
  .cine-quote { align-items: start; justify-items: stretch; }
  .cine-quote .inner {
    padding-top: clamp(88px, 12vh, 104px);
    padding-bottom: 24px;
  }
  .cine-quote .eyebrow { margin-bottom: 6px; }
  .cine-quote h2 { font-size: clamp(1.5rem, 6.6vw, 2rem); margin: 0 0 12px; }
  .cine-quote .hero-lead { margin: 0 0 16px; font-size: 0.9rem; line-height: 1.45; }
  .cine-quote .hero-actions { gap: 9px; }
  .cine-quote .hero-stats { margin-top: 16px; padding-top: 14px; gap: 12px 22px; }
  .cine-quote .hero-stats .stat .num { font-size: 1.3rem; }
  .cine-quote .hero-stats .stat .lbl { font-size: 0.58rem; }
}

/* Default / no-JS / reduced-motion fallback: show only the brand beat */
.cine-frame, .cine-quote { opacity: 0; }
.cine.is-static .cine-frame, .cine.is-static .cine-quote { display: none; }
@media (prefers-reduced-motion: reduce) {
  .cine-frame, .cine-quote { display: none; }
}

/* Typewriter cursor for Beat-3 headline */
.cine-quote h2.typing::after {
  content: "|"; color: var(--red-bright); margin-left: 4px; font-weight: 700;
  animation: twBlink 0.7s steps(1) infinite;
}
@keyframes twBlink { 50% { opacity: 0; } }

/* =========================================================
   CINEMATIC SECTION POLISH  (unified red, filmic reveals)
   Built on the Beat-3 statement language: white headline +
   glowing red accent word, ambient red wash, filmic media wipes.
   ========================================================= */

/* Keep section content above the ambient glow layers */
.section { overflow: clip; }
.section > .wrap { position: relative; z-index: 1; }

/* Unified red "energy seam" + top-center ambient wash on every section.
   Replaces the banded-only seam so the whole page shares one rhythm. */
.section::before {
  content: ""; position: absolute; top: 0; left: 50%; width: min(220px, 52%); height: 2px; z-index: 1;
  background: linear-gradient(90deg, transparent, var(--red-bright), transparent);
  box-shadow: 0 0 28px rgba(255, 38, 48, 0.9), 0 0 10px rgba(255, 90, 97, 0.8);
  opacity: 0; transform: translateX(-50%) scaleX(0.4);
  transition: opacity 0.7s var(--ease-out), transform 0.9s var(--ease-out);
}
.section.seam-in::before { opacity: 0.85; transform: translateX(-50%) scaleX(1); }
.section::after {
  content: ""; position: absolute; top: 0; left: 50%; transform: translateX(-50%);
  width: min(1180px, 94%); height: 320px; z-index: 0; pointer-events: none;
  background: radial-gradient(62% 100% at 50% 0%, rgba(226, 0, 26, 0.07), transparent 72%);
}
/* The old full-width banded seam is now redundant — neutralise it */
.process, .benefits, .cta-band, .faq-teaser { border-top: 0; box-shadow: none; }
/* Banded sections keep a slightly deeper ambient wash for contrast rhythm */
.process::after, .cta-band::after, .faq-teaser::after {
  background: radial-gradient(64% 100% at 50% 0%, rgba(226, 0, 26, 0.11), transparent 72%);
}

/* Glowing red accent word — the signature two-tone treatment (intensified) */
.accent { text-shadow: 0 0 18px rgba(255, 38, 48, 0.55), 0 0 42px rgba(226, 0, 26, 0.45); }
.statbox .val .accent, .stat .num .accent { text-shadow: 0 0 16px rgba(255, 38, 48, 0.5); }

/* Eyebrow gets a small pulsing red node for cinematic life */
@media (prefers-reduced-motion: no-preference) {
  .eyebrow::before { animation: ebPulse 3.2s var(--ease-in-out, ease-in-out) infinite; }
}
@keyframes ebPulse {
  0%, 100% { box-shadow: 0 0 10px rgba(226, 0, 26, 0.55); opacity: 0.85; }
  50% { box-shadow: 0 0 18px rgba(226, 0, 26, 0.95); opacity: 1; }
}

/* Media reveal uses the standard fade/slide (.reveal) — reliable across browsers
   incl. Safari. (Earlier clip-path wipe could leave figures stuck hidden.) */
/* Subtle hover lift + warmer red frame on photo figures */
@media (hover: hover) and (pointer: fine) {
  .media { transition: border-color 0.4s var(--ease-out), box-shadow 0.4s var(--ease-out), transform 0.4s var(--ease-out); }
  .media:hover {
    border-color: rgba(226, 0, 26, 0.42);
    box-shadow: 0 26px 60px -24px rgba(226, 0, 26, 0.55), 0 0 0 1px rgba(226, 0, 26, 0.25);
    transform: translateY(-3px);
  }
}

/* Vorher/Nachher — cinematic glowing seam + bolder tags */
.ba-grid { position: relative; }
@media (min-width: 901px) {
  .ba-grid::after {
    content: ""; position: absolute; top: 8%; bottom: 8%; left: 50%; width: 1px;
    transform: translateX(-50%); z-index: 2; pointer-events: none;
    background: linear-gradient(180deg, transparent, var(--red), transparent);
    box-shadow: 0 0 20px rgba(226, 0, 26, 0.65);
  }
}
.ba-tag {
  font-size: 0.66rem; letter-spacing: 0.18em; padding: 8px 14px;
  backdrop-filter: blur(8px) saturate(140%);
  box-shadow: 0 8px 22px -8px rgba(0, 0, 0, 0.7);
}
.ba-tag.after {
  background: linear-gradient(180deg, rgba(255, 58, 67, 0.28), rgba(122, 10, 18, 0.28));
  border-color: rgba(255, 70, 80, 0.55); color: #ffd0d3;
  box-shadow: 0 8px 22px -8px rgba(226, 0, 26, 0.6), 0 0 16px rgba(226, 0, 26, 0.45);
}

/* Thin cinematic scroll-progress beam (top of viewport) */
.scroll-progress {
  position: fixed; top: 0; left: 0; height: 3px; width: 100%; z-index: 200;
  background: linear-gradient(90deg, var(--red-deep), var(--red) 40%, var(--red-bright));
  box-shadow: 0 0 14px rgba(226, 0, 26, 0.85);
  transform-origin: left center; transform: scaleX(0); pointer-events: none;
  transition: transform 0.1s linear; will-change: transform;
}
@media (prefers-reduced-motion: reduce) { .scroll-progress { display: none; } }

/* Section headline reveal — cinematic focus-pull (blur → sharp + lift).
   Transform/opacity/filter only (Safari-safe; no clip-path which can stick). */
@media (prefers-reduced-motion: no-preference) {
  .section-head.reveal h2, .feature-head.reveal h2,
  .cta-band .reveal h2, .faq-teaser .reveal h2,
  .contact-info.reveal h2, .about-copy.reveal h2 {
    opacity: 0; transform: translateY(22px); filter: blur(11px);
    transition: opacity 0.85s var(--ease-out), transform 0.85s var(--ease-out), filter 0.85s var(--ease-out);
  }
  .section-head.reveal.in h2, .feature-head.reveal.in h2,
  .cta-band .reveal.in h2, .faq-teaser .reveal.in h2,
  .contact-info.reveal.in h2, .about-copy.reveal.in h2 {
    opacity: 1; transform: translateY(0); filter: blur(0);
  }
  /* Eyebrow + lead drift in just after the headline for rhythm */
  .feature-head.reveal .eyebrow, .section-head.reveal .eyebrow,
  .feature-head.reveal .lead, .section-head.reveal p {
    opacity: 0; transform: translateY(14px);
    transition: opacity 0.7s var(--ease-out) 0.12s, transform 0.7s var(--ease-out) 0.12s;
  }
  .feature-head.reveal.in .eyebrow, .section-head.reveal.in .eyebrow,
  .feature-head.reveal.in .lead, .section-head.reveal.in p {
    opacity: 1; transform: translateY(0);
  }
}

/* Two-line headline (Polieren) */
#pol-title .hl-a, #pol-title .hl-b { display: block; }
#pol-title .hl-b { margin-top: 2px; }

/* Three-line headline (Unternehmen): two title lines + refined subtitle line */
#unt-title .hl-1, #unt-title .hl-mid, #unt-title .hl-2 { display: block; }
#unt-title .hl-mid { margin-top: 2px; }
#unt-title .hl-2 {
  font-size: 0.5em; color: var(--chrome-mid); font-weight: 700;
  letter-spacing: 0.02em; margin-top: 12px;
}

/* =========================================================
   PVD SHOWCASE  (cinematic anlage panel — "TCT 500")
   ========================================================= */
.pvd-showcase {
  --pvd-card-pad-top: clamp(116px, 12vw, 156px);
  --pvd-mascot-w: clamp(260px, 27vw, 390px);
  --pvd-spray-w: clamp(220px, 25vw, 350px);
  display: flex;
  flex-direction: column;
  gap: 18px;
  min-width: 0;
  position: relative;
  isolation: isolate;
  padding-top: var(--pvd-card-pad-top);
}
.showcase-media {
  min-height: 440px;
  position: relative;
  z-index: 2;
  border-color: rgba(226, 0, 26, 0.38);
  box-shadow:
    0 34px 76px -34px rgba(0, 0, 0, 0.92),
    0 0 0 1px rgba(226, 0, 26, 0.24),
    0 0 44px -22px rgba(255, 38, 48, 0.8);
}
.showcase-media img {
  width: 100%; height: 100%; object-fit: cover; position: absolute; inset: 0;
  /* Grade the bright daylight photo into the dark-red cinematic look */
  filter: brightness(0.5) contrast(1.12) saturate(0.82) grayscale(0.18);
}
.pvd-mascot-scene {
  position: absolute;
  z-index: 6;
  top: calc(var(--pvd-card-pad-top) - (var(--pvd-mascot-w) * 1.08));
  right: clamp(8px, 3vw, 42px);
  width: var(--pvd-mascot-w);
  aspect-ratio: 386 / 523;
  pointer-events: none;
  transform-origin: 50% 100%;
  will-change: transform, opacity, filter;
  filter:
    drop-shadow(0 30px 50px rgba(0, 0, 0, 0.74))
    drop-shadow(0 0 34px rgba(226, 0, 26, 0.38));
}
.pvd-mascot-scene .m-video-canvas {
  object-position: 50% 100%;
}
.pvd-mascot-wrap {
  position: absolute;
  inset: 0;
  z-index: 3;
  transform-origin: 48% 82%;
  will-change: transform, opacity, filter;
}
.pvd-mascot-part {
  position: absolute;
  inset: 0;
  width: 100%;
  height: auto;
  max-width: none;
  filter:
    drop-shadow(0 22px 32px rgba(0, 0, 0, 0.72))
    drop-shadow(0 0 24px rgba(226, 0, 26, 0.45));
  will-change: transform, opacity, filter;
  -webkit-user-drag: none;
}
.pvd-mascot-body { z-index: 2; transform-origin: 60% 66%; }
.pvd-mascot-arm-gun { z-index: 4; transform-origin: 42% 47%; }
.pvd-mascot-arm-grip { z-index: 5; transform-origin: 70% 52%; }
.pvd-grip-spark {
  position: absolute;
  z-index: 6;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #ff2630;
  opacity: 0;
  box-shadow: 0 0 10px rgba(255, 38, 48, 0.95), 0 0 24px rgba(255, 38, 48, 0.75);
  will-change: transform, opacity;
}
.pvd-grip-spark-a { left: 74%; top: 70%; }
.pvd-grip-spark-b { left: 88%; top: 63%; }
.pvd-spray-layer {
  position: absolute;
  z-index: 7;
  left: 12%;
  top: 72%;
  width: var(--pvd-spray-w);
  height: calc(var(--pvd-spray-w) * 0.42);
  opacity: 0;
  transform: rotate(118deg);
  transform-origin: 0% 52%;
  will-change: transform, opacity, filter;
}
.pvd-spray-beam {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  overflow: visible;
  transform-origin: 0% 52%;
  will-change: transform, opacity, filter;
}
.pvd-beam-haze,
.pvd-beam-core,
.pvd-beam-red {
  vector-effect: non-scaling-stroke;
}
.pvd-spray-particles {
  position: absolute;
  inset: 0;
  overflow: visible;
}
.pvd-spray-particles i {
  position: absolute;
  left: 3%;
  top: 50%;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #fff;
  opacity: 0;
  box-shadow:
    0 0 12px currentColor,
    0 0 26px currentColor;
  color: #fff;
  will-change: transform, opacity, filter;
}
.pvd-spray-particles i:nth-child(4n + 1) { color: #ff2630; background: #ff2630; width: 5px; height: 5px; }
.pvd-spray-particles i:nth-child(4n + 2) { color: #7fd8ff; background: #7fd8ff; width: 8px; height: 8px; }
.pvd-spray-particles i:nth-child(4n + 3) { color: #a56dff; background: #a56dff; width: 6px; height: 6px; }
.pvd-card-glow {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  opacity: 0;
  background:
    radial-gradient(75% 54% at 66% 28%, rgba(255, 38, 48, 0.32), transparent 64%),
    radial-gradient(42% 36% at 80% 18%, rgba(127, 216, 255, 0.16), transparent 66%),
    linear-gradient(120deg, transparent 28%, rgba(255, 255, 255, 0.1) 48%, transparent 66%);
  mix-blend-mode: screen;
  filter: blur(0.2px);
  will-change: opacity, filter;
}
.showcase-veil {
  position: absolute; inset: 0; z-index: 1; pointer-events: none;
  background:
    linear-gradient(180deg, rgba(5,5,7,0.22) 0%, rgba(5,5,7,0.4) 38%, rgba(5,5,7,0.92) 100%),
    linear-gradient(90deg, rgba(5,5,7,0.62), transparent 56%),
    radial-gradient(120% 90% at 82% 16%, rgba(226,0,26,0.2), transparent 60%);
  mix-blend-mode: normal;
}
.showcase-swoosh {
  position: absolute; inset: 0; width: 100%; height: 100%; z-index: 3; pointer-events: none;
  filter: drop-shadow(0 0 9px rgba(226,0,26,0.85));
}
.showcase-cap {
  position: absolute; z-index: 4; right: clamp(18px, 3vw, 32px);
  left: clamp(18px, 5vw, 60px); bottom: clamp(18px, 3vw, 30px); text-align: right;
}
.showcase-cap .eyebrow { color: #ff5a61; justify-content: flex-end; margin: 0 0 10px; }
.showcase-cap .eyebrow::before { display: none; }
.showcase-title {
  font-family: var(--font-display); font-weight: 800; text-transform: uppercase;
  font-size: clamp(2.7rem, 6.2vw, 4.8rem); line-height: 0.86; letter-spacing: 0.01em; margin: 0;
}
.showcase-sub {
  font-family: var(--font-display); font-weight: 700; text-transform: uppercase;
  font-size: clamp(1.05rem, 2.4vw, 1.7rem); color: #fff; letter-spacing: 0.02em; margin: 8px 0 0;
}
/* Feature trio under the panel — Korrosion · Abrasion · Adhäsion */
.showcase-feats {
  list-style: none; margin: 0; padding: 0; display: flex; flex-wrap: wrap;
  gap: clamp(16px, 3vw, 38px); justify-content: flex-end;
}
.showcase-feats li {
  display: flex; align-items: center; gap: 11px;
  font-family: var(--font-mono); text-transform: uppercase; letter-spacing: 0.13em;
  font-size: 0.74rem; color: var(--ink);
}
.sf-ic {
  width: 40px; height: 40px; flex: none; display: grid; place-items: center; border-radius: 11px;
  border: 1.5px solid rgba(226, 0, 26, 0.5);
  background: radial-gradient(120% 120% at 30% 22%, rgba(226, 0, 26, 0.22), rgba(0, 0, 0, 0.45));
  box-shadow: 0 0 0 4px rgba(226, 0, 26, 0.05), 0 9px 22px -6px rgba(226, 0, 26, 0.55);
  transition: box-shadow 0.4s var(--ease-out), transform 0.4s var(--ease-out);
}
.sf-ic svg { width: 21px; height: 21px; fill: none; stroke: var(--red-bright); }
@media (hover: hover) and (pointer: fine) {
  .showcase-feats li:hover .sf-ic { transform: translateY(-3px); box-shadow: 0 0 0 5px rgba(226,0,26,0.09), 0 14px 30px -6px rgba(226,0,26,0.7); }
}
@media (max-width: 980px) {
  .pvd-showcase {
    --pvd-card-pad-top: clamp(88px, 15vw, 122px);
    --pvd-mascot-w: clamp(220px, 38vw, 320px);
    --pvd-spray-w: clamp(178px, 34vw, 270px);
  }
  .pvd-mascot-scene {
    right: clamp(0px, 2vw, 22px);
    top: calc(var(--pvd-card-pad-top) - (var(--pvd-mascot-w) * 1.02));
  }
  .pvd-spray-layer {
    left: 12%;
    top: 72%;
  }
  .showcase-media { min-height: 340px; }
  .showcase-cap, .showcase-feats { text-align: left; }
  .showcase-cap .eyebrow { justify-content: flex-start; }
  .showcase-feats { justify-content: flex-start; }
}
@media (max-width: 620px) {
  .pvd-showcase {
    padding-top: 0;
  }
  .pvd-mascot-scene {
    display: none;
  }
  .pvd-card-glow {
    display: none;
  }
}
@media (prefers-reduced-motion: reduce) {
  .pvd-mascot-scene,
  .pvd-mascot-wrap,
  .pvd-mascot-part {
    transform: none !important;
    opacity: 1 !important;
    animation: none !important;
  }
  .pvd-spray-layer,
  .pvd-card-glow {
    display: none !important;
  }
}

/* Team-Pondruff mascot in the Beat-3 statement — keyed walking video, growing in from the far right */
.cine-mascot {
  position: absolute; z-index: 6; pointer-events: none;
  right: clamp(10px, 5vw, 118px); bottom: clamp(-2px, 3.6vh, 38px);
  width: clamp(176px, 23vw, 360px);
  aspect-ratio: 2 / 3;
  transform-origin: bottom right;
  opacity: 0; transform: translate3d(82vw, 24px, 0) scale(0.28);
  filter:
    drop-shadow(0 28px 54px rgba(0, 0, 0, 0.72))
    drop-shadow(0 0 40px rgba(226, 0, 26, 0.45));
  will-change: transform, opacity, filter;
}
.cine-mascot::after {
  content: "";
  position: absolute;
  z-index: -1;
  left: 24%;
  right: 7%;
  bottom: 3.5%;
  height: 12%;
  border-radius: 50%;
  background:
    radial-gradient(closest-side, rgba(226, 0, 26, 0.28), rgba(226, 0, 26, 0.08) 58%, transparent 78%),
    radial-gradient(closest-side, rgba(0, 0, 0, 0.72), transparent 72%);
  filter: blur(9px);
  opacity: 0.56;
  transform-origin: center;
}
.black-key-video {
  pointer-events: none;
}
.m-video-source,
.m-video-canvas,
.m-video-fallback {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: 50% 100%;
  -webkit-user-drag: none;
}
.m-video-source {
  display: none;
}
.m-video-canvas {
  z-index: 2;
  opacity: 0;
  transition: opacity 0.24s var(--ease-out);
  will-change: transform, opacity;
  background: transparent;
}
.m-video-fallback {
  z-index: 1;
  opacity: 0.98;
  transform: translateY(7%) scale(0.78);
  transform-origin: 50% 100%;
  transition: opacity 0.18s var(--ease-out);
}
.black-key-video.video-ready .m-video-canvas { opacity: 1; }
.black-key-video.video-ready .m-video-fallback { opacity: 0; }
.cine-mascot.video-ready .m-video-canvas { opacity: 1; }
.cine-mascot.video-ready .m-video-fallback { opacity: 0; }
.black-key-video.video-failed .m-video-fallback { opacity: 1; }
.black-key-video.video-failed .m-video-canvas { opacity: 0; }
.cine-mascot.is-idle .m-video-canvas,
.cine-mascot.is-idle .m-video-fallback {
  animation: teamMascotVideoIdle 3.6s ease-in-out infinite;
}
.hb-service-mascot {
  position: relative;
  justify-self: end;
  align-self: center;
  width: clamp(210px, 24vw, 350px);
  aspect-ratio: 371 / 579;
  margin-block: clamp(-42px, -3vw, -18px);
  z-index: 2;
  filter:
    drop-shadow(0 28px 54px rgba(0, 0, 0, 0.72))
    drop-shadow(0 0 36px rgba(226, 0, 26, 0.34));
}
.contact-form-mascot {
  position: relative;
  width: min(340px, 86%);
  aspect-ratio: 381 / 496;
  margin: clamp(20px, 4vw, 46px) auto 0 0;
  z-index: 1;
  filter:
    drop-shadow(0 24px 46px rgba(0, 0, 0, 0.72))
    drop-shadow(0 0 32px rgba(226, 0, 26, 0.28));
}
.hb-service-mascot .m-video-fallback,
.contact-form-mascot .m-video-fallback {
  transform: none;
}

/* Fallback if GSAP is unavailable: the video still enters from the right and grows. */
.cine-mascot.walk-in { animation: teamMascotVideoFallbackEnter 2.45s cubic-bezier(0.16, 1, 0.3, 1) forwards; }
.cine-mascot.walk-in .m-video-canvas,
.cine-mascot.walk-in .m-video-fallback { animation: teamMascotVideoIdle 3.6s ease-in-out 2.45s infinite; }
@keyframes teamMascotVideoFallbackEnter {
  0% { opacity: 0; transform: translate3d(84vw, 28px, 0) scale(0.26) rotate(-2deg); }
  12% { opacity: 1; }
  34% { transform: translate3d(50vw, 8px, 0) scale(0.44) rotate(1.2deg); }
  58% { transform: translate3d(26vw, -5px, 0) scale(0.62) rotate(-0.8deg); }
  82% { transform: translate3d(8vw, 4px, 0) scale(0.84) rotate(0.6deg); }
  100% { opacity: 1; transform: translate3d(-24px, 0, 0) scale(1) rotate(0deg); }
}
@keyframes teamMascotVideoIdle {
  0%, 100% { transform: translateY(0) scale(1); }
  50% { transform: translateY(-6px) scale(1.006); }
}
@media (prefers-reduced-motion: reduce) {
  .cine-mascot { opacity: 1; transform: none; animation: none; }
  .m-video-source, .m-video-canvas { display: none; }
  .m-video-fallback { opacity: 1; animation: none; transform: translateY(7%) scale(0.78); }
}
@media (max-width: 700px) {
  /* Kontakt: Maskottchen auf dem Handy klein in eine Ecke des Abschnitts.
     Rendert dort nur als statisches PNG (data-static-mobile -> JS überspringt
     Video + Canvas), daher praktisch kein Einfluss auf die Performance.
     (Das Hol-&-Bringservice-Maskottchen läuft auf dem Handy bewusst als volles
     Video wie auf dem Desktop und nutzt daher die Basis-Styles.) */
  .contact-grid { position: relative; }
  .contact-form-mascot {
    display: block; position: absolute; top: 2px; right: 4px;
    width: 80px; aspect-ratio: 381 / 496;
    margin: 0;
    pointer-events: none; z-index: 1; opacity: 0.92;
  }
}

/* FAQ mascot — walks in from the right, then a friendly idle bob */
.faq-teaser .inner { position: relative; z-index: 1; }
.faq-mascot {
  position: absolute; z-index: 2; pointer-events: none;
  right: clamp(8px, 6vw, 96px); bottom: 0;
  width: clamp(128px, 17vw, 250px); height: auto;
  filter: drop-shadow(0 16px 34px rgba(226, 0, 26, 0.42));
  opacity: 0; transform: translateX(180%);
}
.faq-teaser.seam-in .faq-mascot {
  animation: mascotWalkIn 1.4s var(--ease-out) both, mascotIdle 3.4s ease-in-out 1.5s infinite;
}
@keyframes mascotWalkIn {
  0%   { opacity: 0; transform: translateX(180%) translateY(0) rotate(7deg); }
  18%  { opacity: 1; }
  40%  { transform: translateX(96%) translateY(-9px) rotate(-4deg); }
  62%  { transform: translateX(48%) translateY(0) rotate(4deg); }
  82%  { transform: translateX(12%) translateY(-7px) rotate(-2deg); }
  100% { opacity: 1; transform: translateX(0) translateY(0) rotate(0deg); }
}
@keyframes mascotIdle {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50%      { transform: translateY(-8px) rotate(-2.6deg); }
}
@media (prefers-reduced-motion: reduce) {
  .faq-mascot { opacity: 1; transform: none; animation: none; }
}
@media (max-width: 760px) {
  .faq-mascot { width: 118px; right: 6px; opacity: 0.95; filter: drop-shadow(0 10px 22px rgba(226,0,26,0.4)); }
}

/* Animated service route: Abholen → Bearbeiten → Zurückbringen */
.route-strip {
  margin: 4px auto 44px; padding: 28px clamp(18px, 4vw, 40px);
  max-width: 920px; text-align: center;
  border: 1px solid var(--hair); border-radius: var(--radius);
  background: linear-gradient(180deg, rgba(255,255,255,0.02), rgba(255,255,255,0));
  position: relative; overflow: hidden;
}
.route-strip::before {
  content: ""; position: absolute; top: 0; left: 50%; transform: translateX(-50%);
  width: 60%; height: 1px; background: linear-gradient(90deg, transparent, var(--red), transparent);
  box-shadow: 0 0 16px rgba(226,0,26,0.6);
}
.route-steps {
  display: flex; align-items: center; justify-content: center;
  gap: clamp(12px, 3vw, 30px); flex-wrap: wrap;
}
.route-step { display: flex; flex-direction: column; align-items: center; gap: 12px; min-width: 96px; }
.route-ic {
  width: 64px; height: 64px; display: grid; place-items: center; border-radius: 50%;
  border: 1.5px solid rgba(226, 0, 26, 0.55);
  background: radial-gradient(120% 120% at 30% 22%, rgba(226, 0, 26, 0.22), rgba(0, 0, 0, 0.45));
  box-shadow: 0 0 0 4px rgba(226, 0, 26, 0.05), 0 12px 28px -8px rgba(226, 0, 26, 0.55);
}
.route-ic svg { width: 30px; height: 30px; stroke: var(--red-bright); fill: none; }
.route-lbl {
  font-family: var(--font-display); font-weight: 800; text-transform: uppercase;
  letter-spacing: 0.01em; font-size: clamp(1.05rem, 2vw, 1.45rem); color: var(--ink);
}
.route-arrow svg { width: 30px; height: 30px; stroke: var(--red); fill: none; }
.route-sub {
  margin: 22px 0 0; font-family: var(--font-mono); text-transform: uppercase;
  letter-spacing: 0.16em; font-size: 0.8rem; color: var(--chrome-mid);
}

/* Entrance — staggered build-up keyed to the reveal observer */
@media (prefers-reduced-motion: no-preference) {
  .route-strip .route-step, .route-strip .route-arrow {
    opacity: 0; transform: translateY(16px) scale(0.9);
  }
  .route-strip .route-sub { opacity: 0; }
  .route-strip.in .route-step, .route-strip.in .route-arrow {
    animation: routeIn 0.6s var(--ease-out) forwards;
  }
  .route-steps > *:nth-child(1) { animation-delay: 0.05s; }
  .route-steps > *:nth-child(2) { animation-delay: 0.22s; }
  .route-steps > *:nth-child(3) { animation-delay: 0.39s; }
  .route-steps > *:nth-child(4) { animation-delay: 0.56s; }
  .route-steps > *:nth-child(5) { animation-delay: 0.73s; }
  .route-strip.in .route-sub { animation: routeIn 0.6s var(--ease-out) 0.95s forwards; }
  /* Continuous flow hint on the arrows once built */
  .route-strip.in .route-arrow svg { animation: routeFlow 1.7s ease-in-out 1.2s infinite; }
}
@keyframes routeIn { to { opacity: 1; transform: translateY(0) scale(1); } }
@keyframes routeFlow {
  0%, 100% { transform: translateX(-3px); opacity: 0.55; }
  50%      { transform: translateX(4px); opacity: 1; }
}
@media (max-width: 540px) {
  .route-ic { width: 54px; height: 54px; }
  .route-ic svg { width: 26px; height: 26px; }
  .route-step { min-width: 78px; }
  .route-arrow svg { width: 22px; height: 22px; }
}

/* =========================================================
   PREMIUM DARK SURFACE SYSTEM
   Two alternating variants, both deep & cinematic:
   A = open carbon (plain .section): transparent → body's red atmosphere
       shows through, framed by the red seam + ambient wash.
   B = structured panel (.process/.benefits/.cta-band): layered anthracite
       gradient + dark-red glow + a fine metallic top edge for depth.
   Replaces the old flat blue-grey --graphite panels.
   ========================================================= */
.process, .benefits, .cta-band {
  background:
    radial-gradient(115% 72% at 50% 0%, rgba(226, 0, 26, 0.11), transparent 60%),
    radial-gradient(70% 95% at 100% 100%, rgba(226, 0, 26, 0.06), transparent 62%),
    linear-gradient(180deg, #151317 0%, #0c0b0e 56%, #100e12 100%);
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05);
}
/* Variant B keeps a slightly deeper top wash than the open sections */
.process::after, .cta-band::after, .faq-teaser::after {
  background: radial-gradient(64% 100% at 50% 0%, rgba(226, 0, 26, 0.13), transparent 70%);
}

/* Surface depth — metallic top edge + grounded shadow on every card */
.info-card, .card, .coat-card, .contact-card, .faq-item {
  box-shadow: 0 28px 56px -30px rgba(0, 0, 0, 0.9), inset 0 1px 0 rgba(255, 255, 255, 0.045);
}

/* Media figure fallback fill — neutral carbon instead of blue-grey */
.media {
  background:
    radial-gradient(130% 110% at 25% 12%, #262528, #161517 68%),
    conic-gradient(from 200deg at 50% 50%, #161517, #232227, #131214, #2d2c30, #161517);
}

/* =========================================================
   PREMIUM HEADER  (Apple × Porsche × Linear)
   ========================================================= */
/* Legibility scrim at the very top; fades out once the glass appears */
.site-header::before {
  content: ""; position: absolute; inset: 0 0 auto 0; height: 150%; z-index: -1; pointer-events: none;
  background: linear-gradient(180deg, rgba(5, 5, 6, 0.6), transparent);
  transition: opacity 0.4s var(--ease);
}
.site-header.scrolled::before { opacity: 0; }
.site-header.scrolled {
  background: rgba(10, 9, 11, 0.72);
  -webkit-backdrop-filter: blur(18px) saturate(150%);
  backdrop-filter: blur(18px) saturate(150%);
  border-bottom-color: rgba(255, 255, 255, 0.08);
  box-shadow: 0 18px 40px -28px rgba(0, 0, 0, 0.9), 0 0 34px -12px rgba(226, 0, 26, 0.4);
}
/* Red hairline glow along the bottom edge when condensed */
.site-header.scrolled::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: -1px; height: 1px; pointer-events: none;
  background: linear-gradient(90deg, transparent, rgba(255, 38, 48, 0.7), transparent);
}

/* Brand — subtle living logo */
.brand img { transition: transform 0.45s var(--ease-out), filter 0.45s var(--ease-out); will-change: transform; }
.brand:hover img { transform: scale(1.07) rotate(-4deg); filter: drop-shadow(0 6px 16px rgba(226, 0, 26, 0.65)); }
.brand:active img { transform: scale(0.97); transition-duration: 0.1s; }
.site-header.scrolled .brand img { transform: scale(0.9); }

/* Nav links — center-out glowing underline, no box */
.nav-links a:not(.nav-cta) { position: relative; }
.nav-links a:not(.nav-cta):hover { background: transparent; color: var(--ink); }
.nav-links a:not(.nav-cta)::after {
  content: ""; display: block; position: absolute; left: 14px; right: 14px; bottom: 6px; top: auto;
  height: 2px; margin: 0; border-radius: 2px;
  background: linear-gradient(90deg, var(--red-bright), var(--red));
  box-shadow: 0 0 10px rgba(255, 38, 48, 0.85);
  transform: scaleX(0); transform-origin: center;
  transition: transform 0.32s var(--ease-out);
}
.nav-links a:not(.nav-cta):hover::after,
.nav-links a[aria-current="page"]:not(.nav-cta)::after { transform: scaleX(1); }

/* =========================================================
   KPI BAND  (Zahlen & Fakten — animierte Kennzahlen)
   ========================================================= */
.kpi-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; margin-top: 8px; }
.kpi {
  position: relative; overflow: hidden; text-align: center; padding: 30px 18px 26px;
  border: 1px solid var(--hair); border-radius: var(--radius);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05);
  transition: transform 0.45s var(--ease-out), border-color 0.4s var(--ease), box-shadow 0.45s var(--ease-out);
}
.kpi::before {
  content: ""; position: absolute; top: 0; left: 50%; transform: translateX(-50%);
  width: 58%; height: 1px; background: linear-gradient(90deg, transparent, var(--red-bright), transparent);
  box-shadow: 0 0 14px rgba(255, 38, 48, 0.7);
}
@media (hover: hover) and (pointer: fine) {
  .kpi:hover {
    transform: translateY(-5px);
    border-color: rgba(226, 0, 26, 0.42);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.07), 0 22px 46px -20px rgba(226, 0, 26, 0.55);
  }
}
.kpi-num {
  display: block; font-family: var(--font-display); font-weight: 800; line-height: 0.95;
  font-size: clamp(2.5rem, 5vw, 3.7rem); color: var(--ink);
  font-variant-numeric: tabular-nums; letter-spacing: -0.01em;
}
.kpi-num .dot { color: var(--red-bright); margin: 0 0.1em; text-shadow: 0 0 18px rgba(255, 38, 48, 0.6); }
.kpi-lbl {
  display: block; margin-top: 12px; font-family: var(--font-mono); font-size: 0.72rem;
  letter-spacing: 0.14em; text-transform: uppercase; color: var(--ink-mute);
}
@media (max-width: 860px) { .kpi-grid { grid-template-columns: repeat(2, 1fr); gap: 14px; } }
@media (max-width: 440px) { .kpi-grid { grid-template-columns: 1fr; } }
