/* ===== AS Clean Service – template ===== */
:root{
  --bg1:#061022;
  --bg2:#071a38;
  --line: rgba(255,255,255,.14);
  --muted: rgba(255,255,255,.72);
  --text: rgba(255,255,255,.92);
  --sky:#4cc2ff;
  --shadow: 0 18px 40px rgba(0,0,0,.35);
}
*{ box-sizing:border-box; }
html,body{ height:100%; }
body{
  margin:0;
  font-family: system-ui,-apple-system,Segoe UI,Roboto,Ubuntu,Cantarell,Noto Sans,sans-serif;
  color: var(--text);
  background: radial-gradient(1200px 800px at 20% 10%, #0c2a66 0%, transparent 60%),
              radial-gradient(900px 600px at 80% 20%, #0b3a5f 0%, transparent 55%),
              linear-gradient(180deg, var(--bg1), var(--bg2));
}
a{ color: inherit; }
.container{ width: min(1100px, 92vw); margin: 0 auto; }

/* ===== NAV FINAL FIX ===== */
.topbar{
  position: sticky;
  top: 0;
  z-index: 99999;
  backdrop-filter: blur(8px);
  background: rgba(6,16,34,.55);
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.topbar .nav.container{
  display: grid !important;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  padding: 12px 28px;
  gap: 18px;
}
.topbar .nav__left{
  justify-self: start;
  display:flex;
  gap: 22px;
  align-items:center;
}
.topbar .brand img{
  height: 90px;     /* LOGO Größe */
  width: auto;
  transition: transform .3s ease, filter .3s ease;
}

.topbar .brand img:hover{
  transform: scale(1.08);
  filter: drop-shadow(0 0 10px rgba(76,194,255,.6));
}

.topbar .nav__right{
  justify-self: end;
  display:flex;
  gap: 14px;
  align-items:center;
}
.topbar .nav__item{
  color: rgba(255,255,255,.88);
  text-decoration:none;
  font-weight: 600;
  font-size: 15px;
  white-space: nowrap;
}
.topbar .nav__item:hover{ color: var(--sky); }

/* Buttons */
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding: 12px 18px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.14);
  text-decoration:none;
  font-weight: 800;
}
.btn--small{ padding: 8px 14px; }
.btn--primary{
  border: 0;
  background: linear-gradient(90deg, #1da1ff, #4cc2ff);
  color: #051025;
}
.btn--ghost{
  background: rgba(255,255,255,.06);
  border-color: rgba(255,255,255,.12);
}

@media (max-width: 820px){
  .topbar .nav.container{
    grid-template-columns: 1fr auto;
    grid-template-areas:
      "logo right"
      "left left";
    row-gap: 10px;
  }
  .topbar .brand{ grid-area: logo; justify-self: start; }
  .topbar .nav__right{ grid-area: right; }
  .topbar .nav__left{ grid-area: left; justify-content: center; flex-wrap: wrap; }
}

/* ===== HERO ===== */
.hero{ position: relative; padding: 40px 0 26px; }
.hero_bg{
  position:absolute;
  inset:0;
  z-index:0; /* Hintergrund */
  background:
    linear-gradient(
      120deg,
      rgba(5,20,60,0.88),
      rgba(5,40,120,0.75)
    );
  pointer-events:none;
}
.hero__grid{
  position:relative;
  z-index: 2;
  display:grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 30px;
  align-items:center;
  padding-top: 16px;
}
.hero__text h1{ margin:0 0 12px; font-size:46px; line-height:1.06; letter-spacing:-0.02em; }
.hero__text h1 span{ color: var(--sky); }
.lead{ margin:0 0 16px; color: var(--muted); font-size:16px; max-width:56ch; }
.hero__chips{ display:flex; flex-wrap:wrap; gap:10px; margin:12px 0 16px; }
.chip{
  padding: 8px 12px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: rgba(255,255,255,.06);
  font-weight: 800;
  font-size: 13px;
}
.hero__cta{ display:flex; flex-wrap:wrap; gap:12px; margin:12px 0 14px; }
.hero__contact{ display:grid; gap:6px; color: rgba(255,255,255,.84); font-weight: 650; font-size:14px; }
.hero__contact a{ text-decoration: underline; text-underline-offset: 3px; }

.hero__imgwrap{
  position:relative; width:100%; max-width:800px; margin-left:auto;
  aspect-ratio: 16/10;
  border-radius: 28px;
  overflow:hidden;
  border: 1px solid rgba(255,255,255,.16);
  box-shadow: var(--shadow);
  background: rgba(255,255,255,.04);
}
.hero__frame{ position:absolute; inset:0; }
.hero__img{ position:absolute; inset:0; width:100%; height:100%; object-fit: cover; opacity:0; transition: opacity .6s ease; }
.hero__img.is-active{ opacity:1; }
.wave{ height: 28px; margin-top: 26px; opacity:.5; background: linear-gradient(90deg, rgba(255,255,255,.06), rgba(255,255,255,0)); }

@media (max-width: 980px){
  .hero__grid{ grid-template-columns: 1fr; }
  .hero__text h1{ font-size: 40px; }
  .hero__imgwrap{ max-width: 100%; margin-left: 0; }
}

/* ===== SECTIONS ===== */
.section{ padding: 54px 0; }
.section--alt{
  background: linear-gradient(180deg, rgba(255,255,255,.03), rgba(255,255,255,0));
  border-top: 1px solid rgba(255,255,255,.06);
  border-bottom: 1px solid rgba(255,255,255,.06);
}
.section__head h2{ margin:0 0 8px; font-size:28px; letter-spacing:-0.01em; }
.section__head p{ margin:0; color: var(--muted); max-width:70ch; }

/* Cards */
.cards{ margin-top: 18px; display:grid; grid-template-columns: repeat(3, 1fr); gap:16px; }
.card{
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 18px;
  overflow:hidden;
  background: rgba(11,33,68,.6);
  box-shadow: 0 10px 24px rgba(0,0,0,.22);
}
.card__img{ height: 210px; background: rgba(255,255,255,.04); }
.card__img img{ width:100%; height:100%; object-fit: cover; display:block; }
.card__body{ padding: 14px 14px 16px; }
.card__body h3{ margin:0 0 6px; font-size:18px; }
.card__body p{ margin:0 0 10px; color: var(--muted); font-weight: 650; font-size:14px; line-height:1.45; }
.link{ color: var(--sky); text-decoration:none; font-weight: 900; }

@media (max-width: 980px){
  .cards{ grid-template-columns: 1fr; }
  .card__img{ height: 220px; }
}

/* Steps */
.steps{ margin-top: 18px; display:grid; gap:12px; }
.step{
  display:flex; gap:14px; align-items:flex-start;
  padding: 14px;
  border-radius: 18px;
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.04);
}
.step__num{
  min-width:34px; height:34px; border-radius:999px;
  display:flex; align-items:center; justify-content:center;
  background: rgba(76,194,255,.18);
  border: 1px solid rgba(76,194,255,.35);
  font-weight: 950;
}
.step h3{ margin:0 0 6px; }
.step p{ margin:0; color: var(--muted); font-weight: 650; }

/* Contact */
.contact{ margin-top: 16px; display:flex; flex-wrap:wrap; gap:12px; }

/* Footer */
.footer{ padding: 22px 0; border-top: 1px solid rgba(255,255,255,.08); background: rgba(0,0,0,.08); }
.footer__inner{ display:flex; justify-content: space-between; gap: 12px; color: rgba(255,255,255,.8); font-weight: 800; }
.muted{ color: rgba(255,255,255,.65); font-weight: 650; }
@media (max-width: 720px){
  .footer__inner{ flex-direction: column; align-items:flex-start; }
}
/* ============================= */
/* TRUSTBAR */
/* ============================= */

.trustbar{
  display: flex;
  justify-content: center;
  gap: 24px;
  padding: 18px 20px;
  margin-top: -20px;
  margin-bottom: 20px;
  background: rgba(0, 170, 255, 0.08);
  backdrop-filter: blur(8px);
  border-radius: 16px;
  max-width: 1100px;
  margin-left: auto;
  margin-right: auto;
  border: 1px solid rgba(0,170,255,0.25);
  box-shadow: 0 0 30px rgba(0,150,255,0.15);
}

.trustbar__item{
  color: #eaf6ff;
  font-weight: 600;
  font-size: 15px;
  display: flex;
  align-items: center;
  gap: 8px;
}

/* ============================= */
/* GOOGLE RATING HINT */
/* ============================= */

.rating_hint{
  text-align: center;
  color: #b9e8ff;
  font-size: 14px;
  margin-bottom: 40px;
  opacity: 0.85;
}
.hero__media{
  margin-top: 70px;
}

.hero{
  padding-top: 110px;
}
.trustbar{
  margin-top: 28px;   /* verschiebt die 3 Chips nach unten */
}

.rating_hint{
  margin-top: 14px;   /* Abstand zur Bewertungszeile */
}