/* ============================================================
   PAGE TARIFS — pattern unified pricing grid (shadcnblocks)
     1. Header + grid unifié (labels + 3 plans + comparatif fusionné)
     2. Système crédit IA + 7 packs
     3. Agents IA sur-mesure
   ============================================================ */

.page-tarifs {
    position: relative;
    background: transparent;
    color: var(--osm-white);
    padding-top: 100px;
}

.pricing__container {
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 32px;
}

/* ══════════════════════════════════════════════════════════════
   SECTION 1 — HERO + UNIFIED GRID
   ══════════════════════════════════════════════════════════════ */
.pricing-unified {
    padding: 64px 0 96px;
}

/* Header centré : badge + titre + description */
.pricing-unified__intro {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 16px;
    margin-bottom: 72px;
}
/* Titre tarifs aligné sur .gg-section__title (autres pages) — grande taille +
   gradient underline sur le span. Le sélecteur .pricing-unified__title conserve
   la précédence pour d'éventuels overrides ponctuels. */
.pricing-unified__title {
    font-family: var(--osm-ff-heading);
    font-size: clamp(2rem, 3.4vw, 2.8rem);
    font-weight: 700;
    color: var(--osm-white);
    line-height: 1.12;
    letter-spacing: -0.02em;
    margin: 0 auto;
    max-width: 820px;
    text-align: center;
    text-shadow: 0 1px 2px rgba(0,0,0,0.45), 0 4px 24px rgba(10,14,39,0.55);
}
.pricing-unified__title span {
    /* Style unifié aligné sur .pricing-credits__title span : texte peint
       en dégradé bleu → cyan, plus de soulignement. */
    background: linear-gradient(135deg, #2563EB, #38BDF8);
    -webkit-background-clip: text; background-clip: text;
    color: transparent;
    -webkit-text-fill-color: transparent;
    text-shadow: none;
    display: inline-block;
    line-height: 1.15;
}
.pricing-unified__desc {
    color: var(--osm-gray);
    font-size: 1.05rem;
    line-height: 1.6;
    max-width: 620px;
    margin: 0;
    letter-spacing: -0.005em;
}

/* ─── RadioGroup Mensuel / Annuel (port vanilla du pattern Radix) ─── */
.pricing__radio-group {
    display: inline-flex;
    align-items: center;
    gap: 24px;
    margin: 0 auto 40px;
    padding: 14px 22px;
    background: rgba(15, 23, 42, 0.65);
    border: 1px solid rgba(255, 255, 255, 0.10);
    border-radius: 14px;
    left: 50%;
    transform: translateX(-50%);
    position: relative;
    box-shadow: 0 12px 24px -12px rgba(0, 0, 0, 0.45);
}
.pricing__radio-item {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    font-family: var(--osm-ff-heading);
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--osm-fog);
    transition: color .25s ease;
    user-select: none;
}
.pricing__radio-item:has(.pricing__radio-input:checked) { color: var(--osm-white); }
/* Fallback pour navigateurs sans :has() : couleur mise à jour par JS via .is-checked */
.pricing__radio-item.is-checked { color: var(--osm-white); }

/* Input radio caché mais accessible */
.pricing__radio-input {
    position: absolute;
    opacity: 0;
    pointer-events: none;
    width: 0;
    height: 0;
}

/* Cercle radio 16px avec bordure — quand checked : rempli cyan + petit disque blanc au centre */
.pricing__radio-dot {
    position: relative;
    width: 16px;
    height: 16px;
    border: 1.5px solid rgba(255, 255, 255, 0.30);
    border-radius: 50%;
    background: rgba(15, 23, 42, 0.5);
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.35);
    transition: background .25s ease, border-color .25s ease;
    flex-shrink: 0;
}
.pricing__radio-dot::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #FFFFFF;
    transform: translate(-50%, -50%) scale(0);
    transition: transform .25s cubic-bezier(.5, 1.4, .5, 1);
}
/* Checked state : cercle rempli cyan + disque intérieur qui apparaît en scale */
.pricing__radio-input:checked ~ .pricing__radio-dot {
    background: var(--osm-cyan);
    border-color: var(--osm-cyan);
    box-shadow: 0 2px 8px -2px rgba(56, 189, 248, 0.55);
}
.pricing__radio-input:checked ~ .pricing__radio-dot::after {
    transform: translate(-50%, -50%) scale(1);
}
.pricing__radio-input:focus-visible ~ .pricing__radio-dot {
    outline: 2px solid rgba(56, 189, 248, 0.55);
    outline-offset: 3px;
}

.pricing__radio-text {
    line-height: 1;
    white-space: nowrap;
}

/* Badge « Save 20 % » — dégradé vert toujours visible */
.pricing__radio-badge {
    display: inline-flex;
    align-items: center;
    padding: 3px 10px;
    background: linear-gradient(135deg, #16A34A, #22C55E);
    color: #FFFFFF;
    border: 1px solid rgba(34, 197, 94, 0.55);
    border-radius: 999px;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.01em;
    box-shadow: 0 4px 12px -4px rgba(34, 197, 94, 0.55);
    margin-left: 4px;
}

/* Animation prix au switch (fade + slide) */
[data-pricing-value] {
    display: inline-block;
    transition: transform .35s cubic-bezier(.2,.7,.2,1), opacity .25s ease;
    font-variant-numeric: tabular-nums;
    min-width: 42px;
}
[data-pricing-value].is-changing {
    opacity: 0;
    transform: translateY(-8px);
}

/* ─── Grid unifié : 4 colonnes desktop, empilement mobile ─── */
.pricing-unified__grid {
    display: grid;
    grid-template-columns: 1fr;
    background: rgba(15, 23, 42, 0.35);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 20px;
    overflow: hidden;
    max-width: 1180px;
    margin: 0 auto;
}
@media (min-width: 900px) {
    .pricing-unified__grid {
        /* col label + 4 plans (Source, Convergence, Synergie, Multi-comptes) */
        grid-template-columns: 0.9fr 1fr 1fr 1fr 1fr;
    }
}

/* Cellule de base */
.pricing-unified__cell {
    padding: 16px 24px;
    display: flex;
    align-items: center;
    color: var(--osm-fog);
    font-size: 0.92rem;
    line-height: 1.5;
    min-width: 0;
    /* Divider gauche (desktop) — cellules à partir de la 2e col */
}
@media (min-width: 900px) {
    .pricing-unified__cell + .pricing-unified__cell {
        border-left: 1px solid rgba(255, 255, 255, 0.06);
    }
}

/* Coin haut-gauche vide */
.pricing-unified__cell--corner { display: none; }
@media (min-width: 900px) { .pricing-unified__cell--corner { display: block; } }

/* ─── Header row : 3 plans (col 2, 3, 4) ─── */
.pricing-unified__cell--plan {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    padding: 32px 22px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.10);
    background: rgba(15, 23, 42, 0.35);
}
.pricing-unified__cell--plan.is-popular {
    background: linear-gradient(180deg, rgba(37, 99, 235, 0.14), rgba(56, 189, 248, 0.06));
    border-bottom-color: rgba(56, 189, 248, 0.35);
}
/* Multi-comptes : accent violet pour distinguer du cyan Convergence */
.pricing-unified__cell--plan.is-special {
    background: linear-gradient(180deg, rgba(139, 92, 246, 0.16), rgba(168, 85, 247, 0.06));
    border-bottom-color: rgba(168, 85, 247, 0.45);
}
.pricing-unified__cell--plan.is-special .pricing-unified__plan-name {
    color: #C4B5FD;                          /* violet-300 */
    font-size: 1.15rem;                      /* plus petit : ce n'est pas une offre phare */
    display: flex;
    flex-direction: column;
    gap: 8px;
    align-items: flex-start;
}
.pricing-unified__plan-name {
    font-family: var(--osm-ff-heading);
    font-size: 1.5rem;
    font-weight: 500;
    color: var(--osm-white);
    letter-spacing: -0.02em;
    margin: 0;
}
/* Badge "Sans Osmose" — signale que la colonne est une référence comparative */
.pricing-unified__plan-tag {
    display: inline-block;
    padding: 4px 12px;
    border-radius: 999px;
    background: rgba(168, 85, 247, 0.18);
    border: 1px solid rgba(168, 85, 247, 0.45);
    color: #C4B5FD;
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}
/* Note explicative sous le nom */
.pricing-unified__plan-comparenote {
    margin: 12px 0 0;
    font-size: 0.82rem;
    line-height: 1.45;
    color: rgba(196, 181, 253, 0.85);
}
/* Prix en mode "comparaison" : moins mis en avant que les vraies offres */
.pricing-unified__plan-amount--compare {
    color: rgba(226, 232, 240, 0.7) !important;
    font-size: 2rem !important;
}
.pricing-unified__plan-price {
    display: flex;
    flex-direction: column;
    gap: 4px;
    margin: 16px 0 0;
    padding: 0;
}
@media (min-width: 1024px) {
    .pricing-unified__plan-price { flex-direction: row; align-items: center; gap: 8px; }
}
.pricing-unified__plan-amount {
    font-family: var(--osm-ff-heading);
    font-size: 2.4rem;
    font-weight: 500;
    color: var(--osm-white);
    letter-spacing: -0.03em;
    line-height: 1;
}
.pricing-unified__plan-amount sup {
    font-size: 0.85rem;
    color: var(--osm-gray);
    font-weight: 500;
    margin-left: 4px;
    top: -0.8em;
}
.pricing-unified__plan-period {
    color: var(--osm-gray-2);
    font-size: 0.82rem;
    font-weight: 500;
}

.pricing-unified__plan-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-top: 24px;
    padding: 12px 20px;
    border: 1px solid rgba(56, 189, 248, 0.35);
    background: rgba(56, 189, 248, 0.05);
    color: var(--osm-white);
    border-radius: 10px;
    font-family: var(--osm-ff-heading);
    font-size: 0.95rem;
    font-weight: 600;
    text-decoration: none;
    letter-spacing: -0.005em;
    transition: background .25s ease, border-color .25s ease, transform .25s ease, box-shadow .25s ease;
    align-self: stretch;
}
.pricing-unified__plan-cta.is-primary {
    background: linear-gradient(135deg, #2563EB, #38BDF8);
    border-color: transparent;
    box-shadow: 0 12px 24px -8px rgba(56, 189, 248, 0.55);
}
.pricing-unified__plan-cta:hover {
    background: linear-gradient(135deg, #2563EB, #38BDF8);
    border-color: transparent;
    color: #FFFFFF;
    transform: translateY(-1px);
    box-shadow: 0 16px 32px -8px rgba(56, 189, 248, 0.55);
}

/* ─── Logos LLM inclus (Multi-comptes) — remontés sous le nom du plan ─── */
.pricing-unified__plan-logos {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 10px;
    margin: 4px 0 8px;
    padding-bottom: 16px;
    border-bottom: 1px solid rgba(168, 85, 247, 0.22);
}
.pricing-unified__plan-logo {
    height: 22px;
    width: auto;
    max-width: 68px;
    object-fit: contain;
    filter: brightness(0) invert(1);            /* monochrome blanc sur fond violet */
    opacity: 0.85;
    transition: opacity .25s ease;
    user-select: none;
    -webkit-user-drag: none;
}
.pricing-unified__plan-logo:hover { opacity: 1; }

/* ─── Indication remise vs Multi-comptes (gris subtil) ─── */
.pricing-unified__plan-discount {
    color: var(--osm-gray-2);
    font-size: 0.78rem;
    font-weight: 500;
    margin: 4px 0 0;
    letter-spacing: 0.005em;
    font-variant-numeric: tabular-nums;
    transition: opacity .25s ease;
}
.pricing-unified__plan-cta svg { transition: transform .25s ease; }
.pricing-unified__plan-cta:hover svg { transform: translateX(3px); }

/* ─── Section labels (Crédits & Stockage, etc.) — full-width row ─── */
.pricing-unified__section {
    grid-column: 1 / -1;                     /* toute la largeur */
    padding: 20px 24px;
    background: rgba(56, 189, 248, 0.06);
    border-top: 1px solid rgba(56, 189, 248, 0.14);
    border-bottom: 1px solid rgba(56, 189, 248, 0.14);
    color: var(--osm-cyan);
    font-family: var(--osm-ff-heading);
    font-weight: 700;
    font-size: 0.98rem;
    letter-spacing: -0.005em;
}
.pricing-unified__section strong { font-weight: 700; }

/* ─── Feature name (col 1) ─── */
.pricing-unified__cell--feature {
    padding: 18px 24px;
    color: var(--osm-fog);
    font-size: 0.92rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}
@media (max-width: 899px) {
    .pricing-unified__cell--feature {
        background: rgba(15, 23, 42, 0.5);
        font-weight: 600;
        color: var(--osm-white);
        border-top: 1px solid rgba(255, 255, 255, 0.06);
    }
}

/* ─── Feature values (col 2/3/4) ─── */
.pricing-unified__cell--value {
    padding: 18px 24px;
    justify-content: center;
    text-align: center;
    color: var(--osm-fog);
    font-size: 0.92rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}
.pricing-unified__cell--value.is-popular {
    background: rgba(56, 189, 248, 0.04);
}
/* Colonne Multi-comptes : cellules teintées violet clair */
.pricing-unified__cell--value.is-special {
    background: rgba(168, 85, 247, 0.06);
}
.pricing-unified__cell--value.is-special .pricing-unified__check {
    color: #A855F7;                         /* violet-500 */
}
@media (max-width: 899px) {
    .pricing-unified__cell--value {
        display: grid;
        grid-template-columns: max-content 1fr;
        gap: 12px;
        padding: 12px 24px;
        justify-content: flex-start;
        text-align: left;
    }
    /* Sur mobile, on préfixe la valeur avec le nom du plan (data-attr optionnel) */
    .pricing-unified__cell--value::before {
        content: attr(data-plan);
        color: var(--osm-gray-2);
        font-size: 0.78rem;
        text-transform: uppercase;
        letter-spacing: 0.05em;
        font-weight: 600;
    }
}

.pricing-unified__check {
    display: inline-flex;
    color: var(--osm-cyan);
}
.pricing-unified__dash {
    display: inline-flex;
    color: var(--osm-gray-2);
}
.pricing-unified__text {
    color: var(--osm-white);
    font-weight: 500;
}

.pricing-unified__legal {
    color: var(--osm-gray-2);
    font-size: 0.82rem;
    text-align: center;
    margin: 32px 0 0;
}

/* ══════════════════════════════════════════════════════════════
   SECTION 2 — SYSTÈME CRÉDIT IA + 7 PACKS (inchangé du précédent)
   ══════════════════════════════════════════════════════════════ */
.pricing-credits {
    padding: 40px 0 96px;
}
.pricing-credits__intro {
    max-width: 900px;
    margin: 0 auto 56px;
    text-align: center;
}
.pricing-credits__title {
    /* Aligné sur .gg-section__title (référence "Trois formats pour former") */
    font-family: var(--osm-ff-heading);
    font-size: clamp(2rem, 3.4vw, 2.8rem);
    font-weight: 700;
    color: var(--osm-white);
    line-height: 1.12;
    margin: 0 auto 20px;
    letter-spacing: -0.02em;
    text-align: center;
}
.pricing-credits__title span {
    background: linear-gradient(135deg, #2563EB, #38BDF8);
    -webkit-background-clip: text; background-clip: text;
    color: transparent;
    -webkit-text-fill-color: transparent;
    /* Neutralise le shadow du parent qui traverse le glyphe transparent
       et donne au dégradé un aspect gris/foncé sinon. */
    text-shadow: none;
}
.pricing-credits__desc {
    color: var(--osm-gray);
    font-size: 1.02rem;
    line-height: 1.65;
    max-width: 780px;
    margin: 0 auto;
}
.pricing-credits__desc strong { color: var(--osm-cyan); font-weight: 700; }

/* Notice « ajouter des crédits » — remplace la table 7 packs. */
.pricing-credits__notice {
    max-width: 720px;
    margin: 0 auto;
    padding: 28px 32px;
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.10), rgba(56, 189, 248, 0.05));
    border: 1px solid rgba(56, 189, 248, 0.28);
    border-radius: 18px;
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-items: center;
}
.pricing-credits__notice p {
    color: var(--osm-fog);
    font-size: 1.02rem;
    line-height: 1.6;
    margin: 0;
    max-width: 560px;
}
.pricing-credits__notice p strong {
    color: var(--osm-cyan);
    font-weight: 700;
}
.pricing-credits__notice-cta {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 26px;
    background: linear-gradient(135deg, #2563EB, #38BDF8);
    color: #FFFFFF;
    border-radius: 12px;
    font-family: var(--osm-ff-heading);
    font-weight: 700;
    font-size: 0.95rem;
    text-decoration: none;
    box-shadow: 0 10px 24px -8px rgba(56, 189, 248, 0.55);
    transition: transform .25s ease, box-shadow .25s ease;
}
.pricing-credits__notice-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 16px 32px -8px rgba(56, 189, 248, 0.65);
    color: #FFFFFF;
}
.pricing-credits__notice-cta svg { transition: transform .25s ease; }
.pricing-credits__notice-cta:hover svg { transform: translateX(3px); }

/* ══════════════════════════════════════════════════════════════
   SECTION 3 — AGENTS IA MÉTIERS SUR-MESURE
   ══════════════════════════════════════════════════════════════ */
.pricing-agents {
    padding: 40px 0 128px;
}
.pricing-agents__intro {
    max-width: 900px;
    margin: 0 auto 48px;
    text-align: center;
}
.pricing-agents__title {
    /* Aligné sur .gg-section__title (référence "Trois formats pour former") */
    font-family: var(--osm-ff-heading);
    font-size: clamp(2rem, 3.4vw, 2.8rem);
    font-weight: 700;
    color: var(--osm-white);
    line-height: 1.12;
    margin: 0 0 24px;
    letter-spacing: -0.02em;
}
.pricing-agents__title span {
    background: linear-gradient(135deg, #2563EB, #38BDF8);
    -webkit-background-clip: text; background-clip: text;
    color: transparent;
    -webkit-text-fill-color: transparent;
    text-shadow: none;
}
.pricing-agents__lead {
    color: var(--osm-fog);
    font-size: 1.05rem;
    line-height: 1.65;
    max-width: 720px;
    margin: 0 auto;
}
.pricing-agents__lead strong { color: var(--osm-cyan); font-weight: 700; }

.pricing-agents__process {
    max-width: 840px;
    margin: 0 auto;
}
.pricing-agents__process-title {
    font-family: var(--osm-ff-heading);
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--osm-cyan);
    margin: 0 0 24px;
    letter-spacing: -0.01em;
}
.pricing-agents__steps {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 16px;
}
.pricing-agents__step {
    display: flex;
    gap: 20px;
    padding: 16px 20px;
    background: rgba(15, 23, 42, 0.45);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 14px;
    transition: border-color .25s ease, background .25s ease;
}
.pricing-agents__step:hover {
    border-color: rgba(56, 189, 248, 0.25);
    background: rgba(15, 23, 42, 0.65);
}
.pricing-agents__step-num {
    color: var(--osm-cyan);
    font-family: var(--osm-ff-heading);
    font-weight: 700;
    font-size: 1.15rem;
    letter-spacing: -0.01em;
    flex-shrink: 0;
    min-width: 20px;
}
.pricing-agents__step-body { display: block; }
.pricing-agents__step-title {
    color: var(--osm-cyan);
    font-family: var(--osm-ff-heading);
    font-weight: 700;
    font-size: 0.98rem;
    margin-right: 4px;
}
.pricing-agents__step-desc {
    color: var(--osm-fog);
    font-size: 0.95rem;
    line-height: 1.55;
}

.pricing-agents__cta {
    text-align: center;
    margin-top: 48px;
}
.pricing-agents__cta .btn-primary {
    display: inline-flex;
    align-items: center;
    padding: 14px 32px;
    background: linear-gradient(135deg, #2563EB, #38BDF8);
    color: #FFFFFF;
    border: none;
    border-radius: 12px;
    font-family: var(--osm-ff-heading);
    font-weight: 700;
    font-size: 1rem;
    text-decoration: none;
    box-shadow: 0 12px 32px -8px rgba(56, 189, 248, 0.55);
    transition: transform .25s ease, box-shadow .25s ease;
}
.pricing-agents__cta .btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 16px 40px -8px rgba(56, 189, 248, 0.65);
}

@media (prefers-reduced-motion: reduce) {
    .pricing-unified__plan-cta,
    .pricing-agents__cta .btn-primary,
    .pricing-credits__pack { transition: none; }
}


/* ============================================================
   RESET text-shadow sur spans à dégradé — voir theme-dark.css.
   Répété ici pour dominer même si theme-dark.css est chargé avant. */
h1 span, h2 span, h3 span,
[class*="title"] span {
    text-shadow: none !important;
}

/* ============================================================
   ENCART DSI — après la grille tarifaire.
   Card mise en avant : bordure violette + glow, pour signaler
   clairement que les entreprises avec DSI relèvent d'un devis.
   ============================================================ */
.pricing-dsi {
    padding: 40px 0 80px;
    position: relative;
}

.pricing-dsi__card {
    position: relative;
    max-width: 980px;
    margin: 0 auto;
    padding: 40px clamp(24px, 4vw, 56px) 36px;
    border-radius: 28px;
    /* Fond glass avec accent violet (différent du cyan des plans) */
    background:
        linear-gradient(160deg, rgba(139, 92, 246, 0.10) 0%, rgba(15, 19, 48, 0.85) 55%),
        rgba(15, 19, 48, 0.9);
    border: 1px solid rgba(139, 92, 246, 0.35);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    box-shadow:
        0 30px 70px -30px rgba(0, 0, 0, 0.7),
        0 0 60px -20px rgba(139, 92, 246, 0.40),
        inset 0 1px 0 rgba(255, 255, 255, 0.06);
    text-align: center;
}

.pricing-dsi__badge {
    display: inline-block;
    padding: 7px 18px;
    margin-bottom: 20px;
    border-radius: 999px;
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.25), rgba(56, 189, 248, 0.20));
    border: 1px solid rgba(167, 139, 250, 0.45);
    color: #c4b5fd;
    font-family: var(--osm-ff-heading);
    font-size: 0.82rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.pricing-dsi__title {
    font-family: var(--osm-ff-heading);
    font-size: clamp(1.6rem, 3vw, 2.3rem);
    font-weight: 700;
    line-height: 1.15;
    letter-spacing: -0.02em;
    color: var(--osm-white);
    margin: 0 0 18px;
}
.pricing-dsi__title span {
    display: block;
    background: linear-gradient(135deg, #a78bfa 0%, #38BDF8 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    -webkit-text-fill-color: transparent;
}

.pricing-dsi__lead {
    max-width: 720px;
    margin: 0 auto 28px;
    font-size: clamp(0.98rem, 1.3vw, 1.1rem);
    line-height: 1.6;
    color: rgba(226, 232, 240, 0.85);
}
.pricing-dsi__lead strong { color: var(--osm-white); font-weight: 600; }

/* Liste des arguments — grille 2 colonnes, texte aligné à gauche */
.pricing-dsi__points {
    list-style: none;
    padding: 0;
    margin: 0 auto 32px;
    max-width: 860px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px 28px;
    text-align: left;
}
@media (max-width: 780px) {
    .pricing-dsi__points { grid-template-columns: 1fr; }
}
.pricing-dsi__points li {
    display: flex;
    align-items: flex-start;
    gap: 11px;
    font-size: 0.92rem;
    line-height: 1.5;
    color: rgba(203, 213, 225, 0.9);
}
.pricing-dsi__points li strong {
    color: var(--osm-white);
    font-weight: 600;
}
.pricing-dsi__points svg {
    flex-shrink: 0;
    margin-top: 3px;
    color: #a78bfa;
}

/* Actions : 2 CTA côte à côte */
.pricing-dsi__actions {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 14px;
    margin-bottom: 18px;
}
@media (min-width: 640px) {
    .pricing-dsi__actions { flex-direction: row; }
}
/* Primaire violet (cohérent avec l'accent de la card, pas le cyan des plans) */
.pricing-dsi__actions .btn-primary {
    background: linear-gradient(135deg, #8B5CF6 0%, #6366F1 100%) !important;
    color: #FFFFFF !important;
    border: 1px solid rgba(167, 139, 250, 0.55);
    box-shadow:
        0 12px 26px -8px rgba(139, 92, 246, 0.55),
        0 4px 12px -4px rgba(99, 102, 241, 0.35);
    padding: 14px 30px;
    font-size: 0.98rem;
    font-weight: 600;
    transition: transform .25s ease, box-shadow .25s ease, filter .25s ease;
}
.pricing-dsi__actions .btn-primary:hover {
    transform: translateY(-2px);
    box-shadow:
        0 16px 34px -8px rgba(139, 92, 246, 0.65),
        0 6px 16px -4px rgba(99, 102, 241, 0.5);
    filter: brightness(1.06);
}
.pricing-dsi__actions .btn-secondary {
    background: rgba(255, 255, 255, 0.08) !important;
    color: var(--osm-white) !important;
    border: 1px solid rgba(255, 255, 255, 0.20);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: none;
    padding: 14px 30px;
    font-size: 0.98rem;
    font-weight: 600;
    transition: background-color .25s ease, border-color .25s ease, transform .25s ease;
}
.pricing-dsi__actions .btn-secondary:hover {
    background: rgba(255, 255, 255, 0.14) !important;
    border-color: rgba(167, 139, 250, 0.50);
    transform: translateY(-2px);
}

.pricing-dsi__note {
    margin: 0;
    font-size: 0.85rem;
    color: rgba(148, 163, 184, 0.8);
}

/* ── Responsive mobile : encart DSI (évite débordement interne) ── */
@media (max-width: 560px) {
    .pricing-dsi__card {
        padding: 32px 20px 28px;
        border-radius: 22px;
        overflow: hidden;                 /* clippe tout dépassement résiduel */
    }
    /* Titre : largeur forcée au parent → wrap garanti (spécificité renforcée) */
    .pricing-dsi__card .pricing-dsi__title,
    .pricing-dsi__card .pricing-dsi__title span {
        display: block;
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
        white-space: normal;
        overflow-wrap: break-word;
        word-break: break-word;
    }
    .pricing-dsi__card .pricing-dsi__title {
        font-size: 1.5rem;
    }
    /* Boutons pleine largeur, texte qui peut passer à la ligne */
    .pricing-dsi__actions {
        width: 100%;
    }
    .pricing-dsi__actions .btn {
        width: 100%;
        white-space: normal;
        text-align: center;
        padding: 14px 18px;
    }
}
