/* ==========================================================================
   L&S Galabau — Garten- und Landschaftsbau Bremen
   Design-System: "Ehrliche Arbeit" — Natur-Grün, warm, Trust & Authority
   Fonts: Bricolage Grotesque (Display) + Source Sans 3 (Body)
   ========================================================================== */

/* ---------- Design-Tokens ---------- */
:root {
  /* Farben */
  --green-950: #0E3B20;
  --green-900: #14532D;
  --green-700: #15803D;   /* Primär — Logo-Grün */
  --green-600: #16A34A;
  --green-500: #22C55E;
  --green-100: #DCFCE7;
  --green-50:  #F0FDF4;
  --gold-500:  #F59E0B;   /* nur noch für Bewertungs-Sterne */
  --leaf-600:  #65A30D;   /* frisches Blattgrün — CTA, passt zum Logo-Blatt */
  --leaf-500:  #84CC16;
  --leaf-400:  #A3E635;
  --cream:     #FAF8F2;   /* warmer Papier-Hintergrund */
  --cream-2:   #F4F1E8;
  --white:     #FFFFFF;
  --ink:       #16261C;   /* Text — dunkles Waldgrün-Schwarz */
  --muted:     #54655B;
  --muted-2:   #7C8B81;
  --border:    #E2E8DF;
  --error:     #DC2626;

  /* Typografie */
  --font-display: 'Bricolage Grotesque', 'Source Sans 3', system-ui, sans-serif;
  --font-body: 'Source Sans 3', system-ui, -apple-system, sans-serif;

  /* Spacing (8er-Raster) */
  --s-1: 4px;  --s-2: 8px;  --s-3: 16px; --s-4: 24px;
  --s-5: 32px; --s-6: 48px; --s-7: 64px; --s-8: 96px;

  /* Radius + Schatten */
  --r-sm: 10px; --r-md: 16px; --r-lg: 24px; --r-xl: 36px;
  --shadow-sm: 0 1px 3px rgba(22, 38, 28, 0.07), 0 1px 2px rgba(22, 38, 28, 0.05);
  --shadow-md: 0 6px 20px rgba(22, 38, 28, 0.09), 0 2px 6px rgba(22, 38, 28, 0.05);
  --shadow-lg: 0 18px 48px rgba(22, 38, 28, 0.15), 0 6px 16px rgba(22, 38, 28, 0.07);
  --shadow-cta: 0 8px 24px rgba(101, 163, 13, 0.38);

  /* Z-Index-Skala */
  --z-header: 100;
  --z-sticky-cta: 200;
  --z-lightbox: 1000;
}

/* ---------- Reset / Basis ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 1.0625rem; /* 17px — gut lesbar für alle Altersgruppen */
  line-height: 1.65;
  color: var(--ink);
  background: var(--cream);
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: var(--green-700); }
button { font-family: inherit; }
/* Touch: kein grauer Tap-Blitz — wir haben eigene :active-States */
a, button, label { -webkit-tap-highlight-color: transparent; }
:focus-visible {
  outline: 3px solid var(--green-600);
  outline-offset: 2px;
  border-radius: 4px;
}

/* Feine Papier-Textur über allem — gibt Wärme statt sterilem Weiß */
body::before {
  content: '';
  position: fixed; inset: 0;
  pointer-events: none;
  z-index: 1;
  opacity: 0.35;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2'/%3E%3CfeColorMatrix values='0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.025 0'/%3E%3C/filter%3E%3Crect width='160' height='160' filter='url(%23n)'/%3E%3C/svg%3E");
}

.skip-link {
  position: absolute; left: -9999px; top: 0;
  background: var(--green-900); color: #fff;
  padding: 12px 20px; z-index: 9999; border-radius: 0 0 var(--r-sm) 0;
  font-weight: 600; text-decoration: none;
}
.skip-link:focus { left: 0; }

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  position: relative;
  z-index: 2;
}

/* ---------- Typografie ---------- */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  line-height: 1.12;
  letter-spacing: -0.015em;
  margin: 0 0 var(--s-3);
  color: var(--green-950);
  font-weight: 700;
}
h1 { font-size: clamp(2.2rem, 6vw, 4rem); font-weight: 800; }
h2 { font-size: clamp(1.7rem, 4vw, 2.6rem); }
h3 { font-size: clamp(1.15rem, 2.5vw, 1.4rem); }
p { margin: 0 0 var(--s-3); }

.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-display);
  font-size: 0.82rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.14em;
  color: var(--green-700);
  margin-bottom: var(--s-3);
}
.eyebrow::before {
  content: ''; width: 28px; height: 2px;
  background: var(--green-600); border-radius: 2px;
}

/* Marker-Unterstreichung für Schlüsselwörter — handgemachter Touch */
.mark-green {
  position: relative; white-space: nowrap;
  z-index: 0;
}
.mark-green::after {
  content: ''; position: absolute; left: -2%; right: -2%;
  bottom: 0.08em; height: 0.32em;
  background: var(--green-100);
  z-index: -1;
  border-radius: 3px;
  transform: rotate(-0.8deg);
}

.section { padding: var(--s-8) 0; position: relative; }
@media (max-width: 920px) { .section { padding: 80px 0; } }
/* Ablauf + Abschluss-CTA haben beide Creme-Grund — ohne das doppelte
   Padding dazwischen wirkt der Übergang wie EIN ruhiger Abschnitt */
#kontakt { padding-top: 0; }
.section-head { max-width: 640px; margin-bottom: var(--s-6); }
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }
.section-head.center .eyebrow::before { display: none; }
.lead { font-size: 1.15rem; color: var(--muted); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  font-family: var(--font-display);
  font-weight: 700; font-size: 1.02rem;
  padding: 16px 30px;
  min-height: 54px;
  border-radius: 14px;
  border: none; cursor: pointer;
  text-decoration: none;
  transition: transform 0.18s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.18s, background-color 0.18s;
  touch-action: manipulation;
}
.btn:active { transform: scale(0.97); }
.btn svg { width: 20px; height: 20px; flex-shrink: 0; }

.btn-cta {
  background: linear-gradient(135deg, var(--leaf-500), var(--leaf-400));
  color: var(--green-950);
  box-shadow: var(--shadow-cta);
  animation: cta-breathe 3.2s ease-in-out infinite; /* sanftes Atmen — zieht den Blick */
}
.btn-cta:hover, .btn-cta:active {
  animation: none;
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(101, 163, 13, 0.5);
}
.btn-cta:active { transform: scale(0.97); }
@keyframes cta-breathe {
  0%, 100% { transform: scale(1); box-shadow: 0 8px 24px rgba(101, 163, 13, 0.38); }
  50%      { transform: scale(1.03); box-shadow: 0 12px 34px rgba(101, 163, 13, 0.55); }
}

.btn-primary {
  background: var(--green-700); color: #fff;
  box-shadow: 0 6px 18px rgba(21, 128, 61, 0.3);
}
.btn-primary:hover { background: var(--green-900); transform: translateY(-2px); }

.btn-outline {
  background: transparent; color: var(--green-900);
  border: 2px solid var(--green-700);
}
.btn-outline:hover { background: var(--green-50); }

.btn-ghost-light {
  background: rgba(255, 255, 255, 0.14); color: #fff;
  border: 1.5px solid rgba(255, 255, 255, 0.45);
  backdrop-filter: blur(4px);
}
.btn-ghost-light:hover { background: rgba(255, 255, 255, 0.25); }

.btn-lg { padding: 19px 38px; font-size: 1.12rem; min-height: 60px; }

/* ---------- Header ---------- */
.site-header {
  position: sticky; top: 0;
  z-index: var(--z-header);
  background: rgba(250, 248, 242, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.25s, box-shadow 0.25s;
}
.site-header.scrolled { border-bottom-color: var(--border); box-shadow: var(--shadow-sm); }
.header-inner {
  display: flex; align-items: center; gap: var(--s-4);
  padding: 12px 0;
}
.brand {
  display: flex; align-items: center; gap: 12px;
  text-decoration: none; flex-shrink: 0;
}
.brand img { height: 52px; width: auto; }
.main-nav { display: flex; gap: 6px; margin-left: auto; }
.main-nav a {
  font-family: var(--font-display);
  font-weight: 600; font-size: 0.95rem;
  color: var(--ink); text-decoration: none;
  padding: 10px 14px; border-radius: 10px;
  transition: background-color 0.15s, color 0.15s;
}
.main-nav a:hover { background: var(--green-50); color: var(--green-700); }
.header-actions { display: flex; align-items: center; gap: 10px; }
.header-phone {
  display: inline-flex; align-items: center; gap: 8px;
  font-weight: 700; color: var(--green-900);
  text-decoration: none; font-size: 0.98rem;
  padding: 10px 14px; border-radius: 10px;
  min-height: 44px;
  transition: background-color 0.15s;
}
.header-phone:hover { background: var(--green-50); }
.header-phone svg { width: 18px; height: 18px; color: var(--green-700); }
.header-cta { padding: 12px 22px; min-height: 46px; font-size: 0.95rem; }

.nav-toggle {
  display: none;
  background: none; border: none; cursor: pointer;
  width: 48px; height: 48px;
  align-items: center; justify-content: center;
  border-radius: 10px;
  color: var(--green-950);
}
.nav-toggle svg { width: 26px; height: 26px; }

/* Mobile-Nav */
@media (max-width: 920px) {
  .main-nav {
    display: none;
    position: absolute; top: 100%; left: 0; right: 0;
    background: var(--cream);
    flex-direction: column; gap: 0;
    border-bottom: 1px solid var(--border);
    box-shadow: var(--shadow-lg);
    padding: 8px 16px 16px;
  }
  .main-nav.open { display: flex; }
  .main-nav a { padding: 15px 14px; font-size: 1.05rem; border-bottom: 1px solid var(--border); border-radius: 0; }
  .main-nav a:last-child { border-bottom: none; }
  .nav-toggle { display: inline-flex; }
  /* Telefonnummer bleibt sichtbar und rückt ganz nach rechts — wichtigster Kontaktweg.
     Als grüne Pille sieht sie klar antippbar aus. */
  .header-inner { padding: 10px 0; gap: var(--s-3); }
  .header-actions { margin-left: auto; gap: 6px; }
  .header-phone {
    background: var(--green-50);
    border: 1px solid var(--green-100);
    border-radius: 999px;
    padding: 9px 14px;
    font-size: 0.92rem; gap: 6px;
    min-height: 42px;
  }
  .header-phone:active { background: var(--green-100); }
  .header-cta { display: none; }
  /* Logo etwas einrücken — gleicht das Weiß im Logo-Bild aus, Padding wirkt überall gleich */
  .brand { margin-left: 8px; }
  .brand img { height: 42px; }
  /* Burger als runder Icon-Button — bildet mit der Telefon-Pille ein sauberes Paar */
  .nav-toggle {
    width: 42px; height: 42px;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 999px;
  }
  .nav-toggle:active { background: var(--green-50); }
  .nav-toggle svg { width: 22px; height: 22px; }
}
/* Nur auf sehr schmalen Geräten weicht die Nummer dem Platz */
@media (max-width: 350px) {
  .header-phone span { display: none; }
}

/* ---------- Sticky Mobile CTA-Leiste ---------- */
.sticky-cta {
  display: none;
  position: fixed; bottom: 0; left: 0; right: 0;
  z-index: var(--z-sticky-cta);
  background: rgba(250, 248, 242, 0.96);
  backdrop-filter: blur(12px);
  border-top: 1px solid var(--border);
  padding: 10px 12px calc(10px + env(safe-area-inset-bottom));
  gap: 10px;
  box-shadow: 0 -8px 28px rgba(22, 38, 28, 0.12);
  /* erscheint erst, wenn der Hero aus dem Bild gescrollt ist (main.js setzt .show) */
  transform: translateY(110%);
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}
.sticky-cta.show { transform: translateY(0); }
.sticky-cta .btn { flex: 1; padding: 13px 10px; min-height: 52px; font-size: 0.95rem; }
@media (max-width: 920px) {
  .sticky-cta { display: flex; }
  body { padding-bottom: 76px; }
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: min(88dvh, 860px);
  display: flex; align-items: flex-end;
  isolation: isolate;
  overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0; z-index: -2;
}
.hero-bg img {
  width: 100%; height: 100%;
  object-fit: cover;
  animation: hero-zoom 18s ease-out forwards;
}
@keyframes hero-zoom {
  from { transform: scale(1.12) translate(0.8%, -0.6%); }
  to   { transform: scale(1) translate(0, 0); }
}
.hero::after {
  content: ''; position: absolute; inset: 0; z-index: -1;
  background:
    linear-gradient(180deg, rgba(14, 59, 32, 0.30) 0%, rgba(14, 59, 32, 0.12) 35%, rgba(12, 38, 22, 0.7) 78%, rgba(12, 38, 22, 1) 100%),
    linear-gradient(100deg, rgba(10, 35, 20, 0.65) 0%, transparent 62%);
}
@media (max-width: 600px) {
  /* Mobile: Bild ist Hochkant-Crop, Verlauf deutlich kräftiger —
     Überschrift + Buttons stehen auf sattem Dunkelgrün, immer lesbar */
  /* FESTE Höhe statt Viewport-Einheiten: die mobile Browser-Leiste ändert
     beim Scrollen die Viewport-Höhe — mit vh/svh wandert der unten verankerte
     Text dann sichtbar mit. Feste Pixel = nichts bewegt sich. */
  .hero { min-height: 620px; align-items: stretch; }
  .hero .container { display: flex; }
  .hero::after {
    background: linear-gradient(180deg,
      rgba(12, 38, 22, 0.42) 0%,
      rgba(12, 38, 22, 0.28) 26%,
      rgba(12, 38, 22, 0.62) 50%,
      rgba(12, 38, 22, 0.92) 74%,
      #0C2616 100%);
  }
}
.hero-content {
  padding: 140px 0 72px;
  color: #fff;
  max-width: 760px;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 10px;
  background: rgba(255, 255, 255, 0.96);
  color: var(--ink);
  border-radius: 999px;
  padding: 8px 18px 8px 10px;
  font-weight: 600; font-size: 0.92rem;
  box-shadow: var(--shadow-md);
  margin-bottom: var(--s-4);
}
.hero-badge .stars { display: inline-flex; gap: 1px; }
.hero-badge .stars svg { width: 16px; height: 16px; color: var(--gold-500); }
.hero-badge .g-logo {
  width: 26px; height: 26px; border-radius: 50%;
  background: #fff; border: 1px solid var(--border);
  display: inline-flex; align-items: center; justify-content: center;
}
.hero-badge .g-logo svg { width: 15px; height: 15px; }
.hero h1 {
  color: #fff;
  margin-bottom: var(--s-3);
  text-wrap: balance;
  font-size: clamp(2.5rem, 6.5vw, 4.5rem);
  text-shadow: 0 2px 8px rgba(8, 25, 15, 0.55), 0 8px 40px rgba(8, 25, 15, 0.45);
}
.hero h1 .accent {
  color: #BEF264; /* leuchtendes Blattgrün — Marken-Akzent, sticht sofort raus */
  text-shadow: 0 2px 8px rgba(8, 25, 15, 0.55), 0 0 36px rgba(190, 242, 100, 0.35);
}
.hero-sub {
  font-size: clamp(1.12rem, 2.3vw, 1.35rem);
  font-weight: 600;
  max-width: 580px;
  color: rgba(255, 255, 255, 0.96);
  text-shadow: 0 1px 6px rgba(8, 25, 15, 0.5);
  margin-bottom: var(--s-5);
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: var(--s-5); }
.hero-hints { display: flex; flex-wrap: wrap; gap: 18px; }
.hero-hint {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 0.92rem; font-weight: 600;
  color: rgba(255, 255, 255, 0.88);
}
.hero-hint svg { width: 17px; height: 17px; color: #A7F3C9; flex-shrink: 0; }

/* Mobile-Hero-Layout (muss NACH den Basis-Regeln stehen, sonst gewinnt das
   Desktop-Padding): Badge ganz oben unter dem Header, Rest unten — mit Luft */
@media (max-width: 600px) {
  .hero-content {
    display: flex; flex-direction: column; justify-content: flex-end;
    width: 100%;
    padding: 28px 0 44px;
  }
  .hero-badge { margin-bottom: auto; align-self: flex-start; }
  .hero h1 { margin-bottom: 14px; }
  .hero-sub { margin-bottom: 26px; }
  .hero-actions { margin-bottom: 22px; }
}

/* Staggered Reveal beim Laden */
.hero-content > * {
  opacity: 0;
  transform: translateY(18px);
  animation: rise 0.7s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}
.hero-content > *:nth-child(1) { animation-delay: 0.05s; }
.hero-content > *:nth-child(2) { animation-delay: 0.15s; }
.hero-content > *:nth-child(3) { animation-delay: 0.25s; }
.hero-content > *:nth-child(4) { animation-delay: 0.35s; }
.hero-content > *:nth-child(5) { animation-delay: 0.45s; }
@keyframes rise {
  to { opacity: 1; transform: translateY(0); }
}


/* Fallendes Laub über der ganzen Seite — dezent, löst sich nach ~14s auf */
.leaf-overlay {
  position: fixed; inset: 0;
  overflow: hidden;
  pointer-events: none;
  z-index: 90; /* über Content, unter Header (100) und Chat */
  transition: opacity 3.5s ease;
}
.leaf-overlay.dissolve { opacity: 0; }
.leaf-overlay .leaf {
  position: absolute;
  top: -40px;
  color: rgba(21, 128, 61, 0.22); /* Waldgrün, sehr dezent */
  animation: leaf-fall linear infinite;
  will-change: transform;
}
.leaf-overlay .leaf:nth-child(even) { color: rgba(132, 204, 22, 0.26); } /* Blattgrün-Mix */
.leaf-overlay .leaf svg {
  width: 100%; height: 100%;
  animation: leaf-sway ease-in-out infinite alternate;
  display: block;
}
@keyframes leaf-fall {
  from { transform: translateY(-6vh) rotate(0deg); }
  to   { transform: translateY(108vh) rotate(340deg); }
}
@keyframes leaf-sway {
  from { transform: translateX(-26px) rotate(-16deg); }
  to   { transform: translateX(26px) rotate(16deg); }
}
@media (prefers-reduced-motion: reduce) {
  .leaf-overlay { display: none; }
}

/* ---------- Trust-Bar (animierte Zahlen) ---------- */
/* Sanfter Farb-Übergang vom dunklen Hero-Grün ins helle Creme —
   die Zahlen-Karte sitzt auf dem Verlauf, ohne in den Hero zu ragen */
.trust-bar {
  padding: var(--s-6) 0 var(--s-6);
  /* nahtlos: startet exakt im Hero-Endton, läuft weich ins Creme aus */
  background: linear-gradient(180deg, #0C2616 0%, rgba(12, 38, 22, 0.6) 20%, rgba(12, 38, 22, 0.18) 45%, rgba(250, 248, 242, 0) 78%);
}
.trust-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-lg);
  padding: var(--s-5) var(--s-4);
  position: relative;
}
@media (max-width: 920px) {
  .trust-card { padding: var(--s-4) var(--s-3); }
}
.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--s-4);
  text-align: center;
}
.trust-stat {
  display: flex; flex-direction: column; align-items: center; gap: 4px;
  padding: var(--s-3) var(--s-2);
}
.stat-number {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 4.5vw, 3rem);
  font-weight: 800;
  color: var(--green-700);
  line-height: 1.05;
  letter-spacing: -0.02em;
  font-variant-numeric: tabular-nums; /* Zahlen springen beim Hochzählen nicht */
  display: inline-flex; align-items: baseline;
}
.stat-suffix { font-size: 0.65em; margin-left: 2px; color: var(--green-600); }
.stat-stars { display: inline-flex; gap: 2px; margin-top: 2px; }
.stat-stars svg { width: 16px; height: 16px; color: var(--gold-500); }
.stat-label { font-size: 0.92rem; color: var(--muted); max-width: 200px; }
@media (max-width: 920px) { .trust-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 520px) {
  .trust-grid { grid-template-columns: repeat(2, 1fr); gap: var(--s-3); }
  .stat-label { font-size: 0.82rem; }
}

/* ---------- Leistungen ---------- */
.services { background: #F2F6EF; }
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--s-4);
}
.service-card {
  position: relative;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  overflow: hidden;
  display: flex; flex-direction: column;
  box-shadow: var(--shadow-md); /* hebt die Karten sichtbar nach vorne */
  transition: transform 0.22s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.22s, border-color 0.22s;
}
.service-card:hover {
  transform: translateY(-7px);
  box-shadow: 0 24px 56px rgba(22, 38, 28, 0.18), 0 8px 20px rgba(22, 38, 28, 0.1);
  border-color: var(--green-600);
}
.service-img {
  position: relative;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: var(--green-100);
}
.service-img > img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.45s cubic-bezier(0.16, 1, 0.3, 1);
}
.service-card:hover .service-img > img { transform: scale(1.06); }
.service-body {
  padding: var(--s-4) var(--s-5) var(--s-5);
  display: flex; flex-direction: column; flex: 1;
}
.service-card p { color: var(--muted); font-size: 0.98rem; flex: 1; }
.service-link {
  display: inline-flex; align-items: center; gap: 7px;
  font-family: var(--font-display);
  font-weight: 700; font-size: 0.95rem;
  color: var(--green-700); text-decoration: none;
  min-height: 44px;
  margin-top: var(--s-2);
}
.service-link svg { width: 17px; height: 17px; transition: transform 0.18s; }
.service-link:hover svg { transform: translateX(4px); }
@media (max-width: 920px) { .services-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) {
  /* Zahlen-Karte und Leistungen rücken näher zusammen — kein totes Loch */
  .trust-bar { padding: var(--s-5) 0 var(--s-2); }
  .section.services { padding-top: 40px; }
  .services-grid { grid-template-columns: 1fr; gap: var(--s-3); }
  .service-img { aspect-ratio: 16 / 9; }
  .service-body { padding: 18px 18px 20px; }
  /* "Anfragen" wird ein voller Button — klare Tipp-Fläche, bessere Conversion */
  .service-link {
    width: 100%;
    justify-content: center;
    min-height: 50px;
    margin-top: var(--s-3);
    border: 2px solid var(--green-600);
    border-radius: 12px;
    font-size: 1rem;
  }
  .service-link:active { background: var(--green-50); transform: scale(0.98); }
}

/* ---------- Video-Galerie (Vorher/Nachher) ---------- */
.videos { background: var(--green-950); color: #fff; overflow: hidden; }
.videos .eyebrow { color: #A7F3C9; }
.videos .eyebrow::before { background: #A7F3C9; }
.videos h2 { color: #fff; }
.videos .lead { color: rgba(255, 255, 255, 0.75); }
.videos-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--s-4);
}
.video-card {
  position: relative;
  border-radius: var(--r-md);
  overflow: hidden;
  cursor: pointer;
  border: none; padding: 0;
  background: var(--green-900);
  aspect-ratio: 16 / 9;
  box-shadow: var(--shadow-md);
  transition: transform 0.22s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.22s;
}
.video-card:hover { transform: translateY(-4px) scale(1.015); box-shadow: var(--shadow-lg); }
.video-card img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease-out;
}
.video-card:hover img { transform: scale(1.05); }
/* Hover-Preview: lokaler Mini-Clip blendet über das Thumbnail */
.video-card video.video-preview {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 0.45s ease;
}
.video-card video.video-preview.playing { opacity: 1; }
.video-card::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(10, 35, 20, 0.88) 100%);
}
.video-play {
  position: absolute; top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 62px; height: 62px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.94);
  color: var(--green-700);
  display: flex; align-items: center; justify-content: center;
  z-index: 2;
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.4);
  transition: transform 0.2s, background-color 0.2s;
}
.video-play svg { width: 24px; height: 24px; margin-left: 3px; }
.video-card:hover .video-play { transform: translate(-50%, -50%) scale(1.1); background: #fff; }
.video-title {
  position: absolute; left: 0; right: 0; bottom: 0;
  z-index: 2;
  padding: 14px 16px;
  font-family: var(--font-display);
  font-weight: 600; font-size: 0.95rem;
  color: #fff; text-align: left;
  line-height: 1.35;
}
.videos-footer {
  margin-top: var(--s-6);
  display: flex; flex-wrap: wrap; align-items: center; justify-content: center;
  gap: var(--s-3);
}
.yt-link {
  display: inline-flex; align-items: center; gap: 10px;
  color: #fff; text-decoration: none;
  font-weight: 600;
  padding: 12px 22px; border-radius: 12px;
  border: 1.5px solid rgba(255, 255, 255, 0.35);
  transition: background-color 0.18s, border-color 0.18s;
  min-height: 48px;
}
.yt-link:hover { background: rgba(255, 255, 255, 0.1); border-color: #fff; }
.yt-link svg { width: 22px; height: 22px; color: #FF0033; }
@media (max-width: 920px) { .videos-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) {
  /* Untereinander: beim Scrollen sieht man jedes Projekt-Video,
     die Vorschau-Clips starten automatisch (main.js) */
  .videos-grid { grid-template-columns: 1fr; gap: var(--s-3); }
}

/* Video-Lightbox (DSGVO: YouTube lädt erst nach Klick) */
.lightbox {
  position: fixed; inset: 0;
  z-index: var(--z-lightbox);
  display: none;
  align-items: center; justify-content: center;
  background: rgba(8, 20, 13, 0.88);
  backdrop-filter: blur(8px);
  padding: 20px;
}
.lightbox.open { display: flex; }
.lightbox-inner {
  position: relative;
  width: min(1000px, 100%);
  aspect-ratio: 16 / 9;
  border-radius: var(--r-md);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  background: #000;
}
.lightbox-inner iframe {
  width: 100%; height: 100%;
  border: none; display: block;
}
.lightbox-close {
  position: absolute; top: -52px; right: 0;
  background: rgba(255, 255, 255, 0.14);
  border: 1.5px solid rgba(255, 255, 255, 0.4);
  color: #fff;
  width: 44px; height: 44px; border-radius: 50%;
  font-size: 1.4rem; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  line-height: 1;
  transition: background-color 0.15s;
}
.lightbox-close:hover { background: rgba(255, 255, 255, 0.3); }
.lightbox-wrap { position: relative; width: min(1000px, 100%); }
.lightbox-consent {
  color: rgba(255,255,255,0.65);
  font-size: 0.8rem; text-align: center;
  margin-top: 10px;
}
.lightbox-consent a { color: #A7F3C9; }

/* ---------- Über uns ---------- */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--s-7);
  align-items: center;
}
.about-photos { position: relative; }
.about-photos .photo-main {
  border-radius: var(--r-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  aspect-ratio: 4 / 4.6;
}
.about-photos .photo-main img { width: 100%; height: 100%; object-fit: cover; }
.about-photos .photo-small {
  position: absolute; right: -18px; bottom: -28px;
  width: 46%;
  border-radius: var(--r-lg);
  overflow: hidden;
  border: 5px solid var(--cream);
  box-shadow: var(--shadow-lg);
  aspect-ratio: 4 / 3;
  transform: rotate(2.5deg);
}
.about-photos .photo-small img { width: 100%; height: 100%; object-fit: cover; }
.about-badge {
  position: absolute; left: -14px; top: 26px;
  background: var(--green-700); color: #fff;
  font-family: var(--font-display);
  font-weight: 700; font-size: 0.9rem;
  border-radius: 999px;
  padding: 10px 20px;
  box-shadow: 0 8px 22px rgba(21, 128, 61, 0.4);
  transform: rotate(-3deg);
}
.about-quote {
  border-left: 4px solid var(--green-600);
  padding-left: 18px;
  font-style: italic;
  color: var(--muted);
  margin: var(--s-4) 0;
}
.about-names {
  display: flex; align-items: center; gap: 14px;
  margin-top: var(--s-4);
}
.about-names .avatar {
  width: 52px; height: 52px; border-radius: 50%;
  overflow: hidden; flex-shrink: 0;
  border: 2.5px solid var(--green-600);
}
.about-names .avatar img { width: 100%; height: 100%; object-fit: cover; }
.about-names strong { display: block; font-family: var(--font-display); color: var(--green-950); }
.about-names span { font-size: 0.88rem; color: var(--muted); }
@media (max-width: 920px) {
  .about-grid { grid-template-columns: 1fr; gap: var(--s-6); }
  .about-photos { max-width: 480px; margin: 0 auto; }
  .about-photos .photo-small { right: 0; }
}

/* ---------- Bewertungen ---------- */
.reviews { background: var(--white); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.reviews-summary {
  display: inline-flex; align-items: center; gap: 14px;
  background: var(--cream);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  padding: 14px 22px;
  margin-bottom: var(--s-6);
  box-shadow: var(--shadow-sm);
}
.reviews-summary .score {
  font-family: var(--font-display);
  font-size: 2rem; font-weight: 800;
  color: var(--green-950);
  line-height: 1;
}
.reviews-summary .stars { display: flex; gap: 2px; }
.reviews-summary .stars svg { width: 20px; height: 20px; color: var(--gold-500); }
.reviews-summary small { color: var(--muted); font-size: 0.88rem; display: block; }
/* Endlos-Marquee: Karten laufen automatisch durch (Karten werden in main.js geklont) */
.reviews-track-wrapper {
  overflow: hidden;
  -webkit-mask-image: linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%);
  mask-image: linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%);
}
.reviews-track {
  display: flex;
  gap: var(--s-4);
  width: max-content;
  animation: reviews-scroll 38s linear infinite;
}
.reviews-track:hover { animation-play-state: paused; }
@keyframes reviews-scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
.review-card {
  width: 340px;
  flex-shrink: 0;
  background: var(--cream);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: var(--s-4);
  display: flex; flex-direction: column;
  gap: 12px;
  transition: transform 0.2s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.2s;
}
.review-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.review-stars { display: flex; gap: 2px; }
.review-stars svg { width: 17px; height: 17px; color: var(--gold-500); }
.review-card blockquote {
  margin: 0; font-size: 0.97rem;
  color: var(--ink);
  flex: 1;
}
.review-meta { display: flex; align-items: center; gap: 10px; }
.review-avatar {
  width: 38px; height: 38px; border-radius: 50%;
  background: var(--green-700); color: #fff;
  font-family: var(--font-display); font-weight: 700;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.92rem;
  flex-shrink: 0;
}
.review-meta strong { display: block; font-size: 0.92rem; color: var(--green-950); }
.review-meta span { font-size: 0.78rem; color: var(--muted-2); }
.reviews-footer { text-align: center; margin-top: var(--s-6); }
@media (max-width: 768px) {
  /* Mobile: CSS-Animation aus — Wrapper wird wischbar, JS-Auto-Scroll
     läuft langsam weiter (Touch pausiert, danach geht's von selbst weiter) */
  .reviews-track-wrapper {
    overflow-x: auto;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
    -webkit-mask-image: linear-gradient(to right, transparent 0%, black 3%, black 97%, transparent 100%);
    mask-image: linear-gradient(to right, transparent 0%, black 3%, black 97%, transparent 100%);
    scrollbar-width: none;
  }
  .reviews-track-wrapper::-webkit-scrollbar { display: none; }
  .reviews-track {
    animation: none;
    transform: none !important;
  }
  .review-card { width: 280px; }
}

/* ---------- So läuft's ab ---------- */
.process-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--s-5);
  counter-reset: step;
}
.process-step {
  position: relative;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: var(--s-5);
  padding-top: var(--s-6);
}
.process-step::before {
  counter-increment: step;
  content: counter(step);
  position: absolute; top: -24px; left: var(--s-5);
  width: 52px; height: 52px;
  border-radius: 16px;
  background: linear-gradient(135deg, var(--green-700), var(--green-600));
  color: #fff;
  font-family: var(--font-display);
  font-size: 1.45rem; font-weight: 800;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 8px 20px rgba(21, 128, 61, 0.35);
}
.process-step p { color: var(--muted); font-size: 0.97rem; margin: 0; }
@media (max-width: 920px) {
  .process-grid { grid-template-columns: 1fr; gap: var(--s-6); max-width: 520px; margin: 0 auto; }
}

/* ---------- Abschluss-CTA (mit Wohlfühl-Foto) ---------- */
.final-cta {
  background: var(--green-950);
  color: #fff;
  border-radius: var(--r-xl);
  padding: clamp(40px, 7vw, 80px);
  text-align: left;
  position: relative;
  overflow: hidden;
  isolation: isolate;
}
.final-cta-bg {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: right center;
  z-index: -2;
}
/* Verlauf: links dunkel für Text, rechts bleiben die Menschen sichtbar */
.final-cta::before {
  content: '';
  position: absolute; inset: 0;
  z-index: -1;
  background: linear-gradient(97deg,
    rgba(10, 38, 21, 0.95) 0%,
    rgba(10, 38, 21, 0.85) 35%,
    rgba(10, 38, 21, 0.35) 58%,
    rgba(10, 38, 21, 0.02) 85%);
}
.final-cta-content { max-width: 560px; }
.final-cta h2 { color: #fff; }
.final-cta p { color: rgba(255, 255, 255, 0.88); margin: 0 0 var(--s-5); }
.final-cta-actions { display: flex; flex-wrap: wrap; gap: 14px; }
.final-cta .area-hint {
  margin-top: var(--s-4); margin-bottom: 0;
  font-size: 0.9rem; color: rgba(255, 255, 255, 0.7);
}
@media (max-width: 768px) {
  .final-cta { text-align: center; }
  .final-cta::before {
    background: linear-gradient(180deg, rgba(10, 38, 21, 0.93) 0%, rgba(10, 38, 21, 0.82) 60%, rgba(10, 38, 21, 0.55) 100%);
  }
  .final-cta-actions { justify-content: center; }
  .final-cta-content { margin: 0 auto; }
}

/* ---------- Footer ---------- */
.site-footer {
  padding: var(--s-7) 0 var(--s-5);
  color: var(--muted);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: var(--s-6);
  padding-bottom: var(--s-6);
  border-bottom: 1px solid var(--border);
}
.footer-brand img { height: 56px; width: auto; margin-bottom: var(--s-3); }
.footer-brand p { font-size: 0.95rem; max-width: 320px; }
.social-row { display: flex; gap: 10px; margin-top: var(--s-3); }
.social-row a {
  width: 44px; height: 44px;
  border-radius: 12px;
  background: var(--white);
  border: 1px solid var(--border);
  color: var(--green-700);
  display: inline-flex; align-items: center; justify-content: center;
  transition: transform 0.18s cubic-bezier(0.16, 1, 0.3, 1), background-color 0.18s, color 0.18s, box-shadow 0.18s;
}
.social-row a:hover {
  background: var(--green-700); color: #fff;
  transform: translateY(-3px);
  box-shadow: 0 8px 18px rgba(21, 128, 61, 0.3);
}
.social-row svg { width: 21px; height: 21px; }
.site-footer h4 { font-size: 1rem; margin-bottom: var(--s-3); }
.footer-list { list-style: none; margin: 0; padding: 0; display: grid; gap: 10px; }
.footer-list a {
  color: var(--muted); text-decoration: none;
  display: inline-flex; align-items: center; gap: 9px;
  min-height: 32px;
  transition: color 0.15s;
}
.footer-list a:hover { color: var(--green-700); }
.footer-list svg { width: 17px; height: 17px; color: var(--green-700); flex-shrink: 0; }
.footer-bottom {
  display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between;
  gap: var(--s-3);
  padding-top: var(--s-4);
  font-size: 0.85rem;
}
.footer-legal { display: flex; gap: var(--s-4); }
.footer-legal a { color: var(--muted); text-decoration: none; }
.footer-legal a:hover { color: var(--green-700); }
@media (max-width: 920px) { .footer-grid { grid-template-columns: 1fr; gap: var(--s-5); } }

/* ---------- Scroll-Journey: wachsende Ranke ---------- */
/* Eine organische Linie wächst beim Scrollen die Seite entlang —
   die "Reise" durch den Garten. Nur Desktop (≥1100px). */
/* z-index 1: Linie + Blatt liegen ÜBER Sektions-Hintergründen,
   aber UNTER allem Content (.container hat z-index 2) — die Ranke
   verschwindet so komplett hinter Karten, Fotos und Texten */
.journey-line {
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  z-index: 1;
  pointer-events: none;
  overflow: hidden;
}
.journey-line svg { display: block; width: 100%; height: 100%; overflow: visible; }
.journey-line .vine {
  fill: none;
  stroke: var(--green-600);
  stroke-opacity: 0.32; /* dezent — begleitet, stört nie */
  stroke-width: 3;
  stroke-linecap: round;
}
.journey-tip {
  position: absolute;
  width: 26px; height: 26px;
  margin: -13px 0 0 -13px;
  color: var(--green-700);
  filter: drop-shadow(0 2px 4px rgba(21, 128, 61, 0.35));
  transition: transform 0.15s linear, opacity 0.3s ease;
}
.journey-tip svg { width: 100%; height: 100%; }

@media (max-width: 1099px) {
  .journey-line { display: none; }
}
@media (prefers-reduced-motion: reduce) {
  .journey-line { display: none; }
}

/* ---------- Scroll-Reveal ---------- */
.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1), transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-d1 { transition-delay: 0.08s; }
.reveal-d2 { transition-delay: 0.16s; }
.reveal-d3 { transition-delay: 0.24s; }

/* ==========================================================================
   ANFRAGE-WIZARD
   ========================================================================== */
.wizard-page {
  min-height: 100dvh;
  display: flex; flex-direction: column;
}
.wizard-main {
  flex: 1;
  width: 100%; max-width: 760px;
  margin: 0 auto;
  padding: var(--s-5) 20px var(--s-8);
}
.wizard-progress {
  display: flex; align-items: center; gap: 8px;
  margin-bottom: var(--s-6);
}
.wizard-progress .bar {
  flex: 1; height: 8px;
  background: var(--border);
  border-radius: 99px;
  overflow: hidden;
}
.wizard-progress .bar-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--green-700), var(--green-500));
  border-radius: 99px;
  transition: width 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.wizard-progress .step-label {
  font-family: var(--font-display);
  font-size: 0.85rem; font-weight: 700;
  color: var(--green-700);
  white-space: nowrap;
}
/* Lucky-Übergabe: Hinweis, dass Chat-Angaben schon eingetragen sind */
.prefill-note {
  background: var(--green-50);
  border: 1px solid var(--green-100);
  border-radius: 12px;
  padding: 12px 16px;
  margin: -16px 0 var(--s-4);
  font-size: 0.95rem;
  color: var(--green-950);
  animation: rise 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}
.wizard-step { display: none; }
.wizard-step.active { display: block; animation: rise 0.4s cubic-bezier(0.16, 1, 0.3, 1); }
.wizard-step h1 { font-size: clamp(1.6rem, 4vw, 2.2rem); }
.wizard-step .hint { color: var(--muted); margin-bottom: var(--s-5); }

/* Leistungs-Auswahl-Karten */
.choice-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--s-3);
}
.choice-card {
  position: relative;
  display: flex; align-items: center; gap: 14px;
  background: var(--white);
  border: 2px solid var(--border);
  border-radius: var(--r-md);
  padding: 18px;
  cursor: pointer;
  min-height: 72px;
  transition: border-color 0.15s, background-color 0.15s, transform 0.15s;
}
.choice-card:hover { border-color: var(--green-600); transform: translateY(-2px); }
.choice-card input { position: absolute; opacity: 0; pointer-events: none; }
.choice-card .choice-icon {
  width: 44px; height: 44px; flex-shrink: 0;
  border-radius: 12px;
  background: var(--green-50); color: var(--green-700);
  display: flex; align-items: center; justify-content: center;
  transition: background-color 0.15s, color 0.15s;
}
.choice-card .choice-icon svg { width: 23px; height: 23px; }
.choice-card strong { font-family: var(--font-display); font-size: 1rem; color: var(--green-950); display: block; }
.choice-card small { color: var(--muted); font-size: 0.85rem; }
.choice-card .check {
  position: absolute; top: 10px; right: 10px;
  width: 24px; height: 24px; border-radius: 50%;
  background: var(--green-700); color: #fff;
  display: none; align-items: center; justify-content: center;
}
.choice-card .check svg { width: 14px; height: 14px; }
.choice-card.selected {
  border-color: var(--green-700);
  background: var(--green-50);
  box-shadow: 0 4px 14px rgba(21, 128, 61, 0.15);
}
.choice-card.selected .choice-icon { background: var(--green-700); color: #fff; }
.choice-card.selected .check { display: flex; }
.choice-card:active { transform: scale(0.98); border-color: var(--green-600); }
@media (max-width: 600px) {
  .choice-grid { grid-template-columns: 1fr; gap: 12px; }
  .choice-card { padding: 14px 16px; min-height: 68px; }
}

/* "Warum fragen wir das?" — Vertrauens-Box unter der Budget-Frage */
.why-box {
  display: flex; gap: 12px; align-items: flex-start;
  background: var(--green-50);
  border: 1px solid var(--green-100);
  border-radius: 12px;
  padding: 14px 16px;
  margin-top: 10px;
  font-size: 0.92rem;
  color: var(--muted);
  line-height: 1.55;
}
.why-box svg { width: 20px; height: 20px; color: var(--green-700); flex-shrink: 0; margin-top: 2px; }
.why-box strong { color: var(--green-950); }

/* Formular-Elemente */
.field { margin-bottom: var(--s-4); }
.field label {
  display: block;
  font-family: var(--font-display);
  font-weight: 600; font-size: 0.95rem;
  color: var(--green-950);
  margin-bottom: 8px;
}
.field label .req { color: var(--error); }
.field label .opt { color: var(--muted-2); font-weight: 400; font-size: 0.85rem; }
.field input[type="text"],
.field input[type="tel"],
.field input[type="email"],
.field select,
.field textarea {
  width: 100%;
  background: var(--white);
  border: 2px solid var(--border);
  border-radius: 12px;
  padding: 14px 16px;
  font-size: 1.05rem;
  font-family: var(--font-body);
  color: var(--ink);
  min-height: 52px;
  transition: border-color 0.15s, box-shadow 0.15s;
}
.field textarea { resize: vertical; min-height: 120px; }
/* Selects: eigener Pfeil + Cursor — sieht klar antippbar aus, öffnet zuverlässig nativ */
.field select {
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%2315803D' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  background-size: 20px;
  padding-right: 46px;
  cursor: pointer;
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none;
  border-color: var(--green-700);
  box-shadow: 0 0 0 4px rgba(21, 128, 61, 0.12);
}
.field .helper { font-size: 0.85rem; color: var(--muted-2); margin-top: 6px; }
.field.invalid input, .field.invalid textarea { border-color: var(--error); }
.field .error-msg {
  display: none;
  color: var(--error);
  font-size: 0.88rem; font-weight: 600;
  margin-top: 6px;
}
.field.invalid .error-msg { display: block; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: var(--s-3); }
@media (max-width: 600px) { .field-row { grid-template-columns: 1fr; } }

.checkbox-field {
  display: flex; align-items: flex-start; gap: 12px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 16px;
  cursor: pointer;
  margin-bottom: var(--s-4);
}
.checkbox-field input {
  width: 22px; height: 22px;
  margin: 2px 0 0;
  accent-color: var(--green-700);
  flex-shrink: 0;
  cursor: pointer;
}
.checkbox-field span { font-size: 0.92rem; color: var(--muted); }

/* Zusammenfassung */
.summary-box {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: var(--s-4);
  margin-bottom: var(--s-4);
}
.summary-row {
  display: flex; justify-content: space-between; gap: var(--s-3);
  padding: 12px 0;
  border-bottom: 1px solid var(--border);
  font-size: 0.97rem;
}
.summary-row:last-child { border-bottom: none; }
.summary-row dt { color: var(--muted); margin: 0; flex-shrink: 0; }
.summary-row dd { margin: 0; font-weight: 600; color: var(--green-950); text-align: right; }

/* Wizard-Navigation */
.wizard-nav {
  display: flex; justify-content: space-between; gap: var(--s-3);
  margin-top: var(--s-6);
}
.wizard-nav .btn-back {
  background: transparent;
  border: 2px solid var(--border);
  color: var(--muted);
}
.wizard-nav .btn-back:hover { border-color: var(--muted); color: var(--ink); }
.wizard-nav .spacer { flex: 1; }
@media (max-width: 600px) {
  /* Weiter/Absenden dominiert mit voller Daumen-Breite, Zurück bleibt kompakt */
  .wizard-nav { margin-top: var(--s-5); }
  .wizard-nav .btn-primary, .wizard-nav .btn-cta { flex: 1; min-height: 58px; }
  .wizard-nav .btn-back { flex: 0 0 auto; padding: 16px 18px; }
  .wizard-main { padding-top: var(--s-4); }
}

.wizard-trust {
  display: flex; flex-wrap: wrap; gap: 16px;
  justify-content: center;
  margin-top: var(--s-6);
  padding-top: var(--s-4);
  border-top: 1px solid var(--border);
}
.wizard-trust span {
  display: inline-flex; align-items: center; gap: 7px;
  font-size: 0.85rem; color: var(--muted);
}
.wizard-trust svg { width: 16px; height: 16px; color: var(--green-600); }

/* Submit-Spinner */
.btn .spinner {
  width: 20px; height: 20px;
  border: 2.5px solid rgba(255, 255, 255, 0.35);
  border-top-color: #fff;
  border-radius: 50%;
  animation: spin 0.7s linear infinite;
  display: none;
}
.btn-cta .spinner {
  border-color: rgba(14, 59, 32, 0.25);
  border-top-color: var(--green-950);
}
.btn.loading .spinner { display: block; }
.btn.loading .btn-text { opacity: 0.7; }
@keyframes spin { to { transform: rotate(360deg); } }

.form-feedback {
  display: none;
  border-radius: 12px;
  padding: 14px 16px;
  font-weight: 600; font-size: 0.95rem;
  margin-top: var(--s-3);
}
.form-feedback.error { display: block; background: #FEF2F2; color: var(--error); border: 1px solid #FECACA; }

/* ---------- Danke-Seite ---------- */
.thanks-hero {
  min-height: 70dvh;
  display: flex; align-items: center; justify-content: center;
  text-align: center;
  padding: var(--s-7) 20px;
}
.thanks-icon {
  width: 88px; height: 88px;
  margin: 0 auto var(--s-4);
  border-radius: 50%;
  background: var(--green-100); color: var(--green-700);
  display: flex; align-items: center; justify-content: center;
  animation: pop 0.5s cubic-bezier(0.16, 1, 0.3, 1) 0.2s both;
}
.thanks-icon svg { width: 44px; height: 44px; }
@keyframes pop {
  from { transform: scale(0.4); opacity: 0; }
  to   { transform: scale(1); opacity: 1; }
}

/* ---------- Rechtsseiten ---------- */
.legal-main {
  max-width: 760px;
  margin: 0 auto;
  padding: var(--s-6) 20px var(--s-8);
}
.legal-main h1 { font-size: clamp(1.8rem, 4vw, 2.4rem); margin-bottom: var(--s-5); }
.legal-main h2 { font-size: 1.3rem; margin-top: var(--s-6); }
.legal-main p, .legal-main li { color: var(--muted); }
.legal-main strong { color: var(--ink); }

/* ---------- Mobile-Feinschliff ---------- */
@media (max-width: 520px) {
  /* Hero: Badge kompakter, CTAs voll-breit für den Daumen */
  .hero-badge {
    flex-wrap: wrap;
    font-size: 0.82rem;
    padding: 7px 14px 7px 9px;
    gap: 8px;
  }
  .hero-badge .stars svg { width: 13px; height: 13px; }
  .hero h1 { font-size: 2.35rem; }
  .hero-sub { font-size: 1.08rem; margin-bottom: var(--s-4); }
  .hero-actions { flex-direction: column; align-items: stretch; gap: 12px; margin-bottom: var(--s-4); }
  .hero-actions .btn { width: 100%; }
  .hero-hints { gap: 10px 16px; }
  .hero-hint { font-size: 0.85rem; }

  .section { padding: var(--s-7) 0; }
  .section-head { margin-bottom: var(--s-5); }
  .lead { font-size: 1.05rem; }

  /* Stats: Zahlen kompakter nebeneinander */
  .stat-number { font-size: 2rem; }
  .stat-stars svg { width: 13px; height: 13px; }
  .stat-label { font-size: 0.85rem; }

  /* Über-uns-Fotos: kleines Foto nicht überlappen lassen */
  .about-photos .photo-small { right: 4px; bottom: -18px; }

  /* Abschluss-CTA kompakter */
  .final-cta { padding: 36px 22px; border-radius: var(--r-lg); }
  .final-cta-actions .btn { width: 100%; }

  /* Footer */
  .footer-bottom { flex-direction: column; align-items: flex-start; }
}

/* Sehr kleine Geräte (320px) */
@media (max-width: 360px) {
  .hero h1 { font-size: 2.1rem; }
  .container { padding: 0 16px; }
  .trust-grid { grid-template-columns: 1fr; }
  .trust-stat { flex-direction: row; gap: 14px; text-align: left; padding: 8px 0; }
  .stat-label { max-width: none; }
}

/* Touch-Geräte: Hover-Effekte deaktivieren, stattdessen sattes Tipp-Feedback */
@media (hover: none) {
  .service-card:hover { transform: none; }
  .video-card:hover { transform: none; }
  .review-card:hover { transform: none; }
  .video-card:active { transform: scale(0.98); }
  .yt-link:active, .btn-outline:active { background: rgba(255, 255, 255, 0.08); }
  .main-nav a:active { background: var(--green-50); color: var(--green-700); }
}

/* ---------- Reduced Motion ---------- */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  .hero-bg img { animation: none; }
  .reveal { opacity: 1; transform: none; }
  .hero-content > * { opacity: 1; transform: none; }
}
