﻿@import url('https://fonts.googleapis.com/css2?family=Quicksand:wght@400;500;600;700&display=swap');

:root {
  --lp-red: #d5120e;
  --lp-dark: #26323c;
  --lp-light: #f7f3f2;
  --lp-cream: #fff7f5;
  --lp-shadow: 0 20px 50px rgba(38, 50, 60, 0.12);
  --lp-radius: 18px;
  --lp-max: 1680px;
  --lp-gap: clamp(18px, 2vw, 28px);
}

.lp-reinigung-2026,
.lp-reinigung-2026 * {
  box-sizing: border-box;
}

.lp-reinigung-2026 {
  font-family: 'Quicksand', sans-serif;
  color: var(--lp-dark);
  background: radial-gradient(circle at top, #ffffff 0%, #f8f2f1 45%, #f1f4f6 100%);
}

.lp-reinigung-2026 a {
  color: inherit;
  text-decoration: none;
}

.lp-container {
  width: min(100%, var(--lp-max));
  margin: 0 auto;
  padding: 0 clamp(18px, 4vw, 48px);
}

.lp-hero {
  padding: clamp(36px, 6vw, 80px) 0 clamp(28px, 6vw, 72px);
}

.lp-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: clamp(28px, 4vw, 60px);
  align-items: center;
}

.lp-hero-content h1 {
  font-size: clamp(30px, 4.2vw, 52px);
  line-height: 1.1;
  margin: 10px 0 16px;
}

.lp-hero-content p {
  font-size: clamp(16px, 2vw, 20px);
  line-height: 1.6;
  margin: 0 0 18px;
}

.lp-eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-weight: 600;
  font-size: 12px;
  color: rgba(38, 50, 60, 0.7);
}

.lp-logo img {
  width: clamp(140px, 20vw, 200px);
  height: auto;
  display: block;
}

.lp-hero-menu {
  display: grid;
  gap: 12px;
  margin-bottom: 22px;
  width: 100%;
}

.lp-menu-logo img {
  width: 100%;
  max-width: 100%;
}

.lp-menu-logo {
  margin: 0;
}

.lp-menu-logo img {
  display: block;
  border-radius: 16px 16px 0 0;
}

.lp-menu {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  align-items: stretch;
  gap: 10px;
  width: 100%;
  max-width: 100%;
  background: #ffffff;
  border-radius: 0 0 16px 16px;
  padding: 6px 12px;
  box-shadow: 0 10px 22px rgba(0, 0, 0, 0.08);
  justify-content: space-between;
}

.lp-menu a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 12px;
  border-radius: 0;
  background: transparent;
  font-weight: 600;
  font-size: 14px;
  line-height: 1.2;
  height: 36px;
}

.lp-menu a:hover {
  color: var(--lp-red);
  background: rgba(213, 18, 14, 0.08);
}

.lp-media-desc {
  margin-top: 8px;
  font-size: 12px;
  color: rgba(38, 50, 60, 0.7);
}

.lp-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 22px 0;
}

.lp-cta-center {
  justify-content: center;
}

.lp-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 22px;
  border-radius: 999px;
  font-weight: 600;
  border: 2px solid transparent;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

.lp-btn-primary {
  background: var(--lp-red);
  color: #ffffff;
  box-shadow: 0 12px 24px rgba(213, 18, 14, 0.25);
}

.lp-btn-outline {
  border-color: var(--lp-red);
  color: var(--lp-red);
  background: transparent;
}

.lp-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 30px rgba(38, 50, 60, 0.2);
}

.lp-trust {
  list-style: none;
  padding: 0;
  margin: 18px 0 0;
  display: grid;
  gap: 10px;
  font-size: 15px;
}

.lp-trust li {
  position: relative;
  padding-left: 28px;
}

.lp-trust li::before {
  content: "\2713";
  position: absolute;
  left: 0;
  color: var(--lp-red);
  font-weight: 700;
  width: 16px;
  text-align: center;
}

.lp-hero-visual {
  display: grid;
  gap: 16px;
  align-items: start;
}

.lp-media-card {
  background: #ffffff;
  border-radius: var(--lp-radius);
  padding: 14px;
  box-shadow: var(--lp-shadow);
}

.lp-media-card img {
  width: 100%;
  height: auto;
  border-radius: calc(var(--lp-radius) - 6px);
  display: block;
}

.lp-badge {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 18px;
  background: var(--lp-cream);
  border-radius: 999px;
  font-weight: 600;
  box-shadow: 0 10px 20px rgba(38, 50, 60, 0.1);
}

.lp-badge img {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  object-fit: cover;
}

.lp-section {
  padding: clamp(36px, 6vw, 80px) 0;
}

.lp-section-light {
  background: #ffffff;
}

.lp-section-muted {
  background: rgba(38, 50, 60, 0.04);
}

.lp-section-dark {
  background: #ffffff;
  color: var(--lp-dark);
}

.lp-section-dark::before {
  content: none;
}

.lp-section-head {
  margin-bottom: 30px;
}

.lp-section-head h2 {
  font-size: clamp(26px, 3.2vw, 40px);
  margin: 0 0 12px;
}

.lp-section-head p {
  margin: 0;
  font-size: 17px;
}

.lp-section-note {
  margin-top: 18px;
  color: rgba(38, 50, 60, 0.7);
}

.lp-split {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: var(--lp-gap);
  align-items: stretch;
}

.lp-card {
  background: #ffffff;
  border-radius: var(--lp-radius);
  padding: clamp(20px, 3vw, 36px);
  box-shadow: var(--lp-shadow);
  height: 100%;
}

.lp-services {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: var(--lp-gap);
}

.lp-service-card {
  background: #ffffff;
  border-radius: var(--lp-radius);
  padding: clamp(20px, 3vw, 32px);
  box-shadow: var(--lp-shadow);
}

.lp-service-card ul {
  margin: 16px 0 0;
  padding-left: 20px;
  line-height: 1.6;
}

.lp-service-media {
  display: grid;
  align-content: start;
  gap: 12px;
}

.lp-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  max-width: 1200px;
  margin: 0 auto;
}

.lp-feature {
  padding: 22px;
  border-radius: 14px;
  background: #ffffff;
  box-shadow: 0 10px 22px rgba(0, 0, 0, 0.08);
  font-weight: 600;
  min-height: 120px;
}

.lp-checklist {
  list-style: none;
  margin: 18px 0 0;
  padding: 0;
  display: grid;
  gap: 12px;
}

.lp-checklist li {
  position: relative;
  padding-left: 28px;
  line-height: 1.6;
}

.lp-checklist li::before {
  content: "\2713";
  position: absolute;
  left: 0;
  top: 0.2em;
  width: 16px;
  text-align: center;
  color: var(--lp-red);
  font-weight: 700;
}

.lp-choice-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  max-width: 1100px;
  margin: 0 auto;
}

.lp-choice {
  border: 2px solid rgba(38, 50, 60, 0.1);
  background: #ffffff;
  padding: 16px 18px;
  border-radius: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.lp-choice:hover {
  border-color: var(--lp-red);
  box-shadow: 0 12px 26px rgba(38, 50, 60, 0.12);
  transform: translateY(-2px);
}

.lp-card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: var(--lp-gap);
}

.lp-quote-card {
  background: #ffffff;
  border-radius: var(--lp-radius);
  padding: clamp(18px, 3vw, 30px);
  box-shadow: var(--lp-shadow);
  line-height: 1.6;
}

.lp-quote-name {
  display: block;
  margin-top: 12px;
  font-weight: 600;
  color: rgba(38, 50, 60, 0.7);
}

.lp-banner {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
  gap: var(--lp-gap);
  align-items: center;
  background: #ffffff;
  border-radius: var(--lp-radius);
  padding: clamp(22px, 4vw, 42px);
  box-shadow: var(--lp-shadow);
}

.lp-banner-media img {
  width: 100%;
  height: auto;
  border-radius: calc(var(--lp-radius) - 6px);
  display: block;
}

.lp-faq details {
  border-bottom: 1px solid rgba(38, 50, 60, 0.12);
  padding: 12px 0;
}

.lp-faq summary {
  cursor: pointer;
  font-weight: 600;
}

.lp-faq summary::-webkit-details-marker {
  color: var(--lp-red);
}

.lp-cta-section {
  background: linear-gradient(120deg, rgba(213, 18, 14, 0.08), rgba(38, 50, 60, 0.06));
}

.lp-cta-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: var(--lp-gap);
  align-items: center;
}

.lp-contact-card {
  display: grid;
  gap: 16px;
  background: #ffffff;
  border-radius: var(--lp-radius);
  padding: clamp(18px, 3vw, 28px);
  box-shadow: var(--lp-shadow);
}

.lp-reinigung-2026 .lp-side-contact {
  position: fixed;
  right: -27px !important;
  top: 50%;
  transform: translateY(-50%) rotate(-90deg);
  transform-origin: center;
  z-index: 20;
  padding: 12px 20px;
  border-radius: 999px;
  background: var(--lp-red);
  color: #000000;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 110px;
  box-shadow: 0 12px 24px rgba(213, 18, 14, 0.25);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

/* Hide any extra Kontakt floating button so only the red one remains */
/* Hide theme-injected Kontakt side button (keep the red lp-side-contact) */
.wd-side-contact,
.wd-side-button,
.wd-sticky-contact,
.wd-contact-button,
.wd-contact-btn,
.side-contact,
.side-kontakt,
.kontakt-button,
.kontakt-btn {
  display: none !important;
}

body > a[href*="kontakt"]:not(.lp-side-contact),
body > a[aria-label*="Kontakt"],
body > a[title*="Kontakt"] {
  display: none !important;
}

.lp-reinigung-2026 .lp-side-contact:hover {
  transform: translateY(-50%) translateX(-4px) rotate(-90deg);
  box-shadow: 0 16px 30px rgba(38, 50, 60, 0.2);
}

.lp-footer {
  padding: 22px 0 40px;
}

.lp-footer-inner {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: space-between;
  align-items: center;
  font-size: 14px;
}

.lp-footer-links {
  display: flex;
  gap: 16px;
}

.lp-footer-links a {
  color: var(--lp-dark);
  opacity: 0.8;
}

.lp-footer-links a:hover {
  opacity: 1;
}

.lp-reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.lp-reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 900px) {
  .lp-hero-grid {
    grid-template-columns: 1fr;
  }

  .lp-hero-content {
    order: 1;
  }

  .lp-hero-visual {
    order: 2;
  }

  .lp-hero-menu {
    margin-top: 14px;
  }

  .lp-cta {
    flex-direction: column;
    align-items: flex-start;
  }

  .lp-banner {
    grid-template-columns: 1fr;
  }

  .lp-reinigung-2026 .lp-side-contact {
    display: none;
  }

  .lp-menu {
    flex-wrap: wrap;
    border-radius: 0;
  }
}

@media (max-width: 1100px) {
  .lp-choice-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .lp-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 600px) {
  .lp-choice-grid {
    grid-template-columns: 1fr;
  }

  .lp-grid {
    grid-template-columns: 1fr;
  }
}



.wd-page-content {margin-top:-140px;}
.whb-main-header {display:none!important;}
.wd-prefooter {display:none!important;}
.main-footer {display:none!important;}
