:root {
  --color-bg: #f4f5f6;
  --color-bg-alt: #e5e9eb;
  --color-petrol-dark: #3c4145;
  --color-petrol: #526d87;
  --color-petrol-light: #7893ab;
  --color-accent: #526d87;
  --color-accent-light: #8fa6ba;
  --color-text: #23282b;
  --color-text-soft: #5c6569;
  --color-modal-bg: #eef1f3;
  --font-heading: 'Century Gothic', 'Trebuchet MS', 'Segoe UI', Arial, sans-serif;
  --font-body: 'Segoe UI', Arial, Helvetica, sans-serif;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

/* Visually hidden but readable by screen readers & search engines */
.sr-only {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  clip-path: inset(50%) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--color-text);
  background: var(--color-bg);
  font-weight: 400;
  line-height: 1.6;
}

img { max-width: 100%; display: block; }

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 32px;
}

h1, h2, h3 {
  font-family: var(--font-heading);
  color: var(--color-petrol-dark);
  font-weight: 600;
  letter-spacing: 0.2px;
  margin: 0 0 16px;
}

h1 { font-size: 3rem; line-height: 1.15; }
h2 { font-size: 2.3rem; line-height: 1.2; }
h3 { font-size: 1.3rem; }

.eyebrow {
  color: var(--color-accent);
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 0.8rem;
  font-weight: 700;
  margin-bottom: 12px;
}
.eyebrow.center { text-align: center; }

.divider {
  color: var(--color-accent);
  font-size: 1.2rem;
  margin: 8px auto 20px;
  border-top: 2px solid var(--color-accent);
  width: 60px;
  padding-top: 0;
}
.divider.center { margin-left: auto; margin-right: auto; }

.lead { font-size: 1.15rem; color: var(--color-petrol-dark); font-weight: 600; }
.sub { color: var(--color-text-soft); }
.body-text { color: var(--color-text-soft); max-width: 480px; }
.body-text.center { max-width: 620px; margin-left: auto; margin-right: auto; }
.accent-line {
  color: var(--color-accent);
  font-weight: 700;
  font-style: italic;
  font-size: 1.15rem;
  margin: 4px 0 20px;
}
.accent-line.center { text-align: center; }

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 26px;
  border-radius: 999px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease, opacity 0.15s ease;
}
.btn:hover { transform: translateY(-2px); box-shadow: 0 6px 16px rgba(20, 41, 58, 0.18); }

.btn-dark { background: var(--color-petrol-dark); color: #fff; }
.btn-outline {
  background: transparent;
  border: 1.5px solid var(--color-accent);
  color: var(--color-petrol-dark);
}
.btn-accent { background: var(--color-accent); color: #fff; }

.link-btn {
  background: none;
  border: none;
  color: var(--color-accent);
  font-family: var(--font-body);
  font-weight: 600;
  cursor: pointer;
  padding: 0;
  font-size: 0.95rem;
}
.link-btn:hover { text-decoration: underline; }
/* --color-accent-light only reaches 4.1:1 on --color-petrol-dark (footer/CTA
   background) -- below WCAG AA. Lightened just for this on-dark text usage,
   the shared token stays untouched for its other (lighter-background) uses. */
.link-btn.light { color: #9db0c2; }

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(244, 245, 246, 0.96);
  backdrop-filter: blur(6px);
  border-bottom: 3px solid var(--color-accent);
  box-shadow: 0 3px 10px rgba(20, 41, 58, 0.08);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 14px;
  padding-bottom: 14px;
  gap: 24px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
}
.brand-logo {
  width: 52px;
  height: 52px;
  flex-shrink: 0;
  object-fit: contain;
}
.brand-text { display: flex; flex-direction: column; gap: 3px; }
.brand-name {
  font-family: var(--font-heading);
  color: var(--color-petrol-dark);
  font-size: 1.3rem;
  font-weight: 700;
  letter-spacing: 0.3px;
  line-height: 1.15;
  white-space: nowrap;
}
.brand-subtitle {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-body);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--color-text-soft);
  white-space: nowrap;
}
.main-nav {
  display: flex;
  gap: 28px;
  flex-wrap: wrap;
}
.main-nav a {
  text-decoration: none;
  color: var(--color-text);
  font-size: 0.95rem;
  padding-bottom: 4px;
  border-bottom: 2px solid transparent;
}
.main-nav a.active,
.main-nav a:hover { color: var(--color-accent); border-bottom-color: var(--color-accent); }

/* Watermark: large, faint background icon used to add quiet texture without clutter */
.watermark {
  position: absolute;
  z-index: 0;
  pointer-events: none;
  opacity: 0.05;
  color: var(--color-petrol-dark);
}

/* Hero: centered, airy, no boxed illustration panel */
.hero {
  background: linear-gradient(165deg, #dde6ec 0%, var(--color-bg) 55%);
  position: relative;
  overflow: hidden;
  padding: 88px 0 96px;
  text-align: center;
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 680px;
  margin: 0 auto;
}
.hero .eyebrow, .hero .lead, .hero .sub { text-align: center; }
.hero .divider { margin-left: auto; margin-right: auto; }
.hero-buttons { display: flex; gap: 16px; margin-top: 32px; flex-wrap: wrap; justify-content: center; }

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #fff;
  border: 1px solid #d5dde2;
  border-radius: 999px;
  padding: 7px 18px 7px 14px;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--color-petrol-dark);
  box-shadow: 0 4px 14px rgba(20, 41, 58, 0.07);
  margin-bottom: 22px;
}
.hero-highlight { color: var(--color-accent); }
.hero-cta-note {
  margin-top: 14px;
  font-size: 0.8rem;
  color: var(--color-text-soft);
}

/* Hero mockup: a stylized "product" preview card, standing in for a screenshot */
.hero-mockup {
  position: relative;
  max-width: 860px;
  margin: 68px auto 0;
}
.hero-mockup-card {
  position: relative;
  z-index: 1;
  background: #fff;
  border-radius: 22px;
  border: 1px solid #e2e8ec;
  box-shadow: 0 30px 70px rgba(20, 41, 58, 0.16), 0 8px 20px rgba(20, 41, 58, 0.08);
  padding: 20px;
  display: grid;
  grid-template-columns: 170px 1fr;
  gap: 20px;
  text-align: left;
}
.hero-mockup-sidebar {
  background: var(--color-bg-alt);
  border-radius: 14px;
  padding: 16px 12px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.ms-brand {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.68rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--color-petrol-dark);
  margin-bottom: 6px;
}
.hero-mockup-nav-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--color-text-soft);
  background: #fff;
  border-radius: 8px;
  padding: 8px 10px;
}
.hero-mockup-nav-item.active { background: var(--color-accent); color: #fff; }
.hero-mockup-main {
  background: linear-gradient(155deg, var(--color-bg-alt) 0%, #fff 100%);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 230px;
  color: var(--color-accent);
}
.hero-mockup-main svg { width: 42%; height: auto; }

.hero-float-badge {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 8px;
  background: #fff;
  border-radius: 14px;
  padding: 10px 16px;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--color-petrol-dark);
  box-shadow: 0 14px 30px rgba(20, 41, 58, 0.15);
  z-index: 2;
  white-space: nowrap;
}
.hfb-1 { top: -18px; left: -22px; }
.hfb-2 { top: 34px; right: -30px; }
.hfb-3 { bottom: -18px; left: 48px; }

.hero-mockup-wave {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: 4px;
  height: 28px;
  margin-top: 24px;
  opacity: 0.45;
}
.hero-mockup-wave span {
  width: 3px;
  background: var(--color-accent);
  border-radius: 2px;
  display: block;
}

.hero-tags {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px 28px;
  margin-top: 40px;
  padding: 0;
  list-style: none;
}
.hero-tags a {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--color-text-soft);
  text-decoration: none;
}
.hero-tags a:hover { color: var(--color-accent); }

/* Diagonal section dividers (replaces wave motif) */
.section { padding: 88px 0 88px; position: relative; }
.section-bg { background: var(--color-bg); }
.section-bg-alt { background: var(--color-bg-alt); }
/* --color-accent only clears WCAG AA (4.5:1) against --color-bg; against the
   slightly darker --color-bg-alt it measures 4.41:1, so eyebrow/accent-line
   need a marginally darker shade here specifically (kept off the shared
   token so the brand blue elsewhere stays matched to the logo, see CLAUDE.md) */
.section-bg-alt .eyebrow,
.section-bg-alt .accent-line { color: #47607a; }
.section-slant-top {
  clip-path: polygon(0 36px, 100% 0, 100% 100%, 0 100%);
  margin-top: -36px;
  padding-top: 124px;
}
.section-slant-bottom {
  clip-path: polygon(0 0, 100% 0, 100% calc(100% - 36px), 0 100%);
  padding-bottom: 124px;
}

.section-head { text-align: center; margin-bottom: 48px; }
.section-head h2 { text-align: center; }
.section-head .body-text { max-width: 560px; margin: 0 auto; }

/* Leistungen: a plain, calm list — no cards, no per-item buttons */
.leistungen-section { position: relative; overflow: hidden; }
.leistungen-section .container { position: relative; z-index: 1; max-width: 800px; }
.leistungen-list {
  list-style: none;
  margin: 0;
  padding: 0;
}
.leistungen-item {
  display: flex;
  align-items: flex-start;
  gap: 24px;
  padding: 28px 0;
  border-bottom: 1px solid #d5dde2;
}
.leistungen-item:first-child { padding-top: 4px; }
.leistungen-item:last-child { border-bottom: none; }
.leistungen-item-icon {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--color-bg);
  color: var(--color-accent);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  flex-shrink: 0;
}
.leistungen-item-text h3 { margin-bottom: 6px; }
.leistungen-item-text p { color: var(--color-text-soft); font-size: 0.95rem; margin: 0; }

/* Ablauf / process steps */
.process-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin-top: 16px;
}
.process-step { text-align: center; padding: 0 16px; }
.process-num {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--color-accent);
  color: #fff;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.15rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 18px;
  position: relative;
}
.process-connector {
  position: relative;
}
.process-connector::before {
  content: '';
  position: absolute;
  top: 24px;
  left: calc(-50% + 24px);
  width: calc(100% - 48px);
  height: 2px;
  background: #d5dde2;
  z-index: -1;
}
.process-step h3 { font-size: 1.1rem; margin-bottom: 8px; }
.process-step p { color: var(--color-text-soft); font-size: 0.9rem; max-width: 260px; margin: 0 auto; }

/* Über uns / Warum uns: centered text + inline benefit chips */
.about-section { text-align: center; }
.about-section .container { max-width: 720px; }
.about-section .eyebrow, .about-section .body-text, .about-section .accent-line { text-align: center; }
.about-section .body-text { margin-left: auto; margin-right: auto; }

.benefits-row {
  list-style: none;
  margin: 40px 0 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
}
.benefit-chip {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #fff;
  border: 1px solid #d5dde2;
  border-radius: 40px;
  padding: 10px 20px 10px 12px;
  font-size: 0.9rem;
  color: var(--color-petrol-dark);
  font-weight: 600;
}
.benefit-chip-icon {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: var(--color-bg-alt);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  flex-shrink: 0;
}

/* CTA: centered, no split panel */
.cta {
  background: var(--color-petrol-dark);
  color: #eef1f2;
  position: relative;
  overflow: hidden;
  text-align: center;
}
.cta .container { max-width: 640px; position: relative; z-index: 1; }
.cta h2, .cta .eyebrow { color: #fff; }
/* same on-dark contrast fix as .link-btn.light above */
.cta .eyebrow { color: #9db0c2; }
.cta .body-text { color: #c7d0d5; margin-left: auto; margin-right: auto; }
.cta .divider { margin-left: auto; margin-right: auto; }
.cta-hint {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  margin: 20px auto 0;
  padding: 14px 18px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 10px;
  font-size: 0.85rem;
  color: #c7d0d5;
  max-width: 420px;
  text-align: left;
}
.note-icon { color: var(--color-accent-light); flex-shrink: 0; }
.cta-hint strong { color: #fff; }

/* Footer */
.site-footer { background: var(--color-petrol-dark); color: #c7d0d5; padding-top: 56px; }
.footer-inner {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 32px;
  padding-bottom: 40px;
}
.footer-brand .brand-name { color: #fff; }
.footer-brand .brand-logo {
  filter: brightness(0) invert(1);
  opacity: 0.92;
}
.footer-brand p { font-size: 0.9rem; margin-top: 12px; }
.footer-col h3 {
  color: #fff;
  font-family: var(--font-body);
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 16px;
}
.footer-col a, .footer-col p {
  display: block;
  color: #c7d0d5;
  text-decoration: none;
  font-size: 0.9rem;
  margin-bottom: 10px;
}
.footer-col a:hover { color: var(--color-accent-light); }
.fine-print { font-size: 0.78rem; color: #aab5ba; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.12);
  padding: 20px 0;
  font-size: 0.85rem;
}
.footer-bottom .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.to-top {
  color: #fff;
  border: 1px solid rgba(255,255,255,0.3);
  border-radius: 50%;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
}

/* Contact Modal */
.modal-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(20, 41, 58, 0.55);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 200;
  padding: 20px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.28s ease, visibility 0s linear 0.28s;
}
.modal-backdrop.is-open {
  opacity: 1;
  visibility: visible;
  transition: opacity 0.28s ease, visibility 0s linear 0s;
}

.modal-shadow-wrap {
  position: relative;
  max-width: 480px;
  width: 100%;
  max-height: 90vh;
  border-radius: 16px;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.3);
  transform: scale(0.94) translateY(14px);
  opacity: 0;
  transition: transform 0.28s ease, opacity 0.28s ease;
}
.modal-backdrop.is-open .modal-shadow-wrap {
  transform: scale(1) translateY(0);
  opacity: 1;
}
.modal-popup {
  position: relative;
  background: var(--color-modal-bg);
  border: 1px solid #d5dde2;
  border-radius: 16px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  padding: 40px;
}
@media (prefers-reduced-motion: reduce) {
  .modal-backdrop, .modal-shadow-wrap { transition: none; }
}
.modal-close {
  position: absolute;
  top: 18px;
  right: 20px;
  z-index: 2;
  background: none;
  border: none;
  font-size: 1.6rem;
  line-height: 1;
  color: var(--color-petrol-dark);
  cursor: pointer;
}
.modal-sub { color: #4a5a68; margin-bottom: 24px; font-size: 0.92rem; }

.contact-form { display: flex; flex-direction: column; gap: 16px; }
.form-row { display: flex; flex-direction: column; gap: 6px; }
.form-row label {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--color-petrol-dark);
}
.form-row input, .form-row textarea {
  border: 1px solid #cfd8de;
  background: #f7f9fa;
  border-radius: 8px;
  padding: 12px 14px;
  font-family: var(--font-body);
  font-size: 0.92rem;
  color: var(--color-text);
  resize: vertical;
}
.form-row input:focus, .form-row textarea:focus {
  outline: none;
  border-color: var(--color-accent);
}
.honeypot { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }

.form-consent {
  flex-direction: row;
  align-items: flex-start;
  gap: 10px;
}
.form-consent input[type="checkbox"] {
  margin-top: 3px;
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  accent-color: var(--color-petrol-dark);
}
.form-consent label {
  font-size: 0.8rem;
  font-weight: 400;
  color: var(--color-text-soft);
  line-height: 1.5;
}
.form-consent label a { color: var(--color-accent); }

.form-submit { margin-top: 4px; width: 100%; justify-content: center; }
.form-submit:disabled { opacity: 0.6; cursor: not-allowed; }
.form-success, .form-error {
  display: none;
  color: var(--color-petrol-dark);
  background: #fff;
  border: 1px solid #cfd8de;
  border-radius: 8px;
  padding: 12px 14px;
  font-size: 0.9rem;
  margin: 0;
}
.form-error { color: #7a2e22; border-color: #e0b199; }
.form-success.is-visible, .form-error.is-visible { display: block; }

/* Floating contact button with selection menu (mobile only) */
.contact-fab {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 150;
  display: none;
  flex-direction: column;
  align-items: flex-end;
  gap: 14px;
}
@media (max-width: 960px) {
  .contact-fab { display: flex; }
}
.fab {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  border: none;
  cursor: pointer;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.25);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.fab:hover {
  transform: scale(1.08);
  box-shadow: 0 10px 22px rgba(0, 0, 0, 0.3);
}
.fab-contact {
  background: var(--color-petrol-dark);
  border: 2px solid var(--color-accent-light);
}

.fab-menu {
  display: flex;
  flex-direction: column;
  gap: 8px;
  background: #fff;
  border: 1px solid #d5dde2;
  border-radius: 14px;
  padding: 10px;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.18);
  opacity: 0;
  transform: translateY(10px) scale(0.97);
  pointer-events: none;
  transition: opacity 0.2s ease, transform 0.2s ease;
}
.contact-fab.is-open .fab-menu {
  opacity: 1;
  transform: translateY(0) scale(1);
  pointer-events: auto;
}
.fab-menu-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  border-radius: 10px;
  text-decoration: none;
  color: var(--color-text);
  font-size: 0.9rem;
  white-space: nowrap;
  transition: background 0.15s ease;
}
.fab-menu-item:hover { background: var(--color-bg-alt); }
.fab-menu-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  flex-shrink: 0;
}
.fab-menu-icon-whatsapp { color: #25d366; }

@media (prefers-reduced-motion: reduce) {
  .fab, .fab-menu { transition: none; }
  .fab:hover { transform: none; }
}

/* Legal modal (Impressum / Datenschutz) */
.legal-modal-shadow-wrap { max-width: 760px; }
.legal-modal-popup {
  background: var(--color-bg);
  border-color: #d5dde2;
}
.legal-modal-content h1 { font-size: 2rem; margin-bottom: 24px; }
.legal-modal-content h3 { margin-top: 28px; font-size: 1.15rem; }
.legal-modal-content .eyebrow { margin-bottom: 8px; }

/* Legal pages */
.legal-page { padding-top: 56px; padding-bottom: 80px; }
.legal-page h1 { margin-bottom: 32px; }
.legal-page h3 { margin-top: 32px; }
.legal-text { max-width: 720px; }
.legal-text a { color: var(--color-accent); }
.legal-note {
  margin-top: 40px;
  padding: 16px 20px;
  background: var(--color-bg-alt);
  border-radius: 10px;
  font-size: 0.85rem;
  color: var(--color-text-soft);
  max-width: 720px;
}

/* Scroll-in animation */
.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }

@media (prefers-reduced-motion: reduce) {
  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

/* Responsive */
@media (max-width: 960px) {
  .main-nav { display: none; }
  .hero { padding: 56px 0 64px; }
  .hero-float-badge { display: none; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .process-steps { grid-template-columns: 1fr; gap: 40px; }
  .process-connector::before { display: none; }
  .section-slant-top, .section-slant-bottom { clip-path: none; margin-top: 0; padding-top: 64px; padding-bottom: 64px; }
}
@media (max-width: 700px) {
  .hero-mockup-card { grid-template-columns: 1fr; }
  .hero-mockup-sidebar { flex-direction: row; overflow-x: auto; }
  .ms-brand { display: none; }
}
@media (max-width: 560px) {
  h1 { font-size: 2.1rem; }
  h2 { font-size: 1.7rem; }
  .header-inner { flex-wrap: wrap; }
  .footer-inner { grid-template-columns: 1fr; }
  .leistungen-item { gap: 16px; }
}
