:root{
  --bg:#0b0f17;
  --panel:#0f1624;
  --text:#e8eefc;
  --muted:#a9b4d0;
  --line:rgba(255,255,255,.10);
  --accent:#7aa2ff;
  --accent2:#66e3c4;
  --shadow: 0 20px 60px rgba(0,0,0,.45);
  --radius:18px;
  --max:1120px;
}

*{box-sizing:border-box}
html,body{margin:0;padding:0}

body{
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, "Apple Color Emoji","Segoe UI Emoji";
  background:
    radial-gradient(1200px 800px at 20% 0%, rgba(122,162,255,.22), transparent 60%),
    radial-gradient(1000px 700px at 80% 10%, rgba(102,227,196,.18), transparent 55%),
    var(--bg);
  color:var(--text);
  line-height:1.55;
}

a{color:inherit}

.container{max-width:var(--max); margin:0 auto; padding:28px 18px}

.nav{
  display:flex; align-items:center; justify-content:space-between;
  border:1px solid var(--line); background:rgba(15,22,36,.75);
  backdrop-filter: blur(10px);
  padding:14px 16px; border-radius:999px; box-shadow:var(--shadow);
  position: sticky; top:14px; z-index:50;
}

.brand{display:flex; gap:10px; align-items:center; text-decoration:none}

.logo{
  width:34px;height:34px;border-radius:10px;
  background: linear-gradient(135deg, rgba(122,162,255,.95), rgba(102,227,196,.9));
  box-shadow: 0 10px 25px rgba(122,162,255,.18);
}

.brand b{font-size:14px; letter-spacing:.3px}
.brand span{display:block; font-size:12px; color:var(--muted); margin-top:1px}

.nav .links{display:flex; gap:10px; align-items:center; flex-wrap:wrap; justify-content:flex-end}

.pill{
  text-decoration:none;
  border:1px solid var(--line);
  padding:10px 12px;
  border-radius:999px;
  color:var(--muted);
  font-size:13px;
}
.pill:hover{border-color:rgba(122,162,255,.45); color:var(--text)}

.cta{
  text-decoration:none;
  background: linear-gradient(135deg, rgba(122,162,255,.95), rgba(102,227,196,.9));
  color:#0b0f17;
  padding:10px 14px;
  border-radius:999px;
  font-weight:700;
  border:0;
  box-shadow: 0 12px 30px rgba(102,227,196,.14);
}

.hero{
  padding:72px 0 34px;
  display:grid;
  grid-template-columns: 1.2fr .8fr;
  gap:22px;
  align-items:start;
}
@media (max-width: 920px){
  .hero{grid-template-columns:1fr; padding-top:48px}
  .nav{border-radius:18px}
}

.h1{
  font-size:44px; line-height:1.08; margin:0 0 14px;
  letter-spacing:-.5px;
}
@media (max-width: 560px){
  .h1{font-size:36px}
}

.sub{
  color:var(--muted);
  font-size:16px;
  margin:0 0 22px;
  max-width:60ch;
}

.kpis{
  display:flex; gap:10px; flex-wrap:wrap;
  margin:18px 0 0;
}
.kpi{
  border:1px solid var(--line);
  background: rgba(15,22,36,.60);
  padding:10px 12px;
  border-radius:999px;
  font-size:13px;
  color:var(--muted);
}
.kpi b{color:var(--text)}

.card{
  border:1px solid var(--line);
  background: rgba(15,22,36,.70);
  border-radius:var(--radius);
  padding:18px;
  box-shadow:var(--shadow);
}
.card h3{margin:0 0 10px; font-size:16px}
.card p{margin:0; color:var(--muted); font-size:14px}
.card ul{margin:12px 0 0; padding-left:18px; color:var(--muted)}
.card li{margin:6px 0}

.grid3{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap:14px;
}
@media (max-width: 920px){
  .grid3{grid-template-columns:1fr}
}

.section{padding:28px 0}
.section h2{
  font-size:18px;
  letter-spacing:.2px;
  margin:0 0 12px;
}
.section p{color:var(--muted); margin:0 0 14px; max-width:80ch}

.steps{
  display:grid;
  grid-template-columns: repeat(4, 1fr);
  gap:14px;
}
@media (max-width: 980px){
  .steps{grid-template-columns: 1fr 1fr}
}
@media (max-width: 560px){
  .steps{grid-template-columns: 1fr}
}
.step b{display:block; font-size:13px; margin-bottom:6px}
.step .num{
  width:34px;height:34px;border-radius:12px;
  display:inline-flex; align-items:center; justify-content:center;
  background: rgba(122,162,255,.14);
  border:1px solid rgba(122,162,255,.25);
  margin-bottom:10px;
  color: var(--text);
  font-weight:800;
}

.hr{height:1px; background: var(--line); margin:22px 0}

.footer{
  padding:22px 0 40px;
  display:flex; justify-content:space-between; gap:12px; flex-wrap:wrap;
  color:var(--muted);
  font-size:12px;
}
.footer a{color:var(--muted); text-decoration:none}
.footer a:hover{color:var(--text)}

.badge{
  display:inline-flex; gap:8px; align-items:center;
  border:1px solid var(--line);
  padding:10px 12px;
  border-radius:999px;
}

.small{font-size:12px;color:var(--muted)}

.note{
  font-size:12px;
  color:var(--muted);
  border:1px dashed rgba(255,255,255,.18);
  padding:10px 12px;
  border-radius:14px;
}

/* Avatar + logo */
.logo img{ width: 100%; height: 100%; object-fit: contain; display:block; }
.avatar-wrap{
  width: 152px; height: 152px; border-radius: 999px; overflow: hidden;
  box-shadow: 0 12px 30px rgba(0,0,0,.18);
  border: 1px solid rgba(0,0,0,.08);
  margin-bottom: 18px;
}
.avatar{ width: 100%; height: 100%; object-fit: cover; display:block; filter: grayscale(0%); }
@media (max-width: 900px){
  .avatar-wrap{ width: 128px; height: 128px; }
}

/* === Burger Button (nur Mobile sichtbar) === */
.menu-toggle{
  display:none;
  align-items:center;
  justify-content:center;
  width:44px;
  height:44px;
  border:1px solid rgba(255,255,255,.14);
  background:rgba(255,255,255,.06);
  border-radius:12px;
  cursor:pointer;
}
.menu-toggle .bars{display:flex; flex-direction:column; gap:4px}
.menu-toggle .bars span{
  display:block;
  width:18px;
  height:2px;
  background:rgba(255,255,255,.9);
  border-radius:2px;
}

/* --- Mobile: lange Wörter sauber umbrechen --- */
.h1, .sub{
  overflow-wrap: break-word;
  word-break: normal;
  hyphens: auto;
}
@media (max-width: 560px){
  .h1{
    font-size: clamp(30px, 8.2vw, 36px);
    text-wrap: balance;
  }
}

/* ===== Pakete: Preisbereich gleich hoch + Highlight ===== */
.pricing-card{
  position:relative;
  display:flex;
  flex-direction:column;   /* wichtig für gleich hohe Footer-Position */
}
.pricing-head{ margin-bottom:8px; }
.pricing-footer{ margin-top:auto; } /* <<< drückt Preisbereich nach unten */

.pricing-card .price{
  margin:0;
  color:var(--text);
  font-size:14px;
}

.pricing-badge{
  position:absolute;
  top:14px;
  right:14px;
  font-size:11px;
  padding:6px 10px;
  border-radius:999px;
  border:1px solid rgba(102,227,196,.35);
  background: rgba(102,227,196,.10);
  color: var(--text);
  letter-spacing:.2px;
}

.pricing-card.featured{
  border-color: rgba(102,227,196,.45);
  box-shadow: 0 22px 70px rgba(102,227,196,.10), var(--shadow);
}
.pricing-card.featured h3{
  color: var(--text);
}
.pricing-card.featured .hr{
  background: rgba(102,227,196,.28);
}

/* ===== Mobile Drawer (All-Inkl-Style: Header fix, Drawer Overlay) ===== */
.drawer-backdrop{
  display:none;
  position:fixed;
  inset:0;
  background: rgba(0,0,0,.55);
  z-index: 998;
}
.drawer-backdrop.open{ display:block; }

.mobile-drawer{
  position:fixed;
  inset:0;
  z-index:999;
  padding:18px 18px 22px;
  background: rgba(11,15,23,.92);
  backdrop-filter: blur(12px);
  opacity:0;
  transform: translateY(-8px);
  pointer-events:none;
  transition: opacity .18s ease, transform .18s ease;
}
.mobile-drawer.open{
  opacity:1;
  transform:none;
  pointer-events:auto;
}

.drawer-head{
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding:4px 2px 14px;
}
.drawer-title{
  font-size:12px;
  color:var(--muted);
  letter-spacing:.14em;
  text-transform:uppercase;
}
.drawer-close{
  width:42px;
  height:42px;
  border-radius:14px;
  border:1px solid rgba(255,255,255,.14);
  background: rgba(255,255,255,.06);
  color: var(--text);
  font-size:22px;
  line-height:1;
  cursor:pointer;
}

.drawer-content{
  display:flex;
  flex-direction:column;
  gap:10px;
  padding-top:6px;
}
.drawer-content a{
  width:100%;
  text-align:center;
  justify-content:center;
  display:flex;
}
.drawer-content .pill{
  padding:12px 14px;
  font-size:14px;
}
.drawer-content .cta{
  padding:12px 14px;
  font-size:15px;
}

/* ===== Mobile Header: fix, schmal, Logo links, Burger rechts ===== */
@media (max-width: 560px){

  /* Desktop-Leiste auf Mobile ausblenden (bleibt für Drawer Clone im DOM) */
  .nav .links{ display:none; }

  /* Burger sichtbar */
  .menu-toggle{ display:inline-flex; }

  /* Header fix + “schmal” */
  .nav{
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    border-radius: 0;
    padding: 12px 14px;
    z-index: 1000;
  }

  /* Brand wieder horizontal (nicht stacked) */
  .brand{
    width:auto;
    flex-direction:row;
    align-items:center;
    gap:10px;
    text-align:left;
  }

  .nav .logo{
    width:34px;
    height:34px;
    border-radius:10px;
  }

  .brand b{ font-size:14px; }
  .brand span{
    font-size:11px;        /* etwas kompakter */
    margin-top:1px;
  }
}

/* Desktop: Drawer/Backdrop aus */
@media (min-width: 561px){
  .mobile-drawer, .drawer-backdrop{ display:none !important; }
}