
/* ── Hero Section (Modular) ── */
.v2-hero-slider { width: 100%; height: 100vh; position: relative; overflow: hidden; background: #fff; }
.v2-hero-slide { position: relative; width: 100%; height: 100vh; display: flex; align-items: center; overflow: hidden; }

.v2-hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover !important;
  background-position: center center !important;
  z-index: 1;
}

.v2-hero-slide::before { 
  content: ''; 
  position: absolute; 
  inset: 0; 
  background: linear-gradient(to right, rgba(10, 15, 30, 0.85) 0%, rgba(10, 15, 30, 0.4) 50%, transparent 100%); 
  z-index: 2; 
}

.v2-hero-slide .container { position: relative; z-index: 10; text-align: left; }

/* Hero Transitions */
.v2-hero-slide .hero-tag, 
.v2-hero-slide .hero-title, 
.v2-hero-slide .hero-subtitle, 
.v2-hero-slide .ds-hero-cta { 
  opacity: 0; 
  transition: all 2.2s cubic-bezier(0.19, 1, 0.22, 1); 
}

.v2-hero-slide .hero-tag { 
  transform: translateY(40px); 
  color: #fff; 
  display: inline-block; 
  padding: 10px 24px; 
  background: var(--v2-primary); 
  border-radius: 4px; 
  font-weight: 700; 
  text-transform: uppercase; 
  margin-bottom: 25px; 
  font-size: 0.85rem;
  letter-spacing: 1px;
}

.v2-hero-slide .hero-title { 
  transform: translateY(-80px); 
  color: #fff; 
  font-weight: 800; 
  font-size: clamp(2.5rem, 5vw, 4.5rem); 
  line-height: 1.1;
  margin-bottom: 25px;
}

.v2-hero-slide .hero-subtitle { 
  transform: translateY(80px); 
  font-size: 1.25rem; 
  color: rgba(255, 255, 255, 0.95); 
  max-width: 700px; 
  margin-bottom: 45px; 
  line-height: 1.6;
}

.v2-hero-slide .ds-hero-cta { transform: translateY(120px); }

.swiper-slide-active .hero-tag, 
.swiper-slide-active .hero-title, 
.swiper-slide-active .hero-subtitle, 
.swiper-slide-active .ds-hero-cta { opacity: 1; transform: translateY(0); }
