/* ═══════════════════════════════════════════════════════════════════════════
   PRICING SXO 2026 - DARK NAVY IMMERSIF (VARIANTE A ADAPTIVE)
   ═══════════════════════════════════════════════════════════════════════════

   Design validé : Variante A - Dark Navy Immersif
   - Fond gradient Navy profond (immersion maximale)
   - Cards glassmorphism avec reflets subtils
   - Grid adaptive 2-4 cartes avec centrage automatique
   - Badge "Recommandé" flottant avec étoile
   - Boutons CTA gold gradient
   - Mobile-first strict
   - Container 1200px

   Date: 2026-01-31
   ═══════════════════════════════════════════════════════════════════════════ */

/* ═══════════════════════════════════════════════════════════════════════════
   SECURISATION AFFICHAGE
   ═══════════════════════════════════════════════════════════════════════════ */
.sxo-2026-wrapper section[data-section-type="pricing"],
.sxo-2026-wrapper .trust-pricing-2026 {
    display: block;
    visibility: visible;
    opacity: 1;
}

/* ═══════════════════════════════════════════════════════════════════════════
   SECTION ROOT
   ═══════════════════════════════════════════════════════════════════════════ */
.sxo-2026-wrapper .trust-pricing-2026 {
    background: linear-gradient(180deg, #0a1628 0%, #1a365d 50%, #0a1628 100%);
    padding: 64px 0;
}

@media (min-width: 768px) {
    .sxo-2026-wrapper .trust-pricing-2026 {
        padding: 80px 0;
    }
}

/* ═══════════════════════════════════════════════════════════════════════════
   CONTAINER
   ═══════════════════════════════════════════════════════════════════════════ */
.sxo-2026-wrapper .trust-pricing-2026 .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 16px;
}

@media (min-width: 768px) {
    .sxo-2026-wrapper .trust-pricing-2026 .container {
        padding: 0 24px;
    }
}

/* ═══════════════════════════════════════════════════════════════════════════
   HEADER
   ═══════════════════════════════════════════════════════════════════════════ */
.sxo-2026-wrapper .pricing-header-2026 {
    text-align: center;
    margin-bottom: 40px;
}

@media (min-width: 768px) {
    .sxo-2026-wrapper .pricing-header-2026 {
        margin-bottom: 48px;
    }
}

.sxo-2026-wrapper .pricing-title-2026 {
    font-size: 1.75rem;
    font-weight: 800;
    color: #ffffff;
    margin: 0 0 16px 0;
    line-height: 1.2;
}

@media (min-width: 768px) {
    .sxo-2026-wrapper .pricing-title-2026 {
        font-size: 2.25rem;
    }
}

@media (min-width: 1200px) {
    .sxo-2026-wrapper .pricing-title-2026 {
        font-size: 2.5rem;
    }
}

.sxo-2026-wrapper .pricing-subtitle-2026 {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.7);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

/* ═══════════════════════════════════════════════════════════════════════════
   GRID ADAPTIVE 2-4 CARTES AVEC CENTRAGE
   ═══════════════════════════════════════════════════════════════════════════ */
.sxo-2026-wrapper .pricing-grid-2026 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
    justify-content: center;
}

@media (min-width: 576px) {
    .sxo-2026-wrapper .pricing-grid-2026 {
        grid-template-columns: repeat(2, minmax(0, 320px));
        justify-content: center;
    }
}

@media (min-width: 1200px) {
    .sxo-2026-wrapper .pricing-grid-2026 {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        max-width: 1200px;
        margin: 0 auto;
        gap: 24px;
    }
}

/* ═══════════════════════════════════════════════════════════════════════════
   CARD GLASSMORPHISM
   ═══════════════════════════════════════════════════════════════════════════ */
.sxo-2026-wrapper .pricing-card-2026 {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    padding: 28px 20px;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
    position: relative;
}

@media (min-width: 768px) {
    .sxo-2026-wrapper .pricing-card-2026 {
        padding: 32px 24px;
    }
}

.sxo-2026-wrapper .pricing-card-2026:hover {
    transform: translateY(-8px);
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(196, 163, 90, 0.4);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

/* Card populaire/recommandée - SANS décalage vertical */
.sxo-2026-wrapper .pricing-card-2026.popular {
    border-color: #c4a35a;
    border-width: 2px;
    background: rgba(196, 163, 90, 0.08);
    /* PAS de margin-top pour garder l'alignement */
}

.sxo-2026-wrapper .pricing-card-2026.popular:hover {
    background: rgba(196, 163, 90, 0.12);
    box-shadow: 0 20px 40px rgba(196, 163, 90, 0.2);
}

/* ═══════════════════════════════════════════════════════════════════════════
   BADGE FLOTTANT AVEC ETOILE - Sans impact sur alignement
   ═══════════════════════════════════════════════════════════════════════════ */
.sxo-2026-wrapper .pricing-badge-2026 {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #c4a35a 0%, #d4b86a 100%);
    color: #0a1628;
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 0.8125rem;
    font-weight: 700;
    white-space: nowrap;
    box-shadow: 0 4px 12px rgba(196, 163, 90, 0.4);
    display: inline-flex;
    align-items: center;
    gap: 6px;
    z-index: 10;
}

.sxo-2026-wrapper .pricing-badge-2026 i {
    font-size: 0.75rem;
}

/* ═══════════════════════════════════════════════════════════════════════════
   PLAN NAME & PRICE
   ═══════════════════════════════════════════════════════════════════════════ */
.sxo-2026-wrapper .pricing-plan-name-2026 {
    font-size: 1.25rem;
    font-weight: 700;
    color: #ffffff;
    margin: 0 0 8px 0;
}

.sxo-2026-wrapper .pricing-plan-desc-2026 {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.6);
    margin: 0 0 16px 0;
}

.sxo-2026-wrapper .pricing-price-2026 {
    margin-bottom: 20px;
    min-height: 80px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

/* Ligne prix avec "À partir de" à GAUCHE */
.sxo-2026-wrapper .pricing-price-row-2026 {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 8px;
    flex-wrap: wrap;
}

/* "À partir de" - Conformité ACLG - INLINE à gauche */
.sxo-2026-wrapper .pricing-from-2026 {
    font-size: 0.8125rem;
    color: rgba(255, 255, 255, 0.6);
    font-weight: 500;
    white-space: nowrap;
}

.sxo-2026-wrapper .pricing-value-2026 {
    font-size: 2.5rem;
    font-weight: 900;
    color: #c4a35a;
    line-height: 1;
}

@media (min-width: 768px) {
    .sxo-2026-wrapper .pricing-value-2026 {
        font-size: 3rem;
    }
}

.sxo-2026-wrapper .pricing-currency-2026 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #c4a35a;
}

.sxo-2026-wrapper .pricing-amount-2026 {
    white-space: nowrap;
    display: inline-flex;
    align-items: baseline;
}

.sxo-2026-wrapper .pricing-decimals-2026 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #c4a35a;
}
.sxo-2026-wrapper .pricing-period-2026 {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.6);
}

/* "Sur devis" - Centré, adaptatif */
.sxo-2026-wrapper .pricing-value-2026.on-quote {
    font-size: 1.75rem;
}

@media (min-width: 768px) {
    .sxo-2026-wrapper .pricing-value-2026.on-quote {
        font-size: 2rem;
    }
}

.sxo-2026-wrapper .pricing-billing-note-2026 {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.5);
    margin-top: 4px;
}

/* ═══════════════════════════════════════════════════════════════════════════
   FEATURES LIST
   ═══════════════════════════════════════════════════════════════════════════ */
.sxo-2026-wrapper .pricing-features-2026 {
    list-style: none;
    padding: 0;
    margin: 0 0 24px 0;
    flex-grow: 1;
    text-align: left;
}

.sxo-2026-wrapper .pricing-features-2026 li {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 0;
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.875rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.sxo-2026-wrapper .pricing-features-2026 li:last-child {
    border-bottom: none;
}

.sxo-2026-wrapper .pricing-features-2026 li i {
    color: #c4a35a;
    flex-shrink: 0;
    width: 16px;
    text-align: center;
}

/* Feature désactivée */
.sxo-2026-wrapper .pricing-features-2026 li.disabled {
    color: rgba(255, 255, 255, 0.4);
}

.sxo-2026-wrapper .pricing-features-2026 li.disabled i {
    color: rgba(255, 255, 255, 0.3);
}

/* ═══════════════════════════════════════════════════════════════════════════
   CTA BUTTON
   ═══════════════════════════════════════════════════════════════════════════ */
.sxo-2026-wrapper .pricing-cta-2026 {
    display: block;
    padding: 14px 24px;
    background: linear-gradient(135deg, #c4a35a 0%, #d4b86a 100%);
    color: #0a1628;
    border-radius: 50px;
    font-weight: 700;
    text-decoration: none;
    min-height: 48px;
    transition: all 0.4s ease;
    text-align: center;
}

.sxo-2026-wrapper .pricing-cta-2026:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(196, 163, 90, 0.4);
    color: #0a1628;
}

/* CTA secondaire (outline) */
.sxo-2026-wrapper .pricing-cta-secondary-2026 {
    display: block;
    padding: 14px 24px;
    background: transparent;
    color: #ffffff;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    min-height: 48px;
    transition: all 0.4s ease;
    text-align: center;
}

.sxo-2026-wrapper .pricing-cta-secondary-2026:hover {
    border-color: #c4a35a;
    color: #c4a35a;
    transform: translateY(-2px);
}

/* ═══════════════════════════════════════════════════════════════════════════
   TOGGLE MENSUEL/ANNUEL (OPTIONNEL)
   ═══════════════════════════════════════════════════════════════════════════ */
.sxo-2026-wrapper .pricing-toggle-2026 {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-bottom: 32px;
}

.sxo-2026-wrapper .pricing-toggle-label-2026 {
    font-size: 0.9375rem;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 500;
}

.sxo-2026-wrapper .pricing-toggle-label-2026.active {
    color: #ffffff;
}

.sxo-2026-wrapper .pricing-toggle-switch-2026 {
    width: 56px;
    height: 28px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 14px;
    position: relative;
    cursor: pointer;
    transition: background 0.3s ease;
}

.sxo-2026-wrapper .pricing-toggle-switch-2026::after {
    content: '';
    position: absolute;
    top: 4px;
    left: 4px;
    width: 20px;
    height: 20px;
    background: #c4a35a;
    border-radius: 50%;
    transition: transform 0.3s ease;
}

.sxo-2026-wrapper .pricing-toggle-switch-2026.annual::after {
    transform: translateX(28px);
}

.sxo-2026-wrapper .pricing-discount-badge-2026 {
    background: rgba(16, 185, 129, 0.2);
    color: #22c55e;
    padding: 4px 10px;
    border-radius: 12px;
    font-size: 0.75rem;
    font-weight: 600;
}

/* ═══════════════════════════════════════════════════════════════════════════
   FOOTER NOTE & DISCLAIMER ACLG
   ═══════════════════════════════════════════════════════════════════════════ */
.sxo-2026-wrapper .pricing-footer-2026 {
    text-align: center;
    margin-top: 40px;
}

.sxo-2026-wrapper .pricing-note-2026 {
    font-size: 0.8125rem;
    color: rgba(255, 255, 255, 0.5);
    font-style: italic;
}

/* Disclaimer obligatoire ACLG (Règle #36) */
.sxo-2026-wrapper .pricing-disclaimer-2026 {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.45);
    font-style: italic;
    max-width: 600px;
    margin: 16px auto 0;
    line-height: 1.5;
    padding: 12px 16px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.06);
}

/* ═══════════════════════════════════════════════════════════════════════════
   PRINT STYLES
   ═══════════════════════════════════════════════════════════════════════════ */
@media print {
    .sxo-2026-wrapper .trust-pricing-2026 {
        background: #ffffff;
        padding: 24px 0;
    }

    .sxo-2026-wrapper .pricing-title-2026 {
        color: #0a1628;
    }

    .sxo-2026-wrapper .pricing-subtitle-2026 {
        color: #64748b;
    }

    .sxo-2026-wrapper .pricing-card-2026 {
        background: #f8fafc;
        border: 1px solid #e2e8f0;
        backdrop-filter: none;
    }

    .sxo-2026-wrapper .pricing-plan-name-2026,
    .sxo-2026-wrapper .pricing-features-2026 li {
        color: #1e293b;
    }

    .sxo-2026-wrapper .pricing-value-2026 {
        color: #c4a35a;
    }
}

/* ═══════════════════════════════════════════════════════════════════════════
   ACCESSIBILITY - REDUCED MOTION
   ═══════════════════════════════════════════════════════════════════════════ */
@media (prefers-reduced-motion: reduce) {
    .sxo-2026-wrapper .pricing-card-2026 {
        transition: none;
    }

    .sxo-2026-wrapper .pricing-card-2026:hover {
        transform: none;
    }

    .sxo-2026-wrapper .pricing-cta-2026:hover,
    .sxo-2026-wrapper .pricing-cta-secondary-2026:hover {
        transform: none;
    }

    .sxo-2026-wrapper .pricing-toggle-switch-2026::after {
        transition: none;
    }
}
