/* =============================================================================
   FLOSSBAU.CH — Design-System CSS (Redesign 21.04.2026)
   Premium Dark Theme. Farben: Blau #6cacd1, Orange #f6a41e, Teal #7fb9c6.
   Referenz-System: Fachkraft-Jetzt Relaunch (FK Design-Token-System).
   ============================================================================= */

/* =============================================================================
   1. DESIGN TOKENS
   ============================================================================= */
:root {
  /* Brand — Flossbau Farben */
  --color-orange:        #f6a41e;
  --color-orange-light:  #f8b440;
  --color-orange-soft:   rgba(246, 164, 30, 0.18);
  --color-orange-border: rgba(246, 164, 30, 0.40);
  --color-orange-glow:   rgba(246, 164, 30, 0.25);

  --color-blue:          #6cacd1;
  --color-blue-light:    #8cc0de;
  --color-blue-soft:     rgba(108, 172, 209, 0.18);
  --color-blue-border:   rgba(108, 172, 209, 0.40);
  --color-blue-glow:     rgba(108, 172, 209, 0.22);

  --color-teal:          #7fb9c6;
  --color-teal-light:    #9acad5;
  --color-teal-soft:     rgba(127, 185, 198, 0.18);
  --color-teal-border:   rgba(127, 185, 198, 0.40);

  --color-dark-blue:     #2f5d77;

  /* Surfaces */
  --bg:                  #0a1e2e;
  --bg-deeper:           #06131e;
  --bg-card:             rgba(255, 255, 255, 0.035);
  --bg-card-hover:       rgba(255, 255, 255, 0.06);
  --bg-card-featured:    rgba(246, 164, 30, 0.05);
  --bg-nav:              rgba(10, 30, 46, 0.35);
  --bg-nav-scrolled:     rgba(10, 30, 46, 0.72);

  /* Text */
  --text:                #FFFFFF;
  --text-bright:         rgba(255, 255, 255, 0.96);
  --text-muted:          rgba(255, 255, 255, 0.72);
  --text-dim:            rgba(255, 255, 255, 0.50);
  --text-faint:          rgba(255, 255, 255, 0.30);

  /* Borders */
  --border:              rgba(255, 255, 255, 0.08);
  --border-bright:       rgba(255, 255, 255, 0.14);
  --border-hover:        rgba(108, 172, 209, 0.45);

  /* Typografie — System-Fonts (DSGVO-sicher, kein externer Aufruf) */
  --font-sans: -apple-system, BlinkMacSystemFont, "Segoe UI", "Helvetica Neue", Helvetica, Arial, sans-serif;

  /* Fluid Scale */
  --fs-h1:   clamp(38px, 5.2vw, 76px);
  --fs-h2:   clamp(28px, 3.6vw, 50px);
  --fs-h3:   clamp(20px, 2.0vw, 26px);
  --fs-lead: clamp(16px, 1.2vw, 19px);
  --fs-body: 16px;
  --fs-small: 14px;
  --fs-micro: 12px;

  /* Spacing Scale */
  --s-1: 4px;  --s-2: 8px;   --s-3: 12px;  --s-4: 16px;
  --s-5: 20px; --s-6: 24px;  --s-7: 32px;  --s-8: 40px;
  --s-9: 48px; --s-10: 64px; --s-11: 80px; --s-12: 96px;
  --s-13: 120px; --s-14: 160px;

  /* Radii */
  --r-xs: 6px;
  --r-sm: 10px;
  --r-md: 14px;
  --r-lg: 22px;
  --r-xl: 32px;
  --r-pill: 999px;

  /* Shadows */
  --shadow-card:     0 4px 30px rgba(0, 0, 0, 0.40), 0 1px 0 rgba(255, 255, 255, 0.04) inset;
  --shadow-card-lg:  0 12px 60px rgba(0, 0, 0, 0.50), 0 1px 0 rgba(255, 255, 255, 0.06) inset;
  --shadow-orange:   0 8px 40px rgba(246, 164, 30, 0.28), 0 0 100px rgba(246, 164, 30, 0.10);
  --shadow-blue:     0 8px 40px rgba(108, 172, 209, 0.22);
  --shadow-btn:      0 6px 24px rgba(246, 164, 30, 0.35);

  /* Transitions */
  --ease:     cubic-bezier(0.4, 0, 0.2, 1);
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --t-fast:   180ms var(--ease);
  --t-base:   320ms var(--ease);
  --t-slow:   560ms var(--ease-out);

  /* Layout */
  --container-max: 1200px;
  --container-pad: 24px;
  --nav-h: 72px;
}

/* =============================================================================
   2. RESET
   ============================================================================= */
*, *::before, *::after { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
  scroll-padding-top: calc(var(--nav-h) + 16px);
  overflow-x: clip;
}

body {
  margin: 0;
  font-family: var(--font-sans);
  font-size: var(--fs-body);
  line-height: 1.65;
  color: var(--text-bright);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: clip;
  min-height: 100vh;
  position: relative;
  text-rendering: optimizeLegibility;
}

h1, h2, h3, h4, h5, h6 {
  margin: 0;
  font-family: var(--font-sans);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.1;
  color: var(--text);
}

p { margin: 0; }

a {
  color: inherit;
  text-decoration: none;
  transition: color var(--t-fast);
}

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
  color: inherit;
}

img, svg { display: block; max-width: 100%; height: auto; }
ul, ol { margin: 0; padding: 0; list-style: none; }
table { border-collapse: collapse; width: 100%; }
blockquote { margin: 0; font-style: normal; }

:focus-visible {
  outline: 2px solid var(--color-blue);
  outline-offset: 3px;
  border-radius: 4px;
}

::selection {
  background: var(--color-orange);
  color: var(--bg);
}

/* Skip-Link (Accessibility) */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.sr-only--focusable:focus {
  position: fixed;
  top: 12px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 200;
  width: auto;
  height: auto;
  padding: 12px 24px;
  margin: 0;
  overflow: visible;
  clip: auto;
  background: var(--color-orange);
  color: var(--bg);
  font-weight: 700;
  font-size: 14px;
  border-radius: var(--r-pill);
  box-shadow: 0 4px 20px rgba(0,0,0,0.5);
}

/* =============================================================================
   3. CONTAINER + LAYOUT
   ============================================================================= */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding-left: var(--container-pad);
  padding-right: var(--container-pad);
  position: relative;
  z-index: 2;
}

section {
  padding: clamp(64px, 9vw, 128px) 0;
  position: relative;
  z-index: 1;
}

/* Sektions-Labels */
.section-label {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--color-teal);
  padding: 6px 14px;
  border-radius: var(--r-pill);
  background: var(--color-teal-soft);
  border: 1px solid var(--color-teal-border);
  margin-bottom: var(--s-4);
}

.section-label--orange {
  color: var(--color-orange);
  background: var(--color-orange-soft);
  border-color: var(--color-orange-border);
}

.section-h2 {
  font-size: var(--fs-h2);
  margin-top: 0;
  margin-bottom: var(--s-5);
  max-width: 820px;
}

.section-sub {
  font-size: var(--fs-lead);
  color: var(--text-muted);
  max-width: 680px;
  margin-bottom: var(--s-11);
  line-height: 1.6;
}

/* =============================================================================
   4. AMBIENT BLOBS (fixed, hinter allem)
   ============================================================================= */
.blobs {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}

.blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(140px);
  will-change: transform;
  animation: blob-float 22s ease-in-out infinite alternate;
}

.blob--blue {
  width: 60vmin;
  height: 60vmin;
  top: -12vmin;
  right: -12vmin;
  background: radial-gradient(circle, var(--color-blue) 0%, transparent 65%);
  opacity: 0.20;
  animation-duration: 26s;
}

.blob--dark {
  width: 80vmin;
  height: 80vmin;
  top: 28vh;
  left: -24vmin;
  background: radial-gradient(circle, var(--color-dark-blue) 0%, transparent 68%);
  opacity: 0.55;
  animation-duration: 32s;
  animation-delay: -10s;
}

.blob--teal {
  width: 55vmin;
  height: 55vmin;
  bottom: -10vmin;
  right: 10vmin;
  background: radial-gradient(circle, var(--color-teal) 0%, transparent 65%);
  opacity: 0.20;
  animation-duration: 28s;
  animation-delay: -16s;
}

@keyframes blob-float {
  0%   { transform: translate3d(0, 0, 0) scale(1); }
  50%  { transform: translate3d(3%, -4%, 0) scale(1.04); }
  100% { transform: translate3d(-3%, 3%, 0) scale(0.97); }
}

/* Globaler Hintergrund-Glow */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  background:
    radial-gradient(ellipse 90% 50% at 50% 0%, rgba(108, 172, 209, 0.12), transparent 55%),
    radial-gradient(ellipse 70% 50% at 50% 100%, rgba(127, 185, 198, 0.08), transparent 50%);
}

/* =============================================================================
   5. NAVIGATION — Floating Glass-Pill
   ============================================================================= */
.nav {
  position: fixed;
  top: 20px;
  left: 0;
  right: 0;
  z-index: 100;
  display: flex;
  justify-content: center;
  padding: 0 var(--container-pad);
  pointer-events: none;
  transition: top var(--t-base);
}

.nav__pill {
  pointer-events: auto;
  display: flex;
  align-items: center;
  gap: var(--s-5);
  padding: 10px 10px 10px 20px;
  background: var(--bg-nav);
  backdrop-filter: blur(24px) saturate(180%);
  -webkit-backdrop-filter: blur(24px) saturate(180%);
  border: 1px solid var(--border-bright);
  border-radius: var(--r-pill);
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.38);
  transition: background var(--t-base), border-color var(--t-base), box-shadow var(--t-base);
  max-width: calc(var(--container-max) - 16px);
  width: 100%;
}

.nav.is-scrolled .nav__pill {
  background: var(--bg-nav-scrolled);
  border-color: var(--border-bright);
}

.nav__logo {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-right: auto;
  text-decoration: none;
}

.nav__logo-text {
  font-size: 16px;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--color-blue);
  line-height: 1.1;
}

.nav__logo-sub {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-teal);
  display: block;
  margin-top: 1px;
}

.nav__logo-wave {
  width: 36px;
  height: 36px;
  background: var(--color-blue-soft);
  border: 1px solid var(--color-blue-border);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.nav__logo-wave svg {
  width: 20px;
  height: 20px;
  color: var(--color-blue-light);
}

.nav__links {
  display: flex;
  align-items: center;
  gap: 2px;
}

.nav__links a {
  font-size: 14px;
  font-weight: 500;
  color: var(--text-muted);
  padding: 8px 13px;
  border-radius: var(--r-pill);
  transition: color var(--t-fast), background var(--t-fast);
  white-space: nowrap;
}

.nav__links a:hover {
  color: var(--text);
  background: rgba(255, 255, 255, 0.06);
}

.nav__cta-pill {
  display: inline-flex;
  align-items: center;
  padding: 9px 18px;
  background: linear-gradient(135deg, var(--color-orange) 0%, var(--color-orange-light) 100%);
  border: 1.5px solid rgba(255, 255, 255, 0.20);
  color: #0a1e2e;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: -0.01em;
  border-radius: var(--r-pill);
  white-space: nowrap;
  transition: transform var(--t-fast), box-shadow var(--t-fast);
  text-decoration: none;
}

.nav__cta-pill:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-btn);
  color: #0a1e2e;
}

/* Burger */
.nav__burger {
  display: none;
  width: 42px;
  height: 42px;
  padding: 10px;
  background: rgba(255, 255, 255, 0.07);
  border-radius: var(--r-pill);
  flex-direction: column;
  justify-content: space-between;
  align-items: stretch;
  cursor: pointer;
}

.nav__burger span {
  display: block;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: transform var(--t-base), opacity var(--t-base);
}

.nav__burger[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}
.nav__burger[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}
.nav__burger[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

/* Mobile Overlay */
.nav__mobile-overlay {
  position: fixed;
  inset: 0;
  background: rgba(10, 30, 46, 0.97);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  z-index: 99;
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: var(--s-5);
  padding: var(--s-10);
}

.nav__mobile-overlay.is-open {
  display: flex;
}

.nav__mobile-close {
  position: absolute;
  top: 24px;
  right: 24px;
  width: 48px;
  height: 48px;
  font-size: 32px;
  color: var(--text);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  background: rgba(255, 255, 255, 0.07);
  border-radius: var(--r-pill);
}

.nav-mobile-link {
  font-size: 22px;
  font-weight: 600;
  color: var(--text);
  padding: 10px 24px;
  border-radius: var(--r-lg);
  transition: background var(--t-fast);
  text-decoration: none;
}

.nav-mobile-link:hover {
  background: rgba(255, 255, 255, 0.06);
}

/* =============================================================================
   6. REVEAL ANIMATIONS (IntersectionObserver)
   ============================================================================= */
/* Reveal-Animationen temporär deaktiviert — alles sofort sichtbar */
.reveal,
.reveal.is-visible {
  opacity: 1;
  transform: none;
}

.reveal-stagger > *,
.reveal-stagger.is-visible > * {
  opacity: 1;
  transform: none;
}

.reveal-stagger.is-visible > *:nth-child(1) { opacity: 1; transform: none; transition-delay: 0ms; }
.reveal-stagger.is-visible > *:nth-child(2) { opacity: 1; transform: none; transition-delay: 80ms; }
.reveal-stagger.is-visible > *:nth-child(3) { opacity: 1; transform: none; transition-delay: 160ms; }
.reveal-stagger.is-visible > *:nth-child(4) { opacity: 1; transform: none; transition-delay: 240ms; }
.reveal-stagger.is-visible > *:nth-child(5) { opacity: 1; transform: none; transition-delay: 320ms; }
.reveal-stagger.is-visible > *:nth-child(6) { opacity: 1; transform: none; transition-delay: 400ms; }

/* Gradient Text */
/* Gradient Text — Orange-to-Gold auf dunklem Hintergrund */
.gradient-text {
  background: linear-gradient(135deg, #f6a41e 0%, #f8b440 50%, #fcd34d 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent; /* Fallback-Override fuer Safari */
  display: inline;
  position: relative;
}

/* Glow hinter dem Gradient-Text */
.gradient-text::after {
  content: attr(data-text);
  position: absolute;
  left: 0; top: 0;
  background: linear-gradient(135deg, #f6a41e 0%, #f8b440 50%, #fcd34d 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  filter: blur(30px);
  opacity: 0.4;
  z-index: -1;
  pointer-events: none;
}

/* =============================================================================
   7. HERO
   ============================================================================= */
#hero {
  min-height: min(100svh, 800px);
  display: flex;
  align-items: center;
  padding-top: 120px;
  padding-bottom: 48px;
  overflow: hidden;
}

.hero__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0;
}

.hero__label-row {
  display: flex;
  justify-content: center;
  margin-bottom: var(--s-4);
}

.hero__h1 {
  font-size: var(--fs-h1);
  line-height: 1.06;
  letter-spacing: -0.035em;
  color: var(--text);
  margin-bottom: var(--s-5);
}

.hero__sub {
  font-size: var(--fs-lead);
  color: var(--text-muted);
  line-height: 1.6;
  max-width: 560px;
  margin: 0 auto var(--s-7);
}

.hero__buttons {
  display: flex;
  gap: var(--s-4);
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: var(--s-8);
}

/* Trust-Row unter Hero-Buttons */
.hero__trust {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--s-6);
  flex-wrap: wrap;
}

.hero__trust-item {
  display: flex;
  align-items: center;
  gap: var(--s-2);
  font-size: var(--fs-small);
  color: var(--text-dim);
  font-weight: 500;
}

.hero__trust-item svg {
  width: 16px;
  height: 16px;
  color: var(--color-teal);
  flex-shrink: 0;
}

/* =============================================================================
   8. TRUST-STATS (Trust-Indicators als Badge-Row)
   ============================================================================= */
#trust-stats {
  padding: clamp(40px, 5vw, 64px) 0;
}

.trust-stats__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--s-4);
}

.trust-stat {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: var(--s-7) var(--s-6);
  text-align: center;
  transition: background var(--t-fast), border-color var(--t-fast);
}

.trust-stat:hover {
  background: var(--bg-card-hover);
  border-color: var(--border-bright);
}

.trust-stat__value {
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1;
  color: var(--color-orange);
  margin-bottom: var(--s-2);
}

.trust-stat__label {
  font-size: var(--fs-small);
  color: var(--text-muted);
  font-weight: 500;
  line-height: 1.4;
}

/* =============================================================================
   9. SO FUNKTIONIERTS — Sticky Scroll Section
   ============================================================================= */
#so-funktionierts {
  /* overflow: hidden bricht position: sticky — deshalb clip statt hidden */
  overflow: clip;
}

.process__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--s-12);
  align-items: start;
}

/* Sticky linke Seite */
.process__sticky {
  position: sticky;
  top: calc(var(--nav-h) + 32px);
}

.process__sticky .section-h2 {
  margin-bottom: var(--s-6);
}

.process__sticky-sub {
  font-size: var(--fs-lead);
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: var(--s-8);
}

.process__cta-link {
  display: inline-flex;
  align-items: center;
  gap: var(--s-2);
  font-size: var(--fs-small);
  font-weight: 600;
  color: var(--color-blue);
  transition: color var(--t-fast);
}

.process__cta-link:hover { color: var(--color-blue-light); }

.process__cta-link svg {
  width: 16px;
  height: 16px;
  transition: transform var(--t-fast);
}

.process__cta-link:hover svg {
  transform: translateX(3px);
}

/* Rechte Seite — Steps */
.process__steps {
  display: flex;
  flex-direction: column;
  gap: var(--s-6);
  padding-top: var(--s-2);
}

.process__step {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: var(--s-7) var(--s-7);
  display: grid;
  grid-template-columns: 48px 1fr auto;
  gap: var(--s-5);
  align-items: flex-start;
  transition: background var(--t-base), border-color var(--t-base), transform var(--t-slow);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.process__step:hover {
  background: var(--bg-card-hover);
  border-color: var(--border-hover);
  transform: translateX(4px);
}

.process__step-num {
  width: 48px;
  height: 48px;
  border-radius: var(--r-sm);
  background: var(--color-blue-soft);
  border: 1px solid var(--color-blue-border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  font-weight: 700;
  color: var(--color-blue-light);
  flex-shrink: 0;
}

.process__step-title {
  font-size: var(--fs-h3);
  font-weight: 700;
  color: var(--text);
  margin-bottom: var(--s-2);
}

.process__step-text {
  font-size: var(--fs-small);
  color: var(--text-muted);
  line-height: 1.65;
}

/* =============================================================================
   10. PRICING — Glassmorphism Cards
   ============================================================================= */
#preise {
  position: relative;
}

.pricing__header {
  text-align: center;
  margin-bottom: var(--s-10);
}

.pricing__header .section-sub {
  margin-bottom: 0;
}

.pricing__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--s-5);
  align-items: start;
}

.pricing-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  padding: var(--s-8) var(--s-7);
  display: flex;
  flex-direction: column;
  gap: var(--s-6);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: var(--shadow-card);
  transition: border-color var(--t-base), box-shadow var(--t-base), transform var(--t-base);
  position: relative;
  overflow: hidden;
}

.pricing-card:hover {
  border-color: var(--border-bright);
  box-shadow: var(--shadow-card-lg);
  transform: translateY(-4px);
}

/* Featured Card (Firmen) */
.pricing-card--featured {
  background: var(--bg-card-featured);
  border-color: var(--color-orange-border);
  box-shadow: var(--shadow-orange);
}

.pricing-card--featured:hover {
  border-color: var(--color-orange);
  box-shadow: 0 20px 80px rgba(246, 164, 30, 0.30);
}

/* Featured Badge */
.pricing-card__badge {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #0a1e2e;
  background: var(--color-orange);
  padding: 4px 12px;
  border-radius: var(--r-pill);
  margin-bottom: var(--s-2);
}

.pricing-card__label {
  font-size: var(--fs-small);
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-dim);
  margin-bottom: var(--s-2);
}

.pricing-card__price {
  font-size: clamp(36px, 4.5vw, 52px);
  font-weight: 700;
  letter-spacing: -0.03em;
  color: var(--text);
  line-height: 1;
}

.pricing-card__price-unit {
  font-size: var(--fs-small);
  color: var(--text-muted);
  font-weight: 400;
  margin-top: var(--s-1);
}

.pricing-card__divider {
  height: 1px;
  background: var(--border);
}

.pricing-card__features {
  display: flex;
  flex-direction: column;
  gap: var(--s-3);
  flex: 1;
}

.pricing-card__feature {
  display: flex;
  align-items: flex-start;
  gap: var(--s-3);
  font-size: var(--fs-small);
  color: var(--text-muted);
  line-height: 1.5;
}

.pricing-card__feature svg {
  width: 16px;
  height: 16px;
  color: var(--color-teal);
  flex-shrink: 0;
  margin-top: 1px;
}

.pricing-card__feature strong {
  color: var(--text);
  font-weight: 600;
}

/* =============================================================================
   11. GALERIE
   ============================================================================= */
#galerie {
  position: relative;
}

.gallery__header {
  text-align: center;
  margin-bottom: var(--s-10);
}

.gallery__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: auto auto;
  gap: var(--s-3);
}

.gallery__item {
  border-radius: var(--r-md);
  overflow: hidden;
  aspect-ratio: 4/3;
  background: var(--bg-card);
  border: 1px solid var(--border);
  position: relative;
}

/* Erste zwei Items: groesser */
.gallery__item:nth-child(1) {
  grid-column: span 2;
  grid-row: span 1;
  aspect-ratio: 16/9;
}

.gallery__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 600ms var(--ease-out);
}

.gallery__item:hover img {
  transform: scale(1.04);
}

/* Platzhalter-Inhalt wenn kein Bild */
.gallery__placeholder {
  width: 100%;
  height: 100%;
  min-height: 180px;
  background: linear-gradient(135deg,
    rgba(47, 93, 119, 0.5) 0%,
    rgba(108, 172, 209, 0.2) 100%
  );
  display: flex;
  align-items: center;
  justify-content: center;
}

.gallery__placeholder svg {
  width: 32px;
  height: 32px;
  color: var(--text-faint);
}

/* =============================================================================
   12. MITBRINGEN — Checkliste
   ============================================================================= */
#mitbringen {
  position: relative;
}

.checklist-section__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--s-12);
  align-items: center;
}

.checklist__title {
  font-size: var(--fs-h2);
  margin-bottom: var(--s-4);
}

.checklist__sub {
  font-size: var(--fs-lead);
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: var(--s-8);
}

.checklist {
  display: flex;
  flex-direction: column;
  gap: var(--s-4);
}

.checklist li {
  display: flex;
  align-items: flex-start;
  gap: var(--s-4);
  font-size: var(--fs-body);
  color: var(--text-muted);
  line-height: 1.5;
}

.checklist li::before {
  content: "";
  display: block;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--color-teal-soft);
  border: 1px solid var(--color-teal-border);
  flex-shrink: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='none' stroke='%237fb9c6' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M3 8l3.5 3.5L13 4'/%3E%3C/svg%3E");
  background-size: 12px;
  background-position: center;
  background-repeat: no-repeat;
  margin-top: 2px;
}

.checklist-visual {
  position: relative;
}

.checklist-visual__card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  padding: var(--s-8);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: var(--shadow-card);
}

.checklist-visual__label {
  font-size: var(--fs-micro);
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-faint);
  margin-bottom: var(--s-4);
}

.checklist-visual__stat {
  font-size: clamp(40px, 5vw, 64px);
  font-weight: 700;
  letter-spacing: -0.04em;
  color: var(--color-orange);
  line-height: 1;
  margin-bottom: var(--s-2);
}

.checklist-visual__desc {
  font-size: var(--fs-small);
  color: var(--text-muted);
}

/* =============================================================================
   13. ALTERNATIVEN
   ============================================================================= */
#alternativen {
  position: relative;
}

.alt__header {
  text-align: center;
  margin-bottom: var(--s-10);
}

.alt__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--s-5);
}

.alt-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  padding: var(--s-8) var(--s-7);
  display: flex;
  flex-direction: column;
  gap: var(--s-5);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  transition: border-color var(--t-base), background var(--t-base), transform var(--t-base);
}

.alt-card:hover {
  border-color: var(--border-hover);
  background: var(--bg-card-hover);
  transform: translateY(-3px);
}

.alt-card__icon {
  width: 52px;
  height: 52px;
  border-radius: var(--r-md);
  background: var(--color-blue-soft);
  border: 1px solid var(--color-blue-border);
  display: flex;
  align-items: center;
  justify-content: center;
}

.alt-card__icon svg {
  width: 24px;
  height: 24px;
  color: var(--color-blue-light);
}

.alt-card__title {
  font-size: var(--fs-h3);
  font-weight: 700;
  color: var(--text);
  margin-bottom: var(--s-2);
}

.alt-card__text {
  font-size: var(--fs-small);
  color: var(--text-muted);
  line-height: 1.65;
  flex: 1;
}

/* =============================================================================
   14. CTA BANNER
   ============================================================================= */
#cta-banner {
  padding: clamp(48px, 7vw, 96px) 0;
}

.cta-banner__inner {
  background: linear-gradient(135deg,
    rgba(47, 93, 119, 0.8) 0%,
    rgba(10, 30, 46, 0.95) 100%
  );
  border: 1px solid var(--color-blue-border);
  border-radius: var(--r-xl);
  padding: clamp(48px, 7vw, 80px) clamp(32px, 6vw, 80px);
  text-align: center;
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

/* Glow hinter Banner */
.cta-banner__inner::before {
  content: "";
  position: absolute;
  inset: -1px;
  border-radius: inherit;
  background: linear-gradient(135deg,
    var(--color-orange-border) 0%,
    transparent 50%,
    var(--color-blue-border) 100%
  );
  z-index: 0;
  pointer-events: none;
}

.cta-banner__inner > * {
  position: relative;
  z-index: 1;
}

.cta-banner__h2 {
  font-size: clamp(28px, 3.8vw, 52px);
  letter-spacing: -0.03em;
  margin-bottom: var(--s-4);
}

.cta-banner__sub {
  font-size: var(--fs-lead);
  color: var(--text-muted);
  margin-bottom: var(--s-8);
}

.cta-banner__buttons {
  display: flex;
  gap: var(--s-4);
  justify-content: center;
  flex-wrap: wrap;
}

/* =============================================================================
   15. BUTTONS
   ============================================================================= */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: var(--s-2);
  padding: 14px 28px;
  background: linear-gradient(135deg, var(--color-orange) 0%, var(--color-orange-light) 100%);
  color: #0a1e2e;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: -0.01em;
  border-radius: var(--r-pill);
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: transform var(--t-fast), box-shadow var(--t-fast);
  position: relative;
  overflow: hidden;
}

.btn-primary::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.25) 0%, transparent 60%);
  border-radius: inherit;
  opacity: 0;
  transition: opacity var(--t-fast);
}

.btn-primary:hover::before {
  opacity: 1;
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 32px rgba(246, 164, 30, 0.4), 0 0 80px rgba(246, 164, 30, 0.15);
  color: #0a1e2e;
}

.btn-primary:active {
  transform: translateY(-1px);
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: var(--s-2);
  padding: 13px 26px;
  background: rgba(255, 255, 255, 0.06);
  color: var(--text);
  font-size: 15px;
  font-weight: 600;
  letter-spacing: -0.01em;
  border-radius: var(--r-pill);
  border: 1px solid var(--border-bright);
  cursor: pointer;
  text-decoration: none;
  transition: background var(--t-fast), border-color var(--t-fast), transform var(--t-fast);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.10);
  border-color: rgba(255, 255, 255, 0.25);
  transform: translateY(-2px);
  color: var(--text);
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: var(--s-2);
  padding: 13px 26px;
  background: transparent;
  color: var(--color-blue);
  font-size: 14px;
  font-weight: 600;
  border-radius: var(--r-pill);
  border: 1px solid var(--color-blue-border);
  cursor: pointer;
  text-decoration: none;
  transition: background var(--t-fast), color var(--t-fast), border-color var(--t-fast);
}

.btn-outline:hover {
  background: var(--color-blue-soft);
  border-color: var(--color-blue);
  color: var(--color-blue-light);
}

/* =============================================================================
   16. FOOTER
   ============================================================================= */
footer {
  background: var(--bg-deeper);
  border-top: 1px solid var(--border);
  padding: clamp(48px, 7vw, 80px) 0 32px;
  position: relative;
  z-index: 2;
}

.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: var(--s-10);
  margin-bottom: var(--s-10);
}

.footer__logo {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: var(--s-4);
  text-decoration: none;
}

.footer__logo-text {
  font-size: 15px;
  font-weight: 700;
  color: var(--color-blue);
  letter-spacing: -0.01em;
}

.footer__desc {
  font-size: var(--fs-small);
  color: var(--text-dim);
  line-height: 1.7;
  margin-bottom: var(--s-6);
}

.footer__social {
  display: flex;
  gap: var(--s-3);
}

.footer__social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--bg-card);
  border: 1px solid var(--border);
  color: var(--text-muted);
  transition: background var(--t-fast), border-color var(--t-fast), color var(--t-fast);
}

.footer__social a:hover {
  background: var(--color-orange-soft);
  border-color: var(--color-orange-border);
  color: var(--color-orange);
}

.footer__social svg {
  width: 16px;
  height: 16px;
}

.footer__heading {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-faint);
  margin-bottom: var(--s-5);
}

.footer__link {
  display: block;
  font-size: var(--fs-small);
  color: var(--text-dim);
  padding: 4px 0;
  transition: color var(--t-fast);
  text-decoration: none;
}

.footer__link:hover { color: var(--color-blue-light); }

.footer__bottom {
  border-top: 1px solid var(--border);
  padding-top: var(--s-6);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: var(--s-4);
}

.footer__copy {
  font-size: var(--fs-micro);
  color: var(--text-faint);
}

.footer__legal {
  display: flex;
  gap: var(--s-6);
}

.footer__legal a {
  font-size: var(--fs-micro);
  color: var(--text-faint);
  transition: color var(--t-fast);
  text-decoration: none;
}

.footer__legal a:hover { color: var(--text-muted); }

/* =============================================================================
   17. COOKIE BANNER
   ============================================================================= */
.cookie-banner {
  position: fixed;
  bottom: 20px;
  left: 20px;
  right: 20px;
  z-index: 9999;
  background: rgba(10, 30, 46, 0.95);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border: 1px solid var(--border-bright);
  border-radius: var(--r-xl);
  padding: 24px 28px;
  box-shadow: 0 16px 60px rgba(0, 0, 0, 0.50);
  transform: translateY(calc(100% + 40px));
  transition: transform 0.5s var(--ease-out);
  max-width: 900px;
  margin: 0 auto;
}

.cookie-banner--visible {
  transform: translateY(0);
}

.cookie-banner__inner {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.cookie-banner__text {
  font-size: var(--fs-small);
  color: var(--text-muted);
  line-height: 1.6;
}

.cookie-banner__text a {
  color: var(--color-blue);
  text-decoration: underline;
}

.cookie-banner__categories {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.cookie-banner__category {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: var(--fs-small);
  color: var(--text-muted);
  cursor: pointer;
}

.cookie-banner__category input[type="checkbox"] {
  width: 16px;
  height: 16px;
  accent-color: var(--color-blue);
}

.cookie-banner__buttons {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

/* Alle gleichwertig (DSG-konform) */
.cookie-banner__btn {
  padding: 10px 20px;
  font-size: var(--fs-small);
  font-weight: 600;
  border-radius: var(--r-pill);
  cursor: pointer;
  transition: all var(--t-fast);
  border: 1px solid var(--border-bright);
  font-family: inherit;
}

.cookie-banner__btn--accept {
  background: var(--color-orange);
  color: #0a1e2e;
  border-color: var(--color-orange);
}

.cookie-banner__btn--accept:hover {
  background: var(--color-orange-light);
  border-color: var(--color-orange-light);
}

.cookie-banner__btn--selected {
  background: transparent;
  color: var(--text-muted);
}

.cookie-banner__btn--selected:hover {
  background: rgba(255, 255, 255, 0.06);
  color: var(--text);
}

.cookie-banner__btn--reject {
  background: transparent;
  color: var(--text-muted);
}

.cookie-banner__btn--reject:hover {
  background: rgba(255, 255, 255, 0.06);
  color: var(--text);
}

/* =============================================================================
   18. TESTIMONIALS (section--hidden)
   ============================================================================= */
.section--hidden {
  display: none;
}

/* =============================================================================
   19. ANGEBOT-SEITE (Form-Seite Dark Theme)
   ============================================================================= */
.inquiry-section {
  padding-top: 140px;
  padding-bottom: clamp(64px, 9vw, 128px);
}

.inquiry-header {
  text-align: center;
  margin-bottom: var(--s-12);
}

.inquiry-header h1 {
  font-size: var(--fs-h2);
  margin-bottom: var(--s-4);
}

.inquiry-header p {
  font-size: var(--fs-lead);
  color: var(--text-muted);
  max-width: 580px;
  margin: 0 auto;
}

.inquiry-layout {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: var(--s-12);
  align-items: flex-start;
}

/* USPs links */
.inquiry-usps {
  display: flex;
  flex-direction: column;
  gap: var(--s-4);
  position: sticky;
  top: calc(var(--nav-h) + 24px);
}

.usp-card {
  display: flex;
  gap: var(--s-4);
  align-items: flex-start;
  padding: var(--s-5) var(--s-6);
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  transition: background var(--t-fast), border-color var(--t-fast);
}

.usp-card:hover {
  background: var(--bg-card-hover);
  border-color: var(--border-bright);
}

.usp-card__icon {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  color: var(--color-teal);
}

.usp-card__icon svg {
  width: 100%;
  height: 100%;
}

.usp-card__title {
  font-size: 14px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: var(--s-1);
}

.usp-card__text {
  font-size: var(--fs-small);
  color: var(--text-muted);
  line-height: 1.5;
}

/* Formular-Wrapper */
.inquiry-form-wrapper {
  background: var(--bg-card);
  border: 1px solid var(--border-bright);
  border-radius: var(--r-xl);
  padding: var(--s-9) var(--s-9);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: var(--shadow-card-lg);
}

/* Form Elemente */
.form-wizard {
  max-width: none;
  margin: 0;
}

.form-wizard__progress {
  display: flex;
  justify-content: space-between;
  margin-bottom: var(--s-8);
  position: relative;
}

.form-wizard__progress::before {
  content: "";
  position: absolute;
  top: 18px;
  left: 0;
  right: 0;
  height: 1px;
  background: var(--border);
  z-index: 0;
}

.form-wizard__step {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--s-2);
  position: relative;
  z-index: 1;
}

.form-wizard__step-icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--bg-card);
  border: 1px solid var(--border);
  color: var(--text-dim);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: var(--fs-small);
  transition: all var(--t-base);
}

.form-wizard__step--active .form-wizard__step-icon {
  background: var(--color-blue);
  border-color: var(--color-blue);
  color: #0a1e2e;
}

.form-wizard__step--done .form-wizard__step-icon {
  background: var(--color-orange);
  border-color: var(--color-orange);
  color: #0a1e2e;
}

.form-wizard__step-label {
  font-size: 10px;
  color: var(--text-dim);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.form-wizard__panel {
  display: none;
}

.form-wizard__panel--active {
  display: block;
  animation: fadeIn 0.3s var(--ease);
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(10px); }
  to   { opacity: 1; transform: translateY(0); }
}

.form-wizard__panel-title {
  font-size: var(--fs-h3);
  color: var(--text);
  margin-bottom: var(--s-6);
}

.form-wizard__panel-subtitle {
  font-size: var(--fs-small);
  color: var(--text-muted);
  margin-bottom: var(--s-6);
}

.form-group {
  margin-bottom: var(--s-6);
}

.form-group label {
  display: block;
  font-size: var(--fs-small);
  font-weight: 600;
  color: var(--text-muted);
  margin-bottom: var(--s-2);
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 13px 16px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border-bright);
  border-radius: var(--r-md);
  font-family: inherit;
  font-size: var(--fs-body);
  color: var(--text);
  transition: border-color var(--t-fast), box-shadow var(--t-fast);
  -webkit-appearance: none;
  appearance: none;
}

.form-group select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='none' stroke='rgba(255,255,255,0.5)' stroke-width='2'%3E%3Cpath d='M4 6l4 4 4-4'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  background-size: 16px;
  padding-right: 40px;
}

.form-group select option {
  background: #0a1e2e;
  color: var(--text);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--color-blue);
  box-shadow: 0 0 0 3px rgba(108, 172, 209, 0.20);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--text-faint);
}

.form-group textarea {
  min-height: 120px;
  resize: vertical;
}

.form-required {
  color: var(--color-orange);
}

.form-optional {
  font-weight: 400;
  color: var(--text-dim);
  font-size: 12px;
}

/* Radio Buttons */
.radio-group {
  display: flex;
  gap: var(--s-4);
  flex-wrap: wrap;
}

.radio-label {
  display: flex;
  align-items: center;
  gap: var(--s-3);
  cursor: pointer;
  font-size: var(--fs-body);
  font-weight: 500;
  color: var(--text-muted);
  padding: 11px 20px;
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  transition: all var(--t-fast);
}

.radio-label:hover {
  border-color: var(--color-blue-border);
  background: var(--color-blue-soft);
}

.radio-label:has(input:checked) {
  border-color: var(--color-blue);
  background: var(--color-blue-soft);
  color: var(--text);
}

.radio-label input[type="radio"] {
  width: auto;
  padding: 0;
  border: none;
  accent-color: var(--color-blue);
  background: transparent;
}

/* Checkbox */
.checkbox-label {
  display: flex;
  align-items: flex-start;
  gap: var(--s-3);
  cursor: pointer;
  font-size: var(--fs-small);
  line-height: 1.5;
  color: var(--text-muted);
}

.checkbox-label input[type="checkbox"] {
  width: auto;
  padding: 0;
  border: none;
  margin-top: 2px;
  flex-shrink: 0;
  accent-color: var(--color-blue);
  background: transparent;
}

.checkbox-label a {
  color: var(--color-blue);
  text-decoration: underline;
}

/* Form Nav */
.form-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: var(--s-7);
  padding-top: var(--s-6);
  border-top: 1px solid var(--border);
}

/* Form Info Box */
.form-info-box {
  display: flex;
  gap: var(--s-4);
  align-items: flex-start;
  background: var(--color-teal-soft);
  border: 1px solid var(--color-teal-border);
  border-radius: var(--r-md);
  padding: 14px 18px;
  margin-bottom: var(--s-5);
}

.form-info-box svg {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  color: var(--color-teal);
  margin-top: 1px;
}

.form-info-box p {
  font-size: var(--fs-small);
  color: var(--text-muted);
  line-height: 1.5;
}

/* Summary */
.summary {
  margin-bottom: var(--s-6);
}

.summary__section {
  padding: var(--s-5) 0;
  border-bottom: 1px solid var(--border);
}

.summary__section:last-child {
  border-bottom: none;
}

.summary__heading {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--color-orange);
  margin-bottom: var(--s-3);
  font-weight: 700;
}

.summary__row {
  display: flex;
  justify-content: space-between;
  padding: 5px 0;
  gap: var(--s-4);
}

.summary__label {
  font-size: var(--fs-small);
  color: var(--text-dim);
  flex-shrink: 0;
}

.summary__value {
  font-size: var(--fs-small);
  font-weight: 600;
  color: var(--text);
  text-align: right;
  word-break: break-word;
}

/* Validierungsfehler */
.form-group--error input,
.form-group--error select,
.form-group--error textarea {
  border-color: rgba(239, 68, 68, 0.7);
}

.form-error {
  display: block;
  color: rgba(239, 68, 68, 0.9);
  font-size: 12px;
  margin-top: var(--s-2);
  font-weight: 500;
}

/* Erfolg/Fehler-Meldung */
.form-wizard__success,
.form-wizard__error {
  text-align: center;
  padding: var(--s-10) var(--s-5);
}

.success-icon, .error-icon {
  width: 72px;
  height: 72px;
  margin: 0 auto var(--s-6);
}

.success-icon svg { color: var(--color-teal); width: 100%; height: 100%; }
.error-icon svg   { color: rgba(239, 68, 68, 0.9); width: 100%; height: 100%; }

.form-wizard__success h2 { color: var(--text); margin-bottom: var(--s-4); }
.form-wizard__success p  { color: var(--text-muted); font-size: var(--fs-lead); max-width: 480px; margin: 0 auto; }
.form-wizard__error h2   { color: rgba(239, 68, 68, 0.9); margin-bottom: var(--s-4); }
.form-wizard__error p    { color: var(--text-muted); }
.form-wizard__error a    { color: var(--color-blue); text-decoration: underline; }

.btn-submit:disabled {
  opacity: 0.65;
  cursor: not-allowed;
  transform: none;
}

/* Legal Pages */
.legal-page {
  padding-top: 130px;
  padding-bottom: 80px;
}

.legal-page h1 { font-size: var(--fs-h2); margin-bottom: var(--s-8); }
.legal-page h2 { font-size: var(--fs-h3); margin-top: var(--s-9); margin-bottom: var(--s-4); }
.legal-page h3 { font-size: 18px; margin-top: var(--s-7); margin-bottom: var(--s-3); }
.legal-page p  { font-size: var(--fs-small); line-height: 1.8; color: var(--text-muted); margin-bottom: var(--s-4); }
.legal-page a  { color: var(--color-blue); text-decoration: underline; }

.legal-page ul, .legal-page ol {
  padding-left: 20px;
  margin-bottom: var(--s-5);
}

.legal-page ul li { list-style: disc; }
.legal-page ol li { list-style: decimal; }
.legal-page li { font-size: var(--fs-small); line-height: 1.7; color: var(--text-muted); padding: 3px 0; }

/* =============================================================================
   20. NEUE KOMPONENTEN (Hero Reviews, Testimonials, Video-BG, Process-IMG, About-IMG)
   ============================================================================= */

/* Hero Video Background */
.hero__video-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}

.hero__video-bg video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero__video-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(10,30,46,0.7) 0%, rgba(10,30,46,0.9) 100%);
}

/* Hero Reviews */
.hero__reviews {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: var(--s-6);
  padding-top: var(--s-5);
  border-top: 1px solid var(--border);
}

.hero__reviews-stars {
  display: flex;
  gap: 2px;
}

.hero__reviews-text {
  font-size: 14px;
  color: var(--text-muted);
}

.hero__reviews-text strong {
  color: var(--color-orange);
  font-weight: 700;
}

.hero__reviews-link {
  font-size: 13px;
  color: var(--color-blue);
  text-decoration: none;
  font-weight: 600;
  transition: color var(--t-fast);
}

.hero__reviews-link:hover {
  color: var(--color-blue-light);
}

/* Nav Logo Image */
.nav__logo-img {
  width: 36px;
  height: 36px;
  object-fit: contain;
  border-radius: 10px;
  flex-shrink: 0;
}

/* Footer Logo Image */
.footer__logo-img {
  width: 28px;
  height: 28px;
  object-fit: contain;
  flex-shrink: 0;
}

/* Process Step Image */
.process__step-img {
  width: 56px;
  height: 56px;
  object-fit: contain;
  opacity: 0.7;
  grid-column: 3;
  grid-row: 1;
  align-self: center;
}

/* About Team Image */
.about__team-img {
  width: 100%;
  max-width: 480px;
  height: auto;
  border-radius: var(--r-xl);
  object-fit: cover;
  display: block;
  box-shadow: var(--shadow-card-lg);
  border: 1px solid var(--border);
}

/* Pricing Illustration */
.pricing__illustration {
  width: 80px;
  height: 80px;
  object-fit: contain;
  opacity: 0.60;
  margin: var(--s-5) auto 0;
  display: block;
}

/* Testimonials */
#testimonials {
  position: relative;
}

.testimonials__header {
  text-align: center;
  margin-bottom: var(--s-10);
}

.testimonials__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--s-6);
}

.t-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: var(--s-7);
  display: flex;
  flex-direction: column;
  gap: var(--s-4);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  transition: border-color var(--t-base), transform var(--t-base);
}

.t-card:hover {
  border-color: var(--color-orange-border);
  transform: translateY(-4px);
}

.t-card__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.t-card__stars {
  color: var(--color-orange);
  font-size: 16px;
  letter-spacing: 2px;
}

.t-card__source {
  font-size: 11px;
  color: var(--text-dim);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.t-card__quote {
  font-size: 15px;
  line-height: 1.6;
  color: var(--text-muted);
  font-style: normal;
  flex: 1;
}

.t-card__name {
  font-size: 13px;
  font-weight: 600;
  color: var(--text-dim);
}

.testimonials__cta {
  text-align: center;
  margin-top: var(--s-8);
}

/* =============================================================================
   21. RESPONSIVE
   ============================================================================= */
@media (max-width: 1024px) {
  .trust-stats__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .process__inner {
    grid-template-columns: 1fr;
    gap: var(--s-10);
  }

  .process__sticky {
    position: static;
  }

  .pricing__grid {
    grid-template-columns: 1fr 1fr;
  }

  .footer__grid {
    grid-template-columns: 1fr 1fr;
    gap: var(--s-8);
  }
}

@media (max-width: 768px) {
  :root {
    --container-pad: 20px;
  }

  /* Nav: nur Burger */
  .nav__links { display: none; }
  .nav__cta-pill.desktop-only { display: none; }
  .nav__burger { display: flex; }

  .nav__pill {
    padding: 10px 10px 10px 16px;
  }

  /* Hero: kompakter auf Tablet */
  .hero__trust {
    gap: var(--s-4);
  }

  /* Process: stack */
  .process__sticky .section-h2 {
    font-size: clamp(26px, 6vw, 42px);
  }

  /* Pricing: stack */
  .pricing__grid {
    grid-template-columns: 1fr;
    max-width: 480px;
    margin: 0 auto;
  }

  /* Gallery */
  .gallery__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .gallery__item:nth-child(1) {
    grid-column: span 2;
  }

  /* Checklist */
  .checklist-section__inner {
    grid-template-columns: 1fr;
    gap: var(--s-8);
  }

  /* Alternativen */
  .alt__grid {
    grid-template-columns: 1fr;
  }

  /* Footer */
  .footer__grid {
    grid-template-columns: 1fr;
    gap: var(--s-7);
  }

  .footer__bottom {
    flex-direction: column;
    text-align: center;
    gap: var(--s-4);
  }

  .footer__legal {
    flex-wrap: wrap;
    justify-content: center;
    gap: var(--s-4);
  }

  /* Testimonials */
  .testimonials__grid {
    grid-template-columns: 1fr;
  }

  /* Cookie */
  .cookie-banner {
    left: 12px;
    right: 12px;
    bottom: 12px;
  }

  .cookie-banner__buttons {
    flex-direction: column;
  }

  .cookie-banner__btn {
    width: 100%;
    text-align: center;
  }

  /* Inquiry */
  .inquiry-layout {
    grid-template-columns: 1fr;
    gap: var(--s-8);
  }

  .inquiry-usps {
    position: static;
    flex-direction: row;
    flex-wrap: wrap;
  }

  .usp-card {
    flex: 1 1 calc(50% - 8px);
    min-width: 220px;
  }

  .inquiry-form-wrapper {
    padding: var(--s-7) var(--s-6);
  }

  .form-wizard__step-label { display: none; }

  .radio-group { flex-direction: column; gap: var(--s-3); }

  .summary__row { flex-direction: column; gap: 2px; }
  .summary__value { text-align: left; }
}

@media (max-width: 480px) {
  .trust-stats__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .gallery__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--s-2);
  }

  .gallery__item:nth-child(1) {
    grid-column: span 2;
  }

  .hero__buttons {
    flex-direction: column;
    align-items: stretch;
  }

  .hero__buttons .btn-primary,
  .hero__buttons .btn-secondary {
    text-align: center;
    justify-content: center;
  }

  .cta-banner__buttons {
    flex-direction: column;
    align-items: stretch;
  }

  .cta-banner__buttons .btn-primary,
  .cta-banner__buttons .btn-secondary {
    text-align: center;
    justify-content: center;
  }

  .hero__trust {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--s-3);
  }

  .inquiry-usps {
    flex-direction: column;
  }

  .usp-card { flex: 1 1 100%; }

  .inquiry-form-wrapper { padding: var(--s-6) var(--s-5); }

  .inquiry-section { padding-top: 110px; }
}

/* =============================================================================
   21. PREFERS-REDUCED-MOTION
   ============================================================================= */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    transition-duration: 0.001ms !important;
  }

  .reveal,
  .reveal-stagger > * {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .blob {
    animation: none;
  }
}

/* =============================================================================
   22. SR-ONLY / UTILITIES
   ============================================================================= */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* Nav-CTA Bug-Fix: active-State ueberschreibt nicht Text-Farbe */
.nav__cta.nav__link--active {
  color: #0a1e2e !important;
}

/* Range Slider */
.form-group input[type="range"] {
  padding: 0;
  height: 6px;
  -webkit-appearance: none;
  appearance: none;
  background: rgba(255, 255, 255, 0.10);
  border: none;
  border-radius: 3px;
}

.form-group input[type="range"]::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--color-blue);
  cursor: pointer;
}

.range-value {
  display: inline-block;
  background: var(--color-blue-soft);
  border: 1px solid var(--color-blue-border);
  color: var(--color-blue-light);
  padding: 2px 12px;
  border-radius: var(--r-pill);
  font-weight: 700;
  font-size: var(--fs-small);
  min-width: 44px;
  text-align: center;
}

.range-labels {
  display: flex;
  justify-content: space-between;
  font-size: 11px;
  color: var(--text-faint);
  margin-top: 4px;
}

/* Form-Group Input Number ohne Spinner */
input[type="number"]::-webkit-inner-spin-button,
input[type="number"]::-webkit-outer-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

input[type="number"] {
  -moz-appearance: textfield;
  appearance: textfield;
}

/* =============================================================================
   23. LEGACY COMPATIBILITY — Unterseiten (outdoor, indoor) nutzen alte Klassen
   Diese werden schrittweise migriert. Übergangs-CSS damit alles sichtbar bleibt.
   ============================================================================= */

/* Alte Hero-Klassen der Unterseiten */
.hero {
  position: relative;
  min-height: 55vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding-top: 100px;
  padding-bottom: 48px;
  background-size: cover;
  background-position: center;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(10, 30, 46, 0.75) 0%, rgba(10, 30, 46, 0.50) 100%);
  z-index: 1;
}

.hero__content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  padding: 40px 20px;
}

.hero__subtitle {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--color-teal);
  margin-bottom: var(--s-4);
}

.hero__title {
  font-size: clamp(28px, 4.5vw, 58px);
  font-weight: 700;
  letter-spacing: -0.03em;
  color: var(--text);
  margin-bottom: var(--s-5);
  line-height: 1.1;
}

.hero__text {
  font-size: var(--fs-lead);
  color: var(--text-muted);
  margin-bottom: var(--s-7);
  line-height: 1.6;
}

.hero__buttons {
  display: flex;
  gap: var(--s-4);
  justify-content: center;
  flex-wrap: wrap;
}

/* Alte Section-Klassen */
.section {
  padding: clamp(56px, 8vw, 112px) 0;
  position: relative;
  z-index: 1;
}

.section--light {
  background: rgba(255, 255, 255, 0.025);
}

.section--dark {
  background: rgba(0, 0, 0, 0.15);
}

.section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto var(--s-10);
}

.section-header__subtitle {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--color-teal);
  margin-bottom: var(--s-3);
}

.section-header__title {
  font-size: var(--fs-h2);
  color: var(--text);
  margin-bottom: var(--s-4);
}

.section-header__text {
  color: var(--text-muted);
  font-size: var(--fs-lead);
  line-height: 1.6;
}

/* Alte Feature-Cards */
.feature-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: var(--s-8) var(--s-6);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  transition: border-color var(--t-base), background var(--t-base), transform var(--t-base);
}

.feature-card:hover {
  background: var(--bg-card-hover);
  border-color: var(--border-bright);
  transform: translateY(-4px);
}

.feature-card__icon {
  width: 56px;
  height: 56px;
  margin: 0 0 var(--s-5);
  color: var(--color-orange);
  background: var(--color-orange-soft);
  border: 1px solid var(--color-orange-border);
  border-radius: var(--r-md);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 12px;
}

.feature-card__icon svg {
  width: 100%;
  height: 100%;
}

.feature-card__title {
  font-size: var(--fs-h3);
  color: var(--text);
  margin-bottom: var(--s-3);
}

.feature-card__text {
  font-size: var(--fs-small);
  color: var(--text-muted);
  line-height: 1.65;
}

/* Animate-on-scroll (Legacy) */
.animate-on-scroll {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 500ms var(--ease-out), transform 500ms var(--ease-out);
}

.animate-on-scroll.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* Grid-System Legacy */
.grid { display: grid; gap: var(--s-6); }
.grid--2 { grid-template-columns: repeat(2, 1fr); }
.grid--3 { grid-template-columns: repeat(3, 1fr); }

@media (max-width: 768px) {
  .grid--2, .grid--3 { grid-template-columns: 1fr; }
}

/* Alte Buttons (Legacy) */
.btn {
  display: inline-flex;
  align-items: center;
  padding: 13px 26px;
  font-size: 14px;
  font-weight: 700;
  border-radius: var(--r-pill);
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: transform var(--t-fast), box-shadow var(--t-fast), background var(--t-fast);
}

.btn--primary {
  background: linear-gradient(135deg, var(--color-orange) 0%, var(--color-orange-light) 100%);
  color: #0a1e2e;
}

.btn--primary:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-btn);
  color: #0a1e2e;
}

.btn--white {
  background: rgba(255, 255, 255, 0.10);
  color: var(--text);
  border: 1px solid var(--border-bright);
  backdrop-filter: blur(8px);
}

.btn--white:hover {
  background: rgba(255, 255, 255, 0.16);
  color: var(--text);
}

.btn--outline {
  background: transparent;
  color: var(--color-blue);
  border: 1px solid var(--color-blue-border);
}

.btn--outline:hover {
  background: var(--color-blue-soft);
  border-color: var(--color-blue);
  color: var(--color-blue-light);
}

.btn--lg { padding: 16px 34px; font-size: 15px; }
.btn--sm { padding: 9px 18px; font-size: 13px; }

/* Content Block Legacy */
.content-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--s-10);
  align-items: center;
}

.content-block h2 { color: var(--text); margin-bottom: var(--s-4); }
.content-block p { color: var(--text-muted); margin-bottom: var(--s-5); line-height: 1.65; }

.content-block__image {
  border-radius: var(--r-lg);
  overflow: hidden;
  border: 1px solid var(--border);
}

@media (max-width: 768px) {
  .content-block { grid-template-columns: 1fr; gap: var(--s-8); }
}

/* Legacy Checklist */
.checklist li {
  display: flex;
  gap: var(--s-3);
  padding: var(--s-3) 0;
  font-size: var(--fs-body);
  color: var(--text-muted);
}

.checklist li::before {
  content: "✓";
  color: var(--color-orange);
  font-weight: 700;
  flex-shrink: 0;
  min-width: 20px;
}

/* Margin utilities */
.mt-2 { margin-top: var(--s-5); }
.mt-3 { margin-top: var(--s-7); }
.mt-4 { margin-top: var(--s-8); }
.mb-0 { margin-bottom: 0; }

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

/* =============================================================================
   24. TRUST-BAR — Logo-Carousel
   ============================================================================= */
#trust-bar {
  padding: clamp(32px, 4vw, 48px) 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.trust-bar__label {
  text-align: center;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-faint);
  margin-bottom: var(--s-6);
}

.trust-track {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--s-7);
  flex-wrap: wrap;
}

.trust-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 40px;
  min-width: 100px;
  padding: 0 var(--s-5);
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  font-size: var(--fs-small);
  font-weight: 600;
  color: var(--text-faint);
  letter-spacing: 0.04em;
  transition: color var(--t-fast), border-color var(--t-fast), background var(--t-fast);
}

.trust-logo:hover {
  color: var(--text-dim);
  border-color: var(--border-bright);
  background: var(--bg-card-hover);
}

/* =============================================================================
   25. USE CASES — 3 Glassmorphism-Cards
   ============================================================================= */
#use-cases {
  position: relative;
}

.use-cases__header {
  text-align: center;
  margin-bottom: var(--s-11);
}

.use-cases__header .section-h2 {
  margin: 0 auto var(--s-5);
}

.use-cases__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--s-5);
}

.use-case-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  padding: var(--s-8) var(--s-7);
  display: flex;
  flex-direction: column;
  gap: var(--s-5);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: var(--shadow-card);
  transition: border-color var(--t-base), box-shadow var(--t-base), transform var(--t-base);
  position: relative;
  overflow: hidden;
}

.use-case-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--color-teal), var(--color-blue));
  opacity: 0;
  transition: opacity var(--t-base);
}

.use-case-card:hover {
  border-color: var(--border-hover);
  box-shadow: var(--shadow-card-lg);
  transform: translateY(-5px);
}

.use-case-card:hover::before {
  opacity: 1;
}

/* Featured (mittlere Karte) */
.use-case-card--featured {
  background: var(--bg-card-featured);
  border-color: var(--color-orange-border);
  box-shadow: var(--shadow-orange);
}

.use-case-card--featured::before {
  background: linear-gradient(90deg, var(--color-orange), var(--color-orange-light));
  opacity: 1;
}

.use-case-card--featured:hover {
  border-color: var(--color-orange);
  box-shadow: 0 20px 80px rgba(246, 164, 30, 0.25);
}

.use-case-card__icon {
  width: 52px;
  height: 52px;
  border-radius: var(--r-md);
  background: var(--color-teal-soft);
  border: 1px solid var(--color-teal-border);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.use-case-card__icon svg {
  width: 24px;
  height: 24px;
  color: var(--color-teal);
}

.use-case-card--featured .use-case-card__icon {
  background: var(--color-orange-soft);
  border-color: var(--color-orange-border);
}

.use-case-card--featured .use-case-card__icon svg {
  color: var(--color-orange);
}

.use-case-card__title {
  font-size: var(--fs-h3);
  font-weight: 700;
  color: var(--text);
  margin: 0;
}

.use-case-card__text {
  font-size: var(--fs-small);
  color: var(--text-muted);
  line-height: 1.65;
  flex: 1;
}

.use-case-card__link {
  display: inline-flex;
  align-items: center;
  gap: var(--s-2);
  font-size: var(--fs-small);
  font-weight: 600;
  color: var(--color-teal);
  transition: color var(--t-fast), gap var(--t-fast);
  margin-top: auto;
}

.use-case-card__link svg {
  width: 14px;
  height: 14px;
  transition: transform var(--t-fast);
}

.use-case-card__link:hover {
  color: var(--color-teal-light);
}

.use-case-card__link:hover svg {
  transform: translateX(3px);
}

.use-case-card--featured .use-case-card__link {
  color: var(--color-orange);
}

.use-case-card--featured .use-case-card__link:hover {
  color: var(--color-orange-light);
}

/* =============================================================================
   26. BENEFITS — 6er-Grid mit Icons
   ============================================================================= */
#benefits {
  position: relative;
}

.benefits__header {
  text-align: center;
  margin-bottom: var(--s-11);
}

.benefits__header .section-h2 {
  margin: 0 auto var(--s-5);
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--s-5);
}

.benefit-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: var(--s-7) var(--s-6);
  display: flex;
  flex-direction: column;
  gap: var(--s-4);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  transition: background var(--t-base), border-color var(--t-base), transform var(--t-slow);
}

.benefit-card:hover {
  background: var(--bg-card-hover);
  border-color: var(--border-hover);
  transform: translateY(-3px);
}

.benefit-card__icon {
  width: 48px;
  height: 48px;
  border-radius: var(--r-sm);
  background: var(--color-blue-soft);
  border: 1px solid var(--color-blue-border);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.benefit-card__icon svg {
  width: 22px;
  height: 22px;
  color: var(--color-blue-light);
}

/* Shield-Icon erhält Orange-Akzent */
.benefit-card__icon--shield {
  background: var(--color-orange-soft);
  border-color: var(--color-orange-border);
}

.benefit-card__icon--shield svg {
  color: var(--color-orange);
}

.benefit-card__title {
  font-size: 15px;
  font-weight: 700;
  color: var(--text);
  margin: 0;
  line-height: 1.3;
}

.benefit-card__text {
  font-size: var(--fs-small);
  color: var(--text-muted);
  line-height: 1.65;
  margin: 0;
}

/* =============================================================================
   27. GARANTIEN — 4er-Grid mit Glow-Cards
   ============================================================================= */
#garantien {
  position: relative;
}

.guarantees__header {
  text-align: center;
  margin-bottom: var(--s-11);
}

.guarantees__header .section-h2 {
  margin: 0 auto var(--s-5);
}

.guarantees-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--s-5);
}

.g-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  padding: var(--s-8) var(--s-7);
  display: flex;
  gap: var(--s-6);
  align-items: flex-start;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: var(--shadow-card);
  transition: border-color var(--t-base), box-shadow var(--t-base), transform var(--t-base);
}

.g-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-card-lg);
}

/* Wettergarantie-Karte: Orange-Glow */
.g-card--shield {
  background: var(--bg-card-featured);
  border-color: var(--color-orange-border);
  box-shadow: var(--shadow-orange);
}

.g-card--shield:hover {
  border-color: var(--color-orange);
  box-shadow: 0 16px 60px rgba(246, 164, 30, 0.22);
}

.g-card__icon {
  width: 56px;
  height: 56px;
  border-radius: var(--r-md);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  background: var(--color-teal-soft);
  border: 1px solid var(--color-teal-border);
}

.g-card__icon svg {
  width: 26px;
  height: 26px;
  color: var(--color-teal);
}

.g-card--shield .g-card__icon {
  background: var(--color-orange-soft);
  border-color: var(--color-orange-border);
}

.g-card--shield .g-card__icon svg {
  color: var(--color-orange);
}

.g-card__content {
  flex: 1;
}

.g-card__title {
  font-size: 18px;
  font-weight: 700;
  color: var(--text);
  margin: 0 0 var(--s-3);
  line-height: 1.2;
}

.g-card__text {
  font-size: var(--fs-small);
  color: var(--text-muted);
  line-height: 1.65;
  margin: 0;
}

/* =============================================================================
   28. FAQ — Accordion
   ============================================================================= */
#faq {
  position: relative;
}

.faq__header {
  text-align: center;
  margin-bottom: var(--s-11);
}

.faq__header .section-h2 {
  margin: 0 auto var(--s-5);
}

.faq__list {
  max-width: 820px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: var(--s-2);
}

.faq-item {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  overflow: hidden;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  transition: border-color var(--t-base), box-shadow var(--t-base);
}

.faq-item.is-open {
  border-color: var(--color-blue-border);
  box-shadow: 0 4px 30px var(--color-blue-glow);
}

.faq-item__q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--s-4);
  padding: var(--s-6) var(--s-7);
  font-size: 16px;
  font-weight: 600;
  color: var(--text);
  text-align: left;
  cursor: pointer;
  background: transparent;
  border: none;
  font-family: inherit;
  transition: color var(--t-fast);
  line-height: 1.4;
}

.faq-item__q:hover {
  color: var(--color-blue-light);
}

.faq-item.is-open .faq-item__q {
  color: var(--color-blue-light);
}

.faq-item__chevron {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  color: var(--text-dim);
  transition: transform var(--t-base), color var(--t-base);
}

.faq-item__chevron svg {
  width: 100%;
  height: 100%;
  display: block;
}

.faq-item.is-open .faq-item__chevron {
  transform: rotate(180deg);
  color: var(--color-blue);
}

.faq-item__a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 400ms cubic-bezier(0.16, 1, 0.3, 1);
}

.faq-item.is-open .faq-item__a {
  max-height: 400px;
}

.faq-item__a p {
  padding: 0 var(--s-7) var(--s-7);
  font-size: var(--fs-small);
  color: var(--text-muted);
  line-height: 1.7;
  border-top: 1px solid var(--border);
  padding-top: var(--s-5);
  margin-top: 0;
}

.faq-item__a p strong {
  color: var(--text);
  font-weight: 600;
}

/* =============================================================================
   29. ÜBER UNS — 2-Spalten mit Bild-Placeholder
   ============================================================================= */
#ueber-uns {
  position: relative;
}

.about__inner {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: var(--s-12);
  align-items: center;
}

.about__media {
  display: flex;
  flex-direction: column;
  gap: var(--s-6);
}

.about__image-placeholder {
  width: 100%;
  aspect-ratio: 4/5;
  background: linear-gradient(135deg,
    rgba(47, 93, 119, 0.6) 0%,
    rgba(108, 172, 209, 0.25) 100%
  );
  border: 1px solid var(--border-bright);
  border-radius: var(--r-xl);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: var(--s-3);
  color: var(--text-dim);
  position: relative;
  overflow: hidden;
}

.about__image-placeholder svg {
  width: 56px;
  height: 56px;
  color: var(--text-faint);
}

.about__image-placeholder span {
  font-size: var(--fs-small);
  color: var(--text-faint);
  font-weight: 500;
}

/* Echtes Bild — wenn vorhanden */
.about__image-placeholder img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about__pills {
  display: flex;
  flex-wrap: wrap;
  gap: var(--s-2);
}

/* hero__pill als Trust-Pill wiederverwendet */
.hero__pill {
  display: inline-block;
  font-size: 12px;
  font-weight: 600;
  padding: 6px 14px;
  border-radius: var(--r-pill);
  background: var(--color-blue-soft);
  border: 1px solid var(--color-blue-border);
  color: var(--color-blue-light);
  letter-spacing: 0.01em;
  white-space: nowrap;
}

.about__content {
  display: flex;
  flex-direction: column;
  gap: var(--s-5);
}

.about__content .section-label {
  align-self: flex-start;
}

.about__content .section-h2 {
  margin-bottom: 0;
}

.about__content p {
  font-size: var(--fs-lead);
  color: var(--text-muted);
  line-height: 1.7;
}

.about__cta-row {
  display: flex;
  gap: var(--s-4);
  flex-wrap: wrap;
  margin-top: var(--s-3);
}

/* =============================================================================
   30. RESPONSIVE — Neue Sektionen
   ============================================================================= */
@media (max-width: 1024px) {
  .use-cases__grid {
    grid-template-columns: 1fr 1fr;
  }

  .use-cases__grid .use-case-card:nth-child(3) {
    grid-column: span 2;
    max-width: 480px;
    justify-self: center;
  }

  .benefits-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .about__inner {
    grid-template-columns: 1fr 1.2fr;
    gap: var(--s-10);
  }
}

@media (max-width: 768px) {
  /* Trust Bar */
  .trust-track {
    gap: var(--s-4);
  }

  .trust-logo {
    min-width: 80px;
    font-size: 12px;
    padding: 0 var(--s-4);
  }

  /* Use Cases */
  .use-cases__grid {
    grid-template-columns: 1fr;
  }

  .use-cases__grid .use-case-card:nth-child(3) {
    grid-column: span 1;
    max-width: none;
    justify-self: stretch;
  }

  /* Benefits */
  .benefits-grid {
    grid-template-columns: 1fr 1fr;
    gap: var(--s-4);
  }

  /* Garantien */
  .guarantees-grid {
    grid-template-columns: 1fr;
  }

  .g-card {
    flex-direction: column;
    gap: var(--s-4);
  }

  /* FAQ */
  .faq-item__q {
    font-size: 15px;
    padding: var(--s-5) var(--s-6);
  }

  .faq-item__a p {
    padding: 0 var(--s-6) var(--s-6);
    padding-top: var(--s-4);
  }

  /* About */
  .about__inner {
    grid-template-columns: 1fr;
    gap: var(--s-8);
  }

  .about__image-placeholder {
    aspect-ratio: 16/9;
  }

  .about__cta-row {
    flex-direction: column;
  }

  .about__cta-row .btn-primary,
  .about__cta-row .btn-secondary {
    width: 100%;
    justify-content: center;
  }
}

@media (max-width: 480px) {
  /* Benefits auf 1 Spalte */
  .benefits-grid {
    grid-template-columns: 1fr;
  }

  /* FAQ: kleinere Schrift */
  .faq-item__q {
    font-size: 14px;
    padding: var(--s-4) var(--s-5);
  }

  .faq-item__a p {
    padding: 0 var(--s-5) var(--s-5);
    padding-top: var(--s-3);
  }

  /* Pills */
  .about__pills {
    gap: var(--s-2);
  }
}


/* =============================================================================
   NEUE SEKTIONEN — 21.04.2026
   Standort-Zonen, Alternative Events Teaser, Team-Erweiterung, Garantie-Detail
   ============================================================================= */

/* --- Team-Sektion Header --- */
.team__header {
  text-align: center;
  margin-bottom: var(--s-10);
}

.about__name {
  font-size: var(--fs-h2);
  font-weight: 800;
  margin-bottom: var(--s-4);
  color: var(--text);
}

.about__trainers {
  margin: var(--s-5) 0 var(--s-6);
  padding: var(--s-4) var(--s-5);
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
}

.about__trainers-text {
  font-size: 14px;
  color: var(--text-muted);
  margin: 0;
}

.about__trainers-text strong {
  color: var(--text);
}

/* --- Standort-Zonen --- */
#standorte {
  padding: var(--s-section) 0;
}

.standorte__header {
  text-align: center;
  margin-bottom: var(--s-10);
}

.standorte__sub {
  font-size: var(--fs-lead);
  color: var(--text-muted);
  max-width: 600px;
  margin: var(--s-4) auto 0;
}

.zones__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--s-6);
}

.zone-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: var(--s-7);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  text-align: center;
  transition: border-color 0.3s ease, transform 0.3s ease;
}

.zone-card:hover {
  border-color: var(--border-hover);
  transform: translateY(-4px);
}

.zone-card--featured {
  border-color: var(--color-orange-border);
  background: var(--bg-card-featured);
}

.zone-card__badge {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-teal);
  padding: 4px 12px;
  border-radius: var(--r-pill);
  background: var(--color-teal-soft);
  border: 1px solid var(--color-teal-border);
  margin-bottom: var(--s-4);
}

.zone-card--featured .zone-card__badge {
  color: var(--color-orange);
  background: var(--color-orange-soft);
  border-color: var(--color-orange-border);
}

.zone-card__price {
  font-size: var(--fs-h3);
  font-weight: 800;
  color: var(--text);
  margin-bottom: var(--s-1);
}

.zone-card__label {
  font-size: var(--fs-small);
  color: var(--text-dim);
  margin-bottom: var(--s-5);
}

.zone-card__lakes {
  list-style: none;
  padding: 0;
  margin: 0;
}

.zone-card__lakes li {
  font-size: 14px;
  color: var(--text-muted);
  padding: 6px 0;
  border-bottom: 1px solid var(--border);
}

.zone-card__lakes li:last-child {
  border-bottom: none;
}

.standorte__note {
  text-align: center;
  color: var(--text-dim);
  font-size: var(--fs-small);
  margin-top: var(--s-7);
}

/* --- Alternative Events Teaser --- */
#alternativen-teaser {
  padding: var(--s-section) 0;
}

.alt-teaser {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  padding: var(--s-10);
  display: flex;
  align-items: center;
  gap: var(--s-10);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.alt-teaser__content {
  flex: 1;
}

.alt-teaser__content .section-h2 {
  margin-top: var(--s-3);
  margin-bottom: 0;
}

.alt-teaser__content p {
  color: var(--text-muted);
  font-size: var(--fs-lead);
  margin-top: var(--s-4);
  margin-bottom: 0;
}

.alt-teaser__buttons {
  display: flex;
  flex-direction: column;
  gap: var(--s-4);
  flex-shrink: 0;
}

.alt-teaser__buttons .btn-secondary {
  display: flex;
  align-items: center;
  gap: var(--s-2);
  white-space: nowrap;
}

/* --- Garantie Detail --- */
.garantie-detail {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: var(--s-7);
  margin-top: var(--s-8);
}

.garantie-detail h3 {
  font-size: var(--fs-h3);
  font-weight: 700;
  color: var(--text);
  margin-bottom: var(--s-4);
  margin-top: 0;
}

.garantie-detail ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.garantie-detail li {
  padding: var(--s-3) 0;
  color: var(--text-muted);
  font-size: 15px;
  border-bottom: 1px solid var(--border);
}

.garantie-detail li:last-child {
  border-bottom: none;
}

.garantie-detail strong {
  color: var(--text);
}

/* --- Responsive: Neue Sektionen --- */
@media (max-width: 768px) {
  .zones__grid {
    grid-template-columns: 1fr;
    max-width: 400px;
    margin: 0 auto;
  }

  .alt-teaser {
    flex-direction: column;
    padding: var(--s-7);
    gap: var(--s-6);
  }

  .alt-teaser__buttons {
    flex-direction: row;
    width: 100%;
  }

  .alt-teaser__buttons .btn-secondary {
    flex: 1;
    justify-content: center;
  }

  .garantie-detail {
    padding: var(--s-5);
  }
}
