/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --navy:        #1a2744;
  --navy-light:  #243558;
  --blue:        #2563eb;
  --blue-hover:  #1d4ed8;
  --grey:        #64748b;
  --grey-light:  #94a3b8;
  --border:      #e2e8f0;
  --bg:          #f8fafc;
  --white:       #ffffff;
  --text:        #1e293b;
  --radius:      12px;
  --shadow:      0 4px 24px rgba(26,39,68,.08);
  --shadow-md:   0 8px 40px rgba(26,39,68,.12);
  --transition:  .25s ease;
  --max-w:       1120px;
}

html { scroll-behavior: smooth; }

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
  font-size: clamp(15px, 1.6vw, 17px);
  line-height: 1.7;
  color: var(--text);
  background: var(--white);
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--blue); text-decoration: none; }
a:hover { text-decoration: underline; }
ul { list-style: none; }

.container {
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 clamp(16px, 5vw, 48px);
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: 50px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  border: 2px solid transparent;
  transition: var(--transition);
  text-decoration: none;
  white-space: nowrap;
}

.btn-primary {
  background: var(--blue);
  color: var(--white);
  border-color: var(--blue);
}
.btn-primary:hover {
  background: var(--blue-hover);
  border-color: var(--blue-hover);
  text-decoration: none;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(37,99,235,.3);
}

.btn-outline {
  background: transparent;
  color: var(--navy);
  border-color: var(--border);
}
.btn-outline:hover {
  border-color: var(--blue);
  color: var(--blue);
  text-decoration: none;
  transform: translateY(-2px);
}

/* ===== LAYOUT HELPERS ===== */
.section { padding: clamp(64px, 10vw, 120px) 0; }
.section-alt { background: var(--bg); }

.section-label {
  display: inline-block;
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 12px;
}

h1, h2, h3, h4 {
  color: var(--navy);
  line-height: 1.2;
  font-weight: 700;
}

h1 { font-size: clamp(2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.4rem); margin-bottom: 16px; }
h3 { font-size: clamp(1.1rem, 2vw, 1.3rem); margin-bottom: 8px; }

.lead {
  font-size: clamp(1rem, 1.8vw, 1.2rem);
  color: var(--grey);
  max-width: 640px;
}

/* ===== HEADER ===== */
header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255,255,255,.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  transition: box-shadow var(--transition);
}
header.scrolled { box-shadow: var(--shadow); }

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 96px;
  gap: 24px;
}

.logo-link {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  text-decoration: none;
}
.logo-link img {
  max-height: 72px;
  width: auto;
  image-rendering: -webkit-optimize-contrast;
}

nav { display: flex; align-items: center; gap: 4px; }

nav a {
  padding: 8px 14px;
  border-radius: 8px;
  font-size: .9rem;
  font-weight: 500;
  color: var(--grey);
  transition: var(--transition);
  text-decoration: none;
}
nav a:hover { color: var(--navy); background: var(--bg); text-decoration: none; }

.nav-cta {
  margin-left: 8px;
  padding: 9px 20px !important;
  background: var(--navy) !important;
  color: var(--white) !important;
  border-radius: 50px !important;
}
.nav-cta:hover { background: var(--navy-light) !important; text-decoration: none !important; }

/* ===== HAMBURGER ===== */
.burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
  border: none;
  background: none;
  border-radius: 8px;
  transition: var(--transition);
}
.burger:hover { background: var(--bg); }
.burger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--navy);
  border-radius: 2px;
  transition: var(--transition);
}
.burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.burger.open span:nth-child(2) { opacity: 0; }
.burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ===== MOBILE NAV ===== */
.mobile-nav {
  display: none;
  position: fixed;
  inset: 72px 0 0 0;
  background: var(--white);
  z-index: 999;
  padding: 24px;
  flex-direction: column;
  gap: 4px;
  overflow-y: auto;
  border-top: 1px solid var(--border);
}
.mobile-nav.open { display: flex; }
.mobile-nav a {
  padding: 14px 16px;
  border-radius: 10px;
  font-size: 1rem;
  font-weight: 500;
  color: var(--navy);
  text-decoration: none;
  transition: var(--transition);
}
.mobile-nav a:hover { background: var(--bg); text-decoration: none; }
.mobile-nav .nav-cta {
  margin-top: 8px;
  background: var(--navy) !important;
  color: var(--white) !important;
  text-align: center;
  border-radius: 50px !important;
}

/* ===== HERO ===== */
#start {
  padding: clamp(80px, 12vw, 140px) 0;
  background: linear-gradient(160deg, var(--bg) 0%, var(--white) 60%);
  position: relative;
  overflow: hidden;
}
#start::before {
  content: '';
  position: absolute;
  top: -200px;
  right: -200px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(37,99,235,.06) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}
.hero-content { max-width: 720px; }

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(37,99,235,.08);
  color: var(--blue);
  padding: 6px 16px;
  border-radius: 50px;
  font-size: .85rem;
  font-weight: 600;
  margin-bottom: 24px;
}
.hero-badge::before {
  content: '';
  display: inline-block;
  width: 8px;
  height: 8px;
  background: var(--blue);
  border-radius: 50%;
}

.hero-content h1 { margin-bottom: 20px; }
.hero-content .lead { margin-bottom: 36px; max-width: 580px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; align-items: center; }

.hero-trust {
  margin-top: 56px;
  display: flex;
  flex-wrap: wrap;
  gap: 24px 40px;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: .85rem;
  color: var(--grey);
  font-weight: 500;
}
.trust-item svg { color: var(--blue); flex-shrink: 0; }

/* ===== GRIDS ===== */
.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

/* ===== CARDS ===== */
.card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: clamp(24px, 3vw, 36px);
  transition: var(--transition);
}
.card:hover {
  border-color: rgba(37,99,235,.2);
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}

.card-icon {
  width: 52px;
  height: 52px;
  border-radius: 12px;
  background: rgba(37,99,235,.08);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  color: var(--blue);
  flex-shrink: 0;
}
.card p { color: var(--grey); font-size: .95rem; margin-top: 6px; }

.section-header { margin-bottom: clamp(40px, 6vw, 64px); }
.section-header.centered { text-align: center; }
.section-header.centered .lead { margin: 0 auto; }

/* ===== PAKET ===== */
.paket-card {
  background: var(--navy);
  color: var(--white);
  border-radius: 20px;
  padding: clamp(40px, 6vw, 72px);
  max-width: 720px;
  margin: 0 auto;
}
.paket-card h2 { color: var(--white); }
.paket-card .lead { color: rgba(255,255,255,.7); }

.paket-list { display: flex; flex-direction: column; gap: 14px; margin-top: 24px; }
.paket-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: .95rem;
  color: rgba(255,255,255,.85);
}
.paket-item svg { color: #60a5fa; flex-shrink: 0; margin-top: 2px; }

.paket-cta { margin-top: 32px; }
.paket-right { background: rgba(255,255,255,.06); border-radius: 16px; padding: 32px; }
.paket-price { font-size: clamp(2rem, 4vw, 3rem); font-weight: 800; color: var(--white); }
.paket-price span { font-size: 1rem; font-weight: 400; color: rgba(255,255,255,.6); }
.paket-note { color: rgba(255,255,255,.55); font-size: .85rem; margin-top: 8px; }
.paket-features { margin-top: 28px; display: flex; flex-direction: column; gap: 12px; }
.paket-feature {
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(255,255,255,.8);
  font-size: .9rem;
}
.paket-feature svg { color: #60a5fa; flex-shrink: 0; }

/* ===== ABLAUF ===== */
.ablauf-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
  position: relative;
}
.ablauf-grid::before {
  content: '';
  position: absolute;
  top: 32px;
  left: calc(12.5% + 24px);
  right: calc(12.5% + 24px);
  height: 2px;
  background: var(--border);
}
.ablauf-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 24px 16px;
}
.step-num {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--white);
  border: 2px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--blue);
  margin-bottom: 20px;
  position: relative;
  z-index: 1;
  flex-shrink: 0;
  transition: background var(--transition), border-color var(--transition), color var(--transition), box-shadow var(--transition);
}
.ablauf-step {
  cursor: default;
  transition: transform var(--transition);
}
.ablauf-step:hover { transform: translateY(-6px) scale(1.04); }
.ablauf-step:hover .step-num {
  background: var(--blue);
  border-color: var(--blue);
  color: var(--white);
  box-shadow: 0 8px 24px rgba(37,99,235,.3);
}
.ablauf-step h3 { font-size: 1rem; margin-bottom: 6px; }
.ablauf-step p { font-size: .88rem; color: var(--grey); }

/* ===== VORTEILE ===== */
.vorteile-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  align-items: center;
}
.vorteile-list { display: flex; flex-direction: column; gap: 20px; }
.vorteil-item { display: flex; align-items: flex-start; gap: 16px; }
.vorteil-icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: rgba(37,99,235,.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--blue);
  flex-shrink: 0;
}
.vorteil-item h3 { font-size: 1rem; margin-bottom: 4px; }
.vorteil-item p { font-size: .9rem; color: var(--grey); }

.vorteile-visual {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: clamp(32px, 4vw, 56px);
}
.stat-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.stat-item {
  text-align: center;
  padding: 24px;
  background: var(--white);
  border-radius: 12px;
  border: 1px solid var(--border);
}
.stat-num { font-size: clamp(2rem, 4vw, 2.8rem); font-weight: 800; color: var(--navy); line-height: 1; }
.stat-label { font-size: .85rem; color: var(--grey); margin-top: 6px; }

/* ===== ZIELGRUPPEN ===== */
.ziel-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.ziel-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px;
  text-align: center;
  transition: var(--transition);
}
.ziel-card:hover { border-color: rgba(37,99,235,.2); box-shadow: var(--shadow); transform: translateY(-3px); }
.ziel-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: rgba(37,99,235,.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--blue);
  margin: 0 auto 20px;
}
.ziel-card h3 { margin-bottom: 8px; }
.ziel-card p { color: var(--grey); font-size: .9rem; }

/* ===== CONTACT ===== */
.kontakt-grid {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 64px;
  align-items: start;
}
.kontakt-info h2 { margin-bottom: 16px; }
.kontakt-info .lead { margin-bottom: 32px; }
.kontakt-details { display: flex; flex-direction: column; gap: 16px; margin-bottom: 32px; }
.kontakt-detail {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: .95rem;
}
.kontakt-detail svg { color: var(--blue); flex-shrink: 0; margin-top: 2px; }
.kontakt-detail a { color: var(--text); }
.kontakt-detail a:hover { color: var(--blue); }

/* ===== FORM ===== */
.form-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: clamp(28px, 4vw, 48px);
  box-shadow: var(--shadow);
}
.form-grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { display: flex; flex-direction: column; gap: 6px; margin-bottom: 16px; }
.form-group label { font-size: .85rem; font-weight: 600; color: var(--text); }
.form-group input,
.form-group textarea,
.form-group select {
  padding: 12px 16px;
  border: 1.5px solid var(--border);
  border-radius: 10px;
  font-size: .95rem;
  font-family: inherit;
  color: var(--text);
  background: var(--white);
  transition: var(--transition);
  width: 100%;
}
.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(37,99,235,.1);
}
.form-group textarea { min-height: 120px; resize: vertical; }
.form-group.error input,
.form-group.error textarea { border-color: #ef4444; }
.form-error { color: #ef4444; font-size: .8rem; margin-top: 4px; display: none; }
.form-group.error .form-error { display: block; }

.dsgvo-check {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 24px;
}
.dsgvo-check input[type="checkbox"] {
  width: 18px;
  height: 18px;
  margin-top: 2px;
  flex-shrink: 0;
  accent-color: var(--blue);
  cursor: pointer;
}
.dsgvo-check label { font-size: .85rem; color: var(--grey); cursor: pointer; }
.dsgvo-check a { color: var(--blue); }

.form-success {
  display: none;
  text-align: center;
  padding: 40px 20px;
}
.form-success svg { color: #22c55e; margin: 0 auto 16px; }
.form-success h3 { color: var(--navy); margin-bottom: 8px; }
.form-success p { color: var(--grey); }

/* Honeypot */
.hp-field { position: absolute; left: -9999px; opacity: 0; pointer-events: none; }

/* ===== LEGAL PAGES ===== */
.legal-hero {
  padding: clamp(56px, 8vw, 96px) 0 clamp(40px, 6vw, 64px);
  background: linear-gradient(160deg, var(--bg) 0%, var(--white) 60%);
  border-bottom: 1px solid var(--border);
}
.legal-hero h1 { font-size: clamp(1.8rem, 4vw, 2.8rem); margin-bottom: 8px; }
.legal-hero .breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: .9rem;
  color: var(--grey);
  margin-bottom: 20px;
}
.legal-hero .breadcrumb a { color: var(--grey); }
.legal-hero .breadcrumb a:hover { color: var(--blue); }
.legal-hero .breadcrumb svg { color: var(--grey-light); flex-shrink: 0; }

.legal-body {
  padding: clamp(48px, 8vw, 96px) 0;
}
.legal-content {
  max-width: 780px;
}
.legal-content h2 { margin-bottom: 32px; }
.legal-content h3 { font-size: 1.05rem; margin: 32px 0 10px; color: var(--navy); padding-top: 8px; border-top: 1px solid var(--border); }
.legal-content h3:first-of-type { border-top: none; margin-top: 0; }
.legal-content p,
.legal-content li { color: var(--grey); font-size: .95rem; margin-bottom: 10px; line-height: 1.75; }
.legal-content ul { list-style: disc; padding-left: 24px; }
.legal-content a { color: var(--blue); }
.legal-divider { border: none; border-top: 1px solid var(--border); margin: 48px 0; }
.legal-content .btn-reset {
  background: none;
  border: 1px solid var(--blue);
  color: var(--blue);
  padding: 8px 20px;
  border-radius: 50px;
  cursor: pointer;
  font-size: .9rem;
  font-family: inherit;
  transition: var(--transition);
}
.legal-content .btn-reset:hover { background: var(--blue); color: var(--white); }

/* ===== FOOTER ===== */
footer {
  background: var(--navy);
  color: rgba(255,255,255,.7);
  padding: clamp(48px, 8vw, 80px) 0 32px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}
.footer-brand .logo-link img { filter: brightness(0) invert(1); max-height: 80px; }
.footer-brand p { margin-top: 16px; font-size: .9rem; line-height: 1.6; }
.footer-col h4 {
  color: var(--white);
  font-size: .9rem;
  font-weight: 700;
  letter-spacing: .05em;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col li a { color: rgba(255,255,255,.65); font-size: .9rem; transition: var(--transition); text-decoration: none; }
.footer-col li a:hover { color: var(--white); text-decoration: none; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.1);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  font-size: .85rem;
}
.footer-bottom a { color: rgba(255,255,255,.55); text-decoration: none; }
.footer-bottom a:hover { color: var(--white); }

/* ===== COOKIE BANNER ===== */
#cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  background: var(--white);
  border-top: 1px solid var(--border);
  box-shadow: 0 -8px 40px rgba(0,0,0,.12);
  padding: 24px;
  display: none;
}
#cookie-banner.show { display: block; }
.cookie-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 24px;
  align-items: center;
}
.cookie-inner h3 { font-size: 1rem; margin-bottom: 6px; }
.cookie-inner p { font-size: .88rem; color: var(--grey); }
.cookie-inner a { color: var(--blue); }
.cookie-actions { display: flex; gap: 10px; flex-wrap: wrap; }
.cookie-btn {
  padding: 10px 20px;
  border-radius: 50px;
  font-size: .88rem;
  font-weight: 600;
  cursor: pointer;
  border: 2px solid var(--border);
  background: var(--white);
  color: var(--text);
  transition: var(--transition);
  white-space: nowrap;
}
.cookie-btn:hover { border-color: var(--grey); }
.cookie-btn.accept {
  background: var(--navy);
  color: var(--white);
  border-color: var(--navy);
}
.cookie-btn.accept:hover { background: var(--navy-light); border-color: var(--navy-light); }
.cookie-btn.reject { color: var(--grey); }

/* ===== COOKIE MODAL ===== */
#cookie-modal {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 10000;
  background: rgba(0,0,0,.5);
  align-items: center;
  justify-content: center;
  padding: 16px;
}
#cookie-modal.show { display: flex; }
.cookie-modal-box {
  background: var(--white);
  border-radius: 20px;
  padding: 40px;
  max-width: 560px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
}
.cookie-modal-box h2 { font-size: 1.4rem; margin-bottom: 16px; }
.cookie-modal-box p { color: var(--grey); font-size: .9rem; margin-bottom: 24px; }
.cookie-group {
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 20px;
  margin-bottom: 12px;
}
.cookie-group-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 8px;
}
.cookie-group-header strong { font-size: .95rem; color: var(--navy); }
.cookie-group p { font-size: .85rem; color: var(--grey); margin: 0; }
.toggle {
  position: relative;
  width: 44px;
  height: 24px;
  flex-shrink: 0;
}
.toggle input { opacity: 0; width: 0; height: 0; }
.toggle-slider {
  position: absolute;
  cursor: pointer;
  inset: 0;
  background: var(--border);
  border-radius: 24px;
  transition: var(--transition);
}
.toggle-slider::before {
  content: '';
  position: absolute;
  width: 18px;
  height: 18px;
  left: 3px;
  top: 3px;
  background: var(--white);
  border-radius: 50%;
  transition: var(--transition);
}
.toggle input:checked + .toggle-slider { background: var(--blue); }
.toggle input:checked + .toggle-slider::before { transform: translateX(20px); }
.toggle input:disabled + .toggle-slider { opacity: .6; cursor: not-allowed; }
.cookie-modal-actions {
  display: flex;
  gap: 10px;
  margin-top: 24px;
  flex-wrap: wrap;
}

/* ===== SCROLL TO TOP ===== */
#scrolltop {
  position: fixed;
  bottom: 28px;
  right: 28px;
  width: 44px;
  height: 44px;
  background: var(--navy);
  color: var(--white);
  border: none;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 800;
  opacity: 0;
  transform: translateY(12px);
  transition: var(--transition);
  box-shadow: var(--shadow-md);
}
#scrolltop.visible { opacity: 1; transform: translateY(0); }
#scrolltop:hover { background: var(--navy-light); }

/* ===== DARK SECTIONS ===== */
.section-dark { background: var(--navy); }

/* Hero dark */
#start.section-dark {
  background: linear-gradient(150deg, #111e38 0%, var(--navy) 100%);
}
#start.section-dark::before {
  background: radial-gradient(circle, rgba(37,99,235,.18) 0%, transparent 70%);
}
#start.section-dark h1 { color: var(--white); }
#start.section-dark .lead { color: rgba(255,255,255,.75); }
#start.section-dark .hero-badge {
  background: rgba(255,255,255,.1);
  color: #93c5fd;
}
#start.section-dark .hero-badge::before { background: #93c5fd; }
#start.section-dark .trust-item { color: rgba(255,255,255,.65); }
#start.section-dark .trust-item svg { color: #60a5fa; }
#start.section-dark .btn-outline {
  color: var(--white);
  border-color: rgba(255,255,255,.3);
}
#start.section-dark .btn-outline:hover {
  background: rgba(255,255,255,.1);
  border-color: rgba(255,255,255,.6);
}

/* General dark text overrides */
.section-dark h2,
.section-dark h3 { color: var(--white); }
.section-dark p { color: rgba(255,255,255,.72); }
.section-dark .lead { color: rgba(255,255,255,.72); }
.section-dark .section-label { color: #60a5fa; }
.section-dark strong { color: var(--white); }

/* Service cards on dark */
.section-dark .card {
  background: rgba(255,255,255,.06);
  border-color: rgba(255,255,255,.1);
}
.section-dark .card:hover {
  background: rgba(255,255,255,.1);
  border-color: rgba(255,255,255,.2);
  box-shadow: 0 8px 40px rgba(0,0,0,.35);
}
.section-dark .card h3 { color: var(--white); }
.section-dark .card p { color: rgba(255,255,255,.65); }
.section-dark .card-icon { background: rgba(255,255,255,.1); color: #60a5fa; }

/* Ablauf on dark */
.section-dark .ablauf-grid::before { background: rgba(255,255,255,.12); }
.section-dark .step-num {
  background: rgba(255,255,255,.08);
  border-color: rgba(255,255,255,.2);
  color: #60a5fa;
}
.section-dark .ablauf-step:hover .step-num {
  background: var(--blue);
  border-color: var(--blue);
  color: var(--white);
}
.section-dark .ablauf-step h3 { color: var(--white); }
.section-dark .ablauf-step p { color: rgba(255,255,255,.65); }

/* Vorteile on dark */
.section-dark .vorteil-icon { background: rgba(255,255,255,.1); color: #60a5fa; }
.section-dark .vorteil-item h3 { color: var(--white); }
.section-dark .vorteil-item p { color: rgba(255,255,255,.7); }

/* Callout on dark */
.section-dark .callout-text .lead { color: rgba(255,255,255,.72); }

/* Zielgruppen on dark */
.section-dark .ziel-card {
  background: rgba(255,255,255,.06);
  border-color: rgba(255,255,255,.1);
}
.section-dark .ziel-card:hover {
  border-color: rgba(255,255,255,.22);
  box-shadow: 0 8px 32px rgba(0,0,0,.35);
}
.section-dark .ziel-card h3 { color: var(--white); }
.section-dark .ziel-card p { color: rgba(255,255,255,.65); }

/* Kontakt on dark — Formular-Karte bleibt weiß für Lesbarkeit */
.section-dark .kontakt-info h2 { color: var(--white); }
.section-dark .kontakt-detail { color: rgba(255,255,255,.8); }
.section-dark .kontakt-detail a { color: rgba(255,255,255,.9); }
.section-dark .kontakt-detail a:hover { color: var(--white); }
.section-dark .form-card { background: var(--white); }

/* ===== HERO WITH IMAGE ===== */
.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: center;
}
.hero-image {
  position: relative;
}
.hero-image img {
  width: 100%;
  border-radius: 20px;
  box-shadow: var(--shadow-md);
  display: block;
}
.hero-image::before {
  content: '';
  position: absolute;
  inset: -16px -16px 16px 16px;
  border: 2px solid var(--border);
  border-radius: 24px;
  z-index: -1;
}

/* ===== CALLOUT SECTION ===== */
.callout-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: center;
}
.callout-img {
  position: relative;
}
.callout-img img {
  width: 100%;
  border-radius: 20px;
  box-shadow: var(--shadow-md);
  display: block;
}
.callout-text .lead { margin-bottom: 32px; }

/* ===== SERVER VISUAL (Vorteile) ===== */
.server-visual {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow-md);
  min-height: 320px;
}
.server-visual > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  min-height: 320px;
}
.server-stats {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(transparent, rgba(15,25,55,.92));
  padding: 40px 28px 28px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.server-stat-num {
  font-size: clamp(1.4rem, 2.5vw, 2rem);
  font-weight: 800;
  color: var(--white);
  line-height: 1;
}
.server-stat-label {
  font-size: .78rem;
  color: rgba(255,255,255,.65);
  margin-top: 4px;
}

/* ===== ZIELGRUPPEN PHOTO CARDS ===== */
.ziel-card-img {
  height: 200px;
  overflow: hidden;
  border-radius: var(--radius) var(--radius) 0 0;
  margin: -32px -32px 24px;
}
.ziel-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  transition: transform .5s ease;
  display: block;
}
.ziel-card:hover .ziel-card-img img {
  transform: scale(1.06);
}

/* ===== ANIMATIONS ===== */
@keyframes spin { to { transform: rotate(360deg); } }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-image::before { display: none; }
  .callout-grid { grid-template-columns: 1fr; }
  .server-stats { grid-template-columns: 1fr 1fr; padding: 24px 20px 20px; }
  nav { display: none; }
  .burger { display: flex; }
  .grid-3 { grid-template-columns: 1fr; }
  .grid-4 { grid-template-columns: 1fr; }
  .ablauf-grid { grid-template-columns: 1fr 1fr; }
  .ablauf-grid::before { display: none; }
  .vorteile-grid { grid-template-columns: 1fr; }
  .ziel-grid { grid-template-columns: 1fr 1fr; }
  .kontakt-grid { grid-template-columns: 1fr; gap: 40px; }
  .form-grid-2 { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .cookie-inner { grid-template-columns: 1fr; }
  .cookie-actions { justify-content: flex-start; }
}

@media (max-width: 480px) {
  .ziel-grid { grid-template-columns: 1fr; }
  .ablauf-grid { grid-template-columns: 1fr; }
  .stat-grid { grid-template-columns: 1fr; }
  .hero-actions { flex-direction: column; align-items: flex-start; }
  .hero-actions .btn { width: 100%; justify-content: center; }
  .paket-card { padding: 28px; }
  .cookie-modal-box { padding: 24px; }
}
