.why-section {
  position: relative;
  overflow: hidden;
  min-height: 520px;
  padding: 88px max(var(--side-padding), calc((100vw - var(--container)) / 2));
  display: flex;
  align-items: center;
  background:
    radial-gradient(circle at 12% 18%, rgba(var(--accent-rgb), .08), transparent 26%),
    linear-gradient(90deg, #f8f9fb 0%, #ffffff 52%, #f4f6f8 100%);
  color: #101010;
}

.why-bg {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: 55%;
  z-index: 1;
  pointer-events: none;
}

.why-bg::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  background:
    linear-gradient(
      90deg,
      #f8f9fb 0%,
      rgba(248,249,251,.96) 10%,
      rgba(248,249,251,.68) 28%,
      rgba(248,249,251,.22) 48%,
      rgba(248,249,251,0) 68%
    ),
    linear-gradient(
      180deg,
      rgba(248,249,251,.72) 0%,
      transparent 28%,
      rgba(248,249,251,.72) 100%
    );
}

.why-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center right;
  filter: saturate(1.04) contrast(1.02);
}

.why-content {
  position: relative;
  z-index: 3;
  width: 100%;
  max-width: 900px;
}

.why-header {
  margin-bottom: 34px;
}

.why-header h2 {
  margin-top: 12px;
  font-size: clamp(34px, 4vw, 54px);
  line-height: 1.08;
  font-weight: 900;
  letter-spacing: -.04em;
  color: #07111d;
}

.why-cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-items: stretch;
  gap: 18px;
}

.why-card {
  min-height: 200px;
  height: 100%;

  padding: 26px;

  display: grid;
  grid-template-columns: 68px 1fr;
  gap: 22px;

  align-items: center;

  border: 1px solid rgba(0,0,0,.06);
  border-radius: 18px;

  background:
    linear-gradient(
      180deg,
      rgba(255,255,255,.92),
      rgba(255,255,255,.76)
    );

  backdrop-filter: blur(16px);

  box-shadow: 0
}

.why-card:hover {
  transform: translateY(-7px);
  border-color: rgba(var(--accent-rgb), .38);
  box-shadow: 0 28px 70px rgba(0,0,0,.12);
}

.why-icon {
  width: 68px;
  height: 68px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 20px;
  color: var(--accent);
  background:
    radial-gradient(
      circle,
      rgba(var(--accent-rgb), .18),
      rgba(var(--accent-rgb), .05)
    );
  box-shadow:
    inset 0 0 0 1px rgba(var(--accent-rgb), .22),
    0 16px 34px rgba(var(--accent-rgb), .16);
  transition:
    transform .35s ease,
    box-shadow .35s ease;
}

.why-card:hover .why-icon {
  transform: translateY(-3px) scale(1.06);
  box-shadow:
    inset 0 0 0 1px rgba(var(--accent-rgb), .36),
    0 20px 45px rgba(var(--accent-rgb), .26);
}

.why-icon svg {
  width: 34px;
  height: 34px;
  display: block;
  fill: none !important;
  stroke: currentColor !important;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.why-icon svg path,
.why-icon svg circle,
.why-icon svg rect,
.why-icon svg line,
.why-icon svg polyline,
.why-icon svg polygon {
  fill: none !important;
  stroke: currentColor !important;
}

.why-card-body {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.why-value {
  position: relative;
  width: fit-content;
  color: #07111d;
  font-size: clamp(30px, 3vw, 42px);
  line-height: 1;
  font-weight: 900;
  letter-spacing: -.04em;
}

.why-value::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -8px;
  width: 42px;
  height: 3px;
  border-radius: 999px;
  background: var(--accent);
}

.why-value-text {
  font-size: clamp(22px, 2vw, 28px);
  line-height: 1.12;
}

.why-card-body p {
  max-width: 240px;
  margin-top: 8px;
  color: rgba(7,17,29,.68);
  font-size: 15px;
  line-height: 1.45;
}

@media (max-width: 1120px) {
  .why-section {
    min-height: auto;
  }

  .why-bg {
    width: 72%;
    opacity: .35;
  }

  .why-content {
    max-width: 100%;
  }

  .why-cards {
    grid-template-columns: 1fr;
    max-width: 560px;
  }
}

@media (max-width: 700px) {
  .why-section {
    padding: 72px var(--side-padding);
  }

  .why-bg {
    width: 100%;
    opacity: .2;
  }

  .why-card {
    min-height: auto;
    padding: 22px;
    grid-template-columns: 56px 1fr;
    gap: 18px;
  }

  .why-icon {
    width: 56px;
    height: 56px;
    border-radius: 16px;
  }

  .why-icon svg {
    width: 30px;
    height: 30px;
  }
}