/* ═══════════════════════════════════════════════════════════════
   PHASE 6 — CSS PUBLIC (tarifs, addons, mon abonnement)
   ═══════════════════════════════════════════════════════════════ */

.peia-p6-tarifs,
.peia-p6-addons,
.peia-p6-mon-abo {
    max-width: 1200px;
    margin: 30px auto;
    padding: 0 20px;
}

/* CYCLE TOGGLE */
.peia-p6-cycle-toggle {
    text-align: center;
    margin-bottom: 32px;
}
.peia-p6-cycle-btn {
    background: #fff;
    border: 2px solid #e0e6ed;
    padding: 10px 24px;
    margin: 0 6px;
    border-radius: 50px;
    cursor: pointer;
    font-weight: 600;
    color: #555;
    transition: all .15s;
    font-size: 14px;
}
.peia-p6-cycle-btn:hover { border-color: #E8622A; }
.peia-p6-cycle-btn.is-active {
    background: linear-gradient(135deg, #0A2463, #1a3578);
    color: #fff;
    border-color: #0A2463;
}
.peia-p6-econ {
    background: #1abc66;
    color: #fff;
    padding: 2px 8px;
    border-radius: 12px;
    font-size: 11px;
    margin-left: 6px;
}

/* PLANS GRID */
.peia-p6-plans-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 18px;
}

.peia-p6-plan-card {
    background: #fff;
    border-radius: 16px;
    padding: 28px 24px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, .08);
    border: 2px solid transparent;
    position: relative;
    transition: all .25s;
    display: flex;
    flex-direction: column;
}
.peia-p6-plan-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 28px rgba(10, 36, 99, .15);
    border-color: var(--couleur);
}

.peia-p6-plan-card.is-populaire {
    border-color: var(--couleur);
    box-shadow: 0 8px 24px rgba(26, 188, 156, .2);
    transform: scale(1.04);
}

.peia-p6-popular-badge {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #E8622A, #c54a18);
    color: #fff;
    padding: 6px 18px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 700;
    box-shadow: 0 4px 12px rgba(232, 98, 42, .3);
}

.peia-p6-plan-card h3 {
    color: #0A2463;
    margin: 0 0 4px;
    font-size: 22px;
    text-align: center;
}
.peia-p6-cible {
    color: #888;
    text-align: center;
    font-size: 13px;
    margin: 0 0 18px;
}

.peia-p6-prix-box {
    text-align: center;
    margin: 18px 0;
    padding: 18px 0;
    border-top: 1px solid #f0f0f0;
    border-bottom: 1px solid #f0f0f0;
}
.peia-p6-prix-num {
    font-size: 52px;
    font-weight: 800;
    color: var(--couleur);
    line-height: 1;
}
.peia-p6-prix-num sup {
    font-size: 24px;
    vertical-align: top;
    margin-left: 2px;
}
.peia-p6-prix-suffix {
    display: block;
    color: #888;
    font-size: 13px;
    margin-top: 4px;
}
.peia-p6-prix-annuel small {
    display: block;
    color: #1abc66;
    font-weight: 600;
    margin-top: 4px;
}

.peia-p6-demandes-mega {
    background: linear-gradient(135deg, var(--couleur), #0A2463);
    color: #fff;
    text-align: center;
    padding: 12px 14px;
    border-radius: 10px;
    font-weight: 700;
    font-size: 16px;
    margin-bottom: 20px;
    letter-spacing: .3px;
}

.peia-p6-avantages {
    list-style: none;
    padding: 0;
    margin: 0 0 20px;
    flex: 1;
}
.peia-p6-avantages li {
    padding: 8px 0;
    font-size: 14px;
    color: #444;
    border-bottom: 1px solid #f5f5f5;
}
.peia-p6-avantages li:last-child { border-bottom: 0; }

.peia-p6-souscrire-btn {
    background: linear-gradient(135deg, var(--couleur), #0A2463);
    color: #fff;
    border: 0;
    padding: 14px;
    border-radius: 10px;
    font-size: 15px;
    font-weight: 700;
    cursor: pointer;
    width: 100%;
    transition: all .2s;
    text-transform: uppercase;
    letter-spacing: .5px;
}
.peia-p6-souscrire-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(10, 36, 99, .25);
}

/* GARANTIES */
.peia-p6-garanties {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 14px;
    margin-top: 40px;
    padding: 24px;
    background: linear-gradient(135deg, #fff7e8 0%, #fff4e0 100%);
    border-radius: 14px;
}
.peia-p6-garantie {
    text-align: center;
    padding: 12px;
}
.peia-p6-garantie-icon {
    font-size: 32px;
    display: block;
    margin-bottom: 6px;
}
.peia-p6-garantie strong {
    display: block;
    color: #0A2463;
    font-size: 14px;
    margin-bottom: 4px;
}
.peia-p6-garantie small {
    color: #6c5028;
    font-size: 12px;
    line-height: 1.4;
}

/* MODAL PAIEMENT */
.peia-p6-modal-overlay {
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(10, 36, 99, .65);
    backdrop-filter: blur(4px);
    z-index: 99998;
}
.peia-p6-modal-inner {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: #fff;
    border-radius: 16px;
    padding: 32px 36px;
    width: 90%;
    max-width: 460px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, .35);
    z-index: 99999;
    max-height: 90vh;
    overflow-y: auto;
}
.peia-p6-modal-close {
    position: absolute;
    top: 14px; right: 14px;
    background: #f5f5f5;
    border: 0;
    width: 30px; height: 30px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 14px;
}
.peia-p6-modal-inner h2 {
    margin: 0 0 8px;
    color: #0A2463;
    font-size: 22px;
}

.peia-p6-payment-providers {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin: 20px 0;
}
.peia-p6-provider-btn {
    background: #fff;
    border: 2px solid #e0e6ed;
    padding: 14px 18px;
    border-radius: 10px;
    cursor: pointer;
    text-align: left;
    transition: all .15s;
    display: flex;
    flex-direction: column;
    gap: 4px;
}
.peia-p6-provider-btn:hover {
    border-color: #0A2463;
    background: #f0f7ff;
}
.peia-p6-provider-btn span {
    font-weight: 700;
    color: #0A2463;
    font-size: 15px;
}
.peia-p6-provider-btn small {
    color: #888;
    font-size: 12px;
}
.peia-p6-stripe-btn {
    border-color: #635bff;
}
.peia-p6-paypal-btn {
    border-color: #003087;
}

.peia-p6-promo-zone {
    margin: 16px 0;
    padding: 14px;
    background: #fff8e8;
    border-radius: 8px;
}
.peia-p6-promo-zone label {
    display: block;
    font-weight: 600;
    color: #b86b1d;
    margin-bottom: 6px;
    font-size: 13px;
}
.peia-p6-promo-zone input {
    width: 100%;
    padding: 9px 12px;
    border: 1px solid #ddd;
    border-radius: 6px;
}

.peia-p6-modal-info {
    text-align: center;
    color: #888;
    font-size: 12px;
    margin-top: 14px;
}

/* ADD-ONS */
.peia-p6-addons-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 16px;
}
.peia-p6-addon-card {
    background: #fff;
    border-radius: 12px;
    padding: 22px 20px;
    text-align: center;
    box-shadow: 0 3px 12px rgba(0, 0, 0, .06);
    border-top: 3px solid #1abc9c;
}
.peia-p6-addon-card h3 {
    margin: 0 0 6px;
    color: #0A2463;
    font-size: 16px;
}
.peia-p6-addon-card p {
    color: #666;
    font-size: 13px;
    margin-bottom: 14px;
}
.peia-p6-addon-prix {
    font-size: 32px;
    font-weight: 800;
    color: #E8622A;
    margin-bottom: 14px;
}
.peia-p6-addon-prix small {
    font-size: 14px;
    color: #888;
}
.peia-p6-addon-btn {
    background: linear-gradient(135deg, #1abc9c, #0a8554);
    color: #fff;
    border: 0;
    padding: 10px 22px;
    border-radius: 50px;
    cursor: pointer;
    font-weight: 600;
    width: 100%;
}

/* MON ABONNEMENT */
.peia-p6-no-abo {
    text-align: center;
    padding: 40px 20px;
    background: #f9fafc;
    border-radius: 12px;
}
.peia-p6-cta-btn {
    display: inline-block;
    background: linear-gradient(135deg, #E8622A, #c54a18);
    color: #fff !important;
    padding: 12px 28px;
    border-radius: 50px;
    text-decoration: none !important;
    font-weight: 700;
    margin-top: 14px;
}

.peia-p6-abo-card {
    background: #fff;
    border-radius: 14px;
    padding: 26px 30px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, .08);
    border-left: 6px solid #1abc9c;
}
.peia-p6-abo-head {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 18px;
}
.peia-p6-abo-head h3 {
    margin: 0;
    color: #0A2463;
}
.peia-p6-statut {
    padding: 5px 14px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
}
.peia-p6-statut-actif { background: #d4f5e2; color: #0a8554; }
.peia-p6-statut-annule { background: #fde2e2; color: #c92a2a; }

.peia-p6-abo-details {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 14px;
    margin: 18px 0;
}
.peia-p6-abo-details > div {
    background: #f9fafc;
    padding: 12px 16px;
    border-radius: 8px;
}
.peia-p6-abo-details strong {
    display: block;
    color: #0A2463;
    font-size: 12px;
    margin-bottom: 3px;
    text-transform: uppercase;
    letter-spacing: .3px;
}
.peia-p6-abo-details span {
    color: #444;
    font-size: 14px;
}

.peia-p6-usage {
    margin: 18px 0;
}
.peia-p6-usage strong {
    color: #0A2463;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: .3px;
}
.peia-p6-usage-bar {
    height: 12px;
    background: #f0f0f0;
    border-radius: 6px;
    overflow: hidden;
    margin: 8px 0;
}
.peia-p6-usage-fill {
    height: 100%;
    background: linear-gradient(90deg, #1abc66, #E8622A);
    transition: width .8s ease;
}

.peia-p6-abo-actions {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-top: 18px;
    padding-top: 18px;
    border-top: 1px solid #f0f0f0;
}
.peia-p6-abo-actions button,
.peia-p6-abo-actions a {
    padding: 10px 20px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    cursor: pointer;
    border: 0;
    font-size: 13px;
}
.peia-p6-portal-btn {
    background: #635bff;
    color: #fff;
}
.peia-p6-upgrade-btn {
    background: linear-gradient(135deg, #E8622A, #c54a18);
    color: #fff !important;
}
.peia-p6-addon-link {
    background: #1abc9c;
    color: #fff !important;
}

/* CONFIRMATION */
.peia-p6-confirmation {
    max-width: 600px;
    margin: 60px auto;
    text-align: center;
    padding: 48px 32px;
    background: linear-gradient(135deg, #f0fdf4 0%, #d4f5e2 100%);
    border-radius: 14px;
}
.peia-p6-conf-icon {
    font-size: 64px;
    margin-bottom: 18px;
}
.peia-p6-confirmation h2 {
    color: #0A2463;
    margin-bottom: 12px;
}

@media (max-width: 768px) {
    .peia-p6-plan-card.is-populaire { transform: none; }
    .peia-p6-plans-grid { grid-template-columns: 1fr; }
}
