:root {
  --primary: #1e3a5f;
  --primary-dark: #142a47;
  --primary-light: #e8edf4;
  --accent: #2980b9;
  --accent-hover: #1f6391;
  --text: #2c3e50;
  --text-muted: #6b7280;
  --text-light: #9ca3af;
  --bg: #ffffff;
  --bg-alt: #f8f9fb;
  --border: #e5e7eb;
  --white: #ffffff;
  --shadow-sm: 0 2px 8px rgba(30, 58, 95, 0.06);
  --shadow-md: 0 8px 24px rgba(30, 58, 95, 0.10);
  --shadow-lg: 0 20px 60px rgba(30, 58, 95, 0.15);
  --radius: 8px;
  --radius-lg: 14px;
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --container: 1200px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-size: 16px;
  line-height: 1.7;
  color: var(--text);
  background: var(--bg);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--accent); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--accent-hover); }
h1, h2, h3, h4 { font-weight: 700; line-height: 1.25; color: var(--primary-dark); letter-spacing: -0.01em; }
h1 { font-size: clamp(1.8rem, 4.5vw, 2.8rem); }
h2 { font-size: clamp(1.5rem, 3.5vw, 2.2rem); }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.5rem); }
strong { color: var(--primary-dark); font-weight: 600; }

.container { width: 100%; max-width: var(--container); margin: 0 auto; padding: 0 24px; }
.section { padding: 80px 0; }
@media (max-width: 768px) { .section { padding: 50px 0; } }

/* HEADER */
.header {
  position: sticky;
  top: 0;
  background: var(--white);
  border-bottom: 1px solid var(--border);
  z-index: 100;
  transition: var(--transition);
}
.header.scrolled { box-shadow: var(--shadow-sm); }
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 0;
  gap: 24px;
}
.logo img { height: 70px; width: auto; transition: var(--transition); }
.header.scrolled .logo img { height: 56px; }

.nav-menu {
  display: flex;
  list-style: none;
  gap: 4px;
  align-items: center;
}
.nav-menu > li { position: relative; }
.nav-menu > li > a {
  display: inline-block;
  padding: 10px 16px;
  color: var(--text);
  font-weight: 500;
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  border-radius: var(--radius);
  transition: var(--transition);
}
.nav-menu > li > a:hover,
.nav-menu > li > a.active {
  background: var(--primary-light);
  color: var(--primary-dark);
}
.has-dropdown > a::after {
  content: '▾';
  margin-left: 6px;
  font-size: 0.7rem;
  opacity: 0.7;
}
.dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 260px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
  list-style: none;
  padding: 8px 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: var(--transition);
  z-index: 110;
}
.has-dropdown:hover .dropdown,
.has-dropdown.open .dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.dropdown li a {
  display: block;
  padding: 10px 18px;
  color: var(--text);
  font-size: 0.92rem;
  transition: var(--transition);
}
.dropdown li a:hover {
  background: var(--primary-light);
  color: var(--primary-dark);
}

.burger {
  display: none;
  width: 44px;
  height: 44px;
  background: transparent;
  border: none;
  cursor: pointer;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  padding: 0;
}
.burger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--primary-dark);
  border-radius: 2px;
  transition: var(--transition);
}
.burger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.burger.active span:nth-child(2) { opacity: 0; }
.burger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

@media (max-width: 900px) {
  .burger { display: flex; }
  .logo img { height: 56px; }
  .header.scrolled .logo img { height: 48px; }
  .nav-menu {
    position: fixed;
    top: 88px;
    left: 0;
    right: 0;
    max-height: calc(100vh - 88px);
    overflow-y: auto;
    flex-direction: column;
    background: var(--white);
    border-bottom: 1px solid var(--border);
    box-shadow: var(--shadow-lg);
    padding: 16px;
    gap: 4px;
    transform: translateY(-150%);
    transition: transform var(--transition);
    z-index: 99;
    align-items: stretch;
  }
  .nav-menu.open { transform: translateY(0); }
  .nav-menu > li { width: 100%; }
  .nav-menu > li > a { width: 100%; padding: 14px 18px; }
  .has-dropdown > a::after { float: right; transition: transform var(--transition); }
  .has-dropdown.open > a::after { transform: rotate(180deg); }
  .dropdown {
    position: static;
    max-height: 0;
    overflow: hidden;
    opacity: 1;
    visibility: visible;
    transform: none;
    border: none;
    box-shadow: none;
    padding: 0;
    background: var(--bg-alt);
    border-radius: var(--radius);
    transition: max-height 0.4s ease;
  }
  .has-dropdown.open .dropdown { max-height: 600px; padding: 8px 0; margin: 4px 0; }
  .dropdown li a { padding: 10px 28px; font-size: 0.9rem; }
}

/* HERO */
.hero {
  position: relative;
  width: 100%;
  min-height: 520px;
  height: 70vh;
  max-height: 720px;
  overflow: hidden;
  background: var(--primary-dark) center/cover no-repeat;
}
.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(20, 42, 71, 0.35) 0%, rgba(20, 42, 71, 0.65) 100%);
}
.hero-content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100%;
  min-height: inherit;
  text-align: center;
  padding: 60px 20px;
}
.hero-content h1 {
  color: var(--white);
  font-size: clamp(1.6rem, 4.5vw, 3rem);
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin: 0;
  text-shadow: 0 2px 20px rgba(0,0,0,0.3);
}

/* PAGE HEADER (Subpages) */
.page-header {
  position: relative;
  width: 100%;
  height: clamp(220px, 32vh, 360px);
  background: var(--primary-dark) center/cover no-repeat;
  overflow: hidden;
}
.page-header::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(20, 42, 71, 0.45) 0%, rgba(20, 42, 71, 0.7) 100%);
}
.page-header-inner {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 100%;
  text-align: center;
  padding: 0 20px;
}
.page-header-inner h1 {
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin: 0;
  text-shadow: 0 2px 10px rgba(0,0,0,0.3);
}
@media (max-width: 600px) {
  .page-header { height: clamp(180px, 28vh, 240px); background-position: center; }
}

/* HOME ICONS */
.home-icons {
  padding: 60px 0;
  background: var(--white);
}
.home-icons-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  gap: 24px;
  align-items: center;
}
.home-icons--with-video {
  grid-template-columns: 1fr 1fr 2fr 1fr 1fr;
  gap: 20px;
}
.icon-box {
  display: block;
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-lg);
  aspect-ratio: 1 / 1;
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition), box-shadow var(--transition);
}
.icon-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.icon-box:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.icon-box:hover img { transform: scale(1.06); }

.video-box {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: #000;
  aspect-ratio: 16 / 10;
  box-shadow: var(--shadow-md);
}
.video-box video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

@media (max-width: 900px) {
  .home-icons-grid,
  .home-icons--with-video {
    grid-template-columns: 1fr 1fr;
    gap: 16px;
  }
  .video-box { grid-column: 1 / -1; aspect-ratio: 16 / 9; order: 0; }
  .icon-box { aspect-ratio: 1 / 1; }
}

/* CONTENT */
.content {
  padding: 70px 0;
}
.content-inner {
  max-width: 860px;
  margin: 0 auto;
}
.content-inner p {
  color: var(--text-muted);
  margin-bottom: 18px;
  font-size: 1.02rem;
  line-height: 1.85;
}
.content-inner strong, .content-inner b { color: var(--primary-dark); font-weight: 600; }
.content-inner h2, .content-inner h3 { margin: 32px 0 16px; }
.content-inner ul {
  margin: 0 0 22px 22px;
  color: var(--text-muted);
}
.content-inner ul li { margin-bottom: 6px; line-height: 1.7; }
.content-inner em { font-style: italic; color: var(--primary-dark); }

/* LEISTUNGEN OVERVIEW GRID */
.leistungen-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 40px;
}
@media (max-width: 900px) { .leistungen-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 500px) { .leistungen-grid { grid-template-columns: 1fr; } }

.leistung-card {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 28px 22px;
  text-align: center;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  font-weight: 600;
  color: var(--primary-dark);
  font-size: 0.98rem;
  min-height: 110px;
  transition: var(--transition);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.leistung-card:hover {
  background: var(--primary);
  color: var(--white);
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
  border-color: var(--primary);
}

/* SERVICE NAV (on each leistungs-page) */
.service-nav {
  background: var(--bg-alt);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 40px 0;
}
.service-nav-title {
  text-align: center;
  color: var(--primary-dark);
  font-size: 1.2rem;
  margin-bottom: 24px;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.service-nav-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}
@media (max-width: 900px) { .service-nav-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 500px) { .service-nav-grid { grid-template-columns: 1fr; } }
.service-nav a {
  display: block;
  padding: 14px 16px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  color: var(--text);
  font-size: 0.88rem;
  font-weight: 500;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: var(--transition);
}
.service-nav a:hover,
.service-nav a.active {
  background: var(--primary);
  color: var(--white);
  border-color: var(--primary);
}

/* FOCUS PDFs */
.focus-section {
  background: var(--bg-alt);
  padding: 60px 0;
  border-top: 1px solid var(--border);
}
.focus-intro {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 36px;
  color: var(--text-muted);
}
.focus-intro p { margin-bottom: 10px; }
.focus-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 860px;
  margin: 0 auto;
}
@media (max-width: 700px) { .focus-grid { grid-template-columns: 1fr; } }
.focus-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 32px 24px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  transition: var(--transition);
  text-decoration: none;
}
.focus-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--primary);
}
.focus-card svg {
  width: 56px;
  height: 56px;
  margin-bottom: 16px;
  stroke: var(--primary);
}
.focus-card h4 {
  color: var(--primary-dark);
  font-size: 1.05rem;
  margin-bottom: 8px;
}
.focus-card p {
  color: var(--text-muted);
  font-size: 0.88rem;
  margin: 0 0 14px;
}
.focus-card .btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 16px;
  background: var(--primary);
  color: var(--white);
  border-radius: var(--radius);
  font-size: 0.85rem;
  font-weight: 600;
  transition: var(--transition);
}
.focus-card:hover .btn { background: var(--accent); }

/* CONTACT SECTION */
.contact-section {
  position: relative;
  padding: 80px 0;
  background: var(--primary-dark) center/cover no-repeat;
  color: var(--white);
}
.contact-section::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(rgba(20, 42, 71, 0.85), rgba(20, 42, 71, 0.92));
}
.contact-section .container { position: relative; z-index: 2; }
.contact-section h2 {
  text-align: center;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 50px;
  font-size: clamp(1.4rem, 3vw, 2rem);
}
.contact-info {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
  margin-bottom: 60px;
}
@media (max-width: 800px) { .contact-info { grid-template-columns: repeat(2, 1fr); gap: 24px; } }
@media (max-width: 500px) { .contact-info { grid-template-columns: 1fr; } }
.contact-info-item {
  text-align: center;
  padding: 24px 16px;
}
.contact-info-item .icon-circle {
  width: 60px;
  height: 60px;
  margin: 0 auto 16px;
  border: 2px solid var(--white);
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.contact-info-item .icon-circle svg {
  width: 26px;
  height: 26px;
  stroke: var(--white);
}
.contact-info-item h3 {
  color: var(--white);
  font-size: 1.05rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 10px;
}
.contact-info-item p {
  color: rgba(255,255,255,0.92);
  font-size: 0.94rem;
  margin: 0;
  line-height: 1.6;
}
.contact-info-item a { color: var(--white); }
.contact-info-item a:hover { color: var(--accent); }

.contact-form-wrap {
  max-width: 720px;
  margin: 0 auto;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: var(--radius-lg);
  padding: 40px;
  backdrop-filter: blur(8px);
}
@media (max-width: 600px) { .contact-form-wrap { padding: 28px 22px; } }
.contact-form-wrap h3 {
  text-align: center;
  color: var(--white);
  margin-bottom: 24px;
  font-size: 1.15rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.form-group { margin-bottom: 18px; }
.form-group label {
  display: block;
  color: var(--white);
  font-size: 0.88rem;
  font-weight: 500;
  margin-bottom: 6px;
}
.form-group input,
.form-group textarea {
  width: 100%;
  padding: 12px 14px;
  background: rgba(255,255,255,0.92);
  border: 1px solid rgba(255,255,255,0.3);
  border-radius: var(--radius);
  font-family: inherit;
  font-size: 0.95rem;
  color: var(--text);
  transition: var(--transition);
}
.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(41, 128, 185, 0.25);
}
.form-group textarea { resize: vertical; min-height: 130px; }
.form-checkbox {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  margin-bottom: 20px;
  color: rgba(255,255,255,0.92);
  font-size: 0.85rem;
  line-height: 1.55;
}
.form-checkbox input {
  width: 18px;
  height: 18px;
  margin-top: 2px;
  flex-shrink: 0;
  cursor: pointer;
}
.form-checkbox a { color: var(--white); text-decoration: underline; }
.btn-submit {
  display: inline-block;
  padding: 14px 40px;
  background: var(--accent);
  color: var(--white);
  border: none;
  border-radius: var(--radius);
  font-family: inherit;
  font-size: 1rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  cursor: pointer;
  transition: var(--transition);
  width: 100%;
}
.btn-submit:hover {
  background: var(--accent-hover);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}
.btn-submit:disabled { opacity: 0.6; cursor: not-allowed; transform: none; }
.form-status {
  margin-top: 16px;
  padding: 12px 16px;
  border-radius: var(--radius);
  text-align: center;
  font-size: 0.92rem;
  display: none;
}
.form-status.success { display: block; background: rgba(46, 204, 113, 0.2); color: #d4f5dd; border: 1px solid rgba(46, 204, 113, 0.5); }
.form-status.error { display: block; background: rgba(231, 76, 60, 0.2); color: #fcd5d0; border: 1px solid rgba(231, 76, 60, 0.5); }

/* FOOTER */
.footer {
  background: #0f1f33;
  color: rgba(255,255,255,0.7);
  padding: 22px 0;
  text-align: center;
  font-size: 0.85rem;
}
.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}
@media (max-width: 600px) { .footer-inner { flex-direction: column; gap: 8px; } }
.footer a { color: rgba(255,255,255,0.85); }
.footer a:hover { color: var(--accent); }
.footer-links a { margin: 0 6px; }

/* LEGAL PAGES */
.legal-content { max-width: 860px; margin: 0 auto; }
.legal-content h2 { color: var(--primary-dark); margin: 32px 0 14px; font-size: 1.4rem; }
.legal-content h2:first-child { margin-top: 0; }
.legal-content h3 { color: var(--primary-dark); margin: 22px 0 10px; font-size: 1.1rem; }
.legal-content p { color: var(--text-muted); line-height: 1.8; margin-bottom: 14px; }
.legal-content a { color: var(--accent); }
.legal-content ul { margin: 0 0 16px 22px; color: var(--text-muted); }
.legal-content ul li { margin-bottom: 5px; }

/* COOKIE BANNER */
.cookie-banner {
  position: fixed;
  bottom: 20px;
  left: 20px;
  right: 20px;
  max-width: 480px;
  margin: 0 auto;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 22px;
  box-shadow: var(--shadow-lg);
  z-index: 200;
  transform: translateY(150%);
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}
.cookie-banner.show { transform: translateY(0); }
.cookie-banner h4 { color: var(--primary-dark); font-size: 1rem; margin-bottom: 8px; }
.cookie-banner p { color: var(--text-muted); font-size: 0.86rem; line-height: 1.6; margin-bottom: 14px; }
.cookie-banner p a { color: var(--accent); text-decoration: underline; }
.cookie-buttons { display: flex; gap: 10px; flex-wrap: wrap; }
.cookie-buttons button {
  flex: 1;
  padding: 10px 18px;
  border-radius: var(--radius);
  border: none;
  cursor: pointer;
  font-family: inherit;
  font-size: 0.88rem;
  font-weight: 600;
  transition: var(--transition);
}
.btn-cookie-primary { background: var(--primary); color: var(--white); }
.btn-cookie-primary:hover { background: var(--accent); }
.btn-cookie-ghost { background: var(--bg-alt); color: var(--text); }
.btn-cookie-ghost:hover { background: var(--border); }

/* LIGHTBOX (for PDF preview cards / icons) */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(20, 42, 71, 0.92);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
  padding: 20px;
}
.lightbox.open { opacity: 1; visibility: visible; }
.lightbox-content {
  width: min(96vw, 900px);
  height: min(92vh, 1100px);
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 30px 80px rgba(0,0,0,0.5);
  position: relative;
}
.lightbox-content iframe { width: 100%; height: 100%; border: 0; }
.lightbox-close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 44px;
  height: 44px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
  transition: var(--transition);
}
.lightbox-close:hover { background: var(--primary); color: var(--white); transform: rotate(90deg); }
.lightbox-close svg { width: 20px; height: 20px; stroke: currentColor; }

/* ============================================
   PATCH 2026-06-04 — Layout-Korrekturen
   ============================================ */

/* Hero schmaler (Startseite) */
.hero {
  min-height: 360px;
  height: 38vh;
  max-height: 500px;
}

/* Page-Header höher (Unterseiten – gleich wie Hero) */
.page-header {
  height: clamp(360px, 38vh, 500px);
}

/* Home Icons: 2 links + Video Mitte + 2 rechts (Desktop) */
@media (min-width: 901px) {
  .home-icons-grid.home-icons-grid--with-video {
    grid-template-columns: 1fr 2.2fr 1fr;
    grid-template-rows: 1fr 1fr;
    gap: 18px;
  }
  .home-icons-grid--with-video .icon-box {
    aspect-ratio: auto;
    height: 300px;
  }
  .home-icons-grid--with-video .video-box {
    aspect-ratio: auto;
    height: 100%;
  }
  .home-icons-grid--with-video .icon-box:nth-child(1) { grid-column: 1; grid-row: 1; }
  .home-icons-grid--with-video .icon-box:nth-child(2) { grid-column: 1; grid-row: 2; }
  .home-icons-grid--with-video .video-box        { grid-column: 2; grid-row: 1 / span 2; }
  .home-icons-grid--with-video .icon-box:nth-child(4) { grid-column: 3; grid-row: 1; }
  .home-icons-grid--with-video .icon-box:nth-child(5) { grid-column: 3; grid-row: 2; }
}
	  
/* Bessere Wortumbrüche bei langen Wörtern */
.page-header-inner h1 {
  hyphens: auto;
  -webkit-hyphens: auto;
  overflow-wrap: break-word;
  word-break: break-word;
  max-width: 100%;
  padding: 0 12px;
}

/* Lange Einzelwörter: deutlich kleiner auf allen Bildschirmgrößen */
.page-header-inner .h1-long {
  font-size: clamp(0.95rem, 3.5vw, 1.8rem);
  letter-spacing: 1px;
  line-height: 1.2;
}

@media (max-width: 480px) {
  .page-header-inner .h1-long {
    font-size: clamp(0.85rem, 4.2vw, 1.2rem);
    letter-spacing: 0.5px;
  }
}
	  
	  /* 6er-Grid: 3 Spalten × 2 Reihen (Desktop), 2 Spalten (Tablet), 1 Spalte (Mobile) */
.leistungen-grid--6 { grid-template-columns: repeat(3, 1fr); }
@media (max-width: 900px) { .leistungen-grid--6 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 500px) { .leistungen-grid--6 { grid-template-columns: 1fr; } }

/* Service-Nav unten bei den Unterseiten: 6 Items → 3×2 */
.service-nav-grid { grid-template-columns: repeat(3, 1fr); }
@media (max-width: 900px) { .service-nav-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 500px) { .service-nav-grid { grid-template-columns: 1fr; } }
