/* ============================================================
   MERZA DIENSTLEISTUNGEN – styles.css  v3
   Sauber, professionell, typisch Reinigungsfirma Deutschland
   ============================================================ */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; min-width: 0; }

:root {
  --gold:       #C9A020;
  --gold-hover: #a07c12;
  --gold-bg:    #fdf8ec;
  --dark:       #0d1b2a;
  --text:       #2c2c2c;
  --muted:      #666;
  --border:     #e5e0d5;
  --bg:         #ffffff;
  --bg-alt:     #f6f5f2;
  --r:          8px;
  --t:          .2s ease;
}

html { scroll-behavior: smooth; overflow-x: clip; }
body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  color: var(--text); background: var(--bg);
  line-height: 1.6; overflow-x: clip;
  padding-top: 90px;
}

/* VISITED: kein lila Aufleuchten */
a { text-decoration: none; color: inherit; }
a:visited { color: inherit; }

/* ── TYPE ── */
h1 { font-size: clamp(2.4rem, 5vw, 3.8rem); font-weight: 900; line-height: 1.08; letter-spacing: -.03em; }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.8rem); font-weight: 800; line-height: 1.15; letter-spacing: -.02em; color: var(--dark); }
h3 { font-size: 1.05rem; font-weight: 700; color: var(--dark); }
p  { color: var(--muted); font-size: .96rem; line-height: 1.78; }

/* ── UTILS ── */
.container { max-width: 1180px; margin: 0 auto; padding: 0 32px; }
.section   { padding: 88px 0; }
.bg-alt    { background: var(--bg-alt); }
img        { max-width: 100%; display: block; }

.label {
  display: inline-block;
  font-size: .67rem; font-weight: 800; letter-spacing: .2em;
  text-transform: uppercase; color: var(--gold);
  margin-bottom: .9rem;
}

/* ── BUTTONS ── */
.btn-primary {
  display: inline-flex; align-items: center; gap: 9px;
  background: var(--gold); color: #fff;
  font-family: inherit; font-size: .94rem; font-weight: 700;
  padding: 14px 28px; border-radius: var(--r);
  border: none; cursor: pointer; white-space: nowrap;
  transition: background var(--t), transform var(--t), box-shadow var(--t);
}
.btn-primary:visited { color: #fff; }
.btn-primary:hover { background: var(--gold-hover); transform: translateY(-1px); box-shadow: 0 6px 20px rgba(201,160,32,.3); }

.btn-secondary {
  display: inline-flex; align-items: center; gap: 9px;
  background: transparent; color: var(--dark);
  font-family: inherit; font-size: .94rem; font-weight: 700;
  padding: 13px 27px; border-radius: var(--r);
  border: 2px solid var(--dark); cursor: pointer; white-space: nowrap;
  transition: background var(--t), color var(--t);
}
.btn-secondary:hover { background: var(--dark); color: #fff; }

.btn-white {
  display: inline-flex; align-items: center; gap: 9px;
  background: #fff; color: var(--dark);
  font-family: inherit; font-size: .94rem; font-weight: 700;
  padding: 14px 28px; border-radius: var(--r);
  border: none; cursor: pointer; white-space: nowrap;
  transition: background var(--t), transform var(--t);
}
.btn-white:visited { color: var(--dark); }
.btn-white:hover { background: var(--gold-bg); transform: translateY(-1px); }


/* ══════════════════════════════════════════
   NAVBAR
══════════════════════════════════════════ */
.navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 300;
  background: #fff;
  border-bottom: 3px solid var(--gold);
  box-shadow: 0 2px 24px rgba(0,0,0,.06);
  overflow: visible;
}
.nav-inner {
  max-width: 1180px; margin: 0 auto; padding: 0 32px;
  height: 90px; display: flex; align-items: center; gap: 24px;
}
.logo-link { display: flex; align-items: center; flex-shrink: 0; }
.logo-img   { height: 220px; width: auto; }

.nav-links {
  display: flex; list-style: none; gap: 2px; margin-left: auto;
}
.nav-links a {
  display: block; color: var(--muted);
  font-size: .88rem; font-weight: 600;
  padding: 7px 14px; border-radius: 6px;
  transition: color var(--t), background var(--t);
}
.nav-links a:hover,
.nav-links a.active { color: var(--gold); }

.nav-right { display: flex; align-items: center; gap: 14px; flex-shrink: 0; }

.nav-tel {
  display: flex; flex-direction: column; line-height: 1.15; align-items: flex-end;
}
.nav-tel-label { font-size: .6rem; font-weight: 700; text-transform: uppercase; letter-spacing: .1em; color: #bbb; }
.nav-tel-num {
  font-size: 1.1rem; font-weight: 900; color: var(--dark);
  transition: color var(--t);
}
.nav-tel-num:hover { color: var(--gold); }

.burger {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: none;
  cursor: pointer; padding: 6px;
}
.burger span { display: block; width: 22px; height: 2px; background: var(--dark); border-radius: 2px; transition: transform .3s, opacity .3s; }
.burger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.burger.active span:nth-child(2) { opacity: 0; }
.burger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }


/* ══════════════════════════════════════════
   HERO  — Zwei-Spalten Split
══════════════════════════════════════════ */
.hero-wrap {
  display: grid;
  grid-template-columns: 48% 52%;
  min-height: calc(100vh - 90px);
  margin-top: -90px; /* hinter Navbar schieben */
}

/* Linke dunkle Panel */
.hero-left {
  background: var(--dark);
  display: flex; flex-direction: column; justify-content: center;
  padding: 140px 56px 80px 48px;
  position: relative; z-index: 1;
}
.hero-logo-bg {
  position: absolute; top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 85%; max-width: 460px;
  opacity: 0.07; filter: brightness(0) invert(1);
  pointer-events: none; user-select: none; z-index: -1;
}
.hero-left::after {
  content: '';
  position: absolute; top: 0; right: -48px; bottom: 0; width: 96px;
  background: var(--dark);
  clip-path: polygon(0 0, 50% 0, 100% 100%, 0 100%);
  z-index: 2;
}

.hero-tag {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(201,160,32,.15); border: 1px solid rgba(201,160,32,.35);
  color: var(--gold); font-size: .7rem; font-weight: 800; letter-spacing: .15em; text-transform: uppercase;
  padding: 6px 14px; border-radius: 100px; margin-bottom: 1.6rem;
  width: fit-content;
  animation: fadeIn .6s ease .1s both;
}

.hero-left h1 {
  color: #fff; margin-bottom: 1.2rem;
  animation: fadeIn .6s ease .25s both;
}
.hero-left h1 span { color: var(--gold); }

.hero-sub {
  color: rgba(255,255,255,.58); font-size: 1rem; max-width: 420px;
  margin-bottom: 2rem; line-height: 1.8;
  animation: fadeIn .6s ease .4s both;
}

.hero-btns {
  display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 2.5rem;
  animation: fadeIn .6s ease .55s both;
}

.hero-phone-big {
  display: flex; align-items: center; gap: 12px;
  padding-top: 2rem; border-top: 1px solid rgba(255,255,255,.1);
  animation: fadeIn .6s ease .7s both;
}
.hero-phone-icon {
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--gold); display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.hero-phone-icon svg { stroke: #fff; fill: none; width: 20px; height: 20px; }
.hero-phone-label { font-size: .68rem; font-weight: 700; text-transform: uppercase; letter-spacing: .1em; color: rgba(255,255,255,.4); }
.hero-phone-num { font-size: 1.35rem; font-weight: 900; color: #fff; letter-spacing: .01em; }

/* Rechte Foto-Panel */
.hero-right {
  position: relative; overflow: hidden;
  background-color: #1a2535;
}
.hero-right img {
  width: 100%; height: 100%; object-fit: cover; object-position: center;
  display: block;
}
.hero-right::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(to right, rgba(13,27,42,.5) 0%, rgba(0,0,0,.1) 60%);
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}


/* ══════════════════════════════════════════
   USP STREIFEN
══════════════════════════════════════════ */
.usp-bar { background: var(--gold); padding: 16px 0; }
.usp-inner {
  max-width: 1180px; margin: 0 auto; padding: 0 32px;
  display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 8px;
}
.usp-item {
  display: flex; align-items: center; gap: 8px;
  color: #fff; font-size: .82rem; font-weight: 700;
  padding: 4px 0;
}
.usp-item svg { width: 15px; height: 15px; stroke: rgba(255,255,255,.7); fill: none; stroke-width: 3; }


/* ══════════════════════════════════════════
   LEISTUNGEN
══════════════════════════════════════════ */
.section-head { margin-bottom: 44px; }
.section-head h2 { margin-bottom: .5rem; }
.section-head p { max-width: 540px; }

/* ══ LEISTUNGEN — Zigzag Layout ══ */
.services-alt {
  border: 1.5px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
  margin-top: 8px;
}

.svc-row {
  display: flex;
  height: 420px;
  border-bottom: 1.5px solid var(--border);
}
.svc-row:last-child { border-bottom: none; }
.svc-row.rev { flex-direction: row-reverse; }

/* Bild-Seite */
.svc-img {
  flex: 0 0 50%;
  position: relative; overflow: hidden;
  background: var(--dark);
}
.svc-img img {
  width: 100%; height: 100%; object-fit: cover;
  display: block;
  transition: transform .5s ease;
}
.svc-row:hover .svc-img img { transform: scale(1.04); }

/* Text-Seite */
.svc-text {
  flex: 1;
  padding: 52px 56px;
  display: flex; flex-direction: column; justify-content: center; gap: 18px;
  background: #fff;
}
.svc-row:nth-child(even) .svc-text { background: var(--bg-alt); }

.svc-num {
  font-size: .63rem; font-weight: 800; letter-spacing: .22em;
  text-transform: uppercase; color: var(--gold); opacity: .7;
}
.svc-icon-title {
  display: flex; align-items: center; gap: 16px;
}
.svc-icon {
  width: 54px; height: 54px; border-radius: 14px; flex-shrink: 0;
  background: var(--gold-bg);
  display: flex; align-items: center; justify-content: center;
}
.svc-icon svg { width: 26px; height: 26px; stroke: var(--gold); fill: none; stroke-width: 1.8; }
.svc-text h3 {
  font-size: clamp(1.3rem, 2.5vw, 1.75rem);
  font-weight: 800; color: var(--dark); letter-spacing: -.02em;
}
.svc-text p { font-size: .97rem; color: var(--muted); max-width: 380px; line-height: 1.8; }
.svc-btn {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--gold); color: #fff;
  font-family: inherit; font-size: .88rem; font-weight: 700;
  padding: 11px 22px; border-radius: var(--r);
  width: fit-content; border: none; cursor: pointer;
  transition: background var(--t), transform var(--t);
}
.svc-btn:visited { color: #fff; }
.svc-btn:hover { background: var(--gold-hover); transform: translateY(-1px); }
.svc-btn svg { stroke: #fff; fill: none; stroke-width: 2.5; }


/* ══════════════════════════════════════════
   STATS ROW
══════════════════════════════════════════ */
.stats-row {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 1px; background: var(--border);
  border: 1.5px solid var(--border); border-radius: 14px; overflow: hidden;
  margin: 64px 0 0;
}
.stat-box {
  background: #fff; padding: 32px 24px; text-align: center;
}
.stat-num {
  font-size: 2.6rem; font-weight: 900; color: var(--gold);
  letter-spacing: -.03em; line-height: 1; display: block; margin-bottom: 6px;
}
.stat-label { font-size: .78rem; font-weight: 700; color: var(--muted); text-transform: uppercase; letter-spacing: .1em; }


/* ══════════════════════════════════════════
   WARUM WIR
══════════════════════════════════════════ */
.warum-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px;
  margin-top: 44px;
}
.warum-card {
  background: #fff; border: 1.5px solid var(--border);
  border-radius: 12px; padding: 28px 22px;
  transition: box-shadow .25s, border-color .25s;
}
.warum-card:hover { box-shadow: 0 6px 24px rgba(0,0,0,.08); border-color: var(--gold); }
.warum-icon {
  width: 52px; height: 52px; border-radius: 12px;
  background: var(--gold-bg); margin-bottom: 16px;
  display: flex; align-items: center; justify-content: center;
}
.warum-icon svg { width: 24px; height: 24px; stroke: var(--gold); fill: none; stroke-width: 1.8; }
.warum-card h3 { margin-bottom: 8px; }


/* ══════════════════════════════════════════
   ÜBER UNS
══════════════════════════════════════════ */
.about-wrap {
  display: block;
}
.about-img-side { position: relative; }
.about-img-box {
  border-radius: 16px; overflow: hidden; aspect-ratio: 4/5;
  border: 2px solid var(--border);
  background: linear-gradient(135deg, var(--dark) 0%, #152838 100%);
  display: flex; align-items: center; justify-content: center;
}
.about-img-box img { width: 100%; height: 100%; object-fit: cover; }
.about-placeholder { display: flex; flex-direction: column; align-items: center; gap: 16px; padding: 40px; }
.about-placeholder img { width: 130px; opacity: .5; filter: brightness(0) invert(1); }
.about-placeholder span { font-size: .8rem; color: rgba(255,255,255,.35); text-transform: uppercase; letter-spacing: .12em; }

.about-badge-box {
  position: absolute; bottom: -18px; right: -18px;
  background: var(--gold); border-radius: 12px; padding: 16px 20px; text-align: center;
  box-shadow: 0 8px 28px rgba(201,160,32,.35);
}
.about-badge-num { font-size: 2.2rem; font-weight: 900; color: #fff; display: block; line-height: 1; }
.about-badge-label { font-size: .65rem; font-weight: 800; color: rgba(255,255,255,.8); text-transform: uppercase; letter-spacing: .1em; }

.about-text > h2 { margin-bottom: 1rem; }
.about-text > p  { margin-bottom: 1rem; }
.check-list { list-style: none; display: flex; flex-direction: column; gap: 10px; margin: 1.4rem 0 2rem; }
.check-list li { display: flex; align-items: flex-start; gap: 10px; font-size: .93rem; font-weight: 500; color: var(--text); }
.check-icon { width: 20px; height: 20px; border-radius: 50%; background: var(--gold-bg); flex-shrink: 0; margin-top: 2px; display: flex; align-items: center; justify-content: center; }
.check-icon svg { width: 11px; height: 11px; stroke: var(--gold); fill: none; stroke-width: 3; }


/* ══════════════════════════════════════════
   BEWERTUNGEN
══════════════════════════════════════════ */
.reviews-carousel {
  position: relative;
  margin-top: 44px;
  padding: 0 60px;
}
.reviews-outer {
  overflow-x: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
  cursor: grab;
}
.reviews-outer:active { cursor: grabbing; }
.reviews-outer::-webkit-scrollbar { display: none; }
.reviews-track {
  display: flex;
  gap: 20px;
  padding: 8px 0 16px;
  width: max-content;
}
.review-card {
  background: #fff; border: 1.5px solid var(--border); border-radius: 14px; padding: 26px;
  width: 280px; flex-shrink: 0;
  box-shadow: 0 2px 12px rgba(0,0,0,.04);
  transition: box-shadow var(--t);
}
.review-card:hover { box-shadow: 0 6px 24px rgba(0,0,0,.09); }
.review-stars { font-size: 1rem; color: var(--gold); letter-spacing: 2px; margin-bottom: 12px; }
.review-text { font-size: .88rem; color: var(--muted); line-height: 1.75; font-style: italic; margin-bottom: 16px; }
.review-author { display: flex; align-items: center; gap: 12px; padding-top: 14px; border-top: 1px solid var(--border); }
.review-avatar { width: 38px; height: 38px; border-radius: 50%; background: var(--gold); display: flex; align-items: center; justify-content: center; font-size: .88rem; font-weight: 900; color: #fff; flex-shrink: 0; }
.review-name { font-size: .86rem; font-weight: 700; color: var(--dark); }
.review-loc  { font-size: .75rem; color: #aaa; }
.rev-nav {
  position: absolute; top: 50%; transform: translateY(-50%);
  width: 42px; height: 42px; border-radius: 50%;
  background: #fff; border: 1.5px solid var(--border);
  box-shadow: 0 2px 10px rgba(0,0,0,.1);
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; z-index: 10; color: var(--dark);
  transition: background var(--t), color var(--t), border-color var(--t);
}
.rev-nav:hover { background: var(--gold); color: #fff; border-color: var(--gold); }
.rev-prev { left: 8px; }
.rev-next { right: 8px; }


/* ══════════════════════════════════════════
   KONTAKT CTA
══════════════════════════════════════════ */
.cta-section { background: var(--dark); padding: 80px 0; }
.cta-inner {
  display: flex; align-items: center; justify-content: space-between;
  gap: 40px; flex-wrap: wrap;
}
.cta-left h2 { color: #fff; margin-bottom: .5rem; font-size: clamp(1.6rem, 3.5vw, 2.6rem); }
.cta-left p  { color: rgba(255,255,255,.5); }
.cta-right { display: flex; flex-direction: column; gap: 12px; align-items: flex-end; flex-shrink: 0; }
.cta-tel-link {
  display: flex; align-items: center; gap: 10px;
  color: rgba(255,255,255,.5); font-size: .88rem; font-weight: 500;
  transition: color var(--t);
}
.cta-tel-link:hover { color: var(--gold); }
.cta-tel-link svg { stroke: var(--gold); fill: none; }


/* ══════════════════════════════════════════
   FOOTER
══════════════════════════════════════════ */
footer { background: var(--dark); padding: 48px 0 28px; }
.footer-inner { max-width: 1180px; margin: 0 auto; padding: 0 32px; }
.footer-top {
  display: flex; align-items: center; justify-content: space-between; gap: 24px;
  flex-wrap: wrap; padding-bottom: 32px; border-bottom: 1px solid rgba(255,255,255,.07); margin-bottom: 28px;
}
.footer-logo-wrap { display: inline-flex; align-items: center; }
.footer-logo { height: 160px; width: auto; filter: brightness(0) invert(1); }
.footer-links { display: flex; gap: 20px; flex-wrap: wrap; list-style: none; }
.footer-links a { font-size: .82rem; color: rgba(255,255,255,.38); transition: color var(--t); }
.footer-links a:hover { color: var(--gold); }
.footer-contact { display: flex; flex-direction: column; gap: 5px; text-align: right; }
.footer-contact a { font-size: .82rem; color: rgba(255,255,255,.38); transition: color var(--t); }
.footer-contact a:hover { color: var(--gold); }
.footer-copy { font-size: .75rem; color: rgba(255,255,255,.22); }


/* ══════════════════════════════════════════
   WHATSAPP BUTTON
══════════════════════════════════════════ */
.wa-float {
  position: fixed; bottom: 24px; right: 24px; z-index: 500;
  display: flex; align-items: center; gap: 10px;
  background: #25D366; color: #fff;
  font-size: .86rem; font-weight: 700;
  padding: 13px 20px; border-radius: 100px;
  box-shadow: 0 4px 20px rgba(37,211,102,.4);
  transition: transform .2s, box-shadow .2s;
}
.wa-float:hover { transform: translateY(-2px); box-shadow: 0 8px 28px rgba(37,211,102,.5); color: #fff; }
.wa-float svg { width: 22px; height: 22px; fill: #fff; flex-shrink: 0; }


/* ══════════════════════════════════════════
   SCROLL ANIMATIONEN
══════════════════════════════════════════ */
[data-animate] {
  opacity: 0; transform: translateY(24px);
  transition: opacity .6s cubic-bezier(0.22,1,0.36,1), transform .6s cubic-bezier(0.22,1,0.36,1);
}
[data-animate].visible { opacity: 1; transform: translateY(0); }


/* ══════════════════════════════════════════
   KONTAKT SEITE
══════════════════════════════════════════ */
.contact-hero {
  background: var(--dark); padding: 220px 0 56px; text-align: center;
  margin-top: -90px;
}
.contact-hero h1 { color: #fff; font-size: clamp(2rem, 5vw, 3.2rem); margin-bottom: .7rem; }
.contact-hero p  { color: rgba(255,255,255,.5); max-width: 440px; margin: 0 auto; }

.contact-grid { display: grid; grid-template-columns: 1fr 1.7fr; gap: 60px; align-items: start; padding: 80px 0 100px; }
.contact-info h3 { font-size: 1.3rem; margin-bottom: 1.4rem; }
.contact-info-item { display: flex; align-items: flex-start; gap: 14px; margin-bottom: 20px; }
.ci-icon { width: 40px; height: 40px; border-radius: 10px; background: var(--gold-bg); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.ci-icon svg { width: 18px; height: 18px; stroke: var(--gold); fill: none; stroke-width: 2; }
.ci-text label { display: block; font-size: .68rem; font-weight: 800; text-transform: uppercase; letter-spacing: .1em; color: var(--gold); margin-bottom: 3px; }
.ci-text a, .ci-text span { font-size: .95rem; color: var(--text); font-weight: 600; }
.ci-text a:hover { color: var(--gold); }

.contact-form-box { background: #fff; border: 1.5px solid var(--border); border-radius: 16px; padding: 40px; box-shadow: 0 4px 32px rgba(0,0,0,.06); }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.form-group { display: flex; flex-direction: column; gap: 5px; }
.form-group.full { grid-column: 1/-1; }
.form-group label { font-size: .69rem; font-weight: 800; text-transform: uppercase; letter-spacing: .08em; color: var(--muted); }
.form-group input,
.form-group select,
.form-group textarea {
  font-family: inherit; font-size: .94rem; color: var(--text);
  background: var(--bg-alt); border: 1.5px solid var(--border); border-radius: var(--r);
  padding: 11px 13px; outline: none; width: 100%;
  transition: border-color var(--t), box-shadow var(--t);
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: var(--gold); box-shadow: 0 0 0 3px rgba(201,160,32,.12); background: #fff; }
.form-group textarea { resize: vertical; min-height: 120px; }
.form-group select { cursor: pointer; appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%23999' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 13px center; padding-right: 34px; }
#form-submit-btn { width: 100%; justify-content: center; padding: 14px; font-size: 1rem; margin-top: 6px; }
#form-status { margin-top: 10px; padding: 11px 14px; border-radius: 8px; font-size: .88rem; font-weight: 500; display: none; }
#form-status.form-success { display: block; background: #f0fdf4; color: #15803d; border: 1.5px solid #86efac; }
#form-status.form-error   { display: block; background: #fef2f2; color: #dc2626; border: 1.5px solid #fca5a5; }


/* ══════════════════════════════════════════
   LEGAL PAGES
══════════════════════════════════════════ */
.legal-page { max-width: 740px; margin: 0 auto; padding: 56px 32px 96px; }
.legal-page h1 { font-size: 2rem; color: var(--dark); margin-bottom: 1.8rem; }
.legal-page h2 { font-size: 1.2rem; margin: 2rem 0 .5rem; }
.legal-page p, .legal-page li { font-size: .94rem; color: var(--muted); line-height: 1.8; }
.legal-page ul { padding-left: 1.3rem; margin-bottom: .8rem; }
.legal-page a { color: var(--gold); }


/* ══════════════════════════════════════════
   COOKIE BANNER
══════════════════════════════════════════ */
#cookie-banner {
  position: fixed; inset: 0; z-index: 1000;
  background: rgba(0,0,0,.5);
  display: flex; align-items: flex-end; justify-content: center; padding: 20px;
  opacity: 0; pointer-events: none; transition: opacity .35s;
}
#cookie-banner.cb-show { opacity: 1; pointer-events: auto; }
.cb-modal { background: #fff; border-radius: 14px; max-width: 540px; width: 100%; padding: 26px 30px; box-shadow: 0 20px 60px rgba(0,0,0,.2); transform: translateY(16px); transition: transform .35s; }
#cookie-banner.cb-show .cb-modal { transform: translateY(0); }
.cb-modal h3 { font-size: 1rem; font-weight: 700; color: var(--dark); margin-bottom: .6rem; }
.cb-text { font-size: .85rem; color: var(--muted); line-height: 1.7; margin-bottom: 1.2rem; }
.cb-text a { color: var(--gold); }
.cb-btns { display: flex; gap: 8px; justify-content: flex-end; }
.cb-btns button { font-family: inherit; font-size: .85rem; font-weight: 700; padding: 8px 18px; border-radius: 7px; cursor: pointer; border: none; transition: background var(--t); }
#cb-decline { background: var(--bg-alt); color: var(--muted); border: 1.5px solid var(--border); }
#cb-decline:hover { background: var(--border); }
#cb-accept { background: var(--gold); color: #fff; }
#cb-accept:hover { background: var(--gold-hover); }


/* ══════════════════════════════════════════
   MOBILE NAV
══════════════════════════════════════════ */
@media (max-width: 960px) {
  .nav-links {
    position: absolute; top: 100%; left: 0; right: 0;
    background: #fff; flex-direction: column;
    padding: 12px 20px 20px; gap: 4px;
    border-bottom: 3px solid var(--gold);
    display: none;
    box-shadow: 0 8px 24px rgba(0,0,0,.1);
  }
  .nav-links.open { display: flex; }
  .nav-links a { color: var(--text); padding: 14px 14px; font-size: 1rem; min-height: 48px; display: flex; align-items: center; }
  .nav-links a:hover { background: var(--bg-alt); color: var(--gold); }
  .burger { display: flex; }
  .nav-right { margin-left: auto; }
  .btn-primary.nav-cta { display: none; }
}


/* ══════════════════════════════════════════
   RESPONSIVE
══════════════════════════════════════════ */
@media (max-width: 1024px) {
  .warum-grid { grid-template-columns: repeat(2, 1fr); }
  .stats-row { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 860px) {
  .nav-tel { display: none; }
  .logo-img { height: 80px; }
  .hero-wrap { grid-template-columns: 55% 45%; min-height: 480px; }
  .hero-left { padding: 120px 24px 40px 28px; }
  .hero-left::after { right: -28px; width: 56px; }
  .hero-right { min-height: 480px; }
  .svc-row, .svc-row.rev { flex-direction: column; height: auto; }
  .svc-img { flex: none; height: 240px; }
  .svc-text { padding: 28px 22px; }
  .about-wrap { grid-template-columns: 1fr; gap: 40px; }
  .about-img-side { max-width: 380px; }
  .about-badge-box { right: 0; }
  .reviews-carousel { padding: 0 44px; }
  .contact-grid { grid-template-columns: 1fr; gap: 36px; }
  .cta-inner { flex-direction: column; text-align: center; }
  .cta-right { align-items: center; }
}

@media (max-width: 600px) {
  body { padding-top: 70px; }
  .nav-inner { height: 70px; }
  .hero-wrap { margin-top: -70px; }
  .contact-hero { margin-top: -70px; padding-top: 140px; }
  .logo-img { height: 54px; }
  .nav-tel { display: none; }
  .nav-cta { display: none; }
  .section { padding: 60px 0; }
  .container { padding: 0 18px; }
  .hero-wrap { grid-template-columns: 58% 42%; min-height: 420px; }
  .hero-left { padding: 100px 14px 28px 18px; }
  .hero-left::after { right: -20px; width: 40px; }
  .hero-right { min-height: 420px; }
  .hero-sub { font-size: .82rem; }
  .hero-btns { gap: 8px; }
  .hero-btns .btn-primary, .hero-btns .btn-white { font-size: .8rem; padding: 10px 14px; }
  .hero-phone-big { padding-top: 1rem; gap: 8px; }
  .hero-phone-icon { width: 34px; height: 34px; }
  .hero-phone-icon svg { width: 16px; height: 16px; }
  .hero-phone-label { font-size: .6rem; }
  .hero-phone-num { font-size: 1rem; }
  .svc-text { padding: 28px 20px; }
  .warum-grid { grid-template-columns: 1fr 1fr; gap: 12px; }
  .stats-row { grid-template-columns: 1fr 1fr; }
  .reviews-carousel { padding: 0 36px; }
  .review-card { width: 240px; }
  .contact-form-box { padding: 24px 18px; }
  .form-grid { grid-template-columns: 1fr; }
  .footer-top { flex-direction: column; align-items: flex-start; }
  .footer-contact { text-align: left; }
  .usp-inner { gap: 4px; }
  .usp-item { font-size: .76rem; }
  .wa-float span { display: none; }
  .wa-float { padding: 14px; border-radius: 50%; }
}
