/* =========================================================================
   LytraG-System — Design System (design.css)
   Premium, mobile-first, accessible. Navy + Markengrün.
   Verwendung: <link rel="stylesheet" href="design.css">
   Font: Manrope (Headlines + UI), Inter (Fließtext) via Google Fonts <link>.
   ========================================================================= */

/* -------------------------------------------------------------------------
   1) DESIGN TOKENS (Custom Properties)
   ------------------------------------------------------------------------- */
:root {
  /* Marke / Farben */
  --navy:          #0f1b2d;   /* primär, dunkler Grund */
  --navy-2:        #15263d;   /* leicht heller (Cards auf dunkel) */
  --navy-3:        #1d3350;   /* Hover/Border auf dunkel */
  --green:         #1fc26b;   /* Akzent — NUR auf dunkel oder als Button mit dunkler Schrift */
  --green-600:     #19a85b;   /* Button-Hover */
  --green-text:    #0f9d58;   /* barrierefreies Grün für TEXT/Links auf WEISS */
  --green-text-dk: #0c7f47;   /* Hover für grünen Text auf Weiß */

  --white:         #ffffff;
  --surface:       #f6f8fa;   /* helle Sektions-Fläche */
  --surface-2:     #eef2f6;   /* abwechselnde Fläche / Borders auf hell */

  --ink:           #1f2a37;   /* Haupttext */
  --ink-soft:      #51606f;   /* Sekundärtext */
  --ink-muted:     #6b7785;   /* gedämpft / Hinweise */
  --line:          #e3e8ee;   /* helle Trennlinie */

  --on-navy:       #ffffff;
  --on-navy-soft:  #c4d0de;   /* Sekundärtext auf navy */
  --on-navy-muted: #8ea2ba;   /* gedämpft auf navy */

  --star:          #f5b50a;   /* Sterne */

  /* Fokus / Status */
  --focus:         #4aa3ff;
  --danger:        #d64545;

  /* Typografie */
  --font-head: "Manrope", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  --font-body: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;

  /* Fluid Type-Skala (mobile-first, skaliert per clamp) */
  --fs-display: clamp(2.1rem, 1.35rem + 3.4vw, 3.65rem);  /* Hero h1 */
  --fs-h1:      clamp(1.9rem, 1.35rem + 2.4vw, 3rem);
  --fs-h2:      clamp(1.55rem, 1.18rem + 1.6vw, 2.25rem);
  --fs-h3:      clamp(1.2rem, 1.05rem + 0.7vw, 1.45rem);
  --fs-lead:    clamp(1.06rem, 1rem + 0.4vw, 1.2rem);
  --fs-base:    1.0625rem;   /* 17px */
  --fs-sm:      0.9375rem;   /* 15px */
  --fs-xs:      0.8125rem;   /* 13px */

  --lh-tight: 1.12;
  --lh-snug:  1.3;
  --lh-base:  1.65;

  /* Abstände (Spacing-Skala) */
  --space-1: 0.25rem;
  --space-2: 0.5rem;
  --space-3: 0.75rem;
  --space-4: 1rem;
  --space-5: 1.5rem;
  --space-6: 2rem;
  --space-7: 3rem;
  --space-8: 4rem;
  --space-9: 6rem;

  /* Sektions-Vertikalabstand (fluid) */
  --section-y: clamp(3.5rem, 2.5rem + 4vw, 6.5rem);

  /* Layout */
  --container:    1180px;
  --container-nar: 820px;   /* schmale Lese-/Blog-Breite */
  --gutter:       clamp(1.1rem, 0.6rem + 2vw, 2.25rem);

  /* Radien */
  --r-xs: 6px;
  --r-sm: 10px;
  --r-md: 14px;
  --r-lg: 20px;
  --r-xl: 28px;
  --r-pill: 999px;

  /* Schatten (weich, premium) */
  --sh-xs: 0 1px 2px rgba(15, 27, 45, 0.06);
  --sh-sm: 0 2px 8px rgba(15, 27, 45, 0.07);
  --sh-md: 0 10px 28px rgba(15, 27, 45, 0.10);
  --sh-lg: 0 20px 48px rgba(15, 27, 45, 0.14);
  --sh-green: 0 10px 26px rgba(31, 194, 107, 0.30);

  /* Bewegung */
  --ease: cubic-bezier(0.22, 0.61, 0.36, 1);
  --t-fast: 0.16s;
  --t-base: 0.26s;

  --header-h: 72px;
}

/* -------------------------------------------------------------------------
   2) RESET / BASE
   ------------------------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }

* { margin: 0; }

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-h) + 12px);
}

body {
  font-family: var(--font-body);
  font-size: var(--fs-base);
  line-height: var(--lh-base);
  color: var(--ink);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;        /* kein horizontales Scrollen */
}

img, picture, svg, video {
  display: block;
  max-width: 100%;
  height: auto;
}

a {
  color: var(--green-text);
  text-decoration: none;
  transition: color var(--t-fast) var(--ease);
}
a:hover { color: var(--green-text-dk); text-decoration: underline; text-underline-offset: 3px; }

ul, ol { padding-left: 1.15rem; }
li { margin-bottom: var(--space-2); }

button, input, select, textarea { font: inherit; color: inherit; }

strong, b { font-weight: 700; }

/* Sichtbarer Fokus für Tastatur-Navigation */
:focus-visible {
  outline: 3px solid var(--focus);
  outline-offset: 2px;
  border-radius: var(--r-xs);
}

/* Skip-Link (Barrierefreiheit) */
.skip-link {
  position: absolute;
  left: 1rem;
  top: -3rem;
  z-index: 1000;
  background: var(--navy);
  color: var(--white);
  padding: 0.6rem 1rem;
  border-radius: var(--r-sm);
  transition: top var(--t-fast) var(--ease);
}
.skip-link:focus { top: 1rem; color: var(--white); text-decoration: none; }

.visually-hidden {
  position: absolute !important;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0 0 0 0);
  white-space: nowrap; border: 0;
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    transition-duration: 0.001ms !important;
    scroll-behavior: auto !important;
  }
}

/* -------------------------------------------------------------------------
   3) TYPOGRAFIE
   ------------------------------------------------------------------------- */
h1, h2, h3, h4 {
  font-family: var(--font-head);
  color: var(--navy);
  line-height: var(--lh-tight);
  font-weight: 800;
  letter-spacing: -0.018em;
  text-wrap: balance;
}

h1 { font-size: var(--fs-h1); }
h2 { font-size: var(--fs-h2); }
h3 { font-size: var(--fs-h3); line-height: var(--lh-snug); letter-spacing: -0.01em; }
h4 { font-size: 1.05rem; line-height: var(--lh-snug); }

p { color: var(--ink-soft); }
p + p { margin-top: var(--space-4); }

.lead {
  font-size: var(--fs-lead);
  color: var(--ink-soft);
  line-height: 1.6;
  max-width: 60ch;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: var(--fs-xs);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--green-text);
  margin-bottom: var(--space-3);
}
.eyebrow::before {
  content: "";
  width: 26px; height: 2px;
  background: var(--green-text);
  border-radius: 2px;
}
/* Eyebrow auf dunklem Grund */
.on-dark .eyebrow,
.hero .eyebrow,
.cta-band .eyebrow { color: var(--green); }
.on-dark .eyebrow::before,
.hero .eyebrow::before,
.cta-band .eyebrow::before { background: var(--green); }

.text-green { color: var(--green-text); }      /* grüner Text auf Weiß (a11y) */
.text-muted { color: var(--ink-muted); }
.text-center { text-align: center; }
.mx-auto { margin-left: auto; margin-right: auto; }

/* -------------------------------------------------------------------------
   4) LAYOUT-HELFER
   ------------------------------------------------------------------------- */
.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: var(--gutter);
}
.container--narrow { max-width: var(--container-nar); }

.section { padding-block: var(--section-y); }
.section--alt { background: var(--surface); }
.section--navy {
  background: var(--navy);
  color: var(--on-navy);
}
.section--tight { padding-block: clamp(2.25rem, 1.6rem + 2.5vw, 3.5rem); }

/* Sektionen auf dunkel: Textfarben anpassen */
.section--navy h1, .section--navy h2, .section--navy h3, .section--navy h4,
.on-dark h1, .on-dark h2, .on-dark h3, .on-dark h4 { color: var(--on-navy); }
.section--navy p, .on-dark p { color: var(--on-navy-soft); }
.section--navy .lead, .on-dark .lead { color: var(--on-navy-soft); }

/* Sektionskopf */
.section-head { max-width: 56ch; margin-bottom: var(--space-7); }
.section-head.text-center { margin-inline: auto; }

/* Grids */
.grid { display: grid; gap: var(--gutter); }
.grid-2 { grid-template-columns: 1fr; }
.grid-3 { grid-template-columns: 1fr; }
.grid-4 { grid-template-columns: 1fr; }

@media (min-width: 600px) {
  .grid-2 { grid-template-columns: repeat(2, 1fr); }
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 900px) {
  .grid-3 { grid-template-columns: repeat(3, 1fr); }
  .grid-4 { grid-template-columns: repeat(4, 1fr); }
}

/* Asymmetrischer Split (Bild/Text) — bewusst nicht 50/50 für "handgemacht" */
.split {
  display: grid;
  gap: clamp(1.75rem, 1rem + 3vw, 3.5rem);
  align-items: center;
}
@media (min-width: 900px) {
  .split { grid-template-columns: 1.05fr 0.95fr; }
  .split--media-first .split__media { order: -1; }
  .split--wide-text { grid-template-columns: 1.15fr 0.85fr; }
}
/* Alternierende Reihen: jede zweite kehrt Bild/Text um */
.alt-rows .split:nth-child(even) .split__media { order: 0; }
@media (min-width: 900px) {
  .alt-rows .split:nth-child(even) .split__media { order: -1; }
}

.split__media {
  position: relative;
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--sh-md);
}
.split__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 4 / 3;
}

.stack > * + * { margin-top: var(--space-4); }
.stack-lg > * + * { margin-top: var(--space-6); }

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-3);
  align-items: center;
  margin-top: var(--space-5);
}

/* -------------------------------------------------------------------------
   5) BUTTONS
   ------------------------------------------------------------------------- */
.btn {
  --btn-bg: var(--navy);
  --btn-fg: var(--white);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: var(--fs-base);
  line-height: 1;
  text-align: center;
  padding: 0.95rem 1.55rem;
  min-height: 52px;                 /* große Tap-Targets */
  border: 2px solid transparent;
  border-radius: var(--r-pill);
  background: var(--btn-bg);
  color: var(--btn-fg);
  cursor: pointer;
  text-decoration: none;
  transition: transform var(--t-fast) var(--ease),
              box-shadow var(--t-base) var(--ease),
              background-color var(--t-fast) var(--ease),
              border-color var(--t-fast) var(--ease),
              color var(--t-fast) var(--ease);
  white-space: nowrap;
}
.btn:hover { text-decoration: none; }
.btn:active { transform: translateY(1px); }
.btn .icon { width: 1.15em; height: 1.15em; flex: none; }

/* Primär = Markengrün mit DUNKLER Schrift (Kontrast a11y) */
.btn-primary {
  --btn-bg: var(--green);
  --btn-fg: var(--navy);
  box-shadow: var(--sh-green);
}
.btn-primary:hover {
  --btn-bg: var(--green-600);
  color: var(--navy);
  transform: translateY(-2px);
  box-shadow: 0 16px 34px rgba(31, 194, 107, 0.38);
}

/* Anruf-Button = wie Primär, semantischer Name */
.btn-call {
  --btn-bg: var(--green);
  --btn-fg: var(--navy);
  box-shadow: var(--sh-green);
}
.btn-call:hover {
  --btn-bg: var(--green-600);
  color: var(--navy);
  transform: translateY(-2px);
  box-shadow: 0 16px 34px rgba(31, 194, 107, 0.38);
}

/* Solid Navy (auf hellem Grund) */
.btn-solid { --btn-bg: var(--navy); --btn-fg: var(--white); }
.btn-solid:hover { --btn-bg: var(--navy-3); color: var(--white); transform: translateY(-2px); box-shadow: var(--sh-md); }

/* Ghost / Sekundär (Outline) */
.btn-ghost {
  --btn-bg: transparent;
  --btn-fg: var(--navy);
  border-color: var(--line);
  box-shadow: var(--sh-xs);
}
.btn-ghost:hover {
  --btn-fg: var(--navy);
  border-color: var(--navy);
  background: var(--surface);
  transform: translateY(-2px);
  color: var(--navy);
}
/* Ghost auf dunklem Grund */
.on-dark .btn-ghost, .hero .btn-ghost, .cta-band .btn-ghost, .section--navy .btn-ghost {
  --btn-fg: var(--white);
  border-color: rgba(255,255,255,0.35);
  background: rgba(255,255,255,0.04);
  box-shadow: none;
}
.on-dark .btn-ghost:hover, .hero .btn-ghost:hover, .cta-band .btn-ghost:hover, .section--navy .btn-ghost:hover {
  border-color: rgba(255,255,255,0.85);
  background: rgba(255,255,255,0.10);
  color: var(--white);
}

/* WhatsApp-Variante */
.btn-whatsapp { --btn-bg: #25d366; --btn-fg: #08361b; box-shadow: 0 10px 26px rgba(37, 211, 102, 0.28); }
.btn-whatsapp:hover { --btn-bg: #1fbe5a; color: #08361b; transform: translateY(-2px); }

.btn-sm { min-height: 44px; padding: 0.65rem 1.1rem; font-size: var(--fs-sm); }
.btn-lg { min-height: 58px; padding: 1.1rem 1.9rem; font-size: 1.12rem; }
.btn-block { display: flex; width: 100%; }

/* Text-Link mit Pfeil (kontextueller CTA) */
.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-family: var(--font-head);
  font-weight: 700;
  color: var(--green-text);
}
.link-arrow::after { content: "→"; transition: transform var(--t-fast) var(--ease); }
.link-arrow:hover { color: var(--green-text-dk); text-decoration: none; }
.link-arrow:hover::after { transform: translateX(4px); }

/* -------------------------------------------------------------------------
   6) HEADER + NAVIGATION (sticky, Burger via Checkbox-Hack)
   ------------------------------------------------------------------------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: saturate(160%) blur(10px);
  -webkit-backdrop-filter: saturate(160%) blur(10px);
  border-bottom: 1px solid var(--line);
}
.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-4);
  min-height: var(--header-h);
  padding-block: 0.55rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  flex: none;
}
.brand img { height: 38px; width: auto; }
.brand:hover { text-decoration: none; }

/* Burger-Toggle (versteckte Checkbox) */
.nav-toggle { position: absolute; opacity: 0; pointer-events: none; }
.nav-burger {
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 48px; height: 48px;
  padding: 0 12px;
  border: 1px solid var(--line);
  border-radius: var(--r-sm);
  background: var(--white);
  cursor: pointer;
}
.nav-burger span {
  display: block; height: 2px; width: 100%;
  background: var(--navy); border-radius: 2px;
  transition: transform var(--t-base) var(--ease), opacity var(--t-fast) var(--ease);
}

/* Mobiles Menü (Standard: ausgeklappt unter Header) */
.nav {
  display: flex;
  align-items: center;
  gap: var(--space-2);
}
.nav__menu {
  list-style: none;
  margin: 0;
  padding: 0;
}
.nav__list {
  display: flex;
  flex-direction: column;
  list-style: none;
  margin: 0;
  padding: var(--space-3) var(--gutter) var(--space-5);
  gap: 0.15rem;
}
.nav__list li { margin: 0; }
.nav__list a {
  display: block;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 1.05rem;
  color: var(--navy);
  padding: 0.85rem 0.5rem;
  border-bottom: 1px solid var(--line);
}
.nav__list a:hover,
.nav__list a[aria-current="page"] { color: var(--green-text); text-decoration: none; }
.nav__list a[aria-current="page"] { font-weight: 700; }

.nav__cta { display: none; }   /* Header-CTA auf Mobil im Menü */
.nav__cta-mobile { padding: var(--space-2) var(--gutter) var(--space-5); }

/* Mobiles Panel: per Checkbox ein-/ausblenden */
.nav__panel {
  position: fixed;
  inset: var(--header-h) 0 auto 0;
  background: var(--white);
  border-bottom: 1px solid var(--line);
  box-shadow: var(--sh-lg);
  max-height: 0;
  overflow: hidden;
  visibility: hidden;
  transition: max-height var(--t-base) var(--ease), visibility var(--t-base);
}
.nav-toggle:checked ~ .nav__panel {
  max-height: min(80vh, 560px);
  overflow-y: auto;
  visibility: visible;
}
.nav-toggle:checked ~ .nav-burger span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle:checked ~ .nav-burger span:nth-child(2) { opacity: 0; }
.nav-toggle:checked ~ .nav-burger span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Desktop-Navigation */
@media (min-width: 900px) {
  .nav-burger { display: none; }
  .nav__panel {
    position: static;
    inset: auto;
    max-height: none;
    overflow: visible;
    visibility: visible;
    background: transparent;
    border: 0;
    box-shadow: none;
    display: flex;
    align-items: center;
    gap: var(--space-5);
  }
  .nav__list {
    flex-direction: row;
    align-items: center;
    padding: 0;
    gap: 0.35rem;
  }
  .nav__list a {
    border-bottom: 0;
    padding: 0.5rem 0.75rem;
    font-size: var(--fs-sm);
    border-radius: var(--r-sm);
    position: relative;
  }
  .nav__list a::after {
    content: "";
    position: absolute;
    left: 0.75rem; right: 0.75rem; bottom: 0.3rem;
    height: 2px;
    background: var(--green-text);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform var(--t-base) var(--ease);
  }
  .nav__list a:hover::after,
  .nav__list a[aria-current="page"]::after { transform: scaleX(1); }
  .nav__cta { display: inline-flex; }
  .nav__cta-mobile { display: none; }
}

/* -------------------------------------------------------------------------
   7) HERO (navy, Foto, kein KI-Look)
   ------------------------------------------------------------------------- */
.hero {
  position: relative;
  background: var(--navy);
  color: var(--on-navy);
  overflow: hidden;
}
/* dezenter Tiefenverlauf, kein flacher KI-Block */
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(120% 90% at 85% -10%, rgba(31,194,107,0.16), transparent 55%),
    radial-gradient(90% 80% at -10% 110%, rgba(74,163,255,0.10), transparent 50%);
  pointer-events: none;
}
.hero__inner {
  position: relative;
  display: grid;
  gap: clamp(2rem, 1rem + 4vw, 4rem);
  align-items: center;
  padding-block: clamp(2.75rem, 2rem + 4vw, 5.5rem);
}
@media (min-width: 900px) {
  .hero__inner { grid-template-columns: 1.08fr 0.92fr; }
}
.hero h1 {
  font-size: var(--fs-display);
  color: var(--white);
  margin-bottom: var(--space-4);
}
.hero h1 .accent { color: var(--green); }
.hero .lead { color: var(--on-navy-soft); max-width: 52ch; }

.hero__media {
  position: relative;
  border-radius: var(--r-xl);
  overflow: hidden;
  box-shadow: var(--sh-lg);
  border: 1px solid rgba(255,255,255,0.08);
}
.hero__media img {
  width: 100%;
  aspect-ratio: 4 / 3.4;
  object-fit: cover;
}
/* schwebende Vertrauens-Karte über dem Foto */
.hero__badge {
  position: absolute;
  left: var(--space-4);
  bottom: var(--space-4);
  right: var(--space-4);
  display: flex;
  align-items: center;
  gap: 0.75rem;
  background: rgba(15, 27, 45, 0.82);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.12);
  color: var(--white);
  padding: 0.8rem 1rem;
  border-radius: var(--r-md);
  font-size: var(--fs-sm);
}
.hero__badge strong { color: var(--white); }
@media (min-width: 600px) { .hero__badge { right: auto; max-width: 320px; } }

/* kleine Feature-Häkchen unter Hero-Text */
.hero__checks {
  list-style: none;
  padding: 0;
  margin-top: var(--space-5);
  display: grid;
  gap: 0.6rem;
}
.hero__checks li {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  color: var(--on-navy-soft);
  margin: 0;
  font-size: var(--fs-sm);
}
.hero__checks li::before {
  content: "✓";
  color: var(--green);
  font-weight: 800;
  flex: none;
}
@media (min-width: 600px) { .hero__checks { grid-template-columns: 1fr 1fr; } }

/* -------------------------------------------------------------------------
   8) TRUSTBAR (5,0 Sterne Google + Proof)
   ------------------------------------------------------------------------- */
.trustbar {
  background: var(--navy-2);
  color: var(--on-navy);
  border-top: 1px solid rgba(255,255,255,0.06);
}
.trustbar__inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: var(--space-4) var(--space-6);
  padding-block: var(--space-5);
  text-align: center;
}
.trustbar__item {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-size: var(--fs-sm);
  color: var(--on-navy-soft);
}
.trustbar__item strong { color: var(--white); font-family: var(--font-head); }
/* Trustbar auf hellem Grund (Variante) */
.trustbar--light { background: var(--surface); color: var(--ink); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.trustbar--light .trustbar__item { color: var(--ink-soft); }
.trustbar--light .trustbar__item strong { color: var(--navy); }

/* Sterne */
.stars {
  display: inline-flex;
  gap: 1px;
  color: var(--star);
  letter-spacing: 1px;
  line-height: 1;
}
.stars::before { content: "★★★★★"; }
.rating {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-head);
  font-weight: 700;
}
.rating .num { font-size: 1.05em; }

/* -------------------------------------------------------------------------
   9) CARDS allgemein + SERVICE-CARDS (Hover-Lift)
   ------------------------------------------------------------------------- */
.card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  box-shadow: var(--sh-sm);
  padding: var(--space-6);
}

.service-card {
  position: relative;
  display: flex;
  flex-direction: column;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--sh-sm);
  transition: transform var(--t-base) var(--ease),
              box-shadow var(--t-base) var(--ease),
              border-color var(--t-base) var(--ease);
}
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--sh-lg);
  border-color: var(--surface-2);
}
.service-card__media {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16 / 10;
}
.service-card__media img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.5s var(--ease);
}
.service-card:hover .service-card__media img { transform: scale(1.05); }
.service-card__body {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  padding: var(--space-5);
  flex: 1 1 auto;
}
.service-card__body h3 { color: var(--navy); }
.service-card__body p { font-size: var(--fs-sm); }
.service-card .link-arrow { margin-top: auto; padding-top: var(--space-3); }

/* Icon-Card (ohne Foto) */
.icon-card {
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
  padding: var(--space-6);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  box-shadow: var(--sh-sm);
  transition: transform var(--t-base) var(--ease), box-shadow var(--t-base) var(--ease);
}
.icon-card:hover { transform: translateY(-4px); box-shadow: var(--sh-md); }
.icon-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 54px; height: 54px;
  border-radius: var(--r-md);
  background: rgba(31, 194, 107, 0.12);
  color: var(--green-text);
  font-size: 1.5rem;
  margin-bottom: var(--space-2);
}
.section--navy .icon-card, .on-dark .icon-card {
  background: var(--navy-2);
  border-color: var(--navy-3);
}
.section--navy .icon-badge, .on-dark .icon-badge {
  background: rgba(31, 194, 107, 0.16);
  color: var(--green);
}

/* -------------------------------------------------------------------------
   10) STATS-LEISTE
   ------------------------------------------------------------------------- */
.stats {
  display: grid;
  gap: var(--gutter);
  grid-template-columns: repeat(2, 1fr);
}
@media (min-width: 900px) { .stats { grid-template-columns: repeat(4, 1fr); } }

.stat {
  text-align: center;
  padding: var(--space-5) var(--space-3);
}
.stat__num {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: clamp(2rem, 1.4rem + 2.4vw, 3rem);
  line-height: 1;
  color: var(--navy);
  letter-spacing: -0.02em;
}
.section--navy .stat__num, .on-dark .stat__num { color: var(--green); }
.stat__label {
  margin-top: var(--space-2);
  font-size: var(--fs-sm);
  color: var(--ink-muted);
}
.section--navy .stat__label, .on-dark .stat__label { color: var(--on-navy-soft); }
/* dezente Trennlinien zwischen Stats auf Desktop */
@media (min-width: 900px) {
  .stats--divided .stat { border-right: 1px solid var(--line); }
  .stats--divided .stat:last-child { border-right: 0; }
  .section--navy .stats--divided .stat { border-color: var(--navy-3); }
}

/* -------------------------------------------------------------------------
   11) PROZESS "So gehen wir vor"
   ------------------------------------------------------------------------- */
.process { counter-reset: step; }
.process-step {
  position: relative;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: var(--space-6);
  padding-top: var(--space-7);
  box-shadow: var(--sh-sm);
}
.process-step__num {
  position: absolute;
  top: calc(-1 * var(--space-4));
  left: var(--space-5);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px; height: 48px;
  border-radius: var(--r-pill);
  background: var(--green);
  color: var(--navy);
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 1.25rem;
  box-shadow: var(--sh-green);
}
.process-step h3 { margin-bottom: 0.4rem; }
.process-step p { font-size: var(--fs-sm); }
.section--navy .process-step, .on-dark .process-step {
  background: var(--navy-2);
  border-color: var(--navy-3);
}

/* -------------------------------------------------------------------------
   12) PRICING / SERVICEPAKETE
   ------------------------------------------------------------------------- */
.pricing-table {
  display: grid;
  gap: var(--gutter);
  grid-template-columns: 1fr;
  align-items: stretch;
}
@media (min-width: 900px) { .pricing-table { grid-template-columns: repeat(3, 1fr); } }

.price-card {
  display: flex;
  flex-direction: column;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: var(--space-6);
  box-shadow: var(--sh-sm);
  transition: transform var(--t-base) var(--ease), box-shadow var(--t-base) var(--ease);
}
.price-card:hover { transform: translateY(-4px); box-shadow: var(--sh-md); }

.price-card--featured {
  border-color: var(--green);
  box-shadow: var(--sh-lg);
  position: relative;
}
@media (min-width: 900px) {
  .price-card--featured { transform: scale(1.03); }
  .price-card--featured:hover { transform: scale(1.03) translateY(-4px); }
}
.price-card__tag {
  position: absolute;
  top: -0.85rem;
  left: 50%;
  transform: translateX(-50%);
  background: var(--green);
  color: var(--navy);
  font-family: var(--font-head);
  font-weight: 800;
  font-size: var(--fs-xs);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.4rem 0.9rem;
  border-radius: var(--r-pill);
  white-space: nowrap;
}
.price-card__name { font-family: var(--font-head); font-weight: 800; color: var(--navy); font-size: var(--fs-h3); }
.price-card__desc { font-size: var(--fs-sm); color: var(--ink-muted); margin-top: 0.25rem; }
.price-card__price {
  display: flex;
  align-items: baseline;
  gap: 0.35rem;
  margin: var(--space-4) 0;
  font-family: var(--font-head);
}
.price-card__amount { font-size: clamp(2rem, 1.5rem + 1.6vw, 2.6rem); font-weight: 800; color: var(--navy); letter-spacing: -0.02em; }
.price-card__per { font-size: var(--fs-sm); color: var(--ink-muted); }
.price-card__features {
  list-style: none;
  padding: 0;
  margin: var(--space-4) 0 var(--space-6);
  display: grid;
  gap: 0.65rem;
  border-top: 1px solid var(--line);
  padding-top: var(--space-5);
}
.price-card__features li {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  font-size: var(--fs-sm);
  color: var(--ink-soft);
  margin: 0;
}
.price-card__features li::before {
  content: "✓";
  color: var(--green-text);
  font-weight: 800;
  flex: none;
}
.price-card__features li.is-off { color: var(--ink-muted); }
.price-card__features li.is-off::before { content: "–"; color: var(--ink-muted); }
.price-card .btn { margin-top: auto; }

/* Echte Vergleichstabelle (responsive: scrollbar auf Mobil) */
.compare-wrap { overflow-x: auto; -webkit-overflow-scrolling: touch; border-radius: var(--r-lg); border: 1px solid var(--line); }
.compare {
  width: 100%;
  min-width: 620px;
  border-collapse: collapse;
  background: var(--white);
  font-size: var(--fs-sm);
}
.compare th, .compare td { padding: 0.9rem 1rem; text-align: left; border-bottom: 1px solid var(--line); }
.compare thead th { font-family: var(--font-head); color: var(--navy); background: var(--surface); }
.compare tbody th { font-weight: 600; color: var(--ink); }
.compare td.yes { color: var(--green-text); font-weight: 700; }
.compare td.no { color: var(--ink-muted); }
.compare tr:last-child td, .compare tr:last-child th { border-bottom: 0; }

/* -------------------------------------------------------------------------
   13) TESTIMONIALS
   ------------------------------------------------------------------------- */
.testimonial {
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: var(--space-6);
  box-shadow: var(--sh-sm);
  height: 100%;
}
.testimonial__quote {
  font-size: 1.05rem;
  color: var(--ink);
  line-height: 1.6;
}
.testimonial__quote::before { content: "“"; color: var(--green-text); font-family: var(--font-head); font-weight: 800; font-size: 1.2em; margin-right: 0.1em; }
.testimonial__foot { display: flex; align-items: center; gap: 0.85rem; margin-top: auto; }
.testimonial__avatar {
  width: 46px; height: 46px;
  border-radius: var(--r-pill);
  background: var(--navy);
  color: var(--white);
  display: inline-flex; align-items: center; justify-content: center;
  font-family: var(--font-head); font-weight: 800;
  flex: none;
}
.testimonial__name { font-family: var(--font-head); font-weight: 700; color: var(--navy); font-size: var(--fs-sm); }
.testimonial__meta { font-size: var(--fs-xs); color: var(--ink-muted); }
.testimonial .stars { font-size: var(--fs-sm); }
.section--navy .testimonial, .on-dark .testimonial { background: var(--navy-2); border-color: var(--navy-3); }
.section--navy .testimonial__quote, .on-dark .testimonial__quote { color: var(--on-navy); }
.section--navy .testimonial__name, .on-dark .testimonial__name { color: var(--white); }

/* -------------------------------------------------------------------------
   14) FAQ (Akkordeon via <details>)
   ------------------------------------------------------------------------- */
.faq { display: grid; gap: var(--space-3); }
.faq-item {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  box-shadow: var(--sh-xs);
  overflow: hidden;
  transition: box-shadow var(--t-base) var(--ease), border-color var(--t-base) var(--ease);
}
.faq-item[open] { box-shadow: var(--sh-sm); border-color: var(--surface-2); }
.faq-item > summary {
  list-style: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-4);
  padding: 1.1rem 1.25rem;
  font-family: var(--font-head);
  font-weight: 700;
  color: var(--navy);
  font-size: 1.02rem;
}
.faq-item > summary::-webkit-details-marker { display: none; }
.faq-item > summary::after {
  content: "+";
  flex: none;
  width: 28px; height: 28px;
  display: inline-flex; align-items: center; justify-content: center;
  border-radius: var(--r-pill);
  background: rgba(31, 194, 107, 0.12);
  color: var(--green-text);
  font-weight: 800;
  font-size: 1.25rem;
  transition: transform var(--t-base) var(--ease);
}
.faq-item[open] > summary::after { content: "–"; transform: rotate(180deg); }
.faq-item__body { padding: 0 1.25rem 1.2rem; }
.faq-item__body p { font-size: var(--fs-base); }

/* -------------------------------------------------------------------------
   15) CTA-BAND (kräftiger Schluss-CTA, navy)
   ------------------------------------------------------------------------- */
.cta-band {
  position: relative;
  background: var(--navy);
  color: var(--on-navy);
  overflow: hidden;
}
.cta-band::before {
  content: "";
  position: absolute; inset: 0;
  background:
    radial-gradient(80% 120% at 100% 0%, rgba(31,194,107,0.18), transparent 55%),
    radial-gradient(70% 100% at 0% 100%, rgba(74,163,255,0.10), transparent 50%);
  pointer-events: none;
}
.cta-band__inner {
  position: relative;
  display: grid;
  gap: var(--space-5);
  align-items: center;
  text-align: center;
  padding-block: var(--section-y);
}
.cta-band h2 { color: var(--white); max-width: 22ch; margin-inline: auto; }
.cta-band p { color: var(--on-navy-soft); max-width: 56ch; margin-inline: auto; }
.cta-band .actions { justify-content: center; }
@media (min-width: 900px) {
  .cta-band--split .cta-band__inner { grid-template-columns: 1.2fr auto; text-align: left; }
  .cta-band--split h2, .cta-band--split p { margin-inline: 0; }
  .cta-band--split .actions { justify-content: flex-end; }
}

/* NAP-Block (Adresse/Telefon, vertrauensbildend) */
.nap {
  display: grid;
  gap: 0.4rem;
  font-size: var(--fs-sm);
  font-style: normal;
}
.nap a { color: inherit; font-weight: 600; }
.nap a:hover { color: var(--green-text); }

/* -------------------------------------------------------------------------
   16) FOOTER (navy, 4 Spalten)
   ------------------------------------------------------------------------- */
.site-footer {
  background: var(--navy);
  color: var(--on-navy-soft);
  font-size: var(--fs-sm);
}
.site-footer a { color: var(--on-navy-soft); }
.site-footer a:hover { color: var(--white); text-decoration: none; }

.site-footer__grid {
  display: grid;
  gap: var(--space-7) var(--gutter);
  grid-template-columns: 1fr;
  padding-block: var(--space-8);
}
@media (min-width: 600px) { .site-footer__grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 900px) { .site-footer__grid { grid-template-columns: 1.4fr 1fr 1fr 1.4fr; } }

.site-footer h4 {
  color: var(--white);
  font-size: var(--fs-sm);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: var(--space-4);
}
.footer-brand img { height: 36px; width: auto; margin-bottom: var(--space-4); filter: brightness(1.05); }
.footer-brand p { color: var(--on-navy-muted); max-width: 34ch; }
.footer-brand .rating { color: var(--white); margin-top: var(--space-4); }

.footer-list { list-style: none; padding: 0; margin: 0; display: grid; gap: 0.6rem; }
.footer-list li { margin: 0; }

.footer-contact { display: grid; gap: 0.6rem; font-style: normal; }
.footer-contact .label { color: var(--on-navy-muted); font-size: var(--fs-xs); }
.footer-contact a { font-weight: 600; color: var(--white); }
.footer-contact a:hover { color: var(--green); }

.site-footer__bar {
  border-top: 1px solid rgba(255,255,255,0.10);
  padding-block: var(--space-4);
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-3) var(--space-5);
  align-items: center;
  justify-content: space-between;
  color: var(--on-navy-muted);
  font-size: var(--fs-xs);
}
.site-footer__bar nav { display: flex; flex-wrap: wrap; gap: var(--space-4); }

/* -------------------------------------------------------------------------
   17) FLOATING CALL / WHATSAPP
   ------------------------------------------------------------------------- */
.floating-actions {
  position: fixed;
  right: clamp(0.85rem, 0.5rem + 1vw, 1.5rem);
  bottom: clamp(0.85rem, 0.5rem + 1vw, 1.5rem);
  z-index: 90;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}
.fab {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px; height: 56px;
  border-radius: var(--r-pill);
  color: #fff;
  box-shadow: var(--sh-lg);
  transition: transform var(--t-fast) var(--ease), box-shadow var(--t-base) var(--ease);
}
.fab:hover { transform: translateY(-3px) scale(1.04); text-decoration: none; }
.fab .icon { width: 26px; height: 26px; }
.fab--call { background: var(--green); color: var(--navy); }
.fab--whatsapp { background: #25d366; color: #fff; }
.fab--whatsapp:hover { color: #fff; }
/* dezenter Puls am Anruf-Button */
.fab--call::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  box-shadow: 0 0 0 0 rgba(31,194,107,0.45);
  animation: fabPulse 2.4s var(--ease) infinite;
}
.fab { position: relative; }
@keyframes fabPulse {
  0%   { box-shadow: 0 0 0 0 rgba(31,194,107,0.40); }
  70%  { box-shadow: 0 0 0 14px rgba(31,194,107,0); }
  100% { box-shadow: 0 0 0 0 rgba(31,194,107,0); }
}
/* mehr Luft unten auf Mobil, damit FAB nichts verdeckt */
@media (max-width: 599px) { .site-footer__bar { padding-bottom: 5rem; } }

/* -------------------------------------------------------------------------
   18) UTILITY / KLEINTEILE
   ------------------------------------------------------------------------- */
.pill {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.35rem 0.8rem;
  border-radius: var(--r-pill);
  background: rgba(31, 194, 107, 0.12);
  color: var(--green-text);
  font-family: var(--font-head);
  font-weight: 700;
  font-size: var(--fs-xs);
  letter-spacing: 0.02em;
}
.section--navy .pill, .on-dark .pill, .hero .pill { background: rgba(31,194,107,0.16); color: var(--green); }

.divider { height: 1px; background: var(--line); border: 0; margin-block: var(--space-6); }

/* Breadcrumbs (SEO) */
.breadcrumbs {
  font-size: var(--fs-xs);
  color: var(--ink-muted);
  padding-block: var(--space-4) 0;
}
.breadcrumbs ol { list-style: none; display: flex; flex-wrap: wrap; gap: 0.45rem; padding: 0; margin: 0; }
.breadcrumbs li { margin: 0; display: inline-flex; align-items: center; gap: 0.45rem; }
.breadcrumbs li + li::before { content: "/"; color: var(--ink-muted); }
.breadcrumbs a { color: var(--ink-soft); }
.breadcrumbs a:hover { color: var(--green-text); }
.breadcrumbs [aria-current="page"] { color: var(--ink); }

/* Check-Liste (Vorteile) */
.checklist { list-style: none; padding: 0; display: grid; gap: 0.7rem; }
.checklist li { display: flex; align-items: flex-start; gap: 0.65rem; margin: 0; color: var(--ink-soft); }
.checklist li::before { content: "✓"; color: var(--green-text); font-weight: 800; flex: none; }
.section--navy .checklist li, .on-dark .checklist li { color: var(--on-navy-soft); }
.section--navy .checklist li::before, .on-dark .checklist li::before { color: var(--green); }

/* Kontakt-/Formular-Elemente (für Kontaktseite) */
.field { display: grid; gap: 0.4rem; margin-bottom: var(--space-4); }
.field > label { font-family: var(--font-head); font-weight: 600; color: var(--navy); font-size: var(--fs-sm); }
.input, .textarea, .select {
  width: 100%;
  padding: 0.85rem 1rem;
  border: 1px solid var(--line);
  border-radius: var(--r-sm);
  background: var(--white);
  color: var(--ink);
  transition: border-color var(--t-fast) var(--ease), box-shadow var(--t-fast) var(--ease);
}
.input:focus, .textarea:focus, .select:focus {
  outline: none;
  border-color: var(--green-text);
  box-shadow: 0 0 0 3px rgba(15, 157, 88, 0.18);
}
.textarea { min-height: 140px; resize: vertical; }

/* Karte/Map-Embed-Rahmen */
.map-frame { border-radius: var(--r-lg); overflow: hidden; border: 1px solid var(--line); box-shadow: var(--sh-sm); }
.map-frame iframe { display: block; width: 100%; border: 0; aspect-ratio: 16 / 10; }

/* Blog-Karten */
.post-card {
  display: flex;
  flex-direction: column;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--sh-sm);
  transition: transform var(--t-base) var(--ease), box-shadow var(--t-base) var(--ease);
}
.post-card:hover { transform: translateY(-5px); box-shadow: var(--sh-lg); }
.post-card__media { aspect-ratio: 16 / 9; overflow: hidden; }
.post-card__media img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s var(--ease); }
.post-card:hover .post-card__media img { transform: scale(1.05); }
.post-card__body { padding: var(--space-5); display: flex; flex-direction: column; gap: 0.5rem; flex: 1; }
.post-card__meta { font-size: var(--fs-xs); color: var(--ink-muted); }
.post-card__body h3 { font-size: 1.2rem; }
.post-card .link-arrow { margin-top: auto; padding-top: var(--space-3); }

/* Artikel-Typografie (Blog-Detail) */
.prose { max-width: 70ch; }
.prose h2 { margin-top: var(--space-7); margin-bottom: var(--space-3); }
.prose h3 { margin-top: var(--space-6); margin-bottom: var(--space-2); }
.prose p { margin-bottom: var(--space-4); font-size: var(--fs-lead); }
.prose ul, .prose ol { margin-bottom: var(--space-4); }
.prose img { border-radius: var(--r-md); margin-block: var(--space-5); }

/* Abstands-Helfer */
.mt-0 { margin-top: 0; }
.mt-4 { margin-top: var(--space-4); }
.mt-6 { margin-top: var(--space-6); }
.mb-0 { margin-bottom: 0; }
.gap-sm { gap: var(--space-3); }
