
/* ===== SANI NEUMANN v16 – Professionelles Sanitär-Design ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
:root {
  --navy:    #0f2d5e;
  --navy2:   #1a3f7a;
  --blue:    #1565c0;
  --orange:  #f97316;
  --orange2: #ea6c0e;
  --green:   #25d366;
  --green2:  #1ebe5a;
  --white:   #ffffff;
  --bg:      #f8fafc;
  --bg2:     #eef2f7;
  --bg3:     #f0f4f8;
  --text:    #1a1a2e;
  --text2:   #4a5568;
  --text3:   #718096;
  --border:  #e2e8f0;
  --shadow:  0 2px 8px rgba(0,0,0,0.08);
  --shadow2: 0 4px 24px rgba(0,0,0,0.12);
  --radius:  12px;
}
html { scroll-behavior: smooth; font-size: 16px; }
body { font-family: 'Segoe UI', system-ui, -apple-system, sans-serif; color: var(--text); background: var(--white); line-height: 1.6; }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; height: auto; display: block; }

/*  Countdown Banner  */
.countdown-banner {
  background: var(--navy);
  color: #fff;
  text-align: center;
  padding: 10px 20px;
  font-size: 14px;
  font-weight: 500;
}
.countdown-banner a { color: var(--orange); font-weight: 700; margin-left: 8px; }
.timer { font-weight: 800; color: var(--orange); font-variant-numeric: tabular-nums; }

/*  Navigation  */
.nav {
  background: var(--white);
  border-bottom: 2px solid var(--navy);
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 12px rgba(15,45,94,0.12);
}
.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  height: 68px;
  gap: 24px;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 20px;
  font-weight: 800;
  flex-shrink: 0;
}
.logo-icon {
  width: 38px;
  height: 38px;
  background: var(--navy);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.logo-brand { color: var(--navy); }
.logo-accent { color: var(--orange); }
.nav-links {
  display: flex;
  list-style: none;
  gap: 4px;
  flex: 1;
}
.nav-links li { position: relative; }
.nav-links a {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 8px 14px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
  color: var(--text2);
  transition: background 0.15s, color 0.15s;
  white-space: nowrap;
}
.nav-links a:hover { background: var(--bg3); color: var(--navy); }
.nav-chevron { font-size: 10px; opacity: 0.6; }
.nav-dropdown {
  display: none;
  position: absolute;
  top: calc(100% + 4px);
  left: 0;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 10px;
  box-shadow: var(--shadow2);
  min-width: 200px;
  padding: 8px;
  z-index: 200;
}
.nav-dropdown a {
  display: block;
  padding: 8px 12px;
  border-radius: 6px;
  font-size: 13px;
  color: var(--text2);
  white-space: nowrap;
}
.nav-dropdown a:hover { background: var(--bg3); color: var(--navy); }
.nav-links li:hover .nav-dropdown { display: block; }
.nav-actions { display: flex; gap: 8px; align-items: center; margin-left: auto; flex-shrink: 0; }
.btn-call {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 9px 16px;
  background: var(--orange);
  color: #fff;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 700;
  transition: background 0.15s;
  white-space: nowrap;
}
.btn-call:hover { background: var(--orange2); }
.btn-wa {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 9px 16px;
  background: var(--green);
  color: #fff;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 700;
  transition: background 0.15s;
  white-space: nowrap;
}
.btn-wa:hover { background: var(--green2); }
.btn-wa svg { flex-shrink: 0; }
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
  margin-left: auto;
  background: none;
  border: none;
  outline: none;
  -webkit-tap-highlight-color: transparent;
}
.nav-hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--navy);
  border-radius: 2px;
  transition: 0.3s;
}
.nav-mobile {
  display: none;
  flex-direction: column;
  padding: 12px 24px 16px;
  border-top: 1px solid var(--border);
  gap: 4px;
  background: var(--white);
}
.nav-mobile a {
  display: block;
  padding: 10px 12px;
  border-radius: 8px;
  font-size: 15px;
  color: var(--text2);
  font-weight: 500;
}
.nav-mobile a:hover { background: var(--bg3); }
.nav-mobile .btn-call, .nav-mobile .btn-wa { margin-top: 4px; justify-content: center; color: #fff !important; }
.nav-mobile.open { display: flex; }

/*  Ticker  */
.ticker-wrap {
  background: var(--orange);
  overflow: hidden;
  padding: 10px 0;
  border-bottom: 2px solid #d45f00;
}
.ticker-track {
  display: flex;
  gap: 0;
  animation: ticker-scroll 600s linear infinite;
  width: max-content;
}
.ticker-item {
  display: inline-flex;
  align-items: center;
  padding: 0 18px;
  font-size: 13px;
  font-weight: 600;
  color: #fff;
  white-space: nowrap;
  letter-spacing: 0.02em;
}
.ticker-item::before {
  content: '·';
  margin-right: 18px;
  opacity: 0.5;
  color: rgba(255,255,255,0.6);
}
.ticker-item:first-child::before { display: none; }
@keyframes ticker-scroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/*  Breadcrumb  */
.breadcrumb {
  background: var(--bg);
  border-bottom: 1px solid var(--border);
  padding: 10px 0;
}
.breadcrumb-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  font-size: 13px;
  color: var(--text3);
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}
.breadcrumb-inner a { color: var(--blue); }
.breadcrumb-inner a:hover { text-decoration: underline; }

/*  Hero  */
.hero {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy2) 60%, #1a4a8a 100%);
  padding: 70px 20px 60px;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(249,115,22,0.12) 0%, transparent 70%);
  pointer-events: none;
}
.hero-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(249,115,22,0.15);
  border: 1px solid rgba(249,115,22,0.4);
  color: #ffa94d;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.5px;
  padding: 5px 14px;
  border-radius: 20px;
  margin-bottom: 16px;
}
.hero h1 {
  font-size: 2.5rem;
  font-weight: 900;
  color: #fff;
  line-height: 1.2;
  margin-bottom: 16px;
}
.hero h1 span { color: var(--orange); }
.hero-subtitle {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.82);
  line-height: 1.7;
  margin-bottom: 28px;
}
.hero-ctas {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.hero-cta-call {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--orange);
  color: #fff;
  padding: 14px 24px;
  border-radius: 10px;
  font-size: 16px;
  font-weight: 700;
  transition: background 0.15s, transform 0.15s;
}
.hero-cta-call:hover { background: var(--orange2); transform: translateY(-2px); }
.hero-cta-wa {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--green);
  color: #fff;
  padding: 14px 24px;
  border-radius: 10px;
  font-size: 16px;
  font-weight: 700;
  transition: background 0.15s, transform 0.15s;
}
.hero-cta-wa:hover { background: var(--green2); transform: translateY(-2px); }
.hero-cta-wa svg { flex-shrink: 0; }
.hero-image-wrap { position: relative; }
.hero-image-wrap img {
  width: 100%;
  border-radius: 16px;
  box-shadow: 0 8px 40px rgba(0,0,0,0.35);
  object-fit: cover;
  max-height: 420px;
}
.hero-rating-badge {
  position: absolute;
  bottom: -16px;
  left: 20px;
  background: var(--white);
  border-radius: 12px;
  padding: 12px 18px;
  box-shadow: var(--shadow2);
  display: flex;
  align-items: center;
  gap: 10px;
}
.hero-rating-badge .stars { color: #f59e0b; font-size: 16px; }
.hero-rating-badge .score { font-size: 22px; font-weight: 900; color: var(--navy); }
.hero-rating-badge .label { font-size: 11px; color: var(--text3); }

/*  Trust Bar  */
.trust-bar {
  background: var(--bg);
  border-bottom: 1px solid var(--border);
  padding: 14px 0;
}
.trust-bar-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px 24px;
  justify-content: center;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 13px;
  font-weight: 600;
  color: var(--navy);
  white-space: nowrap;
}
.trust-item svg { color: var(--orange); flex-shrink: 0; }

/*  Sections  */
.section { padding: 70px 20px; }
.section.alt { background: var(--bg); }
.section-inner { max-width: 1200px; margin: 0 auto; }
.section-label {
  display: inline-block;
  background: #fff3e8;
  color: var(--orange);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 2px;
  padding: 4px 14px;
  border-radius: 20px;
  margin-bottom: 12px;
  border: 1px solid #ffd9b0;
}
.section-title { font-size: 2rem; font-weight: 800; color: var(--navy); margin-bottom: 12px; }
.section-subtitle { color: var(--text2); font-size: 1.05rem; margin-bottom: 40px; }

/*  Services Grid  */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.service-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 24px;
  transition: box-shadow 0.2s, transform 0.2s, border-color 0.2s;
  cursor: pointer;
}
.service-card:hover { box-shadow: var(--shadow2); transform: translateY(-3px); border-color: var(--orange); }
.service-icon {
  width: 52px;
  height: 52px;
  background: #eef2ff;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}
.service-icon svg { color: var(--blue); }
.service-card h3 { font-size: 1.05rem; font-weight: 700; color: var(--navy); margin-bottom: 8px; }
.service-card p { font-size: 0.88rem; color: var(--text2); line-height: 1.6; }

/*  Trust Boxes  */
.trust-boxes {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.trust-box {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
  text-align: center;
  transition: box-shadow 0.2s;
}
.trust-box:hover { box-shadow: var(--shadow2); }
.trust-box-header {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  font-size: 12px;
  font-weight: 700;
  color: var(--orange);
  letter-spacing: 0.5px;
  margin-bottom: 10px;
  text-transform: uppercase;
}
.trust-box-num { font-size: 2.2rem; font-weight: 900; color: var(--navy); line-height: 1; margin-bottom: 6px; }
.trust-box-label { font-size: 13px; color: var(--text2); }

/*  Kontakt / Funnel  */
.contact-section { padding: 70px 20px; background: var(--bg); }
.contact-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}
.contact-text h2 { font-size: 1.9rem; font-weight: 800; color: var(--navy); margin-bottom: 16px; }
.contact-text p { color: var(--text2); line-height: 1.7; margin-bottom: 16px; }
.contact-trust { display: flex; flex-direction: column; gap: 10px; margin-top: 24px; }
.contact-trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  font-weight: 600;
  color: var(--navy);
}
.contact-trust-item svg { color: var(--green); flex-shrink: 0; }
.wa-funnel-hint {
  display: flex;
  align-items: center;
  gap: 12px;
  background: #25D366;
  border-radius: 12px;
  padding: 14px 16px;
  margin-bottom: 16px;
  color: #fff;
  line-height: 1.5;
  cursor: default;
}
.wa-funnel-hint-icon { flex-shrink: 0; }
.wa-funnel-hint-text { flex: 1; }
.wa-funnel-hint-title { font-size: 15px; font-weight: 700; margin-bottom: 3px; }
.wa-funnel-hint-sub { font-size: 13px; opacity: 0.93; }
.wa-funnel-hint-steps { display: flex; align-items: center; gap: 6px; margin-top: 6px; font-size: 12px; font-weight: 600; opacity: 0.95; flex-wrap: wrap; }
.wa-funnel-hint-step { background: rgba(255,255,255,0.25); border-radius: 20px; padding: 2px 10px; }
.wa-funnel-hint-arrow { font-size: 10px; opacity: 0.7; }
.contact-form-wrap {
  background: var(--white);
  border-radius: 16px;
  box-shadow: var(--shadow2);
  overflow: hidden;
}
.form-tabs {
  display: flex;
  border-bottom: 2px solid var(--border);
}
.form-tab {
  flex: 1;
  padding: 14px;
  text-align: center;
  font-size: 14px;
  font-weight: 700;
  color: var(--text3);
  cursor: pointer;
  transition: color 0.15s, background 0.15s;
  border: none;
  background: none;
}
.form-tab.active {
  color: var(--navy);
  background: var(--white);
  border-bottom: 3px solid var(--orange);
  margin-bottom: -2px;
}
.form-body { padding: 28px; }
.form-step { display: none; }
.form-step.active { display: block; }
.form-step-title { font-size: 1.1rem; font-weight: 700; color: var(--navy); margin-bottom: 16px; }
.form-progress {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 20px;
  font-size: 12px;
}
.form-progress-step { color: var(--text3); font-weight: 600; }
.form-progress-step.active { color: var(--orange); font-weight: 700; }
.form-progress-step.done { color: var(--green); font-weight: 700; }
.form-progress-sep { color: var(--text3); }

/* Funnel Kategorien – Schritt 1 */
.funnel-cats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-bottom: 16px;
}
.funnel-cat-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px 12px;
  border: 2px solid var(--border);
  border-radius: 10px;
  background: var(--white);
  cursor: pointer;
  transition: border-color 0.15s, background 0.15s;
  text-align: center;
}
.funnel-cat-btn:hover { border-color: var(--orange); background: #fff9f5; }
.funnel-cat-btn.selected { border-color: var(--orange); background: #fff3e8; }
.funnel-cat-title { font-size: 14px; font-weight: 700; color: var(--navy); line-height: 1.3; }
.funnel-cat-sub { font-size: 11px; color: var(--text3); margin-top: 2px; }

/* Funnel Unterkategorien – Schritt 1b */
.funnel-subcats {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 16px;
}
.funnel-subcat-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 8px;
}
.funnel-subcat-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 11px 14px;
  border: 1.5px solid var(--border);
  border-radius: 8px;
  background: var(--white);
  cursor: pointer;
  font-size: 13px;
  font-weight: 600;
  color: var(--text2);
  transition: border-color 0.15s, background 0.15s, color 0.15s;
  text-align: left;
  width: 100%;
}
.funnel-subcat-btn:hover { border-color: var(--orange); background: #fff9f5; color: var(--navy); }
.funnel-subcat-btn.selected { border-color: var(--orange); background: #fff3e8; color: var(--navy); }
.funnel-subcat-other { grid-column: 1 / -1; color: var(--text3); font-style: italic; border-style: dashed; }
.funnel-back-link {
  font-size: 12px;
  color: var(--text3);
  cursor: pointer;
  margin-bottom: 12px;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}
.funnel-back-link:hover { color: var(--navy); }

.form-group { margin-bottom: 14px; }
.form-group label { display: block; font-size: 13px; font-weight: 600; color: var(--text2); margin-bottom: 5px; }
.form-group input, .form-group textarea, .form-group select {
  width: 100%;
  padding: 10px 14px;
  border: 1.5px solid var(--border);
  border-radius: 8px;
  font-size: 14px;
  font-family: inherit;
  color: var(--text);
  background: var(--white);
  transition: border-color 0.15s;
}
.form-group input:focus, .form-group textarea:focus, .form-group select:focus {
  outline: none;
  border-color: var(--orange);
}
.form-group textarea { resize: vertical; min-height: 80px; }
.form-nav-btns { display: flex; gap: 10px; margin-top: 16px; }
.form-btn-next {
  flex: 1;
  padding: 12px;
  background: var(--orange);
  color: #fff;
  border: none;
  border-radius: 8px;
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  transition: background 0.15s;
}
.form-btn-next:hover { background: var(--orange2); }
.form-btn-back {
  padding: 12px 18px;
  background: var(--bg);
  color: var(--text2);
  border: 1px solid var(--border);
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.15s;
}
.form-btn-back:hover { background: var(--bg2); }
.form-submit-wa {
  width: 100%;
  padding: 14px;
  background: var(--green);
  color: #fff;
  border: none;
  border-radius: 10px;
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  transition: background 0.15s;
}
.form-submit-wa:hover { background: var(--green2); }
.form-submit-wa svg { flex-shrink: 0; }
.form-note { font-size: 12px; color: var(--text3); text-align: center; margin-top: 10px; }
.form-wa-hint { font-size: 0.78rem; color: #888; text-align: center; margin-top: 8px; line-height: 1.4; }
.form-wa-hint a { color: #888; text-decoration: underline; }

/*  Vorher-Nachher  */
.vnd-section { padding: 70px 20px; background: var(--white); }
.vnd-inner { max-width: 900px; margin: 0 auto; text-align: center; }
.vnd-inner h2 { font-size: 2rem; font-weight: 800; color: var(--navy); margin-bottom: 10px; }
.vnd-inner p { color: var(--text2); margin-bottom: 32px; }
.vnd-container {
  position: relative;
  width: 100%;
  max-width: 780px;
  margin: 0 auto;
  border-radius: 16px;
  overflow: hidden;
  cursor: ew-resize;
  user-select: none;
  box-shadow: var(--shadow2);
}
.vnd-before, .vnd-after {
  display: block;
  width: 100%;
  height: 420px;
  object-fit: cover;
}
.vnd-after {
  position: absolute;
  top: 0;
  left: 0;
  clip-path: inset(0 50% 0 0);
}
.vnd-divider {
  position: absolute;
  top: 0;
  left: 50%;
  width: 3px;
  height: 100%;
  background: #fff;
  transform: translateX(-50%);
  pointer-events: none;
}
.vnd-handle {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 44px;
  height: 44px;
  background: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.25);
  pointer-events: none;
  color: var(--navy);
  font-weight: 900;
}
.vnd-label {
  position: absolute;
  bottom: 16px;
  background: rgba(15,45,94,0.85);
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  padding: 5px 14px;
  border-radius: 20px;
  letter-spacing: 0.5px;
}
.vnd-label-before { left: 16px; }
.vnd-label-after { right: 16px; }

/*  Team  */
.team-section { padding: 70px 20px; background: var(--bg); }
.team-inner { max-width: 1200px; margin: 0 auto; }
.team-hero-wrap {
  margin-top: 32px;
}
.team-hero-img { display: none; }
.team-hero-content h2 { font-size: 1.8rem; font-weight: 800; color: var(--navy); margin-bottom: 16px; }
.team-hero-content p { color: var(--text2); line-height: 1.7; margin-bottom: 14px; max-width: 800px; }
.team-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 28px;
}
.team-stat {
  background: var(--white);
  border-radius: 10px;
  padding: 16px;
  text-align: center;
  border: 1px solid var(--border);
}
.team-stat-num { font-size: 1.8rem; font-weight: 900; color: var(--orange); }
.team-stat-label { font-size: 12px; color: var(--text3); margin-top: 4px; }
.team-slideshow { position: relative; overflow: hidden; margin-bottom: 28px; }
.team-slides { display: flex; transition: transform 0.4s ease; }
.team-slide { min-width: 100%; display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.team-member-card { text-align: center; }
.team-member-card img { width: 100%; aspect-ratio: 4/5; object-fit: cover; object-position: top; border-radius: 14px; margin-bottom: 12px; box-shadow: 0 4px 20px rgba(0,0,0,0.13); }
.team-member-name { font-weight: 700; color: var(--navy); font-size: 1.05rem; margin-bottom: 2px; }
.team-member-role { font-size: 0.82rem; color: var(--orange); font-weight: 600; margin-bottom: 6px; }
.team-member-desc { font-size: 0.78rem; color: var(--text3); line-height: 1.5; }
.team-slide-dots { display: flex; justify-content: center; gap: 6px; margin-top: 10px; }
.team-slide-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--border); cursor: pointer; transition: background 0.2s; }
.team-slide-dot.active { background: var(--orange); }
@media(max-width:600px){
  .team-slide { grid-template-columns: repeat(2,1fr); }
  .team-stats { grid-template-columns: repeat(2,1fr); }
}

/*  Bewertungen  */
.reviews-section { padding: 70px 20px; background: var(--bg); }
/* Review Cards */
.reviews-stars-row { display:flex; flex-direction:column; align-items:center; gap:6px; margin-bottom:36px; }
.reviews-stars { font-size:2rem; color:#f59e0b; letter-spacing:2px; }
.reviews-avg-text { font-size:14px; color:var(--text3); }
.reviews-cards-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  max-width: 1200px;
  margin: 0 auto;
}
.review-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 20px;
  box-shadow: var(--shadow);
  transition: box-shadow 0.2s, transform 0.2s;
}
.review-card:hover { box-shadow: var(--shadow2); transform: translateY(-2px); }
.review-card-featured {
  border-color: var(--orange);
  box-shadow: 0 4px 20px rgba(249,115,22,0.15);
  transform: translateY(-4px);
}
.review-card-header { display:flex; align-items:center; gap:10px; margin-bottom:10px; }
.review-avatar {
  width: 42px; height: 42px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-weight: 800; font-size: 16px; color: white; flex-shrink: 0;
}
.review-avatar-blue { background: #1a73e8; }
.review-avatar-green { background: #34a853; }
.review-avatar-orange { background: #f97316; }
.review-avatar-purple { background: #9333ea; }
.review-card-meta { flex: 1; }
.review-card-name { font-weight: 700; font-size: 14px; color: var(--navy); }
.review-card-date { font-size: 12px; color: var(--text3); }
.review-google-logo { flex-shrink: 0; }
.review-card-stars { color: #f59e0b; font-size: 16px; margin-bottom: 10px; letter-spacing: 1px; }
.review-card-text { font-size: 13px; color: var(--text2); line-height: 1.6; }
.google-reviews-img {
  max-width: 680px;
  margin: 0 auto;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow2);
}
.google-reviews-img img { width: 100%; display: block; }

/*  Stadtteile  */
.stadtteile-section { padding: 50px 20px; background: var(--bg); }
.stadtteile-inner { max-width: 1200px; margin: 0 auto; }
.stadtteile-inner h2 { font-size: 1.5rem; font-weight: 800; color: var(--navy); margin-bottom: 20px; }
.stadtteile-grid { display: flex; flex-wrap: wrap; gap: 8px; }
.stadtteil-tag {
  background: var(--white);
  border: 1px solid var(--border);
  color: var(--text2);
  font-size: 13px;
  padding: 5px 14px;
  border-radius: 20px;
  transition: border-color 0.15s, color 0.15s;
}
.stadtteil-tag:hover { border-color: var(--orange); color: var(--navy); }

/*  FAQ  */
.faq-section { padding: 70px 20px; background: var(--white); }
.faq-list { max-width: 800px; margin: 0 auto; }
.faq-item {
  border: 1px solid var(--border);
  border-radius: 10px;
  margin-bottom: 10px;
  overflow: hidden;
}
.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 20px;
  font-size: 15px;
  font-weight: 600;
  color: var(--navy);
  cursor: pointer;
  background: var(--white);
  transition: background 0.15s;
}
.faq-question:hover { background: var(--bg); }
.faq-icon { font-size: 20px; color: var(--orange); font-weight: 400; flex-shrink: 0; }
.faq-answer {
  display: none;
  padding: 0 20px 16px;
  font-size: 14px;
  color: var(--text2);
  line-height: 1.7;
  background: var(--white);
}
.faq-item.open .faq-answer { display: block; }
.faq-item.open .faq-icon { transform: rotate(45deg); }

/*  Blog Cards  */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.blog-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: box-shadow 0.2s, transform 0.2s;
  display: flex;
  flex-direction: column;
}
.blog-card:hover { box-shadow: var(--shadow2); transform: translateY(-3px); }
.blog-card-img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  display: block;
}
.blog-card-body { padding: 18px; flex: 1; display: flex; flex-direction: column; }
.blog-tag {
  display: inline-block;
  background: #fff3e8;
  color: var(--orange);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 1px;
  padding: 3px 10px;
  border-radius: 20px;
  margin-bottom: 8px;
}
.blog-card-body h3 { font-size: 0.95rem; font-weight: 700; color: var(--navy); margin-bottom: 8px; line-height: 1.4; flex: 1; }
.blog-card-body p { font-size: 0.85rem; color: var(--text2); line-height: 1.5; margin-bottom: 12px; }
.blog-read-more { font-size: 13px; font-weight: 700; color: var(--orange); }
.blog-read-more:hover { text-decoration: underline; }

/*  Final CTA  */
.final-cta {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy2) 100%);
  padding: 70px 20px;
  text-align: center;
}
.final-cta h2 { font-size: 2rem; font-weight: 800; color: #fff; margin-bottom: 12px; }
.final-cta p { color: rgba(255,255,255,0.8); font-size: 1.05rem; margin-bottom: 32px; }
.final-cta-btns { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
.final-cta-call {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--orange);
  color: #fff;
  padding: 16px 32px;
  border-radius: 10px;
  font-size: 17px;
  font-weight: 700;
  transition: background 0.15s;
}
.final-cta-call:hover { background: var(--orange2); }
.final-cta-wa {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--green);
  color: #fff;
  padding: 16px 32px;
  border-radius: 10px;
  font-size: 17px;
  font-weight: 700;
  transition: background 0.15s;
}
.final-cta-wa:hover { background: var(--green2); }
.final-cta-wa svg { flex-shrink: 0; }

/*  Sticky Bar  */
.sticky-bar {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--white);
  border-top: 2px solid var(--border);
  padding: 12px 20px;
  z-index: 90;
  gap: 10px;
  box-shadow: 0 -4px 20px rgba(0,0,0,0.1);
}
.sticky-call {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: var(--orange);
  color: #fff;
  padding: 13px;
  border-radius: 10px;
  font-size: 15px;
  font-weight: 700;
}
.sticky-wa {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: var(--green);
  color: #fff;
  padding: 13px;
  border-radius: 10px;
  font-size: 15px;
  font-weight: 700;
}
.sticky-wa svg { flex-shrink: 0; }

/*  Footer  */
.footer {
  background: var(--navy);
  color: rgba(255,255,255,0.8);
  padding: 50px 20px 0;
}
.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 40px;
}
.footer-brand .nav-logo { color: #fff; margin-bottom: 12px; }
.footer-brand p { font-size: 14px; line-height: 1.6; margin-bottom: 16px; }
.footer-wa {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--green);
  color: #fff;
  padding: 10px 18px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 700;
  transition: background 0.15s;
}
.footer-wa:hover { background: var(--green2); }
.footer-wa svg { flex-shrink: 0; }
.footer-links h4 { color: #fff; font-size: 14px; font-weight: 700; margin-bottom: 14px; }
.footer-links a {
  display: block;
  font-size: 13px;
  color: rgba(255,255,255,0.65);
  margin-bottom: 8px;
  transition: color 0.15s;
}
.footer-links a:hover { color: #fff; }
.footer-contact h4 { color: #fff; font-size: 14px; font-weight: 700; margin-bottom: 14px; }
.footer-contact a {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: rgba(255,255,255,0.65);
  margin-bottom: 10px;
  transition: color 0.15s;
}
.footer-contact a:hover { color: #fff; }
.footer-contact a.wa-link { color: var(--green); }
.footer-contact a.wa-link:hover { color: #fff; }
.footer-contact a.wa-link svg { color: var(--green); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 16px 0;
  text-align: center;
  font-size: 13px;
  color: rgba(255,255,255,0.4);
}

/*  Exit Popup  */
/* Exit-Popup Header */
.exit-popup-header {
  display: flex;
  align-items: center;
  gap: 14px;
  background: linear-gradient(135deg, #0f2d5e, #1a4080);
  border-radius: 12px;
  padding: 16px;
  margin-bottom: 16px;
  color: #fff;
}
.exit-popup-phone-icon {
  width: 52px;
  height: 52px;
  background: rgba(255,255,255,0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.exit-popup-header-text { flex: 1; }
.exit-popup-header-title { font-size: 1.05rem; font-weight: 800; margin-bottom: 3px; }
.exit-popup-header-sub { font-size: 0.82rem; opacity: 0.85; }
.exit-popup-notice {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  background: #fffbeb;
  border: 1px solid #fcd34d;
  border-radius: 8px;
  padding: 10px 14px;
  margin-bottom: 14px;
  font-size: 0.82rem;
  color: #78350f;
  line-height: 1.5;
}
.exit-popup-countdown {
  display: flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(135deg, #e8f0fe, #dbeafe);
  border: 1px solid #93c5fd;
  border-radius: 10px;
  padding: 12px 16px;
  margin-bottom: 14px;
  font-size: 0.88rem;
  color: #1e3a5f;
  font-weight: 600;
  line-height: 1.4;
}
.popup-timer {
  font-weight: 900;
  font-size: 1.1rem;
  color: #dc2626;
  font-variant-numeric: tabular-nums;
  letter-spacing: 1px;
}
.exit-popup-icon { display: none; }
.exit-popup-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.55);
  z-index: 999;
  align-items: center;
  justify-content: center;
  padding: 20px;
}
.exit-popup-overlay.active { display: flex; }
.exit-popup {
  background: var(--white);
  border-radius: 16px;
  padding: 36px 32px;
  max-width: 440px;
  width: 100%;
  position: relative;
  box-shadow: 0 20px 60px rgba(0,0,0,0.3);
}
.exit-popup-close {
  position: absolute;
  top: 14px;
  right: 16px;
  background: none;
  border: none;
  font-size: 22px;
  cursor: pointer;
  color: var(--text3);
  line-height: 1;
}
.exit-popup-close:hover { color: var(--navy); }
.exit-popup h3 { font-size: 1.3rem; font-weight: 800; color: var(--navy); margin-bottom: 8px; }
.exit-popup p { font-size: 14px; color: var(--text2); margin-bottom: 20px; line-height: 1.6; }
.exit-popup-btns { display: flex; flex-direction: column; gap: 10px; }
.exit-popup-call {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: var(--orange);
  color: #fff;
  padding: 13px;
  border-radius: 10px;
  font-size: 15px;
  font-weight: 700;
  transition: background 0.15s;
}
.exit-popup-call:hover { background: var(--orange2); }
.final-cta-wa {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 32px;
  background: #25d366;
  color: white;
  border-radius: 50px;
  font-size: 16px;
  font-weight: 700;
  text-decoration: none;
  transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 4px 20px rgba(37,211,102,0.35);
  letter-spacing: 0.3px;
}
.final-cta-wa:hover { background: #1ebe5a; transform: translateY(-2px); box-shadow: 0 6px 28px rgba(37,211,102,0.45); }
.exit-popup-wa {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: var(--green);
  color: #fff;
  padding: 13px;
  border-radius: 10px;
  font-size: 15px;
  font-weight: 700;
  transition: background 0.15s;
}
.exit-popup-wa:hover { background: var(--green2); }
.exit-popup-wa svg { flex-shrink: 0; }
.exit-popup-dismiss {
  text-align: center;
  font-size: 13px;
  color: var(--text3);
  cursor: pointer;
  padding: 6px;
  margin-top: 4px;
}
.exit-popup-dismiss:hover { color: var(--navy); }
.exit-popup-usps { list-style: none; padding: 0; margin: 10px 0 14px; text-align: left; }
.exit-popup-usps li { display: flex; align-items: center; gap: 8px; font-size: 0.88rem; color: #333; padding: 3px 0; }

/*  Blog Overview  */
.blog-overview-hero {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy2) 100%);
  padding: 80px 20px 60px;
  text-align: center;
}
.blog-overview-hero h1 { font-size: 2.2rem; color: #fff; margin: 16px 0 12px; font-weight: 800; }
.blog-overview-hero p { color: rgba(255,255,255,0.8); font-size: 1.1rem; }
.blog-overview-grid { max-width: 1200px; margin: 0 auto; padding: 60px 20px; }
.blog-cat-badge {
  display: inline-block;
  background: rgba(249,115,22,0.2);
  color: #ffa94d;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  padding: 4px 12px;
  border-radius: 20px;
  margin-bottom: 12px;
  border: 1px solid rgba(249,115,22,0.3);
}
.blog-card-img-wrap { height: 180px; overflow: hidden; background: #f5f5f5; }
.blog-card-img-wrap img { width: 100%; height: 100%; object-fit: cover; }
.blog-card-body2 { padding: 20px; flex: 1; display: flex; flex-direction: column; }
.blog-card-cat {
  display: inline-block;
  background: #fff3e8;
  color: var(--orange);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 1px;
  padding: 3px 10px;
  border-radius: 20px;
  margin-bottom: 10px;
}
.blog-card-title { font-size: 1rem; font-weight: 700; color: var(--navy); margin: 0 0 8px; line-height: 1.4; }
.blog-card-title a { color: inherit; text-decoration: none; }
.blog-card-title a:hover { color: var(--orange); }
.blog-card-desc { color: #666; font-size: 0.88rem; line-height: 1.5; flex: 1; margin-bottom: 16px; }
.blog-card-footer { display: flex; justify-content: space-between; align-items: center; font-size: 0.8rem; color: #999; }
.blog-card-link { color: var(--orange); font-weight: 600; text-decoration: none; }
.blog-card-link:hover { text-decoration: underline; }

/*  Article Page  */
.article-layout { max-width: 820px; margin: 0 auto; padding: 40px 20px 80px; }
.article-header { margin-bottom: 28px; }
.article-header h1 { font-size: 2rem; color: var(--navy); margin: 12px 0; line-height: 1.3; font-weight: 800; }
.article-meta { display: flex; gap: 20px; color: #888; font-size: 0.85rem; flex-wrap: wrap; }
.article-img-wrap { border-radius: 12px; overflow: hidden; margin-bottom: 32px; }
.article-img-wrap img { width: 100%; height: 380px; object-fit: cover; }
.article-body h2 { font-size: 1.5rem; color: var(--navy); margin: 36px 0 14px; font-weight: 700; }
.article-body h3 { font-size: 1.2rem; color: var(--navy); margin: 24px 0 10px; font-weight: 700; }
.article-body p { color: #444; line-height: 1.85; margin-bottom: 18px; font-size: 1.02rem; }
.article-body ul, .article-body ol { margin: 0 0 18px 24px; }
.article-body li { color: #444; line-height: 1.8; margin-bottom: 6px; font-size: 1rem; }
.article-body table { width: 100%; border-collapse: collapse; margin-bottom: 24px; }
.article-body th { background: var(--navy); color: #fff; padding: 10px 14px; text-align: left; font-size: 14px; }
.article-body td { padding: 10px 14px; border-bottom: 1px solid var(--border); font-size: 14px; color: var(--text2); }
.article-body tr:nth-child(even) td { background: var(--bg); }
.article-tip {
  background: #f0f9ff;
  border-left: 4px solid var(--blue);
  padding: 16px 20px;
  border-radius: 0 8px 8px 0;
  margin: 24px 0;
}
.article-tip strong { color: var(--blue); }
.article-warning {
  background: #fff8f0;
  border-left: 4px solid var(--orange);
  padding: 16px 20px;
  border-radius: 0 8px 8px 0;
  margin: 24px 0;
}
.article-warning strong { color: var(--orange); }
.article-cta {
  background: linear-gradient(135deg, var(--navy), var(--navy2));
  border-radius: 14px;
  padding: 36px;
  margin-top: 52px;
  text-align: center;
}
.article-cta h3 { color: #fff; font-size: 1.4rem; margin-bottom: 10px; }
.article-cta p { color: rgba(255,255,255,0.8); margin-bottom: 24px; }
.article-cta-btns { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }
.btn-call-lg {
  background: var(--orange);
  color: #fff;
  padding: 14px 24px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 700;
  font-size: 0.95rem;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.btn-wa-lg {
  background: var(--green);
  color: #fff;
  padding: 14px 24px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 700;
  font-size: 0.95rem;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.btn-wa-lg svg { flex-shrink: 0; }

/*  Responsive  */
@media (max-width: 1024px) {
  .hero-inner { grid-template-columns: 1fr; gap: 40px; }
  .hero-image-wrap { order: -1; }
  .hero h1 { font-size: 2rem; }
  .contact-inner { grid-template-columns: 1fr; }
  .team-hero-wrap { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .trust-boxes { grid-template-columns: repeat(2, 1fr); }
  .reviews-cards-grid { grid-template-columns: repeat(2, 1fr); }
  .review-card-featured { transform: none; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
  .nav-links, .nav-actions { display: none; }
  .nav-hamburger { display: flex; }
  .nav-inner { justify-content: space-between; }
  .hero h1 { font-size: 1.7rem; }
  .hero-inner { padding: 0 4px; }
  .section-title { font-size: 1.6rem; }
  .services-grid { grid-template-columns: 1fr; }
  .blog-grid { grid-template-columns: 1fr; }
  .trust-boxes { grid-template-columns: repeat(2, 1fr); }
  .footer-inner { grid-template-columns: 1fr; }
  .sticky-bar { display: flex; }
  .funnel-cats { grid-template-columns: 1fr 1fr; }
  .funnel-cat-btn { padding: 10px 10px; gap: 7px; }
  .funnel-cat-icon { width: 30px; height: 30px; }
  .funnel-cat-title { font-size: 12px; }
  .funnel-cat-sub { font-size: 10px; }
  .reviews-cards-grid { grid-template-columns: 1fr; }
  .final-cta h2 { font-size: 1.6rem; }
  .final-cta-btns { flex-direction: column; align-items: center; }
}
@media (max-width: 480px) {
  .hero h1 { font-size: 1.4rem; }
  .hero-ctas { flex-direction: column; }
  .hero-cta-call, .hero-cta-wa { justify-content: center; }
  .exit-popup-btns { flex-direction: column; }
  .team-stats { grid-template-columns: 1fr 1fr; }
}
