/* Секция «Почему выбирают нас»: фон bg-3, 5 карточек со стеклом */

.why {
  position: relative;
  padding: clamp(3rem, 8vw, 5.25rem) 1.25rem;
  overflow: hidden;
}

.why__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background: url("../img/bg-3.jpg") center center / cover no-repeat;
}

.why__scrim {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background: linear-gradient(
      180deg,
      rgba(255, 255, 255, 0.35) 0%,
      rgba(230, 248, 255, 0.2) 40%,
      rgba(255, 255, 255, 0.25) 100%
    ),
    radial-gradient(
      70% 55% at 50% 45%,
      rgba(255, 255, 255, 0.15) 0%,
      transparent 70%
    );
}

.why__inner {
  position: relative;
  z-index: 2;
  max-width: var(--header-max-width);
  margin: 0 auto;
}

.why__title {
  margin: 0 0 clamp(2rem, 5vw, 3rem);
  font-weight: 800;
  font-size: clamp(1.65rem, 4vw, 2.35rem);
  line-height: 1.2;
  letter-spacing: 0.02em;
  text-align: center;
  color: var(--color-navy);
  text-shadow: 0 1px 0 rgba(255, 255, 255, 0.95), 0 0 24px rgba(255, 255, 255, 0.65),
    0 0 48px rgba(255, 255, 255, 0.35);
}

.why__grid {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: clamp(0.85rem, 1.8vw, 1.35rem);
  align-items: stretch;
}

.why-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  height: 100%;
  padding: 1.35rem 0.85rem 1.45rem;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.52);
  border: 1px solid rgba(255, 255, 255, 0.75);
  box-shadow: 0 10px 36px rgba(26, 59, 93, 0.09),
    inset 0 1px 0 rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  transition: transform 0.26s ease, box-shadow 0.26s ease,
    border-color 0.26s ease;
}

.why-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 44px rgba(26, 59, 93, 0.14),
    inset 0 1px 0 rgba(255, 255, 255, 1);
  border-color: rgba(0, 174, 239, 0.32);
}

.why-card__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: clamp(7rem, 12vw, 9rem);
  margin-bottom: 0.85rem;
}

.why-card__icon img {
  display: block;
  max-width: 100%;
  width: auto;
  height: auto;
  max-height: clamp(6.5rem, 11vw, 8.75rem);
  object-fit: contain;
}

.why-card__title {
  margin: 0 0 0.65rem;
  font-size: clamp(0.9rem, 1.45vw, 1rem);
  font-weight: 700;
  line-height: 1.28;
  color: var(--color-navy);
}

.why-card__text {
  margin: 0;
  font-size: 0.8125rem;
  font-weight: 500;
  line-height: 1.48;
  color: #4a5d70;
  flex-grow: 1;
}

@media (max-width: 1100px) {
  .why__grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 680px) {
  .why__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 400px) {
  .why__grid {
    grid-template-columns: 1fr;
  }

  .why-card:hover {
    transform: translateY(-4px);
  }
}
