/* =============================================
   MOCZULSKI MULTI-SERVICE — style.css
   ============================================= */

/* ── Variables ─────────────────────────────── */
:root {
  --navy:    #0a0e1a;
  --navy2:   #111827;
  --card:    #161d2e;
  --orange:  #f97316;
  --orange2: #ea6c0a;
  --white:   #ffffff;
  --gray:    #9ca3af;
  --gray2:   #6b7280;
  --border:  rgba(255,255,255,0.07);
  --wa:      #25d366;
  --radius:  12px;
  --transition: 0.25s ease;
}

/* ── Reset ─────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'Barlow', sans-serif;
  background: var(--navy);
  color: var(--white);
  overflow-x: hidden;
  line-height: 1.6;
}
img { display: block; max-width: 100%; }
a { color: inherit; }

/* ── Scrollbar ─────────────────────────────── */
::-webkit-scrollbar { width: 5px; }
::-webkit-scrollbar-track { background: var(--navy); }
::-webkit-scrollbar-thumb { background: var(--orange); border-radius: 3px; }

/* ── Typography ────────────────────────────── */
h1, h2, h3 {
  font-family: 'Barlow Condensed', sans-serif;
  text-transform: uppercase;
  line-height: 1.05;
  letter-spacing: -0.5px;
}
h1 { font-size: clamp(46px, 7vw, 88px); font-weight: 900; }
h2 { font-size: clamp(28px, 4vw, 52px); font-weight: 800; margin-bottom: 12px; }
h3 { font-size: clamp(18px, 2vw, 22px); font-weight: 700; }

.accent { color: var(--orange); }

/* ── Section base ──────────────────────────── */
section { padding: 88px 5%; }

.section-label {
  display: inline-block;
  font-size: 11px; font-weight: 700;
  letter-spacing: 2.5px; text-transform: uppercase;
  color: var(--orange); margin-bottom: 10px;
}
.section-sub {
  font-size: 16px; color: var(--gray);
  max-width: 580px; line-height: 1.75; margin-bottom: 48px;
}
.inner { max-width: 1200px; margin: 0 auto; }

/* ── Buttons ────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; gap: 9px;
  padding: 14px 24px; border-radius: 10px;
  font-family: 'Barlow', sans-serif; font-size: 15px; font-weight: 700;
  text-decoration: none; cursor: pointer; border: none;
  transition: all var(--transition);
}
.btn-orange { background: var(--orange); color: var(--white); }
.btn-orange:hover { background: var(--orange2); transform: translateY(-2px); box-shadow: 0 8px 28px rgba(249,115,22,0.38); }
.btn-ghost  { background: rgba(255,255,255,0.05); color: var(--white); border: 1.5px solid rgba(255,255,255,0.2); }
.btn-ghost:hover  { border-color: var(--orange); color: var(--orange); }
.btn-wa     { background: var(--wa); color: var(--white); }
.btn-wa:hover     { background: #1fb855; transform: translateY(-2px); }
.btn-full   { width: 100%; justify-content: center; }

/* ========================================
   NAVBAR
   ======================================== */
#navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  height: 70px; padding: 0 5%;
  display: flex; align-items: center; justify-content: space-between;
  background: rgba(10,14,26,0.90);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  transition: background var(--transition);
}
#navbar.scrolled { background: rgba(10,14,26,0.98); }

.nav-logo { display: flex; align-items: center; gap: 10px; text-decoration: none; }
.logo-icon {
  width: 40px; height: 40px; border-radius: 10px;
  background: var(--orange); color: var(--navy);
  font-family: 'Barlow Condensed', sans-serif; font-weight: 900; font-size: 18px;
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.logo-text { font-family: 'Barlow Condensed', sans-serif; font-weight: 800; font-size: 15px; text-transform: uppercase; line-height: 1.2; }
.logo-sub  { font-size: 9px; color: var(--orange); letter-spacing: 1.5px; font-weight: 600; }

.nav-links { display: flex; align-items: center; gap: 28px; list-style: none; }
.nav-links a { font-size: 13px; font-weight: 500; color: rgba(255,255,255,0.72); text-decoration: none; transition: color var(--transition); }
.nav-links a:hover { color: var(--orange); }

.nav-ctas { display: flex; align-items: center; gap: 8px; }
.nav-btn-call {
  display: flex; align-items: center; gap: 7px;
  padding: 8px 16px; border-radius: 8px;
  border: 1px solid rgba(255,255,255,0.15); background: transparent;
  color: var(--white); font-size: 13px; font-weight: 600;
  text-decoration: none; transition: all var(--transition);
}
.nav-btn-call:hover { border-color: var(--orange); color: var(--orange); }
.nav-btn-wa {
  display: flex; align-items: center; gap: 7px;
  padding: 8px 16px; border-radius: 8px;
  background: var(--orange); color: var(--white);
  font-size: 13px; font-weight: 700; text-decoration: none;
  transition: background var(--transition);
}
.nav-btn-wa:hover { background: var(--orange2); }

/* Hamburger */
.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 5px; background: none; border: none; }
.hamburger span { display: block; width: 24px; height: 2px; background: var(--white); border-radius: 2px; transition: all 0.3s; }
.hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px,5px); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px,-5px); }

/* Mobile nav */
.mobile-nav {
  display: none; flex-direction: column; gap: 8px;
  position: fixed; inset: 0; top: 70px; z-index: 900;
  background: var(--navy); padding: 28px 5%; overflow-y: auto;
}
.mobile-nav.open { display: flex; }
.mobile-nav a {
  padding: 13px 16px; border-radius: 10px;
  border: 1px solid var(--border); color: var(--white);
  text-decoration: none; font-size: 16px; font-weight: 500;
  transition: all var(--transition);
}
.mobile-nav a:hover { border-color: var(--orange); color: var(--orange); }
.mobile-nav-ctas { display: flex; flex-direction: column; gap: 10px; margin-top: 14px; }

/* ========================================
   HERO
   ======================================== */
#hero {
  position: relative; min-height: 100vh;
  display: flex; align-items: center;
  padding: 90px 5% 80px; overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0;
  background-image: url('assets/images/hero.jpg');
  background-size: cover; background-position: center right; background-repeat: no-repeat;
  z-index: 0;
}
.hero-overlay {
  position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(
    90deg,
    rgba(10,14,26,0.94) 0%,
    rgba(10,14,26,0.82) 45%,
    rgba(10,14,26,0.35) 75%,
    rgba(10,14,26,0.08) 100%
  );
}
.hero-overlay-bottom {
  position: absolute; bottom: 0; left: 0; right: 0; z-index: 2;
  height: 130px;
  background: linear-gradient(to top, var(--navy), transparent);
}
.hero-content { position: relative; z-index: 3; max-width: 620px; }

.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 7px 14px; border-radius: 100px;
  border: 1px solid rgba(249,115,22,0.35);
  background: rgba(249,115,22,0.1);
  font-size: 11px; font-weight: 700; color: var(--orange);
  letter-spacing: 2px; text-transform: uppercase; margin-bottom: 22px;
}
.badge-dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--orange); animation: pulse 2s infinite;
}

.hero-eyebrow {
  font-size: clamp(16px, 2.2vw, 22px);
  color: rgba(255,255,255,0.65); font-weight: 400; margin-bottom: 6px;
}
.hero-sub {
  font-size: clamp(15px, 1.7vw, 18px); color: rgba(255,255,255,0.6);
  max-width: 500px; line-height: 1.75; margin: 18px 0 32px;
}

.hero-btns { display: flex; gap: 12px; flex-wrap: wrap; }

.hero-trust { display: flex; gap: 10px; flex-wrap: wrap; margin-top: 36px; }
.trust-chip {
  display: inline-flex; align-items: center; gap: 7px;
  padding: 8px 13px; border-radius: 8px;
  background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.1);
  font-size: 12px; font-weight: 600; color: rgba(255,255,255,0.82);
  backdrop-filter: blur(8px);
}
.trust-chip svg { color: var(--orange); flex-shrink: 0; }

/* ========================================
   TRUST BAND
   ======================================== */
#vertrauen {
  background: var(--navy2);
  border-top: 1px solid var(--border); border-bottom: 1px solid var(--border);
  padding: 36px 5%;
}
.trust-grid {
  display: grid; grid-template-columns: repeat(6, 1fr); gap: 8px;
  max-width: 1200px; margin: 0 auto;
}
.trust-card {
  display: flex; flex-direction: column; align-items: center; text-align: center;
  padding: 18px 10px; background: var(--card);
  border: 1px solid var(--border); border-radius: var(--radius);
  transition: all var(--transition);
}
.trust-card:hover { border-color: var(--orange); transform: translateY(-3px); box-shadow: 0 8px 28px rgba(249,115,22,0.1); }
.trust-card-icon {
  width: 40px; height: 40px; border-radius: 10px;
  background: rgba(249,115,22,0.12); color: var(--orange);
  display: flex; align-items: center; justify-content: center; margin-bottom: 10px;
}
.trust-card-title { font-family: 'Barlow Condensed', sans-serif; font-size: 15px; font-weight: 700; text-transform: uppercase; color: var(--white); margin-bottom: 3px; }
.trust-card-desc  { font-size: 11px; color: var(--gray); line-height: 1.5; }

/* ========================================
   SERVICES
   ======================================== */
#leistungen { background: var(--navy); }

.services-intro {
  display: grid; grid-template-columns: 1fr 1fr; gap: 48px;
  align-items: start; margin-bottom: 44px;
}
.services-intro-right { padding-top: 30px; font-size: 15px; color: var(--gray); line-height: 1.8; }

.services-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); gap: 18px;
}
.service-card {
  background: var(--card); border: 1px solid var(--border);
  border-radius: 16px; overflow: hidden;
  text-decoration: none; display: block; transition: all var(--transition);
}
.service-card:hover { border-color: var(--orange); transform: translateY(-5px); box-shadow: 0 20px 50px rgba(249,115,22,0.12); }
.service-card-img {
  height: 148px; position: relative; overflow: hidden;
}
.service-card-img-bg { width: 100%; height: 100%; transition: transform 0.4s ease; }
.service-card:hover .service-card-img-bg { transform: scale(1.07); }
.service-card-icon {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
  width: 56px; height: 56px; border-radius: 14px;
  background: rgba(249,115,22,0.15); border: 1px solid rgba(249,115,22,0.3);
  display: flex; align-items: center; justify-content: center; color: var(--orange);
}
.service-card-body { padding: 18px; }
.service-card-name { font-family: 'Barlow Condensed', sans-serif; font-size: 19px; font-weight: 700; text-transform: uppercase; color: var(--white); margin-bottom: 7px; }
.service-card-text { font-size: 13px; color: var(--gray); line-height: 1.65; margin-bottom: 14px; }
.service-card-link { display: inline-flex; align-items: center; gap: 5px; font-size: 13px; font-weight: 600; color: var(--orange); transition: gap var(--transition); }
.service-card:hover .service-card-link { gap: 9px; }

/* Service image gradients */
.si-entrumpelung    { background: linear-gradient(135deg,#2a1a0a,#4a2c10,#1a0a06); }
.si-haushaltsaufloesung { background: linear-gradient(135deg,#1a1a2a,#2d2040,#0d0d1a); }
.si-spezial         { background: linear-gradient(135deg,#082020,#103d3d,#051010); }
.si-keller          { background: linear-gradient(135deg,#101020,#1a1a35,#08080f); }
.si-garten          { background: linear-gradient(135deg,#0a1a0a,#103010,#051005); }
.si-sperr           { background: linear-gradient(135deg,#1a0808,#350e0e,#0a0404); }
.si-messie          { background: linear-gradient(135deg,#1a1020,#2d1540,#0d080f); }
.si-transport       { background: linear-gradient(135deg,#101828,#1a2840,#080f18); }

/* ========================================
   WHY US
   ======================================== */
#vorteile { background: var(--navy2); }

.why-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.why-visual {
  background: linear-gradient(135deg,#131c30,#1a2540,#0d1320);
  border: 1px solid var(--border); border-radius: 20px;
  padding: 40px 32px; display: flex; flex-direction: column; gap: 20px; align-items: center;
}
.why-stats { display: flex; gap: 16px; width: 100%; }
.why-stat {
  flex: 1; background: rgba(249,115,22,0.1); border: 1px solid rgba(249,115,22,0.2);
  border-radius: 14px; padding: 20px; text-align: center;
}
.why-stat-num { font-family: 'Barlow Condensed', sans-serif; font-size: 52px; font-weight: 900; color: var(--orange); line-height: 1; }
.why-stat-label { font-size: 12px; color: var(--gray); margin-top: 4px; }
.why-badge {
  width: 100%; background: rgba(249,115,22,0.08); border: 1px solid rgba(249,115,22,0.2);
  border-radius: 12px; padding: 16px 20px; text-align: center;
}
.why-badge-title { font-family: 'Barlow Condensed', sans-serif; font-size: 18px; font-weight: 700; color: var(--orange); letter-spacing: 1px; }
.why-badge-sub   { font-size: 12px; color: var(--gray); margin-top: 3px; }

.checklist { list-style: none; margin-top: 20px; }
.checklist li {
  display: flex; align-items: flex-start; gap: 12px;
  padding: 12px 0; border-bottom: 1px solid var(--border);
  font-size: 15px; color: rgba(255,255,255,0.82);
}
.checklist li:last-child { border-bottom: none; }
.check-ico {
  flex-shrink: 0; width: 22px; height: 22px; border-radius: 6px;
  background: rgba(249,115,22,0.15); color: var(--orange);
  display: flex; align-items: center; justify-content: center; margin-top: 1px;
}

/* ========================================
   PROCESS
   ======================================== */
#ablauf { background: var(--navy); text-align: center; }
.ablauf-inner h2 { margin-bottom: 14px; }
.ablauf-inner .section-sub { margin: 0 auto 44px; }

.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.step {
  background: var(--card); border: 1px solid var(--border);
  border-radius: 16px; padding: 32px 24px; transition: all var(--transition);
}
.step:hover { border-color: var(--orange); transform: translateY(-4px); }
.step-num {
  width: 52px; height: 52px; border-radius: 50%;
  background: var(--orange); color: var(--navy);
  font-family: 'Barlow Condensed', sans-serif; font-size: 24px; font-weight: 900;
  display: flex; align-items: center; justify-content: center; margin: 0 auto 16px;
}
.step-title { font-family: 'Barlow Condensed', sans-serif; font-size: 22px; font-weight: 700; text-transform: uppercase; color: var(--white); margin-bottom: 10px; }
.step-desc  { font-size: 14px; color: var(--gray); line-height: 1.65; }

/* ========================================
   GALLERY / BEFORE-AFTER
   ======================================== */
#referenzen { background: var(--navy2); }
.gallery-header {
  display: flex; align-items: flex-end; justify-content: space-between;
  gap: 20px; flex-wrap: wrap; margin-bottom: 32px;
}
.gallery-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px;
}
.gallery-item {
  position: relative; border-radius: 12px; overflow: hidden;
  aspect-ratio: 3/4; border: 1px solid var(--border);
  cursor: pointer; transition: all var(--transition);
}
.gallery-item.wide { grid-column: span 2; aspect-ratio: 16/9; }
.gallery-item:hover { transform: scale(1.02); box-shadow: 0 16px 40px rgba(0,0,0,0.45); }
.gallery-bg { width: 100%; height: 100%; }
.gi-1 { background: linear-gradient(135deg,#3d1a08,#5a2a0d,#1a0805); }
.gi-2 { background: linear-gradient(135deg,#0a1a0a,#0d300d,#051005); }
.gi-3 { background: linear-gradient(135deg,#080820,#10103d,#05050f); }
.gi-4 { background: linear-gradient(135deg,#1a1010,#302010,#0d0808); }
.gi-5 { background: linear-gradient(135deg,#201010,#3d1010,#100808); }
.gi-6 { background: linear-gradient(135deg,#101820,#102840,#080f18); }
.gallery-deco {
  position: absolute; inset: 0; display: flex;
  align-items: center; justify-content: center; opacity: 0.16;
}
.gallery-deco svg { width: 52px; height: 52px; color: var(--orange); }
.gallery-lbl {
  position: absolute; bottom: 10px; left: 10px;
  background: rgba(0,0,0,0.72); backdrop-filter: blur(8px);
  border-radius: 5px; padding: 4px 10px;
  font-size: 10px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase;
}
.lbl-before { color: #fbbf24; border: 1px solid rgba(251,191,36,0.3); }
.lbl-after  { color: #34d399; border: 1px solid rgba(52,211,153,0.3); }
.gallery-hover {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  opacity: 0; transition: opacity var(--transition);
}
.gallery-item:hover .gallery-hover { opacity: 1; }
.gallery-hover-icon {
  width: 46px; height: 46px; border-radius: 50%;
  background: rgba(249,115,22,0.9);
  display: flex; align-items: center; justify-content: center; color: #fff;
}

/* ========================================
   REVIEWS
   ======================================== */
#bewertungen { background: var(--navy); }
.reviews-top {
  display: flex; align-items: center; justify-content: space-between;
  gap: 20px; flex-wrap: wrap; margin-bottom: 36px;
}
.google-badge {
  display: flex; align-items: center; gap: 10px;
  background: var(--card); border: 1px solid var(--border);
  border-radius: 12px; padding: 12px 18px;
}
.google-g {
  font-size: 26px; font-weight: 700;
  background: linear-gradient(135deg,#4285F4,#EA4335,#FBBC04,#34A853);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.google-score { font-family: 'Barlow Condensed', sans-serif; font-size: 26px; font-weight: 800; }
.google-count { font-size: 12px; color: var(--gray); }
.reviews-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.review-card {
  background: var(--card); border: 1px solid var(--border);
  border-radius: 16px; padding: 22px; transition: all var(--transition);
}
.review-card:hover { border-color: rgba(249,115,22,0.3); transform: translateY(-3px); }
.review-stars { margin-bottom: 12px; font-size: 15px; }
.review-text  { font-size: 14px; color: rgba(255,255,255,0.8); line-height: 1.7; font-style: italic; margin-bottom: 18px; }
.reviewer     { display: flex; align-items: center; gap: 10px; }
.reviewer-av  { width: 36px; height: 36px; border-radius: 50%; background: var(--orange); display: flex; align-items: center; justify-content: center; font-family: 'Barlow Condensed', sans-serif; font-weight: 800; font-size: 14px; color: var(--navy); flex-shrink: 0; }
.reviewer-name { font-size: 14px; font-weight: 600; }
.reviewer-loc  { font-size: 12px; color: var(--gray); }

/* ========================================
   FAQ
   ======================================== */
#faq { background: var(--navy2); }
.faq-layout { display: grid; grid-template-columns: 1fr 360px; gap: 52px; align-items: start; }
.faq-list   { display: flex; flex-direction: column; gap: 10px; }
.faq-item   { background: var(--card); border: 1px solid var(--border); border-radius: 12px; overflow: hidden; transition: border-color var(--transition); }
.faq-item.open { border-color: rgba(249,115,22,0.4); }
.faq-q {
  padding: 18px 20px; display: flex; align-items: center; justify-content: space-between;
  cursor: pointer; font-size: 15px; font-weight: 600; gap: 14px; user-select: none;
}
.faq-arrow {
  flex-shrink: 0; width: 26px; height: 26px; border-radius: 6px;
  background: rgba(249,115,22,0.12); color: var(--orange);
  display: flex; align-items: center; justify-content: center;
  transition: transform 0.3s;
}
.faq-item.open .faq-arrow { transform: rotate(180deg); }
.faq-body { max-height: 0; overflow: hidden; transition: max-height 0.35s ease; }
.faq-item.open .faq-body { max-height: 220px; }
.faq-body-inner { padding: 0 20px 18px; font-size: 14px; color: var(--gray); line-height: 1.7; }

.faq-cta {
  background: var(--card); border: 1px solid var(--border);
  border-radius: 16px; padding: 28px; position: sticky; top: 88px;
}
.faq-cta h3 { font-family: 'Barlow Condensed', sans-serif; font-size: 22px; font-weight: 700; text-transform: uppercase; margin-bottom: 8px; }
.faq-cta p  { font-size: 14px; color: var(--gray); line-height: 1.65; margin-bottom: 22px; }
.faq-cta .btn { margin-bottom: 10px; }
.faq-cta .btn:last-child { margin-bottom: 0; }

/* ========================================
   CONTACT
   ======================================== */
#kontakt { background: var(--navy); }
.contact-hl { font-family: 'Barlow Condensed', sans-serif; font-size: clamp(24px, 3.5vw, 46px); font-weight: 800; text-transform: uppercase; line-height: 1.1; margin-bottom: 12px; }
.contact-sub { font-size: 15px; color: var(--gray); max-width: 500px; line-height: 1.7; margin-bottom: 40px; }
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; }

.contact-items { display: flex; flex-direction: column; gap: 12px; }
.contact-item {
  display: flex; align-items: flex-start; gap: 14px;
  padding: 16px; background: var(--card); border: 1px solid var(--border);
  border-radius: 12px; text-decoration: none; transition: all var(--transition);
}
.contact-item:hover { border-color: var(--orange); transform: translateX(4px); }
.contact-ico { width: 42px; height: 42px; flex-shrink: 0; border-radius: 10px; background: rgba(249,115,22,0.12); color: var(--orange); display: flex; align-items: center; justify-content: center; }
.contact-lbl { font-size: 11px; color: var(--gray); text-transform: uppercase; letter-spacing: 1px; font-weight: 600; }
.contact-val { font-size: 15px; font-weight: 600; }
.contact-hours { background: var(--card); border: 1px solid var(--border); border-radius: 12px; padding: 16px 18px; }
.contact-hours-title { font-size: 11px; color: var(--gray); text-transform: uppercase; letter-spacing: 1px; font-weight: 600; margin-bottom: 8px; }
.contact-hours-body { font-size: 14px; color: rgba(255,255,255,0.8); line-height: 1.85; }
.contact-hours-body strong { color: var(--orange); }
.contact-action-row { display: flex; gap: 10px; margin-top: 4px; }

/* Form */
.contact-form { display: flex; flex-direction: column; gap: 12px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.form-group { display: flex; flex-direction: column; gap: 5px; }
.form-group label { font-size: 11px; font-weight: 600; color: var(--gray); text-transform: uppercase; letter-spacing: 0.5px; }
.form-input, .form-select, .form-textarea {
  padding: 12px 15px; background: var(--card); border: 1px solid var(--border);
  border-radius: 10px; color: var(--white); font-size: 14px;
  font-family: 'Barlow', sans-serif; transition: border-color var(--transition); outline: none;
}
.form-input:focus, .form-select:focus, .form-textarea:focus { border-color: var(--orange); }
.form-select option { background: var(--card); }
.form-textarea { resize: vertical; min-height: 100px; }
.form-note { display: flex; align-items: center; gap: 7px; font-size: 12px; color: var(--gray); }
.form-note svg { color: var(--orange); flex-shrink: 0; }
.form-success { display: none; background: rgba(16,185,129,0.1); border: 1px solid rgba(16,185,129,0.3); border-radius: 10px; padding: 14px 18px; font-size: 14px; color: #34d399; }

/* ========================================
   CITIES / LOCAL SEO
   ======================================== */
#einsatzgebiet { background: var(--navy2); }
.cities-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.city-card {
  background: var(--card); border: 1px solid var(--border);
  border-radius: 12px; padding: 24px; transition: all var(--transition);
}
.city-card:hover { border-color: var(--orange); transform: translateY(-3px); box-shadow: 0 10px 28px rgba(249,115,22,0.1); }
.city-name { font-family: 'Barlow Condensed', sans-serif; font-size: 20px; font-weight: 800; text-transform: uppercase; margin-bottom: 7px; }
.city-dot  { width: 7px; height: 7px; border-radius: 50%; background: var(--orange); display: inline-block; margin-right: 7px; animation: pulse 2s infinite; }
.city-desc { font-size: 12px; color: var(--gray); line-height: 1.65; margin-bottom: 12px; }
.city-links { display: flex; flex-direction: column; gap: 5px; }
.city-link  { font-size: 12px; color: var(--orange); text-decoration: none; font-weight: 600; transition: opacity var(--transition); }
.city-link:hover { opacity: 0.7; }

/* ========================================
   FOOTER
   ======================================== */
footer {
  background: var(--navy2); border-top: 1px solid var(--border);
  padding: 60px 5% 28px;
}
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1.5fr; gap: 44px; max-width: 1200px; margin: 0 auto 44px; }
.footer-brand-desc { font-size: 13px; color: var(--gray); line-height: 1.7; margin: 14px 0 20px; max-width: 270px; }
.footer-socials { display: flex; gap: 8px; }
.social-ico { width: 36px; height: 36px; border-radius: 8px; border: 1px solid var(--border); display: flex; align-items: center; justify-content: center; color: var(--gray); text-decoration: none; transition: all var(--transition); }
.social-ico:hover { border-color: var(--orange); color: var(--orange); }
.footer-col h4 { font-family: 'Barlow Condensed', sans-serif; font-size: 13px; font-weight: 700; text-transform: uppercase; letter-spacing: 1.5px; margin-bottom: 16px; }
.footer-list { list-style: none; display: flex; flex-direction: column; gap: 9px; }
.footer-list a { font-size: 13px; color: var(--gray); text-decoration: none; transition: color var(--transition); }
.footer-list a:hover { color: var(--orange); }
.footer-contact-row { display: flex; align-items: flex-start; gap: 8px; margin-bottom: 10px; font-size: 13px; color: var(--gray); }
.footer-contact-row svg { color: var(--orange); flex-shrink: 0; margin-top: 2px; }
.footer-bottom { border-top: 1px solid var(--border); padding-top: 22px; max-width: 1200px; margin: 0 auto; display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 10px; }
.footer-bottom p { font-size: 12px; color: var(--gray2); }
.footer-legal { display: flex; gap: 20px; }
.footer-legal a { font-size: 12px; color: var(--gray2); text-decoration: none; }
.footer-legal a:hover { color: var(--orange); }

/* ========================================
   FLOATING & STICKY CTA
   ======================================== */
.float-wa {
  position: fixed; bottom: 28px; right: 28px; z-index: 999;
  width: 56px; height: 56px; border-radius: 50%;
  background: var(--wa); color: #fff; text-decoration: none;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 18px rgba(37,211,102,0.42);
  animation: waBounce 3s ease-in-out infinite;
  transition: transform var(--transition);
}
.float-wa:hover { transform: scale(1.1); animation: none; }

.mobile-cta-bar {
  display: none; position: fixed; bottom: 0; left: 0; right: 0; z-index: 998;
  background: var(--navy2); border-top: 1px solid var(--border);
  padding: 10px 14px; gap: 10px;
}
.mobile-cta-bar a {
  flex: 1; display: flex; align-items: center; justify-content: center; gap: 7px;
  padding: 12px; border-radius: 10px;
  font-size: 14px; font-weight: 700; text-decoration: none; color: #fff;
  font-family: 'Barlow', sans-serif;
}
.mcta-call { background: var(--card); border: 1px solid var(--border); }
.mcta-wa   { background: var(--wa); }

/* ========================================
   ANIMATIONS
   ======================================== */
@keyframes pulse {
  0%, 100% { opacity: 1; }
  50%       { opacity: 0.3; }
}
@keyframes waBounce {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-6px); }
}

/* Scroll reveal */
.reveal {
  opacity: 0; transform: translateY(20px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ========================================
   RESPONSIVE
   ======================================== */
@media (max-width: 1100px) {
  .trust-grid { grid-template-columns: repeat(3, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .why-grid   { grid-template-columns: 1fr; }
  .reviews-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 900px) {
  .nav-links, .nav-btn-call { display: none; }
  .hamburger { display: flex; }
  .faq-layout { grid-template-columns: 1fr; }
  .faq-cta { position: static; }
  .contact-grid { grid-template-columns: 1fr; }
  .cities-grid  { grid-template-columns: repeat(2, 1fr); }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-item.wide { grid-column: span 1; aspect-ratio: 4/3; }
  .services-intro { grid-template-columns: 1fr; gap: 0; }
  .hero-bg { background-position: 70% center; }
  .mobile-cta-bar { display: flex; }
  .float-wa { bottom: 86px; }
  .steps { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; }
  .reviews-grid { grid-template-columns: 1fr; }
}

@media (max-width: 600px) {
  section { padding: 60px 4%; }
  #vertrauen { padding: 28px 4%; }
  .trust-grid { grid-template-columns: repeat(2, 1fr); }
  .services-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .cities-grid  { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr; }
  .footer-grid  { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .hero-btns { flex-direction: column; }
  .hero-trust { gap: 7px; }
  .contact-action-row { flex-direction: column; }
  .why-stats { flex-direction: column; }
  nav { padding: 0 4%; }
}

/* ── Logo image ─────────────────────────────── */
.logo-img {
  width: 40px;
  height: 40px;
  object-fit: contain;
  border-radius: 8px;
  flex-shrink: 0;
}

/* ========================================
   BEFORE / AFTER SLIDER
   ======================================== */
.ba-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  max-width: 1200px;
  margin: 0 auto;
}

.ba-wrap { display: flex; flex-direction: column; gap: 0; }

.ba-slider {
  position: relative;
  width: 100%;
  aspect-ratio: 3/2;
  overflow: hidden;
  border-radius: 16px 16px 0 0;
  border: 1px solid var(--border);
  cursor: col-resize;
  user-select: none;
  -webkit-user-select: none;
  background: var(--card);
}

.ba-after,
.ba-before {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.ba-after  { z-index: 1; }
.ba-before { z-index: 2; width: 50%; }

.ba-after  img,
.ba-before img {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center;
  pointer-events: none;
  display: block;
}

/* "before" image must match full width so cropping works */
.ba-before img { width: auto; min-width: 100%; max-width: none; }

/* Handle */
.ba-handle {
  position: absolute;
  top: 0; bottom: 0;
  left: 50%;
  z-index: 3;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  pointer-events: none;
}

.ba-line {
  width: 3px;
  flex: 1;
  background: var(--white);
  box-shadow: 0 0 10px rgba(0,0,0,0.5);
}

.ba-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  box-shadow: 0 2px 12px rgba(0,0,0,0.35);
  color: var(--navy);
  flex-shrink: 0;
}

/* Range input – invisible but covers slider for interaction */
.ba-range {
  position: absolute;
  inset: 0;
  z-index: 4;
  width: 100%;
  height: 100%;
  opacity: 0;
  cursor: col-resize;
  margin: 0;
  padding: 0;
}

/* Labels bar */
.ba-labels {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 16px;
  background: var(--card);
  border: 1px solid var(--border);
  border-top: none;
  border-radius: 0 0 16px 16px;
}

.ba-lbl-before {
  font-size: 11px; font-weight: 700; letter-spacing: 1.5px;
  text-transform: uppercase; color: #fbbf24;
  background: rgba(251,191,36,0.12);
  padding: 3px 10px; border-radius: 4px;
  border: 1px solid rgba(251,191,36,0.25);
}

.ba-lbl-after {
  font-size: 11px; font-weight: 700; letter-spacing: 1.5px;
  text-transform: uppercase; color: #34d399;
  background: rgba(52,211,153,0.12);
  padding: 3px 10px; border-radius: 4px;
  border: 1px solid rgba(52,211,153,0.25);
}

.ba-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 15px; font-weight: 700; text-transform: uppercase;
  color: var(--white); letter-spacing: 0.5px;
}

.ba-more-hint {
  text-align: center;
  font-size: 14px;
  color: var(--gray2);
  margin-top: 28px;
}

/* Responsive */
@media (max-width: 600px) {
  .ba-grid { grid-template-columns: 1fr; }
}
