/* HERO CAROUSEL */
.hero-carousel {
  position: relative;
  height: calc(100vh - var(--nav-height));
  overflow: hidden;
}

.hero-logo {
  position: absolute;
  top: 40px;
  right: 60px;
  width: 130px;
  height: auto;
  z-index: 3;
  mix-blend-mode: multiply;
}

.hero-slides-wrapper {
  position: relative;
  height: 100%;
}

.hero-slide {
  position: absolute;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.6s ease;
}

.hero-slide.active {
  opacity: 1;
  pointer-events: auto;
}

.hero-gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.4) 60%, transparent 100%);
}

.hero-container {
  position: relative;
  z-index: 2;
  max-width: 700px;
  padding: 0 80px;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.hero-badge {
  display: inline-block;
  padding: 10px 24px;
  border: 2px solid rgba(249, 115, 22, 0.8);
  border-radius: 30px;
  color: rgba(249, 115, 22, 1);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 24px;
  width: fit-content;
  align-self: center;
}

.hero-title {
  font-size: 56px;
  font-weight: 700;
  color: #ffffff;
  line-height: 1.1;
  margin-bottom: 24px;
  text-align: center;
}

.hero-highlight {
  color: #f97316;
}

.hero-desc {
  font-size: 16px;
  line-height: 1.7;
  color: #e2e8f0;
  margin-bottom: 32px;
  max-width: 650px;
  text-align: center;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  margin-bottom: 48px;
  justify-content: center;
}

.hero-btn-primary {
  padding: 16px 36px;
  background: linear-gradient(135deg, #f97316, #fb923c);
  color: #ffffff;
  border-radius: 50px;
  font-size: 15px;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 10px 30px rgba(249, 115, 22, 0.4);
}

.hero-btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 15px 40px rgba(249, 115, 22, 0.6);
}

.hero-btn-secondary {
  padding: 16px 36px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  color: #ffffff;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-radius: 50px;
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
}

.hero-btn-secondary:hover {
  background: rgba(255, 255, 255, 0.2);
  border-color: rgba(255, 255, 255, 0.5);
}

.hero-features {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}

.hero-features span {
  padding: 10px 20px;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 25px;
  color: #ffffff;
  font-size: 13px;
  font-weight: 500;
}

.hero-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(10px);
  color: white;
  border: 1px solid rgba(255, 255, 255, 0.3);
  font-size: 20px;
  cursor: pointer;
  z-index: 10;
  transition: all 0.3s ease;
}

.hero-arrow:hover {
  background: rgba(249, 115, 22, 0.9);
  border-color: #f97316;
}

.hero-arrow.left {
  left: 30px;
}

.hero-arrow.right {
  right: 30px;
}

.hero-dots {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 12px;
  z-index: 10;
}

.dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.4);
  cursor: pointer;
  transition: all 0.3s ease;
}

.dot.active {
  background: #f97316;
  width: 32px;
  border-radius: 6px;
}

@media (max-width: 768px) {
  .hero-carousel {
    display: none;
  }
}
