.payment-page,
.payment-result {
    min-height: 75vh;
    background:
        radial-gradient(
            circle at 20% 0%,
            rgba(34, 197, 94, .10),
            transparent 30%
        ),
        linear-gradient(
            180deg,
            #020617,
            #030712
        );
    color: #f8fafc;
}

.payment-heading {
    max-width: 760px;
    margin: 0 auto 34px;
}

.payment-heading h1,
.payment-heading h2 {
    font-weight: 950;
    margin-top: 14px;
}

.payment-heading p {
    color: #94a3b8;
    font-size: 1.05rem;
}

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

.payment-grid.extensions {
    grid-template-columns:
        repeat(3, minmax(0, 1fr));
    max-width: 780px;
    margin: 0 auto;
}

.payment-card {
    background:
        linear-gradient(
            180deg,
            rgba(15, 23, 42, .95),
            rgba(3, 7, 18, .98)
        );
    border:
        1px solid
        rgba(148, 163, 184, .22);
    border-radius: 16px;
    padding: 22px;
    box-shadow:
        0 18px 55px
        rgba(0, 0, 0, .32);
    display: flex;
    flex-direction: column;
}

.payment-card h2 {
    font-size: 1.25rem;
    font-weight: 950;
    min-height: 48px;
}

.payment-type {
    color: #22c55e;
    font-size: .72rem;
    font-weight: 900;
    letter-spacing: .09em;
    margin-bottom: 10px;
}

.payment-price {
    font-size: 2.45rem;
    line-height: 1;
    font-weight: 950;
    margin: 10px 0;
}

.payment-duration {
    color: #94a3b8;
    margin-bottom: 16px;
}

.payment-card ul {
    padding-left: 18px;
    color: #cbd5e1;
    flex: 1;
}

.payment-card li {
    margin-bottom: 8px;
}

.extension-section {
    margin-top: 55px;
}

.payment-login-note {
    color: #94a3b8;
    margin-top: 24px;
}

.payment-alerts {
    max-width: 780px;
    margin: 0 auto 24px;
}

.payment-result {
    padding: 70px 15px;
}

.result-card {
    max-width: 640px;
    margin: 0 auto;
    text-align: center;
    background:
        linear-gradient(
            180deg,
            rgba(15, 23, 42, .95),
            rgba(3, 7, 18, .98)
        );
    border:
        1px solid
        rgba(148, 163, 184, .22);
    border-radius: 18px;
    padding: 42px 30px;
    box-shadow:
        0 24px 70px
        rgba(0, 0, 0, .38);
}

.result-card h1 {
    font-weight: 950;
}

.result-card p {
    color: #cbd5e1;
}

.result-card .btn {
    margin: 8px 5px 0;
}

.result-icon {
    width: 72px;
    height: 72px;
    border-radius: 999px;
    margin: 0 auto 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.2rem;
    font-weight: 950;
}

.result-card.success .result-icon {
    color: #052e16;
    background: #22c55e;
}

.result-card.cancel .result-icon {
    color: white;
    background: #ef4444;
}

.result-note {
    color: #94a3b8 !important;
    font-size: .92rem;
}

.purchase-summary {
    display: grid;
    gap: 10px;
    margin: 22px 0;
    text-align: left;
}

.purchase-summary div {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    background: rgba(15, 23, 42, .70);
    border: 1px solid rgba(148, 163, 184, .16);
    border-radius: 10px;
    padding: 11px 13px;
}

.purchase-summary span {
    color: #94a3b8;
}

.purchase-summary strong {
    color: #f8fafc;
}

@media(max-width: 1100px) {
    .payment-grid {
        grid-template-columns:
            repeat(3, minmax(0, 1fr));
    }
}

@media(max-width: 760px) {
    .payment-grid,
    .payment-grid.extensions {
        grid-template-columns: 1fr;
    }
}

.verdict-access-widget {
    position: fixed;
    top: 14px;
    right: 14px;
    z-index: 9999;
    display: flex;
    align-items: center;
    gap: 12px;
    min-width: 260px;
    padding: 11px 13px;
    border: 1px solid rgba(34, 197, 94, .38);
    border-radius: 12px;
    background: linear-gradient(
        180deg,
        rgba(15, 23, 42, .97),
        rgba(3, 7, 18, .98)
    );
    box-shadow: 0 16px 46px rgba(0, 0, 0, .36);
    color: #f8fafc;
    backdrop-filter: blur(10px);
}

.verdict-access-widget.access-widget-inactive {
    display: none;
}

.access-widget-copy {
    min-width: 0;
    flex: 1;
}

.access-widget-label {
    color: #94a3b8;
    font-size: .69rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: .07em;
}

.access-widget-countdown {
    margin-top: 2px;
    font-size: .96rem;
    font-weight: 950;
    color: #22c55e;
    white-space: nowrap;
}

.access-widget-extend {
    border: 1px solid rgba(34, 197, 94, .45);
    border-radius: 8px;
    color: #22c55e;
    padding: 7px 10px;
    font-size: .76rem;
    font-weight: 900;
    text-decoration: none;
}

.access-widget-extend:hover {
    background: rgba(34, 197, 94, .10);
    color: #4ade80;
}

.active-access-card {
    max-width: 680px;
    margin: 24px auto 0;
    padding: 18px;
    display: grid;
    grid-template-columns: 1fr 1fr auto;
    align-items: center;
    gap: 14px;
    border: 1px solid rgba(34, 197, 94, .30);
    border-radius: 14px;
    background: rgba(15, 23, 42, .84);
    text-align: left;
}

.active-access-card div {
    display: grid;
    gap: 4px;
}

.active-access-card span {
    color: #94a3b8;
    font-size: .72rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: .06em;
}

.active-access-card strong {
    color: #f8fafc;
}

.payment-empty-state {
    grid-column: 1 / -1;
    color: #94a3b8;
    text-align: center;
    padding: 20px;
}

@media(max-width: 760px) {
    .verdict-access-widget {
        top: auto;
        right: 10px;
        left: 10px;
        bottom: 10px;
        min-width: 0;
    }

    .active-access-card {
        grid-template-columns: 1fr;
        text-align: center;
    }
}


.plan-badge {
    display: inline-block;
    margin-bottom: 10px;
    padding: 5px 9px;
    border-radius: 999px;
    background: rgba(34, 197, 94, 0.12);
    border: 1px solid rgba(34, 197, 94, 0.45);
    color: #22c55e;
    font-size: 0.68rem;
    font-weight: 900;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}


/* ==========================================================
   VERDICT PREMIUM PRICING CARDS
   ========================================================== */

.payment-grid {
    gap: 16px;
    align-items: stretch;
}

.payment-card {
    position: relative;
    overflow: hidden;
    isolation: isolate;
    padding: 24px 20px;
    border-width: 1px;
    transition:
        transform .22s ease,
        box-shadow .22s ease,
        border-color .22s ease;
}

.payment-card::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -1;
    pointer-events: none;
    opacity: .95;
}

.payment-card:hover {
    transform: translateY(-6px);
}


/* ---------- QUICK SESSION / BLUE ---------- */

.plan-quick_4h {
    border-color: rgba(37, 99, 235, .75);
    box-shadow:
        0 20px 55px rgba(0, 0, 0, .38),
        0 0 25px rgba(37, 99, 235, .12);
}

.plan-quick_4h::before {
    background:
        radial-gradient(
            circle at 50% 0%,
            rgba(37, 99, 235, .30),
            transparent 45%
        ),
        linear-gradient(
            180deg,
            rgba(7, 25, 61, .98),
            rgba(3, 7, 18, .99)
        );
}

.plan-quick_4h .payment-type {
    color: #3b82f6;
}

.plan-quick_4h .verdict-button {
    background: linear-gradient(
        135deg,
        #2563eb,
        #0d6efd
    );
    border-color: #3b82f6;
    color: white;
    box-shadow: 0 0 22px rgba(37, 99, 235, .32);
}


/* ---------- EXTENDED / PURPLE ---------- */

.plan-extended_8h {
    border-color: rgba(147, 51, 234, .75);
    box-shadow:
        0 20px 55px rgba(0, 0, 0, .38),
        0 0 25px rgba(147, 51, 234, .12);
}

.plan-extended_8h::before {
    background:
        radial-gradient(
            circle at 50% 0%,
            rgba(147, 51, 234, .30),
            transparent 45%
        ),
        linear-gradient(
            180deg,
            rgba(38, 10, 70, .98),
            rgba(3, 7, 18, .99)
        );
}

.plan-extended_8h .payment-type {
    color: #a855f7;
}

.plan-extended_8h .verdict-button {
    background: linear-gradient(
        135deg,
        #7e22ce,
        #a855f7
    );
    border-color: #a855f7;
    color: white;
    box-shadow: 0 0 22px rgba(147, 51, 234, .32);
}


/* ---------- DAILY / GOLD ---------- */

.plan-daily_24h {
    border-color: rgba(245, 158, 11, .90);
    box-shadow:
        0 22px 65px rgba(0, 0, 0, .42),
        0 0 34px rgba(245, 158, 11, .18);
}

.plan-daily_24h::before {
    background:
        radial-gradient(
            circle at 50% 0%,
            rgba(245, 158, 11, .35),
            transparent 48%
        ),
        linear-gradient(
            180deg,
            rgba(61, 38, 3, .98),
            rgba(3, 7, 18, .99)
        );
}

.plan-daily_24h .payment-type {
    color: #f59e0b;
}

.plan-daily_24h .verdict-button {
    background: linear-gradient(
        135deg,
        #f59e0b,
        #fbbf24
    );
    border-color: #fbbf24;
    color: #111827;
    box-shadow: 0 0 28px rgba(245, 158, 11, .38);
}


/* ---------- WEEKLY / GREEN ---------- */

.plan-weekly_7d {
    border-color: rgba(34, 197, 94, .75);
    box-shadow:
        0 20px 55px rgba(0, 0, 0, .38),
        0 0 25px rgba(34, 197, 94, .12);
}

.plan-weekly_7d::before {
    background:
        radial-gradient(
            circle at 50% 0%,
            rgba(34, 197, 94, .27),
            transparent 45%
        ),
        linear-gradient(
            180deg,
            rgba(4, 48, 30, .98),
            rgba(3, 7, 18, .99)
        );
}

.plan-weekly_7d .payment-type {
    color: #22c55e;
}

.plan-weekly_7d .verdict-button {
    background: linear-gradient(
        135deg,
        #16a34a,
        #22c55e
    );
    border-color: #22c55e;
    color: #02150a;
    box-shadow: 0 0 22px rgba(34, 197, 94, .30);
}


/* ---------- MONTHLY / RED ---------- */

.plan-monthly_30d {
    border-color: rgba(239, 68, 68, .80);
    box-shadow:
        0 20px 55px rgba(0, 0, 0, .38),
        0 0 28px rgba(239, 68, 68, .14);
}

.plan-monthly_30d::before {
    background:
        radial-gradient(
            circle at 50% 0%,
            rgba(239, 68, 68, .30),
            transparent 45%
        ),
        linear-gradient(
            180deg,
            rgba(64, 8, 12, .98),
            rgba(3, 7, 18, .99)
        );
}

.plan-monthly_30d .payment-type {
    color: #ef4444;
}

.plan-monthly_30d .verdict-button {
    background: linear-gradient(
        135deg,
        #dc2626,
        #ef4444
    );
    border-color: #ef4444;
    color: white;
    box-shadow: 0 0 24px rgba(239, 68, 68, .34);
}


/* ---------- TYPOGRAPHY ---------- */

.payment-card h2 {
    position: relative;
    z-index: 1;
}

.payment-card .payment-price {
    position: relative;
    z-index: 1;
    font-size: 2.7rem;
}

.payment-card .payment-duration {
    font-weight: 700;
}

.payment-card ul {
    position: relative;
    z-index: 1;
}

.payment-card .verdict-button {
    position: relative;
    z-index: 1;
    font-weight: 900;
    border-width: 1px;
    transition:
        transform .18s ease,
        filter .18s ease,
        box-shadow .18s ease;
}

.payment-card .verdict-button:hover {
    transform: translateY(-2px);
    filter: brightness(1.12);
}


/* ---------- BADGES ---------- */

.plan-daily_24h .plan-badge {
    background: #f59e0b;
    border-color: #fbbf24;
    color: #111827;
    box-shadow: 0 0 20px rgba(245, 158, 11, .28);
}

.plan-monthly_30d .plan-badge {
    background: #dc2626;
    border-color: #ef4444;
    color: white;
    box-shadow: 0 0 20px rgba(239, 68, 68, .28);
}

.plan-badge {
    width: 100%;
    text-align: center;
    font-weight: 950;
}


/* ---------- MOBILE ---------- */

@media(max-width: 760px) {

    .payment-card {
        padding: 24px;
    }

    .payment-card:hover {
        transform: none;
    }
}



/* ==========================================================
   VERDICT TRUST BAR
   ========================================================== */

.verdict-trust-bar {
    max-width: 1180px;
    margin: 55px auto 10px;
    padding: 20px 24px;

    display: grid;
    grid-template-columns: repeat(4, 1fr);

    background:
        linear-gradient(
            135deg,
            rgba(7, 21, 48, .98),
            rgba(4, 15, 36, .98)
        );

    border: 1px solid rgba(59, 130, 246, .22);
    border-radius: 16px;

    box-shadow:
        0 20px 55px rgba(0, 0, 0, .32),
        inset 0 1px 0 rgba(255,255,255,.025);
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 16px;

    min-height: 58px;
    padding: 4px 24px;

    border-right: 1px solid rgba(148, 163, 184, .15);
}

.trust-item:last-child {
    border-right: none;
}

.trust-icon {
    flex-shrink: 0;
    width: 42px;

    display: flex;
    align-items: center;
    justify-content: center;

    font-size: 2.1rem;
}

.trust-item strong {
    display: block;
    margin-bottom: 2px;

    color: #f8fafc;
    font-size: .98rem;
    font-weight: 850;
}

.trust-item span {
    display: block;

    color: #94a3b8;
    font-size: .82rem;
}


/* Individual icon colors */

.trust-secure .trust-icon {
    color: #1683ff;
}

.trust-instant .trust-icon {
    color: #a855f7;
}

.trust-market .trust-icon {
    color: #22c55e;
}

.trust-cancel .trust-icon {
    color: #ef4444;
}


/* Tablet */

@media(max-width: 1000px) {

    .verdict-trust-bar {
        grid-template-columns: repeat(2, 1fr);
    }

    .trust-item:nth-child(2) {
        border-right: none;
    }

    .trust-item {
        padding: 12px 20px;
    }
}


/* Mobile */

@media(max-width: 600px) {

    .verdict-trust-bar {
        grid-template-columns: 1fr;
        margin-top: 35px;
        padding: 12px 18px;
    }

    .trust-item {
        border-right: none;
        border-bottom: 1px solid rgba(148, 163, 184, .15);
        padding: 15px 8px;
    }

    .trust-item:last-child {
        border-bottom: none;
    }
}



/* Trust bar inline SVG icons */

.trust-icon svg {
    width: 38px;
    height: 38px;
    fill: none;
    stroke: currentColor;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.trust-instant .trust-icon svg {
    fill: currentColor;
    stroke: currentColor;
}



/* ==========================================================
   VERDICT FINAL PRICING CARD LAYOUT
   ========================================================== */


/* ----------------------------------------------------------
   GRID
   ---------------------------------------------------------- */

.verdict-plan-grid {
    display: grid;
    grid-template-columns:
        repeat(5, minmax(0, 1fr));
    gap: 16px;

    /*
     * Space above cards allows badges to float
     * above Daily + Monthly without shifting cards.
     */
    padding-top: 22px;

    align-items: stretch;
}


/* ----------------------------------------------------------
   EQUAL-SIZE CARDS
   ---------------------------------------------------------- */

.verdict-plan-card {
    position: relative;

    /*
     * Every card receives exactly the same height.
     */
    min-height: 470px;
    height: 100%;

    display: grid;

    /*
     * Header
     * Price
     * Duration
     * Divider
     * Features
     * CTA
     */
    grid-template-rows:
        86px
        58px
        28px
        1px
        1fr
        54px;

    gap: 8px;

    padding:
        30px
        18px
        18px;

    /*
     * Required so badges can sit slightly
     * above the card.
     */
    overflow: visible;

    cursor: pointer;

    transition:
        transform .20s ease,
        box-shadow .20s ease,
        filter .20s ease;
}


.verdict-plan-card:hover {
    transform: translateY(-7px);
    filter: brightness(1.06);
}


.verdict-plan-card:focus-visible {
    outline: 2px solid white;
    outline-offset: 4px;
}


/* Preserve colored card background beneath overflowing badge */

.verdict-plan-card::before {
    border-radius: inherit;
}


/* ----------------------------------------------------------
   PLAN NAME / DURATION
   ---------------------------------------------------------- */

.plan-card-header {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;

    min-height: 86px;
}


.plan-display-name {
    min-height: 0 !important;
    margin: 0 0 5px !important;

    font-size: 1.25rem !important;
    line-height: 1.15;

    font-weight: 950;
}


.plan-primary-duration {
    font-size: .93rem;
    font-weight: 850;

    color: #94a3b8;
}


/*
 * This is the intentional second duration line underneath
 * the price shown in the mockup.
 *
 * If you want duration shown ONLY once total, hide this
 * with display:none.
 */

.payment-duration {
    margin: 0 !important;

    display: flex;
    align-items: center;

    font-weight: 850;
}


/* ----------------------------------------------------------
   PRICE ALIGNMENT
   ---------------------------------------------------------- */

.verdict-plan-card .payment-price {
    height: 58px;

    margin: 0 !important;

    display: flex;
    align-items: center;

    font-size: 2.7rem;
    line-height: 1;
    font-weight: 950;
}


/*
 * Every plan price now occupies the exact same grid row.
 * Badge presence has zero effect on positioning.
 */


/* ----------------------------------------------------------
   DIVIDER
   ---------------------------------------------------------- */

.plan-divider {
    width: 100%;
    height: 1px;

    opacity: .72;
}


/* Individual divider colors */

.plan-quick_4h .plan-divider {
    background: #3b82f6;
    box-shadow: 0 0 8px rgba(59, 130, 246, .45);
}

.plan-extended_8h .plan-divider {
    background: #a855f7;
    box-shadow: 0 0 8px rgba(168, 85, 247, .45);
}

.plan-daily_24h .plan-divider {
    background: #f59e0b;
    box-shadow: 0 0 8px rgba(245, 158, 11, .45);
}

.plan-weekly_7d .plan-divider {
    background: #22c55e;
    box-shadow: 0 0 8px rgba(34, 197, 94, .45);
}

.plan-monthly_30d .plan-divider {
    background: #ef4444;
    box-shadow: 0 0 8px rgba(239, 68, 68, .45);
}


/* ----------------------------------------------------------
   FEATURES
   ---------------------------------------------------------- */

.plan-features {
    min-height: 0;
    padding-top: 6px;
}


.plan-features ul {
    margin: 0;
    padding-left: 18px;
}


.plan-features li {
    margin-bottom: 9px;
}


/* ----------------------------------------------------------
   CTA
   ---------------------------------------------------------- */

.plan-unlock-button {
    width: 100%;
    height: 48px;

    margin-top: auto;

    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;

    border-radius: 9px;

    font-weight: 950;
    text-decoration: none;

    /*
     * Keep actual button above card click handling.
     */
    position: relative;
    z-index: 5;
}


.plan-arrow {
    font-size: 1.15rem;
    line-height: 1;
}


/* ----------------------------------------------------------
   BADGES
   ---------------------------------------------------------- */

.verdict-plan-card .plan-badge {
    position: absolute;

    /*
     * Both badges now sit at the exact same vertical level.
     */
    top: -15px;
    left: 50%;

    transform: translateX(-50%);

    width: calc(100% - 34px);

    margin: 0;

    padding: 6px 12px;

    border-radius: 999px;

    text-align: center;

    font-size: .68rem;
    line-height: 1;

    font-weight: 950;
    letter-spacing: .08em;

    z-index: 10;
}


.plan-daily_24h .plan-badge {
    background:
        linear-gradient(
            135deg,
            #f59e0b,
            #fbbf24
        );

    border: 1px solid #fbbf24;

    color: #111827;

    box-shadow:
        0 0 20px
        rgba(245, 158, 11, .38);
}


.plan-monthly_30d .plan-badge {
    background:
        linear-gradient(
            135deg,
            #dc2626,
            #ef4444
        );

    border: 1px solid #ef4444;

    color: white;

    box-shadow:
        0 0 20px
        rgba(239, 68, 68, .36);
}


/* ----------------------------------------------------------
   REMOVE OLD "ACCESS PASS" ELEMENTS IF ANY REMAIN
   ---------------------------------------------------------- */

.verdict-plan-card > .payment-type {
    display: none !important;
}


/* ----------------------------------------------------------
   CARD CLICK HINT
   ---------------------------------------------------------- */

.pricing-click-hint {
    margin:
        25px auto
        -20px;

    text-align: center;

    color: #94a3b8;

    font-size: .88rem;
    font-weight: 700;
}


/* ----------------------------------------------------------
   PLAN-SPECIFIC DURATION COLORS
   ---------------------------------------------------------- */

.plan-quick_4h .plan-primary-duration,
.plan-quick_4h .payment-duration {
    color: #60a5fa;
}

.plan-extended_8h .plan-primary-duration,
.plan-extended_8h .payment-duration {
    color: #c084fc;
}

.plan-daily_24h .plan-primary-duration,
.plan-daily_24h .payment-duration {
    color: #fbbf24;
}

.plan-weekly_7d .plan-primary-duration,
.plan-weekly_7d .payment-duration {
    color: #4ade80;
}

.plan-monthly_30d .plan-primary-duration,
.plan-monthly_30d .payment-duration {
    color: #f87171;
}


/* ----------------------------------------------------------
   TABLET
   ---------------------------------------------------------- */

@media(max-width: 1100px) {

    .verdict-plan-grid {
        grid-template-columns:
            repeat(3, minmax(0, 1fr));

        row-gap: 40px;
    }

    .verdict-plan-card {
        min-height: 470px;
    }
}


/* ----------------------------------------------------------
   MOBILE
   ---------------------------------------------------------- */

@media(max-width: 760px) {

    .verdict-plan-grid {
        grid-template-columns: 1fr;

        gap: 38px;

        padding-top: 18px;
    }

    .verdict-plan-card {
        min-height: 0;

        grid-template-rows:
            auto
            auto
            auto
            1px
            auto
            54px;

        padding:
            30px
            22px
            20px;
    }

    .plan-card-header {
        min-height: 0;
    }

    .verdict-plan-card:hover {
        transform: none;
    }

    .pricing-click-hint {
        display: none;
    }
}

