:root {
  --navy: #1a4678;
  --navy-dark: #0f2c4d;
  --navy-light: #2c5f9e;
  --wine: #7d3f4a;
  --sage: #7f9457;
  --sage-light: #eef1e6;
  --bg: #faf9f6;
  --bg-alt: #f2efe9;
  --ink: #1c2530;
  --muted: #5c6672;
  --line: #e6e2da;
  --radius: 14px;
  --shadow: 0 10px 30px -12px rgba(15, 44, 77, 0.18);
  --container: 1160px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.55;
}

h1, h2, h3 {
  font-family: 'Outfit', 'Inter', sans-serif;
  line-height: 1.15;
  margin: 0 0 .5em;
  color: var(--navy-dark);
}

p { margin: 0 0 1em; }
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { margin: 0; padding: 0; list-style: none; }

.wrap {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

.eyebrow {
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  font-size: .8rem;
  color: var(--sage);
  margin: 0 0 .6em;
}
.eyebrow-center { text-align: center; }

.section { padding: 88px 0; }
.section-alt { background: var(--bg-alt); }
.section-title {
  font-size: clamp(1.7rem, 3vw, 2.4rem);
  text-align: center;
}
.section-sub {
  text-align: center;
  color: var(--muted);
  max-width: 560px;
  margin: 0 auto 3rem;
  font-size: 1.05rem;
}
#leistungen .section-title,
#ablauf .section-title,
#galerie .section-title,
#bewertungen .section-title { margin-bottom: .4em; }

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: .5em;
  padding: .75em 1.4em;
  border-radius: 999px;
  font-weight: 600;
  font-size: .95rem;
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: transform .15s ease, box-shadow .15s ease, background .15s ease;
  white-space: nowrap;
}
.btn svg { width: 18px; height: 18px; flex-shrink: 0; }
.btn:hover { transform: translateY(-1px); }
.btn-lg { padding: .95em 1.8em; font-size: 1.02rem; }

.btn-whatsapp {
  background: #25D366;
  color: #fff;
}
.btn-whatsapp:hover { box-shadow: 0 8px 20px -6px rgba(37,211,102,.55); }

.btn-primary {
  background: var(--navy);
  color: #fff;
}
.btn-primary:hover { box-shadow: 0 10px 24px -8px rgba(26,70,120,.55); background: var(--navy-light); }

.btn-ghost {
  background: rgba(255,255,255,.08);
  border-color: rgba(255,255,255,.55);
  color: #fff;
}
.btn-ghost:hover { background: rgba(255,255,255,.18); }

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(250,249,246,.9);
  backdrop-filter: saturate(180%) blur(10px);
  border-bottom: 1px solid var(--line);
}
.header-inner {
  display: flex;
  align-items: center;
  gap: 24px;
  padding-top: 12px;
  padding-bottom: 12px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-right: auto;
}
.brand-logo-full { height: 40px; width: auto; display: block; }

.main-nav { display: flex; gap: 28px; }
.main-nav a {
  font-weight: 500;
  font-size: .95rem;
  color: var(--ink);
  position: relative;
  padding: 4px 0;
}
.main-nav a:hover { color: var(--navy); }

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 38px;
  height: 38px;
  background: none;
  border: 1px solid var(--line);
  border-radius: 8px;
  cursor: pointer;
}
.nav-toggle span {
  display: block;
  height: 2px;
  background: var(--navy-dark);
  margin: 0 8px;
  transition: transform .2s ease, opacity .2s ease;
}

/* Hero */
.hero {
  position: relative;
  min-height: 86vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  color: #fff;
}
.hero-bg {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: 78% 58%;
  transform: scale(1.02);
}
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(115deg, rgba(15,30,50,.94) 0%, rgba(15,44,77,.86) 40%, rgba(15,44,77,.55) 75%, rgba(15,44,77,.35) 100%);
}
.hero-inner { position: relative; z-index: 1; padding-top: 60px; padding-bottom: 60px; max-width: 720px; margin-left: 0; margin-right: auto; }
.hero .eyebrow { color: #cfe0d0; }
.hero h1 { color: #fff; font-size: clamp(2.1rem, 5vw, 3.4rem); }
.hero h1 span { color: #d8c9b3; }
.hero-sub { color: rgba(255,255,255,.85); font-size: 1.08rem; max-width: 560px; margin-top: .3em; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin: 1.6em 0 1.8em; }
.hero-trust { display: flex; align-items: center; gap: 10px; font-size: .92rem; color: rgba(255,255,255,.85); }
.stars { color: #f2c94c; letter-spacing: 2px; }

/* Trust strip */
.strip { background: var(--navy-dark); color: #fff; padding: 26px 0; }
.strip-inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.strip-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: .88rem;
  font-weight: 500;
  color: rgba(255,255,255,.92);
}
.strip-item svg { width: 22px; height: 22px; color: #a9c98a; flex-shrink: 0; }

/* Services */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.service-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 30px 24px;
  transition: transform .18s ease, box-shadow .18s ease;
}
.service-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.service-icon {
  width: 52px; height: 52px;
  border-radius: 12px;
  background: var(--sage-light);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 18px;
  color: var(--navy);
}
.service-icon svg { width: 26px; height: 26px; }
.service-card h3 { font-size: 1.1rem; margin-bottom: .4em; }
.service-card p { color: var(--muted); font-size: .93rem; margin: 0; }
.service-list { margin-top: 1.1em !important; padding-top: 1.1em; border-top: 1px solid var(--line); gap: 9px !important; }
.service-list li { font-size: .88rem !important; font-weight: 500; padding-left: 26px !important; }
.service-list li::before { width: 15px !important; height: 15px !important; top: 2px !important; }

/* Free-quote banner */
.quote-banner {
  display: flex;
  align-items: center;
  gap: 20px;
  max-width: 820px;
  margin: 34px auto 0;
  background: var(--sage-light);
  border: 1px solid rgba(127,148,87,.3);
  border-radius: var(--radius);
  padding: 22px 28px;
}
.quote-banner-icon {
  width: 44px; height: 44px;
  flex-shrink: 0;
  border-radius: 50%;
  background: #fff;
  display: flex; align-items: center; justify-content: center;
  color: var(--sage);
}
.quote-banner-icon svg { width: 22px; height: 22px; }
.quote-banner strong { display: block; font-family: 'Outfit', sans-serif; font-size: 1.02rem; color: var(--navy-dark); margin-bottom: 2px; }
.quote-banner span { font-size: .9rem; color: var(--muted); }

/* Steps */
.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}
.step { text-align: center; padding: 0 10px; }
.step-num {
  width: 46px; height: 46px;
  border-radius: 50%;
  background: var(--navy);
  color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  margin: 0 auto 16px;
}
.step h3 { font-size: 1.1rem; }
.step p { color: var(--muted); font-size: .93rem; }

/* Gallery */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 220px;
  gap: 16px;
}
.gallery-item {
  margin: 0;
  overflow: hidden;
  border-radius: var(--radius);
}
.gallery-wide { grid-column: span 2; grid-row: span 2; }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s ease; }
.gallery-item:hover img { transform: scale(1.06); }

/* Reviews */
.rating-summary {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-size: .98rem;
  color: var(--muted);
  margin-bottom: 3rem;
}
.rating-summary strong { color: var(--navy-dark); }

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.review-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 26px 24px;
}
.review-card .stars { display: block; margin-bottom: 12px; font-size: .95rem; }
.review-card p { font-size: .95rem; color: var(--ink); margin-bottom: 1.2em; min-height: 3em; }
.review-meta { display: flex; flex-direction: column; font-size: .85rem; }
.review-meta strong { color: var(--navy-dark); }
.review-meta span { color: var(--muted); }
.reviews-note { text-align: center; color: var(--muted); font-size: .85rem; margin-top: 2.4rem; }

/* About-list (also reused in the Einsatzgebiet section) */
.about-list { display: grid; gap: 12px; margin-top: 1.4em; }
.about-list li {
  padding-left: 30px;
  position: relative;
  font-weight: 500;
  color: var(--ink);
  font-size: .95rem;
}
.about-list li::before {
  content: "";
  position: absolute; left: 0; top: 4px;
  width: 18px; height: 18px;
  border-radius: 50%;
  background: var(--sage);
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='black' d='M9 16.2l-3.5-3.5-1.4 1.4L9 19 20 8l-1.4-1.4z'/%3E%3C/svg%3E") center/contain no-repeat;
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='black' d='M9 16.2l-3.5-3.5-1.4 1.4L9 19 20 8l-1.4-1.4z'/%3E%3C/svg%3E") center/contain no-repeat;
}

/* Coverage stats */
.coverage-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.coverage-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 30px 24px;
  text-align: center;
}
.coverage-card .service-icon { margin-left: auto; margin-right: auto; }
.coverage-card h3 { font-size: 1.1rem; margin-bottom: .4em; }
.coverage-card p { color: var(--muted); font-size: .93rem; margin: 0; }
.coverage-card-highlight {
  background: var(--navy);
  border-color: var(--navy);
}
.coverage-card-highlight .service-icon { background: rgba(255,255,255,.14); color: #fff; }
.coverage-card-highlight h3 { color: #fff; }
.coverage-card-highlight p { color: rgba(255,255,255,.8); }
.coverage-card-highlight p strong { color: #fff; }

/* Contact */
.section-contact { background: var(--navy-dark); color: #fff; }
.section-contact .section-title { color: #fff; }
.section-contact .section-sub { color: rgba(255,255,255,.75); }
.section-contact .eyebrow { color: #a9c98a; }

/* Mega WhatsApp CTA */
.whatsapp-mega {
  display: flex;
  align-items: center;
  gap: 24px;
  max-width: 780px;
  margin: 0 auto 22px;
  background: #25D366;
  border-radius: 22px;
  padding: 34px 40px;
  box-shadow: 0 20px 50px -14px rgba(37,211,102,.55);
  transition: transform .18s ease, box-shadow .18s ease;
  animation: whatsapp-pulse 2.6s ease-in-out infinite;
}
.whatsapp-mega:hover {
  transform: translateY(-3px) scale(1.01);
  box-shadow: 0 26px 60px -14px rgba(37,211,102,.7);
}
.whatsapp-mega-icon {
  width: 68px; height: 68px;
  flex-shrink: 0;
  border-radius: 50%;
  background: rgba(255,255,255,.18);
  display: flex; align-items: center; justify-content: center;
}
.whatsapp-mega-icon svg { width: 38px; height: 38px; color: #fff; }
.whatsapp-mega-text { display: flex; flex-direction: column; gap: 6px; flex: 1; }
.whatsapp-mega-text strong {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(1.35rem, 3vw, 1.85rem);
  color: #fff;
  line-height: 1.15;
}
.whatsapp-mega-text span {
  font-size: 1rem;
  color: rgba(255,255,255,.9);
  font-weight: 500;
}
.whatsapp-mega-arrow {
  font-size: 2rem;
  color: #fff;
  flex-shrink: 0;
  transition: transform .18s ease;
}
.whatsapp-mega:hover .whatsapp-mega-arrow { transform: translateX(6px); }

@keyframes whatsapp-pulse {
  0%, 100% { box-shadow: 0 20px 50px -14px rgba(37,211,102,.55); }
  50% { box-shadow: 0 20px 60px -10px rgba(37,211,102,.85); }
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
  max-width: 600px;
  margin: 0 auto;
}
.contact-card {
  display: flex;
  align-items: center;
  gap: 16px;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.14);
  border-radius: var(--radius);
  padding: 22px;
  transition: background .15s ease, transform .15s ease;
}
.contact-card:hover { background: rgba(255,255,255,.12); transform: translateY(-2px); }
.contact-card svg { width: 30px; height: 30px; flex-shrink: 0; color: #a9c98a; }
.contact-card div { display: flex; flex-direction: column; }
.contact-card strong { font-family: 'Outfit', sans-serif; font-size: 1rem; }
.contact-card span { font-size: .85rem; color: rgba(255,255,255,.75); }
.contact-note { text-align: center; color: rgba(255,255,255,.65); font-size: .88rem; margin: 2.2rem 0 0; }

/* Footer */
.site-footer { background: var(--navy-dark); color: rgba(255,255,255,.8); padding-top: 50px; }
.footer-inner {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 30px;
  align-items: start;
  padding-bottom: 34px;
  border-bottom: 1px solid rgba(255,255,255,.12);
}
.footer-logo-badge {
  display: inline-block;
  background: #fff;
  border-radius: 10px;
  padding: 10px 16px;
  margin-bottom: 14px;
}
.footer-logo-full { height: 32px; width: auto; display: block; }
.footer-brand p { color: rgba(255,255,255,.6); font-size: .9rem; max-width: 260px; }
.footer-links { display: flex; flex-direction: column; gap: 10px; font-size: .92rem; }
.footer-links a:hover { color: #fff; }
.footer-social { display: flex; gap: 14px; align-items: flex-start; justify-content: flex-end; }
.footer-social svg { width: 22px; height: 22px; }
.footer-social a {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: rgba(255,255,255,.08);
  display: flex; align-items: center; justify-content: center;
  transition: background .15s ease;
}
.footer-social a:hover { background: rgba(255,255,255,.18); }
.footer-bottom {
  padding: 18px 24px 26px;
  text-align: center;
  font-size: .82rem;
  color: rgba(255,255,255,.5);
}

/* WhatsApp floating button */
.whatsapp-float {
  position: fixed;
  bottom: 22px; right: 22px;
  z-index: 60;
}
.whatsapp-float a {
  width: 58px; height: 58px;
  border-radius: 50%;
  background: #25D366;
  color: #fff;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 10px 26px -6px rgba(37,211,102,.6);
  transition: transform .15s ease;
}
.whatsapp-float a:hover { transform: scale(1.07); }
.whatsapp-float svg { width: 30px; height: 30px; }

/* Responsive */
@media (max-width: 980px) {
  .services-grid { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr; gap: 40px; }
  .reviews-grid { grid-template-columns: repeat(2, 1fr); }
  .coverage-grid { grid-template-columns: 1fr; }
  .strip-inner { grid-template-columns: repeat(2, 1fr); }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; }
  .footer-social { justify-content: flex-start; }
}

@media (max-width: 760px) {
  .main-nav, .header-cta { display: none; }
  .nav-toggle { display: flex; }
  .site-header.nav-open .main-nav {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%; left: 0; right: 0;
    background: var(--bg);
    padding: 20px 24px 26px;
    border-bottom: 1px solid var(--line);
    gap: 16px;
  }
  .site-header.nav-open .header-cta {
    display: flex;
    position: absolute;
    top: 100%; left: 0; right: 0;
    margin-top: 168px;
    padding: 0 24px 20px;
    background: var(--bg);
  }
  .services-grid { grid-template-columns: 1fr; }
  .reviews-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr 1fr; grid-auto-rows: 160px; }
  .gallery-wide { grid-column: span 2; grid-row: span 1; }
  .hero { min-height: unset; padding: 40px 0; }
  .hero-bg { background-position: 82% 58%; }
  .section { padding: 60px 0; }
  .whatsapp-mega { flex-direction: column; text-align: center; padding: 30px 24px; gap: 16px; }
  .whatsapp-mega-arrow { display: none; }
  .contact-grid { grid-template-columns: 1fr; max-width: 360px; }
  .quote-banner { flex-direction: column; text-align: center; }
}

/* Scroll-reveal */
.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity .7s cubic-bezier(.16,.8,.24,1), transform .7s cubic-bezier(.16,.8,.24,1);
  will-change: opacity, transform;
}
.reveal.reveal-visible {
  opacity: 1;
  transform: none;
}
