/* =============================================
   WENZEL & CO AUTOREPARATUR GMBH
   Hauptstylesheet – Helles, professionelles Design
   ============================================= */

/* Font Awesome wird per <link> in jedem HTML eingebunden */

:root {
  /* ── Hintergrundfarben ── */
  --bg-page:       #f3f6fb;   /* Seiten-Hintergrund (sehr helles Graublau) */
  --bg-white:      #ffffff;   /* Karten & Sektionen */
  --bg-alt:        #eaeff8;   /* Abwechselnde Sektionen */
  --bg-dark:       #f3f6fb;   /* Alias für bg-page (Rückwärtskompatibilität) */
  --bg-medium:     #eaeff8;   /* Alias für bg-alt */
  --bg-card:       #ffffff;   /* Karten */

  /* ── Markenfarben ── */
  --navy-dark:     #0e2244;   /* Sehr dunkles Navy (Footer, Hero-Overlay) */
  --navy:          #1a3560;   /* Navy (Akzentflächen, dunkle CTAs) */
  --blue-accent:   #1f5fcc;   /* Primärblau (Buttons, Links, Icons) */
  --blue-light:    #3476e0;   /* Hover-Blau */
  --blue-pale:     #ddeaff;   /* Sehr helles Blau (Badge-Hintergrund) */
  --gold:          #b07a1a;

  /* ── Textfarben ── */
  --text-dark:     #0e2244;   /* Überschriften */
  --text-body:     #2e4264;   /* Fließtext */
  --text-muted:    #5d7494;   /* Sekundärtext */
  --text-dim:      #8fa5bf;   /* Sehr dezenter Text */
  --text-light:    #e8edf5;   /* Weißlicher Text (nur auf dunklen Flächen) */

  /* ── UI ── */
  --border:        rgba(26, 53, 96, 0.1);
  --border-strong: rgba(26, 53, 96, 0.2);
  --shadow-sm:     0 1px 6px rgba(14, 34, 68, 0.07);
  --shadow:        0 4px 20px rgba(14, 34, 68, 0.1);
  --shadow-lg:     0 12px 40px rgba(14, 34, 68, 0.15);
  --radius:        10px;
  --radius-lg:     18px;
  --transition:    all 0.3s ease;
  --font:          'Segoe UI', 'Helvetica Neue', Arial, sans-serif;
}

/* ── Icon-Helferklassen ── */
.icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--blue-accent);
}
.icon-white { color: #fff; }
.icon-gold  { color: var(--gold); }

/* ── Reset & Base ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--font);
  background-color: var(--bg-page);
  color: var(--text-body);
  line-height: 1.7;
  overflow-x: hidden;
}

a { color: var(--blue-accent); text-decoration: none; transition: var(--transition); }
a:hover { color: var(--blue-light); }
img { max-width: 100%; height: auto; display: block; }
ul { list-style: none; }

/* ── Typography ── */
h1, h2, h3, h4 {
  font-weight: 700;
  line-height: 1.25;
  color: var(--text-dark);
}
h1 { font-size: clamp(2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.4rem); }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.5rem); }
h4 { font-size: 1.1rem; }
p  { color: var(--text-muted); line-height: 1.8; }

/* ── Layout ── */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}
section { padding: 5rem 0; }

.section-header {
  text-align: center;
  margin-bottom: 3.5rem;
}
.section-header h2  { margin-bottom: 0.75rem; }
.section-header p   { max-width: 600px; margin: 0 auto; font-size: 1.05rem; }

/* Badge */
.badge {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--blue-accent);
  background: var(--blue-pale);
  border: 1px solid rgba(31, 95, 204, 0.25);
  padding: 0.3rem 0.9rem;
  border-radius: 50px;
  margin-bottom: 1rem;
}

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.8rem 1.8rem;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  border: 2px solid transparent;
  transition: var(--transition);
  text-decoration: none;
}
.btn-primary {
  background: var(--blue-accent);
  color: #fff;
}
.btn-primary:hover {
  background: var(--blue-light);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(31, 95, 204, 0.3);
}
.btn-outline {
  background: transparent;
  color: var(--blue-accent);
  border-color: var(--blue-accent);
}
.btn-outline:hover {
  background: var(--blue-accent);
  color: #fff;
  transform: translateY(-2px);
}
/* Outline-Variante auf dunklem Hintergrund */
.btn-outline-white {
  background: transparent;
  color: #fff;
  border: 2px solid rgba(255,255,255,0.6);
}
.btn-outline-white:hover {
  background: rgba(255,255,255,0.15);
  color: #fff;
  border-color: #fff;
}

/* ── Navigation ── */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border);
  transition: var(--transition);
}
.navbar.scrolled {
  background: rgba(255, 255, 255, 0.98);
  box-shadow: var(--shadow);
}
.navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
}

/* Logo */
.nav-logo {
  display: flex;
  align-items: center;
  text-decoration: none;
}
.nav-logo-img {
  height: 72px;
  width: auto;
  display: block;
}
/* Im Footer etwas kleiner */
footer .nav-logo-img {
  height: 56px;
  background: #fff;
  border-radius: 6px;
  padding: 4px 8px;
}

/* Nav links */
.nav-links {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}
.nav-links a {
  padding: 0.5rem 1rem;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-muted);
  border-radius: var(--radius);
  transition: var(--transition);
}
.nav-links a:hover,
.nav-links a.active {
  color: var(--text-dark);
  background: var(--bg-alt);
}
.nav-links a.active { color: var(--blue-accent); }
.nav-cta {
  background: var(--blue-accent) !important;
  color: #fff !important;
  font-weight: 600 !important;
}
.nav-cta:hover {
  background: var(--blue-light) !important;
  color: #fff !important;
}

.nav-hamburger {
  display: none; flex-direction: column;
  gap: 5px; cursor: pointer; padding: 0.3rem;
}
.nav-hamburger span {
  display: block; width: 26px; height: 2px;
  background: var(--text-dark); border-radius: 2px;
  transition: var(--transition);
}

/* ── Hero (bleibt dunkel – Foto mit Overlay) ── */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding-top: 70px;
}
.hero-bg {
  position: absolute; inset: 0;
  background:
    linear-gradient(135deg,
      rgba(10, 22, 46, 0.93) 0%,
      rgba(20, 48, 90, 0.80) 55%,
      rgba(10, 22, 46, 0.90) 100%),
    url('wenzellll.jpg')
    center/cover no-repeat;
}
.hero-bg::after {
  content: '';
  position: absolute; bottom: 0; left: 0; right: 0;
  height: 120px;
  background: linear-gradient(transparent, var(--bg-page));
}
.hero .container {
  position: relative; z-index: 1;
  padding-top: 4rem; padding-bottom: 6rem;
}
.hero-content { max-width: 680px; }

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8rem; font-weight: 600;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: #f0c96a;
  border: 1px solid rgba(240, 201, 106, 0.4);
  background: rgba(240, 201, 106, 0.1);
  padding: 0.35rem 1rem; border-radius: 50px;
  margin-bottom: 1.5rem;
}
.hero h1 { margin-bottom: 1.25rem; color: #fff; }
.hero h1 span { color: #6ba8f7; }
.hero-sub {
  font-size: 1.1rem;
  color: rgba(230, 238, 255, 0.82);
  margin-bottom: 2.5rem;
  max-width: 550px;
}
.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; }
.hero-stats {
  display: flex; gap: 2.5rem;
  margin-top: 4rem; flex-wrap: wrap;
}
.hero-stat { display: flex; flex-direction: column; }
.hero-stat strong {
  font-size: 2rem; font-weight: 800;
  color: #6ba8f7; line-height: 1;
}
.hero-stat span {
  font-size: 0.8rem; color: rgba(230, 238, 255, 0.65);
  margin-top: 0.25rem; text-transform: uppercase; letter-spacing: 0.08em;
}

/* ── USP Strip ── */
.usp-strip {
  background: var(--bg-white);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 2rem 0;
  box-shadow: var(--shadow-sm);
}
.usp-strip .container {
  display: flex;
  justify-content: space-around;
  align-items: center;
  gap: 1rem; flex-wrap: wrap;
}
.usp-item {
  display: flex; align-items: center;
  gap: 0.75rem; padding: 0.5rem 1rem;
}
.usp-icon {
  width: 44px; height: 44px;
  border-radius: 10px;
  background: var(--blue-pale);
  display: flex; align-items: center; justify-content: center;
  color: var(--blue-accent);
  font-size: 1.1rem;
  flex-shrink: 0;
}
.usp-text strong { display: block; font-size: 0.9rem; color: var(--text-dark); }
.usp-text span   { font-size: 0.78rem; color: var(--text-muted); }

/* ── Service Cards ── */
.services-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1rem;
}
@media (max-width: 1100px) {
  .services-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 700px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
}
.service-card {
  background: var(--bg-white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.25rem;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}
.service-card::before {
  content: '';
  position: absolute; top: 0; left: 0;
  width: 100%; height: 3px;
  background: linear-gradient(90deg, var(--blue-accent), var(--blue-light));
  transform: scaleX(0); transform-origin: left;
  transition: var(--transition);
}
.service-card:hover {
  transform: translateY(-6px);
  border-color: rgba(31, 95, 204, 0.3);
  box-shadow: var(--shadow);
}
.service-card:hover::before { transform: scaleX(1); }

.service-icon {
  width: 54px; height: 54px;
  border-radius: 12px;
  background: var(--blue-pale);
  display: flex; align-items: center; justify-content: center;
  color: var(--blue-accent);
  margin-bottom: 1.25rem;
}
.service-card h3 { font-size: 1.2rem; margin-bottom: 0.75rem; }
.service-card p  { font-size: 0.9rem; line-height: 1.7; }
.service-card .card-link {
  display: inline-flex; align-items: center; gap: 0.4rem;
  margin-top: 1.25rem; font-size: 0.85rem;
  font-weight: 600; color: var(--blue-accent);
}
.service-card .card-link:hover { gap: 0.7rem; color: var(--blue-light); }

/* ── Why Us Cards ── */
.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.25rem;
}
.why-card {
  background: var(--bg-white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.75rem;
  text-align: center;
  transition: var(--transition);
  box-shadow: var(--shadow-sm);
}
.why-card:hover {
  transform: translateY(-4px);
  border-color: rgba(31, 95, 204, 0.25);
  box-shadow: var(--shadow);
}
.why-icon {
  width: 56px; height: 56px;
  border-radius: 14px;
  background: var(--blue-pale);
  display: flex; align-items: center; justify-content: center;
  color: var(--blue-accent);
  margin: 0 auto 1rem;
}
.why-card h4 { margin-bottom: 0.5rem; }
.why-card p  { font-size: 0.85rem; }

/* ── CTA Banner (dunkel für Kontrast) ── */
.cta-banner {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-dark) 100%);
  padding: 4.5rem 0;
  text-align: center;
}
.cta-banner h2 { color: #fff; margin-bottom: 1rem; }
.cta-banner p  {
  color: rgba(220, 232, 255, 0.8);
  margin-bottom: 2rem; font-size: 1.05rem;
  max-width: 500px; margin-left: auto; margin-right: auto;
}
.cta-banner .btn-group { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* ── Page Header (innere Seiten, dunkel) ── */
.page-header {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-dark) 100%);
  padding: 7rem 0 3.5rem;
  text-align: center;
}
.page-header .badge {
  color: #6ba8f7;
  background: rgba(107, 168, 247, 0.12);
  border-color: rgba(107, 168, 247, 0.3);
  margin-bottom: 0.75rem;
}
.page-header h1 { color: #fff; margin-bottom: 0.75rem; text-shadow: 0 2px 8px rgba(0,0,0,0.6); }
.page-header p  { color: #fff; max-width: 580px; margin: 0 auto; font-size: 1.05rem; text-shadow: 0 1px 6px rgba(0,0,0,0.5); }
.page-header .badge { color: #fff; background: rgba(255,255,255,0.2); border-color: rgba(255,255,255,0.4); text-shadow: none; }
.page-header .breadcrumb a, .page-header .breadcrumb span { color: rgba(255,255,255,0.9) !important; text-shadow: 0 1px 4px rgba(0,0,0,0.5); }

/* Breadcrumb */
.breadcrumb {
  display: flex; align-items: center; gap: 0.5rem;
  font-size: 0.82rem; color: rgba(200,218,255,0.6);
  margin-top: 0.75rem; justify-content: center;
}
.breadcrumb a { color: rgba(200,218,255,0.6); }
.breadcrumb a:hover { color: #fff; }
.breadcrumb .sep { color: rgba(200,218,255,0.3); }
.breadcrumb .current { color: #6ba8f7; }

/* ── Leistungs-Detailblöcke ── */
.leistung-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  margin-bottom: 5rem;
}
.leistung-block.reverse { direction: rtl; }
.leistung-block.reverse > * { direction: ltr; }

.leistung-img {
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4/3;
  background: var(--bg-alt);
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}
.leistung-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.leistung-img:hover img { transform: scale(1.04); }

.leistung-content h3  { font-size: 1.6rem; margin-bottom: 1rem; }
.leistung-content p   { margin-bottom: 1.25rem; }

.leistung-list { display: flex; flex-direction: column; gap: 0.5rem; margin: 1.25rem 0; }
.leistung-list li {
  display: flex; align-items: center; gap: 0.6rem;
  font-size: 0.9rem; color: var(--text-muted);
}
.leistung-list li::before {
  content: '';
  display: inline-block;
  width: 16px; height: 16px; flex-shrink: 0;
  border-radius: 50%;
  background: var(--blue-pale);
  border: 2px solid var(--blue-accent);
  position: relative;
}
.leistung-list li::after {
  content: '✓';
  font-size: 0.65rem; font-weight: 800;
  color: var(--blue-accent);
  position: absolute;
  margin-left: -1.35rem;
}

/* ── Team ── */
.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
}
.team-card {
  background: var(--bg-white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: var(--transition);
  text-align: center;
  box-shadow: var(--shadow-sm);
}
.team-card:hover {
  transform: translateY(-5px);
  border-color: rgba(31, 95, 204, 0.25);
  box-shadow: var(--shadow);
}
.team-avatar {
  width: 100%; aspect-ratio: 1/1;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-dark) 100%);
  display: flex; flex-direction: column;
  align-items: center; justify-content: center; gap: 0.5rem;
}
.team-avatar .avatar-initials {
  width: 72px; height: 72px; border-radius: 50%;
  background: rgba(107, 168, 247, 0.15);
  border: 2px solid rgba(107, 168, 247, 0.45);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem; font-weight: 700;
  color: #6ba8f7; letter-spacing: 0.04em;
}
.team-avatar .avatar-icon { font-size: 1rem; color: rgba(200, 218, 255, 0.4); }
.team-info { padding: 1.5rem; }
.team-info h3 { font-size: 1.1rem; margin-bottom: 0.3rem; }
.team-info .position {
  font-size: 0.82rem; color: var(--blue-accent);
  font-weight: 600; text-transform: uppercase;
  letter-spacing: 0.08em; margin-bottom: 0.75rem;
}
.team-info p { font-size: 0.85rem; }

/* ── Werte-Grid ── */
.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 1.25rem;
  margin-top: 3rem;
}
.value-card {
  background: var(--bg-white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.75rem;
  box-shadow: var(--shadow-sm);
}
.value-card .vi {
  width: 48px; height: 48px; border-radius: 10px;
  background: var(--blue-pale);
  display: flex; align-items: center; justify-content: center;
  color: var(--blue-accent); font-size: 1.1rem; margin-bottom: 1rem;
}
.value-card h4 { margin-bottom: 0.5rem; }
.value-card p  { font-size: 0.85rem; }

/* ── Kontakt ── */
.kontakt-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 3rem;
  align-items: start;
}
.kontakt-info { display: flex; flex-direction: column; gap: 1.25rem; }

.info-card {
  background: var(--bg-white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem;
  display: flex; gap: 1rem; align-items: flex-start;
  transition: var(--transition);
  box-shadow: var(--shadow-sm);
}
.info-card:hover {
  border-color: rgba(31, 95, 204, 0.25);
  box-shadow: var(--shadow);
}
.info-card h4 {
  font-size: 0.8rem; text-transform: uppercase;
  letter-spacing: 0.1em; color: var(--blue-accent); margin-bottom: 0.35rem;
}
.info-card p { font-size: 0.9rem; color: var(--text-body); }
.info-card .info-link { color: var(--blue-accent); font-size: 0.9rem; }

/* Öffnungszeiten-Tabelle */
.hours-table { width: 100%; border-collapse: collapse; }
.hours-table tr { border-bottom: 1px solid var(--border); }
.hours-table tr:last-child { border-bottom: none; }
.hours-table td { padding: 0.45rem 0; font-size: 0.88rem; color: var(--text-body); }
.hours-table td:first-child { color: var(--text-muted); }
.hours-table td:last-child { text-align: right; }
.hours-table .today td { color: var(--blue-accent); font-weight: 600; }

/* Kontaktformular */
.contact-form {
  background: var(--bg-white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: var(--shadow-sm);
}
.contact-form h3 { margin-bottom: 1.5rem; }
.form-group { display: flex; flex-direction: column; gap: 0.4rem; margin-bottom: 1.25rem; }
.form-group label {
  font-size: 0.82rem; font-weight: 600;
  color: var(--text-muted);
  text-transform: uppercase; letter-spacing: 0.08em;
}
.form-group input,
.form-group select,
.form-group textarea {
  background: var(--bg-page);
  border: 1px solid var(--border-strong);
  border-radius: var(--radius);
  padding: 0.75rem 1rem;
  color: var(--text-dark);
  font-size: 0.95rem;
  font-family: var(--font);
  transition: var(--transition);
  outline: none; width: 100%;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--blue-accent);
  box-shadow: 0 0 0 3px rgba(31, 95, 204, 0.12);
  background: #fff;
}
.form-group textarea { resize: vertical; min-height: 120px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }

/* Karten-Platzhalter */
.map-placeholder {
  background: var(--bg-white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  height: 300px;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  gap: 0.75rem;
  color: var(--text-muted);
  font-size: 0.9rem;
  margin-top: 2rem;
  box-shadow: var(--shadow-sm);
}

/* ── Highlight-Box (Leistungsseite) ── */
.highlight-box {
  background: var(--blue-pale);
  border: 1px solid rgba(31, 95, 204, 0.25);
  border-radius: var(--radius);
  padding: 1.25rem 1.5rem;
  display: flex; align-items: center; gap: 1rem;
  margin-bottom: 2rem;
}
.highlight-box .hb-icon {
  width: 48px; height: 48px; background: rgba(31, 95, 204, 0.12);
  border-radius: 10px; display: flex; align-items: center; justify-content: center;
  color: var(--blue-accent); font-size: 1.25rem; flex-shrink: 0;
}
.highlight-box strong { color: var(--navy); display: block; font-size: 0.95rem; }
.highlight-box span   { font-size: 0.85rem; color: var(--text-muted); }

/* ── Divider ── */
.divider { height: 1px; background: var(--border); margin: 3rem 0; }

/* ── Footer (dunkel für guten Abschluss) ── */
footer {
  background: var(--navy-dark);
  border-top: 3px solid var(--blue-accent);
  padding: 3.5rem 0 1.5rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr repeat(3, 1fr);
  gap: 2.5rem;
  margin-bottom: 3rem;
}
.footer-brand p { margin-top: 0.75rem; font-size: 0.88rem; color: rgba(220,232,255,0.85); max-width: 260px; }
.footer-brand .nav-logo .logo-name { color: #fff; }
.footer-brand .nav-logo .logo-sub  { color: rgba(220,232,255,0.8); }

.footer-col h5 {
  font-size: 0.78rem; text-transform: uppercase;
  letter-spacing: 0.12em; color: #6ba8f7; margin-bottom: 1rem;
}
.footer-col ul li { margin-bottom: 0.5rem; }
.footer-col ul li a { font-size: 0.88rem; color: rgba(220,232,255,0.9); }
.footer-col ul li a:hover { color: #fff; }
.footer-contact li {
  display: flex; align-items: center; gap: 0.5rem;
  font-size: 0.88rem; color: rgba(220,232,255,0.9); margin-bottom: 0.6rem;
}
.footer-contact .icon { color: #6ba8f7; }
.footer-contact .info-link { color: rgba(220,232,255,0.9); }
.footer-contact .info-link:hover { color: #fff; }

.footer-bottom {
  display: flex; align-items: center; justify-content: space-between;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(200,218,255,0.1);
  gap: 1rem; flex-wrap: wrap;
}
.footer-bottom p { font-size: 0.82rem; color: rgba(220,232,255,0.75); }
.footer-bottom .footer-legal { display: flex; gap: 1.5rem; }
.footer-bottom .footer-legal a { font-size: 0.82rem; color: rgba(220,232,255,0.75); }
.footer-bottom .footer-legal a:hover { color: #fff; }

/* ── Scrollbar ── */
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: var(--bg-alt); }
::-webkit-scrollbar-thumb { background: rgba(26, 53, 96, 0.3); border-radius: 4px; }
::-webkit-scrollbar-thumb:hover { background: var(--blue-accent); }

/* ── Responsive ── */
@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .leistung-block { grid-template-columns: 1fr; }
  .leistung-block.reverse { direction: ltr; }
  .kontakt-grid { grid-template-columns: 1fr; }
}

/* ── Mobile Navigation – Slide-in von links ── */
@media (max-width: 768px) {

  /* Overlay hinter dem Menü */
  body.nav-open::before {
    content: '';
    position: fixed;
    inset: 0;
    background: rgba(10, 22, 46, 0.55);
    z-index: 1050;
    backdrop-filter: blur(2px);
    -webkit-backdrop-filter: blur(2px);
  }

  /* Slide-in Panel */
  .nav-links {
    display: flex !important;
    position: fixed;
    top: 0; left: 0; bottom: 0;
    width: 78%; max-width: 300px;
    background: #fff;
    flex-direction: column;
    padding: 6rem 1.5rem 2rem;
    gap: 0.35rem;
    z-index: 1100;
    transform: translateX(-100%);
    transition: transform 0.32s cubic-bezier(.4,0,.2,1);
    box-shadow: 6px 0 30px rgba(10,22,46,0.18);
    overflow-y: auto;
  }
  .nav-links.open { transform: translateX(0); }

  .nav-links a {
    padding: 0.85rem 1rem;
    font-size: 1rem;
    border-radius: var(--radius);
    border-bottom: 1px solid var(--border);
  }
  .nav-links li:last-child a { border-bottom: none; }

  /* Hamburger sichtbar + X-Animation */
  .nav-hamburger { display: flex; }
  .nav-hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .nav-hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
  .nav-hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

  /* Allgemein */
  section { padding: 3rem 0; }
  .container { padding: 0 1rem; }

  /* Hero */
  .hero { min-height: 85vh; padding-top: 80px; }
  .hero .container { padding-top: 2rem; padding-bottom: 4rem; }
  .hero-sub { font-size: 0.97rem; }
  .hero-actions { flex-direction: column; gap: 0.75rem; }
  .hero-actions .btn { width: 100%; justify-content: center; }
  .hero-stats { gap: 1.5rem; margin-top: 2.5rem; }
  .hero-stat strong { font-size: 1.6rem; }

  /* Page Header */
  .page-header { padding: 6rem 0 2.5rem; }
  .page-header h1 { font-size: 1.8rem; }

  /* Section Header */
  .section-header { margin-bottom: 2rem; }
  .section-header h2 { font-size: 1.5rem; }

  /* Navbar Logo kleiner auf Mobile */
  .nav-logo-img { height: 52px; }
  .navbar .container { height: 68px; }

  /* Services Grid */
  .services-grid { grid-template-columns: repeat(2, 1fr) !important; gap: 0.75rem; }
  .service-card { padding: 1rem; }
  .service-icon { width: 42px; height: 42px; margin-bottom: 0.75rem; }
  .service-card h3 { font-size: 1rem; }

  /* Info-Zweispalter (Index) */
  .info-grid { grid-template-columns: 1fr !important; gap: 1.5rem !important; }

  /* USP Strip */
  .usp-strip .container { flex-wrap: nowrap; overflow-x: auto; justify-content: flex-start; padding-bottom: 0.5rem; }
  .usp-item { min-width: 170px; }

  /* CTA Banner */
  .cta-banner { padding: 3rem 0; }
  .cta-banner h2 { font-size: 1.5rem; }
  .cta-banner .btn-group { flex-direction: column; align-items: center; }
  .cta-banner .btn-group .btn { width: 100%; max-width: 320px; justify-content: center; }

  /* Kontakt-Formular */
  .form-row { grid-template-columns: 1fr; }
  .contact-form { padding: 1.5rem; }

  /* Highlight Box */
  .highlight-box { flex-direction: column; gap: 0.75rem; text-align: center; }

  /* Footer */
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 1.5rem; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .footer-bottom .footer-legal { justify-content: center; }
  footer .nav-logo-img { height: 44px; }

  /* Why Grid */
  .why-grid { grid-template-columns: 1fr 1fr; }

  /* Leistungen: Slideshow Tabs scrollen */
  .slider-tabs { justify-content: flex-start; }

  /* Karriere-Karten */
  .job-grid { grid-template-columns: 1fr !important; }
}

@media (max-width: 480px) {
  .footer-grid { grid-template-columns: 1fr; }
  .services-grid { grid-template-columns: 1fr !important; }
  .why-grid { grid-template-columns: 1fr; }
  .hero-stats { flex-direction: column; gap: 1rem; }

  /* Meisterbrief-Grid auf Über uns */
  .meister-grid-wrap { grid-template-columns: 1fr !important; }
}
