/* ================================================
   STARLINK PREMIUM — Autark Innovations v4.0 (Clean)
   "Where Starlink meets Solar"
   Palette: Deep Space Navy / Gold / Electric Blue
   Cleaned: 2026-03-29 — Removed dead rules, merged overrides
   ================================================ */
body { overscroll-behavior-y: contain; }

/* ==========================================================================
   1. RESET & ROOT VARIABLES
   ========================================================================== */

:root {
  /* --- Core: Deep Space Navy --- */
  --bg-deep: #060b18;
  --bg-mid: #0a0f1f;
  --bg-footer: #040812;
  --bg-surface: #0d1328;

  /* --- Primary: Solar Gold --- */
  --gold: #F5A623;
  --gold-dark: #E8960F;
  --gold-light: #FFD166;
  --gold-glow: rgba(245, 166, 35, 0.25);
  --gold-glow-strong: rgba(245, 166, 35, 0.5);

  /* --- Secondary: Electric Blue --- */
  --blue: #3B82F6;
  --blue-light: #60A5FA;
  --blue-deep: #1E40AF;
  --blue-glow: rgba(59, 130, 246, 0.2);
  --blue-glow-strong: rgba(59, 130, 246, 0.4);

  /* --- Semantic --- */
  --error: #ef4444;
  --success: #00e676;

  /* --- Text (FINAL values after all rounds) --- */
  --white: #ffffff;
  --text: rgba(255, 255, 255, 0.93);
  --text-muted: rgba(208, 228, 244, 0.85);
  --text-faint: rgba(208, 228, 244, 0.70);

  /* --- Glass --- */
  --glass-bg: rgba(13, 19, 40, 0.6);
  --glass-bg-hover: rgba(20, 28, 58, 0.7);
  --glass-border: rgba(59, 130, 246, 0.1);
  --glass-border-hover: rgba(59, 130, 246, 0.25);

  /* --- Radius --- */
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --radius-pill: 50px;

  /* --- Motion --- */
  --ease: cubic-bezier(0.4, 0, 0.2, 1);
  --ease-out: cubic-bezier(0, 0, 0.2, 1);
  --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);

  /* --- Neutral text helpers --- */
  --gray: rgba(255, 255, 255, 0.45);
  --gray-light: rgba(255, 255, 255, 0.55);
  --gray-dark: rgba(255, 255, 255, 0.35);
}

/* ==========================================================================
   2. BASE ELEMENTS
   ========================================================================== */

/* body::after = Deep space nebula glow (body::before is DISABLED) */
body::after {
  will-change: transform;
}

/* ==========================================================================
   3. TYPOGRAPHY
   ========================================================================== */

h1, h2, h3, h4 {
  line-height: 1.1;
  color: var(--white);
}

h2 {
  font-size: clamp(1.8rem, 4vw, 3rem);
  font-weight: 800;
  letter-spacing: -0.02em;
}

h3 {
  font-size: clamp(1.1rem, 2vw, 1.4rem);
  font-weight: 700;
}

h4 {
  font-size: 0.95rem;
  font-weight: 700;
}

p, li {
  line-height: 1.75;
  color: var(--text-muted);
}

a:not(.btn-primary):not(.btn-secondary):not(.nav-links a):not(.nav-cta) {
  transition: color 0.2s ease;
}

.section-label {
  font-size: 0.78rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 700;
  margin-bottom: 0.6rem;
  display: inline-block;
  position: relative;
  padding-left: 1.2rem;
}

.section-label::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 4px;
  height: 100%;
  background: linear-gradient(180deg, var(--gold), var(--blue));
  border-radius: 2px;
}

.section-title {
  margin-bottom: 0.6rem;
  color: var(--white);
  text-shadow: 0 2px 30px rgba(0, 0, 0, 0.2);
}

.section-subtitle {
  max-width: 520px;
  margin: 0 auto;
  font-size: 1rem;
  color: var(--text-muted);
}

.section-header {
  text-align: center;
  margin-bottom: 3rem;
}

/* ==========================================================================
   4. FOCUS STYLES (Accessibility)
   ========================================================================== */

:focus-visible {
  outline: 2px solid rgba(245, 166, 35, 0.9);
  outline-offset: 2px;
  border-radius: 4px;
}

.nav-links a:focus-visible {
  outline-offset: 0;
  background: rgba(59, 130, 246, 0.1);
}

.btn-primary:focus-visible,
.btn-gold:focus-visible {
  outline: 3px solid var(--white) !important;
  outline-offset: 3px !important;
}

/* ==========================================================================
   5. STARFIELD (HTML stars for extra depth)
   ========================================================================== */

.starfield .star {
  position: absolute;
  width: 2px;
  height: 2px;
  background: #fff;
  border-radius: 50%;
  animation: twinkle var(--dur, 4s) ease-in-out infinite;
  opacity: 0;
}

.starfield .star:nth-child(3n) {
  background: var(--blue-light);
  width: 2.5px;
  height: 2.5px;
}

.starfield .star:nth-child(7n) {
  background: var(--gold);
  width: 3px;
  height: 3px;
  box-shadow: 0 0 6px var(--gold-glow);
}

/* ==========================================================================
   6. NEBULA (Blue + Gold cosmic glow — only 1+2 active)
   ========================================================================== */

.nebula {
  position: fixed;
  pointer-events: none;
  z-index: 0;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  filter: blur(60px);
  will-change: transform;
}

.nebula-1 {
  top: -150px;
  right: -100px;
  background: radial-gradient(circle, var(--blue), transparent 70%);
  animation: nebulaFloat 20s ease-in-out infinite;
  opacity: 0.15;
}

.nebula-2 {
  bottom: -200px;
  left: -150px;
  background: radial-gradient(circle, var(--gold), transparent 70%);
  animation: nebulaFloat 25s ease-in-out 5s infinite reverse;
  opacity: 0.12;
}

/* Nebula 3+4 disabled for GPU performance */
.nebula-3, .nebula-4 {
  display: none;
}

/* ==========================================================================
   7. GLASS MORPHISM
   ========================================================================== */

.glass {
  background: rgba(13, 19, 40, 0.72);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  transition: all 0.4s var(--ease);
}

.glass:hover {
  background: var(--glass-bg-hover);
  border-color: var(--glass-border-hover);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4), 0 0 0 1px rgba(59, 130, 246, 0.08);
}

.glass-card {
  background: rgba(13, 19, 40, 0.68);
  border: 1px solid rgba(59, 130, 246, 0.1);
  border-radius: var(--radius-xl);
  padding: 2rem;
  position: relative;
  cursor: pointer;
  transition: transform 0.4s var(--ease-spring), box-shadow 0.4s ease;
  box-shadow:
    0 8px 32px rgba(0, 0, 0, 0.4),
    inset 0 1px 0 rgba(255, 255, 255, 0.10);
}

.glass-card:hover {
  transform: translateY(-8px) scale(1.01);
  box-shadow:
    0 24px 64px rgba(0, 0, 0, 0.5),
    0 0 40px rgba(59, 130, 246, 0.08),
    inset 0 1px 0 rgba(245, 166, 35, 0.20),
    inset 0 0 0 1px rgba(59, 130, 246, 0.10);
}

/* ==========================================================================
   8. NAVIGATION
   ========================================================================== */

.nav.scrolled {
  padding: 0.6rem 2rem;
  background: rgba(6, 11, 24, 0.96);
  border-bottom: 1px solid rgba(59, 130, 246, 0.2);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.5), 0 1px 0 rgba(245, 166, 35, 0.08);
}

.nav.scrolled .nav-links a {
  color: var(--text-muted);
}

.nav.scrolled .nav-links a:hover {
  color: var(--white);
  background: rgba(245, 166, 35, 0.06);
}

.nav.scrolled .nav-links a.active {
  color: var(--gold);
}

.nav.scrolled .nav-burger {
  color: var(--white);
}

.nav.scrolled .nav-logo {
  filter: none;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 4px;
  left: 0.8rem;
  right: 0.8rem;
  height: 2px;
  background: linear-gradient(90deg, var(--gold), var(--blue-light));
  border-radius: 1px;
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.25s var(--ease-spring);
}

.nav-links a:hover::after,
.nav-links a.active::after {
  transform: scaleX(1);
}

.nav-links a:hover {
  color: var(--white);
  background: rgba(255, 255, 255, 0.06);
}

.nav-links a.active {
  color: var(--gold);
  font-weight: 600;
}

.nav-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.2), transparent);
  opacity: 0;
  transition: opacity 0.3s;
}

.nav-cta:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 20px var(--gold-glow-strong);
}

.nav-cta:hover::before {
  opacity: 1;
}

/* ==========================================================================
   9. BUTTONS
   ========================================================================== */

.btn-primary::before {
  content: '';
  position: absolute;
  inset: -2px;
  border-radius: inherit;
  background: linear-gradient(135deg, rgba(245, 166, 35, 0.4), rgba(59, 130, 246, 0.3), rgba(245, 166, 35, 0.4));
  background-size: 200% 200%;
  z-index: -1;
  opacity: 0;
  transition: opacity 0.4s ease;
  filter: blur(12px);
}

.btn-primary::after {
  content: '';
  position: absolute;
  top: -50%;
  left: -60%;
  width: 40%;
  height: 200%;
  background: linear-gradient(105deg, transparent 40%, rgba(255, 255, 255, 0.18) 50%, transparent 60%);
  transform: skewX(-15deg);
  transition: left 0.6s var(--ease-spring);
  pointer-events: none;
  z-index: 1;
}

.btn-primary:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 12px 50px rgba(245, 166, 35, 0.45), 0 0 60px rgba(245, 166, 35, 0.15), 0 0 20px rgba(59, 130, 246, 0.15);
}

.btn-primary:hover::before {
  opacity: 1;
  animation: premiumGlow 2s ease infinite;
}

.btn-primary:hover::after {
  left: 130%;
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 1rem 2.5rem;
  border-radius: var(--radius-md);
  font-weight: 700;
  text-decoration: none;
  font-size: 1rem;
  background: rgba(13, 19, 40, 0.7);
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.15);
  cursor: pointer;
  transition: all 0.3s var(--ease);
  min-height: 52px;
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(245, 166, 35, 0.4);
  color: var(--gold);
}

.btn-gold {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 1rem 2.5rem;
  border-radius: var(--radius-md);
  font-weight: 800;
  text-decoration: none;
  font-size: 1.1rem;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--bg-deep);
  border: none;
  cursor: pointer;
  box-shadow: 0 4px 30px var(--gold-glow);
  transition: all 0.3s var(--ease);
  min-height: 52px;
}

.btn-gold:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 40px var(--gold-glow-strong);
}

/* ==========================================================================
   10. HERO
   ========================================================================== */

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: -20%;
  right: -20%;
  height: 100%;
  background: radial-gradient(ellipse 80% 50% at 50% 80%, rgba(59, 130, 246, 0.08), transparent 70%);
  pointer-events: none;
  animation: auroraShift 15s ease-in-out infinite alternate;
  z-index: -1;
}

.hero h1 .gradient-text {
  text-shadow: 0 0 60px rgba(245, 166, 35, 0.15), 0 0 120px rgba(59, 130, 246, 0.08);
}

/* Hero CTA premium glow border */
.hero-ctas .btn-primary:hover {
  border-color: rgba(245, 166, 35, 0.6);
  transform: translateY(-4px) scale(1.03);
  box-shadow:
    0 16px 60px rgba(245, 166, 35, 0.4),
    0 0 40px rgba(245, 166, 35, 0.15),
    inset 0 1px 0 rgba(255, 255, 255, 0.15);
}

/* CRO: Secondary CTA - Ghost Button */
.hero-ctas .btn-secondary:hover {
  background: rgba(245, 166, 35, 0.1);
  border-color: var(--gold);
}

/* CRO: hero-mini-form hidden everywhere */
.hero-mini-form {
  display: none;
}

.hero-stat:hover {
  transform: scale(1.05);
}

.hero-stat .label {
  font-size: 0.72rem;
  color: var(--text-muted);
  margin-top: 0.15rem;
  display: block;
}

.hero-stat.counted .number {
  animation: countFlash 0.3s ease;
}

/* Green stat color override — use blue instead */
.hero-stat:nth-child(2) span[style*='color:#00e676'] {
  color: var(--blue-light);
}

.hero-location {
  text-shadow: 0 0 20px rgba(245, 166, 35, 0.15);
}

/* Scroll indicator — hidden on all (desktop + mobile) */
.scroll-indicator {
  display: none;
}

/* KOSTENLOS badge positioning */
.hero-ctas .btn-primary > span[style*='position:absolute'] {
  font-size: 0.65rem;
  padding: 3px 8px;
}

/* 'Kein Anruf' text contrast fix */
.hero-ctas > p[style*='12px'] {
  color: rgba(232, 244, 255, 0.65);
  font-size: 0.8rem;
}

/* Hide #heroCanvas everywhere */
#heroCanvas {
  display: none;
}

/* Hide urgency-band everywhere */
#urgency-band {
  display: none;
}

/* Hide trust-micro everywhere */
.hero-trust-micro {
  display: none;
}

/* Hide duplicate checkmarks line */
.hero .fade-up > span[style*='inline-flex'][style*='gap:0.9rem'] {
  display: none;
}

/* Hide fake-scarcity blocks */
div[style*="rgba(239,68,68"] { display: none !important; }
div[style*="rgb(239,68,68"] { display: none !important; }


.hero span[style*="rgba(239,68,68,0.08)"],
.hero span[style*="rgba(59,130,246,0.08)"] {
  display: none;
}

/* ==========================================================================
   11. STATS & TRUST STRIPS
   ========================================================================== */

.stats-strip {
  display: flex;
  gap: 2rem;
  justify-content: center;
  flex-wrap: wrap;
  padding: 1rem 2rem;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
}

.stat-label {
  font-size: 0.82rem;
}

.stat-num {
  font-variant-numeric: tabular-nums;
}

#trust-strip-compact {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  flex-wrap: wrap;
  padding: 0.8rem 1.5rem;
  font-size: 0.82rem;
  color: var(--text-muted);
  border-top: 1px solid var(--glass-border);
  border-bottom: 1px solid var(--glass-border);
}


/* ==========================================================================
   12. SECTIONS
   ========================================================================== */

.section {
  padding: clamp(4rem, 8vw, 8rem) clamp(1rem, 4vw, 3rem);
  position: relative;
  z-index: 1;
  max-width: 1200px;
  margin: 0 auto;
  contain: layout style;
}

/* Section dividers via border-image */
section:not(:first-of-type) {
  border-top: 1px solid transparent;
  border-image: linear-gradient(90deg, transparent, rgba(59, 130, 246, 0.20) 20%, rgba(245, 166, 35, 0.15) 50%, rgba(59, 130, 246, 0.20) 80%, transparent) 1;
}

/* Old section+section::before divider — disabled in favor of border-image */
section + section::before {
  display: none;
}

.section-dark {
  background: var(--bg-mid);
  max-width: none;
  padding-left: clamp(1rem, 4vw, 3rem);
  padding-right: clamp(1rem, 4vw, 3rem);
}

.section-dark > .container {
  max-width: 1200px;
  margin: 0 auto;
}

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

/* ==========================================================================
   13. FEATURE GRID & CARDS
   ========================================================================== */

.feature-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.2rem;
}

.feature-card {
  background: rgba(13, 19, 40, 0.68);
  border: 1px solid rgba(59, 130, 246, 0.08);
  border-radius: var(--radius-xl);
  padding: 2rem;
  position: relative;
  overflow: hidden;
  cursor: pointer;
  transition: transform 0.4s var(--ease-spring), box-shadow 0.4s ease;
  box-shadow:
    0 8px 32px rgba(0, 0, 0, 0.4),
    inset 0 1px 0 rgba(255, 255, 255, 0.10);
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--blue), var(--gold), var(--blue));
  opacity: 0;
  transition: opacity 0.4s;
}

.feature-card::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(245, 166, 35, 0.15), rgba(59, 130, 246, 0.1), transparent);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.feature-card:hover {
  transform: translateY(-8px) scale(1.01);
  box-shadow:
    0 24px 64px rgba(0, 0, 0, 0.5),
    0 0 40px rgba(59, 130, 246, 0.08),
    inset 0 1px 0 rgba(245, 166, 35, 0.20),
    inset 0 0 0 1px rgba(59, 130, 246, 0.10);
}

.feature-card:hover::before,
.feature-card:hover::after {
  opacity: 1;
}

/* Stagger transitions for scroll-reveal */
.feature-card:nth-child(1) { transition-delay: 0ms; }
.feature-card:nth-child(2) { transition-delay: 80ms; }
.feature-card:nth-child(3) { transition-delay: 160ms; }
.feature-card:nth-child(4) { transition-delay: 240ms; }
.feature-card:nth-child(5) { transition-delay: 320ms; }
.feature-card:nth-child(6) { transition-delay: 400ms; }

.feature-icon {
  font-size: 2.4rem;
  margin-bottom: 1rem;
  display: block;
}

.feature-card h3 {
  font-size: 1rem;
  font-weight: 800;
  margin-bottom: 0.5rem;
  color: var(--white);
}

.feature-card p {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.65;
}

.feature-link {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  margin-top: 0.8rem;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--gold);
  text-decoration: none;
  transition: gap 0.2s;
}

.feature-link:hover {
  gap: 0.6rem;
}

/* ==========================================================================
   15. SAVINGS SECTION
   ========================================================================== */

.savings-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  max-width: 600px;
  margin: 0 auto;
}

.savings-card {
  border-radius: var(--radius-lg);
  padding: 2rem;
  text-align: center;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.savings-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.35);
}

.savings-card.bad { border-color: rgba(239, 68, 68, 0.25); }
.savings-card.good { border-color: rgba(0, 230, 118, 0.3); }
.savings-card.bad .savings-amount { color: var(--error); }
.savings-card.good .savings-amount { color: var(--success); }

.savings-amount {
  font-size: 2.5rem;
  font-weight: 900;
  margin-bottom: 0.3rem;
}

.savings-card p {
  font-size: 0.82rem;
  color: var(--text-muted);
}

.loss-counter {
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 900;
  color: var(--gold);
  font-variant-numeric: tabular-nums;
  margin: 1rem 0;
  display: block;
}

/* ==========================================================================
   16. TESTIMONIALS
   ========================================================================== */

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.2rem;
  margin-bottom: 2rem;
}

.testimonial-card {
  background: rgba(13, 19, 40, 0.72);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  cursor: default;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow:
    0 8px 32px rgba(0, 0, 0, 0.4),
    inset 0 1px 0 rgba(255, 255, 255, 0.10);
}

.testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow:
    0 24px 64px rgba(0, 0, 0, 0.5),
    0 0 40px rgba(59, 130, 246, 0.08),
    inset 0 1px 0 rgba(245, 166, 35, 0.20),
    inset 0 0 0 1px rgba(59, 130, 246, 0.10);
}

.testimonial-card p {
  font-size: 0.88rem;
  line-height: 1.65;
  color: var(--text-muted);
}

.tc-stars { color: var(--gold); font-size: 0.9rem; letter-spacing: 1px; margin-bottom: 0.7rem; }
.tc-text { font-size: 0.85rem; color: var(--text-muted); line-height: 1.65; margin-bottom: 1rem; font-style: italic; }
.tc-author { display: flex; align-items: center; gap: 0.7rem; }
.tc-avatar { width: 40px; height: 40px; border-radius: 50%; background: linear-gradient(135deg, var(--gold), var(--gold-dark)); display: flex; align-items: center; justify-content: center; font-size: 0.9rem; font-weight: 800; color: var(--bg-deep); border: 2px solid rgba(255, 255, 255, 0.1); flex-shrink: 0; }

/* ==========================================================================
   17. CITY TAGS / EINZUGSGEBIET
   ========================================================================== */

.city-tags { display: flex; flex-wrap: wrap; gap: 0.5rem; justify-content: center; }

.city-tag {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  padding: 0.4rem 1rem;
  border-radius: var(--radius-pill);
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text-muted);
  transition: all 0.2s var(--ease);
  min-height: 44px;
  display: inline-flex;
  align-items: center;
}

.city-tag:hover { border-color: var(--gold); color: var(--gold); }

/* ==========================================================================
   18. ABOUT US & FOUNDER
   ========================================================================== */

.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: center; max-width: 900px; margin: 0 auto; }
.about-facts { display: grid; grid-template-columns: 1fr 1fr; gap: 0.8rem; }

.about-fact {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-md);
  padding: 1rem;
  text-align: center;
  transition: all 0.3s var(--ease);
}

.about-fact:hover { border-color: rgba(245, 166, 35, 0.2); }
.about-fact .fn { font-size: 1.8rem; font-weight: 900; color: var(--gold); }
.about-fact p { font-size: 0.72rem; color: var(--text-muted); margin-top: 0.15rem; }

/* ==========================================================================
   19. FAQ
   ========================================================================== */

.faq-list { max-width: 720px; margin: 0 auto; }

.faq-item {
  background: var(--glass-bg);
  border: 1px solid rgba(59, 130, 246, 0.1);
  border-radius: var(--radius-md);
  margin-bottom: 0.8rem;
  overflow: hidden;
  transition: all 0.35s var(--ease-spring);
}

.faq-item:hover {
  border-color: rgba(59, 130, 246, 0.25);
  background: rgba(59, 130, 246, 0.03);
}

.faq-item.open {
  border-left: 3px solid var(--gold);
}

.faq-item.active {
  border-color: rgba(245, 166, 35, 0.2);
  background: rgba(245, 166, 35, 0.02);
}

.faq-q {
  width: 100%;
  text-align: left;
  padding: 1.1rem 1.4rem;
  background: none;
  border: none;
  font-family: inherit;
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--white);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  min-height: 52px;
  transition: color 0.2s ease, background 0.2s ease;
}

.faq-q:hover { color: var(--gold); }

.faq-arrow { font-size: 0.75rem; color: var(--gold); transition: transform 0.3s var(--ease); flex-shrink: 0; }
.faq-item.open .faq-arrow { transform: rotate(180deg); }

.faq-a { max-height: 0; overflow: hidden; transition: max-height 0.4s ease, padding 0.3s; }
.faq-item.open .faq-a { max-height: 400px; padding-bottom: 1.2rem; }
.faq-a p { padding: 0 1.4rem; font-size: 0.85rem; color: var(--text-muted); line-height: 1.75; }
.faq-a strong { color: var(--gold); }

/* ==========================================================================
   20. CTA SECTION
   ========================================================================== */

.cta-section {
  text-align: center;
  padding: clamp(4rem, 8vw, 8rem) 1.5rem;
  background:
    radial-gradient(ellipse 60% 40% at 50% 50%, rgba(59, 130, 246, 0.06), transparent 70%),
    linear-gradient(180deg, var(--bg-deep) 0%, var(--bg-mid) 50%, var(--bg-deep) 100%);
  position: relative;
  z-index: 1;
  color: var(--white);
}

.cta-section h2 { margin-bottom: 1rem; color: var(--white); }
.cta-section p { margin-bottom: 2rem; color: var(--text-muted); }
.cta-section .section-label { color: var(--gold); }

.cta-contacts { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; margin-top: 1.5rem; }

.cta-contact {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.82rem;
  color: var(--text-muted);
  text-decoration: none;
  padding: 0.5rem 1rem;
  border-radius: var(--radius-sm);
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  transition: all 0.2s var(--ease);
  min-height: 44px;
}

.cta-contact:hover { border-color: var(--gold); color: var(--gold); }

.urgency-band {
  background: linear-gradient(135deg, rgba(245, 166, 35, 0.1), rgba(245, 166, 35, 0.05));
  border: 1px solid rgba(245, 166, 35, 0.2);
  border-radius: var(--radius-md);
  padding: 1rem 1.5rem;
  text-align: center;
  color: var(--gold);
  font-weight: 700;
  font-size: 0.9rem;
}

#referenzTicker #tickerTrack { visibility: hidden; }
#referenzTicker.initialized #tickerTrack { visibility: visible; }

.ref-card {
  transition: transform 0.3s ease, border-color 0.3s ease;
}

.ref-card:hover {
  transform: translateY(-4px);
  border-color: rgba(245, 166, 35, 0.2);
}

/* ==========================================================================
   23. PARTNER LOGOS BAR
   ========================================================================== */

.partner-bar {
  padding: 1.2rem 1.5rem;
  overflow: hidden;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  position: relative;
  z-index: 1;
  background: var(--bg-deep);
}

.partner-track {
  display: flex;
  align-items: center;
  gap: 3rem;
  animation: marquee 25s linear infinite;
  width: max-content;
}

.partner-logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--text-muted);
  white-space: nowrap;
  opacity: 0.6;
  transition: opacity 0.2s;
}

.partner-logo:hover { opacity: 1; }
.partner-logo span { font-size: 1.2rem; }

/* ==========================================================================
   24. PAKET CARDS
   ========================================================================== */

.paket-card {
  border: 1px solid rgba(59, 130, 246, 0.1);
  position: relative;
  cursor: pointer;
  transition: transform 0.4s var(--ease-spring), box-shadow 0.4s ease;
  box-shadow:
    0 8px 32px rgba(0, 0, 0, 0.4),
    inset 0 1px 0 rgba(255, 255, 255, 0.10);
}

.paket-card:hover {
  transform: translateY(-8px) scale(1.01);
  box-shadow:
    0 24px 64px rgba(0, 0, 0, 0.5),
    0 0 40px rgba(59, 130, 246, 0.08),
    inset 0 1px 0 rgba(245, 166, 35, 0.20),
    inset 0 0 0 1px rgba(59, 130, 246, 0.10);
}

/* Recommended paket highlight */
.paket-card:nth-child(2) {
  border: 1px solid rgba(245, 166, 35, 0.40);
  transform: scale(1.03);
  z-index: 2;
  box-shadow: 0 0 60px rgba(245, 166, 35, 0.08), 0 16px 48px rgba(0, 0, 0, 0.4), inset 0 1px 0 rgba(245, 166, 35, 0.20);
}

.paket-card:nth-child(2)::before {
  content: '';
  position: absolute;
  inset: -1px;
  border-radius: inherit;
  padding: 1px;
  background: linear-gradient(135deg, rgba(245, 166, 35, 0.3), rgba(59, 130, 246, 0.2));
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}

.paket-grid {
  align-items: stretch;
}

.paket-grid > * {
  display: flex;
  flex-direction: column;
}

/* ==========================================================================
   25. FOOTER
   ========================================================================== */

.footer {
  background: var(--bg-footer);
  border-top: 1px solid rgba(59, 130, 246, 0.08);
  padding: 4rem 1.5rem 2rem;
  position: relative;
  z-index: 1;
  color: var(--text-muted);
}

footer {
  position: relative;
}

footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 10%;
  right: 10%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(245, 166, 35, 0.2), rgba(59, 130, 246, 0.15), transparent);
}

footer > div,
.footer-grid {
  max-width: 1280px;
  margin-left: auto;
  margin-right: auto;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 2rem;
}

.footer h4 { font-size: 0.85rem; font-weight: 800; color: var(--white); margin-bottom: 1rem; }
.footer p, .footer a { font-size: 0.8rem; color: var(--text-muted); line-height: 1.8; text-decoration: none; }
.footer a:hover { color: var(--gold); transition: color 0.2s ease; }
.footer-brand p { max-width: 280px; }
.footer-links { display: flex; flex-direction: column; gap: 0.3rem; }

footer .btn-primary {
  box-shadow: 0 4px 20px rgba(245, 166, 35, 0.3);
}

footer .btn-primary:hover {
  box-shadow: 0 8px 40px rgba(245, 166, 35, 0.5), 0 0 60px rgba(59, 130, 246, 0.15);
}

.footer-bottom {
  max-width: 1200px;
  margin: 2rem auto 0;
  padding-top: 1.5rem;
  border-top: 1px solid var(--glass-border);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.footer-bottom p { font-size: 0.72rem; color: var(--text-faint); }
.footer-bottom a { font-size: 0.72rem; color: var(--text-faint); text-decoration: none; }
.footer-bottom a:hover { color: var(--gold); }

/* ==========================================================================
   26. FLOATING WHATSAPP
   ========================================================================== */

.wa-float {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  z-index: 40;
  background: linear-gradient(135deg, #25d366, #128c3e);
  color: #fff;
  padding: 0.85rem 1.3rem;
  border-radius: var(--radius-pill);
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 700;
  font-size: 0.85rem;
  text-decoration: none;
  box-shadow:
    0 4px 20px rgba(37, 211, 102, 0.3),
    0 0 0 0 rgba(37, 211, 102, 0.2);
  opacity: 0;
  pointer-events: none;
  transition: all 0.3s var(--ease-spring);
  min-height: 52px;
  /* No waPulse animation */
}

.wa-float.show {
  opacity: 1;
  pointer-events: all;
}

.wa-float:hover {
  transform: scale(1.08) translateY(-2px);
  box-shadow:
    0 8px 30px rgba(37, 211, 102, 0.4),
    0 0 0 8px rgba(37, 211, 102, 0.08);
}

/* ==========================================================================
   27. STICKY CTA
   ========================================================================== */

.sticky-cta {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 50;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  padding: 0.8rem 1.5rem;
  text-align: center;
  transform: translateY(100%);
  transition: transform 0.4s var(--ease);
}

.sticky-cta.show { transform: translateY(0); }
.sticky-cta a { color: var(--bg-deep); font-weight: 800; font-size: 1rem; text-decoration: none; }

/* ==========================================================================
   28. SCROLL ANIMATIONS
   ========================================================================== */

.cookie-banner.show { display: flex; }

/* Premium contact form inputs */
#kontaktForm input,
#kontaktForm textarea,
#kontaktForm select {
  transition: all 0.3s ease;
  border: 1px solid rgba(59, 130, 246, 0.15);
}

#kontaktForm input:focus,
#kontaktForm textarea:focus,
#kontaktForm select:focus {
  border-color: rgba(245, 166, 35, 0.4);
  box-shadow: 0 0 0 3px rgba(245, 166, 35, 0.08), 0 0 30px rgba(245, 166, 35, 0.05);
}

/* Generic input focus */
input:focus, textarea:focus, select:focus {
  outline: 2px solid rgba(59, 130, 246, 0.6);
  outline-offset: 2px;
  border-color: rgba(59, 130, 246, 0.5);
  box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1), 0 0 20px rgba(59, 130, 246, 0.08);
}

/* Kontakt-Form focus-visible (A11y) */
#kontaktForm input:focus-visible,
#kontaktForm select:focus-visible,
#kontaktForm textarea:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 2px;
  border-color: var(--gold);
}

/* ==========================================================================
   31. PREMIUM MICRO-DETAILS
   ========================================================================== */

/* Premium Scrollbar */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: rgba(6, 11, 24, 0.95); }
::-webkit-scrollbar-thumb { background: linear-gradient(180deg, rgba(245, 166, 35, 0.3), rgba(59, 130, 246, 0.3)); border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: linear-gradient(180deg, rgba(245, 166, 35, 0.5), rgba(59, 130, 246, 0.5)); }

/* Premium Selection */
::selection { background: rgba(245, 166, 35, 0.2); color: #fff; }

/* Cursor on interactive elements */
.feature-card,
.glass-card,
.paket-card,
.step-card,
.testimonial-card,
.ref-card,
.faq-q {
  cursor: pointer;
}

/* "Bald verfuegbar" items */
[style*='Coming Soon'], [style*='coming soon'], [style*='Bald'] {
  opacity: 0.45;
  pointer-events: none;
  filter: grayscale(0.3);
}

/* Impact counter cards */
#impact > div > div[style*="grid"] > div {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
#impact > div > div[style*="grid"] > div:hover {
  transform: translateY(-4px) scale(1.02);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3);
}

/* Touch target fixes */
.btn-small-cta,
.paket-card a[class*="btn"],
.paket-card .btn-small-cta {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.6rem 1.2rem;
}


/* ==========================================================================
   33. KEYFRAMES
   ========================================================================== */

@keyframes float {
  0%, 100% { transform: translateY(0) translateX(-50%); }
  50% { transform: translateY(-20px) translateX(-50%); }
}

@keyframes twinkle {
  0%, 100% { opacity: 0; }
  50% { opacity: var(--brightness, 0.6); }
}

@keyframes marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

@keyframes auroraShift {
  0% { transform: translateX(-5%) scale(1); opacity: 0.6; }
  50% { transform: translateX(5%) scale(1.05); opacity: 1; }
  100% { transform: translateX(-5%) scale(1); opacity: 0.6; }
}

@keyframes nebulaFloat {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(30px, -20px) scale(1.05); }
  66% { transform: translate(-20px, 15px) scale(0.95); }
}

@keyframes premiumGlow {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}

@keyframes countFlash {
  0% { color: var(--gold); transform: scale(1.08); }
  100% { color: inherit; transform: scale(1); }
}

/* ==========================================================================
   35. RESPONSIVE: >= 1400px (Ultra-wide)
   ========================================================================== */

/* ==========================================================================
   36. RESPONSIVE: >= 1200px (Desktop Premium)
   ========================================================================== */

@media (min-width: 1200px) {
  .hero {
    padding-bottom: 4rem;
  }

  .feature-grid,
  .paket-grid {
    gap: 1.5rem;
  }
}

@media (max-width: 1200px) {
  .footer-grid {
    grid-template-columns: 2fr 1fr 1fr 1fr;
  }
}

/* ==========================================================================
   37. RESPONSIVE: >= 769px (Desktop)
   ========================================================================== */

@media (min-width: 768px) {
  /* Hide mobile-only hero elements */
  #hero-wa-mobile { display: none; }
  #hero-next-steps { display: none; }
  .hero-location { display: none; }
  .hero-checkmarks-row { display: none; }
  #referenzTicker { display: none; }

  /* Trust badges under stats hidden on desktop too */
  .hero div[style*='inline-flex'][style*='gap:0.5rem'],
  .hero div[style*='inline-flex'][style*='gap:0.6rem'] {
    display: none;
  }

  /* Compare-strip visible on desktop */
  .compare-strip {
    display: block;
  }

  /* WA float hidden on desktop */
  .wa-float { display: none; }

  .hero .section-label { display: none; }
  .hero-mini-form { display: none; }
  #hero-founder-card { display: none; }
  .hero-trust-micro { display: none; }
  #referenzTicker { display: none; }
  .scroll-indicator { display: none; }
  .hero [class*="foerd"] { display: none; }
  /* .cta-subtext NOT hidden on desktop — conversion-relevant subtext */
  .hero a[href*="wa.me"] { display: none; }
  .hero .google-rating-badge { display: none; }

  .hero [class*="next-steps"] { display: flex; }

  #stickyCta { border-radius: 16px 16px 0 0; box-shadow: 0 -4px 30px rgba(0,0,0,0.4); }
}

/* ==========================================================================
   37b. PERFORMANCE: will-change nur auf Desktop (Animationselemente sind auf Mobile display:none)
   ========================================================================== */
/* ==========================================================================
   38. RESPONSIVE: <= 1024px (Tablet)
   ========================================================================== */

@media (max-width: 1024px) {
  .nav-links {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(10, 14, 26, 0.98);
    flex-direction: column;
    padding: 5rem 2rem 2rem;
    gap: 0;
    z-index: 99;
    justify-content: flex-start;
    align-items: stretch;
  }

  .nav-links.open { display: flex; }

  .nav-links a {
    padding: 0.9rem 1.2rem;
    font-size: 1.1rem;
    width: 100%;
    border-radius: 10px;
    min-height: 52px;
  }

  .nav-burger { display: flex; }

  .feature-grid { grid-template-columns: repeat(2, 1fr); }
  .testimonial-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 1.5rem; }

  #navRating { display: none; }

  .ratgeber-featured-grid { grid-template-columns: 1fr 1fr; }
}

/* ==========================================================================
   40. RESPONSIVE: <= 768px (Mobile)
   ========================================================================== */

@media (max-width: 768px) {
  /* Performance: disable heavy effects */
  body::after { display: none; }
  .nebula, .nebula-1, .nebula-2 { display: none; }
  .starfield, .hero-orbs, #milky-way-band { display: none; }
  .hero::before { display: none; }

  /* Glass fallback on mobile */
  .feature-card,
  .glass-card,
  .testimonial-card,
  .step-card {
    background: rgba(13, 19, 40, 0.78);
    border-radius: 16px;
  }

  .savings-card,
  .faq-item,
  .founder-card {
    background: rgba(13, 19, 40, 0.85);
  }

  .glass {
    background: rgba(13, 19, 40, 0.85);
  }

  .hero-stats {
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    background: rgba(13, 19, 40, 0.85);
    margin-top: 1.5rem;
    padding: 1rem;
    border-radius: 16px;
    gap: 0.6rem;
  }

  .nav {
    background: #060b18;
    
    
    padding: 0.6rem 1rem;
  }

  .nav-burger {
    color: #fff;
    font-size: 1.5rem;
    background: rgba(59, 130, 246, 0.1);
    border: 1px solid rgba(59, 130, 246, 0.2);
    border-radius: 10px;
    width: 44px;
    height: 44px;
  }

  .nav > a img {
    box-shadow: 0 0 12px rgba(245, 166, 35, 0.2);
  }

  .cookie-banner {
    background: rgba(4, 8, 18, 0.97);
  }

  .steps-grid {
    grid-template-columns: 1fr;
    max-width: 400px;
    margin: 0 auto;
  }

  /* Hero: declutter for mobile */
  .hero {
    overflow: visible;
    padding-top: 5rem;
    padding-bottom: 2rem;
    min-height: auto;
    text-align: center;
  }

  .hero h1 {
    margin-bottom: 1rem;
  }

  .hero h1 span,
  .hero h1 .gradient-text {
    font-size: clamp(1.6rem, 6.5vw, 2.4rem);
  }

  .hero-subtitle {
    font-size: clamp(0.95rem, 3.5vw, 1.15rem);
    line-height: 1.6;
    max-width: 90vw;
    margin-bottom: 1.2rem;
  }

  /* Hidden hero elements on mobile */
  .hero-trust-micro,
  .hero-bafa-badge,
  .scroll-indicator,
  .hero-mini-form,
  #hero-mini-form,
  #hero-founder-card,
  #hero-next-steps,
  #referenzTicker,
  #urgency-band,
  .hero .google-rating-badge,
  .hero-location,
  .compare-strip {
    display: none;
  }

  /* Hero glass cards: horizontal scroll on mobile */
  #hero-glass-cards {
    display: flex;
    flex-direction: row;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scroll-snap-type: x mandatory;
    gap: 0.75rem;
    padding: 0 1rem 0.5rem;
    margin: 1rem -1rem 0;
    width: calc(100% + 2rem);
  }
  #hero-glass-cards > div {
    scroll-snap-align: start;
    min-width: 200px;
    flex: 0 0 auto;
  }
  #hero-glass-cards::-webkit-scrollbar {
    height: 3px;
  }
  #hero-glass-cards::-webkit-scrollbar-thumb {
    background: rgba(255,255,255,0.2);
    border-radius: 2px;
  }

  /* Trust badges hidden */
  .hero div[style*='inline-flex'][style*='gap:0.5rem'],
  .hero div[style*='inline-flex'][style*='gap:0.6rem'],
  .hero div[style*='inline-flex'][style*='gap:0.4rem'],
  .hero span[style*='inline-flex'][style*='gap:0.4rem'] {
    display: none;
  }

  /* Hide hero house SVG animations */
  #hero-house-visual svg { display: none; }
  #hero-house-visual { opacity: 0.08; }

  /* Hide small text elements on mobile */
  .hero h1 span[style*='0.72rem'] { display: none !important; }
  .hero-ctas > p[style*='12px'] { display: none !important; }
  .hero .hero-stats ~ div[style*='inline-flex'][style*='gap:0.4rem'] { display: none !important; }

  /* Partner track: static on mobile */
  .partner-track {
    animation: none;
    flex-wrap: wrap;
    justify-content: center;
  }

  /* ScrollTopBtn above stickyCta */
  #scrollTopBtn { bottom: 90px; }

  /* NavPhone icon only */
  #navPhone .navphone-text { display: none; }
  #navPhone {
    width: 44px;
    height: 44px;
    padding: 0;
    justify-content: center;
    font-size: 1.1rem;
    border-radius: 50%;
  }
  #navPhone .navphone-icon { font-size: 1.2rem; }
  #navPhone::after { content: '\260E'; font-size: 1.2rem; line-height: 1; }

  /* Touch targets */
  #heroName, #heroTel {
    min-height: 44px;
    padding: 0.75rem 0.8rem;
    font-size: 16px; /* prevents iOS zoom */
  }

  /* Font sizes on mobile */
  .hero-stat .label { font-size: 0.85rem; }
  .google-rating-badge { font-size: 12px; }
  #kontaktForm label { font-size: 0.9rem; }
  .feature-card p, .step-card p { font-size: 0.9rem; line-height: 1.5; }
  footer p, footer span, footer a { font-size: max(0.85rem, 13.6px); }

  /* Section sizing */
  .section-header { margin-bottom: 2rem; }
  .section-title { font-size: clamp(1.4rem, 5vw, 1.8rem); line-height: 1.2; }
  section { padding-top: clamp(3rem, 8vw, 5rem); padding-bottom: clamp(3rem, 8vw, 5rem); }

  /* StickyCta */
  #stickyCta { padding: 10px 12px; padding-bottom: max(10px, env(safe-area-inset-bottom)); }
  #stickyCta > div:first-child > div:first-child { font-size: 0.85rem; }
  #stickyCta > div:first-child > div:last-child { font-size: 0.78rem; }
  #stickyCta a[href*="tel"] { padding: 10px 12px; font-size: 0.85rem; min-height: 44px; display: flex; align-items: center; }
  #stickyCta a[href="/app/"] { padding: 10px 14px; font-size: 0.85rem; min-height: 44px; display: flex; align-items: center; }

  /* WA Mobile CTA */
  #hero-wa-mobile a { min-height: 44px; padding: 0.7rem 1.2rem; display: inline-flex; align-items: center; }

  .savings-grid { grid-template-columns: 1fr; }
  .testimonial-grid { grid-template-columns: 1fr; }
  .feature-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .about-grid { grid-template-columns: 1fr; }
  .cta-contacts { flex-direction: column; align-items: center; }

  /* ROI Table: hide less important columns */
  table th:nth-child(3), table td:nth-child(3),
  table th:nth-child(4), table td:nth-child(4) { display: none; }

  /* Merged from scattered 600px block */
  [style*="gap:2rem 3rem"] { gap: 1rem !important; }


  /* Merged from scattered 768px blocks */
  .hero { padding-right: 1.5rem; }
  #ratgeber > .container > div[style*="grid"] ~ div[style*="grid"] { display: none !important; }
  [style*="grid-template-columns:repeat(4,1fr)"] { grid-template-columns: repeat(2,1fr) !important; }

  .hero { min-height: auto; }

  .hero-tstripe-grid {    display: flex;    overflow-x: auto;    scroll-snap-type: x mandatory;    -webkit-overflow-scrolling: touch;    gap: 1rem;    padding-bottom: 0.5rem;  }  .hero-tstripe-grid > div {    display: block;    min-width: 85vw;    scroll-snap-align: start;    flex-shrink: 0;  }

  #hero-glass-cards { gap: 0.8rem; padding: 0 1rem; }
  #hero-glass-cards > div { min-width: 140px; padding: 1rem 1.1rem; font-size: 0.92rem; }

  #case-study-grid { grid-template-columns: 1fr; }

  .ratgeber-featured-grid { grid-template-columns: 1fr; }
  .ratgeber-secondary-grid { grid-template-columns: 1fr 1fr; }
}

/* ==========================================================================
   41. RESPONSIVE: <= 600px
   ========================================================================== */

@media (max-width: 600px) and (min-width: 481px) {
  .feature-grid { grid-template-columns: repeat(2, 1fr); }
  .testimonial-grid { grid-template-columns: repeat(2, 1fr); }
  .paket-grid { grid-template-columns: 1fr; }
  .hero-stats { display: grid; grid-template-columns: 1fr 1fr; gap: 0.8rem; }
}

/* ==========================================================================
   42. RESPONSIVE: <= 500px
   ========================================================================== */

@media (max-width: 480px) {
  .paket-grid > div:nth-child(2) { margin-top: 12px; }

  .nav { padding: 0.7rem 1rem; }
  .nav-right { gap: 6px; }
  .nav-cta { font-size: 0.72rem; padding: 6px 10px; }
  #navRating { display: none; }

  .hero { padding: 6rem 1.2rem 2.5rem; min-height: 90svh; }
  .hero h1 { font-size: 2rem; line-height: 1.15; }
  .hero h1 span { font-size: clamp(1.6rem, 6.5vw, 3rem); }
  .hero-subtitle { font-size: 0.95rem; margin-bottom: 1.5rem; }
  .hero-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.6rem;
    padding: 0.8rem;
  }
  .hero-stat { min-width: auto; flex: 0 1 auto; text-align: center; }
  .hero-stat .number { font-size: 1.5rem; }
  .hero-ctas { flex-direction: column; align-items: center; }
  .hero-ctas a { width: 100%; max-width: 300px; justify-content: center; }

  .hero-stats-strip .stat-item { min-width: 100px; }

  /* Urgency slot badge */
  .hero .fade-up span[style*='border-radius:50px'] { font-size: 0.72rem !important; padding: 0.25rem 0.8rem !important; }
  #hero-google-badge { transform: scale(0.85); }
  #hero-wa-mobile { margin-top: 0.4rem; }

  .section { padding: 3rem 1rem; }
  .section-dark { padding-left: 1rem; padding-right: 1rem; }
  h2 { font-size: 1.6rem; }
  .feature-card { padding: 1.4rem; }
  .steps-grid { gap: 1rem; }

  .btn-primary, .btn-secondary, .btn-gold {
    padding: 0.9rem 1.5rem;
    font-size: 0.88rem;
    width: 100%;
    justify-content: center;
  }

  .wa-float {
    bottom: 1.2rem;
    right: 1.2rem;
    padding: 0.9rem;
    border-radius: 50%;
    width: 52px;
    height: 52px;
    justify-content: center;
  }
  .wa-float .wa-text { display: none; }

  .footer-bottom p, .footer-bottom a { font-size: 0.82rem; }

  /* Exit popup responsive */
  #exitPopup > div { max-width: calc(100vw - 2rem); padding: 1.5rem 1.2rem; }

  /* KOSTENLOS badge on small */
  .hero-ctas .btn-primary > span[style*="position:absolute"] { right: 4px !important; top: -8px !important; }

  /* Sticky CTA wrap */
  #stickyCta { flex-wrap: wrap; padding: 10px 12px; gap: 6px; }
  #stickyCta > div:first-child { width: 100%; }

  /* Merged from scattered 480px blocks */
  .compare-mini-grid { grid-template-columns: 1fr; }
  [style*="grid-template-columns:repeat(4,1fr)"] { grid-template-columns: 1fr 1fr !important; }

  .nav-cta { display: none; }
  .nav { padding: 0.5rem 0.8rem; }

  #hero-glass-cards { flex-direction: column; align-items: center; padding: 0 1.2rem; }
  #hero-glass-cards > div { min-width: 0; width: 100%; max-width: 100%; flex: none; padding: 1rem 1.2rem; }

  .ratgeber-secondary-grid { grid-template-columns: 1fr; }

  #footer-trust-row { gap: 0.5rem; padding: 0.75rem 1rem; }
  .ftr-sep { display: none; }
  .ftr-item { font-size: 0.75rem; }

  /* Hero house visual: ausblenden auf kleinen Phones */
  #hero-house-visual { display: none; }

  /* CTA subtext nur auf Mobile verstecken */
  .cta-subtext { display: none; }
}

/* ==========================================================================
   45. ACCESSIBILITY: prefers-reduced-motion
   ========================================================================== */

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

  .fade-up { opacity: 1; transform: none; }
  .partner-track { animation: none; }
  .wa-float { animation: none; }
  .hero-glow-orb { animation: none; }
  .scroll-indicator { animation: none; }
  .starfield .star { animation: none; opacity: var(--brightness, 0.4); }
  .shooting-star { display: none; }
  .nebula { animation: none; }
  .hero::before { animation: none; }
  body::before { animation: none; }
  .gradient-text { animation: none; }

  #hero-house-visual { display: none; }
  #hero-house-visual *,
  .hero-house-star { animation: none; transition: none; }

  #milky-way-band, #milky-way-band *,
  [style*='starTwinkle'], [style*='milkyWayDrift'],
  [style*='aurora-pulse'], [style*='cursorBlink'] { animation: none; transition: none; }

  .hero-orb { animation: none; }

  .starfield, .nebula, .shooting-star, .hero-orbs,
  #milky-way-band, #heroCanvas { display: none; }
}

/* ==========================================================================
   46. @SUPPORTS FALLBACK
   ========================================================================== */

@supports not (backdrop-filter: blur(1px)) {
  .glass,
  .glass-card,
  .feature-card,
  .nav,
  .hero-stats {
    background: rgba(13, 19, 40, 0.92);
  }

  .cookie-banner {
    background: rgba(4, 8, 18, 0.98);
  }
}

/* ==========================================================================
   47. PRINT
   ========================================================================== */

@media print {
  .nav, .wa-float, .cookie-banner, .starfield,
  .nebula, .scroll-indicator, .sticky-cta { display: none; }

  body { background: #fff; color: #000; }
  .hero { min-height: auto; background: #fff; color: #000; }
  .section { padding: 2rem 1rem; }
}

.hero-stats { margin-top: 3rem; }

/* R9: Sticky CTA Bar */
#stickyCta {
  border-radius: 0;
  
  background: #060b18;
}

/* R9: Kontrast-Fix */
.cta-subtext, [class*="subtext"], .hero-stat .label {
  color: rgba(208, 228, 244, 0.72);
}

/* R9: Hero H1 auf Desktop kleiner */
@media (min-width: 1400px) {
  .hero h1 { font-size: clamp(2.8rem, 5vw, 4rem); }
}

/* R10: BAFA + Meister sichtbar (ueberschreibt R9) */
/* ==========================================================================
   Consolidated from inline styles — 2026-03-29
   ========================================================================== */

/* --- Selection + scrollbar --- */
.section-label { transition: letter-spacing 0.3s ease; }
.section-label:hover { letter-spacing: 4px; }
footer { background-image: linear-gradient(to bottom, transparent 0%, rgba(59,130,246,0.03) 100%); }
@media (hover: hover) {
  .feature-card:hover, [class*="ref-card"]:hover {
    box-shadow: 0 8px 32px rgba(59,130,246,0.12), 0 0 0 1px rgba(59,130,246,0.15);
  }
}

/* --- Hero animations --- */
@keyframes milkyWayDrift {
  0%,100% { opacity: 0.85; transform: rotate(-18deg) translateX(0); }
  50% { opacity: 1; transform: rotate(-16deg) translateX(20px); }
}
@keyframes starTwinkleA {
  0%,100% { opacity: 0.5; transform: scale(0.8); }
  50% { opacity: 1; transform: scale(1.3); }
}

/* --- Hero testimonial stripe + nav rating --- */

/* --- Hero glass cards hover + responsive --- */
.hero-glass-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 48px rgba(0,0,0,0.5), 0 0 30px rgba(59,130,246,0.12);
}
@media (min-width: 768px) and (max-width: 1024px) {
  #hero-glass-cards { padding: 0 2rem; gap: 1rem; }
  #hero-glass-cards > div { min-width: 0; flex: 1; max-width: none; padding: 1.2rem 1.3rem; }

  .footer-grid { grid-template-columns: repeat(3, 1fr); }
}

/* --- Tablet Nav: kompakte Horizontal-Nav für iPad-Querformat (769–1024px) --- */
@media (min-width: 769px) and (max-width: 1024px) {
  .nav-links a { font-size: 0.72rem; padding: 0.4rem 0.5rem; }
  .nav-phone-btn .navphone-text { display: none; }
  .nav-rating-badge { display: none; }
}

/* --- compare-mini-grid responsive --- */

/* --- case-study-grid responsive --- */

/* --- Ratgeber grid responsive --- */

/* --- Foerder-Buttons --- */
.foerder-btn {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 12px;
  color: white;
  padding: 14px 12px;
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s;
  text-align: center;
  line-height: 1.4;
}
.foerder-btn:hover {
  background: rgba(59,130,246,0.15);
  border-color: rgba(59,130,246,0.5);
  transform: translateY(-2px);
}

/* --- Exit Popup --- */
#exitPopup { display: none; opacity: 0; pointer-events: none; transition: opacity 0.3s ease; }
#exitPopup.show { display: flex !important; opacity: 1; pointer-events: auto; }

/* --- Footer trust row --- */
#footer-trust-row {
  background: rgba(59,130,246,0.05);
  border-top: 1px solid rgba(59,130,246,0.12);
  border-bottom: 1px solid rgba(59,130,246,0.08);
  padding: 0.9rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.8rem;
  flex-wrap: wrap;
}
.ftr-item {
  display: flex; align-items: center; gap: 0.35rem;
  font-size: 0.8rem; font-weight: 700; color: rgba(255,255,255,0.75); white-space: nowrap;
}
.ftr-icon { font-size: 0.95rem; }
.ftr-sep { color: rgba(59,130,246,0.4); font-size: 1rem; font-weight: 400; }

/* --- cursorBlink + aurora-pulse + ref-card 3d --- */
.ref-card { transform-style: preserve-3d; transition: transform 0.15s ease, border-color 0.3s, box-shadow 0.3s; }
/* --- CSS Layout Fixes 2026-03-23 --- */

@media (min-width: 1024px) {
  section[style*="padding"] { padding-left: 5% !important; padding-right: 5% !important; }

  #stickyCta > div, #stickyCta { max-width: 960px; margin-left: auto; margin-right: auto; }
}

#baHandle > div[style*="width:40px"][style*="height:40px"],
#baHandle > div[style*="width: 40px"][style*="height: 40px"] {
  width: 48px; height: 48px; min-width: 48px; min-height: 48px;
}
.hero-stats span, .hero-stats p { color: rgba(255,255,255,0.75); }

/* A11y Fix: iOS zoom prevention für Kontaktformular */

/* ============================================================
   === Inline Style Migration ===
   Extracted from HTML Nav, Hero, Stats-Strip, Testimonials,
   Glass-Cards, Paket-Grid — 2026-03-29
   ============================================================ */

/* --- Nav Logo Link --- */
.nav-logo-link {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}
.nav-logo-img {
  height: 36px;
  width: 36px;
  border-radius: 10px;
  object-fit: cover;
  flex-shrink: 0;
}
.nav-logo-text {
  font-size: 0.95rem;
  font-weight: 800;
  letter-spacing: 0.5px;
  color: #fff;
  line-height: 1.1;
}
.nav-logo-sub {
  color: rgba(96,165,250,0.95);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 2px;
}

/* --- Nav Phone Button --- */
.nav-phone-btn {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.9rem;
  font-weight: 700;
  color: white;
  text-decoration: none;
  padding: 6px 12px;
  border-radius: 8px;
  background: rgba(59,130,246,0.15);
  border: 1px solid rgba(59,130,246,0.3);
}

/* --- Nav Rating Badge --- */
.nav-rating-badge {
  display: flex;
  align-items: center;
  gap: 5px;
  text-decoration: none;
  padding: 5px 10px;
  border-radius: 8px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.12);
  transition: all 0.2s;
}
.nav-rating-star {
  color: #fbbc04;
  font-size: 0.85rem;
  letter-spacing: 0;
}
.nav-rating-score {
  font-size: 0.82rem;
  font-weight: 800;
  color: #fff;
}
.nav-rating-label {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.55);
}

/* --- Sticky CTA Bar --- */
.sticky-cta-text-wrap {
  flex: 1;
  min-width: 0;
}
.sticky-cta-headline {
  font-size: 0.82rem;
  font-weight: 800;
  color: white;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.sticky-cta-headline-accent {
  color: #F5A623;
}
.sticky-cta-sub {
  font-size: 0.72rem;
  color: rgba(200,230,255,0.75);
  margin-top: 1px;
}
.sticky-cta-btns {
  display: flex;
  gap: 8px;
  flex-shrink: 0;
}
.sticky-btn-call {
  padding: 8px 14px;
  border-radius: 8px;
  background: rgba(255,255,255,0.1);
  color: white;
  font-weight: 700;
  font-size: 0.9rem;
  text-decoration: none;
  border: 1px solid rgba(255,255,255,0.2);
}
.sticky-btn-cta {
  padding: 9px 18px;
  border-radius: 9px;
  background: linear-gradient(135deg,#F5A623,#E8960F);
  color: #060b18;
  font-weight: 900;
  font-size: 0.9rem;
  text-decoration: none;
  white-space: nowrap;
  box-shadow: 0 2px 12px rgba(245,166,35,0.4);
}
.sticky-btn-call, .sticky-btn-cta {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
}
.sticky-close-btn {
  background: none;
  border: none;
  color: rgba(255,255,255,0.7);
  font-size: 1.2rem;
  cursor: pointer;
  padding: 12px;
  line-height: 1;
  flex-shrink: 0;
}

/* --- Hero BAFA Badge --- */
.hero-bafa-wrap {
  display: flex;
  justify-content: center;
  margin-bottom: 1.2rem;
}
.hero-badge-row {
  display: flex;
  gap: 1.2rem;
  align-items: center;
  flex-wrap: wrap;
  justify-content: center;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  border-radius: 50px;
  padding: 5px 14px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}
.hero-badge-green {
  background: rgba(0,230,118,0.08);
  border: 1px solid rgba(0,230,118,0.25);
  color: #00e676;
}
.hero-badge-gold {
  background: rgba(245,166,35,0.08);
  border: 1px solid rgba(245,166,35,0.25);
  color: #F5A623;
}
.hero-badge-blue {
  background: rgba(59, 130, 246, 0.08);
  border: 1px solid rgba(59, 130, 246, 0.25);
  color: #60A5FA;
}

/* --- Hero H1 --- */
.hero-h1 {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.3rem;
}


/* --- Hero Location --- */
.hero-location {
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(245,166,35,0.75);
  margin-top: 0.4rem;
  margin-bottom: 0.4rem;
}

/* --- Hero CTA primary --- */
.hero-btn-primary {
  font-size: 1.05rem;
  padding: 1rem 2.2rem;
  position: relative;
}
.hero-cta-subtext {
  color: rgba(200,230,255,0.72);
  font-size: 0.8rem;
  margin-top: 6px;
}

/* --- Hero Stat values --- */
.hero-stat-gold { font-size:1.4rem; font-weight:900; color:#F5A623; display:block; line-height:1; }
.hero-stat-green { font-size:1.4rem; font-weight:900; color:#00e676; display:block; line-height:1; }
.hero-stat-blue { font-size:1.4rem; font-weight:900; color:#3B82F6; display:block; line-height:1; }
.hero-stat-label { font-size:0.8rem; }

/* --- Hero House Visual wrapper --- */
.hero-house-visual {
  position: absolute;
  left: 0; right: 0; top: 0; bottom: 0;
  z-index: 0;
  overflow: hidden;
  pointer-events: none;
}
.hero-vis-gradient-left {
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg,rgba(5,15,35,0.82) 0%,rgba(5,15,35,0.50) 45%,rgba(0,30,80,0.10) 70%,transparent 100%);
}
.hero-vis-gradient-bottom {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 250px;
  background: linear-gradient(to top,rgba(2,8,20,1) 0%,rgba(2,8,20,0.65) 50%,transparent 100%);
}
.hero-vis-gradient-top {
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 120px;
  background: linear-gradient(to bottom,rgba(2,8,20,0.85),transparent);
}
.hero-vis-stars-wrap {
  position: absolute;
  inset: 0;
}

/* --- Stats Strip --- */
.hero-stats-strip {
  display: flex;
  justify-content: center;
  align-items: stretch;
  flex-wrap: wrap;
  gap: 0;
  max-width: 900px;
  margin: 0 auto 2rem;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(59,130,246,0.18);
  background: rgba(10,18,35,0.85);
}
.stat-item-inner {
  flex: 1;
  min-width: 160px;
  padding: 1.3rem 1.2rem;
  text-align: center;
  border-right: 1px solid rgba(59,130,246,0.12);
}
.stat-item-inner:last-child { border-right: none; }
.stat-num-val {
  display: block;
  font-size: 1.8rem;
  font-weight: 900;
  line-height: 1;
}
.stat-num-blue { color: #3B82F6; }
.stat-num-green { color: #00e676; }
.stat-num-lblue { color: #60A5FA; }
.stat-label-val {
  font-size: 0.78rem;
  color: rgba(208,228,244,0.7);
  margin-top: 0.3rem;
  display: block;
}

/* --- Testimonial Stripe --- */
#hero-testimonial-stripe {
  max-width: 900px;
  margin: 0 auto 2rem;
  padding: 0 1.5rem;
}

.tstripe-card {
  background: rgba(100,160,255,0.07);
  border-radius: 14px;
  padding: 1.1rem 1.3rem;
  position: relative;
  overflow: hidden;
}
.tstripe-card-default { border: 1px solid rgba(100,180,255,0.15); }
.tstripe-card-gold { border: 1px solid rgba(255,215,64,0.2); }
.tstripe-top-line {
  position: absolute;
  top: 0; left: 15%; right: 15%;
  height: 1px;
}
.tstripe-top-line-gold { background: linear-gradient(90deg,transparent,rgba(255,215,64,0.35),transparent); }
.tstripe-top-line-blue { background: linear-gradient(90deg,transparent,rgba(59,130,246,0.45),transparent); }
.tstripe-top-line-lblue { background: linear-gradient(90deg,transparent,rgba(96,165,250,0.35),transparent); }
.tstripe-stars {
  color: #fbbc04;
  font-size: 0.8rem;
  margin-bottom: 0.5rem;
}
.tstripe-quote {
  font-size: 0.82rem;
  color: rgba(232,244,255,0.85);
  line-height: 1.55;
  font-style: italic;
  margin: 0 0 0.7rem;
}
.tstripe-author {
  font-size: 0.75rem;
  font-weight: 700;
  color: rgba(255,255,255,0.6);
}
.tstripe-footer {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  margin-top: 0.8rem;
}
.tstripe-google-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: white;
  flex-shrink: 0;
}
.tstripe-trust-text {
  font-size: 0.8rem;
  font-weight: 700;
  color: rgba(255,255,255,0.7);
}
.tstripe-trust-sub {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.4);
}

/* --- Hero Glass Cards Container --- */
#hero-glass-cards {
  position: relative;
  z-index: 2;
  margin-top: 0px;
  padding: 0 1.5rem 0;
  display: flex;
  gap: 1.2rem;
  justify-content: center;
  flex-wrap: wrap;
  pointer-events: auto;
}
.hero-glass-cards-overlay {
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 100px;
  background: linear-gradient(to bottom,rgba(2,8,20,0),rgba(2,8,20,0.3));
  pointer-events: none;
  z-index: 0;
}

/* --- Hero Glass Card shared (augments existing .hero-glass-card) --- */
.hero-glass-card {
  flex: 1;
  min-width: 200px;
  max-width: 280px;
  background: rgba(13,19,40,0.85);
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: 18px;
  padding: 1.4rem 1.6rem;
  box-shadow: 0 8px 32px rgba(0,0,0,0.35), 0 0 0 1px rgba(59,130,246,0.06);
  transition: transform 0.3s, box-shadow 0.3s;
  position: relative;
  overflow: hidden;
}
.card-top-line {
  position: absolute;
  top: 0; left: 15%; right: 15%;
  height: 1px;
}
.card-top-line-gold { background: linear-gradient(90deg,transparent,rgba(255,215,64,0.4),transparent); }
.card-top-line-blue { background: linear-gradient(90deg,transparent,rgba(59,130,246,0.5),transparent); }
.card-emoji { font-size: 1.8rem; margin-bottom: 0.5rem; }
.card-label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 0.3rem;
}
.card-label-gold { color: var(--gold); }
.card-label-cyan { color: var(--blue); }
.card-label-blue { color: #60A5FA; }
.card-price {
  font-size: 1.6rem;
  font-weight: 900;
  color: #F5A623;
  line-height: 1;
  text-shadow: 0 0 16px rgba(245,166,35,0.35);
}
.card-sub {
  font-size: 0.74rem;
  color: rgba(200,220,255,0.7);
  margin-top: 0.3rem;
}
.card-desc {
  font-size: 0.8rem;
  color: rgba(200,230,255,0.75);
  margin-top: 0.4rem;
}
.card-dot-row {
  margin-top: 0.8rem;
  display: flex;
  align-items: center;
  gap: 0.4rem;
}
.card-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
}
.card-dot-green { background: #00e676; box-shadow: 0 0 8px #00e676; }
.card-dot-blue { background: #60A5FA; box-shadow: 0 0 8px #60A5FA; }
.card-dot-text-green { font-size: 0.75rem; color: rgba(0,230,118,0.9); font-weight: 700; }
.card-dot-text-blue { font-size: 0.75rem; color: rgba(59,130,246,0.9); font-weight: 700; }

/* --- Paket Grid --- */
.paket-section-wrap {
  padding: 1.5rem 1.5rem 0.5rem;
  max-width: 900px;
  margin: 0 auto;
}
.paket-section-header {
  margin-bottom: 1.2rem;
}
.paket-section-label {
  text-align: center;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: rgba(96,165,250,0.75);
  margin-bottom: 1rem;
}
.paket-grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 1rem;
}
.paket-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 14px;
  padding: 1.1rem;
  text-align: center;
  position: relative;
}
.paket-card-highlight {
  background: rgba(59,130,246,0.07);
  border: 2px solid rgba(59,130,246,0.35);
  border-radius: 14px;
  padding: 1.1rem;
  text-align: center;
  position: relative;
}
.paket-badge {
  position: absolute;
  top: -10px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg,#F5A623,#E8960F);
  color: #060b18;
  font-size: 0.65rem;
  font-weight: 800;
  padding: 0.2rem 0.7rem;
  border-radius: 50px;
  white-space: nowrap;
}
.paket-name {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 0.4rem;
}
.paket-name-muted { color: rgba(208,228,244,0.6); }
.paket-name-cyan { color: var(--blue); }
.paket-kwp {
  font-size: 1.1rem;
  font-weight: 900;
  color: #F5A623;
  line-height: 1;
}
.paket-storage {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.55);
  margin: 0.2rem 0 0.6rem;
}
.paket-price {
  font-size: 1.4rem;
  font-weight: 900;
  color: #F5A623;
  text-shadow: 0 0 18px rgba(245,166,35,0.4);
}
.paket-incl {
  font-size: 0.7rem;
  color: rgba(0,230,118,0.85);
  margin-top: 0.3rem;
}
.btn-small-cta {
  display: block;
  text-align: center;
  margin-top: 0.8rem;
  padding: 0.5rem 1rem;
  border-radius: 8px;
  background: rgba(59,130,246,0.1);
  border: 1px solid rgba(59,130,246,0.25);
  color: #3B82F6;
  font-size: 0.8rem;
  text-decoration: none;
  transition: all 0.2s;
}
.paket-footnote {
  text-align: center;
  font-size: 0.7rem;
  color: rgba(208,228,244,0.5);
  margin-top: 0.6rem;
}

/* --- Kombi-Paket Strip --- */
.kombi-strip {
  display: inline-flex;
  align-items: center;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.2rem 2rem;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,215,64,0.2);
  border-radius: 14px;
  padding: 0.9rem 2rem;
  width: 100%;
}
.kombi-label {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255,215,64,0.8);
}
.kombi-desc { font-size: 0.88rem; color: rgba(255,255,255,0.85); }
.kombi-price { font-size: 1rem; font-weight: 900; color: #F5A623; }
.kombi-checks { font-size: 0.78rem; color: rgba(0,230,118,0.9); font-weight: 700; }

/* Ratgeber cards */
.ratgeber-featured-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:1.5rem; margin-bottom:1.5rem; }
.ratgeber-secondary-grid { display:grid; grid-template-columns:repeat(4,1fr); gap:1rem; margin-bottom:2rem; }

.form-input { width:100%; padding:0.75rem 1rem; border-radius:10px; border:1px solid var(--glass-border); background:var(--glass-bg); color:var(--white); font-size:0.92rem; font-family:inherit; outline: 2px solid transparent; transition:border-color .2s; }
.form-input:focus-visible {
  outline: 2px solid var(--gold) !important;
  outline-offset: 2px;
}

/* === Inline Style Migration Part 2 — Round 2 === */

/* Savings labels */
.savings-label { font-size:0.8rem; font-weight:700; letter-spacing:2px; text-transform:uppercase; margin-bottom:0.5rem; }
.savings-label--bad { color:#ef4444; }
.savings-label--good { color:#00e676; }

/* Before/After Slider */
.ba-row { display:flex; justify-content:space-between; font-size:0.85rem; }

/* Feature card extra modifiers */
.feature-card--centered { text-align:center; }
.feature-card--blue-highlight { border-color:rgba(59,130,246,0.4); background:rgba(59,130,246,0.04); position:relative; overflow:hidden; }

/* Card top stripes */
.card-top-stripe { position:absolute; top:0; left:0; right:0; }
.card-top-stripe--blue { height:2px; background:linear-gradient(90deg,transparent,#3B82F6,transparent); }
.card-top-stripe--blue3 { height:3px; background:linear-gradient(90deg,transparent,#3B82F6,transparent); }
.card-top-stripe--blue3-soft { height:3px; background:linear-gradient(90deg,transparent,rgba(59,130,246,0.8),transparent); }
.card-top-stripe--blugreen { height:2px; background:linear-gradient(90deg,transparent,rgba(59,130,246,0.5),rgba(0,230,118,0.5),transparent); }
.card-top-stripe--gold { height:2px; background:linear-gradient(90deg,transparent,#f59e0b,transparent); }
.card-top-stripe--teal { height:2px; background:linear-gradient(90deg,transparent,#34d399,transparent); }
.card-top-stripe--green { height:3px; background:linear-gradient(90deg,transparent,#00e676,transparent); }

/* Foerder Rechner */
.foerder-step-num { width:28px; height:28px; border-radius:50%; background:rgba(0,230,118,0.15); display:flex; align-items:center; justify-content:center; font-size:0.75rem; font-weight:800; color:#00e676; flex-shrink:0; }
.foerder-step-item { display:flex; align-items:center; gap:10px; }
.foerder-step-text { font-size:0.88rem; color:rgba(255,255,255,0.85); }
.foerder-app-cta { background:linear-gradient(135deg,rgba(59,130,246,0.08),rgba(0,230,118,0.06)); border:1px solid rgba(59,130,246,0.2); border-radius:16px; padding:1.5rem; margin:1.5rem 0; text-align:left; }
.foerder-app-header { display:flex; align-items:center; gap:10px; margin-bottom:1rem; }
.foerder-steps-list { display:flex; flex-direction:column; gap:10px; margin-bottom:1.2rem; }
.foerder-urgency-box { background:rgba(0,230,118,0.08); border:1px solid rgba(0,230,118,0.2); border-radius:16px; padding:1rem; margin:1rem 0; font-size:0.9rem; color:rgba(255,255,255,0.8); }
.foerder-amount { font-size:3.5rem; font-weight:900; color:#00e676; line-height:1; }
.foerder-breakdown { font-size:0.85rem; color:rgba(255,255,255,0.6); margin:1rem 0; line-height:1.8; }
.foerder-result { display:none; text-align:center; padding:1rem 0; }

/* Kontakt */
.kontakt-wir-box { max-width:640px; margin:0 auto 2.5rem; background:rgba(59,130,246,0.04); border:1px solid rgba(59,130,246,0.15); border-radius:16px; padding:24px 28px; display:flex; align-items:flex-start; gap:20px; }
.kontakt-avatar { width:56px; height:56px; border-radius:50%; background:linear-gradient(135deg,#3B82F6,#F5A623); display:flex; align-items:center; justify-content:center; font-size:22px; font-weight:900; color:#050D1C; flex-shrink:0; }
.form-group { margin-top:0.9rem; }

/* Footer */
.footer-service-strip { font-size:0.85rem; color:rgba(255,255,255,0.45); text-align:center; margin:1.5rem 0 0.5rem; padding:0.8rem 1rem; border-top:1px solid rgba(59,130,246,0.08); line-height:1.7; }
.footer-social-row { display:flex; gap:1rem; margin-top:1rem; }
.footer-last-cta { background:linear-gradient(135deg,rgba(59,130,246,0.1),rgba(0,100,220,0.08)); border-top:1px solid rgba(59,130,246,0.2); padding:2.5rem 5%; text-align:center; }

/* Section CTA wrappers */
.section-cta-center { text-align:center; margin-top:2rem; }

/* Confirm + ROI boxes */
.confirm-green-box { text-align:center; margin-top:2.5rem; padding:1.5rem; background:rgba(0,230,118,0.06); border:1px solid rgba(0,230,118,0.15); border-radius:14px; }
.roi-cta-box { background:linear-gradient(135deg,rgba(59,130,246,0.06),rgba(245,166,35,0.04)); border:1px solid rgba(59,130,246,0.2); border-radius:16px; padding:24px; margin-top:24px; text-align:center; }
.local-hint-text { text-align:center; font-size:14px; color:rgba(232,244,255,0.7); margin-bottom:24px; line-height:1.6; }

/* Extra review box (Sabine H.) */
.review-extra-box { background:rgba(10,14,24,0.9); border:1px solid rgba(34,197,94,0.2); border-radius:16px; padding:24px; }
.review-extra-header { display:flex; align-items:center; gap:12px; margin-bottom:16px; }
.tc-avatar--emerald { background:linear-gradient(135deg,#22C55E,#16A34A); }

/* --- ROI-Tabelle Section --- */
.roi-section {
  padding: 48px 0;
  background: linear-gradient(180deg, #070F1F 0%, #050D1C 100%);
}
.roi-table-h2 {
  text-align: center;
  font-size: 24px;
  font-weight: 800;
  color: #E8F4FF;
  margin-bottom: 8px;
}
.roi-table-h2-sub {
  font-size: 14px;
  color: rgba(245,166,35,0.8);
  font-weight: 600;
  display: block;
  margin-top: 4px;
}
.roi-table-sub {
  text-align: center;
  font-size: 14px;
  color: rgba(232,244,255,0.6);
  margin-bottom: 32px;
}
.roi-table-wrap { overflow-x: auto; }
.roi-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
}
.roi-thead-row { border-bottom: 1px solid rgba(59,130,246,0.2); }
.roi-th-anlage { padding: 12px 16px; text-align: left; color: #3B82F6; font-weight: 700; }
.roi-th-preis { padding: 12px 16px; text-align: center; color: #F5A623; font-weight: 700; }

.roi-th-netto { padding: 12px 16px; text-align: center; color: #34d399; font-weight: 700; }
.roi-th-erspar { padding: 12px 16px; text-align: center; color: #22C55E; font-weight: 700; }
.roi-th-amor { padding: 12px 16px; text-align: center; color: rgba(232,244,255,0.8); font-weight: 700; }
.roi-tr-default { border-bottom: 1px solid rgba(255,255,255,0.05); }
.roi-tr-alt { border-bottom: 1px solid rgba(255,255,255,0.05); background: rgba(59,130,246,0.03); }
.roi-td-anlage { padding: 14px 16px; color: #E8F4FF; }
.roi-td-preis { padding: 14px 16px; text-align: center; color: #F5A623; font-weight: 700; }

.roi-td-netto { padding: 14px 16px; text-align: center; color: #34d399; font-weight: 700; }
.roi-td-erspar { padding: 14px 16px; text-align: center; color: #22C55E; font-weight: 700; }
.roi-td-amor { padding: 14px 16px; text-align: center; color: rgba(232,244,255,0.7); }
.roi-footnote {
  text-align: center;
  font-size: 12px;
  color: rgba(232,244,255,0.4);
  margin-top: 16px;
}

/* --- Partner Bar Label --- */
.partner-bar-label {
  text-align: center;
  padding: 0.6rem 1rem 0.2rem;
  font-size: 0.75rem;
  color: rgba(255,255,255,0.35);
  letter-spacing: 2px;
  font-weight: 600;
}
.partner-logo-gold { color: #f5c842; }
.partner-logo-blue { color: #60A5FA; }
.partner-logo-cyan { color: #40efff; }
.partner-logo-green { color: #34d399; }

/* === Migrated Inline Styles === */

/* Color utilities */
.c-gold { color: var(--gold); }
.c-white { color: var(--white); }
.c-green { color: #00e676; font-weight: 700; }
.c-blue { color: #3B82F6; }
.c-blue-fw { color: #3B82F6; font-weight: 700; }
.c-blue-mid { color: #60A5FA; font-weight: 700; }
.c-red-fw { color: #ef4444; font-weight: 700; }
.c-orange { color: #F5A623; }
.c-gray-light { color: rgba(255,255,255,0.6); }
.c-gray-light2 { color: rgba(255,255,255,0.7); }
.c-gray-light3 { color: rgba(255,255,255,0.75); }
.c-blue-link { color: #3B82F6; text-decoration: none; }
.c-green-plain { color: #00e676; }

/* Typography */
.fs-sm { font-size: 0.9rem; color: rgba(255,255,255,0.8); }
.fs-xs-gray { font-size: 0.8rem; color: var(--gray); }
.fs-xs-gray-light { font-size: 0.8rem; color: var(--gray-light); }
.fs-xs-gray-light-mt { font-size: 0.8rem; color: var(--gray-light); margin-top: 0.3rem; }
.fs-xs-gray-mt { font-size: 0.8rem; color: var(--gray); line-height: 1.5; }

.fs-xs-white { font-size: 0.88rem; font-weight: 700; color: var(--white); }
.fs-italic-sm { font-size: 0.78rem; color: rgba(232,244,255,0.8); line-height: 1.5; margin-bottom: 0.6rem; font-style: italic; }
.fs-badge-blue { font-size: 0.72rem; font-weight: 700; color: #E8F4FF; }
.fs-muted-xs { font-size: 0.68rem; color: rgba(232,244,255,0.5); }
.fs-orange-label { color: #F5A623; font-size: 0.7rem; margin-bottom: 0.4rem; }
.fs-label-block { display: block; font-size: 0.85rem; font-weight: 700; color: var(--gray-light); margin-bottom: 0.35rem; }
.fs-lg-icon { font-size: 1.2rem; margin-bottom: 0.3rem; }
.fs-xl-icon { font-size: 1.6rem; margin-bottom: 0.6rem; }
.fs-xxl-icon { font-size: 2.5rem; margin-bottom: 0.8rem; }
.fs-24-white { font-size: 24px; color: white; }
.fs-sm-fw { font-size: 0.88rem; font-weight: 800; color: #fff; margin-bottom: 0.3rem; line-height: 1.3; }
.fs-sm-slate { font-size: 0.85rem; color: #94a3b8; }
.fs-sm-white { font-size: 0.78rem; color: rgba(255,255,255,0.65); line-height: 1.4; }
.fs-xs-muted { font-size: 0.72rem; color: rgba(255,255,255,0.55); margin-top: 0.2rem; }
.fs-sm-muted { font-size: 0.8rem; color: rgba(255,255,255,0.7); margin-bottom: 1rem; }
.fs-sm-e8 { font-size: 0.8rem; color: rgba(232,244,255,0.6); }
.fs-sm-desc { font-size: 0.88rem; color: var(--gray-light); line-height: 1.6; flex: 1; }
.fs-12-muted { font-size: 12px; color: rgba(232,244,255,0.6); margin-top: 4px; }
.fs-body-gray { font-size: 0.95rem; color: var(--gray-light); line-height: 1.7; }
.fs-body-white { font-size: 0.9rem; color: rgba(255,255,255,0.7); margin-bottom: 1rem; line-height: 1.6; }
.fs-body-white2 { font-size: 0.95rem; color: rgba(255,255,255,0.7); line-height: 1.6; margin-bottom: 1.2rem; }
.fs-body-sm { font-size: 0.85rem; color: rgba(255,255,255,0.8); margin-bottom: 1.5rem; line-height: 1.6; }
.fs-h-sm { font-size: 1rem; font-weight: 800; color: var(--white); margin-bottom: 0.5rem; }
.fs-h-md { font-size: 1.2rem; font-weight: 800; color: white; margin-bottom: 0.5rem; }
.fs-h-md2 { font-size: 1.1rem; font-weight: 800; color: white; margin-bottom: 0.4rem; }
.fs-h-md3 { font-size: 1.05rem; font-weight: 800; color: #fff; margin-bottom: 0.5rem; line-height: 1.35; }
.fs-gold-mt { margin-top: 0.8rem; font-size: 0.85rem; font-weight: 700; color: var(--gold); }
.fs-green-mt { margin-top: 0.8rem; font-size: 0.85rem; font-weight: 700; color: #00e676; }
.fw-white { font-weight: 700; color: #fff; }
.fw-400-muted { font-weight: 400; opacity: 0.6; }
.fs-20-blue { font-size: 20px; font-weight: 900; color: #3B82F6; }
.fs-1-4-blue { font-size: 1.4rem; font-weight: 900; color: #60A5FA; }
.fs-blue-sm { font-size: 0.8rem; color: rgba(59,130,246,0.8); margin-top: 0.4rem; }
.fs-blue-sm2 { font-size: 0.85rem; color: rgba(59,130,246,0.85); margin-top: 0.3rem; font-weight: 600; }
.fs-gold-label { font-size: 0.68rem; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: var(--gold); margin-bottom: 0.3rem; }

/* Layout utilities */
.flex-row-center { display: flex; align-items: center; gap: 0.6rem; }

.flex-row-center-text { display: flex; align-items: center; gap: 0.6rem; font-size: 0.88rem; color: rgba(255,255,255,0.8); }
.flex-col-gap { display: flex; flex-direction: column; gap: 0.6rem; }
.flex-col-gap-mt { margin-top: 1.5rem; display: flex; flex-direction: column; gap: 0.6rem; }
.flex-between { display: flex; justify-content: space-between; align-items: center; margin-bottom: 0.5rem; }
.text-center { text-align: center; }
.max-w-900 { max-width: 900px; margin: 0 auto; }
.w-full { width: 100%; }
.will-change-t { will-change: transform; }

/* Grid */
.grid-auto-140 { display: grid; grid-template-columns: repeat(auto-fit, minmax(140px, 1fr)); gap: 12px; }

/* Card/Box styles */
.glass-card-sm { background: var(--glass-bg); border: 1px solid var(--glass-border); border-radius: 12px; padding: 1rem; text-decoration: none; text-align: center; transition: all 0.3s; }
.glass-card-inner { padding: 1.4rem; flex: 1; display: flex; flex-direction: column; }
.dark-card { flex: 0 0 auto; width: 200px; background: rgba(15,20,35,0.7); border: 1px solid rgba(59,130,246,0.15); border-radius: 12px; padding: 1rem; }
.ghost-card { display: block; text-decoration: none; border-radius: 14px; padding: 1.2rem; background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.08); transition: all 0.3s; }
.blue-glass-card { background: rgba(100,160,255,0.18); border: 1px solid rgba(100,180,255,0.12); border-radius: 16px; padding: 1.2rem; position: relative; overflow: hidden; }
.center-pad-card { text-align: center; padding: 16px; background: rgba(255,255,255,0.03); border-radius: 12px; }

/* Number badge */
.num-badge { width: 56px; height: 56px; border-radius: 50%; background: linear-gradient(135deg, var(--gold), var(--gold-dark)); color: #fff; font-size: 1.2rem; font-weight: 900; display: flex; align-items: center; justify-content: center; margin: 0 auto 1rem; box-shadow: 0 4px 20px rgba(37,99,235,0.15); }

/* Form input */


/* Badge/Tag */
.badge-green { font-size: 0.68rem; font-weight: 700; color: #00e676; background: rgba(0,230,118,0.1); border: 1px solid rgba(0,230,118,0.25); border-radius: 50px; padding: 0.2rem 0.6rem; white-space: nowrap; }

/* Decorative */
.top-line { position: absolute; top: 0; left: 0; right: 0; height: 2px; background: linear-gradient(90deg, transparent, #60A5FA, transparent); }
.bg-quote-deco { position: absolute; top: -20px; right: -20px; font-size: 5rem; opacity: 0.08; }
.progress-bar { flex: 1; height: 4px; border-radius: 2px; background: rgba(255,255,255,0.15); max-width: 80px; }

/* Transition delays */
.delay-01 { transition-delay: 0.1s; }
.delay-02 { transition-delay: 0.2s; }

/* Batch 4 additions */
.fs-green-xs-mt { font-size: 0.76rem; color: #00e676; margin-top: 0.5rem; font-weight: 700; }
.fs-xs-gl-mt { font-size: 0.75rem; color: var(--gray-light); margin-top: 0.2rem; }
.flex-green-row { display: flex; align-items: center; gap: 0.5rem; margin-top: 0.6rem; font-size: 0.84rem; color: #00e676; font-weight: 700; }
.nav-link-muted { color: rgba(255,255,255,0.6); text-decoration: none; font-size: 1.2rem; }
.c-amber { color: #ffd740; }
.c-blue-light { color: #60A5FA; }
.blue-info-sm { background: rgba(59,130,246,0.1); border: 1px solid rgba(59,130,246,0.2); border-radius: 10px; padding: 0.8rem; text-align: center; }
.blue-section-lg { background: rgba(59,130,246,0.07); border: 1px solid rgba(59,130,246,0.2); border-radius: 16px; padding: 1.8rem; text-align: center; }
.blue-section-md { background: rgba(59,130,246,0.07); border: 1px solid rgba(59,130,246,0.2); border-radius: 14px; padding: 1.4rem; text-align: center; }
.btn-ghost-muted { background: none; border: none; color: rgba(255,255,255,0.4); font-size: 0.8rem; cursor: pointer; margin-top: 1rem; }
.anim-delay-01 { animation-delay: 0.1s; }
.anim-delay-02 { animation-delay: 0.2s; }
.d-none { display: none; }
.d-inline-flex { display: inline-flex; }

/* === R16 WCAG Contrast & Font-Size Fixes === */

/* Minimum font-sizes for readability */
.hero-stat .label,
.hero-stat-label {
  font-size: max(0.82rem, 13.1px);
}

.section-label {
  font-size: max(0.82rem, 13.1px);
}

footer, footer p, footer span, footer a, footer li {
  font-size: max(0.8rem, 12.8px);
}

/* Ensure sufficient contrast on muted text */
.cta-subtext,
.hero-cta-subtext {
  color: rgba(208, 228, 244, 0.80);
}

.tstripe-trust-sub,
.fs-muted-xs {
  color: rgba(208, 228, 244, 0.70);
}

/* Skip-link focus visibility */
.skip-link:focus {
  top: 0 !important;
  position: fixed;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10000;
  background: var(--gold);
  color: var(--bg-deep);
  padding: 0.8rem 1.5rem;
  border-radius: 0 0 8px 8px;
  font-weight: 700;
  box-shadow: 0 4px 12px rgba(0,0,0,0.3);
  transition: top 0.15s ease;
}
.skip-link:not(:focus){top:-50px}

/* === R17 Performance: content-visibility === */
section:not(.hero):not(#start) {
  content-visibility: auto;
  contain-intrinsic-size: auto 500px;
}
/* === R18 Utility Classes === */
.accent-gold { accent-color:var(--gold); }
.anim-delay-3 { animation-delay:0.3s; }
.b-0 { bottom:0; }
.bc-gold20 { border-color:rgba(255,215,64,0.2); }
.bc-green20 { border-color:rgba(0,230,118,0.2); }
.bg-deep { background:#060b18; }
.bg-none { background:none; }
.flex-center { display:flex; justify-content:center; align-items:center; }
.bg-white { background:white; }
.block { display:block; }
.border-none { border:none; }
.cursor-default { cursor:default; }
.cursor-pointer { cursor:pointer; }
.cursor-resize { cursor:col-resize; }
.delay-1 { transition-delay:0.1s; }
.delay-2 { transition-delay:0.2s; }
.delay-3 { transition-delay:0.3s; }
.delay-4 { transition-delay:0.4s; }
.delay-5 { transition-delay:0.5s; }
.delay-6 { transition-delay:0.6s; }
.delay-7 { transition-delay:0.7s; }
.flex { display:flex; }
.flex-1 { flex:1; }
.flex-col { flex-direction:column; }
.flex-wrap { flex-wrap:wrap; }

.font-inherit { font-family:inherit; }
.font-semibold { font-weight:600; }
.fs-11 { font-size:11px; }
.fs-12 { font-size:12px; }
.fs-13 { font-size:13px; }
.fs-14 { font-size:14px; }
.fs-16 { font-size:16px; }
.fs-18 { font-size:18px; }
.fs-20 { font-size:20px; }
.fs-2xl { font-size:1.4rem; }
.fs-2xl2 { font-size:1.5rem; }
.fs-3xl { font-size:2rem; }
.fs-3xl2 { font-size:2.5rem; }

.fs-4xl { font-size:3rem; }
.fs-4xl2 { font-size:3.5rem; }
.fs-4xl3 { font-size:2.2rem; }
.fs-5xl { font-size:2.8rem; }
.fs-base { font-size:0.9rem; }
.fs-base2 { font-size:0.92rem; }
.fs-base3 { font-size:0.95rem; }
.fs-lg { font-size:1.1rem; }
.fs-md { font-size:1rem; }
.fs-md2 { font-size:1.05rem; }
.fs-sm2 { font-size:0.78rem; }
.fs-sm3 { font-size:0.82rem; }
.fs-sm4 { font-size:0.85rem; }
.fs-sm5 { font-size:0.88rem; }
.fs-xl { font-size:1.2rem; }
.fs-xl2 { font-size:1.3rem; }
.fs-xs { font-size:0.7rem; }
.fs-xs2 { font-size:0.72rem; }
.fs-xs3 { font-size:0.75rem; }
.fs-xxs { font-size:0.68rem; }
.gap-04 { gap:0.4rem; }
.gap-05 { gap:0.5rem; }
.gap-06 { gap:0.6rem; }
.gap-08 { gap:0.8rem; }
.gap-09 { gap:0.9rem; }
.gap-12 { gap:1.2rem; }
.gap-16px { gap:16px; }
.gap-2 { gap:1rem; }
.gap-3 { gap:1.5rem; }
.gap-4 { gap:2rem; }
.gap-8px { gap:8px; }
.grid { display:grid; }
.grid-auto-160 { grid-template-columns:repeat(auto-fit,minmax(160px,1fr)); }
.grid-auto-190 { grid-template-columns:repeat(auto-fit,minmax(190px,1fr)); }
.grid-auto-260 { grid-template-columns:repeat(auto-fit,minmax(260px,1fr)); }
.grid-auto-280 { grid-template-columns:repeat(auto-fit,minmax(280px,1fr)); }
.grid-auto-300 { grid-template-columns:repeat(auto-fit,minmax(300px,1fr)); }
.grid-cols-2 { grid-template-columns:1fr 1fr; }
.grid-cols-3 { grid-template-columns:repeat(3,1fr); }
.grid-cols-4 { grid-template-columns:repeat(4,1fr); }
.grid-cols-5 { grid-template-columns:repeat(5,1fr); }
.h-1px { height:1px; }
.h-24 { height:24px; }
.h-280 { height:280px; }
.h-2px { height:2px; }
.h-300 { height:300px; }
.h-3px { height:3px; }
.h-40 { height:40px; }
.h-48 { height:48px; }
.h-4px { height:4px; }
.h-56 { height:56px; }
.invisible { visibility:hidden; }
.italic { font-style:italic; }
.items-center { align-items:center; }
.justify-between { justify-content:space-between; }
.justify-center { justify-content:center; }
.l-0 { left:0; }
.l-50 { left:50%; }
.lh-loose { line-height:1.8; }
.lh-loose2 { line-height:1.7; }

.lh-relaxed { line-height:1.65; }
.lh-relaxed2 { line-height:1.6; }
.lh-snug2 { line-height:1.3; }
.lh-tight { line-height:1.2; }
.lh-tight2 { line-height:1.1; }
.m-0-0-12 { margin:0 0 1.2rem; }
.m-0-auto-1 { margin:0 auto 1rem; }
.m-0-auto-2 { margin:0 auto 2rem; }
.m-05-0-0 { margin:0.5rem 0 0; }
.m-2-auto { margin:2rem auto; }
.max-w-480 { max-width:480px; }
.max-w-560 { max-width:560px; }
.max-w-680 { max-width:680px; }
.max-w-700 { max-width:700px; }
.max-w-760 { max-width:760px; }
.max-w-80 { max-width:80px; }
.max-w-lg { max-width:1100px; }
.max-w-md { max-width:800px; }
.mb-02 { margin-bottom:0.2rem; }
.mb-03 { margin-bottom:0.3rem; }
.mb-04 { margin-bottom:0.4rem; }
.mb-06 { margin-bottom:0.6rem; }
.mb-075 { margin-bottom:0.75rem; }
.mb-08 { margin-bottom:0.8rem; }
.mb-1 { margin-bottom:0.5rem; }
.mb-12 { margin-bottom:1.2rem; }
.mb-13 { margin-bottom:1.3rem; }
.mb-16px { margin-bottom:16px; }
.mb-2 { margin-bottom:1rem; }
.mb-20px { margin-bottom:20px; }
.mb-3 { margin-bottom:1.5rem; }
.mb-4 { margin-bottom:2rem; }
.mb-5 { margin-bottom:2.5rem; }
.mb-6px { margin-bottom:6px; }
.mb-8px { margin-bottom:8px; }
.min-h-24 { min-height:24px; }
.min-w-24 { min-width:24px; }
.ml-auto { margin-left:auto; }
.mr-auto { margin-right:auto; }
.mt-03 { margin-top:0.3rem; }
.mt-04 { margin-top:0.4rem; }
.mt-05 { margin-top:0.5rem; }
.mt-06 { margin-top:0.6rem; }
.mt-07 { margin-top:0.7rem; }
.mt-08 { margin-top:0.8rem; }
.mt-09 { margin-top:0.9rem; }
.mt-12 { margin-top:1.2rem; }
.mt-2 { margin-top:1rem; }
.mt-3 { margin-top:1.5rem; }
.mt-3px { margin-top:3px; }
.mt-4 { margin-top:2rem; }
.mt-40px { margin-top:40px; }
.mt-5 { margin-top:2.5rem; }
.mt-6 { margin-top:3rem; }
.mt-8px { margin-top:8px; }
.mx-auto-block { margin-left:auto;margin-right:auto; }
.no-underline { text-decoration:none; }
.not-italic { font-style:normal; }
.object-cover { object-fit:cover; }
.opacity-50 { opacity:0.5; }
.opacity-70 { opacity:0.7; }
.outline-none { outline:none; }
.p-08 { padding:0.8rem; }
.p-09 { padding:0.9rem; }
.p-14 { padding:1.4rem; }
.p-18 { padding:1.8rem; }
.p-2 { padding:1rem; }
.p-32 { padding:32px; }
.p-4 { padding:2rem; }
.p-modal { padding:2.5rem 2rem; }
.p-slide { padding:2.5rem 3rem; }
.px-btn-24 { padding:12px 24px; }
.px-btn-24b { padding:14px 24px; }
.px-btn-28 { padding:12px 28px; }
.px-btn-lg { padding:0.9rem 2rem; }
.px-btn-lg2 { padding:0.8rem 2rem; }
.px-btn-lg3 { padding:0.9rem 1.2rem; }
.px-btn-md { padding:0.85rem 1.8rem; }
.px-btn-md2 { padding:0.85rem 1.5rem; }
.px-btn-sm { padding:0.6rem 1.5rem; }
.px-btn-xl { padding:1rem 2rem; }
.px-btn-xl2 { padding:1rem 2.5rem; }
.px-btn-xl3 { padding:1rem 2.2rem; }
.px-card-lg { padding:1.2rem 2rem; }
.px-card-md { padding:1rem 1.5rem; }
.px-chip { padding:0.2rem 0.75rem; }
.px-input { padding:0.75rem 1rem; }
.px-tag { padding:2px 8px; }
.px-tag2 { padding:4px 8px; }
.py-scroll { padding:0.5rem 0 1rem; }
.py-section { padding:5rem 1.5rem; }
.py-section2 { padding:4rem 1.5rem; }
.py-section3 { padding:3rem clamp(1rem, 4vw, 3rem); }
.resize-y { resize:vertical; }
.rounded-12 { border-radius:12px; }
.rounded-14 { border-radius:14px; }
.rounded-16 { border-radius:16px; }
.rounded-20 { border-radius:20px; }
.rounded-full { border-radius:50%; }
.rounded-pill { border-radius:50px; }
.scrollbar-thin { scrollbar-width:thin; }
.select-none { user-select:none; }

.t-0 { top:0; }
.t-50 { top:50%; }
.text-amber { color:#f5c842; }
.text-black { color:#000; }
.text-blue { color:#3B82F6; }
.text-blue-fade { color:rgba(96,165,250,0.7); }
.text-blue-fade2 { color:rgba(59,130,246,0.75); }
.text-blue-fade3 { color:rgba(96,165,250,0.8); }
.text-blue-light { color:#60A5FA; }
.text-blue-var { color:var(--blue); }
.text-blue70 { color:rgba(59,130,246,0.7); }
.text-blue90 { color:rgba(59,130,246,0.9); }
.text-blue95 { color:rgba(96,165,250,0.95); }
.text-cyan { color:#40efff; }
.text-dark { color:#060b18; }
.text-emerald { color:#34d399; }
.text-frost65 { color:rgba(208,228,244,0.65); }
.text-frost80 { color:rgba(208,228,244,0.8); }
.text-gblue { color:#4285f4; }
.text-gold { color:#F5A623; }
.text-gold-var { color:var(--gold); }
.text-gold80 { color:rgba(255,215,64,0.8); }
.text-gold90 { color:rgba(255,215,64,0.9); }
.text-green { color:#00e676; }
.text-green2 { color:#22C55E; }
.text-green70 { color:rgba(0,230,118,0.7); }
.text-green80 { color:rgba(0,230,118,0.8); }
.text-green85 { color:rgba(0,230,118,0.85); }
.text-green90 { color:rgba(0,230,118,0.9); }
.text-gyellow { color:#fbbc04; }
.text-ice { color:#E8F4FF; }
.text-ice40 { color:rgba(232,244,255,0.4); }
.text-ice45 { color:rgba(232,244,255,0.45); }
.text-ice50 { color:rgba(232,244,255,0.5); }
.text-ice60 { color:rgba(232,244,255,0.6); }
.text-ice65 { color:rgba(232,244,255,0.65); }
.text-ice70 { color:rgba(232,244,255,0.7); }
.text-ice80 { color:rgba(232,244,255,0.8); }
.text-ice90 { color:rgba(232,244,255,0.9); }
.text-left { text-align:left; }
.text-muted { color:var(--gray); }
.text-muted-light { color:var(--gray-light); }
.text-orange { color:#f97316; }
.text-red { color:#ef4444; }
.text-red2 { color:#ff6b6b; }
.text-red70 { color:rgba(239,68,68,0.7); }
.text-slate { color:#94a3b8; }
.text-w40 { color:rgba(255,255,255,0.4); }
.text-w45 { color:rgba(255,255,255,0.45); }
.text-w50 { color:rgba(255,255,255,0.5); }
.text-w60 { color:rgba(255,255,255,0.6); }
.text-w65 { color:rgba(255,255,255,0.65); }
.text-w70 { color:rgba(255,255,255,0.7); }
.text-w75 { color:rgba(255,255,255,0.75); }
.text-w80 { color:rgba(255,255,255,0.8); }
.text-w85 { color:rgba(255,255,255,0.85); }
.text-white { color:#fff; }
.text-white-var { color:var(--white); }
.touch-none { touch-action:none; }
.tr-all { transition:all 0.3s; }
.tr-border { transition:border-color 0.2s; }
.tr-top { transition:top .2s; }
.tracking-sm { letter-spacing:1px; }
.tracking-wide { letter-spacing:2px; }
.tracking-wider { letter-spacing:3px; }
.tracking-widest { letter-spacing:4px; }
.underline { text-decoration:underline; }
.uppercase { text-transform:uppercase; }
.w-1px { width:1px; }
.w-24 { width:24px; }
.w-2px { width:2px; }
.w-3px { width:3px; }
.w-40 { width:40px; }
.w-48 { width:48px; }
.w-4px { width:4px; }
.w-56 { width:56px; }
.whitespace-nowrap { white-space:nowrap; }
.z-1 { z-index:1; }
.z-10 { z-index:10; }
.z-9999 { z-index:9999; }
.z-top { z-index:100000; }

/* ==========================================================================
   ACCESSIBILITY HELPERS
   ========================================================================== */

/* Screen-reader only (visually hidden, accessible to AT) */
.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;
}

/* Footer h4 visual sizing (heading hierarchy is h2 > h4 in footer,
   CSS fix: make h4 look like h3-level for visual consistency) */
.footer h4 {
  font-size: 1.05rem;
  font-weight: 800;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: var(--white);
}

/* === Animation-Banner Overlap Fix (R20) === */
.nav { isolation: isolate; }
#stickyCta { isolation: isolate; }
.partner-bar { isolation: isolate; }
.partner-bar-label { position: relative; z-index: 2; background: var(--bg-deep); }
.hero-stats-strip { position: relative; z-index: 2; }

/* Starfield: nicht hinter Nav/StickyCTA rendern */
.starfield {
  clip-path: inset(64px 0 0 0);
}
/* Nebula: nicht hinter Nav rendern */
.nebula {
  clip-path: inset(64px 0 0 0);
}

/* ==========================================================================
   RESPONSIVE: <= 375px (iPhone SE / iPhone 13 mini)
   ========================================================================== */
@media (max-width: 375px) {
  .hero h1 { font-size: 1.8rem; }
  .hero-subtitle { font-size: 0.9rem; }
  .hero-stats { gap: 0.8rem; padding: 1rem; flex-direction: row; flex-wrap: wrap; }
  .hero-stat { flex: 1 1 45%; }
  .hero-ctas .btn-primary { padding: 0.8rem 1.5rem; font-size: 0.95rem; }
  .paket-grid { gap: 0.8rem; }
  .feature-grid { grid-template-columns: 1fr; }
  .nav { padding: 0.5rem 0.8rem; }
  .sticky-cta-headline { font-size: 0.8rem; }
  .sticky-cta-sub { display: none; }
}

/* Förderungs-Insight-Banner (Klaus-Feedback: prominent, nicht Fußnote) */
.foerder-insight-banner {
  background: linear-gradient(135deg, rgba(0,230,118,0.12), rgba(59,130,246,0.10));
  border: 1.5px solid rgba(0,230,118,0.35);
  border-radius: 12px;
  padding: 1rem 1.25rem;
  margin-bottom: 1.2rem;
  font-size: 1rem;
  color: #e2ffe7;
  line-height: 1.5;
}
.foerder-insight-banner strong {
  color: #4eff91;
  font-weight: 700;
}

@media (min-width: 769px) {

  .nebula-1, .nebula-2 { will-change: transform; }
  .shooting-star { will-change: transform, opacity; }
  .hero-orb { will-change: transform; }


  .hero-bafa-badge { display: flex; }
  .hero [class*="meister"], .hero [class*="vor-ort"] { display: flex; }

}

/* === HIGH CONTRAST MODE === */
@media (forced-colors: active) {
  .gradient-text, [class*="gradient"] {
    background: none !important;
    -webkit-background-clip: unset !important;
    background-clip: unset !important;
    -webkit-text-fill-color: CanvasText !important;
    color: CanvasText !important;
  }
  .btn-primary, .btn-secondary {
    border: 2px solid ButtonText !important;
  }
}

/* === MOBILE PERFORMANCE: disable decorative animations === */
@media (max-width: 768px) {
  .nebula-1, .nebula-2, .shooting-star, .hero-orb {
    animation: none !important;
  }
  .nav {
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
    background: var(--bg-deep) !important;
  }
}

/* === SLIM NAV ON MOBILE === */
@media (max-width: 768px) {
  .nav {
    padding-top: 0.5rem !important;
    padding-bottom: 0.5rem !important;
  }
  .nav-logo-link img {
    height: 28px !important;
  }
}

/* === FIX: Hero-Orbs hinter Content, Buttons klickbar === */
.hero-orbs {
  position: absolute !important;
  inset: 0 !important;
  z-index: 0 !important;
  pointer-events: none !important;
  overflow: hidden !important;
}
.hero-orb {
  position: absolute !important;
  border-radius: 50% !important;
  pointer-events: none !important;
}
.hero h1,
.hero-subtitle,
.hero-ctas,
.hero-stats,
.hero-bafa-badge,
.hero-location,
.hero-cta-subtext {
  position: relative !important;
  z-index: 2 !important;
}

/* FIX 6: Feature-Grid Notebook Breakpoint */
@media (max-width: 1200px) and (min-width: 1025px) {
  .feature-grid { grid-template-columns: repeat(3, 1fr); }
}

/* FIX 7: Paket-Grid Tablet */
@media (max-width: 1024px) {
  .paket-grid { grid-template-columns: 1fr 1fr; }
}

/* FIX 8: Testimonial + Ratgeber Grid 3. Karte */
@media (max-width: 1024px) and (min-width: 769px) {
  .testimonial-grid > :last-child:nth-child(odd),
  .ratgeber-featured-grid > :last-child:nth-child(odd) {
    grid-column: 1 / -1;
    max-width: 50%;
    margin: 0 auto;
  }
}

/* FIX 9: .text-faint CSS Klasse */
.text-faint { color: var(--text-faint); }

/* FIX 10: .hero-cards-hint + .scroll-hint */
.hero-cards-hint, .scroll-hint {
  text-align: center;
  font-size: 0.75rem;
  color: rgba(255,255,255,0.35);
  margin-top: 0.3rem;
}
@media (min-width: 769px) {
  .hero-cards-hint, .scroll-hint { display: none; }
}

/* ================================================================
   MOBILE RELEASE FIXES — Grid Breakpoints + Touch + Layout
   ================================================================ */

/* --- Grid Utility Klassen responsive machen --- */
@media (max-width: 768px) {
  .grid-cols-2 { grid-template-columns: 1fr !important; }
  .grid-cols-4 { grid-template-columns: repeat(2, 1fr) !important; }
  .grid-cols-5 { grid-template-columns: 1fr !important; }
}

@media (max-width: 480px) {
  .grid-cols-2 { grid-template-columns: 1fr !important; }
  .grid-cols-3 { grid-template-columns: 1fr !important; }
  .grid-cols-4 { grid-template-columns: 1fr !important; }
  .grid-cols-5 { grid-template-columns: 1fr !important; }
  .paket-grid { grid-template-columns: 1fr !important; }
}

/* --- Gewerbe-Tabelle: eigene Spalten-Regeln (nicht die Privat-ROI verstecken) --- */
@media (max-width: 768px) {
  #gewerbe table th:nth-child(3),
  #gewerbe table td:nth-child(3),
  #gewerbe table th:nth-child(4),
  #gewerbe table td:nth-child(4) {
    display: table-cell !important;
  }
  #gewerbe table { font-size: 0.78rem; }
  #gewerbe table th, #gewerbe table td { padding: 0.5rem 0.4rem; }
}

/* --- Gewerbe Service Cards: override Inline min-width --- */
@media (max-width: 480px) {
  #gewerbe .glass-card[style*="flex:1"],
  #gewerbe .glass-card[style*="min-width"] {
    min-width: 0 !important;
    flex: 1 1 100% !important;
  }
}

/* --- WhatsApp Float: offset when Sticky CTA visible --- */
@media (max-width: 768px) {
  .wa-float {
    bottom: 80px !important;
    transition: bottom 0.3s ease;
  }
}

/* --- Kontakt "Wer wir sind" Box: stack vertically --- */
@media (max-width: 480px) {
  .kontakt-wir-box {
    flex-direction: column !important;
    align-items: center !important;
    text-align: center !important;
    padding: 1.2rem 1rem !important;
  }
}

/* --- Sticky CTA: full width buttons on small screens --- */
@media (max-width: 375px) {
  .sticky-cta-headline { white-space: normal !important; font-size: 0.75rem !important; }
  .sticky-cta-btns { width: 100% !important; display: flex !important; gap: 0.5rem !important; }
  .sticky-btn-call, .sticky-btn-cta { flex: 1 !important; text-align: center !important; justify-content: center !important; padding: 8px 10px !important; font-size: 0.78rem !important; }
}

/* --- Partner-Bar: hide duplicated logos on mobile --- */
@media (max-width: 768px) {
  .partner-track > .partner-logo:nth-child(n+11) { display: none; }
}

/* --- Kombi-Strip: tighter padding on mobile --- */
@media (max-width: 480px) {
  .kombi-strip { padding: 0.8rem 1rem !important; gap: 0.6rem !important; }
}

/* --- Touch Targets: footer + feature links --- */
@media (max-width: 768px) {
  .feature-link { min-height: 44px; display: inline-flex; align-items: center; }
  footer a { min-height: 44px; display: inline-flex; align-items: center; }
}

/* --- Social Proof Stats: 2 cols on very small screens --- */
@media (max-width: 400px) {
  .grid-auto-160 { grid-template-columns: 1fr 1fr !important; }
}

/* --- Kontaktformular Row: 1 col on mobile --- */
@media (max-width: 480px) {
  .kontakt-form-row { grid-template-columns: 1fr !important; }
}

/* ================================================================
   RELEASE-FIX: Global Audit Patch
   — Font-Sizes, Touch-Targets, Missing Classes, img Safety
   ================================================================ */

/* Global image safety */
img { max-width: 100%; height: auto; }

/* Missing reference card classes */
.ref-img-wrap { position: relative; overflow: hidden; border-radius: 12px 12px 0 0; }
.ref-img-wrap img { width: 100%; display: block; object-fit: cover; }
.ref-body { padding: 1.2rem; }
.ref-body strong { font-size: 0.95rem; color: #fff; display: block; margin-bottom: 0.4rem; }
.ref-body p { font-size: 0.85rem; color: var(--text-muted); line-height: 1.6; }
.ref-badge { position: absolute; top: 12px; left: 12px; font-size: 0.75rem; font-weight: 700; padding: 4px 10px; border-radius: 8px; background: rgba(0,0,0,0.6); backdrop-filter: blur(8px); color: #fff; }
.compare-header { position: relative; padding: 2rem; display: flex; align-items: center; justify-content: center; flex-direction: column; gap: 0.5rem; min-height: 140px; overflow: hidden; }

/* Touch targets: exit popup, dismiss, ghost buttons */
#exitClose { min-width: 44px; min-height: 44px; display: flex; align-items: center; justify-content: center; }
#exitDismissBtn { min-height: 44px; display: inline-flex; align-items: center; justify-content: center; padding: 0.5rem 1rem; }
.btn-ghost-muted { min-height: 44px; padding: 0.5rem 1rem; display: inline-flex; align-items: center; }
.btn-small-cta { min-height: 44px; display: inline-flex; align-items: center; justify-content: center; }
#einzugsgebiet a { min-height: 44px; display: inline-flex; align-items: center; }

/* FAQ max-height safety */
.faq-item.open .faq-a { max-height: 800px; }

/* Paket 3rd card centering on tablet */
@media (max-width: 1024px) and (min-width: 769px) {
  .paket-grid > :last-child:nth-child(odd) {
    grid-column: 1 / -1;
    max-width: 50%;
    margin: 0 auto;
  }
}

/* Footer 5-col fix for 1024-1200px */
@media (max-width: 1200px) and (min-width: 1025px) {
  .footer-grid.grid-cols-5 { grid-template-columns: repeat(3, 1fr); }
}

/* ROI section mobile padding */
@media (max-width: 768px) {
  .roi-section { padding-left: 1rem; padding-right: 1rem; }
}

/* Gewerbe CTA stack on mobile */
@media (max-width: 768px) {
  #gewerbe .text-center { display: flex; flex-direction: column; align-items: center; gap: 0.8rem; }
  #gewerbe .btn-secondary[style*="margin-left"] { margin-left: 0 !important; }
}

/* Fallstudie stats keep 2x2 on mobile */
@media (max-width: 768px) {
  .py-section3 .grid-cols-2.gap-08 { grid-template-columns: 1fr 1fr !important; }
}

/* === MOBILE FONT-SIZE FIX: alles auf min 14px === */
@media (max-width: 768px) {
  /* Utility small font classes */
  .fs-xs, .fs-xs2, .fs-xs3, .fs-xxs,
  .fs-sm2, .fs-sm3, .fs-11, .fs-12,
  .fs-muted-xs, .fs-badge-blue, .fs-orange-label,
  .fs-italic-sm, .fs-12-muted, .fs-xs-muted,
  .fs-sm-white, .fs-green-xs-mt,
  .fs-xs-gray-light, .fs-xs-gray-light-mt, .fs-xs-gray-mt {
    font-size: max(0.875rem, 14px) !important;
  }
  
  /* Component-specific small texts */
  .paket-name, .paket-storage, .paket-incl, .paket-footnote { font-size: max(0.875rem, 14px) !important; }
  .partner-logo { font-size: 0.875rem !important; }
  #trust-strip-compact { font-size: 0.875rem !important; }
  .roi-footnote { font-size: max(0.875rem, 14px) !important; }
  .city-tag { font-size: 0.875rem !important; }
  .about-fact p { font-size: 0.875rem !important; }
  .faq-a p { font-size: 0.9rem !important; line-height: 1.7; }
  .flex-green-row { font-size: 0.875rem !important; }
  .tstripe-author, .tstripe-trust-sub { font-size: max(0.875rem, 14px) !important; }
  .dark-card p, .dark-card span { font-size: max(0.82rem, 13.1px) !important; }
  footer p, footer span, footer a { font-size: max(0.875rem, 14px) !important; }
  #rundum-service .fs-sm { font-size: 0.875rem !important; }
  .digital-foerder-badge { flex-wrap: wrap; }
  .gewerbe-stats-row { gap: 1rem !important; }
  .gewerbe-stats-row > div { flex: 1 1 45%; }
  
  /* Gewerbe table: show all cols, adapt font */
  #gewerbe table th, #gewerbe table td { font-size: max(0.82rem, 13px) !important; }
}
.shooting-star { pointer-events: none !important; }

/* ==========================================================================
   GEWERBE ROI-TABELLE
   ========================================================================== */
.roi-table { width: 100%; border-collapse: collapse; }
.roi-table th { padding: 0.8rem; text-align: left; color: var(--gold); font-size: 0.85rem; font-weight: 700; border-bottom: 1px solid rgba(59,130,246,0.15); }
.roi-table td { padding: 0.8rem; text-align: left; font-size: 0.85rem; color: var(--text-muted); border-bottom: 1px solid rgba(255,255,255,0.05); }
.roi-table td:last-child { color: var(--gold); font-weight: 700; }
@media (max-width: 768px) {
  .roi-table { font-size: 0.8rem; }
  .roi-table th, .roi-table td { padding: 0.6rem 0.4rem; font-size: max(0.8rem, 13px); }
}

/* FIX R31a: hero-cards-hint auf kleinen Screens verstecken */
@media (max-width: 480px) {
  .hero-cards-hint { display: none !important; }
}




/* === TOUCH SCROLL FIX v3 (2026-03-31) === */

/* CRITICAL: overflow-x:hidden only on html, NOT on body.
   Having it on both breaks Android Chrome touch scrolling. */
html {
  overflow-x: hidden !important;
  overflow-y: scroll !important;
  -webkit-overflow-scrolling: touch !important;
  overscroll-behavior-y: contain;
  scroll-behavior: smooth;
}

body {
  overflow: visible !important;
  -webkit-overflow-scrolling: touch !important;
}

/* Allow touch gestures on all elements */
* {
  -ms-touch-action: pan-x pan-y;
}
html, body, main, section, .hero, .starfield, div, article, header, footer {
  touch-action: pan-x pan-y !important;
}

/* Nav menu: only lock scroll when nav is open */
body.nav-open {
  overflow: hidden !important;
  position: fixed !important;
  width: 100% !important;
  top: 0 !important;
  left: 0 !important;
}

/* Cookie banner must not block scroll */
#cookieBannerV2, .cookie-banner {
  touch-action: pan-y !important;
}

/* Exit popups: completely remove from layout when hidden */
#exitPopup:not(.show),
.cro-exit-overlay:not(.show),
.exit-overlay:not(.show) {
  display: none !important;
  visibility: hidden !important;
  pointer-events: none !important;
  position: absolute !important;
  width: 0 !important;
  height: 0 !important;
  overflow: hidden !important;
  z-index: -1 !important;
}

/* Nav Overlay - fehlende Styles ergänzt */
#navOverlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 998;
  cursor: pointer;
}
#navOverlay.show {
  display: block;
}
