/* ================================================
   VIRA EXPERTS – MAIN CSS v9.0
   Design-sync: Tokens + alle visuellen Details
   aus dem HTML-Referenzdesign übernommen
   ================================================ */

:root {
  --red:    #C91212;
  --red-dim: #991010;
  --bg:     #0A0A0A;
  --bg2:    #141414;           /* FIX: war #0f0f0f */
  --white:  #ffffff;
  --gray:   #888888;
  --border: rgba(201,18,18,0.15); /* FIX: war rgba(255,255,255,0.07) – kein Rot-Tint */
  --card:   rgba(201,18,18,0.04); /* FIX: war #141414 – kein Rot-Hauch */
  --nav-h:  72px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--bg); color: var(--white);
  font-family: 'DM Sans', sans-serif;
  font-size: 16px; line-height: 1.6;
  overflow-x: hidden; -webkit-font-smoothing: antialiased;
  cursor: auto;
}
@media (hover: hover) and (pointer: fine) {
  body { cursor: none; }
}

/* FIX: Noise-Overlay – war komplett fehlend */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.03'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 1;
  opacity: 0.4;
}

h1,h2,h3,h4,h5,h6 { font-family: 'Syne', sans-serif; color: var(--white); line-height: 1.1; }
a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }
p { color: var(--gray); }
ul,ol { list-style: none; }

/* ================================================
   CUSTOM CURSOR
   ================================================ */
.cursor {
  position: fixed; width: 8px; height: 8px;
  background: var(--red); border-radius: 50%;
  pointer-events: none; z-index: 9999;
  transform: translate(-50%,-50%);
  transition: transform 0.1s, opacity 0.2s;
}
.cursor-ring {
  position: fixed; width: 32px; height: 32px;
  border: 1px solid rgba(201,18,18,0.5); border-radius: 50%;
  pointer-events: none; z-index: 9998;
  transform: translate(-50%,-50%);
  transition: transform 0.15s ease, width 0.3s, height 0.3s, border-color 0.3s;
}

/* ================================================
   ACCESSIBILITY
   ================================================ */
.skip-nav {
  position: absolute; top: -100px; left: 0;
  background: var(--red); color: var(--white);
  padding: 12px 24px; font-size: 14px; font-weight: 600;
  z-index: 9999; transition: top 0.2s;
}
.skip-nav:focus { top: 0; }
.screen-reader-text {
  position: absolute; width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden;
  clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}
a:focus-visible, button:focus-visible {
  outline: 2px solid var(--red); outline-offset: 3px;
}

/* ================================================
   NAVIGATION
   FIX: war immer opak – jetzt transparent initial,
        .scrolled-Klasse via JS getoggled
   ================================================ */
#nav {
  position: fixed; top: 0; left: 0; right: 0;
  height: var(--nav-h);
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 48px;
  background: transparent;
  border-bottom: 1px solid transparent;
  z-index: 1000;
  transition: background 0.4s ease, border-color 0.4s ease, backdrop-filter 0.4s ease;
}
#nav.scrolled {
  background: rgba(8,11,16,0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom-color: var(--border);
}

.logo {
  font-family: 'Syne', sans-serif; font-weight: 800;
  font-size: 17px; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--white);
}
.logo { display: flex; align-items: center; gap: 10px; }
.logo > span.logo-wordmark { color: var(--white); }
.logo-wordmark .logo-dot { color: var(--red); }

.nav-links { display: flex; align-items: center; gap: 40px; }
.nav-links li a {
  font-size: 11px; font-weight: 600;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--gray); transition: color 0.2s;
  position: relative;
}
.nav-links li a::after {
  content: ''; position: absolute; bottom: -4px; left: 0; right: 0;
  height: 1px; background: var(--red);
  transform: scaleX(0); transform-origin: right;
  transition: transform 0.3s;
}
.nav-links li a:hover { color: var(--white); }
.nav-links li a:hover::after { transform: scaleX(1); transform-origin: left; }

/* FIX: Nav-CTA war im HTML transparent mit roter Schrift */
.nav-cta {
  background: transparent !important;
  border: 1px solid var(--border) !important;
  color: var(--red) !important;
  font-size: 11px !important; font-weight: 600 !important;
  letter-spacing: 0.12em !important; text-transform: uppercase !important;
  padding: 10px 22px !important;
  transition: background 0.2s, color 0.2s, border-color 0.2s !important;
}
.nav-cta::after { display: none !important; }
.nav-cta:hover {
  background: var(--red) !important;
  color: var(--bg) !important;
  border-color: var(--red) !important;
}

.nav-burger {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: none; cursor: pointer; padding: 4px;
}
.nav-burger span {
  display: block; width: 22px; height: 2px;
  background: var(--white); transition: all 0.3s;
}
.nav-burger[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-burger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-burger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.nav-mobile {
  display: none; position: fixed;
  top: var(--nav-h); left: 0; right: 0; bottom: 0;
  background: var(--bg); z-index: 999;
  padding: 60px 48px;
  animation: mobileIn 0.3s ease;
}
@keyframes mobileIn { from { opacity: 0; transform: translateX(-20px); } to { opacity: 1; transform: none; } }
.nav-mobile.open { display: block; }
.nav-mobile ul { display: flex; flex-direction: column; gap: 32px; }
.nav-mobile ul li a {
  font-family: 'Syne', sans-serif;
  font-size: clamp(28px, 5vw, 40px); font-weight: 800;
  color: var(--white); letter-spacing: -0.02em;
  transition: color 0.2s;
}
.nav-mobile ul li a:hover { color: var(--red); }

/* ================================================
   BUTTONS
   ================================================ */
.btn-primary {
  display: inline-block;
  background: var(--red); color: var(--bg);
  font-family: 'DM Sans', sans-serif; font-size: 15px;
  font-weight: 500; letter-spacing: 0.01em;
  padding: 16px 32px; border: none; cursor: pointer;
  transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
  position: relative; overflow: hidden;
}
.btn-primary::before {
  content: ''; position: absolute; inset: 0;
  background: rgba(255,255,255,0.1); transform: scaleX(0);
  transform-origin: left; transition: transform 0.3s;
}
.btn-primary:hover::before { transform: scaleX(1); }
.btn-primary:hover { background: #E53535; transform: translateY(-2px); box-shadow: 0 8px 24px rgba(201,18,18,0.3); }

/* FIX: btn-ghost – war mit Border; HTML-Design ist Plain-Text + Pfeil */
.btn-ghost {
  display: inline-flex; align-items: center; gap: 8px;
  background: transparent; color: var(--gray);
  font-family: 'DM Sans', sans-serif; font-size: 15px;
  font-weight: 400; border: none; padding: 0; cursor: pointer;
  transition: color 0.2s;
  text-decoration: none;
}
.btn-ghost::after {
  content: '→';
  transition: transform 0.2s;
}
.btn-ghost:hover { color: var(--white); }
.btn-ghost:hover::after { transform: translateX(4px); }

/* ================================================
   HERO
   ================================================ */
.hero {
  position: relative; min-height: 100vh;
  display: flex; align-items: center;
  padding: 120px 48px 80px;
  overflow: hidden;
}

/* FIX: Hero-Grid – war weiße Linien, jetzt Rot wie HTML */
.hero-grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(201,18,18,0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(201,18,18,0.06) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 80% 60% at 50% 50%, black, transparent);
  -webkit-mask-image: radial-gradient(ellipse 80% 60% at 50% 50%, black, transparent);
  pointer-events: none;
}

.hero-glow {
  position: absolute;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(201,18,18,0.12) 0%, transparent 70%);
  top: 50%; left: 50%; transform: translate(-50%,-50%);
  pointer-events: none;
  animation: glowPulse 6s ease infinite;
}
@keyframes glowPulse {
  0%, 100% { transform: translate(-50%,-50%) scale(1); opacity: 0.8; }
  50%       { transform: translate(-50%,-50%) scale(1.1); opacity: 1; }
}

.hero-content { position: relative; z-index: 2; max-width: 900px; }

/* FIX: hero-tag – war weiß/eckig; HTML: rot/pill + fade-up Animation */
.hero-tag {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--card);
  border: 1px solid var(--border);
  padding: 6px 16px;
  border-radius: 100px;
  font-size: 12px; font-weight: 400;
  letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--red);
  margin-bottom: 40px;
  opacity: 0;
  animation: fadeUp 0.8s ease 0.2s forwards;
}
.hero-tag::before {
  content: ''; width: 6px; height: 6px;
  background: var(--red); border-radius: 50%;
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: 0.5; transform: scale(0.8); }
}

.hero-content h1 {
  font-size: clamp(48px, 7vw, 96px);
  font-weight: 800; letter-spacing: -0.03em; line-height: 0.95;
  margin-bottom: 32px; color: var(--white);
  opacity: 0;
  animation: fadeUp 0.8s ease 0.4s forwards;
}
.hero-content h1 em {
  font-style: normal; color: transparent;
  -webkit-text-stroke: 1px rgba(201,18,18,0.6);
  display: inline-block;
  animation: flicker 8s ease infinite 2s;
}
@keyframes flicker {
  0%,94%,96%,100% { -webkit-text-stroke-color: rgba(201,18,18,0.6); }
  95%   { -webkit-text-stroke-color: rgba(201,18,18,0.9); }
  95.5% { -webkit-text-stroke-color: rgba(201,18,18,0.1); }
}

.hero-sub {
  font-size: clamp(16px, 2vw, 20px); color: var(--gray);
  line-height: 1.6; max-width: 520px; margin-bottom: 48px;
  font-weight: 300;
  opacity: 0;
  animation: fadeUp 0.8s ease 0.6s forwards;
}
.hero-actions {
  display: flex; align-items: center; gap: 16px; flex-wrap: wrap;
  opacity: 0;
  animation: fadeUp 0.8s ease 0.8s forwards;
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ================================================
   MARQUEE
   ================================================ */
.marquee-wrap {
  overflow: hidden;
  border-top: 1px solid var(--border); border-bottom: 1px solid var(--border);
  background: var(--card);
  padding: 20px 0;
}
.marquee-track {
  display: flex; width: max-content;
  animation: marquee 20s linear infinite;
  gap: 0;
}
.marquee-track:hover { animation-play-state: paused; }
.marquee-item {
  font-family: 'Syne', sans-serif;
  font-size: 13px; font-weight: 600;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--gray); padding: 0 40px; white-space: nowrap;
  display: flex; align-items: center; gap: 16px;
  transition: color 0.2s;
}
.marquee-item:hover { color: var(--white); }
.marquee-item::before {
  content: '✦'; color: var(--red); font-size: 10px;
}
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ================================================
   SECTIONS
   ================================================ */
section {
  padding: 120px 48px;
  max-width: 1200px; margin: 0 auto;
}

.section-bg {
  background: var(--bg2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  max-width: 100%;
}
.section-bg .section-inner,
.section-bg section {
  max-width: 1200px; margin: 0 auto; padding: 120px 48px;
}

.section-inner {
  max-width: 1200px; margin: 0 auto; padding: 120px 48px;
}

.section-label {
  font-size: 11px; font-weight: 600;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--red);
  display: flex; align-items: center; gap: 12px; margin-bottom: 24px;
}
.section-label::before {
  content: ''; width: 32px; height: 1px; background: var(--red);
}

.section-title,
h2 {
  font-family: 'Syne', sans-serif;
  font-size: clamp(24px, 3vw, 40px);
  font-weight: 800; letter-spacing: -0.02em; line-height: 1.05;
  color: var(--white); margin-bottom: 24px;
}

/* ================================================
   SERVICE CARDS
   ================================================ */
.services-grid {
  display: grid; grid-template-columns: repeat(3,1fr);
  gap: 1px; background: var(--border);
  border: 1px solid var(--border);
  margin-top: 64px;
}
.service-card {
  background: var(--bg);         /* Basis: dunkelster Bg */
  padding: 48px 40px;
  transition: background 0.3s;
  position: relative; overflow: hidden;
}

/* FIX: ::before war an bottom; HTML hat es oben */
.service-card::before {
  content: ''; position: absolute; top: 0; left: 0;
  width: 100%; height: 2px; background: var(--red);
  transform: scaleX(0); transform-origin: left;
  transition: transform 0.4s ease;
}
.service-card:hover { background: var(--card); } /* FIX: var(--card) = roter Hauch */
.service-card:hover::before { transform: scaleX(1); }

.service-num {
  font-family: 'Syne', sans-serif; font-size: 11px; font-weight: 600;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--red); margin-bottom: 32px; opacity: 0.7;
}
.service-icon {
  width: 40px; height: 40px; margin-bottom: 24px; color: var(--red);
}
.service-card h3 {
  font-size: 20px; font-weight: 700; color: var(--white);
  margin-bottom: 16px; letter-spacing: -0.01em;
}
.service-card p { font-size: 15px; color: var(--gray); line-height: 1.6; }

/* ================================================
   SPLIT LAYOUT
   ================================================ */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }

.split-visual {
  position: relative; height: 480px;
  border: 1px solid var(--border);
  background: var(--card); overflow: hidden;
  display: flex; align-items: center; justify-content: center;
}
.split-visual-bg {
  position: absolute; inset: 0;
  background:
    radial-gradient(circle at 30% 50%, rgba(201,18,18,0.08) 0%, transparent 60%),
    radial-gradient(circle at 80% 20%, rgba(201,18,18,0.05) 0%, transparent 50%);
}

/* FIX: visual-lines – war weiß, jetzt rot wie HTML */
.visual-lines {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(201,18,18,0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(201,18,18,0.08) 1px, transparent 1px);
  background-size: 40px 40px;
}
.split-visual-inner {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
}
.visual-wordmark {
  display: flex; flex-direction: column; align-items: center;
  position: relative;
  animation: wmFloat 4s ease-in-out infinite;
}
@keyframes wmFloat {
  0%, 100% { transform: translateY(0px); }
  50%       { transform: translateY(-16px); }
}

/* FIX: wm-line1 – war weiß; HTML hat Rot-Stroke */
.wm-line1 {
  font-family: 'Syne', sans-serif;
  font-size: clamp(56px, 8vw, 88px); font-weight: 800;
  color: transparent;
  -webkit-text-stroke: 1.5px rgba(201,18,18,0.5); /* FIX: war rgba(255,255,255,0.12) */
  line-height: 1; letter-spacing: 0.18em;
  animation: flicker 6s ease-in-out infinite;
}
.wm-line2 {
  font-family: 'Syne', sans-serif;
  font-size: clamp(22px, 3vw, 32px); font-weight: 800;
  color: var(--red);
  letter-spacing: 0.35em; line-height: 1; margin-top: 8px;
}
.wm-bar {
  width: 40px; height: 2px; background: var(--red);
  margin-top: 20px;
  animation: expand 3s ease-in-out infinite;
}
@keyframes expand {
  0%, 100% { width: 40px; }
  50%       { width: 80px; }
}

/* ================================================
   TEAM
   ================================================ */
.team-row { display: flex; flex-direction: column; gap: 16px; margin-top: 40px; }
.team-card {
  display: flex; align-items: center; gap: 20px;
  padding: 20px 24px;
  border: 1px solid var(--border);
  background: var(--card);
  transition: border-color 0.3s;
}
.team-card:hover { border-color: rgba(201,18,18,0.4); }
.team-photo {
  width: 52px; height: 52px;
  background: rgba(201,18,18,0.1);
  border: 1px solid rgba(201,18,18,0.3);
  display: flex; align-items: center; justify-content: center;
  font-family: 'Syne', sans-serif; font-size: 20px; font-weight: 800;
  color: var(--red); flex-shrink: 0;
}
.team-info h3, .team-info h4 { font-size: 16px; font-weight: 700; color: var(--white); margin-bottom: 4px; }
.team-info p { font-size: 13px; color: var(--gray); letter-spacing: 0.02em; }

/* ================================================
   STATS
   ================================================ */
.stat-row {
  display: flex; gap: 48px; margin-top: 48px;
}
.stat h3, .stat h4 {
  font-family: 'Syne', sans-serif; font-size: 36px; font-weight: 800;
  color: var(--red); letter-spacing: -0.02em; margin-bottom: 4px;
}
.stat p { font-size: 13px; color: var(--gray); }

/* Stats Grid-Variante */
.stat-grid {
  display: grid; grid-template-columns: repeat(4,1fr);
  gap: 1px; background: var(--border); border: 1px solid var(--border);
}
.stat-grid .stat {
  background: var(--card); padding: 48px 40px; text-align: center;
  transition: background 0.3s;
}
.stat-grid .stat:hover { background: #1a1a1a; }

/* ================================================
   PROCESS
   ================================================ */
.process-list { margin-top: 64px; display: flex; flex-direction: column; }
.process-item {
  display: grid; grid-template-columns: 80px 1fr; gap: 40px;
  padding: 40px 0; border-bottom: 1px solid var(--border);
  align-items: start;
}
.process-item:first-child { border-top: 1px solid var(--border); } /* FIX: fehlt im Theme */
.process-item:hover .process-num { -webkit-text-stroke-color: rgba(201,18,18,0.8); }

.process-num {
  font-family: 'Syne', sans-serif; font-size: 48px; font-weight: 800;
  color: transparent; -webkit-text-stroke: 1px rgba(201,18,18,0.4);
  line-height: 1; transition: -webkit-text-stroke-color 0.3s;
}
.process-content h3 { font-size: 22px; font-weight: 700; color: var(--white); margin-bottom: 12px; letter-spacing: -0.01em; }
.process-content p { font-size: 15px; color: var(--gray); line-height: 1.6; max-width: 480px; }

/* ================================================
   CTA SECTION
   ================================================ */
.cta-section {
  background: var(--bg2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.cta-inner {
  max-width: 1200px; margin: 0 auto;
  padding: 120px 48px;
  display: grid; grid-template-columns: 1fr auto;
  align-items: center; gap: 80px;
}
.cta-inner h2 { font-size: clamp(36px, 4vw, 64px); max-width: 600px; }

/* ================================================
   REVEAL ANIMATION
   ================================================ */
.reveal {
  opacity: 0; transform: translateY(32px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ================================================
   FOOTER
   ================================================ */
footer {
  padding: 60px 48px;
  border-top: 1px solid var(--border);
  max-width: 1200px; margin: 0 auto;
}
.footer-top {
  display: flex; justify-content: space-between; align-items: center; gap: 32px;
}
.footer-links { display: flex; gap: 32px; flex-wrap: wrap; }
.footer-links a {
  font-size: 13px; color: var(--gray);
  transition: color 0.2s;
}
.footer-links a:hover { color: var(--white); }
footer p { color: var(--gray); font-size: 13px; }
.footer-copy {
  text-align: center; margin-top: 32px;
  padding-top: 24px; border-top: 1px solid var(--border);
  font-size: 12px; color: var(--gray);
}
/* Kontaktzeile (Adresse · Telefon · Mail) – eigene Zeile über dem Copyright */
.footer-contact {
  text-align: center; margin-top: 32px;
  padding-top: 24px; border-top: 1px solid var(--border);
  font-size: 13px; color: var(--gray);
}
/* Wenn Kontaktzeile vorhanden ist, übernimmt sie die Trennlinie – Copyright rückt darunter */
.footer-contact + .footer-copy {
  margin-top: 6px; padding-top: 0; border-top: none;
}

/* ================================================
   CONTACT FORM
   ================================================ */
.vira-form { display: flex; flex-direction: column; gap: 16px; }
.vira-form input, .vira-form textarea {
  background: var(--card); border: 1px solid var(--border);
  color: var(--white); padding: 16px 20px;
  font-family: 'DM Sans', sans-serif; font-size: 15px;
  outline: none; transition: border-color 0.2s; width: 100%;
}
.vira-form input:focus, .vira-form textarea:focus { border-color: var(--red); }
.vira-form textarea { resize: vertical; }

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

@media (max-width: 768px) {
  #nav { padding: 0 24px; }
  .nav-links { display: none; }
  .nav-burger { display: flex; }
  body { cursor: auto; }
  .cursor, .cursor-ring { display: none; }

  .hero { padding: 100px 24px 60px; }
  section { padding: 80px 24px; }
  .section-inner { padding: 80px 24px; }
  .section-bg section,
  .section-bg .section-inner { padding: 80px 24px; }
  footer { padding: 40px 24px; }
  .footer-top { flex-direction: column; gap: 24px; text-align: center; }
  .footer-links { justify-content: center; }

  .split { grid-template-columns: 1fr; gap: 48px; }
  .split-visual { height: 280px; }
  .services-grid { grid-template-columns: 1fr; }
  .stat-grid { grid-template-columns: 1fr 1fr; }
  .stat-row { flex-wrap: wrap; gap: 32px; }
  .process-item { gap: 24px; }
  .process-num { font-size: 32px; }
  .cta-inner { grid-template-columns: 1fr; gap: 40px; padding: 80px 24px; }
  .team-card { min-width: 100%; }
	.hero-content h1   { font-size: clamp(28px, 10vw, 48px); line-height: 1.0; }
  .section-title, h2 { font-size: clamp(24px, 8vw, 40px); word-break: break-word; overflow-wrap: break-word; }
}

/* ================================================
   PREFERS-REDUCED-MOTION
   Nutzer die in Systemeinstellungen "Bewegung
   reduzieren" aktiviert haben (Epilepsie,
   Vestibulär-Störungen) bekommen keine Animationen.
   Design-Qualität bleibt vollständig erhalten.
   ================================================ */
@media (prefers-reduced-motion: reduce) {

  /* Alle Animationen & Transitions deaktivieren */
  *, *::before, *::after {
    animation-duration:        0.01ms !important;
    animation-iteration-count: 1      !important;
    transition-duration:       0.01ms !important;
    scroll-behavior:           auto   !important;
  }

  /* Hero: sofort sichtbar statt fade-up */
  .hero-tag,
  .hero-content h1,
  .hero-sub,
  .hero-actions {
    opacity: 1 !important;
    animation: none !important;
    transform: none !important;
  }

  /* Marquee stoppen */
  .marquee-track {
    animation: none !important;
    /* Fallback: Items nebeneinander, Scrollen via overflow */
    overflow-x: auto;
  }

  /* Reveal: sofort eingeblendet */
  .reveal {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }

  /* Wordmark-Float stoppen */
  .visual-wordmark { animation: none !important; }
  .wm-line1        { animation: none !important; }
  .wm-bar          { animation: none !important; }

  /* Hero-Glow & Grid-Pulse stoppen */
  .hero-glow { animation: none !important; }

  /* Pulsierender Dot im hero-tag */
  .hero-tag::before { animation: none !important; }
	.footer-social { display: flex; gap: 16px; align-items: center; }
.footer-social a { color: var(--gray); transition: color 0.2s; }
.footer-social a:hover { color: var(--white); }
}
