:root{
  --bg:#f6f8fb;
  --white:#ffffff;
  --dark:#132033;
  --text:#354052;
  --muted:#6e7b8f;
  --line:#dde5ef;
  --primary:#00a6c8;
  --primary-dark:#007d99;
  --accent:#ffb000;
  --soft:#e8f8fb;
  --shadow:0 20px 55px rgba(19,32,51,.10);
  --radius:22px;
  --max:1180px;
}
*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  margin:0;
  font-family:Arial, Helvetica, sans-serif;
  color:var(--text);
  background:var(--bg);
  line-height:1.65;
}
a{color:inherit}
img{max-width:100%;height:auto}
.container{
  width:min(var(--max), calc(100% - 40px));
  margin:0 auto;
}
.topbar{
  background:#0e1726;
  color:#cbd7e6;
  font-size:.92rem;
}
.topbar .container{
  display:flex;
  justify-content:space-between;
  gap:20px;
  padding:8px 0;
}
.header{
  position:sticky;
  top:0;
  z-index:20;
  background:rgba(255,255,255,.94);
  backdrop-filter: blur(10px);
  border-bottom:1px solid var(--line);
}
.nav-wrap{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:24px;
  padding:16px 0;
}
.brand{
  display:flex;
  align-items:center;
  gap:12px;
  text-decoration:none;
  color:var(--dark);
  font-weight:800;
  letter-spacing:.2px;
}
.brand img{width:118px;height:auto;max-height:54px;object-fit:contain}
.brand span small{
  display:block;
  color:var(--muted);
  font-weight:600;
  font-size:.78rem;
  letter-spacing:0;
}
.nav{
  display:flex;
  align-items:center;
  gap:8px;
  flex-wrap:wrap;
}
.nav a{
  text-decoration:none;
  padding:9px 13px;
  border-radius:999px;
  color:#26344a;
  font-weight:700;
  font-size:.95rem;
}
.nav a:hover,.nav a.active{
  background:var(--soft);
  color:var(--primary-dark);
}
.hero{
  position:relative;
  overflow:hidden;
  background:
    radial-gradient(circle at top left, rgba(0,166,200,.25), transparent 32%),
    linear-gradient(135deg, #102033 0%, #1f3c59 55%, #007d99 100%);
  color:white;
}
.hero .container{
  display:grid;
  grid-template-columns:1.05fr .95fr;
  gap:42px;
  align-items:center;
  padding:82px 0;
}
.eyebrow{
  display:inline-flex;
  gap:8px;
  align-items:center;
  background:rgba(255,255,255,.13);
  border:1px solid rgba(255,255,255,.22);
  color:#e9fbff;
  border-radius:999px;
  padding:7px 13px;
  font-size:.9rem;
  font-weight:700;
}
h1,h2,h3{
  margin:0 0 16px;
  color:var(--dark);
  line-height:1.18;
}
.hero h1{
  color:#fff;
  font-size:clamp(2.35rem, 5vw, 4.7rem);
  letter-spacing:-1.4px;
  margin-top:22px;
}
.hero p{
  color:#d8edf4;
  font-size:1.16rem;
  max-width:680px;
}
.hero-card{
  background:rgba(255,255,255,.11);
  border:1px solid rgba(255,255,255,.22);
  border-radius:30px;
  padding:24px;
  box-shadow:0 25px 70px rgba(0,0,0,.25);
}
.hero-card img{
  border-radius:22px;
  display:block;
  background:white;
}
.actions{
  display:flex;
  gap:14px;
  flex-wrap:wrap;
  margin-top:30px;
}
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:8px;
  padding:13px 19px;
  border-radius:999px;
  text-decoration:none;
  font-weight:800;
  border:2px solid transparent;
}
.btn.primary{background:var(--accent);color:#1b2535}
.btn.secondary{border-color:rgba(255,255,255,.45);color:white}
.btn.light{background:var(--primary);color:white}
.section{padding:76px 0}
.section.white{background:white}
.section-head{
  max-width:780px;
  margin-bottom:34px;
}
.section-head.center{text-align:center;margin-left:auto;margin-right:auto}
.kicker{
  color:var(--primary-dark);
  font-weight:900;
  text-transform:uppercase;
  letter-spacing:.12em;
  font-size:.78rem;
}
h2{font-size:clamp(1.9rem,3vw,3rem)}
h3{font-size:1.35rem}
.grid{
  display:grid;
  gap:22px;
}
.grid.cards{grid-template-columns:repeat(3,1fr)}
.grid.two{grid-template-columns:repeat(2,1fr)}
.grid.four{grid-template-columns:repeat(4,1fr)}
.card{
  background:var(--white);
  border:1px solid var(--line);
  border-radius:var(--radius);
  padding:26px;
  box-shadow:0 10px 35px rgba(19,32,51,.06);
}
.card.highlight{
  background:linear-gradient(180deg, #fff 0%, #effbfe 100%);
  border-color:#b8edf7;
}
.icon{
  width:48px;
  height:48px;
  border-radius:15px;
  background:var(--soft);
  color:var(--primary-dark);
  display:grid;
  place-items:center;
  font-size:1.45rem;
  margin-bottom:16px;
}
.split{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:42px;
  align-items:center;
}
.visual{
  border-radius:30px;
  box-shadow:var(--shadow);
  border:1px solid var(--line);
  background:white;
  padding:18px;
}
.list{
  padding-left:0;
  list-style:none;
  margin:18px 0 0;
}
.list li{
  padding:11px 0 11px 34px;
  border-bottom:1px solid var(--line);
  position:relative;
}
.list li:before{
  content:"✓";
  position:absolute;
  left:0;
  top:11px;
  color:var(--primary-dark);
  font-weight:900;
}
.page-hero{
  background:linear-gradient(135deg, #102033, #007d99);
  color:white;
  padding:72px 0;
}
.page-hero h1{color:white;font-size:clamp(2.2rem,4vw,4rem)}
.page-hero p{max-width:760px;color:#d8edf4;font-size:1.15rem}
.breadcrumb{
  font-size:.9rem;
  color:#bfeef7;
  margin-bottom:12px;
  font-weight:700;
}
.notice{
  background:#fff8e5;
  border:1px solid #ffe0a3;
  border-radius:18px;
  padding:18px;
}
.contact-box{
  background:var(--dark);
  color:white;
  border-radius:30px;
  padding:34px;
}
.contact-box h2,.contact-box h3{color:white}
.contact-box a{color:#baf3ff}
.footer{
  background:#0e1726;
  color:#b9c5d6;
  padding:46px 0 18px;
}
.footer-grid{
  display:grid;
  grid-template-columns:1.4fr 1fr 1fr;
  gap:30px;
}
.footer h3{color:white}
.footer a{color:#dce8f5;text-decoration:none}
.footer a:hover{color:white;text-decoration:underline}
.footer-bottom{
  border-top:1px solid rgba(255,255,255,.12);
  margin-top:32px;
  padding-top:18px;
  display:flex;
  justify-content:space-between;
  gap:20px;
  flex-wrap:wrap;
  font-size:.9rem;
}
.legal{
  max-width:900px;
  background:white;
  border:1px solid var(--line);
  border-radius:24px;
  padding:34px;
  box-shadow:0 10px 35px rgba(19,32,51,.06);
}
.legal h2{font-size:1.6rem;margin-top:30px}
.table{
  width:100%;
  border-collapse:collapse;
  background:white;
  overflow:hidden;
  border-radius:18px;
}
.table th,.table td{
  border-bottom:1px solid var(--line);
  padding:14px;
  text-align:left;
  vertical-align:top;
}
.table th{background:var(--soft);color:var(--dark)}
@media (max-width:900px){
  .hero .container,.split{grid-template-columns:1fr}
  .grid.cards,.grid.two,.grid.four{grid-template-columns:1fr 1fr}
  .footer-grid{grid-template-columns:1fr}
  .nav-wrap{align-items:flex-start;flex-direction:column}
}
@media (max-width:620px){
  .container{width:min(var(--max), calc(100% - 24px))}
  .grid.cards,.grid.two,.grid.four{grid-template-columns:1fr}
  .hero .container{padding:56px 0}
  .section{padding:54px 0}
  .topbar .container{flex-direction:column;gap:2px}
  .nav a{padding:8px 10px}
}

/* Ergänzung für lange Rechts-/Datenschutztexte */
.legal ol,
.legal ul{
  padding-left:1.35rem;
}
.legal li{
  margin-bottom:0.85rem;
}
.legal ol[type="a"] li,
.legal ul li{
  margin-bottom:0.35rem;
}
.legal a{
  color:var(--primary-dark);
  font-weight:700;
}

/* Kartenbilder statt kleiner Piktogramme */
.card-image{
  width:100%;
  aspect-ratio: 1 / 1;
  border-radius:18px;
  background:#f7fbff;
  border:1px solid var(--line);
  overflow:hidden;
  display:flex;
  align-items:center;
  justify-content:center;
  margin-bottom:18px;
  box-shadow:0 10px 28px rgba(19,32,51,.06);
}
.card-image img{
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;
}
.card .icon{
  display:none;
}
