/* ═══════════════════════════════════════════════════════
   SORGLOS ELTERN — Globales Stylesheet
   Farben: Navy #123b62 | Sand #C4A265 | Cream #F5F0E8
   Schriften: Lora (Headlines) | Inter (Fließtext)
═══════════════════════════════════════════════════════ */

@import url('https://fonts.googleapis.com/css2?family=Lora:wght@700&family=Inter:wght@400;500;600&display=swap');

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

:root {
  --navy:    #123b62;
  --sand:    #C4A265;
  --cream:   #F5F0E8;
  --offwhite:#FAFAF7;
  --charcoal:#1C1C1C;
  --gray:    #6B7280;
  --lgray:   #E8E4DF;
  --white:   #FFFFFF;
  --font-head: 'Lora', Georgia, serif;
  --font-body: 'Inter', system-ui, sans-serif;
  --radius: 8px;
  --shadow: 0 4px 24px rgba(18,59,98,0.08);
  --transition: 0.2s ease;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  color: var(--charcoal);
  background: var(--offwhite);
  line-height: 1.7;
  font-size: 17px;
}

h1, h2, h3, h4 {
  font-family: var(--font-head);
  color: var(--navy);
  line-height: 1.25;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

/* ── Container ───────────────────────────────────────── */
.container {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 24px;
}

.container--narrow {
  max-width: 760px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ── Navigation ──────────────────────────────────────── */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--white);
  border-bottom: 1px solid var(--lgray);
  box-shadow: 0 1px 8px rgba(18,59,98,0.06);
}

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

.nav__logo {
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.nav__logo-name {
  font-family: var(--font-head);
  font-size: 20px;
  color: var(--navy);
  letter-spacing: 0.04em;
}

.nav__logo-name span {
  display: inline-block;
  border-top: 2px solid var(--sand);
  border-bottom: 2px solid var(--sand);
  padding: 3px 0;
}

.nav__links {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
}
.nav__links > li {
  display: flex;
  align-items: center;
}

.nav__links a {
  font-size: 15px;
  font-weight: 500;
  color: var(--gray);
  transition: color var(--transition);
}

.nav__links a:hover,
.nav__links a.active { color: var(--navy); }

.nav__cta {
  background: var(--sand);
  color: var(--white) !important;
  padding: 10px 20px;
  border-radius: var(--radius);
  font-weight: 600 !important;
  font-size: 14px !important;
  transition: background var(--transition) !important;
}

.nav__cta:hover { background: var(--navy) !important; color: var(--white) !important; }

.nav__hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; border: none; background: none; padding: 8px; }
.nav__hamburger span { display: block; width: 24px; height: 2px; background: var(--navy); border-radius: 2px; transition: var(--transition); }

/* ── Dropdown-Menüs ──────────────────────────────────── */
.nav__has-dropdown { position: relative; }

.nav__dropdown-trigger {
  background: none; border: none; padding: 0;
  font-family: var(--font-body); font-size: 15px; font-weight: 500;
  color: var(--gray); cursor: pointer;
  display: flex; align-items: center; gap: 5px;
  transition: color var(--transition);
  white-space: nowrap;
}
.nav__dropdown-trigger:hover,
.nav__has-dropdown.open .nav__dropdown-trigger { color: var(--navy); }

.nav__arrow {
  display: inline-block; font-size: 10px;
  transition: transform 0.22s;
  color: var(--sand);
}
.nav__has-dropdown:hover .nav__arrow,
.nav__has-dropdown.open .nav__arrow { transform: rotate(180deg); }

/* Desktop: hover öffnet das Dropdown */
.nav__dropdown {
  position: absolute;
  top: calc(100% + 20px);
  left: 50%;
  transform: translateX(-50%) translateY(-6px);
  background: var(--white);
  border: 1px solid var(--lgray);
  border-radius: 14px;
  box-shadow: 0 10px 40px rgba(18,59,98,0.13);
  min-width: 230px;
  list-style: none;
  padding: 8px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s, transform 0.2s;
  z-index: 200;
}
/* Kleiner Pfeil nach oben */
.nav__dropdown::before {
  content: '';
  position: absolute;
  top: -7px; left: 50%;
  transform: translateX(-50%) rotate(45deg);
  width: 13px; height: 13px;
  background: var(--white);
  border-left: 1px solid var(--lgray);
  border-top: 1px solid var(--lgray);
}
.nav__has-dropdown:hover .nav__dropdown,
.nav__has-dropdown.open .nav__dropdown {
  opacity: 1;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}
.nav__dropdown li a {
  display: flex; align-items: center; gap: 10px;
  padding: 10px 14px;
  font-size: 14px; font-weight: 500; color: var(--charcoal) !important;
  border-radius: 8px;
  transition: background 0.15s, color 0.15s !important;
  white-space: nowrap;
}
.nav__dropdown li a:hover { background: var(--cream); color: var(--navy) !important; }
.nav__dropdown li a.active { color: var(--navy) !important; font-weight: 600; }
.nav__dropdown-icon { font-size: 17px; flex-shrink: 0; }
.nav__dropdown-divider { border: none; border-top: 1px solid var(--lgray); margin: 6px 0; }
.nav__dropdown-soon { display: flex; align-items: center; gap: 10px; padding: 9px 14px; font-size: 14px; color: rgba(100,100,100,0.55); cursor: default; }
.nav__dropdown-soon-badge { font-size: 10px; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase; background: var(--cream); color: var(--sand); padding: 2px 7px; border-radius: 10px; margin-left: auto; }

/* ── Buttons ─────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  border: none;
  transition: var(--transition);
  text-decoration: none;
}

.btn--primary {
  background: var(--sand);
  color: var(--white);
}
.btn--primary:hover { background: #b3914e; color: var(--white); transform: translateY(-1px); box-shadow: 0 6px 20px rgba(196,162,101,0.35); }

.btn--outline {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,0.5);
}
.btn--outline:hover { border-color: var(--white); background: rgba(255,255,255,0.1); }

.btn--navy {
  background: var(--navy);
  color: var(--white);
}
.btn--navy:hover { background: #0e2e4e; transform: translateY(-1px); }

/* ── Section-Basis ───────────────────────────────────── */
section { padding: 80px 0; }

.section-label {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--sand);
  margin-bottom: 12px;
}

.section-title {
  font-size: clamp(28px, 4vw, 40px);
  margin-bottom: 20px;
}

.section-sub {
  font-size: 18px;
  color: var(--gray);
  max-width: 600px;
  line-height: 1.6;
}

/* ── Hero ────────────────────────────────────────────── */
.hero {
  background: var(--navy);
  color: var(--white);
  padding: 100px 0 90px;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -80px; right: -80px;
  width: 480px; height: 480px;
  border-radius: 50%;
  background: rgba(196,162,101,0.07);
  pointer-events: none;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: -120px; left: -60px;
  width: 360px; height: 360px;
  border-radius: 50%;
  background: rgba(255,255,255,0.03);
  pointer-events: none;
}

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

.hero__eyebrow {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--sand);
  margin-bottom: 16px;
}

.hero__title {
  font-family: var(--font-head);
  font-size: clamp(32px, 5vw, 52px);
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 24px;
}

.hero__title em {
  font-style: normal;
  color: var(--sand);
}

.hero__sub {
  font-size: 18px;
  color: rgba(255,255,255,0.75);
  line-height: 1.65;
  margin-bottom: 36px;
}

.hero__actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.hero__card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 16px;
  padding: 40px;
  backdrop-filter: blur(8px);
}

.hero__card-label {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--sand);
  margin-bottom: 20px;
}

.hero__trust-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  font-size: 15px;
  color: rgba(255,255,255,0.85);
}

.hero__trust-item:last-child { border-bottom: none; }

.hero__trust-icon {
  width: 36px;
  height: 36px;
  background: rgba(196,162,101,0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 16px;
}

/* ── Themen-Kacheln ──────────────────────────────────── */
.topics { background: var(--white); }

.topics__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 48px;
}

.topic-card {
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid var(--lgray);
  transition: transform var(--transition), box-shadow var(--transition);
  cursor: pointer;
}

.topic-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.topic-card__icon {
  background: var(--navy);
  padding: 28px;
  font-size: 32px;
  text-align: center;
}

.topic-card__body {
  padding: 24px;
  background: var(--white);
}

.topic-card__phase {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--sand);
  margin-bottom: 8px;
}

.topic-card__title {
  font-size: 18px;
  color: var(--navy);
  margin-bottom: 10px;
}

.topic-card__desc {
  font-size: 14px;
  color: var(--gray);
  line-height: 1.6;
}

.topic-card--link {
  display: block;
  text-decoration: none;
  color: inherit;
}

.topic-card--link:hover {
  box-shadow: 0 8px 32px rgba(18,59,98,0.15);
}

.topic-card__cta {
  display: inline-block;
  margin-top: 14px;
  font-size: 13px;
  font-weight: 600;
  color: var(--navy);
  letter-spacing: 0.02em;
}

.topic-card--link:hover .topic-card__cta {
  color: var(--sand);
}

/* ── So helfen wir ───────────────────────────────────── */
.help { background: var(--cream); }

.help__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 48px;
}

.help-item {
  background: var(--white);
  border-radius: 12px;
  padding: 32px;
  box-shadow: var(--shadow);
  transition: transform var(--transition);
}

.help-item:hover { transform: translateY(-3px); }

.help-item__icon {
  width: 56px;
  height: 56px;
  background: var(--navy);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  margin-bottom: 20px;
}

.help-item__title {
  font-size: 20px;
  margin-bottom: 12px;
}

.help-item__desc {
  font-size: 15px;
  color: var(--gray);
  line-height: 1.65;
  margin-bottom: 20px;
}

.help-item__tag {
  display: inline-block;
  font-size: 12px;
  font-weight: 600;
  background: var(--cream);
  color: var(--navy);
  padding: 4px 12px;
  border-radius: 20px;
  letter-spacing: 0.05em;
}

.help-item__link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  font-weight: 600;
  color: var(--sand);
  margin-top: 16px;
  transition: gap var(--transition);
}

.help-item__link:hover { gap: 10px; }

/* ── Freebie / Lead Magnet ───────────────────────────── */
.freebie {
  background: var(--navy);
  color: var(--white);
}

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

.freebie__tag {
  display: inline-block;
  background: rgba(196,162,101,0.2);
  color: var(--sand);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 20px;
  margin-bottom: 20px;
}

.freebie__title {
  font-size: clamp(24px, 3.5vw, 36px);
  color: var(--white);
  margin-bottom: 16px;
}

.freebie__sub {
  color: rgba(255,255,255,0.7);
  font-size: 17px;
  line-height: 1.65;
  margin-bottom: 32px;
}

.freebie__list {
  list-style: none;
  margin-bottom: 36px;
}

.freebie__list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 15px;
  color: rgba(255,255,255,0.85);
  padding: 10px 0;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}

.freebie__list li:last-child { border-bottom: none; }

.freebie__check {
  width: 22px;
  height: 22px;
  background: rgba(196,162,101,0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 12px;
  color: var(--sand);
  margin-top: 2px;
}

.freebie__form {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 16px;
  padding: 40px;
}

.freebie__form-title {
  font-size: 22px;
  color: var(--white);
  margin-bottom: 8px;
}

.freebie__form-sub {
  font-size: 14px;
  color: rgba(255,255,255,0.6);
  margin-bottom: 28px;
}

.form-group { margin-bottom: 16px; }

.form-group label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: rgba(255,255,255,0.7);
  margin-bottom: 6px;
}

.form-group input {
  width: 100%;
  padding: 13px 16px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: var(--radius);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 15px;
  transition: border-color var(--transition);
  outline: none;
}

.form-group input::placeholder { color: rgba(255,255,255,0.35); }
.form-group input:focus { border-color: var(--sand); }

.form-consent {
  font-size: 12px;
  color: rgba(255,255,255,0.4);
  line-height: 1.6;
  margin-top: 16px;
}

/* ── Über Andreas (Teaser) ───────────────────────────── */
.about-teaser { background: var(--white); }

.about-teaser__inner {
  display: grid;
  grid-template-columns: 420px 1fr;
  gap: 72px;
  align-items: center;
}

.about-teaser__photo {
  width: 100%;
  aspect-ratio: 4/5;
  background: var(--cream);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--lgray);
  font-size: 14px;
  font-weight: 500;
  position: relative;
  overflow: hidden;
}

.about-teaser__photo::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 40%;
  background: linear-gradient(to top, rgba(18,59,98,0.15), transparent);
}

.about-teaser__name {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--sand);
  margin-bottom: 8px;
}

.about-teaser__title { font-size: clamp(24px, 3vw, 36px); margin-bottom: 20px; }

.about-teaser__text {
  font-size: 17px;
  color: var(--gray);
  line-height: 1.75;
  margin-bottom: 16px;
}

.about-teaser__quote {
  border-left: 3px solid var(--sand);
  padding-left: 20px;
  font-style: italic;
  color: var(--navy);
  font-size: 18px;
  line-height: 1.6;
  margin: 28px 0;
}

/* ── Vertrauen (Stats) ───────────────────────────────── */
.trust { background: var(--cream); }

.trust__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 48px;
  text-align: center;
}

.trust-item__number {
  font-family: var(--font-head);
  font-size: 48px;
  color: var(--navy);
  line-height: 1;
  margin-bottom: 8px;
}

.trust-item__number span { color: var(--sand); }

.trust-item__label {
  font-size: 16px;
  color: var(--gray);
  line-height: 1.5;
}

/* ── CTA Banner ──────────────────────────────────────── */
.cta-banner {
  background: var(--sand);
  padding: 64px 0;
  text-align: center;
}

.cta-banner__title {
  font-size: clamp(24px, 3.5vw, 38px);
  color: var(--white);
  margin-bottom: 16px;
}

.cta-banner__sub {
  font-size: 18px;
  color: rgba(255,255,255,0.8);
  margin-bottom: 36px;
}

.cta-banner .btn--outline {
  border-color: rgba(255,255,255,0.6);
  color: var(--white);
}

/* ── Footer ──────────────────────────────────────────── */
.footer {
  background: var(--navy);
  color: rgba(255,255,255,0.6);
  padding: 64px 0 32px;
}

.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}

.footer__brand-name {
  font-family: var(--font-head);
  font-size: 22px;
  color: var(--white);
  border-top: 2px solid var(--sand);
  border-bottom: 2px solid var(--sand);
  padding: 6px 0;
  display: inline-block;
  margin-bottom: 16px;
}

.footer__brand-desc {
  font-size: 14px;
  line-height: 1.7;
  max-width: 280px;
}

.footer__col-title {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--sand);
  margin-bottom: 16px;
}

.footer__links { list-style: none; }
.footer__links li { margin-bottom: 10px; }
.footer__links a {
  font-size: 14px;
  color: rgba(255,255,255,0.55);
  transition: color var(--transition);
}
.footer__links a:hover { color: var(--white); }

.footer__bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 28px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
  flex-wrap: wrap;
  gap: 12px;
}

.footer__bottom-links { display: flex; gap: 20px; }
.footer__bottom-links a { color: rgba(255,255,255,0.4); transition: color var(--transition); }
.footer__bottom-links a:hover { color: var(--white); }

/* ── Über-uns-spezifisch ─────────────────────────────── */
.page-hero {
  background: var(--navy);
  padding: 80px 0 72px;
  color: var(--white);
}

.page-hero__eyebrow {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--sand);
  margin-bottom: 16px;
}

.page-hero__title {
  font-family: var(--font-head);
  font-size: clamp(28px, 5vw, 48px);
  color: var(--white);
  margin-bottom: 20px;
}

.page-hero__sub {
  font-size: 19px;
  color: rgba(255,255,255,0.72);
  line-height: 1.65;
  max-width: 640px;
}

.values__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
  margin-top: 48px;
}

.value-card {
  background: var(--cream);
  border-radius: 12px;
  padding: 32px;
  border-left: 4px solid var(--sand);
}

.value-card__title {
  font-size: 20px;
  color: var(--navy);
  margin-bottom: 12px;
}

.value-card__desc {
  font-size: 15px;
  color: var(--gray);
  line-height: 1.7;
}

.team-card {
  background: var(--white);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow);
  display: grid;
  grid-template-columns: 280px 1fr;
}

.team-card__photo {
  background: var(--cream);
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 380px;
  font-size: 14px;
  color: var(--lgray);
  font-weight: 500;
  text-align: center;
  padding: 24px;
}

.team-card__body { padding: 40px; }

.team-card__role {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--sand);
  margin-bottom: 8px;
}

.team-card__name {
  font-size: 28px;
  color: var(--navy);
  margin-bottom: 20px;
}

.team-card__text {
  font-size: 16px;
  color: var(--gray);
  line-height: 1.75;
  margin-bottom: 16px;
}

.team-card__quote {
  background: var(--cream);
  border-radius: 8px;
  padding: 20px 24px;
  font-style: italic;
  color: var(--navy);
  font-size: 16px;
  line-height: 1.6;
  border-left: 3px solid var(--sand);
  margin-top: 24px;
}

.kanzlei-box {
  background: var(--navy);
  border-radius: 16px;
  padding: 48px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  margin-top: 48px;
}

.kanzlei-box__title {
  font-size: clamp(22px, 3vw, 30px);
  color: var(--white);
  margin-bottom: 16px;
}

.kanzlei-box__text {
  font-size: 16px;
  color: rgba(255,255,255,0.7);
  line-height: 1.7;
}

.kanzlei-box__contact { display: flex; flex-direction: column; gap: 16px; }

.kanzlei-contact-item {
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 10px;
  padding: 16px 20px;
  display: flex;
  align-items: center;
  gap: 16px;
}

.kanzlei-contact-item__icon {
  font-size: 20px;
  width: 40px;
  text-align: center;
}

.kanzlei-contact-item__label {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--sand);
  margin-bottom: 2px;
}

.kanzlei-contact-item__value {
  font-size: 15px;
  color: rgba(255,255,255,0.85);
}

/* ── Responsive ──────────────────────────────────────── */
@media (max-width: 1024px) {
  .hero__inner { grid-template-columns: 1fr; }
  .hero__card { display: none; }
  .topics__grid { grid-template-columns: repeat(2, 1fr); }
  .about-teaser__inner { grid-template-columns: 1fr; }
  .about-teaser__photo { max-width: 400px; margin: 0 auto; aspect-ratio: 4/3; }
  .footer__grid { grid-template-columns: 1fr 1fr; }
  .team-card { grid-template-columns: 1fr; }
  .team-card__photo { min-height: 200px; }
  .kanzlei-box { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  section { padding: 56px 0; }
  .nav__links { display: none; }
  .nav__hamburger { display: flex; }
  .nav__links.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 72px; left: 0; right: 0;
    background: var(--white);
    border-bottom: 1px solid var(--lgray);
    padding: 16px 20px;
    gap: 4px;
    box-shadow: 0 8px 24px rgba(18,59,98,0.1);
  }
  /* Mobile Dropdown: inline Accordion */
  .nav__dropdown-trigger { padding: 10px 0; width: 100%; justify-content: space-between; }
  .nav__dropdown {
    position: static; transform: none; box-shadow: none;
    border: none; border-radius: 0;
    background: var(--cream); padding: 4px 0 4px 12px;
    opacity: 1; pointer-events: auto;
    display: none;
    min-width: unset;
  }
  .nav__dropdown::before { display: none; }
  .nav__has-dropdown:hover .nav__dropdown { display: none; } /* hover deaktivieren auf mobile */
  .nav__has-dropdown.open .nav__dropdown { display: block; }
  .nav__dropdown li a { padding: 9px 12px; font-size: 13.5px; }
  .nav__links.open .nav__links a { display: block; padding: 10px 0; }
  .help__grid { grid-template-columns: 1fr; }
  .freebie__inner { grid-template-columns: 1fr; }
  .trust__grid { grid-template-columns: 1fr; gap: 20px; }
  .footer__grid { grid-template-columns: 1fr; gap: 32px; }
  .footer__bottom { flex-direction: column; text-align: center; }
  .values__grid { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  .topics__grid { grid-template-columns: 1fr; }
  .hero__actions { flex-direction: column; }
  .btn { width: 100%; justify-content: center; }
}
