/* ══════════════════════════════════════════════════════════
   ERS – Werte Entwicklung | styles.css
   ══════════════════════════════════════════════════════════ */

/* ─── CUSTOM PROPERTIES ───────────────────────────────── */
:root {
  --bg:          #080810;
  --bg-2:        #0d0d1a;
  --bg-3:        #111122;
  --surface:     #13131f;
  --surface-2:   #1a1a2e;
  --border:      rgba(255,255,255,0.07);
  --border-hover:rgba(201,168,76,0.4);

  --gold:        #c9a84c;
  --gold-light:  #e0c06e;
  --gold-dim:    rgba(201,168,76,0.15);
  --gold-glow:   rgba(201,168,76,0.06);

  --text-primary:   #f0ede6;
  --text-secondary: #9a9aae;
  --text-muted:     #5a5a72;

  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body:    'DM Sans', system-ui, sans-serif;

  --nav-h: 80px;
  --radius: 12px;
  --radius-lg: 20px;

  --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-in-out:   cubic-bezier(0.65, 0, 0.35, 1);
}

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

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

body {
  background-color: var(--bg);
  color: var(--text-primary);
  font-family: var(--font-body);
  font-weight: 300;
  line-height: 1.65;
  overflow-x: hidden;
  
}

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

::selection {
  background: var(--gold);
  color: var(--bg);
}

/* ─── SCROLLBAR ────────────────────────────────────────── */
::-webkit-scrollbar { width: 4px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: var(--gold); border-radius: 2px; }

/* ─── CURSOR GLOW ──────────────────────────────────────── */
.cursor-glow {
  position: fixed;
  top: 0; left: 0;
  width: 400px; height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(201,168,76,0.08) 0%, transparent 70%);
  pointer-events: none;
  transform: translate(-50%, -50%);
  z-index: -1;
  transition: transform 0.05s linear;
  will-change: transform;
}

/* ─── NAVIGATION ───────────────────────────────────────── */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 9999;
  height: auto;
  transition: background 0.4s ease, border-color 0.4s ease;
}

.site-header.scrolled {
  background: rgba(8, 8, 16, 0.88);
  backdrop-filter: blur(20px) saturate(1.4);
  -webkit-backdrop-filter: blur(20px) saturate(1.4);
  border-bottom: 1px solid var(--border);
}

/* Top bar (logo + burger) — always on top */
.nav-bar {
  position: relative;
  z-index: 3;
  background: inherit;
  height: var(--nav-h);
}

.nav-inner {
  max-width: 1280px;
  margin: 0 auto;
  height: 100%;
  padding: 0 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 14px;
  opacity: 0;
}

.logo-mark {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  color: var(--gold);
}

.logo-divider {
  display: block;
  width: 1px;
  height: 28px;
  background: var(--border);
}

.logo-sub {
  font-size: 0.75rem;
  font-weight: 400;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-secondary);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav-link {
  position: relative;
  padding: 8px 16px;
  font-size: 0.875rem;
  font-weight: 400;
  letter-spacing: 0.04em;
  color: var(--text-secondary);
  border-radius: 6px;
  transition: color 0.25s;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 4px; left: 16px; right: 16px;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s var(--ease-out-expo);
}

.nav-link:hover { color: var(--text-primary); }
.nav-link:hover::after { transform: scaleX(1); }

.nav-cta {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 9px 20px;
  background: var(--gold-dim);
  border: 1px solid rgba(201,168,76,0.3);
  border-radius: 8px;
  color: var(--gold);
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  transition: background 0.25s, border-color 0.25s, color 0.25s;
}

.nav-cta::after { display: none; }

.nav-cta:hover {
  background: rgba(201,168,76,0.22);
  border-color: var(--gold);
  color: var(--gold-light);
}

/* Hamburger — hidden on desktop */
.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px; height: 44px;
  background: none;
  border: none;
  padding: 10px;
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
}

.nav-toggle span {
  display: block;
  width: 100%;
  height: 1.5px;
  background: var(--text-primary);
  border-radius: 1px;
  transition: transform 0.3s var(--ease-out-expo), opacity 0.3s;
}

/* Mobile dropdown panel — hidden on desktop */
.nav-panel {
  display: none;
}

/* ─── BUTTONS ──────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 28px;
  border-radius: 8px;
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  
  transition: transform 0.2s var(--ease-out-expo),
              box-shadow 0.3s,
              background 0.25s,
              border-color 0.25s;
  position: relative;
  overflow: hidden;
}

.btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0.07);
  opacity: 0;
  transition: opacity 0.2s;
}

.btn:hover::before { opacity: 1; }
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }

.btn-primary {
  background: var(--gold);
  color: var(--bg);
  font-weight: 600;
  box-shadow: 0 0 0 0 rgba(201,168,76,0);
}

.btn-primary:hover {
  box-shadow: 0 8px 32px rgba(201,168,76,0.25);
}

.btn-ghost {
  background: transparent;
  border: 1px solid var(--border);
  color: var(--text-secondary);
}

.btn-ghost:hover {
  border-color: var(--border-hover);
  color: var(--text-primary);
}

.btn-large {
  padding: 18px 40px;
  font-size: 1rem;
}

/* ─── HERO ─────────────────────────────────────────────── */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 1;
  padding: var(--nav-h) 40px 0;
  overflow: hidden;
}

.hero-bg-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
  z-index: 0;
  mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 40%, transparent 100%);
}

.hero-radial {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 900px; height: 600px;
  background: radial-gradient(ellipse, rgba(201,168,76,0.07) 0%, transparent 65%);
  pointer-events: none;
  z-index: 0;
}

.hero-center {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 32px;
  max-width: 900px;
  width: 100%;
}

.hero-eyebrow {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  opacity: 0;
}

.eyebrow-line {
  display: block;
  width: 40px;
  height: 1px;
  background: var(--gold);
  flex-shrink: 0;
}

.hero-headline {
  font-family: var(--font-display);
  font-size: clamp(3.5rem, 7vw, 7rem);
  font-weight: 600;
  line-height: 1.0;
  letter-spacing: -0.02em;
  color: var(--text-primary);
  overflow: hidden;
}

.line-wrap {
  display: block;
  overflow: hidden;
  padding-bottom: 0.05em;
}

.line {
  display: block;
  font-style: normal;
  transform: translateY(110%);
}

.hero-headline .highlight {
  color: var(--gold);
}

.hero-sub {
  font-size: 1.1rem;
  color: var(--text-secondary);
  line-height: 1.75;
  opacity: 0;
  max-width: 580px;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: center;
  opacity: 0;
}

/* Hero Pillars */
.hero-pillars {
  display: flex;
  align-items: center;
  gap: 0;
  margin-top: 16px;
  padding: 28px 40px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  width: 100%;
  opacity: 0;
}

.hero-pillar {
  display: flex;
  align-items: center;
  gap: 12px;
  flex: 1;
  justify-content: center;
  font-size: 0.85rem;
  color: var(--text-secondary);
  letter-spacing: 0.02em;
}

.hero-pillar svg {
  stroke: var(--gold);
  flex-shrink: 0;
}

.hero-pillar-divider {
  width: 1px;
  height: 32px;
  background: var(--border);
  flex-shrink: 0;
  margin: 0 20px;
}

/* Scroll indicator */
.hero-scroll-indicator {
  position: absolute;
  bottom: 40px; left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  opacity: 0;
}

.scroll-line {
  width: 1px;
  height: 60px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
  0%, 100% { opacity: 0.3; transform: scaleY(1); }
  50%       { opacity: 1;   transform: scaleY(1.2); }
}

/* ─── STATS BAR ────────────────────────────────────────── */
.stats-bar {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: var(--surface);
  position: relative;
  z-index: 1;
}

.stats-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 40px 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
}

.stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  padding: 0 80px;
  flex: 1;
  max-width: 280px;
  text-align: center;
}

.stat-value {
  display: flex;
  align-items: baseline;
  white-space: nowrap;
}

.stat-number {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
}

.stat-suffix {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
  margin-left: 2px;
}

.stat-label {
  font-size: 0.8rem;
  font-weight: 400;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.stat-divider {
  width: 1px;
  height: 50px;
  background: var(--border);
  flex-shrink: 0;
}

/* ─── SECTION UTILITIES ────────────────────────────────── */
.section-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 40px;
}

.section-header {
  text-align: center;
  margin-bottom: 72px;
}

.section-eyebrow {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 4vw, 3.5rem);
  font-weight: 600;
  line-height: 1.15;
  color: var(--text-primary);
  margin-bottom: 20px;
}

.section-title .accent { color: var(--gold); }

.section-desc {
  font-size: 1rem;
  color: var(--text-secondary);
  max-width: 560px;
  margin: 0 auto;
  line-height: 1.7;
}

/* ─── LEISTUNGEN ───────────────────────────────────────── */
.leistungen {
  padding: 120px 0;
}

.leistungen-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.leistung-card {
  position: relative;
  padding: 48px 40px;
  background: var(--surface);
  display: flex;
  flex-direction: column;
  gap: 16px;
  overflow: hidden;
  transition: background 0.35s;
}

.leistung-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--gold-dim), transparent 60%);
  opacity: 0;
  transition: opacity 0.4s;
}

.leistung-card:hover { background: var(--surface-2); }
.leistung-card:hover::before { opacity: 1; }

.card-icon {
  width: 48px; height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  background: var(--gold-dim);
  border: 1px solid rgba(201,168,76,0.2);
  flex-shrink: 0;
  transition: background 0.3s, border-color 0.3s;
}

.card-icon svg {
  width: 22px; height: 22px;
  stroke: var(--gold);
  transition: stroke 0.3s;
}

.leistung-card:hover .card-icon {
  background: rgba(201,168,76,0.22);
  border-color: var(--gold);
}

.leistung-card h3 {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 600;
  color: var(--text-primary);
  position: relative;
}

.leistung-card p {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.7;
  position: relative;
}

.card-number {
  position: absolute;
  bottom: 24px; right: 28px;
  font-family: var(--font-display);
  font-size: 4rem;
  font-weight: 700;
  color: rgba(201,168,76,0.06);
  line-height: 1;
  pointer-events: none;
  transition: color 0.3s;
}

.leistung-card:hover .card-number {
  color: rgba(201,168,76,0.12);
}

/* ─── LEISTUNGEN CTA ───────────────────────────────────── */
.leistungen-cta {
  text-align: center;
  margin-top: 56px;
}

/* ─── UEBER BADGES ─────────────────────────────────────── */
.ueber-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.badge {
  display: inline-flex;
  align-items: center;
  padding: 6px 14px;
  border-radius: 100px;
  background: var(--gold-dim);
  border: 1px solid rgba(201,168,76,0.25);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  color: var(--gold);
}

/* ─── ÜBER UNS ─────────────────────────────────────────── */
.ueber-uns {
  padding: 120px 0;
  background: var(--bg-2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

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

.ueber-image-wrap {
  position: relative;
}

.ueber-image-placeholder {
  aspect-ratio: 3/4;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  background: var(--surface);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  position: relative;
}

.ueber-image-placeholder::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent 60%, var(--bg-2) 100%);
}

.ueber-portrait {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}

.ueber-image-placeholder .placeholder-inner {
  color: var(--text-muted);
}

.ueber-accent-bar {
  position: absolute;
  bottom: -20px; left: 20px;
  right: 60px;
  height: 3px;
  background: linear-gradient(to right, var(--gold), transparent);
  border-radius: 2px;
}

.ueber-content {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.ueber-content .section-title { text-align: left; }
.ueber-content .section-eyebrow { text-align: left; }

.ueber-text {
  font-size: 1rem;
  color: var(--text-secondary);
  line-height: 1.8;
}

/* ─── KONTAKT ──────────────────────────────────────────── */
.kontakt {
  padding: 120px 0;
}

/* .kontakt-cards entfernt – nicht mehr verwendet */

.kontakt-card {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 32px 28px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: border-color 0.3s, background 0.3s, transform 0.3s var(--ease-out-expo);
  
}

a.kontakt-card:hover {
  border-color: var(--border-hover);
  background: var(--surface-2);
  transform: translateY(-4px);
}

.kontakt-icon {
  width: 48px; height: 48px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  background: var(--gold-dim);
  border: 1px solid rgba(201,168,76,0.2);
}

.kontakt-icon svg {
  width: 20px; height: 20px;
  stroke: var(--gold);
}

.kontakt-card h4 {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 4px;
}

.kontakt-card p {
  font-size: 0.95rem;
  color: var(--text-primary);
}

.kontakt-arrow {
  width: 20px; height: 20px;
  stroke: var(--text-muted);
  margin-left: auto;
  flex-shrink: 0;
  transition: stroke 0.3s, transform 0.3s;
}

a.kontakt-card:hover .kontakt-arrow {
  stroke: var(--gold);
  transform: translateX(4px);
}

/* ─── KONTAKT BANNER ───────────────────────────────────── */
.kontakt-banner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 72px 72px;
  position: relative;
  overflow: hidden;
}

.kontakt-banner::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(to right, transparent, var(--gold) 40%, var(--gold-light) 60%, transparent);
}

.kontakt-banner::after {
  content: '';
  position: absolute;
  bottom: -60px; right: -60px;
  width: 280px; height: 280px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(201,168,76,0.07) 0%, transparent 70%);
  pointer-events: none;
}

.kontakt-banner-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 600;
  line-height: 1.15;
  color: var(--text-primary);
  margin-bottom: 16px;
}

.kontakt-banner-sub {
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.7;
}

.kontakt-banner-text .section-eyebrow {
  text-align: left;
  margin-bottom: 16px;
}

.kontakt-banner-actions {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.kontakt-mail-hint {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.82rem;
  color: var(--text-muted);
  padding-left: 4px;
}

.kontakt-mail-hint svg {
  stroke: var(--text-muted);
  flex-shrink: 0;
}

@media (max-width: 1024px) {
  .kontakt-banner {
    grid-template-columns: 1fr;
    gap: 40px;
    padding: 48px 40px;
  }
}

@media (max-width: 768px) {
  .kontakt-banner {
    padding: 36px 28px;
  }
}

/* ─── FOOTER ───────────────────────────────────────────── */
.site-footer {
  background: var(--bg-2);
  border-top: 1px solid var(--border);
}

.footer-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 60px 40px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 40px;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-brand p {
  font-size: 0.8rem;
  color: var(--text-muted);
  line-height: 1.5;
}

.footer-nav {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.footer-nav a {
  font-size: 0.85rem;
  color: var(--text-muted);
  letter-spacing: 0.04em;
  transition: color 0.2s;
  
}

.footer-nav a:hover { color: var(--gold); }

.footer-legal {
  display: flex;
  justify-content: flex-end;
  gap: 24px;
}

.footer-legal a {
  font-size: 0.8rem;
  color: var(--text-muted);
  transition: color 0.2s;
  
}

.footer-legal a:hover { color: var(--text-secondary); }

.footer-bottom {
  border-top: 1px solid var(--border);
  padding: 20px 40px;
  text-align: center;
}

.footer-bottom p {
  font-size: 0.75rem;
  color: var(--text-muted);
  letter-spacing: 0.06em;
}

/* ─── ANIMATION UTILITY ────────────────────────────────── */
.fade-up {
  opacity: 0;
  transform: translateY(40px);
}

/* ─── RESPONSIVE ───────────────────────────────────────── */

/* Tablet */
@media (max-width: 1024px) {
  .leistungen-grid { grid-template-columns: repeat(2, 1fr); }

  .ueber-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .ueber-image-wrap {
    max-width: 420px;
    margin: 0 auto;
  }
  .ueber-image-placeholder { aspect-ratio: 4/3; }

  .stats-inner { flex-wrap: wrap; gap: 32px; }
  .stat-divider { display: none; }
  .stat-item { padding: 0 20px; min-width: 160px; }

  .footer-inner {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 32px;
  }
  .footer-legal { justify-content: center; }
}

/* Mobile */
@media (max-width: 768px) {
  :root { --nav-h: 64px; }

  /* overflow-x nur auf body – NICHT auf html, da dies position:fixed auf iOS bricht */
  body { overflow-x: hidden; max-width: 100vw; }

  /* ── Navigation ── */
  .nav-inner { padding: 0 20px; }
  .nav-toggle { display: flex; }
  .logo-sub { display: none; }
  .logo-divider { display: none; }

  .site-header {
    background: rgba(8, 8, 16, 0.96);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--border);
  }

  /* Hide desktop links */
  .nav-links { display: none !important; }

  /* Mobile panel: separate element, sits below .nav-bar */
  .nav-panel {
    display: block;
    position: relative;
    z-index: 1;
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    visibility: hidden;
    background: rgba(8, 8, 16, 0.98);
    border-bottom: 1px solid transparent;
    transition: max-height 0.4s var(--ease-out-expo),
                opacity 0.3s ease,
                visibility 0s linear 0.4s,
                border-color 0.3s;
  }
  .nav-panel.open {
    max-height: 400px;
    opacity: 1;
    visibility: visible;
    border-bottom-color: var(--border);
    transition: max-height 0.4s var(--ease-out-expo),
                opacity 0.3s ease,
                visibility 0s linear 0s,
                border-color 0.3s;
  }
  .nav-panel-inner {
    padding: 8px 20px 24px;
    display: flex;
    flex-direction: column;
    gap: 2px;
  }
  .nav-panel .nav-link {
    padding: 13px 16px;
    font-size: 0.95rem;
    min-height: 44px;
    display: flex;
    align-items: center;
  }
  .nav-panel .nav-cta {
    margin-top: 8px;
    justify-content: center;
    min-height: 44px;
  }

  /* ── Hero ── */
  .hero {
    padding: calc(var(--nav-h) + 32px) 20px 80px;
    min-height: auto;
  }
  .hero-center { gap: 24px; }
  .hero-eyebrow { font-size: 0.65rem; gap: 10px; }
  .eyebrow-line { width: 24px; }
  .hero-headline { font-size: clamp(2.4rem, 10vw, 3.5rem); }
  .hero-sub { font-size: 0.95rem; }
  .hero-actions {
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
  }
  .hero-actions .btn { justify-content: center; min-height: 48px; }
  .hero-pillars {
    flex-direction: column;
    gap: 0;
    padding: 0;
    background: none;
    border: none;
    border-radius: 0;
  }
  .hero-pillar {
    justify-content: flex-start;
    padding: 14px 0;
    border-bottom: 1px solid var(--border);
    font-size: 0.85rem;
  }
  .hero-pillar:last-child { border-bottom: none; }
  .hero-pillar-divider { display: none; }
  .hero-scroll-indicator { display: none; }

  /* ── Sections ── */
  .section-container { padding: 0 20px; }
  .leistungen { padding: 72px 0; }
  .ueber-uns  { padding: 72px 0; }
  .kontakt    { padding: 72px 0; }

  .section-header { margin-bottom: 48px; }
  .section-title { font-size: clamp(1.8rem, 7vw, 2.4rem); }

  /* ── Stats ── */
  .stats-inner {
    padding: 0 20px;
    flex-direction: column;
    gap: 0;
    align-items: stretch;
  }
  .stat-item {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    padding: 20px 0;
    width: 100%;
    max-width: 100%;
    border-bottom: 1px solid var(--border);
    text-align: left;
    gap: 12px;
  }
  .stat-item:last-child { border-bottom: none; }
  .stat-value { order: 2; flex-shrink: 0; }
  .stat-label { order: 1; flex: 1; letter-spacing: 0.05em; font-size: 0.8rem; }
  .stat-number { font-size: 2rem; }
  .stat-suffix { font-size: 1.5rem; }

  /* ── Leistungen ── */
  .leistungen-grid {
    grid-template-columns: 1fr;
    border-radius: var(--radius);
  }
  .leistung-card { padding: 32px 24px; }
  .card-number { font-size: 3rem; }

  /* ── Über uns ── */
  .ueber-grid { gap: 36px; }
  .ueber-image-wrap { max-width: 100%; }
  .ueber-image-placeholder { aspect-ratio: 3/2; }
  .ueber-badges { gap: 8px; }
  .badge { font-size: 0.72rem; padding: 5px 11px; }

  /* ── Kontakt Banner ── */
  .kontakt-banner {
    padding: 36px 24px;
    gap: 32px;
  }
  .kontakt-banner-title { font-size: clamp(1.6rem, 6vw, 2rem); }
  .kontakt-banner-actions .btn { min-height: 48px; justify-content: center; }

  /* ── Footer ── */
  .footer-inner { padding: 40px 20px; gap: 28px; }
  .footer-nav {
    flex-direction: column;
    gap: 10px;
    align-items: center;
  }
  .footer-nav a { min-height: 36px; display: flex; align-items: center; }
  .footer-legal { gap: 20px; }
  .footer-bottom { padding: 16px 20px; }
}

/* Small phones */
@media (max-width: 390px) {
  .hero-headline { font-size: 2.2rem; }
  .btn-large { padding: 15px 24px; font-size: 0.9rem; }
  .leistung-card { padding: 28px 20px; }
  .kontakt-banner { padding: 28px 20px; }
  .stat-item { width: 100%; border-right: none !important; }
  .stat-item:nth-child(5) { border-bottom: 1px solid var(--border); }
  .stat-item:last-child { border-bottom: none; }
}
