/* ========================================
   HERO SECTION COMPONENT
   Premium hero styles for homepage
   ======================================== */

/* ======================================== 
   HERO MAIN CONTAINER 
   ======================================== */
.hero-main {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: linear-gradient(135deg, 
    #000000 0%,      /* Tiefschwarz - Start */
    #1A0000 25%,     /* Dunkelste Burgundrot */  
    #3D0000 50%,     /* Dunkles Burgundrot - Zentrum */
    #610000 75%,     /* Ihre Primärfarbe */
    #3D0000 100%     /* Zurück zu dunkel - Ende */
  );
  padding-top: 80px; /* Account for fixed header */
}

/* ======================================== 
   HERO BACKGROUND ANIMATION 
   ======================================== */
.hero-bg-animation {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 0;
  overflow: hidden;
}

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

/* 🟡 Orb 1 (Groß, Gold) - Links-oben */
.orb-1 {
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, #FFD700 0%, transparent 70%);
  top: -200px;
  left: -200px;
  animation-delay: 0s;
  animation-duration: 25s;
}

/* 🔴 Orb 2 (Mittel, Burgundrot-Light) - Rechts-unten */
.orb-2 {
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, #8B0000 0%, transparent 70%);
  bottom: -100px;
  right: -100px;
  animation-delay: 5s;
  animation-duration: 30s;
}

/* 🟠 Orb 3 (Mittel, Gold-Dark) - Zentriert */
.orb-3 {
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, #DAA520 0%, transparent 70%);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  animation-delay: 10s;
  animation-duration: 35s;
}

@keyframes orbFloat {
  0%, 100% {
    transform: translate(0, 0) scale(1);
  }
  25% {
    transform: translate(50px, -40px) scale(1.1);
  }
  50% {
    transform: translate(-30px, 30px) scale(0.9);
  }
  75% {
    transform: translate(40px, -20px) scale(1.05);
  }
}

/* ======================================== 
   HERO CONTAINER 
   ======================================== */
.hero-container {
  max-width: var(--container-wide);
  margin: 0 auto;
  padding-top: var(--space-4xl);
  padding-bottom: var(--space-4xl);
  /* Mehr Innenabstand links/rechts für großzügigere Ränder auf Desktop */
  padding-left: clamp(var(--space-xl), 8vw, var(--space-5xl));
  padding-right: clamp(var(--space-xl), 8vw, var(--space-5xl));
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  column-gap: var(--space-5xl);
  row-gap: clamp(var(--space-xs), 0.8vw, var(--space-sm));
  align-items: center;
}

/* ======================================== 
   HERO CONTENT 
   ======================================== */
.hero-titles {
  grid-column: 1;
  /* Linke Spalte nicht an den Rand kleben lassen */
  padding-left: 0.25rem;
}

/* ======================================== 
   HERO CONTENT WRAPPER
   ======================================== */
.hero-content {
  display: flex;
  flex-direction: column;
  gap: clamp(var(--space-xs), 0.8vw, var(--space-sm));
  align-items: flex-start;
  text-align: left;
  grid-column: 1;
}

/* ======================================== 
   HERO KICKER 
   ======================================== */
.hero-kicker {
  font-size: clamp(var(--text-sm), 1.8vw, var(--text-base));
  font-weight: var(--font-medium);
  color: rgba(255, 255, 255, 0.8);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: var(--space-lg);
  text-align: left;
}

.hero-title {
  font-family: var(--font-display);
  line-height: 1;
  margin-bottom: clamp(var(--space-sm), 1.4vw, var(--space-md));
}

.title-massive {
  display: block;
  font-size: clamp(var(--text-4xl), 6vw, var(--text-7xl));
  font-weight: var(--font-black);
  color: #FFFFFF;
  letter-spacing: -0.03em;
  margin-bottom: var(--space-xs);
}

/* ✨ Golden Title Highlight */
.title-highlight {
  display: block;
  font-size: clamp(var(--text-5xl), 6.2vw, var(--text-7xl));
  font-weight: var(--font-black);
  background: linear-gradient(135deg, 
    #FFD700 0%, 
    #DAA520 50%,
    #B8860B 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: -0.02em;
  margin-bottom: var(--space-xs);
  position: relative;
  text-shadow: 0 0 20px rgba(255, 215, 0, 0.5);
  line-height: 1.05;
  padding: 0.1em 0;
}

/* Desktop: "Eine Überraschung" immer in einer Zeile halten */
@media (min-width: 1024px) {
  .title-highlight {
    display: inline-block;
    white-space: nowrap;
  }
}

/* Arrange first two parts on one row; third on next row (desktop) */
.hero-title {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  column-gap: 0.25em;
}

.hero-title .title-massive:first-child,
.hero-title .title-highlight {
  margin-bottom: 0;
}

.hero-title .title-massive:last-child {
  flex-basis: 100%;
  margin-top: var(--space-xs);
}

/* Golden Glowing effect */
.title-highlight::after {
  content: attr(data-text);
  position: absolute;
  left: 0;
  top: 0;
  z-index: -1;
  background: linear-gradient(135deg, 
    #FFD700 0%, 
    #DAA520 50%,
    #B8860B 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  filter: blur(25px);
  opacity: 0.7;
}

.hero-subtitle {
  font-size: clamp(var(--text-lg), 1.8vw, var(--text-2xl));
  line-height: var(--leading-relaxed);
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: clamp(var(--space-xs), 0.8vw, var(--space-xs));
  max-width: 60ch; /* Lesbare Zeilenlänge */
}

.hero-subtitle strong {
  color: #FFFFFF;
  font-weight: var(--font-bold);
}

/* Desktop: „– den Rest übernehmen wir.“ immer als ein Block (kein Umbruch) */
@media (min-width: 1024px) {
  .hero-subtitle .subtitle-line-mobile {
    white-space: nowrap;
  }
  /* Desktop: Kicker linksbündig ausrichten */
  .hero-kicker {
    text-align: left;
  }
  /* Desktop: "– gratis & unverbindlich." in einer Zeile halten */
  .nowrap-desktop {
    white-space: nowrap;
  }
  /* Desktop: "– gratis & unverbindlich." als eigene Zeile unter der 24h-Zeile */
  .subtitle-line-desktop {
    display: block;
    margin-top: 0.15em;
  }
}

/* ✨ Golden Subtitle Power */
.subtitle-power {
  display: block;
  margin-top: var(--space-xs);
  font-size: var(--text-lg);
  color: #FFD700;
  font-weight: var(--font-semibold);
  text-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
  letter-spacing: 0.02em;
}

/* ======================================== 
   HERO VISUAL 
   ======================================== */
.hero-visual {
  grid-column: 2;
  position: relative;
}

.hero-image-container {
  position: relative;
  max-width: 400px;
  margin: clamp(var(--space-lg), 4vw, var(--space-2xl)) auto 0 auto;
}

.hero-image {
  width: 100%;
  height: auto;
  border-radius: var(--radius-2xl);
  position: relative;
  z-index: 2;
}

/* ✨ Golden Hero Badge - Über dem Bild */
.hero-badge--over-image {
  position: absolute;
  bottom: 100%;          /* Direkt ÜBER dem Bild */
  right: 0;              /* Rechtsbündig zum Bild */
  z-index: 2;            /* Über allem */
  margin: 0 0 24px 0;    /* Mehr Abstand zum Bild (Desktop) */
}

.hero-badge {
  padding: 0.6rem 1.5rem;
  background: rgba(255, 215, 0, 0.15);
  border: 1px solid #FFD700;
  border-radius: var(--radius-full);
  backdrop-filter: blur(10px);
  display: inline-flex;
  align-items: center;
  gap: var(--space-sm);
  box-shadow:
    0 0 20px rgba(255, 215, 0, 0.3),
    inset 0 0 20px rgba(255, 215, 0, 0.1);
  white-space: nowrap;
  max-width: 100%;
}

.badge-dot {
  width: 8px;              /* 8px Durchmesser */
  height: 8px;
  background: #FFD700;
  border-radius: 50%;
  box-shadow: 0 0 6px #FFD700;
  animation: pulseGold 2s ease-in-out infinite;  /* pulsierend 2s */
}

@keyframes pulseGold {
  0%, 100% {
    transform: scale(1);
    opacity: 1;
    box-shadow: 0 0 6px #FFD700;
  }
  50% {
    transform: scale(1.5);
    opacity: 0.7;
    box-shadow: 0 0 12px #FFD700;
  }
}

.badge-text {
  font-size: var(--fs-sm);       /* ≈14px */
  font-weight: var(--font-semibold);
  color: #FFD700;
  letter-spacing: 0.05em;        /* Breites Letterspacing */
  text-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
}

/* ✨ Goldene Partikel (8 Stück um das Bild) */
.golden-particles {
  position: absolute;
  inset: -50px;          /* 50px Abstand um das GESAMTE Bild */
  pointer-events: none;   /* Nicht klickbar */
  z-index: -1;           /* Hinter dem Bild */
}

/* Einzelne Partikel - Naturalistic Gold Particles */
.particle {
  position: absolute;
  width: 3px;
  height: 3px;
  background: linear-gradient(45deg, #FFD700, #FFA500, #FFFF99);
  border-radius: 50%;
  box-shadow: 
    0 0 4px rgba(255, 215, 0, 0.8),
    0 0 8px rgba(255, 215, 0, 0.4),
    0 0 12px rgba(255, 215, 0, 0.2);
  opacity: 0.9;
}

/* Different sizes for more natural look */
.particle:nth-child(odd) {
  width: 2px;
  height: 2px;
}

.particle:nth-child(3n) {
  width: 4px;
  height: 4px;
}

/* Echte Gold-Staub Partikel - Jeder einzigartig */
.particle-1 {
  top: 18%; left: 8%;
  animation: 
    goldFloatBig 14s ease-in-out infinite,
    goldGlitter 4s ease-in-out infinite,
    goldPulse 3s ease-in-out infinite;
  animation-delay: 0s, 0.5s, 1s;
}

.particle-2 {
  top: 12%; right: 18%;
  animation: 
    goldDriftWide 16s ease-in-out infinite,
    goldGlitter 6s ease-in-out infinite,
    goldPulse 4s ease-in-out infinite;
  animation-delay: 2s, 1s, 0s;
}

.particle-3 {
  bottom: 28%; left: 3%;
  animation: 
    goldRiseFast 11s ease-in-out infinite,
    goldGlitter 3.5s linear infinite;
  animation-delay: 3s, 1.5s;
}

.particle-4 {
  bottom: 15%; right: 12%;
  animation: 
    goldWobbleIntense 9s ease-in-out infinite,
    goldGlitter 5s ease-in-out infinite,
    goldPulse 2.5s ease-in-out infinite;
  animation-delay: 1s, 2.5s, 1.8s;
}

.particle-5 {
  top: 55%; left: 1%;
  animation: 
    goldSpiral 13s linear infinite,
    goldGlitter 4.5s linear infinite;
  animation-delay: 4s, 0.8s;
}

.particle-6 {
  top: 42%; right: 5%;
  animation: 
    goldZigzag 17s ease-in-out infinite,
    goldGlitter 5.5s ease-in-out infinite,
    goldPulse 4.5s ease-in-out infinite;
  animation-delay: 1.5s, 2.8s, 0.5s;
}

/* 🌟 Echte Gold-Staub Physik - Träge & Natürlich */

/* Sehr langsames Treiben in der Luft */
@keyframes goldFloat {
  0% { 
    transform: translate(0, 0) rotate(0deg) scale(1);
    filter: brightness(1) blur(0px);
  }
  100% { 
    transform: translate(2px, -3px) rotate(360deg) scale(1);
    filter: brightness(1) blur(0px);
  }
}

/* Träges Driften */
@keyframes goldDrift {
  0%, 100% { transform: translate(0, 0) rotateY(0deg); }
  50% { transform: translate(3px, -2px) rotateY(180deg); }
}

/* Thermische Aufwinde */
@keyframes goldRise {
  0%, 100% { transform: translateY(0) rotateZ(0deg); opacity: 0.6; }
  50% { transform: translateY(-5px) rotateZ(180deg); opacity: 0.9; }
}

/* Subtiles Wabern */
@keyframes goldWobble {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(1px, -1px) scale(1.05); }
  66% { transform: translate(-1px, 0.5px) scale(0.95); }
}

/* Zusätzliche individuelle Bewegungen */
@keyframes goldFloatBig {
  0% { transform: translate(0, 0) rotate(0deg) scale(1); }
  25% { transform: translate(8px, -6px) rotate(90deg) scale(1.1); }
  50% { transform: translate(4px, -12px) rotate(180deg) scale(0.9); }
  75% { transform: translate(-3px, -8px) rotate(270deg) scale(1.05); }
  100% { transform: translate(0, 0) rotate(360deg) scale(1); }
}

@keyframes goldDriftWide {
  0%, 100% { transform: translate(0, 0) rotateZ(0deg); }
  30% { transform: translate(12px, -4px) rotateZ(120deg); }
  70% { transform: translate(-8px, -2px) rotateZ(240deg); }
}

@keyframes goldRiseFast {
  0%, 100% { transform: translateY(0) rotateX(0deg); opacity: 0.7; }
  40% { transform: translateY(-15px) rotateX(180deg); opacity: 1; }
  60% { transform: translateY(-10px) rotateX(270deg); opacity: 0.8; }
}

@keyframes goldWobbleIntense {
  0%, 100% { transform: translate(0, 0) scale(1) rotate(0deg); }
  20% { transform: translate(4px, -3px) scale(1.15) rotate(15deg); }
  40% { transform: translate(-2px, -7px) scale(0.85) rotate(-10deg); }
  60% { transform: translate(6px, -4px) scale(1.1) rotate(20deg); }
  80% { transform: translate(-3px, -1px) scale(0.9) rotate(-5deg); }
}

@keyframes goldSpiral {
  0% { transform: translate(0, 0) rotate(0deg); }
  25% { transform: translate(5px, -5px) rotate(90deg); }
  50% { transform: translate(0, -10px) rotate(180deg); }
  75% { transform: translate(-5px, -5px) rotate(270deg); }
  100% { transform: translate(0, 0) rotate(360deg); }
}

@keyframes goldZigzag {
  0% { transform: translate(0, 0) skewX(0deg); }
  16% { transform: translate(3px, -2px) skewX(5deg); }
  33% { transform: translate(-2px, -4px) skewX(-3deg); }
  50% { transform: translate(5px, -6px) skewX(7deg); }
  66% { transform: translate(-3px, -8px) skewX(-4deg); }
  83% { transform: translate(2px, -10px) skewX(2deg); }
  100% { transform: translate(0, -12px) skewX(0deg); }
}

/* Intensives Glitzern wie echtes Gold */
@keyframes goldGlitter {
  0%, 100% { 
    opacity: 0.3;
    filter: brightness(0.8) blur(0.5px);
  }
  10% { 
    opacity: 0.5;
    filter: brightness(1) blur(0.3px);
  }
  15% { 
    opacity: 1;
    filter: brightness(2) blur(0px) drop-shadow(0 0 3px #FFD700);
  }
  20% { 
    opacity: 0.6;
    filter: brightness(1.2) blur(0.2px);
  }
  90% { 
    opacity: 0.4;
    filter: brightness(0.9) blur(0.4px);
  }
}

/* Leichtes Pulsieren */
@keyframes goldPulse {
  0%, 100% { 
    box-shadow: 
      0 0 2px rgba(255, 215, 0, 0.4),
      0 0 4px rgba(255, 215, 0, 0.2);
  }
  50% { 
    box-shadow: 
      0 0 6px rgba(255, 215, 0, 0.8),
      0 0 12px rgba(255, 215, 0, 0.4),
      0 0 16px rgba(255, 215, 0, 0.2);
  }
}



/* ======================================== 
   HERO PROOF LINE 
   ======================================== */
.hero-proof {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: clamp(0.35rem, 0.7vw, 0.5rem);
  margin-bottom: clamp(var(--space-xs), 0.7vw, var(--space-xs));
  flex-wrap: wrap;
}

.proof-item {
  font-size: var(--text-sm);
  font-weight: var(--font-medium);
  color: rgba(255, 255, 255, 0.9);
  white-space: nowrap;
}

.proof-divider {
  color: #FFD700;
  font-weight: var(--font-bold);
  font-size: var(--text-base);
  opacity: 0.7;
}

/* ======================================== 
   HERO CTA 
   ======================================== */
.hero-cta {
  display: flex;
  align-items: center;
  gap: var(--space-xl);
  flex-wrap: wrap;
  margin-top: clamp(var(--space-md), 2vw, var(--space-2xl));
}

/* ✨ Golden Hero Button */
.btn-hero-mega {
  display: inline-flex;
  align-items: center;
  gap: var(--space-md);
  padding: clamp(var(--space-lg), 1.8vw, var(--space-xl)) clamp(var(--space-2xl), 3vw, var(--space-3xl));
  background: rgba(0, 0, 0, 0.8);
  border: 2px solid #FFD700;
  border-radius: var(--radius-xl);
  color: #FFD700;
  font-size: clamp(var(--text-lg), 1.6vw, var(--text-xl));
  font-weight: var(--font-bold);
  text-decoration: none;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  white-space: nowrap;
  box-shadow: 
    0 0 20px rgba(255, 215, 0, 0.3),
    inset 0 0 20px rgba(255, 215, 0, 0.1);
  text-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
}

.btn-hero-mega:hover {
  transform: translateY(-2px);
  box-shadow: 
    0 0 30px rgba(255, 215, 0, 0.5),
    inset 0 0 30px rgba(255, 215, 0, 0.2);
  border-color: #B8860B;
  color: #FFF;
  background: rgba(255, 215, 0, 0.1);
}

.btn-hero-mega::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, 
    transparent, 
    rgba(255, 215, 0, 0.3), 
    transparent);
  transition: left 0.5s ease;
}

.btn-hero-mega:hover::after {
  left: 100%;
}

.btn-text {
  position: relative;
  z-index: 1;
}

.btn-arrow {
  font-size: 1.4em;
  transition: transform 0.3s ease;
}

.btn-hero-mega:hover .btn-arrow {
  transform: translateX(5px);
}

/* iPad-spezifische Button-Größe (768px - 1024px) */
@media (max-width: 1024px) and (min-width: 769px) {
  .btn-hero-mega {
    font-size: var(--text-lg);
    padding: var(--space-lg) var(--space-2xl);
  }
  
  .btn-hero-secondary {
    font-size: var(--text-sm);
    padding: var(--space-sm) var(--space-lg);
  }
  
  .hero-cta {
    gap: var(--space-lg);
    justify-content: center;
  }
  
  /* iPad: "– gratis & unverbindlich." in eigener Zeile */
  .subtitle-line-desktop {
    display: block;
    margin-top: 0.3em;
  }
  
  .nowrap-desktop {
    white-space: normal;
  }
}

/* Desktop XXL Size for primary Hero CTA */
@media (min-width: 1025px) {
  .btn-hero-mega {
    font-size: var(--text-xl);
    padding: var(--space-xl) var(--space-3xl);
  }
}

/* ✨ Secondary Hero Button */
.btn-hero-secondary {
  display: inline-flex;
  align-items: center;
  gap: var(--space-sm);
  padding: var(--space-md) var(--space-xl);
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: var(--radius-full);
  color: rgba(255, 255, 255, 0.9);
  font-size: var(--text-base);
  font-weight: var(--font-medium);
  text-decoration: none;
  transition: all 0.3s ease;
  position: relative;
  white-space: nowrap;
}

.btn-hero-secondary:hover {
  border-color: rgba(255, 255, 255, 0.6);
  color: #FFFFFF;
  background: rgba(255, 255, 255, 0.05);
  transform: translateY(-1px);
}

/* Responsive Hero Buttons */
@media (max-width: 768px) {
  .hero-cta {
    flex-direction: column;
    gap: var(--space-md);
  }
  
  .btn-hero-mega {
    padding: var(--space-lg) var(--space-2xl);
    font-size: var(--text-lg);
    width: auto;
    max-width: 380px;
    margin: 0 auto;
  }
  
  .btn-hero-secondary {
    padding: var(--space-sm) var(--space-lg);
    font-size: var(--text-sm);
    max-width: 200px;
    margin: 0 auto;
  }
}

/* ======================================== 
   SCROLL INDICATOR 
   ======================================== */
.scroll-to-reveal {
  position: absolute;
  bottom: var(--space-2xl);
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-sm);
  cursor: pointer;
  transition: all var(--transition-base);
  z-index: 2;
}

.scroll-to-reveal:hover {
  transform: translateX(-50%) translateY(5px);
}

.scroll-text {
  font-size: var(--text-sm);
  font-weight: var(--font-medium);
  color: rgba(255, 255, 255, 0.75);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* ✨ Golden Scroll Arrow */
.scroll-arrow {
  width: 24px;
  height: 24px;
  color: #FFD700;
  animation: bounce-arrow 2s ease-in-out infinite;
  filter: drop-shadow(0 0 8px rgba(255, 215, 0, 0.5));
}

@keyframes bounce-arrow {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(5px);
  }
}

/* ======================================== 
   RESPONSIVE HERO 
   ======================================== */
@media (max-width: 1024px) {
  .hero-container {
    grid-template-columns: 1fr;
    gap: var(--space-3xl);
    text-align: center;
    padding-left: var(--container-padding);
    padding-right: var(--container-padding);
  }
  
  .hero-titles {
    grid-column: 1;
    order: 1;
    padding-left: 0;
  }
  
  .hero-content {
    align-items: center;
    text-align: center;
  }
  
  /* Kicker auf Mobile/Tablet zentrieren */
  .hero-kicker {
    text-align: center;
  }
  
  /* iPad-spezifische Zentrierung für Hero-Titel */
  .hero-title {
    justify-content: center;
    text-align: center;
  }
  
  .hero-visual {
    grid-column: 1;
    order: 2;
  }

  /* Orbs für Mobile zentrieren */
  .orb-1 {
    top: 20%;
    left: 50%;
    transform: translateX(-50%);
  }
  
  .orb-2 {
    bottom: 10%;
    right: auto;
    left: 50%;
    transform: translateX(-50%);
  }
  
  .orb-3 {
    top: 45%;
    left: 50%;
    transform: translateX(-50%);
  }
  
  .hero-content {
    order: 3;
  }
  
  .hero-proof {
    justify-content: center;
  }
  
  .hero-cta {
    justify-content: center;
  }
}

@media (max-width: 768px) {
  .hero-main {
    min-height: auto;
    padding-top: 70px;
    padding-bottom: var(--space-6xl);
  }
  
  .hero-container {
    padding: var(--space-3xl) var(--container-padding);
    padding-left: clamp(var(--space-lg), 7vw, var(--space-2xl));
    padding-right: clamp(var(--space-lg), 7vw, var(--space-2xl));
  }
  
  /* Unified mobile heading sizes for visual order */
  .hero-title {
    gap: 0.2em;
    margin-bottom: var(--space-2xl);
    justify-content: center;
    align-items: center;
    text-align: center;
  }

  .hero-title .title-massive,
  .hero-title .title-highlight {
    font-size: clamp(1.75rem, 7.2vw, 2.5rem);
    line-height: 1.1;
  }

  /* Keep first two parts on one line */
  .hero-title .title-massive:first-child,
  .hero-title .title-highlight {
    white-space: nowrap;
  }

  /* Subtitle smaller and with readable line length */
  .hero-subtitle {
    font-size: var(--text-base);
    line-height: var(--leading-relaxed);
    max-width: 32ch;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: var(--space-lg);
  }

  /* Golden Glow auf Mobile - genau hinter das Wort zentrieren */
  .title-highlight::after {
    filter: blur(15px);
    opacity: 0.4;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
  }
  
  .hero-subtitle {
    font-size: var(--text-base);
  }

  /* Titelblock auf Mobile zentrieren und Zeilenlänge begrenzen */
  .hero-titles {
    max-width: 28rem;
    margin-left: auto;
    margin-right: auto;
  }

  /* Mehr Luft vor den CTAs auf Mobile */
  .hero-cta {
    margin-top: var(--space-xl);
    gap: var(--space-lg);
  }

  /* Mobile: Slogan in zwei Zeilen */
  .subtitle-power .subtitle-line {
    display: block;
  }
  .subtitle-power .subtitle-line + .subtitle-line {
    margin-top: 0.1rem;
  }

  /* Mobile: Zusätzlicher Umbruch vor "den Rest übernehmen wir." */
  .subtitle-line-mobile {
    display: block;
  }
  
  .hero-image-container {
    max-width: 320px;
    margin: 90px auto 0 -5px;
  }
  
  .hero-badge--over-image {
    margin: 0 0 16px 0;   /* Mehr Abstand auf Mobile */
  }
  
  .hero-badge {
    padding: 0.5rem 1.2rem;  /* Kleinere Padding auf Mobile */
  }
  
  .badge-text {
    font-size: var(--text-sm);
  }
  

  
  .proof-divider {
    display: inline-block;
    margin: 0 var(--space-xs);
  }
  
  .hero-proof {
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: var(--space-sm);
    flex-wrap: wrap;
  }
  
  .proof-item {
    font-size: var(--text-xs);
  }
}

@media (max-width: 640px) {
  .hero-container {
    gap: var(--space-2xl);
    padding-left: max(var(--container-padding), 6vw);
    padding-right: max(var(--container-padding), 6vw);
  }
  
  .hero-visual {
    margin-bottom: var(--space-xl);
  }
  
  .scroll-to-reveal {
    bottom: var(--space-lg);
  }
  
  .btn-hero-mega {
    max-width: 320px;
    padding: var(--space-md) var(--space-xl);
  }
  
  .hero-proof {
    gap: var(--space-xs);
  }
  
  .proof-item {
    font-size: 11px;
  }
  
  .proof-divider {
    margin: 0 var(--space-xs);
  }
}

.carousel-nav,
.scroll-to-reveal,
.indicator {
  transition: transform var(--transition-base), box-shadow var(--transition-base);
}

.carousel-nav:focus-visible,
.scroll-to-reveal:focus-visible,
.indicator:focus-visible {
  outline: none;
  box-shadow: 0 0 0 3px rgba(255, 215, 0, 0.45);
}
