/* Minimal, fast salesletter look with BILD-style red headline */
:root{
  --red:#cc1515;
  --dark:#0a0a0a;
  --text:#333;
  --muted:#6b7280;
  --bg:#f5f5f5;
  --card:#ffffff;
  --gold:#dfcb87;
}

*{box-sizing:border-box}
html,body{margin:0;padding:0}
body{
  font-family:'Open Sans',system-ui,-apple-system,Segoe UI,Roboto,Helvetica,Arial,sans-serif;
  color:var(--text);
  background:var(--bg);
  line-height:1.5;
}

.container{max-width:960px;margin:0 auto;padding:24px}
.container.narrow{max-width:760px}
.mt-32{margin-top:32px}
.mb-48{margin-bottom:48px}
.mt-24{margin-top:24px}
.mb-16{margin-bottom:16px}

.free-badge{
  display:inline-block;
  background:#fff;
  color:var(--red);
  border:2px solid var(--red);
  padding:4px 10px;
  font-weight:700;
  border-radius:4px;
  margin:8px 0;
}

.bild-headline{
  font-family:'Anton', Impact, 'Open Sans Condensed', Arial, sans-serif;
  font-size: clamp(28px, 4.5vw, 48px);
  line-height:1.05;
  color:#111;              /* schwarz */
  background:transparent;  /* kein Balken */
  padding:0;
  text-transform:uppercase;
  letter-spacing:.5px;
  margin:8px 0 8px;
}



.subline{
  margin:0 2px 18px;
  color:#111;
  font-weight:600;
}

.steps{
  display:flex; gap:10px; margin:6px 0 18px;
}
.step{
  background:#ffef91;
  border:1px solid #d9c887;
  border-radius:6px;
  padding:10px 12px;
  display:flex; align-items:center; gap:10px;
  flex:1;
  color:#111;
}
.step .bubble{
  width:32px;height:32px;border-radius:50%;background:#dfcb87;
  display:inline-grid;place-items:center;font-weight:700;border:1px solid #b99f4c;
}
.step.active{outline:2px solid #b99f4c}

.card{
  background:var(--card);
  border-radius:10px;
  padding:20px;
  box-shadow:0 10px 20px rgba(0,0,0,.05);
}

.progress{
  height:12px;
  background:#ddca8a;
  border-radius:6px;
  box-shadow: inset 0 1px 0 rgba(0,0,0,.15);
  margin:6px 4px 18px;
  position:relative;
}
.progress-in{
  height:100%;
  background: linear-gradient(#cb1313, #981111);
  border:1px solid #981111;
  border-radius:6px;
  min-width:1%;
  position:relative;
}
.progress-in span{
  position:absolute; right:0; bottom:100%;
  transform:translateY(-6px);
  background:#fff; padding:2px 6px; border-radius:3px;
  font-size:12px; box-shadow:0 2px 6px rgba(0,0,0,.15);
}

.section-head{
  margin:8px 0 10px;
  color:var(--dark);
  font-weight:800;
}

.quiz{display:grid; gap:10px}
.radio{
  display:flex; gap:10px; align-items:flex-start;
  padding:12px; border:1px solid #e5e7eb; border-radius:8px;
  cursor:pointer; background:#fff;
}
.radio:hover{border-color:#cbd5e1}
.radio input{margin-top:4px}
.radio span{font-weight:600; color:#111}

.btn{
  border:none; border-radius:8px;
  padding:12px 16px; font-size:18px; font-weight:800;
  cursor:pointer; transition:.15s transform ease, .15s opacity ease;
}
.btn.primary{
  background: linear-gradient(#cc1515, #981111);
  color:#fff;
  box-shadow:0 8px 16px rgba(204,21,21,.25);
}
.btn:disabled{opacity:.5; cursor:not-allowed}
.btn.block{display:block; width:100%}

.disclaimer{font-size:13px; color:var(--muted); margin-top:12px}

.footer-links{
  text-align:center;
  margin-top:22px;
  color:var(--muted);
}
.footer-links a{color:var(--muted); text-decoration:underline}
.footer-links a:hover{color:#000}

.modal{
  position:fixed; inset:0; display:none;
}
.modal.show{display:block}
.modal-backdrop{
  position:absolute; inset:0; background:rgba(0,0,0,.5);
}
.modal-content{
  position:relative; max-width:520px; margin:48px auto; background:#fff;
  border-radius:12px; padding:22px; box-shadow:0 20px 40px rgba(0,0,0,.25);
}
.modal-title{
  margin:0 0 10px; font-weight:800; color:#111;
}
.modal-close{
  position:absolute; right:10px; top:8px; border:none; background:transparent;
  font-size:28px; cursor:pointer; color:#111;
}

.optin{display:grid; gap:12px}
.field{display:grid; gap:6px}
.field input{
  border:1px solid #e5e7eb; border-radius:8px; padding:12px 12px; font-size:16px;
}
.checkbox{display:flex; gap:10px; align-items:flex-start; font-size:13px; color:#444}
.checkbox input{margin-top:4px}

.tiny{font-size:12px; color:var(--muted)}

.video-wrap{
  background:#000; border-radius:10px; overflow:hidden;
  box-shadow:0 10px 20px rgba(0,0,0,.2);
}

.cta-headline{
  font-family:'Anton', Impact, 'Open Sans Condensed', Arial, sans-serif;
  font-size: clamp(20px, 3.6vw, 34px);
  line-height:1.1;
  margin:18px 0 0;
}
.cta-link{
  color:#fff; background:var(--red); padding:2px 6px; border-radius:4px; text-decoration:none;
}
.cta-link:hover{opacity:.9}

@media (max-width: 640px){
  .modal-content{margin:10px}
}
/* Fix: Card mittig & mit fester Max-Breite auf Desktop */
.card{
  max-width: 760px;      /* oder 720–800 je nach Geschmack */
  margin-left: auto;
  margin-right: auto;
}

/* Safety: Container-Seitenränder sicherstellen */
.container{
  max-width: 960px;
  padding-left: 24px;
  padding-right: 24px;
}

/* Optional: auf sehr breiten Screens etwas luftiger */
@media (min-width: 1280px){
  .card{ max-width: 820px; }
}
/* Danke-Seite: kompletter CTA-Satz als Link, gut lesbar */
.cta-headline{
  margin-top: 16px;
  text-align: center;
}

.cta-link{
  font-family: 'Open Sans', system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  font-weight: 600;
  text-decoration: underline;
  color: #0645AD;        /* klassisches Link-Blau */
}
.cta-link:hover{ color: #0B0080; }
.cta-link.full{ display: inline-block; }
/* Danke-Seite: CTA-Zeile unter dem Video ohne Hintergrund */
.cta-headline,
.cta-headline a {
  background: transparent !important;
}

/* Safety: Falls irgendwo ein globales p- oder link-Background greift */
.video-wrap + .cta-headline {
  background: transparent !important;
}

/* Optional: etwas Abstand nach dem Video */
.video-wrap { margin-top: 12px; }
