@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,500;0,700;1,400;1,500;1,700&family=Instrument+Sans:ital,wght@0,300;0,400;0,500;0,600;1,400&family=DM+Sans:wght@300;400;500;600;700&display=swap');

/* ═══════════════════════════════════════════════════════════════
   CSS CUSTOM PROPERTIES
═══════════════════════════════════════════════════════════════ */
:root {
  --green: #84cc16;
  --green-dark: #65a30d;
  --green-light: rgba(132,204,22,0.1);
  --primary:     #1a1a1a;
  --accent:      #84cc16;
  --accent-dark: #65a30d;
  --accent-light:#f0fdf4;
  --dark: #111827;
  --gray: #6b7280;
  --mid: #6b7280;
  --light: #f8f8f6;
  --white: #ffffff;
  --border: rgba(0,0,0,0.08);
  /* Dark mode vars (same names, overridden below) */
  --card-bg: #ffffff;
  --nav-bg: rgba(255,255,255,0.92);
}

/* ═══════════════════════════════════════════════════════════════
   DARK MODE
═══════════════════════════════════════════════════════════════ */
@media (prefers-color-scheme: dark) {
  :root {
    --dark: #E2EAF4;
    --white: #111827;
    --light: #1a2234;
    --gray: #94A3B8;
    --border: rgba(255,255,255,0.08);
    --card-bg: rgba(255,255,255,0.05);
    --nav-bg: rgba(17,24,39,0.95);
  }
  body { background: #111827; color: #E2EAF4; }
  nav { background: var(--nav-bg); border-bottom-color: rgba(255,255,255,0.06); }
  .nav-links { background: #111827; }
  .nav-links a { color: #C8D8E8; }
  .social-proof-bar { background: #1a2234; border-color: rgba(255,255,255,0.06); }
  .sp-text strong { color: #E2EAF4; }
  .stats-row { background: #0f172a; }
  .stat-num { color: #E2EAF4; }
  .location-card, .location-count { background: var(--card-bg); }
  .location-card { border-color: rgba(132,204,22,0.3); }
  .why-card { background: var(--card-bg); color: #E2EAF4; }
  .why-card:hover { background: rgba(132,204,22,0.12); color: #E2EAF4; }
  .service-card { background: var(--card-bg); color: #E2EAF4; }
  .service-card:hover { background: rgba(132,204,22,0.15); color: #E2EAF4; }
  .review-card {
    background: rgba(255,255,255,0.05);
    border-color: rgba(255,255,255,0.1);
  }
  .hero-card { background: #1f2937; }
  .hero-card-text strong, .hero-card-text span { color: #E2EAF4; }
  .hero-badge { background: rgba(132,204,22,0.12); color: #84cc16; }
  .about-stat-card { background: rgba(132,204,22,0.1); border-color: rgba(132,204,22,0.2); }
  .about-stat-card strong { color: #E2EAF4; }
  #exit-box { background: #1a2234; color: #E2EAF4; }
  #exit-box p { color: #C8D8E8; }
  .cookie-text a { color: var(--green) !important; }
  #back-to-top { background: #1f2937; border-color: var(--green); color: #E2EAF4; }
  .section-title { color: #E2EAF4; }
  .hero h1 { color: #E2EAF4; }
  .hero-stat strong { color: #E2EAF4; }
  .stat-num { color: #E2EAF4; }
}

/* ═══════════════════════════════════════════════════════════════
   BASE
═══════════════════════════════════════════════════════════════ */
* { margin: 0; padding: 0; box-sizing: border-box; }

/* ─── GLOBAL LINK RESET ─────────────────────────────────────────
   Verhindert blaue/lila Browser-Standard-Links überall          */
a {
  color: inherit;
  text-decoration: none;
}
a:visited {
  color: inherit;
}
a:hover {
  text-decoration: none;
}

/* ─── NAV OVERLAY LINKS ────────────────────────────────────────── */
/* Haupt-Nav-Links und -Buttons: einheitlich Playfair 28px/500 */
#nav-ol a,
#nav-ol button {
  text-decoration: none !important;
  color: white !important;
  font-family: 'Playfair Display', serif !important;
  font-size: 28px !important;
  font-weight: 500 !important;
  line-height: 1.35 !important;
  letter-spacing: -0.01em !important;
  cursor: pointer !important;
  margin-bottom: 18px !important;
  display: block !important;
}
/* Buttons: flex für Pfeil/Badge-Anzeige */
#nav-ol button {
  display: flex !important;
  align-items: center !important;
  gap: 10px !important;
  width: 100% !important;
  background: none !important;
  border: none !important;
  padding: 0 !important;
}
#nav-ol a:visited {
  color: white !important;
}
#nav-ol a:hover,
#nav-ol button:hover {
  color: #84cc16 !important;
}

/* ── Ausnahmen: kleine Links (Untermenü, Rechtliches, Kontakt) ── */
#nav-ol #leistungen-sub a,
#nav-ol a[href^="tel:"],
#nav-ol a[href*="wa.me"],
#nav-ol a[onclick*="openLegalModal"],
#nav-ol a[style*="0.4"],
#nav-ol a[style*="0.5"] {
  font-family: 'DM Sans', sans-serif !important;
  font-size: 14px !important;
  font-weight: 400 !important;
  letter-spacing: 0 !important;
  line-height: 1.5 !important;
}
#nav-ol #leistungen-sub a {
  color: rgba(255,255,255,0.55) !important;
}
#nav-ol #leistungen-sub a:visited {
  color: rgba(255,255,255,0.55) !important;
}
#nav-ol #leistungen-sub a:hover {
  color: #84cc16 !important;
}
#nav-ol a[href^="tel:"] {
  color: rgba(255,255,255,0.4) !important;
}
#nav-ol a[href*="wa.me"] {
  color: #84cc16 !important;
}
#nav-ol a[onclick*="openLegalModal"] {
  color: rgba(255,255,255,0.5) !important;
}

/* ─── NAV LOGO ──────────────────────────────────────────────────── */
.nav-logo {
  text-decoration: none !important;
  color: var(--dark) !important;
}
.nav-logo:visited {
  color: var(--dark) !important;
}
html { scroll-behavior: smooth; }
body {
  font-family: 'DM Sans', sans-serif;
  color: var(--dark);
  background: var(--white);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* ═══════════════════════════════════════════════════════════════
   PROGRESS BAR
═══════════════════════════════════════════════════════════════ */
#progress-bar {
  position: fixed;
  top: 0; left: 0;
  height: 3px;
  background: linear-gradient(90deg, #84cc16, #a3e635);
  z-index: 10001;
  width: 0%;
  opacity: 0;
  will-change: width;
  pointer-events: none;
  transition: width 0.1s linear, opacity 0.3s;
}

/* ═══════════════════════════════════════════════════════════════
   NAV
═══════════════════════════════════════════════════════════════ */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 10002;
  height: 72px; padding: 0 6%;
  display: flex; align-items: center; justify-content: space-between;
  background: var(--nav-bg);
  backdrop-filter: blur(24px); -webkit-backdrop-filter: blur(24px);
  border-bottom: 1px solid var(--border);
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
nav.nav-scrolled {
  background: rgba(17, 24, 39, 0.88);
  backdrop-filter: blur(30px); -webkit-backdrop-filter: blur(30px);
  border-bottom: 1px solid rgba(132,204,22,0.2);
}
/* Nav bar becomes dark when menu overlay is open */
nav.nav-menu-open {
  background: rgba(17, 24, 39, 0.97) !important;
  border-bottom-color: rgba(255,255,255,0.06) !important;
}
nav.nav-menu-open .nav-logo { color: #fff !important; }
nav.nav-scrolled .nav-logo { color: #f0e8d5; }
nav.nav-scrolled .nav-links a { color: rgba(240,232,213,0.7); }
nav.nav-scrolled .nav-links a:hover { color: #f0e8d5; opacity: 1; }
.nav-logo { font-family: 'Playfair Display', serif; font-weight: 700; font-size: 1.1rem; color: var(--dark); text-decoration: none; letter-spacing: -0.02em; }
.nav-links { display: flex; align-items: center; gap: 2.2rem; list-style: none; }
.nav-links a { text-decoration: none; color: var(--gray); font-size: 0.88rem; font-weight: 500; opacity: 0.75; transition: opacity 0.2s; }
.nav-links a:hover { opacity: 1; }
.nav-cta {
  background: #84cc16 !important; color: #1a1a1a !important;
  opacity: 1 !important; padding: 0.55rem 1.3rem !important;
  border-radius: 100px; font-weight: 700 !important; font-size: 0.85rem !important;
  transition: all 0.2s !important;
}
.nav-cta:hover { background: #65a30d !important; transform: translateY(-1px); }

/* Hamburger */
.hamburger {
  display: none; flex-direction: column; gap: 5px;
  cursor: pointer; background: none; border: none; padding: 4px;
  z-index: 1001;
}
.hamburger span {
  width: 22px; height: 2px; background: var(--dark);
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease, background 0.3s;
  display: block;
}
nav.nav-open .hamburger span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
nav.nav-open .hamburger span:nth-child(2) { opacity: 0; transform: scaleX(0); }
nav.nav-open .hamburger span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Nav overlay backdrop */
#nav-overlay {
  position: fixed; inset: 0;
  background: rgba(0,0,0,0.5);
  backdrop-filter: blur(3px);
  z-index: 998;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}
#nav-overlay.visible { opacity: 1; pointer-events: all; }

/* ═══════════════════════════════════════════════════════════════
   BUTTONS
═══════════════════════════════════════════════════════════════ */
.btn-primary {
  display: inline-flex; align-items: center; gap: 0.5rem;
  background: var(--green); color: #ffffff;
  padding: 1rem 2rem; border-radius: 100px;
  font-weight: 700; font-size: 0.95rem; text-decoration: none;
  transition: background 0.25s, transform 0.25s, box-shadow 0.25s;
  box-shadow: 0 4px 20px rgba(132,204,22,0.3);
  position: relative; overflow: hidden;
}
.btn-primary:hover { background: var(--green-dark); transform: translateY(-2px); box-shadow: 0 8px 30px rgba(132,204,22,0.4); }
.btn-primary svg { transition: transform 0.25s; flex-shrink: 0; }
.btn-primary:hover svg { transform: translateX(3px); }
.btn-outline {
  display: inline-flex; align-items: center; gap: 0.5rem;
  background: transparent; color: var(--dark);
  border: 2px solid var(--green);
  padding: 0.9rem 1.8rem; border-radius: 100px;
  font-weight: 600; font-size: 0.9rem; text-decoration: none;
  transition: all 0.25s;
  position: relative; overflow: hidden;
}
.btn-outline:hover { background: var(--green); transform: translateY(-2px); }

/* Ripple */
.ripple {
  position: absolute; border-radius: 50%;
  width: 200px; height: 200px;
  margin-top: -100px; margin-left: -100px;
  background: rgba(255,255,255,0.4);
  transform: scale(0);
  animation: ripple-anim 0.65s linear;
  pointer-events: none;
}
@keyframes ripple-anim { to { transform: scale(4); opacity: 0; } }

/* ═══════════════════════════════════════════════════════════════
   SECTIONS
═══════════════════════════════════════════════════════════════ */
section { padding: 7rem 6%; }
.section-label {
  font-size: 0.72rem; font-weight: 700; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--green);
  margin-bottom: 0.9rem; display: block;
}
.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.9rem, 3.5vw, 2.8rem);
  font-weight: 900; line-height: 1.1;
  letter-spacing: -0.025em; margin-bottom: 1.2rem;
}
.section-title em { font-style: italic; color: var(--green); }
.section-sub { font-size: 1rem; line-height: 1.75; opacity: 0.6; max-width: 520px; }

/* ═══════════════════════════════════════════════════════════════
   ANIMATIONS: FADE-UP
═══════════════════════════════════════════════════════════════ */
.fade-up {
  opacity: 0; transform: translateY(28px);
  transition: opacity 0.65s ease, transform 0.65s ease;
  will-change: opacity, transform;
}
.fade-up.visible { opacity: 1; transform: translateY(0); }
.fade-up:nth-child(2) { transition-delay: 0.1s; }
.fade-up:nth-child(3) { transition-delay: 0.2s; }

/* ═══════════════════════════════════════════════════════════════
   TRUST BAR ICON ANIMATIONS (Lottie-like CSS)
═══════════════════════════════════════════════════════════════ */
@keyframes icon-float {
  0%, 100% { transform: translateY(0) scale(1); }
  50% { transform: translateY(-6px) scale(1.12); }
}
@keyframes icon-spin-wobble {
  0%, 100% { transform: rotate(0deg); }
  25% { transform: rotate(-12deg) scale(1.1); }
  75% { transform: rotate(12deg) scale(1.1); }
}
@keyframes icon-pulse-scale {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.28); }
}
@keyframes icon-lock {
  0%, 80%, 100% { transform: translateY(0); }
  90% { transform: translateY(-4px); }
}
.sp-item:nth-child(1) .sp-icon { animation: icon-float 2.8s ease-in-out infinite; }
.sp-item:nth-child(2) .sp-icon { animation: icon-pulse-scale 2.4s ease-in-out infinite 0.3s; }
.sp-item:nth-child(3) .sp-icon { animation: icon-spin-wobble 3.2s ease-in-out infinite 0.6s; }
.sp-item:nth-child(4) .sp-icon { animation: icon-lock 3s ease-in-out infinite 0.9s; }

/* ═══════════════════════════════════════════════════════════════
   BACK TO TOP
═══════════════════════════════════════════════════════════════ */
#back-to-top {
  position: fixed; bottom: 28px; left: 28px;
  width: 46px; height: 46px;
  background: var(--dark); color: white;
  border: 2px solid var(--green); border-radius: 50%;
  cursor: pointer; font-size: 1rem; font-weight: 700;
  display: flex; align-items: center; justify-content: center;
  opacity: 0; transform: translateY(10px);
  transition: opacity 0.3s, transform 0.3s, background 0.2s;
  z-index: 992;
  font-family: 'DM Sans', sans-serif;
}
#back-to-top.visible { opacity: 1; transform: translateY(0); }
#back-to-top:hover { background: var(--green); color: var(--dark); }

/* ═══════════════════════════════════════════════════════════════
   WHATSAPP BUTTON
═══════════════════════════════════════════════════════════════ */
#whatsapp-btn {
  position: fixed; bottom: 60px; right: 24px;
  background: #25D366; color: white;
  border-radius: 50%;
  width: 54px; height: 54px;
  text-decoration: none;
  display: flex; align-items: center; justify-content: center;
  font-family: 'DM Sans', sans-serif;
  box-shadow: 0 4px 24px rgba(37,211,102,0.5);
  z-index: 994;
  transition: transform 0.25s cubic-bezier(0.34,1.56,0.64,1), box-shadow 0.25s;
}
#whatsapp-btn:hover { transform: scale(1.1); box-shadow: 0 8px 32px rgba(37,211,102,0.65); }
#whatsapp-btn svg { flex-shrink: 0; }
#whatsapp-btn span { display: none; }

/* ═══════════════════════════════════════════════════════════════
   MOBILE STICKY CTA
═══════════════════════════════════════════════════════════════ */
#mobile-cta-bar {
  display: none;
  position: fixed; bottom: 20px; left: 20px; right: 20px;
  z-index: 997;
  opacity: 0; transform: translateY(30px);
  transition: opacity 0.5s cubic-bezier(0.16,1,0.3,1), transform 0.5s cubic-bezier(0.16,1,0.3,1);
  will-change: opacity, transform;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 8px 40px rgba(0,0,0,0.35), 0 0 0 1px rgba(132,204,22,0.3);
}
#mobile-cta-bar.visible { opacity: 1; transform: translateY(0); }
.mobile-cta-link {
  display: block;
  background: rgba(17, 24, 39, 0.85);
  backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(132,204,22,0.3);
  border-radius: 16px;
  color: #f0e8d5;
  text-align: center; padding: 1rem 1.5rem;
  font-weight: 700; font-size: 0.92rem;
  text-decoration: none;
  letter-spacing: 0.02em;
  transition: background 0.25s, border-color 0.25s;
}
.mobile-cta-link:hover {
  background: rgba(132,204,22,0.15);
  border-color: rgba(132,204,22,0.6);
}

/* ═══════════════════════════════════════════════════════════════
   EXIT INTENT POPUP
═══════════════════════════════════════════════════════════════ */
#exit-popup {
  position: fixed; inset: 0;
  z-index: 10000;
  display: none;
  align-items: center;
  justify-content: center;
}
#exit-popup.open { display: flex; }
#exit-overlay {
  position: absolute; inset: 0;
  background: rgba(0,0,0,0.65);
  backdrop-filter: blur(5px);
}
#exit-box {
  position: relative;
  background: white; border-radius: 24px;
  padding: 2.5rem 2rem; max-width: 460px;
  width: 90%; z-index: 1;
  text-align: center;
  animation: exit-appear 0.4s cubic-bezier(0.34,1.56,0.64,1);
  border-top: 3px solid var(--green);
}
@keyframes exit-appear {
  from { transform: scale(0.88) translateY(20px); opacity: 0; }
  to { transform: scale(1) translateY(0); opacity: 1; }
}
#exit-close {
  position: absolute; top: 1rem; right: 1rem;
  background: none; border: none; font-size: 1.3rem;
  cursor: pointer; opacity: 0.35; color: var(--dark);
  transition: opacity 0.2s, transform 0.2s;
  font-family: 'DM Sans', sans-serif;
}
#exit-close:hover { opacity: 1; transform: scale(1.2); }

/* ═══════════════════════════════════════════════════════════════
   COOKIE OVERLAY (DSGVO)
═══════════════════════════════════════════════════════════════ */
.cookie-overlay {
  position: fixed; inset: 0;
  background: rgba(0,0,0,0.65);
  backdrop-filter: blur(4px);
  z-index: 999999;
  display: flex; align-items: center; justify-content: center;
  padding: 24px;
  animation: fadeIn 0.3s ease;
}
.cookie-modal {
  background: #ffffff; border-radius: 20px;
  padding: 36px 32px; max-width: 460px; width: 100%;
  box-shadow: 0 24px 80px rgba(0,0,0,0.2);
  animation: slideUp 0.4s cubic-bezier(0.25,0.46,0.45,0.94);
}
.cookie-icon { font-size: 32px; margin-bottom: 12px; }
.cookie-title {
  font-family: 'Playfair Display', serif;
  font-size: 22px; font-weight: 500; color: #1a1a1a;
  margin-bottom: 14px; line-height: 1.2;
}
.cookie-text {
  font-size: 14px; line-height: 1.65; color: #6b7280; margin-bottom: 10px;
}
.cookie-link { color: #84cc16; text-decoration: underline; cursor: pointer; }
.cookie-buttons {
  display: flex; flex-direction: column; gap: 10px; margin: 20px 0 14px;
}
.cookie-btn-accept {
  background: #84cc16; color: white; border: none;
  border-radius: 980px; padding: 14px 24px;
  font-size: 15px; font-weight: 600; cursor: pointer;
  transition: background 0.2s; font-family: 'Instrument Sans', sans-serif;
}
.cookie-btn-accept:hover { background: #65a30d; }
.cookie-btn-necessary {
  background: transparent; color: #6b7280;
  border: 1.5px solid rgba(0,0,0,0.12);
  border-radius: 980px; padding: 13px 24px;
  font-size: 14px; cursor: pointer;
  transition: all 0.2s; font-family: 'Instrument Sans', sans-serif;
}
.cookie-btn-necessary:hover { border-color: #1a1a1a; color: #1a1a1a; }
.cookie-note { font-size: 11px; color: #9ca3af; text-align: center; line-height: 1.5; }
@keyframes slideUp {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}
@media (max-width: 480px) {
  .cookie-modal { padding: 28px 24px; border-radius: 16px; }
  .cookie-title { font-size: 20px; }
  .cookie-text  { font-size: 13px; }
}

/* ═══════════════════════════════════════════════════════════════
   REVIEWS SLIDER DOTS
═══════════════════════════════════════════════════════════════ */
.reviews-dots .dot {
  width: 8px; height: 8px;
  background: rgba(0,0,0,0.15); border-radius: 50%;
  border: none; cursor: pointer; padding: 0;
  transition: background 0.25s, transform 0.25s;
}
.reviews-dots .dot.active {
  background: var(--green);
  transform: scale(1.35);
}

/* ═══════════════════════════════════════════════════════════════
   FOOTER
═══════════════════════════════════════════════════════════════ */
footer { background: var(--dark); color: white; padding: 4rem 6% 2.5rem; }
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 3rem; padding-bottom: 3rem; border-bottom: 1px solid rgba(255,255,255,0.08); margin-bottom: 2rem; }
.footer-logo { font-family: 'Playfair Display', serif; font-size: 1.2rem; font-weight: 700; color: white; margin-bottom: 0.6rem; display: block; }
.footer-tagline { font-size: 0.82rem; opacity: 0.45; line-height: 1.6; }
.footer-col h4 { font-size: 0.7rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; opacity: 0.35; margin-bottom: 1.2rem; }
.footer-col a, .footer-col p { display: block; color: white; text-decoration: none; font-size: 0.85rem; opacity: 0.55; margin-bottom: 0.55rem; line-height: 1.6; transition: opacity 0.2s; }
.footer-col a:hover { opacity: 0.9; }
.impressum-btn { background: none; border: none; color: white; font-size: 0.85rem; opacity: 0.55; cursor: pointer; font-family: 'DM Sans', sans-serif; padding: 0; display: flex; align-items: center; gap: 0.4rem; transition: opacity 0.2s; }
.impressum-btn:hover { opacity: 0.9; }
.impressum-body { display: none; margin-top: 1rem; font-size: 0.75rem; opacity: 0.4; line-height: 1.9; }
.impressum-body.open { display: block; }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; font-size: 0.78rem; opacity: 0.3; }

/* ═══════════════════════════════════════════════════════════════
   RESPONSIVE – MOBILE NAV (full screen overlay style)
═══════════════════════════════════════════════════════════════ */
@media (max-width: 900px) {
  nav { padding: 0 5%; }
  .hamburger { display: flex; }
  section { padding: 5rem 5%; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .footer-bottom { flex-direction: column; gap: 0.5rem; text-align: center; }

  /* Full screen nav – premium dark glassmorphism */
  .nav-links {
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(17, 24, 39, 0.97);
    backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    z-index: 999;
    opacity: 0;
    transform: scale(0.97);
    pointer-events: none;
    transition: opacity 0.35s ease, transform 0.35s ease;
  }
  nav.nav-open .nav-links {
    opacity: 1;
    transform: scale(1);
    pointer-events: all;
  }
  .nav-links li {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.3s ease, transform 0.3s ease;
  }
  nav.nav-open .nav-links li { opacity: 1; transform: translateY(0); }
  nav.nav-open .nav-links li:nth-child(1) { transition-delay: 0.10s; }
  nav.nav-open .nav-links li:nth-child(2) { transition-delay: 0.20s; }
  nav.nav-open .nav-links li:nth-child(3) { transition-delay: 0.30s; }
  nav.nav-open .nav-links li:nth-child(4) { transition-delay: 0.40s; }
  nav.nav-open .nav-links li:nth-child(5) { transition-delay: 0.50s; }
  .nav-links a {
    font-size: 1.5rem;
    font-weight: 700;
    color: rgba(240,232,213,0.75) !important;
    opacity: 1 !important;
    padding: 0.7rem 1.2rem;
    transition: color 0.2s ease;
  }
  .nav-links a:hover { color: #a3e635 !important; opacity: 1 !important; }
  .nav-cta {
    font-size: 1rem !important;
    padding: 0.85rem 2rem !important;
    margin-top: 0.8rem;
    background: #84cc16 !important;
    color: #1a1a1a !important;
  }
  /* Hamburger lines white when menu is open */
  nav.nav-open .hamburger span { background: rgba(240,232,213,0.8); }

  /* Mobile sticky CTA */
  #mobile-cta-bar { display: block; }
  /* WhatsApp: above mobile CTA bar */
  #whatsapp-btn { bottom: 90px; right: 20px; }
  #cookie-banner { padding: 1rem 5%; }
}
@media (max-width: 768px) {
  .btn-primary { width: 100%; justify-content: center; padding: 1rem; }
  .btn-outline { width: 100%; justify-content: center; padding: 1rem; }
  .locations-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; }
  .services-intro { grid-template-columns: 1fr; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .reviews-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-col a, .footer-col p { font-size: 0.8rem; }
  .footer-tagline { font-size: 0.78rem; }
  .page-hero { grid-template-columns: 1fr !important; padding: 100px 5% 60px !important; }
  .page-hero-img { order: -1; }
  /* Back-to-top clear of mobile-cta */
  #back-to-top { bottom: 90px; left: 16px; width: 40px; height: 40px; font-size: 0.9rem; }
  #whatsapp-btn { bottom: 90px; right: 14px; width: 48px; height: 48px; }
}
@media (max-width: 600px) {
  .footer-grid { grid-template-columns: 1fr; }
  #cookie-banner { flex-direction: column; align-items: flex-start; padding: 1rem 5%; }
  .cookie-btns { width: 100%; }
  .cookie-accept, .cookie-decline { flex: 1; text-align: center; }
}

/* ═══════════════════════════════════════════════════════════════
   PREMIUM FEATURES – Preloader, Animations, Visual Enhancements
═══════════════════════════════════════════════════════════════ */

/* ── PRELOADER ─────────────────────────────────────────────── */
#preloader {
  position: fixed; inset: 0;
  background: #000000;
  z-index: 99999;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  gap: 2.2rem;
  transition: opacity 0.6s ease, visibility 0.6s ease;
}
#preloader.hide {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}
.preloader-logo { display: none; }
.preloader-bar-wrap {
  width: 220px; height: 1px;
  background: rgba(255,255,255,0.08);
  overflow: hidden;
}
.preloader-bar {
  height: 100%; width: 0;
  background: linear-gradient(90deg, #84cc16, #a3e635, #84cc16);
  background-size: 200% 100%;
  animation: preloader-fill 1.2s cubic-bezier(0.16,1,0.3,1) forwards,
             preloader-shimmer 0.9s linear infinite;
}
@keyframes preloader-fill {
  from { width: 0; }
  to   { width: 100%; }
}
@keyframes preloader-shimmer {
  0%   { background-position: 100% 0; }
  100% { background-position: -100% 0; }
}
.preloader-text {
  font-size: 11px; letter-spacing: 6px;
  text-transform: uppercase; color: rgba(255,255,255,0.5);
  font-family: 'DM Sans', sans-serif; font-weight: 400;
  animation: preloader-text-fade 1.2s ease forwards 0.2s;
  opacity: 0;
}
@keyframes preloader-text-fade {
  to { opacity: 1; }
}

/* ── CUSTOM SCROLLBAR ──────────────────────────────────────── */
::-webkit-scrollbar { width: 5px; }
::-webkit-scrollbar-track { background: #1a1a1a; }
::-webkit-scrollbar-thumb { background: #84cc16; border-radius: 2px; }
::-webkit-scrollbar-thumb:hover { background: #a3e635; }

/* ── SELECTION ─────────────────────────────────────────────── */
::selection { background: #84cc16; color: #1a1a1a; }
::-moz-selection { background: #84cc16; color: #1a1a1a; }

/* ── HERO HEADLINE WORD ANIMATION ──────────────────────────── */
.hero-headline-animate .word {
  display: inline-block;
  overflow: hidden;
  vertical-align: bottom;
}
.hero-headline-animate .word-inner {
  display: inline-block;
  transform: translateY(110%);
  opacity: 0;
  animation: word-reveal 0.75s cubic-bezier(0.16, 1, 0.3, 1) forwards;
  will-change: transform, opacity;
}
@keyframes word-reveal {
  to { transform: translateY(0); opacity: 1; }
}
/* Legacy char-reveal (fallback) */
.hero-headline-animate .char {
  display: inline-block;
  transform: translateY(105%);
  opacity: 0;
  animation: char-reveal 0.7s cubic-bezier(0.22, 1, 0.36, 1) forwards;
  will-change: transform, opacity;
}
@keyframes char-reveal {
  to { transform: translateY(0); opacity: 1; }
}

/* ── HERO GOLD UNDERLINE ─────────────────────────────────── */
.hero-underline {
  width: 0; height: 2px;
  background: linear-gradient(90deg, #84cc16, #a3e635);
  margin-top: 0.4rem;
  margin-bottom: 1.6rem;
  animation: underline-grow 0.9s cubic-bezier(0.16,1,0.3,1) forwards 1.2s;
}
@keyframes underline-grow {
  to { width: 60px; }
}

/* ── HERO IMAGE PANEL ──────────────────────────────────────── */
.hero-img-glow-wrap {
  position: relative;
  overflow: hidden;
  border-radius: 0;
}
.hero-img-glow-wrap .hero-img {
  display: block;
  animation: none; /* remove any float from img itself */
}
.hero-card {
  position: absolute; bottom: -24px; left: -28px;
}
.hero-card2 {
  position: absolute; top: 40px; right: -20px;
}

/* ── CINEMATIC IMAGE OVERLAY ───────────────────────────────── */
.img-cinematic-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(17, 24, 39, 0.18) 0%,
    transparent 35%,
    rgba(17, 24, 39, 0.45) 100%
  );
  pointer-events: none;
  z-index: 1;
  border-radius: inherit;
}
/* Darker cinematic on secondary images (about, services, CTA) */
.about-img-wrap .img-cinematic-overlay,
.services-img-wrap .img-cinematic-overlay {
  background: linear-gradient(
    to bottom,
    rgba(17, 24, 39, 0.35) 0%,
    rgba(17, 24, 39, 0.15) 50%,
    rgba(17, 24, 39, 0.55) 100%
  );
}
/* Darken about/services images */
.about-img { filter: brightness(0.82); }
.services-img { filter: brightness(0.78); }
.cta-img { filter: brightness(0.55); }

/* ── GRAIN TEXTURE OVERLAY ─────────────────────────────────── */
.img-grain {
  position: absolute; inset: 0;
  pointer-events: none;
  z-index: 2;
  border-radius: inherit;
  opacity: 0.06;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
  background-size: 180px 180px;
  mix-blend-mode: overlay;
}

/* ── GOLDEN SHIMMER ON SERVICE CARDS ──────────────────────── */
.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 50%; height: 100%;
  background: linear-gradient(
    105deg,
    transparent 30%,
    rgba(132,204,22,0.18) 50%,
    rgba(240,192,96,0.10) 60%,
    transparent 70%
  );
  transform: translateX(-100%) skewX(-10deg);
  pointer-events: none;
  z-index: 0;
  transition: none;
}
.service-card:hover::before {
  animation: card-shimmer-hover 0.6s ease forwards;
}
@keyframes card-shimmer-hover {
  from { transform: translateX(-100%) skewX(-10deg); }
  to   { transform: translateX(300%) skewX(-10deg); }
}
/* Idle shimmer removed – shimmer only triggers on hover */
.service-card > * { position: relative; z-index: 1; }

/* ── SERVICE CARD HOVER: Deep shadow + rotate ──────────────── */
.service-card:hover {
  background: var(--dark);
  color: white;
  box-shadow: 0 24px 60px rgba(0,0,0,0.22), 0 6px 20px rgba(0,0,0,0.12);
  transform: translateY(-8px) rotate(0.5deg) !important;
}

/* ── SVG DIVIDERS ──────────────────────────────────────────── */
.svg-divider {
  line-height: 0;
  margin-bottom: -2px;
  pointer-events: none;
  overflow: hidden;
}
.svg-divider svg {
  display: block;
  width: 100%; height: 40px;
}
.svg-divider--light { background: var(--light); }

/* ── FRANKFURT SKYLINE ─────────────────────────────────────── */
.skyline-wrap {
  background: #0f172a;
  line-height: 0;
  overflow: hidden;
}
.skyline-svg {
  display: block;
  width: 100%; height: auto;
  max-height: 120px;
  min-height: 60px;
}

/* ── MAGNETIC BUTTON (visual feedback) ──────────────────────── */
.btn-primary, .nav-cta {
  transition: transform 0.25s cubic-bezier(0.34, 1.56, 0.64, 1),
              background 0.25s ease,
              box-shadow 0.25s ease !important;
}

/* ── HERO IMG: remove separate box-shadow (handled by wrap) ─── */
.hero-img-glow-wrap .hero-img {
  box-shadow: none;
}
@media (prefers-color-scheme: dark) {
  .hero-img-glow-wrap {
    box-shadow: 0 30px 80px rgba(0,0,0,0.3) !important;
  }
}
@media (max-width: 768px) {
  .hero-img-glow-wrap {
    animation: none;
    border-radius: 24px;
  }
  .hero-img-glow-wrap .hero-img {
    border-radius: 24px;
  }
  .hero-card, .hero-card2 {
    position: relative !important;
    bottom: auto !important;
    left: auto !important;
    top: auto !important;
    right: auto !important;
    animation: none !important;
    transform: none !important;
  }
  .hero-right {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
  }
}

/* ═══════════════════════════════════════════════════════════════
   PHASE 2 – WORLD-CLASS VISUAL ENHANCEMENTS
═══════════════════════════════════════════════════════════════ */

/* ── HERO SCROLL INDICATOR ─────────────────────────────────── */
.hero-scroll-indicator {
  display: flex; flex-direction: column; align-items: center; gap: 0.5rem;
  margin-top: 3rem; opacity: 0.45;
  animation: scroll-indicator-pulse 2.2s ease-in-out infinite;
  transition: opacity 0.4s ease;
}
.hero-scroll-indicator.hidden { opacity: 0; pointer-events: none; }
.scroll-mouse {
  width: 22px; height: 36px;
  border: 1.5px solid currentColor;
  border-radius: 12px;
  display: flex; justify-content: center; padding-top: 6px;
}
.scroll-wheel {
  width: 3px; height: 7px;
  background: currentColor; border-radius: 2px;
  animation: scroll-wheel-anim 2.2s ease-in-out infinite;
}
.hero-scroll-indicator span {
  font-size: 0.65rem; letter-spacing: 0.18em;
  text-transform: uppercase; font-weight: 600;
}
@keyframes scroll-indicator-pulse {
  0%, 100% { opacity: 0.45; transform: translateY(0); }
  50% { opacity: 0.7; transform: translateY(4px); }
}
@keyframes scroll-wheel-anim {
  0% { transform: translateY(0); opacity: 1; }
  60% { transform: translateY(8px); opacity: 0; }
  61% { transform: translateY(0); opacity: 0; }
  100% { transform: translateY(0); opacity: 1; }
}
@media (max-width: 900px) {
  .hero-scroll-indicator { display: none; }
}

/* ── BLUR-UP SCROLL ANIMATION ──────────────────────────────── */
.fade-blur-up {
  opacity: 0;
  transform: translateY(35px);
  filter: blur(6px);
  transition:
    opacity 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94),
    transform 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94),
    filter 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  will-change: opacity, transform, filter;
}
.fade-blur-up.visible {
  opacity: 1; transform: translateY(0); filter: blur(0);
}
.fade-blur-up:nth-child(2) { transition-delay: 0.1s; }
.fade-blur-up:nth-child(3) { transition-delay: 0.2s; }
.fade-blur-up:nth-child(4) { transition-delay: 0.3s; }
@media (prefers-reduced-motion: reduce) {
  .fade-blur-up {
    filter: none; transition: opacity 0.3s ease;
  }
  .fade-up { transition: opacity 0.3s ease; transform: none; }
}

/* ── AWARDS / BADGES SECTION ───────────────────────────────── */
.badges-section {
  background: #ffffff;
  padding: 4rem 6%;
  border-top: 1px solid rgba(0,0,0,0.05);
  border-bottom: 1px solid rgba(0,0,0,0.05);
  overflow: hidden;
  position: relative;
}
.badges-inner {
  display: flex;
  align-items: center; justify-content: center;
  gap: 4rem; flex-wrap: wrap;
  max-width: 760px; margin: 0 auto;
}
.badge-item { display: flex; justify-content: center; }
.badge-circle {
  width: 150px; height: 150px;
  border-radius: 50%;
  border: 1.5px solid rgba(132,204,22,0.28);
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  gap: 0.35rem; padding: 1.2rem;
  text-align: center;
  transition: border-color 0.3s, box-shadow 0.3s;
  cursor: default;
}
.badge-circle:hover {
  border-color: #84cc16;
  box-shadow: 0 0 30px rgba(132,204,22,0.18);
}
.badge-icon-svg {
  color: #84cc16; margin-bottom: 0.2rem;
}
.badge-title {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.72rem; font-weight: 700;
  color: #111827; line-height: 1.3;
  letter-spacing: 0.02em;
}
.badge-sub {
  font-size: 0.65rem; color: #84cc16;
  font-weight: 500; letter-spacing: 0.08em;
  text-transform: uppercase;
}
@media (max-width: 600px) {
  .badges-inner { gap: 2rem; }
  .badge-circle { width: 120px; height: 120px; }
}

/* ── PROMISE SECTION ───────────────────────────────────────── */
.promise-section {
  position: relative;
  min-height: 60vh;
  background: #111827;
  display: flex; align-items: center; justify-content: center;
  padding: 8rem 6%;
  overflow: hidden;
  text-align: center;
}
.promise-bg-overlay {
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at center, rgba(132,204,22,0.06) 0%, transparent 70%);
  pointer-events: none;
}
.promise-inner {
  position: relative; z-index: 1;
  max-width: 860px; margin: 0 auto;
}
.promise-deco-line {
  width: 60px; height: 1px;
  background: linear-gradient(90deg, transparent, #84cc16, transparent);
  margin: 0 auto 2.5rem;
}
.promise-inner .promise-deco-line + .promise-deco-line,
.promise-inner .promise-author + .promise-deco-line {
  margin: 2.5rem auto 0;
}
.promise-quote-mark {
  font-family: 'Playfair Display', serif;
  font-size: clamp(80px, 15vw, 200px);
  line-height: 0.6;
  color: #84cc16; opacity: 0.18;
  margin-bottom: 1rem;
  display: block;
  user-select: none;
}
.promise-text {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.25rem, 2.8vw, 2.2rem);
  font-style: italic;
  color: rgba(255,255,255,0.92);
  line-height: 1.65;
  font-weight: 400;
  margin: 0 0 2rem;
  border: none; padding: 0;
}
.promise-author {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.88rem;
  color: #84cc16;
  letter-spacing: 3px;
  font-weight: 400;
  margin-bottom: 2.5rem;
}

/* ── FAQ SECTION ───────────────────────────────────────────── */
.faq-section {
  background: #ffffff;
  padding: 7rem 6%;
}
.faq-inner {
  max-width: 800px;
  margin: 0 auto;
}
.faq-list {
  margin-top: 3rem;
}
.faq-item {
  border-bottom: 1px solid rgba(132,204,22,0.2);
  overflow: hidden;
}
.faq-question {
  width: 100%;
  display: flex; align-items: center; justify-content: space-between;
  padding: 1.4rem 0;
  background: none; border: none;
  font-family: 'Playfair Display', serif;
  font-size: clamp(1rem, 1.5vw, 1.15rem);
  font-weight: 700; color: #111827;
  cursor: pointer; text-align: left;
  gap: 1rem;
  transition: color 0.2s;
}
.faq-question:hover { color: #84cc16; }
.faq-chevron {
  flex-shrink: 0;
  transition: transform 0.35s cubic-bezier(0.16,1,0.3,1), color 0.2s;
  color: #84cc16;
}
.faq-item.open .faq-chevron { transform: rotate(180deg); }
.faq-answer {
  max-height: 0; overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.16,1,0.3,1), opacity 0.3s ease;
  opacity: 0;
}
.faq-item.open .faq-answer {
  max-height: 200px; opacity: 1;
}
.faq-answer p {
  padding: 0 0 1.4rem;
  font-size: 0.95rem; line-height: 1.8;
  color: #4a4a4a; font-family: 'DM Sans', sans-serif;
}

/* ── UPDATED MOBILE CTA (two-column) ───────────────────────── */
.mobile-cta-inner {
  display: flex; align-items: center;
  justify-content: space-between; gap: 1rem;
  padding: 14px 20px;
  background: rgba(17,24,39,0.88);
  backdrop-filter: blur(24px); -webkit-backdrop-filter: blur(24px);
  border: 1px solid rgba(132,204,22,0.25);
  border-radius: 16px;
}
.mobile-cta-text {
  display: flex; flex-direction: column; gap: 0.2rem;
}
.mobile-cta-label {
  font-size: 0.88rem; font-weight: 700; color: rgba(255,255,255,0.92);
  font-family: 'DM Sans', sans-serif;
}
.mobile-cta-sub {
  font-size: 0.7rem; color: rgba(255,255,255,0.4);
  font-family: 'DM Sans', sans-serif; letter-spacing: 0.05em;
}
.mobile-cta-btn {
  flex-shrink: 0;
  background: rgba(132,204,22,0.15);
  border: 1px solid #84cc16;
  color: #84cc16; border-radius: 8px;
  padding: 0.55rem 1.1rem;
  font-size: 0.82rem; font-weight: 700;
  text-decoration: none;
  font-family: 'DM Sans', sans-serif;
  white-space: nowrap;
  transition: background 0.2s, color 0.2s;
}
.mobile-cta-btn:hover {
  background: #84cc16; color: #111827;
}
/* Override old mobile-cta-link if it still exists */
.mobile-cta-link { display: none !important; }

/* ── WHATSAPP TOOLTIP ──────────────────────────────────────── */
#whatsapp-btn { position: relative; }
#whatsapp-btn::before {
  content: 'WhatsApp schreiben';
  position: absolute;
  right: calc(100% + 10px); top: 50%;
  transform: translateY(-50%) translateX(8px);
  background: rgba(8,23,46,0.92);
  color: rgba(255,255,255,0.9);
  font-size: 0.75rem; font-weight: 500;
  padding: 0.4rem 0.75rem;
  border-radius: 6px; white-space: nowrap;
  opacity: 0; pointer-events: none;
  transition: opacity 0.2s ease, transform 0.2s ease;
  font-family: 'DM Sans', sans-serif;
}
#whatsapp-btn:hover::before {
  opacity: 1; transform: translateY(-50%) translateX(0);
}

/* ── HERO IMAGE TREATMENT ──────────────────────────────────── */
.hero-img-glow-wrap .hero-img {
  filter: brightness(0.78);
  border-radius: 0 !important;
}
.hero-img-glow-wrap::after {
  content: '';
  position: absolute; inset: 0;
  border-radius: 0;
  box-shadow: inset 0 0 100px rgba(0,0,0,0.4);
  pointer-events: none; z-index: 2;
}

/* ── SECTION WATERMARK "AF" ────────────────────────────────── */
#warum, #leistungen, #faq {
  position: relative;
}
#warum::before, #leistungen::before, #faq::before {
  content: 'AF';
  position: absolute;
  font-family: 'Playfair Display', serif;
  font-size: clamp(200px, 30vw, 400px);
  font-weight: 900;
  color: currentColor;
  opacity: 0.018;
  line-height: 1;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
  user-select: none;
  letter-spacing: -0.05em;
  z-index: 0;
  overflow: hidden;
}

/* ── TESTIMONIAL CARDS HOVER ───────────────────────────────── */
.review-card {
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}
.review-card:hover {
  border-color: rgba(132,204,22,0.5) !important;
  box-shadow: 0 0 30px rgba(132,204,22,0.1), 0 4px 24px rgba(0,0,0,0.06) !important;
}

/* ── DEEPER SHADOWS ────────────────────────────────────────── */
.hero-card {
  box-shadow: 0 24px 64px rgba(0,0,0,0.2) !important;
}
.why-card {
  box-shadow: 0 4px 24px rgba(0,0,0,0.06) !important;
}
.why-card:hover {
  box-shadow: 0 30px 70px rgba(0,0,0,0.16) !important;
}

/* ── SECTION TITLES LETTER-SPACING ────────────────────────── */
.section-title {
  letter-spacing: -0.035em;
}
.section-title em {
  font-size: 107%;
}

/* ── GOLD GRADIENT REFINEMENT ──────────────────────────────── */
.btn-primary {
  background: linear-gradient(135deg, #84cc16, #84cc16) !important;
}
.btn-primary:hover {
  background: linear-gradient(135deg, #84cc16, #65a30d) !important;
}
.section-label { color: #84cc16; }
.hero-badge { color: #65a30d; }
.hero-badge::before { background: #84cc16; }

/* ── STAT NUMBERS RE-CONFIRM GOLD ──────────────────────────── */
.stat-num {
  background: linear-gradient(135deg, #84cc16, #84cc16, #a3e635) !important;
  -webkit-background-clip: text !important;
  -webkit-text-fill-color: transparent !important;
  background-clip: text !important;
}

/* ── SMOOTH SCROLL NAV LINKS ───────────────────────────────── */
html { scroll-behavior: smooth; }

/* ── MOBILE CTA: HIDE WHEN FOOTER VISIBLE ──────────────────── */
/* (Handled via JS, CSS just structure) */
#mobile-cta-bar.footer-hidden { opacity: 0; pointer-events: none; }

/* ── NAV LINK ACTIVE STATE ─────────────────────────────────── */
.nav-links a.active { opacity: 1; color: #84cc16; }

/* ── STATS ROW: DARK BACKGROUND CONTRAST ──────────────────── */
.stats-row { background: #f7f7f5; }

/* ── FOOTER DEEPER COLOR ───────────────────────────────────── */
footer { background: #111827; }
.footer-logo { color: #f0e8d5 !important; }

/* ── BACK TO TOP: UPDATED STYLE ────────────────────────────── */
#back-to-top {
  background: rgba(8,23,46,0.9) !important;
  border: 1px solid rgba(132,204,22,0.3) !important;
  color: #84cc16 !important;
}
#back-to-top:hover {
  background: #84cc16 !important;
  color: #111827 !important;
}

/* ── FAQ MOBILE ────────────────────────────────────────────── */
@media (max-width: 768px) {
  .faq-section { padding: 5rem 5%; }
  .promise-section { padding: 6rem 5%; }
  .badges-section { padding: 3rem 5%; }
  .promise-text { font-size: 1.15rem; }
}

/* ── HERO: FULL-BLEED IMAGE PANEL ──────────────────────────── */
.hero {
  padding-left: 6% !important;
  padding-right: 0 !important;
  align-items: stretch !important;
  gap: 0 !important;
}
.hero-left {
  padding-top: 130px;
  padding-bottom: 80px;
  padding-right: 5%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.hero-right {
  position: relative;
  overflow: hidden;
  min-height: 100vh;
}
.hero-img-glow-wrap {
  position: absolute !important;
  inset: 0 !important;
  border-radius: 0 !important;
  animation: none !important;
}
.hero-img {
  position: absolute !important;
  inset: 0 !important;
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  object-position: center 15% !important;
  border-radius: 0 !important;
  box-shadow: none !important;
}

/* ── ABOUT IMAGE: NATURAL PROPORTIONS ──────────────────────── */
.about-img-wrap {
  border-radius: 16px !important;
  overflow: hidden !important;
}
.about-img {
  width: 100% !important;
  height: auto !important;
  min-height: 480px !important;
  object-fit: cover !important;
  object-position: center top !important;
  border-radius: 0 !important;
  filter: brightness(0.88) !important;
}

/* ── SERVICES IMAGE: NATURAL ───────────────────────────────── */
.services-img-wrap {
  border-radius: 16px !important;
  overflow: hidden !important;
}
.services-img {
  width: 100% !important;
  height: 380px !important;
  object-fit: cover !important;
  object-position: center 20% !important;
  border-radius: 0 !important;
  filter: brightness(0.85) !important;
}

/* ── CTA IMAGE: NO HARD BOX ────────────────────────────────── */
.cta-img {
  border-radius: 16px !important;
  width: 100% !important;
  height: 480px !important;
  object-fit: cover !important;
  object-position: center top !important;
}

/* ── GRAIN: REMOVE (LESS IS MORE) ──────────────────────────── */
.img-grain { display: none !important; }

/* ── MOBILE: HERO FULL WIDTH IMAGE ────────────────────────── */
@media (max-width: 900px) {
  .hero {
    grid-template-columns: 1fr !important;
    padding-left: 5% !important;
    padding-right: 5% !important;
    min-height: auto !important;
  }
  .hero-left {
    padding-top: 110px !important;
    padding-bottom: 50px !important;
    padding-right: 0 !important;
    order: 1 !important;
  }
  .hero-right {
    order: -1 !important;
    min-height: 55vw !important;
    width: calc(100% + 10%) !important;
    margin-left: -5% !important;
    margin-right: -5% !important;
  }
  .hero-img-glow-wrap {
    position: relative !important;
    height: 55vw !important;
  }
  .hero-img {
    height: 55vw !important;
  }
  .hero-card, .hero-card2 {
    display: none !important;
  }
}
@media (max-width: 768px) {
  .hero-right {
    min-height: 280px !important;
  }
  .hero-img-glow-wrap {
    height: 280px !important;
  }
  .hero-img {
    height: 280px !important;
  }
  .about-img {
    min-height: 300px !important;
  }
  /* Global: no horizontal overflow */
  body, section, .hero, .badges-section, .promise-section {
    overflow-x: hidden !important;
  }
  * {
    max-width: 100% !important;
    box-sizing: border-box !important;
  }
  img {
    max-width: 100% !important;
    height: auto !important;
  }
  /* about-img uses aspect-ratio: 3/4 – handled in mobile opt block */
}

/* ════════════════════════════════════════════════════════════════
   MOBILE OPTIMIZATION – iPhone Portrait
   Full immersive experience
════════════════════════════════════════════════════════════════ */

@media (max-width: 768px) {

  /* ── GLOBAL ─────────────────────────────────────────── */
  html { overflow-x: hidden; }
  body {
    overflow-x: hidden;
    -webkit-tap-highlight-color: transparent;
  }
  * { -webkit-tap-highlight-color: transparent; }

  /* ── NAV: 56px ──────────────────────────────────────── */
  nav {
    height: 56px !important;
    min-height: 56px !important;
  }
  nav .nav-logo {
    font-size: 1rem !important;
  }

  /* ── HERO: OVERLAY — FOTO ALS HINTERGRUND ───────────── */
  .hero {
    display: block !important;
    position: relative !important;
    min-height: 100svh !important;
    padding: 0 !important;
    overflow: hidden !important;
  }
  /* Foto füllt gesamten Hero-Bereich als Hintergrund */
  .hero-right {
    position: absolute !important;
    inset: 0 !important;
    width: 100% !important;
    height: 100% !important;
    min-height: unset !important;
    margin: 0 !important;
    z-index: 0 !important;
    display: block !important;
    overflow: hidden !important;
  }
  .hero-img-glow-wrap {
    position: absolute !important;
    inset: 0 !important;
    height: 100% !important;
    border-radius: 0 !important;
    animation: none !important;
  }
  /* Semi-transparentes Gradient-Overlay – Bild scheint durch */
  .hero-img-glow-wrap::after {
    content: '' !important;
    position: absolute !important;
    inset: 0 !important;
    background: linear-gradient(
      to bottom,
      rgba(17,24,39,0.55) 0%,
      rgba(17,24,39,0.12) 45%,
      rgba(17,24,39,0.50) 100%
    ) !important;
    z-index: 1 !important;
    pointer-events: none !important;
  }
  .hero-img {
    width: 100% !important;
    height: 100% !important;
    border-radius: 0 !important;
    object-fit: cover !important;
    object-position: center 12% !important;
  }
  /* Text liegt über dem Overlay, oben positioniert */
  .hero-left {
    position: relative !important;
    z-index: 2 !important;
    min-height: 100svh !important;
    display: flex !important;
    flex-direction: column !important;
    justify-content: flex-end !important;
    padding: 56px 6% 32px !important;
    box-sizing: border-box !important;
    width: 100% !important;
    max-width: 100% !important;
    overflow: hidden !important;
    color: white !important;
    background: transparent !important;
    text-align: left !important;
  }
  /* Typografie auf dunklem Hintergrund */
  .hero h1 {
    font-size: clamp(1.7rem, 7vw, 2.4rem) !important;
    color: white !important;
    text-align: left !important;
    margin-bottom: 0.6rem !important;
  }
  .hero h1 em { color: #a3e635 !important; }
  .hero-sub {
    font-size: 0.88rem !important;
    color: rgba(255,255,255,0.7) !important;
    opacity: 1 !important;
    max-width: 100% !important;
    text-align: left !important;
    margin-bottom: 1.2rem !important;
  }
  .hero-badge {
    background: rgba(132,204,22,0.12) !important;
    border-color: rgba(132,204,22,0.3) !important;
    color: #a3e635 !important;
    font-size: 0.68rem !important;
    margin-bottom: 0.8rem !important;
  }
  .hero-badge::before { background: #a3e635 !important; }
  .hero-underline { margin-bottom: 0.5rem !important; background: linear-gradient(90deg, rgba(163,230,53,0.7), transparent) !important; }
  .hero-stats { border-top-color: rgba(255,255,255,0.12) !important; }
  .hero-stat strong { color: white !important; }
  .hero-stat span { color: rgba(255,255,255,0.45) !important; }
  .hero-micro-trust {
    font-size: 0.73rem !important;
    color: rgba(255,255,255,0.5) !important;
    opacity: 1 !important;
    justify-content: center !important;
    gap: 0.5rem !important;
    margin-top: 0.5rem !important;
  }
  /* CTA Button: volle Breite, gut klickbar */
  .hero-actions {
    flex-direction: column !important;
    align-items: stretch !important;
    gap: 0.6rem !important;
    margin-bottom: 0.5rem !important;
  }
  .hero .btn-primary {
    width: 100% !important;
    padding: 0.95rem 1rem !important;
    font-size: 0.95rem !important;
    border-radius: 14px !important;
    justify-content: center !important;
    min-height: 50px !important;
  }
  .hero-scroll-indicator { color: rgba(255,255,255,0.4) !important; }
  /* Canvas & Floating-Cards deaktivieren */
  #hero-canvas { display: none !important; }
  .hero-card, .hero-card2 { display: none !important; }
  /* Available badge ausblenden (entfernt) */
  .available-badge { display: none !important; }

  /* ── TRUST BAR: HORIZONTAL SCROLL STRIP ─────────────── */
  .social-proof-bar {
    overflow: hidden !important;
    padding: 0 !important;
  }
  .social-proof-inner {
    display: flex !important;
    overflow-x: auto !important;
    scroll-snap-type: x mandatory !important;
    -webkit-overflow-scrolling: touch !important;
    scrollbar-width: none !important;
    height: auto !important;
    padding: 0.9rem 0 !important;
    gap: 0 !important;
    grid-template-columns: unset !important;
  }
  .social-proof-inner::-webkit-scrollbar { display: none; }
  .sp-item {
    min-width: 66vw !important;
    flex-shrink: 0 !important;
    scroll-snap-align: center !important;
    border-right: none !important;
    border-bottom: none !important;
    justify-content: center !important;
    padding: 0.75rem 1.25rem !important;
  }

  /* ── ÜBER MICH: STACKED + 2×2 STATS ─────────────────── */
  .about-grid {
    grid-template-columns: 1fr !important;
    gap: 2rem !important;
  }
  .about-img-wrap { order: -1 !important; }
  .about-img {
    height: auto !important;
    min-height: unset !important;
    aspect-ratio: 3/4 !important;
    object-position: center 15% !important;
  }
  .about-stats-glass {
    display: grid !important;
    grid-template-columns: 1fr 1fr !important;
    gap: 0.75rem !important;
  }
  .about-stat-card {
    min-width: unset !important;
    flex: unset !important;
  }

  /* ── SERVICES: 1 COLUMN ──────────────────────────────── */
  .services-intro {
    grid-template-columns: 1fr !important;
    gap: 1.5rem !important;
  }
  .services-img { height: auto !important; aspect-ratio: 3/4 !important; }
  .services-grid {
    grid-template-columns: 1fr !important;
    gap: 0.75rem !important;
  }
  .service-card {
    flex-direction: row !important;
    align-items: center !important;
    padding: 1.1rem 1.25rem !important;
    gap: 1rem !important;
  }
  .service-card:active {
    transform: scale(0.97) !important;
    transition: transform 0.1s ease !important;
  }
  .service-card:hover { transform: none !important; }
  .service-card::before { display: none !important; }

  /* ── REVIEWS: SWIPE SLIDER ───────────────────────────── */
  .reviews-grid {
    display: flex !important;
    overflow-x: scroll !important;
    scroll-snap-type: x mandatory !important;
    -webkit-overflow-scrolling: touch !important;
    scrollbar-width: none !important;
    gap: 1rem !important;
    margin-left: -5% !important;
    margin-right: -5% !important;
    padding-left: 5% !important;
    padding-right: 5% !important;
    padding-bottom: 0.5rem !important;
    grid-template-columns: unset !important;
  }
  .reviews-grid::-webkit-scrollbar { display: none; }
  .review-card {
    min-width: 84vw !important;
    scroll-snap-align: center !important;
    flex-shrink: 0 !important;
  }
  .reviews-dots { display: flex !important; }

  /* ── CTA + CALENDLY: FULL WIDTH ──────────────────────── */
  .cta-section { padding: 4rem 5% 2rem !important; }
  .cta-inner {
    grid-template-columns: 1fr !important;
    gap: 2rem !important;
  }
  .cta-img {
    height: auto !important;
    min-height: unset !important;
    aspect-ratio: 3/4 !important;
    border-radius: 16px !important;
  }
  .calendly-inline-widget {
    height: 580px !important;
    min-width: 100% !important;
  }
  .calendly-wrapper {
    margin: 1.5rem 0 0 !important;
    border-radius: 12px !important;
    overflow: hidden !important;
    width: 100% !important;
  }

  /* ── PROMISE SECTION ─────────────────────────────────── */
  .promise-section { padding: 4rem 5% !important; }
  .promise-text { font-size: 1.1rem !important; line-height: 1.75 !important; }

  /* ── LOCATIONS + WHY ─────────────────────────────────── */
  .locations-grid { grid-template-columns: 1fr !important; }
  .why-grid { grid-template-columns: 1fr !important; }

  /* ── STATS ROW ───────────────────────────────────────── */
  .stats-inner { grid-template-columns: repeat(2, 1fr) !important; }

  /* ── FOOTER: SAFE AREA ───────────────────────────────── */
  footer { padding-bottom: calc(5.5rem + env(safe-area-inset-bottom)) !important; }
  .footer-grid { grid-template-columns: 1fr !important; }

  /* ── STICKY CTA: EDGE-TO-EDGE + SAFE AREA ───────────── */
  #mobile-cta-bar {
    bottom: 0 !important;
    left: 0 !important;
    right: 0 !important;
    border-radius: 0 !important;
    box-shadow: 0 -4px 30px rgba(0,0,0,0.4) !important;
  }
  .mobile-cta-inner {
    border-radius: 0 !important;
    border: none !important;
    border-top: 1px solid rgba(132,204,22,0.2) !important;
    background: rgba(17,24,39,0.93) !important;
    backdrop-filter: blur(24px) !important;
    -webkit-backdrop-filter: blur(24px) !important;
    padding: 14px 20px calc(14px + env(safe-area-inset-bottom)) !important;
  }
  .mobile-cta-btn {
    min-height: 44px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    padding: 0.6rem 1.25rem !important;
  }

  /* ── STICKY BAR HIDE WHEN CALENDLY VISIBLE ───────────── */
  #mobile-cta-bar.calendly-visible {
    opacity: 0 !important;
    pointer-events: none !important;
    transform: translateY(100%) !important;
  }

  /* ── GENERAL BUTTONS: MIN 52PX HEIGHT ────────────────── */
  .btn-primary, .btn-outline { min-height: 52px !important; }

  /* ── TAP TARGETS: MIN 44PX ───────────────────────────── */
  .hamburger { min-width: 44px !important; min-height: 44px !important; }
  .faq-question { min-height: 52px !important; }

  /* ── SECTIONS: CONSISTENT PADDING ───────────────────── */
  section { padding: 4rem 5% !important; }

  /* ── BACK-TO-TOP: SAFE AREA ──────────────────────────── */
  #back-to-top { bottom: calc(90px + env(safe-area-inset-bottom)) !important; }

  /* ── WHATSAPP: SAFE AREA ─────────────────────────────── */
  #whatsapp-btn { bottom: calc(90px + env(safe-area-inset-bottom)) !important; }

  /* ── SERVICE CARDS V2: MOBILE ────────────────────────── */
  .services-grid-v2 {
    grid-template-columns: 1fr !important;
    gap: 0.75rem !important;
  }
  .service-card-v2 {
    flex-direction: row !important;
    align-items: flex-start !important;
    padding: 1rem 1.1rem !important;
    gap: 0.85rem !important;
  }
  .service-card-v2 .sc2-body h4 { font-size: 0.85rem !important; }
  .service-card-v2 .sc2-body p { font-size: 0.74rem !important; }
  .sc2-icon {
    width: 40px !important;
    height: 40px !important;
    flex-shrink: 0 !important;
  }
  .service-card-featured {
    flex-direction: column !important;
  }
  .sc2-cta-btn { width: 100% !important; }

  /* ── ETF CALCULATOR: MOBILE ──────────────────────────── */
  .etf-section { padding: 4rem 5% !important; }
  .etf-calculator {
    grid-template-columns: 1fr !important;
    gap: 1.5rem !important;
  }
  .etf-chart-wrap { min-height: 260px !important; padding: 1rem !important; }
  #etf-canvas { height: 200px !important; }

  /* ── CALCULATOR SECTIONS: MOBILE ────────────────────────── */
  .calc-section { padding: 4rem 5% !important; }
  .calc-body.two-col { grid-template-columns: 1fr !important; gap: 1.5rem !important; }
  .radar-body { grid-template-columns: 1fr !important; gap: 1.5rem !important; }
  #radar-canvas { height: 240px !important; }
  .bu-bars { height: 140px !important; }
  .rn-bars { height: 120px !important; }
  .pkv-cards { grid-template-columns: 1fr 1fr !important; }
  .rn-gap-amount { font-size: 2rem !important; }
  .calc-range { min-height: 44px !important; }
}

/* ═══════════════════════════════════════════════════════════════
   SERVICE CARDS V2
═══════════════════════════════════════════════════════════════ */
.services-grid-v2 {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1rem;
  margin-top: 2rem;
}
.service-card-v2 {
  position: relative;
  background: white;
  border-radius: 18px;
  padding: 1.4rem;
  text-decoration: none;
  color: var(--dark);
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
  box-shadow: 0 2px 16px rgba(0,0,0,0.05);
  border: 1px solid rgba(0,0,0,0.06);
  transition: box-shadow 0.25s, transform 0.25s;
  overflow: hidden;
}
.service-card-v2:hover {
  box-shadow: 0 12px 40px rgba(0,0,0,0.12);
  transform: translateY(-4px);
}
.sc2-icon {
  width: 46px; height: 46px;
  background: var(--light);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  color: var(--dark);
  flex-shrink: 0;
}
.sc2-icon-featured { background: rgba(132,204,22,0.18); color: #4d7c0f; }
.sc2-body { flex: 1; }
.sc2-body h4 { font-weight: 700; font-size: 0.9rem; margin-bottom: 0.35rem; line-height: 1.3; }
.sc2-body p { font-size: 0.77rem; opacity: 0.52; line-height: 1.55; margin-bottom: 0.65rem; }
.sc2-tags { display: flex; flex-wrap: wrap; gap: 0.3rem; }
.sc2-tags span {
  font-size: 0.66rem; font-weight: 600;
  background: var(--light); color: var(--dark); opacity: 0.6;
  padding: 2px 7px; border-radius: 100px; white-space: nowrap;
}
.sc2-tags-light span { background: rgba(132,204,22,0.14); color: #4d7c0f; opacity: 1; }
.sc2-arrow {
  font-size: 1rem; opacity: 0.2; align-self: flex-end;
  transition: opacity 0.2s, transform 0.2s;
}
.service-card-v2:hover .sc2-arrow { opacity: 1; transform: translateX(4px); }

/* Featured card */
.service-card-featured {
  background: linear-gradient(145deg, #0f1d08 0%, #1a350a 100%);
  color: white;
  border: 1px solid rgba(132,204,22,0.22);
}
.service-card-featured .sc2-body h4 { color: white; }
.service-card-featured .sc2-body p { color: rgba(255,255,255,0.6); opacity: 1; }
.service-card-featured:hover {
  box-shadow: 0 16px 48px rgba(132,204,22,0.28);
  transform: translateY(-4px);
}
.sc2-badge-featured {
  position: absolute; top: 0.8rem; right: 0.8rem;
  background: var(--green); color: var(--dark);
  font-size: 0.62rem; font-weight: 800; text-transform: uppercase;
  letter-spacing: 0.07em; padding: 2px 8px; border-radius: 100px;
}
.sc2-cta-btn {
  margin-top: auto;
  background: var(--green); color: var(--dark);
  font-size: 0.8rem; font-weight: 700;
  padding: 0.55rem 1rem; border-radius: 10px;
  display: inline-block; text-align: center;
  transition: background 0.2s;
}
.service-card-featured:hover .sc2-cta-btn { background: #a3e635; }

@media (max-width: 900px) {
  .services-grid-v2 { grid-template-columns: repeat(2, 1fr); }
}

/* ═══════════════════════════════════════════════════════════════
   ETF RENDITERECHNER
═══════════════════════════════════════════════════════════════ */
.etf-section { background: var(--light); padding: 6rem 6%; }
.etf-inner { max-width: 1200px; margin: 0 auto; }
.etf-header { text-align: center; margin-bottom: 3rem; }
.etf-header .section-sub { max-width: 560px; margin: 0 auto; }

.etf-calculator {
  display: grid;
  grid-template-columns: 360px 1fr;
  gap: 2.5rem;
  align-items: start;
}
.etf-inputs { display: flex; flex-direction: column; gap: 1.5rem; }
.etf-slider-group { display: flex; flex-direction: column; gap: 0.5rem; }
.etf-slider-label {
  display: flex; justify-content: space-between; align-items: center;
  font-size: 0.88rem;
}
.etf-slider-label span { opacity: 0.58; font-weight: 500; }
.etf-slider-label strong { font-weight: 700; color: var(--dark); }

.etf-range {
  -webkit-appearance: none; appearance: none;
  width: 100%; height: 4px;
  border-radius: 2px; background: #e2e8f0;
  outline: none; cursor: pointer; accent-color: #84cc16;
}
.etf-range::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 20px; height: 20px;
  border-radius: 50%; background: #84cc16;
  cursor: pointer; box-shadow: 0 2px 8px rgba(132,204,22,0.45);
  transition: transform 0.15s;
}
.etf-range::-webkit-slider-thumb:hover { transform: scale(1.2); }
.etf-range::-moz-range-thumb {
  width: 20px; height: 20px; border-radius: 50%;
  background: #84cc16; border: none; cursor: pointer;
}

.etf-result-card {
  background: white; border-radius: 18px; padding: 1.4rem;
  box-shadow: 0 4px 24px rgba(0,0,0,0.07);
  display: flex; flex-direction: column; gap: 0.7rem;
}
.etf-result-row { display: flex; justify-content: space-between; align-items: center; }
.etf-result-label { font-size: 0.82rem; opacity: 0.52; font-weight: 500; }
.etf-result-invested { font-size: 0.88rem; font-weight: 600; }
.etf-result-divider { height: 1px; background: rgba(0,0,0,0.07); }
.etf-result-row-main .etf-result-label { font-size: 0.9rem; font-weight: 600; opacity: 0.75; }
.etf-result-value { font-size: 1.5rem; font-weight: 800; color: var(--dark); letter-spacing: -0.02em; }
.etf-result-gain { font-size: 0.95rem; font-weight: 700; color: #16a34a; }
.etf-result-pct { font-size: 0.88rem; font-weight: 700; color: #16a34a; }

.etf-chart-wrap {
  position: relative; background: white;
  border-radius: 18px; padding: 1.4rem;
  box-shadow: 0 4px 24px rgba(0,0,0,0.07);
  min-height: 320px;
}
#etf-canvas { width: 100%; height: 260px; display: block; }
.etf-tooltip {
  position: absolute;
  background: var(--dark); color: white;
  font-size: 0.76rem; font-weight: 600;
  padding: 5px 11px; border-radius: 8px;
  pointer-events: none; opacity: 0;
  transition: opacity 0.15s;
  white-space: nowrap; z-index: 10;
  transform: translateX(-50%);
}

.etf-disclaimer {
  margin: 2rem auto 0;
  font-size: 0.73rem; opacity: 0.38; line-height: 1.65;
  text-align: center; max-width: 680px;
}
.etf-cta {
  margin-top: 2.5rem;
  display: flex; flex-direction: column; align-items: center; gap: 0.65rem;
}
.etf-cta-sub { font-size: 0.82rem; opacity: 0.48; }

@media (max-width: 900px) {
  .etf-calculator { grid-template-columns: 1fr; }
}

/* ═══════════════════════════════════════════════════════════════
   INTERACTIVE CALCULATORS – Shared Base
═══════════════════════════════════════════════════════════════ */
.calc-section { padding: 6rem 6%; }
.calc-section:nth-child(even) { background: var(--light); }
.bu-section   { background: #fff; }
.pkv-section  { background: var(--light); }
.renten-section { background: #fff; }
.radar-section  { background: var(--light); }

.calc-inner { max-width: 1100px; margin: 0 auto; }
.calc-header { text-align: center; margin-bottom: 2.5rem; }
.calc-header .section-sub { max-width: 540px; margin: 0 auto; }

.calc-body.two-col {
  display: grid;
  grid-template-columns: 380px 1fr;
  gap: 2.5rem;
  align-items: start;
}

/* Shared slider + inputs */
.calc-slider-group { display: flex; flex-direction: column; gap: 0.5rem; }
.calc-slider-label { display: flex; justify-content: space-between; align-items: center; font-size: 0.88rem; }
.calc-slider-label span { opacity: 0.58; font-weight: 500; }
.calc-slider-label strong { font-weight: 700; }
.calc-field-label { font-size: 0.88rem; opacity: 0.58; font-weight: 500; }
.calc-inputs { display: flex; flex-direction: column; gap: 1.4rem; }
.calc-range {
  -webkit-appearance: none; appearance: none;
  width: 100%; height: 4px; border-radius: 2px;
  background: #e2e8f0; outline: none; cursor: pointer; accent-color: #84cc16;
}
.calc-range::-webkit-slider-thumb {
  -webkit-appearance: none; width: 22px; height: 22px;
  border-radius: 50%; background: #84cc16; cursor: pointer;
  box-shadow: 0 2px 8px rgba(132,204,22,0.45); transition: transform 0.15s;
}
.calc-range::-webkit-slider-thumb:hover { transform: scale(1.2); }
.calc-range::-moz-range-thumb {
  width: 22px; height: 22px; border-radius: 50%;
  background: #84cc16; border: none; cursor: pointer;
}
.calc-select {
  width: 100%; padding: 0.65rem 0.9rem; border-radius: 10px;
  border: 1.5px solid #e2e8f0; font-size: 0.9rem; font-family: inherit;
  background: white; cursor: pointer; outline: none;
  transition: border-color 0.2s;
}
.calc-select:focus { border-color: #84cc16; }

.calc-divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(132,204,22,0.5), transparent);
  margin: 2.5rem 0 1.5rem;
}
.calc-disclaimer { font-size: 0.73rem; opacity: 0.38; line-height: 1.65; text-align: center; max-width: 680px; margin: 0 auto 0; }
.calc-cta { margin-top: 2rem; display: flex; flex-direction: column; align-items: center; gap: 0.6rem; }
.calc-cta-sub { font-size: 0.82rem; opacity: 0.48; }

/* shared color utilities */
.bu-val-red    { color: #ef4444 !important; }
.bu-val-orange { color: #f97316 !important; }
.bu-val-green  { color: #84cc16 !important; }

/* ── BU-RECHNER ─────────────────────────────────────────────── */
.bu-shock-row {
  display: flex; flex-direction: column; align-items: center;
  gap: 0.75rem; margin-bottom: 2.5rem;
}
.bu-silhouettes { display: flex; gap: 0.5rem; }
.bu-person { color: #94a3b8; transition: color 0.4s; }
.bu-person-danger { color: #ef4444; }
.bu-pct-num { font-size: 1.5rem; font-weight: 800; color: #ef4444; }
.bu-shock-label { font-size: 0.9rem; opacity: 0.65; text-align: center; }

.bu-results { display: flex; flex-direction: column; gap: 1.5rem; }
.bu-bars { display: flex; gap: 1.5rem; align-items: flex-end; height: 180px; }
.bu-bar-col { display: flex; flex-direction: column; align-items: center; gap: 0.4rem; flex: 1; }
.bu-bar-track {
  width: 100%; flex: 1; background: rgba(0,0,0,0.05);
  border-radius: 8px 8px 0 0; position: relative; min-height: 160px;
  display: flex; align-items: flex-end; overflow: hidden;
}
.bu-bar {
  width: 100%; border-radius: 6px 6px 0 0;
  transition: height 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.bu-bar-green { background: linear-gradient(to top, #84cc16, #a3e635); }
.bu-bar-red   { background: linear-gradient(to top, #ef4444, #f87171); }
.bu-bar-orange{ background: linear-gradient(to top, #f97316, #fb923c); }
.bu-bar-val   { font-size: 0.82rem; font-weight: 700; text-align: center; }
.bu-bar-lbl   { font-size: 0.7rem; opacity: 0.55; text-align: center; }

.bu-shock-result { background: rgba(239,68,68,0.06); border-radius: 12px; padding: 1rem 1.2rem; border-left: 3px solid #ef4444; }
.bu-shock-result p { font-size: 0.9rem; font-weight: 500; margin-bottom: 0.25rem; }
.bu-shock-10y { font-size: 0.8rem; opacity: 0.6; }

.bu-solution-tabs { display: flex; gap: 0.5rem; }
.bu-tab {
  flex: 1; padding: 0.55rem; border-radius: 10px; border: 1.5px solid #e2e8f0;
  font-size: 0.82rem; font-weight: 600; cursor: pointer; background: white;
  transition: all 0.2s; font-family: inherit;
}
.bu-tab.active { background: var(--dark); color: white; border-color: var(--dark); }
.bu-fix-panel { background: rgba(132,204,22,0.08); border-radius: 12px; padding: 1rem 1.2rem; border-left: 3px solid #84cc16; font-size: 0.9rem; }

/* ── PKV-RECHNER ────────────────────────────────────────────── */
.pkv-toggle-row { display: flex; gap: 0; border-radius: 12px; overflow: hidden; border: 1.5px solid #e2e8f0; }
.pkv-toggle {
  flex: 1; padding: 0.6rem; font-size: 0.85rem; font-weight: 600;
  cursor: pointer; background: white; border: none; font-family: inherit; transition: all 0.2s;
}
.pkv-toggle.active { background: var(--dark); color: white; }

.pkv-results { display: flex; flex-direction: column; gap: 1.25rem; }
.pkv-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.pkv-card {
  border-radius: 18px; padding: 1.4rem; text-align: center;
  box-shadow: 0 4px 20px rgba(0,0,0,0.07);
}
.pkv-card-gkv { background: white; border: 1.5px solid #e2e8f0; }
.pkv-card-pkv  { background: linear-gradient(135deg, #0f1d08, #1a3209); color: white; }
.pkv-card-label { font-size: 0.78rem; opacity: 0.6; font-weight: 600; text-transform: uppercase; letter-spacing: 0.05em; margin-bottom: 0.4rem; }
.pkv-card-amount { font-size: 1.8rem; font-weight: 800; letter-spacing: -0.02em; }
.pkv-card-pkv .pkv-card-amount { color: #a3e635; }
.pkv-card-sub { font-size: 0.78rem; opacity: 0.55; margin-top: 0.2rem; }

.pkv-diff { text-align: center; font-size: 0.9rem; font-weight: 500; opacity: 0.75; }
.pkv-family-toggle { display: flex; justify-content: space-between; align-items: center; font-size: 0.88rem; opacity: 0.7; }
.pkv-switch { position: relative; display: inline-block; width: 44px; height: 24px; }
.pkv-switch input { opacity: 0; width: 0; height: 0; }
.pkv-switch-track {
  position: absolute; inset: 0; background: #e2e8f0; border-radius: 12px; cursor: pointer;
  transition: background 0.2s;
}
.pkv-switch-track::after {
  content: ''; position: absolute; top: 2px; left: 2px;
  width: 20px; height: 20px; background: white; border-radius: 50%;
  transition: transform 0.2s; box-shadow: 0 1px 4px rgba(0,0,0,0.2);
}
.pkv-switch input:checked + .pkv-switch-track { background: #84cc16; }
.pkv-switch input:checked + .pkv-switch-track::after { transform: translateX(20px); }

.pkv-zahn-toggle {
  width: 100%; padding: 0.75rem 1rem; border-radius: 12px; border: 1.5px solid #e2e8f0;
  background: white; font-size: 0.85rem; font-weight: 600; text-align: left;
  cursor: pointer; font-family: inherit; transition: border-color 0.2s;
  display: flex; justify-content: space-between; align-items: center;
}
.pkv-zahn-toggle:hover { border-color: #84cc16; }
.pkv-zahn-content { display: flex; flex-direction: column; gap: 0.75rem; padding: 1rem; background: white; border-radius: 0 0 12px 12px; border: 1.5px solid #e2e8f0; border-top: none; }
.zahn-scenario { display: flex; flex-direction: column; gap: 0.3rem; }
.zahn-scenario-name { font-size: 0.82rem; font-weight: 700; }
.zahn-bars { display: flex; flex-direction: column; gap: 0.25rem; }
.zahn-bar-row { display: flex; align-items: center; gap: 0.5rem; font-size: 0.75rem; }
.zahn-bar-fill { height: 12px; border-radius: 3px; transition: width 0.5s ease; min-width: 4px; }
.zahn-bar-gkv   { background: #94a3b8; }
.zahn-bar-self  { background: #ef4444; }
.zahn-bar-zusatz{ background: #84cc16; }
.zahn-bar-label { opacity: 0.6; white-space: nowrap; }

/* ── RENTEN-RECHNER ─────────────────────────────────────────── */
.rn-tabs { display: flex; gap: 0.5rem; margin-top: 0.5rem; }
.rn-tab {
  flex: 1; padding: 0.55rem; border-radius: 10px; border: 1.5px solid #e2e8f0;
  font-size: 0.82rem; font-weight: 600; cursor: pointer; background: white;
  transition: all 0.2s; font-family: inherit;
}
.rn-tab.active { background: var(--dark); color: white; border-color: var(--dark); }

.rn-save-panel { background: rgba(132,204,22,0.07); border-radius: 14px; padding: 1.1rem; display: flex; flex-direction: column; gap: 0.75rem; }
.rn-rate-hint { font-size: 0.75rem; opacity: 0.5; }
.rn-close-pct { font-size: 0.88rem; font-weight: 500; }
.rn-progress-wrap { height: 10px; background: #e2e8f0; border-radius: 5px; overflow: hidden; }
.rn-progress-bar { height: 100%; background: #84cc16; border-radius: 5px; transition: width 0.8s cubic-bezier(0.34,1.56,0.64,1); }

.rn-results { display: flex; flex-direction: column; gap: 1.5rem; }
.rn-gap-hero { text-align: center; padding: 1.5rem; background: rgba(249,115,22,0.07); border-radius: 18px; border: 1.5px solid rgba(249,115,22,0.2); }
.rn-gap-label { font-size: 0.8rem; font-weight: 600; opacity: 0.6; text-transform: uppercase; letter-spacing: 0.07em; margin-bottom: 0.3rem; }
.rn-gap-amount { font-size: 2.5rem; font-weight: 900; letter-spacing: -0.03em; }
.rn-gap-sub { font-size: 0.9rem; opacity: 0.55; }
.rn-capital-need { text-align: center; font-size: 0.9rem; opacity: 0.65; }
.rn-capital-need strong { color: var(--dark); opacity: 1; font-size: 1.1rem; }

.rn-bars { display: flex; gap: 1.2rem; align-items: flex-end; height: 160px; }
.rn-bar-col { display: flex; flex-direction: column; align-items: center; gap: 0.4rem; flex: 1; }
.rn-bar-wrap { width: 100%; flex: 1; background: rgba(0,0,0,0.05); border-radius: 8px 8px 0 0; min-height: 140px; display: flex; align-items: flex-end; overflow: hidden; }
.rn-bar { width: 100%; border-radius: 6px 6px 0 0; transition: height 0.7s cubic-bezier(0.34,1.56,0.64,1); }
.rn-bar-grey  { background: linear-gradient(to top, #94a3b8, #cbd5e1); }
.rn-bar-red   { background: linear-gradient(to top, #f97316, #fb923c); }
.rn-bar-green { background: linear-gradient(to top, #84cc16, #a3e635); }
.rn-bar-lbl { font-size: 0.7rem; opacity: 0.55; text-align: center; line-height: 1.4; }
.rn-bar-lbl strong { display: block; font-size: 0.82rem; opacity: 1; }

/* ── RADAR ──────────────────────────────────────────────────── */
.radar-branch-pills { display: flex; flex-wrap: wrap; gap: 0.6rem; justify-content: center; margin-bottom: 2.5rem; }
.radar-pill {
  padding: 0.55rem 1.1rem; border-radius: 100px;
  border: 1.5px solid #e2e8f0; background: white;
  font-size: 0.85rem; font-weight: 600; cursor: pointer;
  transition: all 0.2s; font-family: inherit;
}
.radar-pill.active { background: var(--dark); color: white; border-color: var(--dark); }
.radar-pill:hover:not(.active) { border-color: #84cc16; }

.radar-body { display: grid; grid-template-columns: 1fr 380px; gap: 2.5rem; align-items: start; }
.radar-chart-wrap { position: relative; background: white; border-radius: 24px; padding: 1.5rem; box-shadow: 0 4px 24px rgba(0,0,0,0.07); }
#radar-canvas { width: 100%; height: 340px; display: block; }
.radar-tooltip {
  position: absolute; background: var(--dark); color: white;
  font-size: 0.76rem; font-weight: 600; padding: 6px 12px; border-radius: 8px;
  pointer-events: none; opacity: 0; transition: opacity 0.15s;
  white-space: nowrap; z-index: 10; max-width: 200px; white-space: normal;
}

.radar-top3 { display: flex; flex-direction: column; gap: 0.85rem; }
.radar-risk-card {
  background: white; border-radius: 16px; padding: 1.1rem 1.3rem;
  box-shadow: 0 2px 12px rgba(0,0,0,0.06); border-left: 3px solid #ef4444;
  transition: border-color 0.4s;
}
.radar-risk-card.medium { border-left-color: #f97316; }
.radar-risk-card.low    { border-left-color: #84cc16; }
.radar-risk-name { font-size: 0.82rem; font-weight: 700; margin-bottom: 0.2rem; }
.radar-risk-ins  { font-size: 0.74rem; opacity: 0.55; }
.radar-risk-val  { font-size: 0.7rem; font-weight: 700; float: right; margin-top: -1.4rem; }

/* ── RESPONSIVE OVERRIDES ───────────────────────────────────── */
@media (max-width: 900px) {
  .calc-body.two-col { grid-template-columns: 1fr; }
  .radar-body { grid-template-columns: 1fr; }
}

/* ═══════════════════════════════════════════════════════════════
   VIDEO SECTION
═══════════════════════════════════════════════════════════════ */
.video-section {
  background: #111827;
  padding: 5rem 6%;
  text-align: center;
}
.video-inner { max-width: 900px; margin: 0 auto; }
.video-section .section-title { color: #ffffff; }
.video-section .section-label { color: #84cc16; }
.video-placeholder {
  position: relative; width: 100%; aspect-ratio: 16/9;
  background: #1f2937; border-radius: 20px; cursor: pointer;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  border: 2px dashed rgba(132,204,22,0.3);
  transition: border-color 0.3s, transform 0.3s;
  overflow: hidden; margin-top: 2.5rem;
}
.video-placeholder:hover { border-color: #84cc16; transform: scale(1.01); }
.video-play-btn {
  width: 80px; height: 80px; background: white; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 30px rgba(132,204,22,0.4);
  transition: transform 0.2s, box-shadow 0.2s;
}
.video-placeholder:hover .video-play-btn {
  transform: scale(1.1); box-shadow: 0 8px 40px rgba(132,204,22,0.6);
}
.video-overlay-text { color: rgba(255,255,255,0.6); margin-top: 1rem; font-size: 0.85rem; font-weight: 600; letter-spacing: 0.05em; }
.video-lightbox {
  position: fixed; inset: 0; background: rgba(0,0,0,0.9);
  z-index: 9999; display: flex; align-items: center; justify-content: center;
}
.video-lightbox-inner {
  position: relative; width: min(900px, 95vw); aspect-ratio: 16/9;
  background: #000; border-radius: 16px; overflow: hidden;
}
.video-lightbox-close {
  position: absolute; top: 12px; right: 14px; z-index: 10;
  background: rgba(255,255,255,0.1); border: none; color: white;
  font-size: 1.1rem; width: 36px; height: 36px; border-radius: 50%;
  cursor: pointer; display: flex; align-items: center; justify-content: center;
  transition: background 0.2s;
}
.video-lightbox-close:hover { background: rgba(255,255,255,0.25); }

/* ═══════════════════════════════════════════════════════════════
   QUIZ
═══════════════════════════════════════════════════════════════ */
/* ── Quiz-Bridge: visueller Übergang Logos → Quiz ─── */
.quiz-bridge {
  background: linear-gradient(to bottom, #f8fafc 0%, #0e1520 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  height: 56px;
  position: relative;
}
.quiz-bridge-arrow {
  width: 28px;
  height: 28px;
  color: #84cc16;
  animation: quizBridgeBounce 1.8s ease-in-out infinite;
  opacity: 0.85;
}
@keyframes quizBridgeBounce {
  0%, 100% { transform: translateY(-3px); opacity: 0.6; }
  50%       { transform: translateY(3px);  opacity: 1; }
}

.quiz-section {
  background: #111827;
  padding: 5rem 6%;
  position: relative;
  overflow: hidden;
}
/* subtiler Hintergrund-Glow für Tiefenwirkung */
.quiz-section::before {
  content: '';
  position: absolute;
  top: -120px; right: -80px;
  width: 420px; height: 420px;
  background: radial-gradient(circle, rgba(132,204,22,0.08) 0%, transparent 70%);
  pointer-events: none;
}
/* ── Quiz auf dunklem Hintergrund: Farben anpassen ─── */
.quiz-section .section-label { color: #84cc16; }
.quiz-section .section-title { color: white; }
.quiz-section .section-sub { color: rgba(255,255,255,0.55); }
.quiz-section .qv2-start-hint { color: rgba(255,255,255,0.4); }
.quiz-section .quiz-q-title { color: white; }
.quiz-section .quiz-progress-label { color: rgba(255,255,255,0.5); }
.quiz-section .quiz-progress-track { background: rgba(255,255,255,0.12); }

.quiz-inner { max-width: 680px; margin: 0 auto; }
.quiz-header { text-align: center; margin-bottom: 2rem; }
.quiz-progress-wrap {
  display: flex; align-items: center; gap: 1rem;
  margin-bottom: 2.5rem;
}
.quiz-progress-track {
  flex: 1; height: 6px; background: #e2e8f0; border-radius: 3px; overflow: hidden;
}
.quiz-progress-fill {
  height: 100%; background: #84cc16; border-radius: 3px;
  transition: width 0.4s cubic-bezier(0.34,1.56,0.64,1);
}
.quiz-progress-label { font-size: 0.8rem; font-weight: 600; color: #6b7280; white-space: nowrap; }

.quiz-q { display: none; animation: quizFadeIn 0.3s ease; }
.quiz-q.active { display: block; }
@keyframes quizFadeIn {
  from { opacity: 0; transform: translateY(12px); }
  to   { opacity: 1; transform: translateY(0); }
}
.quiz-q-title { font-size: 1.35rem; font-weight: 700; margin-bottom: 1.5rem; color: #1a1a1a; line-height: 1.35; }
.quiz-options { display: flex; flex-direction: column; gap: 0.75rem; }
.quiz-opt {
  width: 100%; padding: 1rem 1.2rem; border-radius: 14px;
  border: 1.5px solid #e2e8f0; background: white;
  font-size: 0.95rem; font-weight: 500; color: #1a1a1a;
  cursor: pointer; text-align: left; display: flex; align-items: center; gap: 0.9rem;
  transition: all 0.2s; font-family: inherit;
}
.quiz-opt:hover { border-color: #84cc16; background: #f0fdf4; transform: translateX(4px); }
.quiz-opt.selected { border-color: #84cc16; background: #f0fdf4; transform: scale(0.97); }
.quiz-opt-letter {
  width: 28px; height: 28px; border-radius: 50%;
  background: #f8f8f6; font-size: 0.75rem; font-weight: 700;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; color: #6b7280;
}
.quiz-opt.selected .quiz-opt-letter { background: #84cc16; color: white; }

/* Result */
.quiz-result {
  text-align: center; padding: 2.5rem; background: #f8f8f6;
  border-radius: 24px; border: 2px solid #84cc16;
  animation: quizFadeIn 0.4s ease;
}
.quiz-result-icon { font-size: 3.5rem; margin-bottom: 0.75rem; }
.quiz-result-type { font-size: 1.7rem; font-weight: 900; color: #84cc16; margin-bottom: 0.75rem; }
.quiz-result-text { font-size: 1rem; color: #6b7280; line-height: 1.65; margin-bottom: 1.5rem; max-width: 480px; margin-left: auto; margin-right: auto; }
.quiz-result-tags { display: flex; flex-wrap: wrap; gap: 0.5rem; justify-content: center; margin-bottom: 2rem; }
.quiz-result-tags span {
  padding: 0.4rem 1rem; border-radius: 100px;
  background: #f0fdf4; color: #65a30d; font-size: 0.82rem; font-weight: 700;
  border: 1.5px solid #84cc16;
}
.quiz-result-cta { display: inline-block; margin-bottom: 1rem; }
.quiz-restart-btn {
  background: none; border: none; color: #6b7280; font-size: 0.85rem;
  cursor: pointer; font-family: inherit; text-decoration: underline;
}

/* ═══════════════════════════════════════════════════════════════
   TIMELINE — ELEGANT DARK
═══════════════════════════════════════════════════════════════ */
/* ── TIMELINE / WERDEGANG (Compact) ── */
.timeline-section {
  background: #111827;
  padding: 0;
}
.timeline-section .ablauf-header {
  padding: 60px 60px 28px;
  text-align: center;
  max-width: 1100px;
  margin: 0 auto;
}
.timeline-section .ablauf-steps {
  position: relative;
  max-width: 600px;
  margin: 0 auto;
  padding: 0 60px 50px;
}
.timeline-section .ablauf-track {
  position: absolute; left: 60px; top: 10px; bottom: 50px;
  width: 2px; background: rgba(162,198,23,.12); border-radius: 2px; z-index: 0;
}
.timeline-section .ablauf-track-fill {
  position: absolute; top: 0; left: 0; width: 100%;
  background: linear-gradient(to bottom, #84cc16, rgba(162,198,23,.3));
  height: 0; border-radius: 2px;
  transition: height .4s cubic-bezier(.22,1,.36,1);
  box-shadow: 0 0 6px rgba(132,204,22,.4);
}
.timeline-section .ablauf-step {
  display: flex; gap: 16px; align-items: flex-start;
  padding: 14px 14px 14px 40px;
  opacity: 0; transform: translateX(-20px);
  transition: opacity .5s ease, transform .5s ease, background .3s, box-shadow .3s;
  border-radius: 12px; margin-bottom: 0; position: relative; z-index: 1;
}
.timeline-section .ablauf-step:nth-child(2) { transition-delay: .06s; }
.timeline-section .ablauf-step:nth-child(3) { transition-delay: .12s; }
.timeline-section .ablauf-step:nth-child(4) { transition-delay: .18s; }
.timeline-section .ablauf-step:nth-child(5) { transition-delay: .24s; }
.timeline-section .ablauf-step.visible { opacity: .55; transform: translateX(0); }
.timeline-section .ablauf-step.active-step {
  opacity: 1 !important; transform: translateX(0) scale(1.02) !important;
  background: rgba(132,204,22,.1);
  box-shadow: inset 3px 0 0 #84cc16, 0 0 20px rgba(132,204,22,.08);
}
.timeline-section .as-step-n {
  font-family: 'Playfair Display', serif; font-size: 1.8rem;
  color: rgba(162,198,23,.4); line-height: 1; font-weight: 700;
  flex-shrink: 0; width: 56px; text-align: right; padding-top: 2px;
  display: inline-block; transition: color .35s, text-shadow .35s, transform .35s;
}
.timeline-section .as-step-n.tl-year-wide { font-size: 1.5rem; }
.timeline-section .as-step-n.tl-year-heute { font-size: 1.4rem; letter-spacing: -0.5px; }
.timeline-section .ablauf-step.active-step .as-step-n {
  color: #a3e635; transform: scale(1.08);
  text-shadow: 0 0 20px rgba(132,204,22,.6), 0 0 40px rgba(132,204,22,.2);
}
@keyframes ablaufPop { 0% { transform: scale(.85); } 50% { transform: scale(1.12); } 100% { transform: scale(1.08); } }
@keyframes numPulse { 0% { transform: scale(1.08); } 40% { transform: scale(1.25); color: #c8f020; } 100% { transform: scale(1.08); color: #a3e635; } }
.timeline-section .as-step-n.pulse { animation: numPulse .4s ease-out forwards; }
.timeline-section .as-content { flex: 1; padding-top: 0; }
.timeline-section .as-title {
  font-family: 'Instrument Sans', sans-serif; font-size: .92rem;
  color: rgba(255,255,255,.55); line-height: 1.3; margin-bottom: 3px;
  font-weight: 600; transition: color .3s;
}
.timeline-section .ablauf-step.active-step .as-title { color: #fff; }
.timeline-section .as-desc {
  font-size: .78rem; color: rgba(255,255,255,.35); line-height: 1.6;
  font-weight: 300; transition: color .3s;
}
.timeline-section .ablauf-step.active-step .as-desc { color: rgba(255,255,255,.65); }

/* Mobile — no effects, clean static layout */
@media (max-width: 768px) {
  .timeline-section .ablauf-steps { padding: 0 20px 30px; }
  .timeline-section .ablauf-track { display: none !important; }
  .timeline-section .ablauf-step {
    padding: 14px 0; gap: 14px;
    opacity: 1 !important; transform: none !important;
    transition: none !important; background: none !important;
    box-shadow: none !important; border-radius: 0;
    border-bottom: 1px solid rgba(255,255,255,.08);
    margin: 0;
  }
  .timeline-section .ablauf-step:last-child { border-bottom: none; }
  .timeline-section .ablauf-step.visible { opacity: 1 !important; }
  .timeline-section .ablauf-step.active-step {
    background: none !important; box-shadow: none !important; transform: none !important;
  }
  .timeline-section .as-step-n {
    font-size: 1.4rem; width: 48px; color: #84cc16 !important;
    text-shadow: none !important; transform: none !important;
  }
  .timeline-section .as-step-n.tl-year-wide { font-size: 1.2rem; }
  .timeline-section .as-step-n.tl-year-heute { font-size: 1.1rem; }
  .timeline-section .as-step-n.pulse { animation: none !important; }
  .timeline-section .ablauf-step.active-step .as-step-n { transform: none !important; animation: none !important; }
  .timeline-section .as-title { font-size: .85rem; color: rgba(255,255,255,.85) !important; }
  .timeline-section .as-desc { font-size: .75rem; color: rgba(255,255,255,.5) !important; }
  .timeline-section .ablauf-step.active-step .as-title { color: rgba(255,255,255,.85) !important; }
  .timeline-section .ablauf-step.active-step .as-desc { color: rgba(255,255,255,.5) !important; }
  .timeline-section .ablauf-header { padding: 32px 20px 18px; }
  .timeline-section.ablauf-section { padding: 20px 0; }
}

/* ═══════════════════════════════════════════════════════════════
   INFLATIONS-RECHNER
═══════════════════════════════════════════════════════════════ */
.infl-section { background: #f8f8f6; }
.infl-body { display: grid; grid-template-columns: 360px 1fr; gap: 2.5rem; align-items: center; }
.infl-inputs { display: flex; flex-direction: column; gap: 1.4rem; }
.infl-fixed-rate { padding: 0.8rem 1rem; background: white; border-radius: 10px; border: 1.5px solid #e2e8f0; }
.infl-rate-label { font-size: 0.8rem; opacity: 0.55; font-weight: 600; display: block; }
.infl-rate-val { font-size: 1.1rem; font-weight: 700; color: #1a1a1a; }
.infl-rate-hint { font-size: 0.72rem; opacity: 0.45; display: block; }

.infl-results { display: flex; flex-direction: column; gap: 1.5rem; }
.infl-compare { display: flex; align-items: center; gap: 1.5rem; }
.infl-today, .infl-future { flex: 1; text-align: center; }
.infl-compare-label { font-size: 0.78rem; opacity: 0.55; font-weight: 600; text-transform: uppercase; letter-spacing: 0.06em; margin-bottom: 0.3rem; }
.infl-compare-amount { font-size: 1.9rem; font-weight: 900; letter-spacing: -0.02em; color: #1a1a1a; }
.infl-future-amt { color: #ef4444; }
.infl-arrow-col { font-size: 1.5rem; opacity: 0.3; flex-shrink: 0; }
.infl-moneybag { font-size: 2.5rem; display: block; margin-top: 0.3rem; animation: inflShrink 4s ease-in-out infinite; transform-origin: bottom center; }
.infl-moneybag-small { animation-delay: 0.5s; }
@keyframes inflShrink {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(0.6); opacity: 0.7; }
}

.infl-loss-bar-wrap { height: 12px; background: #e2e8f0; border-radius: 6px; overflow: hidden; }
.infl-loss-bar-fill { height: 100%; background: linear-gradient(to right, #84cc16, #ef4444); border-radius: 6px; transition: width 0.6s ease; }
.infl-loss-text { text-align: center; font-size: 1rem; font-weight: 600; }

.infl-upsell { text-align: center; margin-top: 2rem; padding: 1.5rem; background: #f0fdf4; border-radius: 16px; border: 1.5px solid #84cc16; }
.infl-upsell-text { font-size: 1.05rem; font-weight: 700; color: #1a1a1a; margin-bottom: 0.5rem; }
.infl-scroll-link { color: #65a30d; font-weight: 600; text-decoration: none; font-size: 0.9rem; }
.infl-scroll-link:hover { text-decoration: underline; }


/* ═══════════════════════════════════════════════════════════════
   SOCIAL PROOF TOAST
═══════════════════════════════════════════════════════════════ */
.sp-toast {
  position: fixed; bottom: 100px; left: 20px; z-index: 8888;
  width: 280px; background: white; border-radius: 12px;
  box-shadow: 0 8px 30px rgba(0,0,0,0.12);
  padding: 14px 18px; transform: translateX(-120%);
  transition: transform 0.4s cubic-bezier(0.34,1.56,0.64,1);
}
.sp-toast.visible { transform: translateX(0); }
.sp-toast-close {
  position: absolute; top: 8px; right: 10px;
  background: none; border: none; font-size: 0.7rem;
  color: #6b7280; cursor: pointer; padding: 2px 4px; line-height: 1;
}
.sp-toast-body { display: flex; gap: 0.75rem; align-items: flex-start; }
.sp-toast-avatar {
  width: 34px; height: 34px; border-radius: 50%;
  background: #84cc16; color: white; font-size: 0.85rem; font-weight: 700;
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.sp-toast-text { display: flex; flex-direction: column; gap: 0.2rem; }
.sp-toast-text strong { font-size: 0.82rem; color: #1a1a1a; line-height: 1.35; }
#sp-toast-time { font-size: 0.72rem; color: #6b7280; }

/* ═══════════════════════════════════════════════════════════════
   COOKIE BANNER – REDESIGN
═══════════════════════════════════════════════════════════════ */
#cookie-banner {
  background: #1a1a1a !important;
  border-radius: 16px 16px 0 0 !important;
}
.cookie-text { color: rgba(255,255,255,0.85) !important; }
.cookie-accept {
  background: #84cc16 !important; color: white !important;
  border: none !important;
}
.cookie-decline {
  background: transparent !important; color: white !important;
  border: 1.5px solid rgba(255,255,255,0.4) !important;
}

/* ═══════════════════════════════════════════════════════════════
   LEGAL MODALS
═══════════════════════════════════════════════════════════════ */
.legal-modal-overlay {
  position: fixed; inset: 0; background: rgba(0,0,0,0.75);
  z-index: 9990; display: flex; align-items: center; justify-content: center;
  padding: 1.5rem;
}
.legal-modal {
  background: white; border-radius: 20px;
  max-width: 680px; width: 100%; max-height: 80vh; overflow-y: scroll;
  padding: 40px 48px; position: relative;
  box-shadow: 0 20px 60px rgba(0,0,0,0.3);
}
.legal-modal h2 {
  font-size: 1.5rem; font-weight: 800; margin-bottom: 1.5rem;
  color: #1a1a1a; padding-right: 2rem;
}
.legal-modal h3 {
  font-size: 11px; font-weight: 700; color: #84cc16;
  text-transform: uppercase; letter-spacing: 2px;
  margin: 24px 0 8px;
}
.legal-modal p {
  font-size: 13px; line-height: 1.8; color: #6b7280;
  margin-bottom: 0;
}
.legal-modal a { color: #84cc16; text-decoration: none; }
.legal-modal a:hover { text-decoration: underline; }
.legal-modal-close {
  position: absolute; top: 16px; right: 16px;
  width: 34px; height: 34px; border-radius: 50%;
  background: #f8f8f6; border: none; cursor: pointer;
  font-size: 0.9rem; display: flex; align-items: center; justify-content: center;
  transition: background 0.2s; color: #6b7280;
}
.legal-modal-close:hover { background: #e2e8f0; color: #1a1a1a; }
@media (max-width: 600px) {
  .legal-modal { padding: 28px 24px; }
}

/* ═══════════════════════════════════════════════════════════════
   MOBILE FABs
═══════════════════════════════════════════════════════════════ */
.mobile-fabs {
  display: none;
  position: fixed; bottom: calc(90px + env(safe-area-inset-bottom));
  right: 16px; z-index: 8000;
  flex-direction: column; gap: 10px;
}
.mobile-fab {
  width: 52px; height: 52px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 16px rgba(0,0,0,0.2);
  transition: transform 0.2s;
  text-decoration: none;
}
.mobile-fab:hover { transform: scale(1.1); }
.mobile-fab-wa  { background: #25D366; color: white; }
.mobile-fab-tel { background: #1a1a1a; color: white; }

/* hide old desktop whatsapp-btn on mobile, show FABs */
@media (max-width: 768px) {
  #whatsapp-btn { display: none !important; }
  .mobile-fabs { display: flex !important; }
}

/* ═══════════════════════════════════════════════════════════════
   RESPONSIVE – NEW SECTIONS
═══════════════════════════════════════════════════════════════ */
@media (max-width: 768px) {
  .video-section { padding: 3.5rem 5%; }
  .quiz-section { padding: 4rem 5%; }
  .quiz-q-title { font-size: 1.15rem; }
  /* old timeline overrides removed — now uses ablauf-style */
  .infl-body { grid-template-columns: 1fr !important; }
  .sp-toast { bottom: calc(80px + env(safe-area-inset-bottom)); left: 12px; width: 260px; }
}

/* ═══════════════════════════════════════════════════════════════
   SERVICE CARD INTERACTIVE ELEMENTS
═══════════════════════════════════════════════════════════════ */
.sc2-interactive { cursor: default; }
.sc2-interactive:hover { transform: none; }

/* BU Silhouette Infographic */
.bu-infographic { margin-top: 1rem; padding-top: 0.75rem; border-top: 1px solid #f0f0f0; }
.bu-silhouettes-row { display: flex; gap: 0.4rem; margin-bottom: 0.4rem; }
.bu-sil { color: #cbd5e1; transition: color 0.8s ease; }
.bu-sil.active { color: #ef4444; }
.bu-sil-caption { font-size: 0.75rem; color: #6b7280; margin-bottom: 0.5rem; font-style: italic; }

/* Zahnzusatz panel inside card */
.sc2-zahn-toggle {
  width: 100%; margin-top: 0.75rem; padding: 0.55rem 0.8rem;
  border-radius: 10px; border: 1.5px solid #e2e8f0; background: #f8f8f6;
  font-size: 0.78rem; font-weight: 600; text-align: left; cursor: pointer;
  font-family: inherit; display: flex; justify-content: space-between;
  transition: border-color 0.2s;
}
.sc2-zahn-toggle:hover { border-color: #84cc16; }
.sc2-zahn-panel { margin-top: 0.5rem; display: flex; flex-direction: column; gap: 0.6rem; }
.sc2-zahn-row { display: flex; flex-direction: column; gap: 0.25rem; }
.sc2-zahn-label { font-size: 0.72rem; font-weight: 700; color: #1a1a1a; }
.sc2-zahn-bars { display: flex; flex-direction: column; gap: 0.2rem; }
.sc2-zahn-bar-wrap { display: flex; align-items: center; gap: 0.4rem; font-size: 0.7rem; color: #6b7280; }
.sc2-zahn-bar { height: 8px; border-radius: 4px; min-width: 4px; transition: width 0.7s ease; }
.sc2-zahn-ohne { background: #ef4444; }
.sc2-zahn-mit  { background: #84cc16; }

/* Mini CTA inside card */
.sc2-mini-cta {
  display: inline-block; margin-top: 0.6rem;
  font-size: 0.78rem; font-weight: 700; color: #84cc16;
  text-decoration: none; cursor: pointer;
}
.sc2-mini-cta:hover { text-decoration: underline; }

/* Altersvorsorge CTA */
.sc2-renten-cta {
  display: block; margin-top: 0.75rem;
  background: #f0fdf4; border: 1.5px solid #84cc16;
  border-radius: 10px; padding: 0.6rem 0.9rem;
  font-size: 0.78rem; font-weight: 700; color: #65a30d;
  text-decoration: none; text-align: center;
  transition: background 0.2s;
}
.sc2-renten-cta:hover { background: #84cc16; color: white; }
.sc2-renten-sub { display: block; font-size: 0.7rem; color: #6b7280; margin-top: 0.3rem; text-align: center; }

/* ═══════════════════════════════════════════════════════════════
   QUIZ V2 – PSYCHOLOGISCHE ELEMENTE
═══════════════════════════════════════════════════════════════ */
/* Social proof percentage under each answer */
.quiz-opt-body {
  display: flex; flex-direction: column; gap: 0.1rem; flex: 1;
}
.quiz-opt-text { font-size: 0.95rem; font-weight: 500; }
.quiz-opt-pct { font-size: 0.72rem; color: #6b7280; font-weight: 400; }
.quiz-opt.selected .quiz-opt-pct { color: #65a30d; }

/* Hint text under question title */
.quiz-q-hint {
  font-size: 0.84rem; color: #6b7280; margin-bottom: 1rem; margin-top: -0.5rem;
  padding: 0.6rem 1rem; background: #f0fdf4; border-radius: 10px; border-left: 3px solid #84cc16;
}

/* Momentum message between questions */
.quiz-momentum {
  text-align: center; padding: 1.5rem; font-size: 1.1rem; font-weight: 700;
  color: #65a30d; background: #f0fdf4; border-radius: 14px;
  border: 2px solid #84cc16; margin-bottom: 1rem;
  animation: quizFadeIn 0.3s ease;
}

/* Result urgency line */
.quiz-result-urgency {
  font-size: 0.92rem; font-weight: 700; color: #65a30d;
  margin: 0.5rem 0 1.25rem; padding: 0.6rem 1rem;
  background: #f0fdf4; border-radius: 10px;
  border-left: 3px solid #84cc16;
}

/* Social proof count below result */
.quiz-result-social {
  font-size: 0.83rem; color: #6b7280; margin-bottom: 1.25rem;
  padding: 0.5rem 0.75rem; background: #f8f8f6;
  border-radius: 8px; display: inline-block;
}

/* ═══════════════════════════════════════════════════════════════
   HERO: AVAILABILITY BADGE ON PHOTO
═══════════════════════════════════════════════════════════════ */
.hero-avail-badge {
  position: absolute; top: 48px; right: calc(50% - 120px);
  background: white; border-radius: 12px; padding: 0.55rem 0.9rem;
  box-shadow: 0 8px 24px rgba(0,0,0,0.14);
  font-size: 0.78rem; font-weight: 700; color: #1a1a1a;
  animation: float 4s ease-in-out infinite 1s;
  white-space: nowrap; z-index: 10;
}
@media (max-width: 768px) { .hero-avail-badge { display: none; } }

/* ═══════════════════════════════════════════════════════════════
   ETF TOGGLE: THESAURIEREND / AUSSCHÜTTEND
═══════════════════════════════════════════════════════════════ */
.etf-toggle-row {
  display: flex; gap: 0.5rem; margin-bottom: 0.25rem;
  background: #f0f0ec; border-radius: 12px; padding: 4px;
}
/* ── ETF Step Buttons ── */
.etf-btn-group { margin-bottom: 1.2rem; }
.etf-btn-label { font-size: .8rem; font-weight: 600; color: #6b7280; margin-bottom: 8px; text-transform: uppercase; letter-spacing: 0.5px; }
.etf-btn-row { display: flex; flex-wrap: wrap; gap: 8px; }
.etf-step-btn {
  padding: 10px 16px; border: 1.5px solid rgba(0,0,0,0.08); border-radius: 10px;
  background: #fff; color: #1a1a1a; font-size: .88rem; font-weight: 600;
  cursor: pointer; font-family: inherit; transition: all 0.2s;
}
.etf-step-btn:hover { border-color: #84cc16; background: #f0fdf4; }
.etf-step-btn.active {
  background: #84cc16; color: #fff; border-color: #84cc16;
  box-shadow: 0 4px 12px rgba(132,204,22,0.3);
}
@media (max-width: 480px) { .etf-step-btn { padding: 8px 12px; font-size: .8rem; } }

/* ═══════════════════════════════════════════════════════════════
   BU: AGE-BASED SHOCK STAT
═══════════════════════════════════════════════════════════════ */
.bu-age-stat {
  font-size: 0.85rem; font-weight: 600; color: #6b7280;
  padding: 0.6rem 1rem; background: #fff7ed; border-radius: 10px;
  border-left: 3px solid #f97316; margin: 0.75rem 0 1.5rem;
  max-width: 600px; margin-left: auto; margin-right: auto;
}

/* ═══════════════════════════════════════════════════════════════
   COOKIE BANNER: DATENSCHUTZ LINK BUTTON
═══════════════════════════════════════════════════════════════ */
.cookie-datenschutz-link {
  background: none; border: none; padding: 0;
  color: #84cc16; font-weight: 600; cursor: pointer;
  font-family: inherit; font-size: inherit;
  text-decoration: underline;
}
.cookie-datenschutz-link:hover { color: #a3e635; }

/* ═══════════════════════════════════════════════════════════════
   FOOTER BOTTOM: PFLICHTANGABEN
═══════════════════════════════════════════════════════════════ */
.footer-bottom span:last-child {
  font-size: 0.72rem; opacity: 0.55;
}

/* ═══════════════════════════════════════════════════════════════
   RESPONSIVE: QUIZ & ETF MOBILE
═══════════════════════════════════════════════════════════════ */
@media (max-width: 480px) {
  .quiz-opt { padding: 0.85rem 1rem; min-height: 52px; }
  .quiz-opt-text { font-size: 0.88rem; }
  .quiz-q-title { font-size: 1.15rem; }
  .etf-toggle-row { gap: 0.3rem; }
  .etf-toggle-btn { font-size: 0.76rem; padding: 0.45rem 0.5rem; }
  .hero-avail-badge { font-size: 0.7rem; padding: 0.45rem 0.7rem; left: -8px; }
}

/* ═══════════════════════════════════════════════════════════════
   SERVICE CARD ACCORDION
═══════════════════════════════════════════════════════════════ */
.services-accordion {
  display: flex;
  flex-direction: column;
  gap: 0;
  max-width: 900px;
  margin: 2.5rem auto 0;
}

.sc-acc-card {
  background: #ffffff;
  border: 1px solid rgba(0,0,0,0.08);
  border-radius: 20px;
  margin-bottom: 0.75rem;
  overflow: hidden;
  transition: box-shadow 0.25s;
}
.sc-acc-card:hover { box-shadow: 0 4px 20px rgba(0,0,0,0.08); }
.sc-acc-card-featured {
  border-color: #84cc16;
  box-shadow: 0 4px 24px rgba(132,204,22,0.12);
}

.sc-acc-header {
  display: flex;
  align-items: center;
  gap: 1.1rem;
  padding: 1.4rem 1.6rem;
  cursor: pointer;
  user-select: none;
  -webkit-user-select: none;
  transition: background 0.2s;
}
.sc-acc-header:hover { background: #f8f8f6; }

.sc-acc-icon {
  width: 48px; height: 48px;
  border-radius: 14px;
  background: #f0fdf4;
  display: flex; align-items: center; justify-content: center;
  color: #65a30d;
  flex-shrink: 0;
}
.sc-acc-icon-featured {
  background: #84cc16;
  color: #ffffff;
}

.sc-acc-info {
  flex: 1;
  min-width: 0;
}
.sc-acc-info h4 {
  font-size: 1.05rem;
  font-weight: 700;
  color: #1a1a1a;
  margin: 0 0 0.25rem;
}
.sc-acc-info p {
  font-size: 0.87rem;
  color: #6b7280;
  margin: 0 0 0.5rem;
  line-height: 1.45;
}
.sc-acc-badge {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  color: #65a30d;
  background: #f0fdf4;
  border: 1px solid #84cc16;
  border-radius: 6px;
  padding: 0.1rem 0.5rem;
  margin-bottom: 0.35rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.card-toggle-btn {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.5rem 1rem;
  border-radius: 50px;
  border: 1.5px solid #84cc16;
  background: transparent;
  color: #65a30d;
  font-size: 0.82rem;
  font-weight: 600;
  font-family: inherit;
  cursor: pointer;
  white-space: nowrap;
  flex-shrink: 0;
  transition: all 0.2s;
}
.card-toggle-btn:hover,
.card-toggle-btn.active {
  background: #84cc16;
  color: #ffffff;
}
.card-toggle-featured {
  border-color: #65a30d;
  background: #f0fdf4;
}
.card-toggle-featured.active { background: #84cc16; color: #fff; }

.card-toggle-arrow {
  font-size: 0.9rem;
  transition: transform 0.3s;
  display: inline-block;
}
.card-toggle-btn.active .card-toggle-arrow {
  transform: rotate(180deg);
}

.card-calculator {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.acc-calc-inner {
  padding: 0 1.6rem 1.6rem;
  border-top: 1px solid rgba(0,0,0,0.06);
}

/* Accordion tabs (Gesundheit card) */
.acc-tabs {
  display: flex;
  gap: 0.5rem;
  padding: 1rem 0 0.75rem;
}
.acc-tab {
  flex: 1;
  padding: 0.55rem 0.75rem;
  border: 1.5px solid rgba(0,0,0,0.1);
  border-radius: 10px;
  background: transparent;
  color: #6b7280;
  font-size: 0.84rem;
  font-weight: 600;
  font-family: inherit;
  cursor: pointer;
  transition: all 0.2s;
}
.acc-tab:hover { border-color: #84cc16; color: #65a30d; }
.acc-tab.active {
  background: #f0fdf4;
  border-color: #84cc16;
  color: #65a30d;
}
.acc-tab-panel { padding-top: 0.5rem; }
.acc-tab-hint {
  font-size: 0.84rem;
  color: #6b7280;
  margin: 0 0 1rem;
  font-style: italic;
}

/* Mobile */
@media (max-width: 640px) {
  .sc-acc-header { padding: 1.1rem 1rem; gap: 0.75rem; }
  .sc-acc-icon { width: 40px; height: 40px; border-radius: 11px; }
  .sc-acc-info h4 { font-size: 0.95rem; }
  .sc-acc-info p { display: none; }
  .card-toggle-btn { padding: 0.4rem 0.7rem; font-size: 0.75rem; }
  .card-toggle-text { display: none; }
  .acc-calc-inner { padding: 0 0.9rem 1.2rem; }
  .acc-tabs { flex-direction: row; }
  .acc-tab { font-size: 0.78rem; padding: 0.45rem 0.5rem; }
  .etf-calculator { flex-direction: column; }
  .etf-chart-wrap canvas { height: 180px !important; }
  .radar-chart-wrap canvas { height: 180px !important; }
}

/* ═══════════════════════════════════════════════════════════════
   QUIZ V2
═══════════════════════════════════════════════════════════════ */
.qv2-progress-wrap {
  height: 5px; background: #f0f0ec; border-radius: 5px;
  margin: 1.5rem 0 0.4rem; overflow: hidden;
}
.qv2-progress-bar {
  height: 100%; background: #84cc16; border-radius: 5px;
  transition: width 0.4s ease; width: 0%;
}
.qv2-progress-text {
  font-size: 0.78rem; color: #6b7280; text-align: center; margin: 0 0 1.25rem;
}
.qv2-start { text-align: center; padding: 1.5rem 0 0.5rem; }
.qv2-start-btn { font-size: 1rem; padding: 0.9rem 2.5rem; cursor: pointer; }
.qv2-start-hint { font-size: 0.77rem; color: #6b7280; margin: 0.65rem 0 0; }

.qv2-q-subtitle { font-size: 0.88rem; color: #65a30d; font-weight: 600; margin: 0 0 0.4rem; }
.qv2-q-text { font-size: 1.22rem; font-weight: 700; color: #1a1a1a; margin: 0 0 1.2rem; line-height: 1.35; }

.qv2-opts { display: grid; gap: 0.65rem; }
.qv2-opts-grid4 { grid-template-columns: 1fr 1fr; }
.qv2-opts-grid5 { grid-template-columns: 1fr 1fr; }
.qv2-opts-grid5 .qv2-opt:last-child:nth-child(odd) { grid-column: 1 / -1; }

.qv2-opt {
  display: flex; flex-direction: column; align-items: flex-start;
  padding: 1rem 1.1rem; border-radius: 16px;
  border: 1px solid rgba(0,0,0,0.08); background: #ffffff;
  text-align: left; cursor: pointer; font-family: inherit;
  transition: border-color 0.18s, box-shadow 0.18s, background 0.18s;
  position: relative; min-height: 76px;
}
.qv2-opt:hover { border-color: #84cc16; box-shadow: 0 2px 12px rgba(132,204,22,0.15); }
.qv2-opt-selected { background: #f0fdf4 !important; border-color: #84cc16 !important; }
.qv2-opt-selected .qv2-opt-check { opacity: 1 !important; }
.qv2-opt-icon { font-size: 1.35rem; margin-bottom: 0.3rem; }
.qv2-opt-text { font-size: 0.88rem; font-weight: 500; color: #1a1a1a; line-height: 1.4; flex: 1; }
.qv2-opt-proof { font-size: 0.7rem; color: #6b7280; margin-top: 0.3rem; }
.qv2-opt-check {
  position: absolute; top: 0.55rem; right: 0.65rem;
  color: #84cc16; font-size: 0.85rem; font-weight: 700; opacity: 0;
  transition: opacity 0.2s;
}

.qv2-momentum {
  display: none; justify-content: center; align-items: center;
  padding: 1.75rem 1.5rem; text-align: center;
  background: #f0fdf4; border-radius: 16px; border: 2px solid #84cc16;
}
.qv2-momentum p { font-size: 0.98rem; font-weight: 600; color: #1a1a1a; line-height: 1.5; margin: 0; }

.qv2-loading {
  display: none; flex-direction: column; align-items: center; padding: 2.5rem 1rem;
}
.qv2-loading-bar-wrap {
  width: 100%; max-width: 280px; height: 6px;
  background: #f0f0ec; border-radius: 6px; overflow: hidden; margin-bottom: 1rem;
}
.qv2-loading-bar {
  height: 100%; background: linear-gradient(90deg, #84cc16, #65a30d);
  border-radius: 6px; width: 0%;
}
.qv2-loading-text { font-size: 0.93rem; color: #6b7280; font-weight: 500; }

/* Result */
.qv2-result-card {
  background: #fff; border-radius: 20px; padding: 2rem 1.75rem;
  border: 1px solid rgba(0,0,0,0.08); box-shadow: 0 8px 32px rgba(0,0,0,0.08);
  text-align: center;
}
.qv2-res-icon { font-size: 3rem; margin-bottom: 0.4rem; }
.qv2-res-type { font-size: 0.8rem; color: #6b7280; margin: 0 0 0.4rem; }
.qv2-res-type strong { color: #65a30d; }
.qv2-res-headline { font-size: 1.28rem; font-weight: 700; color: #1a1a1a; margin: 0 0 0.7rem; line-height: 1.3; }
.qv2-res-text { font-size: 0.91rem; color: #374151; line-height: 1.6; margin: 0 0 0.65rem; }
.qv2-res-urgency { font-size: 0.87rem; font-weight: 700; color: #65a30d; margin: 0 0 0.9rem; }
.qv2-res-tags { display: flex; flex-wrap: wrap; gap: 0.4rem; justify-content: center; margin: 0 0 1.2rem; }
.qv2-res-tag {
  background: #f0fdf4; color: #65a30d; border: 1px solid #84cc16;
  border-radius: 20px; font-size: 0.77rem; font-weight: 600; padding: 0.2rem 0.65rem;
}
.qv2-cta-btn {
  display: inline-block; font-size: 0.93rem; padding: 0.85rem 1.8rem;
  margin: 0 0 0.8rem; text-align: center; text-decoration: none;
}
.qv2-cta-btn-big { font-size: 1.05rem !important; padding: 1rem 2.2rem !important; }
.qv2-res-social { font-size: 0.78rem; color: #6b7280; margin: 0 0 0.75rem; }
.qv2-restart-link {
  background: none; border: none; color: #9ca3af; font-size: 0.76rem;
  cursor: pointer; font-family: inherit; text-decoration: underline; display: block; margin: 0 auto;
}
.qv2-restart-link:hover { color: #6b7280; }

@media (max-width: 600px) {
  .qv2-opts-grid4, .qv2-opts-grid5 { grid-template-columns: 1fr; }
  .qv2-opts-grid5 .qv2-opt:last-child:nth-child(odd) { grid-column: auto; }
  .qv2-q-text { font-size: 1.08rem; }
  .qv2-result-card { padding: 1.4rem 1rem; }
  .qv2-res-headline { font-size: 1.1rem; }
}

/* ── ZAHNZUSATZ TABLE ─────────────────────────────────────── */
.zahn-table { width: 100%; border-collapse: collapse; border-radius: 12px; overflow: hidden; }
.zahn-table thead tr { background: #f8f8f6; }
.zahn-table th { padding: 12px 16px; font-weight: 500; font-size: 12px; text-align: left; letter-spacing: 0.02em; }
.zahn-table td { padding: 12px 16px; border-bottom: 1px solid rgba(0,0,0,0.06); font-size: 0.9rem; }
.zahn-table tbody tr:last-child td { border-bottom: none; }
.zahn-row-highlight { background: #fff5f5; }
.col-ohne { color: #ef4444; font-weight: 600; }
.col-mit { color: #84cc16; font-weight: 600; }
.zahn-ohne { color: #ef4444; font-weight: 600; }
.zahn-mit { color: #84cc16; font-weight: 600; }
.zahn-info-text { font-size: 0.85rem; color: #65a30d; font-weight: 500; margin: 0.75rem 0 0; }


/* ═══════════════════════════════════════════════════════════════
   FULLSCREEN MENU OVERLAY
═══════════════════════════════════════════════════════════════ */
#fullscreen-menu {
  position: fixed; inset: 0; z-index: 9000;
  background: #111827;
  display: flex; align-items: center; justify-content: center;
  opacity: 0; visibility: hidden;
  transition: opacity 0.35s ease, visibility 0.35s ease;
  overflow-y: auto;
}
#fullscreen-menu.open { opacity: 1; visibility: visible; }

.fmenu-close {
  position: fixed; top: 20px; right: 24px;
  background: none; border: none; color: white;
  font-size: 22px; cursor: pointer; z-index: 1;
  width: 40px; height: 40px; display: flex; align-items: center; justify-content: center;
  border-radius: 50%; transition: background 0.2s;
}
.fmenu-close:hover { background: rgba(255,255,255,0.1); }

.fmenu-inner {
  width: 100%; max-width: 1000px;
  padding: 80px 60px 60px;
  display: grid; grid-template-columns: 1fr 1fr; gap: 4rem;
  align-items: start;
}

.fmenu-section { margin-bottom: 2.5rem; }
.fmenu-section-title {
  display: block; font-size: 10px; letter-spacing: 3px;
  text-transform: uppercase; color: rgba(255,255,255,0.3);
  margin-bottom: 1.2rem; font-weight: 500;
}

.fmenu-link {
  display: block; color: white; text-decoration: none;
  font-family: 'Playfair Display', serif;
  font-size: 22px; font-weight: 400;
  padding: 0.35rem 0;
  opacity: 0; transform: translateY(16px);
  transition: opacity 0.35s ease, transform 0.35s ease, color 0.2s, padding-left 0.2s;
}
#fullscreen-menu.open .fmenu-link { opacity: 1; transform: translateY(0); }
#fullscreen-menu.open .fmenu-col:nth-child(1) .fmenu-section:nth-child(1) .fmenu-link:nth-child(2) { transition-delay: 0.04s; }
#fullscreen-menu.open .fmenu-col:nth-child(1) .fmenu-section:nth-child(1) .fmenu-link:nth-child(3) { transition-delay: 0.08s; }
#fullscreen-menu.open .fmenu-col:nth-child(1) .fmenu-section:nth-child(1) .fmenu-link:nth-child(4) { transition-delay: 0.12s; }
#fullscreen-menu.open .fmenu-col:nth-child(1) .fmenu-section:nth-child(1) .fmenu-link:nth-child(5) { transition-delay: 0.16s; }
#fullscreen-menu.open .fmenu-col:nth-child(1) .fmenu-section:nth-child(2) .fmenu-link:nth-child(2) { transition-delay: 0.10s; }
#fullscreen-menu.open .fmenu-col:nth-child(1) .fmenu-section:nth-child(2) .fmenu-link:nth-child(3) { transition-delay: 0.14s; }
#fullscreen-menu.open .fmenu-col:nth-child(1) .fmenu-section:nth-child(2) .fmenu-link:nth-child(4) { transition-delay: 0.18s; }
#fullscreen-menu.open .fmenu-col:nth-child(1) .fmenu-section:nth-child(2) .fmenu-link:nth-child(5) { transition-delay: 0.22s; }
#fullscreen-menu.open .fmenu-col:nth-child(1) .fmenu-section:nth-child(2) .fmenu-link:nth-child(6) { transition-delay: 0.26s; }
#fullscreen-menu.open .fmenu-col:nth-child(2) .fmenu-section:nth-child(1) .fmenu-link:nth-child(2) { transition-delay: 0.06s; }
#fullscreen-menu.open .fmenu-col:nth-child(2) .fmenu-section:nth-child(1) .fmenu-link:nth-child(3) { transition-delay: 0.10s; }
#fullscreen-menu.open .fmenu-col:nth-child(2) .fmenu-section:nth-child(1) .fmenu-link:nth-child(4) { transition-delay: 0.14s; }
#fullscreen-menu.open .fmenu-col:nth-child(2) .fmenu-section:nth-child(1) .fmenu-link:nth-child(5) { transition-delay: 0.18s; }
.fmenu-link:hover { color: #84cc16; padding-left: 8px; }

.fmenu-link-soon { color: rgba(255,255,255,0.4) !important; pointer-events: none; }
.fmenu-soon {
  font-size: 10px; letter-spacing: 2px; text-transform: uppercase;
  background: rgba(255,255,255,0.08); padding: 2px 6px; border-radius: 4px; margin-left: 8px;
  vertical-align: middle; font-family: 'Instrument Sans', sans-serif;
}

.fmenu-col { display: flex; flex-direction: column; }
.fmenu-bottom {
  margin-top: auto; padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,0.1);
}
.fmenu-phone {
  display: block; color: white; font-size: 1.1rem; font-weight: 500;
  text-decoration: none; margin-bottom: 0.5rem;
  transition: color 0.2s;
}
.fmenu-phone:hover { color: #84cc16; }
.fmenu-wa {
  display: inline-block; color: #84cc16; font-size: 0.9rem;
  text-decoration: none; margin-bottom: 1.2rem;
  transition: color 0.2s;
}
.fmenu-wa:hover { color: #a3e635; }
.fmenu-copy { color: rgba(255,255,255,0.25); font-size: 0.78rem; margin: 0; }

/* Hamburger visible on desktop */
.hamburger { display: flex !important; margin-left: 1rem; }

@media (max-width: 768px) {
  .fmenu-inner {
    grid-template-columns: 1fr;
    padding: 70px 28px 40px;
    gap: 0;
  }
  .fmenu-link { font-size: 28px; }
  .fmenu-col:nth-child(2) {
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255,255,255,0.1);
  }
  .fmenu-bottom { border-top: none; padding-top: 1.5rem; }
}


/* Hamburger Menu – finale Struktur */
.fmenu-section-label {
  font-size: 10px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.25);
  margin: 32px 0 12px;
  padding: 0;
}
.fmenu-divider {
  border-top: 1px solid rgba(255,255,255,0.06);
  margin: 24px 0;
}
.fmenu-link {
  font-family: 'Playfair Display', serif;
  font-size: 28px;
  color: white;
  line-height: 1.3;
  display: block;
  text-decoration: none;
  padding: 4px 0;
  transition: color 0.2s;
  background: none;
  border: none;
  cursor: pointer;
  width: 100%;
  text-align: left;
}
.fmenu-link:hover { color: #84cc16; }
.fmenu-link.fmenu-sub {
  font-family: 'DM Sans', sans-serif;
  font-size: 15px;
  color: rgba(255,255,255,0.55);
  padding: 6px 0 6px 20px;
}
.fmenu-link.fmenu-sub:hover { color: #84cc16; }
.fmenu-link.fmenu-link-small {
  font-size: 16px;
  font-family: 'DM Sans', sans-serif;
  color: rgba(255,255,255,0.5);
}
.fmenu-link.fmenu-link-small:hover { color: #84cc16; }
.fmenu-badge-new {
  background: #84cc16;
  color: white;
  font-size: 9px;
  padding: 2px 7px;
  border-radius: 20px;
  margin-left: 8px;
  vertical-align: middle;
  font-family: 'DM Sans', sans-serif;
}
.fmenu-acc-arrow {
  display: inline-block;
  transition: transform 0.3s;
  font-style: normal;
}
.fmenu-acc.open .fmenu-acc-arrow { transform: rotate(180deg); }
.fmenu-acc-inner {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}
.fmenu-acc.open .fmenu-acc-inner { max-height: 320px; }
.fmenu-bottom {
  margin-top: 32px;
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,0.06);
}
.fmenu-phone, .fmenu-copy {
  font-size: 13px;
  color: rgba(255,255,255,0.4);
  display: block;
  margin-bottom: 8px;
  text-decoration: none;
}
.fmenu-wa {
  font-size: 13px;
  color: #84cc16;
  display: block;
  margin-bottom: 8px;
  text-decoration: none;
}

/* ═══════════════════════════════════════════════════════════════
   SIMPLIFIED SERVICE CARDS
═══════════════════════════════════════════════════════════════ */
.services-grid-simple {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1rem;
  margin-top: 2rem;
}
.svc-card {
  position: relative; overflow: visible;
  background: white; border: 1px solid rgba(0,0,0,0.07);
  border-radius: 16px; padding: 1rem 1.2rem;
  display: flex; gap: 0.75rem; align-items: flex-start;
  transition: box-shadow 0.25s, border-color 0.25s, transform 0.2s;
}
.svc-interactive-badge {
  position: absolute; top: 12px; right: 12px;
  background: rgba(132,204,22,0.15); color: #65a30d;
  font-size: 9px; font-weight: 700; letter-spacing: 1.2px;
  text-transform: uppercase; padding: 3px 8px; border-radius: 980px;
  pointer-events: none; border: 1px solid rgba(132,204,22,0.3);
}
.svc-card:hover {
  box-shadow: 0 8px 30px rgba(0,0,0,0.08);
  border-color: rgba(132,204,22,0.35);
  transform: translateY(-2px);
}
.svc-card-featured { border-color: rgba(132,204,22,0.4); box-shadow: 0 4px 20px rgba(132,204,22,0.1); }
.svc-icon {
  width: 48px; height: 48px; background: #f0fdf4; border-radius: 12px;
  border: 1.5px solid #84cc16;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; color: #84cc16;
}
.svc-icon svg { color: #84cc16; stroke: #84cc16; width: 22px; height: 22px; }
.svc-icon-featured { background: #f0fdf4; color: #84cc16; }
.svc-body { flex: 1; min-width: 0; }
.svc-body h4 { font-size: 1rem; font-weight: 600; color: #1a1a1a; margin: 0 0 0.35rem; }
.svc-body p { font-size: 0.78rem; color: #6b7280; margin: 0 0 0.7rem; line-height: 1.5; }
.svc-body .sc2-tags { margin-bottom: 0.8rem; }
.svc-calc-link {
  color: #84cc16; font-size: 12px; font-weight: 500;
  text-decoration: none; display: inline-block;
  white-space: nowrap; overflow: hidden;
  text-overflow: ellipsis; max-width: 100%;
  transition: color 0.2s, gap 0.15s;
}
.svc-calc-link:hover { color: #65a30d; text-decoration: underline; }

/* ── LEISTUNGEN ACCORDION ── */
.svc-accordion {
  max-width: 700px;
  margin: 2rem auto 0;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.svc-acc-item {
  border: 1.5px solid rgba(0,0,0,0.06);
  border-radius: 14px;
  margin-bottom: 8px;
  background: #fff;
  transition: border-color 0.25s, box-shadow 0.25s;
}
.svc-acc-item:hover { border-color: rgba(132,204,22,0.3); }
.svc-acc-item[open] { border-color: rgba(132,204,22,0.4); box-shadow: 0 4px 16px rgba(132,204,22,0.08); }
.svc-acc-item summary {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 18px;
  cursor: pointer;
  list-style: none;
  font-family: 'Instrument Sans', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  color: #1a1a1a;
  transition: color 0.2s;
}
.svc-acc-item summary::-webkit-details-marker { display: none; }
.svc-acc-item summary::marker { display: none; content: ''; }
.svc-acc-item summary svg {
  color: #84cc16;
  stroke: #84cc16;
  flex-shrink: 0;
}
.svc-acc-item summary:hover { color: #84cc16; }
.svc-acc-chevron {
  margin-left: auto;
  font-size: 1.1rem;
  color: #9ca3af;
  transition: transform 0.3s;
}
.svc-acc-item[open] .svc-acc-chevron {
  transform: rotate(180deg);
  color: #84cc16;
}
.svc-acc-body {
  padding: 0 18px 16px 54px;
}
.svc-calc-slot {
  margin-top: 16px;
}
.svc-calc-slot:empty { margin: 0; }
.svc-calc-slot .calc-inner {
  background: #fafaf8;
  border-radius: 12px;
  padding: 20px;
  border: 1px solid rgba(0,0,0,0.06);
}
.svc-acc-body p {
  font-size: 0.85rem;
  color: #6b7280;
  line-height: 1.6;
  margin: 0 0 0.6rem;
}
.svc-acc-featured summary {
  color: #84cc16;
  font-weight: 700;
}

@media (max-width: 768px) {
  .services-grid-simple { grid-template-columns: 1fr; }
  .services-intro > div:first-child { text-align: left; }
}

/* ═══════════════════════════════════════════════════════════════
   HIDDEN CALCULATOR SECTIONS
═══════════════════════════════════════════════════════════════ */
.calc-hidden {
  padding: 3rem 6%;
  background: #ffffff;
  animation: fadeInCalc 0.4s ease;
}
@keyframes fadeInCalc {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}
.calc-section-header {
  display: flex; align-items: flex-start; justify-content: space-between;
  gap: 1rem; margin-bottom: 2rem; flex-wrap: wrap;
}
.calc-section-header h2 { margin-bottom: 0.25rem; }
.calc-close-btn {
  background: none; border: 1px solid rgba(0,0,0,0.15); border-radius: 980px;
  padding: 8px 18px; font-size: 13px; cursor: pointer;
  color: #6b7280; transition: all 0.2s; white-space: nowrap; flex-shrink: 0;
}
.calc-close-btn:hover { background: #f8f8f6; color: #1a1a1a; border-color: rgba(0,0,0,0.25); }

/* ═══════════════════════════════════════════════════════════════
   KARRIERE SECTION
═══════════════════════════════════════════════════════════════ */
.karriere-section { background: #f8f8f6; padding: 5rem 6%; }
.karriere-inner { max-width: 960px; margin: 0 auto; }
.karriere-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 1.2rem; margin-top: 2.5rem;
}
.karriere-card {
  background: white; border-radius: 20px; padding: 1.8rem;
  border: 1px solid rgba(0,0,0,0.07);
  transition: box-shadow 0.2s;
}
.karriere-card:hover { box-shadow: 0 8px 30px rgba(0,0,0,0.08); }
.karriere-card-icon { font-size: 2rem; margin-bottom: 1rem; }
.karriere-card h4 { font-size: 1rem; font-weight: 600; margin-bottom: 0.4rem; }
.karriere-card p { font-size: 0.85rem; color: #6b7280; margin-bottom: 1.2rem; }
@media (max-width: 768px) { .karriere-grid { grid-template-columns: 1fr; } }

/* ═══════════════════════════════════════════════════════════════
   MOBILE BOTTOM NAVIGATION
═══════════════════════════════════════════════════════════════ */
#bottom-nav {
  position: fixed; bottom: 0; left: 0; right: 0;
  height: calc(60px + env(safe-area-inset-bottom));
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-top: 1px solid rgba(0,0,0,0.08);
  z-index: 998;
  display: none;
  align-items: center;
  justify-content: space-around;
  padding-bottom: env(safe-area-inset-bottom);
}
@media (max-width: 768px) {
  #bottom-nav { display: flex; }
  #mobile-cta-bar { display: none !important; }
  body { padding-bottom: calc(60px + env(safe-area-inset-bottom)); }
}
.bnav-item {
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  flex: 1; height: 60px; color: #6b7280; text-decoration: none;
  font-size: 10px; font-weight: 500; gap: 3px; transition: color 0.2s;
  -webkit-tap-highlight-color: transparent;
}
.bnav-item:hover, .bnav-active { color: #84cc16; }
.bnav-icon { font-size: 20px; line-height: 1; }
.bnav-label { font-size: 10px; letter-spacing: 0.01em; }
.bnav-cta {
  background: #84cc16; color: white !important;
  border-radius: 12px; margin: 6px 4px;
  height: 48px !important; flex: 0 0 80px;
}
.bnav-cta:hover { background: #65a30d; }

/* ── ELFSIGHT WIDGET ─────────────────────────────────────── */
.elfsight-app-51bfc6d6-4e9e-4eb5-b4b8-676565549959 {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
}
/* Hide Elfsight "What Our Customers Say" header (we have our own) */
#google-bewertungen [class*="WidgetTitle"] {
  display: none !important;
}
/* Hide "Free Google Reviews Widget" branding bar */
#google-bewertungen a[href*="elfsight"],
#google-bewertungen [class*="Branding"],
#google-bewertungen [class*="branding"],
#google-bewertungen [class*="powered"],
#google-bewertungen [class*="Powered"] {
  display: none !important;
  height: 0 !important;
  overflow: hidden !important;
  visibility: hidden !important;
  margin: 0 !important;
  padding: 0 !important;
}
/* Widget dark background */
#google-bewertungen,
#google-bewertungen * {
  color: rgba(255,255,255,0.85) !important;
  border-color: transparent !important;
}
#google-bewertungen [class*="Background"] {
  background: #111827 !important;
  border: none !important;
}
#google-bewertungen [class*="Card"],
#google-bewertungen [class*="card"] {
  background: rgba(255,255,255,0.06) !important;
  border: 1px solid rgba(255,255,255,0.08) !important;
}
#google-bewertungen a[class*="more"],
#google-bewertungen a[class*="More"] {
  color: #84cc16 !important;
}
/* All Elfsight links: no blue */
.elfsight-app-51bfc6d6-4e9e-4eb5-b4b8-676565549959 a {
  color: inherit !important;
}
#google-bewertungen a[class*="review"],
#google-bewertungen a[class*="Review"] {
  color: #84cc16 !important;
}
#google-bewertungen {
  overflow: hidden;
}

/* ── SLIDER TOUCH FIX ────────────────────────────────────── */
input[type="range"] {
  -webkit-appearance: none;
  appearance: none;
  width: 100%;
  height: 6px;
  background: #e5e7eb;
  border-radius: 3px;
  outline: none;
  touch-action: pan-y;
  cursor: pointer;
}
input[type="range"]::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: #84cc16;
  cursor: pointer;
  border: 3px solid white;
  box-shadow: 0 2px 8px rgba(0,0,0,0.15);
}
input[type="range"]::-moz-range-thumb {
  width: 28px; height: 28px;
  border-radius: 50%;
  background: #84cc16;
  cursor: pointer;
  border: 3px solid white;
  box-shadow: 0 2px 8px rgba(0,0,0,0.15);
}
.calc-slider-group {
  padding: 8px 0;
  touch-action: pan-y;
}

/* ── BARS KOMPAKTER ──────────────────────────────────────── */
.bu-bar, .rn-progress-bar, .rn-bar, .chart-bar { height: 8px !important; border-radius: 4px !important; }
.rn-progress-wrap { height: 8px; border-radius: 4px; background: #e5e7eb; overflow: hidden; }
.rn-progress-bar { height: 8px !important; background: #84cc16; border-radius: 4px; transition: width 0.4s ease; }

/* ── RENTENLÜCKEN 2-CARD LAYOUT ─────────────────────────── */
.rn-result-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-bottom: 1.2rem;
}
.rn-result-card {
  border-radius: 16px;
  padding: 1.2rem 1rem;
  text-align: center;
}
.rn-card-grey { background: #f8f8f6; border: 1px solid rgba(0,0,0,0.08); }
.rn-card-red  { background: #fff5f5; border: 1px solid rgba(239,68,68,0.2); }
.rn-result-label {
  font-size: 9px; font-weight: 700; letter-spacing: 1.5px;
  color: #6b7280; text-transform: uppercase; margin-bottom: 0.5rem;
}
.rn-result-amount {
  font-size: 1.6rem; font-weight: 800; color: #1a1a1a; line-height: 1.1;
  font-family: 'Playfair Display', serif;
}
.rn-result-unit { font-size: 0.75rem; color: #6b7280; margin-top: 0.2rem; }
.rn-result-sub  { font-size: 0.75rem; color: #ef4444; margin-top: 0.4rem; }
@media (max-width: 480px) {
  .rn-result-cards { grid-template-columns: 1fr; }
  .rn-result-amount { font-size: 1.3rem; }
}

/* ── ZAHNKOSTEN TABLE COLORS ─────────────────────────────── */
.zahn-ohne { color: #ef4444 !important; font-weight: 600 !important; }
.zahn-mit  { color: #84cc16 !important; font-weight: 600 !important; }

/* ── SECTION BACKGROUND WARMTH ──────────────────────────────────────────── */
#ueber-mich   { background: #fafaf8; position: relative; }
#leistungen   { background: #f5f4f0; position: relative; }
#leistungen .svc-card { background: #ffffff; box-shadow: 0 2px 12px rgba(0,0,0,0.06); }
.timeline-section { background: #111827; position: relative; }
#bewertungen  { background: #111827; color: white; position: relative; }

/* no gradient — clean cut between dark timeline and light über-mich */
#google-bewertungen { position: relative; margin-bottom: 0; }
.cta-section  { background: #f5f4f0; }

/* ── ICON: PREMIUM GREY → GREEN ON HOVER ────────────────────────────────── */
.svc-icon {
  background: #f5f5f5 !important;
  border: 1.5px solid #e5e7eb !important;
  color: #1a1a1a !important;
  transition: background 0.2s, border-color 0.2s, color 0.2s;
}
.svc-icon svg { stroke: #1a1a1a; transition: stroke 0.2s; }
.svc-card:hover .svc-icon {
  background: #84cc16 !important;
  border-color: #84cc16 !important;
  color: white !important;
}
.svc-card:hover .svc-icon svg { stroke: white; }

/* ── SVC-CALC-LINK → PILL BUTTON ────────────────────────────────────────── */
.svc-calc-link {
  display: inline-flex !important;
  align-items: center;
  gap: 6px;
  font-size: 14px !important;
  font-weight: 600 !important;
  color: #84cc16 !important;
  background: #f0fdf4;
  border: 1.5px solid #84cc16;
  border-radius: 980px;
  padding: 8px 16px;
  margin-top: 12px;
  text-decoration: none;
  transition: background 0.2s, color 0.2s;
}
.svc-calc-link:hover {
  background: #84cc16;
  color: white !important;
}

/* ── TRUST BAR SVG ICONS ─────────────────────────────────────────────────── */
.sp-icon-svg {
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  color: rgba(255,255,255,0.7);
  margin-right: 4px;
}
.sp-icon-svg svg { vertical-align: middle; }

/* ── AVAILABLE BADGE (hero) ──────────────────────────────────────────────── */
.available-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.95);
  border-radius: 980px;
  padding: 8px 16px;
  font-size: 13px;
  font-weight: 500;
  color: #1a1a1a;
  box-shadow: 0 4px 20px rgba(0,0,0,0.12);
}
.available-dot {
  position: relative;
  width: 10px;
  height: 10px;
  flex-shrink: 0;
}
.available-dot::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: #84cc16;
  z-index: 1;
}
.available-dot::after {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  background: rgba(132,204,22,0.3);
  animation: pulse-ring 2s ease-out infinite;
}
@keyframes pulse-ring {
  0%   { transform: scale(0.8); opacity: 0.8; }
  70%  { transform: scale(1.6); opacity: 0; }
  100% { transform: scale(0.8); opacity: 0; }
}
@media (prefers-reduced-motion: reduce) {
  .available-dot::after { animation: none; opacity: 0; }
}

/* hero-avail-badge compat — apply new styles to old element too */
.hero-avail-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.95) !important;
  border-radius: 980px !important;
  padding: 8px 16px !important;
  font-size: 13px !important;
  font-weight: 500 !important;
  color: #1a1a1a !important;
  box-shadow: 0 4px 20px rgba(0,0,0,0.12);
}

/* ── FOOTER: LESBARER & RECHTLICH SAUBER ────────────────────────────────── */
footer { background: #111827 !important; }

.footer-logo {
  color: rgba(255,255,255,0.90) !important;
  font-weight: 600 !important;
}
.footer-tagline {
  color: rgba(255,255,255,0.70) !important;
  opacity: 1 !important;
  font-size: 13px;
  line-height: 1.8;
}
.footer-col h4 {
  color: rgba(255,255,255,0.35) !important;
  opacity: 1 !important;
  font-size: 10px !important;
  letter-spacing: 2px !important;
  text-transform: uppercase !important;
  margin-bottom: 14px !important;
}
.footer-col a, .footer-col p {
  color: rgba(255,255,255,0.75) !important;
  opacity: 1 !important;
  font-size: 13px !important;
  line-height: 1.8 !important;
  text-decoration: none !important;
  transition: color 0.2s !important;
}
.footer-col a:hover {
  color: #84cc16 !important;
  text-decoration: underline !important;
}
.impressum-btn {
  color: rgba(255,255,255,0.75) !important;
  opacity: 1 !important;
  font-size: 13px !important;
  line-height: 1.8 !important;
  transition: color 0.2s !important;
}
.impressum-btn:hover {
  color: #84cc16 !important;
  opacity: 1 !important;
}
.impressum-body {
  color: rgba(255,255,255,0.55) !important;
  opacity: 1 !important;
  font-size: 12px !important;
  line-height: 1.9 !important;
}
.footer-bottom {
  color: rgba(255,255,255,0.45) !important;
  opacity: 1 !important;
  font-size: 12px !important;
  border-top: 1px solid rgba(255,255,255,0.10) !important;
  padding-top: 20px !important;
  margin-top: 32px !important;
  flex-direction: column;
  gap: 6px;
  text-align: center;
}
.footer-bottom span {
  color: rgba(255,255,255,0.45) !important;
}

/* ── STATS: 2×2 GRID ─────────────────────────────────────────────────────── */
.about-stats-glass {
  display: grid !important;
  grid-template-columns: 1fr 1fr !important;
  gap: 12px !important;
  flex-wrap: unset !important;
  margin-bottom: 2rem;
}
.about-stat-card {
  background: #ffffff !important;
  border: 1px solid rgba(0,0,0,0.08) !important;
  border-radius: 14px !important;
  padding: 20px 18px !important;
  flex: unset !important;
  min-width: unset !important;
}
.about-stat-card strong {
  font-family: 'Playfair Display', serif !important;
  font-size: 32px !important;
  color: #1a1a1a !important;
  display: block;
  line-height: 1.1;
}
.about-stat-card span {
  font-size: 13px !important;
  color: #6b7280 !important;
  opacity: 1 !important;
  font-weight: 500;
  display: block;
  margin-top: 4px;
}
.stat-sub {
  font-size: 11px !important;
  color: #9ca3af !important;
  display: block;
  margin-top: 3px;
}

/* Desktop: 4 in a row */
@media (min-width: 900px) {
  .about-stats-glass {
    grid-template-columns: repeat(4, 1fr) !important;
  }
}

/* ── CALC DISCLAIMER: LEGAL REQUIRED TEXT ───────────────────────────────── */
.calc-disclaimer {
  font-size: 11px !important;
  color: #9ca3af !important;
  text-align: center;
  margin-top: 12px;
  line-height: 1.5;
}

/* ── QUIZ V3 – RESULT CARD & ANSWER GRID ────────────────────────────────── */
/* 2×2 grid on desktop, 1 col on mobile */
.qv2-opts-grid4 {
  display: grid !important;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
@media (max-width: 600px) {
  .qv2-opts-grid4 { grid-template-columns: 1fr !important; }
}
.qv2-opt {
  position: relative;
  background: #ffffff;
  border: 1px solid rgba(0,0,0,0.08) !important;
  border-radius: 14px !important;
  padding: 18px 20px !important;
  font-size: 14px !important;
  line-height: 1.5 !important;
  text-align: left !important;
  cursor: pointer;
  transition: border-color 0.2s, background 0.15s;
  font-family: 'Instrument Sans', sans-serif;
  color: #1a1a1a;
  min-height: 64px;
}
.qv2-opt:hover {
  border-color: #84cc16 !important;
}
.qv2-opt-selected {
  background: #f0fdf4 !important;
  border-color: #84cc16 !important;
}
.qv2-opt-selected .qv2-opt-check { opacity: 1 !important; }
.qv2-opt-check {
  position: absolute; top: 10px; right: 12px;
  color: #84cc16; font-size: 13px; font-weight: 700;
  opacity: 0; transition: opacity 0.2s;
}
.qv2-q-text {
  font-size: 1.25rem !important;
  font-weight: 700 !important;
  color: #1a1a1a !important;
  margin-bottom: 1.2rem !important;
  text-align: center;
}
/* Result card */
.qv2-result-card {
  background: #ffffff;
  border: 1px solid rgba(0,0,0,0.06);
  border-radius: 20px;
  padding: 2rem 2.5rem;
  text-align: center;
  max-width: 520px;
  margin: 0 auto;
  box-shadow: 0 4px 32px rgba(0,0,0,0.07);
}
.qv2-res-icon { font-size: 2.8rem; line-height: 1; margin-bottom: 1rem; }
.qv2-res-headline {
  font-family: 'Playfair Display', serif;
  font-size: 1.45rem !important; font-weight: 700 !important;
  color: #1a1a1a !important; margin-bottom: 0.75rem !important;
  line-height: 1.3 !important;
}
.qv2-res-text {
  font-size: 0.9rem; color: #6b7280; line-height: 1.7;
  margin-bottom: 1.2rem;
}
.qv2-res-tags {
  display: flex; flex-wrap: wrap; gap: 8px;
  justify-content: center; margin-bottom: 1.4rem;
}
.qv2-res-tag {
  background: #f0fdf4; color: #65a30d;
  border: 1px solid rgba(132,204,22,0.3);
  border-radius: 980px; padding: 4px 12px;
  font-size: 12px; font-weight: 500;
}
.qv2-cta-btn {
  display: inline-block !important;
  width: 100%; text-align: center;
  margin-bottom: 0.75rem;
}
.qv2-res-meta {
  font-size: 12px; color: #9ca3af;
  margin-bottom: 0.75rem !important;
}
.qv2-res-social {
  font-size: 12px; color: #6b7280;
  background: #fafaf8; border-radius: 8px;
  padding: 8px 12px; margin-bottom: 1rem !important;
}
.qv2-restart-link {
  background: none; border: none; cursor: pointer;
  font-size: 12px; color: #9ca3af;
  text-decoration: underline; font-family: inherit;
}
.qv2-restart-link:hover { color: #6b7280; }
@media (max-width: 480px) {
  .qv2-result-card { padding: 1.5rem 1.25rem; }
  .qv2-res-headline { font-size: 1.2rem !important; }
}

/* ── TRUST TICKER ─────────────────────────────────────────────────────────── */
.trust-ticker-wrap {
  background: #111827;
  padding: 14px 0;
  overflow: hidden;
  position: relative;
}
.trust-ticker-wrap::before,
.trust-ticker-wrap::after {
  content: '';
  position: absolute;
  top: 0; bottom: 0;
  width: 80px;
  z-index: 2;
  pointer-events: none;
}
.trust-ticker-wrap::before {
  left: 0;
  background: linear-gradient(to right, #111827, transparent);
}
.trust-ticker-wrap::after {
  right: 0;
  background: linear-gradient(to left, #111827, transparent);
}
.trust-ticker {
  display: flex;
  align-items: center;
  gap: 48px;
  width: max-content;
  animation: trustScroll 25s linear infinite !important;
  will-change: transform !important;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
}
.trust-ticker:hover { animation-play-state: paused !important; }
@keyframes trustScroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: 13px;
  color: rgba(255,255,255,0.65);
  white-space: nowrap;
  flex-shrink: 0;
}
.trust-item svg {
  width: 15px; height: 15px;
  color: #84cc16;
  flex-shrink: 0;
}
.trust-sep {
  color: rgba(255,255,255,0.2);
  font-size: 20px;
  flex-shrink: 0;
}

/* ── LOGOS MARQUEE ────────────────────────────────────────────────────────── */
.logos-section {
  background: #f8fafc;
  padding-bottom: 40px;
}
.logos-header {
  text-align: center;
  padding: 48px 0 28px;
}
.logos-eyebrow {
  display: inline-block;
  font-size: 10px;
  letter-spacing: 3px;
  color: #84cc16;
  text-transform: uppercase;
  font-weight: 600;
  margin-bottom: 12px;
}
.logos-headline {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 8px;
}
.logos-sub {
  font-size: 15px;
  color: #6b7280;
  margin-bottom: 10px;
}
.logos-tagline {
  font-size: 12px;
  color: #9ca3af;
  letter-spacing: 0.3px;
}
.logos-marquee-wrap {
  overflow: hidden;
  position: relative;
  background: #f8fafc;
  border-top: 1px solid rgba(0,0,0,0.05);
  border-bottom: 1px solid rgba(0,0,0,0.05);
}
.logos-marquee-wrap::before,
.logos-marquee-wrap::after {
  content: '';
  position: absolute;
  top: 0; bottom: 0;
  width: 120px;
  z-index: 2;
  pointer-events: none;
}
.logos-marquee-wrap::before {
  left: 0;
  background: linear-gradient(to right, #f8fafc, transparent);
}
.logos-marquee-wrap::after {
  right: 0;
  background: linear-gradient(to left, #f8fafc, transparent);
}
.logos-marquee {
  display: flex;
  align-items: center;
  gap: 0;
  width: max-content;
  animation: scrollLogos 6s linear infinite !important;
  will-change: transform !important;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
}
.logos-marquee:hover {
  animation-play-state: paused !important;
}
@keyframes scrollLogos {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
.logo-text {
  font-family: 'Instrument Sans', sans-serif;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.3px;
  color: #9ca3af;
  opacity: 0.6;
  white-space: nowrap;
  transition: all 0.3s;
  padding: 0 32px;
  height: 70px;
  display: flex;
  align-items: center;
  flex-shrink: 0;
  cursor: default;
}
.logo-text:hover {
  opacity: 1;
  color: #1a1a1a;
}
.logo-sep {
  color: rgba(0,0,0,0.12);
  font-size: 18px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  padding: 0 4px;
  height: 70px;
}
.logos-dmf-link {
  text-align: center;
  margin-top: 20px;
  font-size: 12px;
  color: #9ca3af;
}
.logos-dmf-link a {
  color: #9ca3af;
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: color 0.2s;
}
.logos-dmf-link a:hover { color: #84cc16; }

/* ── IMAGE BOTTOM GRADIENT (CTA + SUBPAGES) ─────────────────────────────── */
/* CTA "Lass uns sprechen" – background #f5f4f0 */
.cta-img-wrap {
  position: relative;
  overflow: hidden;
  border-radius: 24px;
  flex-shrink: 0;
}
.cta-img-wrap .cta-img {
  border-radius: 0;
  display: block;
}
/* Top fade */
.cta-img-wrap::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 25%;
  background: linear-gradient(
    to top,
    transparent 0%,
    rgba(17,24,39,0.3) 100%
  );
  pointer-events: none;
  z-index: 1;
}
/* Bottom fade – blends into #111827 */
.cta-img-wrap::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 55%;
  background: linear-gradient(
    to bottom,
    transparent 0%,
    rgba(17,24,39,0.5) 50%,
    rgba(17,24,39,1) 100%
  );
  pointer-events: none;
  z-index: 1;
}
@media (max-width: 768px) {
  .cta-img-wrap::after { height: 60%; }
}

/* Subpage hero – background var(--light) = #f8f8f6 */
.page-hero-img-wrap {
  position: relative;
  overflow: hidden;
  border-radius: 24px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.1);
  flex-shrink: 0;
}
.page-hero-img-wrap .page-hero-img {
  border-radius: 0;
  box-shadow: none;
  display: block;
}
.page-hero-img-wrap::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 50%;
  background: linear-gradient(
    to bottom,
    transparent 0%,
    rgba(248,248,246,0.6) 55%,
    rgba(248,248,246,1) 100%
  );
  pointer-events: none;
  z-index: 1;
}

/* ── REVIEWS FALLBACK (Elfsight lädt nur online) ────────────────────────── */
.reviews-container {
  position: relative;
  min-height: 0;
}
.elfsight-app-51bfc6d6-4e9e-4eb5-b4b8-676565549959:not(:empty) ~ .reviews-fallback {
  display: none;
}
.reviews-fallback {
  text-align: center;
  padding: 40px 24px;
  background: #f8f8f6;
  border-radius: 16px;
  border: 1px solid rgba(0,0,0,0.06);
}
.reviews-fallback p {
  font-size: 18px;
  color: #1a1a1a;
  margin-bottom: 16px;
}
.reviews-fallback a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #84cc16;
  color: white;
  padding: 12px 24px;
  border-radius: 980px;
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  transition: background 0.2s;
}
.reviews-fallback a:hover { background: #65a30d; }

/* ── BU RESULT CARDS ─────────────────────────────────────────────────────── */
.bu-results-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin: 20px 0;
}
.bu-result-card {
  background: #f8f8f6;
  border: 1px solid rgba(0,0,0,0.08);
  border-radius: 12px;
  padding: 16px 14px;
  text-align: center;
}
.bu-result-card.highlight {
  background: #fff5f5;
  border-color: rgba(239,68,68,0.2);
}
.bu-result-label {
  font-size: 11px;
  color: #9ca3af;
  letter-spacing: 0.5px;
  margin-bottom: 8px;
  text-transform: uppercase;
}
.bu-result-value {
  font-family: 'Playfair Display', serif;
  font-size: 22px;
  font-weight: 500;
  line-height: 1;
  margin-bottom: 6px;
}
.bu-result-value.neutral { color: #1a1a1a; }
.bu-result-value.danger  { color: #ef4444; }
.bu-result-value.warning { color: #f97316; }
.bu-result-sub {
  font-size: 11px;
  color: #9ca3af;
  line-height: 1.3;
}
.bu-shock-text {
  background: #fff5f5;
  border-left: 3px solid #ef4444;
  border-radius: 8px;
  padding: 12px 16px;
  font-size: 13px;
  color: #6b7280;
  margin: 12px 0;
}
@media (max-width: 480px) {
  .bu-results-grid { grid-template-columns: 1fr; gap: 8px; }
}

/* ── SUBPAGE LINKS ───────────────────────────────────────────────────────── */
.subpage-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 500;
  color: #1a1a1a;
  text-decoration: none;
  border-bottom: 2px solid #84cc16;
  padding-bottom: 2px;
  margin-top: 16px;
  transition: all 0.2s;
}
.subpage-link:hover { color: #84cc16; gap: 12px; }

/* ── TABLE FOOTNOTE ──────────────────────────────────────────────────────── */
.table-footnote {
  font-size: 11px;
  color: #9ca3af;
  margin-top: 10px;
  font-style: italic;
}

/* ── ZAHNZUSATZ REDESIGN ─────────────────────────────────────────────────── */
.zahn-schmerz {
  font-size: 14px;
  line-height: 1.6;
  color: #1a1a1a;
  background: #f0fdf4;
  border-left: 3px solid #84cc16;
  border-radius: 8px;
  padding: 14px 16px;
  margin-bottom: 20px;
}
.zahn-vergleich {
  border: 1px solid rgba(0,0,0,0.08);
  border-radius: 12px;
  overflow: hidden;
  margin-bottom: 20px;
}
.zahn-header {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  background: #f8f8f6;
  padding: 10px 14px;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: #9ca3af;
}
.zahn-row {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  padding: 12px 14px;
  border-top: 1px solid rgba(0,0,0,0.06);
  align-items: center;
  font-size: 13px;
}
.zahn-row.highlight { background: #fff5f5; }
.zahn-typ  { font-weight: 500; color: #1a1a1a; }
.zahn-ohne { color: #ef4444; font-weight: 600; }
.zahn-mit  { color: #84cc16; font-weight: 600; }
.zahn-note {
  font-size: 11px;
  color: #9ca3af;
  font-style: italic;
  margin-bottom: 20px;
}
.zahn-anbieter {
  border: 1px solid rgba(0,0,0,0.08);
  border-radius: 12px;
  overflow: hidden;
  margin-bottom: 16px;
}
.zahn-anbieter-header {
  background: #111827;
  color: white;
  font-size: 13px;
  font-weight: 500;
  padding: 12px 14px;
}
.zahn-anbieter-cols {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 0.8fr 0.8fr;
  padding: 8px 14px;
  font-size: 10px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: #9ca3af;
  background: #f8f8f6;
}
/* Zahnzusatz v2 – anbieter rows */
.zahn-anbieter-v2 {
  background: #f8f8f6;
  border-radius: 12px;
  padding: 14px 16px;
  margin: 14px 0;
}
.zahn-anbieter-title {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #6b7280;
  margin-bottom: 10px;
}
.anbieter-row {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  border-radius: 8px;
  margin-bottom: 4px;
  font-size: 13px;
  background: white;
  border: 1px solid rgba(0,0,0,0.06);
}
.best-row { border-color: rgba(132,204,22,0.3); background: #f0fdf4; }
.best-badge {
  display: inline-block;
  background: #84cc16;
  color: white;
  font-size: 9px;
  font-weight: 600;
  padding: 2px 6px;
  border-radius: 4px;
  flex-shrink: 0;
}
.anbieter-name { font-weight: 600; color: #1a1a1a; flex-shrink: 0; }
.anbieter-detail { color: #6b7280; font-size: 12px; flex: 1; }
.anbieter-note {
  font-size: 11px;
  color: #9ca3af;
  font-style: italic;
  padding: 0 4px;
  margin: 8px 0 0;
}
.partner-link {
  color: #84cc16;
  text-decoration: none;
  font-weight: 500;
}
.partner-link:hover { text-decoration: underline; }
.zahn-cta {
  text-align: center;
  margin: 16px 0 6px;
}
.zahn-cta-sub {
  font-size: 11px;
  color: #9ca3af;
  text-align: center;
  margin: 6px 0 0;
}
@media (max-width: 480px) {
  .anbieter-row { flex-wrap: wrap; }
  .anbieter-detail { flex-basis: 100%; }
}

/* ── FULLSCREEN MENU – NEW BADGE & LEGAL ──────────────────── */
.fmenu-badge-new {
  display: inline-block;
  background: #84cc16; color: white;
  font-size: 9px; font-weight: 700;
  letter-spacing: 0.5px; text-transform: uppercase;
  padding: 2px 6px; border-radius: 20px;
  margin-left: 6px; vertical-align: middle;
  font-family: 'Instrument Sans', sans-serif;
}
.fmenu-section-legal { margin-top: 0.5rem; }
.fmenu-link-small { font-size: 0.8rem !important; opacity: 0.55; }
.fmenu-link-small:hover { opacity: 1; }
.nav-badge-new {
  display: inline-block;
  background: #84cc16; color: white;
  font-size: 9px; font-weight: 700;
  letter-spacing: 0.5px; padding: 2px 6px;
  border-radius: 20px; margin-left: 6px; vertical-align: middle;
}

/* ═══════════════════════════════════════════════════════════════
   COOKIE BANNER (ak_cookie_v1) – Kompakte Bar unten links
═══════════════════════════════════════════════════════════════ */
#cookie-wall,
.cookie-wall {
  position: fixed !important;
  bottom: 24px !important;
  left: 24px !important;
  top: auto !important;
  right: auto !important;
  width: auto !important;
  height: auto !important;
  max-width: 380px !important;
  background: transparent !important;
  align-items: flex-end !important;
  justify-content: center !important;
  z-index: 2147483647 !important;
  display: flex;
}
.cookie-box {
  background: #1a1a1a !important;
  border-radius: 16px !important;
  padding: 20px 24px !important;
  box-shadow: 0 8px 40px rgba(0,0,0,0.25) !important;
  text-align: left !important;
  width: 100% !important;
}
.cookie-emoji {
  font-size: 20px !important;
  margin-bottom: 8px !important;
  display: block !important;
}
.cookie-h3 {
  font-family: 'Playfair Display', serif !important;
  font-size: 15px !important;
  font-weight: 500 !important;
  color: #ffffff !important;
  margin: 0 0 8px !important;
}
.cookie-p {
  font-size: 12px !important;
  line-height: 1.6 !important;
  color: rgba(255,255,255,0.55) !important;
  margin: 0 0 14px !important;
}
.cookie-link {
  color: #84cc16 !important;
  text-decoration: none !important;
  cursor: pointer !important;
}
.cookie-link:hover { text-decoration: underline !important; }
.cookie-buttons {
  display: flex !important;
  flex-direction: row !important;
  gap: 8px !important;
}
.cookie-btn-all {
  flex: 1 !important;
  display: inline-block !important;
  width: auto !important;
  background: #84cc16 !important;
  color: white !important;
  border: none !important;
  border-radius: 980px !important;
  padding: 10px 16px !important;
  font-size: 13px !important;
  font-weight: 600 !important;
  cursor: pointer !important;
  margin-bottom: 0 !important;
  font-family: 'Instrument Sans', sans-serif !important;
  transition: background 0.2s !important;
}
.cookie-btn-all:hover { background: #65a30d !important; }
.cookie-btn-min {
  flex: 1 !important;
  display: inline-block !important;
  width: auto !important;
  background: transparent !important;
  color: rgba(255,255,255,0.6) !important;
  border: 1.5px solid rgba(255,255,255,0.2) !important;
  border-radius: 980px !important;
  padding: 10px 16px !important;
  font-size: 13px !important;
  cursor: pointer !important;
  font-family: 'Instrument Sans', sans-serif !important;
  transition: all 0.2s !important;
}
.cookie-btn-min:hover {
  color: white !important;
  border-color: white !important;
}
.cookie-note { display: none !important; }
@media (max-width: 768px) {
  #cookie-wall, .cookie-wall {
    left: 12px !important;
    right: 12px !important;
    bottom: 80px !important;
    max-width: 100% !important;
    width: auto !important;
  }
}

/* ═══════════════════════════════════════════════════════════════
   RECHNER-MORE – "Mehr zum Thema" Boxes (inline im Rechner)
═══════════════════════════════════════════════════════════════ */
.rechner-more {
  display: flex !important;
  align-items: center !important;
  gap: 12px !important;
  background: #f8f8f6 !important;
  border: 1px solid rgba(0,0,0,0.07) !important;
  border-radius: 12px !important;
  padding: 16px 20px !important;
  margin: 16px 0 0 0 !important;
  position: static !important;
  bottom: auto !important;
  left: auto !important;
  right: auto !important;
  width: auto !important;
  text-decoration: none !important;
  transition: all 0.2s !important;
}
.rechner-more:hover {
  border-color: #84cc16 !important;
  background: #f0fdf4 !important;
}
.rechner-more-icon {
  font-size: 24px !important;
  flex-shrink: 0 !important;
}
.rechner-more-text {
  flex: 1 !important;
  display: flex !important;
  flex-direction: column !important;
  gap: 2px !important;
}
.rechner-more-label {
  display: block !important;
  font-size: 10px !important;
  letter-spacing: 2px !important;
  text-transform: uppercase !important;
  color: #9ca3af !important;
  margin-bottom: 2px !important;
}
.rechner-more-title {
  display: block !important;
  font-size: 14px !important;
  font-weight: 600 !important;
  color: #1a1a1a !important;
  margin-bottom: 2px !important;
}
.rechner-more-desc {
  display: block !important;
  font-size: 12px !important;
  color: #6b7280 !important;
  line-height: 1.4 !important;
}
.rechner-more-arrow {
  color: #84cc16 !important;
  font-size: 18px !important;
  flex-shrink: 0 !important;
  transition: transform 0.2s !important;
}
.rechner-more:hover .rechner-more-arrow {
  transform: translateX(4px) !important;
}
@media (max-width: 768px) {
  .rechner-more {
    flex-wrap: wrap !important;
  }
  .rechner-more-text {
    width: 100% !important;
  }
}

/* ═══════════════════════════════════════════════════════════════
   BACK-TO-MAIN – Zurück zur Hauptseite Link
═══════════════════════════════════════════════════════════════ */
.back-to-main {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  color: #6b7280;
  text-decoration: none;
  margin-bottom: 8px;
  transition: color 0.2s;
}
.back-to-main:hover { color: #84cc16; }

/* ═══════════════════════════════════════════════════════════════
   RELATED CARDS – Das könnte dich auch interessieren
═══════════════════════════════════════════════════════════════ */
.related-cards-section {
  padding: 60px 24px;
  background: #f8f8f6;
}
.related-cards-title {
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #9ca3af;
  text-align: center;
  margin-bottom: 20px;
}
.related-cards-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  max-width: 500px;
  margin: 0 auto;
}
.related-card {
  display: flex;
  align-items: center;
  gap: 12px;
  background: white;
  border: 1px solid rgba(0,0,0,0.07);
  border-radius: 14px;
  padding: 16px 20px;
  text-decoration: none;
  transition: all 0.2s;
}
.related-card:hover {
  border-color: #84cc16;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0,0,0,0.08);
}
.related-icon { font-size: 20px; }
.related-title {
  flex: 1;
  font-size: 13px;
  font-weight: 500;
  color: #1a1a1a;
  line-height: 1.3;
}
.related-arrow { display: none !important; }

/* nudge removed */

@media (max-width: 640px) {
  .related-cards-grid { grid-template-columns: 1fr; }
}

/* ═══════════════════════════════════════════════════════════════
   MARQUEE – always running, pause on hover
═══════════════════════════════════════════════════════════════ */
.logos-track {
  animation: scrollLogos 6s linear infinite !important;
  will-change: transform !important;
}
.trust-marquee-track {
  animation: trustScroll 25s linear infinite !important;
  will-change: transform !important;
}
.logos-track:hover,
.trust-marquee-track:hover {
  animation-play-state: paused !important;
}

/* ═══════════════════════════════════════════════════════════════
   RECHNER CTA + UNTERSEITE FLOW
═══════════════════════════════════════════════════════════════ */
.rechner-cta {
  text-align: center;
  margin: 20px 0 8px;
}
.rechner-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #84cc16;
  color: white;
  padding: 14px 28px;
  border-radius: 980px;
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.2s;
  box-shadow: 0 4px 20px rgba(132,204,22,0.3);
}
.rechner-cta-btn:hover {
  background: #65a30d;
  transform: translateY(-2px);
}
.rechner-cta-sub {
  font-size: 12px;
  color: #9ca3af;
  margin-top: 8px;
}
.rechner-unterseite {
  border-top: 1px solid rgba(0,0,0,0.06);
  padding-top: 16px;
  margin-top: 16px;
  text-align: center;
}
.rechner-unterseite p {
  font-size: 13px;
  color: #6b7280;
  margin-bottom: 8px;
}
.rechner-unterseite-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  font-weight: 600;
  color: #1a1a1a;
  text-decoration: none;
  border-bottom: 2px solid #84cc16;
  padding-bottom: 2px;
  transition: all 0.2s;
}
.rechner-unterseite-link:hover {
  color: #84cc16;
  gap: 10px;
}

/* ── ARTIKEL SECTIONS ──────────────────────────────────────────────────── */
.artikel-section {
  padding: 60px 24px;
  max-width: 720px;
  margin: 0 auto;
}
.artikel-headline {
  font-family: 'Playfair Display', serif;
  font-size: clamp(22px, 4vw, 32px);
  font-weight: 500;
  color: #1a1a1a;
  margin-bottom: 32px;
  line-height: 1.2;
}
.artikel-topic {
  font-family: 'Playfair Display', serif;
  font-size: 1.15rem;
  font-weight: 700;
  color: #1a1a1a;
  margin: 32px 0 8px;
  padding-bottom: 6px;
  border-bottom: 2px solid #84cc16;
  display: inline-block;
}
.artikel-topic:first-of-type { margin-top: 0; }
.artikel-topic-sub {
  font-family: 'Instrument Sans', sans-serif;
  font-size: 0.78rem;
  font-weight: 400;
  color: #6b7280;
  margin-left: 6px;
}
.artikel-text {
  font-size: 15px;
  line-height: 1.8;
  color: #4b5563;
  margin-bottom: 24px;
}
.fakten-box {
  background: #f0fdf4;
  border-left: 3px solid #84cc16;
  border-radius: 12px;
  padding: 20px 24px;
  margin: 32px 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.fakten-item {
  font-size: 13px;
  color: #1a1a1a;
  line-height: 1.5;
}
.artikel-disclaimer {
  font-size: 11px;
  color: #9ca3af;
  font-style: italic;
  margin-top: 16px;
}
@media (max-width: 600px) {
  .fakten-box { grid-template-columns: 1fr; }
  .artikel-section { padding: 40px 20px; }
}

/* ── Footer ──────────────────────────────────── */
.footer-accent-line {
  height: 3px;
  background: linear-gradient(90deg, #84cc16 0%, #65a30d 50%, transparent 100%);
  margin-bottom: 0;
}
.footer-grid {
  display: grid !important;
  grid-template-columns: 1.5fr 1fr 1fr 1fr !important;
  gap: 48px !important;
  max-width: 1200px;
  margin: 0 auto;
  padding: 64px 60px 40px !important;
}
.footer-brand { display: flex; flex-direction: column; }
.footer-logo {
  font-family: 'Playfair Display', serif !important;
  font-size: 22px !important;
  font-weight: 700 !important;
  color: rgba(255,255,255,0.90) !important;
  display: block;
  margin-bottom: 8px;
}
.footer-subtitle {
  font-size: 13px !important;
  color: rgba(255,255,255,0.45) !important;
  line-height: 1.7;
  margin: 0 0 10px;
}
.footer-tagline {
  font-size: 13px !important;
  color: rgba(255,255,255,0.30) !important;
  line-height: 1.7;
  margin: 0 0 20px;
}
.footer-social {
  display: flex; gap: 10px; margin-top: 4px;
}
.footer-social-btn {
  width: 36px; height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.15) !important;
  display: flex !important; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.55) !important;
  background: transparent !important;
  text-decoration: none !important;
  transition: border-color 0.2s, color 0.2s, background 0.2s;
  margin-bottom: 0 !important; padding: 0 !important;
}
.footer-social-btn:hover {
  border-color: #84cc16 !important;
  color: #84cc16 !important;
  background: rgba(132,204,22,0.08) !important;
}
.footer-col h4 {
  font-family: 'Instrument Sans', sans-serif !important;
  font-size: 10px !important;
  font-weight: 700 !important;
  letter-spacing: 2px !important;
  text-transform: uppercase !important;
  color: rgba(255,255,255,.35) !important;
  margin: 0 0 14px !important;
}
.footer-col a,
.footer-col p,
.impressum-btn {
  font-size: 13px !important;
  color: rgba(255,255,255,.65) !important;
  text-decoration: none;
  display: block;
  line-height: 2.0;
  margin-bottom: 0;
  background: none; border: none; cursor: pointer;
  padding: 0;
  text-align: left;
  font-family: 'Instrument Sans', sans-serif !important;
  transition: color 0.2s, transform 0.2s;
}
.footer-col a:hover,
.impressum-btn:hover {
  color: #84cc16 !important;
  transform: translateX(4px);
}
.impressum-body { line-height: 1.8 !important; }
.footer-divider {
  border: none;
  border-top: 1px solid rgba(255,255,255,0.08);
  margin: 0 60px;
}
.footer-bottom {
  border: none !important;
  padding: 24px 60px !important;
  margin: 0 !important;
  color: rgba(255,255,255,.30) !important;
  font-size: 12px !important;
  display: flex !important;
  justify-content: space-between !important;
  flex-direction: row !important;
  align-items: center !important;
  flex-wrap: wrap;
  gap: 8px;
  max-width: 1200px;
  margin: 0 auto !important;
}
.footer-bottom span { color: rgba(255,255,255,.30) !important; }

/* ── FOOTER SOCIAL BUTTONS ── */
.footer-social { display: flex; gap: 10px; margin-top: 16px; }
.footer-social-btn {
  width: 38px; height: 38px; border-radius: 50%;
  border: 1.5px solid rgba(255,255,255,0.2);
  display: inline-flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.7); transition: all 0.2s;
  text-decoration: none; background: transparent;
}
.footer-social-btn:hover {
  border-color: #84cc16; color: #84cc16;
  background: rgba(132,204,22,0.1);
}
.footer-brand { display: flex; flex-direction: column; }
.footer-subtitle { font-size: 0.85rem; color: rgba(255,255,255,0.55); margin-bottom: 8px; line-height: 1.5; }

/* ── RELATED CARDS DARK ── */
.related-cards-section { background: #111827 !important; padding: 3rem 6%; }
.related-cards-title { color: rgba(255,255,255,0.45) !important; font-size: 10px; letter-spacing: 3px; text-transform: uppercase; text-align: center; display: block; margin-bottom: 1.5rem; }
.related-cards-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 1rem; max-width: 600px; margin: 0 auto; }
.related-card {
  display: flex; align-items: center; gap: 12px;
  padding: 16px 20px; border-radius: 14px;
  background: rgba(255,255,255,0.06) !important;
  border: 1px solid rgba(255,255,255,0.1) !important;
  color: white !important; text-decoration: none;
  transition: all 0.2s;
}
.related-card:hover { background: rgba(132,204,22,0.12) !important; border-color: #84cc16 !important; }
.related-icon { font-size: 1.4rem; }
.related-title { font-size: 0.9rem; font-weight: 500; flex: 1; }
/* arrows hidden globally */

/* ── FOOTER FIXES ── */
.footer-accent-line {
  height: 3px !important;
  background: linear-gradient(90deg, #84cc16 0%, #65a30d 60%, transparent 100%) !important;
  display: block !important;
}
.footer-social { display: flex !important; gap: 10px !important; margin-top: 16px !important; }
.footer-social-btn {
  width: 38px !important; height: 38px !important;
  border-radius: 50% !important;
  border: 1.5px solid rgba(255,255,255,0.2) !important;
  display: inline-flex !important; align-items: center !important;
  justify-content: center !important;
  color: rgba(255,255,255,0.7) !important;
  background: transparent !important;
  text-decoration: none !important;
  transition: all 0.2s !important;
}
.footer-social-btn:hover {
  border-color: #84cc16 !important;
  color: #84cc16 !important;
}
.footer-col a {
  color: rgba(255,255,255,0.55) !important;
  text-decoration: none !important;
}
.footer-col a:hover { color: #84cc16 !important; }

/* ── FOOTER MOBILE: Rechtliches volle Breite ── */
@media (max-width: 768px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr !important;
    gap: 2rem !important;
  }
  .footer-brand {
    grid-column: 1 / -1 !important;
  }
  .footer-col:last-child {
    grid-column: 1 / -1 !important;
  }
}

/* ── RELATED CARDS HELLER ── */
.related-cards-section {
  background: #111827 !important;
  padding: 3rem 6% !important;
}
.related-cards-title {
  color: rgba(255,255,255,0.6) !important;
  font-size: 11px !important;
  letter-spacing: 3px !important;
  text-transform: uppercase !important;
  text-align: center !important;
  display: block !important;
  margin-bottom: 1.5rem !important;
}
.related-card {
  background: rgba(255,255,255,0.1) !important;
  border: 1.5px solid rgba(255,255,255,0.25) !important;
  color: rgba(255,255,255,0.9) !important;
  text-decoration: none !important;
  border-radius: 14px !important;
  padding: 18px 20px !important;
  display: flex !important;
  align-items: center !important;
  gap: 12px !important;
  transition: all 0.2s !important;
}
.related-card:hover {
  background: rgba(132,204,22,0.15) !important;
  border-color: #84cc16 !important;
  color: white !important;
}
.related-icon { font-size: 1.6rem !important; }
.related-title {
  font-size: 0.95rem !important;
  font-weight: 500 !important;
  color: rgba(255,255,255,0.9) !important;
  flex: 1 !important;
}
/* arrows hidden */
/* ── SOCIAL BUTTONS HELLER ── */
.footer-social-btn {
  width: 40px !important; height: 40px !important;
  border-radius: 50% !important;
  border: 1.5px solid rgba(255,255,255,0.3) !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  color: rgba(255,255,255,0.8) !important;
  background: transparent !important;
  text-decoration: none !important;
  transition: all 0.2s !important;
}
.footer-social-btn:hover {
  border-color: #84cc16 !important;
  color: #84cc16 !important;
  background: rgba(132,204,22,0.1) !important;
}

/* ── FOOTER GRID MOBILE FIX ── */
@media (max-width: 900px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr !important;
    gap: 2.5rem 2rem !important;
  }
  .footer-brand {
    grid-column: 1 / -1 !important;
  }
  .footer-col:nth-child(2) { grid-column: 1 / 2 !important; }
  .footer-col:nth-child(3) { grid-column: 2 / 3 !important; }
  .footer-col:nth-child(4) { grid-column: 1 / -1 !important; }
}
@media (max-width: 480px) {
  .footer-grid {
    grid-template-columns: 1fr !important;
  }
  .footer-brand,
  .footer-col:nth-child(2),
  .footer-col:nth-child(3),
  .footer-col:nth-child(4) {
    grid-column: 1 / -1 !important;
  }
}

/* ── FOOTER GRID LAYOUT ── */
@media (max-width: 900px) {
  .footer-grid {
    display: grid !important;
    grid-template-columns: 1fr 1fr !important;
    gap: 2.5rem 2rem !important;
  }
  .footer-brand {
    grid-column: 1 / -1 !important;
  }
  .footer-col:nth-child(4) {
    grid-column: 1 / -1 !important;
    border-top: 1px solid rgba(255,255,255,0.08) !important;
    padding-top: 1.5rem !important;
  }
}

/* ─── RELATED CARDS SWIPEABLE ───────────────────────────────── */
.related-cards-grid { scrollbar-width: none; }
.related-cards-grid::-webkit-scrollbar { display: none; }
.related-card {
  min-width: 200px;
  flex: 0 0 200px !important;
}
@media (max-width: 768px) {
  .related-cards-grid {
    display: flex !important;
    overflow-x: auto !important;
    flex-wrap: nowrap !important;
    padding-bottom: 8px !important;
  }
}

/* ─── MOBILE IMPROVEMENTS ─────────────────────────────────── */
@media (max-width: 600px) {
  /* Service Grid: 1 Spalte */
  .services-grid-simple {
    grid-template-columns: 1fr !important;
    gap: 0.75rem !important;
  }

  /* Service Card: kompakter */
  .svc-card {
    padding: 0.85rem 1rem !important;
    gap: 0.6rem !important;
    border-radius: 14px !important;
  }
  .svc-body h4 {
    font-size: 0.95rem !important;
    margin-bottom: 0.3rem !important;
  }
  .svc-body p {
    font-size: 0.74rem !important;
    margin-bottom: 0.4rem !important;
  }
  .svc-calc-link {
    font-size: 11px !important;
    max-width: 90% !important;
  }
  .sc2-tags { gap: 4px !important; }
  .sc2-tags span { font-size: 10px !important; padding: 2px 6px !important; }

  /* Calendly: kleinere Höhe auf Mobile */
  .calendly-inline-widget {
    height: 500px !important;
    min-height: 500px !important;
  }
  .calendly-wrapper {
    margin-top: 1.2rem !important;
    border-radius: 12px !important;
  }

  /* Buttons nicht volle Breite */
  .btn-primary, .btn-outline {
    font-size: 14px !important;
    padding: 13px 24px !important;
  }

  /* Hero-section Kompaktheit */
  .hero-badge {
    font-size: 0.7rem !important;
    padding: 6px 14px !important;
  }
  .hero-sub {
    font-size: 0.85rem !important;
    line-height: 1.6 !important;
  }
  .hero-micro-trust {
    font-size: 0.75rem !important;
    gap: 0.6rem !important;
  }

  /* Reviews grid: 1 Spalte */
  .reviews-grid {
    grid-template-columns: 1fr !important;
    gap: 1rem !important;
  }
}
