/* --- HERO SECTION --- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: -2;
}

.hero-bg-img {
  width: 100%;
  height: 120%;
  object-fit: cover;
  transform: translateY(0);
  will-change: transform;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: var(--color-overlay-gradient);
  z-index: -1;
}

.hero-cloud {
  position: absolute;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  filter: blur(30px);
  animation: cloudFloat 20s linear infinite;
}

.hero-cloud--1 {
  width: 200px;
  height: 60px;
  top: 15%;
  left: -200px;
  animation-duration: 25s;
}

.hero-cloud--2 {
  width: 150px;
  height: 45px;
  top: 25%;
  left: -150px;
  animation-duration: 35s;
  animation-delay: 10s;
}

@keyframes cloudFloat {
  to { transform: translateX(calc(100vw + 400px)); }
}

.hero-leaf {
  position: absolute;
  width: 15px;
  height: 15px;
  background: var(--color-primary-light);
  border-radius: 50% 0 50% 0;
  opacity: 0.2;
  animation: leafFall linear infinite;
}

.hero-leaf--1 { left: 20%; animation-duration: 8s; animation-delay: 0s; }
.hero-leaf--2 { left: 60%; animation-duration: 12s; animation-delay: 3s; }
.hero-leaf--3 { left: 80%; animation-duration: 10s; animation-delay: 5s; }

@keyframes leafFall {
  0% { transform: translateY(-50px) rotate(0deg) translateX(0); opacity: 0; }
  10% { opacity: 0.2; }
  100% { transform: translateY(100vh) rotate(720deg) translateX(100px); opacity: 0; }
}

.hero-content {
  text-align: center;
  color: var(--color-white);
  max-width: 900px;
  padding: var(--space-8) var(--space-5);
  position: relative;
  z-index: var(--z-base);
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  background: rgba(255,255,255,0.15);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.2);
  padding: var(--space-2) var(--space-5);
  border-radius: var(--radius-full);
  font-size: var(--text-sm);
  font-weight: 500;
  margin-bottom: var(--space-6);
}

.hero-badge-icon {
  width: 16px;
  height: 16px;
  fill: var(--color-accent-sunset);
}

.hero-title {
  font-size: clamp(var(--text-4xl), 7vw, var(--text-5xl));
  font-weight: 800;
  line-height: 1.05;
  margin-bottom: var(--space-5);
  color: var(--color-white);
}

.hero-title-line {
  display: block;
}

.hero-subtitle {
  font-size: var(--text-lg);
  color: rgba(255,255,255,0.85);
  max-width: 600px;
  margin: 0 auto var(--space-8);
  line-height: 1.7;
}

.hero-buttons {
  display: flex;
  gap: var(--space-5);
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: var(--space-10);
}

.hero-stats {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-6);
  padding-top: var(--space-6);
  border-top: 1px solid rgba(255,255,255,0.15);
}

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

.hero-stat-number {
  display: block;
  font-family: var(--font-heading);
  font-size: var(--text-3xl);
  font-weight: 800;
  color: var(--color-accent-sunset);
}

.hero-stat-label {
  font-size: var(--text-sm);
  color: rgba(255,255,255,0.6);
}

.hero-stat-divider {
  width: 1px;
  height: 40px;
  background: rgba(255,255,255,0.15);
}

.hero-scroll-indicator {
  position: absolute;
  bottom: var(--space-8);
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-2);
  color: rgba(255,255,255,0.5);
  font-size: var(--text-xs);
  animation: scrollBounce 2s ease infinite;
}

.scroll-arrow svg {
  width: 24px;
  height: 24px;
  stroke: rgba(255,255,255,0.6);
  fill: none;
  stroke-width: 2;
}

@keyframes scrollBounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(10px); }
}
