.home-hero {
  min-height: 680px;
  padding-top: 68px;
  background: var(--navy);
}

.home-hero::before,
.home-hero::after { content: none; }

.home-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    radial-gradient(circle at 78% 18%, rgba(10,46,82,0.24) 0%, rgba(10,46,82,0.7) 48%, rgba(10,46,82,0.94) 100%),
    linear-gradient(90deg, rgba(6,24,44,0.96) 0%, rgba(10,46,82,0.88) 48%, rgba(10,46,82,0.68) 100%);
  pointer-events: none;
}

.home-hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}

.home-carousel .home-slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center;
  opacity: 0;
  filter: brightness(0.58) saturate(0.92) contrast(1.08);
  transform: scale(1.03);
  transition: opacity 0.8s ease, transform 4.8s ease;
}

.home-carousel .home-slide.active {
  opacity: 1;
  transform: scale(1);
}

.home-hero-inner {
  position: relative;
  z-index: 2;
  display: block;
  padding: 6rem 0 4.8rem;
}

.home-hero .hero-content {
  max-width: 820px;
}

.home-hero .hero-title,
.home-hero .hero-subtitle,
.home-hero .hero-secondary,
.home-hero .hero-stats {
  text-shadow: 0 10px 30px rgba(0,0,0,0.48);
}

.home-carousel-dots {
  position: absolute;
  right: max(1.5rem, calc((100vw - 1120px) / 2 + 1.5rem));
  bottom: 1.6rem;
  z-index: 2;
  display: flex;
  gap: 0.38rem;
}

.home-carousel-dots span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,0.55);
}

.home-carousel-dots span.active { background: var(--gold); }

.home-shop-feature {
  background: linear-gradient(180deg, #ffffff 0%, var(--smoke) 100%);
}

.home-kit-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 2.4rem;
}

.home-kit-card {
  display: grid;
  grid-template-columns: 120px minmax(0, 1fr);
  gap: 1rem;
  align-items: center;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 1rem;
  box-shadow: 0 3px 12px rgba(10,46,82,0.04);
  transition: transform 0.18s, box-shadow 0.18s, border-color 0.18s;
}

.home-kit-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow);
  border-color: rgba(30,136,229,0.2);
}

.home-kit-card img {
  width: 120px;
  height: 120px;
  object-fit: contain;
  border-radius: 8px;
  background: var(--smoke);
  padding: 0.75rem;
}

.home-kit-card .card-title {
  font-size: 0.98rem;
  margin-top: 0.45rem;
}

.home-kit-card .card-text {
  font-size: 0.86rem;
}

@media (max-width: 980px) {
  .home-hero { min-height: 620px; }
  .home-hero::after {
    background:
      radial-gradient(circle at 70% 8%, rgba(10,46,82,0.24) 0%, rgba(10,46,82,0.76) 50%, rgba(10,46,82,0.96) 100%),
      linear-gradient(90deg, rgba(6,24,44,0.96) 0%, rgba(10,46,82,0.9) 70%, rgba(10,46,82,0.76) 100%);
  }
  .home-hero-inner { text-align: left; }
  .home-hero .hero-actions,
  .home-hero .hero-stats { justify-content: flex-start; }
  .home-kit-grid { grid-template-columns: 1fr; }
}

@media (max-width: 640px) {
  .home-hero {
    min-height: 420px;
    padding-top: 68px;
  }
  .home-hero::after {
    background:
      linear-gradient(180deg, rgba(6,24,44,0.54) 0%, rgba(10,46,82,0.88) 48%, rgba(6,24,44,0.98) 100%),
      linear-gradient(90deg, rgba(6,24,44,0.9) 0%, rgba(10,46,82,0.8) 100%);
  }
  .home-carousel .home-slide { filter: brightness(0.5) saturate(0.9) contrast(1.1); }
  .home-hero-inner { padding: 2.5rem 0 2.5rem; }
  .home-hero .hero-title { font-size: clamp(1.6rem, 7vw, 2.2rem); margin-bottom: 0.75rem; }
  .home-hero .hero-subtitle { font-size: 0.92rem; margin-bottom: 1rem; }
  .home-hero .hero-secondary { margin-bottom: 1.2rem; }
  .home-carousel-dots { bottom: 1rem; right: 1rem; }
  .home-kit-card { grid-template-columns: 96px minmax(0, 1fr); }
  .home-kit-card img { width: 96px; height: 96px; }
}

@media (max-width: 430px) {
  .home-kit-card { grid-template-columns: 1fr; }
  .home-kit-card img { width: 100%; height: 140px; }
}

@media (prefers-reduced-motion: reduce) {
  .home-carousel .home-slide { transition: none; transform: none; }
}
