:root{
  --text:#0b0d12;
  --muted:#5b6472;
  --line:#e8ecf2;
  --soft:#f6f8fb;

  --accent:#111827;
  --radius:18px;
  --shadow: 0 18px 40px rgba(17,24,39,.08);
  --wrap: 1120px;
}

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

body{
  margin:0;
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  color: var(--text);

  /* Hintergrund sichtbar */
  background: url("bg.png") center / cover no-repeat fixed;
}

@supports (-webkit-touch-callout: none) {
  body { background-attachment: scroll; }
}

/* Weniger Overlay = BG stärker */
.page{
  min-height:100vh;
  background: rgba(255,255,255,.38); /* war zu stark -> jetzt deutlich transparenter */
  backdrop-filter: blur(1px);
}

a{ color:inherit; text-decoration:none; }
img{ display:block; max-width:100%; }
ul{ margin:0; padding-left: 1.05rem; }
li{ line-height:1.55; color: var(--muted); }
p{ margin:0; color: var(--muted); line-height:1.6; }

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

/* Header */
.header{
  position:sticky;
  top:0;
  z-index:50;
  background: rgba(255,255,255,.90);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(232,236,242,.95);
}
.header__inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:18px;
  padding: 14px 0;
}

.brand{
  display:flex;
  align-items:center;
  gap:12px;
  min-width: 220px;
}
.brand__logo{
  width:64px;
  height:64px;
  object-fit:contain;
}
.brand__name{
  font-weight:700;
  letter-spacing:.2px;
  font-size: 15px;
}

.nav{
  display:flex;
  align-items:center;
  gap:18px;
}
.nav__link{
  font-weight:600;
  font-size:14px;
  color: var(--muted);
  padding: 8px 10px;
  border-radius: 999px;
}
.nav__link:hover{ color: var(--text); background: rgba(246,248,251,.85); }
.nav__link--cta{ color: var(--text); }

.header__right{
  display:flex;
  align-items:center;
  gap:10px;
}

/* Language */
.lang{
  display:flex;
  gap:4px;
  padding:4px;
  border: 1px solid rgba(232,236,242,.95);
  border-radius: 999px;
  background: rgba(255,255,255,.90);
}
.lang__btn{
  border:0;
  background:transparent;
  padding:7px 10px;
  border-radius: 999px;
  cursor:pointer;
  font-weight:700;
  font-size:12px;
  color: var(--muted);
}
.lang__btn:hover{ color: var(--text); background: rgba(246,248,251,.85); }
.lang__btn.is-active{ color:#fff; background: var(--accent); }

/* Buttons */
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  border-radius: 999px;
  padding: 12px 14px;
  font-weight:700;
  font-size:14px;
  border: 1px solid rgba(232,236,242,.95);
  background: rgba(255,255,255,.86);
  color: var(--text);
  transition: transform .15s ease, box-shadow .2s ease, background .2s ease;
}
.btn:hover{ transform: translateY(-1px); box-shadow: 0 12px 26px rgba(17,24,39,.08); }
.btn--primary{
  background: var(--accent);
  color:#fff;
  border-color: var(--accent);
}
.btn--primary:hover{ box-shadow: 0 18px 44px rgba(17,24,39,.18); }
.btn--ghost{ background: rgba(255,255,255,.86); }

/* Mobile nav */
.menu{
  display:none;
  width:42px; height:42px;
  border-radius: 14px;
  border: 1px solid rgba(232,236,242,.95);
  background: rgba(255,255,255,.86);
  cursor:pointer;
}
.menu span{
  display:block;
  width:18px; height:2px;
  background: var(--text);
  margin: 7px auto;
  border-radius: 2px;
}
.mobile{ display:none; border-top:1px solid rgba(232,236,242,.95); background: rgba(255,255,255,.92); }
.mobile.is-open{ display:block; }
.mobile__inner{ padding: 14px 0 18px; display:flex; flex-direction:column; gap:10px; }
.mobile__link{
  padding: 12px 12px;
  border-radius: 14px;
  border: 1px solid rgba(232,236,242,.95);
  background: rgba(255,255,255,.86);
  font-weight:700;
}
.mobile__line{ height:1px; background: rgba(232,236,242,.95); margin: 6px 0; }

/* Hero */
.hero{ padding: 96px 0 44px; }
.kicker{
  font-weight:600;
  letter-spacing:.12px;
  color: var(--muted);
  font-size: 13px;
}
.h1{
  margin: 10px 0 12px;
  font-size: clamp(36px, 4vw, 56px);
  line-height: 1.08;
  letter-spacing: -0.9px;
}
.lead{
  font-size: 16px;
  max-width: 72ch;
}
.hero__actions{
  display:flex;
  gap:12px;
  flex-wrap:wrap;
  margin-top: 18px;
}

/* Sections */
.section{ padding: 56px 0; }
.section--alt{
  background: rgba(246,248,251,.40);
  border-top: 1px solid rgba(232,236,242,.90);
  border-bottom: 1px solid rgba(232,236,242,.90);
}
.section__head{
  display:flex;
  align-items:flex-end;
  justify-content:space-between;
  gap:16px;
  flex-wrap:wrap;
  margin-bottom: 18px;
}
.h2{ margin:0; font-size: 24px; letter-spacing: -.3px; }
.sub{ margin:0; max-width: 64ch; }

/* Cards */
.grid{
  display:grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}
.card{
  border: 1px solid rgba(232,236,242,.95);
  border-radius: var(--radius);
  background: rgba(255,255,255,.78); /* transparenter => BG wirkt stärker */
  padding: 18px;
  backdrop-filter: blur(1px);
}
.h3{ margin:0 0 10px; font-size: 15px; letter-spacing: .1px; }
.list{ margin:0; }
.list--wide{
  display:grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0 18px;
}
.card--wide{
  grid-column: span 3;
  background: rgba(255,255,255,.82);
  box-shadow: var(--shadow);
}

.inlineCta{
  margin-top: 14px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap: 12px;
  flex-wrap:wrap;
  padding-top: 14px;
  border-top: 1px solid rgba(232,236,242,.95);
}
.micro{ font-size: 12px; }

/* Steps */
.steps{
  display:grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}
.step{
  border: 1px solid rgba(232,236,242,.95);
  background: rgba(255,255,255,.78);
  border-radius: var(--radius);
  padding: 16px;
  display:flex;
  gap: 12px;
  backdrop-filter: blur(1px);
}
.step__n{ font-weight:800; letter-spacing:.4px; opacity:.55; min-width: 38px; }
.step__t{ font-weight:700; font-size: 14px; }
.step__d{ margin-top: 6px; font-weight:500; font-size: 13px; color: var(--muted); }

/* Contact */
.contact{
  border: 1px solid rgba(232,236,242,.95);
  border-radius: calc(var(--radius) + 10px);
  background: rgba(255,255,255,.82);
  box-shadow: var(--shadow);
  padding: 22px;
  backdrop-filter: blur(1px);
}
.contact__actions{ margin-top: 14px; display:flex; gap:12px; flex-wrap:wrap; }
.contact__grid{ margin-top: 18px; display:grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.info{
  border: 1px solid rgba(232,236,242,.95);
  border-radius: var(--radius);
  padding: 14px;
  background: rgba(255,255,255,.78);
}
.info__k{ font-weight:800; font-size: 12px; color: var(--muted); }
.info__v{ display:block; margin-top: 6px; font-weight:800; letter-spacing:.1px; }

/* Footer */
.footer{
  border-top: 1px solid rgba(232,236,242,.95);
  padding: 22px 0 30px;
  background: rgba(255,255,255,.76);
  backdrop-filter: blur(6px);
}
.footer__inner{ display:flex; align-items:center; justify-content:space-between; gap:12px; flex-wrap:wrap; }
.footer__l{ font-weight:700; font-size: 13px; color: var(--muted); }
.footer__r{ font-weight:800; font-size: 13px; padding: 8px 10px; border-radius: 999px; color: var(--muted); }
.footer__r:hover{ background: rgba(246,248,251,.85); color: var(--text); }

/* Floating WhatsApp */
.fab{
  position: fixed;
  right: 16px;
  bottom: 16px;
  display:flex;
  align-items:center;
  gap:10px;
  padding: 12px 14px;
  border-radius: 999px;
  background: var(--accent);
  color: #fff;
  font-weight:900;
  letter-spacing:.2px;
  border: 1px solid var(--accent);
  box-shadow: 0 18px 44px rgba(17,24,39,.20);
}
.fab:hover{ transform: translateY(-2px); }
.fab__dot{
  width:10px; height:10px;
  border-radius: 999px;
  background: #22c55e;
  box-shadow: 0 0 0 6px rgba(34,197,94,.18);
}

/* Responsive */
@media (max-width: 980px){
  .grid{ grid-template-columns: 1fr 1fr; }
  .card--wide{ grid-column: span 2; }
  .list--wide{ grid-template-columns: 1fr; }
  .steps{ grid-template-columns: 1fr 1fr; }
}
@media (max-width: 760px){
  .nav{ display:none; }
  .menu{ display:inline-flex; align-items:center; justify-content:center; }

  .grid{ grid-template-columns: 1fr; }
  .card--wide{ grid-column: span 1; }
  .contact__grid{ grid-template-columns: 1fr; }

  .hero{ padding: 78px 0 34px; }
  .brand__logo{ width:54px; height:54px; }
}
@media (max-width: 420px){
  .wrap{ width: calc(100% - 28px); }
  .brand{ min-width: 0; }
}
/* Floating WhatsApp — fix readability */
.fab{
  position: fixed;
  right: 16px;
  bottom: 16px;

  z-index: 9999;                 /* immer oben */
  display:flex;
  align-items:center;
  gap:10px;

  padding: 12px 14px;
  border-radius: 999px;

  background: #111827;           /* solid, kein transparent */
  color: #ffffff;                /* harte Kontrastfarbe */
  border: 1px solid #111827;

  box-shadow: 0 18px 44px rgba(17,24,39,.25);
  opacity: 1;
  filter: none;
}

.fab__t{
  color:#ffffff;
  font-weight: 900;
  letter-spacing: .2px;
  text-shadow: 0 1px 0 rgba(0,0,0,.25); /* minimal, für jedes BG */
}

.fab__dot{
  width:10px; height:10px;
  border-radius: 999px;
  background: #22c55e;
  box-shadow: 0 0 0 6px rgba(34,197,94,.18);
}
