/* =====================================================================
   apotheke-consulting.de - Checklisten-Funnel „Notfallvorsorge für Apotheken"
   Design system: Dunkel-Navy (#061040) + Aktions-Blau (#245ECD) + Stahlblau,
   Inter (KX-Briefing). Vanilla CSS, kein Build-Step. Brand-Tokens aus dem
   Onepage-Color-Kit der Live-Site (siehe research/DESIGN.md).
   Aufbau = KX-Standard (Lesson 89): Header · Hero+Opt-in · Final-CTA · Footer.
   LP verkauft NUR das Opt-in (Tease in den Hero-Bullets, kein Spoiler).
   ===================================================================== */

/* ---- Fonts (Inter, selbst gehostet = DSGVO-konform, kein Google-Request) ---- */
/* Variable Font: eine Datei deckt 400-700 ab. Subsets: latin + latin-ext (ä ö ü ß €). */
@font-face {
  font-family: "Inter";
  font-style: normal;
  font-weight: 400 700;
  font-display: swap;
  src: url("../fonts/inter-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: "Inter";
  font-style: normal;
  font-weight: 400 700;
  font-display: swap;
  src: url("../fonts/inter-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;
}

/* ---- Tokens ----
   Rollen (fix): Action = CTA-Blau (Buttons, Checks) · Struktur = Dunkel-Navy
   (Headings, Final-CTA, Footer) · Stahlblau = Nebenflächen/Fokus. Kein 2. Akzent. */
:root {
  --navy:       #061040;   /* Dunkel-Navy der Live-Site (Headings, Struktur) */
  --navy-deep:  #040A2C;   /* noch dunkler (Footer, Final-CTA-Verlauf) */
  --blue:       #245ECD;   /* Aktionsfarbe (CTA-Blau der Live-Site-Buttons) */
  --blue-600:   #1D4FB0;
  --blue-glow:  rgba(36, 94, 205, 0.30);
  --blue-soft:  rgba(36, 94, 205, 0.10);
  /* Stahlblau-Töne aus dem Site-Color-Kit (key1/key2) - ruhige Nebenrollen */
  --steel:      #3D5F8D;
  --steel-soft: rgba(61, 95, 141, 0.14);
  --red:        #E3252F;   /* Rot der Live-Site (Headline-Emphasis, sparsam - nie auf CTAs) */
  --stars:      #DCE41A;   /* Gelbgrün der Bewertungs-Sterne der Live-Site */
  --btn-grad:   linear-gradient(92deg, #4093E6 0%, #245ECD 55%, #1D4FB0 100%);
  --white:      #FFFFFF;
  --bg-soft:    #F4F6FA;
  --bg-soft-2:  #ECEFF5;
  --border:     #E2E7F0;
  --text:       #13204A;
  --text-muted: #4A5878;

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

  --radius:      10px;
  --radius-lg:   18px;
  --radius-pill: 999px;

  --shadow-sm: 0 1px 2px rgba(6, 16, 64, .06);
  --shadow-md: 0 8px 30px rgba(6, 16, 64, .08);
  --shadow-lg: 0 24px 60px rgba(6, 16, 64, .14);
  --cta-shadow: 0 6px 22px var(--blue-glow);

  --container: 1140px;
  --section-y: clamp(56px, 8vw, 104px);
}

/* ---- Reset ---- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font);
  color: var(--text);
  background: var(--white);
  line-height: 1.65;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: 0; background: none; }
ul { list-style: none; padding: 0; }

/* ---- Typography ---- */
h1, h2, h3, h4 { line-height: 1.12; color: var(--navy); font-weight: 700; letter-spacing: -.02em; overflow-wrap: break-word; }
h1 { font-size: clamp(2.3rem, 5.2vw, 3.85rem); }
h2 { font-size: clamp(1.85rem, 3.6vw, 2.7rem); }
h3 { font-size: clamp(1.2rem, 2vw, 1.4rem); }
p  { color: var(--text-muted); }
.blue-text { color: var(--blue); }
.red-text { color: var(--red); }
/* Rote Unterstreichung unter dem Schlüsselwort - Device der Live-Site */
.red-underline { text-decoration: underline; text-decoration-color: var(--red); text-decoration-thickness: 3px; text-underline-offset: 7px; }
.nowrap { white-space: nowrap; }
/* Eyebrows bewusst KEINE (Jonas 2026-07-19: wirken AI-isch) - Headlines stehen für sich. */

/* ---- Layout ---- */
.container { width: 100%; max-width: var(--container); margin-inline: auto; padding-inline: 22px; }
.section { padding-block: var(--section-y); }
.section--soft { background: var(--bg-soft); }
.section--tight { padding-block: 22px; }
.section__head { max-width: 720px; margin: 0 auto 48px; text-align: center; }
.section__head p { margin-top: 14px; font-size: 1.12rem; }
.center { text-align: center; }

/* ---- Buttons (Rechteck + Blau-Verlauf + Icon, wie auf der Live-Site) ---- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 12px;
  font-weight: 700; font-size: 1.02rem; line-height: 1;
  max-width: 100%;
  padding: 15px 26px; border-radius: 10px;
  transition: transform .18s ease, box-shadow .18s ease, filter .18s ease;
  text-align: center; white-space: nowrap;
}
.btn--primary { background: var(--btn-grad); color: var(--white); box-shadow: var(--cta-shadow); }
.btn--primary:hover { filter: brightness(1.07); transform: translateY(-2px); box-shadow: 0 10px 30px var(--blue-glow); }
/* Zweizeilen-Label (fette Hauptzeile + kleine Subzeile) + umrandetes Icon */
.btn__ico { flex: 0 0 34px; width: 34px; height: 34px; border: 1.6px solid rgba(255,255,255,.85); border-radius: 8px; display: grid; place-items: center; }
.btn__ico svg { width: 18px; height: 18px; }
.btn__lines { display: flex; flex-direction: column; align-items: flex-start; text-align: left; gap: 3px; min-width: 0; overflow: hidden; }
.btn__main { font-weight: 700; line-height: 1.15; }
.btn__sub { font-weight: 400; font-size: .76rem; line-height: 1.2; color: rgba(255,255,255,.85); letter-spacing: .1px; }
.btn--ghost { background: var(--white); color: var(--navy); border: 1.5px solid var(--border); box-shadow: var(--shadow-sm); }
.btn--ghost:hover { border-color: var(--navy); transform: translateY(-2px); }
.btn--lg { padding: 15px 30px; font-size: 1.06rem; }
.btn--block { display: flex; width: 100%; white-space: normal; }
.btn--noWrap { white-space: nowrap; }
.btn__arrow { transition: transform .18s ease; }
.btn:hover .btn__arrow { transform: translateX(4px); }
.btn:focus-visible { outline: 3px solid var(--steel); outline-offset: 3px; }

.micro-trust { display: flex; flex-wrap: wrap; gap: 8px 20px; margin-top: 18px; font-size: .92rem; color: var(--text-muted); font-weight: 600; }
.micro-trust span { display: inline-flex; align-items: center; gap: 7px; }
.micro-trust span::before { content: ""; width: 16px; height: 16px; flex: 0 0 16px; border-radius: 50%; background: var(--blue); box-shadow: inset 0 0 0 2px var(--white), 0 0 0 1px var(--blue-600); }
.micro-trust--ondark { justify-content: center; color: #B7C2DE; margin-top: 22px; }
.micro-trust--ondark span::before { background: #fff; box-shadow: none; opacity: .85; width: 7px; height: 7px; flex: 0 0 7px; }

/* ---- Header (schlank -> CTA above the fold) ---- */
.header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(255,255,255,.86); backdrop-filter: saturate(180%) blur(12px);
  border-bottom: 1px solid var(--border);
}
.header__inner { display: flex; align-items: center; justify-content: space-between; height: 60px; }
.logo { display: inline-flex; align-items: center; gap: 9px; font-weight: 700; font-size: 1.05rem; color: var(--navy); letter-spacing: -.01em; }
.logo-img { height: 40px; width: auto; }    /* echte Wortmarke (2-zeilig, Header auf hell) */
.logo-mark { height: 26px; width: auto; }    /* Icon-Mark (Footer, auf dunklem BG) */
.header .btn { padding: 11px 20px; font-size: .92rem; }

/* ---- Hero ---- */
.hero { position: relative; overflow: hidden; padding-block: clamp(28px, 3.4vw, 48px) 0; display: flex; flex-direction: column; }
.hero::before {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background:
    radial-gradient(55% 55% at 88% 6%, rgba(36,94,205,.12), transparent 70%),
    radial-gradient(50% 48% at 5% 14%, rgba(123,148,176,.14), transparent 70%),
    radial-gradient(60% 60% at 50% 102%, rgba(6,16,64,.05), transparent 70%);
}
.hero__grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: 56px; align-items: center; flex: 1 0 auto; }
.hero h1 { margin: 0; font-size: clamp(2.1rem, 3.4vw, 2.7rem); }
.hero__benefits { margin-top: 26px; display: grid; gap: 13px; }
.hero__benefits .b-text { min-width: 0; }
.hero__benefits li { display: flex; gap: 12px; align-items: flex-start; font-weight: 400; color: var(--text); }
.hero__benefits li strong { font-weight: 700; }
.hero__cta { margin-top: 28px; display: flex; flex-wrap: wrap; gap: 14px; }

/* check icon */
.check { flex: 0 0 24px; width: 24px; height: 24px; border-radius: 50%; background: var(--blue); display: grid; place-items: center; margin-top: 1px; }
.check svg { width: 13px; height: 13px; stroke: var(--white); stroke-width: 3.2; fill: none; }

/* cover mockup (Platzhalter, wird von KX gegen finales Mockup getauscht) */
/* Desktop: Mockup rechts in der Spalte ausrichten (zentriert wirkte zu weit links) */
.hero__media { position: relative; display: flex; align-items: center; justify-content: flex-end; padding-right: clamp(8px, 3vw, 44px); }
/* Breite liegt auf dem WRAP (nicht auf dem img): ein img mit min(310px,100%) in einem
   auto-breiten Flex-Item streckt den Wrap auf Spaltenbreite und das Bild klebt links. */
.cover-wrap { position: relative; width: min(330px, 100%); }
.cover-wrap img { width: 100%; height: auto; filter: drop-shadow(0 34px 55px rgba(6,16,64,.28)); transition: transform .45s cubic-bezier(.2,.7,.2,1); will-change: transform; }
.cover-wrap:hover img { transform: scale(1.045) translateY(-6px) rotate(.6deg); }
@media (prefers-reduced-motion: reduce) { .cover-wrap img { transition: none; } .cover-wrap:hover img { transform: none; } }
/* Mobile-only Hero-Elemente (Mockup + 2. CTA) - auf Desktop aus */
.hero__cover-m, .hero__cta--m { display: none; }
.hero__cover-m img { height: auto; }

/* ---- Hero trust banner (am unteren Rand der Hero-Sektion) ---- */
.hero__trust { margin-top: clamp(28px, 3.6vw, 46px); border-top: 1px solid var(--border); }
.hero__trust .container { padding-block: 18px; }
.trust-row { display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: 12px 26px; }
.trust-chip { display: inline-flex; align-items: center; gap: 9px; font-size: .92rem; font-weight: 600; color: var(--text-muted); }
.trust-chip strong { color: var(--navy); }
.trust-chip .stars { color: var(--stars); letter-spacing: 1.5px; }
.trust-chip > svg { width: 18px; height: 18px; color: var(--blue); flex: none; }
.trust-dot { width: 4px; height: 4px; border-radius: 50%; background: var(--border); flex: none; }
.avatars { display: inline-flex; }
.ava { width: 28px; height: 28px; border-radius: 50%; background: var(--navy); color: #fff; font-size: .6rem; font-weight: 700; display: grid; place-items: center; border: 2px solid var(--white); margin-left: -9px; }
.ava:first-child { margin-left: 0; }

/* ---- Final CTA: abgerundetes Gradient-Panel (Navy -> Stahlblau, wie das
   Fazit-Panel der Live-Site), auf weißer Sektion ---- */
.final-cta { padding-top: clamp(34px, 4.6vw, 64px); }
.final-panel { background: linear-gradient(178deg, #081340 0%, #1E3563 48%, #4A6C9C 100%); border-radius: 28px; padding: clamp(44px, 6vw, 72px) clamp(24px, 5vw, 72px); text-align: center; color: #fff; box-shadow: var(--shadow-lg); max-width: 1060px; margin: 0 auto; }
.final-panel h2 { color: #fff; max-width: 640px; margin: 0 auto; }
.final-panel p { color: #CBD6E8; max-width: 560px; margin: 16px auto 30px; font-size: 1.12rem; }

/* ---- Footer (slim) ---- */
.footer { background: var(--navy-deep); color: #9FACD0; padding-block: 26px; font-size: .9rem; }
.footer__top { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 16px; }
.footer .logo { color: #fff; font-size: .98rem; }
.footer__links { display: flex; flex-wrap: wrap; gap: 22px; }
.footer__links a { color: #9FACD0; }
.footer__links a:hover { color: #fff; }
.footer__disclaimer { margin-top: 16px; padding-top: 16px; border-top: 1px solid rgba(255,255,255,.1); font-size: .76rem; color: #7B87B0; line-height: 1.6; }

/* ---- Modal ---- */
.modal { position: fixed; inset: 0; z-index: 100; display: none; align-items: center; justify-content: center; padding: 20px; }
.modal.is-open { display: flex; }
.modal__overlay { position: absolute; inset: 0; background: rgba(12, 17, 54, .62); backdrop-filter: blur(3px); animation: fade .2s ease; }
.modal__box {
  position: relative; background: var(--white); border-radius: var(--radius-lg); box-shadow: var(--shadow-lg);
  width: 100%; max-width: 460px; padding: clamp(26px, 4vw, 40px); animation: pop .24s cubic-bezier(.2,.8,.2,1); max-height: 92vh; overflow-y: auto;
}
.modal__close { position: absolute; top: 14px; right: 14px; width: 36px; height: 36px; border-radius: 50%; background: var(--bg-soft); display: grid; place-items: center; color: var(--navy); font-size: 1.2rem; }
.modal__close:hover { background: var(--bg-soft-2); }
.modal h3 { margin: 6px 0 6px; font-size: 1.5rem; padding-right: 36px; }
.modal__sub { font-size: .96rem; margin-bottom: 22px; }
.field { margin-bottom: 14px; }
.field label { display: block; font-size: .86rem; font-weight: 600; color: var(--navy); margin-bottom: 6px; }
.field input {
  width: 100%; font-family: inherit; font-size: 1rem; padding: 13px 15px;
  border: 1.5px solid var(--border); border-radius: var(--radius); background: var(--bg-soft); color: var(--text); transition: border .15s ease, background .15s ease;
}
.field input:focus { outline: none; border-color: var(--blue); background: #fff; box-shadow: 0 0 0 3px var(--blue-soft); }
.field input.invalid { border-color: #e0566b; background: #fff5f6; }
.field__err { display: none; color: #d23b53; font-size: .8rem; margin-top: 5px; }
.field input.invalid + .field__err { display: block; }
.hp { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }
.form-consent { margin: 12px 0 0; font-size: .76rem; color: var(--text-muted); text-align: center; line-height: 1.5; }
.form-consent a { color: var(--navy); text-decoration: underline; }
.modal__trust { display: flex; justify-content: center; gap: 16px; margin-top: 14px; font-size: .8rem; color: var(--text-muted); font-weight: 600; }
.form-msg { display: none; font-size: .9rem; padding: 11px 14px; border-radius: var(--radius); margin-bottom: 14px; }
.form-msg.error { display: block; background: #fff0f2; color: #c0334a; }

/* ---- Cookie banner ----
   KX-Vorgabe (2026-07-20, gilt für ALLE Projekte): immer RECHTS unten —
   links liegt er auf Desktop über dem Hero-CTA. */
.cookie { position: fixed; bottom: 18px; right: 18px; left: auto; z-index: 90; width: min(440px, calc(100vw - 36px)); background: var(--white); border: 1px solid var(--border); border-radius: var(--radius-lg); box-shadow: var(--shadow-lg); padding: 22px 24px; display: none; }
.cookie.is-open { display: block; animation: pop .25s ease; }
.cookie h4 { font-size: 1.05rem; margin-bottom: 8px; color: var(--navy); }
.cookie p { font-size: .85rem; }
.cookie a { color: var(--navy); text-decoration: underline; }
.cookie__actions { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 16px; }
.cookie__actions .btn { padding: 11px 18px; font-size: .9rem; }
.cookie__opts { margin: 14px 0 4px; display: none; }
.cookie__opts.is-open { display: block; }
.cookie__opt { display: flex; justify-content: space-between; align-items: center; gap: 12px; padding: 9px 0; border-top: 1px solid var(--border); font-size: .88rem; font-weight: 600; color: var(--navy); }
.cookie__opt small { display: block; font-weight: 400; color: var(--text-muted); }
.switch { position: relative; flex: 0 0 42px; width: 42px; height: 24px; }
.switch input { opacity: 0; width: 0; height: 0; }
.switch .slider { position: absolute; inset: 0; background: var(--bg-soft-2); border-radius: 999px; transition: .2s; }
.switch .slider::before { content: ""; position: absolute; width: 18px; height: 18px; left: 3px; top: 3px; background: #fff; border-radius: 50%; transition: .2s; box-shadow: var(--shadow-sm); }
.switch input:checked + .slider { background: var(--blue); }
.switch input:checked + .slider::before { transform: translateX(18px); }
.switch input:disabled + .slider { opacity: .55; }

/* ---- Sticky mobile CTA ---- */
.sticky-cta { position: fixed; bottom: 0; left: 0; right: 0; z-index: 80; background: rgba(255,255,255,.95); backdrop-filter: blur(10px); border-top: 1px solid var(--border); padding: 11px 16px; display: none; box-shadow: 0 -6px 24px rgba(6,16,64,.1); }
.sticky-cta .btn { width: 100%; }

/* ---- Thank-you page ---- */
.ty { text-align: center; max-width: 760px; margin-inline: auto; padding-block: 44px 4px; }
.ty__icon { width: 76px; height: 76px; border-radius: 50%; background: var(--blue); display: grid; place-items: center; margin: 0 auto 22px; box-shadow: var(--cta-shadow); }
.ty__icon svg { width: 38px; height: 38px; stroke: var(--white); stroke-width: 3.2; fill: none; }
.ty h1 { font-size: clamp(2rem, 4.8vw, 2.9rem); }
.ty p.lead { font-size: 1.1rem; max-width: 520px; margin: 16px auto 0; }
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; max-width: 880px; margin: 32px auto 40px; text-align: left; }
.step { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 22px; box-shadow: var(--shadow-sm); }
.step__no { width: 34px; height: 34px; border-radius: 50%; background: var(--navy); color: #fff; display: grid; place-items: center; font-weight: 700; margin-bottom: 13px; }
.step h3 { font-size: 1.05rem; margin-bottom: 5px; }
.step p { font-size: .93rem; }
/* prominent call / booking block */
.ty__call { background: linear-gradient(178deg, #081340 0%, #1E3563 48%, #4A6C9C 100%); border-radius: 28px; padding: clamp(28px, 4vw, 48px); max-width: 880px; margin: 0 auto; box-shadow: var(--shadow-lg); }
.ty__call h2 { margin-bottom: 12px; color: #fff; }
.ty__call > .center > p { color: #CBD6E8; }
.ty__call > .center > p { max-width: 540px; margin: 0 auto 26px; }
.cal-embed { margin-top: 26px; }
.cal-placeholder { border-radius: var(--radius-lg); background: var(--white); padding: clamp(28px, 5vw, 48px) 24px; text-align: center; box-shadow: var(--shadow-md); }
.cal-placeholder .cal-ico { width: 56px; height: 56px; border-radius: 14px; background: var(--blue-soft); display: grid; place-items: center; margin: 0 auto 16px; }
.cal-placeholder .cal-ico svg { width: 28px; height: 28px; stroke: var(--blue); stroke-width: 2; fill: none; }
.cal-placeholder h3 { font-size: 1.15rem; margin-bottom: 8px; }
.cal-placeholder p { max-width: 460px; margin: 0 auto 20px; font-size: .96rem; }
.cal-note { display: none; font-size: .9rem; color: var(--text-muted); font-weight: 600; }
.calendly-inline-widget { border-radius: var(--radius-lg); overflow: hidden; }

/* ---- Animations ---- */
@keyframes fade { from { opacity: 0; } to { opacity: 1; } }
@keyframes pop { from { opacity: 0; transform: translateY(12px) scale(.98); } to { opacity: 1; transform: none; } }
.reveal { opacity: 0; transform: translateY(22px); transition: opacity .6s ease, transform .6s ease; }
.reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) { .reveal { opacity: 1; transform: none; transition: none; } html { scroll-behavior: auto; } }

/* ---- Responsive ---- */
@media (max-width: 940px) {
  .hero__grid { grid-template-columns: 1fr; gap: 30px; }
  .hero__media { order: -1; justify-content: center; padding-right: 0; }
  .cover-wrap { width: min(280px, 58%); margin-inline: auto; }
}
@media (max-width: 720px) {
  body { font-size: 16px; }
  :root { --section-y: clamp(44px, 11vw, 64px); }
  .header .btn { display: none; }
  .header__inner { height: 56px; justify-content: center; }
  .logo-img { height: 34px; }
  /* Mobile: Hero im normalen Fluss von oben; mehr Luft überm H1 (Eyebrow entfiel) */
  .hero { padding-block: 34px 30px; min-height: 0; justify-content: flex-start; }
  .hero > .container { width: 100%; }
  .hero__grid { flex: 0 0 auto; }
  /* Desktop-Mockup (rechte Spalte) mobil aus - mobiles Mockup steht in der Copy-Reihenfolge */
  .hero__media { display: none; }
  /* Mobile-Reihenfolge (KX-Standard 2026-07-20, gilt generell):
     Headline -> Sub -> Button -> MOCKUP -> Checkmarks -> Button -> Trust */
  .hero__copy { display: flex; flex-direction: column; align-items: stretch; gap: 16px; }
  .hero__copy > * { margin-top: 0; }
  .hero__copy h1 { order: 1; }
  .hero__copy .hero__cta { order: 3; }
  .hero__cover-m { order: 4; display: block; align-self: center; }
  .hero__cover-m img { width: min(180px, 50%); display: block; margin-inline: auto; filter: drop-shadow(0 18px 30px rgba(6,16,64,.22)); }
  .hero__copy .hero__benefits { order: 5; }
  .hero__copy .hero__cta--m { order: 6; display: flex; }
  .hero h1 { font-size: clamp(1.7rem, 7.2vw, 2.1rem); }
  .hero__benefits li { font-size: .95rem; }
  .hero__cta .btn { width: 100%; }
  /* Trust-Banner mobil: kompakte Box, weniger Signale, 1 Zeile */
  .hero__trust { margin-top: 16px; border-top: 0; }
  .hero__trust .container { padding-block: 6px 2px; }
  .trust-row { gap: 5px 12px; background: var(--bg-soft); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 10px 12px; }
  .trust-chip { font-size: .78rem; line-height: 1.25; white-space: nowrap; }
  .t-extra, .trust-chip--hide-mobile, .trust-dot { display: none; }
  .ava { width: 22px; height: 22px; }
  /* alle großen CTAs auf Mobile voll-breit; Haupt-/Subzeile bleiben einzeilig */
  .btn { white-space: normal; }
  .btn--noWrap { white-space: nowrap; } /* Formular-Submit bleibt einzeilig */
  .btn--lg { width: 100%; white-space: nowrap; font-size: .98rem; padding-inline: 14px; }
  .btn__ico { flex-basis: 30px; width: 30px; height: 30px; }
  .btn__sub { font-size: .7rem; }
  .micro-trust { justify-content: center; gap: 6px 16px; font-size: .85rem; }
  .final-panel { border-radius: 20px; }
}
/* Sicherheitsnetz für sehr schmale Screens (~320-400px, z.B. iPhone SE/mini,
   kleinere Android-Geräte): Icon + einzeiliger CTA-Text passt dort nicht mehr
   nebeneinander, vor allem im gepolsterten Final-CTA-Panel. Statt abzuschneiden
   darf der Haupttext hier zweizeilig umbrechen (Sub-Zeile bleibt eigene Zeile). */
@media (max-width: 430px) {
  .btn--lg { white-space: normal; }
  .btn--lg .btn__lines { white-space: normal; }
}
@media (max-width: 720px) {
  /* Sticky-CTA gleitet erst ein, wenn man am Hero vorbei ist (JS toggelt .is-visible) */
  .sticky-cta { display: block; transform: translateY(120%); transition: transform .28s ease; }
  .sticky-cta.is-visible { transform: translateY(0); }
  .steps { grid-template-columns: 1fr; }
  /* kompakter Cookie-Banner auf Mobile, damit der Hero-CTA frei bleibt */
  .cookie { left: 10px; right: 10px; bottom: 10px; max-width: none; padding: 15px 16px; }
  .cookie h4 { font-size: .98rem; margin-bottom: 4px; }
  .cookie p { font-size: .78rem; }
  .cookie__actions { margin-top: 10px; gap: 8px; }
  .cookie__actions .btn { flex: 1 1 0; min-width: 0; padding: 10px 8px; font-size: .82rem; }
  .footer__top { flex-direction: column; align-items: flex-start; gap: 14px; }
  /* kompaktere Final-Headline auf Mobile, Geldbetrag bleibt zusammen (nowrap) */
  .final-cta h2 { font-size: clamp(1.55rem, 6.8vw, 2rem); }
  /* Platz unten, damit die Sticky-CTA den Footer-Text nicht verdeckt */
  .footer { padding-bottom: 88px; }
}
