:root {
  --brand: #0a5bd3;
  --brand-600: #0d4db0;
  --ink: #101828;
  --muted: #667085;
  --bg: #f7f9fc;
  --card: #ffffff;
  --ring: rgba(10,91,211,0.35);
  --radius: 16px;
  --shadow: 0 10px 25px rgba(16,24,40,.08);
}
* { box-sizing: border-box; }
html, body { height: 100%; }
body {
  margin: 0;
  font-family: system-ui, -apple-system, "Segoe UI", Roboto, Inter, Ubuntu, "Helvetica Neue", Arial, "Noto Sans", sans-serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
}
.container { width: min(1100px, 92%); margin: 0 auto; }
.full-width {width:100%;}

/* Header */
header {
  position: sticky; top: 0; z-index: 10;
  background: rgba(255,255,255,.7);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid #eef2f7;
}
.nav { display: flex; align-items: center; justify-content: space-between; padding: 0; }
.logo {
  display: inline-flex;
  width: 250px;
  height: 170px;
  background: url(images/logo-bg.svg) no-repeat center center;
  background-size: cover;
  align-items: start;
  gap: 12px;
  text-decoration: none;
  color: #000; 
}
.logo-mark {
  width: 40px; height: 40px; border-radius: 12px;
  background: radial-gradient(120% 120% at 10% 10%, #7fb3ff 0%, var(--brand) 52%, #063a8f 100%);
  display: grid; place-items: center; color: white; font-weight: 800;
  box-shadow: 0 6px 16px rgba(10,91,211,.25);
}
.logo .logo-text { font-weight: 900; letter-spacing: .2px; color: #000; font-size: 1.1rem; }
.nav a { color: var(--muted); text-decoration: none; margin-left: 18px; font-size: .95rem; }
.nav a:hover { color: var(--ink); }

/* Hero */
.hero {
  padding: 56px 0 40px;
  background: linear-gradient(145deg, #eef5ff 0%, #ffffff 40%, #f4f8ff 100%);
  border-bottom: 1px solid #eef2f7;
}
.hero-inner { display: grid; grid-template-columns: 1.2fr .8fr; gap: 32px; align-items: center; }
.kicker { color: var(--brand); font-weight: 700; letter-spacing: .12em; text-transform: uppercase; font-size: .78rem; }
h1 { margin: 8px 0 12px; font-size: clamp(1.8rem, 2.2vw + 1rem, 3rem); line-height: 1.15; }
.lead { color: var(--muted); font-size: 1.05rem; }
.hero-card {
  background: var(--card);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 20px;
}
.hero-stats { display: flex; gap: 18px; margin-top: 18px; }
.stat { background:#f1f6ff; border:1px dashed #cfe0ff; border-radius: 10px; padding: 10px 12px; font-size:.9rem; }

/* Leistungen */
.section { padding: 48px 0; }
.section h2 { margin: 0 0 8px; font-size: clamp(1.4rem, .9vw + 1rem, 2rem); }
.section p.section-lead { margin:0 0 24px; color: var(--muted); }
.grid { display: grid; gap: 18px; grid-template-columns: repeat(3, 1fr); }
.card {
  background: var(--card);
  border-radius: var(--radius);
  padding: 20px; box-shadow: var(--shadow);
  border: 1px solid #eef2f7;
}
.card h3 { margin: 0 0 6px; font-size: 1.1rem; }
.card p { margin: 0; color: var(--muted); font-size: .98rem; }

/* Kontakt */
/*.contact { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }*/
.contact { display: flex; gap: 24px; }
form {
  background: var(--card);
  border-radius: var(--radius);
  padding: 22px; box-shadow: var(--shadow);
  border: 1px solid #eef2f7;
}
.field { margin-bottom: 14px; }
label { display: block; margin-bottom: 6px; font-weight: 600; font-size: .95rem; }
input, textarea { width: 100%; padding: 12px 12px; border: 1px solid #d0d7e2; border-radius: 12px; font: inherit; }
textarea { min-height: 120px; resize: vertical; }
input:focus, textarea:focus { outline: 3px solid var(--ring); border-color: var(--brand); }
.hint { color: var(--muted); font-size: .88rem; }
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  appearance: none; border: none; cursor: pointer;
  background: var(--brand); color: #fff; font-weight: 700; padding: 12px 16px; border-radius: 12px;
  transition: transform .04s ease, box-shadow .2s ease, background .2s ease; box-shadow: 0 8px 16px rgba(10,91,211,.25);
}
.btn:hover { background: var(--brand-600); }
.btn:active { transform: translateY(1px); }
 .btn[disabled] { opacity: .7; cursor: not-allowed; }

 form #privacy {
  width:15px;
  height:15px
 }


/* Footer */
footer { color: #98a2b3; font-size: .9rem; padding: 28px 0 48px; }

/* Responsive */
@media (max-width: 900px) { .hero-inner { grid-template-columns: 1fr; } .contact { grid-template-columns: 1fr; } .grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 600px) { .nav a { display: none; } .grid { grid-template-columns: 1fr; } .hero { padding-top: 28px; } }

/* Moved inline styles */
.hero-card h3 { margin: 0 0 8px; }
.hero-card p { margin: 0 0 14px; color: var(--muted); }
label.hint { font-weight: 400; }
.contact aside.card h3 { margin-top: 0; }
.map-placeholder {
  height: 200px;
  border-radius: 12px;
  border: 1px dashed #cfd7e3;
  display: grid;
  place-items: center;
  color: #98a2b3;
}

/* Form status */
.form-status { margin-top: 10px; font-size: .95rem; }
.form-status--success { color: #027a48; }
.form-status--error { color: #b42318; }


