/* ═══════════════════════════════════════
   INSIDE FERTIGHAUS — Design System
   Navy & Holz — Redesign
   ═══════════════════════════════════════ */

:root {
  /* ── Navy — Marke & Rahmen ── */
  --navy:        #1E2A44;
  --navy-deep:   #161F35;

  /* ── Flächen ── */
  --bg:          #FAFBFC;
  --bg-alt:      #F2F4F8;
  --bg-deep:     var(--navy-deep);
  --white:       #FFFFFF;

  /* ── Text ── */
  --ink:         #1C2333;
  --ink-2:       #5A6478;
  --ink-3:       #7A849A;
  --rule:        #D5DAE3;

  /* ── On-Navy Text ── */
  --on-navy:     #FFFFFF;
  --on-navy-dim: #A9B3C9;

  /* ── Bernstein/Holz-Akzent ── */
  --amber:       #D98E32;
  --amber-dk:    #B97524;
  --amber-bg:    #FBF3E6;

  /* ── Ampel (Kalkulator) ── */
  --ampel-gruen: #2D8A3E;
  --ampel-gelb:  #C49A0A;
  --ampel-rot:   #C43D3D;

  /* Radien */
  --r-sm: 6px;  --r-md: 10px;  --r-lg: 12px;  --r-xl: 16px;

  /* Schatten — kühl getönt */
  --shadow-sm:  0 1px 3px rgba(30,42,68,.06);
  --shadow-md:  0 4px 16px rgba(30,42,68,.08), 0 2px 4px rgba(30,42,68,.04);
  --shadow-lg:  0 24px 48px rgba(30,42,68,.10), 0 8px 16px rgba(30,42,68,.06);

  /* Spacing */
  --nav-h: 72px;
  --max-w: 1280px;
  --section-py-desktop: 140px;
  --section-py-mobile:  80px;

  --ease-out: cubic-bezier(.22,.61,.36,1);
  --ease-expo: cubic-bezier(.16, 1, .3, 1);
}


/* ── Fluid Typo — Archivo ── */
.h-display {
  font-family: 'Archivo', sans-serif;
  font-size: clamp(44px, 6vw, 80px);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: var(--ink);
}
.h-display em {
  font-style: normal;
  color: var(--amber);
}

.h-1 {
  font-family: 'Archivo', sans-serif;
  font-size: clamp(36px, 5vw, 60px);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -0.02em;
  color: var(--ink);
}

.h-2 {
  font-family: 'Archivo', sans-serif;
  font-size: clamp(24px, 3vw, 40px);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.015em;
  color: var(--ink);
}

.h-3 {
  font-family: 'Archivo', sans-serif;
  font-size: clamp(18px, 1.6vw, 22px);
  font-weight: 600;
  letter-spacing: -0.01em;
  line-height: 1.3;
  color: var(--ink);
}

.lead {
  font-family: 'Archivo', sans-serif;
  font-size: clamp(17px, 1.3vw, 20px);
  font-weight: 400;
  line-height: 1.7;
  color: var(--ink-2);
}

.back-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 15px;
  color: var(--ink-3);
  margin-bottom: 32px;
  transition: color 300ms var(--ease-out);
}
.back-link:hover { color: var(--navy); }

.eyebrow {
  font-family: 'Archivo', sans-serif;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.eyebrow::before {
  content: '';
  display: inline-block;
  width: 24px;
  height: 2px;
  background: var(--amber);
  flex-shrink: 0;
}

.caption {
  font-family: 'Archivo', sans-serif;
  font-size: 14px;
  line-height: 1.5;
  color: var(--ink-3);
}


/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: 90px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

::selection {
  background: var(--navy);
  color: var(--on-navy);
}

body {
  font-family: 'Archivo', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-size: 17px;
  line-height: 1.7;
  color: var(--ink);
  background: var(--bg);
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--navy); text-decoration: none; transition: color 300ms var(--ease-out); }
a:hover { color: var(--amber); }
a:focus-visible { outline: 2px solid var(--amber); outline-offset: 2px; border-radius: 2px; }

/* ── Skip Link ── */
.skip-link {
  position: absolute;
  top: -100%;
  left: 16px;
  background: var(--amber);
  color: var(--navy);
  padding: 8px 16px;
  border-radius: var(--r-sm);
  z-index: 1000;
  font-size: 14px;
  font-weight: 600;
}
.skip-link:focus { top: 8px; }

/* ── Layout ── */
.wrap {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
}
@media (min-width: 768px) {
  .wrap { padding: 0 40px; }
}

section {
  padding: var(--section-py-mobile) 0;
}
@media (min-width: 768px) {
  section { padding: var(--section-py-desktop) 0; }
}


/* ── Reveal (Motion) ── */
html.js .reveal {
  opacity: 0;
  transform: translateY(56px);
  transition: opacity 700ms var(--ease-expo), transform 700ms var(--ease-expo);
  will-change: opacity, transform;
}
html.js .reveal-left {
  opacity: 0;
  transform: translateX(-72px);
  transition: opacity 700ms var(--ease-expo), transform 700ms var(--ease-expo);
  will-change: opacity, transform;
}
html.js .reveal-right {
  opacity: 0;
  transform: translateX(72px);
  transition: opacity 700ms var(--ease-expo), transform 700ms var(--ease-expo);
  will-change: opacity, transform;
}
html.js .reveal.visible,
html.js .reveal-left.visible,
html.js .reveal-right.visible {
  opacity: 1;
  transform: translate(0, 0);
  will-change: auto;
}
.reveal-d1 { transition-delay: 150ms; }
.reveal-d2 { transition-delay: 300ms; }
.reveal-d3 { transition-delay: 450ms; }
.reveal-d4 { transition-delay: 600ms; }

/* Hero entrance */
html.js .hero .reveal,
html.js .checkliste-hero .reveal,
html.js .stammtisch-hero .reveal,
html.js .check-hero .reveal,
html.js .beratung-hero .reveal,
html.js .ausbaustufen-hero .reveal,
html.js .kalk-hero .reveal,
html.js .wer-section .reveal {
  transform: translateY(32px);
  transition-duration: 800ms;
}
html.js .hero .reveal.visible,
html.js .checkliste-hero .reveal.visible,
html.js .stammtisch-hero .reveal.visible,
html.js .check-hero .reveal.visible,
html.js .beratung-hero .reveal.visible,
html.js .ausbaustufen-hero .reveal.visible,
html.js .kalk-hero .reveal.visible,
html.js .wer-section .reveal.visible {
  transform: none;
}

/* Hero image zoom-out on load */
html.js .hero-image img {
  transform: scale(1.06);
  transition: transform 1.4s var(--ease-expo);
}
html.js .hero-image img.loaded {
  transform: scale(1);
}

/* Image band zoom reveal */
html.js .image-band img {
  transform: scale(1.06);
  transition: transform 1.4s var(--ease-expo);
}
html.js .image-band img.visible,
html.js .image-band.visible img {
  transform: scale(1);
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  html.js .reveal,
  html.js .reveal-left,
  html.js .reveal-right {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
    will-change: auto !important;
  }
  html.js .hero-image img,
  html.js .image-band img {
    transform: none !important;
    transition: none !important;
  }
  .count-up { transition: none !important; }
  /* Global: disable non-essential transitions/animations */
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

/* Mobile: reduce horizontal distances */
@media (max-width: 767px) {
  html.js .reveal-left { transform: translateX(-32px); }
  html.js .reveal-right { transform: translateX(32px); }
}

/* Overflow protection for side reveals */
.stammtisch-list,
.checkliste-list,
.schritte-list,
.versprechen-list,
.unterschied-section .wrap {
  overflow-x: hidden;
}


/* ═══════════════════════════════════════
   NAVIGATION — Navy Bar
   ═══════════════════════════════════════ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--nav-h);
  background: var(--navy);
  z-index: 100;
  display: flex;
  align-items: center;
  transition: background 300ms var(--ease-out), box-shadow 300ms var(--ease-out);
}
.nav .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  line-height: 1.1;
}
.nav-logo-mark { flex-shrink: 0; display: flex; }
.nav-logo-wordmark {
  display: flex;
  align-items: baseline;
  gap: 8px;
  font-family: 'Archivo', sans-serif;
  text-transform: uppercase;
}
.nav-logo-inside {
  font-weight: 800;
  font-size: 18px;
  color: var(--on-navy);
  letter-spacing: 0.02em;
}
.nav-logo-fertighaus {
  font-weight: 500;
  font-size: 18px;
  color: var(--on-navy-dim);
  letter-spacing: 0.18em;
}
@media (max-width: 767px) {
  .nav-logo-fertighaus { display: none; }
}

/* Nav Links */
.nav-link {
  display: none;
  font-family: 'Archivo', sans-serif;
  font-size: 14px;
  font-weight: 500;
  color: var(--on-navy-dim);
  transition: color 300ms var(--ease-out);
}
.nav-link:hover {
  color: var(--on-navy);
}
@media (min-width: 768px) {
  .nav-link { display: inline-flex; }
}

.nav-right {
  display: flex;
  align-items: center;
  gap: 24px;
}

/* Nav CTA — Amber */
.nav-cta {
  display: inline-flex;
  align-items: center;
  padding: 10px 24px;
  background: var(--amber);
  color: var(--navy);
  border-radius: var(--r-md);
  font-size: 14px;
  font-weight: 700;
  border: none;
  cursor: pointer;
  transition: background 300ms var(--ease-out), transform 300ms var(--ease-out);
}
.nav-cta:hover {
  background: var(--amber-dk);
  color: var(--navy);
  transform: translateY(-1px);
}
@media (max-width: 767px) {
  .nav-cta {
    padding: 9px 18px;
    font-size: 13px;
  }
}

/* ── Hamburger Button ── */
.nav-hamburger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  width: 44px;
  height: 44px;
  position: relative;
  z-index: 201;
  flex-shrink: 0;
}
.nav-hamburger:focus-visible { outline: 2px solid var(--amber); outline-offset: 2px; border-radius: var(--r-sm); }
@media (max-width: 767px) {
  .nav-hamburger { display: flex; align-items: center; justify-content: center; }
}
.nav-hamburger-lines {
  display: flex;
  flex-direction: column;
  gap: 5px;
  width: 22px;
}
.nav-hamburger-lines span {
  display: block;
  height: 2px;
  width: 100%;
  background: var(--on-navy);
  border-radius: 1px;
  transition: transform 300ms var(--ease-expo), opacity 200ms ease;
  transform-origin: center;
}
/* Animate to X when open */
.nav-hamburger[aria-expanded="true"] .nav-hamburger-lines span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.nav-hamburger[aria-expanded="true"] .nav-hamburger-lines span:nth-child(2) {
  opacity: 0;
}
.nav-hamburger[aria-expanded="true"] .nav-hamburger-lines span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* ── Mobile Overlay Menu — Navy ── */
.nav-mobile-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: var(--navy);
  z-index: 200;
  padding-top: var(--nav-h);
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  opacity: 0;
  transform: translateY(-20px);
  transition: opacity 350ms var(--ease-expo), transform 350ms var(--ease-expo);
}
.nav-mobile-overlay.open {
  display: flex;
  opacity: 1;
  transform: translateY(0);
}
@media (prefers-reduced-motion: reduce) {
  .nav-mobile-overlay {
    transition: none !important;
    transform: none !important;
  }
}

.nav-mobile-overlay a {
  font-family: 'Archivo', sans-serif;
  font-size: 22px;
  font-weight: 600;
  color: var(--on-navy);
  padding: 12px 24px;
  transition: color 300ms var(--ease-out);
  text-decoration: none;
}
.nav-mobile-overlay a:hover { color: var(--amber); }
.nav-mobile-overlay .nav-cta {
  margin-top: 16px;
  padding: 16px 40px;
  font-size: 16px;
  background: var(--amber);
  color: var(--navy);
  border-radius: var(--r-md);
}

body.nav-open { overflow: hidden; }

/* ── Nav Dropdown (Ratgeber) ── */
.nav-dropdown {
  position: relative;
}
.nav-dropdown-trigger {
  display: none;
  font-family: 'Archivo', sans-serif;
  font-size: 14px;
  font-weight: 500;
  color: var(--on-navy-dim);
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  transition: color 300ms var(--ease-out);
  align-items: center;
  gap: 5px;
}
.nav-dropdown-trigger:hover,
.nav-dropdown-trigger[aria-expanded="true"] {
  color: var(--on-navy);
}
.nav-dropdown-trigger svg {
  transition: transform 250ms var(--ease-out);
}
.nav-dropdown-trigger[aria-expanded="true"] svg {
  transform: rotate(180deg);
}
@media (min-width: 768px) {
  .nav-dropdown-trigger { display: inline-flex; }
}
.nav-dropdown-panel {
  display: none;
  position: absolute;
  top: calc(100% + 12px);
  left: 50%;
  transform: translateX(-50%);
  background: var(--navy);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--r-md);
  padding: 8px 0;
  min-width: 280px;
  box-shadow: 0 8px 32px rgba(22,31,53,0.35);
  z-index: 110;
  opacity: 0;
  transition: opacity 200ms var(--ease-out);
}
.nav-dropdown-panel.open {
  display: block;
  opacity: 1;
}
.nav-dropdown-panel a {
  display: block;
  padding: 10px 20px;
  font-family: 'Archivo', sans-serif;
  font-size: 13px;
  font-weight: 500;
  color: var(--on-navy-dim);
  text-decoration: none;
  transition: color 200ms ease, background 200ms ease;
  white-space: nowrap;
}
.nav-dropdown-panel a:hover {
  color: var(--on-navy);
  background: rgba(255,255,255,0.06);
}
.nav-dropdown-panel a.active {
  color: var(--amber);
}
.nav-dropdown-panel a small {
  display: block;
  font-size: 12px;
  font-weight: 400;
  color: rgba(255,255,255,0.6);
  margin-top: 1px;
}

/* Mobile overlay — Ratgeber group */
.nav-mobile-group-label {
  font-family: 'Archivo', sans-serif;
  font-size: 22px;
  font-weight: 600;
  color: var(--on-navy);
  padding: 12px 24px 4px;
}
.nav-mobile-overlay a.nav-mobile-sub {
  font-size: 17px;
  font-weight: 500;
  color: var(--on-navy-dim);
  padding: 8px 24px 8px 44px;
}
.nav-mobile-overlay a.nav-mobile-sub:hover {
  color: var(--amber);
}

/* ── Nav scroll effect ── */
.nav.scrolled {
  background: rgba(30,42,68,0.97);
  box-shadow: 0 2px 16px rgba(22,31,53,0.25);
}


/* ═══════════════════════════════════════
   BUTTONS
   ═══════════════════════════════════════ */
.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 16px 36px;
  background: var(--amber);
  color: var(--navy);
  border: none;
  border-radius: var(--r-md);
  font-size: 16px;
  font-weight: 700;
  font-family: inherit;
  cursor: pointer;
  transition: background 300ms var(--ease-out), transform 300ms var(--ease-out), box-shadow 300ms var(--ease-out);
  line-height: 1.4;
}
.btn-primary:hover {
  background: var(--amber-dk);
  color: var(--navy);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}
.btn-primary:active { transform: scale(0.98); box-shadow: var(--shadow-sm); }
.btn-primary:focus-visible { outline: 3px solid var(--amber); outline-offset: 3px; }

.btn-secondary {
  display: inline-flex;
  align-items: center;
  padding: 16px 36px;
  background: transparent;
  color: var(--navy);
  border: 2px solid var(--navy);
  border-radius: var(--r-md);
  font-size: 16px;
  font-weight: 600;
  font-family: inherit;
  cursor: pointer;
  transition: background 300ms var(--ease-out), color 300ms var(--ease-out), transform 300ms var(--ease-out);
}
.btn-secondary:hover {
  background: var(--navy);
  color: var(--on-navy);
  transform: translateY(-2px);
  box-shadow: var(--shadow-sm);
}
.btn-secondary:active { transform: scale(0.98); }
.btn-secondary:focus-visible { outline: 3px solid var(--navy); outline-offset: 3px; }

.btn-text {
  display: inline-flex;
  align-items: center;
  font-size: 16px;
  font-weight: 600;
  font-family: inherit;
  color: var(--ink-2);
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  position: relative;
  transition: color 300ms var(--ease-out);
}
.btn-text::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--amber);
  transition: width 400ms var(--ease-out);
}
.btn-text:hover { color: var(--navy); }
.btn-text:hover::after { width: 100%; }


/* ═══════════════════════════════════════
   HERO — Split Layout
   ═══════════════════════════════════════ */
.hero {
  padding-top: var(--nav-h);
  min-height: 100vh;
  min-height: 100dvh;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: auto 1fr;
  background: var(--white);
}
@media (min-width: 768px) {
  .hero {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr;
  }
}

.hero-image {
  position: relative;
  overflow: hidden;
  max-height: 50vh;
}
@media (min-width: 768px) {
  .hero-image {
    max-height: unset;
    order: 2;
  }
}

.hero-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center center;
}
@media (min-width: 768px) {
  .hero-image img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border-radius: 0;
    box-shadow: none;
  }
}

/* Placeholder when image is missing */
.hero-image-placeholder {
  width: 100%;
  height: 100%;
  min-height: 300px;
  background: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--on-navy-dim);
  font-family: 'Archivo', sans-serif;
  font-size: 15px;
  text-align: center;
  padding: 24px;
}

.hero-image-caption {
  display: none;
}

.hero-content {
  padding: 48px 24px 56px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 20px;
  order: 1;
}
@media (min-width: 768px) {
  .hero-content {
    padding: 120px 6% 80px 40px;
    order: 1;
  }
}

.hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: 'Archivo', sans-serif;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--amber);
}
.hero-eyebrow-line {
  display: inline-block;
  width: 32px;
  height: 2px;
  background: var(--amber);
}

.hero h1 { margin-bottom: 4px; max-width: 620px; }

.hero-sub {
  font-family: 'Archivo', sans-serif;
  font-size: clamp(16px, 1.6vw, 19px);
  font-weight: 400;
  line-height: 1.7;
  color: var(--ink-2);
  max-width: 520px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  align-items: center;
  margin-top: 16px;
}
.hero-actions .btn-primary {
  padding: 18px 40px;
  font-size: 17px;
}

/* Hero checkmarks row */
.hero-checks {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 8px;
  font-family: 'Archivo', sans-serif;
  font-size: 14px;
  color: var(--ink-2);
}
.hero-checks span::before {
  content: '✓ ';
  color: var(--amber);
  font-weight: 700;
}


/* ═══════════════════════════════════════
   IMAGE BANDS — Full Width
   ═══════════════════════════════════════ */
.image-band {
  width: 100%;
  height: 50vh;
  overflow: hidden;
  position: relative;
}
@media (min-width: 768px) {
  .image-band { height: 55vh; }
}
@media (max-width: 767px) {
  .image-band { height: 40vh; }
}

.image-band img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.image-band-placeholder {
  width: 100%;
  height: 100%;
  background: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--on-navy-dim);
  font-family: 'Archivo', sans-serif;
  font-size: 15px;
  text-align: center;
  padding: 24px;
}


/* ═══════════════════════════════════════
   FACTS BAR
   ═══════════════════════════════════════ */
.facts-bar {
  background: var(--white);
  padding: 56px 0;
  border-bottom: 1px solid var(--rule);
}
.facts-bar-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px 24px;
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}
@media (min-width: 768px) {
  .facts-bar-grid { grid-template-columns: repeat(4, 1fr); gap: 48px; }
}
.fact-number {
  font-family: 'Archivo', sans-serif;
  font-size: clamp(36px, 4.5vw, 52px);
  font-weight: 800;
  color: var(--navy);
  line-height: 1.1;
  margin-bottom: 6px;
  position: relative;
}
/* Amber underline accent */
.fact-number::after {
  content: '';
  display: block;
  width: 32px;
  height: 3px;
  background: var(--amber);
  margin: 8px auto 0;
  border-radius: 2px;
}
.fact-label {
  font-family: 'Archivo', sans-serif;
  font-size: 14px;
  color: var(--ink-3);
  line-height: 1.4;
}


/* ═══════════════════════════════════════
   TOOL-TEASER — Karten
   ═══════════════════════════════════════ */
.tool-teaser-section {
  background: var(--bg-alt);
  padding: var(--section-py-mobile) 0;
}
@media (min-width: 768px) {
  .tool-teaser-section { padding: 120px 0; }
}

.tool-teaser-grid {
  display: grid;
  gap: 24px;
  max-width: 800px;
  margin: 0 auto;
  align-items: stretch;
}
@media (min-width: 768px) {
  .tool-teaser-grid { grid-template-columns: 1fr 1fr; }
}

.tool-teaser-card {
  display: flex;
  flex-direction: column;
  background: var(--white);
  border: 1px solid var(--rule);
  border-radius: var(--r-lg);
  padding: 36px 28px;
  box-shadow: var(--shadow-sm);
}
.tool-teaser-card .h-3 { margin-bottom: 12px; }
.tool-teaser-card p {
  font-size: 16px;
  line-height: 1.65;
  color: var(--ink-2);
  margin-bottom: 24px;
  flex: 1;
}
.tool-teaser-card .btn-secondary {
  margin-top: auto;
  text-align: center;
  width: 100%;
  white-space: nowrap;
}

.tool-teaser-grid-3 { max-width: 1080px; }
@media (min-width: 768px) {
  .tool-teaser-grid-3 { grid-template-columns: 1fr 1fr 1fr; }
}

/* Tool card icon accent */
.tool-teaser-card .tool-icon {
  color: var(--amber);
  font-size: 28px;
  margin-bottom: 16px;
}


/* ═══════════════════════════════════════
   ANBIETER-PITCH
   ═══════════════════════════════════════ */
.anbieter-pitch-section {
  background: var(--white);
  padding: var(--section-py-mobile) 0;
}
@media (min-width: 768px) {
  .anbieter-pitch-section { padding: 120px 0; }
}

.anbieter-pitch-inner { max-width: 720px; }
.anbieter-pitch-inner .h-1 { margin-bottom: 32px; }

.anbieter-pitch-text {
  font-size: 17px;
  line-height: 1.75;
  color: var(--ink-2);
  margin-bottom: 20px;
  max-width: 640px;
}


/* ═══════════════════════════════════════
   INSIDE FERTIGHAUS — Navy Section
   ═══════════════════════════════════════ */
.inside-section {
  background: var(--navy);
  color: var(--on-navy);
  padding: 0;
  overflow: hidden;
}

.inside-grid {
  display: grid;
  grid-template-columns: 1fr;
}
@media (min-width: 768px) {
  .inside-grid {
    grid-template-columns: 1fr 1fr;
    min-height: 560px;
  }
}

.inside-content {
  padding: var(--section-py-mobile) 24px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
@media (min-width: 768px) {
  .inside-content {
    padding: 100px 6% 100px 40px;
    max-width: 640px;
  }
}

.inside-section .eyebrow {
  color: var(--amber);
}
.inside-section .eyebrow::before {
  background: var(--amber);
}
.inside-section .h-1 {
  color: var(--on-navy);
  margin-bottom: 28px;
}
.inside-section .h-1 em {
  font-style: normal;
  color: var(--amber);
}

.inside-text p {
  font-size: 17px;
  line-height: 1.75;
  color: var(--on-navy-dim);
  margin-bottom: 20px;
  max-width: 540px;
}
.inside-text strong { color: var(--on-navy); }

.inside-image {
  overflow: hidden;
  min-height: 300px;
}
.inside-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.inside-image-placeholder {
  width: 100%;
  height: 100%;
  min-height: 300px;
  background: var(--navy-deep);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--on-navy-dim);
  font-size: 15px;
  text-align: center;
  padding: 24px;
}


/* ═══════════════════════════════════════
   WIE ES FUNKTIONIERT — Schritte
   ═══════════════════════════════════════ */
#wie-es-funktioniert {
  background: var(--bg);
}
#wie-es-funktioniert .eyebrow,
#wie-es-funktioniert .h-1 {
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
}

.schritte-list {
  margin-top: 64px;
  display: flex;
  flex-direction: column;
  gap: 0;
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
}

.schritt {
  display: grid;
  grid-template-columns: 100px minmax(0, 1fr);
  gap: 48px;
  align-items: start;
  padding: 48px 0;
  position: relative;
}

.schritt:not(:last-child)::after {
  content: '';
  position: absolute;
  left: 50px;
  top: 96px;
  bottom: 0;
  border-left: 1px dashed var(--rule);
}

.schritt-number {
  font-family: 'Archivo', sans-serif;
  font-size: 56px;
  font-weight: 800;
  color: rgba(30,42,68,0.1);
  line-height: 1;
  text-align: center;
}

.schritt-content { min-width: 0; }
.schritt-content h3 { margin-bottom: 16px; }
.schritt-content p {
  font-size: 17px;
  line-height: 1.7;
  color: var(--ink-2);
  max-width: 600px;
}

@media (max-width: 767px) {
  .schritt {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .schritt-number {
    font-size: 40px;
    text-align: left;
  }
  .schritt:not(:last-child)::after { display: none; }
}


/* ═══════════════════════════════════════
   CASHBACK / GUTSCHEIN
   ═══════════════════════════════════════ */
.gutschein-section {
  background: var(--bg-alt);
}
.gutschein-section .eyebrow {
  color: var(--amber-dk);
}
.gutschein-section .eyebrow::before {
  background: var(--amber-dk);
}

.gutschein-card {
  background: var(--white);
  border: 1px solid var(--rule);
  border-radius: var(--r-lg);
  padding: 48px 32px;
  max-width: 780px;
  box-shadow: var(--shadow-sm);
  margin-top: 56px;
}
@media (min-width: 768px) {
  .gutschein-card { padding: 64px 72px; }
}

.gutschein-card p {
  font-size: clamp(16px, 1.3vw, 18px);
  line-height: 1.7;
  color: var(--ink-2);
  margin-bottom: 24px;
  max-width: 640px;
}
.gutschein-card p:last-child { margin-bottom: 0; }
.gutschein-card strong { color: var(--amber-dk); }


/* ═══════════════════════════════════════
   VERSPRECHEN
   ═══════════════════════════════════════ */
.versprechen-section { background: var(--bg-alt); }

.versprechen-list {
  margin-top: 64px;
  display: flex;
  flex-direction: column;
  gap: 0;
  max-width: 680px;
}

.versprechen-item {
  padding: 40px 0;
  border-top: 1px solid var(--rule);
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 16px;
  align-items: start;
}

.versprechen-numeral {
  font-family: 'Archivo', sans-serif;
  font-size: 14px;
  font-weight: 700;
  color: var(--amber);
  padding-top: 4px;
  text-transform: uppercase;
}

.versprechen-item h3 { margin-bottom: 6px; }
.versprechen-item p {
  font-size: 16px;
  line-height: 1.7;
  color: var(--ink-2);
  max-width: 580px;
}


/* ═══════════════════════════════════════
   FORMULAR
   ═══════════════════════════════════════ */
.form-section {
  background: var(--bg);
}

.gutschein-display {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  margin-bottom: 48px;
  max-width: 680px;
}
@media (min-width: 600px) {
  .gutschein-display {
    grid-template-columns: 1fr 2fr;
    gap: 24px;
  }
}

.gutschein-counter-card {
  background: var(--bg-alt);
  border-radius: var(--r-xl);
  padding: 36px 28px;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.counter-label {
  font-size: 11px;
  font-weight: 600;
  color: var(--ink-3);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.counter-value {
  font-family: 'Archivo', sans-serif;
  font-size: clamp(48px, 6vw, 72px);
  font-weight: 800;
  color: var(--amber-dk);
  line-height: 1.1;
  transition: color 400ms var(--ease-out);
}

.counter-hint {
  font-size: 13px;
  color: var(--ink-3);
  margin-top: 8px;
}

/* Stair Cards */
.gutschein-stairs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  align-content: center;
}

.stair-card {
  border: 1px solid var(--rule);
  border-radius: var(--r-lg);
  padding: 18px 14px;
  text-align: center;
  transition: all 500ms var(--ease-out);
  display: flex;
  flex-direction: column;
  gap: 3px;
  background: var(--bg);
}
.stair-label {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-3);
}
.stair-title {
  font-size: 13px;
  font-weight: 500;
  color: var(--ink-2);
}
.stair-value {
  font-family: 'Archivo', sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: var(--amber);
  margin-top: 4px;
}

.stair-card.active {
  border-color: var(--navy);
  background: var(--white);
  box-shadow: var(--shadow-sm);
}
.stair-card.completed {
  border-color: var(--navy);
  background: var(--navy);
}
.stair-card.completed .stair-label,
.stair-card.completed .stair-title { color: var(--on-navy-dim); }
.stair-card.completed .stair-value { color: var(--on-navy); }

/* Form Container */
.form-container {
  max-width: 600px;
  background: var(--white);
  border: 1px solid var(--rule);
  border-radius: var(--r-lg);
  padding: 48px 32px;
  box-shadow: var(--shadow-md);
}
@media (min-width: 768px) {
  .form-container { padding: 56px 48px; }
}

/* Progress Bar */
.form-progress {
  display: flex;
  gap: 8px;
  margin-bottom: 32px;
}
.progress-step {
  flex: 1;
  height: 3px;
  background: var(--rule);
  border-radius: 2px;
  transition: background 500ms var(--ease-out);
}
.progress-step.active,
.progress-step.completed { background: var(--amber); }

.progress-labels {
  display: flex;
  justify-content: space-between;
  margin-bottom: 8px;
  font-size: 11px;
  color: var(--ink-3);
  letter-spacing: 0.04em;
}

/* Form Steps — hidden only with JS enabled (no-JS fallback: all visible) */
.js .form-step {
  display: none;
  animation: fadeSlideIn 500ms var(--ease-out);
}
.js .form-step.active { display: block; }
.form-step { margin-bottom: 32px; }

/* No-JS: hide wizard chrome that requires JS */
html:not(.js) .form-progress,
html:not(.js) .progress-labels,
html:not(.js) .form-back,
html:not(.js) #btn-to-step-3 { display: none; }

@keyframes fadeSlideIn {
  from { opacity: 0; transform: translateY(12px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* Form Fields */
.field { margin-bottom: 28px; }

.field label {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 8px;
}

.field input[type="text"],
.field input[type="email"],
.field input[type="tel"],
.field select,
.field textarea {
  width: 100%;
  padding: 12px 0;
  border: none;
  border-bottom: 2px solid var(--rule);
  border-radius: 0;
  font-size: 17px;
  font-family: inherit;
  color: var(--ink);
  background: transparent;
  transition: border-color 300ms var(--ease-out);
}
.field select {
  padding: 12px 4px;
  cursor: pointer;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-bottom-color: var(--amber);
}
.field input:focus-visible,
.field select:focus-visible,
.field textarea:focus-visible {
  outline: 2px solid var(--amber);
  outline-offset: 2px;
}

.field textarea {
  resize: vertical;
  min-height: 100px;
  border: 2px solid var(--rule);
  border-radius: var(--r-sm);
  padding: 12px 16px;
}
.field textarea:focus {
  border-color: var(--amber);
}

.field-hint {
  font-size: 13px;
  color: var(--ink-3);
  margin-top: 6px;
}

/* Radio & Checkbox groups */
.radio-group, .checkbox-group {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 8px;
}
.radio-group label,
.checkbox-group label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 15px;
  font-weight: 400;
  color: var(--ink-2);
  cursor: pointer;
  padding: 10px 16px;
  border: 1px solid var(--rule);
  border-radius: var(--r-sm);
  transition: border-color 300ms var(--ease-out), background 300ms var(--ease-out);
}
.radio-group label:hover,
.checkbox-group label:hover { border-color: var(--navy); }

.radio-group input:checked + span,
.checkbox-group input:checked + span { color: var(--navy); font-weight: 600; }
.radio-group input,
.checkbox-group input { accent-color: var(--navy); }

/* DSGVO */
.dsgvo-field { margin-bottom: 28px; }
.dsgvo-field label {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 13px;
  line-height: 1.6;
  color: var(--ink-2);
  font-weight: 400;
  cursor: pointer;
}
.dsgvo-field input[type="checkbox"] {
  margin-top: 3px;
  accent-color: var(--navy);
  flex-shrink: 0;
}

/* Form buttons */
.form-actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 36px;
}
.form-actions .btn-primary { width: 100%; text-align: center; }

.form-link-secondary {
  background: none;
  border: none;
  color: var(--ink-3);
  font-size: 13px;
  cursor: pointer;
  text-align: center;
  padding: 8px;
  font-family: inherit;
  transition: color 300ms var(--ease-out);
}
.form-link-secondary:hover { color: var(--navy); }
.form-link-secondary:focus-visible { outline: 2px solid var(--amber); outline-offset: 2px; }

.cashback-hint {
  margin-top: 16px;
  font-size: 14px;
  color: var(--ink-3);
  text-align: center;
}

/* Wizard → Formular Handoff */
.wizard-notice {
  background: #e8f5e9;
  color: #2e7d32;
  border: 1px solid #c8e6c9;
  border-radius: var(--r-md);
  padding: 14px 18px;
  font-size: 14px;
  line-height: 1.5;
  margin-bottom: 20px;
}

.form-back {
  background: none;
  border: none;
  color: var(--ink-3);
  font-size: 14px;
  cursor: pointer;
  padding: 8px 0;
  font-family: inherit;
  margin-bottom: 24px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: color 300ms var(--ease-out);
}
.form-back:hover { color: var(--ink); }
.form-back:focus-visible { outline: 2px solid var(--amber); outline-offset: 2px; }

.optional {
  color: var(--ink-3);
  font-weight: 400;
  font-size: 0.9em;
}

/* Form Step Title */
.form-step-title {
  font-size: clamp(18px, 2.5vw, 22px);
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 28px;
  line-height: 1.3;
}

/* Tile Groups */
.tile-group {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 8px;
}
.tile-group-row {
  flex-direction: row;
  flex-wrap: wrap;
}

/* Tiles */
.tile {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 4px;
  padding: 20px 24px;
  border: 2px solid var(--rule);
  border-radius: var(--r-md);
  background: var(--bg);
  cursor: pointer;
  text-align: left;
  font-family: inherit;
  transition: border-color 300ms var(--ease-out), background 300ms var(--ease-out), box-shadow 300ms var(--ease-out);
}
.tile:hover {
  border-color: var(--navy);
  background: var(--white);
}
.tile:focus-visible {
  outline: 2px solid var(--amber);
  outline-offset: 2px;
}
.tile.selected {
  border-color: var(--amber);
  background: var(--white);
  box-shadow: 0 0 0 1px var(--amber);
}
.tile-title {
  font-size: 16px;
  font-weight: 600;
  color: var(--ink);
}
.tile-desc {
  font-size: 14px;
  color: var(--ink-3);
  line-height: 1.4;
}

/* Small tiles (row layout) */
.tile-sm {
  flex: 1;
  min-width: 0;
  padding: 14px 16px;
  align-items: center;
  text-align: center;
}
.tile-sm .tile-title {
  font-size: 14px;
}

@media (max-width: 479px) {
  .tile-group-row { flex-direction: column; }
  .tile-sm { min-width: 100%; }
}

.hidden { display: none !important; }

.form-trust {
  margin-top: 12px;
  font-size: 13px;
  color: var(--ink-3);
  text-align: center;
  line-height: 1.5;
}


/* ═══════════════════════════════════════
   KENNEN SIE DAS
   ═══════════════════════════════════════ */
.kennen-section { background: var(--bg); }

.kennen-section .wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 96px;
  align-items: start;
}
@media (max-width: 900px) {
  .kennen-section .wrap {
    grid-template-columns: 1fr;
    gap: 64px;
  }
}

.kennen-list {
  margin-top: 64px;
  display: flex;
  flex-direction: column;
  gap: 48px;
  max-width: 680px;
}

.kennen-answer {
  margin-top: 80px;
  max-width: 480px;
}
@media (max-width: 900px) {
  .kennen-answer { margin-top: 0; }
}

.kennen-answer-headline {
  font-family: 'Archivo', sans-serif;
  font-size: clamp(26px, 2.8vw, 34px);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.015em;
  margin: 16px 0 32px;
  color: var(--ink);
}
.kennen-answer-headline em {
  font-style: normal;
  color: var(--amber);
}

.kennen-answer-text {
  font-size: 17px;
  line-height: 1.65;
  color: var(--ink-2);
  margin-bottom: 20px;
  max-width: 440px;
}

.kennen-item {
  font-family: 'Archivo', sans-serif;
  font-size: clamp(20px, 2.2vw, 26px);
  font-weight: 500;
  line-height: 1.4;
  color: var(--ink-2);
  padding-left: 32px;
  border-left: 3px solid var(--amber);
}
.kennen-item strong { color: var(--ink); font-weight: 600; }


/* ═══════════════════════════════════════
   WER ICH BIN — editorial
   ═══════════════════════════════════════ */
.wer-section { overflow: hidden; }

.wer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  align-items: start;
}
@media (min-width: 768px) {
  .wer-grid {
    grid-template-columns: 45fr 55fr;
    gap: 64px;
  }
}

.wer-photo-col { position: relative; }

.wer-photo-col img {
  width: 100%;
  object-fit: cover;
  object-position: center 20%;
  border-radius: 0;
  box-shadow: none;
}
@media (max-width: 767px) {
  .wer-photo-col img {
    border-radius: var(--r-lg);
  }
}

.wer-photo-caption {
  margin-top: 16px;
  font-size: 13px;
  line-height: 1.5;
  color: var(--ink-3);
}

.wer-text-col .eyebrow { margin-bottom: 12px; }
.wer-text-col .h-1 { margin-bottom: 48px; }

.wer-prose p {
  font-size: clamp(16px, 1.3vw, 18px);
  line-height: 1.7;
  color: var(--ink-2);
  margin-bottom: 24px;
  max-width: 600px;
}

/* Drop cap */
.wer-dropcap::first-letter {
  font-family: 'Archivo', sans-serif;
  font-size: 4em;
  font-weight: 800;
  float: left;
  line-height: 0.75;
  margin-right: 12px;
  margin-top: 8px;
  color: var(--navy);
}

/* Pull quote */
.wer-pullquote {
  font-family: 'Archivo', sans-serif;
  font-size: clamp(22px, 2.5vw, 32px);
  font-weight: 700;
  line-height: 1.25;
  color: var(--ink);
  padding-left: 32px;
  border-left: 4px solid var(--amber);
  margin: 48px 0;
  max-width: 520px;
}

/* Signature — Caveat stays as micro-detail */
.wer-signature {
  font-family: 'Caveat', cursive;
  font-size: 28px;
  color: var(--ink-3);
  margin-top: 32px;
}


/* ═══════════════════════════════════════
   DIESE 10% — Unterschied-Sektion
   ═══════════════════════════════════════ */
.unterschied-section {
  background: var(--bg-alt);
}

.section-header {
  margin-bottom: 64px;
  max-width: 680px;
}
.section-header .h-1 { margin-bottom: 20px; }
.section-header .lead { margin-bottom: 0; }
.section-header.center {
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.unterschied-block {
  padding: 80px 0;
  border-top: 1px solid var(--rule);
  position: relative;
}

.unterschied-block-inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  align-items: start;
}
@media (min-width: 768px) {
  .unterschied-block-inner {
    grid-template-columns: 180px 1fr;
    gap: 64px;
  }
}

.unterschied-number {
  font-family: 'Archivo', sans-serif;
  font-size: clamp(100px, 12vw, 180px);
  font-weight: 800;
  color: rgba(30, 42, 68, 0.06);
  line-height: 0.9;
  letter-spacing: -0.04em;
  user-select: none;
}

.unterschied-content { max-width: 640px; }
.unterschied-content .h-2 { margin-bottom: 20px; }
.unterschied-content p {
  font-size: clamp(16px, 1.3vw, 18px);
  line-height: 1.7;
  color: var(--ink-2);
}

.unterschied-additional {
  max-width: 720px;
  margin: 120px auto 80px;
  padding: 0 32px;
}
.unterschied-additional .eyebrow {
  margin-bottom: 32px;
}

.unterschied-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.unterschied-list li {
  padding: 28px 0;
  border-bottom: 1px solid var(--rule);
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 32px;
  align-items: baseline;
}
.unterschied-list li:last-child { border-bottom: none; }
.unterschied-list strong {
  font-family: 'Archivo', sans-serif;
  font-size: 17px;
  font-weight: 600;
  color: var(--navy);
}
.unterschied-list span {
  font-size: 16px;
  line-height: 1.6;
  color: var(--ink-2);
}
@media (max-width: 768px) {
  .unterschied-list li {
    grid-template-columns: 1fr;
    gap: 8px;
  }
}

.unterschied-closing {
  padding-top: 64px;
  border-top: 1px solid var(--rule);
  font-family: 'Archivo', sans-serif;
  font-size: clamp(20px, 2.2vw, 28px);
  font-weight: 600;
  line-height: 1.3;
  color: var(--ink-2);
  max-width: 600px;
}


/* ═══════════════════════════════════════
   ÜBER-MICH — Prosa
   ═══════════════════════════════════════ */
.ueber-prose-section {
  background: var(--bg);
  padding: var(--section-py-mobile) 0;
}
@media (min-width: 768px) {
  .ueber-prose-section { padding: 100px 0; }
}
.ueber-prose-section.ueber-prose-alt {
  background: var(--white);
}

.ueber-prose { max-width: 680px; }
.ueber-prose .h-1 em { font-style: normal; color: var(--amber); }
.ueber-prose p {
  font-size: 17px;
  line-height: 1.75;
  color: var(--ink-2);
  margin-bottom: 20px;
}

.ueber-cta-section {
  background: var(--bg-alt);
  padding: var(--section-py-mobile) 0;
  text-align: center;
}
@media (min-width: 768px) {
  .ueber-cta-section { padding: 120px 0; }
}
.ueber-cta-inner {
  max-width: 600px;
  margin: 0 auto;
}
.ueber-cta-inner p {
  font-size: 17px;
  line-height: 1.75;
  color: var(--ink-2);
}
.ueber-cta-tools {
  margin-top: 20px;
  font-size: 15px !important;
  color: var(--ink-3) !important;
}
.ueber-cta-tools a {
  color: var(--navy);
  transition: color 300ms var(--ease-out);
}
.ueber-cta-tools a:hover { color: var(--amber); }


/* ═══════════════════════════════════════
   BERATUNG
   ═══════════════════════════════════════ */
.beratung-section {
  background: var(--bg-alt);
  padding: var(--section-py-mobile) 0;
}
@media (min-width: 768px) {
  .beratung-section { padding: 120px 0; }
}

.beratung-inner { max-width: 600px; }
.beratung-inner .h-3 { margin-bottom: 20px; }
.beratung-inner p {
  font-size: clamp(16px, 1.2vw, 18px);
  line-height: 1.7;
  color: var(--ink-2);
  margin-bottom: 28px;
}
.beratung-inner strong { color: var(--navy); }

.beratung-cta {
  display: inline-flex;
  align-items: center;
  color: var(--navy);
  font-weight: 600;
  font-size: 15px;
  position: relative;
  padding-bottom: 2px;
  transition: color 300ms var(--ease-out);
}
.beratung-cta::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: var(--amber);
}
.beratung-cta:hover { color: var(--amber); }


/* ═══════════════════════════════════════
   FAQ
   ═══════════════════════════════════════ */
.faq-list {
  margin-top: 64px;
  max-width: 720px;
}

.faq-item { border-bottom: 1px solid var(--rule); }

.faq-question {
  width: 100%;
  background: none;
  border: none;
  padding: 28px 0;
  font-family: 'Archivo', sans-serif;
  font-size: clamp(17px, 1.4vw, 20px);
  font-weight: 600;
  color: var(--ink);
  text-align: left;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  transition: color 300ms var(--ease-out);
}
.faq-question:hover { color: var(--amber); }
.faq-question:focus-visible { outline: 3px solid var(--amber); outline-offset: 2px; }

.faq-toggle {
  font-size: 22px;
  line-height: 1;
  color: var(--amber);
  transition: transform 300ms var(--ease-expo);
  flex-shrink: 0;
}
.faq-item.open .faq-toggle { transform: rotate(45deg); }

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 500ms var(--ease-out);
}

.faq-answer-inner {
  padding: 0 0 28px 0;
  font-size: 17px;
  line-height: 1.7;
  color: var(--ink-2);
  max-width: 600px;
}


/* ═══════════════════════════════════════
   FOOTER — Navy Deep
   ═══════════════════════════════════════ */
.footer {
  background: var(--navy-deep);
  color: var(--on-navy-dim);
  padding: 80px 0 40px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  margin-bottom: 64px;
}
@media (min-width: 768px) {
  .footer-grid { grid-template-columns: 2fr 1fr; }
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
}
.footer-brand-wordmark {
  display: flex;
  align-items: baseline;
  gap: 6px;
  font-family: 'Archivo', sans-serif;
  text-transform: uppercase;
}
.footer-brand-inside {
  font-weight: 800;
  font-size: 17px;
  color: var(--on-navy);
  letter-spacing: 0.02em;
}
.footer-brand-fertighaus {
  font-weight: 500;
  font-size: 17px;
  color: var(--on-navy-dim);
  letter-spacing: 0.18em;
}

.footer-address {
  font-size: 14px;
  line-height: 1.7;
  font-style: normal;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-links a {
  color: var(--on-navy-dim);
  font-size: 14px;
  transition: color 300ms var(--ease-out);
}
.footer-links a:hover { color: var(--on-navy); }

.footer-bottom {
  border-top: 1px solid rgba(169,179,201,0.15);
  padding-top: 24px;
  font-size: 13px;
  color: rgba(169,179,201,0.4);
}


/* ═══════════════════════════════════════
   COOKIE CONSENT
   ═══════════════════════════════════════ */
.cookie-banner {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  background: var(--white);
  border-top: 1px solid var(--rule);
  padding: 24px;
  z-index: 200;
  box-shadow: 0 -4px 24px rgba(30,42,68,0.08);
  display: none;
}
.cookie-banner.visible { display: block; }

.cookie-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
@media (min-width: 768px) {
  .cookie-inner {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
}
.cookie-text {
  font-size: 14px;
  line-height: 1.6;
  color: var(--ink-2);
  max-width: 600px;
}
.cookie-text a { text-decoration: underline; }

.cookie-actions {
  display: flex;
  gap: 10px;
  flex-shrink: 0;
  flex-wrap: wrap;
}
.cookie-btn {
  padding: 10px 20px;
  border-radius: var(--r-sm);
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  font-family: inherit;
  border: 1px solid var(--rule);
  background: var(--white);
  color: var(--ink-2);
  transition: background 300ms var(--ease-out);
}
.cookie-btn:hover { background: var(--bg-alt); }

.cookie-btn-accept {
  background: var(--navy);
  color: var(--on-navy);
  border-color: var(--navy);
}
.cookie-btn-accept:hover { background: var(--navy-deep); }


/* ═══════════════════════════════════════
   THANK-YOU, LEGAL, 404
   ═══════════════════════════════════════ */
.thankyou {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--section-py-desktop) 24px;
  text-align: center;
}
.thankyou-card { max-width: 600px; }
.thankyou-card h1 { margin-bottom: 24px; }
.thankyou-card p {
  font-size: clamp(16px, 1.3vw, 18px);
  line-height: 1.7;
  color: var(--ink-2);
  margin-bottom: 16px;
}
.thankyou-highlight {
  font-size: 20px;
  font-weight: 700;
  color: var(--navy);
  margin: 32px 0;
  padding: 24px;
  background: var(--bg-alt);
  border-radius: var(--r-lg);
  border-left: 4px solid var(--amber);
}
.thankyou-card .btn-secondary { margin-top: 32px; }

.ty-gutschein-card {
  max-width: 560px;
  margin: 48px auto;
  padding: 48px 56px;
  background: var(--white);
  border: 2px solid var(--amber);
  border-radius: var(--r-lg);
  text-align: center;
  box-shadow: 0 24px 60px rgba(30,42,68,0.08);
}
.ty-gutschein-card .eyebrow {
  display: block;
  margin-bottom: 16px;
  color: var(--amber-dk);
  justify-content: center;
}
.ty-gutschein-card .eyebrow::before { display: none; }
.ty-gutschein-label {
  font-size: 14px;
  color: var(--ink-3);
  margin-bottom: 8px;
}
.ty-gutschein-code {
  font-family: 'Archivo', sans-serif;
  font-size: clamp(36px, 5vw, 56px);
  font-weight: 800;
  color: var(--navy);
  letter-spacing: 0.04em;
  margin: 8px 0 24px;
  user-select: all;
}
.ty-gutschein-value {
  font-size: 17px;
  color: var(--ink-2);
  margin-bottom: 24px;
}
.ty-gutschein-value strong {
  color: var(--amber-dk);
  font-weight: 700;
}
.ty-gutschein-hint {
  font-size: 14px;
  line-height: 1.6;
  color: var(--ink-3);
  max-width: 420px;
  margin: 0 auto;
}

.legal-page {
  padding-top: calc(var(--nav-h) + 48px);
  min-height: 100vh;
}
.legal-page h1 { margin-bottom: 32px; }
.legal-page p { margin-bottom: 16px; max-width: 680px; }
.legal-page ul { margin: 16px 0 16px 24px; max-width: 680px; }
.legal-page li { margin-bottom: 8px; line-height: 1.6; }

.page-404 {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.page-404 h1 {
  font-family: 'Archivo', sans-serif;
  font-size: clamp(80px, 15vw, 200px);
  font-weight: 800;
  color: var(--rule);
  line-height: 1;
}
.page-404 p {
  font-size: 18px;
  color: var(--ink-2);
  margin: 16px 0 32px;
}


/* ═══════════════════════════════════════
   PERSONAL ANCHOR — Hero
   ═══════════════════════════════════════ */
.hero-anchor {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 8px;
}
.hero-anchor img {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  object-fit: cover;
  object-position: center 20%;
  box-shadow: var(--shadow-sm);
  border: 2px solid var(--white);
}
@media (min-width: 768px) {
  .hero-anchor img { width: 56px; height: 56px; }
}
.hero-anchor-text {
  font-size: 14px;
  color: var(--ink-2);
  line-height: 1.4;
}
.hero-anchor-text strong {
  color: var(--ink);
  font-weight: 600;
}
.hero-anchor a { color: inherit; }
.hero-anchor a:hover { color: var(--amber); }


/* ═══════════════════════════════════════
   CARD HOVER EFFECTS
   ═══════════════════════════════════════ */
@media (hover: hover) {
  .tool-teaser-card,
  .mythos-entry,
  .pruefstein {
    transition: transform 250ms var(--ease-expo), box-shadow 250ms var(--ease-expo);
  }
  .tool-teaser-card:hover,
  .mythos-entry:hover,
  .pruefstein:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-md);
  }
}


/* ── Focus ── */
:focus-visible {
  outline: 3px solid var(--navy);
  outline-offset: 2px;
}
button:focus:not(:focus-visible),
a:focus:not(:focus-visible) { outline: none; }
