.home-hero {
  height: 100vh;
  max-height: 850px;
  min-height: 750px;
}

.home-hero .hero-content {
  max-width: 1280px;
  padding: 0 64px 160px;
  min-height: 480px;
}

.hero-slide .hero-content > .h1 {
  margin-bottom: auto;
}

.hero-slider {
  position: relative;
}

.hero-slide {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: center;
  opacity: 0;
  transition: opacity 1.5s ease;
  pointer-events: none;
}

#hero-slide-1:checked ~ .hero-slider .hero-slide-1,
#hero-slide-2:checked ~ .hero-slider .hero-slide-2 {
  opacity: 1;
  pointer-events: auto;
}

.hero-subtitle {
  font-family: var(--font-heading);
  font-size: 32px;
  line-height: 1.2em;
  color: var(--color-yellow);
}

.hero-quote {
  font-family: var(--font-body);
  font-size: 18px;
  font-style: italic;
  line-height: 1.6em;
  color: var(--color-white);
  border-left: 4px solid var(--color-yellow);
  padding-left: 20px;
  margin: 0;
  max-width: 600px;
}

.hero-slide .btn {
  align-self: flex-start;
}

.hero-nav {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 12px;
  z-index: 3;
}

.hero-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.4);
  cursor: pointer;
  transition: background 0.3s;
}

#hero-slide-1:checked ~ .hero-slider .hero-nav label[for="hero-slide-1"],
#hero-slide-2:checked ~ .hero-slider .hero-nav label[for="hero-slide-2"] {
  background: var(--color-white);
}

.wb-impact-list {
  list-style: none;
  padding: 0;
  margin: 0;
  text-align: left;
  max-width: 600px;
}

.wb-impact-list li {
  font-family: var(--font-body);
  font-size: 18px;
  line-height: 1.7em;
  color: var(--color-gray);
  padding-left: 24px;
  position: relative;
  margin-bottom: 12px;
}

.wb-impact-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 12px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--color-primary);
}

.wb-testimonial {
  display: flex;
  gap: 48px;
  align-items: center;
  margin-top: 48px;
}

.wb-testimonial-img {
  flex: none;
  width: 350px;
  aspect-ratio: 3 / 4;
  border-radius: 24px;
  overflow: hidden;
}

.wb-testimonial-body {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.wb-testimonial-quote {
  font-family: var(--font-body);
  font-size: 22px;
  font-style: italic;
  line-height: 1.6em;
  color: var(--color-text);
  margin: 0;
}

.wb-testimonial-name {
  font-family: var(--font-body);
  font-size: 20px;
  font-weight: 600;
  color: var(--color-text);
}

.wb-testimonial-age {
  font-family: var(--font-body);
  font-size: 16px;
  color: var(--color-gray);
}

.wb-nav-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.wb-nav-card {
  border-radius: 20px;
  overflow: hidden;
  background: var(--color-white);
  box-shadow:
    0 0.8px 2.4px -0.6px rgba(0,0,0,0.05),
    0 2.4px 7.2px -1.25px rgba(0,0,0,0.05),
    0 6.4px 19px -1.9px rgba(0,0,0,0.05),
    0 20px 60px -2.5px rgba(0,0,0,0.05);
}

.wb-nav-card-img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  display: block;
}

.wb-nav-card-body {
  padding: 30px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

@media (max-width: 1199px) {
  .home-hero .hero-content {
    padding: 0 32px 120px;
  }

  .hero-subtitle {
    font-size: 26px;
  }

  .hero-quote {
    font-size: 16px;
  }

  .wb-testimonial-img {
    width: 280px;
  }

  .wb-nav-cards {
    gap: 16px;
  }
}

@media (max-width: 809px) {
  .home-hero {
    height: 780px;
    max-height: 780px;
    min-height: unset;
  }

  .home-hero .hero-content {
    padding: 0 16px 51px;
  }

  .hero-subtitle {
    font-size: 20px;
  }

  .hero-quote {
    font-size: 14px;
  }

  .wb-testimonial {
    flex-direction: column;
    gap: 24px;
  }

  .wb-testimonial-img {
    width: 100%;
    aspect-ratio: 4 / 3;
  }

  .wb-nav-cards {
    grid-template-columns: 1fr;
  }

  .wb-impact-list li {
    font-size: 16px;
  }
}
