/* ==========================================================================
   Hero Section - Dětské centrum Liberec
   UPDATED: Improved typography, spacing, and visual hierarchy
   ========================================================================== */

/* ==========================================================================
   CSS Variables
   ========================================================================== */

:root {
  /* Colors */
  --hero-bg-primary: #993366;
  --hero-bg-secondary: #7a2952;
  --hero-bg-tertiary: #662244;
  --hero-text: #ffffff;
  --hero-text-muted: rgba(255, 255, 255, 0.88);
  --hero-accent: #ffcc66;
  --hero-accent-hover: #ffe066;
  
  /* Layout */
  --hero-container-max: 1200px;
  --hero-padding-x: 32px;
  --hero-padding-y: 88px;
  
  /* Typography - Modern Sans-Serif Stack */
  --hero-font-family: 'Nunito', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
  
  /* Spacing Scale (based on 8px) */
  --hero-space-xs: 8px;
  --hero-space-sm: 12px;
  --hero-space-md: 16px;
  --hero-space-lg: 24px;
  --hero-space-xl: 32px;
  --hero-space-2xl: 40px;
  --hero-space-3xl: 48px;
}

/* ==========================================================================
   Hero Wrapper - Full Width Background
   ========================================================================== */

.hero {
  position: relative;
  width: 100%;
  min-height: 620px;
  display: flex;
  align-items: center;
  overflow: visible; /* Allow journey line to extend beyond */
  font-family: var(--hero-font-family);
}

/* Clip background shapes but not journey line */
.hero__background {
  overflow: hidden;
}

/* Background Layer */
.hero__background {
  position: absolute;
  inset: 0;
  z-index: 0;
}

/* Main Gradient Background */
.hero__background-gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    var(--hero-bg-primary) 0%,
    var(--hero-bg-secondary) 55%,
    var(--hero-bg-tertiary) 100%
  );
}

/* Soft Light Overlay (Right Side) */
.hero__background-overlay {
  position: absolute;
  top: 0;
  right: 0;
  width: 55%;
  height: 100%;
  background: linear-gradient(
    115deg,
    transparent 0%,
    rgba(204, 102, 153, 0.12) 40%,
    rgba(255, 182, 218, 0.08) 100%
  );
}

/* Decorative Circles */
.hero__background-shapes {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.hero__shape {
  position: absolute;
  border-radius: 50%;
  opacity: 0.08;
}

.hero__shape--1 {
  width: 450px;
  height: 450px;
  background: var(--hero-text);
  top: -180px;
  left: -180px;
}

.hero__shape--2 {
  width: 180px;
  height: 180px;
  background: var(--hero-accent);
  bottom: 100px;
  left: 18%;
  opacity: 0.1;
}

.hero__shape--3 {
  width: 100px;
  height: 100px;
  background: var(--hero-text);
  top: 28%;
  right: 10%;
  opacity: 0.05;
}

.hero__shape--4 {
  width: 60px;
  height: 60px;
  background: var(--hero-accent);
  bottom: 25%;
  right: 22%;
  opacity: 0.06;
}

/* ==========================================================================
   Hero Container - Centered Content (aligned with page content)
   ========================================================================== */

.hero__container {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: var(--hero-container-max);
  margin: 0 auto;
  padding: var(--hero-padding-y) var(--hero-padding-x);
}

/* ==========================================================================
   Hero Grid - Two Column Layout
   ========================================================================== */

.hero__grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 72px;
  align-items: center;
}

/* ==========================================================================
   Left Column - Text Content (Limited Width)
   ========================================================================== */

.hero__content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  max-width: 680px;
}

/* ==========================================================================
   Badge - Top Label
   Spacing: margin-bottom = 24px (--hero-space-lg)
   ========================================================================== */

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  color: var(--hero-text);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.02em;
  padding: 10px 18px;
  border-radius: 999px;
  margin-bottom: var(--hero-space-lg);
  border: 1px solid rgba(255, 255, 255, 0.15);
}

.hero__badge-dot {
  width: 8px;
  height: 8px;
  background: var(--hero-accent);
  border-radius: 50%;
  animation: hero-pulse 2.5s ease-in-out infinite;
  box-shadow: 0 0 8px rgba(255, 204, 102, 0.5);
}

@keyframes hero-pulse {
  0%, 100% { 
    opacity: 1; 
    transform: scale(1);
    box-shadow: 0 0 8px rgba(255, 204, 102, 0.5);
  }
  50% { 
    opacity: 0.7; 
    transform: scale(1.2);
    box-shadow: 0 0 16px rgba(255, 204, 102, 0.7);
  }
}

/* ==========================================================================
   Main Headline - Large, Two Lines
   Spacing: margin-bottom = 24px (--hero-space-lg)
   ========================================================================== */

.hero__title {
  font-size: clamp(36px, 5vw, 48px);
  font-weight: 800;
  line-height: 1.15;
  color: var(--hero-text);
  margin: 0 0 var(--hero-space-lg);
  letter-spacing: -0.025em;
  max-width: 640px;
}

/* Force line break for visual balance */
.hero__title-line {
  display: block;
}

/* Highlighted text - High contrast against #993366 */
.hero__title-highlight {
  color: var(--hero-accent);
  position: relative;
  display: inline;
  text-shadow: 0 2px 20px rgba(255, 204, 102, 0.3);
}

/* Optional underline accent */
.hero__title-highlight::after {
  content: '';
  position: absolute;
  bottom: 2px;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--hero-accent), rgba(255, 204, 102, 0.3));
  border-radius: 2px;
  opacity: 0;
  transition: opacity 0.3s ease;
}

/* ==========================================================================
   Description Paragraph - Comfortable Reading Width
   Spacing: margin-bottom = 32px (--hero-space-xl)
   ========================================================================== */

.hero__description {
  font-size: 17px;
  font-weight: 400;
  line-height: 1.75;
  color: var(--hero-text-muted);
  margin: 0 0 var(--hero-space-md);
  max-width: 620px;
  letter-spacing: 0.01em;
  text-align: justify;   /* Word-style block text */
  text-align-last: left; /* keep the last line natural (prevents big gaps) */
  /* Prevent single letter orphans */
  word-break: normal; /* Better typography - only break when necessary */
  overflow-wrap: break-word;
  /* Allow hyphenation to reduce large spacing when justified */
  hyphens: auto;
  -webkit-hyphens: auto;
  -moz-hyphens: auto;
  orphans: 3; /* Minimum 3 lines at bottom of page/column */
  widows: 3; /* Minimum 3 lines at top of page/column */
  /* Prevent single characters at end of line - modern CSS */
  text-wrap: pretty;
  /* Additional protection: prevent breaking after short words */
  word-spacing: normal;
  /* Ensure words don't break awkwardly */
  text-rendering: optimizeLegibility;
}

/* ==========================================================================
   Read More Button - Seamless integration with hero design
   ========================================================================== */

.hero__description-wrapper {
  margin-bottom: var(--hero-space-xl);
}

.hero__description-more {
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.hero__description-more.show {
  display: inline !important;
  animation: fadeInText 0.6s ease-out;
}

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

@keyframes fadeOutText {
  from {
    opacity: 1;
    transform: translateY(0);
  }
  to {
    opacity: 0;
    transform: translateY(-10px);
  }
}

.hero__read-more-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: transparent;
  border: none;
  color: var(--hero-accent);
  font-family: var(--hero-font-family);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.01em;
  cursor: pointer;
  padding: 8px 0;
  margin-top: var(--hero-space-sm);
  transition: all 0.3s ease;
  text-decoration: none;
  position: relative;
}

.hero__read-more-btn:hover {
  color: var(--hero-accent-hover);
  transform: translateY(-1px);
}

.hero__read-more-btn:focus {
  outline: 2px solid var(--hero-accent);
  outline-offset: 3px;
  border-radius: 4px;
}

.hero__read-more-btn:active {
  transform: translateY(0);
}

/* Underline effect */
.hero__read-more-btn::after {
  content: '';
  position: absolute;
  bottom: 6px;
  left: 0;
  right: 0;
  height: 1px;
  background: var(--hero-accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}

.hero__read-more-btn:hover::after {
  transform: scaleX(1);
}

/* Icon styling and animation */
.hero__read-more-icon {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  transition: transform 0.3s ease;
  filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.1));
}

.hero__read-more-btn:hover .hero__read-more-icon {
  transform: translateY(2px);
}

/* Icon rotation when expanded */
.hero__read-more-btn.expanded .hero__read-more-icon {
  transform: rotate(180deg);
}

.hero__read-more-btn.expanded:hover .hero__read-more-icon {
  transform: rotate(180deg) translateY(-2px);
}

/* ==========================================================================
   CTA Buttons - Primary (filled) & Secondary (outlined)
   ========================================================================== */

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--hero-space-md);
  align-items: center;
}

.hero__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: var(--hero-font-family);
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.01em;
  text-decoration: none;
  padding: 16px 28px;
  border-radius: 999px;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  white-space: nowrap;
}

/* Primary Button - Filled, Visually Dominant */
.hero__btn--primary {
  background: var(--hero-text);
  color: var(--hero-bg-primary);
  border: 2px solid var(--hero-text);
  box-shadow: 
    0 4px 16px rgba(0, 0, 0, 0.15),
    0 2px 4px rgba(0, 0, 0, 0.1);
}

.hero__btn--primary:hover {
  background: #fff8fa;
  color: var(--hero-bg-secondary);
  transform: translateY(-3px);
  box-shadow: 
    0 8px 28px rgba(0, 0, 0, 0.2),
    0 4px 8px rgba(0, 0, 0, 0.1);
}

.hero__btn--primary:active {
  transform: translateY(-1px);
  box-shadow: 
    0 4px 12px rgba(0, 0, 0, 0.15),
    0 2px 4px rgba(0, 0, 0, 0.1);
}

.hero__btn--primary:focus-visible {
  outline: 3px solid var(--hero-accent);
  outline-offset: 3px;
}

/* Secondary Button - Outlined */
.hero__btn--secondary {
  background: transparent;
  color: var(--hero-text);
  border: 2px solid rgba(255, 255, 255, 0.5);
}

.hero__btn--secondary:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: var(--hero-text);
  transform: translateY(-3px);
}

.hero__btn--secondary:active {
  transform: translateY(-1px);
  background: rgba(255, 255, 255, 0.08);
}

.hero__btn--secondary:focus-visible {
  outline: 3px solid var(--hero-accent);
  outline-offset: 3px;
}

/* Button Icon */
.hero__btn-icon {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  transition: transform 0.25s ease;
}

.hero__btn:hover .hero__btn-icon {
  transform: translateX(4px);
}

/* ==========================================================================
   Right Column - Illustration Area
   ========================================================================== */

.hero__visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ==========================================================================
   Hero Illustration - Ready for Transparent AI Image
   ========================================================================== */

/*
 * Main illustration container
 * - No background color (transparent by default)
 * - Centered content
 * - Ready for PNG/SVG with transparent background
 */
.hero-illustration {
  position: relative;
  width: 100%;
  max-width: 480px;
  min-height: 340px;
  display: flex;
  align-items: center;
  justify-content: center;
  /* No background - transparent for AI images to blend with hero */
  background: transparent;
}

/* Image/SVG styling */
.hero-illustration__image {
  display: block;
  max-width: 100%;
  max-height: 400px;
  width: auto;
  height: auto;
  object-fit: contain;
  /* Ensure image doesn't overflow */
  overflow: visible;
}

/* 
 * Temporary Placeholder - Remove when adding real image
 * Shows a subtle dashed outline with icon
 */
.hero-illustration--placeholder {
  min-height: 320px;
  border: 2px dashed rgba(255, 255, 255, 0.2);
  border-radius: 24px;
  flex-direction: column;
  gap: 16px;
}

.hero-illustration__placeholder-icon {
  width: 64px;
  height: 64px;
  color: rgba(255, 255, 255, 0.25);
}

.hero-illustration__placeholder-text {
  font-size: 13px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.3);
  text-align: center;
  max-width: 200px;
}

/* 
 * Optional: Subtle glow effect behind image
 * Add class "hero-illustration--with-glow" to enable
 */
.hero-illustration--with-glow::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 80%;
  height: 80%;
  background: radial-gradient(
    ellipse at center,
    rgba(204, 102, 153, 0.2) 0%,
    rgba(255, 153, 187, 0.1) 40%,
    transparent 70%
  );
  border-radius: 50%;
  filter: blur(30px);
  z-index: -1;
  pointer-events: none;
}

/* Golden Path Extension (visible on desktop) */
.hero__golden-path {
  position: absolute;
  bottom: -45px;
  left: 50%;
  transform: translateX(-50%);
  width: 130%;
  height: 160px;
  z-index: 1;
  pointer-events: none;
  opacity: 0.45;
}

/* ==========================================================================
   Responsive Design
   ========================================================================== */

/* Large Desktop */
@media (max-width: 1200px) {
  :root {
    --hero-padding-x: 24px;
    --hero-padding-y: 72px;
  }

  .hero__grid {
    gap: 56px;
  }

  .hero__content {
    max-width: 620px;
  }

  .hero__title {
    max-width: 600px;
  }

  .hero__description {
    max-width: 580px;
  }

  .hero-illustration {
    max-width: 420px;
    min-height: 300px;
  }
}

/* Tablet - Stack Vertically */
@media (max-width: 1024px) {
  :root {
    --hero-padding-y: 56px;
  }

  .hero {
    min-height: auto;
  }

  .hero__grid {
    grid-template-columns: 1fr;
    gap: var(--hero-space-3xl);
    text-align: center;
  }

  .hero__content {
    align-items: center;
    order: 2;
    max-width: 580px;
    margin: 0 auto;
  }

  .hero__title {
    max-width: 520px;
  }

  .hero__description {
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
  }

  .hero__actions {
    justify-content: center;
  }

  .hero__visual {
    order: 1;
  }

  /* Illustration - Tablet */
  .hero-illustration {
    max-width: 380px;
    min-height: 280px;
    margin: 0 auto;
  }

  .hero-illustration--placeholder {
    min-height: 260px;
  }

  .hero__golden-path {
    display: none;
  }

  .hero__shape--1 {
    width: 350px;
    height: 350px;
    top: -140px;
    left: -140px;
  }

  .hero__shape--2 {
    width: 140px;
    height: 140px;
  }
}

/* Mobile */
@media (max-width: 768px) {
  :root {
    --hero-padding-x: 20px;
    --hero-padding-y: 48px;
    --hero-space-lg: 20px;
    --hero-space-xl: 28px;
  }

  .hero__grid {
    gap: var(--hero-space-xl);
  }

  .hero__badge {
    font-size: 12px;
    padding: 8px 14px;
  }

  .hero__title {
    font-size: clamp(28px, 7vw, 36px);
  }

  .hero__description {
    font-size: 16px;
  }

  /* Read more button - mobile adjustments */
  .hero__read-more-btn {
    font-size: 13px;
    padding: 12px 0;
    gap: 5px;
    /* Larger touch target */
    min-height: 44px;
  }

  .hero__read-more-icon {
    width: 14px;
    height: 14px;
  }

  /* Illustration - Mobile */
  .hero-illustration {
    max-width: 320px;
    min-height: 240px;
    margin-top: 8px;
  }

  .hero-illustration--placeholder {
    min-height: 220px;
    border-radius: 20px;
  }

  .hero-illustration__image {
    max-height: 300px;
  }

  .hero-illustration__placeholder-icon {
    width: 48px;
    height: 48px;
  }

  .hero__btn {
    padding: 14px 24px;
    font-size: 14px;
  }
}

/* Small Mobile */
@media (max-width: 480px) {
  :root {
    --hero-padding-x: 16px;
    --hero-padding-y: 40px;
  }

  .hero__grid {
    gap: var(--hero-space-lg);
  }

  .hero__actions {
    flex-direction: column;
    width: 100%;
  }

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

  /* Illustration - Small Mobile */
  .hero-illustration {
    max-width: 280px;
    min-height: 200px;
    margin-top: 16px;
  }

  .hero-illustration--placeholder {
    min-height: 180px;
    border-radius: 16px;
  }

  .hero-illustration__image {
    max-height: 240px;
  }

  .hero__shape--1,
  .hero__shape--2 {
    display: none;
  }

  /* Read more button - small mobile */
  .hero__read-more-btn {
    font-size: 12px;
    padding: 16px 0;
    /* Ensure easy tapping on small screens */
    min-height: 48px;
    margin-top: var(--hero-space-md);
  }
}

/* ==========================================================================
   Scroll Down Indicator - Connected to Golden Journey Line
   ========================================================================== */

/* Golden path colors (matching journey-line.css) */
:root {
  --scroll-gold: #F5C063;
  --scroll-gold-bright: #FFD580;
  --scroll-gold-glow: rgba(245, 192, 99, 0.4);
}

.hero__scroll-indicator {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  cursor: pointer;
  opacity: 0.9;
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.hero__scroll-indicator:hover {
  opacity: 1;
  transform: translateX(-50%) translateY(-2px);
}

.hero__scroll-indicator:focus {
  outline: none;
}

.hero__scroll-indicator:focus-visible {
  outline: 2px solid var(--scroll-gold);
  outline-offset: 4px;
  border-radius: 20px;
}

/* Label text - golden themed */
.hero__scroll-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--scroll-gold);
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
  transition: color 0.3s ease, text-shadow 0.3s ease;
}

.hero__scroll-indicator:hover .hero__scroll-label {
  color: var(--scroll-gold-bright);
  text-shadow: 0 0 8px var(--scroll-gold-glow);
}

/* Pill container - golden border matching journey line */
.hero__scroll-pill {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 56px;
  border-radius: 20px;
  background: rgba(245, 192, 99, 0.1);
  border: 2px solid var(--scroll-gold);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  box-shadow: 0 0 12px rgba(245, 192, 99, 0.15);
  transition: all 0.3s ease;
}

.hero__scroll-indicator:hover .hero__scroll-pill {
  background: rgba(245, 192, 99, 0.2);
  border-color: var(--scroll-gold-bright);
  box-shadow: 0 0 20px var(--scroll-gold-glow), 0 4px 12px rgba(0, 0, 0, 0.15);
}

/* Active/Click state - triggers path highlight */
.hero__scroll-indicator:active .hero__scroll-pill,
.hero__scroll-indicator.is-activating .hero__scroll-pill {
  transform: scale(0.95);
  box-shadow: 0 0 30px var(--scroll-gold-glow), 0 0 60px rgba(245, 192, 99, 0.3);
}

/* Arrow icon - golden color */
.hero__scroll-arrow {
  width: 20px;
  height: 20px;
  color: var(--scroll-gold);
  animation: hero-scroll-bounce 2s ease-in-out infinite;
  filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.2));
  transition: color 0.3s ease, filter 0.3s ease;
}

.hero__scroll-indicator:hover .hero__scroll-arrow {
  color: var(--scroll-gold-bright);
  filter: drop-shadow(0 0 6px var(--scroll-gold-glow));
}

/* Bounce animation */
@keyframes hero-scroll-bounce {
  0%, 100% {
    transform: translateY(-3px);
    opacity: 0.8;
  }
  50% {
    transform: translateY(3px);
    opacity: 1;
  }
}

/* Visual connector from scroll indicator to journey line */
.hero__scroll-connector {
  position: absolute;
  bottom: 100%;
  left: 50%;
  transform: translateX(-50%);
  width: 2px;
  height: 40px;
  background: linear-gradient(
    to bottom,
    transparent 0%,
    var(--scroll-gold) 100%
  );
  opacity: 0.6;
  transition: opacity 0.3s ease, height 0.3s ease;
}

.hero__scroll-indicator:hover .hero__scroll-connector {
  opacity: 0.9;
  height: 50px;
}

/* Alternative: Mouse wheel style indicator */
.hero__scroll-mouse {
  width: 26px;
  height: 42px;
  border-radius: 13px;
  border: 2px solid rgba(255, 255, 255, 0.4);
  position: relative;
  display: flex;
  justify-content: center;
  padding-top: 8px;
}

.hero__scroll-mouse::before {
  content: '';
  width: 4px;
  height: 8px;
  background: rgba(255, 255, 255, 0.7);
  border-radius: 2px;
  animation: hero-scroll-wheel 2s ease-in-out infinite;
}

@keyframes hero-scroll-wheel {
  0%, 100% {
    transform: translateY(0);
    opacity: 1;
  }
  50% {
    transform: translateY(8px);
    opacity: 0.3;
  }
}

/* Responsive adjustments for scroll indicator */
@media (max-width: 1024px) {
  .hero__scroll-indicator {
    bottom: 24px;
  }

  .hero__scroll-connector {
    height: 32px;
  }
}

@media (max-width: 768px) {
  .hero__scroll-indicator {
    bottom: 20px;
  }

  .hero__scroll-pill {
    width: 36px;
    height: 50px;
    border-radius: 18px;
  }

  .hero__scroll-arrow {
    width: 18px;
    height: 18px;
  }

  .hero__scroll-label {
    font-size: 10px;
  }

  .hero__scroll-connector {
    height: 24px;
  }
}

@media (max-width: 480px) {
  .hero__scroll-indicator {
    bottom: 16px;
    /* Larger touch target on small mobile */
    padding: 8px;
    margin: -8px;
  }

  .hero__scroll-label {
    display: none;
  }

  .hero__scroll-pill {
    width: 32px;
    height: 44px;
    border-radius: 16px;
    border-width: 1.5px;
  }

  .hero__scroll-arrow {
    width: 16px;
    height: 16px;
  }

  .hero__scroll-connector {
    height: 20px;
    width: 1.5px;
  }
}

/* Touch device optimizations for scroll indicator */
@media (hover: none) and (pointer: coarse) {
  .hero__scroll-indicator {
    /* Disable hover lift on touch devices */
    transform: translateX(-50%);
  }

  .hero__scroll-indicator:hover {
    transform: translateX(-50%);
  }

  /* Subtle tap feedback instead */
  .hero__scroll-indicator:active {
    opacity: 0.7;
  }

  .hero__scroll-indicator:active .hero__scroll-pill {
    transform: scale(0.95);
  }
}

/* ==========================================================================
   Accessibility - Reduced Motion
   ========================================================================== */

@media (prefers-reduced-motion: reduce) {
  .hero__badge-dot,
  .hero__illustration-blob,
  .hero__scroll-arrow,
  .hero__scroll-mouse::before {
    animation: none;
  }

  .hero__btn,
  .hero__btn-icon,
  .hero__scroll-indicator,
  .hero__scroll-pill,
  .hero__scroll-connector {
    transition: none;
  }

  .hero__scroll-indicator:hover {
    transform: translateX(-50%); /* No lift on hover */
  }
}
