/* ===== PULSEVIBE REGISTER THEME ===== */

:root {
    --pv-dark: #17133f;
    --pv-deep: #25155f;
    --pv-purple: #6d35b9;
    --pv-violet: #8f3fd1;
    --pv-pink: #ef2d6f;
    --pv-red: #f31548;
    --pv-orange: #ff8a22;
    --pv-yellow: #f5c51b;
    --pv-white: #ffffff;
    --pv-muted: rgba(255, 255, 255, 0.72);
    --pv-soft: rgba(255, 255, 255, 0.11);
    --pv-border: rgba(255, 255, 255, 0.16);
    --pv-shadow: 0 28px 90px rgba(14, 7, 54, 0.42);
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    min-height: 100vh;
    color: var(--pv-white);
    font-family: Arial, Helvetica, sans-serif;
    background: #170f45;
}

a {
    color: inherit;
}

.pv-page {
    position: relative;
    min-height: 100vh;
    overflow: hidden;
    background:
        linear-gradient(115deg, rgba(20, 18, 73, 0.96) 0%, rgba(74, 35, 154, 0.9) 47%, rgba(184, 26, 120, 0.86) 100%),
        radial-gradient(circle at 78% 18%, rgba(255, 255, 255, 0.12), transparent 34%),
        radial-gradient(circle at 22% 78%, rgba(239, 45, 111, 0.22), transparent 34%);
}

.pv-page::before {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    opacity: 0.16;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.18) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.18) 1px, transparent 1px);
    background-size: 46px 46px;
}

.pv-page::after {
    content: "";
    position: absolute;
    inset: auto -12% -18% -12%;
    height: 280px;
    pointer-events: none;
    background: rgba(255, 255, 255, 0.18);
    border-radius: 50% 50% 0 0 / 35% 35% 0 0;
    filter: blur(1px);
}

.pv-container {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 22px;
}

/* ===== REFERRER TOAST ===== */

.pv-ref-toast {
    position: fixed;
    z-index: 80;
    top: 22px;
    right: 22px;
    width: min(360px, calc(100% - 44px));
    padding: 14px 48px 14px 14px;
    border-radius: 24px;
    display: grid;
    grid-template-columns: 54px 1fr;
    gap: 12px;
    align-items: center;
    color: #201c33;
    background: rgba(255, 255, 255, 0.95);
    border: 1px solid rgba(255, 255, 255, 0.5);
    box-shadow: 0 22px 70px rgba(10, 5, 46, 0.28);
}

.pv-ref-close {
    position: absolute;
    top: 10px;
    right: 10px;
    width: 30px;
    height: 30px;
    border: 0;
    border-radius: 999px;
    color: #6b6078;
    background: #f3eef8;
    cursor: pointer;
    font-size: 18px;
    font-weight: 950;
}

.pv-ref-avatar {
    width: 54px;
    height: 54px;
    border-radius: 18px;
    overflow: hidden;
    background: linear-gradient(135deg, var(--pv-red), var(--pv-orange));
    padding: 3px;
}

.pv-ref-avatar img {
    width: 100%;
    height: 100%;
    border-radius: 15px;
    object-fit: cover;
    display: block;
}

.pv-ref-content span {
    display: block;
    color: #7b7188;
    font-size: 12px;
    font-weight: 850;
}

.pv-ref-content strong {
    display: block;
    margin-top: 3px;
    color: #201c33;
    font-size: 15px;
    font-weight: 950;
}

/* ===== NAVIGATION ===== */

.pv-nav {
    position: relative;
    z-index: 20;
    padding: 24px 22px 0;
}

.pv-nav-wrap {
    width: 100%;
    max-width: 1240px;
    min-height: 74px;
    margin: 0 auto;
    padding: 12px 16px 12px 18px;
    display: grid;
    grid-template-columns: auto 1fr;
    align-items: center;
    gap: 24px;
    border-radius: 28px;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.14);
    box-shadow: 0 22px 70px rgba(10, 5, 46, 0.32);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
}

.pv-brand {
    min-width: 0;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
}

.pv-brand-logo {
    display: block;
    width: auto;
    max-width: 240px;
    max-height: 54px;
    object-fit: contain;
}

.pv-brand-mark {
    width: 48px;
    height: 48px;
    flex: 0 0 48px;
    border-radius: 18px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    background:
        radial-gradient(circle at 25% 20%, rgba(255, 255, 255, 0.46), transparent 28%),
        linear-gradient(135deg, var(--pv-red), var(--pv-orange));
    box-shadow: 0 18px 40px rgba(243, 21, 72, 0.34);
}

.pv-brand-mark i {
    font-size: 24px;
}

.pv-brand-name {
    font-size: 22px;
    line-height: 1;
    font-weight: 950;
    letter-spacing: -0.8px;
    white-space: nowrap;
}

.pv-nav-links {
    justify-self: end;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 5px;
    padding: 7px;
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.08);
}

.pv-nav-links a {
    min-height: 44px;
    padding: 0 15px;
    border-radius: 18px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.82);
    font-size: 14px;
    font-weight: 850;
    text-decoration: none;
    transition: 0.22s ease;
}

.pv-nav-links a i {
    color: var(--pv-yellow);
    font-size: 17px;
}

.pv-nav-links a:hover,
.pv-nav-links a.active {
    color: #ffffff;
    background: rgba(255, 255, 255, 0.14);
    transform: translateY(-2px);
}

.pv-nav-links a.pv-register-nav {
    color: #ba174c;
    background: #ffffff;
    box-shadow: 0 14px 36px rgba(255, 255, 255, 0.14);
}

.pv-nav-links a.pv-register-nav i {
    color: #ef2d6f;
}

.pv-nav-links a.pv-register-nav:hover {
    color: #ba174c;
    background: #ffffff;
}

/* ===== MAIN ===== */

.pv-main {
    position: relative;
    z-index: 3;
    padding: 76px 0 72px;
}

.pv-orb {
    position: absolute;
    z-index: 0;
    border-radius: 999px;
    pointer-events: none;
}

.pv-orb-one {
    width: 420px;
    height: 420px;
    right: 7%;
    top: 125px;
    border: 1px solid rgba(255, 255, 255, 0.16);
    box-shadow:
        inset 0 0 80px rgba(255, 255, 255, 0.05),
        0 0 0 70px rgba(255, 255, 255, 0.025);
}

.pv-orb-two {
    width: 280px;
    height: 280px;
    left: -90px;
    bottom: 45px;
    background: rgba(239, 45, 111, 0.16);
    filter: blur(10px);
}

.pv-register-layout {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: minmax(0, 0.95fr) minmax(520px, 1.05fr);
    gap: 54px;
    align-items: center;
}

.pv-copy {
    max-width: 670px;
}

.pv-eyebrow {
    width: max-content;
    max-width: 100%;
    margin-bottom: 22px;
    padding: 13px 18px;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    gap: 9px;
    color: rgba(255, 255, 255, 0.92);
    background: rgba(255, 255, 255, 0.13);
    border: 1px solid rgba(255, 255, 255, 0.16);
    font-size: 13px;
    font-weight: 900;
    letter-spacing: 1.2px;
    text-transform: uppercase;
}

.pv-eyebrow i {
    color: var(--pv-yellow);
}

.pv-copy h1 {
    margin: 0;
    color: #ffffff;
    font-size: clamp(44px, 6vw, 82px);
    line-height: 0.96;
    font-weight: 950;
    letter-spacing: -3.8px;
}

.pv-copy p {
    max-width: 650px;
    margin: 26px 0 0;
    color: rgba(255, 255, 255, 0.76);
    font-size: 18px;
    line-height: 1.65;
}

.pv-benefits {
    margin-top: 34px;
    display: grid;
    gap: 14px;
}

.pv-benefit {
    padding: 18px;
    border-radius: 24px;
    display: grid;
    grid-template-columns: 48px 1fr;
    gap: 14px;
    align-items: center;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.14);
    box-shadow: 0 18px 54px rgba(8, 4, 36, 0.16);
}

.pv-benefit-icon {
    width: 48px;
    height: 48px;
    border-radius: 17px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    background: rgba(255, 255, 255, 0.13);
}

.pv-benefit-icon i {
    color: var(--pv-yellow);
    font-size: 23px;
}

.pv-benefit strong {
    display: block;
    color: #ffffff;
    font-size: 15px;
    font-weight: 950;
}

.pv-benefit span {
    display: block;
    margin-top: 4px;
    color: rgba(255, 255, 255, 0.66);
    font-size: 13px;
    line-height: 1.45;
    font-weight: 750;
}

/* ===== REGISTER CARD ===== */

.pv-card-wrap {
    position: relative;
}

.pv-float-pill {
    position: absolute;
    z-index: 4;
    min-height: 54px;
    padding: 0 18px;
    border-radius: 20px;
    display: inline-flex;
    align-items: center;
    gap: 9px;
    color: #28223a;
    background: #ffffff;
    box-shadow: 0 18px 50px rgba(13, 6, 51, 0.24);
    font-size: 14px;
    font-weight: 950;
}

.pv-float-pill i {
    color: var(--pv-pink);
    font-size: 18px;
}

.pv-float-one {
    top: -32px;
    left: -28px;
}

.pv-float-two {
    right: -24px;
    top: 72px;
}

.pv-register-card {
    position: relative;
    overflow: hidden;
    padding: 34px;
    border-radius: 34px;
    color: #201c33;
    background: rgba(255, 255, 255, 0.93);
    border: 1px solid rgba(255, 255, 255, 0.52);
    box-shadow: var(--pv-shadow);
}

.pv-register-card::before {
    content: "";
    position: absolute;
    inset: 0 0 auto;
    height: 7px;
    background: linear-gradient(90deg, var(--pv-red), var(--pv-orange), var(--pv-yellow));
}

.pv-card-head {
    display: flex;
    gap: 16px;
    align-items: center;
    margin-bottom: 24px;
}

.pv-card-icon {
    width: 62px;
    height: 62px;
    flex: 0 0 62px;
    border-radius: 22px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    background: linear-gradient(135deg, var(--pv-red), var(--pv-orange));
    box-shadow: 0 18px 42px rgba(239, 45, 111, 0.26);
}

.pv-card-icon i {
    font-size: 28px;
}

.pv-card-head h2 {
    margin: 0;
    color: #201c33;
    font-size: 30px;
    line-height: 1.1;
    font-weight: 950;
    letter-spacing: -1px;
}

.pv-card-head p {
    margin: 7px 0 0;
    color: #70697e;
    font-size: 14px;
    line-height: 1.45;
    font-weight: 700;
}

.pv-form {
    position: relative;
    z-index: 2;
}

.pv-form-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
}

.pv-field {
    margin-bottom: 16px;
}

.pv-field label {
    display: block;
    margin-bottom: 8px;
    color: #3a334c;
    font-size: 13px;
    font-weight: 950;
}

.pv-input {
    min-height: 56px;
    padding: 0 16px;
    border-radius: 18px;
    display: flex;
    align-items: center;
    gap: 10px;
    background: #f5f1fb;
    border: 1px solid #e7ddf3;
    transition: 0.22s ease;
}

.pv-input:focus-within {
    background: #ffffff;
    border-color: rgba(239, 45, 111, 0.45);
    box-shadow: 0 0 0 4px rgba(239, 45, 111, 0.1);
}

.pv-input i {
    color: #ef2d6f;
    font-size: 18px;
}

.pv-input input {
    width: 100%;
    min-width: 0;
    height: 54px;
    padding: 0;
    border: 0;
    outline: none;
    color: #201c33;
    background: transparent;
    font-size: 15px;
    font-weight: 750;
}

.pv-input input::placeholder {
    color: #998fa8;
}

.pv-recaptcha {
    overflow-x: auto;
    padding: 13px;
    border-radius: 18px;
    background: #f5f1fb;
    border: 1px solid #e7ddf3;
}

.pv-error-text {
    display: block;
    margin-top: 8px;
    color: #d61f4f;
    font-size: 13px;
    font-weight: 850;
}

.pv-agreement {
    margin: 2px 0 18px;
    padding: 15px;
    border-radius: 18px;
    display: grid;
    grid-template-columns: 38px 1fr;
    gap: 12px;
    align-items: center;
    color: #5f536f;
    background: #f7f1fb;
    border: 1px solid #eadff5;
    font-size: 13px;
    line-height: 1.45;
    font-weight: 800;
}

.pv-agreement i {
    width: 38px;
    height: 38px;
    border-radius: 14px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    background: linear-gradient(135deg, var(--pv-purple), var(--pv-pink));
    font-size: 19px;
}

.pv-agreement a {
    color: #ef2d6f;
    font-weight: 950;
    text-decoration: none;
}

.pv-agreement a:hover {
    color: #6d35b9;
}

.pv-submit {
    width: 100%;
    min-height: 58px;
    margin-top: 4px;
    border: 0;
    border-radius: 19px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    color: #ffffff;
    cursor: pointer;
    background: linear-gradient(135deg, var(--pv-red), var(--pv-orange));
    box-shadow: 0 18px 38px rgba(239, 45, 111, 0.28);
    font-size: 15px;
    font-weight: 950;
    transition: 0.22s ease;
}

.pv-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 24px 46px rgba(239, 45, 111, 0.34);
}

.pv-form-footer {
    margin-top: 20px;
    padding-top: 18px;
    border-top: 1px solid #eadff5;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 7px;
    color: #766c83;
    font-size: 14px;
    font-weight: 800;
}

.pv-form-footer a {
    color: #ef2d6f;
    font-weight: 950;
    text-decoration: none;
}

/* ===== ALERTS ===== */

.pv-alert {
    position: relative;
    margin-bottom: 18px;
    padding: 16px;
    border-radius: 20px;
    display: grid;
    grid-template-columns: 42px 1fr;
    gap: 12px;
    font-size: 14px;
    line-height: 1.45;
    overflow: hidden;
}

.pv-alert::before {
    content: "";
    position: absolute;
    inset: 0 auto 0 0;
    width: 5px;
}

.pv-alert-icon {
    width: 42px;
    height: 42px;
    border-radius: 15px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.pv-alert-icon i {
    font-size: 22px;
}

.pv-alert strong {
    display: block;
    margin: 1px 0 6px;
    font-size: 14px;
    font-weight: 950;
}

.pv-alert ul,
.pv-alert ol {
    margin: 9px 0 0;
    padding: 0;
    list-style: none;
    display: grid;
    gap: 8px;
}

.pv-alert li {
    position: relative;
    padding-left: 21px;
    font-size: 13px;
    font-weight: 800;
}

.pv-alert li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.62em;
    width: 8px;
    height: 8px;
    border-radius: 999px;
    transform: translateY(-50%);
}

.pv-alert-error {
    color: #941636;
    background: #fff0f4;
    border: 1px solid #ffd1dc;
    box-shadow: 0 16px 34px rgba(214, 31, 79, 0.08);
}

.pv-alert-error::before {
    background: linear-gradient(180deg, #f31548, #ff8a22);
}

.pv-alert-error .pv-alert-icon {
    color: #ffffff;
    background: linear-gradient(135deg, #f31548, #ff8a22);
    box-shadow: 0 12px 24px rgba(243, 21, 72, 0.18);
}

.pv-alert-error li::before {
    background: #f31548;
    box-shadow: 0 0 0 4px rgba(243, 21, 72, 0.12);
}

.pv-alert-success {
    color: #116b40;
    background: #ecfff5;
    border: 1px solid #bff1d7;
    box-shadow: 0 16px 34px rgba(17, 107, 64, 0.08);
}

.pv-alert-success::before {
    background: linear-gradient(180deg, #14b86a, #36d995);
}

.pv-alert-success .pv-alert-icon {
    color: #ffffff;
    background: linear-gradient(135deg, #14b86a, #36d995);
    box-shadow: 0 12px 24px rgba(20, 184, 106, 0.18);
}

.pv-alert-success li::before {
    background: #14b86a;
    box-shadow: 0 0 0 4px rgba(20, 184, 106, 0.12);
}

/* ===== ADS ===== */

.pv-ads {
    position: relative;
    z-index: 2;
    margin-top: 58px;
    display: grid;
    gap: 16px;
    justify-items: center;
}

.pv-ad-box {
    width: 100%;
    max-width: 760px;
    min-height: 92px;
    padding: 15px;
    border-radius: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.14);
    box-shadow: 0 18px 50px rgba(9, 4, 37, 0.16);
}

.pv-ad-inner {
    max-width: 100%;
    overflow: hidden;
}

.pv-ad-inner iframe,
.pv-ad-inner img {
    max-width: 100%;
}

/* ===== FOOTER ===== */

.pv-footer {
    position: relative;
    z-index: 3;
    padding: 16px 0 38px;
}

.pv-footer-panel {
    position: relative;
    overflow: hidden;
    padding: 24px;
    border-radius: 30px;
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) auto minmax(0, 0.8fr);
    align-items: center;
    gap: 24px;
    background: rgba(255, 255, 255, 0.11);
    border: 1px solid rgba(255, 255, 255, 0.15);
    box-shadow: 0 22px 70px rgba(10, 5, 46, 0.22);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
}

.pv-footer-panel::before {
    content: "";
    position: absolute;
    width: 280px;
    height: 280px;
    right: -120px;
    top: -150px;
    border-radius: 999px;
    background: rgba(239, 45, 111, 0.2);
    pointer-events: none;
}

.pv-footer-brand {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    gap: 14px;
    min-width: 0;
}

.pv-footer-logo {
    display: block;
    width: auto;
    max-width: 220px;
    max-height: 52px;
    object-fit: contain;
}

.pv-footer-brand-fallback {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
}

.pv-footer-brand-fallback .pv-brand-name {
    color: #ffffff;
}

.pv-footer-copy {
    margin-top: 8px;
    color: rgba(255, 255, 255, 0.68);
    font-size: 13px;
    font-weight: 800;
}

.pv-footer-links {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
}

.pv-footer-links a {
    min-height: 40px;
    padding: 0 14px;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    color: rgba(255, 255, 255, 0.84);
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.1);
    text-decoration: none;
    font-size: 13px;
    font-weight: 900;
    transition: 0.22s ease;
}

.pv-footer-links a:hover {
    color: #ffffff;
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-2px);
}

.pv-powered {
    position: relative;
    z-index: 2;
    justify-self: end;
    text-align: right;
    color: rgba(255, 255, 255, 0.68);
    font-size: 13px;
    font-weight: 800;
}

.pv-powered strong {
    display: block;
    margin-bottom: 6px;
    color: #ffffff;
    font-size: 14px;
    font-weight: 950;
}

.pv-powered a {
    color: #ffffff;
    text-decoration: none;
    font-weight: 950;
}

.pv-powered a:hover {
    color: var(--pv-yellow);
}

/* ===== RESPONSIVE ===== */

@media (max-width: 1120px) {
    .pv-register-layout {
        grid-template-columns: 1fr;
        gap: 54px;
    }

    .pv-copy {
        max-width: 860px;
        text-align: center;
        margin: 0 auto;
    }

    .pv-eyebrow {
        margin-left: auto;
        margin-right: auto;
    }

    .pv-benefits {
        max-width: 760px;
        margin-left: auto;
        margin-right: auto;
    }
}

@media (max-width: 1080px) {
    .pv-nav-wrap {
        grid-template-columns: 1fr;
    }

    .pv-brand,
    .pv-nav-links {
        justify-self: center;
    }

    .pv-nav-links {
        flex-wrap: wrap;
        justify-content: center;
    }

    .pv-footer-panel {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .pv-footer-brand {
        justify-content: center;
    }

    .pv-powered {
        justify-self: center;
        text-align: center;
    }
}

@media (max-width: 720px) {
    .pv-nav {
        padding: 14px 12px 0;
    }

    .pv-nav-wrap {
        border-radius: 22px;
    }

    .pv-brand {
        flex-direction: column;
        text-align: center;
    }

    .pv-brand-name {
        white-space: normal;
        font-size: 20px;
    }

    .pv-nav-links {
        width: 100%;
    }

    .pv-nav-links a {
        flex: 1 1 auto;
        min-width: 128px;
    }

    .pv-main {
        padding: 48px 0 54px;
    }

    .pv-copy h1 {
        letter-spacing: -2.3px;
    }

    .pv-copy p {
        font-size: 16px;
    }

    .pv-benefit {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .pv-benefit-icon {
        margin: 0 auto;
    }

    .pv-register-card {
        padding: 26px 20px;
        border-radius: 28px;
    }

    .pv-card-head {
        align-items: flex-start;
    }

    .pv-form-grid {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .pv-float-pill {
        display: none;
    }

    .pv-alert {
        grid-template-columns: 1fr;
    }

    .pv-alert-icon {
        width: 38px;
        height: 38px;
    }

    .pv-agreement {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .pv-agreement i {
        margin: 0 auto;
    }

    .pv-form-footer {
        flex-direction: column;
        text-align: center;
        align-items: center;
    }

    .pv-footer-panel {
        padding: 22px 18px;
        border-radius: 24px;
    }

    .pv-footer-logo {
        max-width: 190px;
    }

    .pv-footer-links {
        flex-direction: column;
    }

    .pv-footer-links a {
        width: 100%;
        justify-content: center;
    }
}

/* ===== REQUEST VERIFICATION PAGE ===== */

.pv-verification-layout {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: minmax(0, 1fr) 480px;
    gap: 60px;
    align-items: center;
}

.pv-verification-copy {
    max-width: 680px;
}

.pv-verification-copy h1 {
    margin: 0;
    color: #ffffff;
    font-size: clamp(44px, 6vw, 78px);
    line-height: 0.98;
    font-weight: 950;
    letter-spacing: -3.5px;
}

.pv-verification-copy p {
    max-width: 650px;
    margin: 24px 0 0;
    color: rgba(255, 255, 255, 0.76);
    font-size: 18px;
    line-height: 1.65;
}

.pv-verification-steps {
    margin-top: 34px;
    display: grid;
    gap: 14px;
}

.pv-verification-step {
    padding: 18px;
    border-radius: 24px;
    display: grid;
    grid-template-columns: 46px 1fr;
    gap: 14px;
    align-items: center;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.14);
    box-shadow: 0 18px 54px rgba(8, 4, 36, 0.16);
}

.pv-verification-step-icon {
    width: 46px;
    height: 46px;
    border-radius: 16px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    background: rgba(255, 255, 255, 0.13);
}

.pv-verification-step-icon i {
    color: var(--pv-yellow);
    font-size: 22px;
}

.pv-verification-step strong {
    display: block;
    color: #ffffff;
    font-size: 15px;
    font-weight: 950;
}

.pv-verification-step span {
    display: block;
    margin-top: 4px;
    color: rgba(255, 255, 255, 0.66);
    font-size: 13px;
    line-height: 1.45;
    font-weight: 750;
}

.pv-verification-card {
    position: relative;
    overflow: hidden;
    padding: 34px;
    border-radius: 34px;
    color: #201c33;
    background: rgba(255, 255, 255, 0.93);
    border: 1px solid rgba(255, 255, 255, 0.52);
    box-shadow: var(--pv-shadow);
}

.pv-verification-card::before {
    content: "";
    position: absolute;
    inset: 0 0 auto;
    height: 7px;
    background: linear-gradient(90deg, var(--pv-red), var(--pv-orange), var(--pv-yellow));
}

.pv-verification-note {
    margin: 2px 0 18px;
    padding: 15px;
    border-radius: 18px;
    display: grid;
    grid-template-columns: 38px 1fr;
    gap: 12px;
    align-items: center;
    color: #5f536f;
    background: #f7f1fb;
    border: 1px solid #eadff5;
    font-size: 13px;
    line-height: 1.45;
    font-weight: 800;
}

.pv-verification-note i {
    width: 38px;
    height: 38px;
    border-radius: 14px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    background: linear-gradient(135deg, var(--pv-purple), var(--pv-pink));
    font-size: 19px;
}

@media (max-width: 1080px) {
    .pv-verification-layout {
        grid-template-columns: 1fr;
        gap: 54px;
    }

    .pv-verification-copy {
        max-width: 860px;
        text-align: center;
        margin: 0 auto;
    }

    .pv-verification-steps {
        max-width: 720px;
        margin-left: auto;
        margin-right: auto;
    }
}

@media (max-width: 720px) {
    .pv-verification-copy h1 {
        letter-spacing: -2.2px;
    }

    .pv-verification-copy p {
        font-size: 16px;
    }

    .pv-verification-card {
        padding: 26px 20px;
        border-radius: 28px;
    }

    .pv-verification-step {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .pv-verification-step-icon {
        margin: 0 auto;
    }

    .pv-verification-note {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .pv-verification-note i {
        margin: 0 auto;
    }
}