.dvql {
  position: relative;
  padding: clamp(34px, 5vw, 74px) 0;
  overflow: hidden;
}
.dvql::before {
  content: "";
  position: absolute;
  inset: 16% auto auto -90px;
  width: 190px;
  height: 190px;
  border-radius: 999px;
  background: rgba(44, 184, 226, .09);
  pointer-events: none;
}
.dvql::after {
  content: "";
  position: absolute;
  right: -60px;
  bottom: 9%;
  width: 150px;
  height: 150px;
  border-radius: 44px;
  background: rgba(255, 197, 45, .12);
  transform: rotate(16deg);
  pointer-events: none;
}
.dvql__inner {
  position: relative;
  z-index: 1;
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 24px;
}
.dvql__head {
  max-width: 780px;
  margin: 0 auto 30px;
  text-align: center;
}
.dvql__eyebrow {
  margin: 0 0 8px;
  color: #20afe2;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.dvql__title {
  margin: 0;
  color: #2d2942;
  font-size: clamp(30px, 4vw, 46px);
  line-height: 1.02;
  font-weight: 950;
  letter-spacing: -.045em;
}
.dvql__text {
  max-width: 650px;
  margin: 15px auto 0;
  color: rgba(45, 41, 66, .72);
  font-size: 17px;
  line-height: 1.65;
}
.dvql__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}
.dvql__card {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 16px;
  min-height: 116px;
  padding: 20px 22px;
  color: #2d2942;
  text-decoration: none;
  background: rgba(255,255,255,.88);
  border: 1px solid rgba(45,41,66,.08);
  border-radius: 28px;
  box-shadow: 0 18px 46px rgba(45, 41, 66, .08);
  transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
}
.dvql__card:hover,
.dvql__card:focus-visible {
  color: #2d2942;
  transform: translateY(-5px);
  box-shadow: 0 24px 58px rgba(45, 41, 66, .14);
  border-color: rgba(32,175,226,.25);
  text-decoration: none;
}
.dvql__icon {
  display: inline-grid;
  place-items: center;
  width: 58px;
  height: 58px;
  border-radius: 22px;
  color: #fff;
  background: var(--dvql-color, #20afe2);
  box-shadow: 0 15px 28px color-mix(in srgb, var(--dvql-color, #20afe2) 35%, transparent);
}
.dvql__icon svg {
  width: 26px;
  height: 26px;
  fill: currentColor;
}
.dvql__content strong {
  display: block;
  color: #2d2942;
  font-size: 20px;
  line-height: 1.14;
  font-weight: 950;
  letter-spacing: -.025em;
}
.dvql__content small {
  display: block;
  margin-top: 7px;
  color: rgba(45,41,66,.68);
  font-size: 14px;
  line-height: 1.45;
}
.dvql__arrow {
  display: inline-grid;
  place-items: center;
  width: 36px;
  height: 36px;
  border-radius: 999px;
  color: var(--dvql-color, #20afe2);
  background: color-mix(in srgb, var(--dvql-color, #20afe2) 12%, white);
  font-size: 20px;
  font-weight: 900;
}
.dvql__card--blue { --dvql-color: #26b5e6; }
.dvql__card--green { --dvql-color: #1fc86b; }
.dvql__card--yellow { --dvql-color: #ffc62e; }
.dvql__card--coral { --dvql-color: #ff725c; }
.dvql__card--purple { --dvql-color: #7768f4; }
.dvql__card--teal { --dvql-color: #0aa6a6; }
.dvql__card--navy { --dvql-color: #2d2942; }
@supports not (color: color-mix(in srgb, red, white)) {
  .dvql__arrow { background: #f5fbff; }
  .dvql__icon { box-shadow: 0 15px 28px rgba(45, 41, 66, .15); }
}
@media (max-width: 1100px) {
  .dvql__grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 680px) {
  .dvql { padding: 34px 0; }
  .dvql__inner { padding: 0 16px; }
  .dvql__grid { grid-template-columns: 1fr; gap: 14px; }
  .dvql__card { min-height: auto; border-radius: 22px; padding: 18px; }
  .dvql__icon { width: 52px; height: 52px; border-radius: 18px; }
  .dvql__content strong { font-size: 19px; }
}
