/**
 * Hero / Slider
 */
.hero { height: 100vh; min-height: 680px; position: relative; overflow: hidden; }
.slide { position: absolute; inset: 0; opacity: 0; transition: opacity 1.2s ease; pointer-events: none; }
.slide.active { opacity: 1; pointer-events: auto; }
.slide-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transform: scale(1.05);
  transition: transform 10s linear;
}
.slide.active .slide-bg { transform: scale(1); }
.slide-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(13,13,13,.8) 0%, rgba(13,13,13,.4) 60%, rgba(255,107,0,.08) 100%);
}
.slide-content { position: absolute; inset: 0; display: flex; align-items: center; padding: 0 24px; }
.slide-inner { max-width: 1300px; margin: 0 auto; width: 100%; }
.slide-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  background: rgba(255,107,0,.15);
  border: 1px solid rgba(255,107,0,.4);
  border-radius: 20px;
  font-size: .78rem;
  font-weight: 600;
  color: var(--brand);
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 20px;
  animation: fadeInUp .8s .25s both;
}
.slide-title {
  font-family: var(--font-head);
  font-size: clamp(2.2rem, 5vw, 4.5rem);
  font-weight: 800;
  line-height: 1.1;
  color: var(--white);
  margin-bottom: 18px;
  max-width: 720px;
  animation: fadeInUp .8s .4s both;
}
.slide-title em { color: var(--brand); font-style: normal; }
.slide-subtitle {
  font-size: 1.1rem;
  color: rgba(255,255,255,.7);
  max-width: 560px;
  margin-bottom: 36px;
  animation: fadeInUp .8s .55s both;
  line-height: 1.6;
}
.slide-btns { display: flex; gap: 14px; flex-wrap: wrap; animation: fadeInUp .8s .7s both; }
.hero-scroll {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,.5);
  font-size: .72rem;
  letter-spacing: 2px;
  text-transform: uppercase;
}
.scroll-line {
  width: 1px;
  height: 50px;
  background: linear-gradient(to bottom, rgba(255,107,0,.8), transparent);
  animation: scrollLine 1.5s ease-in-out infinite;
}
.slider-nav { position: absolute; bottom: 50px; right: 60px; display: flex; gap: 8px; z-index: 10; }
.sn-dot {
  width: 32px;
  height: 3px;
  border-radius: 2px;
  background: rgba(255,255,255,.25);
  cursor: pointer;
  transition: all .3s;
}
.sn-dot.active { background: var(--brand); width: 48px; }
.slider-arrows {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 100%;
  display: flex;
  justify-content: space-between;
  padding: 0 20px;
  z-index: 10;
}
.sarr {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.15);
  color: #fff;
  cursor: pointer;
  display: none;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  transition: all .2s;
  backdrop-filter: blur(10px);
}
.sarr:hover { background: var(--brand); border-color: var(--brand); }
@keyframes fadeInUp { from { opacity: 0; transform: translateY(28px); } to { opacity: 1; transform: translateY(0); } }
@keyframes scrollLine { 0%, 100% { opacity: 0; transform: scaleY(0) translateY(-100%); } 50% { opacity: 1; transform: scaleY(1) translateY(0); } }
