/* =========================
   ROOT / VARIABLEN
   ========================= */
:root{
  --bg:#0b1220;
  --card:#0f1b33;
  --text:#e8eefc;
  --muted:#b8c3df;
  --brand:#4f8cff;
  --brand2:#24d3a5;
  --white:#ffffff;
  --shadow: 0 12px 30px rgba(0,0,0,.25);
  --radius: 16px;
}

/* =========================
   RESET / BASIS
   ========================= */
*{box-sizing:border-box}
body{
  margin:0;
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  color:var(--text);
  background:
    radial-gradient(1200px 600px at 20% -10%, rgba(79,140,255,.35), transparent 60%),
    radial-gradient(900px 500px at 95% 0%, rgba(36,211,165,.25), transparent 55%),
    var(--bg);
}
a{color:inherit}
img{max-width:100%;display:block}
.container{max-width:1100px;margin:0 auto;padding:0 18px}

/* =========================
   HEADER
   ========================= */
.site-header{
  position:sticky;
  top:0;
  z-index:100;
  background: rgba(11,18,32,.75);
  backdrop-filter: blur(10px);
  border-bottom:1px solid rgba(255,255,255,.08);
}
.header-inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding:14px 0;
}

/* =========================
   LOGO (GROSS – OHNE BOX)
   ========================= */
.logo{
  display:flex;
  align-items:center;
  gap:14px;
  text-decoration:none;
}
.logo-img{
  width:200px;
  height:*px;
  object-fit:contain;
  padding:0;
  border:none;
  background:transparent;
  border-radius:0;
}
.logo-text{
  font-weight:900;
  font-size:1.3rem;
  letter-spacing:.3px;
}
.logo-text span{
  color:var(--brand2);
}

/* =========================
   NAVIGATION
   ========================= */
.nav{
  display:flex;
  gap:16px;
  align-items:center;
}
.nav a{
  text-decoration:none;
  color:var(--muted);
  font-weight:600;
}
.nav a:hover{
  color:var(--text);
}

/* =========================
   BUTTONS
   ========================= */
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:12px 18px;
  border-radius:999px;
  text-decoration:none;
  font-weight:800;
  cursor:pointer;
  border:0;
}
.btn-primary{
  background:linear-gradient(135deg,var(--brand),var(--brand2));
  color:var(--white);
  box-shadow: var(--shadow);
}
.btn-secondary{
  background:rgba(255,255,255,.08);
  border:1px solid rgba(255,255,255,.15);
  color:var(--text);
}

/* =========================
   HERO
   ========================= */
.hero{
  padding:56px 0 22px;
}
.hero-grid{
  display:grid;
  grid-template-columns:1.3fr .7fr;
  gap:22px;
}
.hero-card{
  background: rgba(15,27,51,.75);
  border:1px solid rgba(255,255,255,.08);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding:26px;
}
.kicker{
  color:var(--brand2);
  font-weight:800;
  letter-spacing:.6px;
  text-transform:uppercase;
  font-size:.85rem;
}
h1{
  margin:10px 0;
  font-size:2.3rem;
  line-height:1.15;
}
p{
  color:var(--muted);
  line-height:1.6;
}
.hero-actions{
  display:flex;
  gap:12px;
  flex-wrap:wrap;
  margin-top:14px;
}
.badges{
  display:flex;
  gap:10px;
  flex-wrap:wrap;
  margin-top:14px;
}
.badge{
  font-size:.9rem;
  padding:8px 12px;
  border-radius:999px;
  background:rgba(255,255,255,.06);
  border:1px solid rgba(255,255,255,.1);
  color:var(--muted);
}

/* =========================
   BILDER
   ========================= */
.hero-media{
  display:flex;
  align-items:center;
  justify-content:center;
}
.hero-img{
  width:100%;
  max-height:380px;
  object-fit:cover;
  border-radius:16px;
  border:1px solid rgba(255,255,255,.12);
  box-shadow: var(--shadow);
}
.service-row{
  display:flex;
  gap:14px;
  align-items:flex-start;
}
.service-img{
  width:76px;
  height:76px;
  object-fit:cover;
  border-radius:16px;
  border:1px solid rgba(255,255,255,.12);
}

/* =========================
   CONTENT / CARDS
   ========================= */
.section{
  padding:18px 0 42px;
}
.section h2{
  margin:0 0 12px;
  font-size:1.6rem;
}
.grid3{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:14px;
  margin:18px 0 40px;
}
.card{
  background: rgba(15,27,51,.65);
  border:1px solid rgba(255,255,255,.08);
  border-radius: var(--radius);
  padding:18px;
}
.card h3{
  margin:0 0 8px;
  font-size:1.1rem;
}
.small{
  font-size:.95rem;
  color:var(--muted);
}

/* =========================
   LISTEN
   ========================= */
.list{
  margin:10px 0 0;
  padding:0;
  list-style:none;
}
.list li{
  padding:10px 0;
  border-bottom:1px solid rgba(255,255,255,.08);
  color:var(--muted);
}

/* =========================
   FORMULARE
   ========================= */
.form{
  display:grid;
  gap:10px;
}
input, textarea{
  width:100%;
  padding:12px;
  border-radius:12px;
  border:1px solid rgba(255,255,255,.14);
  background:rgba(255,255,255,.06);
  color:var(--text);
}
textarea{
  min-height:120px;
  resize:vertical;
}
label{
  font-size:.92rem;
  color:var(--muted);
}
.notice{
  font-size:.9rem;
  color:var(--muted);
}

/* =========================
   FOOTER
   ========================= */
.site-footer{
  border-top:1px solid rgba(255,255,255,.08);
  padding:26px 0 18px;
  background: rgba(0,0,0,.15);
}
.footer-grid{
  display:grid;
  grid-template-columns:2fr 1fr 1fr;
  gap:16px;
}
.footer-title{
  font-weight:800;
  margin-bottom:8px;
}
.footer-logo{
  width:120px;
  margin-bottom:10px;
}
.footer-bottom{
  margin-top:14px;
  padding-top:12px;
  border-top:1px solid rgba(255,255,255,.08);
}
.muted{
  color:var(--muted);
}

/* =========================
   COOKIE BANNER
   ========================= */
#consent-banner{
  position:fixed;
  inset:auto 16px 16px 16px;
  z-index:9999;
}
.consent-wrap{
  max-width:920px;
  margin:0 auto;
  background: rgba(15,27,51,.95);
  border:1px solid rgba(255,255,255,.15);
  border-radius:16px;
  box-shadow: var(--shadow);
  padding:16px;
}
.consent-title{
  font-weight:900;
  margin-bottom:6px;
}
.consent-text{
  color:var(--muted);
  margin-bottom:10px;
}
.consent-options{
  display:flex;
  gap:12px;
  flex-wrap:wrap;
  margin-bottom:12px;
  color:var(--muted);
}
.consent-actions{
  display:flex;
  gap:10px;
  flex-wrap:wrap;
  margin-bottom:10px;
}
.consent-links{
  display:flex;
  gap:8px;
  flex-wrap:wrap;
  color:var(--muted);
}
.consent-linkbtn{
  margin-left:auto;
  background:transparent;
  border:0;
  color:var(--muted);
  text-decoration:underline;
  cursor:pointer;
}

/* =========================
   RESPONSIVE
   ========================= */
@media (max-width: 900px){
  .hero-grid{grid-template-columns:1fr}
  .grid3{grid-template-columns:1fr}
  .footer-grid{grid-template-columns:1fr}

  .nav a{display:none}
  .nav a.btn{display:inline-flex}

  .logo-img{
    width:64px;
    height:64px;
  }
  .logo-text{
    font-size:1.1rem;
  }
}
