:root {
  --bg:#0b132b;           /* Navy */
  --bg-2:#1c2541;         /* Dark blue */
  --accent:#5bc0be;       /* Teal */
  --accent-2:#9fffd9;     /* Mint */
  --text:#e6e6e6;         /* Light text */
  --muted:#aab2c5;        /* Muted */
  --card:#111827;         /* Card bg */
  --ok:#22c55e;           /* Green */
  --warn:#f59e0b;         /* Amber */
  --danger:#ef4444;       /* Red */
  --maxw:1120px;
  --radius:16px;
  --shadow:0 8px 24px rgba(0,0,0,.25);
}

html { scroll-behavior: smooth }
* { box-sizing: border-box }

body {
  margin:0;
  background:linear-gradient(180deg,var(--bg),var(--bg-2));
  color:var(--text);
  font-family: ui-sans-serif, -apple-system, Segoe UI, Roboto, Helvetica, Arial, "Apple Color Emoji","Segoe UI Emoji";
  line-height:1.6;
}

a { color:var(--accent); text-decoration:none }
a:hover { text-decoration:underline }

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

/* Header */
header, .site-header {
  position:sticky; top:0; z-index:50;
  background:rgba(11,19,43,.75);
  backdrop-filter:saturate(140%) blur(8px);
  border-bottom:1px solid rgba(255,255,255,.08);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.logo-img {
  max-width: 200px;
  width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: var(--shadow);
  object-fit: contain;
  background: transparent;
}

nav ul {
  display: flex;
  list-style: none;
  gap: 24px;
  margin: 0;
  padding: 0;
}

nav ul li {
  list-style: none;
}

nav a {
  font-weight: 600;
}

.mobile-toggle {
  display:none;
  background:none;
  border:1px solid rgba(255,255,255,.2);
  color:var(--text);
  padding:8px 10px;
  border-radius:10px;
}

/* Hero */
.hero { padding:96px 0 72px; background:radial-gradient(1200px 600px at 85% -10%, rgba(91,192,190,.25), transparent); }
.hero-grid { display:grid; grid-template-columns: 1.2fr .8fr; gap:32px; align-items:center }
.kicker { color:var(--accent); font-weight:700; letter-spacing:.08em; text-transform:uppercase; font-size:12px }
h2 { font-size:42px; line-height:1.15; margin:10px 0 14px }
.lead { color:var(--muted); font-size:18px }
.cta { display:flex; gap:12px; margin-top:22px }
.btn { display:inline-flex; align-items:center; gap:10px; padding:12px 18px; border-radius:999px; font-weight:700; border:1px solid transparent; transition:.2s ease }
.btn.primary { background:var(--accent); color:#041016 }
.btn.primary:hover { filter:brightness(.95) }
.btn.ghost { border-color:rgba(255,255,255,.2) }

.hero-card, .is-card {
  background:rgba(17,24,39,.7);
  border:1px solid rgba(255,255,255,.08);
  border-radius:var(--radius);
  box-shadow:var(--shadow);
}
.hero-card { padding:20px; }
.stats { display:grid; grid-template-columns:repeat(3,1fr); gap:12px; margin-top:16px }
.stat { background:rgba(255,255,255,.05); border:1px solid rgba(255,255,255,.06); padding:14px; border-radius:12px; text-align:center }
.stat b { font-size:20px; display:block }

/* Sections */
section { padding:72px 0; border-top:1px solid rgba(255,255,255,.06) }
.section-head { display:flex; align-items:end; justify-content:space-between; gap:20px; margin-bottom:28px }
.section-head h3 { font-size:28px; margin:0 }
.muted { color:var(--muted) }

/* Services */
.cards { display:grid; grid-template-columns: repeat(3, 1fr); gap:18px }
.card { background:rgba(17,24,39,.7); border:1px solid rgba(255,255,255,.08); border-radius:16px; padding:18px; box-shadow:var(--shadow) }
.card h4 { margin:8px 0 8px; font-size:18px }
.badge { display:inline-block; font-size:12px; letter-spacing:.05em; text-transform:uppercase; background:rgba(91,192,190,.15); color:var(--accent-2); padding:4px 8px; border-radius:999px }
.bullets { margin:10px 0 0 0; padding-left:18px }
.bullets li { margin:4px 0 }

/* About */
.about { display:grid; grid-template-columns:1fr 1fr; gap:24px }
.about .panel { background:rgba(17,24,39,.7); border:1px solid rgba(255,255,255,.08); padding:18px; border-radius:16px }

.avatar {
  width: 280px;
  height: auto;
  aspect-ratio: 1 / 1;
  border-radius: 30%;
  object-fit: cover;
  border: 3px solid white;
  box-shadow: var(--shadow);
}

.g-recaptcha
{
  margin-top: 12px;
  margin-bottom: 24px;
  display: flex;
}

/* Panel-Karte für Arbeitsweise */
.panel.is-card {
  padding: 24px; /* mehr Innenabstand */
  display: flex;
  flex-direction: column;
  height: auto; /* passt sich dynamisch dem Inhalt an */
}
/* Arbeitsweise – Step Rows (Badge oben, Text darunter) */
/* Liste mit mehr Abstand */
.bullets--steps {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 18px; /* mehr Abstand zwischen den Punkten */
}

/* Einzelne Punkte mit mehr Innenabstand */
.bullets--steps li {
  position: relative;
  display: grid;
  grid-template-areas:
    "badge"
    "text";
  row-gap: .6rem; /* Abstand zwischen Badge und Text */
  padding: 18px 20px 20px 22px; /* luftiger innen */
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 14px;
  box-shadow: var(--shadow);
  overflow: hidden;
  min-height: 80px; /* sorgt für optische Gleichmäßigkeit */
}

.step-title {
  font-weight: 500;
  font-size: 1.05rem;
  color: var(--accent-2);
  letter-spacing: .01em;
}

/* Linke Akzentleiste */
.bullets--steps li::before {
  content: "";
  position: absolute;
  inset: 10px auto 10px 10px;
  width: 5px;
  border-radius: 4px;
  background: linear-gradient(180deg, var(--accent), var(--accent-2));
  opacity: .75;
}

/* Badge */
.bullets--steps .badge {
  grid-area: badge;
  align-self: start;
  justify-self: start;
  padding: .4rem .8rem;
  border-radius: 999px;
  font-weight: 700;
  letter-spacing: .02em;
  font-size: .9rem;
  line-height: 1.1;
  color: var(--accent-2);
  background: rgba(91,192,190,.18);
  border: 1px solid rgba(255,255,255,.14);
  backdrop-filter: blur(2px);
}

/* Text */
.bullets--steps .bullets__text {
  grid-area: text;
  line-height: 1.0;
  color: inherit;
}

/* Hover-Effekt */
.bullets--steps li:hover {
  transform: translateY(-1px);
  transition: transform .15s ease, box-shadow .15s ease, background .15s ease;
  box-shadow: 0 10px 28px rgba(0,0,0,.35);
  background: rgba(255,255,255,.05);
}

.bullets--steps li:hover::before {
  box-shadow: 0 0 18px rgba(159,255,217,.28);
}

/* Mobile */
@media (max-width: 420px) {
  .bullets--steps li {
    padding: 14px 16px 16px 18px;
    border-radius: 12px;
  }
  .bullets--steps .badge {
    font-size: .82rem;
    padding: .3rem .7rem;
  }
}

/* CTA band */
.cta-band { background: linear-gradient(90deg, rgba(91,192,190,.1), rgba(159,255,217,.06)); border:1px solid rgba(255,255,255,.08); border-radius:16px; padding:22px; display:flex; align-items:center; justify-content:space-between; gap:16px }

/* Footer */
footer { padding:28px 0 56px; border-top:1px solid rgba(255,255,255,.08) }
.footgrid { display:grid; grid-template-columns:2fr 1fr 1fr; gap:18px }
.small { font-size:14px }
.socials { display:flex; gap:12px }
.socials a { display:inline-flex; width:36px; height:36px; align-items:center; justify-content:center; background:rgba(255,255,255,.06); border:1px solid rgba(255,255,255,.08); border-radius:10px }

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 8px;
}

.btn.small {
  font-size: 0.85rem;
  padding: 6px 12px;
}

/* Form */
form input, form textarea {
  width:100%;
  padding:12px;
  border-radius:10px;
  border:1px solid rgba(255,255,255,.15);
  background:rgba(255,255,255,.04);
  color:var(--text);
  margin:6px 0 12px;
}
form input:focus, form textarea:focus { outline:2px solid rgba(91,192,190,.5) }
#form-status { margin-top:8px }

/* Responsive */
@media (max-width: 960px) {
  nav ul { display:none }
  .mobile-toggle { display:inline-block }
  .hero-grid { grid-template-columns: 1fr }
  .cards { grid-template-columns: 1fr 1fr }
  .about { grid-template-columns:1fr }
  .footgrid { grid-template-columns:1fr }

  /* Mobile menu dropdown */
  #nav-items {
    position: absolute;
    left: 0; right: 0; top: 64px;
    background: rgba(17,24,39,.98);
    border-bottom: 1px solid rgba(255,255,255,.08);
    display: none;
    padding: 10px 0;
    z-index: 49;
  }
  #nav-items ul { display:none; flex-direction: column; gap: 0; }
  #nav-items li { border-top: 1px solid rgba(255,255,255,.06); }
  #nav-items li a { display: block; padding: 14px 20px; }
  #nav-items.is-open { display: block; }
  #nav-items.is-open ul { display:flex; }
}

@media (max-width: 640px) {
  h2 { font-size:34px }
  .cards { grid-template-columns: 1fr }
  .stats { grid-template-columns:repeat(2,1fr) }
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--color-bg, #fff);
  border-top: 2px solid var(--color-primary, #0057a3);
  padding: 12px;
  z-index: 9999;
  box-shadow: 0 -2px 8px rgba(0,0,0,0.1);
}

.cookie-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
  max-width: 1200px;
  margin: 0 auto;
}

.cookie-content p {
  margin: 0;
  font-size: 0.9rem;
}

.cookie-content a {
  color: var(--color-primary, #0057a3);
  text-decoration: underline;
}

.cookie-banner .btn.small {
  padding: 6px 14px;
  font-size: 0.85rem;
}