/* ===== HERO ===== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: #0a0a0a;
  overflow: hidden;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 50% at 50% -20%, rgba(230, 57, 70, 0.15) 0%, transparent 70%),
    radial-gradient(ellipse 60% 40% at 80% 100%, rgba(69, 123, 157, 0.1) 0%, transparent 60%);
}

.hero__content {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: var(--space-3xl) 0;
}

.hero__title {
  color: var(--color-white);
  font-size: var(--font-size-hero);
  font-weight: 400;
  margin-bottom: var(--space-lg);
  line-height: 1.1;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.hero__title span {
  color: var(--color-primary);
}

.hero__subtitle {
  color: var(--color-gray-200);
  font-size: var(--font-size-xl);
  max-width: 600px;
  margin: 0 auto var(--space-2xl);
  line-height: 1.5;
}

.hero__ctas {
  display: flex;
  gap: var(--space-md);
  justify-content: center;
  flex-wrap: wrap;
}

/* ===== FEATURED PRODUCTS ===== */
.featured-card .card__body {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

.featured-card .badge {
  align-self: flex-start;
}

.featured-card .btn {
  align-self: flex-start;
  margin-top: var(--space-sm);
}

/* ===== USP GRID ===== */
.usp-card {
  text-align: center;
  padding: var(--space-2xl) var(--space-lg);
}

.usp-card__icon {
  width: 56px;
  height: 56px;
  margin: 0 auto var(--space-lg);
}

.usp-card__icon svg {
  width: 100%;
  height: 100%;
}

.usp-card__title {
  font-family: var(--font-heading);
  font-size: var(--font-size-xl);
  font-weight: 700;
  margin-bottom: var(--space-sm);
}

.usp-card__text {
  color: var(--color-gray-500);
  font-size: var(--font-size-sm);
  line-height: 1.7;
}
