:root {
  --red: #f73d3d;
  --red2: #ef2c2c;
  --red3: #e1484d;
  --yellow: #fff936;
  --black: #000;
  --dark: #202020;
  --white: #fff;
  --light: #f9f9f9;
  --soft: #f4f8ff;
  --text: #192b47;
  --muted: #555;
  --font: "Red Hat Display", system-ui, sans-serif;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font);
  color: var(--text);
  background: var(--white);
  line-height: 1.55;
  overflow-x: hidden;
  font-size: 16px;
}
img, video { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button, input { font: inherit; }
.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0,0,0,0); border: 0;
}

.wrap { width: min(1120px, calc(100% - 28px)); margin: 0 auto; }
.wrap.narrow { width: min(740px, calc(100% - 28px)); }
.center { text-align: center; }

/* Top announce bar */
.announce {
  background: #1a1a1a;
  color: #fff;
  position: sticky;
  top: 0;
  z-index: 40;
}
.announce-full {
  display: block;
  width: 100%;
  border: 0;
  background: transparent;
  color: #fff;
  font-family: inherit;
  font-size: 0.92rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  padding: 0.7rem 1rem;
  cursor: pointer;
  text-align: center;
}
.announce-full:hover { background: rgba(247, 61, 61, 0.15); }

/* Hero */
.hero {
  position: relative;
  isolation: isolate;
  background-color: #f3f3f3;
  padding: 1.8rem 0 2.8rem;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background-color: #f3f3f3;
  background-image:
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='64' height='64' viewBox='0 0 64 64'%3E%3Cpath d='M32 0L64 32L32 64L0 32Z' fill='none' stroke='%23cfcfcf' stroke-width='1'/%3E%3Cpath d='M0 0L32 32L0 64M64 0L32 32L64 64' fill='none' stroke='%23cfcfcf' stroke-width='1'/%3E%3C/svg%3E");
  background-size: 64px 64px;
  background-position: center top;
  opacity: 1;
}
.hero > .wrap {
  position: relative;
  z-index: 1;
}
.hero-intro {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 2rem;
}
.hero-ask {
  margin: 0 0 0.55rem;
  font-size: clamp(0.95rem, 2vw, 1.05rem);
  font-weight: 600;
  letter-spacing: 0.01em;
  color: #6a6a6a;
}
.hero-intro h1 {
  margin: 0 0 0.45rem;
  font-size: clamp(2.55rem, 7.2vw, 3.85rem);
  line-height: 0.98;
  font-weight: 900;
  letter-spacing: -0.035em;
  color: var(--red);
}
.hero-intro h1 span {
  color: #151515;
  font-weight: 800;
  letter-spacing: -0.02em;
}
.hl { color: var(--red); }
.hero-proof {
  margin: 0 0 1rem;
  font-size: clamp(1.12rem, 2.5vw, 1.35rem);
  font-weight: 700;
  color: #1a1a1a;
  letter-spacing: -0.01em;
}
.hero-sub {
  margin: 0 auto 0.75rem;
  max-width: 36rem;
  font-size: 1.02rem;
  color: #4a4a4a;
  line-height: 1.55;
  font-weight: 500;
}
.hero-sub b { color: #1a1a1a; font-weight: 700; }
.hero-fine {
  margin: 0;
  font-size: 0.82rem;
  color: #9a9a9a;
  letter-spacing: 0.01em;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 1.5rem;
  align-items: start;
}
.hero-media { display: grid; gap: 0.85rem; }

.video-stage {
  width: 100%;
  border-radius: 18px;
  overflow: hidden;
  background: #0b0b0b;
  box-shadow:
    0 24px 55px rgba(0,0,0,.22),
    0 0 0 1px rgba(0,0,0,.06);
}
.video-card {
  position: relative;
  overflow: hidden;
  border-radius: 0;
  background: #0b0b0b;
  box-shadow: none;
  isolation: isolate;
}
.video-card video {
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
  display: block;
  background: #000;
}
.video-card.is-locked video { filter: blur(3px) brightness(0.45); pointer-events: none; }

.vp-bigplay {
  position: absolute;
  inset: 50% auto auto 50%;
  transform: translate(-50%, -50%);
  width: 56px;
  height: 56px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.55);
  background:
    linear-gradient(145deg, rgba(255,255,255,.42), rgba(255,255,255,.12)),
    rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(16px) saturate(1.25);
  -webkit-backdrop-filter: blur(16px) saturate(1.25);
  color: #fff;
  cursor: pointer;
  z-index: 4;
  display: grid;
  place-items: center;
  box-shadow:
    0 10px 30px rgba(0,0,0,.28),
    inset 0 1px 0 rgba(255,255,255,.55);
  transition: transform .15s ease, opacity .2s ease, background .15s ease;
}
.vp-bigplay svg { width: 18px; height: 18px; fill: currentColor; }
.vp-bigplay .vp-ico-play { margin-left: 2px; }
.vp-bigplay .vp-ico-pause { display: none; }
.video-card.is-playing .vp-bigplay .vp-ico-play { display: none; }
.video-card.is-playing .vp-bigplay .vp-ico-pause { display: block; }
.vp-bigplay:hover {
  transform: translate(-50%, -50%) scale(1.05);
  background:
    linear-gradient(145deg, rgba(255,255,255,.5), rgba(255,255,255,.16)),
    rgba(255, 255, 255, 0.2);
}
.video-card.is-locked .vp-bigplay { opacity: 0; pointer-events: none; }
.video-card:not(.is-locked) .vp-bigplay { opacity: 1; pointer-events: auto; }
.video-card.is-playing .vp-bigplay {
  opacity: 0;
  pointer-events: none;
}
.video-card.is-playing:hover .vp-bigplay,
.video-card.is-playing.show-pause .vp-bigplay {
  opacity: 1;
  pointer-events: auto;
}

.lock-overlay {
  position: absolute;
  inset: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
  z-index: 5;
  display: grid;
  place-items: center;
}
.video-card:not(.is-locked) .lock-overlay { display: none; }
.lock-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  background: rgba(255,255,255,.96);
  color: #111;
  font-weight: 800;
  font-size: 0.92rem;
  padding: 0.85rem 1.15rem;
  border-radius: 999px;
  box-shadow: 0 14px 40px rgba(0,0,0,.35);
}
.lock-pill svg { width: 18px; height: 18px; }

.video-badges {
  position: absolute;
  inset: 12px 12px auto 12px;
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  z-index: 3;
  pointer-events: none;
}
.vbadge {
  background: rgba(12,12,12,.72);
  color: #fff;
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  padding: 0.38rem 0.55rem;
  border-radius: 8px;
  backdrop-filter: blur(8px);
}
.vbadge.rating {
  margin-left: auto;
  background: rgba(247, 61, 61, 0.94);
}

/* Video controls — minimal overlay inside player */
.video-card.is-locked .vp-controls { display: none; }

.vp-controls {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 6;
  padding: 1.6rem 0.85rem 0.7rem;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.78) 0%, rgba(0, 0, 0, 0.42) 55%, transparent 100%);
  opacity: 0;
  transform: translateY(6px);
  pointer-events: none;
  transition: opacity .22s ease, transform .22s ease;
}
.video-card:not(.is-locked):hover .vp-controls,
.video-card.show-controls .vp-controls,
.video-card.is-scrubbing .vp-controls {
  opacity: 1;
  transform: none;
  pointer-events: auto;
}

.vp-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.65rem;
  margin-top: 0.45rem;
}
.vp-transport {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-shrink: 0;
}
.vp-right {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  margin-left: auto;
  min-width: 0;
}
.vp-icon-btn.vp-skip,
.vp-icon-btn.vp-play-sm {
  width: auto;
  height: auto;
  padding: 0.15rem;
  background: transparent;
  border: 0;
  box-shadow: none;
  border-radius: 0;
}
.vp-icon-btn.vp-skip:hover,
.vp-icon-btn.vp-play-sm:hover {
  background: transparent;
  opacity: 0.85;
}
.vp-icon-btn.vp-skip svg {
  width: 28px;
  height: 28px;
  fill: none;
  display: block;
}
.vp-icon-btn.vp-skip svg text { fill: currentColor; }
.vp-icon-btn.vp-play-sm svg {
  width: 26px;
  height: 26px;
  fill: currentColor;
  display: block;
}
.vp-icon-btn.vp-play-sm .vp-icon-play { margin-left: 2px; }
.video-card.is-playing .vp-icon-play { display: none; }
.video-card:not(.is-playing) .vp-icon-pause { display: none; }
.vp-time {
  display: flex;
  align-items: center;
  gap: 0.15rem;
  color: rgba(255, 255, 255, 0.92);
  font-size: 0.74rem;
  font-weight: 700;
  font-variant-numeric: tabular-nums;
  white-space: nowrap;
}
.vp-time-sep { opacity: 0.45; }
.vp-actions {
  display: flex;
  align-items: center;
  gap: 0.2rem;
}
.vp-icon-btn {
  width: 34px;
  height: 34px;
  border: 0;
  border-radius: 50%;
  background: transparent;
  color: #fff;
  cursor: pointer;
  display: grid;
  place-items: center;
  padding: 0;
  transition: background .15s ease, transform .15s ease;
}
.vp-icon-btn:hover { background: rgba(255, 255, 255, 0.14); }
.vp-icon-btn:active { transform: scale(0.94); }
.vp-icon-btn svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
  display: block;
}
.video-card.is-muted .vp-icon-vol { display: none; }
.video-card:not(.is-muted) .vp-icon-mute { display: none; }

.vp-seek {
  position: relative;
  height: 18px;
  display: grid;
  align-items: center;
  min-width: 0;
}
.vp-seek-fill {
  position: absolute;
  left: 0;
  top: 50%;
  height: 3px;
  transform: translateY(-50%);
  width: 0%;
  border-radius: 999px;
  background: var(--red);
  pointer-events: none;
  z-index: 1;
}
.vp-seek::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 50%;
  height: 3px;
  transform: translateY(-50%);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.28);
}
#vpRange {
  position: relative;
  z-index: 2;
  width: 100%;
  margin: 0;
  appearance: none;
  background: transparent;
  height: 18px;
  cursor: pointer;
}
#vpRange::-webkit-slider-runnable-track {
  height: 3px;
  background: transparent;
}
#vpRange::-webkit-slider-thumb {
  appearance: none;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #fff;
  border: 0;
  margin-top: -4.5px;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.35);
}
#vpRange::-moz-range-track { height: 3px; background: transparent; }
#vpRange::-moz-range-thumb {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #fff;
  border: 0;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.35);
}

@media (max-width: 640px) {
  .vp-controls { padding: 1.4rem 0.65rem 0.55rem; }
  .vp-meta { gap: 0.35rem; }
  .vp-transport { gap: 0.35rem; }
  .vp-icon-btn.vp-skip svg { width: 26px; height: 26px; }
  .vp-icon-btn.vp-play-sm svg { width: 24px; height: 24px; }
  .vp-right { gap: 0.3rem; }
  .vp-time { font-size: 0.68rem; }
}

.video-stage:fullscreen {
  display: flex;
  align-items: center;
  justify-content: center;
  background: #000;
  border-radius: 0;
}
.video-stage:fullscreen .video-card {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.video-stage:fullscreen .video-card video {
  width: 100%;
  height: 100%;
  max-height: 100vh;
  aspect-ratio: auto;
  object-fit: contain;
}
.video-stage:fullscreen .vp-controls {
  left: 0;
  right: 0;
  bottom: 0;
  padding-bottom: 1rem;
}

.bekannt-row {
  display: grid;
  gap: 0.65rem;
  padding: 0.35rem 0 0;
  background: transparent;
  border: 0;
  border-radius: 0;
  box-shadow: none;
}
.bekannt-label {
  margin: 0;
  text-align: center;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #888;
}
.bekannt-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.85rem 1rem;
  align-items: center;
  justify-items: center;
}
.bekannt-grid figure {
  margin: 0;
  display: grid;
  justify-items: center;
  width: 100%;
  max-width: 160px;
}
.bekannt-grid img {
  width: auto;
  height: 52px;
  max-width: 100%;
  object-fit: contain;
  filter: none;
}

.host-bar {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  background: #161616;
  color: #fff;
  border-radius: 14px;
  padding: 0.7rem 0.9rem;
}
.host-bar img {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid rgba(255,255,255,.2);
}
.host-bar strong {
  display: block;
  font-size: 0.88rem;
  font-weight: 800;
}
.host-bar small {
  display: block;
  margin-top: 0.1rem;
  font-size: 0.72rem;
  color: rgba(255,255,255,.7);
}

/* Inline opt-in card */
.optin-card {
  background: #fff;
  border-radius: 18px;
  padding: 1.35rem 1.25rem 1.2rem;
  border: 1px solid rgba(0,0,0,.06);
  box-shadow:
    0 18px 50px rgba(0,0,0,.1),
    0 2px 8px rgba(0,0,0,.04);
  position: sticky;
  top: 56px;
}
.optin-card h2 {
  margin: 0 0 1rem;
  font-size: 1.45rem;
  text-align: center;
  font-weight: 900;
  color: #111;
}
.optin-field { display: block; margin-bottom: 0.95rem; }
.optin-field input {
  width: 100%;
  padding: 0.95rem 1rem;
  border: 1.5px solid #e2e2e2;
  border-radius: 12px;
  background: #fafafa;
  color: #111;
  transition: border-color .15s ease, box-shadow .15s ease, background .15s ease;
}
.optin-field input:focus {
  outline: none;
  border-color: var(--red);
  background: #fff;
  box-shadow: 0 0 0 4px rgba(247, 61, 61, 0.12);
}
.optin-field-phone { margin-bottom: 0.95rem; }
.optin-phone-wrap {
  border: 1.5px solid #e2e2e2;
  border-radius: 12px;
  background: #fafafa;
  overflow: visible;
  transition: border-color .15s ease, box-shadow .15s ease, background .15s ease;
}
.optin-phone-wrap:focus-within {
  border-color: var(--red);
  background: #fff;
  box-shadow: 0 0 0 4px rgba(247, 61, 61, 0.12);
}
.optin-phone-error {
  margin: 0.35rem 0 0;
  font-size: 0.68rem;
  font-weight: 600;
  color: #e5484d;
  display: none;
}
.optin-field-phone.is-invalid .optin-phone-wrap {
  border-color: #e5484d;
  box-shadow: 0 0 0 4px rgba(229, 72, 77, 0.12);
}
.optin-field-phone.is-invalid .optin-phone-error { display: block; }
.optin-when {
  margin: 0 0 0.55rem;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #555;
}
.optin-slots {
  display: grid;
  gap: 0.45rem;
  margin-bottom: 1rem;
  max-height: 230px;
  overflow-y: auto;
  padding-right: 2px;
}
.optin-slot {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 0.65rem;
  padding: 0.7rem 0.8rem;
  border-radius: 12px;
  border: 1.5px solid #e8e8e8;
  background: #fff;
  cursor: pointer;
  transition: border-color .15s ease, background .15s ease, box-shadow .15s ease;
}
.optin-slot:hover { border-color: #ffc4c4; }
.optin-slot.is-active {
  border-color: var(--red);
  background: #fff7f7;
  box-shadow: 0 0 0 3px rgba(247, 61, 61, 0.1);
}
.optin-slot input { position: absolute; opacity: 0; pointer-events: none; }
.optin-radio {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  border: 2px solid #ccc;
  background: #fff;
  position: relative;
  flex-shrink: 0;
}
.optin-slot.is-active .optin-radio {
  border-color: var(--red);
  background: var(--red);
  box-shadow: inset 0 0 0 3px #fff;
}
.optin-slot-text {
  font-size: 0.9rem;
  font-weight: 700;
  color: #222;
  line-height: 1.25;
}
.optin-slot-text small {
  display: block;
  margin-top: 0.1rem;
  font-size: 0.72rem;
  font-weight: 600;
  color: #888;
}

.optin-cta {
  width: 100%;
  border: 0;
  cursor: pointer;
  border-radius: 14px;
  padding: 1rem 1rem 0.95rem;
  background: linear-gradient(127deg, var(--red2) 0%, var(--red3) 55%, #c91f24 100%);
  color: #fff;
  box-shadow: 0 14px 34px rgba(239, 44, 44, 0.38);
  display: grid;
  gap: 0.12rem;
  text-align: center;
  transition: transform .15s ease, filter .15s ease;
}
.optin-cta:hover { filter: brightness(1.05); transform: translateY(-1px); }
.optin-cta:disabled { opacity: 0.85; cursor: wait; transform: none; }
.optin-cta-main {
  font-size: 1.05rem;
  font-weight: 900;
}
.optin-cta-sub {
  font-size: 0.72rem;
  font-weight: 600;
  opacity: 0.92;
}
.optin-social {
  margin: 0.75rem 0 0;
  text-align: center;
  font-size: 0.78rem;
  color: #888;
  line-height: 1.35;
}

/* Buttons */
.btn-main {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  border: 0;
  cursor: pointer;
  background: linear-gradient(127deg, var(--red2) 0%, var(--red3) 100%);
  color: #fff;
  font-weight: 800;
  font-size: clamp(1rem, 2.4vw, 1.2rem);
  padding: 0.95rem 1.35rem;
  border-radius: 8px;
  box-shadow: 0 10px 28px rgba(239, 44, 44, 0.35);
  transition: transform .15s ease, filter .15s ease;
  text-align: center;
  line-height: 1.25;
  max-width: 100%;
}
.btn-main:hover { filter: brightness(1.05); transform: translateY(-1px); }
.btn-main.full { width: 100%; }
.btn-main .arrow { font-size: 1.25em; line-height: 1; }
.btn-main u { text-underline-offset: 3px; }

.urgency {
  margin: 0.7rem 0 0;
  color: var(--red);
  font-weight: 700;
  font-size: 0.98rem;
}
.urgency.yellow { color: var(--yellow); }
.deadline {
  margin: 0.45rem 0 0;
  font-size: 0.92rem;
  color: #444;
}

/* Bands */
.band { padding: 2.6rem 0; }
.band-white { background: #fff; }
.band-light { background: var(--light); }
.band-countdown {
  background: #f2f2f2;
  color: #111;
}
.band-countdown .countdown-title { color: #111; }
.band-countdown .countdown > div {
  background: #fff;
  border-color: #e6e6e6;
  box-shadow: 0 6px 18px rgba(0,0,0,.05);
}
.band-countdown .countdown strong { color: var(--red); }
.band-countdown .countdown span { color: #666; }
.band-dark {
  background: linear-gradient(127deg, #424242 0%, #202020 100%);
  color: #fff;
  padding: 1.6rem 0;
}
.band-final {
  background: linear-gradient(#f9f9f9, #eee);
  padding: 3rem 0 3.4rem;
}

.kicker {
  margin: 0 0 0.55rem;
  color: var(--red);
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
h2 {
  margin: 0 0 1rem;
  font-size: clamp(1.35rem, 3.2vw, 1.95rem);
  line-height: 1.28;
  font-weight: 800;
  color: #111;
}
.band-dark h2, .countdown-title.light { color: #fff; }
.lede {
  margin: 0 auto 1.2rem;
  max-width: 38rem;
  color: #444;
  font-size: 1.05rem;
}
.method-label {
  margin: 1.2rem 0 0.35rem;
  font-weight: 800;
  font-size: 1.15rem;
}
.method-sub { margin: 0; color: #444; }
.band-compact { padding: 1.8rem 0 2rem; }
.method-head { margin-bottom: 1.2rem; }
.method-head h2 { margin-bottom: 0.55rem; }
.method-head .lede { margin-bottom: 0; font-size: 0.98rem; }

/* Countdown */
.countdown-title { margin-bottom: 1.2rem; }
.countdown {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.7rem;
  max-width: 420px;
  margin: 0 auto;
}
.countdown > div {
  background: #fff;
  border: 1px solid #e6e6e6;
  border-radius: 10px;
  padding: 0.85rem 0.4rem;
  box-shadow: 0 6px 18px rgba(0,0,0,.05);
}
.countdown strong {
  display: block;
  font-size: clamp(1.5rem, 4vw, 2rem);
  font-weight: 900;
  color: var(--red);
  line-height: 1.1;
}
.countdown span {
  display: block;
  margin-top: 0.25rem;
  font-size: 0.78rem;
  font-weight: 600;
  color: #666;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.countdown-light > div {
  background: rgba(255,255,255,.08);
  border-color: rgba(255,255,255,.15);
}
.countdown-light strong { color: var(--yellow); }
.countdown-light span { color: rgba(255,255,255,.75); }

/* Steps — compact 2x2 */
.steps {
  display: grid;
  gap: 0.85rem;
  max-width: 920px;
  margin: 0 auto;
}
.steps-stack {
  grid-template-columns: 1fr;
  max-width: 720px;
}
.optin-lead {
  margin: -0.35rem 0 1rem;
  text-align: center;
  color: #666;
  font-size: 0.92rem;
}
.proof-stack {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
  max-width: 820px;
  margin: 1.2rem auto 0;
}
.proof-stack img {
  width: 100%;
  border-radius: 14px;
  border: 1px solid #e8e8e8;
  box-shadow: 0 10px 28px rgba(0,0,0,.07);
  background: #fff;
}
.step {
  background: #fff;
  border: 1px solid #ececec;
  border-radius: 12px;
  padding: 1rem 1.05rem;
  box-shadow: 0 6px 18px rgba(0,0,0,.04);
}
.step-num, .step-badge {
  display: inline-block;
  margin-bottom: 0.45rem;
  background: var(--red);
  color: #fff;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 0.28rem 0.55rem;
  border-radius: 4px;
}
.step h3 {
  margin: 0 0 0.4rem;
  font-size: 1.05rem;
  line-height: 1.28;
}
.step p { margin: 0 0 0.4rem; color: #555; font-size: 0.92rem; line-height: 1.4; }
.step p:last-child { margin-bottom: 0; }
.secret {
  background: #fff5f5;
  border-left: 3px solid var(--red);
  padding: 0.5rem 0.65rem;
  border-radius: 0 6px 6px 0;
  font-size: 0.86rem !important;
}
.steps-cta { margin-top: 1.25rem; }

/* Reveal / after workshop */
.reveal {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 2.4rem;
  align-items: center;
}
.reveal-copy .kicker { margin-bottom: 0.4rem; }
.reveal-copy h2 {
  margin: 0 0 1.2rem;
  font-size: clamp(1.45rem, 3vw, 2rem);
}
.benefit-list {
  list-style: none;
  margin: 0 0 1.5rem;
  padding: 0;
  display: grid;
  gap: 0.95rem;
}
.benefit-list li {
  position: relative;
  padding: 0 0 0 2rem;
  color: #333;
  font-size: 1.02rem;
  line-height: 1.45;
  background: none;
  border: 0;
}
.benefit-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0.15rem;
  width: 1.25rem;
  height: 1.25rem;
  border-radius: 50%;
  background: var(--red);
  color: #fff;
  font-size: 0.7rem;
  font-weight: 800;
  display: grid;
  place-items: center;
}
.benefit-list em { font-style: italic; color: #555; }
.btn-main.btn-stack {
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.2rem;
  text-align: center;
  padding: 0.95rem 1.6rem 0.9rem;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(239, 44, 44, 0.28);
}
.btn-main.btn-stack .btn-label {
  font-size: 1.05rem;
  font-weight: 800;
  line-height: 1.2;
}
.btn-main.btn-stack .btn-note {
  display: block;
  width: auto;
  font-size: 0.74rem;
  font-weight: 600;
  opacity: 0.88;
  line-height: 1.2;
}
.reveal-photos {
  position: relative;
  min-height: 340px;
  margin-right: 0.5rem;
}
.reveal-photo {
  width: 86%;
  border-radius: 14px;
  object-fit: cover;
  aspect-ratio: 16/10;
  box-shadow: 0 18px 44px rgba(0,0,0,.16);
  background: #111;
}
.reveal-photo-back {
  position: relative;
  z-index: 1;
}
.reveal-photo-front {
  position: absolute;
  right: 0;
  bottom: -8%;
  width: 78%;
  z-index: 2;
  border: 4px solid #fff;
}

/* Testimonials rail */
.comm-rail {
  overflow-x: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
  margin: 1.2rem 0 0.4rem;
}
.comm-rail::-webkit-scrollbar { display: none; }
.comm-track {
  display: flex;
  gap: 14px;
  width: max-content;
}
.comm-track img {
  height: 320px;
  width: auto;
  border-radius: 12px;
  border: 1px solid #e8e8e8;
  box-shadow: 0 10px 28px rgba(0,0,0,.08);
  background: #fff;
}
.proof-thumb {
  cursor: zoom-in;
  transition: transform .18s ease, box-shadow .18s ease;
}
.proof-thumb:hover {
  transform: scale(1.02);
  box-shadow: 0 14px 34px rgba(0,0,0,.14);
}
.swipe-hint {
  text-align: center;
  color: #888;
  font-size: 0.88rem;
  margin: 0.5rem 0 0;
}

/* Proof lightbox */
.proof-lightbox {
  border: 0;
  padding: 0;
  background: transparent;
  max-width: calc(100vw - 24px);
  width: min(920px, 100%);
}
.proof-lightbox::backdrop {
  background: rgba(8, 8, 10, 0.82);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}
.proof-lightbox[open] .proof-lightbox-frame {
  animation: leadIn 0.28s cubic-bezier(0.22, 1, 0.36, 1);
}
.proof-lightbox-close {
  position: fixed;
  top: 18px;
  right: 18px;
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.14);
  color: #fff;
  cursor: pointer;
  display: grid;
  place-items: center;
  z-index: 2;
  transition: background .15s ease;
}
.proof-lightbox-close:hover { background: rgba(255, 255, 255, 0.24); }
.proof-lightbox-frame {
  margin: 0;
  padding: 0;
  display: grid;
  place-items: center;
}
.proof-lightbox-frame img {
  display: block;
  max-width: min(920px, calc(100vw - 32px));
  max-height: calc(100vh - 48px);
  width: auto;
  height: auto;
  border-radius: 14px;
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.45);
  background: #fff;
}

/* Host */
.host {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 2rem;
  align-items: center;
}
.host-media img {
  width: 100%;
  border-radius: 14px;
  box-shadow: 0 16px 40px rgba(0,0,0,.12);
  aspect-ratio: 3/4;
  object-fit: cover;
  object-position: center top;
}
.host-copy p { color: #444; }
.host-copy .btn-main { margin-top: 0.6rem; }

/* FAQ */
.band-faq {
  background:
    linear-gradient(180deg, #f7f7f7 0%, #f3f3f3 100%);
  padding: 3rem 0 3.2rem;
}
.faq-wrap { width: min(820px, calc(100% - 28px)); }
.faq-head {
  text-align: center;
  margin-bottom: 1.6rem;
}
.faq-head .kicker { margin-bottom: 0.45rem; }
.faq-head h2 {
  margin: 0 auto 0.55rem;
  max-width: 22ch;
  font-size: clamp(1.4rem, 3.2vw, 1.9rem);
}
.faq-lede {
  margin: 0 auto;
  max-width: 34rem;
  color: #666;
  font-size: 0.98rem;
}
.faq {
  display: grid;
  gap: 0.7rem;
}
.faq details {
  background: #fff;
  border: 1px solid rgba(0,0,0,.06);
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(0,0,0,.04);
  transition: border-color .15s ease, box-shadow .15s ease;
}
.faq details[open] {
  border-color: rgba(247, 61, 61, 0.28);
  box-shadow: 0 12px 30px rgba(247, 61, 61, 0.08);
}
.faq summary {
  cursor: pointer;
  list-style: none;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 0.85rem;
  padding: 1.05rem 1.15rem;
  font-weight: 700;
  color: #151515;
}
.faq summary::-webkit-details-marker { display: none; }
.faq-num {
  width: 34px;
  height: 34px;
  border-radius: 10px;
  background: #fff1f1;
  color: var(--red);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  display: grid;
  place-items: center;
  flex-shrink: 0;
}
.faq details[open] .faq-num {
  background: var(--red);
  color: #fff;
}
.faq-q {
  font-size: 0.98rem;
  line-height: 1.35;
  text-align: left;
}
.faq summary::after {
  content: "";
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background:
    #f5f5f5
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23f73d3d' stroke-width='2.4' stroke-linecap='round'%3E%3Cpath d='M12 6v12M6 12h12'/%3E%3C/svg%3E")
    center / 14px no-repeat;
  transition: transform .2s ease, background-color .15s ease;
}
.faq details[open] summary::after {
  transform: rotate(45deg);
  background-color: #ffe8e8;
}
.faq-a {
  padding: 0 1.15rem 1.15rem 4.2rem;
}
.faq-a p {
  margin: 0;
  color: #555;
  font-size: 0.95rem;
  line-height: 1.55;
  border-top: 1px solid #f0f0f0;
  padding-top: 0.85rem;
}

@media (max-width: 520px) {
  .faq summary { gap: 0.65rem; padding: 0.95rem 0.95rem; }
  .faq-a { padding-left: 1rem; padding-right: 0.95rem; }
  .faq-q { font-size: 0.92rem; }
}

.spots {
  margin: 0 0 0.6rem;
  color: var(--red);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-size: 0.85rem;
}

/* Footer */
.footer {
  background: #111;
  color: rgba(255,255,255,.75);
  padding: 1.4rem 0;
  font-size: 0.88rem;
}
.footer-inner {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  align-items: center;
}
.footer nav { display: flex; gap: 1rem; }
.footer a:hover { color: #fff; }

/* Lead modal — premium opt-in */
#leadGate {
  border: 0;
  padding: 0;
  background: transparent;
  max-width: calc(100vw - 24px);
  width: min(480px, 100%);
  overflow: visible;
}
#leadGate::backdrop {
  background:
    radial-gradient(ellipse at 50% 15%, rgba(247, 61, 61, 0.28), transparent 58%),
    rgba(6, 6, 8, 0.78);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}
#leadGate[open] .lead-card {
  animation: leadIn 0.42s cubic-bezier(0.22, 1, 0.36, 1);
}
@keyframes leadIn {
  from { opacity: 0; transform: translateY(22px) scale(0.95); }
  to { opacity: 1; transform: none; }
}
.lead-card {
  position: relative;
  width: 100%;
  margin: auto;
  background:
    radial-gradient(circle at 100% 0%, rgba(247, 61, 61, 0.06), transparent 42%),
    linear-gradient(180deg, #ffffff 0%, #fbfbfb 100%);
  border-radius: 24px;
  padding: 1.85rem 1.95rem 1.65rem;
  border: 1px solid rgba(255, 255, 255, 0.9);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.95) inset,
    0 32px 90px rgba(0, 0, 0, 0.42),
    0 10px 28px rgba(247, 61, 61, 0.14);
  overflow: hidden;
}
.lead-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  border-radius: 24px 24px 0 0;
  background: linear-gradient(90deg, var(--red2), var(--red), #ff8a8a, var(--red2));
}
.lead-close {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 38px;
  height: 38px;
  border: 1px solid #ececec;
  border-radius: 50%;
  background: #fff;
  color: #888;
  cursor: pointer;
  display: grid;
  place-items: center;
  transition: background .15s ease, color .15s ease, border-color .15s ease, transform .15s ease;
  z-index: 2;
}
.lead-close:hover {
  background: #fafafa;
  color: #111;
  border-color: #ddd;
  transform: scale(1.04);
}

.lead-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  margin: 0 2.5rem 1.1rem 0;
}
.lead-brand {
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #1a1a1a;
}
.lead-live {
  display: inline-flex;
  align-items: center;
  gap: 0.38rem;
  font-size: 0.68rem;
  font-weight: 800;
  color: var(--red);
  background: linear-gradient(135deg, #fff5f5, #ffecec);
  border: 1px solid #ffcfcf;
  padding: 0.34rem 0.68rem;
  border-radius: 999px;
  white-space: nowrap;
  box-shadow: 0 2px 8px rgba(247, 61, 61, 0.1);
}
.lead-live i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--red);
  box-shadow: 0 0 0 0 rgba(247, 61, 61, 0.55);
  animation: pulseDot 1.4s ease infinite;
}
@keyframes pulseDot {
  0% { box-shadow: 0 0 0 0 rgba(247, 61, 61, 0.55); }
  70% { box-shadow: 0 0 0 8px rgba(247, 61, 61, 0); }
  100% { box-shadow: 0 0 0 0 rgba(247, 61, 61, 0); }
}

.lead-progress {
  height: 6px;
  background: #efefef;
  border-radius: 999px;
  overflow: hidden;
  margin-bottom: 1.25rem;
  border: 1px solid #e6e6e6;
}
.lead-progress-fill {
  height: 100%;
  width: 0;
  min-width: 0;
  background: linear-gradient(90deg, var(--red2), var(--red));
  display: flex;
  align-items: center;
  justify-content: flex-end;
  transition: width .28s ease;
  border-radius: inherit;
  box-shadow: 0 0 12px rgba(247, 61, 61, 0.45);
}
.lead-progress-fill span {
  color: #fff;
  font-size: 0.55rem;
  font-weight: 800;
  padding-right: 6px;
  letter-spacing: 0.02em;
}

.lead-head { text-align: center; margin-bottom: 1.4rem; }
.lead-eyebrow {
  margin: 0 0 0.4rem;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--red);
}
.lead-card h2 {
  margin: 0 0 0.5rem;
  font-size: clamp(1.5rem, 4.5vw, 1.95rem);
  line-height: 1.15;
  font-weight: 900;
  color: #0f0f0f;
  text-align: center;
  letter-spacing: -0.02em;
}
.lead-sub {
  margin: 0 auto;
  max-width: 22rem;
  color: #626262;
  font-size: 0.92rem;
  line-height: 1.55;
}

.lead-fields {
  display: grid;
  gap: 0.85rem;
  margin-bottom: 1.1rem;
}
.lead-field {
  display: grid;
  gap: 0.38rem;
  text-align: left;
}
.lead-label {
  font-size: 0.76rem;
  font-weight: 700;
  color: #3a3a3a;
  letter-spacing: 0.02em;
}
.lead-field input {
  width: 100%;
  margin: 0;
  padding: 0.95rem 1rem;
  border: 1.5px solid #e2e2e2;
  border-radius: 14px;
  background: #fff;
  color: #111;
  font-size: 0.95rem;
  transition: border-color .15s ease, box-shadow .15s ease, background .15s ease;
}
.lead-field input::placeholder { color: #aaa; }
.lead-field input:focus {
  outline: none;
  border-color: var(--red);
  background: #fffcfc;
  box-shadow: 0 0 0 4px rgba(247, 61, 61, 0.1);
}

.lead-field-phone .lead-label { display: block; }
.phone-wrap .iti {
  width: 100%;
  display: block;
  --iti-spacer-horizontal: 6px;
  --iti-arrow-padding: 4px;
}
.phone-wrap .iti__flag {
  background-image: url("https://cdn.jsdelivr.net/npm/intl-tel-input@24.8.2/build/img/flags.webp");
  transform: scale(0.92);
  border-radius: 2px;
}
@media (min-resolution: 2x) {
  .phone-wrap .iti__flag {
    background-image: url("https://cdn.jsdelivr.net/npm/intl-tel-input@24.8.2/build/img/flags@2x.webp");
  }
}
.phone-wrap .iti__tel-input {
  width: 100%;
  margin: 0;
  padding-block: 0.9rem;
  padding-right: 1rem;
  border: 0 !important;
  border-radius: 14px;
  background: transparent;
  color: #111;
  font-size: 0.95rem;
  font-family: var(--font);
  box-shadow: none !important;
}
.optin-phone-wrap .iti__tel-input {
  padding-block: 0.95rem;
  border-radius: 12px;
  font-size: 1rem;
}
.phone-wrap .iti__tel-input:focus { outline: none; }
.phone-wrap .iti__country-container {
  left: 0.55rem;
}
.phone-wrap .iti__selected-country {
  padding: 0.2rem 0.25rem;
  border-radius: 6px;
  background: transparent;
  border: 0;
  gap: 0.2rem;
  transition: background .15s ease;
}
.phone-wrap .iti__selected-country:hover,
.phone-wrap .iti__selected-country:focus {
  background: rgba(0, 0, 0, 0.04);
}
.phone-wrap .iti__selected-country-primary {
  padding: 0 0.35rem 0 0.15rem;
  gap: 0.2rem;
}
.phone-wrap .iti__selected-dial-code {
  font-size: 0.82rem;
  font-weight: 600;
  color: #555;
  margin-left: 0.15rem;
  padding-right: 0.15rem;
}
.phone-wrap .iti__arrow {
  margin-left: 0.1rem;
  border-width: 3px 3px 0;
  border-top-color: #999;
}
.lead-phone-wrap,
.optin-phone-wrap {
  overflow: visible;
}
.lead-phone-wrap {
  border: 1.5px solid #e2e2e2;
  border-radius: 14px;
  background: #fff;
  transition: border-color .15s ease, box-shadow .15s ease, background .15s ease;
}
.lead-phone-wrap:focus-within {
  border-color: var(--red);
  background: #fffcfc;
  box-shadow: 0 0 0 4px rgba(247, 61, 61, 0.1);
}
#leadGate .iti--container,
body .iti--container {
  z-index: 100;
}
#leadGate .iti__dropdown-content,
body .iti__dropdown-content {
  border-radius: 12px;
  border: 1px solid #e8e8e8;
  box-shadow: 0 14px 36px rgba(0, 0, 0, 0.18);
  overflow: hidden;
  margin-top: 4px;
  font-family: var(--font);
  max-height: 220px;
}
#leadGate .iti__search-input,
body .iti__search-input {
  padding: 0.6rem 0.8rem;
  border: 0;
  border-bottom: 1px solid #eee;
  font-family: var(--font);
  font-size: 0.88rem;
}
#leadGate .iti__country,
body .iti__country {
  padding: 0.5rem 0.8rem;
  font-size: 0.86rem;
}
#leadGate .iti__country.iti__highlight,
body .iti__country.iti__highlight {
  background: #fff5f5;
}
#leadGate .iti__country-name,
body .iti__country-name {
  color: #333;
  margin-right: 0.35rem;
}
#leadGate .iti__dial-code,
body .iti__dial-code {
  color: #888;
  font-weight: 600;
}
.lead-field-phone.is-invalid .lead-phone-wrap,
.optin-field-phone.is-invalid .optin-phone-wrap {
  border-color: #e5484d;
  box-shadow: 0 0 0 4px rgba(229, 72, 77, 0.12);
}
.lead-phone-hint {
  margin: 0.35rem 0 0;
  font-size: 0.68rem;
  color: #999;
  line-height: 1.4;
}
.lead-field-phone .lead-phone-error {
  margin: 0.35rem 0 0;
  font-size: 0.72rem;
  font-weight: 600;
  color: #e5484d;
  display: none;
}
.lead-field-phone.is-invalid .lead-phone-error { display: block; }

.lead-slot {
  margin: 0 0 1rem;
  text-align: left;
}
.lead-slot-head {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 0.5rem;
  margin-bottom: 0.45rem;
  font-size: 0.75rem;
  font-weight: 700;
  color: #444;
}
.lead-slot-head em {
  font-style: normal;
  color: var(--red);
  font-size: 0.7rem;
}
.lead-slot-option {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 0.7rem;
  padding: 0.85rem 0.9rem;
  border-radius: 14px;
  border: 1.5px solid #ffd0d0;
  background: linear-gradient(135deg, #fff8f8, #fff);
  cursor: pointer;
  position: relative;
}
.lead-slot-option input { position: absolute; opacity: 0; pointer-events: none; }
.lead-slot-dot {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  border: 2px solid var(--red);
  box-shadow: inset 0 0 0 3px #fff;
  background: var(--red);
}
.lead-slot-text { display: grid; gap: 0.12rem; min-width: 0; }
.lead-slot-text strong {
  font-size: 0.88rem;
  color: #111;
  font-weight: 800;
}
.lead-slot-text small {
  font-size: 0.72rem;
  color: #777;
}
.lead-slot-tag {
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #fff;
  background: var(--red);
  padding: 0.28rem 0.45rem;
  border-radius: 6px;
  white-space: nowrap;
}

.lead-cta {
  width: 100%;
  border: 0;
  cursor: pointer;
  border-radius: 14px;
  padding: 1.15rem 1.15rem 1.05rem;
  background: linear-gradient(127deg, var(--red2) 0%, var(--red3) 55%, #c91f24 100%);
  color: #fff;
  box-shadow:
    0 14px 34px rgba(239, 44, 44, 0.42),
    0 1px 0 rgba(255, 255, 255, 0.25) inset;
  display: grid;
  gap: 0.2rem;
  text-align: center;
  transition: transform .15s ease, filter .15s ease;
  position: relative;
  overflow: hidden;
}
.lead-cta::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent 30%, rgba(255,255,255,.22) 50%, transparent 70%);
  transform: translateX(-120%);
  animation: ctaShine 2.8s ease-in-out infinite;
}
@keyframes ctaShine {
  0%, 55% { transform: translateX(-120%); }
  80%, 100% { transform: translateX(120%); }
}
.lead-cta:hover { filter: brightness(1.05); transform: translateY(-1px); }
.lead-cta:disabled { opacity: 0.85; cursor: wait; transform: none; }
.lead-cta-main {
  position: relative;
  z-index: 1;
  font-size: 1.05rem;
  font-weight: 900;
  letter-spacing: 0.01em;
}
.lead-cta-sub {
  position: relative;
  z-index: 1;
  font-size: 0.72rem;
  font-weight: 600;
  opacity: 0.9;
}

.lead-trust {
  list-style: none;
  margin: 1.1rem 0 0;
  padding: 0.75rem 0 0;
  border-top: 1px solid #efefef;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.35rem;
}
.lead-trust li {
  position: relative;
  font-size: 0.68rem;
  font-weight: 700;
  color: #777;
  padding-left: 0.95rem;
  text-align: left;
}
.lead-trust li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--red);
  font-weight: 800;
}

@media (max-width: 920px) {
  .hero-grid, .host, .reveal { grid-template-columns: 1fr; }
  .hero { padding-top: 1.35rem; }
  .optin-card { position: static; }
  .comm-track img { height: 260px; }
  .host-media { max-width: 320px; margin: 0 auto; }
  .video-card video { aspect-ratio: 16/9; }
  .reveal-photos {
    min-height: 280px;
    max-width: 420px;
    margin: 0.5rem auto 1rem;
  }
  .btn-main.btn-stack { width: 100%; }
  .bekannt-grid img { height: 36px; }
  .steps-stack { grid-template-columns: 1fr; }
}

@media (max-width: 520px) {
  .countdown { gap: 0.45rem; }
  .countdown > div { padding: 0.7rem 0.2rem; }
  .btn-main { width: 100%; }
  .comm-track img { height: 220px; }
  .hero-intro h1 { font-size: 2.35rem; }
  .bekannt-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.9rem 0.6rem;
  }
  .bekannt-grid img { height: 40px; }
  .proof-stack { grid-template-columns: 1fr; max-width: 420px; margin-left: auto; margin-right: auto; }
  .steps { grid-template-columns: 1fr; }
  .lead-card { padding: 1.55rem 1.35rem 1.4rem; border-radius: 20px; }
  .lead-top { margin-right: 2.2rem; }
  .lead-brand { font-size: 0.72rem; }
  .gespr-card { padding: 1.35rem 1.1rem 1.2rem; }
  .gespr-actions { grid-template-columns: 42px 1fr; }
}

/* Gespräch / Bewerbung */
.gespr-page {
  min-height: 100dvh;
  background: #111;
  color: var(--text);
}
.gespr-shell {
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 1.5rem 0.85rem 1.25rem;
  gap: 1.25rem;
}
.gespr-card {
  width: min(560px, 100%);
  background: #fff;
  border-radius: 4px;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.35);
  overflow: hidden;
}
.gespr-progress {
  height: 4px;
  background: rgba(247, 61, 61, 0.15);
}
.gespr-progress span {
  display: block;
  height: 100%;
  width: 88%;
  background: linear-gradient(90deg, var(--red), var(--red2));
}
.gespr-form {
  padding: 1.65rem 1.55rem 1.45rem;
}
.gespr-kicker {
  margin: 0 0 0.85rem;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--red);
}
.gespr-title {
  margin: 0 0 0.65rem;
  font-size: clamp(1.35rem, 4.5vw, 1.75rem);
  font-weight: 800;
  line-height: 1.25;
  letter-spacing: -0.02em;
  color: #111;
}
.gespr-req {
  color: var(--red);
}
.gespr-lead {
  margin: 0 0 1.15rem;
  color: #444;
  font-size: 0.95rem;
  line-height: 1.55;
}
.gespr-field textarea {
  width: 100%;
  min-height: 140px;
  padding: 0.15rem 0 0.65rem;
  border: 0;
  border-bottom: 2px solid rgba(247, 61, 61, 0.35);
  border-radius: 0;
  background: transparent;
  color: #111;
  font-family: inherit;
  font-size: 1rem;
  line-height: 1.55;
  resize: vertical;
  transition: border-color 0.18s ease;
}
.gespr-field textarea::placeholder {
  color: rgba(247, 61, 61, 0.45);
}
.gespr-field textarea:focus {
  outline: none;
  border-bottom-color: var(--red);
}
.gespr-check {
  display: grid;
  grid-template-columns: 22px 1fr;
  gap: 0.75rem;
  align-items: start;
  margin-top: 1.35rem;
  cursor: pointer;
  user-select: none;
}
.gespr-check input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}
.gespr-check-box {
  width: 20px;
  height: 20px;
  margin-top: 0.1rem;
  border: 2px solid #bbb;
  border-radius: 3px;
  background: #fff;
  transition: border-color 0.15s ease, background 0.15s ease, box-shadow 0.15s ease;
}
.gespr-check.is-checked .gespr-check-box,
.gespr-check input:focus-visible + .gespr-check-box {
  border-color: var(--red);
  box-shadow: 0 0 0 3px rgba(247, 61, 61, 0.15);
}
.gespr-check.is-checked .gespr-check-box {
  background: var(--red);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 10'%3E%3Cpath d='M1 5.2 4.2 8.4 11 1.4' fill='none' stroke='%23fff' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 11px 9px;
}
.gespr-check-text {
  color: #222;
  font-size: 0.92rem;
  line-height: 1.45;
  font-weight: 600;
}
.gespr-error {
  margin: 0.85rem 0 0;
  color: var(--red);
  font-size: 0.86rem;
  font-weight: 600;
}
.gespr-actions {
  display: grid;
  grid-template-columns: 46px 1fr;
  gap: 0.65rem;
  align-items: center;
  margin-top: 1.35rem;
}
.gespr-back {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border-radius: 999px;
  background: rgba(247, 61, 61, 0.12);
  color: var(--red);
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1;
  transition: background 0.15s ease;
}
.gespr-back:hover { background: rgba(247, 61, 61, 0.2); }
.gespr-submit {
  width: 100%;
  border-radius: 999px;
  padding: 0.85rem 1.2rem;
}
.gespr-submit:disabled {
  opacity: 0.45;
  cursor: not-allowed;
  transform: none;
  filter: none;
}
.gespr-success {
  padding: 2rem 1.55rem 1.75rem;
  text-align: center;
}
.gespr-success-icon {
  width: 52px;
  height: 52px;
  margin: 0 auto 1rem;
  border-radius: 999px;
  display: grid;
  place-items: center;
  background: rgba(247, 61, 61, 0.12);
  color: var(--red);
}
.gespr-success-icon svg {
  width: 28px;
  height: 28px;
}
.gespr-success h2 {
  margin: 0 0 0.45rem;
  font-size: 1.45rem;
}
.gespr-success p {
  margin: 0 0 1.2rem;
  color: #555;
}
.gespr-footer {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.45rem 0.65rem;
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.78rem;
}
.gespr-footer a:hover { color: #fff; }

@media (max-width: 520px) {
  .gespr-form { padding: 1.35rem 1.1rem 1.2rem; }
  .lead-live { font-size: 0.62rem; padding: 0.28rem 0.55rem; }
  .lead-trust { grid-template-columns: 1fr; gap: 0.45rem; }
  .lead-trust li { text-align: center; padding-left: 0; padding-top: 0; }
  .lead-trust li::before { position: static; margin-right: 0.25rem; }
}
