/* ===== CSS Vars (Light first) =========================================== */
:root{
  /* Palette */
  --bg: #ffffff;
  --surface: #f7f8fa;
  --surface-border: #e9edf5;
  --text: #1a1a1a;
  --text-muted: #5a6475;

  /* Dark tokens */
  --bg-dark: #0f141d;          /* alt: #0f1115 */
  --surface-dark: #151923;
  --surface-border-dark: #222838;
  --text-dark: #e0e0e0;
  --text-muted-dark: #b9c2d3;

  /* Brand */
  --accent-a: #ff5c5c;
  --accent-b: #ff4fd8;         /* alt: #7b2fff */
  --success: #10b981;

  /* Radii & shadows */
  --radius: 14px;
  --shadow: 0 10px 24px rgba(0,0,0,.12);

  /* Layout */
  --container: 1200px;
  --grid-gap: 24px;
  --pad: 20px;

  /* Background effects */
  --grid-color: rgba(0,0,0,.04);
  --radial: rgba(255,79,216,.10);
}

/* Theme modifiers */
.theme-dark{
  --bg: var(--bg-dark);
  --surface: var(--surface-dark);
  --surface-border: var(--surface-border-dark);
  --text: var(--text-dark);
  --text-muted: var(--text-muted-dark);
  --grid-color: rgba(255,255,255,.06);
  --radial: rgba(255,79,216,.16);
}
@media (prefers-color-scheme: dark){
  .theme-auto{
    --bg: var(--bg-dark);
    --surface: var(--surface-dark);
    --surface-border: var(--surface-border-dark);
    --text: var(--text-dark);
    --text-muted: var(--text-muted-dark);
    --grid-color: rgba(255,255,255,.06);
    --radial: rgba(255,79,216,.16);
  }
}

/* ===== Base / Layout ==================================================== */
*{ box-sizing: border-box }
html,body{ height:100% }
body{
  margin:0;
  display:flex; flex-direction:column;    /* Sticky footer layout */
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.45;
  letter-spacing: .2px;
}
main{ flex:1 }
.container{
  max-width: var(--container);
  padding: 0 var(--pad);
  margin: 0 auto;
}

/* ===== Subtle tech background ========================================== */
.bg-grid{
  position: fixed; inset:0; z-index:-2;
  background:
    linear-gradient(var(--grid-color) 1px, transparent 1px) 0 0 / 28px 28px,
    linear-gradient(90deg, var(--grid-color) 1px, transparent 1px) 0 0 / 28px 28px;
  pointer-events: none;
}
.bg-radial{
  position: fixed; inset:0; z-index:-1;
  background:
    radial-gradient(600px 400px at 70% 20%, var(--radial), transparent 60%),
    radial-gradient(800px 600px at 10% 80%, rgba(255,92,92,.10), transparent 60%);
  pointer-events: none;
}

/* ===== Hero ============================================================ */
.hero{ padding: 48px 0 24px; }
.eyebrow{
  font-variant: all-small-caps;
  letter-spacing: .12em;
  color: var(--text-muted);
  margin: 0 0 8px;
}
.h1{
  margin: 0 0 8px;
  font-weight: 800;
  font-size: clamp(28px, 4vw, 44px);
  line-height: 1.08;
  letter-spacing: -0.02em;
}
.sub{ color: var(--text-muted); margin: 0 }

/* ===== Controls / Toggles ============================================== */
.controls{ display:flex; gap:12px; align-items:center; }
.theme-btn, .toggle-btn{
  display:inline-flex; align-items:center; gap:8px;
  border: 1px solid var(--surface-border);
  background: var(--surface);
  color: var(--text);
  border-radius: 999px;
  padding: 8px 12px;
  box-shadow: var(--shadow);
}
.theme-btn svg{ opacity:.8 }
.billing-toggle{ display:flex; gap:8px; background: transparent }
.toggle-btn.active{
  border: 1px solid transparent;
  background-image:
    linear-gradient(var(--surface), var(--surface)),
    linear-gradient(135deg, var(--accent-a), var(--accent-b));
  background-origin: border-box;
  background-clip: padding-box, border-box;
}
.save-pill{
  display:inline-block; font-size:.85em; color: var(--text);
  background: rgba(16,185,129,.12); border: 1px solid rgba(16,185,129,.35);
  padding:.1em .5em; border-radius:999px; margin-left:4px;
}

/* ===== Pricing Grid ==================================================== */
.pricing-grid{
  display:grid;
  grid-template-columns: repeat(3, minmax(0,1fr));
  gap: var(--grid-gap);
  padding: 24px 0 8px;
}
@media (max-width: 960px){
  .pricing-grid{ grid-template-columns: 1fr; }
}

.card{
  position: relative;
  background: var(--surface);
  border: 1px solid var(--surface-border);
  border-radius: var(--radius);
  box-shadow: 0 10px 24px rgba(0,0,0,.08);
  padding: 22px;
  display:flex; flex-direction:column; gap:16px;
  transition: box-shadow .22s ease, transform .22s ease;
}
.card .badge{
  position:absolute; top:12px; right:12px;
  font-size: 12px; letter-spacing:.04em;
  border-radius:999px; padding:6px 10px;
  color:#fff;
  background: linear-gradient(135deg, var(--accent-a), var(--accent-b));
  box-shadow: 0 10px 24px rgba(0,0,0,.3);
}
.card.featured{
  background:
    linear-gradient(var(--surface), var(--surface)) padding-box,
    linear-gradient(135deg, var(--accent-a), var(--accent-b)) border-box;
  border: 1px solid transparent;
}

.card-head{ display:flex; flex-direction:column; gap:6px; }
.plan-icon{
  width: 40px; height: 40px; display:grid; place-items:center;
  border-radius:12px; border:1px solid var(--surface-border);
}
.plan-icon svg{ width:22px; height:22px; color: var(--text); opacity:.9 }
.plan{ margin:0; font-size:20px; font-weight:700; letter-spacing:-.01em }
.plan-note{ margin:0; color: var(--text-muted); font-size:14px }

.price{ display:flex; align-items:baseline; gap:6px; }
.price-value{ font-size:34px; font-weight:800; letter-spacing:-.02em }
.price-currency{ font-weight:700 }
.price-period{ color: var(--text-muted) }

.features{ list-style:none; padding:0; margin:8px 0 0; display:flex; flex-direction:column; gap:10px; }
.features li{ display:flex; align-items:center; gap:10px; }
.muted{ color: var(--text-muted); }


/* CTA – vereinheitlicht (wie Main) */
.card .cta{
  display:inline-flex; align-items:center; justify-content:center;
  margin-top:auto;
  border-radius: 999px;
  padding: 12px 16px;
  border: 0;
  color: #fff;
  font-weight: 700;
  background: linear-gradient(135deg, var(--accent-a), var(--accent-b));
  box-shadow: 0 10px 24px rgba(0,0,0,.18);
  transition: transform .18s ease, box-shadow .18s ease, opacity .18s ease;
}
.card .cta:hover{
  transform: translateY(-1px);
  box-shadow: 0 14px 30px rgba(0,0,0,.22);
}

/* Selectable/Hover/Fokus konsistent */
.card.selectable::before{
  content:""; position:absolute; inset:-1px; border-radius:var(--radius); padding:1px;
  background: linear-gradient(135deg, var(--accent-a), var(--accent-b));
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor; mask-composite: exclude;
  opacity:0; transition: opacity .28s ease; pointer-events:none;
}
.card.selectable:hover::before{ opacity:1; }
.card.selectable:hover{ transform: translateY(-1px); box-shadow: 0 10px 28px rgba(0,0,0,.12); }
.card.selectable.selected{
  box-shadow: 0 0 0 2px rgba(255,79,216,.20), 0 10px 26px rgba(0,0,0,.10);
}
.card.selectable.selected::before{ opacity:0; }
.card.selectable:focus{ outline:none; }
.card.selectable:focus-visible{
  box-shadow: 0 0 0 2px rgba(255,79,216,.30), 0 10px 24px rgba(0,0,0,.12);
}

/* ===== Trust list ====================================================== */
.trust{ padding: 18px 0 48px; }
.trust ul{
  display:flex; flex-wrap:wrap; gap:12px;
  list-style:none; margin:0; padding:0;
}
.trust li{
  display:flex; align-items:center; gap:8px;
  padding:10px 12px; border-radius:999px;

}
.trust .dot{ width:8px; height:8px; border-radius:999px; background: var(--success); }

.info{
  display: flex;
  justify-content: center;
  text-align: center;
  margin: 2rem auto;     /* zentriert im Flow */
  max-width: 800px; 
  padding: 18px 0 48px; }
.info ul{
  display:flex; flex-wrap:wrap; gap:12px;
  list-style:none; margin:0; padding:0;
}
.info li{
  display:flex; align-items:center; gap:8px;
  padding:10px 12px; border-radius:999px;
  background: var(--surface); border:1px solid var(--surface-border);
  box-shadow: var(--shadow); color: var(--text);
}
.info .dot{ width:8px; height:8px; border-radius:999px; background: var(--success); }

/* ===== Brand pill (abstract placeholder) ============================== */
.brand-pill{
  width: 140px; height: 36px; border-radius:999px;
  background: linear-gradient(135deg, var(--accent-a), var(--accent-b));
  box-shadow: 0 10px 24px rgba(0,0,0,.25);
}

/* ===== Utilities ======================================================= */
.reveal { animation: fadeUp .35s ease both }
@keyframes fadeUp { from { opacity:0; transform: translateY(6px) } to { opacity:1; transform:none } }
.brand-logo{ width:140px; height:36px; object-fit:contain; border-radius:10px; box-shadow: 0 10px 24px rgba(0,0,0,.25); }
.ok, .no { font-weight:700; display:inline-block; line-height:1; }
.ok { color:#10b981; }
.no { color:#b9c2d3; opacity:.9; }
.icon-sm { font-size:.9em; }
.icon-lg { font-size:1.2em; }

/* ===== FOOTER (Main 1:1) =============================================== */
.site-footer{
  margin-top:32px;
  padding:24px var(--pad,16px) 40px;
  display:grid;
  grid-template-columns: 1fr auto;
  gap:12px 16px;
  align-items:center;
  color: var(--text, #e0e0e0);
  background: transparent;
}
.site-footer p{ margin:0; color: var(--text-muted, #b9c2d3); }
.site-footer .footer-links a{
  color: var(--text, #e0e0e0);
  text-decoration: none;
  border-bottom: 1px solid transparent;
}
.site-footer .footer-links a:hover{ border-bottom-color: currentColor; }

.site-footer .footer-social{
  display:flex; gap:12px; justify-self:end;
}
.site-footer .footer-social a{
  width:36px; height:36px; display:grid; place-items:center;
  border-radius:10px;
  background: var(--surface, #151923);
  border: 1px solid var(--surface-border, #222838);
  box-shadow: var(--shadow, 0 10px 24px rgba(0,0,0,.18));
  transition: transform .12s ease, box-shadow .12s ease;
  color: var(--text, #e0e0e0);
}
.site-footer .footer-social a:hover{
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(0,0,0,.22);
}
.site-footer .footer-social i{
  background: linear-gradient(135deg, var(--accent-a, #ff5c5c), var(--accent-b, #ff4fd8));
  -webkit-background-clip: text; background-clip: text; color: transparent;
  font-size:18px;
}

/* Light mode Anpassungen für Footer */
body.light .site-footer{ color:#1a1a1a; }
body.light .site-footer p{ color:#5a6475; }
body.light .site-footer .footer-social a{
  background:#ffffff; border-color:#e5e7eb; color:#1a1a1a;
}

/* Responsive Footer */
@media (max-width:520px){
  .site-footer{ grid-template-columns:1fr; gap:10px; }
  .site-footer .footer-social{ justify-self:start; }
}

/* ===== A11y / Motion =================================================== */
@media (prefers-reduced-motion: reduce){
  *, *::before, *::after{ animation:none !important; transition:none !important; }
}

/* ---------- Grundlayout / Sticky Footer ---------- */
* { box-sizing: border-box; }
html, body { height: 100%; scroll-behavior: smooth; }
body {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  font-family: 'Segoe UI', system-ui, -apple-system, Arial, sans-serif;
  background: #0f1115;
  color: #e0e0e0;
  line-height: 1.6;
  margin: 0;
}
main { flex: 1; }
footer { margin-top: auto; }

/* ---------- Footer (Original) ---------- */
footer {
  background: #0f141d;
  text-align: center;
  padding: 1rem;
  font-size: .9rem;
  color: #999;
}

/* Footer-Links & Social (Original) */
footer a[href*="impressum"], footer a[href*="datenschutz"] { color: #ef4444; }

.footer-social {
  margin-top: 12px;
  display: flex;
  justify-content: center;
  gap: 14px;
}
.footer-social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: #1b1b1b;
  color: #fff;
  font-size: 1.1rem;
  transition: transform 0.2s ease, background 0.2s ease;
}
.footer-social a:hover { transform: scale(1.1); }
.footer-social a[href*="wa.me"]:hover    { background: #25D366; }
.footer-social a[href*="instagram"]:hover{ background: #E1306C; }
.footer-social a[href*="twitter"]:hover  { background: #1DA1F2; }

/* Light-Mode Varianten (Original) */
body.light { background:#f5f7fb; color:#0f141d; }
body.light footer { background:#ffffff; color:#555; }
body.light .footer-social a { background: #f3f3f3; color: #111; }

/* Reveal / Fade (Original) */
.reveal { opacity: 0; transform: translateY(18px); transition: opacity .6s ease, transform .6s ease; }
.reveal.is-visible { opacity: 1; transform: none; }

/* === P56 – gezielte Overrides ======================================= */

/* 1) Header-Layout: Logo links, Toggle rechts */
.header{
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding:16px 0;
}
.brand-logo{ margin-right:auto; }
.controls{
  margin-left:auto;
  display:flex;
  align-items:center;
  gap:12px;
}

/* 2) Nur die Monat/Jahr-Buttons größer machen (andere Buttons bleiben) */
.billing-toggle{ display:flex; gap:10px; }
.billing-toggle .toggle-btn{
  padding:10px 16px;          /* größer */
  font-size:15px;             /* größer */
  font-weight:700;
}

/* 3) Empfohlen: permanente Umrandung entfernen (nur noch normale Karte) */
.card.featured{
  background: var(--surface);
  border: 1px solid var(--surface-border);
}

/* 4) Karten nicht mehr „clickbar/selected“, nur Hover betonen */
.card.selectable{ cursor: default; }

/* Selektionszustand neutralisieren (falls JS die Klasse setzt) */
.card.selectable.selected{ box-shadow: none; }
.card.selectable.selected::before{ opacity: 0; }

/* Hover: sanfter Zoom + Border-Fade-in */
.card.selectable{
  transition: transform .25s ease, box-shadow .25s ease;
}
.card.selectable::before{
  transition: opacity .25s ease;
}
.card.selectable:hover{
  transform: translateY(-2px) scale(1.01);
  box-shadow: 0 12px 28px rgba(0,0,0,.12);
}
.card.selectable:hover::before{ opacity: 1; }

/* 5) Subtile Tech-Backdrops aus */
.bg-grid, .bg-radial{ display:none !important; }

/* Header: Logo links, Toggle rechts */
.header{
  display:flex;
  align-items:center;
  justify-content:space-between; /* verteilt Logo / Controls */
  padding:16px 0;
}
.brand-logo{ margin-right:auto; }  /* Logo wirklich nach links drücken */
.controls{ margin-left:auto; display:flex; align-items:center; gap:12px; }

/* Toggle größer */
.billing-toggle .toggle-btn{
  padding:10px 16px;
  font-size:15px;
  font-weight:700;
}

/* Schalter oben rechts über dem Grid fixieren (innerhalb von main .container) */
main .billing-toggle{
  position: sticky;
  top: 10px;         /* Abstand nach oben */
  margin-left: auto; /* an rechten Rand der .container */
  display: inline-flex;
  z-index: 5;
}

/* --- Header: Logo links, nix zentrieren --- */
.header{
  display:flex;
  align-items:center;
  justify-content:flex-start;
  padding:16px 0;
  text-align:left;                 /* falls irgendwo center vererbt */
}
.header .brand-logo{
  display:inline-block;            /* gegen block+auto-margins */
  margin:0;                        /* sicher nicht zentriert */
}

/* --- Pricing-Toolbar: Toggle oben rechts über dem Grid --- */
.pricing-toolbar{
  position: sticky;
  top: 10px;
  z-index: 5;
  margin: 8px 0 12px;
  display:flex;
  justify-content:flex-end;        /* rechts ausrichten */
  align-items:center;
}

/* Toggle nur hier größer machen */
.pricing-toolbar .billing-toggle{ display:inline-flex; gap:10px; }
.pricing-toolbar .toggle-btn{
  padding:10px 16px;
  font-size:15px;
  font-weight:700;
}

/* Falls noch vorhanden: alte Regel neutralisieren, die .billing-toggle ohne Kontext nach rechts schieben wollte */
main .billing-toggle{ margin-left:0; }

/* --- Empfohlen: permanente Umrandung weg (normale Karte) --- */
.card.featured{
  background: var(--surface);
  border: 1px solid var(--surface-border);
}

/* --- Karten NICHT klickbar, nur Hover betonen --- */
.card{ transition: transform .25s ease, box-shadow .25s ease; }
.card:hover{
  transform: translateY(-2px) scale(1.01);
  box-shadow: 0 12px 28px rgba(0,0,0,.12);
}

/* Gradient-Rand nur beim Hover (vorher war's an .selectable gebunden) */
.card::before{
  content:"";
  position:absolute; inset:-1px; border-radius:var(--radius); padding:1px;
  background: linear-gradient(135deg, var(--accent-a), var(--accent-b));
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor; mask-composite: exclude;
  opacity:0; transition: opacity .25s ease; pointer-events:none;
}
.card:hover::before{ opacity:1; }

/* Cursor neutral (nicht wie Button) */
.card{ cursor: default; }

/* Deko aus (wie gewünscht) */
.bg-grid, .bg-radial{ display:none !important; }

/* ===== Page Fade-In (respektiert Reduced Motion) ======================== */
html:not(.p56-no-anim) body {
  opacity: 0;
  animation: p56-fade-in .65s ease forwards;
}
@keyframes p56-fade-in {
  from { opacity: 0; transform: translateY(6px); }
  to   { opacity: 1; transform: none; }
}
@media (prefers-reduced-motion: reduce) {
  html:not(.p56-no-anim) body { animation: none; opacity: 1; transform:none; }
}

/* ===== Hintergrund-Icons =============================================== */
:root{
  --footer-bg: #0f141d;                 /* aus deinem Footer übernommen */
  --icon-stroke: rgba(255,255,255,.20); /* helle Kontur auf dunklem BG */
  --icon-fill: rgba(255,255,255,.06);   /* dezente Füllung */
}
.theme-auto, .theme-dark{
  --icon-stroke: rgba(255,255,255,.20);
  --icon-fill: rgba(255,255,255,.06);
}
.theme-light{
  /* auf hell ggf. etwas dunkler, bleibt subtil */
  --icon-stroke: rgba(0,0,0,.14);
  --icon-fill: rgba(0,0,0,.035);
}

#bg-icons{
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background: transparent; /* <-- statt var(--footer-bg) */
}

/* Icons starten im Zentrum und wandern nach außen */
#bg-icons .p56-ico{
  position: absolute;
  left: 50%;
  top: 50%;
  width: var(--size, 48px);
  height: var(--size, 48px);
  transform-origin: center;
  /* Startzustand: näher am Zentrum (20% der Zielstrecke), leicht verkleinert */
  transform:
    translate(calc(var(--dx, 0px) * .2), calc(var(--dy, 0px) * .2))
    rotate(var(--rot, 0deg)) scale(.92);
  opacity: 0;
  /* finaler Zustand wird per Klasse aktiviert */
}
#bg-icons .p56-ico svg{
  width: 100%; height: 100%;
  display: block;
  stroke: var(--icon-stroke);
  fill: var(--icon-fill);
  stroke-width: 1.4;
  vector-effect: non-scaling-stroke;
  border-radius: 10px; /* minimal weicher */
}

/* Eintrittsanimation (leicht versetzt, weiche Kurve) */
html:not(.p56-no-anim) #bg-icons.ready .p56-ico{
  /* langsamer + noch weicheres Timing */
  animation: p56-ico-out 1.8s cubic-bezier(.2,.7,.2,1) forwards;
  animation-delay: var(--delay, 0ms);
}

@keyframes p56-ico-out{
  to{
    transform:
      translate(var(--dx, 0px), var(--dy, 0px))
      rotate(var(--rot, 0deg)) scale(1);
    opacity: var(--alpha, .28);
  }
}

/* Fallback ohne Animation */
@media (prefers-reduced-motion: reduce){
  #bg-icons .p56-ico{
    transform: translate(var(--dx, 0px), var(--dy, 0px)) rotate(var(--rot, 0deg));
    opacity: var(--alpha, .22);
  }
}

#bg-icons{
  position: fixed; inset: 0; z-index: -1; pointer-events: none;
  background: transparent; /* Body-Schwarz bleibt */
}

/* Kräftig wie die Buttons: Gradient als Stroke+Fill */
#bg-icons .p56-ico svg{
  width: 100%; height: 100%; display: block;
  stroke-width: 2;                 /* etwas kräftiger */
  vector-effect: non-scaling-stroke;
  /* Stroke/Fill werden im JS auf url(#p56G*) gesetzt */
  filter: drop-shadow(0 0 6px rgba(255,79,216,0.25));
  opacity: 1;
}

/* Parallax-Offsets (Default 0) */
#bg-icons .p56-ico{ --px:0px; --py:0px; }

/* Startzustand: aus der Mitte + Parallax-Offset */
#bg-icons .p56-ico{
  transform:
    translate(calc(var(--dx, 0px) * .2 + var(--px)), calc(var(--dy, 0px) * .2 + var(--py)))
    rotate(var(--rot, 0deg)) scale(.92);
}

/* Zielzustand der Eintrittsanimation: Zielposition + Parallax-Offset */
@keyframes p56-ico-out{
  to{
    transform:
      translate(calc(var(--dx, 0px) + var(--px)), calc(var(--dy, 0px) + var(--py)))
      rotate(var(--rot, 0deg)) scale(1);
    opacity: var(--alpha, .28);
  }
}

/* Reduced Motion: Parallax sauber neutralisieren */
@media (prefers-reduced-motion: reduce){
  #bg-icons .p56-ico{ --px:0px; --py:0px; }
}

/* keine Basisfarbe mehr setzen – JS übernimmt */
#bg-icons .p56-ico svg{
  stroke-width:2;
  vector-effect:non-scaling-stroke;
  filter:drop-shadow(0 0 6px rgba(255,79,216,0.25));
  opacity:1;
}

/* Modal */
.p56-modal{position:fixed;inset:0;z-index:1000;display:none}
.p56-modal[aria-hidden="false"]{display:block}
.p56-modal__overlay{position:absolute;inset:0;background:rgba(0,0,0,.5);backdrop-filter:saturate(1.1) blur(2px)}
.p56-modal__dialog{
  position:relative;z-index:1;max-width:540px;margin:8vh auto 0;box-sizing:border-box;
  background:var(--surface,#151923);border:1px solid var(--surface-border,#222838);border-radius:16px;
  box-shadow:0 20px 60px rgba(0,0,0,.35);padding:22px 22px 18px;color:var(--text,#e0e0e0);
  animation:p56-modal-in .22s ease both
}
@keyframes p56-modal-in{from{opacity:0;transform:translateY(10px) scale(.98)}to{opacity:1;transform:none}}

.p56-modal__close{
  position:absolute;top:10px;right:10px;width:36px;height:36px;border-radius:10px;border:1px solid var(--surface-border,#222838);
  background:var(--surface,#151923);color:var(--text,#e0e0e0);font-size:22px;line-height:1;cursor:pointer
}
.p56-modal__title{margin:4px 0 4px;font-size:22px;font-weight:800;letter-spacing:-.01em}
.p56-modal__subtitle{margin:0 0 10px;color:var(--text-muted,#b9c2d3)}
.p56-modal__list{margin:0 0 16px;padding-left:18px;display:grid;gap:8px}
.p56-modal__list li{color:var(--text,#e0e0e0)}
.p56-modal__cta{
  display:inline-flex;align-items:center;justify-content:center;gap:8px;
  padding:12px 16px;border-radius:999px;text-decoration:none;color:#fff;font-weight:700;
  background:linear-gradient(135deg,var(--accent-a,#ff5c5c),var(--accent-b,#ff4fd8));
  box-shadow:0 10px 24px rgba(0,0,0,.18)
}
.p56-scrolllock{overflow:hidden}

.br.titel{
  color: #ff5c5c; /* oder deine Brandfarbe */
}
