.hero {
  padding: 0 var(--container-padding) clamp(16px, 3vw, 32px);
}

.hero__container {
  position: relative;
  width: 100%;
  min-height: clamp(420px, 70vh, 720px);
  border-radius: clamp(16px, 5vw, 40px);
  overflow: hidden;
  background-image: var(--hero-bg);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(0, 0, 0, 0.45) 0%,
    rgba(0, 0, 0, 0.25) 50%,
    rgba(0, 0, 0, 0.35) 100%
  );
  pointer-events: none;
}

.hero__content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: clamp(420px, 70vh, 720px);
  padding: clamp(32px, 6vw, 80px);
}

.hero__main {
  display: flex;
  flex-direction: column;
  justify-content: center;
  flex: 1;
  gap: clamp(24px, 4vw, 40px);
  max-width: 700px;
}

.hero__title {
  font-size: clamp(2rem, 6vw, 4.5rem);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  line-height: 1.1;
  color: var(--color-white);
}

.hero__cta {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  color: var(--color-white);
  transition: opacity var(--transition);
  width: fit-content;
  border: none;
  background: none;
  padding: 0;
  font: inherit;
  cursor: pointer;
  text-decoration: none;
}

.hero__cta:hover {
  opacity: 0.85;
}

.hero__cta-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: clamp(44px, 5vw, 52px);
  height: clamp(44px, 5vw, 52px);
  border-radius: 50%;
  background: var(--color-white);
  color: var(--color-black);
  flex-shrink: 0;
}

.hero__cta-text {
  font-size: clamp(0.875rem, 1.5vw, 1rem);
  font-weight: 400;
}

.hero__stats {
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
  gap: clamp(32px, 6vw, 80px);
  margin-left: auto;
}

.hero__stat {
  display: flex;
  flex-direction: column;
  gap: 4px;
  text-align: left;
}

.hero__stat-value {
  font-size: clamp(1rem, 2vw, 1.375rem);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--color-white);
  line-height: 1.2;
}

.hero__stat-label {
  font-size: clamp(0.6875rem, 1.2vw, 0.8125rem);
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.3;
  max-width: 200px;
}

@media (max-width: 768px) {
  .hero__content {
    justify-content: flex-end;
    gap: 40px;
  }

  .hero__main {
    flex: 0;
  }

  .hero__stats {
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    margin-left: 0;
    gap: 24px;
  }
}

@media (max-width: 480px) {
  .hero__stat-label {
    max-width: none;
  }
}
