:root{
  --bg:#0b1220;
  --bg2:#0f1b32;
  --card:#0f1930;
  --white:#ffffff;
  --text:#0f172a;
  --muted:#667085;

  /* Blau wie dein Logo */
  --brand:#1d4ed8;   /* kräftig */
  --brand2:#1e3a8a;  /* dunkler */

  --line:rgba(255,255,255,.12);
  --shadow:0 12px 34px rgba(0,0,0,.18);
  --radius:18px;
}

*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  margin:0;
  font-family:system-ui,-apple-system,Segoe UI,Roboto,Helvetica,Arial;
  color:var(--text);
  background:#f5f7fb;
}

a{color:inherit;text-decoration:none}
a:hover{opacity:.92}

.container{
  width:min(1180px, 92vw);
  margin:0 auto;
}

/* Header */
.header{
  position:sticky;
  top:0;
  z-index:50;
  background:rgba(255,255,255,.92);
  backdrop-filter: blur(10px);
  border-bottom:1px solid rgba(15,23,42,.08);
}
.header-inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:16px;
  padding:12px 0;
}
.brand{
  display:flex;
  align-items:center;
  gap:12px;
  min-width:240px;
}
.brand img{
  width:54px;
  height:auto;
  display:block;
}
.brand .name{
  font-weight:900;
  letter-spacing:.4px;
  line-height:1.05;
}
.brand .sub{
  font-size:12px;
  color:rgba(15,23,42,.65);
  margin-top:2px;
}

.nav{
  display:flex;
  align-items:center;
  gap:12px;
  flex-wrap:wrap;
  justify-content:flex-end;
}
.nav a{
  padding:10px 12px;
  border-radius:12px;
  font-weight:700;
  font-size:14px;
  color:rgba(15,23,42,.85);
}
.nav a:hover{
  background:rgba(29,78,216,.08);
  color:var(--brand2);
}

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

.badge{
  display:inline-flex;
  align-items:center;
  gap:8px;
  padding:10px 12px;
  border:1px solid rgba(15,23,42,.10);
  border-radius:999px;
  background:#fff;
  font-weight:800;
  font-size:13px;
  white-space:nowrap;
}
.badge small{
  font-weight:700;
  color:rgba(15,23,42,.65);
}

.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  padding:12px 16px;
  border-radius:14px;
  border:1px solid transparent;
  font-weight:900;
  cursor:pointer;
  transition:.15s ease;
  white-space:nowrap;
}
.btn.primary{
  background:linear-gradient(135deg, var(--brand), var(--brand2));
  color:#fff;
  box-shadow:0 10px 22px rgba(29,78,216,.22);
}
.btn.primary:hover{transform:translateY(-1px)}
.btn.ghost{
  background:#fff;
  border-color:rgba(15,23,42,.12);
  color:rgba(15,23,42,.92);
}
.btn.ghost:hover{background:rgba(29,78,216,.06)}
.btn.white{
  background:#fff;
  color:var(--brand2);
  border-color:rgba(255,255,255,.18);
}

/* Hero */
.hero{
  background:
    radial-gradient(1200px 600px at 15% 20%, rgba(29,78,216,.35), transparent 60%),
    radial-gradient(900px 500px at 90% 30%, rgba(30,58,138,.35), transparent 55%),
    linear-gradient(135deg, var(--bg), var(--bg2));
  color:#fff;
  position:relative;
  overflow:hidden;
}
.hero::after{
  content:"";
  position:absolute;
  inset:0;
  background:
    linear-gradient(transparent 0, rgba(0,0,0,.22) 55%, rgba(0,0,0,.30) 100%);
  pointer-events:none;
}
.hero .container{
  position:relative;
  z-index:2;
  padding:62px 0 44px;
}
.kicker{
  display:flex;
  gap:10px;
  flex-wrap:wrap;
  align-items:center;
  color:rgba(255,255,255,.80);
  font-weight:800;
  letter-spacing:.25px;
  text-transform:uppercase;
  font-size:12px;
}
.kicker span{
  padding:6px 10px;
  border:1px solid rgba(255,255,255,.16);
  border-radius:999px;
  background:rgba(255,255,255,.06);
}

.hero-grid{
  display:grid;
  grid-template-columns: 1.35fr .85fr;
  gap:22px;
  margin-top:18px;
  align-items:start;
}

.h1{
  margin:0;
  font-size:48px;
  line-height:1.03;
  letter-spacing:-.5px;
  font-weight:950;
}
.h1 .accent{
  color:#dbeafe;
}
.hero p{
  margin:14px 0 0;
  color:rgba(255,255,255,.82);
  font-size:16px;
  line-height:1.55;
  max-width:62ch;
}

.pills{
  display:flex;
  gap:10px;
  flex-wrap:wrap;
  margin-top:16px;
}
.pill{
  display:inline-flex;
  align-items:center;
  gap:8px;
  padding:10px 12px;
  border-radius:999px;
  background:rgba(255,255,255,.08);
  border:1px solid rgba(255,255,255,.14);
  color:#fff;
  font-weight:900;
  font-size:13px;
}

.hero-cta{
  display:flex;
  gap:12px;
  flex-wrap:wrap;
  margin-top:18px;
}

.card{
  background:rgba(255,255,255,.08);
  border:1px solid rgba(255,255,255,.16);
  border-radius:var(--radius);
  padding:16px 16px;
  box-shadow:none;
}
.card h3{
  margin:0 0 10px;
  font-size:16px;
  font-weight:950;
}
.card ul{
  margin:0;
  padding-left:18px;
  color:rgba(255,255,255,.86);
  line-height:1.65;
  font-weight:700;
  font-size:14px;
}
.card p{
  margin:10px 0 0;
  color:rgba(255,255,255,.82);
  font-weight:700;
  font-size:13px;
}

/* Sections */
.section{
  padding:46px 0;
}
.section.alt{
  background:#ffffff;
  border-top:1px solid rgba(15,23,42,.06);
  border-bottom:1px solid rgba(15,23,42,.06);
}
.section h2{
  margin:0 0 12px;
  font-size:30px;
  letter-spacing:-.4px;
  font-weight:950;
}
.section .lead{
  margin:0 0 18px;
  color:rgba(15,23,42,.72);
  line-height:1.6;
  font-weight:650;
  max-width:78ch;
}

/* Cards grid */
.grid3{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap:14px;
}
.box{
  background:#fff;
  border:1px solid rgba(15,23,42,.08);
  border-radius:var(--radius);
  padding:18px;
  box-shadow:var(--shadow);
}
.box h3{
  margin:0 0 8px;
  font-size:18px;
  font-weight:950;
}
.box p{
  margin:0;
  color:rgba(15,23,42,.72);
  line-height:1.6;
  font-weight:650;
}
.small{font-size:13px;color:rgba(15,23,42,.68);line-height:1.6;font-weight:650}

.two{
  display:grid;
  grid-template-columns: 1.2fr .8fr;
  gap:14px;
  align-items:start;
}

.hr{
  height:1px;
  background:rgba(15,23,42,.08);
  margin:14px 0;
}

.table{
  display:grid;
  gap:10px;
}
.row{
  display:flex;
  align-items:flex-start;
  gap:10px;
}
.dot{
  width:10px;height:10px;border-radius:999px;
  background:linear-gradient(135deg, var(--brand), var(--brand2));
  margin-top:7px;
  flex:0 0 auto;
}

/* Offer */
.offer{
  display:grid;
  grid-template-columns: 1.1fr .9fr;
  gap:14px;
  align-items:stretch;
}
.offer .box{
  height:100%;
}
.offer .actions{
  display:flex;
  gap:12px;
  flex-wrap:wrap;
  margin-top:12px;
}

/* Footer */
.footer{
  background:#0b1220;
  color:rgba(255,255,255,.86);
  padding:34px 0 18px;
  margin-top:22px;
}
.footer a{color:rgba(255,255,255,.86)}
.footer a:hover{color:#fff}
.footer-grid{
  display:grid;
  grid-template-columns: 1.3fr .7fr .8fr;
  gap:14px;
}
.footer .bottom{
  margin-top:16px;
  padding-top:14px;
  border-top:1px solid rgba(255,255,255,.14);
  color:rgba(255,255,255,.68);
  font-weight:650;
  font-size:13px;
}

/* Helpers */
.skip{
  position:absolute;left:-999px;top:auto;width:1px;height:1px;overflow:hidden;
}
.skip:focus{
  position:fixed;left:14px;top:14px;width:auto;height:auto;
  background:#fff;color:#000;padding:10px 12px;border-radius:12px;z-index:999;
}

@media (max-width: 980px){
  .hero-grid{grid-template-columns:1fr;gap:14px}
  .two, .offer{grid-template-columns:1fr}
  .grid3{grid-template-columns:1fr}
  .header-inner{flex-wrap:wrap}
  .brand{min-width:auto}
  .h1{font-size:38px}
}

@media (max-width: 520px){
  .brand img{width:46px}
  .h1{font-size:34px}
  .nav a{padding:9px 10px}
  .badge{display:none}
}
