:root {
  --bg: #0f172a;
  /* Slate-900 */
  --bg-alt: #111827;
  /* Gray-900 */
  --surface: #0b1224;
  /* Dark surface */
  --text: #e5e7eb;
  /* Gray-200 */
  --muted: #94a3b8;
  /* Slate-400 */
  --primary: #38bdf8;
  /* Sky-400 */
  --primary-700: #0369a1;
  /* Sky-700 */
  --outline: #38bdf8;
  --accent: #22d3ee;
  /* Cyan-400 */
  --border: #1f2937;
  /* Gray-800 */
  --success: #22c55e;
  --danger: #ef4444;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
}

body {
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, "Helvetica Neue", Arial, "Noto Sans", "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
  background: linear-gradient(180deg, var(--bg), var(--bg-alt));
  color: var(--text);
  line-height: 1.6;
}

/* Containers */
.container {
  width: 100%;
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 16px;
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  backdrop-filter: saturate(1.2) blur(6px);
  background: rgba(11, 18, 36, 0.75);
  border-bottom: 1px solid var(--border);
}

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

.logo img {
  display: block;
  height: 40px;
}

.main-nav {
  display: flex;
}

.nav-list {
  display: flex;
  align-items: center;
  gap: 8px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-item {
  position: relative;
}

.nav-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 10px 14px;
  color: var(--text);
  text-decoration: none;
  border-radius: 8px;
  transition: background 0.2s ease, color 0.2s ease;
}

.nav-link:hover {
  background: rgba(56, 189, 248, 0.12);
  color: #fff;
}

/* Dropdown (JetMenu-ähnlich) */
.dropdown-toggle {
  cursor: pointer;
  background: none;
  border: 0;
  font: inherit;
}

.chevron {
  font-size: 0.9em;
  opacity: 0.8;
}

.dropdown-panel {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  background: #0b1224;
  border: 1px solid var(--border);
  border-radius: 12px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
  padding: 16px;
  display: none;
}

.dropdown.open .dropdown-panel {
  display: block;
}

.dropdown-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr) 320px;
  gap: 16px;
}

.dropdown-title {
  margin: 0 0 8px;
  font-weight: 700;
  color: #fff;
}

.dropdown-links {
  list-style: none;
  margin: 0;
  padding: 0;
}

.dropdown-links li a {
  display: block;
  padding: 8px 10px;
  color: var(--muted);
  text-decoration: none;
  border-radius: 6px;
}

.dropdown-links li a:hover {
  color: #fff;
  background: rgba(56, 189, 248, 0.1);
}

.dropdown-highlight .highlight-card {
  background: linear-gradient(180deg, #0f172a, #0b1224);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 16px;
}

.highlight-card h4 {
  margin: 0 0 8px;
}

.highlight-card p {
  margin: 0 0 12px;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 10px 16px;
  border-radius: 10px;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  transition: transform 0.05s ease, background 0.2s ease, border-color 0.2s ease;
}

.btn:active {
  transform: translateY(1px);
}

.btn-primary {
  background: var(--primary);
  color: #081018;
  border: 1px solid var(--primary-700);
}

.btn-primary:hover {
  background: #22c5ff;
}

.btn-outline {
  color: var(--text);
  border: 1px solid var(--outline);
  background: transparent;
}

.btn-outline:hover {
  background: rgba(34, 211, 238, 0.12);
}

.btn-ghost {
  color: var(--text);
  border: 1px solid var(--border);
  background: transparent;
}

.btn-ghost:hover {
  border-color: var(--outline);
}

.btn-sm {
  padding: 8px 12px;
  border-radius: 8px;
}


/* Hero */
.hero {
  padding: 64px 0;
  border-bottom: 1px solid var(--border);
  background:
    radial-gradient(800px 400px at 20% 20%, rgba(34, 211, 238, 0.08), transparent 60%),
    radial-gradient(800px 400px at 80% 30%, rgba(56, 189, 248, 0.08), transparent 60%);
}

.hero-inner {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 24px;
  align-items: center;
}

.hero-content p {
  margin: 0 3px 16px;
  color: var(--muted);
}

.hero-content p {
  margin: 0 0 16px;
  color: var(--muted);
}

.hero-actions {
  display: flex;
  gap: 12px;
  margin-bottom: 16px;
}

.hero-trust {
  display: flex;
  gap: 16px;
  list-style: none;
  padding: 0;
  margin: 0;
  color: var(--muted);
}

.hero-media img {
  width: 100%;
  height: auto;
  border-radius: 16px;
  border: 1px solid var(--border);
}

/* Sections */
.section {
  padding: 56px 0;
}

.section-alt {
  background: rgba(255, 255, 255, 0.02);
}

.section h2 {
  margin: 0 0 8px;
  font-size: 1.8rem;
}

.section-intro {
  margin: 0 0 24px;
  color: var(--muted);
}


.cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.card {
  background: #0b1224;
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 24px 20px;
  width: 100%;
}

.card h3 {
  margin: 0 0 8px;
}

.card p {
  margin: 0 0 12px;
  color: var(--muted);
}

.card-link {
  color: var(--accent);
  text-decoration: none;
}

.card-link:hover {
  text-decoration: underline;
}

/* Steps */
.steps {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.step {
  background: #0b1224;
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 24px 20px;
  width: 100%;
}

.step-number {
  width: 32px;
  height: 32px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(56, 189, 248, 0.15);
  color: #fff;
  font-weight: 700;
  margin-bottom: 8px;
}

/* Testimonials */
.testimonials {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.testimonial {
  margin: 0;
  background: #0b1224;
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 16px;
}

.testimonial footer {
  color: var(--muted);
  margin-top: 8px;
}

/* FAQs */
.faq {
  background: #0b1224;
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 12px 16px;
  margin-bottom: 10px;
}

.faq summary {
  cursor: pointer;
  font-weight: 600;
}

.faq p {
  color: var(--muted);
  margin: 8px 0 0;
}

/* Events */
.events-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.events-list li {
  background: #0b1224;
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 12px 16px;
  margin-bottom: 8px;
}

/* Kontakt & Leistungen - Scroll-Margin für Anchor-Links */
#kontakt,
#leistungen {
  scroll-margin-top: 100px; /* Berücksichtigt sticky Header beim Scrollen */
}

.contact-section .contact-form {
  background: #0b1224;
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 16px;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.form-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

label {
  font-weight: 600;
}

input,
select,
textarea {
  background: #0f172a;
  border: 1px solid var(--border);
  color: var(--text);
  border-radius: 8px;
  padding: 10px 12px;
  outline: none;
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--outline);
}

.error {
  color: var(--danger);
  min-height: 18px;
}

.form-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 12px;
}

.form-note {
  color: var(--muted);
  margin: 0;
}

/* Footer */
.site-footer {
  border-top: 1px solid #e5e7eb;
  padding: 40px 0 24px;
  background: #fff;
  color: #1f2937;
}

.footer-inner {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 40px 48px;
  align-items: start;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-logo {
  display: inline-block;
}

.footer-logo img {
  display: block;
  height: 56px;
  width: auto;
}

.footer-address,
.footer-contact {
  margin: 0;
  font-size: 0.9rem;
  line-height: 1.5;
  color: #374151;
}

.footer-contact a {
  color: #1f2937;
  text-decoration: none;
}

.footer-contact a:hover {
  color: var(--primary);
  text-decoration: underline;
}

.footer-social {
  display: flex;
  gap: 12px;
  margin-top: 4px;
}

.footer-social a {
  color: #6b7280;
  transition: color 0.2s;
}

.footer-social a:hover {
  color: var(--primary);
}

.footer-social svg {
  display: block;
  width: 24px;
  height: 24px;
}

.footer-info-title {
  margin: 0 0 12px;
  font-size: 1rem;
  font-weight: 600;
  color: #1f2937;
}

.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer-nav a {
  color: #374151;
  text-decoration: none;
  font-size: 0.9rem;
}

.footer-nav a:hover {
  color: var(--primary);
  text-decoration: underline;
}

.footer-copy {
  grid-column: 1 / -1;
  margin: 24px 0 0;
  padding-top: 20px;
  border-top: 1px solid #e5e7eb;
  font-size: 0.85rem;
  color: #6b7280;
}

/* ============================================
   RESPONSIVE BREAKPOINTS
   ============================================
   Desktop: > 1024px (Standard)
   Tablet: 768px - 1023px
   Mobile: 480px - 767px
   Small Mobile: < 480px
   ============================================ */

/* Tablet (768px - 1023px) */
@media (max-width: 1023px) {
  .hero-inner {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .hero-content h1 {
    font-size: clamp(32px, 5vw, 48px);
  }

  .hero-content p {
    font-size: clamp(16px, 3vw, 18px);
  }

  .cards {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px;
  }

  .steps {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px;
  }

  .testimonials {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px;
  }

  .dropdown-panel {
    max-width: calc(100vw - 32px);
    width: 100%;
    left: 16px;
    right: 16px;
  }

  .container {
    padding: 0 16px;
  }

  .section {
    padding: 48px 0;
  }

  .section h2 {
    font-size: clamp(28px, 5vw, 36px);
  }

  .card {
    padding: 20px 18px;
  }

  .card h3 {
    font-size: clamp(20px, 4vw, 24px);
  }

  .btn {
    padding: 12px 20px;
    font-size: 15px;
  }
}

/* Mobile (480px - 767px) */
@media (max-width: 767px) {
  .footer-inner {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .cards,
  .steps,
  .testimonials {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
  }

  .hero {
    padding: 40px 0;
  }

  .hero-content h1 {
    font-size: clamp(28px, 5vw, 42px);
    margin-bottom: 16px;
  }

  .hero-content p {
    font-size: clamp(16px, 3vw, 18px);
    margin-bottom: 20px;
  }

  .section {
    padding: 40px 0;
  }

  .section h2 {
    font-size: clamp(24px, 6vw, 32px);
    margin-bottom: 12px;
  }

  .section-intro {
    font-size: clamp(14px, 2.5vw, 16px);
  }

  .container {
    padding: 0 14px;
  }

  .card {
    padding: 20px 16px;
  }

  .card h3 {
    font-size: clamp(18px, 4vw, 22px);
  }

  .card p {
    font-size: clamp(14px, 2.5vw, 16px);
  }

  .form-grid {
    grid-template-columns: 1fr;
  }

  .btn {
    width: 100%;
    justify-content: center;
  }

  .hero-trust {
    flex-direction: column;
    gap: 8px;
  }
}

/* Small Mobile (< 480px) */
@media (max-width: 479px) {
  .hero {
    padding: 32px 0;
  }

  .hero-content h1 {
    font-size: clamp(24px, 6vw, 32px);
  }

  .hero-content p {
    font-size: clamp(14px, 3vw, 16px);
  }

  .section {
    padding: 32px 0;
  }

  .section h2 {
    font-size: clamp(20px, 6vw, 28px);
  }

  .container {
    padding: 0 12px;
  }

  .card {
    padding: 16px 12px;
  }

  .card h3 {
    font-size: clamp(16px, 4vw, 20px);
  }

  .card p {
    font-size: clamp(13px, 2.5vw, 15px);
  }

  .btn {
    padding: 10px 16px;
    font-size: 14px;
  }

  .hero-actions {
    gap: 10px;
  }

  .hero-trust {
    font-size: 14px;
  }
}



/* Large Desktop (ab 1200px) */
@media (min-width: 1200px) {
  .container {
    max-width: 1850px;
    margin: 0 auto;
    padding: 0 24px;
  }
  
  .nav-container-top {
    max-width: 1850px;
    padding: 12px 24px;
  }
}

/* Desktop (1024px - 1199px) */
@media (min-width: 1024px) and (max-width: 1199px) {
  .container {
    max-width: 1200px;
    padding: 0 20px;
  }
  
  .nav-container-top {
    max-width: 1200px;
    padding: 12px 20px;
  }
}



.section {
  min-height: auto;
  display: flex;
  align-items: center;
  padding: 72px 0;
  position: relative;
  z-index: 5;
}

.content-fit {
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 18px;
}

.title {
  font-weight: 900;
  letter-spacing: -.6px;
  font-size: clamp(34px, 5vw, 64px);
}

.number {
  opacity: .6;
  font-weight: 900;
  font-size: 14px;
  letter-spacing: .2em;
}

.des {
  max-width: 68ch;
  color: rgba(255, 255, 255, .78);
  line-height: 1.6;
}

#container3D {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 1;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(2, 6, 12, .70);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255, 255, 255, .10);
}

/* Oberer Navbar-Bereich */
.nav-top {
  border-bottom: 1px solid rgba(255, 255, 255, .08);
}

.nav-container-top {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 12px 18px;
  max-width: 1850px;
  margin: 0 auto;
}

.logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.logo img {
  height: 50px;
  width: auto;
  display: block;
}

/* Suchfeld */
.search-container {
  flex: 1;
  max-width: 500px;
  min-width: 200px;
}

.search-input {
  width: 100%;
  padding: 10px 16px;
  background: rgba(255, 255, 255, .06);
  border: 1px solid rgba(255, 255, 255, .14);
  border-radius: 12px;
  color: var(--text);
  font-size: 14px;
  outline: none;
  transition: all 0.2s ease;
}

.search-input:focus {
  background: rgba(255, 255, 255, .08);
  border-color: rgba(88, 214, 255, .35);
}

.search-input::placeholder {
  color: rgba(255, 255, 255, .5);
}

/* Beratung Container */
.consultation-container {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}

.question-icon {
  width: 24px;
  height: 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(88, 214, 255, .2);
  border-radius: 50%;
  color: rgba(88, 214, 255, 1);
  flex-shrink: 0;
}

.question-icon svg {
  width: 16px;
  height: 16px;
}

.btn-consultation {
  padding: 10px 16px;
  background: rgba(255, 255, 255, .06);
  border: 1px solid rgba(255, 255, 255, .14);
  border-radius: 12px;
  color: var(--text);
  font-weight: 600;
  font-size: 14px;
  cursor: pointer;
  white-space: nowrap;
  transition: all 0.2s ease;
}

.btn-consultation:hover {
  background: rgba(255, 255, 255, .1);
  border-color: rgba(88, 214, 255, .35);
}

/* Account Dropdown */
.account-dropdown {
  position: relative;
  flex-shrink: 0;
}

.account-toggle {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  background: rgba(255, 255, 255, .06);
  border: 1px solid rgba(255, 255, 255, .14);
  border-radius: 12px;
  color: var(--text);
  font-weight: 600;
  font-size: 14px;
  cursor: pointer;
  white-space: nowrap;
  transition: all 0.2s ease;
}

.account-toggle:hover {
  background: rgba(255, 255, 255, .1);
  border-color: rgba(88, 214, 255, .35);
}

.account-toggle svg {
  width: 20px;
  height: 20px;
  stroke: currentColor;
}

.account-dropdown-panel {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  width: 280px;
  background: rgba(10, 14, 22, .95);
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: 18px;
  box-shadow: 0 24px 70px rgba(0, 0, 0, .55);
  padding: 16px;
  display: none;
  z-index: 1001;
}

.account-dropdown.active .account-dropdown-panel {
  display: block;
}

.account-dropdown-header {
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(255, 255, 255, .1);
  margin-bottom: 12px;
}

/* Header ohne Menü - für nicht eingeloggte Benutzer */
.account-dropdown-header:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.account-dropdown-header h3 {
  margin: 0 0 8px;
  font-size: 16px;
  font-weight: 700;
  color: #fff;
}

.account-login-link {
  display: block;
  color: rgba(88, 214, 255, 1);
  text-decoration: none;
  font-size: 13px;
  transition: color 0.2s ease;
}

.account-login-link:hover {
  color: rgba(124, 255, 199, 1);
  text-decoration: underline;
}

.account-menu {
  list-style: none;
  margin: 0;
  padding: 0;
}

.account-menu li {
  margin-bottom: 4px;
}

.account-menu a {
  display: block;
  padding: 10px 12px;
  color: rgba(255, 255, 255, .76);
  text-decoration: none;
  border-radius: 10px;
  font-size: 14px;
  transition: all 0.2s ease;
}

.account-menu a:hover {
  background: rgba(255, 255, 255, .06);
  color: #fff;
}

/* Account Menu für eingeloggte Benutzer mit Symbolen */
.account-menu-loggedin {
  margin-bottom: 12px;
}

.account-menu-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px;
  color: rgba(255, 255, 255, .76);
  text-decoration: none;
  border-radius: 10px;
  font-size: 14px;
  transition: all 0.2s ease;
}

.account-menu-item:hover {
  background: rgba(255, 255, 255, .08);
  color: #fff;
  transform: translateX(2px);
}

.account-menu-icon {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  color: rgba(88, 214, 255, .8);
  transition: color 0.2s ease;
}

.account-menu-item:hover .account-menu-icon {
  color: rgba(88, 214, 255, 1);
}

.account-menu-item span {
  flex: 1;
}

/* Admin-Bereich Link im Account-Menü (Power-User) */
.account-menu-admin {
  border-top: 1px solid rgba(255, 255, 255, .08);
  margin-top: 4px;
  padding-top: 8px;
}
.account-menu-admin .account-menu-icon {
  color: rgba(148, 163, 184, .9);
}
.account-menu-admin:hover .account-menu-icon {
  color: rgba(88, 214, 255, 1);
}

.account-dropdown-footer {
  padding-top: 12px;
  border-top: 1px solid rgba(255, 255, 255, .1);
  margin-top: 8px;
}

.account-logout-btn {
  width: 100%;
  justify-content: center;
  margin-top: 8px;
}

/* Burger-Menü Button - standardmäßig ausgeblendet */
.mobile-menu-toggle {
  display: none;
}

/* Mobile Navigation - standardmäßig ausgeblendet (auch auf Desktop) */
.mobile-nav {
  display: none !important;
}

/* Standard: Burger-Button versteckt */
.nav-toggle {
  display: none;
}

/* Desktop: Burger-Button sichtbar in nav-container-top */
@media (min-width: 1024px) {
  /* Burger-Button auf Desktop sichtbar */
  .nav-toggle {
    display: inline-flex !important;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 5px;
    width: 44px;
    height: 44px;
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, .14);
    background: rgba(255, 255, 255, .06);
    cursor: pointer;
    padding: 0;
    transition: all 0.2s ease;
    order: 0; /* Links positionieren */
    flex-shrink: 0;
  }
  
  .nav-toggle:hover {
    background: rgba(255, 255, 255, .1);
    border-color: rgba(255, 255, 255, .2);
  }
  
  .nav-toggle-bar {
    width: 20px;
    height: 2px;
    background: rgba(255, 255, 255, .85);
    border-radius: 2px;
    transition: all 0.3s ease;
  }
  
  .nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
  }
  
  .nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(2) {
    opacity: 0;
  }
  
  .nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
  }
  
  /* Logo nach Burger-Button */
  .nav-container-top .logo {
    order: 1;
  }
  
  /* Beratung nach Logo */
  .nav-container-top .consultation-container {
    order: 2;
  }
  
  /* Account Dropdown rechts */
  .nav-container-top .account-dropdown {
    order: 3;
    margin-left: auto;
  }
  
  /* Hauptmenü standardmäßig versteckt */
  .main-nav {
    display: none !important;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(10, 14, 22, .98);
    backdrop-filter: blur(12px);
    z-index: 9999;
    overflow-y: auto;
    overflow-x: hidden;
    opacity: 0;
    visibility: hidden;
    transform: scale(0.95);
    transition: opacity 0.3s ease, visibility 0.3s ease, transform 0.3s ease;
    pointer-events: none;
    flex-direction: column;
  }
  
  .main-nav.is-open {
    display: flex !important;
    opacity: 1 !important;
    visibility: visible !important;
    transform: scale(1) !important;
    pointer-events: auto !important;
  }
  
  /* Header für Desktop Menü */
  .main-nav-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px;
    border-bottom: 1px solid rgba(255, 255, 255, .1);
    position: sticky;
    top: 0;
    background: rgba(10, 14, 22, .98);
    z-index: 1;
    flex-shrink: 0;
    width: 100%;
  }

  .main-nav-header h2 {
    margin: 0;
    font-size: 24px;
    font-weight: 700;
    color: #fff;
  }

  /* Close Button für Desktop Menü */
  .main-nav-close {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, .14);
    background: rgba(255, 255, 255, .06);
    cursor: pointer;
    color: rgba(255, 255, 255, .85);
    transition: all 0.2s ease;
    padding: 0;
    margin: 0;
  }

  .main-nav-close:hover {
    background: rgba(255, 255, 255, .1);
    color: #fff;
    border-color: rgba(255, 255, 255, .2);
  }

  .main-nav-close svg {
    width: 20px;
    height: 20px;
  }

  /* Content Bereich */
  .main-nav-content {
    flex: 1;
    padding: 20px;
    overflow-y: auto;
    overflow-x: hidden;
    min-height: 0;
    width: 100%;
    max-width: 100%;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 40px;
  }

  /* Sektionen */
  .main-nav-section {
    margin-bottom: 32px;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
  }

  .main-nav-section:last-of-type {
    margin-bottom: 0;
  }

  .main-nav-section-title {
    margin: 0 0 8px;
    font-size: 18px;
    font-weight: 700;
    color: rgba(88, 214, 255, 1);
    text-transform: uppercase;
  }

  .main-nav-section-subtitle {
    margin: 0 0 12px;
    font-size: 14px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.9);
  }

  .main-nav-link-button {
    background: linear-gradient(135deg, rgba(88, 214, 255, .22), rgba(124, 255, 199, .18));
    border: 1px solid rgba(88, 214, 255, .35);
    font-weight: 600;
  }

  .main-nav-link-button:hover {
    background: linear-gradient(135deg, rgba(88, 214, 255, .3), rgba(124, 255, 199, .25));
    border-color: rgba(88, 214, 255, .5);
    letter-spacing: 0.5px;
  }

  /* Liste der Links */
  .main-nav-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    width: 100%;
    box-sizing: border-box;
  }

  /* Responsive Grid für kleinere Desktop-Bildschirme */
  @media (min-width: 1024px) and (max-width: 1400px) {
    .main-nav-list {
      grid-template-columns: repeat(2, 1fr);
    }
  }

  .main-nav-link {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 16px 12px;
    color: rgba(255, 255, 255, .85);
    text-decoration: none;
    border-radius: 12px;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.2s ease;
    border: 1px solid transparent;
    background: rgba(255, 255, 255, .03);
    text-align: center;
    min-height: 80px;
    flex-direction: column;
    gap: 8px;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    word-wrap: break-word;
    overflow-wrap: break-word;
  }

  .main-nav-link:hover {
    background: rgba(255, 255, 255, .08);
    color: #fff;
    border-color: rgba(88, 214, 255, .3);
    transform: translateY(-2px);
  }

  /* Footer mit CTA */
  .main-nav-footer {
    margin-top: 32px;
    padding-top: 24px;
    border-top: 1px solid rgba(255, 255, 255, .1);
    width: 100%;
    flex-shrink: 0;
  }

  .main-nav-cta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 16px 24px;
    background: linear-gradient(135deg, rgba(88, 214, 255, .22), rgba(124, 255, 199, .18));
    border: 1px solid rgba(88, 214, 255, .35);
    border-radius: 12px;
    color: #fff;
    text-decoration: none;
    font-size: 16px;
    font-weight: 600;
    transition: all 0.2s ease;
    width: 100%;
  }

  .main-nav-cta:hover {
    background: linear-gradient(135deg, rgba(88, 214, 255, .3), rgba(124, 255, 199, .25));
    border-color: rgba(88, 214, 255, .5);
    transform: translateY(-2px);
  }

  .main-nav-cta svg {
    flex-shrink: 0;
    width: 20px;
    height: 20px;
  }
}

@media (max-width: 1023px) {
  .nav-toggle {
    display: none;
  }
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  text-decoration: none;
  font-weight: 800;
  border-radius: 12px;
  padding: 10px 12px;
  font-size: 14px;
  cursor: pointer;
  border: 1px solid rgba(255, 255, 255, .14);
  background: rgba(255, 255, 255, .06);
  color: #fff;
  white-space: nowrap;
}

.btn-outline {
  background: rgba(255, 255, 255, .06);
}

.btn-primary {
  border-color: rgba(88, 214, 255, .35);
  background: linear-gradient(135deg, rgba(88, 214, 255, .22), rgba(124, 255, 199, .18));
}

.btn-sm {
  padding: 8px 10px;
  font-size: 13px;
  border-radius: 10px;
}

.dropdown {
  position: relative;
}

.chevron {
  font-size: 11px;
  opacity: .85;
}

.dropdown-panel {
  position: absolute;
  top: calc(100% + 10px);
  left: 0;
  width: min(860px, calc(100vw - 32px));
  min-width: auto;
  background: rgba(10, 14, 22, .92);
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: 18px;
  box-shadow: 0 24px 70px rgba(0, 0, 0, .55);
  padding: 14px;
  display: none;
}

.dropdown-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1.1fr;
  gap: 12px;
}

.dropdown-section {
  background: rgba(255, 255, 255, .04);
  border: 1px solid rgba(255, 255, 255, .10);
  border-radius: 14px;
  padding: 12px;
}

.dropdown-title {
  margin: 0 0 10px;
  font-size: 13px;
  letter-spacing: .2px;
  color: rgba(255, 255, 255, .92);
}

.dropdown-links {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 8px;
}

.dropdown-links a {
  display: block;
  padding: 8px 10px;
  border-radius: 12px;
  color: rgba(255, 255, 255, .76);
  text-decoration: none;
  border: 1px solid transparent;
  background: transparent;
  font-size: 13px;
  line-height: 1.2;
}

.dropdown-links a:hover {
  color: #fff;
  background: rgba(255, 255, 255, .06);
  border-color: rgba(255, 255, 255, .10);
}

.dropdown-highlight .highlight-card {
  height: 100%;
  border-radius: 14px;
  padding: 14px;
  border: 1px solid rgba(88, 214, 255, .28);
  background: linear-gradient(135deg, rgba(88, 214, 255, .18), rgba(124, 255, 199, .12));
}

.dropdown-highlight h4 {
  margin: 0 0 8px;
}

.dropdown-highlight p {
  margin: 0 0 10px;
  color: rgba(255, 255, 255, .78);
  font-size: 13px;
  line-height: 1.45;
}

/* Open on hover (desktop) */
@media (hover:hover) and (pointer:fine) {
  .dropdown:hover .dropdown-panel {
    display: block;
  }
}

/* Tablet & Mobile Navigation (nicht Desktop) */
@media (max-width: 1023px) {
  /* Suchleiste auf Tablet/Mobile ausblenden */
  .search-container {
    display: none;
  }

  /* Beratung auf Tablet/Mobile ausblenden */
  .consultation-container {
    display: none;
  }

  .nav-container-top {
    gap: 12px;
    padding: 10px 16px;
    flex-wrap: wrap;
  }

  .logo img {
    height: 40px;
  }

  .account-toggle {
    padding: 8px 12px;
    font-size: 13px;
  }

  .account-dropdown-panel {
    width: min(280px, calc(100vw - 32px));
    right: 16px;
    left: auto;
  }
}

/* Mobile & Tablet (außer Desktop) */
@media (max-width: 1023px) {
  /* Burger-Menü Button */
  .mobile-menu-toggle {
    display: flex;
    flex-direction: column;
    gap: 5px;
    width: 40px;
    height: 40px;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, .14);
    background: rgba(255, 255, 255, .06);
    cursor: pointer;
    padding: 0;
    margin-right: 12px;
  }

  .mobile-menu-bar {
    width: 20px;
    height: 2px;
    background: rgba(255, 255, 255, .85);
    border-radius: 2px;
    transition: all 0.3s ease;
  }

  .mobile-menu-toggle[aria-expanded="true"] .mobile-menu-bar:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
  }

  .mobile-menu-toggle[aria-expanded="true"] .mobile-menu-bar:nth-child(2) {
    opacity: 0;
  }

  .mobile-menu-toggle[aria-expanded="true"] .mobile-menu-bar:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
  }

  /* Mobile Navigation - Vollbild Overlay (zentral) */
  .mobile-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100vw;
    height: 100vh;
    max-width: 100vw;
    max-height: 100vh;
    background: rgba(10, 14, 22, .98);
    backdrop-filter: blur(12px);
    z-index: 10000;
    display: none;
    flex-direction: column;
    opacity: 0;
    visibility: hidden;
    transform: scale(0.95);
    transition: opacity 0.3s ease, visibility 0.3s ease, transform 0.3s ease;
    overflow-y: auto;
    overflow-x: hidden;
    pointer-events: none;
    margin: 0;
    padding: 0;
  }

  /* Menü komplett ausblenden wenn nicht geöffnet */
  .mobile-nav:not(.is-open) {
    display: none !important;
    opacity: 0 !important;
    visibility: hidden !important;
    pointer-events: none !important;
  }

  .mobile-nav.is-open {
    display: flex !important;
    opacity: 1 !important;
    visibility: visible !important;
    transform: scale(1) !important;
    pointer-events: auto !important;
    width: 100vw !important;
    height: 100vh !important;
    max-width: 100vw !important;
    max-height: 100vh !important;
  }

  .mobile-nav-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px;
    border-bottom: 1px solid rgba(255, 255, 255, .1);
    position: sticky;
    top: 0;
    background: rgba(10, 14, 22, .98);
    z-index: 1;
    flex-shrink: 0;
    width: 100%;
  }

  .mobile-nav-header h2 {
    margin: 0;
    font-size: 24px;
    font-weight: 700;
    color: #fff;
  }

  .mobile-nav-close {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, .14);
    background: rgba(255, 255, 255, .06);
    cursor: pointer;
    color: rgba(255, 255, 255, .85);
    transition: all 0.2s ease;
  }

  .mobile-nav-close:hover {
    background: rgba(255, 255, 255, .1);
    color: #fff;
  }

  .mobile-nav-content {
    flex: 1;
    padding: 20px;
    overflow-y: auto;
    overflow-x: hidden;
    min-height: 0;
    width: 100%;
    max-width: 100%;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 40px; /* Extra Platz am Ende für besseres Scrollen */
  }

  .mobile-nav-section {
    margin-bottom: 32px;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
  }

  .mobile-nav-section:last-of-type {
    margin-bottom: 0;
  }

  .mobile-nav-section-title {
    margin: 0 0 8px;
    font-size: 18px;
    font-weight: 700;
    color: rgba(88, 214, 255, 1);
    text-transform: uppercase;
  }

  .mobile-nav-section-subtitle {
    margin: 0 0 12px;
    font-size: 14px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.9);
  }

  .mobile-nav-link-button {
    background: linear-gradient(135deg, rgba(88, 214, 255, .22), rgba(124, 255, 199, .18));
    border: 1px solid rgba(88, 214, 255, .35);
    font-weight: 600;
  }

  .mobile-nav-link-button:hover {
    background: linear-gradient(135deg, rgba(88, 214, 255, .3), rgba(124, 255, 199, .25));
    border-color: rgba(88, 214, 255, .5);
    letter-spacing: 0.5px;
  }

  .mobile-nav-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    width: 100%;
    box-sizing: border-box;
  }

  .mobile-nav-link {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 16px 12px;
    color: rgba(255, 255, 255, .85);
    text-decoration: none;
    border-radius: 12px;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.2s ease;
    border: 1px solid transparent;
    background: rgba(255, 255, 255, .03);
    text-align: center;
    min-height: 80px;
    flex-direction: column;
    gap: 8px;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    word-wrap: break-word;
    overflow-wrap: break-word;
  }

  .mobile-nav-link:hover {
    background: rgba(255, 255, 255, .08);
    color: #fff;
    border-color: rgba(88, 214, 255, .3);
    transform: translateY(-2px);
  }

  .mobile-nav-link svg {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
  }

  /* Mobile Navigation Anpassungen (480px - 767px) */
  @media (max-width: 767px) {
    .mobile-nav-list {
      grid-template-columns: repeat(2, 1fr);
      gap: 10px;
    }
    
    .mobile-nav-link {
      font-size: 13px;
      padding: 14px 10px;
      min-height: 75px;
    }
    
    .mobile-nav-content {
      padding: 18px;
    }
    
    .mobile-nav-header {
      padding: 18px;
    }
    
    .mobile-nav-section-title {
      font-size: 16px;
    }
  }

  /* Small Mobile (< 480px) */
  @media (max-width: 479px) {
    .mobile-nav {
      width: 100vw !important;
      height: 100vh !important;
      height: 100dvh !important; /* Dynamic viewport height für mobile */
    }
    
    .mobile-nav-list {
      grid-template-columns: repeat(2, 1fr);
      gap: 8px;
    }
    
    .mobile-nav-link {
      font-size: 12px;
      padding: 12px 8px;
      min-height: 70px;
    }
    
    .mobile-nav-content {
      padding: 16px;
    }
    
    .mobile-nav-header {
      padding: 16px;
    }
    
    .mobile-nav-header h2 {
      font-size: 20px;
    }
    
    .mobile-nav-section-title {
      font-size: 14px;
      margin-bottom: 12px;
    }
    
    .mobile-nav-section {
      margin-bottom: 24px;
    }
    
    .mobile-nav-cta {
      padding: 14px 20px;
      font-size: 14px;
    }
  }

  .mobile-nav-footer {
    margin-top: 32px;
    padding-top: 24px;
    border-top: 1px solid rgba(255, 255, 255, .1);
    width: 100%;
    flex-shrink: 0;
  }

  .mobile-nav-cta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 16px 24px;
    background: linear-gradient(135deg, rgba(88, 214, 255, .22), rgba(124, 255, 199, .18));
    border: 1px solid rgba(88, 214, 255, .35);
    border-radius: 12px;
    color: #fff;
    text-decoration: none;
    font-size: 16px;
    font-weight: 600;
    transition: all 0.2s ease;
    width: 100%;
  }

  .mobile-nav-cta:hover {
    background: linear-gradient(135deg, rgba(88, 214, 255, .3), rgba(124, 255, 199, .25));
    border-color: rgba(88, 214, 255, .5);
    transform: translateY(-2px);
  }

  .mobile-nav-cta svg {
    flex-shrink: 0;
    width: 20px;
    height: 20px;
  }
}

/* Mobile Navigation (480px - 767px) */
@media (max-width: 767px) {
  .nav-top {
    border-bottom: none;
  }

  .nav-container-top {
    flex-wrap: nowrap;
    gap: 10px;
    padding: 10px 14px;
  }

  .mobile-menu-toggle {
    order: 0;
    flex-shrink: 0;
    width: 38px;
    height: 38px;
  }

  .logo {
    order: 1;
    flex-shrink: 0;
  }

  .logo img {
    height: 34px;
  }

  /* Account Dropdown neben Logo */
  .account-dropdown {
    order: 2;
    margin-left: auto;
  }

  .account-toggle {
    padding: 8px 10px;
    font-size: 12px;
  }

  .account-toggle span {
    display: inline;
  }

  .account-dropdown-panel {
    right: 14px;
    left: auto;
    width: min(calc(100vw - 28px), 300px);
  }
}

/* Small Mobile (< 480px) */
@media (max-width: 479px) {
  .nav-container-top {
    padding: 8px 12px;
    gap: 8px;
  }

  .mobile-menu-toggle {
    width: 36px;
    height: 36px;
  }

  .logo img {
    height: 32px;
  }

  .account-toggle {
    padding: 6px 8px;
    font-size: 11px;
  }

  .account-toggle span {
    display: none; /* Text auf sehr kleinen Bildschirmen ausblenden */
  }

  .account-dropdown-panel {
    right: 12px;
    width: min(calc(100vw - 24px), 280px);
  }
}


.dropdown-grid {
  grid-template-columns: 1fr;
}


.testimonials {
  grid-template-columns: 1fr;
}

.form-grid {
  grid-template-columns: 1fr;
}

/* ============================================
   Barrierefreiheit (A11y) – globale Optionen
   ============================================ */

html {
  font-size: calc(16px * var(--a11y-font-scale, 1));
}

/* Sichtbare Focus-Rahmen */
:focus-visible {
  outline: 3px solid var(--outline);
  outline-offset: 3px;
}

/* Skip-Link (nur bei Fokus sichtbar) */
.a11y-skip-link {
  position: absolute;
  left: 12px;
  top: 8px;
  z-index: 20000;
  padding: 10px 12px;
  border-radius: 10px;
  background: #fff;
  color: #000;
  text-decoration: none;
  transform: translateY(-140%);
  transition: transform 0.2s ease;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.25);
}
.a11y-skip-link:focus,
.a11y-skip-link:focus-visible {
  transform: translateY(0);
}

/* Panel-Button im Header */
.a11y-toggle-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.06);
  color: rgba(255, 255, 255, 0.92);
  cursor: pointer;
  font: inherit;
  font-weight: 700;
  line-height: 1;
  white-space: nowrap;
  transition: background 0.2s ease, border-color 0.2s ease, transform 0.05s ease;
}
.a11y-toggle-btn:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(88, 214, 255, 0.35);
}
.a11y-toggle-btn:active {
  transform: translateY(1px);
}
.a11y-toggle-btn span[aria-hidden="true"] {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 10px;
  background: linear-gradient(135deg, rgba(88, 214, 255, 0.25), rgba(124, 255, 199, 0.18));
  border: 1px solid rgba(88, 214, 255, 0.35);
  color: #fff;
  font-weight: 800;
}
@media (max-width: 479px) {
  .a11y-toggle-text {
    display: none;
  }
}

/* Panel */
.a11y-backdrop {
  position: fixed;
  inset: 0;
  z-index: 15000;
  background: rgba(0, 0, 0, 0.55);
}
.a11y-panel {
  position: fixed;
  top: 84px;
  right: 16px;
  z-index: 16000;
  width: min(360px, calc(100vw - 32px));
  border-radius: 18px;
  background: rgba(10, 14, 22, 0.96);
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(12px);
  transform: translateY(-8px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.18s ease, transform 0.18s ease;
}
.a11y-panel.is-open {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}
.a11y-panel-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 14px 10px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.a11y-panel-title {
  margin: 0;
  font-size: 16px;
  font-weight: 800;
  color: #fff;
}
.a11y-close {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.06);
  color: rgba(255, 255, 255, 0.92);
  cursor: pointer;
  font-size: 22px;
  line-height: 1;
}
.a11y-close:hover {
  background: rgba(255, 255, 255, 0.1);
}
.a11y-panel-body {
  padding: 14px;
  display: grid;
  gap: 10px;
}
.a11y-group {
  display: grid;
  gap: 8px;
  padding: 12px;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.04);
}
.a11y-label {
  font-weight: 800;
  color: rgba(255, 255, 255, 0.92);
  font-size: 13px;
}
.a11y-seg {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
}
.a11y-seg-btn {
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.06);
  color: rgba(255, 255, 255, 0.88);
  padding: 10px 10px;
  cursor: pointer;
  font: inherit;
  font-weight: 700;
  font-size: 13px;
}
.a11y-seg-btn.is-active {
  border-color: rgba(88, 214, 255, 0.55);
  background: linear-gradient(135deg, rgba(88, 214, 255, 0.22), rgba(124, 255, 199, 0.16));
  color: #fff;
}
.a11y-check {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.04);
  color: rgba(255, 255, 255, 0.9);
  font-weight: 700;
  font-size: 13px;
}
.a11y-check input {
  width: 18px;
  height: 18px;
  accent-color: var(--primary);
}
.a11y-actions {
  display: flex;
  justify-content: flex-end;
  padding-top: 4px;
}
.a11y-reset {
  padding: 10px 12px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: transparent;
  color: rgba(255, 255, 255, 0.85);
  cursor: pointer;
  font: inherit;
  font-weight: 800;
  font-size: 13px;
}
.a11y-reset:hover {
  border-color: rgba(88, 214, 255, 0.35);
  color: #fff;
}
.a11y-hint {
  margin: 0;
  color: rgba(255, 255, 255, 0.65);
  font-size: 12px;
  line-height: 1.4;
}

/* Link-Unterstreichung */
html[data-a11y-underline-links="on"] a:not(.btn):not(.nav-link):not(.main-nav-link):not(.mobile-nav-link) {
  text-decoration: underline !important;
  text-underline-offset: 0.2em;
}

/* Kontrastmodus */
html[data-a11y-contrast="high"] body {
  background: #000 !important;
  color: #fff !important;
}
html[data-a11y-contrast="high"] .site-header {
  background: rgba(0, 0, 0, 0.95) !important;
  border-bottom-color: rgba(255, 255, 255, 0.25) !important;
}
html[data-a11y-contrast="high"] .site-footer {
  background: #000 !important;
  color: #fff !important;
  border-top-color: rgba(255, 255, 255, 0.25) !important;
}
html[data-a11y-contrast="high"] a {
  color: #ffea00 !important;
}
html[data-a11y-contrast="high"] .card,
html[data-a11y-contrast="high"] .step,
html[data-a11y-contrast="high"] .faq,
html[data-a11y-contrast="high"] .testimonial,
html[data-a11y-contrast="high"] .contact-section .contact-form {
  background: #000 !important;
  border-color: rgba(255, 255, 255, 0.3) !important;
}
html[data-a11y-contrast="high"] input,
html[data-a11y-contrast="high"] select,
html[data-a11y-contrast="high"] textarea {
  background: #000 !important;
  color: #fff !important;
  border-color: rgba(255, 255, 255, 0.35) !important;
}

/* Motion reduzieren */
html[data-a11y-reduce-motion="on"] * {
  scroll-behavior: auto !important;
  animation-duration: 0.001ms !important;
  animation-iteration-count: 1 !important;
  transition-duration: 0.001ms !important;
}
@media (prefers-reduced-motion: reduce) {
  * {
    scroll-behavior: auto !important;
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }
}