/* ===== HERO SECTION ===== */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, var(--green-900) 0%, var(--green-800) 40%, var(--green-700) 100%);
  padding-top: 80px;
  padding-bottom: 120px;
}

.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 800px;
  height: 800px;
  background: radial-gradient(circle, rgba(212,175,55,0.15) 0%, transparent 70%);
  border-radius: 50%;
  animation: heroGlow 8s ease-in-out infinite;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -10%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(76,175,80,0.2) 0%, transparent 70%);
  border-radius: 50%;
  animation: heroGlow 10s ease-in-out infinite reverse;
}

@keyframes heroGlow {
  0%, 100% { transform: scale(1) translate(0, 0); }
  50% { transform: scale(1.1) translate(20px, -20px); }
}

.hero-pattern {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image:
    radial-gradient(circle at 20% 50%, rgba(255,255,255,0.03) 1px, transparent 1px),
    radial-gradient(circle at 80% 20%, rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 60px 60px;
}

.hero .container {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.hero-content {
  color: var(--white);
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 18px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 6px;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 24px;
  backdrop-filter: blur(10px);
  letter-spacing: 0.3px;
}
.hero-badge i { display: none; }
.hero-badge::before {
  content: ''; width: 6px; height: 6px;
  background: var(--gold-400);
  border-radius: 50%; flex-shrink: 0;
}

.hero-title {
  font-size: 3.2rem;
  font-weight: 900;
  line-height: 1.3;
  margin-bottom: 24px;
  animation: fadeInUp 0.8s ease 0.2s both;
}

.hero-title .highlight {
  background: linear-gradient(135deg, var(--gold-400), var(--gold-500));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-desc {
  font-size: 1.15rem;
  line-height: 1.9;
  opacity: 0.9;
  margin-bottom: 36px;
  max-width: 520px;
  animation: fadeInUp 0.8s ease 0.4s both;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  animation: fadeInUp 0.8s ease 0.6s both;
}

.hero-stats {
  display: flex;
  gap: 40px;
  margin-top: 50px;
  animation: fadeInUp 0.8s ease 0.8s both;
}

.hero-stat {
  text-align: center;
}

.hero-stat-number {
  font-size: 2.5rem;
  font-weight: 900;
  color: var(--gold-400);
  display: block;
}

.hero-stat-label {
  font-size: 0.85rem;
  opacity: 0.8;
  margin-top: 4px;
}

/* Full Slide Hero */
.hero-full-slide {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  opacity: 0;
  transition: opacity 1s ease;
  pointer-events: none;
  z-index: 1;
}
.hero-full-slide.active {
  position: relative;
  opacity: 1;
  pointer-events: all;
  z-index: 2;
}
.hero-full-slide .container {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.hero-full-slide .hero-content {
  animation: fadeInRight 0.8s ease both;
}
.hero-full-slide.active .hero-visual {
  animation: fadeInLeft 0.8s ease 0.2s both;
}

.hero-visual {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.hero-slider {
  position: relative;
  width: 100%;
  max-width: 480px;
}

.hero-slider img {
  width: 100%;
  border-radius: var(--radius-xl);
  box-shadow: 0 30px 60px rgba(0,0,0,0.3);
}

/* Hero Dots */
.hero-dots {
  position: absolute;
  bottom: 120px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
  z-index: 10;
}
.hero-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255,255,255,0.4);
  cursor: pointer;
  transition: all 0.3s ease;
  border: 2px solid rgba(255,255,255,0.6);
}
.hero-dot.active {
  background: var(--gold-500);
  border-color: var(--gold-500);
  transform: scale(1.2);
}

.hero-float-card {
  position: absolute;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(20px);
  border-radius: var(--radius-md);
  padding: 16px 20px;
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
  gap: 12px;
  animation: float 4s ease-in-out infinite;
}

.hero-float-card.top-right {
  top: -20px;
  left: -30px;
}

.hero-float-card.bottom-left {
  bottom: 30px;
  right: -30px;
  animation-delay: 1s;
}

.hero-float-card .icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
}

.hero-float-card .icon.green { background: var(--green-100); color: var(--green-800); }
.hero-float-card .icon.gold { background: var(--gold-100); color: var(--gold-700); }

.hero-float-card .info strong {
  display: block;
  font-size: 0.85rem;
  color: var(--neutral-900);
}

.hero-float-card .info span {
  font-size: 0.75rem;
  color: var(--neutral-500);
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}

@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeInLeft {
  from { opacity: 0; transform: translateX(40px); }
  to { opacity: 1; transform: translateX(0); }
}

@keyframes fadeInRight {
  from { opacity: 0; transform: translateX(-40px); }
  to { opacity: 1; transform: translateX(0); }
}

/* Hero wave divider */
.hero-wave {
  position: absolute;
  bottom: -2px;
  left: 0;
  right: 0;
  z-index: 3;
}

.hero-wave svg {
  display: block;
  width: 100%;
  height: auto;
}

/* Responsive */
@media (max-width: 992px) {
  .hero { padding-top: 90px; padding-bottom: 100px; min-height: auto; }
  .hero-full-slide .container {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 30px;
    padding: 0 20px;
  }
  .hero-title { font-size: 2rem; }
  .hero-desc { margin: 0 auto 28px; font-size: 1rem; }
  .hero-actions { justify-content: center; flex-direction: column; align-items: center; }
  .hero-actions .btn { width: 100%; max-width: 300px; justify-content: center; }
  .hero-stats { justify-content: center; flex-wrap: wrap; gap: 24px; margin-top: 30px; }
  .hero-stat-number { font-size: 2rem; }
  .hero-visual { order: -1; }
  .hero-slider { max-width: 280px; margin: 0 auto; }
  .hero-float-card { display: none; }
  .hero-badge { font-size: 0.8rem; padding: 8px 16px; }
  .hero-dots { bottom: 90px; }
}

@media (max-width: 576px) {
  .hero { padding-top: 85px; padding-bottom: 80px; }
  .hero-full-slide .container { gap: 20px; }
  .hero-title { font-size: 1.6rem; line-height: 1.5; }
  .hero-desc { font-size: 0.9rem; }
  .hero-stats { gap: 16px; margin-top: 24px; }
  .hero-stat { min-width: 80px; }
  .hero-stat-number { font-size: 1.6rem; }
  .hero-stat-label { font-size: 0.75rem; }
  .hero-slider { max-width: 220px; }
  .hero-wave svg { height: 40px; }
  .hero-dots { bottom: 70px; }
}
