*{margin:0;padding:0;box-sizing:border-box;}
html,body{font-family:Inter,system-ui,-apple-system,BlinkMacSystemFont,"Segoe UI",Arial,sans-serif;background:#0b1220;color:#e9efff;min-height:100%;}
img{max-width:100%;display:block;}
a{color:inherit;text-decoration:none;}
.container{max-width:1180px;margin:0 auto;padding:0 24px;}
.section{padding:80px 0;}
.lead{margin-top:12px;max-width:720px;color:#b9c6e8;font-size:18px;line-height:1.6;}

/* Header */
.topbar{position:sticky;top:0;z-index:50;background:linear-gradient(90deg,#0b1220,#0f1b35);border-bottom:1px solid rgba(255,255,255,0.08);}
.topbar-inner{display:flex;align-items:center;justify-content:space-between;height:96px;gap:18px;}
.brand{display:flex;align-items:center;width:640px;max-width:60vw;}
/* Logo OHNE weißen Hintergrund */
.logo-strip{
  background: none;
  width: auto;
  height: auto;
}

.logo{
  height: 250px;          /* groß & präsent */
  width: 340px;
}

/* Nav */
.nav{display:flex;align-items:center;gap:14px;}
.nav a{padding:10px 18px;border-radius:999px;font-size:14px;color:#cfd9ff;background:rgba(255,255,255,0.06);}
.nav a.primary{background:linear-gradient(90deg,#00d2ff,#3a7bfd);color:#001018;font-weight:600;}

/* Hero */
.hero{padding:90px 0 70px;background:linear-gradient(135deg,#0b1220 0%,#0e1e3a 50%,#0b1220 100%);}
.hero-grid{display:grid;grid-template-columns:1.2fr 0.8fr;gap:48px;align-items:start;}
.badge{display:inline-block;padding:8px 14px;border-radius:999px;background:rgba(255,255,255,0.08);font-size:13px;margin-bottom:18px;}
.hero h1{font-size:44px;line-height:1.2;}
.hero p{margin-top:16px;max-width:620px;color:#b9c6e8;font-size:18px;line-height:1.6;}
.hero-actions{margin-top:42px;display:flex;gap:14px;}

/* Button */
.btn{padding:14px 26px;border-radius:999px;font-size:15px;background:linear-gradient(90deg,#00d2ff,#3a7bfd);color:#001018;font-weight:600;border:none;cursor:pointer;box-shadow:0 10px 30px rgba(0,210,255,0.25);}

/* Profil */
.hero-card{background:rgba(255,255,255,0.04);border-radius:22px;padding:18px;text-align:center;}
.profile-img{width:100%;height:auto;border-radius:18px;object-fit:contain;}
.hero-card strong{display:block;margin-top:14px;font-size:16px;}
.role{margin-top:4px;font-size:13px;color:#b9c6e8;}

/* Strukturierter Service Text */
.service-list{margin-top:40px;max-width:720px;}
.service-list div{margin-bottom:18px;}
.service-list strong{display:block;font-size:15px;margin-bottom:4px;}
.service-list p{font-size:14px;color:#b9c6e8;line-height:1.6;}

/* CTA Block */
.cta{margin-top:50px;padding-top:10px;}
.cta-simple .t{font-weight:700;font-size:16px;margin-bottom:6px;}
.cta-simple .d{font-size:14px;color:#b9c6e8;line-height:1.6;}
.cta-actions{margin-top:16px;}

/* Contact Form */
.contact-form{margin-top:36px;max-width:760px;}
.form-row{display:grid;grid-template-columns:1fr 1fr;gap:16px;}
.input,.textarea{width:100%;padding:14px 16px;border-radius:12px;border:1px solid rgba(255,255,255,0.15);background:rgba(255,255,255,0.06);color:#fff;font-size:16px;}
.textarea{margin-top:16px;min-height:180px;resize:vertical;}
.input::placeholder,.textarea::placeholder{color:rgba(255,255,255,0.6);}
.success-box,.error-box{margin-top:20px;padding:18px;border-radius:14px;}
.success-box{background:rgba(0,200,140,0.15);border:1px solid rgba(0,200,140,0.35);}
.error-box{background:rgba(220,60,60,0.15);border:1px solid rgba(220,60,60,0.35);}

/* Responsive */
@media (max-width: 900px){
  .hero-grid{grid-template-columns:1fr;}
  .topbar-inner{flex-direction:column;gap:14px;height:auto;padding:16px 0;}
  .brand{width:100%;max-width:100%;}
  .logo-strip{height:78px;}
  .logo{height:100px;}
  .nav{flex-wrap:wrap;justify-content:center;}
}
@media (max-width: 600px) {

  /* Header etwas mehr Luft nach oben */
  .topbar-inner{
    padding-top: 12px;
  }

  /* Logo minimal nach oben ziehen */
  .brand{
    margin-top: -6px;
  }

  /* Logo minimal kleiner, damit es nicht drückt */
  .logo{
    height: 150px;
  }

}