
  .vp-why {
    --purple: #453685;
    --white-soft: rgba(255,255,255,.72);
    --white-muted: rgba(255,255,255,.58);
    --line: rgba(255,255,255,.14);
    --card: rgba(255,255,255,.075);
    --card-hover: rgba(255,255,255,.12);
    --amber: #e0a23f;

    font-family: 'Roboto', sans-serif;
    padding: 0;
  }

  .vp-why * {
    box-sizing: border-box;
  }

  .vp-why__inner {
    max-width: 1120px;
    margin: 0 auto;
  }

  .vp-why__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
  }

  .vp-why__item {
    position: relative;
    display: flex;
    gap: 18px;
    padding: 22px;
    border: 1px solid var(--line);
    border-radius: 22px;
    background:
      radial-gradient(circle at top right, rgba(255,255,255,.09), transparent 36%),
      var(--card);
    backdrop-filter: blur(8px);
    overflow: hidden;
    transition: transform .22s ease, background .22s ease, border-color .22s ease;
  }

  .vp-why__item:hover {
    transform: translateY(-3px);
    background:
      radial-gradient(circle at top right, rgba(255,255,255,.14), transparent 38%),
      var(--card-hover);
    border-color: rgba(255,255,255,.24);
  }

  .vp-why__icon {
    width: 46px;
    height: 46px;
    border-radius: 15px;
    background: rgba(255,255,255,.12);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: #fff;
    box-shadow: inset 0 0 0 1px rgba(255,255,255,.08);
  }

  .vp-why__icon svg {
    width: 22px;
    height: 22px;
  }

  .vp-why__text {
    padding-top: 1px;
  }

  .vp-why__title {
    font-family: 'Kanit', sans-serif;
    font-weight: 600;
    font-size: 20px;
    line-height: 1.18;
    color: #fff;
    margin: 0 0 7px;
  }

  .vp-why__desc {
    font-weight: 300;
    font-size: 15.5px;
    line-height: 1.55;
    color: var(--white-soft);
    margin: 0;
  }

  .vp-why__badge {
    display: inline-flex;
    align-items: center;
    padding: 3px 9px;
    border-radius: 999px;
    margin-left: 8px;
    font-family: 'Roboto', sans-serif;
    font-size: 10.5px;
    font-weight: 500;
    letter-spacing: .03em;
    color: #fff;
    background: rgba(224,162,63,.18);
    border: 1px solid rgba(224,162,63,.42);
    vertical-align: middle;
  }

  .vp-why__item--wide {
    grid-column: span 2;
  }

  .vp-why__item--highlight {
    background:
      radial-gradient(circle at top right, rgba(224,162,63,.18), transparent 38%),
      rgba(255,255,255,.09);
  }

  @media (max-width: 760px) {
    .vp-why__grid {
      grid-template-columns: 1fr;
    }

    .vp-why__item--wide {
      grid-column: span 1;
    }
  }

  @media (max-width: 480px) {
    .vp-why {
      padding: 0 18px;
    }

    .vp-why__item {
      padding: 20px;
      border-radius: 18px;
    }

    .vp-why__title {
      font-size: 18px;
    }

    .vp-why__desc {
      font-size: 14.5px;
    }
  }
