/* ============================================ */
/* RESET & BASE                                  */
/* ============================================ */

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

:root {
  /* Brand Colors */
  --black: #0A0A0A;
  --warm-white: #F2F2F0;
  --energy-green: #3DDC84;
  --precision-cyan: #00B4D8;
  --anthracite: #2A2A2A;
  --grey-warm: #888885;
  --grey-light: #D4D4D2;

  /* Derived */
  --black-90: rgba(10, 10, 10, .9);
  --black-70: rgba(10, 10, 10, .7);
  --black-50: rgba(10, 10, 10, .5);
  --white-90: rgba(242, 242, 240, .9);
  --white-70: rgba(242, 242, 240, .7);
  --white-50: rgba(242, 242, 240, .5);
  --white-30: rgba(242, 242, 240, .3);
  --white-10: rgba(242, 242, 240, .1);
  --green-glow: rgba(61, 220, 132, .15);
  --cyan-glow: rgba(0, 180, 216, .15);

  /* Layout */
  --container: 1240px;
  --container-narrow: 980px;
  --section-y: clamp(80px, 12vw, 160px);

  /* Type */
  --font-display: 'Instrument Serif', Georgia, serif;
  --font-body: 'Inter Tight', system-ui, sans-serif;
}

html {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 17px;
  line-height: 1.55;
  color: var(--warm-white);
  background: var(--black);
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

em {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 400;
  color: var(--energy-green);
  letter-spacing: -.01em;
}

/* ============================================ */
/* REVEAL ANIMATIONS                             */
/* ============================================ */

.reveal,
.reveal-on-scroll {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 1s cubic-bezier(.16, 1, .3, 1) var(--delay, 0s),
              transform 1s cubic-bezier(.16, 1, .3, 1) var(--delay, 0s);
}

.reveal.is-visible,
.reveal-on-scroll.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* Initial hero reveal triggered on load */
.hero .reveal {
  opacity: 0;
  transform: translateY(28px);
}

body.loaded .hero .reveal {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================ */
/* NAVIGATION                                    */
/* ============================================ */

.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 300;
  padding: 20px 40px;
  background: var(--black-70);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--white-10);
  transition: padding .3s ease;
}

.nav.is-scrolled {
  padding: 12px 40px;
}

.nav__inner {
  max-width: var(--container);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav__brand {
  display: flex;
  align-items: center;
}

.nav__logo-wrap {
  width: 36px;
  height: 36px;
  position: relative;
}

.nav__logo-svg {
  width: 100%;
  height: 100%;
  filter: drop-shadow(0 0 4px rgba(61, 220, 132, 0.25));
  transition: filter 0.4s;
}

.nav__brand:hover .nav__logo-svg {
  filter: drop-shadow(0 0 8px rgba(61, 220, 132, 0.45));
}

.gear-outer {
  animation: gearSpin 30s linear infinite;
  transform-origin: 50px 50px;
}

.gear-ring {
  animation: ringPulse 4s ease-in-out infinite;
}

.gear-network {
  animation: networkGlow 3s ease-in-out infinite;
}

@keyframes gearSpin {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

@keyframes ringPulse {
  0%, 100% { opacity: 0.3; stroke-width: 1.5; }
  50% { opacity: 0.7; stroke-width: 2; }
}

@keyframes networkGlow {
  0%, 100% { opacity: 0.7; }
  50% { opacity: 1; }
}

.nav__links {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav__link {
  font-size: 14px;
  font-weight: 500;
  color: var(--white-70);
  transition: color .2s ease;
  letter-spacing: .01em;
}

.nav__link:hover {
  color: var(--warm-white);
}

.nav__cta {
  font-size: 14px;
  font-weight: 600;
  color: var(--black);
  background: var(--energy-green);
  padding: 10px 20px;
  border-radius: 999px;
  transition: transform .2s ease, box-shadow .2s ease;
  letter-spacing: .01em;
}

.nav__cta:hover {
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(61, 220, 132, .3);
}

@media (max-width: 768px) {
  .nav {
    padding: 14px 20px;
  }
  .nav__links {
    gap: 16px;
  }
  .nav__link {
    display: none;
  }
}

/* ============================================ */
/* HERO                                          */
/* ============================================ */

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 140px 40px 80px;
  background: var(--black);
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -20%;
  left: -10%;
  width: 60%;
  height: 80%;
  background: radial-gradient(circle, var(--green-glow) 0%, transparent 60%);
  filter: blur(80px);
  z-index: 0;
  animation: float 20s ease-in-out infinite;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: -20%;
  right: -10%;
  width: 50%;
  height: 70%;
  background: radial-gradient(circle, var(--cyan-glow) 0%, transparent 60%);
  filter: blur(80px);
  z-index: 0;
  animation: float 25s ease-in-out infinite reverse;
}

@keyframes float {
  0%, 100% { transform: translate(0, 0); }
  50% { transform: translate(40px, -30px); }
}

.hero__grain {
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 400 400' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='2' stitchTiles='stitch'/%3E%3CfeColorMatrix values='0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 .15 0'/%3E%3C/filter%3E%3Crect width='400' height='400' filter='url(%23n)' opacity='.5'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 1;
  opacity: .4;
}

.hero__container {
  position: relative;
  z-index: 2;
  max-width: var(--container-narrow);
  margin: 0 auto;
  width: 100%;
}

.hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--white-70);
  margin-bottom: 32px;
}

.hero__eyebrow-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--energy-green);
  box-shadow: 0 0 12px var(--energy-green);
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: .4; }
}

.hero__headline {
  font-family: var(--font-body);
  font-size: clamp(40px, 6.5vw, 86px);
  font-weight: 700;
  line-height: 1.02;
  letter-spacing: -.035em;
  margin-bottom: 28px;
  color: var(--warm-white);
}

.hero__headline em {
  font-size: 1em;
  display: inline-block;
  color: var(--energy-green);
}

.hero__sub {
  font-size: clamp(17px, 1.6vw, 22px);
  line-height: 1.45;
  color: var(--white-70);
  margin-bottom: 56px;
  max-width: 680px;
  font-weight: 400;
}

.hero__video {
  position: relative;
  margin-bottom: 56px;
  max-width: 880px;
}

.hero__video-frame {
  position: relative;
  aspect-ratio: 16 / 9;
  border-radius: 16px;
  overflow: hidden;
  background: var(--anthracite);
  border: 1px solid var(--white-10);
  box-shadow: 0 30px 80px rgba(0, 0, 0, .5),
              0 0 0 1px var(--white-10),
              0 0 80px var(--green-glow);
}

.hero__video-frame iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

.hero__video-placeholder {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 20px;
  background: linear-gradient(135deg, var(--anthracite) 0%, var(--black) 100%);
  cursor: pointer;
  transition: background .3s ease;
}

.hero__video-placeholder:hover {
  background: linear-gradient(135deg, #333 0%, var(--anthracite) 100%);
}

.hero__video-play {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: var(--energy-green);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--black);
  box-shadow: 0 0 60px var(--green-glow);
  transition: transform .3s ease;
}

.hero__video-play:hover {
  transform: scale(1.08);
}

.hero__video-play svg {
  width: 32px;
  height: 32px;
  margin-left: 4px;
}

.hero__video-text {
  text-align: center;
}

.hero__video-title {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 4px;
}

.hero__video-meta {
  font-size: 13px;
  color: var(--white-50);
  letter-spacing: .02em;
}


.hero__logos {
  width: 100%;
  overflow: hidden;
  margin-bottom: 60px;
  mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
  -webkit-mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
}

.hero__logos-track {
  display: flex;
  align-items: center;
  gap: 60px;
  width: max-content;
  animation: marquee 20s linear infinite;
}

.hero__logos-img {
  height: 40px;
  width: auto;
  object-fit: contain;
  opacity: .75;
  transition: opacity .3s;
  flex-shrink: 0;
  border-radius: 6px;
}

.hero__logos-img:hover {
  opacity: 1;
}

@keyframes marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.hero__scroll {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  font-size: 12px;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--white-50);
}

.hero__scroll-line {
  width: 1px;
  height: 50px;
  background: linear-gradient(180deg, var(--white-30), transparent);
  position: relative;
  overflow: hidden;
}

.hero__scroll-line::after {
  content: '';
  position: absolute;
  top: -50%;
  left: 0;
  width: 100%;
  height: 50%;
  background: var(--energy-green);
  animation: scrollDot 2.5s ease-in-out infinite;
}

@keyframes scrollDot {
  0% { top: -50%; }
  100% { top: 100%; }
}

@media (max-width: 768px) {
  .hero {
    padding: 110px 20px 60px;
  }
  .hero__logos-track {
    gap: 40px;
  }
  .hero__logos-img {
    height: 28px;
  }
}

/* ============================================ */
/* SECTION HEADER (shared)                       */
/* ============================================ */

.section-eyebrow {
  display: inline-block;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--energy-green);
  margin-bottom: 24px;
}

.section-header {
  margin-bottom: 80px;
  max-width: 880px;
}

.section-title {
  font-family: var(--font-body);
  font-size: clamp(32px, 4.5vw, 60px);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -.03em;
  color: var(--warm-white);
}

.section-title--light {
  color: var(--black);
}

.section-header--light .section-eyebrow {
  color: var(--anthracite);
}

/* ============================================ */
/* LAGER (DIE ZWEI LAGER)                        */
/* ============================================ */

.lager {
  background: var(--black);
  padding: var(--section-y) 40px 40px;
  position: relative;
}

.lager__container {
  max-width: var(--container);
  margin: 0 auto;
}

.lager__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  margin-bottom: 80px;
  position: relative;
}

/* Subtile vertikale Naht zwischen den beiden Lagern (Desktop) */
@media (min-width: 769px) {
  .lager__grid::after {
    content: '';
    position: absolute;
    top: 48px;
    bottom: 48px;
    left: 50%;
    width: 1px;
    background: linear-gradient(to bottom, transparent 0%, var(--white-10) 25%, var(--white-10) 75%, transparent 100%);
    transform: translateX(-.5px);
    pointer-events: none;
    z-index: 1;
  }
}

.lager__card {
  position: relative;
  padding: 48px 40px;
  background: var(--anthracite);
  border: 1px solid var(--white-10);
  border-radius: 4px;
  transition: transform .4s cubic-bezier(.16, 1, .3, 1), border-color .3s ease, box-shadow .3s ease;
  z-index: 2;
}

.lager__card:hover {
  transform: translateY(-4px);
  border-color: var(--white-30);
}

/* Cold variant: Automatisierer — synthetisch, technisch */
.lager__card--cold {
  background: linear-gradient(165deg, var(--anthracite) 0%, rgba(0, 180, 216, .05) 100%);
  border-color: rgba(0, 180, 216, .15);
}

.lager__card--cold:hover {
  border-color: rgba(0, 180, 216, .35);
  box-shadow: 0 24px 60px rgba(0, 0, 0, .4), 0 0 50px rgba(0, 180, 216, .08);
}

.lager__card--cold .lager__card-num {
  color: rgba(0, 180, 216, .4);
}

/* Warm variant: Old-Schooler — papiern, erschöpft */
.lager__card--warm {
  background: linear-gradient(165deg, var(--anthracite) 0%, rgba(242, 242, 240, .035) 100%);
}

.lager__card--warm:hover {
  border-color: var(--white-30);
  box-shadow: 0 24px 60px rgba(0, 0, 0, .4);
}

.lager__card-num {
  font-family: var(--font-display);
  font-size: 80px;
  line-height: 1;
  color: rgba(242, 242, 240, .25);
  position: absolute;
  top: 16px;
  right: 28px;
  letter-spacing: -.03em;
  z-index: 3;
  text-shadow: 0 4px 16px rgba(0, 0, 0, .4);
}

.lager__card-title {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 28px;
  letter-spacing: -.02em;
}

/* Bild-Header in der Karte: voll bis an die Card-Kante, oben gerundet, unten eckig */
.lager__card-media {
  position: relative;
  margin: -48px -40px 32px;
  aspect-ratio: 3 / 2;
  overflow: hidden;
  border-radius: 4px 4px 0 0;
}

.lager__card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.lager__card-media::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, .18) 0%, rgba(10, 10, 10, .5) 100%);
  pointer-events: none;
}

/* === VISUALISIERUNGEN === */

.lager__viz {
  margin-bottom: 32px;
}

/* Automatisierer: Wand identischer Outbound-Snippets */
.lager__viz--noise {
  position: relative;
  height: 240px;
  overflow: hidden;
  mask-image: linear-gradient(to bottom, transparent 0%, black 30%, black 100%);
  -webkit-mask-image: linear-gradient(to bottom, transparent 0%, black 30%, black 100%);
}

.lager__noise-stack {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.lager__noise-msg {
  display: block;
  padding: 10px 14px;
  background: rgba(0, 180, 216, .04);
  border: 1px solid rgba(0, 180, 216, .12);
  border-radius: 6px;
  font-family: ui-monospace, 'SF Mono', Menlo, Consolas, monospace;
  font-size: 12px;
  color: var(--white-50);
  letter-spacing: -.01em;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.lager__noise-msg:nth-child(2n) { margin-left: 14px; }
.lager__noise-msg:nth-child(3n) { margin-left: 7px; }

.lager__card--cold.is-visible .lager__noise-msg {
  animation: noisePour .5s cubic-bezier(.16, 1, .3, 1) both;
}
.lager__card--cold.is-visible .lager__noise-msg:nth-child(1) { animation-delay: .30s; }
.lager__card--cold.is-visible .lager__noise-msg:nth-child(2) { animation-delay: .38s; }
.lager__card--cold.is-visible .lager__noise-msg:nth-child(3) { animation-delay: .46s; }
.lager__card--cold.is-visible .lager__noise-msg:nth-child(4) { animation-delay: .54s; }
.lager__card--cold.is-visible .lager__noise-msg:nth-child(5) { animation-delay: .62s; }
.lager__card--cold.is-visible .lager__noise-msg:nth-child(6) { animation-delay: .70s; }
.lager__card--cold.is-visible .lager__noise-msg:nth-child(7) { animation-delay: .78s; }

@keyframes noisePour {
  from { opacity: 0; transform: translateY(-10px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* Old-Schooler: Wochenplan, in dem Akquise hinten runterfällt */
.lager__todo {
  background: rgba(242, 242, 240, .03);
  border: 1px solid var(--white-10);
  border-radius: 4px;
  padding: 20px 24px 22px;
}

.lager__todo-head {
  font-size: 11px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--white-50);
  font-weight: 600;
  margin-bottom: 14px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--white-10);
}

.lager__todo-list {
  list-style: none;
  display: flex;
  flex-direction: column;
}

.lager__todo-item {
  position: relative;
  padding: 7px 0 7px 28px;
  font-size: 14px;
  color: var(--white-70);
  line-height: 1.35;
}

.lager__todo-item::before {
  content: '';
  position: absolute;
  left: 0;
  top: 10px;
  width: 14px;
  height: 14px;
  border: 1.5px solid var(--white-30);
  border-radius: 2px;
  box-sizing: border-box;
}

.lager__todo-item--done {
  color: var(--white-30);
  text-decoration: line-through;
  text-decoration-color: var(--white-30);
}

.lager__todo-item--done::before {
  background: var(--white-50);
  border-color: var(--white-50);
}

.lager__todo-item--done::after {
  content: '✓';
  position: absolute;
  left: 2px;
  top: 8px;
  color: var(--anthracite);
  font-size: 11px;
  font-weight: 700;
  line-height: 1;
}

.lager__todo-item--later {
  color: var(--white-30);
  font-style: italic;
  margin-top: 8px;
  padding-top: 14px;
  border-top: 1px dashed var(--white-10);
}

.lager__todo-item--later::before {
  top: 22px;
  border-style: dashed;
  border-color: var(--white-30);
}

.lager__card--warm.is-visible .lager__todo-item {
  animation: todoAppear .4s cubic-bezier(.16, 1, .3, 1) both;
}
.lager__card--warm.is-visible .lager__todo-item:nth-child(1) { animation-delay: .30s; }
.lager__card--warm.is-visible .lager__todo-item:nth-child(2) { animation-delay: .40s; }
.lager__card--warm.is-visible .lager__todo-item:nth-child(3) { animation-delay: .50s; }
.lager__card--warm.is-visible .lager__todo-item:nth-child(4) { animation-delay: .60s; }
.lager__card--warm.is-visible .lager__todo-item:nth-child(5) { animation-delay: .70s; }
.lager__card--warm.is-visible .lager__todo-item:nth-child(6) { animation-delay: .85s; }

@keyframes todoAppear {
  from { opacity: 0; transform: translateX(-8px); }
  to   { opacity: 1; transform: translateX(0); }
}

.lager__card-tag {
  display: inline-block;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--grey-warm);
  padding: 6px 12px;
  border: 1px solid var(--white-10);
  border-radius: 999px;
}

.lager__divider {
  display: flex;
  align-items: center;
  gap: 24px;
}

.lager__divider-line {
  flex: 1;
  height: 1px;
  background: var(--white-10);
}

.lager__divider-text {
  font-family: var(--font-display);
  font-size: 24px;
  font-style: italic;
  color: var(--energy-green);
  letter-spacing: -.01em;
}

@media (max-width: 768px) {
  .lager {
    padding: 80px 20px 32px;
  }
  .lager__grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .lager__card {
    padding: 32px 24px;
  }
  .lager__card-media {
    margin: -32px -24px 24px;
  }
  .lager__card-num {
    font-size: 60px;
  }
  .lager__divider-text {
    font-size: 18px;
  }
}

/* ============================================ */
/* WIPPEN-ANIMATION (Der Hebel) — scroll-pinned  */
/* ============================================ */

.wippen {
  background: var(--black);
  position: relative;
}

/* Header sitzt VOR dem Pin: erscheint einmal, scrollt dann weg, danach pinnt die Animation. */
.wippen__intro {
  padding: 40px 40px 0;
}

.wippen__header {
  text-align: center;
  max-width: 880px;
  margin: 0 auto;
  padding-bottom: 32px;
}

/* Scroll-Runway: 280vh = 100vh sichtbar + 180vh Strecke.
   Davon scrubbt die JS-Logik ~140vh die Animation, die restlichen ~40vh
   halten den Endzustand sichtbar (damit der untere Satz gelesen werden kann). */
.wippen__track {
  position: relative;
  height: 280vh;
}

.wippen__sticky {
  position: sticky;
  top: 0;
  height: 100vh;
  height: 100dvh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px;
  overflow: hidden;
}

.wippen__frame {
  width: 100%;
  max-width: 1100px;
  background: var(--warm-white);
  border-radius: 18px;
  padding: 28px;
  border: 1px solid var(--white-10);
  box-shadow: 0 30px 80px rgba(0, 0, 0, .5),
              0 0 0 1px var(--white-10),
              0 0 120px rgba(61, 220, 132, .1);
}

#wippen-sektion svg {
  width: 100%;
  height: auto;
  max-height: calc(100vh - 130px);
  max-height: calc(100dvh - 130px);
  display: block;
}

@media (max-width: 768px) {
  .wippen__intro {
    padding: 32px 20px 0;
  }
  .wippen__header {
    padding-bottom: 24px;
  }
  .wippen__track {
    height: 240vh;
  }
  .wippen__sticky {
    padding: 24px 16px;
  }
  .wippen__frame {
    padding: 16px;
    border-radius: 12px;
  }
  #wippen-sektion svg {
    max-height: calc(100vh - 90px);
    max-height: calc(100dvh - 90px);
  }
}

/* ============================================ */
/* FÜR WEN (Filter-Sektion · LIGHT MODE)         */
/* ============================================ */

.fuerwen {
  background: var(--warm-white);
  color: var(--black);
  padding: var(--section-y) 40px;
  position: relative;
}

.fuerwen__container {
  max-width: var(--container);
  margin: 0 auto;
}

.fuerwen__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 64px;
}

.fuerwen__card {
  position: relative;
  padding: 36px 32px;
  background: white;
  border: 1px solid var(--grey-light);
  border-radius: 4px;
  transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease;
}

.fuerwen__card:hover {
  transform: translateY(-4px);
  border-color: var(--energy-green);
  box-shadow: 0 20px 40px rgba(0, 0, 0, .08);
}

.fuerwen__card-num {
  font-family: var(--font-display);
  font-size: 16px;
  letter-spacing: .15em;
  color: var(--energy-green);
  margin-bottom: 16px;
  font-weight: 500;
}

.fuerwen__card-title {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 12px;
  letter-spacing: -.02em;
  color: var(--black);
  line-height: 1.2;
}

.fuerwen__highlight {
  color: var(--energy-green);
  white-space: nowrap;
}

.fuerwen__card p {
  font-size: 15px;
  color: var(--anthracite);
  line-height: 1.55;
}

.fuerwen__note {
  text-align: center;
  padding: 32px;
  border-top: 1px solid var(--grey-light);
  border-bottom: 1px solid var(--grey-light);
}

.fuerwen__note p {
  font-family: var(--font-display);
  font-size: clamp(18px, 2vw, 24px);
  font-style: italic;
  color: var(--anthracite);
  max-width: 720px;
  margin: 0 auto;
  letter-spacing: -.005em;
}

@media (max-width: 968px) {
  .fuerwen__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .fuerwen {
    padding: 80px 20px;
  }
  .fuerwen__grid {
    grid-template-columns: 1fr;
  }
}

/* ============================================ */
/* METHODE - DIE 5 PHASEN                        */
/* ============================================ */

.methode {
  background: var(--black);
  padding: var(--section-y) 40px;
  position: relative;
  overflow: hidden;
}

.methode__container {
  max-width: var(--container);
  margin: 0 auto;
}

.phases {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.phase {
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: 48px;
  padding: 48px;
  background: var(--anthracite);
  border: 1px solid var(--white-10);
  border-radius: 4px;
  position: relative;
  transition: border-color .4s ease;
}

.phase:hover {
  border-color: var(--white-30);
}

.phase__num {
  position: relative;
  width: 140px;
  height: 140px;
}

.phase__num-text {
  font-family: var(--font-display);
  font-size: 100px;
  line-height: 1;
  color: var(--energy-green);
  letter-spacing: -.04em;
  display: block;
}

.phase__num-arc {
  position: absolute;
  top: 0;
  right: 0;
  width: 80px;
  height: 80px;
  border: 1px solid var(--white-10);
  border-radius: 50%;
  z-index: -1;
}

.phase__title {
  font-size: clamp(24px, 2.4vw, 32px);
  font-weight: 700;
  margin-bottom: 12px;
  letter-spacing: -.02em;
  line-height: 1.15;
  color: var(--warm-white);
}

.phase__lead {
  font-family: var(--font-display);
  font-size: 22px;
  font-style: italic;
  color: var(--energy-green);
  margin-bottom: 24px;
  letter-spacing: -.005em;
  line-height: 1.3;
}

.phase__body {
  color: var(--white-70);
  margin-bottom: 16px;
  line-height: 1.6;
  font-size: 16px;
}

.phase__body strong {
  color: var(--warm-white);
  font-weight: 600;
}

.phase__body em {
  font-family: var(--font-display);
  font-style: italic;
  color: var(--energy-green);
  font-size: 1.05em;
}

.phase__viz {
  margin-top: 32px;
  padding-top: 32px;
  border-top: 1px solid var(--white-10);
}

/* PHASE 1 Viz - Funnel */
.phase__viz--liste .phase__viz-funnel {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.phase__viz-funnel-stage {
  background: rgba(255, 255, 255, .03);
  border: 1px solid var(--white-10);
  padding: 36px 28px;
  border-radius: 6px;
  text-align: center;
  position: relative;
  transition: all .4s ease;
}

.phase.is-visible .phase__viz-funnel-stage {
  animation: fadeUp .6s cubic-bezier(.16, 1, .3, 1) both;
}

.phase.is-visible .phase__viz-funnel-stage[data-stage="1"] { animation-delay: .2s; }
.phase.is-visible .phase__viz-funnel-stage[data-stage="2"] { animation-delay: .35s; }
.phase.is-visible .phase__viz-funnel-stage[data-stage="3"] { animation-delay: .5s; }
.phase.is-visible .phase__viz-funnel-stage[data-stage="4"] { animation-delay: .65s; }

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

.phase__viz-funnel-stage--final {
  background: var(--green-glow);
  border-color: var(--energy-green);
}

.phase__viz-funnel-num {
  display: block;
  font-family: var(--font-display);
  font-size: 56px;
  line-height: 1;
  color: var(--warm-white);
  margin-bottom: 14px;
  letter-spacing: -.02em;
}

.phase__viz-funnel-stage--final .phase__viz-funnel-num {
  color: var(--energy-green);
}

.phase__viz-funnel-label {
  font-size: 14px;
  color: var(--white-70);
  letter-spacing: .03em;
  line-height: 1.4;
  display: block;
}

/* PHASE 2 Viz - Brief */
.phase__viz--brief {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 32px;
  align-items: center;
}

.phase__viz-brief {
  display: flex;
  justify-content: center;
  perspective: 800px;
}

.phase__viz-brief-paper {
  width: 200px;
  aspect-ratio: 1 / 1.4;
  background: var(--warm-white);
  border-radius: 2px;
  padding: 24px 20px;
  position: relative;
  box-shadow: 0 20px 40px rgba(0, 0, 0, .4),
              0 0 0 1px rgba(0, 0, 0, .05);
  transform: rotate(-3deg);
  transition: transform .6s ease;
}

.phase:hover .phase__viz-brief-paper {
  transform: rotate(0deg);
}

.phase__viz-brief-line {
  height: 6px;
  background: var(--grey-light);
  margin-bottom: 12px;
  border-radius: 2px;
}

.phase__viz-brief-line--head {
  width: 60%;
  height: 8px;
  background: var(--black);
  margin-bottom: 24px;
}

.phase__viz-brief-line--short {
  width: 70%;
}

.phase__viz-brief-qr {
  position: absolute;
  bottom: 20px;
  right: 20px;
  width: 50px;
  height: 50px;
  background: var(--black);
  padding: 4px;
  border-radius: 2px;
}

.phase__viz-brief-qr-grid {
  width: 100%;
  height: 100%;
  background-image:
    linear-gradient(45deg, var(--warm-white) 25%, transparent 25%),
    linear-gradient(-45deg, var(--warm-white) 25%, transparent 25%),
    linear-gradient(45deg, transparent 75%, var(--warm-white) 75%),
    linear-gradient(-45deg, transparent 75%, var(--warm-white) 75%);
  background-size: 8px 8px;
  background-position: 0 0, 0 4px, 4px -4px, -4px 0;
}

.phase__viz-brief-meta {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.phase__viz-brief-stat {
  display: flex;
  align-items: baseline;
  gap: 16px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--white-10);
}

.phase__viz-brief-stat:last-child {
  border-bottom: none;
}

.phase__viz-brief-stat-num {
  font-family: var(--font-display);
  font-size: 32px;
  color: var(--energy-green);
  letter-spacing: -.02em;
  min-width: 100px;
}

.phase__viz-brief-stat-label {
  font-size: 14px;
  color: var(--white-70);
  letter-spacing: .01em;
}

/* PHASE 3 Viz - Follow-Up E-Mails */
.phase__viz--emails {
  display: grid;
  grid-template-columns: 1.4fr auto 1fr;
  gap: 24px;
  align-items: center;
}

.phase__viz-emails-stack {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.phase__viz-email {
  background: var(--warm-white);
  border-radius: 6px;
  padding: 14px 16px;
  box-shadow: 0 14px 30px rgba(0, 0, 0, .35);
  color: var(--black);
}

.phase__viz-email-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 10px;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--grey-light);
}

.phase__viz-email-label {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .04em;
  color: var(--black);
}

.phase__viz-email-time {
  font-size: 11px;
  color: var(--grey-medium);
  letter-spacing: .04em;
}

.phase__viz-email-lines {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 12px;
}

.phase__viz-email-line {
  height: 4px;
  background: var(--grey-light);
  border-radius: 2px;
}

.phase__viz-email-line--short {
  width: 65%;
}

.phase__viz-email-cta {
  font-size: 12px;
  color: var(--energy-green);
  font-weight: 600;
  letter-spacing: .02em;
}

.phase__viz-emails-arrow {
  font-size: 32px;
  color: var(--energy-green);
  font-family: var(--font-display);
  justify-self: center;
}

.phase__viz-emails-result {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.phase__viz-emails-result-num {
  font-family: var(--font-display);
  font-size: 56px;
  line-height: 1;
  color: var(--energy-green);
  letter-spacing: -.02em;
}

.phase__viz-emails-result-label {
  font-size: 13px;
  color: var(--white-70);
  letter-spacing: .04em;
  line-height: 1.4;
}

/* PHASE 4 Viz - Salespage */
.phase__viz--page {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 24px;
  align-items: center;
}

.phase__viz-page {
  background: var(--warm-white);
  border-radius: 6px;
  padding: 16px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, .4);
  max-width: 280px;
  justify-self: end;
}

.phase__viz-page-header {
  height: 12px;
  width: 50%;
  background: var(--black);
  border-radius: 2px;
  margin-bottom: 16px;
}

.phase__viz-page-video {
  aspect-ratio: 16 / 9;
  background: var(--anthracite);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  position: relative;
}

.phase__viz-page-play {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--energy-green);
  color: var(--black);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  padding-left: 3px;
}

.phase__viz-page-content {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.phase__viz-page-line {
  height: 4px;
  background: var(--grey-light);
  border-radius: 2px;
}

.phase__viz-page-line--short {
  width: 60%;
}

.phase__viz-page-arrow {
  font-size: 32px;
  color: var(--energy-green);
  font-family: var(--font-display);
}

.phase__viz-page-result {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.phase__viz-page-result-label {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: .12em;
  color: var(--white-50);
  font-weight: 500;
}

.phase__viz-page-result-text {
  font-family: var(--font-display);
  font-size: 22px;
  line-height: 1.3;
  color: var(--energy-green);
  font-style: italic;
}

/* PHASE 5 Viz - Push Flow */
.phase__viz--push {
  display: flex;
  flex-direction: column;
  gap: 28px;
  align-items: center;
}

.phase__viz-push-flow {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  width: 100%;
}

.phase__viz-push-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  min-width: 90px;
}

.phase__viz-push-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .04);
  border: 1px solid var(--white-10);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
}

.phase__viz-push-icon--alert {
  background: var(--green-glow);
  border-color: var(--energy-green);
  color: var(--energy-green);
  animation: alertPulse 2s ease-in-out infinite;
}

@keyframes alertPulse {
  0%, 100% { box-shadow: 0 0 0 0 var(--green-glow); }
  50% { box-shadow: 0 0 0 12px transparent; }
}

.phase__viz-push-step span {
  font-size: 12px;
  letter-spacing: .03em;
  color: var(--white-70);
  text-align: center;
}

.phase__viz-push-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--white-30);
}

.is-visible .phase__viz-push-dot {
  animation: dotFlow 2s ease-in-out infinite;
}

.phase__viz-push-dot:nth-child(3) { animation-delay: .15s; }
.phase__viz-push-dot:nth-child(4) { animation-delay: .3s; }
.phase__viz-push-dot:nth-child(6) { animation-delay: .6s; }
.phase__viz-push-dot:nth-child(7) { animation-delay: .75s; }
.phase__viz-push-dot:nth-child(8) { animation-delay: .9s; }

@keyframes dotFlow {
  0%, 100% { background: var(--white-30); }
  50% { background: var(--energy-green); box-shadow: 0 0 8px var(--energy-green); }
}

.phase__viz-push-notif {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 20px;
  background: var(--black);
  border: 1px solid var(--energy-green);
  border-radius: 8px;
  max-width: 460px;
  width: 100%;
}

.phase__viz-push-notif-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--energy-green);
  box-shadow: 0 0 12px var(--energy-green);
  animation: pulse 1.4s ease-in-out infinite;
  flex-shrink: 0;
}

.phase__viz-push-notif-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.phase__viz-push-notif-text strong {
  font-size: 13px;
  letter-spacing: .04em;
  text-transform: uppercase;
  color: var(--energy-green);
  font-weight: 600;
}

.phase__viz-push-notif-text span {
  font-size: 14px;
  color: var(--white-70);
}

/* PHASE 4 - Optional Coaching Add-On */
.phase__addon {
  margin-top: 28px;
  padding: 20px 24px;
  background: rgba(255, 255, 255, .02);
  border: 1px dashed var(--white-10);
  border-radius: 6px;
  display: flex;
  align-items: flex-start;
  gap: 20px;
}

.phase__addon-tag {
  font-size: 11px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--energy-green);
  padding: 6px 12px;
  border: 1px solid var(--energy-green);
  border-radius: 999px;
  white-space: nowrap;
  font-weight: 600;
  flex-shrink: 0;
}

.phase__addon-content {
  flex: 1;
}

.phase__addon-title {
  font-family: var(--font-display);
  font-size: 18px;
  color: var(--warm-white);
  margin: 0 0 6px;
  letter-spacing: -.01em;
}

.phase__addon-text {
  font-size: 14px;
  color: var(--white-70);
  line-height: 1.55;
  margin: 0;
}

@media (max-width: 768px) {
  .methode {
    padding: 80px 20px;
  }
  .phase {
    grid-template-columns: 1fr;
    gap: 24px;
    padding: 32px 24px;
  }
  .phase__num {
    width: auto;
    height: auto;
  }
  .phase__num-text {
    font-size: 64px;
  }
  .phase__num-arc {
    display: none;
  }
  .phase__viz--liste .phase__viz-funnel {
    grid-template-columns: repeat(2, 1fr);
  }
  .phase__viz--brief {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .phase__viz--emails {
    grid-template-columns: 1fr;
    gap: 20px;
    text-align: center;
  }
  .phase__viz-emails-arrow {
    transform: rotate(90deg);
  }
  .phase__viz-emails-result {
    align-items: center;
  }
  .phase__viz--page {
    grid-template-columns: 1fr;
    gap: 16px;
    text-align: center;
  }
  .phase__viz-page {
    margin: 0 auto;
    justify-self: center;
  }
  .phase__addon {
    flex-direction: column;
    gap: 12px;
    padding: 18px 20px;
  }
  .phase__viz-push-step {
    min-width: 70px;
  }
}

/* ============================================ */
/* ERGEBNISSE & STIMMEN                          */
/* ============================================ */

.ergebnisse {
  background: var(--black);
  padding: var(--section-y) 40px;
}

.ergebnisse__container {
  max-width: var(--container);
  margin: 0 auto;
}

.ergebnisse__intro {
  margin-top: 24px;
  max-width: 720px;
  font-size: 17px;
  line-height: 1.55;
  color: var(--grey-warm);
}

.ergebnisse__teil {
  margin-top: 80px;
}

.ergebnisse__teil:first-of-type {
  margin-top: 0;
}

.ergebnisse__sub-title {
  font-family: var(--font-body);
  font-size: 24px;
  font-weight: 700;
  letter-spacing: -.01em;
  color: var(--warm-white);
  margin-bottom: 12px;
  line-height: 1.25;
}

.ergebnisse__sub-sub {
  font-size: 14px;
  font-style: italic;
  color: var(--grey-warm);
  margin-bottom: 40px;
  line-height: 1.5;
}

/* --- Stats / Zahlen-Karten --- */

.stats-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr;
  gap: 28px;
  margin-top: 32px;
  align-items: stretch;
}

.stat-card {
  background: #1a1a1a;
  border: 1px solid rgba(61, 220, 132, 0.2);
  border-radius: 16px;
  padding: 40px;
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
}

.stat-card--hero {
  border-color: var(--energy-green);
  box-shadow:
    0 0 60px rgba(61, 220, 132, 0.2),
    0 0 120px rgba(61, 220, 132, 0.08),
    inset 0 1px 0 rgba(61, 220, 132, 0.3);
  padding: 48px;
}

.stat-card--hero .stat-card__num {
  font-size: clamp(80px, 10vw, 120px);
}

.stat-card--cyan {
  border-color: rgba(0, 180, 216, 0.3);
  box-shadow:
    0 0 40px rgba(0, 180, 216, 0.12),
    inset 0 1px 0 rgba(0, 180, 216, 0.2);
}

.stat-card--cyan .stat-card__num {
  color: var(--precision-cyan);
  font-size: clamp(40px, 5vw, 56px);
}

.stat-card--cyan .stat-card__label {
  color: rgba(0, 180, 216, 0.85);
}

.stat-card__eyebrow {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--precision-cyan);
  background: rgba(0, 180, 216, 0.1);
  border: 1px solid rgba(0, 180, 216, 0.2);
  border-radius: 100px;
  padding: 4px 14px;
  margin-bottom: 20px;
  width: fit-content;
}

.stat-card__num {
  font-family: var(--font-body);
  font-size: 64px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: -.03em;
  color: var(--energy-green);
  margin-bottom: 16px;
}

.stat-card__label {
  font-size: 16px;
  font-weight: 600;
  color: var(--warm-white);
  margin-bottom: 12px;
  line-height: 1.35;
}

.stat-card__sub {
  font-size: 13px;
  color: var(--grey-warm);
  line-height: 1.55;
}

/* --- Globe Testimonials --- */

.globe-wrap {
  position: relative;
  width: 100%;
  height: 650px;
  margin-top: 40px;
  overflow: hidden;
}

.globe-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.globe-viewport {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  perspective: 1200px;
}

.globe-sphere {
  position: relative;
  width: 0;
  height: 0;
  transform-style: preserve-3d;
  transition: transform 0.9s cubic-bezier(0.23, 1, 0.32, 1);
}

.globe-card {
  position: absolute;
  width: 280px;
  left: -140px;
  top: -110px;
  background: rgba(26, 26, 26, 0.92);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(61, 220, 132, 0.15);
  border-radius: 14px;
  padding: 28px 24px 22px;
  cursor: pointer;
  backface-visibility: hidden;
  transition: scale 0.5s cubic-bezier(0.23, 1, 0.32, 1),
              border-color 0.4s,
              box-shadow 0.4s;
}

.globe-card.is-front {
  border-color: rgba(61, 220, 132, 0.5);
  box-shadow: 0 0 50px rgba(61, 220, 132, 0.15);
  scale: 1.12;
}

.globe-card__quote {
  position: absolute;
  top: 8px;
  left: 12px;
  font-family: var(--font-display);
  font-size: 42px;
  line-height: 0.8;
  color: var(--energy-green);
  opacity: 0.35;
  pointer-events: none;
}

.globe-card__text {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 14px;
  line-height: 1.5;
  color: var(--warm-white);
  margin: 14px 0 18px;
}

.globe-card__footer {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: auto;
  padding-top: 14px;
  border-top: 1px solid rgba(242, 242, 240, 0.08);
}

.globe-card__avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
  border: 1.5px solid rgba(61, 220, 132, 0.3);
}

.globe-card__avatar--placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--anthracite);
  color: var(--grey-warm);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .03em;
}

.globe-card__meta {
  flex: 1;
  min-width: 0;
}

.globe-card__author {
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 700;
  color: var(--warm-white);
  line-height: 1.3;
}

.globe-card__role {
  font-size: 11px;
  color: var(--grey-warm);
  margin-top: 1px;
}

.globe-card__linkedin {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  color: var(--grey-warm);
  transition: color .2s;
}

.globe-card__linkedin:hover {
  color: #0A66C2;
}

.globe-card__linkedin svg {
  width: 100%;
  height: 100%;
}

/* Globe mobile fallback */
@media (max-width: 768px) {
  .globe-wrap {
    height: auto;
    overflow: visible;
  }
  .globe-canvas { display: none; }
  .globe-viewport {
    position: relative;
    perspective: none;
    flex-direction: column;
    gap: 16px;
    padding: 0;
  }
  .globe-sphere {
    transform-style: flat;
    position: relative;
    width: 100%;
    height: auto;
    display: flex;
    flex-direction: column;
    gap: 16px;
    transform: none !important;
  }
  .globe-card {
    position: relative;
    width: 100%;
    left: 0;
    top: 0;
    transform: none !important;
    opacity: 1 !important;
    scale: 1 !important;
    backface-visibility: visible;
  }
}

/* --- Responsive --- */

@media (max-width: 767px) {
  .stats-grid {
    grid-template-columns: 1fr;
  }
  .stat-card--hero .stat-card__num {
    font-size: 72px;
  }
}

@media (max-width: 640px) {
  .ergebnisse {
    padding: 80px 20px;
  }
  .ergebnisse__teil {
    margin-top: 64px;
  }
}

/* ============================================ */
/* WARUM ICH                                     */
/* ============================================ */

.warum {
  background: var(--black);
  padding: var(--section-y) 40px;
  overflow: hidden;
}

.warum__container {
  max-width: var(--container);
  margin: 0 auto;
}

.warum__grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 80px;
  align-items: start;
  margin-bottom: 80px;
}

.warum__media {
  position: relative;
}

.warum__media-img {
  border-radius: 4px;
  box-shadow: 0 30px 80px rgba(0, 0, 0, .5);
}

.warum__media-img--main {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
}

.warum__media-stat {
  position: absolute;
  bottom: -32px;
  right: -32px;
  background: var(--energy-green);
  color: var(--black);
  padding: 24px 28px;
  border-radius: 4px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  box-shadow: 0 20px 40px rgba(61, 220, 132, .3);
}

.warum__media-stat-big {
  font-family: var(--font-display);
  font-size: 64px;
  line-height: 1;
  letter-spacing: -.04em;
  font-weight: 500;
}

.warum__media-stat-label {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .04em;
  text-transform: uppercase;
  line-height: 1.3;
}

.warum__title {
  font-family: var(--font-body);
  font-size: clamp(28px, 3.8vw, 48px);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -.03em;
  margin-bottom: 32px;
  color: var(--warm-white);
}

.warum__body p {
  color: var(--white-70);
  margin-bottom: 20px;
  font-size: 16px;
  line-height: 1.65;
}

.warum__body-emphasis {
  padding: 20px 24px;
  background: rgba(61, 220, 132, .06);
  border-left: 2px solid var(--energy-green);
  margin: 20px 0 !important;
  color: var(--warm-white) !important;
}

.warum__body strong {
  color: var(--warm-white);
}

.warum__values {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 40px;
  padding-top: 40px;
  border-top: 1px solid var(--white-10);
}

.warum__value {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.warum__value-name {
  font-size: 16px;
  font-weight: 700;
  color: var(--energy-green);
  letter-spacing: -.01em;
}

.warum__value-desc {
  font-size: 13px;
  color: var(--white-50);
  letter-spacing: .01em;
}

.warum__strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.warum__strip-item {
  position: relative;
  border-radius: 4px;
  overflow: hidden;
  aspect-ratio: 4/5;
}

.warum__strip-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .6s ease;
  filter: grayscale(.3);
}

.warum__strip-item:hover img {
  transform: scale(1.05);
  filter: grayscale(0);
}

.warum__strip-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 16px;
  background: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, .9) 100%);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: .02em;
  line-height: 1.4;
}

@media (max-width: 968px) {
  .warum {
    padding: 80px 20px;
  }
  .warum__grid {
    grid-template-columns: 1fr;
    gap: 64px;
  }
  .warum__media-stat {
    right: 0;
    bottom: -16px;
  }
  .warum__values {
    grid-template-columns: 1fr;
  }
  .warum__strip {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* ============================================ */
/* SKIN IN THE GAME                              */
/* ============================================ */

.skin {
  background: var(--black);
  padding: var(--section-y) 40px clamp(40px, 6vw, 80px);
  position: relative;
}

.skin__container {
  max-width: var(--container);
  margin: 0 auto;
}

.skin__grid--two {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}

.skin__card {
  padding: 48px 36px;
  background: var(--anthracite);
  border: 1px solid var(--white-10);
  border-radius: 12px;
  transition: transform .3s ease, border-color .3s ease, box-shadow .3s ease;
}

.skin__card--highlight {
  border-color: rgba(61, 220, 132, 0.25);
  box-shadow: 0 0 30px rgba(61, 220, 132, 0.06);
}

.skin__card:hover {
  transform: translateY(-4px);
  border-color: var(--energy-green);
  box-shadow: 0 0 40px rgba(61, 220, 132, 0.12);
}

.skin__card-icon {
  width: 52px;
  height: 52px;
  color: var(--energy-green);
  margin-bottom: 28px;
}

.skin__card-title {
  font-size: 26px;
  font-weight: 700;
  margin-bottom: 14px;
  letter-spacing: -.02em;
}

.skin__card-text {
  color: var(--white-70);
  font-size: 16px;
  line-height: 1.6;
}

@media (max-width: 968px) {
  .skin__grid--two {
    grid-template-columns: 1fr;
  }
}

/* ============================================ */
/* ABLAUF (LIGHT MODE)                           */
/* ============================================ */

.ablauf {
  background: var(--warm-white);
  color: var(--black);
  padding: var(--section-y) 40px;
}

.ablauf__container {
  max-width: var(--container-narrow);
  margin: 0 auto;
}

.ablauf__steps {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.ablauf__step {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 32px;
  align-items: start;
  max-width: 720px;
  width: 100%;
  padding: 24px 0;
}

.ablauf__step-marker {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: white;
  border: 2px solid var(--black);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.ablauf__step-marker--final {
  background: var(--energy-green);
  border-color: var(--energy-green);
}

.ablauf__step-num {
  font-family: var(--font-display);
  font-size: 36px;
  color: var(--black);
  letter-spacing: -.02em;
}

.ablauf__step-marker--final .ablauf__step-num {
  color: var(--black);
}

.ablauf__step-title {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 8px;
  letter-spacing: -.02em;
  color: var(--black);
}

.ablauf__step-body p {
  color: var(--anthracite);
  line-height: 1.6;
  font-size: 16px;
}

.ablauf__connector {
  width: 2px;
  height: 40px;
  background: var(--black);
  margin-left: 39px;
  align-self: flex-start;
}

@media (max-width: 640px) {
  .ablauf {
    padding: 80px 20px;
  }
  .ablauf__step {
    grid-template-columns: 60px 1fr;
    gap: 20px;
  }
  .ablauf__step-marker {
    width: 60px;
    height: 60px;
  }
  .ablauf__step-num {
    font-size: 26px;
  }
  .ablauf__connector {
    margin-left: 29px;
  }
}

/* ============================================ */
/* CTA                                           */
/* ============================================ */

.cta {
  position: relative;
  background: var(--black);
  padding: var(--section-y) 40px;
  overflow: hidden;
}

.cta::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80%;
  height: 100%;
  background: radial-gradient(ellipse at center top, var(--green-glow) 0%, transparent 50%);
  filter: blur(60px);
  z-index: 0;
}

.cta__grain {
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 400 400' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='2' stitchTiles='stitch'/%3E%3CfeColorMatrix values='0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 .15 0'/%3E%3C/filter%3E%3Crect width='400' height='400' filter='url(%23n)' opacity='.5'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 1;
  opacity: .3;
}

.cta__container {
  position: relative;
  z-index: 2;
  max-width: var(--container-narrow);
  margin: 0 auto;
}

.cta__inner {
  text-align: center;
}

.cta__eyebrow {
  margin-bottom: 32px !important;
}

.cta__title {
  font-family: var(--font-body);
  font-size: clamp(32px, 5vw, 64px);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -.03em;
  margin-bottom: 40px;
  color: var(--warm-white);
}

.cta__question {
  font-family: var(--font-display);
  font-size: clamp(22px, 3vw, 36px);
  font-style: italic;
  line-height: 1.35;
  color: var(--warm-white);
  margin-bottom: 32px;
  letter-spacing: -.005em;
}

.cta__sub {
  font-size: clamp(15px, 1.4vw, 17px);
  color: var(--white-70);
  margin-bottom: 48px;
  line-height: 1.6;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}

.cta__buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 64px;
}

.cta__btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 18px 32px;
  border-radius: 999px;
  font-size: 16px;
  font-weight: 600;
  letter-spacing: .01em;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}

.cta__btn svg {
  width: 18px;
  height: 18px;
  transition: transform .3s ease;
}

.cta__btn:hover svg {
  transform: translateX(4px);
}

.cta__btn--primary {
  background: var(--energy-green);
  color: var(--black);
  box-shadow: 0 12px 32px rgba(61, 220, 132, .3);
}

.cta__btn--primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 20px 40px rgba(61, 220, 132, .4);
}

.cta__btn--ghost {
  background: transparent;
  color: var(--warm-white);
  border: 1px solid var(--white-30);
}

.cta__btn--ghost:hover {
  border-color: var(--warm-white);
  background: var(--white-10);
}

.cta__contact {
  display: flex;
  justify-content: center;
  gap: 48px;
  flex-wrap: wrap;
  padding-top: 32px;
  border-top: 1px solid var(--white-10);
}

.cta__contact-item {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.cta__contact-label {
  font-size: 11px;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--white-50);
  font-weight: 500;
}

.cta__contact-value {
  font-size: 15px;
  color: var(--warm-white);
  font-weight: 500;
}

@media (max-width: 640px) {
  .cta {
    padding: 80px 20px;
  }
  .cta__buttons {
    flex-direction: column;
    align-items: stretch;
  }
  .cta__btn {
    justify-content: center;
  }
  .cta__contact {
    gap: 24px;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
}

/* ============================================ */
/* FOOTER                                        */
/* ============================================ */

.footer {
  background: var(--black);
  padding: 40px;
  border-top: 1px solid var(--white-10);
}

.footer__container {
  max-width: var(--container);
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}

.footer__brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.footer__logo {
  width: 28px;
  height: 28px;
  object-fit: contain;
}

.footer__brand-text {
  font-size: 13px;
  color: var(--white-70);
  letter-spacing: .01em;
}

.footer__legal {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  font-size: 13px;
  color: var(--white-50);
}

.footer__sep {
  color: var(--white-30);
}

@media (max-width: 640px) {
  .footer {
    padding: 32px 20px;
  }
  .footer__container {
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
  }
}

/* ============================================ */
/* UTILITIES                                     */
/* ============================================ */

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }
  .reveal, .reveal-on-scroll {
    opacity: 1;
    transform: none;
  }
}

/* ============================================ */
/* ROI-RECHNER                                   */
/* ============================================ */

.rechner {
  background: var(--black);
  padding: 40px 40px 80px;
  color: var(--warm-white);
}

.rechner__container {
  max-width: 1200px;
  margin: 0 auto;
}

.rechner__intro {
  margin-top: 24px;
  max-width: 720px;
  font-size: 17px;
  line-height: 1.55;
  color: var(--grey-warm);
}

.rechner__grid {
  display: grid;
  grid-template-columns: 60% 40%;
  gap: 48px;
  align-items: start;
}

/* --- Slider-Spalte --- */

.rechner__sliders {
  display: flex;
  flex-direction: column;
  gap: 36px;
}

.rechner-slider__head {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 12px;
  gap: 16px;
}

.rechner-slider__label {
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 700;
  color: var(--warm-white);
}

.rechner-slider__value {
  font-family: var(--font-body);
  font-size: 22px;
  font-weight: 700;
  color: var(--energy-green);
  letter-spacing: -.01em;
  font-variant-numeric: tabular-nums;
  white-space: nowrap;
}

.rechner-slider__help {
  margin-top: 12px;
  font-size: 13px;
  font-style: italic;
  color: var(--grey-warm);
  line-height: 1.55;
}

/* --- Custom range input --- */

.rechner-slider__input {
  -webkit-appearance: none;
  appearance: none;
  width: 100%;
  height: 24px;
  background: transparent;
  outline: none;
  margin: 4px 0;
  cursor: pointer;
}

.rechner-slider__input::-webkit-slider-runnable-track {
  width: 100%;
  height: 6px;
  border-radius: 999px;
  background: linear-gradient(to right,
    var(--energy-green) 0 var(--fill, 0%),
    #2A2A2A var(--fill, 0%) 100%);
  transition: background .15s ease;
}

.rechner-slider__input::-moz-range-track {
  width: 100%;
  height: 6px;
  border-radius: 999px;
  background: #2A2A2A;
}

.rechner-slider__input::-moz-range-progress {
  height: 6px;
  border-radius: 999px;
  background: var(--energy-green);
}

.rechner-slider__input::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--energy-green);
  border: 3px solid var(--black);
  margin-top: -9px;
  cursor: grab;
  transition: transform .15s ease, box-shadow .15s ease;
}

.rechner-slider__input::-moz-range-thumb {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--energy-green);
  border: 3px solid var(--black);
  cursor: grab;
  transition: transform .15s ease, box-shadow .15s ease;
}

.rechner-slider__input:hover::-webkit-slider-thumb { transform: scale(1.15); }
.rechner-slider__input:hover::-moz-range-thumb { transform: scale(1.15); }

.rechner-slider__input:active::-webkit-slider-thumb {
  transform: scale(1.25);
  cursor: grabbing;
  box-shadow: 0 0 0 8px rgba(61, 220, 132, .15);
}
.rechner-slider__input:active::-moz-range-thumb {
  transform: scale(1.25);
  cursor: grabbing;
  box-shadow: 0 0 0 8px rgba(61, 220, 132, .15);
}

.rechner-slider__input:focus-visible::-webkit-slider-thumb {
  box-shadow: 0 0 0 4px rgba(61, 220, 132, .35);
}
.rechner-slider__input:focus-visible::-moz-range-thumb {
  box-shadow: 0 0 0 4px rgba(61, 220, 132, .35);
}

/* --- Ergebnis-Panel --- */

.rechner__panel {
  position: relative;
  height: 100%;
}

.rechner-panel__stick {
  position: sticky;
  top: 100px;
  background: #1a1a1a;
  border: 1px solid var(--energy-green);
  border-radius: 16px;
  padding: 32px;
}

.rechner-panel__heading {
  font-family: var(--font-body);
  font-size: 18px;
  font-weight: 700;
  color: var(--warm-white);
  margin-bottom: 16px;
  letter-spacing: -.005em;
}

.rechner-panel__sep {
  border: 0;
  height: 1px;
  background: rgba(255, 255, 255, .08);
  margin: 24px 0;
}

.rechner-row {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 16px;
  align-items: baseline;
  padding: 10px 0;
}

.rechner-row__name {
  font-size: 14px;
  font-weight: 600;
  color: var(--warm-white);
  line-height: 1.3;
}

.rechner-row__hint {
  font-size: 11px;
  color: var(--grey-warm);
  margin-top: 4px;
  line-height: 1.45;
}

.rechner-row__value {
  font-family: var(--font-body);
  font-size: 18px;
  font-weight: 700;
  color: var(--warm-white);
  letter-spacing: -.01em;
  font-variant-numeric: tabular-nums;
  white-space: nowrap;
  text-align: right;
}

.rechner-row__value--big {
  font-size: 32px;
  color: var(--energy-green);
}

.rechner-row__value--xl {
  font-size: 36px;
  color: var(--energy-green);
  line-height: 1.05;
}

.rechner-row__value--lg {
  font-size: 24px;
  color: var(--energy-green);
}

.rechner-row__value--cyan { color: #00B4D8; }
.rechner-row__value--white { color: var(--warm-white); }

.rechner-row__value.is-negative { color: #ff4444; }

/* --- Upsell --- */

.rechner-upsell {
  margin-top: 0;
  background: rgba(0, 180, 216, 0.08);
  border-left: 4px solid #00B4D8;
  border-radius: 8px;
  padding: 0 24px;
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  transition: max-height .4s ease, opacity .4s ease, padding .4s ease, margin-top .4s ease;
}

.rechner-upsell.is-visible {
  opacity: 1;
  max-height: 1400px;
  padding: 24px;
  margin-top: 24px;
}

.rechner-upsell__title {
  font-family: var(--font-body);
  font-size: 18px;
  font-weight: 700;
  color: #00B4D8;
  margin-bottom: 12px;
  line-height: 1.3;
}

.rechner-upsell__lead {
  font-size: 14px;
  color: var(--warm-white);
  line-height: 1.55;
  margin-bottom: 16px;
}

.rechner-upsell__box {
  background: #1a1a1a;
  border-radius: 8px;
  padding: 16px;
  margin-bottom: 16px;
}

.rechner-upsell__eyebrow {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--grey-warm);
  margin-bottom: 12px;
}

.rechner-upsell__list {
  list-style: none;
  padding: 0;
  margin: 0 0 16px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.rechner-upsell__list li {
  display: flex;
  gap: 10px;
  font-size: 14px;
  line-height: 1.5;
  color: var(--warm-white);
}

.rechner-upsell__check {
  flex: 0 0 18px;
  width: 18px;
  height: 18px;
  color: var(--energy-green);
  margin-top: 2px;
}

.rechner-upsell__price {
  margin-top: 12px;
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 8px 12px;
}

.rechner-upsell__price-num {
  font-family: var(--font-body);
  font-size: 24px;
  font-weight: 700;
  color: var(--warm-white);
  letter-spacing: -.01em;
}

.rechner-upsell__price-bafa {
  font-size: 14px;
  color: #00B4D8;
  font-style: italic;
}

.rechner-upsell__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 22px;
  background: #00B4D8;
  color: var(--black);
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 15px;
  border-radius: 999px;
  text-decoration: none;
  letter-spacing: -.005em;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}

.rechner-upsell__btn:hover {
  transform: translateY(-1px);
  background: #2cc8e8;
  box-shadow: 0 8px 24px rgba(0, 180, 216, .25);
}

/* --- Responsive --- */

@media (max-width: 1024px) {
  .rechner__grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .rechner__panel { height: auto; }
  .rechner-panel__stick { position: static; }
}

@media (max-width: 640px) {
  .rechner {
    padding: 60px 20px;
  }
  .rechner-panel__stick { padding: 24px; }
  .rechner-row__value--xl { font-size: 30px; }
  .rechner-row__value--big { font-size: 26px; }
  .rechner-row__value--lg { font-size: 22px; }
  .rechner-slider__value { font-size: 18px; }
}

/* ============================================ */
/* Legal Pages: Impressum + Datenschutz         */
/* ============================================ */

.legal {
  background: var(--warm-white);
  color: var(--black);
  padding: 120px 40px 80px;
  min-height: 100vh;
}

.legal__container {
  max-width: 800px;
  margin: 0 auto;
}

.legal__back {
  display: inline-block;
  font-size: 14px;
  font-weight: 600;
  color: var(--energy-green);
  margin-bottom: 24px;
  transition: opacity .2s;
}

.legal__back:hover {
  opacity: .7;
}

.legal__h1 {
  font-family: var(--font-body);
  font-size: 32px;
  font-weight: 700;
  color: #0A0A0A;
  letter-spacing: -.02em;
  margin-bottom: 8px;
}

.legal__stand {
  font-size: 14px;
  font-style: italic;
  color: #888885;
  margin-bottom: 48px;
}

.legal h2 {
  font-family: var(--font-body);
  font-size: 22px;
  font-weight: 700;
  color: #0A0A0A;
  letter-spacing: -.01em;
  margin-top: 48px;
  margin-bottom: 16px;
}

.legal h3 {
  font-family: var(--font-body);
  font-size: 18px;
  font-weight: 700;
  color: #0A0A0A;
  margin-top: 24px;
  margin-bottom: 12px;
}

.legal p {
  font-family: var(--font-body);
  font-size: 15px;
  line-height: 1.7;
  color: #2A2A2A;
  margin-bottom: 16px;
}

.legal p strong {
  font-weight: 600;
}

.legal a {
  color: #00B4D8;
  text-decoration: none;
}

.legal a:hover {
  text-decoration: underline;
}

.legal ul {
  list-style: disc;
  padding-left: 24px;
  margin-bottom: 16px;
}

.legal li {
  font-family: var(--font-body);
  font-size: 15px;
  line-height: 1.7;
  color: #2A2A2A;
  padding: 4px 0;
}

.footer__legal-link {
  color: var(--white-50);
  font-size: 13px;
  transition: color .2s;
}

.footer__legal-link:hover {
  color: var(--warm-white);
}

@media (max-width: 640px) {
  .legal {
    padding: 100px 20px 60px;
  }
  .legal__h1 {
    font-size: 26px;
  }
  .legal h2 {
    font-size: 19px;
    margin-top: 36px;
  }
}

/* ============================================ */
/* Mobile-Optimierung                           */
/* ============================================ */

/* --- Hamburger-Button (hidden on Desktop) --- */

.nav__burger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 10px;
  margin: -10px;
  width: 44px;
  height: 44px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  z-index: 201;
  -webkit-tap-highlight-color: transparent;
}

.nav__burger-line {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--warm-white);
  border-radius: 2px;
  transition: transform .3s ease, opacity .3s ease;
}

.nav__burger.is-open .nav__burger-line:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav__burger.is-open .nav__burger-line:nth-child(2) {
  opacity: 0;
}

.nav__burger.is-open .nav__burger-line:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* --- Mobile Fullscreen Menu Overlay --- */

.mobile-menu {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 200;
  background: var(--black-90);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  opacity: 0;
  visibility: hidden;
  transition: opacity .3s ease, visibility .3s ease;
}

.mobile-menu.is-open {
  opacity: 1;
  visibility: visible;
}

.mobile-menu__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100%;
  gap: 12px;
  padding: 80px 40px 40px;
}

.mobile-menu__link {
  font-size: 28px;
  font-weight: 600;
  color: var(--warm-white);
  padding: 16px 24px;
  letter-spacing: -.01em;
  transition: color .2s ease;
  -webkit-tap-highlight-color: transparent;
}

.mobile-menu__link:hover,
.mobile-menu__link:active {
  color: var(--energy-green);
}

.mobile-menu__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 24px;
  padding: 18px 40px;
  font-size: 18px;
  font-weight: 700;
  color: var(--black);
  background: var(--energy-green);
  border-radius: 999px;
  min-height: 56px;
  transition: transform .2s ease, box-shadow .2s ease;
  -webkit-tap-highlight-color: transparent;
}

.mobile-menu__cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(61, 220, 132, .3);
}

/* --- Show burger + overlay only on mobile/tablet --- */

@media (max-width: 1023px) {
  .nav__burger {
    display: flex;
  }
  .nav__links {
    display: none;
  }
  .mobile-menu {
    display: block;
  }
}

/* --- Tablet (768–1023px) --- */

@media (min-width: 768px) and (max-width: 1023px) {
  .hero {
    padding: 120px 32px 60px;
  }

  .hero__headline br,
  .hero__sub br,
  .section-title br,
  .cta__question br,
  .cta__sub br {
    display: none;
  }

  .lager__grid {
    gap: 24px;
  }

  .lager__card {
    padding: 36px 28px;
  }

  .lager__card-media {
    margin: -36px -28px 24px;
  }

  .phase {
    grid-template-columns: 120px 1fr;
    gap: 32px;
    padding: 36px 32px;
  }

  .phase__num-text {
    font-size: 72px;
  }

  .warum__grid {
    gap: 48px;
  }

  .rechner__grid {
    grid-template-columns: 1fr;
  }

  .rechner__panel {
    height: auto;
  }

  .rechner-panel__stick {
    position: static;
  }

  .skin__card {
    padding: 36px 28px;
  }
}

/* --- Mobile (unter 768px) --- */

@media (max-width: 767px) {

  /* -- Nav -- */
  .nav {
    padding: 12px 16px;
  }
  .nav.is-scrolled {
    padding: 10px 16px;
  }
  .nav__cta {
    display: none;
  }

  /* -- Hero -- */
  .hero {
    padding: 100px 20px 48px;
    min-height: auto;
  }

  .hero__headline {
    font-size: 36px;
    line-height: 1.08;
    letter-spacing: -.03em;
    margin-bottom: 20px;
  }

  .hero__headline br,
  .hero__sub br {
    display: none;
  }

  .hero__sub {
    font-size: 16px;
    line-height: 1.5;
    margin-bottom: 32px;
  }

  .hero__eyebrow {
    font-size: 11px;
    margin-bottom: 20px;
  }

  .hero__video {
    margin-bottom: 32px;
  }

  .hero__video-frame {
    border-radius: 10px;
    box-shadow: 0 16px 40px rgba(0, 0, 0, .4);
  }

  .hero__video-play {
    width: 56px;
    height: 56px;
  }

  .hero__video-play svg {
    width: 24px;
    height: 24px;
  }

  .hero__video-title {
    font-size: 15px;
  }

  .hero__video-meta {
    font-size: 12px;
  }

  .hero__logos {
    margin-bottom: 32px;
  }

  .hero__logos-track {
    gap: 32px;
  }

  .hero__logos-img {
    height: 24px;
  }

  /* -- Section Headers -- */
  .section-header {
    margin-bottom: 48px;
  }

  .section-title {
    font-size: 28px;
    line-height: 1.1;
  }

  .section-title br,
  .cta__question br,
  .cta__sub br {
    display: none;
  }

  .section-eyebrow {
    font-size: 11px;
    margin-bottom: 16px;
  }

  /* -- Lager (zwei Lager) -- */
  .lager {
    padding: 60px 20px 28px;
  }

  .lager__grid {
    grid-template-columns: 1fr;
    gap: 20px;
    margin-bottom: 48px;
  }

  .lager__card {
    padding: 28px 20px;
  }

  .lager__card-media {
    margin: -28px -20px 20px;
  }

  .lager__card-num {
    font-size: 48px;
    top: 12px;
    right: 16px;
  }

  .lager__card-title {
    font-size: 22px;
    margin-bottom: 16px;
  }

  .lager__card-text {
    font-size: 15px;
  }

  .lager__viz--noise {
    height: 180px;
  }

  .lager__noise-msg {
    font-size: 11px;
    padding: 8px 10px;
  }

  .lager__divider {
    gap: 16px;
  }

  .lager__divider-text {
    font-size: 16px;
    text-align: center;
  }

  /* -- Wippen -- */
  .wippen__intro {
    padding: 24px 20px 0;
  }

  .wippen__header {
    padding-bottom: 20px;
  }

  .wippen__track {
    height: 200vh;
  }

  .wippen__sticky {
    padding: 16px 12px;
  }

  .wippen__frame {
    padding: 10px;
    border-radius: 10px;
  }

  #wippen-sektion svg {
    max-height: calc(100dvh - 70px);
  }

  /* -- Für Wen -- */
  .fuerwen {
    padding: 60px 20px;
  }

  .fuerwen__grid {
    grid-template-columns: 1fr;
    gap: 16px;
    margin-bottom: 40px;
  }

  .fuerwen__card {
    padding: 28px 24px;
  }

  .fuerwen__card-title {
    font-size: 19px;
  }

  .fuerwen__note {
    padding: 24px 16px;
  }

  .fuerwen__note p {
    font-size: 17px;
  }

  /* -- Methode / 5 Phasen -- */
  .methode {
    padding: 60px 20px;
  }

  .phase {
    grid-template-columns: 1fr;
    gap: 16px;
    padding: 24px 20px;
  }

  .phase__num {
    width: auto;
    height: auto;
  }

  .phase__num-text {
    font-size: 56px;
  }

  .phase__num-arc {
    display: none;
  }

  .phase__title {
    font-size: 22px;
  }

  .phase__lead {
    font-size: 18px;
    margin-bottom: 16px;
  }

  .phase__body {
    font-size: 15px;
  }

  .phase__viz {
    margin-top: 20px;
    padding-top: 20px;
  }

  .phase__viz--liste .phase__viz-funnel {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .phase__viz-funnel-stage {
    padding: 24px 20px;
  }

  .phase__viz-funnel-num {
    font-size: 40px;
  }

  .phase__viz--brief {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .phase__viz-brief-paper {
    width: 160px;
    margin: 0 auto;
  }

  .phase__viz-brief-stat {
    flex-direction: column;
    gap: 4px;
    align-items: flex-start;
  }

  .phase__viz-brief-stat-num {
    font-size: 24px;
    min-width: unset;
  }

  .phase__viz--emails {
    grid-template-columns: 1fr;
    gap: 16px;
    text-align: center;
  }

  .phase__viz-emails-arrow {
    transform: rotate(90deg);
    font-size: 24px;
  }

  .phase__viz-emails-result {
    align-items: center;
  }

  .phase__viz-emails-result-num {
    font-size: 40px;
  }

  .phase__viz--page {
    grid-template-columns: 1fr;
    gap: 16px;
    text-align: center;
  }

  .phase__viz-page {
    margin: 0 auto;
    justify-self: center;
    max-width: 240px;
  }

  .phase__viz-page-arrow {
    transform: rotate(90deg);
    font-size: 24px;
  }

  .phase__viz-page-result {
    align-items: center;
  }

  .phase__viz-push-flow {
    gap: 8px;
  }

  .phase__viz-push-step {
    min-width: 60px;
  }

  .phase__viz-push-icon {
    width: 44px;
    height: 44px;
    font-size: 18px;
  }

  .phase__viz-push-step span {
    font-size: 10px;
  }

  .phase__viz-push-notif {
    padding: 12px 14px;
  }

  .phase__viz-push-notif-text strong {
    font-size: 11px;
  }

  .phase__viz-push-notif-text span {
    font-size: 12px;
  }

  .phase__addon {
    flex-direction: column;
    gap: 10px;
    padding: 16px;
  }

  .phase__addon-title {
    font-size: 16px;
  }

  .phase__addon-text {
    font-size: 13px;
  }

  /* -- Ergebnisse & Stats -- */
  .ergebnisse {
    padding: 60px 20px;
  }

  .ergebnisse__teil {
    margin-top: 48px;
  }

  .ergebnisse__sub-title {
    font-size: 20px;
  }

  .stats-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .stat-card {
    padding: 28px 24px;
    border-radius: 12px;
  }

  .stat-card--hero {
    padding: 32px 24px;
  }

  .stat-card--hero .stat-card__num {
    font-size: 56px;
  }

  .stat-card--cyan .stat-card__num {
    font-size: 36px;
  }

  .stat-card__label {
    font-size: 15px;
  }

  /* -- Globe / Testimonials (mobile fallback already exists, refine) -- */
  .globe-wrap {
    margin-top: 24px;
  }

  .globe-card {
    padding: 22px 20px 18px;
    border-radius: 10px;
  }

  .globe-card__text {
    font-size: 14px;
    margin: 10px 0 14px;
  }

  /* -- Warum Ich -- */
  .warum {
    padding: 60px 20px;
  }

  .warum__grid {
    grid-template-columns: 1fr;
    gap: 40px;
    margin-bottom: 48px;
  }

  .warum__media-stat {
    right: 0;
    bottom: -16px;
    padding: 18px 20px;
  }

  .warum__media-stat-big {
    font-size: 48px;
  }

  .warum__title {
    font-size: 26px;
    margin-bottom: 24px;
  }

  .warum__body p {
    font-size: 15px;
    line-height: 1.7;
    margin-bottom: 16px;
  }

  .warum__body-emphasis {
    padding: 16px 18px;
    font-size: 15px;
  }

  .warum__values {
    grid-template-columns: 1fr;
    gap: 12px;
    margin-top: 28px;
    padding-top: 28px;
  }

  .warum__strip {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }

  .warum__strip-caption {
    font-size: 11px;
    padding: 10px;
  }

  /* -- Skin in the Game -- */
  .skin {
    padding: 60px 20px 40px;
  }

  .skin__grid--two {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .skin__card {
    padding: 32px 24px;
    border-radius: 10px;
  }

  .skin__card-icon {
    width: 44px;
    height: 44px;
    margin-bottom: 20px;
  }

  .skin__card-title {
    font-size: 22px;
  }

  .skin__card-text {
    font-size: 15px;
  }

  /* -- ROI-Rechner -- */
  .rechner {
    padding: 40px 20px 60px;
  }

  .rechner__grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .rechner__panel {
    height: auto;
  }

  .rechner-panel__stick {
    position: static;
    padding: 24px 20px;
    border-radius: 12px;
  }

  .rechner-slider__input {
    height: 44px;
  }

  .rechner-slider__input::-webkit-slider-runnable-track {
    height: 8px;
  }

  .rechner-slider__input::-moz-range-track {
    height: 8px;
  }

  .rechner-slider__input::-moz-range-progress {
    height: 8px;
  }

  .rechner-slider__input::-webkit-slider-thumb {
    width: 44px;
    height: 44px;
    margin-top: -18px;
    border-width: 4px;
  }

  .rechner-slider__input::-moz-range-thumb {
    width: 44px;
    height: 44px;
    border-width: 4px;
  }

  .rechner-slider__label {
    font-size: 15px;
  }

  .rechner-slider__value {
    font-size: 18px;
  }

  .rechner-slider__help {
    font-size: 12px;
  }

  .rechner__sliders {
    gap: 28px;
  }

  .rechner-row {
    grid-template-columns: 1fr;
    gap: 4px;
  }

  .rechner-row__value {
    text-align: left;
    font-size: 16px;
  }

  .rechner-row__value--big {
    font-size: 24px;
  }

  .rechner-row__value--xl {
    font-size: 28px;
  }

  .rechner-row__value--lg {
    font-size: 20px;
  }

  .rechner-panel__heading {
    font-size: 16px;
  }

  .rechner-upsell__title {
    font-size: 16px;
  }

  .rechner-upsell__lead {
    font-size: 13px;
  }

  .rechner-upsell__price-num {
    font-size: 20px;
  }

  .rechner-upsell__btn {
    width: 100%;
    text-align: center;
  }

  /* -- Ablauf -- */
  .ablauf {
    padding: 60px 20px;
  }

  .ablauf__step {
    grid-template-columns: 56px 1fr;
    gap: 16px;
    padding: 16px 0;
  }

  .ablauf__step-marker {
    width: 56px;
    height: 56px;
  }

  .ablauf__step-num {
    font-size: 24px;
  }

  .ablauf__step-title {
    font-size: 19px;
  }

  .ablauf__step-body p {
    font-size: 15px;
  }

  .ablauf__connector {
    height: 28px;
    margin-left: 27px;
  }

  /* -- CTA -- */
  .cta {
    padding: 60px 20px;
  }

  .cta__title {
    font-size: 28px;
    margin-bottom: 24px;
  }

  .cta__question {
    font-size: 20px;
    margin-bottom: 20px;
  }

  .cta__sub {
    font-size: 15px;
    margin-bottom: 32px;
  }

  .cta__buttons {
    flex-direction: column;
    align-items: stretch;
    margin-bottom: 40px;
  }

  .cta__btn {
    justify-content: center;
    padding: 16px 28px;
    font-size: 16px;
    min-height: 52px;
  }

  .cta__contact {
    gap: 20px;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .cta__contact-value {
    font-size: 15px;
  }

  /* -- Footer -- */
  .footer {
    padding: 28px 20px;
  }

  .footer__container {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }

  .footer__brand-text {
    font-size: 12px;
  }

  .footer__legal {
    font-size: 13px;
  }

  /* -- Legal Pages -- */
  .legal {
    padding: 90px 20px 48px;
  }

  .legal__back {
    font-size: 15px;
    padding: 8px 0;
    min-height: 44px;
    display: inline-flex;
    align-items: center;
  }

  .legal__h1 {
    font-size: 26px;
  }

  .legal h2 {
    font-size: 19px;
    margin-top: 32px;
  }

  .legal h3 {
    font-size: 16px;
  }

  .legal p,
  .legal li {
    font-size: 15px;
  }
}

/* --- Mobile Small (320–480px) --- */

@media (max-width: 480px) {
  .hero__headline {
    font-size: 30px;
  }

  .section-title {
    font-size: 24px;
  }

  .lager__card-num {
    font-size: 40px;
  }

  .lager__card-title {
    font-size: 20px;
  }

  .phase__num-text {
    font-size: 48px;
  }

  .phase__title {
    font-size: 20px;
  }

  .phase__lead {
    font-size: 16px;
  }

  .stat-card--hero .stat-card__num {
    font-size: 44px;
  }

  .warum__title {
    font-size: 24px;
  }

  .warum__strip {
    grid-template-columns: 1fr;
  }

  .cta__title {
    font-size: 24px;
  }

  .cta__question {
    font-size: 18px;
  }

  .mobile-menu__link {
    font-size: 24px;
    padding: 14px 20px;
  }

  .mobile-menu__cta {
    font-size: 16px;
    padding: 16px 32px;
  }
}

/* --- Reduced motion: simplify mobile animations --- */

@media (max-width: 767px) and (prefers-reduced-motion: reduce) {
  .wippen__track {
    height: auto;
  }
  .wippen__sticky {
    position: relative;
  }
  #wippen-sektion svg {
    --progress: 1;
  }
}
