/* ===================================================
   Räum- und Umzugsservice – Premium Design v2.0
   =================================================== */
@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@300;400;500;600;700;800&family=Space+Grotesk:wght@400;500;600;700&display=swap');

/* ─── DESIGN TOKENS ───────────────────────────────── */
:root {
  /* Farben */
  --primary:        #0f2d52;
  --primary-mid:    #1a4a7a;
  --primary-light:  #2563a8;
  --accent:         #f59e0b;
  --accent-dark:    #d97706;
  --accent-glow:    rgba(245,158,11,.25);
  --success:        #059669;
  --success-light:  #d1fae5;
  --danger:         #dc2626;
  --danger-light:   #fee2e2;
  --warning:        #ea580c;
  --warning-light:  #ffedd5;
  --info:           #0284c7;
  --info-light:     #e0f2fe;

  /* Neutrals */
  --bg:             #f1f5f9;
  --surface:        #ffffff;
  --surface-2:      #f8fafc;
  --border:         #e2e8f0;
  --border-strong:  #cbd5e1;
  --text:           #0f172a;
  --text-mid:       #334155;
  --text-muted:     #64748b;
  --text-faint:     #94a3b8;

  /* Shadows */
  --shadow-xs:  0 1px 3px rgba(15,45,82,.06), 0 1px 2px rgba(15,45,82,.04);
  --shadow-sm:  0 4px 12px rgba(15,45,82,.08), 0 2px 4px rgba(15,45,82,.05);
  --shadow-md:  0 8px 24px rgba(15,45,82,.12), 0 4px 8px rgba(15,45,82,.06);
  --shadow-lg:  0 20px 48px rgba(15,45,82,.16), 0 8px 16px rgba(15,45,82,.08);
  --shadow-xl:  0 32px 64px rgba(15,45,82,.20);
  --shadow-accent: 0 8px 24px rgba(245,158,11,.35);
  --shadow-primary: 0 8px 24px rgba(15,45,82,.35);

  /* Radien */
  --r-sm:   8px;
  --r-md:   12px;
  --r-lg:   16px;
  --r-xl:   24px;
  --r-full: 9999px;

  /* Typografie */
  --font-body:  'Plus Jakarta Sans', system-ui, sans-serif;
  --font-head:  'Space Grotesk', system-ui, sans-serif;

  /* Spacing */
  --space-1: 4px;   --space-2: 8px;   --space-3: 12px;
  --space-4: 16px;  --space-5: 20px;  --space-6: 24px;
  --space-8: 32px;  --space-10: 40px; --space-12: 48px;
  --space-16: 64px; --space-20: 80px;

  /* Transition */
  --ease: cubic-bezier(.4,0,.2,1);
  --t-fast: 150ms;
  --t-base: 250ms;
  --t-slow: 400ms;
}

/* ─── RESET & BASE ────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; -webkit-text-size-adjust: 100%; }

body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
}

h1,h2,h3,h4,h5,h6 {
  font-family: var(--font-head);
  font-weight: 700;
  line-height: 1.15;
  color: var(--text);
  letter-spacing: -.02em;
}
h1 { font-size: clamp(2rem,5vw,3.5rem); }
h2 { font-size: clamp(1.5rem,3vw,2.25rem); }
h3 { font-size: 1.25rem; }
h4 { font-size: 1.05rem; }

a { color: var(--primary-light); text-decoration: none; transition: color var(--t-fast) var(--ease); }
a:hover { color: var(--accent-dark); }
img { max-width: 100%; height: auto; display: block; }
ul { list-style: none; }
button { font-family: var(--font-body); }

/* ─── LAYOUT UTILITIES ────────────────────────────── */
.container { width: 100%; max-width: 1240px; margin: 0 auto; padding: 0 var(--space-6); }
.text-center { text-align: center; }
.text-right  { text-align: right; }
.d-flex      { display: flex; }
.align-center{ align-items: center; }
.justify-between { justify-content: space-between; }
.gap-2 { gap: var(--space-2); }
.gap-3 { gap: var(--space-3); }
.gap-4 { gap: var(--space-4); }
.gap-6 { gap: var(--space-6); }
.flex-wrap { flex-wrap: wrap; }
.mt-1{margin-top:var(--space-2)}.mt-2{margin-top:var(--space-4)}.mt-3{margin-top:var(--space-6)}.mt-4{margin-top:var(--space-8)}
.mb-1{margin-bottom:var(--space-2)}.mb-2{margin-bottom:var(--space-4)}.mb-3{margin-bottom:var(--space-6)}.mb-4{margin-bottom:var(--space-8)}
.p-2{padding:var(--space-4)}.p-3{padding:var(--space-6)}
.w-100{width:100%}
.hidden{display:none!important}

/* ─── BUTTONS ─────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-2);
  padding: 10px 20px;
  border-radius: var(--r-md);
  font-family: var(--font-body);
  font-size: .9rem;
  font-weight: 600;
  letter-spacing: .01em;
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: all var(--t-base) var(--ease);
  text-decoration: none;
  white-space: nowrap;
  position: relative;
  overflow: hidden;
}
.btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0);
  transition: background var(--t-fast);
}
.btn:hover::before { background: rgba(255,255,255,.1); }

.btn-primary {
  background: linear-gradient(135deg, var(--primary-mid), var(--primary));
  color: #fff;
  box-shadow: var(--shadow-primary);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(15,45,82,.45);
  color: #fff;
}

.btn-accent {
  background: linear-gradient(135deg, var(--accent), var(--accent-dark));
  color: #fff;
  box-shadow: var(--shadow-accent);
}
.btn-accent:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(245,158,11,.5);
  color: #fff;
}

.btn-success {
  background: linear-gradient(135deg, #059669, #047857);
  color: #fff;
  box-shadow: 0 4px 14px rgba(5,150,105,.3);
}
.btn-success:hover { transform: translateY(-2px); color: #fff; }

.btn-danger {
  background: linear-gradient(135deg, #dc2626, #b91c1c);
  color: #fff;
  box-shadow: 0 4px 14px rgba(220,38,38,.3);
}
.btn-danger:hover { transform: translateY(-2px); color: #fff; }

.btn-warning {
  background: linear-gradient(135deg, var(--warning), #c2410c);
  color: #fff;
}
.btn-warning:hover { transform: translateY(-2px); color: #fff; }

.btn-outline {
  background: transparent;
  color: var(--primary);
  border-color: var(--border-strong);
}
.btn-outline:hover {
  background: var(--primary);
  color: #fff;
  border-color: var(--primary);
  transform: translateY(-2px);
}

.btn-ghost {
  background: transparent;
  color: var(--text-muted);
  border-color: transparent;
}
.btn-ghost:hover { background: var(--bg); color: var(--text); }

.btn-sm  { padding: 6px 14px; font-size: .82rem; border-radius: var(--r-sm); gap: 5px; }
.btn-lg  { padding: 14px 28px; font-size: 1rem; border-radius: var(--r-lg); }
.btn-xl  { padding: 18px 36px; font-size: 1.1rem; border-radius: var(--r-lg); }
.btn-block { width: 100%; }

/* ─── BADGES ──────────────────────────────────────── */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 3px 10px;
  border-radius: var(--r-full);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .03em;
  text-transform: uppercase;
}
.badge-info      { background: var(--info-light);    color: var(--info); }
.badge-success   { background: var(--success-light); color: var(--success); }
.badge-warning   { background: var(--warning-light); color: var(--warning); }
.badge-danger    { background: var(--danger-light);  color: var(--danger); }
.badge-secondary { background: var(--surface-2);     color: var(--text-muted); border: 1px solid var(--border); }
.badge-primary   { background: #dbeafe;              color: var(--primary); }
.badge-dark      { background: var(--text-mid);      color: #fff; }
.badge-accent    { background: var(--accent-glow);   color: var(--accent-dark); }

/* ─── CARDS ───────────────────────────────────────── */
.card {
  background: var(--surface);
  border-radius: var(--r-xl);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  border: 1px solid var(--border);
  transition: box-shadow var(--t-base) var(--ease);
}
.card:hover { box-shadow: var(--shadow-md); }

.card-header {
  padding: var(--space-5) var(--space-6);
  border-bottom: 1px solid var(--border);
  background: var(--surface-2);
  font-weight: 700;
  font-family: var(--font-head);
  font-size: 1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: var(--text);
  letter-spacing: -.01em;
}
.card-body   { padding: var(--space-6); }
.card-footer { padding: var(--space-4) var(--space-6); border-top: 1px solid var(--border); background: var(--surface-2); }

/* Card-Varianten */
.card-accent-top  { border-top: 3px solid var(--accent); }
.card-primary-top { border-top: 3px solid var(--primary-light); }
.card-success-top { border-top: 3px solid var(--success); }

/* ─── FORMS ───────────────────────────────────────── */
.form-group { margin-bottom: var(--space-5); }
.form-label {
  display: block;
  font-weight: 600;
  margin-bottom: var(--space-2);
  font-size: .875rem;
  color: var(--text-mid);
  letter-spacing: .01em;
}
.form-control {
  width: 100%;
  padding: 10px 14px;
  border: 1.5px solid var(--border-strong);
  border-radius: var(--r-md);
  font-family: var(--font-body);
  font-size: .925rem;
  line-height: 1.5;
  color: var(--text);
  background: var(--surface);
  transition: border-color var(--t-fast) var(--ease), box-shadow var(--t-fast) var(--ease);
  -webkit-appearance: none;
}
.form-control:focus {
  outline: none;
  border-color: var(--primary-light);
  box-shadow: 0 0 0 3px rgba(37,99,168,.15);
}
.form-control:hover:not(:focus) { border-color: var(--border-strong); }
.form-control::placeholder { color: var(--text-faint); }
select.form-control { cursor: pointer; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%2364748b' d='M6 8L0 0h12z'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 12px center; padding-right: 36px; }
textarea.form-control { resize: vertical; min-height: 110px; }
.form-text { font-size: .8rem; color: var(--text-muted); margin-top: var(--space-1); }
.form-row   { display: grid; gap: var(--space-4); }
.form-row-2 { grid-template-columns: 1fr 1fr; }
.form-row-3 { grid-template-columns: 1fr 1fr 1fr; }

/* ─── ALERTS ──────────────────────────────────────── */
.alert {
  padding: 14px 18px;
  border-radius: var(--r-md);
  margin-bottom: var(--space-4);
  font-weight: 500;
  font-size: .9rem;
  display: flex;
  align-items: flex-start;
  gap: var(--space-3);
  border: 1px solid;
}
.alert-success { background: var(--success-light); color: #065f46; border-color: #a7f3d0; }
.alert-danger  { background: var(--danger-light);  color: #991b1b; border-color: #fca5a5; }
.alert-warning { background: var(--warning-light); color: #9a3412; border-color: #fed7aa; }
.alert-info    { background: var(--info-light);    color: #075985; border-color: #bae6fd; }

/* ─── TABLES ──────────────────────────────────────── */
.table-wrap { overflow-x: auto; border-radius: var(--r-lg); }
table { width: 100%; border-collapse: collapse; font-size: .9rem; }
table th {
  background: var(--primary);
  color: rgba(255,255,255,.9);
  padding: 13px 18px;
  text-align: left;
  font-family: var(--font-head);
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
  white-space: nowrap;
}
table th:first-child { border-radius: 0; }
table td {
  padding: 14px 18px;
  border-bottom: 1px solid var(--border);
  vertical-align: middle;
  color: var(--text-mid);
  line-height: 1.5;
  /* Wichtig: kein white-space: nowrap hier damit Inhalt atmen kann */
}
table tbody tr { transition: background var(--t-fast); }
table tbody tr:hover td { background: #f8faff; }
table tbody tr:last-child td { border-bottom: none; }
.table-actions { display: flex; gap: var(--space-2); align-items: center; flex-wrap: nowrap; }

/* ─── NAVIGATION (Public) ─────────────────────────── */
.nav-public {
  background: rgba(15,45,82,.97);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 1px 0 rgba(255,255,255,.06), 0 4px 24px rgba(0,0,0,.2);
  position: sticky;
  top: 0;
  z-index: 1000;
}
.nav-public .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}
.nav-logo { display: flex; align-items: center; gap: var(--space-3); }
.nav-logo img { height: 46px; width: auto; border-radius: var(--r-sm); }
.nav-logo-text {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1.15rem;
  color: #fff;
  line-height: 1.1;
  letter-spacing: -.02em;
}
.nav-logo-text span { display: block; font-size: .68rem; font-weight: 400; opacity: .6; letter-spacing: .08em; text-transform: uppercase; }
.nav-menu { display: flex; align-items: center; gap: var(--space-1); }
.nav-menu a {
  color: rgba(255,255,255,.78);
  font-weight: 500;
  font-size: .9rem;
  padding: 8px 13px;
  border-radius: var(--r-md);
  transition: all var(--t-fast) var(--ease);
  letter-spacing: .01em;
}
.nav-menu a:hover { color: #fff; background: rgba(255,255,255,.12); }
.nav-menu a.active { color: var(--accent); background: rgba(245,158,11,.12); }
.nav-cta { display: flex; gap: var(--space-2); align-items: center; }
.nav-mobile-auth { display: none; }
.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: var(--space-2); z-index: 1001; position: relative; }
.hamburger span { width: 22px; height: 2px; background: #fff; border-radius: 2px; transition: var(--t-base) var(--ease); }
.hamburger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* 1. Haupt-Hero Bereich */
/* Der Hero-Hintergrund bekommt das originale, schöne Mesh-Gradient-Blau zurück */
.hero {
  position: relative;
  background: #0f2439; /* Das solide Basis-Blau deiner Seite */
  min-height: 80vh;
  display: flex;
  align-items: center;
  padding: 60px 0;
  overflow: hidden;
}

/* Dein blaues Mesh-Gradient aus dem allerersten Entwurf */
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 70% 40%, rgba(37,99,168,.35) 0%, transparent 60%),
    radial-gradient(ellipse 50% 80% at 10% 80%, rgba(245,158,11,.12) 0%, transparent 50%);
  z-index: 1;
}

/* Das dezente Punkte-Muster im Hintergrund */
.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='80' height='80' viewBox='0 0 80 80' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none'%3E%3Cg fill='%23ffffff' fill-opacity='0.022'%3E%3Cpath d='M50 50c0-5.5 4.5-10 10-10s10 4.5 10 10-4.5 10-10 10-10-4.5-10-10zm-20-20c0-5.5 4.5-10 10-10s10 4.5 10 10-4.5 10-10 10-10-4.5-10-10z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  z-index: 1;
}

/* Wrapper, der Text und Bild nebeneinander anordnet */
.hero-wrapper {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

/* Linke Spalte (Text) bekommt festen Platz */
.hero-content { 
  flex: 1;
  max-width: 650px; 
}

/* Rechte Spalte (Bild-Box) */
.hero-image-box {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

/* Der freigestellte Sprinter selbst */
.hero-sprinter {
  max-width: 120%; /* Darf ruhig leicht über den Container ragen wie im Design */
  height: auto;
  object-fit: contain;
  /* Kleiner Schatten unter dem Auto für den Studio-Effekt */
  filter: drop-shadow(0 20px 30px rgba(0,0,0,0.4)); 
  animation: fadeInRight 1s ease-out;
}

/* Animation für den Premium-Look beim Laden der Seite */
@keyframes fadeInRight {
  from { opacity: 0; transform: translateX(50px); }
  to { opacity: 1; transform: translateX(0); }
}

/* --- DEINE ALTEN TEXT-STYLES (.hero-badge, h1, p, etc.) BLEIBEN UNVERÄNDERT --- */

/* Perfekt mobil-responsiv machen */
@media (max-width: 992px) {
  .hero-wrapper {
    flex-direction: column;
    text-align: center;
  }
  .hero-content {
    max-width: 100%;
  }
  .hero-actions, .hero-stats {
    justify-content: center;
  }
  .hero-sprinter {
    max-width: 90%;
    margin-top: 30px;
  }
}

/* --- Ab hier folgen deine restlichen unveränderten Styles (.hero-badge, .hero h1, etc.) --- */

/* --- HIER FOLGEN DEINE UNVERÄNDERTEN WEITEREN HERO-STYLES --- */
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  background: rgba(245,158,11,.18);
  color: var(--accent);
  border: 1px solid rgba(245,158,11,.35);
  padding: 6px 16px;
  border-radius: var(--r-full);
  font-size: .8rem;
  font-weight: 700;
  margin-bottom: var(--space-5);
  letter-spacing: .05em;
  text-transform: uppercase;
  backdrop-filter: blur(4px);
}
.hero h1 {
  font-size: clamp(2.2rem,5.5vw,3.6rem);
  margin-bottom: var(--space-5);
  color: #fff;
  line-height: 1.08;
  letter-spacing: -.03em;
}
.hero h1 span {
  color: var(--accent);
  position: relative;
}
.hero p {
  font-size: 1.1rem;
  opacity: .82;
  margin-bottom: var(--space-8);
  max-width: 560px;
  line-height: 1.7;
  font-weight: 400;
}
.hero-actions { display: flex; gap: var(--space-3); flex-wrap: wrap; }
.hero-stats { display: flex; gap: var(--space-8); margin-top: var(--space-12); flex-wrap: wrap; }
.hero-stat strong {
  display: block;
  font-size: 2.2rem;
  font-family: var(--font-head);
  color: var(--accent);
  font-weight: 800;
  line-height: 1;
  letter-spacing: -.03em;
}
.hero-stat span { font-size: .82rem; opacity: .65; margin-top: var(--space-1); display: block; }

/* ─── SECTIONS ────────────────────────────────────── */
.section { padding: var(--space-20) 0; }
.section-alt { background: var(--surface); }
.section-dark { background: var(--primary); color: #fff; }
.section-title { text-align: center; margin-bottom: var(--space-12); }
.section-title h2 { color: var(--text); margin-bottom: var(--space-3); }
.section-title p { color: var(--text-muted); max-width: 580px; margin: 0 auto; font-size: 1.05rem; }
.title-accent { color: var(--accent-dark); }
.title-chip {
  display: inline-block;
  background: var(--accent-glow);
  color: var(--accent-dark);
  border: 1px solid rgba(245,158,11,.3);
  padding: 4px 14px;
  border-radius: var(--r-full);
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  margin-bottom: var(--space-3);
}

/* ─── SERVICE CARDS ───────────────────────────────── */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: var(--space-6);
}
.service-card {
  background: var(--surface);
  border-radius: var(--r-xl);
  padding: var(--space-8) var(--space-6);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
  border-top: 3px solid var(--accent);
  transition: all var(--t-base) var(--ease);
  position: relative;
  overflow: hidden;
}
.service-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(245,158,11,.03) 0%, transparent 60%);
  pointer-events: none;
}
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(245,158,11,.4);
}
.service-icon {
  width: 56px; height: 56px;
  background: linear-gradient(135deg, #dbeafe, #eff6ff);
  border-radius: var(--r-md);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: var(--space-5);
  font-size: 1.65rem;
  box-shadow: 0 2px 8px rgba(37,99,168,.12);
}
.service-card h3 { font-size: 1.05rem; margin-bottom: var(--space-2); color: var(--text); }
.service-card p  { color: var(--text-muted); font-size: .9rem; line-height: 1.65; }

/* ─── GALLERY ─────────────────────────────────────── */
.gallery-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(320px,1fr)); gap: var(--space-5); }
.gallery-item {
  border-radius: var(--r-xl);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  background: var(--surface);
  border: 1px solid var(--border);
  transition: all var(--t-base) var(--ease);
}
.gallery-item:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.gallery-compare { display: grid; grid-template-columns: 1fr 1fr; }
.gallery-compare img { width: 100%; height: 210px; object-fit: cover; }
.gallery-compare-label {
  text-align: center;
  padding: 6px;
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.gallery-compare-label.before { background: #fef2f2; color: var(--danger); }
.gallery-compare-label.after  { background: #f0fdf4; color: var(--success); }
.gallery-item-body { padding: var(--space-5); }
.gallery-item-body h4 { font-size: 1rem; margin-bottom: var(--space-1); color: var(--text); }
.gallery-item-body p  { font-size: .85rem; color: var(--text-muted); }

/* ─── REVIEWS ─────────────────────────────────────── */
.reviews-grid { display: grid; grid-template-columns: repeat(auto-fill,minmax(300px,1fr)); gap: var(--space-6); }
.review-card {
  background: var(--surface);
  border-radius: var(--r-xl);
  padding: var(--space-7, 28px);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
  transition: all var(--t-base);
}
.review-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.review-stars { color: var(--accent); font-size: 1.1rem; margin-bottom: var(--space-3); letter-spacing: 2px; }
.review-text { color: var(--text-mid); font-style: italic; margin-bottom: var(--space-5); line-height: 1.75; font-size: .95rem; }
.review-author { display: flex; align-items: center; gap: var(--space-3); }
.review-avatar {
  width: 44px; height: 44px;
  background: linear-gradient(135deg, var(--primary-mid), var(--primary-light));
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: #fff; font-weight: 700; font-size: 1rem;
  flex-shrink: 0;
}
.review-author-info strong { display: block; font-size: .9rem; font-weight: 600; }
.review-author-info span   { font-size: .8rem; color: var(--text-muted); }

/* ─── CONTACT ─────────────────────────────────────── */
.contact-grid { display: grid; grid-template-columns: 1fr 1.6fr; gap: var(--space-10); align-items: start; }
.contact-info-item { display: flex; gap: var(--space-4); margin-bottom: var(--space-6); }
.contact-info-icon {
  width: 48px; height: 48px;
  background: linear-gradient(135deg, var(--primary-mid), var(--primary-light));
  border-radius: var(--r-md);
  display: flex; align-items: center; justify-content: center;
  color: #fff; font-size: 1.1rem; flex-shrink: 0;
  box-shadow: var(--shadow-primary);
}

/* ─── FOOTER ──────────────────────────────────────── */
footer {
  background: linear-gradient(170deg, #06182e 0%, var(--primary) 100%);
  color: rgba(255,255,255,.7);
  padding: var(--space-16) 0 var(--space-6);
  border-top: 1px solid rgba(255,255,255,.06);
}
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: var(--space-10); margin-bottom: var(--space-10); }
.footer-brand h3 { font-family: var(--font-head); color: #fff; margin-bottom: var(--space-3); font-size: 1.2rem; }
.footer-brand p  { font-size: .9rem; line-height: 1.75; }
footer h4 { font-family: var(--font-head); color: #fff; margin-bottom: var(--space-4); font-size: .95rem; letter-spacing: -.01em; }
footer ul li { margin-bottom: var(--space-2); }
footer ul a { color: rgba(255,255,255,.62); font-size: .88rem; transition: color var(--t-fast); }
footer ul a:hover { color: var(--accent); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.08);
  padding-top: var(--space-5);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: .84rem;
  flex-wrap: wrap;
  gap: var(--space-3);
}
.footer-social { display: flex; gap: var(--space-3); }
.footer-social a {
  width: 36px; height: 36px;
  background: rgba(255,255,255,.08);
  border-radius: var(--r-md);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,.7);
  font-size: .95rem;
  transition: all var(--t-fast);
}
.footer-social a:hover { background: var(--accent); color: #fff; }

/* ─── DASHBOARD LAYOUT ────────────────────────────── */
.dashboard-layout { display: flex; min-height: 100vh; background: var(--bg); }

.sidebar {
  width: 268px;
  background: linear-gradient(180deg, #07182e 0%, #0f2d52 100%);
  color: #fff;
  display: flex;
  flex-direction: column;
  position: fixed;
  top: 0; left: 0; bottom: 0;
  z-index: 100;
  transition: transform .3s var(--ease);
  border-right: 1px solid rgba(255,255,255,.05);
  box-shadow: 4px 0 24px rgba(0,0,0,.2);
}
.sidebar-logo {
  padding: var(--space-5) var(--space-5);
  border-bottom: 1px solid rgba(255,255,255,.07);
  display: flex;
  align-items: center;
  gap: var(--space-3);
}
.sidebar-logo img { height: 42px; border-radius: var(--r-sm); }
.sidebar-logo-text {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: .95rem;
  line-height: 1.2;
  letter-spacing: -.01em;
}
.sidebar-logo-text span { display: block; font-size: .67rem; font-weight: 400; opacity: .5; letter-spacing: .07em; text-transform: uppercase; margin-top: 2px; }

.sidebar-nav { flex: 1; overflow-y: auto; padding: var(--space-3) 0 var(--space-3); }
.sidebar-nav::-webkit-scrollbar { width: 4px; }
.sidebar-nav::-webkit-scrollbar-thumb { background: rgba(255,255,255,.1); border-radius: 2px; }

.sidebar-section {
  padding: var(--space-4) var(--space-5) var(--space-2);
  font-size: .66rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: rgba(255,255,255,.35);
}
.sidebar-nav a {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  padding: 10px var(--space-5);
  color: rgba(255,255,255,.68);
  font-size: .875rem;
  font-weight: 500;
  transition: all var(--t-fast) var(--ease);
  border-left: 3px solid transparent;
  margin: 1px var(--space-2);
  border-radius: 0 var(--r-md) var(--r-md) 0;
}
.sidebar-nav a i { width: 18px; text-align: center; font-size: .9rem; opacity: .75; flex-shrink: 0; }
.sidebar-nav a:hover { color: #fff; background: rgba(255,255,255,.08); border-left-color: rgba(245,158,11,.5); }
.sidebar-nav a.active {
  color: #fff;
  background: rgba(245,158,11,.15);
  border-left-color: var(--accent);
  font-weight: 600;
}
.sidebar-nav a.active i { opacity: 1; color: var(--accent); }

.sidebar-footer {
  padding: var(--space-4) var(--space-4);
  border-top: 1px solid rgba(255,255,255,.07);
}
.sidebar-user { display: flex; align-items: center; gap: var(--space-3); margin-bottom: var(--space-3); }
.sidebar-avatar {
  width: 38px; height: 38px;
  background: linear-gradient(135deg, var(--accent-dark), var(--accent));
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: .9rem;
  flex-shrink: 0;
  box-shadow: 0 2px 8px rgba(245,158,11,.4);
}
.sidebar-user-info strong { display: block; font-size: .88rem; font-weight: 600; }
.sidebar-user-info span   { font-size: .73rem; opacity: .5; display: block; margin-top: 1px; }

.main-content { flex: 1; margin-left: 268px; display: flex; flex-direction: column; min-width: 0; }

.topbar {
  background: var(--surface);
  border-bottom: 1px solid var(--border);
  padding: 0 var(--space-8);
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: sticky;
  top: 0;
  z-index: 50;
  box-shadow: 0 1px 3px rgba(0,0,0,.05), 0 4px 12px rgba(0,0,0,.04);
}
.topbar-title {
  font-family: var(--font-head);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--text);
  letter-spacing: -.02em;
}
.topbar-actions { display: flex; align-items: center; gap: var(--space-4); }

.page-content { flex: 1; padding: var(--space-8); }

/* ─── STAT CARDS (Dashboard) ──────────────────────── */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: var(--space-5);
  margin-bottom: var(--space-6);
}
.stat-card {
  background: var(--surface);
  border-radius: var(--r-xl);
  padding: var(--space-6);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
  display: flex;
  align-items: flex-start;
  gap: var(--space-4);
  transition: all var(--t-base) var(--ease);
  position: relative;
  overflow: hidden;
}
.stat-card::before {
  content: '';
  position: absolute;
  top: 0; right: 0;
  width: 80px; height: 80px;
  border-radius: 50%;
  transform: translate(20px,-20px);
  opacity: .06;
}
.stat-card.blue::before   { background: var(--primary); }
.stat-card.green::before  { background: var(--success); }
.stat-card.orange::before { background: var(--warning); }
.stat-card.red::before    { background: var(--danger); }
.stat-card.yellow::before { background: var(--accent); }
.stat-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }

.stat-icon {
  width: 52px; height: 52px;
  border-radius: var(--r-md);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem;
  flex-shrink: 0;
}
.stat-icon.blue   { background: #dbeafe; color: var(--primary-light); }
.stat-icon.green  { background: var(--success-light); color: var(--success); }
.stat-icon.orange { background: var(--warning-light); color: var(--warning); }
.stat-icon.red    { background: var(--danger-light); color: var(--danger); }
.stat-icon.yellow { background: #fef9c3; color: #a16207; }

.stat-value {
  font-family: var(--font-head);
  font-size: 2rem;
  font-weight: 800;
  color: var(--text);
  line-height: 1;
  letter-spacing: -.04em;
}
.stat-label {
  font-size: .82rem;
  color: var(--text-muted);
  margin-top: var(--space-1);
  font-weight: 500;
  line-height: 1.3;
}

/* ─── CALENDAR ────────────────────────────────────── */
.calendar-grid { display: grid; grid-template-columns: repeat(7,1fr); gap: 3px; }
.cal-header {
  text-align: center;
  padding: var(--space-2);
  font-weight: 700;
  font-size: .75rem;
  color: var(--text-muted);
  letter-spacing: .05em;
  text-transform: uppercase;
}
.cal-day {
  min-height: 88px;
  background: var(--surface);
  border-radius: var(--r-sm);
  padding: var(--space-2);
  border: 1px solid var(--border);
  font-size: .78rem;
  transition: background var(--t-fast);
}
.cal-day:hover { background: var(--surface-2); }
.cal-day.today { border-color: var(--accent); background: #fffbeb; }
.cal-day.other-month { opacity: .35; }
.cal-day-num { font-weight: 700; margin-bottom: var(--space-1); color: var(--text-mid); font-size: .82rem; }
.cal-day.today .cal-day-num { color: var(--accent-dark); }
.cal-event {
  background: var(--primary);
  color: #fff;
  border-radius: var(--r-sm);
  padding: 2px 6px;
  margin-bottom: 2px;
  font-size: .68rem;
  font-weight: 500;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}
.cal-event.green  { background: var(--success); }
.cal-event.orange { background: var(--warning); }

/* ─── PAGE LAYOUT HELPERS ─────────────────────────── */
.page-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: var(--space-6);
  flex-wrap: wrap;
  gap: var(--space-3);
}
.page-header h2 {
  font-size: 1.6rem;
  color: var(--text);
  letter-spacing: -.03em;
}
.breadcrumb { font-size: .82rem; color: var(--text-muted); margin-bottom: var(--space-2); }
.breadcrumb a { color: var(--primary-light); font-weight: 500; }
.breadcrumb a::after { content: ' /'; margin: 0 var(--space-1); color: var(--border-strong); }

.empty-state { text-align: center; padding: var(--space-16) var(--space-5); color: var(--text-muted); }
.empty-state .icon { font-size: 3.5rem; margin-bottom: var(--space-4); opacity: .35; }
.empty-state h3 { margin-bottom: var(--space-2); color: var(--text-mid); font-size: 1.15rem; }
.empty-state p  { font-size: .9rem; }

/* ─── PROGRESS ────────────────────────────────────── */
.progress { background: var(--border); border-radius: var(--r-full); height: 8px; overflow: hidden; }
.progress-bar { height: 100%; border-radius: var(--r-full); transition: width .5s var(--ease); }
.progress-bar          { background: linear-gradient(90deg, var(--primary-mid), var(--primary-light)); }
.progress-bar.accent   { background: linear-gradient(90deg, var(--accent-dark), var(--accent)); }
.progress-bar.success  { background: linear-gradient(90deg, #047857, var(--success)); }
.progress-bar.danger   { background: linear-gradient(90deg, #b91c1c, var(--danger)); }

/* ─── SIGNATURE PAD ───────────────────────────────── */
.signature-pad-wrap {
  border: 2px dashed var(--border-strong);
  border-radius: var(--r-lg);
  overflow: hidden;
  background: var(--surface-2);
}
#signaturePad { display: block; background: transparent; cursor: crosshair; }

/* ─── MODAL ───────────────────────────────────────── */
.modal-overlay {
  display: none;
  position: fixed; inset: 0;
  background: rgba(7,24,46,.6);
  backdrop-filter: blur(4px);
  z-index: 9000;
  align-items: center;
  justify-content: center;
}
.modal-overlay.open { display: flex; }
.modal {
  background: var(--surface);
  border-radius: var(--r-xl);
  width: 90%; max-width: 600px; max-height: 90vh;
  overflow: auto;
  box-shadow: var(--shadow-xl);
  border: 1px solid var(--border);
}
.modal-header {
  padding: var(--space-5) var(--space-6);
  border-bottom: 1px solid var(--border);
  display: flex; align-items: center; justify-content: space-between;
}
.modal-header h3 { font-family: var(--font-head); color: var(--text); font-size: 1.15rem; }
.modal-close { background: none; border: none; font-size: 1.3rem; cursor: pointer; color: var(--text-muted); line-height: 1; border-radius: var(--r-sm); padding: var(--space-1); }
.modal-close:hover { background: var(--bg); color: var(--text); }
.modal-body   { padding: var(--space-6); }
.modal-footer { padding: var(--space-4) var(--space-6); border-top: 1px solid var(--border); display: flex; justify-content: flex-end; gap: var(--space-3); }

/* ─── DIVIDER ─────────────────────────────────────── */
.divider { border: none; border-top: 1px solid var(--border); margin: var(--space-6) 0; }

/* ─── TOOLTIPS ────────────────────────────────────── */
[title] { cursor: help; }

/* ─── PRINT ───────────────────────────────────────── */
@media print {
  .sidebar, .topbar, .btn, .no-print, .page-header .btn { display: none !important; }
  .main-content { margin: 0 !important; }
  body { background: #fff; }
  .card { box-shadow: none; border: 1px solid #ddd; }
}

/* ─── RESPONSIVE ──────────────────────────────────── */
@media (max-width: 1100px) {
  .stats-grid { grid-template-columns: repeat(auto-fill, minmax(200px,1fr)); }
}
@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .sidebar { width: 240px; }
  .main-content { margin-left: 240px; }
}
@media (max-width: 768px) {
  .sidebar { transform: translateX(-100%); width: 268px; }
  .sidebar.open { transform: translateX(0); box-shadow: var(--shadow-xl); }
  .main-content { margin-left: 0; }
  .hamburger { display: flex; }
  .nav-cta { display: none; }
  .nav-menu {
    display: none; flex-direction: column; position: fixed; top: 72px; left: 0; right: 0; bottom: 0;
    background: rgba(7,24,46,.98); backdrop-filter: blur(12px); padding: var(--space-5); gap: var(--space-1);
    border-bottom: 1px solid rgba(255,255,255,.08); overflow-y: auto;
  }
  .nav-menu.open { display: flex; animation: navFadeIn .25s var(--ease); }
  .nav-menu a { padding: 13px 16px; font-size: 1rem; }
  .nav-mobile-auth { display: flex; flex-direction: column; gap: var(--space-3); margin-top: var(--space-4); padding-top: var(--space-5); border-top: 1px solid rgba(255,255,255,.12); }
  .nav-mobile-auth .btn { width: 100%; }
  .nav-logo-text { font-size: 1rem; }
  body.nav-open { overflow: hidden; }
  .form-row-2, .form-row-3 { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: var(--space-8); }
  .hero-stats { gap: var(--space-5); }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .services-grid, .gallery-grid, .reviews-grid { grid-template-columns: 1fr; }
  .page-content { padding: var(--space-5); }
  .topbar { padding: 0 var(--space-4); }
  .split-section { grid-template-columns: 1fr !important; text-align: center; }
  .split-section .btn { margin-left: auto; margin-right: auto; }
  .value-grid, .mini-stats-grid, .price-grid { grid-template-columns: 1fr 1fr !important; }
  .page-hero h1 { font-size: 1.9rem; }
  .contact-info-item { text-align: left; }
}
@keyframes navFadeIn { from { opacity: 0; } to { opacity: 1; } }
@media (max-width: 560px) {
  .stats-grid { grid-template-columns: 1fr; }
  .hero { padding: 70px 0 60px; }
  .table td, .table th { padding: 10px 12px; }
  .stat-value { font-size: 1.65rem; }
  .value-grid, .mini-stats-grid, .price-grid { grid-template-columns: 1fr !important; }
  .nav-logo-text span { display: none; }
  .page-hero { padding: 44px 0 !important; }
  .page-hero h1 { font-size: 1.65rem; }
  .gallery-compare { grid-template-columns: 1fr; }
  .gallery-compare img { height: 200px; }
}

/* ═══════════════════════════════════════════════════
   ADMIN / VERWALTUNGS-DESIGN – ERWEITERUNGEN
   ═══════════════════════════════════════════════════ */

/* ─── Sidebar: Admin-spezifisch ────────────────────── */
.sidebar .sidebar-logo {
  background: rgba(255,255,255,.03);
}
.sidebar-badge {
  margin-left: auto;
  background: var(--danger);
  color: #fff;
  font-size: .65rem;
  font-weight: 700;
  padding: 2px 7px;
  border-radius: var(--r-full);
  letter-spacing: .03em;
  line-height: 1.6;
  flex-shrink: 0;
}
.sidebar-badge.accent { background: var(--accent-dark); }
.sidebar-badge.info   { background: var(--info); }

/* ─── Topbar Verwaltung ─────────────────────────────── */
.topbar-meta {
  display: flex;
  align-items: center;
  gap: var(--space-4);
  font-size: .82rem;
  color: var(--text-muted);
}
.topbar-meta strong { color: var(--text); }

.topbar-notif {
  position: relative;
  cursor: pointer;
}
.topbar-notif .notif-dot {
  position: absolute;
  top: -3px;
  right: -3px;
  width: 9px;
  height: 9px;
  background: var(--danger);
  border-radius: 50%;
  border: 2px solid var(--surface);
}

/* ─── Verwaltungs-Sektionsheader ───────────────────── */
.admin-section-head {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  padding: var(--space-4) var(--space-6);
  margin-bottom: var(--space-5);
  background: linear-gradient(90deg, #dbeafe, #eff6ff);
  border-left: 4px solid var(--primary-light);
  border-radius: 0 var(--r-md) var(--r-md) 0;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1rem;
  color: var(--primary);
}
.admin-section-head i { font-size: 1.1rem; color: var(--primary-light); }

/* ─── Dashboard-Kacheln (Action-Cards) ─────────────── */
.action-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: var(--space-4);
}
.action-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: var(--space-5);
  text-align: center;
  text-decoration: none;
  color: var(--text);
  transition: all var(--t-base) var(--ease);
  cursor: pointer;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-2);
}
.action-card:hover {
  background: var(--primary);
  color: #fff;
  transform: translateY(-4px);
  box-shadow: var(--shadow-primary);
  border-color: var(--primary);
}
.action-card i {
  font-size: 1.6rem;
  margin-bottom: var(--space-1);
  transition: transform var(--t-base);
}
.action-card:hover i { transform: scale(1.15); color: var(--accent); }
.action-card span { font-size: .85rem; font-weight: 600; }

/* ─── Datentabellen: Admin-Stil ─────────────────────── */
.admin-table thead th {
  background: linear-gradient(135deg, var(--primary), var(--primary-mid));
  font-size: .78rem;
  padding: 12px 16px;
}
.admin-table tbody tr:nth-child(even) td {
  background: #f8faff;
}
.admin-table td {
  padding: 13px 16px;
  font-size: .88rem;
}

/* ─── Status-Ampel ─────────────────────────────────── */
.status-dot {
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  margin-right: 6px;
  vertical-align: middle;
}
.status-dot.green  { background: var(--success); box-shadow: 0 0 0 2px rgba(5,150,105,.2); }
.status-dot.orange { background: var(--warning); box-shadow: 0 0 0 2px rgba(234,88,12,.2); }
.status-dot.red    { background: var(--danger);  box-shadow: 0 0 0 2px rgba(220,38,38,.2); }
.status-dot.blue   { background: var(--info);    box-shadow: 0 0 0 2px rgba(2,132,199,.2); }
.status-dot.gray   { background: var(--text-faint); }

/* ─── KPI-Vergleichslinie ──────────────────────────── */
.kpi-trend {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: .75rem;
  font-weight: 600;
  margin-top: var(--space-1);
}
.kpi-trend.up   { color: var(--success); }
.kpi-trend.down { color: var(--danger); }
.kpi-trend.flat { color: var(--text-faint); }

/* ─── Inline-Info-Box ──────────────────────────────── */
.info-box {
  display: flex;
  gap: var(--space-4);
  align-items: flex-start;
  padding: var(--space-4) var(--space-5);
  border-radius: var(--r-lg);
  border: 1px solid;
  margin-bottom: var(--space-4);
  font-size: .9rem;
}
.info-box.info    { background: var(--info-light);    border-color: #bae6fd; color: #075985; }
.info-box.warning { background: var(--warning-light); border-color: #fed7aa; color: #9a3412; }
.info-box.success { background: var(--success-light); border-color: #a7f3d0; color: #065f46; }
.info-box.danger  { background: var(--danger-light);  border-color: #fca5a5; color: #991b1b; }
.info-box i { font-size: 1.1rem; margin-top: 2px; flex-shrink: 0; }

/* ─── Timeline (für Auftrags-Status) ──────────────── */
.timeline { padding: var(--space-2) 0; }
.timeline-item {
  display: flex;
  gap: var(--space-4);
  padding-bottom: var(--space-5);
  position: relative;
}
.timeline-item::before {
  content: '';
  position: absolute;
  left: 15px;
  top: 32px;
  bottom: 0;
  width: 2px;
  background: var(--border);
}
.timeline-item:last-child::before { display: none; }
.timeline-dot {
  width: 32px; height: 32px;
  border-radius: 50%;
  background: var(--primary);
  display: flex; align-items: center; justify-content: center;
  color: #fff;
  font-size: .8rem;
  flex-shrink: 0;
  position: relative;
  z-index: 1;
  box-shadow: 0 0 0 3px var(--bg);
}
.timeline-dot.done    { background: var(--success); }
.timeline-dot.active  { background: var(--accent); box-shadow: 0 0 0 3px var(--accent-glow); }
.timeline-dot.pending { background: var(--border-strong); color: var(--text-muted); }
.timeline-content { flex: 1; padding-top: 5px; }
.timeline-content strong { font-size: .9rem; color: var(--text); }
.timeline-content span   { font-size: .8rem; color: var(--text-muted); display: block; }

/* ─── Verwaltungs-Headerleiste oben in Sektion ─────── */
.section-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: var(--space-5);
  flex-wrap: wrap;
  gap: var(--space-3);
}
.section-toolbar h3 {
  font-size: 1rem;
  color: var(--text);
}
.toolbar-filters {
  display: flex;
  gap: var(--space-2);
  flex-wrap: wrap;
}

/* ─── Tabellen-Striping Verwaltung ─────────────────── */
.table-admin table th {
  background: var(--primary);
  color: #fff;
  font-size: .78rem;
  padding: 12px 16px;
  letter-spacing: .06em;
  text-transform: uppercase;
  font-weight: 700;
}
.table-admin table td {
  padding: 14px 16px;
  border-bottom: 1px solid var(--border);
  font-size: .875rem;
  color: var(--text-mid);
  vertical-align: middle;
}
.table-admin table tr:last-child td { border-bottom: none; }
.table-admin table tr:hover td { background: #f8faff; }

/* ─── Personen-Avatar Tabelle ──────────────────────── */
.person-cell {
  display: flex;
  align-items: center;
  gap: var(--space-3);
}
.person-avatar-sm {
  width: 34px; height: 34px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary-mid), var(--primary-light));
  color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-weight: 700;
  font-size: .85rem;
  flex-shrink: 0;
}
.person-name  { font-weight: 600; font-size: .88rem; color: var(--text); }
.person-email { font-size: .78rem; color: var(--text-muted); }

/* ─── Suchfeld Verwaltung ──────────────────────────── */
.search-bar {
  display: flex;
  gap: var(--space-2);
  align-items: center;
}
.search-bar .form-control {
  min-width: 260px;
}

/* ─── Leere Zustände (Admin) ────────────────────────── */
.admin-empty {
  text-align: center;
  padding: var(--space-12) var(--space-6);
}
.admin-empty .empty-icon {
  width: 72px; height: 72px;
  background: var(--surface-2);
  border: 2px dashed var(--border-strong);
  border-radius: var(--r-xl);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.8rem;
  margin: 0 auto var(--space-4);
  color: var(--text-faint);
}
.admin-empty h3 { color: var(--text-mid); margin-bottom: var(--space-2); }
.admin-empty p  { color: var(--text-muted); font-size: .9rem; margin-bottom: var(--space-4); }

/* ─── Sidenav Trennlinie ────────────────────────────── */
.sidebar-divider {
  height: 1px;
  background: rgba(255,255,255,.06);
  margin: var(--space-2) var(--space-4);
}

/* ─── Formulare Verwaltung: Sektion-Boxen ──────────── */
.form-section {
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: var(--space-5) var(--space-6);
  margin-bottom: var(--space-5);
}
.form-section-title {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  font-family: var(--font-head);
  font-weight: 700;
  font-size: .95rem;
  color: var(--text);
  margin-bottom: var(--space-4);
  padding-bottom: var(--space-3);
  border-bottom: 1px solid var(--border);
}
.form-section-title i { color: var(--primary-light); }

/* ─── Highlight-Zahl (Dashboard) ───────────────────── */
.highlight-number {
  font-family: var(--font-head);
  font-size: 3rem;
  font-weight: 800;
  line-height: 1;
  letter-spacing: -.05em;
  color: var(--primary);
}
.highlight-number.accent { color: var(--accent-dark); }
.highlight-number.green  { color: var(--success); }
.highlight-number.red    { color: var(--danger); }

/* ─── Print-Hilfsklassen ────────────────────────────── */
@media print {
  .admin-section-head,
  .sidebar-badge,
  .topbar-notif,
  .action-grid { display: none !important; }
}

/* ═══════════════════════════════════════════════════
   ÖFFENTLICHE WEBSITE – REDESIGN-KOMPONENTEN
   ═══════════════════════════════════════════════════ */

/* ─── Seiten-Hero (Unterseiten) ────────────────────── */
.page-hero {
  position: relative;
  background: #0f2439;
  padding: 64px 0;
  color: #fff;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 100% at 85% 0%, rgba(37,99,168,.4) 0%, transparent 60%),
    radial-gradient(ellipse 50% 70% at 0% 100%, rgba(245,158,11,.14) 0%, transparent 55%);
}
.page-hero .container { position: relative; z-index: 2; }
.page-hero-eyebrow {
  display: inline-flex; align-items: center; gap: 6px;
  color: var(--accent); font-size: .8rem; font-weight: 700;
  letter-spacing: .08em; text-transform: uppercase; margin-bottom: var(--space-3);
}
.page-hero h1 { font-size: clamp(1.9rem,4.5vw,2.7rem); color: #fff; }
.page-hero h1 span { color: var(--accent); }
.page-hero p { opacity: .82; max-width: 600px; margin-top: var(--space-3); font-size: 1.05rem; line-height: 1.7; }

/* ─── Split-Section (Bild/Text 2-spaltig, responsiv) ─── */
.split-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-10);
  align-items: center;
}
.split-section.reverse > *:first-child { order: 2; }
.split-media {
  background: linear-gradient(135deg, var(--surface-2), #eef2f7);
  border-radius: var(--r-xl);
  padding: var(--space-10);
  font-size: 5rem;
  text-align: center;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
}
.split-kicker {
  display: inline-block; background: var(--accent); color: #fff;
  padding: 6px 16px; border-radius: var(--r-full); font-size: .8rem;
  font-weight: 700; margin-bottom: var(--space-4);
}
.split-kicker.alt { background: var(--primary); }
.feature-list { color: var(--text); line-height: 2.1; margin-top: var(--space-4); }
.feature-list li { display: flex; align-items: flex-start; gap: 10px; }
.feature-list li i { color: var(--success); margin-top: 6px; flex-shrink: 0; }

/* ─── Mini-Stat-Kacheln (z.B. Über uns) ────────────── */
.mini-stats-grid { display: grid; grid-template-columns: 1fr 1fr; gap: var(--space-4); }
.mini-stat-card {
  background: var(--surface); border-radius: var(--r-lg); padding: var(--space-6) var(--space-4);
  text-align: center; box-shadow: var(--shadow-sm); border: 1px solid var(--border);
  transition: transform var(--t-base) var(--ease), box-shadow var(--t-base) var(--ease);
}
.mini-stat-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.mini-stat-card strong { display: block; font-family: var(--font-head); font-size: 2rem; font-weight: 800; color: var(--accent-dark); letter-spacing: -.03em; }
.mini-stat-card span { color: var(--text-muted); font-size: .85rem; }

/* ─── Werte-/Icon-Karten (Value cards) ─────────────── */
.value-grid { display: grid; grid-template-columns: repeat(auto-fit,minmax(220px,1fr)); gap: var(--space-6); }
.value-card {
  background: var(--surface); border-radius: var(--r-xl); padding: var(--space-8) var(--space-6);
  text-align: center; box-shadow: var(--shadow-sm); border: 1px solid var(--border);
  transition: all var(--t-base) var(--ease);
}
.value-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: rgba(245,158,11,.35); }
.value-card .value-icon { font-size: 2.3rem; margin-bottom: var(--space-4); }
.value-card h3 { color: var(--primary); margin-bottom: var(--space-2); font-size: 1.05rem; }
.value-card p { color: var(--text-muted); font-size: .9rem; line-height: 1.65; }

/* ─── Prozess-Schritte (So einfach geht's) ─────────── */
.steps-grid { display: grid; grid-template-columns: repeat(auto-fit,minmax(220px,1fr)); gap: var(--space-6); }
.step-card { background: var(--surface); border-radius: var(--r-xl); padding: var(--space-8) var(--space-6); text-align: center; box-shadow: var(--shadow-sm); border: 1px solid var(--border); transition: all var(--t-base) var(--ease); }
.step-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.step-num {
  width: 56px; height: 56px; background: linear-gradient(135deg, var(--primary-mid), var(--primary));
  color: #fff; border-radius: 50%; font-family: var(--font-head); font-weight: 800; font-size: 1.4rem;
  display: flex; align-items: center; justify-content: center; margin: 0 auto var(--space-4);
  box-shadow: var(--shadow-primary);
}
.step-card h3 { margin-bottom: var(--space-2); font-size: 1rem; color: var(--text); }
.step-card p { color: var(--text-muted); font-size: .9rem; line-height: 1.6; }

/* ─── Leistungen-Block (Detailansicht je Service) ──── */
.service-block { margin-bottom: 56px; }
.service-block .split-media { font-size: 4.5rem; padding: var(--space-8); }
.service-tag {
  display: inline-block; padding: 5px 15px; border-radius: var(--r-full);
  font-size: .78rem; font-weight: 700; margin-bottom: var(--space-3);
  background: var(--accent); color: #fff;
}
.service-tag.alt { background: var(--primary); }
.service-block-compact { display: flex; gap: var(--space-6); align-items: flex-start; }
.service-block-compact .service-block-icon { font-size: 2.6rem; flex-shrink: 0; width: 76px; height: 76px; background: var(--surface-2); border: 1px solid var(--border); border-radius: var(--r-lg); display: flex; align-items: center; justify-content: center; }
.service-block-compact h2 { font-size: 1.35rem; margin-bottom: var(--space-2); color: var(--primary); }
.service-block-compact p { color: var(--text-muted); margin-bottom: var(--space-3); }
@media (max-width: 560px) {
  .service-block-compact { flex-direction: column; text-align: center; }
  .service-block-compact .service-block-icon { margin: 0 auto; }
}

/* ─── Preis-Karten ──────────────────────────────────── */
.price-grid { display: grid; grid-template-columns: repeat(auto-fill,minmax(260px,1fr)); gap: var(--space-6); margin-bottom: var(--space-10); }
.price-card {
  background: var(--surface); border-radius: var(--r-xl); border-top: 4px solid var(--accent);
  border: 1px solid var(--border); border-top: 4px solid var(--accent); box-shadow: var(--shadow-sm);
  padding: var(--space-6); transition: all var(--t-base) var(--ease);
}
.price-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }
.price-card .price-icon { font-size: 2rem; margin-bottom: var(--space-3); }
.price-card h3 { font-size: 1rem; color: var(--primary); margin-bottom: var(--space-2); }
.price-card .price-value { font-family: var(--font-head); font-size: 1.8rem; color: var(--accent-dark); font-weight: 800; margin-bottom: var(--space-2); }
.price-card p { color: var(--text-muted); font-size: .88rem; line-height: 1.5; }

/* ─── Rechts-Konformitätstexte (Impressum/Datenschutz) ─ */
.legal-content { line-height: 1.9; color: var(--text-mid); }
.legal-content h2 { color: var(--primary); margin-bottom: var(--space-4); font-size: 1.3rem; }
.legal-content h3 { color: var(--primary); margin: var(--space-6) 0 var(--space-2); font-size: 1.05rem; }
.legal-content p { margin-bottom: var(--space-3); }
.legal-content ul { padding-left: var(--space-5); list-style: disc; line-height: 2.1; margin-bottom: var(--space-3); }
.legal-content a { font-weight: 600; }

/* ─── Auth-Seiten (Login/Registrierung) ────────────── */
.auth-section { min-height: 78vh; display: flex; align-items: center; padding: 56px 0; background: var(--bg); }
.auth-card-header { text-align: center; padding: var(--space-6) var(--space-6) var(--space-2); }
.auth-card-header h2 { font-size: 1.4rem; color: var(--primary); }
.auth-card-header p { color: var(--text-muted); font-weight: 400; font-size: .9rem; margin-top: var(--space-1); }
.auth-check { display: flex; align-items: flex-start; gap: 10px; font-size: .88rem; color: var(--text-mid); }
.auth-check input { margin-top: 4px; accent-color: var(--accent); }

/* ─── Kontakt-Info-Karte (Hinweisbox) ──────────────── */
.contact-highlight { background: var(--surface-2); border: 1px solid var(--border); border-radius: var(--r-lg); padding: var(--space-6); margin-top: var(--space-6); }
.contact-highlight h4 { color: var(--primary); margin-bottom: var(--space-2); font-size: 1rem; }
.contact-highlight p { color: var(--text-muted); font-size: .9rem; }

/* ─── CTA-Bänder (Sektionen mit farbigem Hintergrund) ─ */
.cta-band { padding: 64px 0; text-align: center; }
.cta-band.primary { background: linear-gradient(135deg, var(--primary), var(--primary-mid)); }
.cta-band.accent  { background: linear-gradient(135deg, var(--accent), var(--accent-dark)); }
.cta-band h2 { color: #fff; margin-bottom: var(--space-3); font-size: clamp(1.4rem,3vw,2rem); }
.cta-band p { color: rgba(255,255,255,.85); margin-bottom: var(--space-6); font-size: 1.02rem; max-width: 560px; margin-left: auto; margin-right: auto; }
.cta-band-actions { display: flex; gap: var(--space-4); justify-content: center; flex-wrap: wrap; }
.cta-band .btn-white { background: #fff; color: var(--primary); }
.cta-band .btn-white:hover { transform: translateY(-2px); box-shadow: var(--shadow-lg); color: var(--primary); }

/* ─── USP-Leiste ─────────────────────────────────────── */
.usp-strip { background: var(--accent); padding: 18px 0; }
.usp-strip .container { display: flex; gap: 28px; flex-wrap: wrap; justify-content: center; }
.usp-strip span { display: flex; align-items: center; gap: 8px; font-weight: 600; color: #fff; font-size: .92rem; }

/* ─── Floating Call Button (Mobile) ─────────────────── */
.mobile-call-fab {
  display: none;
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 900;
  width: 56px; height: 56px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), var(--accent-dark));
  color: #fff;
  align-items: center;
  justify-content: center;
  font-size: 1.35rem;
  box-shadow: var(--shadow-accent);
  animation: fabPulse 2.4s infinite;
}
@keyframes fabPulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(245,158,11,.45), var(--shadow-accent); }
  50% { box-shadow: 0 0 0 10px rgba(245,158,11,0), var(--shadow-accent); }
}
@media (max-width: 768px) {
  .mobile-call-fab { display: flex; }
}

/* ─── Reveal-Animation Erweiterung ──────────────────── */
.pre-reveal { opacity: 0; transform: translateY(24px); }
.pre-reveal.in-view {
  opacity: 1; transform: translateY(0);
  transition: opacity .55s ease, transform .55s ease;
}
@media (prefers-reduced-motion: reduce) {
  .pre-reveal { opacity: 1 !important; transform: none !important; }
}
