/* ═══════════════════════════════════════════════
   Playerverse — Premium Pricing Section v2
   Stripe / Notion–inspired • Conversion-focused
   ═══════════════════════════════════════════════ */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&display=swap');

/* ── Reset wrapper context ── */
.pvp-pricing-wrapper {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background: transparent;
    color: #e4e5e9;
    -webkit-font-smoothing: antialiased;
    padding: 0 24px 60px;
    margin-top: -40px;
}
.pvp-pricing-wrapper *, .pvp-pricing-wrapper *::before, .pvp-pricing-wrapper *::after {
    box-sizing: border-box;
}

/* ── Section header ── */
.pvp-pricing-header {
    text-align: center;
    max-width: 620px;
    margin: 0 auto 56px;
}
.pvp-pricing-eyebrow {
    display: inline-block;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #6c63ff;
    background: rgba(108, 99, 255, .12);
    padding: 5px 14px;
    border-radius: 20px;
    margin-bottom: 18px;
}
.pvp-pricing-headline {
    font-size: 36px;
    font-weight: 800;
    line-height: 1.2;
    color: #fff;
    margin: 0 0 14px;
}
.pvp-pricing-subheadline {
    font-size: 16px;
    line-height: 1.6;
    color: #9ca3af;
    margin: 0;
}

/* ── Grid ── */
.pvp-pricing-wrapper .pvp-pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    max-width: 1120px;
    margin: 0 auto;
    align-items: start;
}

/* ── Card ── */
.pvp-card {
    position: relative;
    background: #1a1d26;
    border: 1px solid rgba(255, 255, 255, .06);
    border-radius: 16px;
    padding: 36px 28px 32px;
    display: flex;
    flex-direction: column;
    transition: transform .25s ease, box-shadow .25s ease;
}
.pvp-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, .35);
}

/* ── Featured card (middle) ── */
.pvp-card-featured {
    background: linear-gradient(180deg, #1e2030 0%, #181a28 100%);
    border: 2px solid #6c63ff;
    padding: 44px 28px 36px;
    z-index: 2;
    box-shadow: 0 0 60px rgba(108, 99, 255, .10), 0 8px 30px rgba(0, 0, 0, .3);
}
.pvp-card-featured:hover {
    box-shadow: 0 0 80px rgba(108, 99, 255, .18), 0 16px 50px rgba(0, 0, 0, .4);
}

/* Badge */
.pvp-card-badge {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #6c63ff, #8b5cf6);
    color: #fff;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 6px 20px;
    border-radius: 20px;
    white-space: nowrap;
    box-shadow: 0 4px 14px rgba(108, 99, 255, .35);
}

/* ── Card Head ── */
.pvp-card-head {
    text-align: center;
    margin-bottom: 24px;
}
.pvp-card-title {
    font-size: 22px;
    font-weight: 700;
    color: #fff;
    margin: 0 0 6px;
}
.pvp-card-tagline {
    font-size: 15px;
    font-weight: 500;
    color: #a78bfa;
    margin: 0 0 8px;
}
.pvp-card-audience {
    font-size: 13px;
    color: #6b7280;
    margin: 0;
    line-height: 1.4;
}

/* ── Price ── */
.pvp-card-price {
    text-align: center;
    margin-bottom: 28px;
    padding-bottom: 24px;
    border-bottom: 1px solid rgba(255, 255, 255, .06);
}
.pvp-price-was {
    display: block;
    font-size: 15px;
    color: #6b7280;
    text-decoration: line-through;
    margin-bottom: 4px;
}
.pvp-price-amount {
    font-size: 46px;
    font-weight: 800;
    color: #fff;
    letter-spacing: -1px;
    line-height: 1;
}
.pvp-price-currency {
    font-size: 26px;
    font-weight: 700;
    vertical-align: super;
    margin-right: 2px;
}
.pvp-price-plus {
    font-size: 26px;
    font-weight: 700;
    color: #9ca3af;
}
.pvp-price-vat {
    display: block;
    font-size: 13px;
    color: #6b7280;
    margin-top: 6px;
}

/* ── Feature groups ── */
.pvp-card-body {
    flex: 1;
    margin-bottom: 20px;
}
.pvp-feature-group {
    margin-bottom: 18px;
}
.pvp-feature-group:last-child {
    margin-bottom: 0;
}
.pvp-feature-group-label {
    display: inline-block;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: #6b7280;
    margin-bottom: 10px;
}
.pvp-feature-list {
    list-style: none;
    margin: 0;
    padding: 0;
}
.pvp-feature-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    color: #d1d5db;
    padding: 5px 0;
    line-height: 1.4;
}
.pvp-feat-icon {
    flex-shrink: 0;
    font-size: 16px;
    width: 22px;
    text-align: center;
}

/* Business value list — styled differently */
.pvp-feature-list-value li {
    padding-left: 0;
}
.pvp-feature-list-value li::before {
    content: '✓';
    flex-shrink: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 22px;
    height: 22px;
    font-size: 12px;
    font-weight: 700;
    color: #4ade80;
    background: rgba(74, 222, 128, .1);
    border-radius: 50%;
    margin-right: 10px;
}

/* ── ROI + Urgency ── */
.pvp-card-roi {
    text-align: center;
    font-size: 13px;
    color: #4ade80;
    background: rgba(74, 222, 128, .06);
    border: 1px solid rgba(74, 222, 128, .12);
    border-radius: 8px;
    padding: 10px 14px;
    margin-bottom: 20px;
    line-height: 1.5;
}
.pvp-card-urgency {
    text-align: center;
    font-size: 13px;
    font-weight: 600;
    color: #fbbf24;
    background: rgba(251, 191, 36, .06);
    border: 1px solid rgba(251, 191, 36, .12);
    border-radius: 8px;
    padding: 10px 14px;
    margin-bottom: 20px;
}

/* ── Savings badge ── */
.pvp-price-save {
    display: inline-block;
    font-size: 12px;
    font-weight: 700;
    color: #4ade80;
    background: rgba(74, 222, 128, .12);
    padding: 3px 12px;
    border-radius: 12px;
    margin-top: 8px;
    letter-spacing: .5px;
}

/* ── CTA microcopy ── */
.pvp-cta-micro {
    display: block;
    text-align: center;
    font-size: 12px;
    color: #6b7280;
    margin-top: 10px;
    line-height: 1.4;
}

/* ── Feature note (inline annotation) ── */
.pvp-feat-note {
    font-size: 12px;
    color: #6b7280;
    font-weight: 400;
}
.pvp-feature-list strong {
    color: #fff;
    font-weight: 600;
}

/* ── CTA ── */
.pvp-card-cta {
    margin-top: auto;
}
.pvp-btn {
    display: block;
    width: 100%;
    text-align: center;
    font-size: 15px;
    font-weight: 700;
    padding: 14px 24px;
    border-radius: 10px;
    text-decoration: none;
    cursor: pointer;
    transition: all .2s ease;
}
.pvp-btn-outline {
    color: #e4e5e9;
    border: 1.5px solid rgba(255, 255, 255, .15);
    background: transparent;
}
.pvp-btn-outline:hover {
    background: rgba(255, 255, 255, .06);
    border-color: rgba(255, 255, 255, .3);
    color: #fff;
}
.pvp-btn-primary {
    color: #fff;
    background: linear-gradient(135deg, #6c63ff, #8b5cf6);
    border: none;
    box-shadow: 0 4px 14px rgba(108, 99, 255, .35);
}
.pvp-btn-primary:hover {
    background: linear-gradient(135deg, #7c73ff, #9b6cf6);
    box-shadow: 0 6px 20px rgba(108, 99, 255, .45);
    transform: translateY(-1px);
}

/* ── Trust bar ── */
.pvp-trust-bar {
    display: flex;
    justify-content: center;
    gap: 32px;
    flex-wrap: wrap;
    margin-top: 48px;
    padding-top: 32px;
    border-top: 1px solid rgba(255, 255, 255, .06);
}
.pvp-trust-item {
    font-size: 13px;
    color: #6b7280;
}

/* ═══════════════════════════════
   Responsive
   ═══════════════════════════════ */

@media (max-width: 960px) {
    .pvp-pricing-wrapper .pvp-pricing-grid {
        grid-template-columns: 1fr;
        max-width: 440px;
        margin: 0 auto;
        gap: 28px;
    }
    /* Reorder: featured first on mobile */
    .pvp-card-featured {
        order: -1;
    }
    .pvp-pricing-headline {
        font-size: 28px;
    }
    .pvp-pricing-wrapper {
        padding: 60px 16px 40px;
    }
    .pvp-trust-bar {
        flex-direction: column;
        align-items: center;
        gap: 12px;
    }
}

@media (min-width: 961px) and (max-width: 1100px) {
    .pvp-pricing-wrapper .pvp-pricing-grid {
        gap: 16px;
    }
    .pvp-card {
        padding: 28px 20px 28px;
    }
}

/* ═══════════════════════════════
   Override Divi / theme conflicts
   ═══════════════════════════════ */
.pvp-pricing-wrapper h2,
.pvp-pricing-wrapper h3 {
    padding-bottom: 0 !important;
}
.pvp-pricing-wrapper ul {
    padding-left: 0 !important;
}
.pvp-pricing-wrapper li::marker {
    content: none;
}
.pvp-pricing-wrapper a {
    text-decoration: none !important;
}

/* Hide old pricing section class if still present */
.pvp-pricing-section {
    display: none !important;
}

/* ═══════════════════════════════
   Leaderboard Add-on Block
   ═══════════════════════════════ */

.pvp-addon-block {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    max-width: 600px;
    margin: 36px auto 0;
    padding: 16px 24px;
    background: rgba(108, 99, 255, .06);
    border: 1px solid rgba(108, 99, 255, .15);
    border-radius: 12px;
    text-align: center;
    flex-wrap: wrap;
}
.pvp-addon-label {
    display: inline-block;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: #a78bfa;
    background: rgba(108, 99, 255, .15);
    padding: 3px 10px;
    border-radius: 6px;
}
.pvp-addon-text {
    font-size: 15px;
    color: #d1d5db;
}
.pvp-addon-text strong {
    color: #fff;
    font-weight: 700;
}

/* ═══════════════════════════════
   PlayerVerse Care Section
   ═══════════════════════════════ */

.pvp-care-section {
    max-width: 800px;
    margin: 56px auto 0;
    padding: 40px 32px;
    background: rgba(255, 255, 255, .03);
    border: 1px solid rgba(255, 255, 255, .06);
    border-radius: 16px;
}

.pvp-care-header {
    text-align: center;
    margin-bottom: 32px;
}
.pvp-care-eyebrow {
    display: inline-block;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #6c63ff;
    background: rgba(108, 99, 255, .12);
    padding: 4px 12px;
    border-radius: 16px;
    margin-bottom: 14px;
}
.pvp-care-title {
    font-size: 26px;
    font-weight: 800;
    color: #fff;
    margin: 0 0 10px;
}
.pvp-care-subtitle {
    font-size: 15px;
    color: #9ca3af;
    margin: 0;
    line-height: 1.5;
}

/* Care tier cards */
.pvp-care-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin-bottom: 28px;
}
.pvp-care-card {
    text-align: center;
    padding: 24px 16px;
    background: rgba(255, 255, 255, .03);
    border: 1px solid rgba(255, 255, 255, .06);
    border-radius: 12px;
    transition: transform .2s ease, box-shadow .2s ease;
}
.pvp-care-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, .25);
}
.pvp-care-card-featured {
    border-color: rgba(108, 99, 255, .35);
    background: rgba(108, 99, 255, .06);
}
.pvp-care-card-title {
    font-size: 16px;
    font-weight: 700;
    color: #fff;
    margin: 0 0 8px;
    padding-bottom: 0;
}
.pvp-care-price {
    font-size: 32px;
    font-weight: 800;
    color: #fff;
    line-height: 1;
}
.pvp-care-currency {
    font-size: 18px;
    font-weight: 700;
    vertical-align: super;
    margin-right: 1px;
}
.pvp-care-period {
    font-size: 15px;
    font-weight: 500;
    color: #6b7280;
}

/* Includes list */
.pvp-care-includes {
    text-align: center;
}
.pvp-care-includes-label {
    display: inline-block;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: #6b7280;
    margin-bottom: 12px;
}
.pvp-care-includes-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}
.pvp-care-includes-list li {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 14px;
    color: #d1d5db;
}
.pvp-care-check {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 20px;
    height: 20px;
    font-size: 11px;
    font-weight: 700;
    color: #4ade80;
    background: rgba(74, 222, 128, .1);
    border-radius: 50%;
    flex-shrink: 0;
}
.pvp-care-cancel {
    text-align: center;
    font-size: 13px;
    color: #6b7280;
    margin: 20px 0 0;
    line-height: 1.5;
    font-style: italic;
}

/* ═══ Care responsive ═══ */
@media (max-width: 960px) {
    .pvp-care-grid {
        grid-template-columns: 1fr;
        max-width: 300px;
        margin: 0 auto 28px;
    }
    .pvp-care-section {
        padding: 28px 20px;
    }
    .pvp-care-includes-list {
        flex-direction: column;
        align-items: center;
        gap: 10px;
    }
    .pvp-addon-block {
        flex-direction: column;
        gap: 8px;
    }
}
