/* Pricing page (public only) */

.bp2-pricing-main {
    padding-top: 20px;
}

.bp2-pricing-hero {
    text-align: center;
    margin-bottom: 26px;
}

.bp2-pricing-title {
    font-size: 40px;
    font-weight: 900;
    margin: 0 0 10px;
    line-height: 1.1;
    letter-spacing: -0.02em;
}

.bp2-pricing-subtitle {
    margin: 0 auto;
    max-width: 680px;
    color: rgba(255, 255, 255, 0.62);
    font-size: 14px;
    line-height: 1.6;
}

.bp2-pricing-cards {
    display: grid;
    grid-template-columns: repeat(3, minmax(240px, 1fr));
    gap: 18px;
}

.bp2-pricing-card {
    border-radius: 22px;
    border: 1px solid rgba(170, 120, 255, 0.18);
    background: rgba(0, 0, 0, 0.22);
    padding: 18px 18px 16px;
    position: relative;
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.35);
}

.bp2-pricing-card--popular {
    background: rgba(30, 38, 80, 0.35);
    border-color: rgba(139, 92, 246, 0.34);
}

.bp2-pricing-popular {
    position: absolute;
    top: 14px;
    left: 50%;
    transform: translateX(-50%);
    height: 26px;
    padding: 0 12px;
    border-radius: 999px;
    background: rgba(139, 92, 246, 0.28);
    border: 1px solid rgba(139, 92, 246, 0.45);
    color: rgba(255, 255, 255, 0.92);
    font-size: 12px;
    font-weight: 900;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.bp2-pricing-card-head {
    margin-top: 24px;
    margin-bottom: 10px;
    text-align: center;
}

.bp2-pricing-plan {
    font-weight: 900;
    font-size: 16px;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 6px;
}

.bp2-pricing-price-small {
    color: rgba(255, 255, 255, 0.55);
    font-size: 12px;
    line-height: 1.4;
}

.bp2-pricing-amount {
    text-align: center;
    margin: 10px 0 14px;
}

.bp2-pricing-amount-value {
    font-size: 34px;
    font-weight: 1000;
    letter-spacing: -0.03em;
}

.bp2-pricing-amount-unit {
    display: block;
    margin-top: -2px;
    color: rgba(255, 255, 255, 0.62);
    font-size: 12px;
    font-weight: 800;
}

.bp2-pricing-features {
    list-style: none;
    padding: 0;
    margin: 0 0 18px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.bp2-pricing-features li {
    color: rgba(255, 255, 255, 0.75);
    font-size: 13px;
    line-height: 1.3;
    padding-left: 22px;
    position: relative;
}

.bp2-pricing-features li::before {
    content: "";
    position: absolute;
    left: 2px;
    /* Légère remontée visuelle des coches */
    top: calc(50% - 4px);
    width: 10px;
    height: 6px;
    background: transparent;
    border: solid rgba(87, 255, 154, 0.95);
    border-width: 0 3px 3px 0;
    transform: translateY(-50%) rotate(45deg);
    pointer-events: none;
}

.bp2-pricing-subscribe {
    width: 100%;
    height: 44px;
    border-radius: 14px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    background: rgba(255, 255, 255, 0.05);
    color: rgba(255, 255, 255, 0.85);
    font-weight: 900;
    cursor: not-allowed;
}

.bp2-pricing-subscribe--primary {
    background: linear-gradient(90deg, rgba(76, 143, 255, 1) 0%, rgba(139, 92, 246, 1) 100%);
    border-color: rgba(139, 92, 246, 0.55);
    color: #fff;
}

@media (max-width: 980px) {
    .bp2-pricing-cards {
        grid-template-columns: 1fr;
    }
}

