:root {
  --bg: #eef7ff;
  --bg-soft: #f8fbff;
  --surface: #fdfefe;
  --surface-strong: #ffffff;
  --text: #15324f;
  --muted: #59708a;
  --line: rgba(32, 89, 148, 0.14);
  --accent: #4aa7f4;
  --accent-deep: #1f6fb9;
  --forest: #0f4f87;
  --shadow: 0 24px 60px rgba(43, 103, 168, 0.14);
  --radius-lg: 32px;
  --radius-md: 22px;
  --radius-sm: 14px;
  --container: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Manrope", sans-serif;
  color: var(--text);
  background: #f4f9fd;
}

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

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

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

.site-shell {
  overflow: clip;
}

.topbar {
  background: var(--forest);
  color: rgba(255, 255, 255, 0.88);
  font-size: 0.92rem;
}

.topbar-inner,
.nav-inner,
.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.topbar-inner {
  min-height: 48px;
}

.topbar-list {
  display: flex;
  gap: 1.25rem;
  flex-wrap: wrap;
}

.topbar-note {
  color: rgba(255, 255, 255, 0.62);
}

.navbar {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(18px);
  background: rgba(248, 252, 255, 0.84);
  border-bottom: 1px solid rgba(32, 89, 148, 0.08);
}

.nav-inner {
  min-height: 86px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.9rem;
}

.brand-logo {
  width: 96px;
  height: auto;
  object-fit: contain;
}

.brand-text {
  display: grid;
  gap: 0.12rem;
}

.brand-text strong,
.brand-text small {
  display: block;
}

.brand-text strong {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 1rem;
}

.brand-text small {
  color: var(--muted);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 1.35rem;
}

.nav-links a:not(.button) {
  color: var(--muted);
  font-weight: 600;
}

.nav-toggle {
  display: none;
  border: 0;
  background: transparent;
  padding: 0;
}

.nav-toggle span {
  display: block;
  width: 28px;
  height: 2px;
  margin: 6px 0;
  background: var(--text);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 1.35rem;
  border-radius: 999px;
  font-weight: 700;
  transition: transform 160ms ease, box-shadow 160ms ease, background-color 160ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button-accent {
  color: #fff;
  background: linear-gradient(135deg, var(--accent), #74c2ff);
  box-shadow: 0 14px 30px rgba(74, 167, 244, 0.3);
}

.button-dark {
  color: #fff;
  background: var(--forest);
}

.button-light {
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(32, 89, 148, 0.1);
}

.hero {
  position: relative;
  min-height: auto;
  padding: 4.5rem 0;
  background-image: url("assets/office-floor-close.png");
  background-position: center;
  background-size: cover;
  overflow: hidden;
}

.hero::before,
.hero::after,
.service-card::before,
.process-card::before,
.about-visual::before,
.cta-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.hero::before {
  z-index: 0;
  background:
    linear-gradient(90deg, rgba(4, 20, 36, 0.94) 0%, rgba(6, 38, 66, 0.82) 42%, rgba(7, 34, 58, 0.48) 100%),
    linear-gradient(180deg, rgba(6, 28, 48, 0.42), rgba(4, 20, 36, 0.82));
}

.hero::after {
  z-index: 0;
  background: rgba(0, 12, 24, 0.12);
  backdrop-filter: saturate(1.06);
}

.hero-wave {
  position: absolute;
  pointer-events: none;
  border-radius: 999px;
  filter: blur(4px);
  opacity: 0.5;
}

.hero-wave-one {
  top: 40px;
  right: -80px;
  width: 460px;
  height: 130px;
  background: linear-gradient(90deg, rgba(200, 235, 255, 0), rgba(135, 202, 255, 0.45), rgba(64, 143, 223, 0));
  transform: rotate(8deg);
}

.hero-wave-two {
  top: 92px;
  right: 20px;
  width: 420px;
  height: 90px;
  background: linear-gradient(90deg, rgba(200, 235, 255, 0), rgba(86, 168, 245, 0.45), rgba(200, 235, 255, 0));
  transform: rotate(-8deg);
}

.hero-grid,
.about-grid,
.contact-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 2rem;
  align-items: center;
}

.hero-grid {
  position: relative;
  z-index: 1;
}

.hero-copy {
  order: 1;
}

.hero-card {
  order: 2;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.86rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--accent-deep);
  font-weight: 800;
}

.hero-copy h1,
.section-heading h2,
.about-copy h2,
.contact-copy h2,
.cta-panel h2 {
  font-family: "Plus Jakarta Sans", sans-serif;
  line-height: 1.02;
  margin: 0.9rem 0 1rem;
}

.hero-copy h1 {
  font-size: clamp(2.5rem, 5vw, 4.2rem);
  max-width: 13ch;
  color: #fff;
  text-shadow: 0 18px 42px rgba(0, 0, 0, 0.28);
}

.hero-copy .eyebrow,
.hero-copy p,
.hero-points,
.hero-points li {
  color: #fff;
}

.hero-copy p,
.section-heading p,
.about-copy p,
.contact-copy p,
.service-card p,
.process-card p,
.contact-form label,
.footer p {
  color: var(--muted);
}

.hero-copy p {
  color: #fff;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin: 2rem 0;
}

.hero-points {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  padding: 0;
  margin: 0;
  list-style: none;
  color: #fff;
  font-weight: 600;
}

.hero-points li {
  padding: 0.9rem 1rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(5, 28, 48, 0.44);
  backdrop-filter: blur(12px);
}

.hero-card {
  position: relative;
  min-height: 460px;
  aspect-ratio: 5 / 4;
  border-radius: var(--radius-lg);
  background-image:
    linear-gradient(180deg, rgba(5, 22, 38, 0.08), rgba(5, 22, 38, 0.76)),
    url("assets/pressure-cleaning-patio.png");
  background-position: center;
  background-size: cover;
  box-shadow: var(--shadow);
  overflow: hidden;
}

.hero-card-panel {
  position: relative;
  z-index: 2;
  padding: 2rem;
  max-width: none;
}

.badge {
  display: inline-flex;
  padding: 0.45rem 0.75rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.84);
}

.hero-card h2,
.hero-card p,
.hero-stats strong,
.hero-stats span {
  color: white;
}

.hero-card h2 {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 1.7rem;
  line-height: 1.1;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.7rem;
  margin-top: 1.2rem;
}

.hero-stats article {
  padding: 0.7rem;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(12px);
}

.hero-stats strong {
  display: block;
  font-size: 1.05rem;
}

.hero-stats span {
  font-size: 0.82rem;
  line-height: 1.25;
}

.hero-card-image {
  position: absolute;
  inset: 0;
  display: none;
}

.image-orb {
  position: absolute;
  right: -60px;
  bottom: -120px;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(112, 196, 255, 0.78), rgba(112, 196, 255, 0) 70%);
}

.image-sheet {
  position: absolute;
  right: 40px;
  bottom: 40px;
  width: min(65%, 360px);
  height: 72%;
  border-radius: 30px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.18), rgba(255, 255, 255, 0.02)),
    linear-gradient(145deg, rgba(255, 255, 255, 0.18), rgba(116, 194, 255, 0.26));
  border: 1px solid rgba(255, 255, 255, 0.15);
  transform: rotate(-8deg);
}

.trust-strip {
  padding: 1rem 0 2rem;
}

.trust-strip p {
  margin: 0 0 1rem;
  color: var(--muted);
  text-align: center;
}

.logo-row {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 1rem;
}

.logo-row span {
  display: grid;
  place-items: center;
  min-height: 90px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(32, 89, 148, 0.08);
  font-family: "Plus Jakarta Sans", sans-serif;
  font-weight: 700;
  color: #356391;
}

.section {
  padding: 5rem 0;
}

.section-services,
.section-process {
  background: #f8fbff;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 2rem;
}

.section-heading h2,
.about-copy h2,
.contact-copy h2,
.cta-panel h2 {
  font-size: clamp(2rem, 4vw, 3.5rem);
}

.service-grid,
.process-grid,
.feature-list {
  display: grid;
  gap: 1.2rem;
}

.service-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.service-card,
.process-card,
.contact-form,
.contact-card,
.visual-card {
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.8);
  border: 1px solid rgba(32, 89, 148, 0.08);
  box-shadow: var(--shadow);
}

.service-card,
.process-card {
  position: relative;
  min-height: unset;
  aspect-ratio: 4 / 3;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.6rem;
  overflow: hidden;
  background-position: center;
  background-size: cover;
  color: #fff;
  isolation: isolate;
}

.service-card::before,
.process-card::before {
  z-index: -1;
  background:
    linear-gradient(180deg, rgba(5, 23, 39, 0.28), rgba(5, 23, 39, 0.86)),
    linear-gradient(90deg, rgba(7, 42, 72, 0.5), rgba(7, 42, 72, 0.12));
}

.service-card:nth-child(1) {
  background-image: url("assets/service-haushaltsaufloesung.jpeg");
  background-position: center top;
}

.service-card:nth-child(2) {
  background-image: url("assets/service-reinigung.png");
  background-position: center;
}

.service-card:nth-child(3) {
  background-image: url("assets/pressure-cleaning-garden.png");
  background-position: center;
}

.service-card:nth-child(4) {
  background-image: url("assets/service-befoerderung.jpeg");
  background-position: center;
}

.service-card:nth-child(5) {
  background-image: url("assets/office-floor-wide.png");
}

.service-card:nth-child(6) {
  background-image: url("assets/window-cleaning.png");
}

.process-card:nth-child(1) {
  background-image: url("assets/window-cleaning.png");
}

.process-card:nth-child(2) {
  background-image: url("assets/office-floor-close.png");
}

.process-card:nth-child(3) {
  background-image: url("assets/pressure-cleaning-garden.png");
}

.service-card h3,
.process-card h3,
.feature-list h3,
.contact-form h3 {
  margin-top: 0;
  font-family: "Plus Jakarta Sans", sans-serif;
}

.service-card h3,
.process-card h3,
.service-card p,
.process-card p {
  position: relative;
  z-index: 1;
}

.service-card p,
.process-card p {
  color: rgba(255, 255, 255, 0.82);
}

.about-visual {
  position: relative;
  min-height: unset;
  aspect-ratio: 4 / 3;
  border-radius: var(--radius-lg);
  background-image: url("assets/window-cleaning.png");
  background-position: center;
  background-size: cover;
  border: 1px solid rgba(32, 89, 148, 0.08);
  overflow: hidden;
  isolation: isolate;
}

.about-visual::before {
  z-index: -1;
  background:
    linear-gradient(180deg, rgba(6, 31, 53, 0.12), rgba(6, 31, 53, 0.72)),
    linear-gradient(90deg, rgba(7, 42, 72, 0.54), rgba(7, 42, 72, 0.1));
}

.visual-card {
  position: absolute;
  padding: 1.4rem;
  max-width: 280px;
  z-index: 1;
  background: rgba(255, 255, 255, 0.86);
  backdrop-filter: blur(14px);
}

.visual-card span {
  display: block;
  margin-bottom: 0.5rem;
  color: var(--accent-deep);
  font-weight: 800;
}

.visual-card strong {
  font-size: 1.25rem;
  line-height: 1.2;
}

.visual-card-main {
  top: 48px;
  left: 40px;
}

.visual-card-accent {
  right: 34px;
  bottom: 52px;
}

.feature-list article {
  padding-bottom: 1rem;
  border-bottom: 1px solid rgba(32, 89, 148, 0.1);
}

.process-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.process-card span {
  display: inline-flex;
  width: 52px;
  height: 52px;
  align-items: center;
  justify-content: center;
  border-radius: 16px;
  background: rgba(74, 167, 244, 0.16);
  color: var(--accent-deep);
  font-family: "Plus Jakarta Sans", sans-serif;
  font-weight: 800;
}

.cta-panel {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  padding: 2.2rem;
  border-radius: var(--radius-lg);
  background-image: url("assets/pressure-cleaning-patio.png");
  background-position: center;
  background-size: cover;
  box-shadow: var(--shadow);
  overflow: hidden;
  isolation: isolate;
}

.cta-panel::before {
  z-index: -1;
  background: linear-gradient(90deg, rgba(6, 30, 52, 0.88), rgba(31, 111, 185, 0.68));
}

.cta-panel > * {
  position: relative;
  z-index: 1;
}

.cta-panel .eyebrow,
.cta-panel h2 {
  color: white;
}

.contact-card {
  display: grid;
  gap: 0.7rem;
  padding: 1.4rem;
  margin-top: 1.6rem;
}

.contact-form {
  display: grid;
  gap: 1rem;
  padding: 2rem;
}

.contact-form label {
  display: grid;
  gap: 0.55rem;
  font-weight: 700;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 0.95rem 1rem;
  border-radius: 16px;
  border: 1px solid rgba(32, 89, 148, 0.14);
  background: rgba(255, 255, 255, 0.85);
  font: inherit;
  color: var(--text);
}

.form-note {
  margin: 0;
  font-size: 0.92rem;
}

.footer {
  padding: 2rem 0 3rem;
}

.footer-links {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  color: var(--muted);
}

.floating-contact {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 30;
  display: grid;
  gap: 0.85rem;
}

.floating-button {
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  color: #fff;
  box-shadow: 0 18px 38px rgba(23, 74, 126, 0.24);
  transition: transform 160ms ease, box-shadow 160ms ease;
}

.floating-button:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 22px 42px rgba(23, 74, 126, 0.32);
}

.floating-button svg {
  width: 28px;
  height: 28px;
  fill: currentColor;
}

.floating-button-whatsapp {
  background: linear-gradient(135deg, #24d366, #16a34a);
}

.floating-button-email {
  background: linear-gradient(135deg, #4aa7f4, #1f6fb9);
}

@media (max-width: 980px) {
  .hero-grid,
  .about-grid,
  .contact-grid,
  .service-grid,
  .process-grid,
  .logo-row {
    grid-template-columns: 1fr;
  }

  .nav-toggle {
    display: block;
  }

  .nav-links {
    position: absolute;
    top: 86px;
    left: 1rem;
    right: 1rem;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 1rem;
    border-radius: 24px;
    background: rgba(248, 252, 255, 0.98);
    border: 1px solid rgba(32, 89, 148, 0.08);
    box-shadow: var(--shadow);
  }

  .nav-links.is-open {
    display: flex;
  }

  .hero-card {
    min-height: 420px;
  }

  .cta-panel,
  .topbar-inner,
  .footer-inner {
    flex-direction: column;
    align-items: flex-start;
  }
}

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

  .topbar {
    font-size: 0.82rem;
  }

  .topbar-inner {
    min-height: auto;
    padding: 0.75rem 0;
    gap: 0.45rem;
  }

  .topbar-list {
    gap: 0.45rem;
  }

  .topbar-note {
    font-size: 0.78rem;
  }

  .nav-inner {
    min-height: 72px;
  }

  .brand {
    gap: 0.65rem;
  }

  .brand-logo {
    width: 72px;
  }

  .brand-text strong {
    font-size: 0.92rem;
  }

  .brand-text small {
    font-size: 0.76rem;
  }

  .nav-links {
    top: 72px;
    left: 0.625rem;
    right: 0.625rem;
    border-radius: 18px;
  }

  .button {
    width: 100%;
    min-height: 48px;
    padding: 0 1rem;
    text-align: center;
  }

  .hero {
    padding: 2.25rem 0 3rem;
  }

  .hero-grid,
  .about-grid,
  .contact-grid {
    gap: 1.25rem;
  }

  .hero-copy {
    display: grid;
  }

  .hero-copy p {
    order: 2;
  }

  .hero-actions {
    order: 3;
  }

  .hero-points {
    order: 4;
  }

  .hero-copy h1 {
    max-width: none;
    font-size: clamp(2rem, 12vw, 2.85rem);
    line-height: 1.05;
  }

  .hero-copy p,
  .section-heading p,
  .about-copy p,
  .contact-copy p {
    font-size: 0.95rem;
    line-height: 1.6;
  }

  .hero-actions {
    display: grid;
    gap: 0.75rem;
    margin: 1.5rem 0;
  }

  .hero-points {
    display: grid;
    gap: 0.65rem;
  }

  .hero-points li {
    width: 100%;
    padding: 0.8rem 0.95rem;
    border-radius: 18px;
    font-size: 0.9rem;
  }

  .hero-card {
    min-height: 320px;
    aspect-ratio: auto;
    border-radius: 22px;
  }

  .hero-card-panel {
    padding: 1.25rem;
  }

  .hero-card h2 {
    font-size: 1.35rem;
  }

  .hero-stats {
    grid-template-columns: 1fr;
  }

  .trust-strip {
    padding: 0.75rem 0 1rem;
  }

  .logo-row span {
    min-height: 66px;
    border-radius: 16px;
  }

  .section {
    padding: 3rem 0;
  }

  .section-heading {
    margin-bottom: 1.35rem;
  }

  .section-heading h2,
  .about-copy h2,
  .contact-copy h2,
  .cta-panel h2 {
    font-size: clamp(1.75rem, 9vw, 2.4rem);
    line-height: 1.08;
  }

  .service-grid,
  .process-grid,
  .feature-list {
    gap: 0.85rem;
  }

  .service-card,
  .process-card {
    min-height: 240px;
    aspect-ratio: auto;
    border-radius: 18px;
  }

  .service-card h3,
  .process-card h3 {
    font-size: 1.15rem;
    margin-bottom: 0.45rem;
  }

  .service-card p,
  .process-card p {
    font-size: 0.92rem;
    line-height: 1.45;
  }

  .floating-contact {
    right: 14px;
    bottom: 14px;
  }

  .floating-button {
    width: 54px;
    height: 54px;
  }

  .hero-card-panel,
  .service-card,
  .process-card,
  .contact-form {
    padding: 1.2rem;
  }

  .cta-panel {
    gap: 1.2rem;
    padding: 1.35rem;
    border-radius: 22px;
  }

  .contact-card {
    padding: 1.1rem;
    overflow-wrap: break-word;
  }

  .contact-form input,
  .contact-form textarea {
    border-radius: 12px;
    font-size: 1rem;
  }

  .visual-card {
    position: relative;
    top: auto;
    right: auto;
    bottom: auto;
    left: auto;
    max-width: none;
    margin: 1rem;
  }

  .about-visual {
    min-height: 360px;
    padding: 1rem 0;
  }
}

@media (max-width: 390px) {
  .brand-logo {
    width: 62px;
  }

  .brand-text small {
    display: none;
  }

  .hero-copy h1 {
    font-size: 1.9rem;
  }

  .section-heading h2,
  .about-copy h2,
  .contact-copy h2,
  .cta-panel h2 {
    font-size: 1.65rem;
  }
}
