:root{
  --ink:#0b1324;
  --paper:#ffffff;
  --muted:#5b6b7e;
  --line:rgba(255,255,255,.14);
  --line2:rgba(15,23,42,.10);

  /* Branding */
  --accent:#e7efff;
  --accent2:#cfe0ff;
  --btn:#0f1a2c;

  --shadow: 0 18px 50px rgba(10,20,40,.40);
  --shadowSoft: 0 10px 30px rgba(15,23,42,.12);
  --radius: 18px;
}

*{box-sizing:border-box}
html,body{margin:0;padding:0;font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Arial, "Apple Color Emoji","Segoe UI Emoji";}
a{color:inherit}
.container{max-width:1140px;margin:0 auto;padding:0 22px}

.header{
  position:sticky;top:0;z-index:10;
  background:rgba(7, 16, 32, .72);
  backdrop-filter: blur(10px);
  border-bottom:1px solid rgba(255,255,255,.10);
}
.header__inner{display:flex;align-items:center;gap:16px;min-height:74px}

.brand{display:flex;align-items:center;gap:12px;text-decoration:none}
.brand__logo{height:34px;width:auto;}
.brand__text{display:flex;flex-direction:column;line-height:1.05}
.brand__name{font-weight:760;letter-spacing:.08em;color:#ffffff;font-size:12px}
.brand__role{font-weight:650;letter-spacing:.18em;color:rgba(255,255,255,.70);font-size:10px;margin-top:4px}

.nav{margin-left:auto;display:flex;gap:18px}
.nav a{
  text-decoration:none;
  color:rgba(255,255,255,.78);
  font-weight:600;
  font-size:14px;
}
.nav a:hover{color:#fff}

.btn{
  display:inline-flex;align-items:center;justify-content:center;
  padding:12px 16px;border-radius:999px;
  background:rgba(255,255,255,.92);
  color:#0b1324;text-decoration:none;font-weight:750;
  border:1px solid rgba(255,255,255,.35);
  box-shadow:0 10px 26px rgba(0,0,0,.18);
  transition:transform .12s ease, background .12s ease;
}
.btn--small{padding:10px 14px}
.btn--ghost{
  background:transparent;
  color:#fff;
  border:1px solid rgba(255,255,255,.22);
  box-shadow:none;
}
.btn:hover{transform:translateY(-1px)}
.btn:active{transform:translateY(0)}

.hero{
  min-height: 72vh;
  display:flex;
  align-items:stretch;
  background: linear-gradient(180deg, #0b1220, #071020);
  border-bottom:1px solid rgba(255,255,255,.10);
}

.kicker{
  color:rgba(255,255,255,.68);
  font-weight:750;
  letter-spacing:.16em;
  text-transform:uppercase;
  font-size:12px;
}
h1{margin:.45rem 0 1rem;font-size:44px;line-height:1.08;color:#fff}
.accent{color:var(--accent2)}
.lead{font-size:18px;line-height:1.65;color:rgba(255,255,255,.78);max-width:62ch}

.hero__cta{display:flex;gap:12px;flex-wrap:wrap;margin:18px 0 22px}

.hero__facts{display:grid;grid-template-columns:repeat(3,1fr);gap:12px;margin-top:22px}
.fact{
  border:1px solid rgba(255,255,255,.18);
  border-radius:14px;padding:12px;
  background:rgba(255,255,255,.06);
}
.fact__title{color:rgba(255,255,255,.66);font-size:12px;font-weight:750;letter-spacing:.02em}
.fact__value{color:#fff;font-weight:750;margin-top:4px}

.card{
  background:var(--paper);
  border:1px solid var(--line2);
  border-radius:var(--radius);
  padding:18px;
  box-shadow: var(--shadowSoft);
}
.glass{
  background:rgba(255,255,255,.92);
  border:1px solid rgba(255,255,255,.55);
  box-shadow: var(--shadow);
}
.hero__card .card{position:sticky;top:92px}

.section{padding:58px 0;background:#fff}
.section--alt{background:#f7fafc;border-top:1px solid rgba(15,23,42,.08);border-bottom:1px solid rgba(15,23,42,.08)}
.section__head{margin-bottom:18px}

h2{margin:0 0 8px;font-size:28px;color:var(--ink)}
h3{margin:0 0 10px;color:var(--ink)}
.muted{color:var(--muted)}
.tiny{font-size:12px;line-height:1.45}

.grid3{display:grid;grid-template-columns:repeat(3,1fr);gap:14px}
.grid2{display:grid;grid-template-columns:repeat(2,1fr);gap:14px}

.tile{
  border:1px solid rgba(15,23,42,.10);
  border-radius:var(--radius);
  padding:18px;
  background:#fff;
}

ul{margin:10px 0 0;padding-left:18px;color:var(--muted);line-height:1.6}

label{display:block;margin:12px 0 0;color:#1f2a3a;font-size:13px;font-weight:750}
input,textarea{
  width:100%;
  margin-top:6px;
  padding:12px 12px;
  border-radius:14px;
  border:1px solid rgba(15,23,42,.14);
  outline:none;
  font:inherit;
}
input:focus,textarea:focus{
  border-color:rgba(30,64,175,.35);
  box-shadow:0 0 0 4px rgba(30,64,175,.12)
}
.check{display:flex;gap:10px;align-items:flex-start}
.check input{width:auto;margin-top:2px}
.check span{color:#334155;font-weight:600}
.check a{color:#0f1a2c}

.divider{height:1px;background:rgba(15,23,42,.10);margin:16px 0}

.contact-mini{display:flex;flex-direction:column;gap:8px}
.contact-mini__row{
  display:flex;justify-content:space-between;gap:12px;
  padding:10px 12px;border-radius:14px;
  border:1px solid rgba(15,23,42,.10);
  text-decoration:none;
}
.contact-mini__row:hover{border-color:rgba(15,23,42,.18)}
.contact-mini__k{color:#475569;font-weight:750}
.contact-mini__v{color:#0b1324;font-weight:750}

.footer{
  background:linear-gradient(180deg, #0b1220, #071020);
  color:rgba(255,255,255,.78);
  padding:18px 0;
  border-top:1px solid rgba(255,255,255,.10);
}
.footer__inner{display:flex;justify-content:space-between;gap:12px;flex-wrap:wrap}
.footer__links{display:flex;gap:14px}
.footer__links a{text-decoration:none;color:rgba(255,255,255,.78)}
.footer__links a:hover{color:#fff}

@media (max-width: 980px){
  .nav{display:none}
  .hero__grid{grid-template-columns:1fr; padding:38px 0}
  h1{font-size:36px}
  .hero__facts{grid-template-columns:1fr}
  .grid3,.grid2{grid-template-columns:1fr}
  .hero__card .card{position:static}
}


.hero__logo{display:block;margin:18px 0 10px;max-width:180px;height:auto;}
.hero__logo img{width:100%; height:auto; display:block; filter: drop-shadow(0 12px 26px rgba(0,0,0,.25));}
.brand__logo{width:34px; height:auto; display:block; opacity:.92; filter: drop-shadow(0 10px 22px rgba(0,0,0,.22));}

/* Header logo aligned with name block */
.brand{
  gap:14px;
}
.brand__logo--inline{
  width:34px;
  height:34px;
  object-fit:contain;
  background:transparent;
}

.lang{
  display:inline-flex;
  align-items:center;
  gap:8px;
  margin-left:10px;
  color: rgba(255,255,255,.70);
  font-weight: 600;
}

.lang a{
  text-decoration:none;
  color: rgba(255,255,255,.70);
}

.lang a.is-active{
  color:#ffffff;
}

.lang__sep{
  opacity:.6;
}

/* EN: force hero to align left */

.hero__copy{max-width:820px;margin:0;text-align:left;}

/* Hero layout: single column, aligned left (DE & EN) */
.hero__grid{display:grid;grid-template-columns:1fr;gap:26px;padding:56px 0;align-items:start;justify-items:start;}
