.hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  overflow: hidden;
}
.hero-slider { position: relative; height: 100%; }
.hero-slide {
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 0.8s ease;
  z-index: 0;
}
.hero-slide.active { opacity: 1; z-index: 1; }
.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  will-change: transform;
  z-index: 0;
}
.hero-slide.active .hero-bg {
  animation: zoomHero 7s ease-in-out infinite alternate;
}
@media (max-width: 860px) {
  .hero-bg {
    background-position: 70% center;
  }
}
@keyframes zoomHero {
  from {
    transform: scale(1) perspective(10%);
  }
  to {
    transform: scale(1.2);
  }
}
.hero-overlay {
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  background: var(--gradient-hero);
}
.hero-overlay::after {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(197,192,186,0.03), transparent 50%);
}
.hero-content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100vh;
  min-height: 600px;
  max-width: 700px;
  padding-top: 80px;
}
.hero-badge {
  display: inline-block;
  padding: 8px 20px;
  background: rgba(30,26,24,0.4);
  border: 1px solid rgba(197,192,186,0.3);
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--steel);
  margin-bottom: 24px;
  width: fit-content;
  backdrop-filter: blur(12px);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.1);
}
.hero-content h2 {
  font-size: 2.65rem;
  font-weight: 800;
  line-height: 1.1;
  color: var(--white);
  margin-bottom: 20px;
}
.hero-content p {
  font-size: 1.2rem;
  color: rgba(253,248,247,0.8);
  line-height: 1.7;
  margin-bottom: 36px;
  max-width: 580px;
  font-weight: 550;
}
.hero-cta { display: flex; gap: 16px; flex-wrap: wrap; }
.hero-controls {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  display: flex;
  align-items: center;
  gap: 16px;
}
.hero-arrow {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(253,248,247,0.15);
  border: 1px solid rgba(253,248,247,0.25);
  color: var(--white);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition);
  backdrop-filter: blur(10px);
}
.hero-arrow:hover {
  background: var(--gradient-copper);
  border-color: var(--copper-red);
  box-shadow: 0 4px 15px rgba(199,59,29,0.4);
}
.hero-arrow .icon-arrow {
  fill: currentColor;
  height: 20px;
  width: 20px;
  display: block;
  max-width: 100%;
  max-height: 100%;
}
.hero-dots { display: flex; gap: 8px; }
.hero-dots .dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(253,248,247,0.3);
  border: none;
  cursor: pointer;
  transition: all var(--transition);
}
.hero-dots .dot.active {
  background: var(--copper-red);
  width: 30px;
  border-radius: 5px;
}
