/* Shared nav & footer — alle Seiten */
/* Scrollbar immer sichtbar → verhindert Breitensprung beim Seitenwechsel */
html { overflow-y: scroll; }
:root {
  --mt-blue: #0099FF;
  --mt-blue-dark: #007ACC;
  --mt-red: #d91600;
  --mt-dark: #0c111a;
  --mt-dark-2: #0a1020;
  --mt-border: #1e2a3d;
  --mt-muted: #6b7fa0;
}

/* ===== NAV ===== */
#site-nav {
  background: var(--mt-dark);
  position: sticky;
  top: 0;
  z-index: 1000;
  border-bottom: 1px solid var(--mt-border);
  font-family: 'Open Sans', 'Segoe UI', Arial, sans-serif;
}
#site-nav .inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 52px;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
}
#site-nav .nav-links {
  display: flex;
  gap: 22px;
  align-items: center;
  flex-wrap: wrap;
}
#site-nav .nav-links a {
  color: #8a9ab5;
  font-size: 16px !important;
  text-decoration: none;
  transition: color 0.2s;
  white-space: nowrap;
}
#site-nav .nav-links a:hover { color: #fff; }
#site-nav .nav-cta {
  background: var(--mt-blue);
  color: #fff !important;
  font-size: 16px !important;
  font-weight: 700;
  padding: 8px 18px;
  border-radius: 6px;
  text-decoration: none;
  transition: background 0.2s;
  white-space: nowrap;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
}
#site-nav .nav-cta:hover { background: var(--mt-blue-dark); }

/* ===== SITE HEADER ===== */
#site-header {
  background: var(--mt-dark-2);
  padding: 28px 0 22px;
  border-bottom: 1px solid var(--mt-border);
  font-family: 'Open Sans', 'Segoe UI', Arial, sans-serif;
  min-height: 186px;
  box-sizing: border-box;
}
#site-header .inner {
  display: flex;
  flex-direction: column;
  gap: 16px;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
}
#site-header .logo img {
  width: 380px;
  max-width: 100%;
  height: auto;
  display: block;
}
#site-header h1 {
  font-size: 1.45rem;
  font-weight: 600;
  color: #c8d5ec;
  line-height: 1.3;
  margin: 0;
}

/* ===== FOOTER ===== */
#site-footer {
  background: #080c14;
  padding: 48px 0 28px;
  border-top: 1px solid var(--mt-border);
  font-family: 'Open Sans', 'Segoe UI', Arial, sans-serif;
  clear: both;
}
#site-footer .container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
}
#site-footer .footer-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 2fr;
  gap: 36px;
  margin-bottom: 32px;
}
#site-footer .footer-col h3 {
  font-size: 0.875rem !important;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: #fff;
  margin: 0 0 12px 0;
}
#site-footer .footer-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
#site-footer .footer-col ul li {
  margin-bottom: 8px;
}
#site-footer .footer-col ul li a {
  color: #6b7fa0;
  font-size: 16px !important;
  text-decoration: none;
  transition: color 0.2s;
}
#site-footer .footer-col ul li a:hover { color: var(--mt-blue); }
#site-footer .footer-social {
  display: flex;
  gap: 10px;
  margin-bottom: 20px;
}
#site-footer .footer-social a {
  background: #1e2a3d;
  color: #8a9ab5;
  font-size: 16px !important;
  font-weight: 600;
  padding: 7px 16px;
  border-radius: 6px;
  text-decoration: none;
  transition: background 0.2s, color 0.2s;
}
#site-footer .footer-social a:hover { background: var(--mt-blue); color: #fff; }
#site-footer .contact-item { margin-bottom: 10px; }
#site-footer .contact-item .label {
  font-size: 12px !important;
  color: #3a4d66;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 2px;
}
#site-footer .contact-item .value {
  color: #8a9ab5;
  font-size: 16px !important;
}
/* Höhere Spezifität um per-Seite inline <style>-Blöcke zu überschreiben */
#site-footer .footer-col .contact-item .label {
  font-size: 12px !important;
}
#site-footer .footer-col .contact-item .value,
#site-footer .footer-col .contact-item .value span {
  font-size: 16px !important;
  color: #fff !important;
}
#site-footer .footer-divider {
  border: none;
  border-top: 1px solid #1a2438;
  margin-bottom: 18px;
}
#site-footer .footer-copy {
  font-size: 13px;
  color: #3a4d66;
  text-align: center;
}
#site-footer .col-contact-h3 { margin-top: 16px; }

/* ===== BODY BACKGROUND ===== */
body {
  background: #fff;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}
#site-footer { margin-top: auto; }

/* ===== SECTION MARGIN FIX (style.css sets section { margin-bottom: 3em }) ===== */
#faq-section, #choice-section, #page-hero { margin-bottom: 0 !important; }

/* ===== PAGE HERO WEISS (Auftraggeberstatus) ===== */
#page-hero {
  background: linear-gradient(to right, #ffffff 0%, #ffffff 28%, rgba(255,255,255,0.82) 44%, rgba(255,255,255,0.12) 68%, rgba(0,0,0,0) 100%), url('../images/hero-banner.jpg') no-repeat center center / cover !important;
  border-bottom: 1px solid #e0e8f4 !important;
}
#page-hero::after { display: none !important; }
#page-hero h2 { color: #0a1a2e !important; }
.hero-tag {
  background: rgba(0,153,255,0.10) !important;
  color: #0077cc !important;
  border-color: rgba(0,153,255,0.28) !important;
}
.price-badge {
  background: #fff !important;
  border: 1px solid #d4e0f0 !important;
  box-shadow: 0 4px 20px rgba(0,80,180,0.10) !important;
}
.price-amount { color: #0a1a2e !important; }
.price-divider { background: #d4e0f0 !important; }

/* ===== AUFTRAGGEBER CHOICE SECTION ===== */
#choice-section {
  background: #fff !important;
  border-top: 1px solid #e8ecf2;
  box-shadow: inset 0 8px 28px rgba(0,0,0,0.05);
}
#choice-section h2 {
  color: #111 !important;
  max-width: 620px;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
  #site-footer .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 600px) {
  #site-nav .inner { flex-wrap: wrap; height: auto; padding: 10px 16px; gap: 8px; }
  #site-nav .nav-links { gap: 10px; }
  #site-nav .nav-links a { font-size: 16px !important; min-height: 44px; display: inline-flex; align-items: center; }
  #site-footer .footer-grid { grid-template-columns: 1fr; gap: 22px; }
  #site-header h1 { font-size: 1.1rem; }
}
