
  .vp-verify-info {
    --white: #ffffff;
    --green: #4ade80;
    --green-soft: rgba(74, 222, 128, 0.14);
    --violet-soft: rgba(255, 255, 255, 0.08);
    --violet-border: rgba(255, 255, 255, 0.16);
    --text-soft: rgba(255, 255, 255, 0.76);
    --text-main: rgba(255, 255, 255, 0.92);

    position: relative;
    width: 100%;
    font-family: 'Roboto', sans-serif;
    box-sizing: border-box;
  }

  .vp-verify-info *,
  .vp-verify-info *::before,
  .vp-verify-info *::after {
    box-sizing: border-box;
  }

  .vp-verify-info__header {
    max-width: 760px;
    margin: 0 auto 34px;
    text-align: center;
  }

  .vp-verify-info__eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 14px;
    padding: 7px 13px;
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.07);
    color: rgba(255, 255, 255, 0.88);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
  }

  .vp-verify-info__eyebrow-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--green);
    box-shadow: 0 0 14px rgba(74, 222, 128, 0.75);
  }

  .vp-verify-info__title {
    margin: 0;
    font-family: 'Kanit', sans-serif;
    font-size: clamp(28px, 4vw, 40px);
    line-height: 1.12;
    font-weight: 700;
    color: var(--white);
    letter-spacing: -0.02em;
  }

  .vp-verify-info__intro {
    max-width: 650px;
    margin: 15px auto 0;
    color: var(--text-soft);
    font-size: 16px;
    line-height: 1.7;
  }

  .vp-verify-info__grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px;
  }

  .vp-verify-card {
    position: relative;
    min-height: 100%;
    overflow: hidden;
    padding: 30px;
    border: 1px solid var(--violet-border);
    border-radius: 24px;
    background:
      linear-gradient(
        145deg,
        rgba(255, 255, 255, 0.11),
        rgba(255, 255, 255, 0.055)
      );
    box-shadow:
      0 18px 45px rgba(22, 13, 57, 0.16),
      inset 0 1px 0 rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
  }

  .vp-verify-card::before {
    content: '';
    position: absolute;
    top: -90px;
    right: -70px;
    width: 190px;
    height: 190px;
    border-radius: 50%;
    pointer-events: none;
  }

  .vp-verify-card--can::before {
    background: radial-gradient(
      circle,
      rgba(74, 222, 128, 0.18) 0%,
      rgba(74, 222, 128, 0) 70%
    );
  }

  .vp-verify-card--private::before {
    background: radial-gradient(
      circle,
      rgba(255, 255, 255, 0.12) 0%,
      rgba(255, 255, 255, 0) 70%
    );
  }

  .vp-verify-card__header {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 24px;
  }

  .vp-verify-card__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 46px;
    height: 46px;
    flex: 0 0 46px;
    border-radius: 14px;
  }

  .vp-verify-card--can .vp-verify-card__icon {
    color: var(--green);
    background: var(--green-soft);
    border: 1px solid rgba(74, 222, 128, 0.2);
  }

  .vp-verify-card--private .vp-verify-card__icon {
    color: var(--white);
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.12);
  }

  .vp-verify-card__icon svg {
    width: 23px;
    height: 23px;
  }

  .vp-verify-card__heading {
    margin: 0;
    font-family: 'Kanit', sans-serif;
    font-size: 21px;
    line-height: 1.2;
    font-weight: 700;
    color: var(--white);
  }

  .vp-verify-card__subheading {
    display: block;
    margin-top: 3px;
    color: rgba(255, 255, 255, 0.58);
    font-size: 12.5px;
    line-height: 1.4;
  }

  .vp-verify-list {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin: 0;
    padding: 0;
    list-style: none;
  }

  .vp-verify-list__item {
    display: grid;
    grid-template-columns: 25px minmax(0, 1fr);
    gap: 12px;
    align-items: start;
    padding: 15px 16px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 15px;
    background: rgba(255, 255, 255, 0.045);
    color: var(--text-main);
    font-size: 14.5px;
    line-height: 1.55;
  }

  .vp-verify-list__icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 23px;
    height: 23px;
    margin-top: 1px;
    border-radius: 50%;
  }

  .vp-verify-card--can .vp-verify-list__icon {
    color: var(--green);
    background: rgba(74, 222, 128, 0.12);
  }

  .vp-verify-card--private .vp-verify-list__icon {
    color: rgba(255, 255, 255, 0.8);
    background: rgba(255, 255, 255, 0.09);
  }

  .vp-verify-list__icon svg {
    width: 14px;
    height: 14px;
  }

  .vp-verify-list__item strong {
    color: var(--white);
    font-weight: 600;
  }

  .vp-verify-info__note {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    max-width: 860px;
    margin: 22px auto 0;
    padding: 15px 18px;
    border: 1px solid rgba(255, 255, 255, 0.11);
    border-radius: 16px;
    background: rgba(20, 12, 54, 0.18);
    color: rgba(255, 255, 255, 0.7);
    font-size: 13px;
    line-height: 1.6;
  }

  .vp-verify-info__note-icon {
    display: flex;
    flex: 0 0 20px;
    margin-top: 1px;
    color: rgba(255, 255, 255, 0.88);
  }

  .vp-verify-info__note-icon svg {
    width: 18px;
    height: 18px;
  }

  @media (max-width: 767px) {
    .vp-verify-info__header {
      margin-bottom: 26px;
    }

    .vp-verify-info__intro {
      font-size: 15px;
    }

    .vp-verify-info__grid {
      grid-template-columns: 1fr;
      gap: 16px;
    }

    .vp-verify-card {
      padding: 23px 19px;
      border-radius: 20px;
    }

    .vp-verify-list__item {
      padding: 14px;
    }

    .vp-verify-info__note {
      margin-top: 16px;
    }
  }
