/* Lechterbeck Immobilien – Kampagnen-LP
   Design-Tokens, Reset, Komponenten. Mobile-first. */

/* ----- Webfonts ----- */
/* Roboto Serif — Headlines (h1-h6), statische TTF, Medium 500 */
@font-face {
  font-family: 'Roboto Serif';
  src: url('fonts/RobotoSerif-Medium.ttf') format('truetype');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

/* Roboto Flex — Body-Copy, Variable Font 100–1000 mit Optical Sizing */
@font-face {
  font-family: 'Roboto Flex';
  src: url('fonts/RobotoFlex-VariableFont.ttf') format('truetype-variations');
  font-weight: 100 1000;
  font-style: normal;
  font-display: swap;
}

/* Roboto Condensed — UI (Nav, Buttons, Labels, Eyebrows, Captions), Variable Font 100–900 */
@font-face {
  font-family: 'Roboto Condensed';
  src: url('fonts/RobotoCondensed-VariableFont_wght.ttf') format('truetype-variations');
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
}

:root {
  --primary-red: #a50044;
  --primary-red-light: #c8005a;
  --primary-red-bg: #fdf2f7;

  --text-dark: #1a1a1a;
  --text-gray: #666;
  --text-light: #999;

  --bg-light: #f4f4f4;
  --bg-cream: #faf7f3;
  --white: #ffffff;

  --green: #28a745;
  --green-bg: #e8f5ec;
  --gold: #f5b800;

  --border: #e5e5e5;
  --shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 20px 40px rgba(0, 0, 0, 0.12);

  --max-width: 1440px;
  --pad-x: 16px;
  --header-h: 64px;
  --nav-active: #A30042;

  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 24px;
}

@media (min-width: 768px)  { :root { --pad-x: 24px; --header-h: 76px; } }
@media (min-width: 1200px) { :root { --pad-x: 32px; } }

/* ----- Reset ----- */
*, *::before, *::after { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
section, .hero { scroll-margin-top: var(--header-h); }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }
body {
  font-family: 'Roboto Flex', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  font-weight: 400;
  font-optical-sizing: auto;
  font-size: 16px;
  line-height: 1.55;
  color: var(--text-dark);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Roboto Serif', Georgia, 'Times New Roman', serif;
  font-weight: 500;
}

/* ----- UI-Schicht: Nav, Buttons, Labels, Captions, Big Numbers → Roboto Condensed ----- */
.site-nav,
.site-nav__link,
.site-nav__toggle,
button,
.btn,
.cookie-btn,
.tax-option,
.section-eyebrow,
.calc-label,
.calc-result__total-label,
.calc-result__gain-label,
.calc-result__total-value,
.calc-result__gain-num,
.calc-result__gain-suffix,
.calc-footnote,
.review-card__date,
.review-card__footer-link,
.award-item__caption,
.footer-col__title,
.footer-links,
.contact-consent,
.contact-disclaimer,
.warum-mini-card__big,
.warum-mini-card__label,
.warum-mini-card__period,
.warum-footer__sub-cta,
.warum-sources,
.hero-sticker,
.cookie-details summary,
.cookie-category strong {
  font-family: 'Roboto Condensed', sans-serif;
}
img { max-width: 100%; display: block; }
button { font: inherit; cursor: pointer; border: 0; background: none; color: inherit; }
a { color: var(--primary-red); }

h1, h2, h3, p { margin: 0; }

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding-left: var(--pad-x);
  padding-right: var(--pad-x);
}

.accent { color: var(--primary-red); }

/* ============================================================
   SITE HEADER + NAV
   ============================================================ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 60;
  background: var(--white);
  border-bottom: 1px solid var(--border);
}
.site-header__inner {
  position: relative;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--pad-x);
  height: var(--header-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.site-header__brand {
  display: flex;
  align-items: center;
  gap: 14px;
  flex: 0 1 auto;
  min-width: 0;
}
.site-header__logo {
  display: inline-block;
  text-decoration: none;
  flex-shrink: 0;
}
.site-header__logo img {
  height: 30px;
  max-height: 36px;
  width: auto;
  display: block;
}
.site-header__slogan {
  display: none;
  font-family: 'Roboto Condensed', 'Arial Narrow', 'Helvetica Neue Condensed', sans-serif;
  font-weight: 500;
  font-size: 18px;
  line-height: 1;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-dark);
  white-space: nowrap;
}
@media (min-width: 768px) {
  .site-header__slogan { display: inline-block; }
}

.site-nav__toggle {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  flex-shrink: 0;
  border-radius: 8px;
}
.site-nav__toggle:hover { background: var(--bg-light); }
.site-nav__toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text-dark);
  border-radius: 2px;
  transition: transform 0.22s ease, opacity 0.22s ease;
  transform-origin: center;
}
.site-nav__toggle span + span { margin-top: 5px; }
.site-nav__toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.site-nav__toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.site-nav__toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.site-nav {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: var(--white);
  border-bottom: 1px solid var(--border);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.08);
  max-height: calc(100vh - var(--header-h));
  overflow-y: auto;
}
.site-nav.is-open { display: block; }

.site-nav__list {
  list-style: none;
  margin: 0;
  padding: 8px 0;
  display: flex;
  flex-direction: column;
}
.site-nav__link {
  display: block;
  padding: 14px var(--pad-x);
  color: var(--text-dark);
  text-decoration: none;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-left: 3px solid transparent;
  transition: color 0.15s ease, border-color 0.15s ease, background 0.15s ease;
}
.site-nav__link:hover { background: var(--bg-light); }
.site-nav__link.is-active {
  color: var(--nav-active);
  border-left-color: var(--nav-active);
  font-weight: 700;
}

@media (min-width: 768px) {
  .site-header__logo img { height: 36px; }
  .site-nav__toggle { display: none; }
  .site-nav {
    display: block;
    position: static;
    background: transparent;
    border: 0;
    box-shadow: none;
    max-height: none;
    overflow: visible;
  }
  .site-nav { align-self: stretch; }
  .site-nav__list {
    flex-direction: row;
    padding: 0;
    gap: 2px;
    height: 100%;
    align-items: stretch;
  }
  .site-nav__list li { display: flex; align-items: center; }
  .site-nav__link {
    display: flex;
    align-items: center;
    align-self: stretch;
    padding: 0 14px;
    border-left: 0;
    border-bottom: 2px solid transparent;
    font-size: 12.5px;
  }
  .site-nav__link:hover { background: transparent; color: var(--nav-active); }
  .site-nav__link.is-active {
    border-bottom-color: var(--nav-active);
    background: transparent;
  }
}

@media (min-width: 1200px) {
  .site-header__logo img { height: 36px; }
  .site-nav__link { padding: 0 18px; font-size: 18px; }
}

/* ============================================================
   HERO SLIDER
   ============================================================ */
.hero {
  position: relative;
  overflow: hidden;
  background: #fbf7f4;
  padding-top: 0;
}

.hero-slider {
  display: flex;
  overflow-x: auto;
  overflow-y: hidden;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}
.hero-slider::-webkit-scrollbar { display: none; }

.hero-slide {
  flex: 0 0 100%;
  scroll-snap-align: start;
  scroll-snap-stop: always;
  position: relative;
  min-height: 92vh;
  overflow: hidden;
}

.hero-slide__bg {
  position: absolute;
  inset: 0;
  display: block;
  overflow: hidden;
  background-color: #fbf7f4;
  z-index: 0;
}
.hero-slide__bg img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: right center;
}
@media (min-width: 768px) {
  .hero-slide__bg img { object-position: center; }
}

/* Mobile (≤768px): Hero-Slider gestackt — Bild im Flow oben, Card darunter */
@media (max-width: 768px) {
  .hero { padding: 0; }
  .hero-slide { min-height: 0; }
  .hero-slide__bg {
    position: relative;
    inset: auto;
    z-index: auto;
    height: auto;
  }
  .hero-slide__bg img {
    width: 100%;
    height: auto;
    object-fit: initial;
    object-position: initial;
  }
  .hero-slide__inner {
    display: block;
    min-height: 0;
    padding: 24px var(--pad-x) 32px;
  }
}

.hero-slide__inner {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  min-height: inherit;
  padding: 16px var(--pad-x) 32px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.hero-sticker {
  position: absolute;
  top: 16px;
  right: 16px;
  z-index: 2;
  background: var(--primary-red);
  color: var(--white);
  font-weight: 700;
  font-size: 12px;
  line-height: 1.15;
  text-align: center;
  letter-spacing: 0.04em;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  padding: 8px;
  box-shadow: 0 6px 16px rgba(165, 0, 68, 0.35);
  transform: rotate(-8deg);
}
.hero-sticker--price { font-size: 14px; }
.hero-sticker--empower { font-size: 12.5px; }

/* Image-Variante: SVG/PNG Sticker statt CSS-Pill */
.hero-sticker--image {
  background: transparent;
  box-shadow: none;
  padding: 0;
  border-radius: 0;
  transform: none;
  width: 96px;
  height: auto;
  filter: drop-shadow(0 6px 16px rgba(165, 0, 68, 0.30));
}
@media (min-width: 768px) {
  .hero-sticker--image { width: 120px; }
}
@media (min-width: 1200px) {
  .hero-sticker--image { width: 140px; }
}

.hero-card {
  position: relative;
  z-index: 1;
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 24px 20px 20px;
  width: 100%;
  max-width: 560px;
  margin: 0 auto;
}

.hero-headline {
  font-family: 'Roboto Serif', Georgia, 'Times New Roman', serif;
  font-weight: 500;
  font-size: 28px;
  line-height: 1.143; /* 48/42 als unitless ratio */
  letter-spacing: -0.01em;
  margin-bottom: 12px;
  padding-right: 92px; /* Platz für den Sticker oben rechts */
}
.hero-subline {
  font-size: 15px;
  line-height: 1.5;
  color: var(--text-gray);
  margin: 0 0 20px;
}
@media (min-width: 768px) { .hero-subline { font-size: 16px; margin-bottom: 24px; } }
@media (min-width: 1200px) { .hero-subline { font-size: 17px; } }

.benefits {
  list-style: none;
  padding: 0;
  margin: 0 0 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.benefit {
  display: grid;
  grid-template-columns: 28px 1fr;
  gap: 12px;
  align-items: flex-start;
}
.benefit-icon {
  width: 28px;
  height: 28px;
  background: var(--green-bg);
  color: var(--green);
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-weight: 700;
  font-size: 14px;
  flex-shrink: 0;
}
.benefit-title { font-weight: 700; font-size: 15.5px; line-height: 1.25; }
.benefit-sub { font-size: 13px; color: var(--primary-red); margin-top: 2px; }

.cta-stack { display: flex; flex-direction: column; gap: 10px; }

/* ===== Buttons (konsistent über alle CTAs) =====
   .btn         : Basis-Pill (Padding, Radius, Tracking, UPPERCASE)
   .btn--primary: Brand-rot, prominent (Hero, Final CTAs, Modal-Submit)
   .btn--secondary: kleiner, neutraler Outline für nachgelagerte Aktionen */
.btn {
  display: inline-block;
  width: auto;
  padding: 15px 25px;
  border-radius: 36px;
  font-weight: 700;
  font-size: 18px;
  letter-spacing: 0.04em;
  line-height: 1.2;
  text-align: center;
  text-transform: uppercase;
  text-decoration: none;
  cursor: pointer;
  transition: transform 0.12s ease, box-shadow 0.12s ease, background 0.12s ease, border-color 0.12s ease, color 0.12s ease;
}
.btn:active { transform: translateY(1px); }

.btn--primary {
  background: var(--primary-red);
  color: var(--white);
  border: 0;
  box-shadow: 0 6px 18px rgba(165, 0, 68, 0.28);
}
.btn--primary:hover { background: var(--primary-red-light); }

.btn--secondary {
  background: transparent;
  color: var(--text-dark);
  border: 1px solid var(--border);
  padding: 11px 20px;
  font-size: 14px;
  letter-spacing: 0.06em;
  box-shadow: none;
}
.btn--secondary:hover {
  background: var(--bg-light);
  border-color: var(--text-dark);
}


/* Dots */
.hero-dots {
  position: absolute;
  bottom: 12px;
  left: 0;
  right: 0;
  display: flex;
  justify-content: center;
  gap: 8px;
  z-index: 3;
}
.hero-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(26, 26, 26, 0.25);
  transition: background 0.2s, width 0.2s;
}
.hero-dot[aria-current="true"] {
  background: var(--primary-red);
  width: 22px;
  border-radius: 4px;
}

/* Hero-Slider Navigation Arrows */
.hero-arrow {
  position: absolute;
  top: 30vh;
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 0;
  padding: 0;
  background: rgba(255, 255, 255, 0.85);
  color: var(--text-dark);
  font-size: 26px;
  line-height: 1;
  font-weight: 400;
  display: grid;
  place-items: center;
  cursor: pointer;
  z-index: 4;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.10);
  transition: opacity 0.3s ease, background 0.2s ease, box-shadow 0.2s ease;
}
.hero-arrow:hover {
  background: rgba(255, 255, 255, 1);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.16);
}
.hero-arrow:focus-visible {
  outline: 2px solid var(--primary-red);
  outline-offset: 2px;
}
.hero-arrow--prev { left: 12px; }
.hero-arrow--next { right: 12px; }
.hero-arrow.is-hidden {
  opacity: 0;
  pointer-events: none;
}
@media (min-width: 768px) {
  .hero-arrow {
    top: 50%;
    width: 52px;
    height: 52px;
    font-size: 32px;
  }
  .hero-arrow--prev { left: 24px; }
  .hero-arrow--next { right: 24px; }
}

/* Tablet */
@media (min-width: 768px) {
  .hero-slide { min-height: 88vh; }
  .hero-slide__inner { padding: 24px var(--pad-x) 48px; }
  .hero-headline { font-size: 36px; }
  .hero-card { padding: 32px; max-width: 600px; }
  .hero-sticker { width: 100px; height: 100px; font-size: 13.5px; top: 20px; right: 20px; }
  .hero-headline { padding-right: 116px; }
  .cta-stack { flex-direction: row; }
  .cta-stack .btn { flex: 1; }
}

/* Desktop */
@media (min-width: 1200px) {
  .hero-slide { min-height: 720px; }
  .hero-slide__inner {
    padding: 64px var(--pad-x);
    justify-content: center;
    align-items: flex-start;
  }
  .hero-card { margin: 0; max-width: 540px; }
  .hero-headline { font-size: 42px; line-height: 48px; }
  .hero-sticker { width: 120px; height: 120px; font-size: 15px; top: 24px; right: 24px; }
  .hero-headline { padding-right: 140px; }
}

/* ============================================================
   SECTION DEFAULTS
   ============================================================ */
section { padding: 56px 0; }
@media (min-width: 768px) { section { padding: 72px 0; } }
@media (min-width: 1200px) { section { padding: 88px 0; } }

.section-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--primary-red);
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 10px;
}
.section-title {
  font-family: 'Roboto Serif', Georgia, 'Times New Roman', serif;
  font-size: 26px;
  font-weight: 500;
  line-height: 1.2;
  letter-spacing: -0.01em;
  margin-bottom: 8px;
}
.section-sub { color: var(--text-gray); font-size: 22px; line-height: 1.4; }
.section-header { text-align: center; margin-bottom: 28px; }

@media (min-width: 768px) {
  .section-title { font-size: 32px; }
  .section-header { margin-bottom: 36px; }
}
@media (min-width: 1200px) {
  .section-title { font-size: 36px; }
}

/* ============================================================
   REVIEWS
   ============================================================ */
.reviews { background: var(--bg-cream); }

/* Google-Badge — G-Icon + Sterne + "5,0 Sterne auf Google" */
.google-badge {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  padding: 16px 24px;
  background: var(--white);
  border-radius: 18px;
  box-shadow: 0 16px 38px rgba(0, 0, 0, 0.10);
  text-decoration: none;
  color: var(--text-dark);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
a.google-badge:hover {
  transform: translateY(-3px);
  box-shadow: 0 22px 46px rgba(0, 0, 0, 0.14);
}
.google-badge__g {
  width: 32px;
  height: 32px;
  flex-shrink: 0;
}
.google-badge__text { text-align: left; line-height: 1; }
.google-badge__stars {
  color: var(--gold);
  font-size: 20px;
  letter-spacing: 0.12em;
  line-height: 1;
  margin-bottom: 4px;
}
.google-badge__rating {
  font-size: 12px;
  font-weight: 500;
  color: var(--text-dark);
}
.google-badge__rating strong { font-weight: 800; }

.review-rating {
  display: inline-flex;
  align-items: baseline;
  gap: 8px;
  margin-top: 4px;
  font-size: 14px;
  color: var(--text-gray);
}
.review-rating strong { color: var(--text-dark); font-size: 18px; }
.review-rating .stars { color: var(--gold); letter-spacing: 1px; }

.review-slider {
  display: flex;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  gap: 16px;
  padding: 4px var(--pad-x) 8px;
  margin: 0 calc(var(--pad-x) * -1);
  scrollbar-width: none;
}
.review-slider::-webkit-scrollbar { display: none; }

.review-card {
  flex: 0 0 88%;
  scroll-snap-align: center;
  background: var(--white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow);
  padding: 24px;
  position: relative;
  display: flex;
  flex-direction: column;
  color: var(--text-dark);
  text-decoration: none;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
a.review-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 36px rgba(0, 0, 0, 0.12);
}

.review-card__g {
  position: absolute;
  top: 22px;
  right: 22px;
  width: 20px;
  height: 20px;
}

.review-card__head {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
  padding-right: 32px; /* Platz für G-Icon oben rechts */
}
.review-card__avatar {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--bg-light);
  color: var(--text-dark);
  display: grid;
  place-items: center;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.02em;
}
.review-card__person {
  display: flex;
  flex-direction: column;
  line-height: 1.25;
  min-width: 0;
}
.review-card__name {
  font-weight: 700;
  font-size: 15px;
  color: var(--text-dark);
}
.review-card__date {
  font-size: 12px;
  color: var(--text-gray);
  margin-top: 2px;
}

.review-card__stars {
  color: var(--gold);
  letter-spacing: 0.06em;
  font-size: 18px;
  line-height: 1;
  margin-bottom: 14px;
}

.review-card__text {
  font-size: 16px;
  line-height: 1.6;
  color: var(--text-dark);
  margin: 0;
}

.review-card__footer-link {
  margin-top: auto;
  padding-top: 16px;
  border-top: 1px solid var(--border);
  color: #a30142;
  font-size: 18px;
  font-weight: 500;
  letter-spacing: 0.02em;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}
.review-card__footer-link > span { transition: transform 0.2s ease; }
a.review-card:hover .review-card__footer-link > span { transform: translateX(3px); }

.review-dots {
  display: flex;
  justify-content: center;
  gap: 6px;
  margin-top: 18px;
}
.review-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: rgba(26, 26, 26, 0.2);
  transition: background 0.2s, width 0.2s;
}
.review-dot[aria-current="true"] {
  background: var(--primary-red);
  width: 18px;
  border-radius: 4px;
}

@media (min-width: 768px) {
  .review-card { flex: 0 0 46%; }
}
@media (min-width: 1200px) {
  .review-slider {
    overflow: visible;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin: 0;
    padding: 4px 0;
  }
  .review-card { flex: 1; }
  .review-dots { display: none; }
}

/* ============================================================
   AWARDS
   ============================================================ */
.awards { background: var(--white); }
.awards-grid {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 32px;
}
.award-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  max-width: 180px;
  text-align: center;
}
.award-item img {
  width: auto;
  height: 180px;
  max-width: 100%;
  object-fit: contain;
}
.award-item__caption { font-size: 12px; color: var(--text-gray); }
.award-item--link { text-decoration: none; color: inherit; transition: opacity 0.15s ease; }
.award-item--link:hover { opacity: 0.85; }

@media (min-width: 768px) {
  .award-item img { height: 220px; }
}

/* ============================================================
   TEAM
   ============================================================ */
.team {
  position: relative;
  background: var(--bg-cream);
  padding: 0;
}

.team picture { display: block; }
.team-photo {
  display: block;
  width: 100%;
  height: auto;
  margin: 0;
}

/* Mobile (≤768px): Bild oben, CSS-Cream-Box mit Inhalt darunter */
.team .container {
  background: #fbf7f4;
  margin: 0;
  max-width: none;
  padding: 40px var(--pad-x);
}
.team-card {
  width: 100%;
  max-width: 540px;
  margin: 0 auto;
  padding: 0;
}
.team-card .section-header { text-align: left; }

/* Desktop (≥769px): Bild als Backdrop, Inhalt absolut über der rechten Bildhälfte */
@media (min-width: 769px) {
  .team .container {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    width: 45%;
    background: transparent;
    padding: 0 48px;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
  .team-card {
    max-width: 480px;
    margin: 0;
  }
}

.team-stack {
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 540px;
  margin: 0 auto;
}
.team-stack .person-card { width: 100%; }
.team-cta {
  text-align: center;
  margin-top: 32px;
}
.team-cta .btn { max-width: 460px; margin: 0 auto; }

@media (min-width: 1200px) {
  .team-stack { max-width: 640px; }
}

.person-card {
  display: flex;
  align-items: center;
  gap: 16px;
  background: var(--white);
  padding: 20px 22px;
  border-radius: var(--radius-md);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.06);
}
.person-card__avatar {
  position: relative;
  flex-shrink: 0;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary-red) 0%, #8a0039 100%);
  color: var(--white);
  font-weight: 700;
  font-size: 20px;
  letter-spacing: 0.02em;
  display: grid;
  place-items: center;
  overflow: hidden;
}
.person-card__avatar::before {
  content: attr(data-initials);
}
.person-card__avatar img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
}
.person-card__text { min-width: 0; }
.person-card__name {
  font-weight: 700;
  font-size: 16px;
  line-height: 1.3;
  color: var(--text-dark);
}
.person-card__role {
  color: var(--text-gray);
  font-size: 13.5px;
  line-height: 1.4;
  margin-top: 3px;
}

@media (min-width: 1200px) {
  .person-card {
    gap: 28px;
    padding: 36px 40px;
    border-radius: 20px;
    box-shadow: 0 10px 28px rgba(0, 0, 0, 0.08);
  }
  .person-card__avatar {
    width: 120px;
    height: 120px;
    font-size: 36px;
  }
  .person-card__name { font-size: 24px; line-height: 1.25; }
  .person-card__role { font-size: 16px; margin-top: 6px; }
}

/* Modal-Variante: kompakt, Rahmen statt Schatten, etwas Abstand zum Formular */
.person-card--modal {
  background: var(--bg-cream);
  border: 1px solid var(--border);
  box-shadow: none;
  padding: 14px 16px;
  margin: 4px 0 18px;
  gap: 14px;
}
.person-card--modal .person-card__avatar { width: 52px; height: 52px; font-size: 16px; }
.person-card--modal .person-card__name { font-size: 15px; }
.person-card--modal .person-card__role { font-size: 12.5px; margin-top: 2px; }
@media (min-width: 1200px) {
  .person-card--modal { padding: 16px 18px; gap: 16px; }
  .person-card--modal .person-card__avatar { width: 56px; height: 56px; font-size: 17px; }
  .person-card--modal .person-card__name { font-size: 16px; }
  .person-card--modal .person-card__role { font-size: 13.5px; }
}

/* ============================================================
   WARUM JETZT — Drei Datenpunkte
   ============================================================ */

.warum {
  background: var(--bg-cream);
}
.warum .section-header { max-width: 800px; margin-left: auto; margin-right: auto; }
.warum .section-header { padding-bottom: 16px; }
@media (min-width: 768px)  { .warum .section-header { padding-bottom: 32px; } }
@media (min-width: 1200px) { .warum .section-header { padding-bottom: 48px; } }

/* ===== Cards-Row (drei Big-Number-Cards nebeneinander) ===== */
.warum-cards-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  max-width: 1080px;
  margin: 0 auto;
}
@media (min-width: 768px) {
  .warum-cards-row { grid-template-columns: repeat(3, 1fr); gap: 20px; }
}
@media (min-width: 1200px) {
  .warum-cards-row { gap: 28px; }
}

.warum-mini-card {
  background: var(--white);
  border: 1px solid var(--border);
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.06);
  border-radius: 14px;
  padding: 24px 22px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
  cursor: pointer;
  transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
}
.warum-mini-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.08);
  border-color: var(--primary-red);
}
.warum-mini-card[aria-expanded="true"] {
  border-color: var(--primary-red);
  box-shadow: 0 10px 24px rgba(165, 0, 68, 0.18);
}
.warum-mini-card__big {
  display: block;
  color: var(--primary-red);
  font-weight: 800;
  font-size: 40px;
  line-height: 1;
  letter-spacing: -0.02em;
  font-variant-numeric: tabular-nums;
}
.warum-mini-card__label {
  display: block;
  margin-top: 12px;
  color: var(--text-dark);
  font-size: 16px;
  font-weight: 700;
}
.warum-mini-card__period {
  display: block;
  margin-top: 3px;
  color: var(--text-gray);
  font-size: 13px;
}
@media (min-width: 1200px) {
  .warum-mini-card { padding: 32px 28px; }
  .warum-mini-card__big { font-size: 48px; }
  .warum-mini-card__label { font-size: 17px; margin-top: 14px; }
  .warum-mini-card__period { font-size: 13.5px; }
}

/* Detail-Panel unter der Stage */
.warum-detail {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 24px 22px;
  margin: 32px auto 0;
  max-width: 760px;
  color: var(--text-gray);
  font-size: 15px;
  line-height: 1.6;
}
.warum-detail p { margin: 0; }
.warum-detail p + p { margin-top: 12px; }
.warum-detail strong { color: var(--text-dark); }
.warum-detail cite {
  display: block;
  margin-top: 16px;
  font-size: 12px;
  font-style: italic;
  color: var(--text-light);
}
@media (min-width: 1200px) {
  .warum-detail { padding: 28px 32px; font-size: 16px; }
}

/* Section-Footer */
.warum-footer {
  max-width: 760px;
  margin: 56px auto 0;
  text-align: center;
}
@media (min-width: 1200px) { .warum-footer { margin-top: 80px; } }

.warum-footer__title {
  font-family: 'Roboto Serif', Georgia, 'Times New Roman', serif;
  font-weight: 500;
  font-size: 26px;
  line-height: 1.2;
  letter-spacing: -0.01em;
  margin: 0 0 16px;
}
@media (min-width: 1200px) { .warum-footer__title { font-size: 32px; } }

.warum-footer__body {
  color: var(--text-gray);
  font-size: 15px;
  line-height: 1.6;
  margin: 0;
}
@media (min-width: 1200px) { .warum-footer__body { font-size: 16px; } }

.warum-footer__cta {
  max-width: 460px;
  margin: 28px auto 0;
}
.warum-footer__sub-cta {
  margin: 14px 0 0;
  font-size: 12.5px;
  font-style: italic;
  color: var(--text-light);
}

/* Reveal-Animationen: Karten starten unsichtbar; IO fügt is-revealed hinzu */
.warum-mini-card { opacity: 0; transition: opacity 0.4s ease-out, transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease; }
.warum-mini-card.is-revealed { opacity: 1; }

@media (prefers-reduced-motion: reduce) {
  .warum-mini-card { opacity: 1 !important; transition: none !important; }
}

.warum-sources {
  margin: 32px auto 0;
  text-align: center;
  font-size: 11px;
  color: var(--text-light);
  line-height: 1.5;
  max-width: 760px;
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: #1a1a1a;
  color: rgba(255, 255, 255, 0.7);
  padding: 48px 0 32px;
  font-size: 13.5px;
}
.footer-logo {
  margin-bottom: 28px;
}
.footer-logo img {
  display: block;
  height: 28px;
  width: auto;
}
@media (min-width: 768px) {
  .footer-logo img { height: 32px; }
}
.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  margin-bottom: 28px;
  line-height: 1.65;
}
.footer-grid p { margin: 0; }
.footer-col__title {
  color: var(--white);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 6px;
}
.footer-grid a {
  color: rgba(255, 255, 255, 0.85);
  text-decoration: none;
}
.footer-grid a:hover { color: var(--white); }

@media (min-width: 600px)  { .footer-grid { grid-template-columns: repeat(2, 1fr); gap: 28px 32px; } }
@media (min-width: 1024px) { .footer-grid { grid-template-columns: repeat(4, 1fr); gap: 32px; } }

.footer-note {
  font-family: 'Roboto Condensed', sans-serif;
  font-weight: 400;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.55);
  margin: 0;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  text-align: left;
}
.footer-note a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: underline;
}
.footer-note a:hover { color: var(--white); }

/* ============================================================
   FAB
   ============================================================ */
.fab {
  position: fixed;
  bottom: 18px;
  right: 18px;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--primary-red);
  color: var(--white);
  display: grid;
  place-items: center;
  box-shadow: 0 8px 22px rgba(165, 0, 68, 0.4);
  z-index: 50;
  transition: transform 0.2s ease;
}
.fab:hover { transform: scale(1.06); }
.fab--whatsapp { background: #25d366; box-shadow: 0 8px 22px rgba(37, 211, 102, 0.4); }
.fab svg { width: 28px; height: 28px; fill: currentColor; }

@media (min-width: 768px) {
  .fab { bottom: 28px; right: 28px; width: 60px; height: 60px; }
}

/* ============================================================
   MODAL (Calculator + Contact)
   ============================================================ */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  display: none;
  align-items: flex-end;
  justify-content: center;
  z-index: 100;
  opacity: 0;
  transition: opacity 0.22s ease;
}
.modal-overlay.is-open { display: flex; opacity: 1; }

.modal {
  position: relative;
  background: var(--white);
  width: 100%;
  max-width: 580px;
  max-height: 92vh;
  overflow-y: auto;
  border-radius: 20px 20px 0 0;
  padding: 22px 20px 28px;
  transform: translateY(100%);
  transition: transform 0.28s cubic-bezier(0.2, 0.85, 0.3, 1);
}
.modal-overlay.is-open .modal { transform: translateY(0); }

.modal-close {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--bg-light);
  display: grid;
  place-items: center;
  font-size: 20px;
  color: var(--text-gray);
  z-index: 2;
}
.modal-close:hover { background: #e5e5e5; }

@media (min-width: 768px) {
  .modal-overlay { align-items: center; }
  .modal {
    border-radius: var(--radius-lg);
    transform: translateY(20px) scale(0.98);
  }
  .modal-overlay.is-open .modal { transform: translateY(0) scale(1); }
}

/* ----- Shared Eyebrow/Title/Intro (Modal-Header u. ä.) ----- */
.calc-eyebrow { color: var(--primary-red); font-weight: 700; font-size: 12px; letter-spacing: 0.12em; text-transform: uppercase; }
.calc-title { font-family: 'Roboto Serif', Georgia, 'Times New Roman', serif; font-size: 22px; font-weight: 500; line-height: 1.2; margin: 6px 0 6px; letter-spacing: -0.01em; }
.calc-intro { font-size: 13.5px; color: var(--text-gray); margin-bottom: 16px; }
.contact-modal__sub { font-size: 14px; color: var(--text-gray); line-height: 1.4; margin: 0 0 2px; }

/* ============================================================
   CALCULATOR (Section unter Hero)
   ============================================================ */
.calculator {
  background: var(--bg-cream);
}
.calculator-wrap {
  position: relative;
  max-width: 960px;
  margin: 20px auto;
  padding-left: var(--pad-x);
  padding-right: var(--pad-x);
  padding-top: 40px;
  padding-bottom: 40px;
  background: white;
  border-radius: 20px;
}

.calc-controls {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  margin-bottom: 24px;
}
@media (min-width: 768px) {
  .calc-controls { gap: 32px; }
}
.calc-footnote {
  font-size: 12px;
  color: var(--text-gray);
  line-height: 1.55;
  margin: 14px 0 0;
  text-align: left;
}

.calc-cashflow {
  margin-top: 24px;
  padding: 20px;
  background: var(--bg-cream);
  border-radius: var(--radius-md);
}
.calc-cashflow__title {
  font-family: 'Roboto Serif', Georgia, 'Times New Roman', serif;
  font-size: 18px;
  font-weight: 500;
  color: var(--text-dark);
  margin: 0 0 14px;
}
@media (min-width: 768px) { .calc-cashflow__title { font-size: 20px; } }
.calc-cashflow__row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: 6px 0;
  gap: 12px;
}
.calc-cashflow__label {
  font-size: 15px;
  color: var(--text-dark);
}
.calc-cashflow__value {
  font-size: 16px;
  font-variant-numeric: tabular-nums;
  white-space: nowrap;
}
.calc-cashflow__value--neg { color: #6b6b6b; }
.calc-cashflow__total {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-top: 10px;
  padding-top: 12px;
  border-top: 1px solid #e0d8d0;
  gap: 12px;
}
.calc-cashflow__total-label {
  font-size: 17px;
  font-weight: 700;
  color: var(--text-dark);
}
.calc-cashflow__total-value {
  font-size: 20px;
  font-weight: 700;
  color: var(--primary-red);
  font-variant-numeric: tabular-nums;
  white-space: nowrap;
}

.calculator .btn--primary {
  display: block;
  max-width: 460px;
  margin: 0 auto;
}

.calc-field { margin-bottom: 0; }
.calc-label {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  font-size: 12px;
  font-weight: 700;
  color: var(--text-gray);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 8px;
}
.calc-label__value { color: var(--primary-red); font-size: 15px; letter-spacing: 0; text-transform: none; }

.calc-slider {
  width: 100%;
  -webkit-appearance: none;
  appearance: none;
  height: 4px;
  background: var(--border);
  border-radius: 4px;
  outline: none;
}
.calc-slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--primary-red);
  cursor: pointer;
  box-shadow: 0 3px 8px rgba(165, 0, 68, 0.4);
}
.calc-slider::-moz-range-thumb {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--primary-red);
  cursor: pointer;
  border: 0;
  box-shadow: 0 3px 8px rgba(165, 0, 68, 0.4);
}

.calc-finance-breakdown {
  font-size: 14px;
  color: #6b6b6b;
  margin: 10px 0 0;
  line-height: 1.55;
}
.calc-finance-breakdown span { color: var(--text-dark); font-weight: 500; }

.tax-options { display: flex; gap: 8px; flex-wrap: wrap; }
.tax-option {
  flex: 1 1 0;
  min-width: 80px;
  padding: 10px 8px;
  border: 1.5px solid var(--border);
  border-radius: 10px;
  font-size: 27px;
  font-weight: 600;
  background: var(--white);
  text-align: center;
}
.tax-option[data-active="true"] {
  background: var(--primary-red);
  color: var(--white);
  border-color: var(--primary-red);
}

.calc-result {
  background: var(--white);
  color: var(--text-dark);
  border-radius: var(--radius-md);
  padding: 18px 0 16px;
  margin: 18px 0 14px;
}
.calc-benefit-row {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 12px 0;
}
.calc-benefit-row__badge {
  width: 96px;
  height: 96px;
  flex: 0 0 96px;
  object-fit: contain;
  display: flex;
  align-items: center;
  justify-content: center;
}
.calc-benefit-row__badge--empty { visibility: hidden; }
.calc-benefit-row__badge--text {
  background: var(--primary-red);
  color: var(--white);
  border-radius: 12px;
  font-weight: 700;
  font-size: 16px;
  letter-spacing: 0.04em;
}
.calc-benefit-row__label {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 0;
}
.calc-benefit-row__title {
  font-size: 20px;
  font-weight: 500;
  color: var(--text-dark);
  line-height: 1.35;
}
.calc-benefit-row__sub {
  font-size: 13px;
  color: #6b6b6b;
  line-height: 1.4;
}
.calc-benefit-row__value {
  font-size: 18px;
  font-weight: 700;
  white-space: nowrap;
  flex: 0 0 auto;
}
@media (min-width: 768px) {
  .calc-benefit-row__value { font-size: 20px; }
}
.calc-result__total {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-top: 12px;
  padding-top: 12px;
  border-top: 1px solid var(--border);
}
.calc-result__total-label { font-size: 14px; font-weight: 700; letter-spacing: 0.04em; text-transform: uppercase; }
.calc-result__total-value { font-size: 26px; font-weight: 800; letter-spacing: -0.02em; color: var(--primary-red); }

.calc-result__gain {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  margin-top: 12px;
  padding: 14px 20px;
  background: var(--green-bg);
  border-radius: 14px;
}
.calc-result__gain-label {
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--green);
}
.calc-result__gain-value {
  display: inline-flex;
  align-items: baseline;
  gap: 8px;
  text-align: right;
}
.calc-result__gain-num {
  font-size: 26px;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--green);
  white-space: nowrap;
  font-variant-numeric: tabular-nums;
}
.calc-result__gain-suffix {
  font-size: 12px;
  font-weight: 500;
  color: var(--green);
  opacity: 0.85;
  white-space: nowrap;
}

/* ----- Contact form ----- */
.contact-form { display: flex; flex-direction: column; gap: 12px; }
.contact-input {
  width: 100%;
  padding: 14px 16px;
  border-radius: 12px;
  border: 1.5px solid var(--border);
  font-size: 15px;
  background: var(--white);
}
.contact-textarea { min-height: 90px; resize: vertical; font-family: inherit; }

.contact-consent {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  line-height: 1.5;
  color: var(--text-gray);
  cursor: pointer;
  padding: 2px 0;
}
.contact-consent input[type="checkbox"] {
  width: 32px;
  height: 32px;
  accent-color: var(--primary-red);
  flex-shrink: 0;
  cursor: pointer;
}
.contact-consent a {
  color: var(--primary-red);
  font-weight: 700;
  text-decoration: underline;
}
.contact-consent__required { color: var(--primary-red); margin-left: 2px; }
.contact-consent.is-invalid { color: var(--primary-red); }
.contact-consent.is-invalid input[type="checkbox"] {
  outline: 2px solid var(--primary-red);
  outline-offset: 2px;
  border-radius: 3px;
}

.contact-disclaimer { font-size: 11.5px; color: var(--text-gray); line-height: 1.5; }

/* ============================================================
   TRUST-CARDS (SSL / DSGVO / Server-Standort)
   ============================================================ */
.trust-subline {
  font-family: 'Roboto Flex', sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.5;
  color: var(--text-gray);
  margin: 24px 0 12px 0;
  text-align: left;
}
.trust-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin: 0 0 20px 0;
}
.trust-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  background: var(--white);
  border: 1px solid #e8e8e0;
  border-radius: 8px;
  padding: 22px 18px;
  text-align: center;
}
.trust-card__icon {
  width: 48px;
  height: 48px;
  color: var(--primary-red);
  flex-shrink: 0;
}
.trust-card__text {
  display: flex;
  flex-direction: column;
  align-items: center;
  line-height: 1.2;
}
.trust-card__label {
  font-size: 15px;
  font-weight: 500;
  color: var(--text-dark);
  line-height: 1.2;
}
.trust-card__sub {
  font-size: 12px;
  color: var(--text-light);
  line-height: 1.2;
  margin-top: 2px;
}
@media (max-width: 480px) {
  .trust-card { padding: 16px 10px; gap: 10px; }
  .trust-card__icon { width: 40px; height: 40px; }
  .trust-card__label { font-size: 13px; }
}
@media (max-width: 380px) {
  .trust-card { padding: 8px 4px; gap: 6px; }
  .trust-card__icon { width: 32px; height: 32px; }
  .trust-card__label { font-size: 11px; }
  .trust-card__sub { display: none; }
}

/* ============================================================
   UTILITY
   ============================================================ */
.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;
}

body.is-locked { overflow: hidden; }

/* ============================================================
   COOKIE BANNER (Opt-In, DSGVO)
   ============================================================ */
.cookie-banner {
  position: fixed;
  left: 16px;
  right: 16px;
  bottom: 16px;
  max-width: 720px;
  margin: 0 auto;
  z-index: 10000;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 16px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.18);
  padding: 22px 22px 18px;
  font-size: 14px;
  line-height: 1.55;
  color: var(--text-dark);
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 0.22s ease, transform 0.22s ease;
}
.cookie-banner.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.cookie-banner__title {
  font-family: 'Roboto Serif', Georgia, serif;
  font-weight: 500;
  font-size: 20px;
  line-height: 1.2;
  margin: 0 0 10px;
  letter-spacing: -0.01em;
}

.cookie-banner__text {
  margin: 0 0 14px;
  color: var(--text-gray);
}
.cookie-banner__text em {
  color: var(--text-light);
  font-style: italic;
  display: block;
  margin-top: 6px;
  font-size: 12.5px;
}

.cookie-details {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  margin: 4px 0 14px;
  padding: 2px 0;
}
.cookie-details summary {
  cursor: pointer;
  font-weight: 700;
  color: var(--primary-red);
  padding: 12px 0;
  font-size: 13px;
  letter-spacing: 0.02em;
  list-style: none;
  display: flex;
  align-items: center;
  gap: 6px;
}
.cookie-details summary::-webkit-details-marker { display: none; }
.cookie-details summary::after {
  content: '▾';
  margin-left: auto;
  transition: transform 0.18s ease;
}
.cookie-details[open] summary::after { transform: rotate(180deg); }

.cookie-category {
  padding: 10px 0;
  border-top: 1px solid var(--border);
}
.cookie-category:first-of-type { border-top: 0; }
.cookie-category label {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  cursor: pointer;
}
.cookie-category input[type="checkbox"] {
  margin-top: 3px;
  width: 16px;
  height: 16px;
  accent-color: var(--primary-red);
  flex-shrink: 0;
}
.cookie-category input[disabled] { opacity: 0.6; cursor: not-allowed; }
.cookie-category__text { min-width: 0; }
.cookie-category strong {
  display: block;
  font-size: 13.5px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 2px;
}
.cookie-category span {
  font-size: 12.5px;
  color: var(--text-gray);
  line-height: 1.5;
}

.cookie-banner__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 12px;
}
.cookie-btn {
  flex: 1 1 auto;
  min-width: 130px;
  padding: 11px 16px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.04em;
  cursor: pointer;
  border: 1px solid transparent;
  transition: background 0.15s ease, color 0.15s ease, border-color 0.15s ease;
}
.cookie-btn--ghost {
  background: var(--white);
  color: var(--text-dark);
  border-color: var(--border);
}
.cookie-btn--ghost:hover { background: var(--bg-light); border-color: var(--text-dark); }
.cookie-btn--primary {
  background: var(--primary-red);
  color: var(--white);
  border-color: var(--primary-red);
}
.cookie-btn--primary:hover { background: var(--primary-red-light); border-color: var(--primary-red-light); }

.cookie-banner__footer {
  margin: 0;
  text-align: center;
  font-size: 12px;
  color: var(--text-light);
}
.cookie-banner__footer a {
  color: var(--primary-red);
  text-decoration: none;
}
.cookie-banner__footer a:hover { text-decoration: underline; }

@media (max-width: 480px) {
  .cookie-banner {
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 16px 16px 0 0;
    padding: 20px 18px 18px;
    border-left: 0;
    border-right: 0;
    border-bottom: 0;
  }
  .cookie-banner__actions { flex-direction: column; }
  .cookie-btn { width: 100%; min-width: 0; }
}

@media (prefers-reduced-motion: reduce) {
  .cookie-banner { transition: opacity 0.15s ease; transform: none; }
}

/* ============================================================
   CONTACT FORM — Honeypot, Per-Field-Errors, Spinner, Global-Error
   ============================================================ */

/* Honeypot — visuell unsichtbar, aber im DOM (Bots füllen es aus) */
.honeypot {
  position: absolute;
  left: -9999px;
  top: auto;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
  overflow: hidden;
}

/* Per-Field-Errors unter Inputs */
.form-required-legend {
  font-size: 13px;
  color: var(--text-gray);
  margin: 0 0 4px;
}
.form-field { display: flex; flex-direction: column; gap: 4px; margin-bottom: 4px; }
.form-field > label {
  font-weight: 600;
  font-size: 15px;
  color: var(--text-dark);
}
.form-required {
  color: var(--primary-red);
  margin-left: 2px;
}
.form-hint {
  font-size: 13px;
  color: #6b6b6b;
  line-height: 1.4;
  margin-bottom: 2px;
}
.form-error {
  font-size: 12.5px;
  line-height: 1.4;
  color: var(--primary-red);
  margin: 0 0 0 4px;
}
.form-error:empty { display: none; }

.contact-input.is-invalid {
  border-color: var(--primary-red);
  background: #fdf4f8;
}
.contact-input.is-valid {
  border-color: rgba(40, 167, 69, 0.5);
  background-color: var(--green-bg);
}
/* Focus zuletzt → Brand-Rot-Border gewinnt gegen .is-valid/.is-invalid
   (gleiche Spezifität 0,2,0); BG-Tint vom State bleibt erhalten. */
.contact-input:focus { outline: none; border-color: var(--primary-red); }

/* Globaler Error-Banner (Netzwerk, 5xx) */
.modal-error-banner {
  background: #fdf4f8;
  border: 1px solid var(--primary-red);
  color: var(--text-dark);
  padding: 12px 14px;
  border-radius: 12px;
  font-size: 14px;
  line-height: 1.5;
  margin-bottom: 14px;
}
.modal-error-banner a { color: var(--primary-red); text-decoration: underline; }

/* Spinner im Submit-Button während fetch() */
.spinner {
  display: inline-block;
  width: 14px;
  height: 14px;
  border: 2px solid currentColor;
  border-right-color: transparent;
  border-radius: 50%;
  vertical-align: -2px;
  margin-right: 6px;
  animation: spinner-rotate 0.7s linear infinite;
}
@keyframes spinner-rotate { to { transform: rotate(360deg); } }

/* ============================================================
   SUCCESS STATE — Animated Check + Text Fades
   ============================================================ */

.success-state {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 32px 8px 16px;
  gap: 14px;
}

.success-icon-wrap {
  width: 96px;
  height: 96px;
  color: #16a34a;
  animation: success-icon-pulse 600ms 900ms ease-out;
}
.success-icon { width: 100%; height: 100%; }

.success-icon__circle {
  stroke-dasharray: 226;
  stroke-dashoffset: 226;
  animation: success-circle-draw 600ms ease-out forwards;
}
.success-icon__check {
  stroke-dasharray: 60;
  stroke-dashoffset: 60;
  animation: success-check-draw 350ms 500ms ease-out forwards;
}
@keyframes success-circle-draw { to { stroke-dashoffset: 0; } }
@keyframes success-check-draw  { to { stroke-dashoffset: 0; } }
@keyframes success-icon-pulse {
  0%   { transform: scale(1); }
  50%  { transform: scale(1.08); }
  100% { transform: scale(1); }
}

.success-headline {
  font-family: 'Roboto Serif', Georgia, serif;
  font-weight: 500;
  font-size: 24px;
  margin: 0;
  color: var(--text-dark);
  opacity: 0;
  animation: success-text-fade 400ms 800ms ease-out forwards;
}
.success-message {
  font-size: 17px;
  line-height: 1.5;
  color: var(--text-dark);
  margin: 0;
  max-width: 320px;
  opacity: 0;
  animation: success-text-fade 400ms 1000ms ease-out forwards;
}
.success-submessage {
  font-size: 13.5px;
  color: var(--text-gray);
  margin: 0;
  opacity: 0;
  animation: success-text-fade 400ms 1200ms ease-out forwards;
}
.success-state .btn {
  margin-top: 12px;
  opacity: 0;
  animation: success-text-fade 400ms 1400ms ease-out forwards;
}
@keyframes success-text-fade {
  from { opacity: 0; transform: translateY(8px); }
  to   { opacity: 1; transform: translateY(0); }
}

@media (prefers-reduced-motion: reduce) {
  .success-icon__circle,
  .success-icon__check,
  .success-icon-wrap,
  .success-headline,
  .success-message,
  .success-submessage,
  .success-state .btn,
  .spinner {
    animation: none !important;
    opacity: 1 !important;
    stroke-dashoffset: 0 !important;
    transform: none !important;
  }
}

/* ============================================================ */
/* FAQ                                                          */
/* ============================================================ */

.faq {
  padding: clamp(3rem, 6vw, 5rem) 0;
  background: var(--bg-cream);
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 0;
  max-width: 820px;
  margin: clamp(2rem, 4vw, 3rem) auto 0;
}

/* Kategorie-Accordion (umschließt die Frage-Accordions) */
.faq-group { border-bottom: 2px solid var(--border); }
.faq-group:first-child { border-top: 2px solid var(--border); }

.faq-group__summary {
  list-style: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 18px 4px;
}
.faq-group__summary::-webkit-details-marker { display: none; }
.faq-group__summary:focus-visible {
  outline: 2px solid var(--primary-red);
  outline-offset: 2px;
  border-radius: 4px;
}

.faq-group__title {
  flex: 1;
  font-size: 20px;
  font-weight: 500;
  color: var(--text-dark);
  line-height: 1.35;
}

.faq-group__chevron {
  display: inline-flex;
  flex-shrink: 0;
  color: var(--primary-red);
  transition: transform 0.25s ease;
}
.faq-group__chevron svg { width: 24px; height: 24px; }
.faq-group[open] .faq-group__chevron { transform: rotate(180deg); }

.faq-group__body {
  display: flex;
  flex-direction: column;
  gap: 0;
  padding-bottom: 18px;
}

.faq-item {
  background: var(--white);
  border: 1px solid var(--border);
  overflow: hidden;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.faq-item[open] {
  border-color: rgba(165, 0, 68, 0.25);
  box-shadow: 0 12px 32px -16px rgba(165, 0, 68, 0.18);
}

.faq-item__summary {
  list-style: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 18px 20px;
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--text-dark);
  line-height: 1.35;
}
.faq-item__summary::-webkit-details-marker { display: none; }
.faq-item__summary:focus-visible {
  outline: 2px solid var(--primary-red);
  outline-offset: -2px;
}

.faq-item__icon {
  width: 40px;
  height: 40px;
  flex: 0 0 40px;
  border-radius: 10px;
  display: grid;
  place-items: center;
  background: rgba(165, 0, 68, 0.08);
  color: var(--primary-red);
}
.faq-item__icon svg { width: 22px; height: 22px; }

.faq-item__question { flex: 1; }

.faq-item__chevron {
  width: 24px;
  height: 24px;
  flex: 0 0 24px;
  color: var(--text-gray);
  display: grid;
  place-items: center;
  transition: transform 0.2s ease, color 0.2s ease;
}
.faq-item__chevron svg { width: 22px; height: 22px; }
.faq-item[open] .faq-item__chevron {
  transform: rotate(180deg);
  color: var(--primary-red);
}

.faq-item__answer {
  padding: 0 20px 20px 74px;
  font-size: 0.95rem;
  line-height: 1.55;
  color: var(--text-gray);
}
.faq-item__answer > p:first-child { margin-top: 0; }
.faq-item__answer p { margin: 0 0 12px; }

.faq-item__list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}
.faq-item__list li {
  position: relative;
  padding-left: 1.25rem;
}
.faq-item__list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.5rem;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--primary-red);
  opacity: 0.7;
}
.faq-item__list strong { color: var(--text-dark); font-weight: 600; }

.faq-footer {
  margin-top: clamp(2rem, 4vw, 3rem);
  text-align: center;
}
.faq-footer__cta { min-width: min(100%, 320px); }
.faq-footer__sub-cta {
  margin-top: 0.75rem;
  font-size: 0.875rem;
  color: var(--text-gray);
}

.reviews-footer {
  margin-top: clamp(2rem, 4vw, 3rem);
  text-align: center;
}
.reviews-footer__cta { min-width: min(100%, 320px); }
.reviews-footer__sub-cta {
  margin-top: 0.75rem;
  font-size: 0.875rem;
  color: var(--text-gray);
}

@media (max-width: 600px) {
  .faq-item__summary { padding: 16px; font-size: 1rem; gap: 12px; }
  .faq-item__icon { width: 36px; height: 36px; flex-basis: 36px; }
  .faq-item__answer { padding: 0 16px 16px 64px; }
}

@media (prefers-reduced-motion: reduce) {
  .faq-item, .faq-item__chevron { transition: none; }
}

/* ============================================================
   PARTNER — Vertrauens-Section zwischen Hero und Rechner
   ============================================================ */
.partner { background: var(--bg-cream); }

.partner__inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
  align-items: center;
}

/* Mobile: Bild edge-to-edge (volle Sektionsbreite, kein Seitenrand) */
.partner__media {
  width: 100%;
}

.partner__image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

.partner__content {
  display: flex;
  flex-direction: column;
  gap: 18px;
  padding: 0 var(--pad-x);
}

.partner__headline {
  margin-bottom: 0;
  text-align: left;
}

.partner__subline {
  margin: 0;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.4;
  color: var(--text-dark);
}

.partner__list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.partner__list li {
  position: relative;
  padding-left: 28px;
  line-height: 1.5;
  color: var(--text-dark);
}
.partner__list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--primary-red);
  font-weight: 700;
}

.partner__cta {
  align-self: stretch;
  margin-top: 4px;
}

@media (min-width: 768px) {
  /* Desktop: Bild bündig an die linke Viewport-Kante, etwas größere Bildspalte.
     Text-Spalte bleibt rechts und richtet sich an der Container-Kante aus. */
  .partner__inner {
    grid-template-columns: 1.15fr 1fr;
    gap: 56px;
    align-items: center;
  }
  .partner__content {
    padding: 0 max(var(--pad-x), calc((100vw - var(--max-width)) / 2 + var(--pad-x))) 0 0;
  }
  .partner__subline { font-size: 20px; }
  .partner__cta { align-self: flex-start; }
}
