:root{
  --bg:#0b0c10;
  --text:#f2f3f7;
  --muted:#b7bccb;
  --muted2:#8f95a6;
  --line:rgba(255,255,255,.10);
  --accent:#e0121b;
  --max:1120px;
  --radius:16px;
  --shadow: 0 14px 40px rgba(0,0,0,.35);
}

*{box-sizing:border-box}
html,body{margin:0;padding:0}
body{
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Arial;
  color:var(--text);
  background: linear-gradient(180deg, var(--bg), #07080c);
}

.container{width:min(var(--max),92%); margin:0 auto}
a{color:inherit}

/* IMPORTANT: stop margin default that breaks layout */
figure{margin:0}
img{max-width:100%; display:block}

/* HEADER */
.header{
  position:sticky; top:0; z-index:1000;
  background: rgba(10,10,14,.88);
  backdrop-filter: blur(10px);
  border-bottom:1px solid var(--line);
}
.header__inner{
  height:72px;
  display:flex; align-items:center; justify-content:space-between;
  gap:16px;
}
.brand{display:flex; align-items:center; gap:12px}
.brand__logo{width:44px; height:44px; object-fit:contain; border-radius:12px}
.brand__name{font-weight:900; letter-spacing:.6px; text-transform:uppercase; font-size:14px}
.brand__sub{color:var(--muted2); font-size:12px}

.nav{display:flex; gap:14px; align-items:center}
.nav a{
  text-decoration:none;
  color:var(--muted);
  font-size:13px;
  padding:8px 10px;
  border-radius:12px;
}
.nav a:hover{background:rgba(255,255,255,.06); color:var(--text)}
.nav__cta{
  border:1px solid rgba(224,18,27,.35);
  background: rgba(224,18,27,.12);
  color:#ffd2d6;
}

/* HERO */
.hero{padding:36px 0 24px}
.pill{
  display:inline-block;
  padding:8px 12px;
  border-radius:999px;
  border:1px solid rgba(224,18,27,.35);
  background: rgba(224,18,27,.12);
  color:#ffd2d6;
  font-weight:900;
  font-size:12px;
}
.hero__title{margin:14px 0 8px; font-size:44px; line-height:1.05}
.hero__lead{margin:0; color:var(--muted); font-size:16px; line-height:1.75; max-width:78ch}

/* SECTIONS */
.section{padding:42px 0}
.section--soft{
  background: rgba(255,255,255,.03);
  border-top:1px solid rgba(255,255,255,.06);
  border-bottom:1px solid rgba(255,255,255,.06);
}
h2{margin:0 0 14px; font-size:28px}

/* SERVICES */
.grid3{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap:14px;
  margin-top:16px;
}
.service{
  background: rgba(255,255,255,.03);
  border:1px solid var(--line);
  border-radius: var(--radius);
  padding:16px;
  box-shadow: var(--shadow);
}
.service h3{margin:0 0 10px; font-size:16px}
.service p{margin:0 0 10px; color:var(--muted); line-height:1.7}
.service ul{margin:0; padding-left:18px; color:var(--muted); line-height:1.8}

/* ✅ ARBEITEN: THUMBS (NO OVERLAP) */
.thumbs{
  display:grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap:14px;
  margin-top:16px;
}
.thumb{
  border:1px solid rgba(255,255,255,.12);
  background: rgba(0,0,0,.20);
  border-radius: var(--radius);
  overflow:hidden;
  box-shadow: var(--shadow);
}
.thumb img{
  width:100%;
  height:140px;
  object-fit:cover;
}
.thumb figcaption{
  padding:10px 12px;
  color:var(--muted);
  font-size:13px;
  border-top:1px solid rgba(255,255,255,.06);
}

/* FOOTER */
.footer{
  padding:18px 0 28px;
  border-top:1px solid rgba(255,255,255,.08);
  color:var(--muted2);
  font-size:12px;
}

/* RESPONSIVE */
@media (max-width: 980px){
  .nav{display:none}
  .grid3{grid-template-columns: 1fr}
  .hero__title{font-size:36px}
}
/* PARTNERS */
.partners{
  display:grid;
  grid-template-columns: repeat(4, 1fr);
  gap:12px;
  margin-top:14px;
}
.partner{
  border:1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.03);
  border-radius: var(--radius);
  padding:16px;
  min-height:92px;
  display:flex;
  align-items:center;
  justify-content:center;
  flex-direction:column;
  gap:10px;
  text-align:center;
  box-shadow: var(--shadow);
}
.partner img{
  max-width:160px;
  max-height:44px;
  width:100%;
  height:auto;
  object-fit:contain;
}
.partner span{
  color:var(--muted2);
  font-size:12px;
}
@media (max-width: 980px){
  .partners{grid-template-columns: repeat(2, 1fr);}
}
/* PARTNERS */
.partners{
  display:grid;
  grid-template-columns: repeat(4, 1fr);
  gap:12px;
  margin-top:14px;
}
.partner{
  border:1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.03);
  border-radius: var(--radius);
  padding:16px;
  min-height:92px;
  display:flex;
  align-items:center;
  justify-content:center;
  flex-direction:column;
  gap:10px;
  text-align:center;
  box-shadow: var(--shadow);
}
.partner img{
  max-width:160px;
  max-height:44px;
  width:100%;
  height:auto;
  object-fit:contain;
}
.partner span{
  color:var(--muted2);
  font-size:12px;
}
@media (max-width: 980px){
  .partners{grid-template-columns: repeat(2, 1fr);}
}
