/* =========================
   HERO SECTION
========================= */

.hero {
  min-height: 100vh;
  padding: 38px 0 60px;
  display: flex;
  align-items: center;
  background: #000;
  overflow: hidden;
}

.hero-container {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 2.5rem;
  max-width: 95%;
  margin: 0 auto;
}

/* =========================
   LEFT CONTENT
========================= */

.hero-content {
  border: 1px solid rgba(255,255,255,0.25);
  background: #0a0a0a;
  padding: 4.5rem 3.2rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.hero-badge {
  padding: 6px 16px;
  border-radius: 999px;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--primary);
  border: 1px solid rgba(212,175,55,0.3);
  margin-bottom: 2rem;
  width: fit-content;
}

.hero-content h1 {
  font-size: clamp(2.4rem, 4vw, 3.4rem);
  line-height: 1.1;
  margin-bottom: 1.6rem;
}

.hero-content .highlight {
  color: var(--primary);
}

.hero-content p {
  max-width: 520px;
  color: var(--text-secondary);
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  gap: 1.4rem;
  margin-top: 3rem;
}

/* =========================
   RIGHT VISUAL
========================= */

.hero-card {
  position: relative;
  width: 100%;
  max-width: 720px;
  height: 520px;
  border: 1px solid rgba(255,255,255,0.25);
  overflow: hidden;
  background: #000;
}

.hero-visual {
  position: relative;
  width: 100%;
  max-width: 720px;
  height: 520px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.25);
}

.hero-slides {
  position: relative;
  width: 100%;
  height: 100%;
}

/* Slides */
.hero-slide {
  position: absolute;
  inset: 0;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  opacity: 0;
  transform: scale(1.05);
  transition: opacity 1.2s ease, transform 6s ease-out;
  pointer-events: none;
}

.hero-slide.active {
  opacity: 1;
  transform: scale(1.1);
  pointer-events: auto;
}

/* Caption */
.slide-caption {
  position: absolute;
  bottom: 24px;
  left: 24px;
  background: rgba(0,0,0,0.75);
  padding: 12px 18px;
  border-left: 3px solid var(--primary);
  z-index: 10;
  backdrop-filter: blur(10px);
}

.slide-caption span {
  font-size: 0.75rem;
  color: var(--primary);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.slide-caption h3 {
  font-size: 1.1rem;
  margin-top: 4px;
  color: #fff;
}

/* Dots */
.hero-controls {
  position: absolute;
  bottom: 24px;
  right: 24px;
  display: flex;
  gap: 8px;
  z-index: 10;
}

.hero-controls .dot {
  width: 10px;
  height: 10px;
  background: rgba(255,255,255,0.3);
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.3s ease;
  border: 1px solid rgba(255,255,255,0.2);
}

.hero-controls .dot:hover {
  background: rgba(212,175,55,0.6);
  transform: scale(1.2);
  border-color: var(--primary);
}

.hero-controls .dot.active {
  background: var(--primary);
  transform: scale(1.15);
  box-shadow: 0 0 10px rgba(212,175,55,0.5);
}

/* =========================
   RESPONSIVE
========================= */

@media (max-width: 1100px) {
  .hero-container {
    grid-template-columns: 1fr;
  }

  .hero-card,
  .hero-visual {
    height: 420px;
  }
}

@media (max-width: 768px) {
  .hero {
    padding: 90px 0 40px;
  }

  .hero-content {
    padding: 3rem 2rem;
  }

  .hero-actions {
    flex-direction: column;
  }

  .hero-card,
  .hero-visual {
    height: 320px;
  }

  .slide-caption {
    bottom: 16px;
    left: 16px;
    padding: 10px 14px;
  }

  .slide-caption span {
    font-size: 0.7rem;
  }

  .slide-caption h3 {
    font-size: 0.95rem;
  }

  .hero-controls {
    bottom: 16px;
    right: 16px;
    gap: 6px;
  }

  .hero-controls .dot {
    width: 8px;
    height: 8px;
  }
}