:root {
  --orange: #f47b20;
  --orange-dark: #d96008;
  --blue: #1358a8;
  --blue-dark: #0b2f5f;
  --blue-soft: #eaf3ff;
  --text: #142033;
  --muted: #647084;
  --bg: #f7f9fc;
  --white: #ffffff;
  --line: #e4e9f1;
  --shadow: 0 18px 50px rgba(11, 47, 95, 0.13);
  --radius: 24px;
  --container: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  display: block;
}

.container {
  width: min(var(--container), calc(100% - 40px));
  margin: 0 auto;
}

/* Header / Navigation */

.topbar {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
}

.nav {
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-weight: 900;
  letter-spacing: -0.03em;
  color: var(--blue-dark);
  font-size: 1.18rem;
  white-space: nowrap;
  flex-shrink: 0;
}

/* WICHTIG:
   Dein Logo ist sehr groß angelegt. Deshalb wird es hier über die Breite begrenzt.
   Nicht wieder height: 44px UND max-width wild mischen. */
.topbar .brand img {
  width: 80px;
  height: auto;
  object-fit: contain;
}

.footer .brand img {
  width: 92px;
  height: auto;
  object-fit: contain;
}

.navlinks {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.95rem;
  font-weight: 650;
}

.navlinks a:not(.btn) {
  padding: 10px 12px;
  border-radius: 999px;
  color: #2f3c50;
}

.navlinks a:not(.btn):hover,
.navlinks a[aria-current="page"] {
  background: var(--blue-soft);
  color: var(--blue);
}

.menu-toggle {
  display: none;
  border: 0;
  background: var(--blue);
  color: var(--white);
  width: 44px;
  height: 44px;
  border-radius: 14px;
  font-size: 1.4rem;
  cursor: pointer;
}

/* Buttons */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 12px 20px;
  border-radius: 999px;
  font-weight: 800;
  border: 2px solid transparent;
  background: var(--blue);
  color: var(--white);
  box-shadow: 0 12px 30px rgba(19, 88, 168, 0.22);
  transition: 0.2s ease;
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 36px rgba(19, 88, 168, 0.28);
}

.btn-orange {
  background: linear-gradient(135deg, var(--orange), var(--orange-dark));
  color: var(--white);
  box-shadow: 0 12px 30px rgba(244, 123, 32, 0.28);
}

.btn-ghost {
  background: var(--white);
  color: var(--blue);
  border-color: rgba(19, 88, 168, 0.22);
  box-shadow: none;
}

/* Hero Startseite */

.hero {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 15% 20%, rgba(244, 123, 32, 0.18), transparent 28%),
    radial-gradient(circle at 85% 8%, rgba(19, 88, 168, 0.16), transparent 26%),
    linear-gradient(135deg, #ffffff 0%, #edf5ff 100%);
  padding: 82px 0 76px;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.04fr 0.96fr;
  align-items: center;
  gap: 56px;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(244, 123, 32, 0.12);
  color: var(--orange-dark);
  font-weight: 850;
  margin-bottom: 18px;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  font-size: clamp(2.4rem, 6vw, 4.8rem);
  line-height: 0.98;
  letter-spacing: -0.065em;
  margin-bottom: 24px;
  color: var(--blue-dark);
}

h1 span,
h2 span {
  color: var(--orange);
}

.lead {
  font-size: 1.22rem;
  max-width: 680px;
  color: #435167;
  margin-bottom: 30px;
}

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 26px;
}

.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  color: var(--muted);
  font-size: 0.95rem;
}

.trust-row span {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 8px 12px;
}

/* Waschmaschinen-Grafik */

.visual-card {
  background: linear-gradient(145deg, var(--blue), var(--blue-dark));
  border-radius: 34px;
  padding: 28px;
  box-shadow: var(--shadow);
  min-height: 440px;
  overflow: hidden;
  position: relative;
}

.visual-card::before {
  content: "";
  position: absolute;
  width: 280px;
  height: 280px;
  background: var(--orange);
  border-radius: 50%;
  right: -80px;
  top: -90px;
  opacity: 0.85;
}

.visual {
  position: relative;
  min-height: 384px;
  display: grid;
  place-items: center;
}

.washer {
  position: relative;
  z-index: 1;
  width: min(300px, 78vw);
  aspect-ratio: 0.82;
  background: linear-gradient(180deg, #ffffff 0%, #eaf0f8 100%);
  border-radius: 34px;
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.25);
  padding: 28px;
}

.washer-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 36px;
}

.slot {
  width: 96px;
  height: 18px;
  border-radius: 999px;
  background: #d5deea;
}

.display {
  width: 58px;
  height: 30px;
  border-radius: 10px;
  background: var(--blue);
}

.door {
  width: 178px;
  height: 178px;
  margin: 0 auto;
  border-radius: 50%;
  background:
    radial-gradient(circle, rgba(255, 255, 255, 0.7) 0 28%, transparent 29%),
    radial-gradient(circle, #b8d3ee 0 52%, #496b90 53% 70%, #dce6f2 71% 100%);
  border: 12px solid #f5f8fc;
  box-shadow: inset 0 0 28px rgba(19, 88, 168, 0.35), 0 10px 25px rgba(0, 0, 0, 0.15);
}

.float-note {
  position: absolute;
  left: 8px;
  right: 8px;
  bottom: 4px;
  z-index: 2;
  background: rgba(255, 255, 255, 0.94);
  border-radius: 20px;
  padding: 16px 18px;
  font-weight: 800;
  color: var(--blue-dark);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.18);
}

/* Allgemeine Sections */

.section {
  padding: 84px 0;
}

.page-hero {
  padding: 70px 0;
  background: linear-gradient(135deg, #ffffff, #edf5ff);
  border-bottom: 1px solid var(--line);
}

.section-head {
  max-width: 760px;
  margin-bottom: 34px;
}

.kicker {
  color: var(--orange-dark);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.82rem;
  margin-bottom: 10px;
}

h2 {
  font-size: clamp(2rem, 4vw, 3.1rem);
  line-height: 1.08;
  letter-spacing: -0.045em;
  color: var(--blue-dark);
  margin-bottom: 16px;
}

h3 {
  color: var(--blue-dark);
  font-size: 1.28rem;
  margin-bottom: 8px;
}

.muted {
  color: var(--muted);
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  align-items: start;
}

.card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: 0 12px 34px rgba(19, 88, 168, 0.07);
}

.icon {
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  border-radius: 18px;
  background: linear-gradient(135deg, rgba(244, 123, 32, 0.14), rgba(19, 88, 168, 0.12));
  margin-bottom: 18px;
  font-size: 1.5rem;
}

.section-dark {
  background: var(--blue-dark);
  color: var(--white);
}

.section-dark h2,
.section-dark h3 {
  color: var(--white);
}

.section-dark .muted {
  color: rgba(255, 255, 255, 0.72);
}

.section-dark .card {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.16);
  color: rgba(255, 255, 255, 0.78);
  box-shadow: none;
}

/* Ablauf / Preise */

.process {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  counter-reset: steps;
}

.step {
  counter-increment: steps;
}

.step::before {
  content: counter(steps);
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--orange);
  color: var(--white);
  font-weight: 900;
  margin-bottom: 16px;
}

.price {
  font-size: 2rem;
  font-weight: 900;
  color: var(--blue-dark);
  margin: 12px 0;
}

.notice {
  background: var(--blue-soft);
  border-left: 6px solid var(--blue);
  padding: 18px;
  border-radius: 16px;
  color: #28415f;
}

/* CTA */

.cta {
  background: linear-gradient(135deg, var(--orange), var(--orange-dark));
  color: var(--white);
  border-radius: 34px;
  padding: 38px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 26px;
  box-shadow: 0 24px 70px rgba(244, 123, 32, 0.25);
}

.cta h2 {
  color: var(--white);
  margin-bottom: 8px;
}

.cta p {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.88);
}

.cta .btn {
  background: var(--white);
  color: var(--blue);
  box-shadow: none;
  flex-shrink: 0;
}

/* Footer */

.footer {
  background: #071d3a;
  color: rgba(255, 255, 255, 0.78);
  padding: 54px 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 0.8fr;
  gap: 32px;
}

.footer .brand {
  color: var(--white);
  margin-bottom: 10px;
}

.footer strong {
  color: var(--white);
}

.footer a {
  color: rgba(255, 255, 255, 0.82);
}

.footer a:hover {
  color: var(--orange);
}

.small {
  font-size: 0.92rem;
  max-width: 420px;
}

/* Formular */

.form {
  display: grid;
  gap: 14px;
}

label {
  font-weight: 800;
  color: var(--blue-dark);
}

input,
textarea,
select {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 14px 16px;
  font: inherit;
}

textarea {
  min-height: 150px;
  resize: vertical;
}

/* FAQ */

details {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 18px 20px;
  margin-bottom: 12px;
}

summary {
  cursor: pointer;
  font-weight: 900;
  color: var(--blue-dark);
}

/* Tablet / Mobile */

@media (max-width: 980px) {
  .menu-toggle {
    display: inline-grid;
    place-items: center;
  }

  .navlinks {
    position: absolute;
    left: 20px;
    right: 20px;
    top: 86px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 18px;
    border-radius: 22px;
    background: var(--white);
    border: 1px solid var(--line);
    box-shadow: var(--shadow);
  }

  .navlinks.open {
    display: flex;
  }

  .navlinks a,
  .navlinks .btn {
    width: 100%;
    justify-content: center;
  }

  .hero-grid,
  .grid-2,
  .grid-3,
  .process,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    padding-top: 52px;
  }

  .visual-card {
    min-height: 360px;
  }

  .cta {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 560px) {
  .container {
    width: min(var(--container), calc(100% - 28px));
  }

  .brand span {
    display: none;
  }

  .topbar .brand img {
    width: 68px;
  }

  .section {
    padding: 62px 0;
  }

  .card,
  .cta {
    padding: 24px;
    border-radius: 22px;
  }

  .actions .btn {
    width: 100%;
  }
}
.icon-image {
  	margin-bottom: 18px;
}

.icon-image img {
  width: 120px;
  height: auto;
  display: block;
}
	  
.btn-whatsapp {
  background: #25D366;
  color: white;
  box-shadow: 0 12px 30px rgba(37, 211, 102, 0.25);
}
	  
.whatsapp-float {
  position: fixed;
  right: 22px;
  bottom: 22px;
  width: 62px;
  height: 62px;
  border-radius: 50%;
  background: #25D366;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  text-decoration: none;
  box-shadow: 0 12px 30px rgba(0,0,0,.25);
  z-index: 999;
  transition: .2s ease;
}

.whatsapp-float:hover {
  transform: scale(1.08);
}