/* Enhanced Hero Sections */

.hero {
  position: relative;
  background: linear-gradient(135deg, var(--color-primary-light) 0%, var(--color-primary) 100%);
  overflow: hidden;
  padding: clamp(4rem, 12vw, 8rem) 0;
}

.hero__image {
  flex: 1;
  max-width: 500px;
  overflow: hidden;
  border-radius: var(--radius-xl);
}

.hero__image img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: var(--radius-xl);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: url('data:image/svg+xml,<svg width="60" height="60" viewBox="0 0 60 60" xmlns="http://www.w3.org/2000/svg"><circle cx="30" cy="30" r="1" fill="rgba(255,255,255,0.1)"/></svg>');
  opacity: 0.3;
  pointer-events: none;
}

.hero__container {
  position: relative;
  z-index: 1;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--spacing-4);
}

.hero__content {
  max-width: 700px;
}

.hero__title {
  color: var(--color-white);
  font-size: clamp(2rem, 6vw, 3.5rem);
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: var(--spacing-4);
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.hero__description {
  color: rgba(255, 255, 255, 0.95);
  font-size: clamp(1.125rem, 2.5vw, 1.375rem);
  line-height: 1.6;
  margin-bottom: var(--spacing-6);
}

.hero__actions {
  display: flex;
  gap: var(--spacing-3);
  flex-wrap: wrap;
}

/* Hero Variant - Light */
.hero--light {
  background: linear-gradient(135deg, rgba(64,181,168,0.1) 0%, rgba(255,255,255,1) 100%);
}

.hero--light .hero__title {
  color: var(--color-text-primary);
  text-shadow: none;
}

.hero--light .hero__description {
  color: var(--color-text-secondary);
}

/* Hero Stats */
.hero-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: var(--spacing-6);
  margin-top: var(--spacing-8);
}

.hero-stat {
  text-align: center;
  padding: var(--spacing-4);
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border-radius: var(--radius-xl);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.hero-stat__number {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: var(--color-white);
  line-height: 1;
  margin-bottom: var(--spacing-2);
}

.hero-stat__label {
  font-size: var(--font-size-sm);
  color: rgba(255, 255, 255, 0.9);
  font-weight: var(--font-weight-medium);
}

.hero--light .hero-stat {
  background: rgba(64, 181, 168, 0.08);
  border-color: rgba(64, 181, 168, 0.2);
}

.hero--light .hero-stat__number {
  color: var(--color-primary);
}

.hero--light .hero-stat__label {
  color: var(--color-text-secondary);
}

/* Responsive */
@media (max-width: 768px) {
  .hero {
    padding: clamp(3rem, 10vw, 6rem) 0;
  }

  .hero__actions {
    flex-direction: column;
  }

  .hero__actions .btn {
    width: 100%;
    justify-content: center;
  }

  .hero-stats {
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-4);
  }
}
