/* ================================================================
   KUNDEN MASCHINE — Haupt-Stylesheet
   Version: 1.0  |  Stand: 2025

   DESIGN TOKENS (aus design-guide.html):
   ─────────────────────────────────────
   Primary:    #31CF96  (Hover: #28b882, Dark: #1a9e6f)
   BG Deep:    #191919
   BG Card:    #262626
   BG Elevat.: #2e2e2e
   White:      #ffffff
   Off-White:  #F7F7F5
   Light Gray: #EFEFED
   Border Lt:  #E5E5E3
   Text Dark:  #1A1A1A
   Text Muted: #6B7280
   Text Subtle:#9CA3AF
   Font:       Open Sans (300–800) via Google CDN
   Mono:       JetBrains Mono via Google CDN
   Container:  max-width 1200px
   Section:    100px padding top/bottom
   Sections:   dark → white → dark → off-white → green-tint → dark

   SEKTION-ABWECHSLUNG EMPFEHLUNG:
   .section-dark → .section-white → .section-dark →
   .section-offwhite → .section-green-tint → .section-dark
   ================================================================ */

/* ─────────────────────────────────────────────────────────────
   1. DESIGN TOKENS — CSS CUSTOM PROPERTIES
   ───────────────────────────────────────────────────────────── */
:root {
  /* Primärfarben */
  --green:          #31CF96;
  --green-hover:    #28b882;
  --green-dark:     #1a9e6f;
  --green-dim:      rgba(49, 207, 150, 0.15);
  --green-glow:     rgba(49, 207, 150, 0.35);
  --green-glow-lg:  rgba(49, 207, 150, 0.6);
  --green-tint-bg:  #F0FDF8;
  --green-tint-bdr: #C6F0E0;

  /* Dark Theme */
  --bg-deep:        #191919;
  --bg-card:        #262626;
  --bg-elevated:    #2e2e2e;
  --bg-glass:       rgba(38, 38, 38, 0.6);
  --border-dark:    rgba(255, 255, 255, 0.07);
  --border-dark-md: rgba(255, 255, 255, 0.12);

  /* Light Theme */
  --white:          #ffffff;
  --off-white:      #F7F7F5;
  --light-gray:     #EFEFED;
  --border-light:   #E5E5E3;

  /* Text */
  --text-dark:      #1A1A1A;
  --text-muted:     #6B7280;
  --text-subtle:    #9CA3AF;
  --text-inverted:  #ffffff;

  /* Status */
  --error:          #ff7070;
  --warning:        #F59E0B;
  --success:        #31CF96;

  /* Typography */
  --font:           'Open Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-mono:      'JetBrains Mono', 'Courier New', monospace;

  /* Spacing Scale */
  --space-1:        4px;
  --space-2:        8px;
  --space-3:        12px;
  --space-4:        16px;
  --space-6:        24px;
  --space-8:        32px;
  --space-10:       40px;
  --space-12:       48px;
  --space-16:       64px;
  --space-24:       96px;
  --space-section:  100px;

  /* Border Radius */
  --radius-sm:      4px;
  --radius-md:      8px;
  --radius-lg:      12px;
  --radius-xl:      16px;
  --radius-2xl:     20px;
  --radius-full:    100px;

  /* Box Shadows */
  --shadow-sm:      0 1px 3px rgba(0, 0, 0, 0.08);
  --shadow-md:      0 4px 16px rgba(0, 0, 0, 0.08);
  --shadow-lg:      0 8px 32px rgba(0, 0, 0, 0.12);
  --shadow-green:   0 0 24px rgba(49, 207, 150, 0.35);
  --shadow-green-lg:0 0 48px rgba(49, 207, 150, 0.5);

  /* Transitions */
  --transition:     0.2s ease;
  --transition-md:  0.3s ease;

  /* Z-Index Layers */
  --z-base:         1;
  --z-dropdown:     100;
  --z-sticky:       200;
  --z-overlay:      300;
  --z-modal:        400;
  --z-float:        500;
}

/* ─────────────────────────────────────────────────────────────
   2. GLOBAL BASE
   ───────────────────────────────────────────────────────────── */
html {
  font-size: 16px;
  scroll-behavior: smooth;
}

body {
  font-family: var(--font);
  font-size: 15px;
  line-height: 1.7;
  color: var(--text-dark);
  background: var(--off-white);
  padding-top: 72px;
}

/* ─────────────────────────────────────────────────────────────
   3. TYPOGRAPHY
   ───────────────────────────────────────────────────────────── */
.text-hero {
  font-size: clamp(40px, 6vw, 64px);
  font-weight: 800;
  letter-spacing: -1.5px;
  line-height: 1.1;
}

.text-title {
  font-size: clamp(32px, 4.5vw, 48px);
  font-weight: 800;
  letter-spacing: -1px;
  line-height: 1.1;
}

.text-h2 {
  font-size: clamp(26px, 3.5vw, 36px);
  font-weight: 800;
  letter-spacing: -0.5px;
  line-height: 1.2;
}

.text-h3 {
  font-size: 24px;
  font-weight: 700;
  line-height: 1.3;
}

.text-h4 {
  font-size: 18px;
  font-weight: 700;
  line-height: 1.4;
}

.text-lead {
  font-size: 18px;
  font-weight: 400;
  color: var(--text-muted);
  line-height: 1.7;
}

.text-body {
  font-size: 15px;
  font-weight: 400;
  line-height: 1.7;
}

.text-label {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--green);
}

.text-caption {
  font-size: 13px;
  font-weight: 500;
  color: var(--text-subtle);
}

.text-green {
  color: var(--green);
  text-shadow: 0 0 40px rgba(49, 207, 150, 0.4);
}

.text-muted { color: var(--text-muted); }
.text-subtle { color: var(--text-subtle); }
.text-white { color: var(--white); }
.text-center { text-align: center; }

/* ─────────────────────────────────────────────────────────────
   4. LAYOUT
   ───────────────────────────────────────────────────────────── */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--space-6);
}

.container-sm {
  max-width: 760px;
  margin: 0 auto;
  padding: 0 var(--space-6);
}

.grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-6);
}

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

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

.flex-row {
  display: flex;
  gap: var(--space-4);
  flex-wrap: wrap;
  align-items: center;
}

.section-header {
  text-align: center;
  margin-bottom: var(--space-16);
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
}

.section-header h2 {
  margin-top: var(--space-3);
  margin-bottom: var(--space-4);
}

.section-header p {
  font-size: 17px;
  color: var(--text-muted);
  line-height: 1.7;
}

/* ─────────────────────────────────────────────────────────────
   5. SECTION PATTERNS
   ───────────────────────────────────────────────────────────── */
.section-dark {
  padding: var(--space-section) var(--space-10);
  background: var(--bg-deep);
  color: var(--text-inverted);
  position: relative;
  overflow: hidden;
}


.section-dark > * { position: relative; z-index: 1; }

.section-dark .section-header p {
  color: rgba(255, 255, 255, 0.5);
}

.section-white {
  padding: var(--space-section) var(--space-10);
  background: var(--white);
}

.section-offwhite {
  padding: var(--space-section) var(--space-10);
  background: var(--off-white);
}

.section-green-tint {
  padding: var(--space-section) var(--space-10);
  background: var(--green-tint-bg);
  border-top: 1px solid var(--green-tint-bdr);
  border-bottom: 1px solid var(--green-tint-bdr);
}

/* ─────────────────────────────────────────────────────────────
   6. BUTTONS
   ───────────────────────────────────────────────────────────── */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  background: var(--green);
  color: var(--bg-deep);
  padding: 14px 28px;
  border-radius: var(--radius-md);
  font-family: var(--font);
  font-weight: 700;
  font-size: 15px;
  line-height: 1;
  text-decoration: none;
  border: none;
  cursor: pointer;
  box-shadow: 0 0 20px var(--green-glow);
  transition: box-shadow var(--transition), transform var(--transition);
  white-space: nowrap;
}

.btn-primary:hover {
  box-shadow: 0 0 36px var(--green-glow-lg);
  transform: translateY(-1px);
}

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

/* Secondary: transparent + white border → used on dark bg */
.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  background: transparent;
  color: var(--white);
  padding: 14px 28px;
  border-radius: var(--radius-md);
  font-family: var(--font);
  font-weight: 600;
  font-size: 15px;
  line-height: 1;
  text-decoration: none;
  border: 1px solid rgba(255, 255, 255, 0.2);
  cursor: pointer;
  transition: border-color var(--transition), color var(--transition);
  white-space: nowrap;
}

.btn-secondary:hover {
  border-color: rgba(49, 207, 150, 0.5);
  color: var(--green);
}

/* Outline: green border → works on both light + dark */
.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  background: transparent;
  color: var(--green);
  padding: 14px 28px;
  border-radius: var(--radius-md);
  font-family: var(--font);
  font-weight: 600;
  font-size: 15px;
  line-height: 1;
  text-decoration: none;
  border: 1px solid rgba(49, 207, 150, 0.4);
  cursor: pointer;
  transition: background var(--transition);
  white-space: nowrap;
}

.btn-outline:hover {
  background: rgba(49, 207, 150, 0.08);
}

/* Light: green bg, dark text — used on light/white sections */
.btn-light {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  background: var(--green);
  color: var(--bg-deep);
  padding: 14px 28px;
  border-radius: var(--radius-md);
  font-family: var(--font);
  font-weight: 700;
  font-size: 15px;
  line-height: 1;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: background var(--transition), transform var(--transition);
  white-space: nowrap;
}

.btn-light:hover {
  background: var(--green-hover);
  transform: translateY(-1px);
}

/* WhatsApp button */
.btn-whatsapp {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  background: #25D366;
  color: var(--white);
  padding: 14px 28px;
  border-radius: var(--radius-md);
  font-family: var(--font);
  font-weight: 700;
  font-size: 15px;
  line-height: 1;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: background var(--transition), transform var(--transition);
  white-space: nowrap;
}

.btn-whatsapp:hover {
  background: #1ebe5a;
  transform: translateY(-1px);
}

.btn-row {
  display: flex;
  gap: var(--space-3);
  flex-wrap: wrap;
  align-items: center;
}

/* ─────────────────────────────────────────────────────────────
   7. BADGES & TAGS
   ───────────────────────────────────────────────────────────── */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  border-radius: var(--radius-full);
  padding: 4px 14px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.5px;
}

.badge-green {
  background: rgba(49, 207, 150, 0.1);
  color: var(--green);
  border: 1px solid rgba(49, 207, 150, 0.3);
}

.badge-red {
  background: rgba(255, 80, 80, 0.1);
  color: #ff7070;
  border: 1px solid rgba(255, 80, 80, 0.2);
}

.badge-white {
  background: rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.7);
  border: 1px solid rgba(255, 255, 255, 0.15);
}

.badge-dark {
  background: var(--bg-card);
  color: rgba(255, 255, 255, 0.6);
  border: 1px solid var(--border-dark);
}

.badge-dot::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: currentColor;
  display: inline-block;
  box-shadow: 0 0 6px currentColor;
}

/* ─────────────────────────────────────────────────────────────
   8. CARDS — DARK THEME
   ───────────────────────────────────────────────────────────── */
.card-dark {
  background: var(--bg-glass);
  border: 1px solid var(--border-dark);
  border-radius: var(--radius-xl);
  padding: 28px;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  transition: border-color var(--transition-md), transform var(--transition-md);
}

.card-dark:hover {
  border-color: rgba(49, 207, 150, 0.25);
  transform: translateY(-3px);
}

.card-dark h3,
.card-dark h4 {
  color: var(--white);
}

.card-dark p {
  color: rgba(255, 255, 255, 0.55);
}

.card-highlight {
  background: rgba(49, 207, 150, 0.06);
  border: 2px solid rgba(49, 207, 150, 0.4);
  border-radius: var(--radius-xl);
  padding: 28px;
  box-shadow: 0 0 40px rgba(49, 207, 150, 0.1);
}

/* ─────────────────────────────────────────────────────────────
   9. CARDS — LIGHT THEME
   ───────────────────────────────────────────────────────────── */
.card-white {
  background: var(--white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-xl);
  padding: 28px;
  transition: box-shadow var(--transition-md), transform var(--transition-md);
}

.card-white:hover {
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
  transform: translateY(-3px);
}

.card-white-green {
  background: var(--white);
  border: 1px solid var(--border-light);
  border-top: 3px solid var(--green);
  border-radius: var(--radius-xl);
  padding: 28px;
  transition: box-shadow var(--transition-md);
}

.card-white-green:hover {
  box-shadow: 0 8px 32px rgba(49, 207, 150, 0.12);
}

.card-tinted {
  background: var(--green-tint-bg);
  border: 1px solid var(--green-tint-bdr);
  border-radius: var(--radius-xl);
  padding: 28px;
}

/* Icon container within cards */
.card-icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-lg);
  background: var(--green-tint-bg);
  border: 1px solid var(--green-tint-bdr);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  margin-bottom: var(--space-4);
  flex-shrink: 0;
}

.card-icon-dark {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-lg);
  background: rgba(49, 207, 150, 0.1);
  border: 1px solid rgba(49, 207, 150, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  margin-bottom: var(--space-4);
  flex-shrink: 0;
}

/* ─────────────────────────────────────────────────────────────
   10. FORM COMPONENTS
   ───────────────────────────────────────────────────────────── */
.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form-label {
  font-size: 12px;
  font-weight: 600;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.form-label-dark {
  font-size: 12px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.5);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.input-field {
  width: 100%;
  padding: 13px 16px;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  font-size: 15px;
  font-family: var(--font);
  color: var(--text-dark);
  background: var(--white);
  outline: none;
  transition: border-color var(--transition), box-shadow var(--transition);
}

.input-field:focus {
  border-color: var(--green);
  box-shadow: 0 0 0 3px rgba(49, 207, 150, 0.12);
}

.input-field::placeholder {
  color: var(--text-subtle);
}

.input-field.input-error {
  border-color: var(--error);
}

.input-dark {
  width: 100%;
  padding: 13px 16px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-md);
  font-size: 15px;
  font-family: var(--font);
  color: var(--white);
  background: rgba(25, 25, 25, 0.8);
  outline: none;
  transition: border-color var(--transition);
}

.input-dark:focus {
  border-color: rgba(49, 207, 150, 0.5);
}

.input-dark::placeholder {
  color: rgba(255, 255, 255, 0.25);
}

select.input-field {
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%236B7280' stroke-width='1.5' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 40px;
}

textarea.input-field {
  resize: vertical;
  min-height: 120px;
}

.field-error {
  font-size: 12px;
  color: var(--error);
  margin-top: 4px;
  display: none;
}

.field-error.visible {
  display: block;
}

/* Checkbox */
.checkbox-group {
  display: flex;
  align-items: flex-start;
  gap: var(--space-3);
}

.checkbox-group input[type="checkbox"] {
  width: 18px;
  height: 18px;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-sm);
  accent-color: var(--green);
  cursor: pointer;
  flex-shrink: 0;
  margin-top: 2px;
}

.checkbox-label {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.6;
}

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

/* ─────────────────────────────────────────────────────────────
   11. ALERT / INFO BOXES
   ───────────────────────────────────────────────────────────── */
.info-box {
  padding: 16px 20px;
  border-radius: var(--radius-lg);
  font-size: 14px;
  line-height: 1.6;
  margin: var(--space-4) 0;
}

.info-green {
  background: var(--green-tint-bg);
  border: 1px solid var(--green-tint-bdr);
  color: #1a6b4a;
}

.info-yellow {
  background: #FFFBEB;
  border: 1px solid #FDE68A;
  color: #92400E;
  border-left: 3px solid var(--warning);
}

.info-red {
  background: #FEF2F2;
  border: 1px solid #FECACA;
  color: #991B1B;
  border-left: 3px solid var(--error);
}

/* ─────────────────────────────────────────────────────────────
   12. DIVIDERS
   ───────────────────────────────────────────────────────────── */
.divider {
  height: 1px;
  background: var(--border-light);
  margin: var(--space-10) 0;
}

.divider-dark {
  height: 1px;
  background: var(--border-dark);
  margin: var(--space-10) 0;
}

/* ─────────────────────────────────────────────────────────────
   13. CHECK LIST (✓ items)
   ───────────────────────────────────────────────────────────── */
.check-list {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}

.check-item {
  display: flex;
  align-items: flex-start;
  gap: var(--space-3);
  font-size: 15px;
  color: var(--text-dark);
}

.check-item-dark {
  display: flex;
  align-items: flex-start;
  gap: var(--space-3);
  font-size: 15px;
  color: rgba(255, 255, 255, 0.85);
}

.check-icon {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--green);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  color: var(--bg-deep);
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 1px;
}

.cross-icon {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: rgba(255, 112, 112, 0.15);
  border: 1px solid rgba(255, 112, 112, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  color: var(--error);
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 1px;
}

/* ─────────────────────────────────────────────────────────────
   14. STEP NUMBERS (3-Schritt-Prozess)
   ───────────────────────────────────────────────────────────── */
.step-number {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: rgba(49, 207, 150, 0.1);
  border: 2px solid rgba(49, 207, 150, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  font-weight: 800;
  color: var(--green);
  margin: 0 auto var(--space-4);
  flex-shrink: 0;
}

/* ─────────────────────────────────────────────────────────────
   15. COMPARISON TABLE
   ───────────────────────────────────────────────────────────── */
.compare-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 15px;
}

.compare-table th {
  padding: 16px 20px;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.compare-table th:first-child {
  text-align: left;
  color: var(--text-muted);
}

.compare-table th.col-km {
  color: var(--green);
  text-align: center;
  background: rgba(49, 207, 150, 0.06);
  border-top: 2px solid var(--green);
}

.compare-table th.col-other {
  color: var(--text-subtle);
  text-align: center;
}

.compare-table td {
  padding: 14px 20px;
  border-bottom: 1px solid var(--border-light);
  color: var(--text-dark);
}

.compare-table td:nth-child(2) {
  text-align: center;
  background: rgba(49, 207, 150, 0.04);
}

.compare-table td:nth-child(3) {
  text-align: center;
}

.compare-table tr:last-child td {
  border-bottom: none;
}

/* ─────────────────────────────────────────────────────────────
   16. FAQ ACCORDION
   ───────────────────────────────────────────────────────────── */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}

.faq-item {
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--white);
  transition: box-shadow var(--transition);
}

.faq-item.open {
  box-shadow: var(--shadow-md);
}

.faq-item-dark {
  border: 1px solid var(--border-dark);
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--bg-card);
  transition: border-color var(--transition);
}

.faq-item-dark.open {
  border-color: rgba(49, 207, 150, 0.25);
}

.faq-trigger {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 24px;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  font-family: var(--font);
  font-size: 16px;
  font-weight: 600;
  color: var(--text-dark);
  gap: var(--space-4);
  transition: color var(--transition);
}

.faq-item-dark .faq-trigger {
  color: var(--white);
}

.faq-item.open .faq-trigger,
.faq-item-dark.open .faq-trigger {
  color: var(--green);
}

.faq-icon {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  border: 1px solid var(--border-light);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: transform var(--transition), border-color var(--transition), background var(--transition);
  position: relative;
}

.faq-item-dark .faq-icon {
  border-color: var(--border-dark);
}

.faq-icon::before,
.faq-icon::after {
  content: '';
  position: absolute;
  background: currentColor;
  border-radius: 2px;
  transition: transform var(--transition), opacity var(--transition);
}

.faq-icon::before {
  width: 10px;
  height: 1.5px;
}

.faq-icon::after {
  width: 1.5px;
  height: 10px;
}

.faq-item.open .faq-icon,
.faq-item-dark.open .faq-icon {
  background: var(--green);
  border-color: var(--green);
  color: var(--bg-deep);
}

.faq-item.open .faq-icon::after,
.faq-item-dark.open .faq-icon::after {
  transform: rotate(90deg);
  opacity: 0;
}

.faq-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding var(--transition);
}

.faq-body.open {
  max-height: 600px;
}

.faq-body-inner {
  padding: 0 24px 20px;
  font-size: 15px;
  line-height: 1.75;
  color: var(--text-muted);
}

.faq-item-dark .faq-body-inner {
  color: rgba(255, 255, 255, 0.55);
}

/* ─────────────────────────────────────────────────────────────
   17. TESTIMONIAL / CASE CARDS
   ───────────────────────────────────────────────────────────── */
.case-card {
  background: var(--bg-card);
  border: 1px solid var(--border-dark);
  border-radius: var(--radius-xl);
  overflow: hidden;
  transition: border-color var(--transition-md), transform var(--transition-md);
}

.case-card:hover {
  border-color: rgba(49, 207, 150, 0.25);
  transform: translateY(-4px);
}

.case-video-thumb {
  aspect-ratio: 16 / 9;
  width: 100%;
  background: linear-gradient(135deg, #1a2a1e, #0d1f15);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.case-video-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.play-button {
  position: absolute;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: rgba(49, 207, 150, 0.9);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform var(--transition), background var(--transition);
  z-index: 2;
}

.play-button svg {
  width: 22px;
  height: 22px;
  fill: var(--bg-deep);
  margin-left: 3px;
}

.case-video-thumb:hover .play-button {
  transform: scale(1.1);
  background: var(--green);
}

.case-placeholder-thumb {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #1a2a20, #0d1a10);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: var(--space-2);
}

.case-placeholder-thumb span {
  font-size: 11px;
  font-family: var(--font);
  color: rgba(49, 207, 150, 0.4);
  text-align: center;
}

.case-body {
  padding: 24px;
}

.case-result {
  font-size: 22px;
  font-weight: 800;
  color: var(--green);
  line-height: 1.2;
  margin-bottom: var(--space-3);
}

.case-company {
  font-size: 13px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.5);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: var(--space-4);
}

.case-quote {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.7;
  font-style: italic;
  border-left: 2px solid var(--green);
  padding-left: var(--space-4);
  margin-top: var(--space-4);
}

/* ─────────────────────────────────────────────────────────────
   18. HEADER / NAVIGATION
   ───────────────────────────────────────────────────────────── */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: var(--z-sticky);
  background: rgba(25, 25, 25, 0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border-dark);
  transition: background var(--transition), box-shadow var(--transition);
}

.site-header.scrolled {
  background: rgba(25, 25, 25, 0.98);
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.3);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.header-logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.header-logo img {
  height: 36px;
  width: auto;
}

/* Skip to main content (accessibility) */
.skip-link {
  position: absolute;
  top: -100%;
  left: var(--space-4);
  background: var(--green);
  color: var(--bg-deep);
  padding: 8px 16px;
  border-radius: var(--radius-md);
  font-weight: 600;
  font-size: 14px;
  z-index: 9999;
  transition: top var(--transition);
}

.skip-link:focus {
  top: var(--space-4);
}

.main-nav {
  display: flex;
  align-items: center;
}

.nav-list {
  display: flex;
  align-items: center;
  gap: var(--space-2);
}

.nav-link {
  padding: 8px var(--space-4);
  font-size: 14px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.65);
  border-radius: var(--radius-md);
  transition: color var(--transition), background var(--transition);
}

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

.nav-link.active {
  color: var(--green);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: var(--space-3);
}

.header-cta {
  font-size: 14px;
  padding: 10px 20px;
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  border-radius: var(--radius-md);
  transition: background var(--transition);
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
}

.hamburger:hover {
  background: rgba(255, 255, 255, 0.06);
}

.hamburger-line {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: transform var(--transition), opacity var(--transition);
}

.hamburger.open .hamburger-line:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.hamburger.open .hamburger-line:nth-child(2) {
  opacity: 0;
}

.hamburger.open .hamburger-line:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Mobile nav drawer */
.mobile-nav {
  display: block;
  position: fixed;
  top: 72px;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--bg-deep);
  z-index: var(--z-overlay);
  padding: var(--space-8) var(--space-6);
  overflow-y: auto;
  border-top: 1px solid var(--border-dark);
  transform: translateX(100%);
  visibility: hidden;
  transition: transform var(--transition-md), visibility var(--transition-md);
}

.mobile-nav.open {
  transform: translateX(0);
  visibility: visible;
}

.mobile-nav-list {
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
  margin-bottom: var(--space-8);
}

.mobile-nav-link {
  display: block;
  padding: 14px var(--space-4);
  font-size: 18px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.75);
  border-radius: var(--radius-lg);
  transition: color var(--transition), background var(--transition);
}

.mobile-nav-link:hover,
.mobile-nav-link.active {
  color: var(--green);
  background: rgba(49, 207, 150, 0.06);
}

.mobile-nav-cta {
  width: 100%;
  justify-content: center;
  font-size: 16px;
  padding: 16px;
}

/* ─────────────────────────────────────────────────────────────
   19. FOOTER
   ───────────────────────────────────────────────────────────── */
.site-footer {
  background: var(--bg-deep);
  border-top: 1px solid var(--border-dark);
  padding: var(--space-16) 0 var(--space-8);
  color: rgba(255, 255, 255, 0.55);
}

.footer-top {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: var(--space-16);
  margin-bottom: var(--space-16);
}

.footer-brand .header-logo {
  margin-bottom: var(--space-4);
}

.footer-brand img {
  width: 144px;
  height: auto;
}

.footer-slogan {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.4);
  margin-bottom: var(--space-6);
  line-height: 1.5;
}

.footer-address {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.45);
  line-height: 1.8;
  margin-bottom: var(--space-4);
}

.footer-contact {
  display: flex;
  flex-direction: column;
  gap: var(--space-1);
  font-size: 14px;
}

.footer-contact a {
  color: rgba(255, 255, 255, 0.5);
  transition: color var(--transition);
}

.footer-contact a:hover {
  color: var(--green);
}

.footer-col-title {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: rgba(255, 255, 255, 0.3);
  margin-bottom: var(--space-4);
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}

.footer-links a {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.5);
  transition: color var(--transition);
}

.footer-links a:hover {
  color: var(--green);
}

.footer-social {
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
}

.social-link {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  font-size: 14px;
  color: rgba(255, 255, 255, 0.5);
  transition: color var(--transition);
}

.social-link:hover {
  color: var(--green);
}

.social-icon {
  width: 36px;
  height: 36px;
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--border-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--transition), border-color var(--transition);
}

.social-link:hover .social-icon {
  background: rgba(49, 207, 150, 0.1);
  border-color: rgba(49, 207, 150, 0.3);
}

.social-icon svg {
  width: 16px;
  height: 16px;
  fill: currentColor;
}

.footer-bottom {
  border-top: 1px solid var(--border-dark);
  padding-top: var(--space-8);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: var(--space-4);
}

.footer-bottom p {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.25);
}

/* ─────────────────────────────────────────────────────────────
   20. WHATSAPP FLOATING BUTTON
   ───────────────────────────────────────────────────────────── */
.whatsapp-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: var(--z-float);
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: #25D366;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
  transition: transform var(--transition), box-shadow var(--transition);
  animation: wa-pulse 2.5s ease-in-out 1.5s both;
}

.whatsapp-float:hover {
  transform: scale(1.1) translateY(-2px);
  box-shadow: 0 8px 32px rgba(37, 211, 102, 0.5);
}

.whatsapp-float svg {
  width: 28px;
  height: 28px;
  fill: white;
}

/* Tooltip */
.whatsapp-float::before {
  content: 'Direkt auf WhatsApp';
  position: absolute;
  right: calc(100% + 12px);
  top: 50%;
  transform: translateY(-50%);
  background: var(--bg-card);
  color: var(--white);
  font-size: 13px;
  font-family: var(--font);
  font-weight: 600;
  white-space: nowrap;
  padding: 6px 12px;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-dark);
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition);
}

.whatsapp-float:hover::before {
  opacity: 1;
}

@keyframes wa-pulse {
  0% { transform: scale(1); box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4); }
  50% { transform: scale(1.08); box-shadow: 0 4px 32px rgba(37, 211, 102, 0.7); }
  100% { transform: scale(1); box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4); }
}

/* ─────────────────────────────────────────────────────────────
   21. SOCIAL PROOF BAR / LOGO SLIDER
   ───────────────────────────────────────────────────────────── */
.logo-bar {
  background: var(--bg-card);
  border-top: 1px solid var(--border-dark);
  border-bottom: 1px solid var(--border-dark);
  padding: var(--space-6) 0;
  overflow: hidden;
  position: relative;
}

.logo-bar-label {
  text-align: center;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.25);
  margin-bottom: var(--space-6);
}

.logo-scroll-track {
  display: flex;
  gap: var(--space-16);
  animation: logo-scroll 30s linear infinite;
  width: max-content;
}

.logo-scroll-track:hover {
  animation-play-state: paused;
}

.logo-placeholder {
  height: 32px;
  padding: 0 var(--space-6);
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--border-dark);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  color: rgba(255, 255, 255, 0.3);
  font-size: 13px;
  font-weight: 600;
  white-space: nowrap;
  flex-shrink: 0;
}

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

/* ─────────────────────────────────────────────────────────────
   22. TRUST BADGES (kleine Karten)
   ───────────────────────────────────────────────────────────── */
.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-4);
}

.trust-item {
  display: flex;
  align-items: flex-start;
  gap: var(--space-3);
  padding: var(--space-4);
  background: var(--white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
}

.trust-item-dark {
  display: flex;
  align-items: flex-start;
  gap: var(--space-3);
  padding: var(--space-4);
  background: var(--bg-card);
  border: 1px solid var(--border-dark);
  border-radius: var(--radius-lg);
}

.trust-icon {
  font-size: 20px;
  flex-shrink: 0;
}

.trust-text strong {
  display: block;
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 2px;
  color: var(--text-dark);
}

.trust-item-dark .trust-text strong {
  color: var(--white);
}

.trust-text span {
  font-size: 12px;
  color: var(--text-muted);
}

.trust-item-dark .trust-text span {
  color: rgba(255, 255, 255, 0.4);
}

/* ─────────────────────────────────────────────────────────────
   23. UTILITY CLASSES
   ───────────────────────────────────────────────────────────── */
.mt-auto { margin-top: auto; }
.mb-0 { margin-bottom: 0; }
.mb-4 { margin-bottom: var(--space-4); }
.mb-6 { margin-bottom: var(--space-6); }
.mb-8 { margin-bottom: var(--space-8); }
.mb-10 { margin-bottom: var(--space-10); }
.mb-16 { margin-bottom: var(--space-16); }
.mt-4 { margin-top: var(--space-4); }
.mt-6 { margin-top: var(--space-6); }
.mt-8 { margin-top: var(--space-8); }
.mt-10 { margin-top: var(--space-10); }
.hidden { display: none; }
.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;
}

/* Lazy-load fade-in */
img[loading="lazy"] {
  opacity: 0;
  transition: opacity 0.4s ease;
}
img[loading="lazy"].loaded {
  opacity: 1;
}

/* ─────────────────────────────────────────────────────────────
   24. RESPONSIVE BREAKPOINTS
   ───────────────────────────────────────────────────────────── */

/* Tablet: ≤ 1024px */
@media (max-width: 1024px) {
  :root { --space-section: 80px; }

  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .trust-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-top { grid-template-columns: 1fr 1fr; }
}

/* Mobile landscape / small tablet: ≤ 768px */
@media (max-width: 768px) {
  :root { --space-section: 64px; }

  .section-dark,
  .section-white,
  .section-offwhite,
  .section-green-tint {
    padding: var(--space-section) var(--space-4);
  }

  .grid-2,
  .grid-3 {
    grid-template-columns: 1fr;
  }

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

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

  .footer-top {
    grid-template-columns: 1fr;
    gap: var(--space-10);
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }

  /* Header */
  .main-nav { display: none; }
  .header-cta { display: none; }
  .hamburger { display: flex; }
  .mobile-nav { display: block; }

  /* WhatsApp float */
  .whatsapp-float {
    bottom: 16px;
    right: 16px;
    width: 56px;
    height: 56px;
  }

  .whatsapp-float::before {
    display: none;
  }

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

  .btn-row .btn-primary,
  .btn-row .btn-secondary,
  .btn-row .btn-outline,
  .btn-row .btn-light {
    justify-content: center;
  }

  .text-center-mobile {
    text-align: center;
  }

  .compare-table { font-size: 13px; }
  .compare-table th, .compare-table td { padding: 10px 12px; }
}

/* Mobile: ≤ 480px */
@media (max-width: 480px) {
  .trust-grid { grid-template-columns: 1fr; }
  .case-result { font-size: 18px; }
}

/* ─────────────────────────────────────────────────────────────
   25. KONTAKT PAGE
   ───────────────────────────────────────────────────────────── */

/* Outer 2-column: form left, contact card right */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: var(--space-16);
  align-items: start;
}

/* 2-column row inside form */
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-4);
}

/* Honeypot — looks normal to bots, invisible to humans */
.honeypot-wrap {
  position: absolute;
  left: -9999px;
  top: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
  opacity: 0;
  pointer-events: none;
}

/* Form box container */
.form-box {
  background: var(--white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-xl);
  padding: var(--space-8);
}

/* Server-side error notice */
.form-notice {
  padding: 14px 16px;
  border-radius: var(--radius-md);
  font-size: 14px;
  font-weight: 500;
  line-height: 1.5;
  margin-bottom: var(--space-6);
}

.form-notice--error {
  background: rgba(255, 112, 112, 0.07);
  border: 1px solid rgba(255, 112, 112, 0.25);
  color: var(--error);
}

.form-notice--error a {
  color: var(--error);
  text-decoration: underline;
}

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

.form-optional {
  color: var(--text-subtle);
  font-weight: 400;
  font-size: 11px;
  text-transform: none;
  letter-spacing: 0;
}

.form-fine-print {
  font-size: 12px;
  color: var(--text-subtle);
  margin-top: var(--space-3);
  line-height: 1.5;
}

/* Direct contact card (right column, dark) */
.contact-card {
  background: var(--bg-card);
  border-radius: var(--radius-xl);
  padding: var(--space-8);
  position: sticky;
  top: 90px;
}

.contact-card-title {
  font-size: 18px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: var(--space-6);
}

.contact-avatar {
  display: flex;
  align-items: center;
  gap: var(--space-4);
  margin-bottom: var(--space-6);
  padding-bottom: var(--space-6);
  border-bottom: 1px solid var(--border-dark);
}

.contact-avatar img {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--green);
  flex-shrink: 0;
}

.contact-avatar-name {
  font-size: 16px;
  font-weight: 700;
  color: var(--white);
  line-height: 1.3;
}

.contact-avatar-role {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.4);
  font-weight: 500;
  margin-top: 3px;
}

.contact-items {
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
  margin-bottom: var(--space-6);
}

.contact-item {
  display: flex;
  gap: var(--space-3);
  align-items: flex-start;
}

.contact-item-icon {
  width: 38px;
  height: 38px;
  background: rgba(49, 207, 150, 0.1);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--green);
}

.contact-item-icon svg {
  width: 18px;
  height: 18px;
}

.contact-item-label {
  font-size: 11px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.35);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  line-height: 1;
  margin-bottom: 3px;
}

.contact-item-value {
  font-size: 15px;
  color: var(--white);
  font-weight: 500;
  line-height: 1.45;
}

.contact-item-value a {
  color: var(--white);
  text-decoration: none;
  transition: color var(--transition);
}

.contact-item-value a:hover {
  color: var(--green);
}

@media (max-width: 1024px) {
  .contact-grid {
    grid-template-columns: 1fr;
    gap: var(--space-10);
  }
  .contact-card {
    position: static;
  }
}

@media (max-width: 600px) {
  .form-row {
    grid-template-columns: 1fr;
  }
  .form-box {
    padding: var(--space-6);
  }
  .contact-card {
    padding: var(--space-6);
  }
}

/* ─────────────────────────────────────────────────────────────
   26. DANKE PAGE
   ───────────────────────────────────────────────────────────── */
.danke-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-6);
}

.danke-step {
  background: var(--bg-card);
  border-radius: var(--radius-xl);
  padding: var(--space-6);
  border-top: 3px solid var(--green);
}

.danke-step-num {
  font-family: var(--font);
  font-size: 11px;
  font-weight: 500;
  color: var(--green);
  letter-spacing: 1px;
  margin-bottom: var(--space-3);
  text-transform: uppercase;
}

.danke-step-title {
  font-size: 17px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: var(--space-2);
}

.danke-step-text {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.65;
}

@media (max-width: 768px) {
  .danke-steps {
    grid-template-columns: 1fr;
  }
}

/* ══════════════════════════════════════════════════════════
   HERO ANIMATIONS
══════════════════════════════════════════════════════════ */

/* ── 1. Headline: sequentielles fadeInUp ── */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.headline-line {
  display: block;
  opacity: 0;
  animation: fadeInUp 0.8s ease-out forwards;
}

.headline-line:nth-child(1) { animation-delay: 0s; }
.headline-line:nth-child(2) { animation-delay: 0.8s; }
.headline-line:nth-child(3) { animation-delay: 1.6s; }
.headline-line:nth-child(4) { animation-delay: 2.4s; }

/* ── 2. Badge: Gradient-Border via mask-composite ── */
#hero .badge-dot {
  position: relative;
  background: #0a0a0a !important;
  border: none !important;
  box-shadow: none !important;
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
}

#hero .badge-dot::before {
  content: '';
  position: absolute;
  inset: 0;
  padding: 1.5px;
  border-radius: 999px;
  background: linear-gradient(135deg, #2dd4a4 0%, #1a4d3a 50%, #0a1f17 100%);
  -webkit-mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  mask-composite: exclude;
  pointer-events: none;
}

/* ── 3. CTA-Button: Pulse-Glow Loop ── */
@keyframes hero-cta-pulse {
  0% {
    box-shadow:
      0 0 0 0 rgba(45, 212, 164, 0.7),
      0 0 20px rgba(45, 212, 164, 0.3);
  }
  70% {
    box-shadow:
      0 0 0 12px rgba(45, 212, 164, 0),
      0 0 35px rgba(45, 212, 164, 0);
  }
  100% {
    box-shadow:
      0 0 0 0 rgba(45, 212, 164, 0),
      0 0 20px rgba(45, 212, 164, 0.3);
  }
}

#hero .btn-primary {
  animation: hero-cta-pulse 2s ease-in-out infinite;
}

#hero .btn-primary:hover {
  animation-play-state: paused;
  transform: translateY(-2px);
}


@media (max-width: 768px) {
  #hero-mob-overlay { display: block !important; }

  /* Above-the-fold: Padding reduzieren da kein sichtbares Hintergrundbild */
  #hero {
    padding-top: 40px !important;
    padding-bottom: 40px !important;
  }

  /* Headline kompakter auf kleinen Screens */
  .text-hero {
    font-size: 34px !important;
    letter-spacing: -1px !important;
  }

  /* Weniger Abstand unter dem Badge und Beschreibungstext */
  #hero .badge-dot {
    margin-bottom: 16px !important;
  }
  #hero > .container > div > p {
    margin-bottom: 24px !important;
  }
  #hero .btn-row {
    margin-bottom: 16px !important;
  }

  /* WhatsApp-Button Rahmen klar sichtbar */
  #hero .btn-secondary {
    border-color: rgba(255, 255, 255, 0.65) !important;
    color: #fff !important;
  }

}
