:root {
  --blau: #1c3058;
  --blau-hell: #264878;
  --blau-mittel: #243a6a;
  --blau-bg: #162440;
  --silber: #a8b8cc;
  --silber-hell: #d0dbe8;
  --dunkel: #0c1a2e;
  --text: #c8d4e4;
  --grau: #1a2d4a;
  --weiss: #ffffff;
  --radius: 14px;
  --shadow: 0 4px 24px rgba(0,0,0,.3);
  --gruen-bg: #1a2d4a;
  --gruen-hell: #3a5888;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

body {
  font-family: 'DM Sans', sans-serif;
  color: var(--text);
  background: var(--blau);
  overflow-x: hidden;
}

/* ── NAV ── */
nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 60px;
  background: var(--dunkel);
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid #1e3050;
  box-shadow: 0 2px 16px rgba(0,0,0,.4);
}

.logo { display: flex; align-items: center; gap: 10px; text-decoration: none; }
.logo-icon {
  width: 42px; height: 42px;
  background: var(--weiss);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
}
.logo-text { font-family: 'Syne', sans-serif; font-size: 1.25rem; color: var(--weiss); }
.logo-text span { color: var(--silber-hell); }

.nav-links { display: flex; gap: 36px; list-style: none; }
.nav-links a {
  text-decoration: none; color: var(--silber); font-size: 0.95rem; font-weight: 500;
  transition: color .2s; position: relative; padding-bottom: 4px;
}
.nav-links a::after {
  content: ''; position: absolute; bottom: 0; left: 0;
  width: 0; height: 2px; background: var(--weiss); transition: width .25s;
}
.nav-links a:hover { color: var(--weiss); }
.nav-links a:hover::after { width: 100%; }
.nav-links a.active { color: var(--weiss); }
.nav-links a.active::after { width: 100%; }

.btn-nav {
  background: var(--weiss); color: var(--blau); border: none;
  padding: 11px 22px; border-radius: 50px; font-family: 'DM Sans', sans-serif;
  font-size: 0.95rem; font-weight: 700; cursor: pointer;
  display: flex; align-items: center; gap: 7px; text-decoration: none;
  transition: background .2s, transform .15s;
}
.btn-nav:hover { background: var(--silber-hell); transform: translateY(-1px); }

.hamburger {
  display: none; background: none; border: 1.5px solid #4a6080;
  border-radius: 8px; padding: 6px 12px; font-size: 1.1rem; cursor: pointer; color: white;
}

.mobile-menu {
  display: none; flex-direction: column; background: var(--dunkel);
  border-bottom: 1px solid #1e3050; padding: 12px 24px 20px; gap: 4px;
  position: sticky; top: 73px; z-index: 99;
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  text-decoration: none; color: var(--silber); padding: 10px 0;
  font-size: 1rem; font-weight: 500; border-bottom: 1px solid #1e3050;
}
.mobile-menu .mobile-cta {
  background: var(--weiss); color: var(--blau); padding: 12px 20px;
  border-radius: 50px; text-align: center; margin-top: 10px; border: none; font-weight: 700;
}

/* ── PAGE HERO (inner pages) ── */
.page-hero {
  background: linear-gradient(135deg, #0c1a2e 0%, #162440 100%);
  padding: 70px 60px; position: relative; overflow: hidden;
  border-bottom: 1px solid #1e3050;
}
.page-hero::before {
  content: ''; position: absolute; top: -80px; right: -80px;
  width: 320px; height: 320px;
  background: radial-gradient(circle, rgba(255,255,255,.06) 0%, transparent 70%);
  border-radius: 50%;
}
.page-hero .breadcrumb { font-size: 0.85rem; color: var(--silber); margin-bottom: 16px; }
.page-hero .breadcrumb a { color: var(--silber-hell); text-decoration: none; }
.page-hero h1 { font-family: 'Syne', sans-serif; font-size: clamp(2rem, 4vw, 3rem); color: var(--weiss); margin-bottom: 14px; }
.page-hero p { font-size: 1.05rem; color: var(--silber); line-height: 1.7; max-width: 580px; }

/* ── HERO (homepage) ── */
.hero {
  display: grid; grid-template-columns: 1fr 1fr; align-items: center;
  gap: 60px; padding: 80px 60px 80px;
  background: linear-gradient(135deg, #0c1a2e 0%, #1c3058 60%, #162440 100%);
  min-height: 90vh; position: relative; overflow: hidden;
}
.hero::before {
  content: ''; position: absolute; top: -100px; right: -100px;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(255,255,255,.04) 0%, transparent 65%);
  border-radius: 50%;
  pointer-events: none;
}

.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(255,255,255,.1); color: var(--silber-hell); font-size: 0.85rem; font-weight: 600;
  padding: 8px 16px; border-radius: 50px; margin-bottom: 24px;
  border: 1px solid rgba(255,255,255,.15);
  animation: fadeDown .6s ease both;
}
.hero-badge::before { content: ''; width: 8px; height: 8px; background: var(--silber-hell); border-radius: 50%; }

.hero h1 {
  font-family: 'Syne', sans-serif; font-size: clamp(2.4rem, 4vw, 3.4rem);
  line-height: 1.15; color: var(--weiss); margin-bottom: 10px;
  animation: fadeUp .7s .1s ease both;
}
.hero h1 .highlight { color: var(--silber-hell); display: block; }

.hero-sub {
  font-size: 1rem; line-height: 1.7; color: var(--silber); margin: 20px 0 36px;
  animation: fadeUp .7s .2s ease both;
}
.hero-sub strong { color: var(--weiss); }

.hero-btns { display: flex; gap: 14px; flex-wrap: wrap; animation: fadeUp .7s .3s ease both; }

.btn-primary {
  background: var(--weiss); color: var(--blau); border: 2px solid var(--weiss);
  padding: 14px 28px; border-radius: 50px; font-family: 'DM Sans', sans-serif;
  font-size: 1rem; font-weight: 700; cursor: pointer;
  display: flex; align-items: center; gap: 8px; text-decoration: none; transition: all .2s;
}
.btn-primary:hover { background: var(--silber-hell); border-color: var(--silber-hell); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(0,0,0,.3); }

.btn-outline {
  background: transparent; color: var(--weiss); border: 2px solid rgba(255,255,255,.5);
  padding: 14px 28px; border-radius: 50px; font-family: 'DM Sans', sans-serif;
  font-size: 1rem; font-weight: 600; cursor: pointer;
  display: flex; align-items: center; gap: 8px; text-decoration: none; transition: all .2s;
}
.btn-outline:hover { border-color: var(--weiss); background: rgba(255,255,255,.1); transform: translateY(-2px); }

.trust-row { display: flex; gap: 28px; margin-top: 44px; flex-wrap: wrap; animation: fadeUp .7s .4s ease both; }
.trust-item { display: flex; align-items: center; gap: 8px; font-size: 0.9rem; color: var(--silber); font-weight: 500; }

.hero-img-wrap { position: relative; animation: fadeLeft .8s .2s ease both; }
.hero-img-placeholder {
  width: 100%; aspect-ratio: 4/3; border-radius: 20px; overflow: hidden;
  background: linear-gradient(135deg, #243a6a 0%, #1a2d4a 100%);
  border: 1px solid rgba(255,255,255,.1);
}
.scene-svg { width: 100%; height: 100%; }
.stat-badge {
  position: absolute; bottom: -20px; left: -20px;
  background: var(--weiss); color: var(--blau); padding: 18px 22px;
  border-radius: 16px; box-shadow: 0 8px 28px rgba(0,0,0,.4);
}
.stat-badge .num { font-family: 'Syne', sans-serif; font-size: 2rem; font-weight: 800; display: block; color: var(--blau); }
.stat-badge .label { font-size: 0.8rem; color: #4a6080; }

/* ── TICKER ── */
.ticker { background: var(--dunkel); padding: 14px 0; overflow: hidden; border-top: 1px solid #1e3050; border-bottom: 1px solid #1e3050; }
.ticker-inner {
  display: flex; gap: 60px; white-space: nowrap;
  animation: ticker 22s linear infinite; width: max-content;
}
.ticker-item { display: flex; align-items: center; gap: 10px; color: var(--silber-hell); font-size: 0.9rem; font-weight: 600; }

/* ── SECTIONS ── */
section { padding: 80px 60px; background: var(--blau); }
section:nth-child(even) { background: var(--blau-bg); }

.section-label {
  font-size: 0.78rem; font-weight: 700; letter-spacing: .14em;
  text-transform: uppercase; color: var(--silber-hell); margin-bottom: 10px;
}
.section-title {
  font-family: 'Syne', sans-serif; font-size: clamp(1.8rem, 3vw, 2.5rem);
  color: var(--weiss); margin-bottom: 48px; max-width: 520px;
}

/* ── CARDS ── */
.cards { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 24px; }
.card {
  background: var(--grau); border-radius: var(--radius); padding: 32px;
  border: 1px solid #1e3050; transition: transform .25s, box-shadow .25s;
  position: relative; overflow: hidden;
}
.card::before {
  content: ''; position: absolute; top: 0; left: 0;
  width: 4px; height: 100%; background: var(--weiss); border-radius: 4px 0 0 4px;
}
.card:hover { transform: translateY(-4px); box-shadow: 0 12px 32px rgba(0,0,0,.3); }
.card-icon {
  width: 48px; height: 48px; background: rgba(255,255,255,.1); border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 18px; color: var(--silber-hell);
}
.card h3 { font-family: 'Syne', sans-serif; font-size: 1.1rem; color: var(--weiss); margin-bottom: 8px; }
.card p { font-size: 0.9rem; line-height: 1.65; color: var(--silber); }

/* ── CTA BANNER ── */
.cta-banner { background: var(--dunkel); padding: 60px; border-top: 1px solid #1e3050; border-bottom: 1px solid #1e3050; }
.cta-inner { display: flex; align-items: center; justify-content: space-between; gap: 32px; flex-wrap: wrap; }
.cta-banner h2 { font-family: 'Syne', sans-serif; color: var(--weiss); font-size: 1.8rem; margin-bottom: 8px; }
.cta-banner p { color: var(--silber); }
.btn-cta-white {
  background: var(--weiss); color: var(--blau); padding: 16px 32px; border-radius: 50px;
  font-family: 'DM Sans', sans-serif; font-size: 1rem; font-weight: 700;
  text-decoration: none; white-space: nowrap; transition: all .2s;
}
.btn-cta-white:hover { background: var(--silber-hell); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(0,0,0,.3); }

/* ── FOOTER ── */
footer { background: var(--dunkel); color: var(--silber); padding: 56px 60px 28px; border-top: 1px solid #1e3050; }
.footer-top { display: flex; justify-content: space-between; align-items: flex-start; margin-bottom: 40px; gap: 40px; flex-wrap: wrap; }
.footer-logo { margin-bottom: 12px; }
.footer-desc { font-size: 0.9rem; line-height: 1.6; max-width: 240px; }
.footer-col h4 { color: var(--weiss); font-weight: 600; margin-bottom: 14px; }
.footer-col a { display: block; color: var(--silber); text-decoration: none; font-size: 0.9rem; margin-bottom: 8px; transition: color .2s; }
.footer-col a:hover { color: var(--weiss); }
.footer-bottom { border-top: 1px solid #1e3050; padding-top: 24px; text-align: center; font-size: 0.85rem; color: var(--silber); }

/* ── FORM STYLES ── */
.form-card {
  background: var(--grau); border-radius: 20px; padding: 40px;
  box-shadow: var(--shadow); border: 1px solid #1e3050;
}
.form-card h3 { font-family: 'Syne', sans-serif; font-size: 1.3rem; color: var(--weiss); margin-bottom: 24px; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-group.full { grid-column: 1/-1; }
.form-group label { font-size: 0.85rem; font-weight: 600; color: var(--silber-hell); }
.form-group input, .form-group select, .form-group textarea {
  padding: 12px 16px; border: 1.5px solid #1e3050; border-radius: 10px;
  font-family: 'DM Sans', sans-serif; font-size: 0.95rem; color: var(--weiss);
  background: var(--blau-bg); transition: border-color .2s; outline: none;
}
.form-group input::placeholder, .form-group textarea::placeholder { color: #4a6080; }
.form-group select option { background: var(--blau); }
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { border-color: var(--silber-hell); background: var(--grau); }
.form-group textarea { resize: vertical; min-height: 110px; }
.btn-submit {
  width: 100%; margin-top: 20px; background: var(--weiss); color: var(--blau); border: none;
  padding: 16px; border-radius: 50px; font-family: 'DM Sans', sans-serif;
  font-size: 1rem; font-weight: 700; cursor: pointer; transition: background .2s, transform .15s;
}
.btn-submit:hover { background: var(--silber-hell); transform: translateY(-1px); }

/* ── KONTAKT INFO ── */
.kontakt-info { display: flex; flex-direction: column; gap: 16px; }
.kontakt-info-item {
  display: flex; align-items: center; gap: 14px;
  background: var(--grau); padding: 16px 20px; border-radius: var(--radius); border: 1px solid #1e3050;
  text-decoration: none; transition: border-color .2s;
}
.kontakt-info-item:hover { border-color: var(--silber); }
.k-icon {
  width: 40px; height: 40px; background: rgba(255,255,255,.08); border-radius: 10px;
  display: flex; align-items: center; justify-content: center; flex-shrink: 0; color: var(--silber-hell);
}
.k-label { font-size: 0.75rem; color: var(--silber); font-weight: 600; text-transform: uppercase; letter-spacing: .06em; }
.k-val { font-weight: 600; color: var(--weiss); }

/* ── ANIMATIONS ── */
@keyframes fadeUp { from { opacity: 0; transform: translateY(24px); } to { opacity: 1; transform: translateY(0); } }
@keyframes fadeDown { from { opacity: 0; transform: translateY(-16px); } to { opacity: 1; transform: translateY(0); } }
@keyframes fadeLeft { from { opacity: 0; transform: translateX(32px); } to { opacity: 1; transform: translateX(0); } }
@keyframes ticker { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  nav { padding: 16px 24px; }
  .nav-links { display: none; }
  .btn-nav { display: none; }
  .hamburger { display: block; }
  .hero { grid-template-columns: 1fr; padding: 48px 24px 60px; gap: 40px; min-height: auto; }
  section { padding: 56px 24px; }
  .page-hero { padding: 50px 24px; }
  .cta-banner { padding: 40px 24px; }
  footer { padding: 40px 24px 24px; }
  .footer-top { flex-direction: column; }
  .form-grid { grid-template-columns: 1fr; }
  .cta-inner { flex-direction: column; text-align: center; }
}
