/* Benefit list: stronger visual rhythm while keeping the editorial layout clean. */
.intro .benefit-list {
  gap: 14px;
  margin-top: 46px;
  border: 0;
}

.intro .benefit-list article,
.intro .benefit-list article:nth-child(odd) {
  min-height: 152px;
  padding: 27px 25px 24px 82px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 9px;
  background: linear-gradient(135deg, #fff 0%, #f8fbff 100%);
  box-shadow: 0 9px 22px rgba(7, 20, 38, .035);
  transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
}

.intro .benefit-list article:hover {
  transform: translateY(-4px);
  border-color: rgba(23, 74, 255, .38);
  box-shadow: 0 16px 30px rgba(20, 66, 152, .12);
}

.intro .benefit-list article::after {
  content: '';
  position: absolute;
  right: -38px;
  bottom: -43px;
  width: 130px;
  height: 130px;
  border: 1px solid rgba(32, 201, 255, .18);
  border-radius: 50%;
  box-shadow: 0 0 0 16px rgba(23, 74, 255, .025);
}

.intro .benefit-list span {
  top: 25px;
  left: 24px;
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  color: #fff;
  background: linear-gradient(135deg, var(--blue), var(--cyan));
  box-shadow: 0 8px 16px rgba(23, 74, 255, .19);
  font: 500 13px var(--mono);
  letter-spacing: -.04em;
}

.intro .benefit-list h3 {
  position: relative;
  z-index: 1;
  margin-bottom: 9px;
  font-size: 18px;
}

.intro .benefit-list p {
  position: relative;
  z-index: 1;
  font-size: 15px;
  line-height: 1.6;
}

@media (max-width: 640px) {
  .intro .benefit-list { gap: 11px; margin-top: 32px; }
  .intro .benefit-list article,
  .intro .benefit-list article:nth-child(odd) { min-height: 0; padding: 21px 20px 20px 75px; }
  .intro .benefit-list span { top: 20px; left: 19px; width: 39px; height: 39px; }
}
