/* =================================================================
   Goo Reviews — Stylesheet
   Palette: Google-Blau #1a73e8 · Grün #34a853 · Stern-Gold #fbbc04
            auf hellem Weiß/Grau-Grund. Schrift: Inter.
   ================================================================= */

:root {
  color-scheme: light;

  --blue:        #1a73e8;   /* Primärakzent */
  --blue-deep:   #1557b0;   /* Hover / Press */
  --blue-dark:   #0b3d91;   /* Tiefes Blau (dunkle Sektion) */
  --blue-soft:   #e8f0fe;   /* Heller Blau-Tint (Flächen) */
  --blue-text:   #1558b0;   /* Blau für Text auf Hell (Kontrast AA) */

  --green:       #34a853;   /* Positiv-Signal (Flächen, Haken, Icons) */
  --green-deep:  #1e8e3e;
  --green-badge: #177d35;   /* dunkler: weißer Badge-Text erreicht damit AA (5,2:1) */
  --green-soft:  #e6f4ea;
  --green-text:  #137333;

  --star:        #fbbc04;   /* Sterne */
  --star-deep:   #f09300;

  --ink:         #202124;   /* Haupttext */
  --ink-2:       #0d2f66;   /* Dunkles Blau (Karten / Bänder) */
  --ink-3:       #1c4b96;   /* Linien auf Dunkel */
  --paper:       #f8f9fa;   /* Kühles Hellgrau */
  --white:       #ffffff;
  --slate:       #5f6368;
  --slate-2:     #6e7378;   /* nicht heller wählen: sonst reißt kleiner Text die AA-Grenze (4,5:1) */
  --border:      #dadce0;
  --border-2:    #c6cad0;

  --ff: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;

  --container: 1360px;
  --gutter: clamp(20px, 4vw, 48px);
  --section: clamp(60px, 8vw, 112px);

  --r-sm: 10px;
  --r:    16px;
  --r-lg: 26px;
  --r-pill: 999px;

  --shadow-sm: 0 1px 2px rgba(32,33,36,.08);
  --shadow:    0 10px 34px rgba(32,33,36,.08);
  --shadow-lg: 0 26px 60px rgba(11,61,145,.14);
  --shadow-blue: 0 12px 32px rgba(26,115,232,.28);
}

*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

body {
  font-family: var(--ff);
  color: var(--ink);
  background: var(--white);
  line-height: 1.62;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: clip;
}

img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; }
ul, ol { list-style: none; padding: 0; }

.container { width: 100%; max-width: var(--container); margin-inline: auto; padding-inline: var(--gutter); }
.skip-link { position: absolute; left: -9999px; top: 0; z-index: 200; background: var(--ink-2); color: #fff; padding: 12px 18px; border-radius: 0 0 var(--r-sm) 0; }
.skip-link:focus { left: 0; }
:focus-visible { outline: 3px solid var(--blue); outline-offset: 2px; border-radius: 4px; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0; }

/* ---------- Typografie ---------- */
/* Deutsche Komposita werden lang — Überschriften dürfen umbrechen. */
h1, h2, h3, h4 { line-height: 1.14; font-weight: 700; letter-spacing: -0.022em; overflow-wrap: break-word; }
h1 { font-size: clamp(2.1rem, 4.4vw, 3.4rem); font-weight: 800; letter-spacing: -0.035em; }
h2 { font-size: clamp(1.7rem, 3.2vw, 2.5rem); letter-spacing: -0.03em; }
h3 { font-size: 1.15rem; }
p  { text-wrap: pretty; }
.hl { color: var(--blue); }

.eyebrow { display: inline-flex; align-items: center; gap: 9px; font-size: .82rem; font-weight: 600; color: var(--ink); background: var(--white); border: 1px solid var(--border); border-radius: var(--r-pill); padding: 7px 15px 7px 13px; box-shadow: var(--shadow-sm); }
.eyebrow .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--green); box-shadow: 0 0 0 4px rgba(52,168,83,.18); }

.kicker { font-size: .78rem; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; color: var(--blue-text); margin-bottom: 14px; }
.kicker.light { color: #8ab4f8; }

.microcopy { font-size: .85rem; color: var(--slate-2); }
.microcopy.light { color: rgba(255,255,255,.66); }

/* ---------- Sterne ---------- */
.stars { display: inline-flex; align-items: center; gap: 2px; line-height: 0; }
.stars svg { width: 18px; height: 18px; fill: var(--star); }
.stars--lg svg { width: 24px; height: 24px; }
.stars--sm svg { width: 14px; height: 14px; }
.stars .star-off { fill: var(--border); }

/* ---------- Buttons ---------- */
.btn { --pad-y: 13px; --pad-x: 22px; display: inline-flex; align-items: center; justify-content: center; gap: 9px; padding: var(--pad-y) var(--pad-x); border: 1px solid transparent; border-radius: var(--r-pill); font-weight: 600; font-size: .98rem; line-height: 1; transition: transform .18s ease, box-shadow .25s ease, background .2s ease, border-color .2s ease; white-space: nowrap; }
.btn svg { transition: transform .2s ease; }
.btn-primary { background: var(--blue); color: #fff; box-shadow: var(--shadow-blue); }
.btn-primary:hover { background: var(--blue-deep); transform: translateY(-2px); box-shadow: 0 18px 44px rgba(26,115,232,.38); }
.btn-primary:hover svg { transform: translateX(3px); }
.btn-primary:active { transform: translateY(0); }
.btn-ghost { background: transparent; color: var(--ink); border-color: var(--border-2); }
.btn-ghost:hover { background: var(--white); border-color: var(--ink); transform: translateY(-2px); box-shadow: var(--shadow-sm); }
.btn-lg { --pad-y: 17px; --pad-x: 30px; font-size: 1.05rem; }
.btn-sm { --pad-y: 10px; --pad-x: 18px; font-size: .9rem; }
/* Deutsche CTA-Texte sind lang — auf sehr schmalen Displays umbrechen lassen,
   sonst schiebt „nowrap" die Seite über den Viewport hinaus. */
@media (max-width: 480px) {
  .btn { white-space: normal; text-align: center; }
  .btn-lg { --pad-x: 20px; font-size: 1rem; }
}

/* ---------- Kopfzeile (nur Rechtsseiten) ---------- */
.site-header { position: sticky; top: 0; z-index: 100; background: rgba(255,255,255,.86); backdrop-filter: saturate(180%) blur(14px); border-bottom: 1px solid transparent; transition: border-color .3s, box-shadow .3s; }
.site-header.scrolled { border-color: var(--border); box-shadow: var(--shadow-sm); }
.header-inner { display: flex; align-items: center; justify-content: space-between; height: 70px; }
.brand { display: inline-flex; align-items: center; gap: 10px; font-weight: 800; font-size: 1.18rem; letter-spacing: -0.03em; }
.brand-logo { height: 30px; width: auto; flex: none; }
.brand-name { color: var(--ink); }

/* ---------- Status-Leiste (befristete Aktion) ---------- */
.promo-bar { background: var(--ink-2); color: #fff; text-align: center; font-size: .9rem; padding: 10px 16px; }
.promo-bar[hidden] { display: none; }
.promo-bar strong { color: #fff; font-weight: 700; }

.promo-bar--sale { background: linear-gradient(90deg, #0b2a5b 0%, #0d3f8f 50%, #0b2a5b 100%); padding: 0; }
.promo-inner { display: flex; align-items: center; justify-content: center; gap: 10px 16px; flex-wrap: wrap; padding: 11px var(--gutter); }
.promo-badge { flex: none; background: var(--star); color: #3d2c00; font-size: .68rem; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; padding: 4px 10px; border-radius: var(--r-pill); }
.promo-text { font-size: .92rem; color: rgba(255,255,255,.9); }
.promo-new { color: var(--star); }
.promo-old { color: rgba(255,255,255,.62); text-decoration-thickness: 2px; }
.promo-left { color: var(--star); font-weight: 700; white-space: nowrap; }
.promo-cta { display: inline-flex; align-items: center; gap: 6px; flex: none; background: rgba(255,255,255,.15); border: 1px solid rgba(255,255,255,.34); color: #fff; font-weight: 600; font-size: .85rem; padding: 7px 15px; border-radius: var(--r-pill); transition: background .18s ease, color .18s ease, border-color .18s ease; }
.promo-cta:hover { background: #fff; color: var(--ink-2); border-color: #fff; }
.promo-cta svg { transition: transform .18s ease; }
.promo-cta:hover svg { transform: translateX(2px); }
@media (max-width: 720px) {
  .promo-inner { gap: 8px 10px; padding: 10px var(--gutter); }
  .promo-text { font-size: .85rem; flex: 1 1 100%; }
  .promo-badge { order: -1; }
}

/* =================================================================
   HERO (hell, form-first, zentriert)
   ================================================================= */
.hero { position: relative; padding: clamp(34px, 5vw, 66px) 0 var(--section); overflow: hidden; background: linear-gradient(180deg, #f1f6ff 0%, #f8f9fa 46%, #ffffff 100%); }
.hero-glow { position: absolute; top: -20%; right: -10%; width: 60vw; height: 60vw; max-width: 760px; max-height: 760px; background: radial-gradient(circle, rgba(26,115,232,.16), rgba(26,115,232,0) 62%); z-index: 0; pointer-events: none; }
.hero-inner { max-width: 980px; margin-inline: auto; text-align: center; position: relative; z-index: 1; }
.hero-inner .eyebrow { margin-bottom: 20px; }
/* Kleine Markenzeile: verankert die Marke, ohne dem Formular Aufmerksamkeit zu nehmen. */
/* Block-Level, sonst landet die Zeile neben dem inline-flex Sternen-Pill. */
.hero-brand { display: flex; justify-content: center; align-items: center; gap: 10px; margin: 0 0 22px; font-weight: 800; font-size: 1.12rem; letter-spacing: -0.03em; color: var(--ink); }
.hero-brand img { width: 44px; height: auto; flex: none; }
.hero-intro { color: var(--slate); font-size: 1rem; font-weight: 500; letter-spacing: .01em; margin: 0 0 16px; }
.hero-inner h1 { margin: 0 0 18px; font-size: clamp(2.3rem, 5.2vw, 4.1rem); letter-spacing: -0.042em; color: var(--ink); }
.hero-inner .lede { color: var(--slate); font-size: clamp(1.02rem, 1.6vw, 1.22rem); margin: 0 auto 30px; max-width: 50ch; }
.hero-inner .lede strong { color: var(--ink); font-weight: 600; }
.hero-inner .form-card { text-align: left; max-width: 640px; margin-inline: auto; }
.hero-reassure { margin-top: 14px; font-size: .85rem; color: var(--slate-2); }
.hero-cta { margin-top: 26px; }

/* Sternenband über der Headline */
.hero-rating { display: inline-flex; align-items: center; gap: 10px; margin-bottom: 18px; padding: 8px 16px; background: var(--white); border: 1px solid var(--border); border-radius: var(--r-pill); box-shadow: var(--shadow-sm); }
.hero-rating span { font-size: .88rem; font-weight: 600; color: var(--ink); }
.hero-rating em { font-style: normal; color: var(--slate-2); font-weight: 500; }

/* Karte des Formulars */
.form-card { background: var(--white); color: var(--ink); border: 1px solid var(--border); border-radius: var(--r-lg); box-shadow: var(--shadow-lg); padding: clamp(22px, 2.6vw, 32px); position: relative; }
.form-head { margin-bottom: 18px; }
.form-head h2 { font-size: clamp(1.22rem, 2vw, 1.48rem); letter-spacing: -0.024em; }
.form-head p { color: var(--slate-2); font-size: .9rem; margin-top: 6px; }
.form-progress { margin-bottom: 22px; }
.form-progress-bar { height: 8px; background: var(--blue-soft); border-radius: var(--r-pill); overflow: hidden; }
.form-progress-bar span { display: block; height: 100%; width: 33%; border-radius: var(--r-pill); background: linear-gradient(90deg, var(--blue), var(--blue-deep)); transition: width .45s cubic-bezier(.4,0,.2,1); }
.form-progress-label { margin-top: 9px; font-size: .8rem; font-weight: 600; color: var(--slate-2); }
.hp { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }

.step-pane { border: 0; padding: 0; min-inline-size: 0; }
.step-pane[hidden] { display: none; }
.step-pane.is-active { animation: paneIn .4s ease both; }
@keyframes paneIn { from { opacity: 0; transform: translateX(12px); } to { opacity: 1; transform: none; } }
.step-q { font-size: 1.18rem; font-weight: 700; letter-spacing: -0.024em; margin-bottom: 16px; padding: 0; }
.step-q:focus, .step-q:focus-visible { outline: none; } /* nur Fokusziel für Screenreader */

.choice-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 11px; }
.choice-grid.cols-1 { grid-template-columns: 1fr; }
@media (max-width: 430px) { .choice-grid { grid-template-columns: 1fr; } }
.choice { position: relative; display: block; cursor: pointer; }
.choice input { position: absolute; opacity: 0; inset: 0; cursor: pointer; }
.choice-box { position: relative; display: flex; flex-direction: column; gap: 3px; height: 100%; padding: 14px 16px; border: 1.5px solid var(--border-2); border-radius: var(--r); transition: border-color .18s, background .18s, box-shadow .18s, transform .12s; }
.choice-ico { color: var(--blue); line-height: 0; margin-bottom: 2px; }
.choice-ico svg { width: 26px; height: 26px; }
.choice input:checked + .choice-box .choice-ico { color: var(--blue-deep); }
.choice-title { font-weight: 600; font-size: .98rem; }
.choice-desc { font-weight: 400; font-size: .82rem; color: var(--slate-2); }
.choice-price { display: block; margin-top: 4px; font-weight: 700; color: var(--blue-text); font-size: .9rem; font-variant-numeric: tabular-nums; }
.choice-price s { color: var(--slate-2); font-weight: 500; margin-right: 3px; text-decoration-thickness: 1.5px; }
.choice-tag { position: absolute; top: 10px; right: 10px; z-index: 2; pointer-events: none; background: var(--green-badge); color: #fff; font-size: .64rem; font-weight: 700; padding: 3px 9px; border-radius: var(--r-pill); box-shadow: var(--shadow-sm); }
/* Aktions-Badge: Gold mit dunklem Text (8,4:1) — Weiß auf Gold wäre nicht lesbar. */
.choice-tag--sale { background: var(--star); color: #3d2c00; letter-spacing: .04em; }
.choice:hover .choice-box { border-color: var(--blue); transform: translateY(-1px); }
.choice input:focus-visible + .choice-box { outline: 3px solid var(--blue); outline-offset: 2px; }
.choice input:checked + .choice-box { border-color: var(--blue); background: var(--blue-soft); box-shadow: 0 0 0 1.5px var(--blue), var(--shadow-sm); }

.field { margin-bottom: 16px; }
.field > label { display: block; }
.field-label { display: block; font-weight: 600; font-size: .9rem; margin-bottom: 7px; }
.optional { font-weight: 400; color: var(--slate-2); font-size: .84rem; }
.field input, .field textarea, .field select { width: 100%; padding: 13px 15px; font: inherit; color: var(--ink); background: var(--paper); border: 1.5px solid var(--border-2); border-radius: var(--r); transition: border-color .16s, box-shadow .16s, background .16s; }
.field select { min-height: 50px; appearance: none; background-image: linear-gradient(45deg, transparent 50%, var(--slate-2) 50%), linear-gradient(135deg, var(--slate-2) 50%, transparent 50%); background-position: calc(100% - 20px) 21px, calc(100% - 14px) 21px; background-size: 6px 6px, 6px 6px; background-repeat: no-repeat; padding-right: 42px; }
.custom-select { position: relative; }
.custom-select > select { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0; }
.cs-trigger { display: flex; align-items: center; justify-content: space-between; gap: 12px; width: 100%; min-height: 50px; padding: 12px 14px; border: 1.5px solid var(--border-2); border-radius: var(--r); background: var(--paper); color: var(--ink); font: inherit; text-align: left; cursor: pointer; transition: border-color .16s, box-shadow .16s, background .16s; }
.cs-label { min-width: 0; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.custom-select.is-empty .cs-label { color: var(--slate-2); }
.cs-caret { width: 18px; height: 18px; flex: none; fill: none; stroke: currentColor; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; opacity: .58; transition: transform .16s ease; }
.custom-select.is-open .cs-caret { transform: rotate(180deg); }
.custom-select.is-open .cs-trigger, .cs-trigger:focus-visible { outline: none; border-color: var(--blue); background: var(--white); box-shadow: 0 0 0 4px rgba(26,115,232,.16); }
.custom-select:has(select[aria-invalid="true"]) .cs-trigger { border-color: #d93025; background: #fef7f6; }
.cs-list { position: absolute; top: calc(100% + 8px); left: 0; right: 0; z-index: 40; margin: 0; padding: 6px; list-style: none; background: var(--white); border: 1px solid var(--border-2); border-radius: var(--r); box-shadow: var(--shadow-lg); max-height: min(260px, 48vh); overflow-y: auto; opacity: 0; transform: translateY(-6px); pointer-events: none; transition: opacity .16s ease, transform .16s ease; }
.custom-select.is-open .cs-list { opacity: 1; transform: translateY(0); pointer-events: auto; }
.cs-option { display: flex; align-items: flex-start; flex-direction: column; gap: 6px; padding: 11px 12px; border-radius: 8px; color: var(--ink); font-size: .92rem; cursor: pointer; transition: background .12s ease, color .12s ease; }
.cs-option:hover, .cs-option.is-active { background: var(--paper); }
.cs-option.is-selected { background: var(--blue-soft); color: var(--blue-text); font-weight: 600; }
.cs-option.cs-placeholder { color: var(--slate-2); }
.cs-option-text { min-width: 0; order: 2; }
.cs-tag { order: 1; max-width: 100%; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; padding: 4px 9px; border-radius: var(--r-pill); background: rgba(52,168,83,.14); color: var(--green-text); font-size: .72rem; font-weight: 700; }
.cs-option.is-selected .cs-tag { background: rgba(52,168,83,.22); }
.field textarea { resize: vertical; min-height: 112px; }
.field input::placeholder, .field textarea::placeholder { color: var(--slate-2); }
.field input:focus, .field textarea:focus, .field select:focus { outline: none; border-color: var(--blue); background-color: var(--white); box-shadow: 0 0 0 4px rgba(26,115,232,.16); }
.field-hint { font-size: .82rem; color: var(--slate-2); margin-top: 6px; }
.field-help { display: block; color: var(--slate-2); font-size: .82rem; line-height: 1.55; margin: -2px 0 8px; }
.field-error { font-size: .84rem; color: #c5221f; margin-top: 7px; font-weight: 500; }
.field.invalid input, .field.invalid textarea, .field.invalid select { border-color: #d93025; background-color: #fef7f6; }
.field-row { display: flex; flex-wrap: wrap; gap: 4px 28px; }
.field-row .field { flex: 1 1 190px; }

/* Segmentierter Umschalter */
.seg { display: inline-flex; gap: 8px; }
.seg-opt { position: relative; }
.seg-opt input { position: absolute; inset: 0; opacity: 0; cursor: pointer; margin: 0; }
.seg-opt span { display: block; padding: 9px 22px; border: 1.5px solid var(--border-2); border-radius: var(--r-pill); font-weight: 600; font-size: .92rem; color: var(--ink); background: var(--paper); transition: border-color .16s, background .16s, color .16s; }
.seg-opt input:hover + span { border-color: var(--ink); }
.seg-opt input:checked + span { background: var(--blue-soft); border-color: var(--blue); color: var(--blue-text); }
.seg-opt input:focus-visible + span { box-shadow: 0 0 0 4px rgba(26,115,232,.2); }

.estimate { display: flex; flex-direction: column; gap: 2px; padding: 15px 18px; margin-bottom: 18px; background: var(--ink-2); color: #fff; border-radius: var(--r); }
.estimate-label { font-size: .74rem; letter-spacing: .1em; text-transform: uppercase; color: rgba(255,255,255,.62); }
.estimate-value { font-size: 1.5rem; font-weight: 800; color: #8ab4f8; letter-spacing: -0.02em; font-variant-numeric: tabular-nums; }
.estimate-note { font-size: .8rem; color: rgba(255,255,255,.66); }

.consent { display: flex; align-items: flex-start; gap: 10px; font-size: .88rem; color: var(--slate); margin: 4px 0; cursor: pointer; }
.consent input { margin-top: 3px; width: 18px; height: 18px; flex: none; accent-color: var(--blue); }
.consent a { color: var(--blue-text); text-decoration: underline; }

.step-actions { display: flex; align-items: center; justify-content: space-between; gap: 12px; margin-top: 20px; flex-wrap: wrap; }
.btn-submit { flex: 1; min-width: 0; white-space: normal; }
.btn-submit-short { display: none; }
@media (max-width: 560px) {
  .btn-submit-full { display: none; }
  .btn-submit-short { display: inline; }
}
.lead-form [data-next] { color: #fff; }
.form-foot { text-align: center; margin-top: 12px; }

/* Zwischenschritt: freiwillige Ergänzung */
.form-ask { text-align: center; padding: 10px 6px 4px; animation: paneIn .4s ease both; }
.ask-ico { display: inline-grid; place-items: center; width: 52px; height: 52px; border-radius: 15px; background: var(--blue-soft); color: var(--blue-deep); margin-bottom: 16px; }
.ask-ico svg { width: 26px; height: 26px; }
.form-ask h3 { font-size: 1.2rem; letter-spacing: -0.024em; margin-bottom: 9px; }
.form-ask > p { color: var(--slate); font-size: .98rem; line-height: 1.6; max-width: 46ch; margin: 0 auto; }
.ask-actions { display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; margin-top: 24px; }

.form-success { text-align: center; padding: 24px 8px; animation: paneIn .4s ease both; }
.success-ico { width: 62px; height: 62px; border-radius: 50%; background: var(--green); display: grid; place-items: center; margin: 0 auto 18px; box-shadow: 0 12px 30px rgba(52,168,83,.32); }
.form-success h3 { font-size: 1.4rem; margin-bottom: 9px; }
.form-success p { color: var(--slate); max-width: 40ch; margin: 0 auto; }

/* Anstupser-Bubble am Formular */
.form-poke {
  position: absolute; z-index: 4; top: -19px; right: 18px;
  display: inline-flex; align-items: center; gap: 7px;
  padding: 9px 16px; border-radius: var(--r-pill);
  background: var(--blue); color: #fff;
  box-shadow: var(--shadow), 0 8px 22px rgba(26,115,232,.36);
  font-weight: 700; font-size: .9rem; letter-spacing: -0.01em; white-space: nowrap;
  transform: rotate(3deg); transform-origin: bottom right;
  animation: pokeWiggle 2.8s ease-in-out infinite;
}
.form-poke-emo { font-size: 1.08rem; line-height: 1; }
.form-poke::after {
  content: ""; position: absolute; width: 0; height: 0; border-style: solid;
  top: 100%; right: 24px;
  border-width: 11px 8px 0 8px;
  border-color: var(--blue) transparent transparent transparent;
}
@keyframes pokeWiggle { 0%, 100% { transform: rotate(3deg) translateY(0); } 50% { transform: rotate(-2deg) translateY(-3px); } }
@media (min-width: 1120px) {
  .form-poke { top: 34px; left: 100%; right: auto; margin-left: 12px; transform: rotate(2deg); transform-origin: left center; }
  .form-poke::after {
    top: 50%; left: -10px; right: auto; transform: translateY(-50%);
    border-width: 8px 11px 8px 0;
    border-color: transparent var(--blue) transparent transparent;
  }
}
@media (max-width: 480px) { .form-poke { right: 10px; font-size: .82rem; padding: 8px 13px; } .form-poke::after { right: 20px; } }

@keyframes formBump {
  0%   { transform: none; }
  22%  { transform: scale(1.03) translateY(-5px); }
  48%  { transform: scale(.992) translateY(0); }
  72%  { transform: scale(1.008); }
  100% { transform: none; }
}
@keyframes formGlow {
  0%   { box-shadow: var(--shadow-lg), 0 0 0 0 rgba(26,115,232,0); }
  30%  { box-shadow: var(--shadow-lg), 0 0 0 6px rgba(26,115,232,.32); }
  100% { box-shadow: var(--shadow-lg), 0 0 0 0 rgba(26,115,232,0); }
}
.form-card.bump { animation: formBump .72s cubic-bezier(.34,1.56,.64,1), formGlow .72s ease; }

/* ---------- Branchen-Strip ---------- */
.proof { margin-top: clamp(40px, 6vw, 72px); padding-top: clamp(28px, 4vw, 44px); border-top: 1px solid var(--border); position: relative; z-index: 1; }
.proof-label { text-align: center; font-size: .82rem; color: var(--slate-2); margin-bottom: 22px; }
.proof-logos { display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: clamp(20px, 4vw, 44px); }
.proof-logos li { display: flex; align-items: center; }
.proof-logos .ph-logo { font-weight: 700; font-size: 1rem; letter-spacing: -0.01em; color: var(--ink); opacity: .46; white-space: nowrap; }

/* =================================================================
   SEKTIONEN
   ================================================================= */
.fsection { padding: var(--section) 0; }
.fsection--tint { background: var(--paper); }
.fsection--dark { background: linear-gradient(160deg, #0b3d91 0%, #0d2f66 100%); color: #fff; position: relative; overflow: hidden; }
.fsection--dark::before { content: ""; position: absolute; inset: 0; background: radial-gradient(700px circle at 50% -10%, rgba(138,180,248,.22), transparent 62%); pointer-events: none; }
.fsection--dark > .container { position: relative; z-index: 1; }
.fsection--dark h2 { color: #fff; }
.fsection .kicker { text-align: center; }

.section-head { max-width: 840px; margin: 0 auto clamp(34px, 5vw, 54px); text-align: center; position: relative; }
.section-head .section-sub { color: var(--slate); margin-top: 14px; font-size: 1.03rem; }
.fsection--dark .section-head .section-sub { color: rgba(255,255,255,.72); }

/* CTA-Block in Sektion */
.fcta { text-align: center; margin-top: clamp(34px, 5vw, 48px); }
.fcta .microcopy { margin-top: 13px; }

/* Illustration als Sektionsauftakt — volle Containerbreite, Höhe automatisch.
   Kein object-fit/aspect-ratio: das Bild behält sein Seitenverhältnis und
   wird nie beschnitten. */
.section-visual {
  display: block;
  width: 100%;
  /* Stejná šířka jako text pod obrázkem (.whois-list), ať sekce drží jednu osu. */
  max-width: 960px;
  margin: 0 auto clamp(34px, 5vw, 54px);
}
.section-visual img { display: block; width: 100%; height: auto; border-radius: var(--r-lg); border: 1px solid var(--border); box-shadow: var(--shadow-sm); }

/* ---------- „Wer wir sind" ---------- */
.whois-list { max-width: 960px; margin-inline: auto; border-top: 1px solid var(--border); }
.whois-item { padding: clamp(20px, 3.2vw, 36px) 0; border-bottom: 1px solid var(--border); }
.whois-line { font-size: clamp(1.3rem, 2.7vw, 1.95rem); font-weight: 400; line-height: 1.24; letter-spacing: -0.024em; color: var(--ink); text-wrap: balance; }
.whois-line strong { display: block; font-weight: 700; }
.whois-note { margin-top: 14px; font-size: .9rem; line-height: 1.5; color: var(--slate-2); }
.whois-arrow { display: block; width: clamp(56px, 7vw, 80px); height: auto; margin: 0 auto 6px; opacity: .5; }

/* ---------- Ablauf (Zickzack) ---------- */
.flow { display: flex; flex-direction: column; align-items: stretch; max-width: 700px; margin-inline: auto; }
.flow-step { position: relative; width: min(500px, 92%); display: flex; gap: 16px; align-items: center; background: var(--white); border: 1px solid var(--border); border-radius: var(--r-lg); box-shadow: var(--shadow-sm); padding: 22px 24px; transition: transform .22s ease, box-shadow .25s ease, border-color .25s ease; }
.flow-step:hover { transform: translateY(-3px); box-shadow: var(--shadow); border-color: rgba(26,115,232,.5); }
.flow-step.is-left { align-self: flex-start; }
.flow-step.is-right { align-self: flex-end; }
.flow-num { flex: none; width: 40px; height: 40px; border-radius: 50%; background: var(--blue); color: #fff; font-weight: 800; font-size: 1.02rem; display: grid; place-items: center; box-shadow: 0 6px 16px rgba(26,115,232,.32); }
.flow-body { flex: 1 1 auto; min-width: 0; }
.flow-body h3 { font-size: 1.1rem; margin-bottom: 4px; letter-spacing: -0.02em; }
.flow-body p { font-size: .94rem; color: var(--slate); line-height: 1.55; }
.flow-ico { flex: none; width: 50px; height: 50px; border-radius: 14px; display: grid; place-items: center; background: var(--blue-soft); color: var(--blue-deep); }
.flow-ico svg { width: 24px; height: 24px; fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.flow-arrow { display: flex; justify-content: center; padding: clamp(18px, 3vw, 36px) 0; }
.flow-arrow img { width: 44px; height: auto; transform: rotate(-12deg); opacity: .45; }
.flow-arrow--alt img { transform: rotate(12deg) scaleX(-1); }
@media (max-width: 640px) {
  .flow-step { width: 100%; padding: 18px; gap: 13px; }
  .flow-ico { display: none; }
  .flow-arrow img { width: 36px; transform: none; }
  .flow-arrow--alt img { transform: scaleX(-1); }
}

/* ---------- Vergleichstabelle ---------- */
.compare { margin-top: clamp(.5rem, 2vw, 1.5rem); }
.compare-scroll { overflow-x: auto; }
.compare-scroll:focus-visible { outline: 3px solid var(--blue); outline-offset: 4px; border-radius: 6px; }
.compare-table { width: 100%; border-collapse: separate; border-spacing: 0; }
.compare-table th, .compare-table td { padding: 1.05rem 1.1rem; text-align: center; border-bottom: 1px solid var(--border); }
.compare-table thead th { font-size: .95rem; font-weight: 600; color: var(--slate); line-height: 1.25; vertical-align: bottom; border-bottom: 1px solid var(--border-2); }
.compare-table th[scope="row"] { position: sticky; left: 0; z-index: 1; background: var(--paper); text-align: left; font-weight: 600; color: var(--ink); width: 32%; min-width: 210px; }
.compare-table thead th:first-child { position: sticky; left: 0; z-index: 1; background: var(--paper); }
.compare-table .col-us { background: rgba(26,115,232,.07); }
.compare-table thead .col-us { color: var(--blue-text); font-weight: 700; border-top-left-radius: 12px; border-top-right-radius: 12px; }
.compare-table tbody tr:last-child .col-us { border-bottom-left-radius: 12px; border-bottom-right-radius: 12px; }
.compare-table tbody tr:last-child td, .compare-table tbody tr:last-child th { border-bottom: none; }
.c-yes::after { content: ""; display: inline-block; width: .64rem; height: .36rem; border-left: 2.5px solid var(--green); border-bottom: 2.5px solid var(--green); transform: rotate(-45deg) translateY(-.12rem); }
.c-no::after { content: ""; display: inline-block; width: .9rem; height: 2px; border-radius: 2px; background: var(--border-2); vertical-align: middle; }
@media (max-width: 767px) {
  .compare-scroll { overflow: visible; }
  .compare-table thead { display: none; }
  .compare-table tbody { display: block; }
  .compare-table tr { display: block; background: var(--white); border: 1px solid var(--border); border-radius: var(--r); padding: 1.1rem 1.25rem; margin-bottom: 1rem; }
  .compare-table tbody tr:last-child { margin-bottom: 0; }
  .compare-table th[scope="row"] { display: block; position: static; width: auto; min-width: 0; margin-bottom: .55rem; padding: 0 0 .7rem; font-size: 1.08rem; background: none; border-bottom: 1px solid var(--border); }
  .compare-table td { display: flex; align-items: center; justify-content: space-between; gap: 1rem; text-align: left; padding: .5rem 0; border: none; }
  .compare-table td::before { font-size: .95rem; font-weight: 500; color: var(--slate); }
  .compare-table td:nth-of-type(1)::before { content: "Bewertungen kaufen"; }
  .compare-table td:nth-of-type(2)::before { content: "Selbst nachfragen"; }
  .compare-table td:nth-of-type(3)::before { content: "Klassische Werbung"; }
  .compare-table td:nth-of-type(4)::before { content: "Goo Reviews"; }
  .compare-table td.col-us { margin: .45rem -1.25rem -1.1rem; padding: .75rem 1.25rem; background: rgba(26,115,232,.09); border-radius: 0 0 calc(var(--r) - 1px) calc(var(--r) - 1px); }
  .compare-table td.col-us::before { color: var(--ink); font-weight: 700; }
}

/* ---------- Pakete ---------- */
#pakete .section-head .section-sub { color: rgba(255,255,255,.72); }
.packages { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; align-items: stretch; }
@media (max-width: 900px) { .packages { grid-template-columns: 1fr; max-width: 470px; margin-inline: auto; } }
.pkg { position: relative; display: flex; flex-direction: column; text-align: left; padding: clamp(24px, 2.6vw, 34px); border: 1px solid rgba(255,255,255,.16); border-radius: var(--r-lg); background: rgba(255,255,255,.05); }
.pkg-num { font-size: .78rem; font-weight: 700; letter-spacing: .14em; color: #8ab4f8; }
.pkg-name { color: #fff; font-size: 1.35rem; font-weight: 700; letter-spacing: -0.024em; margin: 10px 0 8px; }
.pkg-desc { color: rgba(255,255,255,.7); font-size: .95rem; line-height: 1.5; }
.pkg-price { color: #fff; font-size: clamp(1.9rem, 2.6vw, 2.3rem); font-weight: 800; letter-spacing: -0.03em; margin: 18px 0 0; font-variant-numeric: tabular-nums; }
.pkg-per { font-size: .88rem; font-weight: 500; color: rgba(255,255,255,.6); letter-spacing: 0; }
.pkg-price-old { color: rgba(255,255,255,.55); font-weight: 600; font-size: .58em; margin-right: .28em; text-decoration-thickness: 2px; vertical-align: .12em; }
.pkg-note { color: rgba(255,255,255,.64); font-size: .85rem; margin-top: 4px; }
.pkg-note--sale { color: #fdd663; font-weight: 600; }
.pkg-list { display: grid; gap: 10px; margin: 22px 0 26px; }
.pkg-list li { position: relative; padding-left: 28px; font-size: .95rem; color: rgba(255,255,255,.85); }
.pkg-list li::before { content: ""; position: absolute; left: 0; top: 2px; width: 18px; height: 18px; border-radius: 50%; background: rgba(52,168,83,.28); }
.pkg-list li::after { content: ""; position: absolute; left: 6px; top: 8px; width: 6px; height: 3px; border-left: 2px solid #81c995; border-bottom: 2px solid #81c995; transform: rotate(-45deg); }
.pkg-cta { margin-top: auto; width: 100%; }
.pkg--feature { border-color: #8ab4f8; background: rgba(26,115,232,.16); box-shadow: 0 0 0 1px #8ab4f8, 0 26px 60px -30px rgba(138,180,248,.6); }
.pkg-tag { position: absolute; top: -12px; left: clamp(24px, 2.6vw, 34px); background: var(--green-badge); color: #fff; font-size: .72rem; font-weight: 700; padding: 5px 12px; border-radius: var(--r-pill); box-shadow: var(--shadow-sm); }
#pakete .btn-ghost { color: #fff; border-color: rgba(255,255,255,.32); }
#pakete .btn-ghost:hover { color: #fff; border-color: #fff; background: rgba(255,255,255,.08); }

/* Garantie-Band */
.guarantee { display: flex; align-items: center; gap: 14px; text-align: left; max-width: 660px; margin: clamp(28px, 4vw, 40px) auto 0; padding: 18px 22px; border: 1px solid rgba(255,255,255,.2); border-radius: var(--r); background: rgba(52,168,83,.12); }
.guarantee svg { color: #81c995; flex: none; }
.guarantee p { color: rgba(255,255,255,.86); font-size: .96rem; }
.guarantee strong { color: #fff; }

/* ---------- FAQ ---------- */
.faq { max-width: 800px; margin-inline: auto; display: grid; gap: 12px; }
.faq-item { background: var(--white); border: 1px solid var(--border); border-radius: var(--r); overflow: hidden; transition: border-color .2s ease, box-shadow .2s ease; }
.faq-item[open] { border-color: rgba(26,115,232,.45); box-shadow: var(--shadow-sm); }
.faq-item summary { display: flex; align-items: center; justify-content: space-between; gap: 16px; padding: 18px 22px; font-weight: 600; font-size: 1.02rem; cursor: pointer; list-style: none; color: var(--ink); }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after { content: ""; flex: none; width: 11px; height: 11px; border-right: 2.2px solid var(--slate-2); border-bottom: 2.2px solid var(--slate-2); transform: rotate(45deg) translateY(-3px); transition: transform .22s ease; }
.faq-item[open] summary::after { transform: rotate(-135deg) translateY(-3px); }
.faq-item summary:focus-visible { outline: 3px solid var(--blue); outline-offset: -3px; }
.faq-answer { padding: 0 22px 20px; color: var(--slate); font-size: .96rem; line-height: 1.65; }
.faq-answer a { color: var(--blue-text); text-decoration: underline; }

/* =================================================================
   FUSSZEILE
   ================================================================= */
.funnel-footer { background: #101418; color: rgba(255,255,255,.62); text-align: left; padding: clamp(48px, 6vw, 72px) 0 30px; }
.ff-grid { display: grid; grid-template-columns: 1.5fr 1.15fr 1fr; gap: clamp(28px, 5vw, 56px); padding-bottom: clamp(28px, 4vw, 40px); border-bottom: 1px solid rgba(255,255,255,.1); }
@media (max-width: 820px) { .ff-grid { grid-template-columns: 1fr 1fr; } .ff-about { grid-column: 1 / -1; } }
@media (max-width: 520px) { .ff-grid { grid-template-columns: 1fr; gap: 30px; } }
.ff-brand { display: inline-flex; align-items: center; gap: 9px; color: #fff; font-weight: 800; font-size: 1.15rem; letter-spacing: -0.03em; margin-bottom: 12px; }
.ff-brand svg { flex: none; }
.ff-tag { font-size: .92rem; line-height: 1.6; max-width: 44ch; }
.ff-head { color: #fff; font-size: .76rem; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; margin-bottom: 16px; }
.ff-list { display: grid; gap: 15px; }
.ff-list li { display: grid; gap: 2px; }
.ff-list a { display: inline-flex; align-items: center; gap: 10px; color: rgba(255,255,255,.88); font-weight: 500; font-size: .95rem; transition: color .18s ease; width: fit-content; }
.ff-list a:hover { color: #8ab4f8; }
.ff-list a svg { width: 17px; height: 17px; flex: none; fill: none; stroke: #8ab4f8; stroke-width: 1.7; stroke-linecap: round; stroke-linejoin: round; }
.ff-sub { font-size: .8rem; color: rgba(255,255,255,.55); padding-left: 27px; }
.ff-operator { margin-top: 20px; font-size: .85rem; color: rgba(255,255,255,.5); line-height: 1.7; }
.ff-operator strong { color: rgba(255,255,255,.84); font-weight: 600; }
.ff-bottom { display: flex; justify-content: space-between; align-items: center; gap: 12px; flex-wrap: wrap; padding-top: 22px; font-size: .82rem; color: rgba(255,255,255,.55); }
.ff-bottom-note { max-width: 56ch; }

.site-footer { background: var(--ink-2); color: rgba(255,255,255,.66); padding: clamp(36px, 5vw, 56px) 0 28px; }
.site-footer a:hover { color: #8ab4f8; }
.footer-bottom { display: flex; align-items: center; justify-content: space-between; gap: 12px; flex-wrap: wrap; font-size: .86rem; }

/* =================================================================
   EXIT-INTENT
   ================================================================= */
.exit-overlay { position: fixed; inset: 0; z-index: 300; display: grid; place-items: center; padding: 24px; background: rgba(13,47,102,.62); backdrop-filter: blur(4px); animation: fade .25s ease; }
.exit-overlay[hidden] { display: none; }
@keyframes fade { from { opacity: 0; } to { opacity: 1; } }
.exit-modal { position: relative; width: 100%; max-width: 470px; background: var(--white); border-radius: var(--r-lg); padding: clamp(26px, 3.5vw, 34px); box-shadow: var(--shadow-lg); animation: pop .3s cubic-bezier(.2,.9,.3,1.2); }
.exit-modal .eyebrow { margin-bottom: 16px; }
@keyframes pop { from { opacity: 0; transform: scale(.94) translateY(10px); } to { opacity: 1; transform: none; } }
.exit-modal h3 { font-size: 1.42rem; margin: 0 0 10px; letter-spacing: -0.026em; }
.exit-modal > p { color: var(--slate); }
.exit-close { position: absolute; top: 14px; right: 14px; width: 34px; height: 34px; border: 0; background: var(--paper); border-radius: 50%; font-size: 1.4rem; line-height: 1; color: var(--slate); display: grid; place-items: center; }
.exit-close:hover { background: var(--border); color: var(--ink); }
.exit-form { display: flex; flex-direction: column; gap: 10px; margin: 22px 0 12px; }
.exit-form input { width: 100%; padding: 14px 16px; font: inherit; border: 1.5px solid var(--border-2); border-radius: var(--r); background: var(--paper); }
.exit-form input:focus { outline: none; border-color: var(--blue); box-shadow: 0 0 0 4px rgba(26,115,232,.16); }
.exit-form button { width: 100%; }

/* ---------- Bonus-Schritte ---------- */
.step4-sub { color: var(--slate); margin-bottom: 18px; }

/* ---------- Reveal ---------- */
.reveal { opacity: 0; transform: translateY(20px); }
.reveal.in { opacity: 1; transform: none; transition: opacity .6s ease var(--d, 0s), transform .6s cubic-bezier(.2,.7,.3,1) var(--d, 0s); }

/* ---------- Deko + Animationen ---------- */
@keyframes floaty { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-10px); } }
@keyframes twinkle { 0%, 100% { opacity: .3; transform: scale(.85) rotate(0deg); } 50% { opacity: .8; transform: scale(1) rotate(15deg); } }
@keyframes draw { to { stroke-dashoffset: 0; } }
@keyframes dotpulse { 0% { box-shadow: 0 0 0 0 rgba(52,168,83,.45); } 70% { box-shadow: 0 0 0 8px rgba(52,168,83,0); } 100% { box-shadow: 0 0 0 0 rgba(52,168,83,0); } }
@keyframes shimmer { 0% { transform: translateX(-120%); } 60%, 100% { transform: translateX(240%); } }
@keyframes breathe { 0%, 100% { opacity: .8; transform: scale(1); } 50% { opacity: 1; transform: scale(1.07); } }

.eyebrow .dot { animation: dotpulse 2.4s ease-out infinite; }
.hero-glow { animation: breathe 9s ease-in-out infinite; transform-origin: center; }

.hl { position: relative; display: inline-block; }
.squiggle { position: absolute; left: 0; bottom: -0.16em; width: 100%; height: .42em; overflow: visible; color: var(--star); }
.squiggle path { stroke-dasharray: 280; stroke-dashoffset: 280; animation: draw 1s ease .45s forwards; }

.hero-doodles { position: absolute; inset: 0; z-index: 1; pointer-events: none; }
.doodle { position: absolute; color: var(--star); }
/* Die Stern-Doodles nutzen <use> auf ein <symbol> ohne eigenes fill —
   deshalb hier explizit auf currentColor setzen (Ring und Squiggle nicht,
   die haben ein inline fill="none" und werden nur gestrichelt gezeichnet). */
.doodle-star, .doodle-star-2 { fill: currentColor; }
.doodle-star { width: 26px; top: 19%; left: 8%; opacity: .55; animation: floaty 6s ease-in-out infinite, twinkle 3.5s ease-in-out infinite; }
.doodle-star-2 { width: 20px; top: 24%; right: 9%; opacity: .5; animation: floaty 7s ease-in-out infinite .6s, twinkle 4.2s ease-in-out infinite .3s; }
.doodle-ring { width: 28px; bottom: 17%; left: 3%; opacity: .28; color: var(--blue); animation: floaty 7.5s ease-in-out infinite .8s; }
.doodle-squiggle { width: 40px; top: 8%; left: 12%; opacity: .35; color: var(--blue); animation: floaty 5.5s ease-in-out infinite .4s; }
@media (max-width: 1180px) { .hero-doodles { display: none; } }

.form-progress-bar span { position: relative; overflow: hidden; }
.form-progress-bar span::after { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, transparent, rgba(255,255,255,.6), transparent); transform: translateX(-120%); animation: shimmer 2.8s ease-in-out infinite; }

.success-ico svg path { stroke-dasharray: 32; stroke-dashoffset: 32; animation: draw .5s ease .15s forwards; }

@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1 !important; transform: none !important; }
  .btn:hover, .flow-step:hover { transform: none; }
  *, *::before, *::after { animation-duration: .001ms !important; transition-duration: .001ms !important; }
}

/* =================================================================
   RECHTSSEITEN
   ================================================================= */
.legal { max-width: 820px; margin-inline: auto; padding: clamp(40px, 7vw, 80px) 0; hyphens: auto; }
.legal h1 { font-size: clamp(1.72rem, 4vw, 2.6rem); margin-bottom: 10px; }
.legal .updated { color: var(--slate-2); font-size: .9rem; margin-bottom: 36px; }
.legal h2 { font-size: 1.28rem; margin: 34px 0 12px; }
.legal p, .legal li { color: var(--slate); }
.legal ul { list-style: disc; padding-left: 22px; display: grid; gap: 7px; margin-top: 8px; }
.legal a { color: var(--blue-text); text-decoration: underline; }
.legal address { font-style: normal; color: var(--slate); line-height: 1.8; }
.back { display: inline-flex; align-items: center; gap: 8px; font-weight: 600; color: var(--ink); margin-bottom: 28px; }
.legal-head { display: flex; align-items: center; justify-content: space-between; height: 70px; gap: 16px; }
.ck-table { width: 100%; border-collapse: collapse; margin-top: 14px; font-size: .92rem; }
.ck-table th, .ck-table td { text-align: left; padding: 11px 12px; border-bottom: 1px solid var(--border); vertical-align: top; }
.ck-table th { color: var(--ink); font-weight: 600; background: var(--paper); }
.ck-table td { color: var(--slate); }
.ck-wrap { overflow-x: auto; }
.ck-actions { margin: 22px 0 4px; }

/* =================================================================
   DRUCK
   ================================================================= */
@media print {
  .cc-root,
  .exit-overlay,
  .form-poke,
  .hero-doodles,
  .hero-glow,
  .promo-bar,
  .skip-link { display: none !important; }
  .reveal { opacity: 1 !important; transform: none !important; }
  .hero,
  .fsection--dark,
  .funnel-footer,
  .site-footer { background: none !important; color: var(--ink); }
  .fsection--dark :is(h2, .section-sub, .kicker, .pkg-name, .pkg-price, .pkg-desc, .pkg-note, .pkg-list li, .guarantee p, .guarantee strong),
  .funnel-footer :is(p, a, h3, strong, .ff-brand),
  .site-footer :is(p, a) { color: var(--ink) !important; }
  .pkg, .guarantee { border-color: var(--border-2); box-shadow: none; }
}

/* =================================================================
   COOKIE-EINWILLIGUNG (Opt-in)
   ================================================================= */
.cc-banner { position: fixed; left: 0; right: 0; bottom: 0; z-index: 400; padding: 0 clamp(12px, 4vw, 28px) clamp(12px, 3vw, 22px); }
.cc-banner[hidden] { display: none; }
.cc-banner-inner { max-width: var(--container); margin-inline: auto; display: flex; align-items: center; justify-content: space-between; gap: 14px clamp(18px, 3vw, 32px); flex-wrap: wrap; background: var(--white); border: 1px solid var(--border); border-radius: var(--r); box-shadow: var(--shadow-lg); padding: 16px clamp(16px, 2.4vw, 24px); }
.cc-text { flex: 1 1 380px; font-size: .9rem; color: var(--slate); line-height: 1.5; }
.cc-text strong { color: var(--ink); font-weight: 700; }
.cc-text a { color: var(--blue-text); text-decoration: underline; }
.cc-actions { display: flex; gap: 8px; flex-wrap: wrap; }
@media (max-width: 620px) { .cc-actions { width: 100%; } .cc-actions .btn { flex: 1 1 auto; } }

.cc-overlay { position: fixed; inset: 0; z-index: 420; display: grid; place-items: center; padding: 20px; background: rgba(13,47,102,.55); backdrop-filter: blur(4px); animation: fade .25s ease; }
.cc-overlay[hidden] { display: none; }
html.cc-open { overflow: hidden; }
.cc-modal { position: relative; width: 100%; max-width: 560px; max-height: 90vh; overflow-y: auto; background: var(--white); border-radius: var(--r-lg); box-shadow: var(--shadow-lg); padding: clamp(24px, 4vw, 36px); animation: pop .3s cubic-bezier(.2,.9,.3,1.2); }
.cc-close { position: absolute; top: 12px; right: 14px; width: 36px; height: 36px; border: 0; border-radius: 50%; background: var(--paper); font-size: 1.5rem; line-height: 1; color: var(--slate); }
.cc-close:hover { background: var(--border); color: var(--ink); }
.cc-modal h2 { font-size: 1.38rem; letter-spacing: -0.026em; padding-right: 34px; }
.cc-modal-sub { color: var(--slate); font-size: .94rem; margin-top: 8px; }
.cc-cats { display: grid; gap: 12px; margin: 22px 0; }
.cc-cat { border: 1px solid var(--border); border-radius: var(--r); padding: 14px 16px; }
.cc-cat-head { display: flex; align-items: center; justify-content: space-between; gap: 12px; }
.cc-cat-name { font-weight: 700; color: var(--ink); }
.cc-cat p { font-size: .85rem; color: var(--slate-2); margin-top: 6px; line-height: 1.5; }
.cc-badge { font-size: .72rem; font-weight: 600; color: var(--blue-text); background: var(--blue-soft); padding: 4px 10px; border-radius: var(--r-pill); white-space: nowrap; }
.cc-switch { position: relative; display: inline-block; width: 44px; height: 26px; flex: none; cursor: pointer; }
.cc-switch input { position: absolute; opacity: 0; width: 100%; height: 100%; margin: 0; cursor: pointer; }
.cc-slider { position: absolute; inset: 0; background: var(--border-2); border-radius: var(--r-pill); transition: background .18s ease; }
.cc-slider::before { content: ""; position: absolute; top: 3px; left: 3px; width: 20px; height: 20px; background: #fff; border-radius: 50%; box-shadow: var(--shadow-sm); transition: transform .18s ease; }
.cc-switch input:checked + .cc-slider { background: var(--blue); }
.cc-switch input:checked + .cc-slider::before { transform: translateX(18px); }
.cc-switch input:focus-visible + .cc-slider { outline: 3px solid var(--blue); outline-offset: 2px; }
.cc-modal-actions { display: flex; gap: 8px; flex-wrap: wrap; justify-content: flex-end; }
@media (max-width: 520px) { .cc-modal-actions .btn { flex: 1 1 auto; } }
