/* =====================================================================
   ROBOTAXI HESSEN – STYLE.CSS
   Mobile-First | DSGVO-konform | Performance-optimiert
   ===================================================================== */

/* ====================== VARIABLES ====================== */
:root {
  --orange: #FF6B00;
  --orange-light: #ff8a33;
  --orange-gradient: linear-gradient(90deg, var(--orange), var(--orange-light));
  --dark: #0a0e17;
  --dark-alt: #1a1f2e;
  --dark-card: rgba(255, 255, 255, 0.04);
  --green: #00C853;
  --lobby-red: #ff1a1a;
  --text: #e8e8e8;
  --text-light: #bbbbbb;
  --text-muted: rgba(255, 255, 255, 0.6);
  --cyan: #00ffff;
  --spacing-xs: 0.5rem;
  --spacing-sm: 1rem;
  --spacing-md: 1.5rem;
  --spacing-lg: 2rem;
  --spacing-xl: 3rem;
  --spacing-2xl: 4rem;
  --spacing-3xl: 6rem;
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-xl: 20px;
  --radius-2xl: 24px;
  --radius-full: 50px;
  --transition-fast: 0.15s ease;
  --transition-base: 0.3s ease;
  --transition-slow: 0.5s ease;
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.3);
  --shadow-md: 0 10px 30px rgba(0, 0, 0, 0.5);
  --shadow-lg: 0 20px 50px rgba(0, 0, 0, 0.7);
  --shadow-orange: 0 0 30px rgba(255, 107, 0, 0.3);
}

/* ====================== RESET ====================== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

/* ====================== TYPOGRAPHY ====================== */
html, body, p, a, li, input, textarea, button, div, span, h1, h2, h3, h4, h5, h6, select {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
}
h1, h2, h3, .glitch-title { font-weight: 900; }

@font-face {
  font-family: 'Orbitron';
  src: url('/fonts/orbitron/Orbitron-VariableFont_wght.woff2') format('woff2');
  font-weight: 400 900;
  font-display: swap;
}

body {
  background: var(--dark);
  color: var(--text);
  line-height: 1.6;
  font-size: 16px;
  overflow-x: hidden;
  min-height: 100vh;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  background: radial-gradient(circle at 30% 70%, rgba(255,107,0,0.08), transparent 50%),
              radial-gradient(circle at 80% 30%, rgba(0,200,255,0.05), transparent 50%);
  pointer-events: none;
  z-index: -1;
}

::selection { background: var(--orange); color: #000; }

/* ====================== ACCESSIBILITY ====================== */
.skip-link {
  position: absolute;
  top: -100px;
  left: 0;
  background: var(--orange);
  color: #000;
  padding: var(--spacing-sm) var(--spacing-lg);
  text-decoration: none;
  font-weight: 700;
  z-index: 9999;
}
.skip-link:focus { top: 0; }

a:focus-visible, button:focus-visible {
  outline: 3px solid var(--orange);
  outline-offset: 3px;
}

/* ====================== CONTAINER ====================== */
.container { max-width: 1340px; margin: 0 auto; padding: 0 var(--spacing-md); position: relative; z-index: 2; }

/* ====================== HEADER ====================== */
header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 2.5rem var(--spacing-lg) 1rem var(--spacing-lg);  /* oben mehr, unten normal */
  transition: all var(--transition-slow);
}

header.scrolled {
  background: rgba(10, 14, 23, 0.95);
  backdrop-filter: blur(20px);
  padding: 0.7rem var(--spacing-lg);
  box-shadow: var(--shadow-lg);
}

nav { max-width: 1400px; margin: 0 auto; display: flex; justify-content: space-between; align-items: center; }

.logo {
  font-size: clamp(1.4rem, 4vw, 1.8rem);
  font-weight: 900;
  background: var(--orange-gradient);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

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

/* Logo skaliert, bei Bedarf diesen Block auskommentieren */
.logo-img {
  height: clamp(32px, 8vw, 48px);
  width: auto;
  object-fit: contain;
}

.nav-links { display: flex; gap: clamp(1.2rem, 2.5vw, 2rem); list-style: none; font-weight: 600; font-size: 0.95rem; }
.nav-links a { position: relative; color: #fff; text-decoration: none; padding: 0.3rem 0; transition: color var(--transition-base); }
.nav-links a::after { content: ''; position: absolute; left: 0; bottom: 0; width: 0; height: 2px; background: var(--orange); transition: width var(--transition-base); }
.nav-links a:hover::after, .nav-links a.active::after { width: 100%; }
.nav-links a:hover, .nav-links a.active { color: var(--orange); }

.hamburger { display: none; cursor: pointer; background: none; border: none; padding: var(--spacing-xs); z-index: 1001; }
.hamburger span { display: block; width: 26px; height: 3px; margin: 5px 0; background: var(--orange); border-radius: 3px; transition: var(--transition-base); }
.hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(6px, 6px); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(6px, -6px); }

.desktop-lang-switch { position: absolute; top: 1.4rem; right: var(--spacing-lg); font-size: 0.9rem; font-weight: 600; z-index: 1002; }
.desktop-lang-switch a { color: var(--orange); text-decoration: none; }

@media (max-width: 992px) {
  header {
    padding: 1rem var(--spacing-md);
  }
  .hamburger { display: block; }
  .nav-links {
    position: fixed; top: 0; right: -100%; height: 100vh; width: 85%; max-width: 320px;
    background: rgba(10, 14, 23, 0.98); backdrop-filter: blur(20px);
    flex-direction: column; align-items: center; justify-content: center; gap: var(--spacing-lg);
    transition: right var(--transition-slow); z-index: 1000;
  }
  .nav-links.active { right: 0; }
  .nav-links a { font-size: 1.3rem; }
  .desktop-lang-switch { display: none; }
}

.lang-item { display: none !important; }
@media (max-width: 992px) {
  .lang-item { display: block !important; margin-top: var(--spacing-xl); padding-top: var(--spacing-lg); border-top: 1px solid var(--orange); }
  .lang-item a { color: var(--orange) !important; font-weight: 700; }
}

/* ====================== HERO FULLSCREEN ====================== */

/* TECH HERO – volle Höhe unter fixem Header */
.tech-hero {
  position: relative;
  min-height: calc(100vh - 80px); /* 80px ≈ Headerhöhe */
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  background: linear-gradient(180deg, #000 0%, var(--dark) 100%);
  padding: 80px var(--spacing-md) var(--spacing-xl);
}

.tech-hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

#neural-canvas {
  width: 100%;
  height: 100%;
  display: block;
}

.tech-hero-content {
  position: relative;
  z-index: 5;
}


.hero-fullscreen {
  position: relative;
  min-height: calc(80vh - 40px); /* ca. Headerhöhe */
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  background: linear-gradient(180deg, #000 0%, var(--dark) 100%);
  padding: 120px var(--spacing-md) var(--spacing-xl); /* statt 100px */
}


.hero-bg { position: absolute; inset: 0; z-index: 0; }
.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 30% 80%, rgba(255, 107, 0, 0.2) 0%, transparent 50%),
              radial-gradient(ellipse at 70% 20%, rgba(0, 200, 83, 0.08) 0%, transparent 40%),
              linear-gradient(180deg, rgba(0, 0, 0, 0.5) 0%, transparent 30%, transparent 60%, rgba(0, 0, 0, 0.9) 100%);
  z-index: 1;
}
.hero-bg-image { width: 100%; height: 100%; object-fit: cover; opacity: 0.35; filter: brightness(0.6); }
#particle-canvas { position: absolute; inset: 0; z-index: 2; pointer-events: none; }

.hero-content { position: relative; z-index: 10; text-align: center; max-width: 900px; width: 100%; padding: 0 var(--spacing-sm); }

.live-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(0, 200, 83, 0.15);
  border: 1px solid var(--green);
  color: var(--green);
  padding: 0.5rem 1rem;
  border-radius: var(--radius-full);
  font-size: clamp(0.75rem, 2.5vw, 0.9rem);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: var(--spacing-md);
  animation: pulseBadge 2s ease-in-out infinite;
}
.live-dot { width: 8px; height: 8px; background: var(--green); border-radius: 50%; animation: blink 1s ease-in-out infinite; }
@keyframes blink { 0%, 100% { opacity: 1; } 50% { opacity: 0.3; } }
@keyframes pulseBadge { 0%, 100% { box-shadow: 0 0 0 0 rgba(0, 200, 83, 0.4); } 50% { box-shadow: 0 0 0 8px rgba(0, 200, 83, 0); } }

.hero-title { margin-bottom: var(--spacing-sm); }
.hero-title-main {
  display: block;
  font-size: clamp(3rem, 12vw, 7rem);
  font-weight: 900;
  line-height: 1;
  background: linear-gradient(135deg, #fff 0%, #ccc 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.hero-title-accent {
  display: block;
  font-size: clamp(1.2rem, 5vw, 2rem);
  font-weight: 700;
  color: var(--orange);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-top: 0.3rem;
}

.hero-tagline {
  font-size: clamp(1rem, 3.5vw, 1.4rem);
  color: rgba(255, 255, 255, 0.9);
  max-width: 650px;
  margin: var(--spacing-md) auto var(--spacing-lg);
  line-height: 1.5;
}
.hero-tagline strong { color: var(--orange); }

.hero-cta-group {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  margin-top: var(--spacing-lg);
  width: 100%;
  max-width: 380px;
  margin-left: auto;
  margin-right: auto;
}
@media (min-width: 640px) { .hero-cta-group { flex-direction: row; max-width: 500px; justify-content: center; } }

.btn-hero {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 1rem 1.8rem;
  border-radius: var(--radius-full);
  font-size: 1rem;
  font-weight: 700;
  text-decoration: none;
  transition: all var(--transition-base);
  min-height: 54px;
}
.btn-hero.btn-primary { background: var(--orange); color: #000; box-shadow: 0 8px 30px rgba(255, 107, 0, 0.4); }
.btn-hero.btn-primary:hover { transform: translateY(-3px) scale(1.02); box-shadow: 0 12px 40px rgba(255, 107, 0, 0.6); }
.btn-hero.btn-secondary { background: rgba(255, 255, 255, 0.1); color: #fff; border: 2px solid rgba(255, 255, 255, 0.25); backdrop-filter: blur(10px); }
.btn-hero.btn-secondary:hover { background: rgba(255, 255, 255, 0.15); border-color: var(--orange); }

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.8rem;
  margin-top: var(--spacing-xl);
  padding-top: var(--spacing-lg);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}
.hero-stat { text-align: center; }
.hero-stat-value { display: block; font-size: clamp(1.3rem, 5vw, 2rem); font-weight: 900; color: var(--orange); line-height: 1.2; }
.hero-stat-label { font-size: clamp(0.65rem, 2vw, 0.75rem); color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.5px; }

.scroll-indicator {
  position: absolute;
  bottom: var(--spacing-lg);
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.4rem;
  color: var(--text-muted);
  opacity: 0;
  animation: fadeIn 1s ease 2s forwards;
}

.scroll-text { font-size: 0.7rem; text-transform: uppercase; letter-spacing: 2px; }
.scroll-arrow { animation: bounce 2s ease-in-out infinite; }
@keyframes fadeIn { to { opacity: 1; } }
@keyframes bounce { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(6px); } }
/* ====================== DEMO CITIES SECTION ====================== */
.demo-cities-section { padding: var(--spacing-xl) 0; background: linear-gradient(180deg, var(--dark) 0%, var(--dark-alt) 100%); }
.demo-cities-header { text-align: center; margin-bottom: var(--spacing-lg); }
.demo-badge { display: inline-block; background: rgba(255, 107, 0, 0.15); color: var(--orange); padding: 0.4rem 1rem; border-radius: var(--radius-full); font-size: 0.8rem; font-weight: 700; margin-bottom: 0.5rem; animation: pulse 2s ease-in-out infinite; }
@keyframes pulse { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.03); } }
.demo-cities-header h2 { font-size: clamp(1.5rem, 5vw, 2.2rem); font-weight: 800; color: var(--text); }
.demo-cities-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(90px, 1fr)); gap: 0.8rem; max-width: 800px; margin: 0 auto; }
.city-card { display: flex; flex-direction: column; align-items: center; gap: 0.3rem; padding: 0.8rem 0.5rem; background: var(--dark-card); border: 1px solid rgba(255, 107, 0, 0.2); border-radius: var(--radius-md); transition: all var(--transition-base); }
.city-card:hover { transform: translateY(-4px); border-color: var(--orange); box-shadow: var(--shadow-orange); }
.city-icon { font-size: 1.5rem; }
.city-name { font-size: 0.8rem; font-weight: 600; color: var(--text); }
.city-card-more { background: rgba(255, 107, 0, 0.1); border-color: var(--orange); }
.demo-extended { text-align: center; margin-top: var(--spacing-md); font-size: 0.95rem; color: var(--green); }

/* ====================== LOBBY SECTION ====================== */
.lobby-section { padding: var(--spacing-2xl) 0; background: var(--dark-alt); }
.lobby-block { background: rgba(255, 0, 0, 0.05); border: 1px solid rgba(255, 26, 26, 0.3); border-radius: var(--radius-xl); padding: var(--spacing-xl) var(--spacing-lg); backdrop-filter: blur(10px); transition: all var(--transition-slow); }
.lobby-block:hover { border-color: var(--lobby-red); box-shadow: 0 20px 60px rgba(255, 0, 0, 0.2); }
.lobby-headline { font-size: clamp(1.5rem, 5vw, 2.2rem); font-weight: 900; color: var(--lobby-red); text-align: center; margin-bottom: var(--spacing-sm); display: flex; align-items: center; justify-content: center; gap: 0.5rem; flex-wrap: wrap; }
.lobby-intro { font-size: clamp(1rem, 3vw, 1.15rem); text-align: center; max-width: 800px; margin: 0 auto var(--spacing-lg); color: var(--text-light); }
.lobby-btn-wrapper { text-align: center; }
.btn-lobby { background: var(--lobby-red); color: #fff; border: none; padding: 1rem var(--spacing-lg); font-size: 1.05rem; font-weight: 700; border-radius: var(--radius-full); cursor: pointer; transition: all var(--transition-base); display: inline-flex; align-items: center; gap: 0.5rem; }
.btn-lobby:hover { transform: scale(1.05); box-shadow: 0 10px 30px rgba(255, 26, 26, 0.4); }
.btn-timer { opacity: 0.8; font-weight: 400; }
.btn-lobby-large { padding: 1.2rem var(--spacing-xl); font-size: 1.2rem; }
.lobby-content { display: none; margin-top: var(--spacing-xl); animation: fadeIn 0.5s ease; }
.lobby-content.expanded { display: block; }

.comparison-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: var(--spacing-md); margin-bottom: var(--spacing-xl); }
.comparison-card { padding: var(--spacing-lg); border-radius: var(--radius-lg); text-align: center; }
.comparison-success { background: rgba(0, 200, 83, 0.1); border: 1px solid rgba(0, 200, 83, 0.3); }
.comparison-progress { background: rgba(255, 107, 0, 0.1); border: 1px solid rgba(255, 107, 0, 0.3); }
.comparison-flag { font-size: 2rem; margin-bottom: 0.5rem; }
.comparison-card h3 { font-size: 1.3rem; color: var(--text); margin-bottom: 0.5rem; }
.comparison-card p { font-size: 0.95rem; color: var(--text-light); }
.comparison-badge { display: inline-block; padding: 0.3rem 0.8rem; border-radius: var(--radius-full); font-size: 0.75rem; font-weight: 700; margin-top: var(--spacing-sm); }
.comparison-badge.success { background: var(--green); color: #000; }
.comparison-badge.progress { background: var(--orange); color: #000; }

.lobby-subheadline { font-size: clamp(1.5rem, 4vw, 2rem); font-weight: 800; color: var(--orange); text-align: center; margin: var(--spacing-xl) 0 var(--spacing-lg); }

.blocker-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: var(--spacing-md); }
.blocker-card { background: var(--dark-card); border: 1px solid rgba(255, 107, 0, 0.2); border-radius: var(--radius-lg); padding: var(--spacing-lg); text-align: center; transition: all var(--transition-base); }
.blocker-card:hover { transform: translateY(-5px); border-color: var(--lobby-red); box-shadow: 0 15px 40px rgba(255, 0, 0, 0.2); }
.blocker-logo { font-size: 1.8rem; margin-bottom: 0.5rem; }
.blocker-card h4 { font-size: 1rem; color: var(--orange); margin-bottom: 0.3rem; }
.blocker-card p { font-size: 0.9rem; color: var(--text-light); }

.losses-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: var(--spacing-md); }
.loss-card { background: rgba(255, 0, 0, 0.08); border: 1px solid rgba(255, 26, 26, 0.25); border-radius: var(--radius-lg); padding: var(--spacing-lg); text-align: center; transition: all var(--transition-base); }
.loss-card:hover { transform: translateY(-5px); box-shadow: 0 15px 40px rgba(255, 0, 0, 0.2); }
.loss-icon { font-size: 2.5rem; margin-bottom: 0.5rem; }
.loss-value { font-size: 2rem; font-weight: 900; color: var(--lobby-red); }
.loss-label { font-size: 0.85rem; color: var(--orange); font-weight: 600; margin-bottom: 0.5rem; }
.loss-card p { font-size: 0.85rem; color: var(--text-muted); }

.lobby-conclusion { text-align: center; margin-top: var(--spacing-2xl); padding: var(--spacing-xl); background: rgba(255, 107, 0, 0.08); border-radius: var(--radius-xl); border: 1px solid rgba(255, 107, 0, 0.2); }
.conclusion-headline { font-size: clamp(1.5rem, 5vw, 2.2rem); font-weight: 900; color: var(--orange); line-height: 1.3; margin-bottom: var(--spacing-sm); }
.conclusion-sub { font-size: clamp(1rem, 3vw, 1.3rem); color: var(--text-light); margin-bottom: var(--spacing-lg); }

/* ====================== STAGES SECTION ====================== */
.stages-section { padding: var(--spacing-2xl) 0; background: var(--dark); }
.section-headline { font-size: clamp(1.8rem, 5vw, 2.5rem); font-weight: 900; color: var(--orange); text-align: center; margin-bottom: var(--spacing-xl); }
.stages-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: var(--spacing-lg); max-width: 1000px; margin: 0 auto; }
.stage-card { background: var(--dark-card); border: 1px solid rgba(255, 107, 0, 0.25); border-radius: var(--radius-xl); padding: var(--spacing-xl) var(--spacing-lg); position: relative; transition: all var(--transition-slow); }
.stage-card:hover { transform: translateY(-8px); border-color: var(--orange); box-shadow: var(--shadow-orange); }
.stage-label { position: absolute; top: -12px; left: 50%; transform: translateX(-50%); background: var(--dark); color: var(--orange); font-size: 0.8rem; font-weight: 700; padding: 0.4rem 1rem; border: 1px solid var(--orange); border-radius: var(--radius-full); white-space: nowrap; }
.stage-status { display: inline-block; padding: 0.3rem 0.8rem; border-radius: var(--radius-full); font-size: 0.75rem; font-weight: 700; margin-bottom: var(--spacing-sm); }
.stage-status.available { background: var(--green); color: #000; }
.stage-status.coming { background: var(--orange); color: #000; }
.stage-card h3 { font-size: 1.4rem; font-weight: 800; color: var(--text); margin-bottom: var(--spacing-sm); }
.stage-features { list-style: none; margin-bottom: var(--spacing-lg); }
.stage-features li { position: relative; padding-left: 1.5rem; margin-bottom: 0.6rem; color: var(--text-light); }
.stage-features li::before { content: '✓'; position: absolute; left: 0; color: var(--orange); font-weight: 700; }
.stage-cta { display: inline-block; color: var(--orange); font-weight: 700; text-decoration: none; transition: all var(--transition-base); }
.stage-cta:hover { color: var(--orange-light); transform: translateX(5px); }
.stage-card-future { background: rgba(255, 107, 0, 0.05); }

/* ====================== NAV TILES ====================== */
.nav-tiles-section { padding: var(--spacing-2xl) 0; background: var(--dark-alt); }
.tiles-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: var(--spacing-md); }
.nav-tile { display: block; background: var(--dark-card); border: 1px solid rgba(255, 107, 0, 0.2); border-radius: var(--radius-lg); padding: var(--spacing-lg); text-align: center; text-decoration: none; color: var(--text); transition: all var(--transition-base); }
.nav-tile:hover { transform: translateY(-8px); border-color: var(--orange); box-shadow: var(--shadow-orange); }
.tile-icon { font-size: 2.5rem; margin-bottom: 0.5rem; }
.nav-tile h3 { font-size: 1.2rem; font-weight: 800; color: var(--orange); margin-bottom: 0.3rem; }
.nav-tile p { font-size: 0.9rem; color: var(--text-light); }

/* ====================== FINAL CTA ====================== */
.final-cta-section { padding: var(--spacing-3xl) 0; background: linear-gradient(180deg, var(--dark-alt) 0%, var(--dark) 100%); }
.final-cta { position: relative; background: rgba(255, 107, 0, 0.1); border: 2px solid var(--orange); border-radius: var(--radius-2xl); padding: var(--spacing-2xl); text-align: center; overflow: hidden; }
.cta-glow { position: absolute; inset: 0; background: radial-gradient(circle at 50% 50%, rgba(255, 107, 0, 0.2) 0%, transparent 70%); pointer-events: none; }
.cta-headline { position: relative; z-index: 1; margin-bottom: var(--spacing-md); }
.cta-small { display: block; font-size: 1rem; color: var(--text-muted); text-transform: uppercase; letter-spacing: 2px; margin-bottom: 0.5rem; }
.cta-big { display: block; font-size: clamp(1.8rem, 5vw, 2.8rem); font-weight: 900; background: var(--orange-gradient); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }
.cta-text { position: relative; z-index: 1; font-size: 1.1rem; color: var(--text-light); margin-bottom: var(--spacing-lg); }
.cta-buttons { position: relative; z-index: 1; display: flex; flex-direction: column; gap: 0.8rem; max-width: 400px; margin: 0 auto; }
@media (min-width: 640px) { .cta-buttons { flex-direction: row; max-width: 500px; justify-content: center; } }
.btn-cta { padding: 1rem 2rem; border-radius: var(--radius-full); font-size: 1rem; font-weight: 700; text-decoration: none; text-align: center; transition: all var(--transition-base); }
.btn-cta-primary { background: var(--orange); color: #000; }
.btn-cta-primary:hover { transform: translateY(-3px); box-shadow: 0 10px 30px rgba(255, 107, 0, 0.5); }
.btn-cta-secondary { background: transparent; color: var(--orange); border: 2px solid var(--orange); }
.btn-cta-secondary:hover { background: rgba(255, 107, 0, 0.1); }

/* ====================== FOOTER ====================== */
footer { text-align: center; padding: var(--spacing-2xl) var(--spacing-md); font-size: 0.95rem; }
.footer-links { margin-bottom: var(--spacing-sm); }
.footer-links a { color: #fff; text-decoration: none; transition: color var(--transition-base); }
.footer-links a:hover { color: var(--orange); }
.referral { font-size: 1.3rem; font-weight: 900; margin-bottom: var(--spacing-sm); }
.referral a { color: var(--orange); text-decoration: none; }
.referral a:hover { text-decoration: underline; }
.copy { color: var(--text-muted); font-size: 0.85rem; }

/* ====================== EXISTING COMPONENTS (from original) ====================== */
.hero-start { position: relative; background: linear-gradient(135deg, var(--dark) 0%, var(--dark-alt) 50%, #0f1629 100%); padding: 8rem var(--spacing-lg); margin: 0 auto var(--spacing-3xl); max-width: 1200px; border-radius: 0 0 40px 40px; overflow: hidden; box-shadow: var(--shadow-lg); text-align: center; }
.hero-start::before { content: ""; position: absolute; inset: 0; background: url('/pics/Pressebilder Autos/tesla-gallery-cybercab/tesla-gallery-cybercab14.jpg') center/cover; z-index: 0; opacity: 0.3; }
.hero-start > * { position: relative; z-index: 2; }

.glitch-title { font-family: 'Orbitron', sans-serif !important; font-size: clamp(2.6rem, 6vw, 4rem); font-weight: 900; background: var(--orange-gradient); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; animation: glitch-intense 5s infinite linear; margin-bottom: var(--spacing-md); }
@keyframes glitch-intense {
  0%, 100% { text-shadow: 0 0 50px rgba(255,107,0,0.7); }
  10% { text-shadow: 6px 0 #ff0040, -6px 0 var(--cyan); } /* Früher 1.5% */
  13% { text-shadow: -6px 0 #ff0040, 6px 0 var(--cyan); } /* Früher 3% */
  18% { text-shadow: none; } /* Früher 4.5% – jetzt länger gehalten */
}

.new-card { position: relative; display: block; background: rgba(255,255,255,0.06); border: 1px solid rgba(255,107,0,0.35); border-radius: var(--radius-lg); padding: 2.2rem 1.8rem; text-align: center; transition: all var(--transition-slow); backdrop-filter: blur(18px); color: #ffffff; text-decoration: none; }
.new-card:hover { transform: translateY(-14px) scale(1.04); border-color: var(--orange); box-shadow: 0 30px 70px rgba(255,107,0,0.45); }
.new-card h3 { font-size: 1.6rem; font-weight: 800; color: var(--orange); margin-bottom: 0.7rem; text-shadow: 0 0 10px rgba(255,107,0,0.6); opacity: 1; }
.emoji { font-size: 3.2rem; margin-bottom: 0.8rem; }

.highlight-cta { background: linear-gradient(135deg, rgba(255,107,0,0.15) 0%, rgba(255,140,50,0.08) 100%); border: 2px solid var(--orange); border-radius: var(--radius-xl); padding: var(--spacing-xl) 2.5rem; margin: var(--spacing-2xl) auto; max-width: 1000px; text-align: center; font-size: 1.45rem; font-weight: 800; box-shadow: var(--shadow-orange); }
.highlight-cta strong { background: var(--orange-gradient); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }

/* Page-specific hero backgrounds */
body.index .hero-start::before { background: url('/pics/Pressebilder Autos/tesla-gallery-cybercab/tesla-gallery-cybercab14.jpg') center/cover; }
body.news .hero-start::before { background: url('/pics/Pressebilder Autos/tesla-gallery-cybercab/tesla-gallery-cybercab8.jpg') center/cover; }
body.technik .hero-start::before { background: url('/pics/tesla_unboxed_no_title.jpg') center/cover; }
body.sicherheit .hero-start::before { background: url('/pics/Pressebilder Autos/tesla-gallery-cybercab/tesla-gallery-cybercab1.jpg') center/cover; }
body.politik .hero-start::before { background: url('/pics/Pressebilder Autos/politik/vw-bmw-mercedes-lobby.jpg') center/cover; }
body.line-up .hero-start::before { background: url('/pics/Pressebilder Autos/lineup/tesla-full-lineup-2026.jpg') center/cover; }
body.cybercab .hero-start::before { background: url('/pics/Pressebilder Autos/tesla-gallery-cybercab/tesla-gallery-cybercab21.jpg') center/cover; }
body.kostenvergleich .hero-start::before { background: url('/pics/Pressebilder Autos/tesla-gallery-cybercab/tesla-gallery-cybercab12.jpg') center/cover; }

.lobby-hidden { display: none; }

/* ====================== MOBILE ADJUSTMENTS ====================== */
@media (max-width: 768px) {
  .hero-fullscreen { padding: 135px var(--spacing-sm) var(--spacing-lg); }
  .hero-stats { gap: 0.5rem; }
  .hero-stat-value { font-size: 1.2rem; }
  .stages-grid { grid-template-columns: 1fr; }
  .tiles-grid { grid-template-columns: 1fr; gap: var(--spacing-sm); }
  .demo-cities-grid { grid-template-columns: repeat(5, 1fr); gap: 0.5rem; }
  .city-card { padding: 0.6rem 0.3rem; }
  .city-icon { font-size: 1.2rem; }
  .city-name { font-size: 0.7rem; }
  .lobby-block { padding: var(--spacing-lg) var(--spacing-md); }
  .blocker-grid, .losses-grid { grid-template-columns: repeat(2, 1fr); }
}

/* MOBILE – TECH-HERO */
@media (max-width: 768px) {
  .tech-hero {
    min-height: calc(100vh - 70px);
    padding: 90px var(--spacing-sm) var(--spacing-lg);
  }
}

/* ====================== REDUCED MOTION ====================== */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
}
/* ====================== NEWS PAGE STYLES ====================== */
/* Ergänzung zur bestehenden style.css */

/* ========== NEWS HERO – Kompakter & offener ========== */
.news-hero {
  padding: 100px 0 60px;     /* Festwerte: oben genug für Header, unten deutlich weniger */
  text-align: center;
  background: transparent;  /* Entfernt den dunklen Vollflächen-Balken */
  position: relative;
  margin-bottom: 40px;      /* Schöner Abstand zur ersten News-Karte */
  overflow: hidden;
}

.news-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 20%, rgba(255, 107, 0, 0.18) 0%, transparent 65%);
  pointer-events: none;
  z-index: 1;
  /* Leicht intensiver und höher platziert für besseren Effekt ohne Balken */
}

.news-hero-content {
  position: relative;
  z-index: 2;
  max-width: 900px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Badge, Titel und Subtitle – etwas enger zusammen */
.news-badge {
  display: inline-block;
  background: rgba(255, 107, 0, 0.2);
  color: #ff6b00;
  padding: 8px 20px;
  border-radius: 50px;
  font-size: 0.95rem;
  font-weight: 600;
  margin-bottom: 20px;
  border: 1px solid rgba(255, 107, 0, 0.3);
}

.news-title {
  font-size: clamp(3.5rem, 8vw, 5.5rem);
  font-weight: 900;
  background: linear-gradient(90deg, #ff8c00, #ff6b00, #ffb800);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin: 0 0 12px 0;
  line-height: 1.1;
}

.news-subtitle {
  font-size: 1.4rem;
  color: #e0e0e0;
  margin: 0;
  opacity: 0.9;
}

/* Mobile Anpassungen */
@media (max-width: 768px) {
  .news-hero {
    padding: 90px 0 50px;
    margin-bottom: 30px;
  }

  .news-badge {
    font-size: 0.9rem;
    padding: 7px 16px;
    margin-bottom: 16px;
  }

  .news-subtitle {
    font-size: 1.2rem;
  }
}

.news-badge {
  display: inline-block;
  background: rgba(255, 107, 0, 0.2);
  border: 1px solid var(--orange);
  color: var(--orange);
  padding: 0.5rem 1.2rem;
  border-radius: var(--radius-full);
  font-size: clamp(0.75rem, 2vw, 0.9rem);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: var(--spacing-md);
  animation: pulse 2s ease-in-out infinite;
}

.news-title {
  font-size: clamp(4rem, 15vw, 8rem);
  font-weight: 900;
  line-height: 1;
  background: linear-gradient(135deg, var(--orange), var(--orange-light), #ffa500);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow: 0 0 60px rgba(255, 107, 0, 0.5);
  margin: 0 0 0.5rem;
}

.news-subtitle {
  font-size: clamp(1.2rem, 4vw, 1.8rem);
  color: var(--text-light);
  font-weight: 500;
  margin: 0;
}

/* ========== NEWS SECTION ========== */
.news-section {
  padding: var(--spacing-2xl) 0 var(--spacing-3xl);
}

/* ========== NEWS CARD ========== */
.news-card {
  background: linear-gradient(145deg, rgba(17, 17, 17, 0.9) 0%, rgba(26, 26, 26, 0.8) 100%);
  border: 1px solid rgba(255, 107, 0, 0.25);
  border-radius: var(--radius-2xl);
  overflow: hidden;
  margin-bottom: var(--spacing-2xl);
  backdrop-filter: blur(25px);
  -webkit-backdrop-filter: blur(25px);
  box-shadow: 
    0 25px 80px rgba(0, 0, 0, 0.5),
    0 0 40px rgba(255, 107, 0, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.05);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.news-card:hover {
  border-color: rgba(255, 107, 0, 0.5);
  box-shadow: 
    0 30px 100px rgba(0, 0, 0, 0.6),
    0 0 60px rgba(255, 107, 0, 0.2);
  transform: translateY(-4px);
}

/* News Card Header */
.news-card-header {
  padding: clamp(2rem, 6vw, 3.5rem);
  text-align: center;
}

.news-date {
  display: inline-block;
  color: var(--orange);
  font-weight: 900;
  font-size: clamp(0.9rem, 2.5vw, 1.2rem);
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: var(--spacing-md);
}

.news-card-title {
  font-size: clamp(2rem, 7vw, 4rem);
  font-weight: 900;
  line-height: 1.1;
  margin: 0 0 var(--spacing-lg);
  background: linear-gradient(135deg, #fff 0%, #ccc 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.news-card-title.title-orange {
  background: linear-gradient(135deg, var(--orange), #ff4500);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow: 0 0 40px rgba(255, 107, 0, 0.6);
}

.news-card-title.title-cyan {
  background: linear-gradient(135deg, var(--cyan), #00ffaa);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow: 0 0 40px rgba(0, 255, 255, 0.6);
}

.news-card-title.title-gradient-cyan {
  background: linear-gradient(90deg, var(--cyan), #fff, var(--orange));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.news-card-title.title-gradient-warm {
  background: linear-gradient(90deg, #fff, var(--orange), #ff4500);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.news-card-title.title-gradient-hessen {
  background: linear-gradient(135deg, var(--orange), #fff);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.title-accent {
  display: block;
  font-size: 0.7em;
  color: var(--orange);
  -webkit-text-fill-color: var(--orange);
}

.title-accent-quote {
  display: block;
  font-size: 0.55em;
  color: var(--orange);
  -webkit-text-fill-color: var(--orange);
  font-weight: 700;
}

.news-card-intro {
  font-size: clamp(1rem, 3vw, 1.25rem);
  max-width: 600px;
  margin: 0 auto var(--spacing-lg);
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.9);
}

.news-card-intro strong {
  color: var(--orange);
}

/* ========== NEWS IMAGE GRID ========== */
.news-image-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--spacing-md);
  margin: var(--spacing-lg) 0;
}

@media (min-width: 640px) {
  .news-image-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.news-image-grid img {
  width: 100%;
  height: auto;
  border-radius: var(--radius-lg);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.6);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.news-image-grid img:hover {
  transform: scale(1.02);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.7);
}

/* ========== EXPAND BUTTON ========== */
.expand-btn {
  background: linear-gradient(135deg, var(--orange), #ff8c00);
  color: #000;
  font-weight: 900;
  font-size: clamp(1rem, 3vw, 1.2rem);
  padding: clamp(1rem, 4vw, 1.25rem) clamp(2rem, 6vw, 2.5rem);
  border: none;
  border-radius: var(--radius-full);
  cursor: pointer;
  box-shadow: 
    0 15px 50px rgba(255, 107, 0, 0.4),
    0 4px 15px rgba(0, 0, 0, 0.3);
  min-height: 56px;
  width: 100%;
  max-width: 420px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  letter-spacing: 0.5px;
}

.expand-btn:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 
    0 20px 60px rgba(255, 107, 0, 0.5),
    0 0 30px rgba(255, 107, 0, 0.3);
}

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

/* ========== NEWS CARD DETAILS (Expandable) ========== */
.news-card-details {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: 
    max-height 0.6s cubic-bezier(0.4, 0, 0.2, 1),
    opacity 0.4s ease 0.1s;
  background: linear-gradient(145deg, rgba(0, 17, 51, 0.8) 0%, rgba(0, 34, 68, 0.6) 100%);
}

.news-card-details.expanded {
  opacity: 1;
  padding: clamp(2rem, 5vw, 3rem);
}

/* ========== STATS GRID ========== */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(130px, 1fr));
  gap: var(--spacing-md);
  margin: var(--spacing-lg) 0;
}

.stat-card {
  background: rgba(255, 107, 0, 0.15);
  border: 1px solid rgba(255, 107, 0, 0.3);
  padding: var(--spacing-md);
  border-radius: var(--radius-lg);
  text-align: center;
  transition: all 0.3s ease;
}

.stat-card:hover {
  background: rgba(255, 107, 0, 0.25);
  transform: translateY(-2px);
}

.stat-card.stat-cyan {
  background: rgba(0, 255, 255, 0.15);
  border-color: rgba(0, 255, 255, 0.3);
}

.stat-card.stat-cyan:hover {
  background: rgba(0, 255, 255, 0.25);
}

.stat-card.stat-cyan .stat-value,
.stat-card.stat-cyan .stat-label {
  color: var(--cyan);
}

.stat-value {
  display: block;
  font-size: clamp(1.8rem, 6vw, 2.8rem);
  font-weight: 900;
  color: var(--orange);
  line-height: 1.2;
}

.stat-label {
  display: block;
  font-size: clamp(0.75rem, 2vw, 0.9rem);
  color: var(--orange);
  font-weight: 700;
  margin-top: 0.3rem;
}

/* ========== INFO BOXES ========== */
.info-box {
  padding: var(--spacing-lg);
  border-radius: var(--radius-xl);
  margin: var(--spacing-lg) 0;
  text-align: center;
}

.info-box h3 {
  font-size: clamp(1.3rem, 4vw, 1.8rem);
  font-weight: 900;
  margin: 0 0 var(--spacing-sm);
}

.info-box p {
  font-size: clamp(1rem, 3vw, 1.15rem);
  line-height: 1.7;
  margin: 0;
}

.info-box.info-orange {
  background: rgba(255, 107, 0, 0.2);
  border: 1px solid rgba(255, 107, 0, 0.4);
}

.info-box.info-orange h3 {
  color: var(--orange);
}

.info-box.info-cyan {
  background: rgba(0, 255, 255, 0.15);
  border: 1px solid rgba(0, 255, 255, 0.3);
}

.info-box.info-cyan h3 {
  color: var(--cyan);
}

/* ========== FEATURE LIST ========== */
.feature-list {
  list-style: none;
  text-align: left;
  font-size: clamp(1rem, 3vw, 1.15rem);
  line-height: 1.8;
  max-width: 500px;
  margin: 0 auto;
}

.feature-list li {
  margin-bottom: 0.5rem;
}

/* ========== FEATURE GRID ========== */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: var(--spacing-lg);
  margin: var(--spacing-lg) 0;
}

.feature-grid.feature-grid-3 {
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
}

.feature-item {
  text-align: center;
  padding: var(--spacing-md);
}

.feature-icon {
  font-size: 2.5rem;
  display: block;
  margin-bottom: 0.5rem;
}

.feature-item h4 {
  font-size: clamp(1.1rem, 3vw, 1.3rem);
  font-weight: 800;
  color: var(--orange);
  margin: 0 0 0.5rem;
}

.feature-item p {
  font-size: clamp(0.9rem, 2.5vw, 1rem);
  color: var(--text-light);
  line-height: 1.5;
  margin: 0;
}

/* ========== CARD CONCLUSION ========== */
.card-conclusion {
  font-size: clamp(1.1rem, 3vw, 1.3rem);
  text-align: center;
  margin: var(--spacing-lg) 0 0;
  font-weight: 700;
  color: var(--orange);
}

.card-conclusion.card-conclusion-cyan {
  color: var(--cyan);
}

/* ========== HIGHLIGHT TEXT ========== */
.highlight-text {
  color: var(--orange);
  font-weight: 900;
  font-size: 1.1em;
}

.highlight-cyan {
  color: var(--cyan);
  font-weight: 900;
}

/* ========== MEDIA QUOTES ========== */
.media-quote {
  background: rgba(17, 17, 17, 0.8);
  border-left: 4px solid var(--orange);
  padding: var(--spacing-md) var(--spacing-lg);
  margin: var(--spacing-md) 0;
  border-radius: 0 var(--radius-lg) var(--radius-lg) 0;
  font-size: clamp(1rem, 3vw, 1.1rem);
  line-height: 1.6;
  font-style: normal;
}

.media-quote strong {
  color: var(--orange);
}

/* ========== YOUTUBE EMBED ========== */
.yt-embed {
  margin: var(--spacing-lg) 0;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.6);
  cursor: pointer;
  position: relative;
}

.yt-embed.yt-loaded {
  cursor: default;
}

.yt-preview {
  position: relative;
  background: #000;
}

.yt-preview img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.4s ease;
}

.yt-embed:hover .yt-preview img {
  transform: scale(1.02);
}

.yt-play {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 80px;
  height: 80px;
  background: rgba(255, 107, 0, 0.95);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  color: #000;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.5);
  transition: all 0.3s ease;
}

.yt-embed:hover .yt-play {
  transform: translate(-50%, -50%) scale(1.1);
  box-shadow: 0 12px 40px rgba(255, 107, 0, 0.6);
}

.yt-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.9));
  color: #fff;
  font-size: clamp(0.9rem, 2.5vw, 1.1rem);
  font-weight: 700;
  text-align: center;
  padding: 2rem 1rem 1rem;
  margin: 0;
}

.yt-embed iframe {
  border-radius: var(--radius-lg);
}

/* ========== CTA INLINE ========== */
.cta-inline {
  background: rgba(255, 107, 0, 0.15);
  border: 1px solid rgba(255, 107, 0, 0.3);
  padding: var(--spacing-md);
  border-radius: var(--radius-lg);
  margin: var(--spacing-lg) 0;
  text-align: center;
}

.cta-inline p {
  font-size: clamp(1rem, 3vw, 1.15rem);
  font-weight: 700;
  color: var(--orange);
  margin: 0 0 var(--spacing-sm);
}

.btn-inline {
  display: inline-block;
  background: var(--orange);
  color: #000;
  font-weight: 900;
  padding: 0.8rem 1.5rem;
  border-radius: var(--radius-full);
  text-decoration: none;
  transition: all 0.3s ease;
}

.btn-inline:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(255, 107, 0, 0.4);
}

/* ========== FORM CARD ========== */
.form-card {
  text-align: center;
}

.form-card h3 {
  font-size: clamp(1.5rem, 4vw, 2rem);
  color: var(--orange);
  margin-bottom: var(--spacing-sm);
}

.form-card > p {
  font-size: clamp(1rem, 3vw, 1.1rem);
  color: var(--text-light);
  margin-bottom: var(--spacing-lg);
}

.form-placeholder {
  background: rgba(17, 17, 17, 0.8);
  border: 2px solid rgba(255, 107, 0, 0.4);
  border-radius: var(--radius-xl);
  padding: var(--spacing-xl);
}

.form-icon {
  font-size: 3rem;
  display: block;
  margin-bottom: var(--spacing-sm);
}

.form-placeholder h4 {
  font-size: clamp(1.2rem, 3vw, 1.5rem);
  color: var(--text);
  margin: 0 0 var(--spacing-sm);
}

.form-placeholder p {
  color: var(--text-light);
  margin: 0 0 var(--spacing-md);
}

.btn-form {
  background: linear-gradient(135deg, var(--orange), #ff8c00);
  color: #000;
  font-weight: 900;
  font-size: clamp(1rem, 3vw, 1.15rem);
  padding: var(--spacing-md) var(--spacing-xl);
  border: none;
  border-radius: var(--radius-full);
  cursor: pointer;
  box-shadow: 0 10px 30px rgba(255, 107, 0, 0.4);
  transition: all 0.3s ease;
}

.btn-form:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(255, 107, 0, 0.5);
}

#google-form {
  border-radius: var(--radius-lg);
  background: rgba(17, 17, 17, 0.5);
  margin-top: var(--spacing-lg);
}

/* ========== HIGHLIGHT CTA (News specific) ========== */
.highlight-cta-final {
  margin-top: var(--spacing-xl);
}

.btn-cta-inline {
  display: inline-block;
  background: var(--orange);
  color: #000;
  font-weight: 900;
  padding: 0.8rem 2rem;
  border-radius: var(--radius-full);
  text-decoration: none;
  margin-top: var(--spacing-md);
  transition: all 0.3s ease;
}

.btn-cta-inline:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(255, 107, 0, 0.5);
}

/* ========== MOBILE ADJUSTMENTS ========== */
@media (max-width: 768px) {
  .news-card-header {
    padding: var(--spacing-lg);
  }
  
  .news-card-details.expanded {
    padding: var(--spacing-lg);
  }
  
  .stats-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: var(--spacing-sm);
  }
  
  .stat-card {
    padding: var(--spacing-sm);
  }
  
  .stat-value {
    font-size: clamp(1.4rem, 5vw, 2rem);
  }
  
  .feature-grid {
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-md);
  }
  
  .feature-grid.feature-grid-3 {
    grid-template-columns: 1fr;
  }
  
  .yt-play {
    width: 60px;
    height: 60px;
    font-size: 1.5rem;
  }
}

@media (max-width: 480px) {
  .stats-grid {
    grid-template-columns: 1fr;
  }
  
  .feature-grid {
    grid-template-columns: 1fr;
  }
}
/* ========== TECHNIK STYLES FORTSETZUNG ========== */

.benefit-card p {
  color: var(--text-muted);
  font-size: 0.9rem;
  margin: 0;
}

.unboxed-image {
  text-align: center;
}

.unboxed-image img {
  max-width: 100%;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
}

.image-caption {
  color: var(--text-muted);
  font-size: 0.9rem;
  font-style: italic;
  margin-top: var(--spacing-md);
}

/* ========== FUTURE SECTION ========== */
.future-section {
  padding: var(--spacing-3xl) 0;
  background: var(--dark);
}

.future-timeline {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: var(--spacing-lg);
}

.future-card {
  display: flex;
  gap: var(--spacing-md);
  background: var(--dark-card);
  border: 1px solid rgba(255, 107, 0, 0.2);
  border-radius: var(--radius-xl);
  padding: var(--spacing-lg);
  transition: all 0.3s ease;
  opacity: 0;
  transform: translateY(20px);
}

.future-card.animate-in {
  opacity: 1;
  transform: translateY(0);
}

.future-card:hover {
  border-color: var(--orange);
  transform: translateY(-5px);
  box-shadow: var(--shadow-orange);
}

.future-card.animate-in:hover {
  transform: translateY(-5px);
}

.future-card-hessen {
  border-color: var(--orange);
  background: rgba(255, 107, 0, 0.1);
  grid-column: 1 / -1;
}

@media (min-width: 992px) {
  .future-card-hessen {
    grid-column: span 2;
  }
}

.future-year {
  background: var(--orange);
  color: #000;
  font-weight: 900;
  font-size: 0.85rem;
  padding: 0.4rem 0.8rem;
  border-radius: var(--radius-md);
  height: fit-content;
  white-space: nowrap;
}

.future-content {
  flex: 1;
}

.future-icon {
  font-size: 2rem;
  display: block;
  margin-bottom: var(--spacing-sm);
}

.future-content h3 {
  color: var(--text);
  font-size: 1.2rem;
  margin-bottom: 0.3rem;
}

.future-content p {
  color: var(--text-light);
  font-size: 0.9rem;
  margin: 0;
  line-height: 1.5;
}

.future-content strong {
  color: var(--orange);
}

/* ========== BONUS SECTION ========== */
.bonus-section {
  padding: var(--spacing-2xl) 0;
  background: linear-gradient(180deg, var(--dark) 0%, var(--dark-alt) 100%);
}

.bonus-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: var(--spacing-lg);
}

.bonus-card {
  border-radius: var(--radius-xl);
  padding: var(--spacing-xl);
  text-align: center;
}

.bonus-card-green {
  background: rgba(0, 200, 83, 0.1);
  border: 1px solid rgba(0, 200, 83, 0.3);
}

.bonus-card-green h3 {
  color: var(--green);
}

.bonus-card-orange {
  background: rgba(255, 107, 0, 0.1);
  border: 1px solid rgba(255, 107, 0, 0.3);
}

.bonus-card-orange h3 {
  color: var(--orange);
}

.bonus-icon {
  font-size: 3rem;
  display: block;
  margin-bottom: var(--spacing-sm);
}

.bonus-card h3 {
  font-size: 1.4rem;
  margin-bottom: var(--spacing-sm);
}

.bonus-card p {
  color: var(--text-light);
  font-size: 1rem;
  line-height: 1.6;
  margin: 0;
}

.bonus-card strong {
  color: var(--orange);
}

/* ========== TECH FINAL CTA ========== */
.tech-final-cta {
  background: linear-gradient(145deg, rgba(255, 107, 0, 0.15) 0%, rgba(0, 255, 255, 0.05) 100%);
}

/* ========== PAGE CONTENT SPACING ========== */
.page-content {
  padding-top: 0;
}

/* ========== ANIMATIONS ========== */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.timeline-card,
.profile-card,
.advantage-item,
.future-card,
.benefit-card {
  transition: opacity 0.6s ease, transform 0.6s ease;
}

/* Staggered animation delays */
.timeline-card:nth-child(1) { transition-delay: 0.1s; }
.timeline-card:nth-child(2) { transition-delay: 0.2s; }
.timeline-card:nth-child(3) { transition-delay: 0.3s; }

.profile-card:nth-child(1) { transition-delay: 0.05s; }
.profile-card:nth-child(2) { transition-delay: 0.1s; }
.profile-card:nth-child(3) { transition-delay: 0.15s; }
.profile-card:nth-child(4) { transition-delay: 0.2s; }
.profile-card:nth-child(5) { transition-delay: 0.25s; }

.advantage-item:nth-child(1) { transition-delay: 0.05s; }
.advantage-item:nth-child(2) { transition-delay: 0.1s; }
.advantage-item:nth-child(3) { transition-delay: 0.15s; }
.advantage-item:nth-child(4) { transition-delay: 0.2s; }
.advantage-item:nth-child(5) { transition-delay: 0.25s; }

.future-card:nth-child(1) { transition-delay: 0.05s; }
.future-card:nth-child(2) { transition-delay: 0.1s; }
.future-card:nth-child(3) { transition-delay: 0.15s; }
.future-card:nth-child(4) { transition-delay: 0.2s; }
.future-card:nth-child(5) { transition-delay: 0.25s; }
.future-card:nth-child(6) { transition-delay: 0.3s; }

.benefit-card:nth-child(1) { transition-delay: 0.05s; }
.benefit-card:nth-child(2) { transition-delay: 0.1s; }
.benefit-card:nth-child(3) { transition-delay: 0.15s; }
.benefit-card:nth-child(4) { transition-delay: 0.2s; }

/* ========== MOBILE ADJUSTMENTS ========== */
@media (max-width: 768px) {
  .tech-hero {
    padding: 100px var(--spacing-sm) var(--spacing-lg);
  }
  
  .tech-hero-stats {
    gap: var(--spacing-lg);
  }

  .spec-grid {
    grid-template-columns: 1fr;
    gap: var(--spacing-xs);
  }
  
  .profiles-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .advantage-grid {
    grid-template-columns: 1fr;
  }
  
  .future-card {
    flex-direction: column;
  }
  
  .future-year {
    width: fit-content;
  }
  
  .comp-row {
    grid-template-columns: 50px 1fr 80px;
    gap: var(--spacing-sm);
  }
  
  .comp-label {
    font-size: 0.8rem;
  }
  
  .comp-value {
    font-size: 0.7rem;
  }
}

@media (max-width: 480px) {
  .profiles-grid {
    grid-template-columns: 1fr;
  }
  
  .edge-cases-grid {
    grid-template-columns: 1fr;
  }
  
  .unboxed-benefits {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* === PERPLEXITY LANGUAGE SWITCHER (Header oben rechts, klein) === */
.perplexity-lang-switcher {
  position: absolute;
  top: 1.1rem;
  right: var(--spacing-lg);
  z-index: 5;
}

.lang-toggle {
  display: inline-flex;
  align-items: center;
  height: 26px;
  background: rgba(10, 14, 23, 0.92);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  padding: 2px;
  gap: 2px;
  backdrop-filter: blur(18px);
}

.lang-option {
  position: relative;
  min-width: 34px;
  padding: 0 8px;
  height: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 600;
  color: var(--text-light);
  text-transform: uppercase;
  letter-spacing: 0.4px;
  cursor: pointer;
  border-radius: 999px;
  transition: all 0.18s cubic-bezier(0.4, 0, 0.2, 1);
}

.lang-option::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255, 107, 0, 0.14);
  opacity: 0;
  border-radius: inherit;
  transition: opacity 0.18s ease;
  z-index: -1;
}

.lang-option:hover::before {
  opacity: 1;
}

.lang-option.active {
  color: #000;
  background: linear-gradient(135deg, var(--orange), var(--orange-light));
  box-shadow: 0 4px 12px rgba(255, 107, 0, 0.4);
  transform: translateY(-0.5px);
}

input[type="radio"] {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}

input[type="radio"]:focus-visible + .lang-option {
  outline: 2px solid rgba(255, 107, 0, 0.6);
  outline-offset: 2px;
}

/* Mobile: Sprachwahl links vom Hamburger */
@media (max-width: 992px) {
  .perplexity-lang-switcher {
    position: static;
    margin-left: auto;
    margin-right: var(--spacing-sm);
    order: 2;
  }

  .hamburger {
    order: 3;
  }

  nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--spacing-sm);
  }

  .lang-toggle {
    height: 24px;
  }

  .lang-option {
    height: 20px;
    font-size: 10px;
    padding: 0 6px;
  }
}

<style>
.news-card-details {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: max-height 0.6s ease, opacity 0.5s ease, margin-top 0.4s ease;
  margin-top: 0;
}

.expand-btn {
  background: linear-gradient(90deg, #00d2ff, #3a7bd5);
  color: white;
  border: none;
  padding: 12px 20px;
  margin: 20px auto;
  display: block;
  border-radius: 8px;
  font-weight: bold;
  cursor: pointer;
  transition: all 0.3s ease;
}

.expand-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(0, 210, 255, 0.4);
}
</style>

/* ============================================
   EPIC NEWS HERO SECTION
   Tesla Cyberpunk Aesthetic
   → Ans Ende der style.css anfügen
============================================ */

.news-hero-epic {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: linear-gradient(135deg, #050508 0%, #0a0d12 40%, #0d1015 100%);
}

/* Animated Grid Background */
.hero-grid-bg {
  position: absolute;
  inset: 0;
  background-image: 
    linear-gradient(rgba(255, 107, 0, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 107, 0, 0.04) 1px, transparent 1px);
  background-size: 80px 80px;
  animation: gridPulseEpic 8s ease-in-out infinite;
  mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 40%, transparent 100%);
  -webkit-mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 40%, transparent 100%);
}

@keyframes gridPulseEpic {
  0%, 100% { opacity: 0.4; transform: scale(1); }
  50% { opacity: 0.8; transform: scale(1.02); }
}

/* Floating Particles */
.hero-particles {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}

.particle {
  position: absolute;
  width: 3px;
  height: 3px;
  background: var(--orange);
  border-radius: 50%;
  box-shadow: 
    0 0 10px var(--orange),
    0 0 20px rgba(255, 107, 0, 0.6),
    0 0 40px rgba(255, 107, 0, 0.3);
  animation: floatUpEpic 15s linear infinite;
  opacity: 0;
}

.particle:nth-child(1) { left: 8%; animation-delay: 0s; animation-duration: 18s; width: 4px; height: 4px; }
.particle:nth-child(2) { left: 18%; animation-delay: 2s; animation-duration: 14s; }
.particle:nth-child(3) { left: 28%; animation-delay: 5s; animation-duration: 20s; width: 5px; height: 5px; }
.particle:nth-child(4) { left: 42%; animation-delay: 1s; animation-duration: 16s; }
.particle:nth-child(5) { left: 55%; animation-delay: 3.5s; animation-duration: 19s; width: 4px; height: 4px; }
.particle:nth-child(6) { left: 68%; animation-delay: 6s; animation-duration: 15s; }
.particle:nth-child(7) { left: 78%; animation-delay: 2.5s; animation-duration: 17s; width: 3px; height: 3px; }
.particle:nth-child(8) { left: 88%; animation-delay: 4s; animation-duration: 13s; }
.particle:nth-child(9) { left: 35%; animation-delay: 7s; animation-duration: 21s; width: 2px; height: 2px; }
.particle:nth-child(10) { left: 62%; animation-delay: 1.5s; animation-duration: 12s; }

@keyframes floatUpEpic {
  0% { 
    transform: translateY(100vh) rotate(0deg);
    opacity: 0;
  }
  5% { opacity: 0.8; }
  95% { opacity: 0.8; }
  100% { 
    transform: translateY(-100vh) rotate(360deg);
    opacity: 0;
  }
}

/* Glowing Orbs */
.hero-orbs {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  animation: orbFloatEpic 25s ease-in-out infinite;
}

.orb-1 {
  width: 800px;
  height: 800px;
  background: radial-gradient(circle, rgba(255, 107, 0, 0.12) 0%, transparent 70%);
  top: -300px;
  right: -200px;
  animation-delay: 0s;
}

.orb-2 {
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(0, 255, 255, 0.06) 0%, transparent 70%);
  bottom: -200px;
  left: -150px;
  animation-delay: -12s;
}

.orb-3 {
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(255, 140, 0, 0.08) 0%, transparent 70%);
  top: 40%;
  left: 30%;
  animation-delay: -6s;
}

@keyframes orbFloatEpic {
  0%, 100% { transform: translate(0, 0) scale(1); }
  25% { transform: translate(40px, -40px) scale(1.15); }
  50% { transform: translate(-30px, 30px) scale(0.9); }
  75% { transform: translate(25px, 15px) scale(1.08); }
}

/* Scanning Lines Effect */
.scan-lines {
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    0deg,
    transparent,
    transparent 2px,
    rgba(0, 0, 0, 0.02) 2px,
    rgba(0, 0, 0, 0.02) 4px
  );
  pointer-events: none;
}

.scan-beam {
  position: absolute;
  left: 0;
  right: 0;
  height: 150px;
  background: linear-gradient(
    180deg,
    transparent 0%,
    rgba(255, 107, 0, 0.03) 40%,
    rgba(255, 107, 0, 0.05) 50%,
    rgba(255, 107, 0, 0.03) 60%,
    transparent 100%
  );
  animation: scanDownEpic 10s linear infinite;
}

@keyframes scanDownEpic {
  0% { top: -150px; }
  100% { top: 100%; }
}

/* Main Content Container */
.news-hero-epic {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: linear-gradient(135deg, #050508 0%, #0a0d12 40%, #0d1015 100%);
  padding-top: 80px;    /* Header-Höhe ausgleichen */
  box-sizing: border-box;
}

/* Live Badge */
.live-indicator {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 14px 32px;
  background: linear-gradient(135deg, rgba(255, 107, 0, 0.12) 0%, rgba(255, 140, 0, 0.08) 100%);
  border: 1px solid rgba(255, 107, 0, 0.35);
  border-radius: 60px;
  margin-bottom: 3rem;
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  animation: badgePulseEpic 3.5s ease-in-out infinite;
}

@keyframes badgePulseEpic {
  0%, 100% { 
    box-shadow: 0 0 25px rgba(255, 107, 0, 0.15), 0 0 50px rgba(255, 107, 0, 0.08);
    transform: scale(1);
  }
  50% { 
    box-shadow: 0 0 40px rgba(255, 107, 0, 0.3), 0 0 80px rgba(255, 107, 0, 0.15);
    transform: scale(1.02);
  }
}

.live-dot {
  width: 14px;
  height: 14px;
  background: var(--orange);
  border-radius: 50%;
  animation: livePulseEpic 1.2s ease-in-out infinite;
  box-shadow: 0 0 12px var(--orange), 0 0 25px rgba(255, 107, 0, 0.6);
}

@keyframes livePulseEpic {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.4; transform: scale(0.75); }
}

.live-text {
  font-family: 'Orbitron', -apple-system, sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 4px;
  color: var(--orange);
  text-transform: uppercase;
}

/* Main Title */
.hero-title-epic {
  font-family: 'Orbitron', -apple-system, sans-serif;
  font-size: clamp(5rem, 18vw, 14rem);
  font-weight: 900;
  line-height: 0.85;
  margin: 0 0 1.5rem;
  background: linear-gradient(
    135deg,
    #ffffff 0%,
    var(--orange) 20%,
    var(--orange-light) 40%,
    #ffffff 60%,
    var(--orange) 80%,
    var(--orange-light) 100%
  );
  background-size: 300% 300%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: titleShimmerEpic 6s ease-in-out infinite;
  filter: drop-shadow(0 0 60px rgba(255, 107, 0, 0.4));
  letter-spacing: -0.02em;
}

@keyframes titleShimmerEpic {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}

/* Subtitle with Typewriter Effect */
.hero-subtitle-epic {
  font-family: 'Orbitron', -apple-system, sans-serif;
  font-size: clamp(1rem, 3vw, 1.8rem);
  font-weight: 400;
  color: rgba(255, 255, 255, 0.6);
  letter-spacing: 10px;
  text-transform: uppercase;
  margin-bottom: 3.5rem;
}

.typewriter {
  display: inline-block;
  border-right: 3px solid var(--orange);
  padding-right: 8px;
  animation: blinkEpic 0.9s step-end infinite;
}

@keyframes blinkEpic {
  50% { border-color: transparent; }
}

/* Stats Ticker */
.hero-stats-ticker {
  display: flex;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
}

.ticker-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 1.8rem 2.5rem;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 107, 0, 0.15);
  border-radius: 20px;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.ticker-item::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255, 107, 0, 0.08) 0%, transparent 50%);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.ticker-item:hover {
  border-color: rgba(255, 107, 0, 0.5);
  transform: translateY(-8px);
  box-shadow: 
    0 25px 50px rgba(0, 0, 0, 0.4),
    0 0 40px rgba(255, 107, 0, 0.15);
}

.ticker-item:hover::before {
  opacity: 1;
}

.ticker-value {
  font-family: 'Orbitron', -apple-system, sans-serif;
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 800;
  color: var(--orange);
  line-height: 1;
  margin-bottom: 0.6rem;
  position: relative;
  z-index: 1;
}

.ticker-label {
  font-family: 'Orbitron', -apple-system, sans-serif;
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.45);
  text-transform: uppercase;
  letter-spacing: 3px;
  position: relative;
  z-index: 1;
}

/* Scroll Indicator */
.scroll-indicator-epic {
  position: absolute;
  bottom: 50px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  animation: fadeInUpEpic 1s ease 1.5s both;
}

@keyframes fadeInUpEpic {
  from {
    opacity: 0;
    transform: translateX(-50%) translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
  }
}

.scroll-text-epic {
  font-family: 'Orbitron', -apple-system, sans-serif;
  font-size: 0.7rem;
  color: rgba(255, 255, 255, 0.35);
  text-transform: uppercase;
  letter-spacing: 4px;
}

.scroll-arrow-epic {
  width: 28px;
  height: 45px;
  border: 2px solid rgba(255, 107, 0, 0.3);
  border-radius: 14px;
  position: relative;
  animation: scrollBounceEpic 2.5s ease-in-out infinite;
}

.scroll-arrow-epic span {
  position: absolute;
  top: 10px;
  left: 50%;
  transform: translateX(-50%);
  width: 4px;
  height: 10px;
  background: var(--orange);
  border-radius: 2px;
  animation: scrollDotEpic 2s ease-in-out infinite;
}

@keyframes scrollBounceEpic {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(8px); }
}

@keyframes scrollDotEpic {
  0%, 100% { top: 10px; opacity: 1; }
  50% { top: 24px; opacity: 0.3; }
}

/* Corner Accents */
.corner-accent {
  position: absolute;
  width: 120px;
  height: 120px;
  pointer-events: none;
  z-index: 5;
}

.corner-accent::before,
.corner-accent::after {
  content: '';
  position: absolute;
  background: var(--orange);
  opacity: 0.4;
}

.corner-tl {
  top: 40px;
  left: 40px;
}
.corner-tl::before {
  width: 80px;
  height: 2px;
  top: 0;
  left: 0;
  background: linear-gradient(90deg, var(--orange), transparent);
}
.corner-tl::after {
  width: 2px;
  height: 80px;
  top: 0;
  left: 0;
  background: linear-gradient(180deg, var(--orange), transparent);
}

.corner-tr {
  top: 40px;
  right: 40px;
}
.corner-tr::before {
  width: 80px;
  height: 2px;
  top: 0;
  right: 0;
  background: linear-gradient(-90deg, var(--orange), transparent);
}
.corner-tr::after {
  width: 2px;
  height: 80px;
  top: 0;
  right: 0;
  background: linear-gradient(180deg, var(--orange), transparent);
}

.corner-bl {
  bottom: 40px;
  left: 40px;
}
.corner-bl::before {
  width: 80px;
  height: 2px;
  bottom: 0;
  left: 0;
  background: linear-gradient(90deg, var(--orange), transparent);
}
.corner-bl::after {
  width: 2px;
  height: 80px;
  bottom: 0;
  left: 0;
  background: linear-gradient(0deg, var(--orange), transparent);
}

.corner-br {
  bottom: 40px;
  right: 40px;
}
.corner-br::before {
  width: 80px;
  height: 2px;
  bottom: 0;
  right: 0;
  background: linear-gradient(-90deg, var(--orange), transparent);
}
.corner-br::after {
  width: 2px;
  height: 80px;
  bottom: 0;
  right: 0;
  background: linear-gradient(0deg, var(--orange), transparent);
}

/* Glitch Effect on Hover */
.hero-title-epic:hover {
  animation: titleShimmerEpic 6s ease-in-out infinite, glitchEffectEpic 0.4s ease-in-out;
}

@keyframes glitchEffectEpic {
  0%, 100% { transform: translate(0); filter: drop-shadow(0 0 60px rgba(255, 107, 0, 0.4)); }
  10% { transform: translate(-3px, 2px); filter: drop-shadow(3px 0 rgba(0, 255, 255, 0.7)) drop-shadow(-3px 0 rgba(255, 0, 100, 0.7)); }
  20% { transform: translate(3px, -2px); }
  30% { transform: translate(-2px, -1px); filter: drop-shadow(2px 0 rgba(0, 255, 255, 0.5)) drop-shadow(-2px 0 rgba(255, 0, 100, 0.5)); }
  40% { transform: translate(2px, 2px); }
  50% { transform: translate(-1px, 1px); filter: drop-shadow(0 0 60px rgba(255, 107, 0, 0.4)); }
}

/* ========== RESPONSIVE ========== */
@media (max-width: 992px) {
  .news-hero-epic {
    min-height: 90vh;
  }
  
  .corner-accent {
    width: 80px;
    height: 80px;
  }
  
  .corner-accent::before {
    width: 50px !important;
  }
  
  .corner-accent::after {
    height: 50px !important;
  }
  
  .corner-tl, .corner-tr { top: 25px; }
  .corner-bl, .corner-br { bottom: 25px; }
  .corner-tl, .corner-bl { left: 25px; }
  .corner-tr, .corner-br { right: 25px; }
}

@media (max-width: 768px) {
  .news-hero-epic {
    min-height: 85vh;
    padding-top: 80px;
  }
  
  .hero-stats-ticker {
    gap: 1rem;
    padding: 0 1rem;
  }
  
  .ticker-item {
    padding: 1.2rem 1.8rem;
    flex: 1;
    min-width: 100px;
  }
  
  .ticker-value {
    font-size: 1.6rem;
  }
  
  .ticker-label {
    font-size: 0.65rem;
    letter-spacing: 2px;
  }
  
  .corner-accent {
    display: none;
  }
  
  .live-indicator {
    padding: 10px 22px;
    margin-bottom: 2rem;
  }
  
  .live-text {
    font-size: 0.75rem;
    letter-spacing: 3px;
  }
  
  .live-dot {
    width: 10px;
    height: 10px;
  }
  
  .hero-subtitle-epic {
    letter-spacing: 5px;
    margin-bottom: 2.5rem;
  }
  
  .scroll-indicator-epic {
    bottom: 30px;
  }
  
  .orb-1 {
    width: 400px;
    height: 400px;
    top: -150px;
    right: -100px;
  }
  
  .orb-2 {
    width: 300px;
    height: 300px;
    bottom: -100px;
    left: -80px;
  }
  
  .orb-3 {
    width: 200px;
    height: 200px;
  }
}

@media (max-width: 480px) {
  .hero-stats-ticker {
    flex-direction: column;
    align-items: center;
    gap: 0.8rem;
  }
  
  .ticker-item {
    width: 100%;
    max-width: 280px;
    flex-direction: row;
    justify-content: space-between;
    padding: 1rem 1.5rem;
  }
  
  .ticker-value {
    font-size: 1.8rem;
    margin-bottom: 0;
  }
  
  .ticker-label {
    font-size: 0.7rem;
  }
  
  .hero-subtitle-epic {
    font-size: 0.85rem;
    letter-spacing: 4px;
  }
  
  .live-indicator {
    gap: 10px;
    padding: 8px 18px;
  }
  
  .live-text {
    font-size: 0.7rem;
    letter-spacing: 2px;
  }
}

/* Reduced Motion */
@media (prefers-reduced-motion: reduce) {
  .particle,
  .orb,
  .scan-beam,
  .hero-grid-bg,
  .hero-title-epic,
  .live-dot,
  .live-indicator,
  .scroll-arrow-epic,
  .scroll-arrow-epic span,
  .typewriter {
    animation: none !important;
  }
  
  .hero-title-epic {
    background-position: 50% 50% !important;
  }
  
  .typewriter {
    border-right-color: var(--orange);
  }
}

/* ═══════════════════════════════════════════════════════════════
   ROBOTAXI HESSEN – NEUE NEWS-ARTICLE STYLES
   → Diesen Block komplett ans Ende der style.css kopieren
   → Neue Klassen für strukturierte Artikel innerhalb von news-cards
   ═══════════════════════════════════════════════════════════════ */

/* ========== ARTICLE SECTION (Abschnitte im Artikel) ========== */
.article-section {
  margin: var(--spacing-xl) 0;
  padding-top: var(--spacing-lg);
  border-top: 1px solid rgba(255, 107, 0, 0.1);
}

.article-section:first-child {
  border-top: none;
  padding-top: 0;
}

/* ========== SECTION HEADING (h3 mit orange Linie) ========== */
.section-heading {
  font-size: clamp(1.2rem, 4vw, 1.6rem);
  font-weight: 900;
  color: var(--orange);
  margin: 0 0 var(--spacing-md);
  padding-left: 16px;
  border-left: 4px solid var(--orange);
  line-height: 1.3;
}

/* ========== CHECKLIST (Positive / Negative) ========== */
.checklist {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin: var(--spacing-md) 0;
}

.checklist-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 12px 16px;
  border-radius: var(--radius-md);
  font-size: clamp(0.9rem, 2.5vw, 1rem);
  line-height: 1.6;
  transition: all var(--transition-base);
}

.checklist-item:hover {
  transform: translateX(4px);
}

.checklist-icon {
  flex-shrink: 0;
  width: 26px;
  height: 26px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-size: 0.8rem;
  font-weight: 900;
  margin-top: 2px;
}

/* Negative (rot) */
.checklist-negative {
  background: rgba(255, 26, 26, 0.08);
  border: 1px solid rgba(255, 26, 26, 0.2);
}

.checklist-negative .checklist-icon {
  background: rgba(255, 26, 26, 0.2);
  color: #ff4444;
}

.checklist-negative:hover {
  border-color: rgba(255, 26, 26, 0.35);
}

/* Positive (grün) */
.checklist-positive {
  background: rgba(0, 200, 83, 0.08);
  border: 1px solid rgba(0, 200, 83, 0.2);
}

.checklist-positive .checklist-icon {
  background: rgba(0, 200, 83, 0.2);
  color: var(--green);
}

.checklist-positive:hover {
  border-color: rgba(0, 200, 83, 0.35);
}

/* ========== STEP LIST (Nummerierte Anleitung) ========== */
.step-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin: var(--spacing-md) 0 var(--spacing-lg);
}

.step-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 18px 20px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 107, 0, 0.15);
  border-radius: var(--radius-lg);
  transition: all var(--transition-base);
}

.step-item:hover {
  background: rgba(255, 107, 0, 0.06);
  border-color: rgba(255, 107, 0, 0.35);
  transform: translateX(4px);
}

.step-number {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--orange), var(--orange-light));
  color: #000;
  font-weight: 900;
  font-size: 1rem;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(255, 107, 0, 0.3);
}

.step-content {
  flex: 1;
  font-size: clamp(0.9rem, 2.5vw, 1rem);
  line-height: 1.7;
  color: var(--text);
}

.step-content strong {
  color: #fff;
}

/* ========== CODE INLINE (Text im Clipboard-Stil) ========== */
.code-inline {
  display: inline-block;
  font-family: 'Courier New', Courier, monospace;
  font-size: 0.85em;
  background: rgba(255, 107, 0, 0.1);
  color: var(--orange-light);
  padding: 4px 10px;
  border-radius: 6px;
  border: 1px solid rgba(255, 107, 0, 0.2);
  margin: 4px 0;
  word-break: break-word;
}

/* ========== ALERT BOX (Warnungen & Hinweise) ========== */
.alert-box {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding: 20px 24px;
  border-radius: var(--radius-lg);
  margin: var(--spacing-md) 0;
  font-size: clamp(0.9rem, 2.5vw, 1rem);
  line-height: 1.65;
}

.alert-icon {
  font-size: 1.5rem;
  flex-shrink: 0;
  margin-top: 2px;
}

.alert-content {
  flex: 1;
}

.alert-content strong {
  display: inline;
}

/* Warning (gelb/orange) */
.alert-warning {
  background: rgba(245, 158, 11, 0.1);
  border: 1px solid rgba(245, 158, 11, 0.3);
  color: rgba(255, 200, 80, 0.95);
}

.alert-warning strong {
  color: #ffc107;
}

/* Info (cyan) */
.alert-info {
  background: rgba(0, 255, 255, 0.08);
  border: 1px solid rgba(0, 255, 255, 0.25);
  color: rgba(200, 255, 255, 0.9);
}

.alert-info strong {
  color: var(--cyan);
}

/* Danger (rot) */
.alert-danger {
  background: rgba(255, 26, 26, 0.1);
  border: 1px solid rgba(255, 26, 26, 0.3);
  color: rgba(255, 150, 150, 0.95);
}

.alert-danger strong {
  color: #ff4444;
}

/* Success (grün) */
.alert-success {
  background: rgba(0, 200, 83, 0.1);
  border: 1px solid rgba(0, 200, 83, 0.3);
  color: rgba(180, 255, 200, 0.95);
}

.alert-success strong {
  color: var(--green);
}

/* ========== TL;DR BOX (Zusammenfassung / CTA) ========== */
.tldr-box {
  background: linear-gradient(135deg, rgba(0, 255, 255, 0.08) 0%, rgba(0, 200, 255, 0.04) 100%);
  border: 1px solid rgba(0, 255, 255, 0.25);
  border-radius: var(--radius-xl);
  padding: var(--spacing-lg) var(--spacing-xl);
  margin: var(--spacing-xl) 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.tldr-box::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--cyan), transparent);
  opacity: 0.6;
}

.tldr-box h3 {
  font-size: clamp(1.3rem, 4vw, 1.7rem);
  font-weight: 900;
  color: var(--cyan);
  margin: 0 0 var(--spacing-sm);
}

.tldr-box p {
  font-size: clamp(1rem, 3vw, 1.15rem);
  line-height: 1.8;
  color: var(--text);
  margin: 0;
}

.tldr-box strong {
  color: var(--cyan);
}

/* ========== MOBILE ADJUSTMENTS ========== */
@media (max-width: 768px) {
  .article-section {
    margin: var(--spacing-lg) 0;
    padding-top: var(--spacing-md);
  }

  .section-heading {
    padding-left: 12px;
    border-left-width: 3px;
  }

  .checklist-item {
    padding: 10px 12px;
    gap: 10px;
  }

  .checklist-icon {
    width: 22px;
    height: 22px;
    font-size: 0.7rem;
  }

  .step-item {
    padding: 14px 16px;
    gap: 12px;
  }

  .step-number {
    width: 30px;
    height: 30px;
    font-size: 0.9rem;
    border-radius: 8px;
  }

  .alert-box {
    padding: 16px 18px;
    gap: 10px;
  }

  .alert-icon {
    font-size: 1.2rem;
  }

  .tldr-box {
    padding: var(--spacing-md) var(--spacing-lg);
  }
}

@media (max-width: 480px) {
  .step-item {
    flex-direction: column;
    gap: 8px;
  }

  .step-number {
    width: 28px;
    height: 28px;
  }

  .checklist-item {
    flex-direction: column;
    gap: 6px;
  }

  .checklist-icon {
    width: 20px;
    height: 20px;
  }
}

/* ========== REDUCED MOTION ========== */
@media (prefers-reduced-motion: reduce) {
  .checklist-item,
  .step-item {
    transition: none !important;
  }

  .checklist-item:hover,
  .step-item:hover {
    transform: none !important;
  }
}