/* ==========================================================================
   umzugsratgeber-pro.de – Haupt-Stylesheet
   Design: Vertrauenswürdig, modern, conversion-optimiert
   Schrift: 'Plus Jakarta Sans' (Google Fonts, DSGVO: lokal laden!)
   ========================================================================== */

/* ── CSS-Variablen ───────────────────────────────────────────────────────── */
:root {
  --c-navy:        #1A2E4A;   /* Primär: Dunkelblau – Autorität */
  --c-navy-mid:    #2C4A72;   /* Sekundär: Mittelblau */
  --c-orange:      #C8692A;   /* Akzent: Terrakotta – CTA, Energie */
  --c-orange-dark: #AE5822;   /* Terrakotta Hover */
  --c-green:       #1E8449;   /* Erfolg / Bestätigung */
  --c-red:         #C0392B;   /* Fehler / Warnung */
  --c-bg:          #F8FAFC;   /* Seitenhintergrund */
  --c-surface:     #FFFFFF;   /* Karten-Hintergrund */
  --c-border:      #DDE3EA;   /* Trennlinien */
  --c-text:        #1C2B3A;   /* Haupttext */
  --c-text-light:  #5A6A7A;   /* Sekundärtext */
  --c-light-blue:  #EAF0F8;   /* Leichter Hintergrund */

  --radius-sm:  6px;
  --radius-md:  12px;
  --radius-lg:  20px;

  --shadow-sm:  0 1px 3px rgba(26,46,74,.08), 0 1px 2px rgba(26,46,74,.04);
  --shadow-md:  0 4px 16px rgba(26,46,74,.10), 0 2px 4px rgba(26,46,74,.06);
  --shadow-lg:  0 12px 40px rgba(26,46,74,.14), 0 4px 8px rgba(26,46,74,.08);

  --font-main: 'Plus Jakarta Sans', 'Segoe UI', system-ui, sans-serif;
  --max-w:     1160px;
  --transition: .22s cubic-bezier(.4,0,.2,1);
}

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

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--font-main);
  color: var(--c-text);
  background: var(--c-bg);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }

a { color: var(--c-navy-mid); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--c-orange); }

/* ── Layout-Helfer ───────────────────────────────────────────────────────── */
.container {
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
}

.section { padding: 80px 0; }
.section--alt { background: var(--c-light-blue); }
.section--dark { background: var(--c-navy); color: #fff; }

/* ── Typografie ──────────────────────────────────────────────────────────── */
h1, h2, h3, h4 {
  line-height: 1.2;
  font-weight: 800;
  color: var(--c-navy);
}

h1 { font-size: clamp(2rem, 5vw, 3.2rem); }
h2 { font-size: clamp(1.6rem, 3vw, 2.4rem); }
h3 { font-size: clamp(1.2rem, 2vw, 1.6rem); }
h4 { font-size: 1.1rem; }

.section--dark h1,
.section--dark h2,
.section--dark h3 { color: #fff; }

.lead {
  font-size: 1.2rem;
  color: var(--c-text-light);
  line-height: 1.8;
  max-width: 680px;
}

.text-center { text-align: center; }
.text-orange { color: var(--c-orange); }
.text-small  { font-size: .875rem; color: var(--c-text-light); }

/* ── Buttons ─────────────────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: var(--radius-sm);
  font-family: var(--font-main);
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all var(--transition);
  text-decoration: none;
  line-height: 1;
}

.btn--primary {
  background: var(--c-orange);
  color: #fff;
  border-color: var(--c-orange);
  box-shadow: 0 4px 14px rgba(230,126,34,.35);
}
.btn--primary:hover {
  background: var(--c-orange-dark);
  border-color: var(--c-orange-dark);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(230,126,34,.45);
}

.btn--secondary {
  background: transparent;
  color: var(--c-navy);
  border-color: var(--c-navy);
}
.btn--secondary:hover {
  background: var(--c-navy);
  color: #fff;
}

.btn--outline-white {
  background: transparent;
  color: #fff;
  border-color: rgba(255,255,255,.5);
}
.btn--outline-white:hover {
  background: rgba(255,255,255,.12);
  border-color: #fff;
  color: #fff;
}

.btn--lg  { padding: 18px 36px; font-size: 1.1rem; }
.btn--full { width: 100%; justify-content: center; }

/* ── Navigation / Header ─────────────────────────────────────────────────── */
.site-header {
  background: var(--c-surface);
  box-shadow: var(--shadow-sm);
  position: sticky;
  top: 0;
  z-index: 1000;
}

.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.site-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}
.site-logo__icon {
  width: 40px;
  height: 40px;
  background: var(--c-orange);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  flex-shrink: 0;
}
.site-logo__text {
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--c-navy);
  line-height: 1.2;
}
.site-logo__text span { color: var(--c-orange); }

.site-nav { display: flex; align-items: center; gap: 8px; }
.site-nav a {
  padding: 8px 14px;
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: .9rem;
  color: var(--c-text);
}
.site-nav a:hover { background: var(--c-light-blue); color: var(--c-navy); }

/* ── Hero-Sektion ────────────────────────────────────────────────────────── */
.hero {
  background: linear-gradient(135deg, var(--c-navy) 0%, var(--c-navy-mid) 100%);
  padding: 100px 0 80px;
  position: relative;
  overflow: hidden;
}

/* Dekoratives Hintergrundmuster */
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 70% 30%, rgba(200,105,42,.18) 0%, transparent 55%),
    radial-gradient(circle at 15% 75%, rgba(44,74,114,.5) 0%, transparent 50%),
    radial-gradient(circle at 50% 100%, rgba(0,0,0,.25) 0%, transparent 60%);
  pointer-events: none;
}

/* Dezentes Muster-Grid für Hero-Tiefe */
.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.03) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
  z-index: 0;
}

.hero__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(230,126,34,.2);
  color: var(--c-orange);
  border: 1px solid rgba(230,126,34,.4);
  padding: 6px 14px;
  border-radius: 100px;
  font-size: .85rem;
  font-weight: 700;
  letter-spacing: .04em;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.hero h1 { color: #fff; margin-bottom: 20px; }
.hero h1 em { color: var(--c-orange); font-style: normal; }

.hero__lead {
  color: rgba(255,255,255,.8);
  font-size: 1.15rem;
  line-height: 1.8;
  margin-bottom: 32px;
}

.hero__cta-group { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 40px; }

.hero__trust-bar {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.hero__trust-item {
  display: flex;
  align-items: center;
  gap: 6px;
  color: rgba(255,255,255,.7);
  font-size: .875rem;
}
.hero__trust-item .icon-check {
  width: 18px;
  height: 18px;
  background: var(--c-green);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .7rem;
  color: #fff;
  flex-shrink: 0;
}

/* Hero-Buchcover-Mockup */
.hero__visual {
  display: flex;
  justify-content: center;
  align-items: center;
}

.book-mockup {
  background: transparent;
  border-radius: var(--radius-md);
  padding: 0;
  text-align: center;
  max-width: 280px;
  width: 100%;
  position: relative;
}
.book-mockup::before {
  display: none;
}
.book-mockup__icon  { font-size: 4rem; margin-bottom: 16px; }
.book-mockup__title { font-size: 1.3rem; font-weight: 800; color: #fff; line-height: 1.3; }
.book-mockup__sub   { font-size: .85rem; color: rgba(255,255,255,.8); margin-top: 8px; }
.book-mockup__price {
  margin-top: 16px;
  border-radius: var(--radius-sm);
  padding: 10px 4px;
  color: rgba(255,255,255,.9);
  text-align: center;
  background: rgba(200,105,42,.15);
  border: 1px solid rgba(200,105,42,.3);
  border-radius: 8px;
}
.book-mockup__price strong { font-size: 1.15rem; display: inline; color: var(--c-orange); }

/* ── Karten / Cards ──────────────────────────────────────────────────────── */
.card {
  background: var(--c-surface);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  padding: 32px;
  border: 1px solid var(--c-border);
  transition: box-shadow var(--transition), transform var(--transition);
}
.card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-3px);
}

.card__icon {
  width: 56px;
  height: 56px;
  border-radius: var(--radius-sm);
  background: var(--c-light-blue);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  margin-bottom: 18px;
}
.card__icon--orange { background: rgba(230,126,34,.12); }
.card__icon--green  { background: rgba(30,132,73,.1); }

/* ── Grid-Systeme ────────────────────────────────────────────────────────── */
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 28px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }

/* ── Sektion-Kopf ────────────────────────────────────────────────────────── */
.section-header {
  text-align: center;
  margin-bottom: 56px;
}
.section-header h2 { margin-bottom: 16px; }
.section-header .lead { margin: 0 auto; }

/* ── Lead-Formular-Sektionen ─────────────────────────────────────────────── */
.lead-form-section {
  background: var(--c-surface);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  border: 2px solid var(--c-border);
  overflow: hidden;
  margin-bottom: 48px;
}

.lead-form-section__header {
  background: linear-gradient(135deg, var(--c-navy) 0%, var(--c-navy-mid) 100%);
  padding: 28px 36px;
  display: flex;
  align-items: center;
  gap: 16px;
}

.lead-form-section__header .header-icon {
  width: 52px;
  height: 52px;
  background: rgba(230,126,34,.25);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  flex-shrink: 0;
}

.lead-form-section__header h3 {
  color: #fff;
  margin-bottom: 4px;
}
.lead-form-section__header p {
  color: rgba(255,255,255,.7);
  font-size: .9rem;
}

.lead-form-section__body { padding: 36px; }

/* ── Formular-Elemente ───────────────────────────────────────────────────── */
.form-grid {
  display: grid;
  gap: 18px;
}
.form-grid--2 { grid-template-columns: repeat(2, 1fr); }

.form-group { display: flex; flex-direction: column; gap: 6px; }

.form-group label {
  font-size: .875rem;
  font-weight: 600;
  color: var(--c-text);
}

.form-group label .required {
  color: var(--c-orange);
  margin-left: 3px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid var(--c-border);
  border-radius: var(--radius-sm);
  font-family: var(--font-main);
  font-size: .95rem;
  color: var(--c-text);
  background: var(--c-bg);
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--c-navy-mid);
  box-shadow: 0 0 0 3px rgba(44,74,114,.12);
  background: #fff;
}

.form-group input.error { border-color: var(--c-red); }

/* DSGVO-Checkbox */
.form-checkbox {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  cursor: pointer;
  padding: 14px 16px;
  background: var(--c-light-blue);
  border: 1.5px solid var(--c-border);
  border-radius: var(--radius-sm);
}

.form-checkbox input[type="checkbox"] {
  width: 20px;
  height: 20px;
  margin-top: 2px;
  flex-shrink: 0;
  accent-color: var(--c-navy-mid);
  cursor: pointer;
}

.form-checkbox__text {
  font-size: .85rem;
  color: var(--c-text-light);
  line-height: 1.6;
}
.form-checkbox__text a { color: var(--c-navy-mid); font-weight: 600; text-decoration: underline; }

.form-success {
  display: none;
  padding: 20px 24px;
  background: #EAFAF1;
  border: 1.5px solid var(--c-green);
  border-radius: var(--radius-sm);
  color: var(--c-green);
  font-weight: 600;
  text-align: center;
  gap: 8px;
}

.form-notice {
  font-size: .8rem;
  color: var(--c-text-light);
  margin-top: 8px;
  text-align: center;
}

/* ── Affiliate-Platzhalter-Boxen ─────────────────────────────────────────── */
.affiliate-zone {
  border: 2px dashed var(--c-border);
  border-radius: var(--radius-md);
  padding: 32px;
  text-align: center;
  background: var(--c-bg);
  position: relative;
  transition: border-color var(--transition);
}
.affiliate-zone:hover { border-color: var(--c-orange); }

.affiliate-zone__label {
  position: absolute;
  top: -13px;
  left: 20px;
  background: var(--c-orange);
  color: #fff;
  font-size: .75rem;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 100px;
  text-transform: uppercase;
  letter-spacing: .05em;
}

.affiliate-zone__icon { font-size: 2.5rem; margin-bottom: 12px; }
.affiliate-zone h4  { margin-bottom: 8px; color: var(--c-navy); }
.affiliate-zone p   { font-size: .9rem; color: var(--c-text-light); margin-bottom: 16px; }

/* Affiliate-Code-Kommentar (nur sichtbar im HTML-Quellcode) */

/* ── Vorteils-Liste ──────────────────────────────────────────────────────── */
.benefit-list { list-style: none; display: flex; flex-direction: column; gap: 12px; }
.benefit-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: .95rem;
}
.benefit-list li::before {
  content: '✓';
  width: 22px;
  height: 22px;
  background: var(--c-green);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .75rem;
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 1px;
}

/* ── Stat-Boxen ──────────────────────────────────────────────────────────── */
.stat-box {
  text-align: center;
  padding: 28px;
}
.stat-box__number {
  font-size: 2.6rem;
  font-weight: 800;
  color: var(--c-orange);
  line-height: 1;
  margin-bottom: 8px;
}
.stat-box__label { font-size: .9rem; color: rgba(255,255,255,.7); }

/* ── Testimonial ─────────────────────────────────────────────────────────── */
.testimonial {
  background: var(--c-surface);
  border-left: 4px solid var(--c-orange);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  padding: 24px 28px;
  box-shadow: var(--shadow-sm);
}
.testimonial__text {
  font-size: 1rem;
  font-style: italic;
  color: var(--c-text);
  margin-bottom: 14px;
  line-height: 1.7;
}
.testimonial__author {
  font-size: .875rem;
  font-weight: 700;
  color: var(--c-navy);
}

/* ── Bonus-Box (Lead-Magnet) ─────────────────────────────────────────────── */
.bonus-box {
  background: linear-gradient(135deg, rgba(230,126,34,.08) 0%, rgba(26,46,74,.05) 100%);
  border: 2px solid var(--c-orange);
  border-radius: var(--radius-lg);
  padding: 40px;
  text-align: center;
}
.bonus-box__pretitle {
  font-size: .8rem;
  font-weight: 700;
  color: var(--c-orange);
  text-transform: uppercase;
  letter-spacing: .1em;
  margin-bottom: 12px;
}
.bonus-box__icon { font-size: 3.5rem; margin-bottom: 16px; }
.bonus-box__items {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
  margin: 24px 0;
}
.bonus-item {
  background: var(--c-surface);
  border-radius: var(--radius-md);
  padding: 16px 20px;
  box-shadow: var(--shadow-sm);
  text-align: left;
  min-width: 200px;
  flex: 1;
  max-width: 240px;
}
.bonus-item__icon { font-size: 1.8rem; margin-bottom: 8px; }
.bonus-item__title { font-weight: 700; font-size: .9rem; color: var(--c-navy); }
.bonus-item__desc  { font-size: .8rem; color: var(--c-text-light); margin-top: 4px; }

/* Opt-in Form innerhalb Bonus-Box */
.optin-form { max-width: 480px; margin: 0 auto; }
.optin-form__row { display: flex; gap: 10px; }
.optin-form input {
  flex: 1;
  padding: 14px 18px;
  border: 1.5px solid var(--c-border);
  border-radius: var(--radius-sm);
  font-family: var(--font-main);
  font-size: .95rem;
  outline: none;
}
.optin-form input:focus { border-color: var(--c-navy-mid); }

/* ── Cookie-Consent-Banner ───────────────────────────────────────────────── */
#cookie-banner {
  position: fixed;
  bottom: 20px;
  left: 20px;
  right: 20px;
  max-width: 640px;
  margin: 0 auto;
  background: var(--c-navy);
  color: #fff;
  border-radius: var(--radius-md);
  padding: 24px 28px;
  box-shadow: 0 20px 60px rgba(0,0,0,.35);
  z-index: 9999;
  display: flex;
  flex-direction: column;
  gap: 16px;
  transform: translateY(120%);
  transition: transform .4s cubic-bezier(.4,0,.2,1);
}
#cookie-banner.visible { transform: translateY(0); }
#cookie-banner.hidden  { display: none; }

.cookie-banner__title {
  font-size: 1rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 8px;
}
.cookie-banner__text {
  font-size: .875rem;
  color: rgba(255,255,255,.8);
  line-height: 1.6;
}
.cookie-banner__text a { color: var(--c-orange); }
.cookie-banner__buttons {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.cookie-btn {
  padding: 10px 20px;
  border-radius: var(--radius-sm);
  font-family: var(--font-main);
  font-weight: 700;
  font-size: .875rem;
  cursor: pointer;
  border: none;
  transition: all var(--transition);
}
.cookie-btn--accept {
  background: var(--c-orange);
  color: #fff;
}
.cookie-btn--accept:hover { background: var(--c-orange-dark); }
.cookie-btn--necessary {
  background: rgba(255,255,255,.12);
  color: rgba(255,255,255,.9);
  border: 1px solid rgba(255,255,255,.2);
}
.cookie-btn--necessary:hover { background: rgba(255,255,255,.2); }
.cookie-btn--settings {
  background: transparent;
  color: rgba(255,255,255,.6);
  font-size: .8rem;
  padding: 10px 14px;
  border: 1px solid rgba(255,255,255,.15);
}

/* ── Footer ──────────────────────────────────────────────────────────────── */
.site-footer {
  background: var(--c-navy);
  color: rgba(255,255,255,.7);
  padding: 60px 0 30px;
}
.site-footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 48px;
}
.site-footer h4 {
  color: #fff;
  font-size: 1rem;
  margin-bottom: 16px;
}
.footer-nav { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-nav a { color: rgba(255,255,255,.65); font-size: .9rem; }
.footer-nav a:hover { color: var(--c-orange); }

.footer-logo-text {
  font-size: 1.1rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 12px;
}
.footer-logo-text span { color: var(--c-orange); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.1);
  padding-top: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  font-size: .85rem;
}
.footer-bottom a { color: rgba(255,255,255,.5); }
.footer-bottom a:hover { color: var(--c-orange); }

/* ── Impressum / Datenschutz ─────────────────────────────────────────────── */
.legal-page { padding: 60px 0; }
.legal-page h1 { margin-bottom: 40px; }
.legal-page h2 { margin: 36px 0 12px; font-size: 1.3rem; }
.legal-page h3 { margin: 24px 0 10px; font-size: 1.1rem; }
.legal-page p, .legal-page li { margin-bottom: 12px; line-height: 1.8; }
.legal-page ul, .legal-page ol { padding-left: 24px; margin-bottom: 16px; }
.legal-page hr { border: none; border-top: 1px solid var(--c-border); margin: 40px 0; }

.legal-box {
  background: var(--c-light-blue);
  border-left: 4px solid var(--c-navy-mid);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  padding: 20px 24px;
  margin: 20px 0;
}

/* ── Utility-Klassen ─────────────────────────────────────────────────────── */
.mb-0  { margin-bottom: 0; }
.mb-8  { margin-bottom: 8px; }
.mb-16 { margin-bottom: 16px; }
.mb-24 { margin-bottom: 24px; }
.mb-32 { margin-bottom: 32px; }
.mb-48 { margin-bottom: 48px; }
.mt-8  { margin-top: 8px; }
.mt-16 { margin-top: 16px; }
.mt-24 { margin-top: 24px; }

.divider {
  border: none;
  border-top: 1px solid var(--c-border);
  margin: 32px 0;
}

/* ── Responsive ──────────────────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .site-footer__grid { grid-template-columns: 1fr 1fr; }
  .hero__grid { gap: 40px; }
}

@media (max-width: 768px) {
  .container { padding: 0 16px; }
  .section { padding: 56px 0; }
  .hero { padding: 64px 0 56px; }
  .hero__grid { grid-template-columns: 1fr; }
  .hero__visual { display: none; } /* Buchcover auf Mobile ausblenden */
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .form-grid--2 { grid-template-columns: 1fr; }
  .site-footer__grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .stat-box__number { font-size: 2rem; }
  .lead-form-section__body { padding: 24px 20px; }
  .lead-form-section__header { padding: 20px 24px; }
  .bonus-box { padding: 28px 20px; }
  .optin-form__row { flex-direction: column; }
  .cookie-banner__buttons { flex-direction: column; }
  #cookie-banner { bottom: 0; left: 0; right: 0; border-radius: var(--radius-md) var(--radius-md) 0 0; }
  .site-nav .btn { display: none; }
}

@media (max-width: 480px) {
  h1 { font-size: 1.8rem; }
  h2 { font-size: 1.5rem; }
  .btn--lg { padding: 14px 24px; font-size: 1rem; }
}

/* ── Print ───────────────────────────────────────────────────────────────── */
@media print {
  .site-header, .site-footer, #cookie-banner, .btn { display: none; }
  .legal-page { padding: 0; }
}
/* Hamburger-Menue & Mobile Navigation – Ergaenzung zu style.css
   Diese Regeln am Ende der bestehenden style.css einfuegen! */

/* ── Hamburger-Button ─────────────────────────────────────────────────────── */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  border-radius: var(--radius-sm);
  transition: background var(--transition);
}
.hamburger:hover { background: var(--c-light-blue); }

.hamburger__line {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--c-navy);
  border-radius: 2px;
  transition: transform .3s ease, opacity .3s ease;
}

/* Hamburger → X Animation */
.hamburger.is-open .hamburger__line:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.is-open .hamburger__line:nth-child(2) { opacity: 0; }
.hamburger.is-open .hamburger__line:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── Mobile Navigation ─────────────────────────────────────────────────────── */
.mobile-nav {
  background: var(--c-surface);
  border-top: 1px solid var(--c-border);
  box-shadow: 0 8px 24px rgba(26,46,74,.12);
  overflow: hidden;
  max-height: 0;
  transition: max-height .35s cubic-bezier(.4,0,.2,1);
}
.mobile-nav:not([hidden]) {
  max-height: 480px; /* Gross genug fuer alle Links */
}
.mobile-nav .container {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding-top: 16px;
  padding-bottom: 20px;
}
.mobile-nav a {
  padding: 12px 16px;
  border-radius: var(--radius-sm);
  font-size: 1rem;
  font-weight: 600;
  color: var(--c-text);
  display: block;
}
.mobile-nav a:hover { background: var(--c-light-blue); color: var(--c-navy); }

/* Desktop-Nav ausblenden bei Mobile, Hamburger einblenden */
@media (max-width: 768px) {
  .desktop-nav { display: none; }
  .hamburger   { display: flex; }
}
