/* ==========================================================================
   ZAVEON – Landingpage
   Marke der Niederstein Consulting GmbH · Versicherungsmakler § 34d GewO
   Statisches HTML/CSS · gehostet bei All-Inkl
   ========================================================================== */

/* ---------- Fonts (selbst gehostet, kein externer CDN → DSGVO-sicher) ---- */
@font-face {
  font-family: 'Satoshi';
  src: url('../fonts/Satoshi-Regular.woff2') format('woff2');
  font-weight: 400; font-style: normal; font-display: swap;
}
@font-face {
  font-family: 'Satoshi';
  src: url('../fonts/Satoshi-Medium.woff2') format('woff2');
  font-weight: 500; font-style: normal; font-display: swap;
}
@font-face {
  font-family: 'Satoshi';
  src: url('../fonts/Satoshi-Bold.woff2') format('woff2');
  font-weight: 700; font-style: normal; font-display: swap;
}
@font-face {
  font-family: 'Satoshi';
  src: url('../fonts/Satoshi-Black.woff2') format('woff2');
  font-weight: 900; font-style: normal; font-display: swap;
}

/* ---------- Design Tokens ----------------------------------------------- */
:root {
  --azur:        #1B75BC;
  --azur-dark:   #145a92;
  --azur-deep:   #2c5f94;
  --orange:      #F5871F;
  --orange-dark: #db7414;
  --night:       #1A1A2E;
  --night-soft:  #22233a;
  --green:       #27AE60;
  --red:         #E5533D;
  --blue-50:     #E8F1FB;
  --gray-50:     #F4F6F9;
  --gray-200:    #dfe4ec;
  --gray-400:    #98a2b3;
  --gray-600:    #5a6478;
  --white:       #ffffff;

  --font-sans:  'Satoshi', 'Segoe UI', system-ui, -apple-system, Arial, sans-serif;
  --font-serif: Palatino, 'Palatino Linotype', 'Book Antiqua', 'TeX Gyre Pagella', Georgia, serif;

  --radius:    14px;
  --radius-lg: 22px;
  --shadow-sm: 0 2px 8px rgba(26,26,46,.06);
  --shadow:    0 10px 30px rgba(26,26,46,.10);
  --shadow-lg: 0 24px 60px rgba(26,26,46,.16);

  --wrap: 1200px;
  --nav-h: 84px;
}

/* ---------- Reset -------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; scroll-padding-top: calc(var(--nav-h) + 16px); }
body {
  margin: 0;
  font-family: var(--font-sans);
  font-size: 17px;
  line-height: 1.6;
  color: var(--night);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
}
img, svg, video { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; }
h1, h2, h3, h4 { margin: 0 0 .5em; line-height: 1.12; font-weight: 900; letter-spacing: -.02em; }
p { margin: 0 0 1em; }
ul { margin: 0; padding: 0; list-style: none; }

/* ---------- Layout Helpers ---------------------------------------------- */
.wrap { width: 100%; max-width: var(--wrap); margin-inline: auto; padding-inline: 24px; }
.section { padding: 88px 0; }
.section--tight { padding: 56px 0; }
.section--dark  { background: var(--night); color: #fff; }
.section--blue  { background: var(--blue-50); }
.section--gray  { background: var(--gray-50); }
.center { text-align: center; }
.mw-720 { max-width: 720px; margin-inline: auto; }

.eyebrow {
  display: inline-block; font-size: .82rem; font-weight: 700;
  letter-spacing: .16em; text-transform: uppercase; color: var(--orange);
  margin-bottom: 14px;
}
.h1 { font-size: clamp(2.15rem, 4.4vw, 3.4rem); }
.h2 { font-size: clamp(1.9rem, 3.8vw, 3rem); }
.h3 { font-size: clamp(1.15rem, 1.6vw, 1.4rem); }
.accent { font-family: var(--font-serif); font-style: italic; font-weight: 700; color: var(--orange); letter-spacing: 0; }
.lead { font-size: clamp(1.02rem, 1.4vw, 1.18rem); color: var(--gray-600); }
.section--dark .lead { color: rgba(255,255,255,.72); }

/* ---------- Buttons ------------------------------------------------------ */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .55em;
  padding: 15px 30px; border: 0; border-radius: 999px;
  font-weight: 700; font-size: 1rem; letter-spacing: -.01em;
  transition: transform .15s ease, box-shadow .15s ease, background-color .15s ease;
  text-align: center;
}
.btn:focus-visible { outline: 3px solid var(--azur); outline-offset: 3px; }
.btn--primary { background: var(--orange); color: #fff; box-shadow: 0 6px 18px rgba(245,135,31,.32); }
.btn--primary:hover { background: var(--orange-dark); transform: translateY(-2px); box-shadow: 0 10px 26px rgba(245,135,31,.38); }
.btn--ghost { background: rgba(255,255,255,.12); color: #fff; border: 1.5px solid rgba(255,255,255,.35); }
.btn--ghost:hover { background: rgba(255,255,255,.2); }
.btn--block { width: 100%; }
.btn--lg { padding: 18px 38px; font-size: 1.06rem; }

/* ---------- Navigation --------------------------------------------------- */
.nav {
  position: sticky; top: 0; z-index: 900;
  background: transparent; border-bottom: 1px solid transparent;
  transition: background-color .25s ease, border-color .25s ease, box-shadow .25s ease;
}
.nav.is-solid {
  background: rgba(255,255,255,.95); backdrop-filter: blur(10px);
  border-bottom-color: var(--gray-200);
}
/* Über dem dunklen Hero stehen die Links weiß */
.nav:not(.is-solid) .nav__links a { color: #fff; }
.nav:not(.is-solid) .nav__burger span { background: #fff; }
.nav__inner { display: flex; align-items: center; gap: 24px; height: var(--nav-h); }
.nav__logo { display: flex; align-items: center; flex: 0 0 auto; }
.nav__logo img { height: 42px; width: auto; }
.nav__links { display: flex; gap: 30px; margin-inline: auto; }
.nav__links a { font-weight: 500; color: var(--night); padding: 6px 0; position: relative; transition: color .2s ease; }
.nav__links a::after {
  content: ''; position: absolute; left: 0; right: 100%; bottom: 0; height: 2px;
  background: var(--orange); transition: right .22s ease;
}
.nav__links a:hover::after { right: 0; }
.nav__cta { flex: 0 0 auto; }
.nav__burger {
  display: none; background: none; border: 0; padding: 8px; margin-left: auto;
  width: 44px; height: 44px;
}
.nav__burger span { display: block; height: 2px; background: var(--night); margin: 5px 0; border-radius: 2px; transition: .2s; }

@media (max-width: 940px) {
  :root { --nav-h: 72px; }
  .nav:not(.is-solid) .nav__links.is-open a { color: var(--night); }
  .nav__links {
    position: fixed; inset: var(--nav-h) 0 auto 0; background: #fff;
    flex-direction: column; gap: 0; padding: 8px 24px 24px;
    border-bottom: 1px solid var(--gray-200); box-shadow: var(--shadow);
    display: none;
  }
  .nav__links.is-open { display: flex; }
  .nav__links a { padding: 14px 0; border-bottom: 1px solid var(--gray-200); font-size: 1.05rem; }
  .nav__cta { display: none; }
  .nav__burger { display: block; }
  .nav__logo img { height: 34px; }
}

/* ---------- Hero: dunkelblau, Maskottchen als Motiv --------------------- */
.hero {
  background:
    radial-gradient(120% 90% at 72% 45%, #10315e 0%, #0a2145 42%, #061530 100%);
  color: #fff; position: relative; overflow: hidden;
  margin-top: calc(var(--nav-h) * -1);
  padding: calc(var(--nav-h) + 24px) 0 56px;
}
.hero__grid {
  display: grid; grid-template-columns: 1.04fr .96fr; gap: 48px; align-items: center;
  position: relative; z-index: 1;
}
.hero__text { padding: 18px 0 0; }

.hero__badge {
  display: inline-flex; align-items: center; gap: 12px;
  background: rgba(255,255,255,.09); border: 1px solid rgba(255,255,255,.18);
  padding: 7px 20px 7px 8px; border-radius: 999px;
  font-size: .76rem; font-weight: 700; letter-spacing: .14em; text-transform: uppercase;
  color: rgba(255,255,255,.88); margin-bottom: 26px;
}
.hero__badge-faces { display: flex; flex: 0 0 auto; }
.hero__badge-faces img {
  width: 30px; height: 30px; border-radius: 50%; object-fit: cover; object-position: top center;
  background: #fff; border: 1.5px solid rgba(255,255,255,.85); margin-left: -10px;
}
.hero__badge-faces img:first-child { margin-left: 0; }

.hero h1 {
  color: #fff; margin-bottom: 22px; max-width: 13ch;
  font-size: clamp(2.4rem, 5.2vw, 4.1rem); line-height: 1.02; letter-spacing: -.035em;
}
.hero__sub {
  color: rgba(255,255,255,.78); font-size: 1.08rem; max-width: 46ch; margin-bottom: 30px;
}
.hero__sub strong { color: var(--orange); font-weight: 700; }

.hero__cta { display: flex; align-items: center; gap: 26px; flex-wrap: wrap; margin-bottom: 40px; }
.hero__link { font-weight: 600; color: rgba(255,255,255,.9); font-size: 1rem; }
.hero__link:hover { color: var(--orange); }

/* USP als Pillen */
.hero__usp { display: flex; flex-wrap: wrap; gap: 10px; }
.hero__usp li {
  display: inline-flex; align-items: center; gap: 9px;
  padding: 9px 17px 9px 13px; border-radius: 999px;
  background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.16);
  color: rgba(255,255,255,.9); font-size: .88rem; font-weight: 600; line-height: 1;
  backdrop-filter: blur(6px);
}
.hero__usp-dot {
  width: 8px; height: 8px; border-radius: 50%; flex: 0 0 auto;
  background: var(--orange); box-shadow: 0 0 0 4px rgba(245,135,31,.22);
}

/* Formularkarte mit Ronny & JoJo, die sich darauf abstützen */
.hero__form { align-self: center; padding: 0; }
.hero__karte { position: relative; padding-top: 104px; }
.hero__form .leadcard { max-width: 100%; padding-top: 54px; position: relative; z-index: 2; }

.hero__mascot {
  position: absolute; z-index: 3; width: auto; height: 190px;
  pointer-events: none; user-select: none;
  filter: drop-shadow(0 16px 26px rgba(0,0,0,.5));
}
.hero__mascot--ronny { left: -30px;  bottom: calc(100% - 148px); }
.hero__mascot--jojo  { right: -14px; bottom: calc(100% - 140px); height: 172px; }

.bubble {
  position: absolute; right: 4%; top: 9%; display: none;
  background: #fff; color: var(--night); border-radius: 14px;
  padding: 14px 18px; font-weight: 700; font-size: .95rem; line-height: 1.25;
  box-shadow: 0 12px 30px rgba(0,0,0,.35);
}
.bubble::before {
  content: ''; position: absolute; left: -9px; top: 20px;
  border: 9px solid transparent; border-right-color: #fff; border-left: 0;
}

@media (max-width: 1040px) {
  .hero__usp li { padding: 0 18px; font-size: .84rem; }
}
@media (max-width: 940px) {
  .hero { padding-top: calc(var(--nav-h) + 18px); padding-bottom: 44px; }
  .hero__grid { grid-template-columns: 1fr; gap: 0; }
  .hero__text { padding-bottom: 0; }
  .hero h1 { max-width: none; }
  .hero__sub { max-width: none; }
  .hero__usp li { border-left: 0; padding: 0 20px 0 0; }
  /* Auf dem Handy zuerst das Formular, die Maskottchen darunter */
  .hero__text { display: contents; }
  .hero__badge { order: 1; }
  .hero h1     { order: 2; }
  .hero__sub   { order: 3; }
  .hero__usp   { order: 4; margin-bottom: 24px; }
  .hero__form  { order: 5; padding: 0; }
  .hero__karte { padding-top: 96px; }
  .hero__mascot { height: 168px; }
  .hero__mascot--ronny { left: -18px; bottom: calc(100% - 124px); }
  .hero__mascot--jojo  { right: -10px; bottom: calc(100% - 120px); height: 152px; }
  .bubble { right: 4%; top: 7%; font-size: .85rem; padding: 11px 14px; }
}
@media (max-width: 560px) {
  .hero__usp { gap: 12px 0; }
  .hero__usp li { flex: 0 0 100%; }
}

/* ---------- Logo auf weißer Platte ------------------------------------- */
.nav:not(.is-solid) .nav__logo {
  background: #fff; border-radius: 12px; padding: 7px 15px;
  box-shadow: 0 2px 10px rgba(0,0,0,.18);
}

/* ---------- Lead-Formular (Karte) ---------------------------------------- */
.leadcard {
  background: #fff; color: var(--night);
  border-radius: var(--radius-lg); box-shadow: var(--shadow-lg);
  padding: 30px; position: relative;
}
.leadcard__head { margin-bottom: 20px; }
.leadcard__head h2 { font-size: 1.4rem; margin-bottom: 6px; }
.leadcard__head p { font-size: .95rem; color: var(--gray-600); margin: 0; }
.leadcard--inline { max-width: 620px; margin-inline: auto; }

.field { margin-bottom: 14px; }
.field label { display: block; font-size: .88rem; font-weight: 700; margin-bottom: 6px; }
.field .req { color: var(--orange); }
.field input, .field select, .field textarea {
  width: 100%; padding: 13px 15px; font: inherit; font-size: 1rem;
  border: 1.5px solid var(--gray-200); border-radius: 11px; background: #fff; color: var(--night);
  transition: border-color .15s ease, box-shadow .15s ease;
}
.field textarea { min-height: 90px; resize: vertical; }
.field input:focus, .field select:focus, .field textarea:focus {
  outline: 0; border-color: var(--azur); box-shadow: 0 0 0 3px rgba(27,117,188,.14);
}
.field input[aria-invalid="true"], .field select[aria-invalid="true"] { border-color: var(--red); }
.field__error { display: none; color: var(--red); font-size: .82rem; margin-top: 5px; font-weight: 500; }
.field.has-error .field__error { display: block; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
@media (max-width: 520px) { .field-row { grid-template-columns: 1fr; gap: 0; } }

/* Honeypot – für Menschen unsichtbar, für Bots sichtbar */
.hp { position: absolute !important; left: -9999px !important; width: 1px; height: 1px; overflow: hidden; }

.consent-box { display: flex; gap: 11px; align-items: flex-start; margin: 16px 0 18px; }
.consent-box input { margin-top: 3px; width: 18px; height: 18px; flex: 0 0 auto; accent-color: var(--azur); }
.consent-box label { font-size: .81rem; line-height: 1.5; color: var(--gray-600); }
.consent-box a { color: var(--azur); text-decoration: underline; }

.form-note { font-size: .78rem; color: var(--gray-400); text-align: center; margin: 12px 0 0; }
.form-status { display: none; padding: 13px 16px; border-radius: 11px; font-size: .92rem; font-weight: 500; margin-bottom: 14px; }
.form-status.is-error   { display: block; background: #fdecea; color: #a32b17; }
.form-status.is-loading { display: block; background: var(--blue-50); color: var(--azur-dark); }

/* ---------- Logo-Band als Laufband --------------------------------------- */
.logoband { padding: 46px 0; border-bottom: 1px solid var(--gray-200); overflow: hidden; position: relative; }
.logoband__title { text-align: center; font-size: 1.12rem; font-weight: 700; margin-bottom: 28px; }

.logoband__marquee {
  display: flex; width: max-content;
  animation: logo-lauf 48s linear infinite;
  /* an den Rändern sanft ausblenden */
  will-change: transform;
}
.logoband:hover .logoband__marquee { animation-play-state: paused; }

.logoband__track {
  display: flex; align-items: center; gap: 56px; padding-right: 56px; flex: 0 0 auto;
}
.logoband__track img {
  height: 34px; width: auto; max-width: none; opacity: .6; filter: grayscale(1);
  transition: opacity .2s ease, filter .2s ease;
}
.logoband__track img:hover { opacity: 1; filter: none; }

@keyframes logo-lauf {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* Weiche Kanten links und rechts, über die volle Seitenbreite */
.logoband::before,
.logoband::after {
  content: ''; position: absolute; top: 0; bottom: 0; width: 110px; z-index: 2; pointer-events: none;
}
.logoband::before { left: 0;  background: linear-gradient(90deg,  #fff 15%, rgba(255,255,255,0)); }
.logoband::after  { right: 0; background: linear-gradient(270deg, #fff 15%, rgba(255,255,255,0)); }

@media (max-width: 640px) {
  .logoband__track img { height: 26px; }
  .logoband__track { gap: 36px; padding-right: 36px; }
  .logoband__marquee { animation-duration: 34s; }
}

/* Wer Bewegung reduziert haben will, bekommt ein ruhiges Band */
@media (prefers-reduced-motion: reduce) {
  .logoband__marquee { animation: none; flex-wrap: wrap; width: auto; justify-content: center; }
  .logoband__track:last-child { display: none; }
  .logoband__track { flex-wrap: wrap; justify-content: center; gap: 24px 40px; padding-right: 0; }
}

/* ---------- Karten-Grids -------------------------------------------------- */
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 26px; }
@media (max-width: 940px) { .grid-3 { grid-template-columns: 1fr; } .grid-2 { grid-template-columns: 1fr; } }

.card {
  background: #fff; border: 1px solid var(--gray-200); border-radius: var(--radius);
  padding: 30px; box-shadow: var(--shadow-sm);
}
.section--dark .card { background: var(--night-soft); border-color: rgba(255,255,255,.10); box-shadow: none; }
.section--dark .card p { color: rgba(255,255,255,.66); }
.card__num { font-size: .8rem; font-weight: 700; letter-spacing: .13em; text-transform: uppercase; color: var(--red); margin-bottom: 10px; }
.card__icon {
  width: 46px; height: 46px; border-radius: 12px; display: grid; place-items: center;
  background: rgba(229,83,61,.12); margin-bottom: 16px;
}
.card h3 { font-size: 1.28rem; margin-bottom: 12px; }
.card p { margin: 0; color: var(--gray-600); font-size: .97rem; }

/* ---------- Lösung: Bild + Checkliste ------------------------------------- */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; }
@media (max-width: 940px) { .split { grid-template-columns: 1fr; gap: 32px; } }
.split__media { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow); aspect-ratio: 4/3; background: linear-gradient(135deg, #cfe0f3, #eaf2fb); }
.split__media img { width: 100%; height: 100%; object-fit: cover; }

.checklist { display: grid; gap: 14px; }
.checkitem {
  background: #fff; border-radius: var(--radius); padding: 20px 22px;
  box-shadow: var(--shadow-sm); display: flex; gap: 14px; align-items: flex-start;
}
.checkitem__tick {
  flex: 0 0 auto; width: 26px; height: 26px; border-radius: 8px;
  background: var(--green); display: grid; place-items: center; margin-top: 2px;
}
.checkitem h3 { font-size: 1.05rem; margin: 0 0 4px; }
.checkitem p { margin: 0; font-size: .93rem; color: var(--gray-600); }

/* ---------- Stats --------------------------------------------------------- */
.stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
@media (max-width: 860px) { .stats { grid-template-columns: 1fr; } }
.stat { text-align: center; padding: 32px 24px; background: #fff; border-radius: var(--radius); box-shadow: var(--shadow-sm); }
.stat__num { font-size: clamp(2.4rem, 5vw, 3.4rem); font-weight: 900; color: var(--azur); line-height: 1; letter-spacing: -.03em; }
.stat h3 { font-size: 1.05rem; margin: 14px 0 8px; }
.stat p { margin: 0; font-size: .93rem; color: var(--gray-600); }

/* ---------- Team ---------------------------------------------------------- */
.team { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; max-width: 900px; margin-inline: auto; }
@media (max-width: 940px) { .team { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 520px) { .team { grid-template-columns: 1fr; } }
.member { text-align: center; }
.member__photo {
  aspect-ratio: 1; border-radius: var(--radius-lg); overflow: hidden; margin-bottom: 14px;
  background: linear-gradient(135deg, var(--blue-50), #d7e6f7);
}
.member__photo img { width: 100%; height: 100%; object-fit: cover; }
.member h3 { font-size: 1.1rem; margin-bottom: 3px; }
.member p { margin: 0; font-size: .9rem; color: var(--gray-600); }

/* ---------- Prozess ------------------------------------------------------- */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; counter-reset: step; }
@media (max-width: 860px) { .steps { grid-template-columns: 1fr; } }
.step { background: #fff; border-radius: var(--radius); padding: 26px; box-shadow: var(--shadow-sm); }
.step__no {
  width: 38px; height: 38px; border-radius: 50%; background: var(--blue-50); color: var(--azur);
  display: grid; place-items: center; font-weight: 900; margin-bottom: 14px;
}
.step h3 { font-size: 1.08rem; margin-bottom: 6px; }
.step p { margin: 0; font-size: .93rem; color: var(--gray-600); }

/* ---------- FAQ ----------------------------------------------------------- */
.faq { max-width: 800px; margin-inline: auto; }
.faq details {
  background: #fff; border: 1px solid var(--gray-200); border-radius: var(--radius);
  margin-bottom: 12px; overflow: hidden;
}
.faq summary {
  list-style: none; cursor: pointer; padding: 20px 56px 20px 24px;
  font-weight: 700; font-size: 1.04rem; position: relative;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: ''; position: absolute; right: 24px; top: 50%; width: 11px; height: 11px;
  border-right: 2.5px solid var(--azur); border-bottom: 2.5px solid var(--azur);
  transform: translateY(-70%) rotate(45deg); transition: transform .2s ease;
}
.faq details[open] summary::after { transform: translateY(-30%) rotate(-135deg); }
.faq summary:focus-visible { outline: 3px solid var(--azur); outline-offset: -3px; }
.faq__body { padding: 0 24px 22px; color: var(--gray-600); font-size: .97rem; }
.faq__body p:last-child { margin: 0; }

/* ---------- CTA-Band ------------------------------------------------------ */
.ctaband {
  background: linear-gradient(118deg, #2a5c8f, var(--azur) 60%, #4a90d9);
  color: #fff; border-radius: var(--radius-lg); padding: 56px 40px; text-align: center;
}
.ctaband h2 { color: #fff; }
.ctaband .lead { color: rgba(255,255,255,.85); }
.ctaband__points { display: flex; flex-wrap: wrap; justify-content: center; gap: 12px 28px; margin: 26px 0 30px; }
.ctaband__points li { display: flex; align-items: center; gap: 8px; font-size: .95rem; font-weight: 500; }
@media (max-width: 640px) { .ctaband { padding: 40px 22px; } }

/* ---------- Footer -------------------------------------------------------- */
.footer {
  position: relative; overflow: hidden;
  background: radial-gradient(90% 120% at 15% 0%, #12335f 0%, #0a1c38 45%, #06101f 100%);
  color: rgba(255,255,255,.66); padding: 72px 0 30px; font-size: .93rem;
}
.footer::before {
  content: ''; position: absolute; inset: 0 0 auto 0; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(245,135,31,.55), transparent);
}
.footer a { transition: color .16s ease; }
.footer a:hover { color: var(--orange); }

/* Kopfzeile: Marke links, Handlungsaufforderung rechts */
.footer__top {
  display: grid; grid-template-columns: 1.15fr .85fr; gap: 48px;
  padding-bottom: 44px; margin-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,.10);
}
.footer__brand img { height: 38px; width: auto; margin-bottom: 18px; }
.footer__brand p { max-width: 42ch; margin: 0 0 20px; line-height: 1.65; }

.footer__social { display: flex; gap: 10px; }
.footer__social a {
  width: 40px; height: 40px; border-radius: 12px; color: #fff;
  background: rgba(255,255,255,.07); border: 1px solid rgba(255,255,255,.12);
  display: grid; place-items: center; transition: .18s;
}
.footer__social a:hover { background: var(--orange); border-color: var(--orange); color: #fff; transform: translateY(-2px); }

.footer__cta {
  position: relative; display: block; align-self: start;
  padding: 26px 62px 26px 28px; border-radius: var(--radius-lg);
  background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.14);
  transition: background-color .18s ease, border-color .18s ease, transform .18s ease;
}
.footer__cta:hover { background: rgba(245,135,31,.12); border-color: rgba(245,135,31,.5); transform: translateY(-2px); }
.footer__cta-label {
  display: block; font-size: .72rem; font-weight: 700; letter-spacing: .16em;
  text-transform: uppercase; color: var(--orange); margin-bottom: 8px;
}
.footer__cta strong {
  display: block; color: #fff; font-size: 1.22rem; font-weight: 900;
  letter-spacing: -.02em; line-height: 1.2; margin-bottom: 7px;
}
.footer__cta-sub { display: block; font-size: .85rem; color: rgba(255,255,255,.55); }
.footer__cta-pfeil {
  position: absolute; right: 24px; top: 50%; transform: translateY(-50%);
  width: 38px; height: 38px; border-radius: 50%; display: grid; place-items: center;
  background: var(--orange); color: #fff; font-weight: 700;
  transition: transform .18s ease;
}
.footer__cta:hover .footer__cta-pfeil { transform: translateY(-50%) translateX(4px); }

/* Spalten */
.footer__cols { display: grid; grid-template-columns: repeat(4, 1fr); gap: 36px; margin-bottom: 40px; }
.footer h4 {
  color: #fff; font-size: .74rem; letter-spacing: .16em; text-transform: uppercase;
  font-weight: 700; margin-bottom: 16px;
}
.footer li { margin-bottom: 11px; line-height: 1.45; }
.footer__facts li { position: relative; padding-left: 18px; color: rgba(255,255,255,.6); }
.footer__facts li::before {
  content: ''; position: absolute; left: 0; top: .55em;
  width: 6px; height: 6px; border-radius: 50%; background: var(--orange);
}

.footer__pflicht {
  font-size: .8rem; line-height: 1.65; color: rgba(255,255,255,.45);
  padding: 20px 22px; border-radius: var(--radius);
  background: rgba(255,255,255,.04); border: 1px solid rgba(255,255,255,.08);
  margin: 0 0 22px;
}
.footer__pflicht strong { color: rgba(255,255,255,.72); }
.footer__pflicht a { text-decoration: underline; }

.footer__legal {
  border-top: 1px solid rgba(255,255,255,.10); padding-top: 22px;
  display: flex; flex-wrap: wrap; gap: 10px 24px; justify-content: space-between;
  font-size: .8rem; color: rgba(255,255,255,.38);
}

@media (max-width: 940px) {
  .footer__top { grid-template-columns: 1fr; gap: 32px; }
  .footer__cols { grid-template-columns: 1fr 1fr; gap: 30px; }
}
@media (max-width: 520px) {
  .footer { padding-top: 56px; }
  .footer__cols { grid-template-columns: 1fr; }
  .footer__cta { padding: 22px 58px 22px 22px; }
}

/* ---------- Sticky Mobile-CTA --------------------------------------------- */
.mobile-cta {
  display: none; position: fixed; left: 0; right: 0; bottom: 0; z-index: 880;
  padding: 12px 16px calc(12px + env(safe-area-inset-bottom));
  background: rgba(255,255,255,.96); backdrop-filter: blur(10px);
  border-top: 1px solid var(--gray-200);
}
@media (max-width: 940px) { .mobile-cta { display: block; } body { padding-bottom: 76px; } }

/* ---------- Consent-Banner ------------------------------------------------ */
.cc {
  position: fixed; left: 16px; right: 16px; bottom: 16px; z-index: 9999;
  background: #fff; color: var(--night); border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg); padding: 26px; max-width: 560px;
  display: none;
}
.cc.is-visible { display: block; }
.cc h2 { font-size: 1.2rem; margin-bottom: 8px; }
.cc p { font-size: .89rem; color: var(--gray-600); margin-bottom: 16px; }
.cc a { color: var(--azur); text-decoration: underline; }
.cc__actions { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.cc__actions .btn { padding: 13px 18px; font-size: .95rem; }
.cc__btn-deny { background: var(--gray-50); color: var(--night); border: 1.5px solid var(--gray-200); }
.cc__btn-deny:hover { background: var(--gray-200); }
.cc__settings { background: none; border: 0; color: var(--gray-600); font-size: .84rem; text-decoration: underline; margin-top: 14px; padding: 0; display: block; margin-inline: auto; }
.cc__cats { display: none; margin: 4px 0 18px; border-top: 1px solid var(--gray-200); padding-top: 16px; }
.cc__cats.is-open { display: block; }
.cc__cat { display: flex; gap: 12px; align-items: flex-start; margin-bottom: 14px; }
.cc__cat input { margin-top: 3px; width: 18px; height: 18px; accent-color: var(--azur); flex: 0 0 auto; }
.cc__cat strong { display: block; font-size: .92rem; }
.cc__cat span { font-size: .82rem; color: var(--gray-600); }
@media (max-width: 940px) { .cc { bottom: 88px; } }
@media (max-width: 560px) { .cc { padding: 20px; } .cc__actions { grid-template-columns: 1fr; } }

/* ---------- Rechtstext-Seiten --------------------------------------------- */
.legal { max-width: 820px; margin-inline: auto; }
.legal h1 { font-size: clamp(2rem, 4vw, 2.8rem); margin-bottom: 28px; }
.legal h2 { font-size: 1.35rem; margin: 40px 0 12px; }
.legal h3 { font-size: 1.08rem; margin: 26px 0 8px; }
.legal p, .legal li { color: var(--gray-600); font-size: .97rem; }
.legal ul { list-style: disc; padding-left: 22px; margin-bottom: 1em; }
.legal li { margin-bottom: 6px; }
.legal a { color: var(--azur); text-decoration: underline; }
.legal table { width: 100%; border-collapse: collapse; margin-bottom: 1em; font-size: .92rem; }
.legal th, .legal td { text-align: left; padding: 10px 12px; border-bottom: 1px solid var(--gray-200); }

/* ---------- Danke-Seite ---------------------------------------------------- */
.thanks { min-height: 62vh; display: grid; place-items: center; text-align: center; padding: 72px 0; }
.thanks__icon {
  width: 84px; height: 84px; border-radius: 50%; background: rgba(39,174,96,.12);
  display: grid; place-items: center; margin: 0 auto 26px;
}

/* ---------- Motion-Preference --------------------------------------------- */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; transition-duration: .01ms !important; }
}

/* ==========================================================================
   Nachtrag: Bild-Elemente aus dem Original
   ========================================================================== */

/* ---------- Hero: Foto über der Formularkarte ---------------------------- */
.hero__visual { display: flex; flex-direction: column; }
.hero__photo {
  width: 100%; aspect-ratio: 16/9; object-fit: cover;
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
  border: 1px solid rgba(255,255,255,.28); border-bottom: 0;
  background: rgba(255,255,255,.10);
}
/* Karte schließt bündig an das Foto an */
.hero__visual .leadcard { border-radius: 0 0 var(--radius-lg) var(--radius-lg); }
/* Fehlt das Foto, bleibt die Karte trotzdem rundum abgerundet */
.hero__visual .hero__photo[style*="display: none"] + .leadcard { border-radius: var(--radius-lg); }

@media (max-width: 940px) {
  .hero__photo { aspect-ratio: 2/1; }
}

/* ---------- Bewertungs-Zeile unter dem Formular -------------------------- */
.review {
  display: flex; align-items: center; gap: 12px; justify-content: center;
  margin-top: 16px; padding-top: 16px; border-top: 1px solid var(--gray-200);
  flex-wrap: wrap;
}
.review__faces { display: flex; }
.review__faces img {
  width: 34px; height: 34px; border-radius: 50%; object-fit: cover;
  border: 2px solid #fff; margin-left: -10px; background: var(--blue-50);
}
.review__faces img:first-child { margin-left: 0; }
.review__text { font-size: .84rem; color: var(--gray-600); line-height: 1.35; }
.review__text strong { color: var(--night); }
.review__stars { color: var(--orange); letter-spacing: 1px; display: block; font-size: .95rem; }

/* ---------- Abschluss-CTA: Text + Bild ----------------------------------- */
.ctaband--split {
  display: grid; grid-template-columns: 1fr 1fr; gap: 44px;
  align-items: center; text-align: left; padding: 48px;
}
.ctaband--split .ctaband__points { justify-content: flex-start; margin: 24px 0 28px; }
.ctaband--split .ctaband__points li { flex: 0 0 100%; }
.ctaband__media { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); }
.ctaband__media img { width: 100%; height: 100%; object-fit: cover; aspect-ratio: 4/3; }

@media (max-width: 860px) {
  .ctaband--split { grid-template-columns: 1fr; gap: 28px; padding: 32px 22px; text-align: center; }
  .ctaband--split .ctaband__points { justify-content: center; }
  .ctaband--split .ctaband__points li { flex: 0 0 auto; }
  .ctaband__media { order: -1; }
}

/* ==========================================================================
   60-Sekunden-Check
   ========================================================================== */
.check__head { margin-bottom: 20px; }
.check__bar {
  height: 5px; border-radius: 99px; background: var(--gray-200);
  overflow: hidden; margin-bottom: 9px;
}
.check__bar span {
  display: block; height: 100%; width: 0;
  background: linear-gradient(90deg, var(--azur), var(--orange));
  border-radius: 99px; transition: width .32s cubic-bezier(.4,0,.2,1);
}
.check__count { margin: 0; font-size: .78rem; font-weight: 700; letter-spacing: .07em;
  text-transform: uppercase; color: var(--gray-400); }

.check__frage { font-size: 1.28rem; margin-bottom: 6px; }
.check__hint  { font-size: .89rem; color: var(--gray-600); margin-bottom: 18px; }

.check__opts { display: grid; gap: 10px; margin-bottom: 16px; }
.check__opts--grid { grid-template-columns: 1fr 1fr; }
@media (max-width: 420px) { .check__opts--grid { grid-template-columns: 1fr; } }

.check__opt {
  display: flex; align-items: center; gap: 13px; width: 100%; text-align: left;
  padding: 15px 17px; border: 1.5px solid var(--gray-200); border-radius: 13px;
  background: #fff; color: var(--night);
  transition: border-color .15s ease, background-color .15s ease, transform .12s ease;
}
.check__opt:hover { border-color: var(--azur); background: var(--blue-50); }
.check__opt:active { transform: scale(.985); }
.check__opt:focus-visible { outline: 3px solid var(--azur); outline-offset: 2px; }
.check__opt.is-on { border-color: var(--azur); background: var(--blue-50); box-shadow: 0 0 0 3px rgba(27,117,188,.12); }
.check__opt-icon { font-size: 1.35rem; line-height: 1; flex: 0 0 auto; }
.check__opt-text { display: flex; flex-direction: column; gap: 2px; flex: 1; }
.check__opt-text strong { font-size: .99rem; font-weight: 700; letter-spacing: -.01em; }
.check__opt-text span   { font-size: .82rem; color: var(--gray-600); }
.check__tick {
  flex: 0 0 auto; width: 22px; height: 22px; border-radius: 7px;
  border: 1.5px solid var(--gray-200); display: grid; place-items: center;
  color: transparent; transition: .15s;
}
.check__opt.is-on .check__tick { background: var(--azur); border-color: var(--azur); color: #fff; }

.check__foot { margin-top: 14px; text-align: center; min-height: 22px; }
.check__back {
  background: none; border: 0; color: var(--gray-600); font-size: .85rem;
  text-decoration: underline; padding: 4px 8px;
}
.check__back:hover { color: var(--azur); }
.check__note { margin: 0; font-size: .78rem; color: var(--gray-400); }

/* ---------- Ergebnis ------------------------------------------------------ */
.check__result {
  background: var(--blue-50); border-radius: var(--radius);
  padding: 22px; margin-bottom: 20px; border: 1px solid rgba(27,117,188,.14);
}
.check__result-badge {
  display: inline-block; font-size: .72rem; font-weight: 700; letter-spacing: .12em;
  text-transform: uppercase; color: var(--azur); margin-bottom: 8px;
}
.check__result-titel { font-size: 1.2rem; margin-bottom: 12px; }
.check__preis {
  display: flex; align-items: baseline; gap: 9px; flex-wrap: wrap;
  padding: 13px 16px; background: #fff; border-radius: 11px; margin-bottom: 13px;
}
.check__preis strong { font-size: 1.75rem; font-weight: 900; color: var(--azur); letter-spacing: -.03em; }
.check__preis span   { font-size: .87rem; color: var(--gray-600); }
.check__result-text { font-size: .93rem; color: var(--gray-600); margin: 0; }
.check__result-text em { font-style: italic; }
.check__disclaimer { font-size: .74rem; color: var(--gray-400); margin: 10px 0 0; line-height: 1.5; }

.check__form-intro { font-size: .95rem; font-weight: 700; margin-bottom: 14px; }

/* ==========================================================================
   Kostenschock-Sektion
   ========================================================================== */
.kosten { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
@media (max-width: 940px) { .kosten { grid-template-columns: 1fr; } }
.kostenkarte {
  background: #fff; border: 1px solid var(--gray-200); border-radius: var(--radius);
  padding: 26px; box-shadow: var(--shadow-sm);
}
.kostenkarte h3 { font-size: 1.12rem; margin-bottom: 16px; }
.kostenkarte__zeile {
  display: flex; justify-content: space-between; align-items: baseline; gap: 12px;
  padding: 9px 0; border-bottom: 1px dashed var(--gray-200); font-size: .93rem;
}
.kostenkarte__zeile span   { color: var(--gray-600); }
.kostenkarte__zeile strong { font-weight: 700; white-space: nowrap; }
.kostenkarte__zeile strong.ok { color: var(--green); }
.kostenkarte__zeile--total {
  border-bottom: 0; margin-top: 6px; padding-top: 14px;
  border-top: 2px solid var(--night);
}
.kostenkarte__zeile--total span   { color: var(--night); font-weight: 700; }
.kostenkarte__zeile--total strong { font-size: 1.45rem; color: var(--red); letter-spacing: -.02em; }
.kosten__fussnote {
  max-width: 760px; margin: 26px auto 0; text-align: center;
  font-size: .82rem; color: var(--gray-400); line-height: 1.6;
}

/* ---------- Hinweis-Box Kieferorthopädie --------------------------------- */
.kfo-box {
  display: flex; gap: 18px; align-items: flex-start;
  background: #fff; border: 1px solid var(--gray-200); border-left: 4px solid var(--orange);
  border-radius: var(--radius); padding: 24px 26px; margin-top: 22px; box-shadow: var(--shadow-sm);
}
.kfo-box__icon { font-size: 1.8rem; line-height: 1; flex: 0 0 auto; }
.kfo-box h3 { font-size: 1.08rem; margin-bottom: 8px; }
.kfo-box p  { margin: 0; font-size: .94rem; color: var(--gray-600); }
@media (max-width: 560px) { .kfo-box { flex-direction: column; gap: 10px; padding: 20px; } }

/* ---------- Kostenkarten: Stufen-Label und Fußnote ----------------------- */
.kostenkarte__stufe {
  font-size: .72rem; font-weight: 700; letter-spacing: .13em; text-transform: uppercase;
  color: var(--azur); margin: 0 0 6px;
}
.kostenkarte__note {
  margin: 14px 0 0; font-size: .8rem; line-height: 1.55; color: var(--gray-400);
}

/* ==========================================================================
   Personas – "Für wen sich das lohnt"
   ========================================================================== */
.personas { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.persona {
  background: #fff; border: 1px solid var(--gray-200); border-radius: var(--radius-lg);
  overflow: hidden; box-shadow: var(--shadow-sm); display: flex; flex-direction: column;
  transition: transform .18s ease, box-shadow .18s ease;
}
.persona:hover { transform: translateY(-3px); box-shadow: var(--shadow); }
.persona__media { aspect-ratio: 4/3; background: linear-gradient(135deg,#dbe8f6,#b9d2ec); }
.persona__media img { width: 100%; height: 100%; object-fit: cover; }
.persona__text { padding: 26px 26px 30px; }
.persona__text h3 { font-size: 1.14rem; margin-bottom: 10px; line-height: 1.3; }
.persona__text p  { margin: 0; color: var(--gray-600); font-size: .93rem; }

@media (max-width: 940px) {
  .personas { grid-template-columns: 1fr; }
  .persona__media { aspect-ratio: 16/9; }
}

/* ---------- Bild in der Fehler-Sektion ---------------------------------- */
.fehler-bild { max-width: 780px; margin: 0 auto 44px; }
.fehler-bild img {
  width: 100%; border-radius: var(--radius-lg); aspect-ratio: 4/3; object-fit: cover;
  background: rgba(255,255,255,.06);
}
.fehler-bild p {
  margin: 14px 0 0; text-align: center; font-size: .88rem;
  color: rgba(255,255,255,.5); font-style: italic;
}

/* ==========================================================================
   Ronny & JoJo
   ========================================================================== */

/* ---------- Splash-Label: schräge Sticker aus der Maskottchen-Welt ------- */
.splash {
  display: inline-block; position: relative;
  background: var(--night); color: #fff;
  font-size: .8rem; font-weight: 800; letter-spacing: .06em; text-transform: uppercase;
  padding: 7px 16px 8px; border-radius: 3px 12px 4px 14px;
  transform: rotate(-1.6deg); margin-bottom: 16px;
}
.section--dark .splash { background: #fff; color: var(--night); }
.splash--bad  { background: var(--night); color: #fff; }
.splash--good { background: var(--green); color: #fff; }

/* ---------- Hero: die zwei aus den Anzeigen ----------------------------- */
.crew {
  display: flex; align-items: center; gap: 14px;
  margin-top: 26px; padding: 10px 18px 10px 10px;
  background: rgba(255,255,255,.12); border: 1px solid rgba(255,255,255,.22);
  border-radius: 999px; width: fit-content; max-width: 100%;
}
.crew__faces { display: flex; flex: 0 0 auto; }
.crew__faces img {
  width: 46px; height: 46px; border-radius: 50%; object-fit: cover; object-position: top center;
  background: #fff; border: 2px solid #fff; margin-left: -14px;
}
.crew__faces img:first-child { margin-left: 0; }
.crew p { margin: 0; font-size: .88rem; color: rgba(255,255,255,.9); line-height: 1.4; }
.crew strong { color: #fff; }
@media (max-width: 520px) { .crew { border-radius: 18px; } .crew p { font-size: .82rem; } }

/* ---------- Ronny eröffnet die Fehler-Sektion --------------------------- */
.ronny-band {
  display: grid; grid-template-columns: 200px 1fr; gap: 28px; align-items: center;
  max-width: 760px; margin: 0 auto 52px;
}
.ronny-band__figur {
  width: 100%; height: auto;
  filter: drop-shadow(0 18px 30px rgba(0,0,0,.45));
}
.ronny-band__zitat {
  font-size: clamp(1.5rem, 3.4vw, 2.15rem); font-weight: 900; line-height: 1.12;
  letter-spacing: -.02em; color: #fff; margin: 0 0 10px;
}
.ronny-band__sub { margin: 0; color: rgba(255,255,255,.62); font-size: .95rem; }
@media (max-width: 640px) {
  .ronny-band { grid-template-columns: 130px 1fr; gap: 18px; }
}

/* ---------- JoJo führt durch den Check ---------------------------------- */
.leadcard__head--jojo { display: flex; align-items: center; gap: 14px; }
.leadcard__head--jojo img {
  width: 58px; height: 58px; flex: 0 0 auto; object-fit: cover; object-position: top center;
  border-radius: 50%; background: var(--blue-50);
}
.leadcard__head--jojo p em { font-style: normal; color: var(--gray-400); font-weight: 700; }

/* ---------- FAQ als Dialog ---------------------------------------------- */
.faq--dialog summary { display: flex; align-items: center; gap: 12px; padding-left: 20px; }
.faq__wer {
  flex: 0 0 auto; width: 34px; height: 34px; border-radius: 50%;
  background-size: 150%; background-position: top center; background-repeat: no-repeat;
  border: 1.5px solid var(--gray-200);
}
.faq__wer--ronny { background-image: url('../img/ronny.png'); background-color: #f1e7dd; }
.faq__wer--jojo  { background-image: url('../img/jojo.png');  background-color: var(--blue-50); }
.faq--dialog .faq__body { display: flex; gap: 12px; padding-left: 20px; }
.faq--dialog .faq__body p { margin: 0; }
@media (max-width: 520px) {
  .faq--dialog .faq__body .faq__wer { display: none; }
  .faq--dialog .faq__body { padding-left: 24px; }
}

/* ==========================================================================
   Kennzeichnung KI-generierter Bilder (Art. 50 KI-VO) – bewusst zurückhaltend
   ========================================================================== */
.ki-bild { position: relative; }
.ki-bild::after {
  content: 'KI';
  position: absolute; right: 7px; bottom: 7px; z-index: 2;
  display: grid; place-items: center;
  width: 19px; height: 19px; border-radius: 50%;
  background: rgba(10,16,28,.30);
  color: rgba(255,255,255,.85);
  font-size: .55rem; font-weight: 700; letter-spacing: .02em; line-height: 1;
  pointer-events: none;
  transition: background-color .18s ease;
}
.ki-bild:hover::after { background: rgba(10,16,28,.62); }
.member__photo.ki-bild::after { right: 50%; transform: translateX(50%); bottom: 8px; }
