:root{
  --bg:#0b0d10;
  --panel:#10141a;
  --panel2:#0f1217;
  --text:#e9eef7;
  --muted:#a7b3c7;
  --line:rgba(255,255,255,.08);
  --shadow: 0 18px 55px rgba(0,0,0,.55);
  --radius: 18px;
  --radius2: 26px;

  --p: 20px;
  --max: 1120px;

  --primary: #7c5cff;
  --accent: #22c55e;
}

*{ box-sizing:border-box; }
html,body{ height:100%; }
body{
  margin:0;
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Arial, "Noto Sans", "Apple Color Emoji","Segoe UI Emoji";
  background: radial-gradient(1200px 800px at 20% 10%, rgba(124,92,255,.18), transparent 60%),
              radial-gradient(1000px 600px at 80% 20%, rgba(34,197,94,.10), transparent 55%),
              var(--bg);
  color: var(--text);
}

a{ color: inherit; text-decoration:none; }
.container{ max-width: var(--max); margin:0 auto; padding: 0 var(--p); }

.topbar{
  position: sticky; top:0; z-index:50;
  backdrop-filter: blur(14px);
  background: rgba(11,13,16,.62);
  border-bottom: 1px solid var(--line);
}
.topbar__inner{
  height:64px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:16px;
}
.brand{ display:flex; align-items:center; gap:10px; }
.brand{
  display:flex;
  align-items:center;
  gap:10px;
  min-width: 0;
}

.brand__logo{
  height: 34px;            /* Desktop-Basis */
  width: auto;
  display:block;
  object-fit: contain;
  filter: drop-shadow(0 8px 20px rgba(0,0,0,.35));
}

.brand__text{
  font-weight: 800;
  letter-spacing: .2px;
  white-space: nowrap;
}

.brand__city{
  color: var(--muted);
  font-size: 13px;
  border-left:1px solid var(--line);
  padding-left:10px;
  white-space: nowrap;
}
.brand__logo--footer{
  height: 28px;
  filter: none;
}

.brand__text{ font-weight: 800; letter-spacing: .2px; }
.brand__city{ color: var(--muted); font-size: 13px; border-left:1px solid var(--line); padding-left:10px; }


/* Mobile: etwas kleiner + City optional ausblenden, falls eng */
@media (max-width: 760px){
  .brand__logo{ height: 30px; }
  .brand__city{ display: none; }
}


.nav{ display:flex; gap:18px; }
.nav a{ color: var(--muted); font-weight: 650; font-size: 14px; }
.nav a:hover{ color: var(--text); }

.burger{
  display:none;
  width:44px; height:44px; border:1px solid var(--line);
  background: rgba(255,255,255,.02);
  border-radius: 12px;
}
.burger span{ display:block; height:2px; margin:7px 10px; background: rgba(233,238,247,.75); border-radius: 2px; }

.mobileNav{
  border-top: 1px solid var(--line);
  padding: 10px var(--p) 14px;
  display:flex;
  flex-direction:column;
  gap:10px;
}
.mobileNav a{
  padding: 12px 12px;
  border:1px solid var(--line);
  border-radius: 14px;
  background: rgba(255,255,255,.02);
  color: var(--muted);
  font-weight: 650;
}
.mobileNav a:hover{ color: var(--text); }

.hero{ padding: 38px 0 10px; }
.hero__grid{
  display:grid;
  grid-template-columns: 1.15fr .85fr;
  gap: 28px;
  align-items: center;
}
.pill{
  display:inline-flex;
  gap:8px;
  padding: 8px 12px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--muted);
  background: rgba(255,255,255,.02);
  font-weight: 700;
  font-size: 13px;
  margin:0 0 10px;
}
h1{
  font-size: clamp(34px, 5vw, 54px);
  line-height: 1.05;
  margin: 10px 0 12px;
  letter-spacing: -0.9px;
}
.lead{
  color: var(--muted);
  font-size: 17px;
  line-height: 1.5;
  margin: 0 0 18px;
  max-width: 54ch;
}

.hero__cta{ display:flex; gap:12px; flex-wrap: wrap; margin: 10px 0 16px; }
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  padding: 12px 16px;
  border-radius: 14px;
  border: 1px solid var(--line);
  background: rgba(255,255,255,.02);
  font-weight: 800;
  letter-spacing: .2px;
}
.btn--primary{
  border-color: rgba(124,92,255,.55);
  background: linear-gradient(135deg, rgba(124,92,255,.95), rgba(255,79,216,.72));
  box-shadow: 0 14px 40px rgba(124,92,255,.18);
}
.btn--ghost:hover{ border-color: rgba(255,255,255,.20); background: rgba(255,255,255,.04); }
.btn--small{ padding: 10px 12px; border-radius: 12px; font-weight: 800; }

.quick{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-top: 10px;
}
.quick__item{
  border: 1px solid var(--line);
  background: rgba(255,255,255,.02);
  border-radius: 16px;
  padding: 12px;
}
.quick__k{ font-weight: 850; font-size: 13px; }
.quick__v{ color: var(--muted); font-size: 13px; margin-top: 4px; }

.hero__media{ display:flex; flex-direction:column; gap: 12px; }
.reel{
  position: relative;
  border-radius: var(--radius2);
  overflow:hidden;
  border: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(255,255,255,.02), rgba(255,255,255,.01));
  box-shadow: var(--shadow);
  /* 9:16 container */
  aspect-ratio: 9 / 16;
  max-height: 640px;
}
.reel__video{
  width:100%;
  height:100%;
  object-fit: cover;
  display:block;
}
.reel__toggle{
  position:absolute;
  left: 12px;
  bottom: 12px;
  width: 48px;
  height: 48px;
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,.16);
  background: rgba(11,13,16,.55);
  color: var(--text);
  font-weight: 900;
  cursor: pointer;
}
.hero__badges{ display:flex; gap:10px; flex-wrap: wrap; }
.badge{
  padding: 8px 12px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: rgba(255,255,255,.02);
  color: var(--muted);
  font-weight: 750;
  font-size: 13px;
}

.section{ padding: 54px 0; }
.section--muted{ background: rgba(255,255,255,.02); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.sectionHead h2{
  margin:0 0 8px;
  font-size: 28px;
  letter-spacing: -0.4px;
}
.sectionHead p{ margin:0 0 18px; color: var(--muted); max-width: 70ch; }

.twoCards{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.cardLink{
  border: 1px solid var(--line);
  background: rgba(255,255,255,.02);
  border-radius: 20px;
  padding: 18px;
  transition: transform .15s ease, border-color .15s ease, background .15s ease;
}
.cardLink:hover{ transform: translateY(-2px); border-color: rgba(255,255,255,.18); background: rgba(255,255,255,.035); }
.cardLink h2{ margin:0 0 6px; font-size: 18px; }
.cardLink p{ margin:0 0 10px; color: var(--muted); }
.cardLink__cta{ font-weight: 900; }

.grid{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
.card{
  border: 1px solid var(--line);
  background: rgba(255,255,255,.02);
  border-radius: 20px;
  padding: 16px;
  box-shadow: 0 10px 35px rgba(0,0,0,.25);
}
.card__top{
  display:flex;
  align-items:flex-start;
  justify-content:space-between;
  gap: 10px;
  margin-bottom: 10px;
}
.card h3{ margin:0; font-size: 16px; letter-spacing: -0.2px; }
.card__desc{ margin: 10px 0 14px; color: var(--muted); line-height: 1.5; }

.metaRow{
  display:flex; gap: 10px; flex-wrap: wrap;
  color: var(--muted);
  font-size: 13px;
}

.tag{
  font-size: 12px;
  padding: 6px 10px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: rgba(255,255,255,.02);
  color: var(--muted);
  font-weight: 850;
}
.tag--green{ border-color: rgba(34,197,94,.40); color: rgba(175,255,210,.95); }
.tag--purple{ border-color: rgba(124,92,255,.50); color: rgba(210,200,255,.98); }
.tag--blue{ border-color: rgba(56,189,248,.35); color: rgba(190,235,255,.95); }
.tag--orange{ border-color: rgba(249,115,22,.38); color: rgba(255,210,175,.98); }

.faq details{
  border: 1px solid var(--line);
  background: rgba(255,255,255,.02);
  border-radius: 18px;
  padding: 14px 14px;
  margin-bottom: 10px;
}
.faq summary{
  cursor:pointer;
  font-weight: 900;
}
.faq p{ color: var(--muted); margin: 10px 0 0; line-height: 1.55; }

.ctaRow{ display:flex; gap: 12px; flex-wrap: wrap; margin-top: 14px; }

.card--quote .quote{ margin: 0 0 10px; font-size: 15px; line-height: 1.55; }
.card--quote .quoteBy{ margin:0; color: var(--muted); font-weight: 800; }

.contact{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.contact__box{
  border: 1px solid var(--line);
  background: rgba(255,255,255,.02);
  border-radius: 20px;
  padding: 16px;
}
.contact__box h3{ margin:0 0 10px; }
.contact__box p{ margin:0 0 14px; color: var(--muted); }

.footer{
  border-top: 1px solid var(--line);
  padding: 22px 0;
  background: rgba(11,13,16,.65);
}
.footer__inner{ display:flex; align-items:flex-start; justify-content:space-between; gap: 16px; }
.footer__right{ display:flex; gap: 14px; color: var(--muted); }
.tiny{ color: var(--muted); margin: 10px 0 0; font-size: 13px; }

@media (max-width: 980px){
  .hero__grid{ grid-template-columns: 1fr; }
  .reel{ max-height: 560px; }
  .grid{ grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 760px){
  .nav{ display:none; }
  .burger{ display:block; }
  .twoCards{ grid-template-columns: 1fr; }
  .grid{ grid-template-columns: 1fr; }
  .quick{ grid-template-columns: 1fr; }
  .contact{ grid-template-columns: 1fr; }
}
