/* ============================================
   HERO & PREMIUM SECTIONS
   ============================================ */

/* Premium Hero Section */
.hero-premium {
  position: relative;
  width: 100%;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 120px 0 80px;
  background: var(--color-bg-base);
}

.hero-bg {
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.hero-bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  animation: slowZoom 20s infinite alternate;
}

.hero-overlay {
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.4) 0%,
    rgba(0, 0, 0, 0.1) 40%,
    rgba(0, 0, 0, 0.3) 70%,
    var(--color-bg-base) 100%
  );
  z-index: 2;
}

.hero-container {
  position: relative;
  z-index: 10;
  text-align: center;
  max-width: 1000px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
  border-radius: var(--radius-full);
  font-size: 0.875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 24px;
  color: var(--color-orange);
  box-shadow: var(--shadow-sm);
}

.hero-container h1 {
  font-size: clamp(3rem, 10vw, 6rem);
  font-weight: 900;
  line-height: 0.9;
  letter-spacing: -0.04em;
  margin-bottom: 24px;
  color: #ffffff;
  text-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

.hero-container p {
  font-size: clamp(1.125rem, 2.5vw, 1.5rem);
  color: rgba(255, 255, 255, 0.9);
  max-width: 700px;
  margin: 0 auto 40px;
  line-height: 1.5;
  text-shadow: 0 2px 10px rgba(0,0,0,0.3);
}

.hero-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 64px;
}

/* Stats */
.hero-stats {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  padding-top: 40px;
  border-top: 1px solid var(--color-border);
}

.stat-item {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.stat-num {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--color-text);
}

.stat-label {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--color-text-muted);
  letter-spacing: 1px;
}

.stat-divider {
  width: 1px;
  height: 40px;
  background: var(--color-border);
}

/* Scroll Indicator */
.scroll-indicator {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  font-size: 1.5rem;
  color: var(--color-text-muted);
  animation: bounce 2s infinite;
}

@keyframes bounce {
  0%, 20%, 50%, 80%, 100% {transform: translateY(0) translateX(-50%);}
  40% {transform: translateY(-10px) translateX(-50%);}
  60% {transform: translateY(-5px) translateX(-50%);}
}

@keyframes slowZoom {
  0% { transform: scale(1); }
  100% { transform: scale(1.1); }
}

/* Features */
.section-features {
  background: var(--color-bg-base);
  position: relative;
}

.section-title-premium {
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 900;
  letter-spacing: -0.02em;
  line-height: 1.1;
  margin-bottom: 16px;
}

.section-subtitle {
  color: var(--color-text-secondary);
  font-size: 1.25rem;
  margin-bottom: 48px;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 32px;
}

.feature-card {
  position: relative;
  padding: 48px 32px;
  background: var(--color-bg-card);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  transition: var(--transition-normal);
  overflow: hidden;
}

.feature-card:hover {
  transform: translateY(-8px);
  border-color: var(--color-orange);
  box-shadow: var(--shadow-lg);
}

.feature-icon {
  width: 60px;
  height: 60px;
  background: hsla(var(--h-orange), var(--s-orange), var(--l-orange), 0.08);
  border: 1px solid hsla(var(--h-orange), var(--s-orange), var(--l-orange), 0.15);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: var(--color-orange);
  margin-bottom: 24px;
  transition: var(--transition-normal);
}

.feature-card:hover .feature-icon {
  background: var(--color-orange);
  color: #000;
  border-color: var(--color-orange);
  transform: scale(1.05);
}

.feature-card h3 {
  font-size: 1.375rem;
  font-weight: 800;
  margin-bottom: 12px;
  letter-spacing: -0.01em;
}

.feature-card p {
  color: var(--color-text-secondary);
  line-height: 1.7;
  font-size: 0.9375rem;
}

.feature-number {
  position: absolute;
  top: 20px; right: 24px;
  font-size: 5rem;
  font-weight: 900;
  color: var(--color-border);
  opacity: 0.06;
  line-height: 1;
  letter-spacing: -0.04em;
  pointer-events: none;
}

/* Highlight Section */
.highlight-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.highlight-image {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.highlight-image img {
  width: 100%;
  transition: var(--transition-normal);
}

.highlight-image:hover img {
  transform: scale(1.05);
}

.check-list {
  list-style: none;
  margin: 32px 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.check-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 600;
  font-size: 0.9375rem;
}

.check-list i {
  color: var(--color-success);
  font-size: 1.25rem;
  flex-shrink: 0;
}

/* CTA Section */
.section-cta {
  position: relative;
  padding: 100px 0;
  background: var(--color-bg-secondary);
  overflow: hidden;
}

.cta-glow {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 600px;
  height: 600px;
  background: var(--color-orange-glow);
  filter: blur(150px);
  opacity: 0.2;
  z-index: 1;
}

.cta-content {
  position: relative;
  z-index: 2;
}

.cta-actions {
  display: flex;
  gap: 20px;
  justify-content: center;
  margin-top: 40px;
}

@media (max-width: 992px) {
  .highlight-split {
    grid-template-columns: 1fr;
    gap: 48px;
  }
}

@media (max-width: 768px) {
  .hero-premium {
    padding: 100px 0 60px;
  }
  .hero-stats {
    flex-wrap: wrap;
    gap: 24px;
  }
  .stat-divider { display: none; }
  .cta-actions { flex-direction: column; }
}
