/* ==========================================================================
   CSSynergy — Stylesheet
   Nach "CSSynergy Design Guideline" (09/2026): eine Schrift (DM Sans), neutrale Palette
   plus ein Blau (#2563EB), große Radien, weiche Schatten, Hairline-Trenner, keine Verläufe.
   Schriften lokal (DSGVO-konform).
   ========================================================================== */

/* ---------- Lokale Schrift: DM Sans (variabel, 400–800) ---------- */
@font-face { font-family: "DM Sans"; font-style: normal; font-weight: 400 800; font-display: swap;
  src: url("assets/fonts/dm-sans-variable-latin.woff2") format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD; }
@font-face { font-family: "DM Sans"; font-style: normal; font-weight: 400 800; font-display: swap;
  src: url("assets/fonts/dm-sans-variable-latin-ext.woff2") format("woff2");
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF; }

:root {
  /* Guideline-Farben: jede hat genau eine Rolle */
  --primary:      #2563EB;   /* Primäraktionen, CTA-Flächen */
  --primary-dark: #2C64D5;   /* Primäraktionen, Links, Akzente auf dunklem Grund */
  --navy:         #0D1526;   /* dunkle Sektionen, Überschriften, Links, Sekundäraktionen */
  --navy-2:       #1A232F;   /* Karten in dunklen Sektionen */
  --gray-text:    #3E4452;   /* Fließtext auf hell */
  --gray-dark:    #4E5972;   /* Trenner, Rahmen, gedämpfte Labels auf dunkel */
  --gray:         #F2F4F7;   /* getönte Karten, ruhige Flächen */
  --light:        #FDFDFE;   /* Seitenhintergrund */
  --light-blue:   #D5D9E5;   /* Trenner/Rahmen auf hell, Fließtext auf dunkel */
  --white:        #FFFFFF;   /* Karten, die über der Seite schweben */
  --success:      #539D3F;
  --error:        #ED4F51;

  /* Aliase für bestehende Regeln */
  --teal:      var(--primary);
  --teal-dark: #1E4FC9;      /* Hover-Zustand von Primär (kein eigener Farbton, nur Zustand) */
  --emerald:   var(--primary-dark);
  --lime:      var(--primary-dark);
  --lime-dark: var(--primary);
  --ink:       var(--navy);
  --ink-2:     var(--navy-2);
  --text:      var(--navy);
  --muted:     var(--gray-text);
  --bg:        var(--light);
  --surface:   var(--gray);
  --line:      var(--light-blue);
  --line-dark: var(--gray-dark);
  --cream:     var(--light-blue);
  --tint:      var(--gray);

  --ease-out:    cubic-bezier(0.23, 1, 0.32, 1);
  --ease-in-out: cubic-bezier(0.77, 0, 0.175, 1);

  --maxw: 1160px;
  --pad: clamp(20px, 5vw, 48px);
  --r: 28px;         /* Karten, Container: 24–36 px laut Guideline */
  --r-lg: 32px;
  --r-sm: 14px;      /* Eingabefelder, kleine Elemente */
  --r-pill: 999px;
  --r-btn: 12px;     /* Buttons: gerundet, aber keine Pille */
  --shadow: 0 20px 50px rgba(13,21,38,0.06);        /* weich, breit, dezent */
  --shadow-lg: 0 30px 60px rgba(13,21,38,0.10);

  --display: "DM Sans", system-ui, -apple-system, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  --body: "DM Sans", system-ui, -apple-system, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--body);
  color: var(--text);
  background: var(--bg);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
picture { display: contents; }
a { color: inherit; text-decoration: none; }

h1, h2, h3, h4 { font-family: var(--display); line-height: 1.1; letter-spacing: -0.025em; color: var(--text); }
h1 { font-weight: 800; font-size: clamp(2.3rem, 5vw, 3.6rem); letter-spacing: -0.035em; }
h2 { font-weight: 600; font-size: clamp(1.8rem, 3.6vw, 2.6rem); }
h3 { font-weight: 600; font-size: 1.2rem; }
p { color: var(--muted); }
b, strong { color: var(--navy); font-weight: 600; }

.container { max-width: var(--maxw); margin: 0 auto; padding-inline: var(--pad); }
.section { padding-block: clamp(60px, 9vw, 112px); }
.section--surface { background: var(--surface); }
.section--dark { background: var(--navy); color: var(--light-blue); }
.section--dark h2, .section--dark h3 { color: #fff; }
.section--dark p { color: var(--cream); }

/* Eyebrow */
.eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--body); font-weight: 700; text-transform: uppercase;
  letter-spacing: 0.16em; font-size: 0.72rem; color: var(--teal); margin-bottom: 16px;
}
.eyebrow::before { content: ""; width: 24px; height: 2px; background: var(--teal); display: inline-block; }
.section--dark .eyebrow { color: var(--lime); }

/* Highlight-Wort */
.hl { white-space: nowrap; }

/* Section-Head */
.section-head { max-width: 720px; margin-bottom: clamp(32px, 5vw, 56px); }
.section-sub { margin-top: 14px; font-size: 1.05rem; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--body); font-weight: 600; font-size: 0.97rem;
  padding: 13px 22px; border-radius: var(--r-btn); border: 1.5px solid transparent;
  cursor: pointer; transition: transform .16s var(--ease-out), background .16s var(--ease-out), color .16s var(--ease-out), border-color .16s var(--ease-out), box-shadow .16s var(--ease-out);
}
.btn:hover { transform: translateY(-1px); }
.btn:active { transform: translateY(0); }
.btn--accent { background: var(--primary); color: #fff; }
.btn--accent:hover { background: var(--teal-dark); }
.btn--ghost { background: transparent; border-color: var(--navy); color: var(--navy); }
.btn--ghost:hover { background: var(--navy); color: #fff; }
.section--dark .btn--ghost { border-color: var(--light); color: var(--light); }
.section--dark .btn--ghost:hover { background: #fff; color: var(--ink); }
.btn .arrow { font-size: 1em; line-height: 1; flex: none; transition: transform .16s var(--ease-out); }
.btn:hover .arrow { transform: translateX(3px); }
.btn--ghost .arrow { color: var(--teal); }

/* ==========================================================================
   Header
   ========================================================================== */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(253,253,254,0.94); backdrop-filter: saturate(140%) blur(8px);
  border-bottom: 1px solid var(--line);
}
.site-header .container { display: flex; align-items: center; gap: clamp(16px, 2.5vw, 32px); height: 68px; }
.site-header .nav { margin-right: auto; }

/* Logo: Original-SVG (assets/logo.svg hell, assets/logo-dark.svg auf dunkel) */
.logo { display: inline-flex; align-items: center; flex: none; }
.logo img { height: 30px; width: auto; display: block; }

.nav { display: flex; align-items: center; gap: 22px; }
.nav a { font-weight: 500; font-size: 0.95rem; color: #2B3550; position: relative; padding: 6px 0; white-space: nowrap; transition: color .16s var(--ease-out); }
.nav a:hover { color: var(--teal); }
.nav a::after { content: ""; position: absolute; left: 0; bottom: -1px; height: 2px; width: 0; background: var(--teal); transition: width .2s var(--ease-out); }
.nav a:hover::after { width: 100%; }
.nav-phone { display: inline-flex; align-items: center; gap: 8px; font-weight: 500; font-size: 0.93rem; color: var(--text); white-space: nowrap; transition: color .16s var(--ease-out); }
.nav-phone svg { width: 16px; height: 16px; color: var(--teal); flex: none; }
.nav-phone:hover { color: var(--teal); }
.nav-cta { padding: 10px 18px; font-size: 0.93rem; white-space: nowrap; flex: none; }
.nav-toggle { display: none; background: none; border: 0; font-size: 1.5rem; color: var(--text); cursor: pointer; margin-left: auto; }

/* ==========================================================================
   Hero
   ========================================================================== */
.hero { background: var(--bg); padding-block: clamp(48px, 7vw, 92px); }
.hero-grid { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: clamp(32px, 5vw, 64px); align-items: center; }
.hero-copy h1 { margin-bottom: 20px; }
.hero .lead { font-size: 1.12rem; max-width: 38ch; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 28px; }
.hero-trust { list-style: none; display: flex; flex-wrap: wrap; gap: 8px 22px; margin-top: 28px; }
.hero-trust li { font-size: 0.92rem; font-weight: 500; color: var(--text); }
.hero-visual img { border-radius: var(--r-lg); box-shadow: var(--shadow); }

/* ==========================================================================
   Trust-Bar
   ========================================================================== */
.trustbar { border-block: 1px solid var(--line); background: #fff; }
.trust-grid { display: grid; grid-template-columns: repeat(4, 1fr); }
.trust-item { text-align: center; padding: 30px 16px; border-left: 1px solid var(--line); }
.trust-item:first-child { border-left: 0; }
.trust-v { display: block; font-family: var(--display); font-weight: 600; font-size: clamp(1.7rem, 3.2vw, 2.4rem); color: var(--navy); line-height: 1; letter-spacing: -0.02em; }
.trust-l { display: block; margin-top: 8px; font-size: 0.9rem; color: var(--muted); }

/* ==========================================================================
   Two-Col (Bild + Text)
   ========================================================================== */
.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(32px, 5vw, 72px); align-items: center; }
.two-col-media img { border-radius: var(--r); box-shadow: var(--shadow); }
.two-col-copy h2 { margin-bottom: 16px; }
.two-col-copy p { margin-top: 12px; }
.two-col-copy .note {
  margin-top: 20px; padding: 16px 18px; background: var(--surface);
  border-left: 3px solid var(--teal); border-radius: 0 var(--r-sm) var(--r-sm) 0; color: var(--text);
}
.section--surface .two-col-copy .note { background: #fff; }
.two-col--rev .two-col-media { order: 2; }
@media (max-width: 860px) { .two-col--rev .two-col-media { order: 0; } }

/* ==========================================================================
   Cards
   ========================================================================== */
.cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.cards--3 { grid-template-columns: repeat(3, 1fr); }
.card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--r);
  padding: 28px 26px; box-shadow: var(--shadow); transition: transform .24s var(--ease-out), box-shadow .24s var(--ease-out);
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.card-ic {
  display: inline-grid; place-items: center; width: 50px; height: 50px; border-radius: 14px;
  background: var(--tint);
  color: var(--teal); margin-bottom: 16px;
}
.card-ic svg { width: 26px; height: 26px; }
.card-ic { border-radius: 16px; }
.card h3 { margin-bottom: 8px; }
.card p { font-size: 0.97rem; }
.card--dark { background: var(--ink-2); border-color: var(--line-dark); box-shadow: none; }
.card--dark h3 { color: #fff; }
.card--dark p { color: var(--cream); }
.card--dark .card-ic { background: var(--navy); color: var(--primary-dark); }

/* ==========================================================================
   Pricing
   ========================================================================== */
.pricing-group + .pricing-group { margin-top: 40px; }
.pricing-group-head { display: flex; align-items: baseline; gap: 14px; flex-wrap: wrap; margin-bottom: 16px; }
.pricing-group-head h3 { font-size: 1.15rem; }
.pricing-group-head p { font-size: 0.95rem; }
.pricing { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; align-items: stretch; }
.pricing--single { grid-template-columns: minmax(0, 1fr) minmax(0, 2fr); align-items: start; }
.pcard {
  position: relative; background: #fff; border: 1px solid var(--line); border-radius: var(--r);
  padding: 28px 26px; box-shadow: var(--shadow); display: flex; flex-direction: column;
  transition: transform .24s var(--ease-out), box-shadow .24s var(--ease-out);
}
.pcard:hover { transform: translateY(-3px); box-shadow: var(--shadow-lg); }
.pcard--featured { border: 2px solid var(--teal); box-shadow: var(--shadow-lg); }
.pcard-badge {
  position: absolute; top: -13px; left: 26px; background: var(--teal); color: #fff;
  font-size: 0.72rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.06em;
  padding: 5px 12px; border-radius: var(--r-pill);
}
.pcard-tag { font-size: 0.78rem; font-weight: 700; color: var(--teal); text-transform: uppercase; letter-spacing: 0.08em; }
.pcard h3 { font-size: 1.35rem; margin: 6px 0 2px; }
.price { display: flex; align-items: baseline; gap: 8px; margin: 8px 0 4px; flex-wrap: wrap; }
.price .amount { font-family: var(--display); font-weight: 700; font-size: 2.2rem; color: var(--text); line-height: 1; }
.price .per { font-size: 0.88rem; color: var(--muted); }
.pcard-lead { font-size: 0.95rem; margin: 8px 0 16px; }
.pricing-side {
  background: var(--white); border: 1px solid var(--line); border-radius: var(--r); padding: 28px 26px;
  display: flex; flex-direction: column; justify-content: center; gap: 10px;
}
.pricing-side h4 { font-size: 1.1rem; }
.pricing-side p { font-size: 0.95rem; }
.plist { list-style: none; display: grid; gap: 10px; margin-bottom: 24px; }
.plist li { position: relative; padding-left: 28px; font-size: 0.94rem; color: var(--text); }
.plist li::before {
  content: "✓"; position: absolute; left: 0; top: 0; color: #fff; font-weight: 700;
  display: inline-grid; place-items: center; width: 19px; height: 19px; border-radius: 50%;
  background: var(--teal); font-size: 0.68rem;
}
.pcard-cta { margin-top: auto; justify-content: center; }
.pricing-foot { text-align: center; margin-top: 26px; font-size: 0.96rem; }
.pricing-foot a { color: var(--teal); font-weight: 600; text-decoration: underline; text-underline-offset: 3px; }

/* ==========================================================================
   Steps
   ========================================================================== */
.steps { list-style: none; display: grid; gap: 22px; margin: 24px 0 32px; }
.step { display: flex; gap: 18px; align-items: flex-start; }
.step-no {
  flex: none; display: inline-grid; place-items: center; width: 44px; height: 44px; border-radius: 14px;
  background: var(--navy); color: #fff;
  font-family: var(--display); font-weight: 700; font-size: 1.25rem;
}
.step h3 { margin-bottom: 4px; }
.step p { font-size: 0.97rem; }

/* ==========================================================================
   FAQ
   ========================================================================== */
.faq { max-width: 820px; }
.faq details { border-bottom: 1px solid var(--line); padding: 6px 0; }
.faq summary {
  list-style: none; cursor: pointer; padding: 18px 40px 18px 0; position: relative;
  font-family: var(--display); font-weight: 600; font-size: 1.08rem; color: var(--text);
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "+"; position: absolute; right: 4px; top: 50%; transform: translateY(-50%);
  color: var(--teal); font-size: 1.6rem; font-weight: 400; line-height: 1; transition: transform .2s var(--ease-out);
}
.faq details[open] summary::after { content: "−"; }
.faq details p { padding: 0 0 18px; font-size: 0.99rem; }

/* ==========================================================================
   CTA-Band
   ========================================================================== */
.ctaband { text-align: center; padding-block: clamp(56px, 8vw, 96px); }
.ctaband h2 { color: #fff; }
.ctaband p { max-width: 56ch; margin: 14px auto 0; }
.ctaband-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; margin-top: 28px; }
.ctaband-fine { margin-top: 22px; font-size: 0.88rem; color: var(--light-blue); }

/* ==========================================================================
   Warteliste (Formular)
   ========================================================================== */
.register { padding-block: clamp(56px, 8vw, 100px); }
.reg-hl { color: var(--lime); }
.register-single { max-width: 560px; margin-inline: auto; }
.register-head { text-align: center; margin-bottom: 28px; }
.register-head h2 { color: #fff; margin-bottom: 12px; }
.register-head .eyebrow { justify-content: center; }

.register-card { background: var(--white); border-radius: var(--r-lg); box-shadow: var(--shadow-lg); padding: clamp(24px, 3vw, 36px); }
.thanks { text-align: center; padding: clamp(32px, 4vw, 48px) clamp(24px, 3vw, 40px); }
.thanks h1 { font-size: clamp(1.6rem, 3vw, 2.1rem); margin-bottom: 12px; }
.thanks p { color: var(--gray-text); }
.thanks-sub { margin-top: 10px; font-size: 0.95rem; }
.thanks a:not(.btn) { color: var(--primary); text-decoration: underline; text-underline-offset: 3px; }
.thanks-home { margin-top: 22px; }
.reg-form { display: grid; gap: 16px; }
.reg-type { border: 0; padding: 0; }
.reg-type legend { font-weight: 600; color: var(--text); font-size: 0.92rem; margin-bottom: 8px; }
.reg-segs { display: flex; gap: 8px; flex-wrap: wrap; }
.reg-seg { position: relative; flex: 1; }
.reg-seg input { position: absolute; opacity: 0; pointer-events: none; }
.reg-seg span {
  display: block; text-align: center; padding: 11px 14px; border: 1.5px solid var(--line); border-radius: var(--r-sm);
  font-weight: 600; font-size: 0.95rem; color: var(--muted); cursor: pointer;
  transition: border-color .16s var(--ease-out), background .16s var(--ease-out), color .16s var(--ease-out);
}
.reg-seg input:checked + span { border-color: var(--teal); background: var(--tint); color: var(--teal); }
.reg-seg input:focus-visible + span { outline: 2px solid var(--teal); outline-offset: 2px; }

.reg-field { display: grid; gap: 6px; }
.reg-field[hidden] { display: none; }
.section--dark .reg-consent, .section--dark .reg-fine, .section--dark .reg-success p { color: var(--muted); }
.section--dark .reg-success h3 { color: var(--text); }
.reg-field > span { font-size: 0.88rem; font-weight: 600; color: var(--text); }
.reg-field input, .reg-field select {
  font: inherit; padding: 12px 14px; border: 1.5px solid var(--line); border-radius: var(--r-sm);
  background: #fff; color: var(--text); width: 100%; transition: border-color .16s var(--ease-out), box-shadow .16s var(--ease-out);
}
.reg-field input:focus, .reg-field select:focus { outline: none; border-color: var(--teal); box-shadow: 0 0 0 3px var(--tint); }
.reg-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.reg-error { display: none; font-size: 0.88rem; color: var(--error); background: var(--white); border: 1px solid var(--error); border-radius: var(--r-sm); padding: 10px 12px; }
.reg-error.show { display: block; }
.reg-submit[disabled] { opacity: 0.7; cursor: progress; transform: none; }

.reg-consent { display: flex; gap: 10px; align-items: flex-start; font-size: 0.85rem; color: var(--muted); }
.reg-consent input { margin-top: 3px; flex: none; width: 16px; height: 16px; accent-color: var(--teal); }
.reg-consent a { color: var(--teal); text-decoration: underline; }
.reg-submit { justify-content: center; margin-top: 4px; }
.reg-fine { font-size: 0.8rem; color: var(--muted); text-align: center; }

.reg-success { text-align: center; padding: 20px 8px; }
.reg-success-ic { display: inline-grid; place-items: center; width: 56px; height: 56px; border-radius: 50%; background: var(--success); color: #fff; font-size: 1.7rem; font-weight: 700; margin-bottom: 14px; }
.reg-success-ic--warn { background: var(--error); }
.reg-success h3 { font-size: 1.3rem; margin-bottom: 8px; }

/* ==========================================================================
   Rechtsseiten (Impressum, Datenschutz)
   ========================================================================== */
.legal-inner { max-width: 760px; }
.legal h1 { font-size: clamp(2rem, 4vw, 2.8rem); margin-bottom: 12px; }
.legal-lead { font-size: 1.08rem; }
.legal h2 { font-size: 1.2rem; margin: 36px 0 10px; }
.legal p, .legal address, .legal li { font-size: 1rem; color: var(--muted); }
.legal p + p { margin-top: 10px; }
.legal address { font-style: normal; line-height: 1.7; }
.legal ul { padding-left: 22px; display: grid; gap: 6px; margin-top: 8px; }
.legal a { color: var(--teal); text-decoration: underline; text-underline-offset: 3px; }
.legal-note { margin-top: 36px; font-size: 0.9rem; padding-top: 16px; border-top: 1px solid var(--line); }
.waitband-phone a { word-break: break-all; }

/* ==========================================================================
   Warteliste-Band (Startseite, nach Mockup: dunkles Band, Text links, Button + Telefon rechts)
   ========================================================================== */
.waitband { padding-block: clamp(48px, 6vw, 72px); }
.waitband .container { display: grid; grid-template-columns: 1.3fr 1fr; gap: clamp(28px, 5vw, 64px); align-items: center; }
.waitband h2 { color: #fff; font-size: clamp(1.7rem, 3.2vw, 2.4rem); }
.waitband p { margin-top: 12px; max-width: 46ch; }
.waitband-side { display: grid; gap: 18px; justify-items: start; }
.waitband-phone { display: flex; align-items: center; gap: 12px; color: var(--cream); }
.waitband-phone svg { width: 20px; height: 20px; color: var(--lime); flex: none; }
.waitband-phone small { display: block; font-size: 0.85rem; color: var(--light-blue); }
.waitband-phone a { font-weight: 700; color: #fff; font-size: 1.05rem; transition: color .16s var(--ease-out); }
.waitband-phone a:hover { color: var(--lime); }
.section--dark .btn--accent { background: var(--primary-dark); box-shadow: none; }
.section--dark .btn--accent:hover { background: var(--primary); }

/* ==========================================================================
   Footer
   ========================================================================== */
.site-footer { background: var(--navy); color: var(--light-blue); padding-top: clamp(48px, 7vw, 72px); }
.foot-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 32px; padding-bottom: 40px; }
.foot-brand p { color: var(--light-blue); margin-top: 14px; max-width: 36ch; font-size: 0.95rem; }
.foot-col h5 { color: #fff; font-size: 0.82rem; text-transform: uppercase; letter-spacing: 0.06em; margin-bottom: 14px; font-family: var(--body); font-weight: 700; }
.foot-col a { display: block; color: var(--light-blue); font-size: 0.95rem; padding: 5px 0; transition: color .16s var(--ease-out); }
.foot-col a:hover { color: #fff; }
.foot-bottom {
  border-top: 1px solid var(--line-dark); padding-block: 22px;
  display: flex; flex-wrap: wrap; gap: 14px; justify-content: space-between; align-items: center;
  font-size: 0.86rem; color: var(--gray-dark);
}
.cookie-reopen { background: none; border: 0; color: var(--light-blue); font: inherit; cursor: pointer; text-decoration: underline; text-underline-offset: 3px; }
.cookie-reopen:hover { color: #fff; }

/* ==========================================================================
   Cookie-Banner
   ========================================================================== */
.cookie-banner {
  position: fixed; left: 16px; right: 16px; bottom: 16px; z-index: 100; display: none;
  background: #fff; border: 1px solid var(--line); border-radius: var(--r);
  box-shadow: var(--shadow-lg); max-width: 760px; margin: 0 auto;
}
.cb-inner { padding: 22px 24px; }
.cookie-banner h3 { font-size: 1.1rem; margin-bottom: 6px; }
.cookie-banner p { font-size: 0.92rem; }
.cookie-banner a { color: var(--teal); text-decoration: underline; }
.cookie-actions { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 16px; }
.btn--line { background: #fff; border-color: var(--line); color: var(--text); padding: 11px 18px; font-size: 0.9rem; }
.btn--line:hover { border-color: var(--teal); color: var(--teal); }
.cookie-settings { display: none; margin-top: 16px; padding-top: 16px; border-top: 1px solid var(--line); }
.cookie-banner.show-settings .cookie-settings { display: block; }
.cookie-opt { display: flex; gap: 12px; align-items: flex-start; padding: 8px 0; }
.cookie-opt .co-t { display: flex; flex-direction: column; font-size: 0.9rem; }
.cookie-opt .co-t b { color: var(--text); }
.cookie-opt .co-t span { color: var(--muted); font-size: 0.85rem; }

/* ==========================================================================
   Responsive
   ========================================================================== */
@media (max-width: 980px) {
  .cards, .cards--3 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 1180px) {
  .nav-phone { display: none; }
}
@media (max-width: 980px) {
  .pricing { grid-template-columns: 1fr; max-width: 560px; }
  .pricing--single { grid-template-columns: 1fr; }
  .waitband .container { grid-template-columns: 1fr; }
}
@media (max-width: 860px) {
  .nav, .nav-cta { display: none; }
  .nav-toggle { display: block; }
  .nav.open {
    display: flex; flex-direction: column; align-items: flex-start; gap: 4px;
    position: absolute; top: 68px; left: 0; right: 0; background: #fff;
    border-bottom: 1px solid var(--line); padding: 16px var(--pad); margin: 0;
  }
  .nav.open a { width: 100%; padding: 10px 0; }
  .hero-grid { grid-template-columns: 1fr; }
  .hero-visual { order: -1; }
  .two-col { grid-template-columns: 1fr; }
  .reg-row { grid-template-columns: 1fr; }
}
@media (max-width: 620px) {
  .cards, .cards--3 { grid-template-columns: 1fr; }
  .trust-grid { grid-template-columns: repeat(2, 1fr); }
  .trust-item:nth-child(3) { border-left: 0; }
  .trust-item:nth-child(odd) { border-left: 0; }
  .trust-item { border-top: 1px solid var(--line); }
  .trust-item:nth-child(1), .trust-item:nth-child(2) { border-top: 0; }
  .foot-grid { grid-template-columns: 1fr 1fr; }
  .foot-brand { grid-column: 1 / -1; }
}

@media (max-width: 400px) {
  .logo img { height: 26px; }
}


/* ==========================================================================
   Hero-Animation: Auktions-Dashboard (rechts im Hero, ersetzt das Bild)
   Nur der Visual-Teil aus der GPT-Preview, Farben auf Guideline-Tokens gemappt.
   ========================================================================== */
.csy-visual-wrap { position: relative; perspective: 1100px; }
.csy-visual-wrap * { box-sizing: border-box; }
.csy-dashboard {
  position: relative; z-index: 2; overflow: hidden; min-height: 520px; padding: 20px;
  border: 1px solid var(--line); border-radius: var(--r); background: var(--white);
  box-shadow: 0 36px 80px rgba(13,21,38,0.12), 0 10px 24px rgba(13,21,38,0.05);
  transform-style: preserve-3d; transition: transform .18s var(--ease-out);
}
.csy-dashboard-head { position: relative; z-index: 2; display: flex; align-items: center; justify-content: space-between; padding: 2px 3px 17px; border-bottom: 1px solid var(--line); }
.csy-dashboard-title-wrap { display: flex; align-items: center; gap: 10px; }
.csy-dashboard-icon { display: grid; place-items: center; width: 34px; height: 34px; border-radius: 10px; background: var(--gray); color: var(--primary); font-weight: 800; }
.csy-dashboard-title { color: var(--navy); font-size: 13px; font-weight: 700; }
.csy-dashboard-sub { margin-top: 2px; color: var(--gray-text); font-size: 10px; font-weight: 500; }
.csy-live { display: inline-flex; align-items: center; gap: 6px; padding: 6px 9px; border-radius: 999px; background: var(--gray); color: var(--success); font-size: 10px; font-weight: 700; }
.csy-live::before { content: ""; width: 6px; height: 6px; border-radius: 50%; background: var(--success); }

.csy-product-stream { position: relative; display: grid; grid-template-columns: repeat(3, 1fr); gap: 9px; margin-top: 17px; }
.csy-product { position: relative; padding: 11px; border: 1px solid var(--line); border-radius: 13px; background: var(--white); box-shadow: 0 8px 22px rgba(13,21,38,0.045); animation: csyProductFloat 5.5s ease-in-out infinite; }
.csy-product:nth-child(2) { animation-delay: -.9s; }
.csy-product:nth-child(3) { animation-delay: -1.8s; }
@keyframes csyProductFloat { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-4px); } }
.csy-product-top { display: flex; gap: 9px; align-items: center; }
.csy-product-img { position: relative; width: 35px; height: 35px; flex: 0 0 35px; overflow: hidden; border-radius: 9px; background: var(--gray); }
.csy-product-img::before { content: ""; position: absolute; width: 16px; height: 18px; left: 10px; top: 8px; border-radius: 4px 4px 6px 6px; background: var(--primary); transform: rotate(-8deg); }
.csy-product:nth-child(2) .csy-product-img::before { width: 20px; height: 14px; left: 8px; top: 11px; border-radius: 10px 10px 4px 4px; transform: rotate(3deg); }
.csy-product:nth-child(3) .csy-product-img::before { width: 18px; height: 18px; left: 9px; top: 9px; border-radius: 50%; transform: none; }
.csy-product-name { width: 100%; }
.csy-line { height: 5px; border-radius: 999px; background: var(--line); }
.csy-line + .csy-line { margin-top: 5px; }
.csy-line--1 { width: 78%; }
.csy-line--2 { width: 54%; }
.csy-product-price { display: flex; align-items: center; justify-content: space-between; margin-top: 10px; color: var(--gray-text); font-size: 9px; font-weight: 600; }
.csy-product-price strong { color: var(--navy); font-size: 11px; }

.csy-flow { position: relative; height: 49px; }
.csy-flow-line { position: absolute; left: 50%; top: 8px; width: 1px; height: 33px; background: linear-gradient(to bottom, rgba(37,99,235,.05), rgba(37,99,235,.38), rgba(37,99,235,.05)); }
.csy-flow-line::after { content: ""; position: absolute; left: 50%; top: 0; width: 7px; height: 7px; margin-left: -3px; border-radius: 50%; background: var(--primary); box-shadow: 0 0 14px rgba(37,99,235,.45); animation: csyFlowDot 2.2s linear infinite; }
@keyframes csyFlowDot { from { transform: translateY(0); opacity: 0; } 18% { opacity: 1; } 82% { opacity: 1; } to { transform: translateY(31px); opacity: 0; } }

.csy-auction-card { position: relative; z-index: 2; padding: 17px; overflow: hidden; border: 1px solid var(--line); border-radius: 17px; background: var(--white); box-shadow: 0 12px 32px rgba(13,21,38,0.055); }
.csy-auction-head { position: relative; z-index: 2; display: flex; justify-content: space-between; align-items: center; margin-bottom: 13px; }
.csy-auction-name { color: var(--navy); font-size: 12px; font-weight: 700; }
.csy-auction-counter { color: var(--gray-text); font-size: 9px; font-weight: 600; }
.csy-bid-row { position: relative; z-index: 2; display: grid; grid-template-columns: 1fr 40px 1fr; align-items: center; gap: 8px; }
.csy-bid-box { position: relative; padding: 12px 12px 11px; overflow: hidden; border-radius: 12px; background: var(--gray); }
.csy-bid-label { display: block; margin-bottom: 5px; color: var(--gray-text); font-size: 8px; font-weight: 700; text-transform: uppercase; letter-spacing: .07em; }
.csy-bid-value { display: flex; align-items: baseline; gap: 5px; color: var(--navy); font-size: 21px; font-weight: 800; letter-spacing: -.03em; }
.csy-bid-arrow { display: grid; place-items: center; color: var(--gray-text); font-size: 18px; animation: csyArrowPulse 2.2s ease-in-out infinite; }
@keyframes csyArrowPulse { 0%, 100% { transform: translateX(-2px); opacity: .45; } 50% { transform: translateX(2px); opacity: 1; } }
.csy-loss { position: absolute; right: 7px; top: 7px; padding: 4px 6px; border-radius: 6px; background: var(--white); color: var(--error); font-size: 8px; font-weight: 700; animation: csyLossFade 7s ease-in-out infinite; }
@keyframes csyLossFade { 0%, 8% { opacity: 0; transform: translateY(-4px); } 16%, 50% { opacity: 1; transform: translateY(0); } 61%, 100% { opacity: .38; } }

.csy-boost { position: relative; z-index: 2; display: flex; align-items: center; justify-content: space-between; gap: 16px; margin-top: 12px; padding: 15px 16px; overflow: hidden; border-radius: 15px; background: var(--primary); box-shadow: 0 14px 30px rgba(37,99,235,.17); }
.csy-boost::before { content: ""; position: absolute; width: 160px; height: 160px; right: -80px; top: -100px; border-radius: 50%; background: rgba(255,255,255,.09); }
.csy-boost-left { position: relative; z-index: 2; }
.csy-boost-label { margin-bottom: 3px; color: rgba(255,255,255,.69); font-size: 8px; font-weight: 700; text-transform: uppercase; letter-spacing: .08em; }
.csy-boost-name { color: #fff; font-size: 15px; font-weight: 700; }
.csy-boost-calc { position: relative; z-index: 2; display: flex; align-items: center; gap: 8px; color: #fff; font-size: 17px; font-weight: 800; }
.csy-boost-calc span { color: rgba(255,255,255,.58); font-size: 13px; }
.csy-boost-badge { position: relative; z-index: 2; display: flex; align-items: center; justify-content: center; min-width: 61px; height: 37px; padding: 0 10px; border-radius: 10px; background: rgba(255,255,255,.14); border: 1px solid rgba(255,255,255,.18); color: #fff; font-size: 15px; font-weight: 800; animation: csyBoostPulse 3.2s ease-in-out infinite; }
@keyframes csyBoostPulse { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.05); } }

.csy-dashboard-foot { display: flex; align-items: center; justify-content: space-between; margin-top: 14px; color: var(--gray-text); font-size: 9px; font-weight: 500; }
.csy-auction-active { display: flex; align-items: center; gap: 6px; }
.csy-auction-active::before { content: ""; width: 6px; height: 6px; border-radius: 50%; background: var(--success); }

.csy-floating-boost { position: absolute; z-index: 5; right: -24px; top: 92px; min-width: 115px; padding: 12px 15px; border: 1px solid var(--line); border-radius: 15px; background: var(--white); box-shadow: 0 17px 42px rgba(13,21,38,.15); animation: csyFloating 4.1s ease-in-out infinite; }
@keyframes csyFloating { 0%, 100% { transform: translateY(0) rotate(1deg); } 50% { transform: translateY(-8px) rotate(-1deg); } }
.csy-floating-number { color: var(--primary); font-size: 24px; line-height: 1; font-weight: 800; letter-spacing: -.04em; }
.csy-floating-label { margin-top: 4px; color: var(--gray-text); font-size: 9px; font-weight: 600; }

@media (max-width: 1100px) { .csy-floating-boost { right: -8px; } }
@media (max-width: 860px) { .csy-visual-wrap { max-width: 560px; width: 100%; margin: 0 auto; } }
@media (max-width: 600px) {
  .csy-dashboard { min-height: auto; padding: 13px; border-radius: 20px; }
  .csy-floating-boost { right: -4px; top: -25px; transform: scale(.9); }
  .csy-product { padding: 8px; }
  .csy-product-img { width: 29px; height: 29px; flex-basis: 29px; }
  .csy-product-img::before { transform: scale(.82); transform-origin: center; }
  .csy-bid-row { grid-template-columns: 1fr 25px 1fr; }
  .csy-bid-value { font-size: 17px; }
  .csy-boost { padding: 13px; }
  .csy-boost-name { font-size: 13px; }
  .csy-boost-calc { font-size: 14px; }
  .csy-boost-badge { min-width: 53px; font-size: 13px; }
}
@media (max-width: 420px) {
  .csy-product:nth-child(3) { display: none; }
  .csy-product-stream { grid-template-columns: repeat(2, 1fr); }
  .csy-boost-left { display: none; }
}
@media (prefers-reduced-motion: reduce) {
  .csy-visual-wrap *, .csy-visual-wrap *::before, .csy-visual-wrap *::after { animation: none !important; }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  * { transition: none !important; }
}

/* Danke-Seite: heller Rahmen-Button in der weißen Karte auch innerhalb dunkler Sektion */
.section--dark .thanks .btn--ghost { border-color: var(--navy); color: var(--navy); }
.section--dark .thanks .btn--ghost:hover { background: var(--navy); color: #fff; }
