/* ============================================================
   Sachwertmetalle.de — Landingpage Seltene Erden & Technologiemetalle
   Dark-Premium-Theme, Cabinet Grotesk (Display) + Satoshi (Text)
   ============================================================ */

@import url('../fonts/fonts.css');

:root {
  --bg: #0b0e12;
  --bg-2: #10141a;
  --panel: #151a22;
  --panel-2: #1a202a;
  --line: rgba(255, 255, 255, 0.09);
  --line-soft: rgba(255, 255, 255, 0.055);
  --text: #eceae4;
  --text-soft: #c3c7cd;
  --muted: #97a0ab;
  --faint: #6d7681;
  --gold: #c9a227;
  --gold-2: #e3c766;
  --gold-deep: #9a7c1e;
  --gold-soft: rgba(201, 162, 39, 0.12);
  --gold-line: rgba(201, 162, 39, 0.35);
  --paper: #f6f3ec;
  --paper-2: #eee9dd;
  --ink: #14181e;
  --ink-soft: #3d444d;
  --btn-ink: #191307;
  --ok: #4fbf7d;
  --err: #e46a6a;
  --radius: 18px;
  --radius-sm: 12px;
  --sec: clamp(96px, 11vw, 168px);
  --display: 'Cabinet Grotesk', 'Segoe UI', system-ui, sans-serif;
  --sans: 'Satoshi', 'Segoe UI', system-ui, sans-serif;
  --shadow-lg: 0 30px 80px rgba(0, 0, 0, 0.55);
  --shadow-md: 0 16px 44px rgba(0, 0, 0, 0.4);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
html.has-gsap { scroll-behavior: auto; }
html { overflow-x: clip; }

body {
  font-family: var(--sans);
  background: var(--bg);
  color: var(--text);
  font-size: 1.02rem;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  overflow-x: clip;
  width: 100%;
  max-width: 100%;
}

::selection { background: var(--gold); color: var(--btn-ink); }

img { max-width: 100%; display: block; }
a { color: inherit; }
button { font: inherit; cursor: pointer; }

:focus-visible {
  outline: 2px solid var(--gold-2);
  outline-offset: 3px;
  border-radius: 4px;
}

.container {
  width: min(1200px, 92vw);
  margin-inline: auto;
}
.container--wide { width: min(1400px, 94vw); margin-inline: auto; }

/* ---------- Typografie ---------- */

h1, h2, h3, h4 {
  font-family: var(--display);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -0.015em;
  color: var(--text);
  text-wrap: balance;
}

h1 { font-size: clamp(2.5rem, 4.5vw, 4.2rem); font-weight: 800; }
h2 { font-size: clamp(2rem, 3.8vw, 3.1rem); font-weight: 800; }
h3 { font-size: clamp(1.3rem, 2.2vw, 1.7rem); }

.lead {
  font-size: clamp(1.06rem, 1.5vw, 1.22rem);
  color: var(--text-soft);
  line-height: 1.75;
  max-width: 62ch;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-2);
  margin-bottom: 22px;
}
.eyebrow::before {
  content: "";
  width: 34px;
  height: 1px;
  background: var(--gold-line);
}
.eyebrow--center { justify-content: center; }
.eyebrow--center::after {
  content: "";
  width: 34px;
  height: 1px;
  background: var(--gold-line);
}

.section-head { max-width: 780px; }
.section-head--center { margin-inline: auto; text-align: center; }
.section-head--center .lead { margin-inline: auto; }
.section-head h2 { margin-bottom: 18px; }

.sec { padding-block: var(--sec); position: relative; }
.sec--tight { padding-block: calc(var(--sec) * 0.62); }
.sec--flush-top { padding-top: 0; }

.bg-2 { background: var(--bg-2); }

/* Mikro-CTA am Ende von Sections */
.micro-cta {
  margin-top: 56px;
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
}
.micro-cta__note { color: var(--muted); font-size: 0.92rem; }

/* ---------- Buttons ---------- */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: 1px solid transparent;
  border-radius: 999px;
  padding: 15px 30px;
  font-weight: 700;
  font-size: 1rem;
  text-decoration: none;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease, border-color 0.25s ease;
  will-change: transform;
}
.btn svg { width: 18px; height: 18px; flex-shrink: 0; }
.btn--gold {
  background: linear-gradient(135deg, var(--gold-2), var(--gold) 55%, var(--gold-deep));
  color: var(--btn-ink);
  box-shadow: 0 12px 34px rgba(201, 162, 39, 0.28);
}
.btn--gold:hover { transform: translateY(-2px); box-shadow: 0 18px 44px rgba(201, 162, 39, 0.38); }
.btn--ghost {
  background: rgba(255, 255, 255, 0.03);
  border-color: var(--line);
  color: var(--text);
}
.btn--ghost:hover { border-color: rgba(255, 255, 255, 0.28); transform: translateY(-2px); }
.btn--lg { padding: 18px 36px; font-size: 1.06rem; }
.btn--block { width: 100%; }
.btn[disabled] { opacity: 0.6; pointer-events: none; }

/* ---------- Navigation ---------- */

.nav {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 60;
  padding: 18px 0;
  transition: padding 0.35s ease;
}
.nav__inner {
  width: min(1240px, 94vw);
  margin-inline: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 10px 12px 10px 22px;
  border-radius: 999px;
  border: 1px solid transparent;
  transition: background 0.35s ease, border-color 0.35s ease, box-shadow 0.35s ease;
}
.nav.is-scrolled .nav__inner {
  background: rgba(13, 16, 21, 0.78);
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
  border-color: var(--line-soft);
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.45);
}
.nav__brand {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 5px;
  text-decoration: none;
  line-height: 1;
}
.nav__wordmark {
  font-family: var(--display);
  font-weight: 800;
  font-size: 1.18rem;
  letter-spacing: 0.02em;
  color: var(--text);
}
.nav__wordmark b { color: var(--gold-2); font-weight: 800; }
.nav__byline { font-size: 0.68rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--faint); }
.nav__powered {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.64rem;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: var(--faint);
  white-space: nowrap;
}
.nav__powered img { height: 21px; width: auto; display: block; }
.nav__links { display: flex; gap: 30px; }
.nav__links a {
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--text-soft);
  transition: color 0.2s;
}
.nav__links a:hover { color: var(--gold-2); }
.nav__cta { display: flex; align-items: center; gap: 12px; }
.nav .btn { padding: 12px 24px; font-size: 0.95rem; }

.burger {
  display: none;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.04);
  position: relative;
}
.burger span,
.burger::before,
.burger::after {
  content: "";
  position: absolute;
  left: 14px;
  right: 14px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease, top 0.3s ease;
}
.burger::before { top: 17px; }
.burger span { top: 22px; }
.burger::after { top: 27px; }
body.menu-open .burger::before { top: 22px; transform: rotate(45deg); }
body.menu-open .burger span { opacity: 0; }
body.menu-open .burger::after { top: 22px; transform: rotate(-45deg); }

.mnav {
  position: fixed;
  inset: 0;
  z-index: 55;
  background: rgba(9, 11, 15, 0.96);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 8px;
  padding: 90px 8vw 40px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}
body.menu-open .mnav { opacity: 1; visibility: visible; }
.mnav a {
  text-decoration: none;
  font-family: var(--display);
  font-size: clamp(1.6rem, 6vw, 2.2rem);
  font-weight: 700;
  color: var(--text);
  padding: 10px 0;
  border-bottom: 1px solid var(--line-soft);
}
.mnav .btn { margin-top: 28px; border-bottom: none; font-family: var(--sans); font-size: 1.05rem; }

/* ---------- Hero ---------- */

.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  padding: 150px 0 90px;
  overflow: clip;
}
.hero__glow {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(52% 42% at 82% 30%, rgba(201, 162, 39, 0.13), transparent 65%),
    radial-gradient(40% 34% at 12% 78%, rgba(0, 70, 125, 0.22), transparent 70%);
}
.hero__grain {
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.5;
  background-image: radial-gradient(rgba(255, 255, 255, 0.045) 1px, transparent 1px);
  background-size: 26px 26px;
  mask-image: radial-gradient(70% 60% at 50% 40%, #000, transparent 80%);
  -webkit-mask-image: radial-gradient(70% 60% at 50% 40%, #000, transparent 80%);
}
.hero__grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 7fr) minmax(0, 5fr);
  gap: clamp(40px, 6vw, 90px);
  align-items: center;
}
.hero h1 { margin: 0 0 26px; max-width: 22ch; }
.hero h1 em {
  font-style: normal;
  color: var(--gold-2);
}
.hero .lead { max-width: 54ch; }
.hero__actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 40px;
}
.hero__trust {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-top: 52px;
  flex-wrap: wrap;
}
.hero__award {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 10px 18px 10px 10px;
  border: 1px solid var(--line-soft);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.03);
}
.hero__award img { height: 74px; width: auto; border-radius: 8px; }
.hero__award span {
  font-size: 0.85rem;
  line-height: 1.45;
  color: var(--text-soft);
  max-width: 210px;
}
.hero__award b { color: var(--text); }
.hero__trustline {
  font-size: 0.88rem;
  color: var(--muted);
  display: inline-flex;
  align-items: center;
  gap: 9px;
}
.hero__trustline svg { width: 16px; height: 16px; color: var(--gold-2); flex-shrink: 0; }

.hero__visual { position: relative; }
.hero__frame {
  position: relative;
  border-radius: 26px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--line-soft);
  aspect-ratio: 4 / 5;
}
.hero__frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.08);
}
.hero__frame::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(200deg, transparent 55%, rgba(11, 14, 18, 0.55));
}
.hero__chip {
  position: absolute;
  left: -26px;
  bottom: 44px;
  background: rgba(16, 20, 26, 0.9);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  border: 1px solid var(--gold-line);
  border-radius: 16px;
  padding: 16px 22px;
  box-shadow: var(--shadow-md);
}
.hero__chip b { display: block; font-family: var(--display); font-size: 1.25rem; color: var(--gold-2); }
.hero__chip span { font-size: 0.85rem; color: var(--muted); }

.hero__scroll {
  position: absolute;
  bottom: 26px;
  left: 50%;
  transform: translateX(-50%);
  color: var(--faint);
  font-size: 0.78rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}
.hero__scroll::after {
  content: "";
  width: 1px;
  height: 44px;
  background: linear-gradient(var(--gold-2), transparent);
  animation: scrollhint 2.2s ease-in-out infinite;
}
@keyframes scrollhint {
  0%, 100% { transform: scaleY(0.4); transform-origin: top; opacity: 0.4; }
  50% { transform: scaleY(1); opacity: 1; }
}

/* ---------- Stats-Leiste ---------- */

.stats {
  border-block: 1px solid var(--line-soft);
  background: var(--bg-2);
}
.stats__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  padding: 44px 0;
}
.stat {
  text-align: center;
  padding: 30px 22px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.025);
}
.stat__num {
  font-family: var(--display);
  font-weight: 800;
  font-size: clamp(2.3rem, 3.6vw, 3.1rem);
  color: var(--gold-2);
  line-height: 1;
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 0.1em;
  white-space: nowrap;
}
.stat__num--word { color: #fff; font-size: clamp(1.9rem, 3vw, 2.6rem); }
.stat__pre { font-size: 0.4em; font-weight: 600; color: var(--muted); font-style: normal; }
.stat__cur { font-size: 0.55em; font-weight: 700; color: var(--gold-2); font-style: normal; }
.stat__lbl { margin-top: 14px; color: var(--muted); font-size: 0.92rem; line-height: 1.55; }

/* ---------- Manifest (Scrub-Text) ---------- */

.manifest { padding-block: calc(var(--sec) * 0.9); }
.manifest p {
  font-family: var(--display);
  font-weight: 700;
  font-size: clamp(1.7rem, 3.6vw, 3rem);
  line-height: 1.28;
  letter-spacing: -0.01em;
  max-width: 22ch;
}
.manifest .w { opacity: 0.13; display: inline-block; transition: opacity 0.2s linear; }
.manifest .w--gold { color: var(--gold-2); }

/* ---------- Story-Sections (gepinnte Explosions-Ansichten) ---------- */

.story { position: relative; }
.story__pin {
  min-height: 100svh;
  display: flex;
  align-items: center;
  overflow: clip;
  position: relative;
}
.story__bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: radial-gradient(60% 55% at 72% 50%, rgba(201, 162, 39, 0.07), transparent 70%);
}
.story__grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 5fr) minmax(0, 6fr);
  gap: clamp(30px, 5vw, 80px);
  align-items: center;
  width: min(1240px, 92vw);
  margin-inline: auto;
  padding-block: 70px;
}
.story__copy h2 { margin-bottom: 14px; }
.story__copy .lead { font-size: 1.05rem; }

/* Es ist immer nur der AKTIVE Callout sichtbar — an fester Stelle, damit der Text
   nicht in einer langen Liste nach unten wandert. */
.callouts {
  margin-top: 34px;
  position: relative;
  min-height: 178px;
}
.callout {
  position: absolute;
  inset: 0 0 auto;
  border: 1px solid var(--gold-line);
  border-radius: var(--radius-sm);
  background: rgba(201, 162, 39, 0.06);
  padding: 18px 20px;
  opacity: 0;
  transform: translateY(12px);
  pointer-events: none;
  transition: opacity 0.45s ease, transform 0.45s cubic-bezier(0.32, 0.72, 0.28, 1);
}
.callout.is-on { opacity: 1; transform: none; pointer-events: auto; }
.callout.was-on { opacity: 0; transform: translateY(-12px); }
.callout__tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold-2);
  margin-bottom: 6px;
}
.callout__tag::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 0 4px rgba(201, 162, 39, 0.18);
}
.callout h4 { font-size: 1.02rem; margin-bottom: 4px; font-family: var(--sans); font-weight: 700; }
.callout p { font-size: 0.9rem; color: var(--muted); line-height: 1.55; }

.story__stage-wrap { position: relative; }
.story__stage {
  position: relative;
  margin-inline: auto;
  width: 100%;
  max-height: 82svh;
}
.story__stage::before {
  content: "";
  position: absolute;
  inset: -14%;
  background: radial-gradient(50% 50% at 50% 50%, rgba(201, 162, 39, 0.12), rgba(255, 255, 255, 0.05) 42%, transparent 72%);
  pointer-events: none;
}
/* Schockwelle im Moment der Explosion */
.story__flash {
  position: absolute;
  inset: -22%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(201, 162, 39, 0.5), rgba(201, 162, 39, 0.1) 45%, transparent 70%);
  opacity: 0;
  pointer-events: none;
}

/* Container der Einzelteile (GSAP blendet ihn beim Uebergang ein) */
.story__partswrap {
  position: absolute;
  inset: 0;
  transform-style: preserve-3d;
}

/* Explosions-Achse: gestrichelte Leitlinie zwischen den Bauteilen */
.story__axis {
  position: absolute;
  width: 0;
  border-left: 1px dashed rgba(201, 162, 39, 0.38);
  transform-origin: top center;
  pointer-events: none;
}

/* Einzelne Bauteile: Wrapper wird von GSAP bewegt/eingeblendet ...
   (keine CSS-Transition darauf — sonst bremst sie das Scrub-Timing aus) */
.story__part {
  position: absolute;
  will-change: transform;
}
/* ... das Bild darin uebernimmt Fokus-Dimmen und Leuchten. */
.story__part img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 16px 30px rgba(0, 0, 0, 0.55));
  transition: opacity 0.45s ease, filter 0.45s ease;
}
/* Fokus: aktives Bauteil leuchtet, der Rest tritt zurueck (bleibt aber lesbar) */
.story__stage.has-focus .story__part img {
  opacity: 0.58;
  filter: grayscale(0.25) brightness(0.82) drop-shadow(0 12px 24px rgba(0, 0, 0, 0.5));
}
.story__stage.has-focus .story__part.is-hot img {
  opacity: 1;
  filter: drop-shadow(0 0 30px rgba(201, 162, 39, 0.65)) drop-shadow(0 14px 28px rgba(0, 0, 0, 0.55)) brightness(1.15) saturate(1.1);
}

/* Marker am aktiven Bauteil — liegt AUSSERHALB der 3D-Buehne, damit die per
   translateZ nach vorn geschobenen Bauteile ihn nicht verdecken. */
.story__marker {
  position: absolute;
  transform: translate(-50%, -50%);
  display: flex;
  align-items: center;
  gap: 10px;
  pointer-events: none;
  opacity: 0;
  z-index: 5;
  transition: opacity 0.4s ease, left 0.35s cubic-bezier(0.32, 0.72, 0.28, 1), top 0.35s cubic-bezier(0.32, 0.72, 0.28, 1);
}
.story__marker.is-on { opacity: 1; }
/* kurzer Verbindungsstrich nach unten auf das Bauteil */
.story__marker::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 100%;
  width: 1px;
  height: 12px;
  background: linear-gradient(var(--gold-2), transparent);
}
.story__ring {
  position: relative;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  border: 2px solid var(--gold-2);
  background: rgba(201, 162, 39, 0.25);
  box-shadow: 0 0 18px rgba(201, 162, 39, 0.6);
  flex-shrink: 0;
}
.story__ring::after {
  content: "";
  position: absolute;
  inset: -2px;
  border-radius: 50%;
  border: 2px solid var(--gold-2);
  animation: markerPulse 1.9s ease-out infinite;
}
@keyframes markerPulse {
  0% { transform: scale(1); opacity: 0.75; }
  100% { transform: scale(2.6); opacity: 0; }
}
.story__label {
  white-space: nowrap;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.11em;
  text-transform: uppercase;
  color: var(--gold-2);
  /* deckend, damit das Label auch ueber einem Bauteil klar lesbar bleibt */
  background: rgba(9, 12, 16, 0.95);
  border: 1px solid var(--gold-line);
  border-radius: 999px;
  padding: 5px 12px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.6);
}

.story__stage > img.story__full { position: relative; width: 100%; height: auto; }

.story__progress {
  position: absolute;
  left: 0;
  right: 0;
  bottom: -26px;
  height: 2px;
  background: var(--line-soft);
  border-radius: 2px;
  overflow: hidden;
}
.story__progress i {
  display: block;
  height: 100%;
  background: linear-gradient(90deg, var(--gold-deep), var(--gold-2));
  transform: scaleX(0);
  transform-origin: left;
}

.story__end {
  margin-top: 30px;
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  opacity: 0.25;
  transition: opacity 0.4s ease;
}
.story__end.is-on { opacity: 1; }
.story__end p {
  font-family: var(--display);
  font-weight: 700;
  font-size: 1.12rem;
  color: var(--text);
}
.story__end .btn { padding: 12px 22px; font-size: 0.92rem; }

/* ---------- Marquee ---------- */

.marquee {
  border-block: 1px solid var(--line-soft);
  padding: 22px 0;
  overflow: hidden;
  background: var(--bg-2);
}
.marquee__track {
  display: flex;
  gap: 54px;
  width: max-content;
  animation: marquee 30s linear infinite;
}
.marquee:hover .marquee__track { animation-play-state: paused; }
.marquee__item {
  display: inline-flex;
  align-items: center;
  gap: 54px;
  font-family: var(--display);
  font-weight: 700;
  font-size: 1.05rem;
  letter-spacing: 0.06em;
  color: var(--text-soft);
  white-space: nowrap;
}
.marquee__item::after {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--gold);
  opacity: 0.75;
}
@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ---------- Erfolgsformel ---------- */

.formel__pin {
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow: clip;
  padding-block: 60px;
}
.formel__head { text-align: center; margin-bottom: clamp(30px, 4.5vh, 60px); }
.formel__head h2 { margin-bottom: 12px; }
.formel__row {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  gap: clamp(10px, 2vw, 26px);
  align-items: stretch;
  width: min(1240px, 92vw);
  margin-inline: auto;
}
.fcard {
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
  border: 1px solid var(--line-soft);
  background: var(--panel);
  min-height: clamp(300px, 42vh, 420px);
  display: flex;
  align-items: flex-end;
  will-change: transform;
}
.fcard img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.85;
}
.fcard::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(185deg, rgba(11, 14, 18, 0.05) 30%, rgba(11, 14, 18, 0.92) 82%);
}
.fcard__body { position: relative; z-index: 1; padding: 26px 26px 24px; }
.fcard__body h3 { font-size: 1.3rem; margin-bottom: 8px; }
.fcard__body p { font-size: 0.92rem; color: var(--text-soft); line-height: 1.6; max-width: 34ch; }
.fcard__num {
  position: absolute;
  top: 18px;
  left: 22px;
  z-index: 1;
  font-family: var(--display);
  font-weight: 800;
  font-size: 0.95rem;
  color: var(--gold-2);
  background: rgba(11, 14, 18, 0.72);
  border: 1px solid var(--gold-line);
  border-radius: 999px;
  padding: 6px 14px;
}
.fop {
  align-self: center;
  font-family: var(--display);
  font-weight: 800;
  font-size: clamp(2rem, 4vw, 3.2rem);
  color: var(--gold-2);
  text-shadow: 0 0 30px rgba(201, 162, 39, 0.4);
  will-change: transform;
}
.formel__result {
  width: min(1240px, 92vw);
  margin: clamp(18px, 3vh, 34px) auto 0;
  border-radius: var(--radius);
  border: 1px solid var(--gold-line);
  background:
    linear-gradient(100deg, rgba(201, 162, 39, 0.14), rgba(201, 162, 39, 0.03) 55%),
    var(--panel);
  padding: clamp(24px, 4vh, 40px) clamp(24px, 3.5vw, 48px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 26px;
  flex-wrap: wrap;
  will-change: transform;
}
.formel__result h3 {
  font-size: clamp(1.4rem, 2.6vw, 2.1rem);
  display: flex;
  align-items: center;
  gap: 18px;
}
.formel__result h3 .eq {
  color: var(--gold-2);
  font-size: 1.2em;
}
.formel__result p { color: var(--muted); font-size: 0.92rem; max-width: 52ch; margin-top: 6px; }
/* Textblock darf schrumpfen, damit die beiden CTAs rechts daneben Platz finden */
.formel__result > div:first-child { flex: 1 1 360px; min-width: 0; }
.formel__cta { display: flex; gap: 12px; flex-wrap: wrap; flex-shrink: 0; }

/* ---------- Metalle: horizontales Akkordeon ---------- */

.macc {
  display: flex;
  gap: 12px;
  margin-top: 60px;
  height: 460px;
}
.macc__item {
  position: relative;
  flex: 1;
  border-radius: var(--radius);
  border: 1px solid var(--line-soft);
  background: linear-gradient(180deg, var(--panel-2), var(--panel));
  overflow: hidden;
  cursor: pointer;
  transition: flex 0.6s cubic-bezier(0.32, 0.72, 0.28, 1), border-color 0.4s ease;
  min-width: 0;
}
.macc__item:hover, .macc__item.is-open { flex: 3.4; border-color: var(--gold-line); }
.macc__img {
  position: absolute;
  inset: auto -10% -6% -10%;
  height: 62%;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  pointer-events: none;
}
.macc__img img {
  max-height: 100%;
  width: auto;
  max-width: 86%;
  object-fit: contain;
  filter: drop-shadow(0 22px 30px rgba(0, 0, 0, 0.55));
  transform: translateY(8%) scale(0.96);
  transition: transform 0.6s cubic-bezier(0.32, 0.72, 0.28, 1);
}
.macc__item:hover .macc__img img, .macc__item.is-open .macc__img img { transform: translateY(0) scale(1.04); }
.macc__vert {
  position: absolute;
  top: 24px;
  left: 50%;
  transform: translateX(-50%);
  writing-mode: vertical-rl;
  font-family: var(--display);
  font-weight: 700;
  font-size: 1.15rem;
  letter-spacing: 0.08em;
  color: var(--text-soft);
  transition: opacity 0.3s ease;
  white-space: nowrap;
}
.macc__item:hover .macc__vert, .macc__item.is-open .macc__vert { opacity: 0; }
.macc__body {
  position: absolute;
  inset: 24px 24px auto;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.45s ease 0.15s, transform 0.45s ease 0.15s;
  min-width: 240px;
}
.macc__item:hover .macc__body, .macc__item.is-open .macc__body { opacity: 1; transform: none; }
.macc__chip {
  display: inline-block;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: var(--gold-2);
  border: 1px solid var(--gold-line);
  border-radius: 999px;
  padding: 4px 12px;
  margin-bottom: 12px;
}
.macc__chip--warn { color: #e8b46a; border-color: rgba(232, 180, 106, 0.4); }
.macc__body h3 { font-size: 1.5rem; margin-bottom: 8px; }
.macc__body p { font-size: 0.9rem; color: var(--muted); line-height: 1.6; max-width: 30ch; }

.macc-grid { display: none; }

/* ---------- Ablauf & Rechner ---------- */

.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-flow: dense;
  gap: 16px;
  margin-top: 60px;
}
.step {
  border: 1px solid var(--line-soft);
  border-radius: var(--radius);
  background: var(--panel);
  padding: 30px 26px;
  position: relative;
}
.step__no {
  font-family: var(--display);
  font-weight: 800;
  font-size: 2.6rem;
  color: transparent;
  -webkit-text-stroke: 1px var(--gold-line);
  line-height: 1;
  display: block;
  margin-bottom: 18px;
}
.step h4 { font-size: 1.06rem; margin-bottom: 8px; font-family: var(--sans); font-weight: 700; }
.step p { font-size: 0.9rem; color: var(--muted); line-height: 1.6; }

.calc {
  margin-top: 70px;
  border: 1px solid var(--line-soft);
  border-radius: var(--radius);
  background: linear-gradient(180deg, var(--panel-2), var(--panel));
  padding: clamp(28px, 4vw, 52px);
  max-width: 900px;
  margin-inline: auto;
}
.calc__head { text-align: center; margin-bottom: 8px; }
.calc__head h3 { margin-bottom: 6px; }
.calc__head p { color: var(--muted); font-size: 0.94rem; }
.calc__value {
  font-family: var(--display);
  font-weight: 800;
  font-size: clamp(2.2rem, 4.4vw, 3.2rem);
  color: var(--gold-2);
  text-align: center;
  margin: 18px 0 6px;
}
.calc input[type="range"] {
  width: 100%;
  accent-color: var(--gold);
  height: 6px;
  margin-top: 8px;
}
.calc__scale { display: flex; justify-content: space-between; color: var(--faint); font-size: 0.8rem; margin-top: 6px; }
.calc__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-flow: dense;
  gap: 14px;
  margin-top: 34px;
}
.calc__cell {
  background: rgba(201, 162, 39, 0.07);
  border: 1px solid var(--gold-line);
  border-radius: var(--radius-sm);
  padding: 22px 18px;
  text-align: center;
}
.calc__cell b {
  font-family: var(--display);
  font-weight: 800;
  font-size: clamp(1.4rem, 2.4vw, 1.8rem);
  color: var(--text);
  display: block;
  margin-bottom: 6px;
}
.calc__cell span { font-size: 0.83rem; color: var(--muted); line-height: 1.5; display: block; }
.calc__note { text-align: center; color: var(--faint); font-size: 0.8rem; margin-top: 20px; line-height: 1.6; }
.calc .micro-cta { justify-content: center; margin-top: 30px; }

/* ---------- Stärken / Grenzen ---------- */

.honest {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-auto-flow: dense;
  gap: 18px;
  margin-top: 60px;
}
.honest__col {
  border-radius: var(--radius);
  padding: clamp(26px, 3vw, 42px);
  border: 1px solid var(--line-soft);
}
.honest__col--pro { background: linear-gradient(180deg, var(--panel-2), var(--panel)); }
.honest__col--contra { background: rgba(228, 106, 106, 0.045); border-color: rgba(228, 106, 106, 0.18); }
.honest__col h3 { margin-bottom: 24px; display: flex; align-items: center; gap: 12px; }
.honest__col h3 svg { width: 22px; height: 22px; flex-shrink: 0; }
.honest__col--pro h3 svg { color: var(--gold-2); }
.honest__col--contra h3 svg { color: var(--err); }
.honest__col ul { list-style: none; display: grid; gap: 16px; }
.honest__col li { display: flex; gap: 12px; font-size: 0.95rem; color: var(--text-soft); line-height: 1.6; }
.honest__col li svg { width: 17px; height: 17px; flex-shrink: 0; margin-top: 5px; }
.honest__col--pro li svg { color: var(--gold-2); }
.honest__col--contra li svg { color: var(--err); }
.honest__col li b { color: var(--text); }

/* ---------- Kapitalwerk / Trust ---------- */

.about__grid {
  display: grid;
  grid-template-columns: minmax(0, 5fr) minmax(0, 7fr);
  gap: clamp(36px, 5vw, 80px);
  align-items: start;
}
.about__award {
  border: 1px solid var(--line-soft);
  border-radius: var(--radius);
  background: linear-gradient(180deg, var(--panel-2), var(--panel));
  padding: 34px;
  display: flex;
  gap: 24px;
  align-items: center;
}
.about__award img { height: 150px; width: auto; border-radius: 10px; }
.about__award p { font-size: 0.95rem; color: var(--text-soft); line-height: 1.65; }
.about__award b { color: var(--text); display: block; margin-bottom: 4px; font-size: 1.05rem; }
.about__points { display: grid; gap: 14px; margin-top: 18px; }
.apoint {
  display: flex;
  gap: 16px;
  border: 1px solid var(--line-soft);
  border-radius: var(--radius-sm);
  padding: 20px 22px;
  background: rgba(255, 255, 255, 0.02);
}
.apoint svg { width: 22px; height: 22px; color: var(--gold-2); flex-shrink: 0; margin-top: 3px; }
.apoint b { display: block; margin-bottom: 3px; }
.apoint p { font-size: 0.9rem; color: var(--muted); line-height: 1.6; }

.videobox {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  cursor: pointer;
  background: #000;
  border: 1px solid var(--line-soft);
  margin-top: 26px;
}
.videobox video { display: block; width: 100%; height: auto; }
.videobox__overlay {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  background: linear-gradient(180deg, rgba(6, 8, 12, 0.1), rgba(6, 8, 12, 0.55));
  transition: opacity 0.35s;
}
.videobox__btn {
  width: 88px;
  height: 88px;
  border-radius: 50%;
  background: var(--gold);
  display: grid;
  place-items: center;
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.55);
  transition: transform 0.3s;
}
.videobox__btn svg { width: 30px; height: 30px; fill: var(--btn-ink); margin-left: 5px; }
.videobox:hover .videobox__btn { transform: scale(1.08); }
.videobox__hint {
  position: absolute;
  bottom: 18px;
  left: 0;
  right: 0;
  text-align: center;
  color: #fff;
  font-size: 0.88rem;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.7);
}
.videobox.playing .videobox__overlay { opacity: 0; pointer-events: none; }

/* ---------- Formular ---------- */

.leadsec { position: relative; overflow: clip; }
.leadsec__glow {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: radial-gradient(55% 50% at 72% 40%, rgba(201, 162, 39, 0.1), transparent 70%);
}
.leadsec__grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 6fr) minmax(0, 6fr);
  gap: clamp(40px, 5vw, 80px);
  align-items: start;
}
.leadsec__ticks { list-style: none; display: grid; gap: 14px; margin-top: 30px; }
.leadsec__ticks li { display: flex; gap: 12px; color: var(--text-soft); font-size: 0.98rem; }
.leadsec__ticks svg { width: 18px; height: 18px; color: var(--gold-2); flex-shrink: 0; margin-top: 4px; }
.leadsec__privacy {
  margin-top: 34px;
  border: 1px solid var(--line-soft);
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.025);
  padding: 18px 22px;
  font-size: 0.88rem;
  color: var(--muted);
  display: flex;
  gap: 12px;
}
.leadsec__privacy svg { width: 18px; height: 18px; color: var(--gold-2); flex-shrink: 0; margin-top: 2px; }

.formcard {
  background: var(--paper);
  color: var(--ink);
  border-radius: var(--radius);
  padding: clamp(26px, 3.4vw, 44px);
  box-shadow: var(--shadow-lg);
}
.formcard h3 { color: var(--ink); margin-bottom: 6px; }
.formcard__sub { color: var(--ink-soft); font-size: 0.93rem; margin-bottom: 22px; }
.formtabs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  background: var(--paper-2);
  border-radius: 999px;
  padding: 6px;
  margin-bottom: 26px;
}
.formtabs button {
  border: none;
  background: transparent;
  border-radius: 999px;
  padding: 12px 10px;
  font-weight: 700;
  font-size: 0.92rem;
  color: var(--ink-soft);
  transition: background 0.25s, color 0.25s, box-shadow 0.25s;
}
.formtabs button.is-active {
  background: var(--ink);
  color: #fff;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.18);
}
.f-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.f-field { margin-bottom: 14px; min-width: 0; }
.f-field label {
  display: block;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: var(--ink-soft);
  margin-bottom: 6px;
}
.f-field .req { color: #b3261e; }
.f-field input, .f-field select {
  width: 100%;
  border: 1px solid #d8d2c2;
  background: #fff;
  border-radius: 10px;
  padding: 13px 14px;
  font: inherit;
  font-size: 0.98rem;
  color: var(--ink);
  transition: border-color 0.2s, box-shadow 0.2s;
}
.f-field input:focus, .f-field select:focus {
  outline: none;
  border-color: var(--gold-deep);
  box-shadow: 0 0 0 3px rgba(201, 162, 39, 0.22);
}
.f-check { display: flex; gap: 10px; font-size: 0.85rem; color: var(--ink-soft); line-height: 1.55; margin-top: 6px; }
.f-check input { margin-top: 3px; accent-color: var(--gold-deep); flex-shrink: 0; }
.f-check a { color: var(--ink); font-weight: 600; }
.f-note { font-size: 0.8rem; color: #8a8474; margin-top: 14px; text-align: center; line-height: 1.55; }
.f-hint {
  font-size: 0.87rem;
  color: var(--ink-soft);
  line-height: 1.6;
  background: var(--paper-2);
  border-radius: 12px;
  padding: 12px 15px;
  margin-bottom: 20px;
}
.f-status {
  display: none;
  border-radius: 10px;
  padding: 13px 16px;
  font-size: 0.92rem;
  margin-bottom: 16px;
  line-height: 1.5;
}
.f-status.ok { display: block; background: rgba(79, 191, 125, 0.14); color: #1e6b41; border: 1px solid rgba(79, 191, 125, 0.4); }
.f-status.err { display: block; background: rgba(228, 106, 106, 0.12); color: #9c2f2f; border: 1px solid rgba(228, 106, 106, 0.35); }
.hp { position: absolute !important; left: -9999px !important; top: -9999px !important; height: 1px; overflow: hidden; }

/* ---------- FAQ ---------- */

.faq { max-width: 820px; margin: 60px auto 0; }
.faq__item { border-bottom: 1px solid var(--line-soft); }
.faq__q {
  width: 100%;
  background: none;
  border: none;
  color: var(--text);
  text-align: left;
  font-family: var(--sans);
  font-weight: 700;
  font-size: 1.05rem;
  padding: 24px 44px 24px 0;
  position: relative;
}
.faq__q::after {
  content: "";
  position: absolute;
  right: 4px;
  top: 50%;
  width: 12px;
  height: 12px;
  border-right: 2px solid var(--gold-2);
  border-bottom: 2px solid var(--gold-2);
  transform: translateY(-70%) rotate(45deg);
  transition: transform 0.3s ease;
}
.faq__item.is-open .faq__q::after { transform: translateY(-30%) rotate(225deg); }
.faq__a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.45s cubic-bezier(0.32, 0.72, 0.28, 1);
}
.faq__a p { color: var(--muted); font-size: 0.96rem; padding-bottom: 26px; max-width: 68ch; }

/* ---------- Disclaimer & Footer ---------- */

.disclaimer {
  background: var(--bg-2);
  border-top: 1px solid var(--line-soft);
  padding: 44px 0;
}
.disclaimer p { color: var(--faint); font-size: 0.8rem; line-height: 1.7; }
.disclaimer p + p { margin-top: 14px; }
.disclaimer b { color: var(--muted); }

.footer { border-top: 1px solid var(--line-soft); padding: 54px 0 40px; }
.footer__grid {
  display: flex;
  justify-content: space-between;
  gap: 30px;
  flex-wrap: wrap;
  align-items: flex-start;
}
.footer__brand { max-width: 420px; }
.footer__brand img { height: 44px; margin-bottom: 16px; }
.footer__brand p { color: var(--muted); font-size: 0.88rem; line-height: 1.65; }
.footer__links { display: flex; gap: 26px; flex-wrap: wrap; }
.footer__links a { color: var(--text-soft); text-decoration: none; font-size: 0.9rem; }
.footer__links a:hover { color: var(--gold-2); }
.footer__bottom {
  margin-top: 36px;
  padding-top: 22px;
  border-top: 1px solid var(--line-soft);
  display: flex;
  justify-content: space-between;
  gap: 14px;
  flex-wrap: wrap;
  color: var(--faint);
  font-size: 0.82rem;
}

/* ---------- Sticky Mobile-CTA ---------- */

.stickybar {
  position: fixed;
  left: 12px;
  right: 12px;
  bottom: 12px;
  z-index: 50;
  display: none;
  transform: translateY(130%);
  transition: transform 0.4s cubic-bezier(0.32, 0.72, 0.28, 1);
}
.stickybar.is-visible { transform: none; }
.stickybar .btn { width: 100%; box-shadow: 0 14px 40px rgba(0, 0, 0, 0.55); }

/* ---------- Reveal-Utility ---------- */

[data-reveal] { opacity: 0; transform: translateY(28px); transition: opacity 0.8s ease, transform 0.8s cubic-bezier(0.22, 0.68, 0.3, 1); }
[data-reveal].is-in { opacity: 1; transform: none; }
[data-reveal="d1"] { transition-delay: 0.1s; }
[data-reveal="d2"] { transition-delay: 0.2s; }
[data-reveal="d3"] { transition-delay: 0.3s; }

/* ---------- Hero: Award-Logo, Trustliste, Textlink ---------- */

/* Auszeichnungs-Siegel: groesser, mittig unter dem Video, dezent pulsierend */
.hero__award--logo { padding: 0; border: none; background: none; gap: 0; align-self: center; }
.hero__award--logo img {
  height: 178px;
  width: auto;
  border-radius: 8px;
  transform-origin: center;
  animation: awardPuls 3.4s ease-in-out infinite;
}
@keyframes awardPuls {
  0%, 100% {
    transform: scale(1);
    filter: drop-shadow(0 10px 26px rgba(0, 0, 0, 0.5));
  }
  50% {
    transform: scale(1.05);
    filter: drop-shadow(0 14px 32px rgba(0, 0, 0, 0.55)) drop-shadow(0 0 24px rgba(201, 162, 39, 0.4));
  }
}
.hero__trustlist { display: flex; flex-direction: column; gap: 11px; }
.hero__textlink {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 18px;
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 500;
  text-decoration: none;
  transition: color 0.2s;
}
.hero__textlink svg { width: 15px; height: 15px; color: var(--gold-2); }
.hero__textlink:hover { color: var(--gold-2); }

/* ---------- Hero: Text links, Video rechts ---------- */

.hero__grid { grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); align-items: center; }
/* Im DOM steht das Visual zuerst (auf dem Handy soll das Video oben stehen);
   auf dem Desktop wird es per order nach rechts geschoben. */
.hero__copy { order: 1; }
.hero__visual { order: 2; display: flex; flex-direction: column; gap: 20px; align-items: flex-start; }
.hero__video.videobox { width: 100%; aspect-ratio: 16 / 9; border-radius: 20px; }
.hero__video video { width: 100%; height: 100%; object-fit: cover; }
.hero__copy { min-width: 0; }
.hero__pre { font-size: 0.42em; }

/* ---------- Stats: CTA-Zeile ---------- */

.stats__cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
  padding: 26px 30px;
  border-top: 1px solid var(--line-soft);
}
.stats__cta p { color: var(--text-soft); font-size: 0.98rem; max-width: 62ch; }
.stats__cta p b { color: #fff; }
.stats__cta-btns { display: flex; gap: 12px; flex-wrap: wrap; }

/* ---------- Bedarfs-Superlativ: Vergleichsbalken ---------- */

.demand { position: relative; overflow: clip; }
.demand__glow {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: radial-gradient(52% 46% at 50% 12%, rgba(201, 162, 39, 0.09), transparent 68%);
}
.dbars {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  margin-top: 56px;
}
.dbar {
  border: 1px solid var(--line-soft);
  border-radius: var(--radius);
  background: var(--panel);
  padding: 28px 26px;
}
.dbar__label {
  display: block;
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 22px;
}
.dbar__row { display: flex; align-items: center; gap: 14px; }
.dbar__row + .dbar__row { margin-top: 16px; }
.dbar__name { flex: 0 0 140px; font-size: 0.92rem; color: var(--text-soft); }
.dbar__track {
  flex: 1;
  height: 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.05);
  overflow: hidden;
  min-width: 0;
}
.dbar__fill {
  display: block;
  height: 100%;
  width: 0;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--gold-deep), var(--gold-2));
  transition: width 1.3s cubic-bezier(0.22, 0.68, 0.3, 1) 0.15s;
}
.dbar__fill--base { background: rgba(255, 255, 255, 0.22); }
[data-reveal].is-in .dbar__fill { width: var(--w); }
.dbar__val {
  flex: 0 0 46px;
  text-align: right;
  font-family: var(--display);
  font-weight: 800;
  font-size: 1.25rem;
  color: var(--muted);
}
.dbar__row--hero .dbar__name { color: #fff; font-weight: 600; }
.dbar__row--hero .dbar__val { color: var(--gold-2); font-size: 1.6rem; }

.demand__peak {
  display: flex;
  align-items: center;
  gap: clamp(22px, 3vw, 40px);
  margin-top: 22px;
  padding: clamp(26px, 3.4vw, 40px);
  border-radius: var(--radius);
  border: 1px solid var(--gold-line);
  background: linear-gradient(100deg, rgba(201, 162, 39, 0.13), rgba(201, 162, 39, 0.02) 58%), var(--panel);
}
.demand__x {
  font-family: var(--display);
  font-weight: 800;
  font-size: clamp(3.4rem, 7vw, 5.4rem);
  line-height: 1;
  color: var(--gold-2);
  flex-shrink: 0;
  text-shadow: 0 0 34px rgba(201, 162, 39, 0.4);
}
.demand__claim { font-size: 1.05rem; color: var(--text-soft); line-height: 1.7; }
.demand__claim b { color: #fff; }
.demand__src { font-size: 0.76rem; color: var(--faint); line-height: 1.6; margin-top: 12px; }

/* ---------- Wahre Werte / Inflationsschutz ---------- */

.worth { position: relative; overflow: clip; }
.worth__glow {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: radial-gradient(50% 44% at 50% 8%, rgba(201, 162, 39, 0.09), transparent 66%);
}
.compare {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  margin-top: 56px;
}
.compare__col {
  border: 1px solid var(--line-soft);
  border-radius: var(--radius);
  padding: clamp(24px, 3vw, 40px);
}
.compare__col--contra { background: rgba(228, 106, 106, 0.045); border-color: rgba(228, 106, 106, 0.16); }
.compare__col--pro {
  background: linear-gradient(160deg, rgba(201, 162, 39, 0.1), rgba(201, 162, 39, 0.02) 60%), var(--panel);
  border-color: var(--gold-line);
  display: flex;
  flex-direction: column;
}
.compare__label {
  display: inline-block;
  font-size: 0.76rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--muted);
  margin-bottom: 20px;
}
.compare__label--pro { color: var(--gold-2); }
.compare__col ul { list-style: none; display: grid; gap: 16px; }
.compare__col li { display: flex; gap: 12px; font-size: 0.98rem; color: var(--text-soft); line-height: 1.55; }
.compare__col li svg { width: 20px; height: 20px; color: var(--err); flex-shrink: 0; margin-top: 3px; }
.compare__col li b { color: #fff; }
.compare__col--pro p { font-size: 1.06rem; color: var(--text-soft); line-height: 1.75; margin-bottom: 26px; }
.compare__col--pro p b { color: #fff; }
.compare__col--pro .btn { align-self: flex-start; margin-top: auto; }

.benefits {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-flow: dense;
  gap: 16px;
  margin-top: 18px;
}
.benefit {
  border: 1px solid var(--line-soft);
  border-radius: var(--radius);
  background: var(--panel);
  padding: 28px 26px;
}
.benefit--wide {
  grid-column: span 3;
  background: linear-gradient(100deg, rgba(201, 162, 39, 0.11), rgba(201, 162, 39, 0.02) 58%), var(--panel);
  border-color: var(--gold-line);
}
.benefit__ico {
  width: 46px;
  height: 46px;
  border-radius: 12px;
  background: var(--gold-soft);
  border: 1px solid var(--gold-line);
  display: grid;
  place-items: center;
  margin-bottom: 16px;
}
.benefit__ico svg { width: 22px; height: 22px; color: var(--gold-2); }
.benefit h3 { font-size: 1.14rem; margin-bottom: 8px; font-family: var(--sans); font-weight: 700; }
.benefit p { font-size: 0.92rem; color: var(--muted); line-height: 1.6; }
.benefit--wide h3 { font-family: var(--display); font-size: 1.5rem; }
.benefit--wide p { font-size: 1rem; color: var(--text-soft); max-width: 74ch; }

/* ---------- Lead-Section: Depot-Direkteinstieg ---------- */

.leadsec__depot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  flex-wrap: wrap;
  margin-top: 30px;
  padding: 20px 24px;
  border: 1px solid var(--gold-line);
  border-radius: var(--radius-sm);
  background: rgba(201, 162, 39, 0.06);
}
.leadsec__depot b { display: block; color: #fff; }
.leadsec__depot span { font-size: 0.9rem; color: var(--muted); }

/* ---------- About: Award-Logo ---------- */

.about__award--logo { display: block; padding: 0; border: none; background: none; margin-bottom: 24px; }
.about__award--logo img { height: 168px; width: auto; border-radius: 10px; filter: drop-shadow(0 12px 30px rgba(0, 0, 0, 0.5)); }

/* ---------- Story: 3D-Perspektive ---------- */

.story__stage-wrap { perspective: 1500px; }
.story__stage { transform-style: preserve-3d; }

/* ---------- Metall-Charts ---------- */

.macc__hint {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 16px;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  color: var(--gold-2);
  opacity: 0;
  transition: opacity 0.4s ease 0.2s;
}
.macc__hint svg { width: 15px; height: 15px; }
.macc__item:hover .macc__hint,
.macc__item.is-open .macc__hint { opacity: 1; }
.macc__item.is-chart .macc__hint { opacity: 0; transition-delay: 0s; }
.macc__chart {
  position: absolute;
  inset: 22px;
  display: flex;
  flex-direction: column;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.55s ease;
}
.macc__item.is-chart .macc__body { opacity: 0; pointer-events: none; }
.macc__item.is-chart .macc__img { opacity: 0; }
.macc__item.is-chart .macc__chart { opacity: 1; pointer-events: auto; }

.mchart { display: flex; flex-direction: column; height: 100%; min-width: 240px; }
.mchart__top { display: flex; align-items: center; justify-content: space-between; gap: 12px; margin-bottom: 12px; }
.mchart__name { font-family: var(--display); font-weight: 700; font-size: 1.25rem; }
.mchart__back {
  font-size: 0.74rem;
  font-weight: 600;
  color: var(--muted);
  background: none;
  border: 1px solid var(--line-soft);
  border-radius: 999px;
  padding: 6px 13px;
  transition: border-color 0.2s, color 0.2s;
}
.mchart__back:hover { color: var(--text); border-color: rgba(255, 255, 255, 0.3); }
.mchart__vals { display: flex; align-items: baseline; gap: 12px; margin-bottom: 2px; }
.mchart__val { font-family: var(--display); font-weight: 800; font-size: 1.7rem; color: #fff; }
.mchart__unit { font-size: 0.82rem; color: var(--muted); }
.mchart__delta { font-size: 0.88rem; font-weight: 700; }
.mchart__delta.up { color: var(--ok); }
.mchart__delta.down { color: var(--err); }
.mchart__svg { flex: 1; min-height: 60px; margin-top: 12px; }
.mchart__svg svg { width: 100%; height: 100%; display: block; overflow: visible; }
.mchart__area { animation: chartArea 1.1s ease forwards; clip-path: inset(0 100% 0 0); }
.mchart__line { stroke-dasharray: 1; stroke-dashoffset: 1; animation: chartLine 1.2s ease forwards; }
.mchart__dot { opacity: 0; animation: chartDot 0.4s ease 1s forwards; }
.mchart__foot { font-size: 0.72rem; color: var(--faint); margin-top: 10px; }
.mchart--info {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: 12px;
  height: 100%;
  min-width: 200px;
  color: var(--muted);
  font-size: 0.9rem;
}
@keyframes chartArea { to { clip-path: inset(0 0 0 0); } }
@keyframes chartLine { to { stroke-dashoffset: 0; } }
@keyframes chartDot { to { opacity: 1; } }

.mcard { position: relative; }
.mcard__chart {
  position: absolute;
  inset: 0;
  background: var(--panel);
  border-radius: inherit;
  padding: 16px 16px 14px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.5s ease;
  display: flex;
  flex-direction: column;
}
.mcard.is-chart .mcard__chart { opacity: 1; pointer-events: auto; }
.mcard.is-chart .mcard__chart .mchart { min-width: 0; }
.mcard { cursor: pointer; }

.chart-note { text-align: center; color: var(--faint); font-size: 0.8rem; margin-top: 26px; max-width: 72ch; margin-inline: auto; line-height: 1.6; }

/* ---------- Responsive ---------- */

@media (max-width: 1080px) {
  .nav__links { display: none; }
  .macc { height: 420px; }
}

@media (max-width: 900px) {
  .burger { display: block; }
  .nav .btn { display: none; }
  .hero { padding-top: 120px; }
  .hero__grid { grid-template-columns: 1fr; gap: 44px; }
  .hero h1 { max-width: none; }
  /* Auf dem Handy wieder Video zuerst (oben), Text darunter */
  .hero__visual { order: 0; align-items: stretch; }
  .hero__copy { order: 1; }
  .hero__award--logo { align-self: center; }
  .stats__grid { grid-template-columns: 1fr 1fr; gap: 12px; padding: 32px 0; }
  .story__grid {
    grid-template-columns: 1fr;
    gap: 14px;
    align-content: center;
    padding-block: 72px 20px;
  }
  .story__stage-wrap { order: -1; }
  .story__stage { max-height: 48svh; max-width: 80vw; margin-inline: auto; }
  .story__label { display: none; }
  .story__copy { position: relative; }
  .story__copy h2 { font-size: 1.5rem; }
  .story__copy .eyebrow { margin-bottom: 10px; }
  .callouts { position: relative; min-height: 172px; margin-top: 14px; }
  .callout { position: absolute; inset: 0 0 auto; opacity: 0; pointer-events: none; }
  .callout.is-on { opacity: 1; pointer-events: auto; }
  .callout.was-on { opacity: 0; }
  .callout p { font-size: 0.85rem; }
  .story__end {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    margin: 0;
    padding: 14px 16px;
    background: var(--panel);
    border: 1px solid var(--gold-line);
    border-radius: var(--radius-sm);
    z-index: 2;
    opacity: 0;
    pointer-events: none;
  }
  .story__end.is-on { opacity: 1; pointer-events: auto; }
  .story__end p { font-size: 0.95rem; }
  .story__copy .lead { display: none; }
  .formel__row { grid-template-columns: 1fr; }
  .fop { justify-self: center; }
  .fcard { min-height: 200px; }
  .macc { display: none; }
  .macc-grid { display: grid; grid-template-columns: 1fr 1fr; grid-auto-flow: dense; gap: 12px; margin-top: 48px; }
  .mcard {
    border: 1px solid var(--line-soft);
    border-radius: var(--radius-sm);
    background: var(--panel);
    padding: 20px 18px 0;
    overflow: hidden;
  }
  .mcard h3 { font-size: 1.15rem; margin: 8px 0 4px; }
  .mcard p { font-size: 0.82rem; color: var(--muted); line-height: 1.5; padding-bottom: 12px; }
  .mcard img { height: 110px; width: auto; margin: 8px auto 0; }
  .steps { grid-template-columns: 1fr 1fr; }
  .honest { grid-template-columns: 1fr; }
  .about__grid { grid-template-columns: 1fr; }
  .leadsec__grid { grid-template-columns: 1fr; }
  .dbars { grid-template-columns: 1fr; }
  .demand__peak { flex-direction: column; align-items: flex-start; text-align: left; }
  .dbar__name { flex-basis: 108px; font-size: 0.86rem; }
  .compare { grid-template-columns: 1fr; }
  .benefits { grid-template-columns: 1fr 1fr; }
  .benefit--wide { grid-column: span 2; }
  .stats__cta { flex-direction: column; align-items: flex-start; }
  .hero__trust { flex-direction: column; align-items: flex-start; gap: 22px; }
  .about__award--logo img { height: 142px; }
  .stickybar { display: block; }
}

@media (max-width: 560px) {
  .f-row { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr; }
  .calc__grid { grid-template-columns: 1fr; }
  .stats__grid { grid-template-columns: 1fr 1fr; }
  .hero__actions .btn { width: 100%; }
  .macc-grid { grid-template-columns: 1fr 1fr; }
  .formel__result { flex-direction: column; align-items: flex-start; }
  .benefits { grid-template-columns: 1fr; }
  .benefit--wide { grid-column: span 1; }
  .hero__award--logo img { height: 148px; }
}

/* ---------- Reduced Motion ---------- */

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  [data-reveal] { opacity: 1; transform: none; }
  .callout { opacity: 1; transform: none; }
  .story__end { opacity: 1; }
  .marquee__track { animation: none; }
}
