/* ========================= */
/* WHY SECTION — Neon Style ⚡ */
/* ========================= */

.why {
  display: flex;
  flex-direction: row;
  gap: 24px;
  align-items: center;
}

/* Контейнер с карточками */
.why > div:last-child {
  display: flex;
  flex-direction: row;
  align-items: stretch;
  gap: 20px;
  flex-wrap: wrap;
}

/* Каждая карточка */
.why > div:last-child > div {
  gap: 15px;
  flex: 1 0 30%;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  padding: 25px 30px;
  background: linear-gradient(180deg, rgba(255,255,255,.06), rgba(255,255,255,.03));
  border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--brad);
  box-shadow:
    0 8px 26px rgba(0,0,0,.35),
    0 0 24px rgba(0,240,255,.12);
  backdrop-filter: blur(8px) saturate(140%);
  -webkit-backdrop-filter: blur(8px) saturate(140%);
  transition: transform .25s cubic-bezier(.2,.9,.3,1), box-shadow .25s ease;
}

.why > div:last-child > div:hover {
  transform: translateY(-4px);
  border-color: rgba(0,240,255,.45);
  box-shadow:
    0 0 18px rgba(0,240,255,.35),
    0 0 36px rgba(138,92,255,.25),
    0 12px 34px rgba(0,0,0,.45);
}

/* Левая часть с текстом */
.why > div:last-child > div > div:first-child {
  height: 100%;
  text-align: center;
    align-items: center;
    justify-content: center;
    display: flex;
    flex-direction: column;
}

.why > div:last-child > div > div > p:first-child {
  color: var(--neon-2) !important;      /* яркий номер */
  font-weight: 800 !important;
  font-size: 36px;
  margin-bottom: 0;
  text-shadow:
    0 0 10px rgba(0,240,255,.45),
    0 0 18px rgba(138,92,255,.3);
}

.why > div:last-child > div > div > p:last-child {
  margin-top: 0;
  margin-bottom: 0;
  color: var(--textMain);
  font-size: 18px;
  line-height: 1.4;
}

/* Правая часть с иконкой */
.why > div:last-child > div > div:last-child {
  background: linear-gradient(180deg, rgba(0,240,255,.15), rgba(138,92,255,.12));
  display: flex;
  align-items: center;
  justify-content: center;
  width: 115px;
  height: 115px;
  border-radius: 50%;
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,.15),
    0 0 18px rgba(0,240,255,.25);
  backdrop-filter: blur(6px) saturate(140%);
  -webkit-backdrop-filter: blur(6px) saturate(140%);
}

.why > div:last-child > div > div:last-child img {
  height: 38%;
  object-fit: contain;
  z-index: 10;
  filter: drop-shadow(0 0 10px rgba(0,240,255,.45));
}

/* Адаптив */
@media (max-width: 768px) {
  .why {
    flex-direction: column;
  }
  .why > div:last-child > div > div:last-child {
    max-width: 80px;
    min-width: 80px;
    max-height: 80px;
    min-height: 80px;
  }
}
