:root{
  --bg:#0b1220;
  --panel:#0f1b33;
  --text:#eaf0ff;
  --muted:#b7c3e0;
  --line:rgba(234,240,255,.12);
  --accent:#ffcc33;
}

*{box-sizing:border-box}
html,body{margin:0;padding:0}
body{
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  background: radial-gradient(1200px 600px at 20% 0%, #152a52 0%, var(--bg) 55%);
  color:var(--text);
  line-height:1.5;
}

a{color:inherit}
.container{max-width:1040px;margin:0 auto;padding:0 18px}

.site-header{
  position:sticky; top:0;
  background:rgba(11,18,32,.72);
  backdrop-filter: blur(10px);
  border-bottom:1px solid var(--line);
  z-index:10;
}
.header-inner{
  display:flex; align-items:center; justify-content:space-between;
  min-height:64px; gap:16px;
}
.brand{display:flex; align-items:center; gap:12px}
.brand-mark{font-size:22px}
.brand-title{font-weight:800; letter-spacing:.06em}
.brand-subtitle{font-size:12px; color:var(--muted); margin-top:2px}
.nav{
  display:flex;
  gap:14px;
  flex-wrap:wrap;
  justify-content:center;
}

.nav a:hover{background:rgba(255,255,255,.06); color:var(--text)}
.nav a.active{
  color: var(--accent);
  text-decoration: underline;
  text-underline-offset: 6px;
}

.hero{padding:44px 0 26px}
.hero h1{font-size:34px; line-height:1.15; margin:0 0 10px}
.hero-lead{color:var(--muted); font-size:16px; margin:0 0 18px}
.hero-small{color:var(--muted); font-size:13px; margin-top:14px}

.hero-cards{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap:12px;
  margin:18px 0;
}
.card{
  background:rgba(255,255,255,.04);
  border:1px solid var(--line);
  border-radius:16px;
  padding:14px;
}
.card-title{font-size:12px; color:var(--muted)}
.card-value{font-size:18px; font-weight:800; margin-top:4px}
.card-note{font-size:12px; color:var(--muted); margin-top:2px}

.hero-cta{display:flex; gap:10px; flex-wrap:wrap; margin-top:8px}
.btn{
  display:inline-block;
  text-decoration:none;
  padding:10px 14px;
  border-radius:14px;
  background:var(--accent);
  color:#1b1b1b;
  font-weight:800;
}
.btn:hover{filter:brightness(1.05)}
.btn-secondary{
  background:transparent;
  color:var(--text);
  border:1px solid var(--line);
}
.btn-secondary:hover{background:rgba(255,255,255,.06)}

.section{padding:30px 0}
.section-alt{background:rgba(255,255,255,.03); border-top:1px solid var(--line); border-bottom:1px solid var(--line)}
h2{margin:0 0 10px; font-size:24px}
h3{margin:0 0 8px; font-size:18px}
.muted{color:var(--muted); margin-top:0}

.grid{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap:12px;
  margin-top:14px;
}
.tile{
  background:rgba(255,255,255,.04);
  border:1px solid var(--line);
  border-radius:16px;
  padding:16px;
}
.tile ul{margin:10px 0 0 18px; color:var(--muted)}
.tile p{color:var(--muted)}

.contact-box{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap:12px;
  margin-top:14px;
  background:rgba(255,255,255,.04);
  border:1px solid var(--line);
  border-radius:16px;
  padding:16px;
}
.label{font-size:12px; color:var(--muted); margin-bottom:4px}
.link{color:var(--accent); text-decoration:none}
.link:hover{text-decoration:underline}

.site-footer{
  border-top:1px solid var(--line);
  padding:18px 0 26px;
  color:var(--muted);
}
.footer-inner{
  display:flex; justify-content:space-between; align-items:center;
  gap:10px; flex-wrap:wrap;
}
.footer-links{display:flex; gap:12px}
.footer-links a{color:var(--muted); text-decoration:none}
.footer-links a:hover{color:var(--text)}

/* Mobile */
@media (max-width: 820px){
  .hero h1{font-size:28px}
  .hero-cards{grid-template-columns:1fr; }
  .grid{grid-template-columns:1fr}
  .contact-box{grid-template-columns:1fr}
}

/* Mobile-Feinschliff – Startseite */
@media (max-width: 820px){

  body{
    font-size:15px;
  }

  .nav{
    justify-content:center;
    gap:10px;
  }

  h1{
    font-size:22px;
    line-height:1.3;
    text-align:center;
  }

  .wrap,
  div[style*="max-width:900px"]{
    padding-left:16px !important;
    padding-right:16px !important;
  }

}

/* Mobile-Feinschliff – Startseite */
@media (max-width: 820px){

  body{
    font-size:15px;
  }

  .nav{
    justify-content:center;
    gap:10px;
  }

  h1{
    font-size:22px;
    line-height:1.3;
    text-align:center;
  }

  .wrap,
  div[style*="max-width:900px"]{
    padding-left:16px !important;
    padding-right:16px !important;
  }

}

