/* Fixes ciblés page vps (scopés .landing-root). Chargé après les CSS landing. */

/*
 * PROBLÈME : `landing-pages.css` (l.1689) redéfinit `.features-grid` en
 * `repeat(3, 1fr)` — ce qui écrase la règle VPS `repeat(4)` définie plus haut
 * (l.1411) par ordre de cascade. Résultat : les 3 grilles "features" de la page
 * VPS (Rapport prix/perf, Caractéristiques, FAQ) — qui ont 4 cartes chacune —
 * s'affichaient en 3 colonnes + 1 carte orpheline qui passe à la ligne.
 *
 * La source `landing/vps.html` veut 4 colonnes (repeat(4)), puis 2 colonnes
 * sous 1024px, puis 1 colonne sous 640px.
 *
 * On scope au page VPS via `:has(.hero-banner.vps)` pour ne PAS toucher les
 * autres landings (bots/games/…) qui partagent `.features-grid`.
 * (VpsCheapFrancePage porte aussi `.hero-banner.vps` mais n'utilise pas
 * `.features-grid` → aucun effet de bord.)
 */
.landing-root:has(.hero-banner.vps) .features-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-6);
}

@media (max-width: 1024px) {
    .landing-root:has(.hero-banner.vps) .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 640px) {
    .landing-root:has(.hero-banner.vps) .features-grid {
        grid-template-columns: 1fr;
    }
}

.landing-root:has(.hero-banner.vps) .vps-pricing-section {
    scroll-margin-top: 66px;
    border-bottom: 1px solid #dbe8ff;
}

.landing-root:has(.hero-banner.vps) .section-label {
    color: #005ebd;
}

.landing-root:has(.hero-banner.vps) .vps-save-pill {
    color: #006149;
}

.landing-root:has(.hero-banner.vps) .vps-presets-section {
    background: #f6f9ff;
    border-top: 1px solid #dbe8ff;
    border-bottom: 1px solid #dbe8ff;
}

.landing-root:has(.hero-banner.vps) .vps-presets-head {
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(280px, 0.65fr);
    gap: 32px;
    align-items: end;
    margin-bottom: 34px;
}

.landing-root:has(.hero-banner.vps) .vps-presets-head .section-title {
    margin-bottom: 0;
}

.landing-root:has(.hero-banner.vps) .vps-presets-head p {
    margin: 0;
    color: #526987;
    font-size: 16px;
    line-height: 1.7;
}

.landing-root:has(.hero-banner.vps) .vps-presets-domain-note {
    display: flex;
    align-items: center;
    gap: 12px;
    margin: -12px 0 26px;
    padding: 14px 16px;
    border: 1px solid #bcd9fb;
    border-left: 4px solid #1976ff;
    border-radius: 6px;
    background: #eef6ff;
    color: #45617f;
    font-size: 14px;
    line-height: 1.5;
}

.landing-root:has(.hero-banner.vps) .vps-presets-domain-note svg {
    flex: 0 0 auto;
    color: #1976ff;
    font-size: 23px;
}

.landing-root:has(.hero-banner.vps) .vps-presets-domain-note span,
.landing-root:has(.hero-banner.vps) .vps-presets-domain-note strong {
    display: block;
}

.landing-root:has(.hero-banner.vps) .vps-presets-domain-note strong {
    color: #0c3970;
}

.landing-root:has(.hero-banner.vps) .vps-presets-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
}

.landing-root:has(.hero-banner.vps) .vps-preset-card {
    display: flex;
    min-height: 292px;
    flex-direction: column;
    gap: 16px;
    padding: 22px;
    border: 1px solid #d7e5f7;
    border-radius: 8px;
    background: #ffffff;
    color: #0a1b47;
    text-decoration: none;
    box-shadow: 0 14px 34px rgba(15, 45, 90, 0.08);
    transition: border-color 160ms ease, box-shadow 160ms ease, transform 160ms ease;
}

.landing-root:has(.hero-banner.vps) .vps-preset-card:hover {
    border-color: #1976ff;
    box-shadow: 0 18px 44px rgba(25, 118, 255, 0.16);
    transform: translateY(-3px);
}

.landing-root:has(.hero-banner.vps) .vps-preset-card.is-featured {
    border-color: #1976ff;
    background: linear-gradient(180deg, #ffffff 0%, #eef6ff 100%);
}

.landing-root:has(.hero-banner.vps) .vps-preset-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}

.landing-root:has(.hero-banner.vps) .vps-preset-tag {
    display: inline-flex;
    align-items: center;
    min-height: 26px;
    padding: 0 10px;
    border-radius: 999px;
    background: #e8f2ff;
    color: #0966e8;
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0;
}

.landing-root:has(.hero-banner.vps) .vps-preset-logos {
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

.landing-root:has(.hero-banner.vps) .vps-preset-logo {
    display: grid;
    width: 34px;
    height: 34px;
    margin-left: -8px;
    place-items: center;
    border: 1px solid #dce8f7;
    border-radius: 8px;
    background: #ffffff;
    box-shadow: 0 6px 14px rgba(12, 36, 76, 0.08);
}

.landing-root:has(.hero-banner.vps) .vps-preset-logo:first-child {
    margin-left: 0;
}

.landing-root:has(.hero-banner.vps) .vps-preset-logo img {
    width: 22px;
    height: 22px;
    object-fit: contain;
}

.landing-root:has(.hero-banner.vps) .vps-preset-card h3 {
    margin: 0;
    color: #07164a;
    font-family: 'Sora', 'Inter', system-ui, sans-serif;
    font-size: 21px;
    font-weight: 800;
    line-height: 1.18;
}

.landing-root:has(.hero-banner.vps) .vps-preset-card p {
    margin: 0;
    color: #61738f;
    font-size: 14px;
    line-height: 1.58;
}

.landing-root:has(.hero-banner.vps) .vps-preset-bullets {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: auto;
}

.landing-root:has(.hero-banner.vps) .vps-preset-bullets span {
    display: inline-flex;
    align-items: center;
    min-height: 28px;
    padding: 0 9px;
    border: 1px solid #dce8f7;
    border-radius: 8px;
    background: #f8fbff;
    color: #36506f;
    font-size: 12px;
    font-weight: 700;
}

.landing-root:has(.hero-banner.vps) .vps-preset-cta {
    display: inline-flex;
    align-items: center;
    color: #0966e8;
    font-size: 14px;
    font-weight: 800;
}

@media (max-width: 980px) {
    .landing-root:has(.hero-banner.vps) .vps-presets-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 820px) {
    .landing-root:has(.hero-banner.vps) .vps-presets-head {
        grid-template-columns: 1fr;
        gap: 14px;
    }
}

/* Page VPS : hero sans photographie et comparaison dédiée aux deux offres actives. */
.landing-root:has(.vps-hero) .vps-hero {
    min-height: 540px;
    margin-top: 0;
    justify-content: flex-start;
    border-bottom: 1px solid #c9ddf5;
    background: #edf5ff;
    color: #071b3d;
    text-align: left;
}

.landing-root:has(.vps-hero) .vps-hero::before {
    inset: 0 0 0 auto;
    width: 38%;
    height: 100%;
    background: #dbeaff;
    background-image: none;
    clip-path: polygon(32% 0, 100% 0, 100% 100%, 0 100%);
    opacity: 1;
}

.landing-root:has(.vps-hero) .vps-hero::after {
    content: '';
    position: absolute;
    top: 0;
    right: 11%;
    bottom: 0;
    width: 1px;
    background: #b9d4f3;
    transform: skewX(-18deg);
}

.landing-root:has(.vps-hero) .vps-hero .hero-banner-content {
    display: grid;
    width: min(1180px, calc(100% - 48px));
    min-height: inherit;
    grid-template-columns: minmax(0, 1.25fr) minmax(380px, 0.75fr);
    gap: clamp(48px, 6vw, 88px);
    align-items: center;
    margin: 0 auto;
    padding: 64px 0;
    color: #071b3d;
    text-align: left;
}

.landing-root:has(.vps-hero) .vps-hero-copy {
    min-width: 0;
    max-width: 700px;
}

.landing-root:has(.vps-hero) .vps-hero .hero-badge {
    min-height: 34px;
    margin: 0 0 22px;
    padding: 7px 12px;
    border: 1px solid #aacbef;
    border-radius: 6px;
    background: #ffffff;
    color: #075fc7;
    font-family: 'Inter', system-ui, sans-serif;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 0;
    text-transform: none;
    box-shadow: none;
}

.landing-root:has(.vps-hero) .vps-hero .hero-badge svg {
    width: 18px;
    height: 18px;
}

.landing-root:has(.vps-hero) .vps-hero .hero-title {
    max-width: 700px;
    margin: 0 0 20px;
    color: #06183d;
    font-family: 'Sora', 'Inter', system-ui, sans-serif;
    font-size: clamp(46px, 3.7vw, 58px);
    font-weight: 800;
    line-height: 1.08;
    letter-spacing: 0;
    text-align: left;
}

.landing-root:has(.vps-hero) .vps-hero .hero-title > span {
    display: block;
}

.landing-root:has(.vps-hero) .vps-hero .hero-title > span:first-child {
    color: #0868d7;
}

.landing-root:has(.vps-hero) .vps-hero .vps-hero-title-detail {
    color: #06183d;
}

.landing-root:has(.vps-hero) .vps-hero .hero-desc {
    max-width: 660px;
    margin: 0 0 28px;
    color: #3e5778 !important;
    -webkit-text-fill-color: #3e5778;
    font-size: 18px;
    line-height: 1.65;
    text-align: left;
}

.landing-root:has(.vps-hero) .vps-hero .hero-buttons {
    justify-content: flex-start;
    gap: 12px;
    margin: 0;
}

.landing-root:has(.vps-hero) .vps-hero .hero-buttons a {
    display: inline-flex;
    min-height: 48px;
    align-items: center;
    justify-content: center;
    gap: 9px;
    border-radius: 5px;
    padding: 11px 18px;
}

.landing-root:has(.vps-hero) .vps-hero .hero-buttons .btn-primary {
    border-color: #075fc7;
    background: #075fc7;
    color: #ffffff;
}

.landing-root:has(.vps-hero) .vps-hero .hero-buttons .btn-secondary {
    border-color: #a9c7e8;
    background: #ffffff;
    color: #0a3f80;
}

.landing-root:has(.vps-hero) .vps-hero .hero-buttons svg {
    width: 17px;
    height: 17px;
}

.landing-root:has(.vps-hero) .vps-hero-facts {
    display: grid;
    width: 100%;
    max-width: 460px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    margin: 0;
    overflow: hidden;
    border: 1px solid #bed5ef;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.78);
    box-shadow: 0 20px 50px rgba(29, 78, 138, 0.1);
}

.landing-root:has(.vps-hero) .vps-hero-facts > span {
    display: grid;
    min-width: 0;
    grid-template-columns: 26px minmax(0, 1fr);
    grid-template-rows: auto auto;
    column-gap: 10px;
    min-height: 112px;
    padding: 20px;
    border-right: 1px solid #bed5ef;
    border-bottom: 1px solid #bed5ef;
}

.landing-root:has(.vps-hero) .vps-hero-facts > span:first-child {
    padding-left: 20px;
}

.landing-root:has(.vps-hero) .vps-hero-facts > span:nth-child(2n) {
    border-right: 0;
}

.landing-root:has(.vps-hero) .vps-hero-facts > span:nth-last-child(-n + 2) {
    border-bottom: 0;
}

.landing-root:has(.vps-hero) .vps-hero-facts svg {
    width: 21px;
    height: 21px;
    grid-row: 1 / 3;
    align-self: center;
    color: #0868d7;
}

.landing-root:has(.vps-hero) .vps-hero-facts strong,
.landing-root:has(.vps-hero) .vps-hero-facts small {
    display: block;
    min-width: 0;
}

.landing-root:has(.vps-hero) .vps-hero-facts strong {
    color: #102c54;
    font-size: 15px;
    line-height: 1.25;
    overflow-wrap: normal;
    word-break: normal;
}

.landing-root:has(.vps-hero) .vps-hero-facts small {
    margin-top: 2px;
    color: #58708e;
    font-size: 12px;
    line-height: 1.4;
}

.landing-root:has(.vps-hero) .vps-pricing-section {
    background: #f7f9fc;
}

.landing-root:has(.vps-hero) .vps-pricing-section .section-header {
    max-width: 820px;
}

.landing-root:has(.vps-hero) #vps-pricing-grid.pricing-grid {
    max-width: 1220px;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
}

.landing-root:has(.vps-hero) #vps-pricing-grid .pricing-card {
    gap: 0;
    overflow: visible;
    padding: 28px;
    border: 1px solid #cfdced;
    border-radius: 8px;
    background: #ffffff;
    box-shadow: 0 14px 34px rgba(18, 49, 91, 0.08);
}

.landing-root:has(.vps-hero) #vps-pricing-grid .pricing-card::before {
    height: 4px;
    border-radius: 8px 8px 0 0;
    background: #8fa9c8;
}

.landing-root:has(.vps-hero) #vps-pricing-grid .pricing-card.featured::before {
    background: #0875e8;
}

.landing-root:has(.vps-hero) #vps-pricing-grid .pricing-badge {
    top: 16px;
    right: 18px;
    left: auto;
    display: inline-flex;
    min-height: 28px;
    align-items: center;
    gap: 6px;
    padding: 5px 9px;
    border-radius: 5px;
    background: #e7f2ff;
    color: #075fc7;
    font-size: 11px;
    font-weight: 800;
    transform: none;
}

.landing-root:has(.vps-hero) #vps-pricing-grid .pricing-badge svg {
    width: 15px;
    height: 15px;
}

.landing-root:has(.vps-hero) #vps-pricing-grid .pricing-header {
    min-height: 218px;
    margin: 0;
    padding: 0 0 24px;
    border-bottom: 1px solid #dce5f0;
}

.landing-root:has(.vps-hero) #vps-pricing-grid .vps-plan-eyebrow {
    margin-bottom: 17px;
    padding: 0;
    border-radius: 0;
    background: transparent;
    color: #56708f;
    font-size: 12px;
    letter-spacing: 0;
    text-transform: none;
}

.landing-root:has(.vps-hero) #vps-pricing-grid .pricing-name {
    margin: 0 0 8px;
    color: #081d41;
    font-family: 'Sora', 'Inter', system-ui, sans-serif;
    font-size: 26px;
    line-height: 1.2;
}

.landing-root:has(.vps-hero) #vps-pricing-grid .pricing-desc {
    min-height: 50px;
    margin: 0 0 20px;
    color: #5b6f88;
    font-size: 14px;
    line-height: 1.55;
}

.landing-root:has(.vps-hero) #vps-pricing-grid .pricing-price {
    display: flex;
    align-items: baseline;
    gap: 7px;
}

.landing-root:has(.vps-hero) #vps-pricing-grid .pricing-price span:first-child {
    color: #071b3d;
    font-family: 'Sora', 'Inter', system-ui, sans-serif;
    font-size: 34px;
    font-weight: 800;
}

.landing-root:has(.vps-hero) #vps-pricing-grid .pricing-price span:last-child {
    color: #667c96;
    font-size: 13px;
    font-weight: 700;
}

.landing-root:has(.vps-hero) #vps-pricing-grid .vps-yearly-note {
    margin: 7px 0 0;
    color: #08744f;
    font-size: 12px;
}

.landing-root:has(.vps-hero) #vps-pricing-grid .vps-plan-fit {
    padding: 24px 0;
    border-bottom: 1px solid #dce5f0;
}

.landing-root:has(.vps-hero) #vps-pricing-grid .vps-plan-fit > strong {
    display: block;
    margin-bottom: 12px;
    color: #15335b;
    font-size: 13px;
}

.landing-root:has(.vps-hero) #vps-pricing-grid .vps-plan-fit ul {
    display: grid;
    gap: 10px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.landing-root:has(.vps-hero) #vps-pricing-grid .vps-plan-fit li {
    display: flex;
    align-items: flex-start;
    gap: 9px;
    color: #4c607a;
    font-size: 14px;
    line-height: 1.4;
}

.landing-root:has(.vps-hero) #vps-pricing-grid .vps-plan-fit li svg {
    flex: 0 0 auto;
    width: 17px;
    height: 17px;
    margin-top: 1px;
    color: #07845a;
}

.landing-root:has(.vps-hero) #vps-pricing-grid .vps-spec-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 0;
    padding: 22px 0;
    border-bottom: 1px solid #dce5f0;
}

.landing-root:has(.vps-hero) #vps-pricing-grid .vps-spec {
    min-width: 0;
    padding: 0 12px;
    border: 0;
    border-right: 1px solid #dce5f0;
    border-radius: 0;
    text-align: center;
}

.landing-root:has(.vps-hero) #vps-pricing-grid .vps-spec:first-child {
    padding-left: 0;
}

.landing-root:has(.vps-hero) #vps-pricing-grid .vps-spec:last-child {
    padding-right: 0;
    border-right: 0;
}

.landing-root:has(.vps-hero) #vps-pricing-grid .vps-spec-icon {
    display: grid;
    width: 28px;
    height: 28px;
    margin: 0 auto 7px;
    place-items: center;
    border-radius: 5px;
    background: #eaf3ff;
    color: #075fc7;
}

.landing-root:has(.vps-hero) #vps-pricing-grid .vps-spec-icon svg {
    width: 16px;
    height: 16px;
}

.landing-root:has(.vps-hero) #vps-pricing-grid .vps-spec > span:not(.vps-spec-icon) {
    color: #6b7f97;
    font-size: 9px;
    letter-spacing: 0;
}

.landing-root:has(.vps-hero) #vps-pricing-grid .vps-spec strong {
    margin-top: 5px;
    color: #143e78;
    font-size: 12px;
    overflow-wrap: anywhere;
}

.landing-root:has(.vps-hero) #vps-pricing-grid .vps-plan-note {
    display: flex;
    min-height: 72px;
    align-items: flex-start;
    gap: 10px;
    margin: 0;
    padding: 20px 0;
    border: 0;
    border-radius: 0;
    color: #526781;
    font-size: 13px;
    line-height: 1.5;
}

.landing-root:has(.vps-hero) #vps-pricing-grid .vps-plan-note svg {
    flex: 0 0 auto;
    width: 18px;
    height: 18px;
    color: #07845a;
}

.landing-root:has(.vps-hero) #vps-pricing-grid .pricing-cta {
    display: flex;
    width: 100%;
    min-height: 48px;
    align-items: center;
    justify-content: center;
    gap: 7px;
    margin-top: auto;
    border-radius: 5px;
}

.landing-root:has(.vps-hero) #vps-pricing-grid .pricing-cta svg {
    width: 17px;
    height: 17px;
}

.landing-root:has(.vps-hero) .vps-os-strip {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 24px;
    align-items: center;
    margin-bottom: 26px;
    padding: 20px 22px;
    border: 1px solid #cdddf0;
    border-left: 4px solid #075fc7;
    border-radius: 6px;
    background: #ffffff;
}

.landing-root:has(.vps-hero) .vps-os-copy span,
.landing-root:has(.vps-hero) .vps-os-copy strong {
    display: block;
}

.landing-root:has(.vps-hero) .vps-os-copy span {
    margin-bottom: 5px;
    color: #075fc7;
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
}

.landing-root:has(.vps-hero) .vps-os-copy strong {
    color: #173452;
    font-size: 14px;
}

.landing-root:has(.vps-hero) .vps-os-strip .os-grid {
    justify-content: flex-end;
    gap: 8px;
}

.landing-root:has(.vps-hero) .vps-os-strip .os-badge {
    min-height: 42px;
    padding: 8px 12px;
    border: 1px solid #d5e2f0;
    border-radius: 5px;
    background: #f7faff;
    color: #244261;
}

.landing-root:has(.vps-hero) .vps-preset-cta {
    gap: 7px;
}

.landing-root:has(.vps-hero) .vps-preset-cta svg {
    width: 16px;
    height: 16px;
}

@media (max-width: 1100px) {
    .landing-root:has(.vps-hero) .vps-hero::before {
        width: 28%;
        opacity: 0.65;
    }

    .landing-root:has(.vps-hero) .vps-hero .hero-banner-content {
        grid-template-columns: minmax(0, 1fr);
        gap: 36px;
    }

    .landing-root:has(.vps-hero) .vps-hero-copy {
        max-width: 760px;
    }

    .landing-root:has(.vps-hero) .vps-hero .hero-title {
        font-size: 42px;
    }

    .landing-root:has(.vps-hero) .vps-hero-facts {
        max-width: 760px;
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }

    .landing-root:has(.vps-hero) .vps-hero-facts > span,
    .landing-root:has(.vps-hero) .vps-hero-facts > span:nth-child(2n) {
        border-right: 1px solid #bed5ef;
        border-bottom: 0;
    }

    .landing-root:has(.vps-hero) .vps-hero-facts > span:last-child {
        border-right: 0;
    }

    .landing-root:has(.vps-hero) #vps-pricing-grid.pricing-grid {
        grid-template-columns: 1fr;
        max-width: 620px;
    }
}

@media (min-width: 861px) and (max-width: 1100px) {
    .landing-root:has(.vps-hero) #vps-pricing-grid.pricing-grid {
        max-width: 860px;
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .landing-root:has(.vps-hero) #vps-pricing-grid .pricing-card:last-child {
        grid-column: 1 / -1;
        width: min(100%, 421px);
        justify-self: center;
    }
}

@media (max-width: 640px) {
    .landing-root:has(.vps-hero) .vps-hero {
        min-height: 0;
    }

    .landing-root:has(.vps-hero) .vps-hero::before,
    .landing-root:has(.vps-hero) .vps-hero::after {
        display: none;
    }

    .landing-root:has(.vps-hero) .vps-hero .hero-banner-content {
        width: min(100% - 32px, 1180px);
        gap: 28px;
        padding: 48px 0 36px;
    }

    .landing-root:has(.vps-hero) .vps-hero .hero-title {
        font-size: 34px;
    }

    .landing-root:has(.vps-hero) .vps-hero .hero-desc {
        font-size: 16px;
    }

    .landing-root:has(.vps-hero) .vps-hero .hero-buttons {
        align-items: stretch;
        flex-direction: column;
    }

    .landing-root:has(.vps-hero) .vps-hero .hero-buttons a {
        width: 100%;
        max-width: none;
    }

    .landing-root:has(.vps-hero) .vps-hero-facts {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        margin-top: 28px;
    }

    .landing-root:has(.vps-hero) .vps-hero-facts > span {
        padding: 13px 10px;
        min-height: 92px;
    }

    .landing-root:has(.vps-hero) .vps-hero-facts > span:first-child {
        padding-left: 10px;
    }

    .landing-root:has(.vps-hero) .vps-hero-facts > span:nth-child(2) {
        border-right: 0;
    }

    .landing-root:has(.vps-hero) .vps-hero-facts > span:nth-child(-n + 2) {
        border-bottom: 1px solid #bed5ef;
    }

    .landing-root:has(.vps-hero) .vps-hero-facts > span:nth-child(3) {
        border-right: 1px solid #bed5ef;
    }

    .landing-root:has(.vps-hero) #vps-pricing-grid .pricing-card {
        padding: 26px 20px 22px;
    }

    .landing-root:has(.vps-hero) #vps-pricing-grid .pricing-header {
        min-height: 0;
    }

    .landing-root:has(.vps-hero) #vps-pricing-grid .pricing-badge {
        position: static;
        width: fit-content;
        margin-bottom: 16px;
    }

    .landing-root:has(.vps-hero) #vps-pricing-grid .vps-spec-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        row-gap: 18px;
    }

    .landing-root:has(.vps-hero) #vps-pricing-grid .vps-spec:nth-child(2) {
        border-right: 0;
    }

    .landing-root:has(.vps-hero) #vps-pricing-grid .vps-spec:nth-child(3) {
        padding-left: 0;
    }

    .landing-root:has(.vps-hero) .vps-os-strip {
        grid-template-columns: 1fr;
        gap: 14px;
        padding: 18px;
    }

    .landing-root:has(.vps-hero) .vps-os-strip .os-grid {
        justify-content: flex-start;
    }
}

@media (max-width: 640px) {
    .landing-root:has(.hero-banner.vps) .vps-presets-grid {
        grid-template-columns: 1fr;
    }

    .landing-root:has(.hero-banner.vps) .vps-preset-card {
        min-height: 0;
        padding: 20px;
    }
}

/* Offres VPS : cartes compactes, ressources lisibles et CTA immÃ©diat. */
.landing-root:has(.vps-hero) .vps-pricing-section {
    padding-top: 48px;
    padding-bottom: 96px;
    background: linear-gradient(180deg, #17366f 0, #17366f 450px, #edf3f9 450px, #f7f9fc 100%);
}

.landing-root:has(.vps-hero) .vps-pricing-section .section-header {
    margin-bottom: 0;
}

.landing-root:has(.vps-hero) .vps-pricing-section .section-label {
    color: #8dc1ff;
}

.landing-root:has(.vps-hero) .vps-pricing-section .section-title,
.landing-root:has(.vps-hero) .vps-pricing-section .section-intro {
    color: #ffffff;
}

.landing-root:has(.vps-hero) .vps-pricing-section .section-intro {
    opacity: 0.82;
}

.landing-root:has(.vps-hero) .vps-pricing-section .vps-billing-wrap {
    gap: 10px;
    margin: 20px 0 38px;
}

.landing-root:has(.vps-hero) .vps-pricing-section .vps-save-pill {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    padding: 10px 16px;
    border: 1px solid #86efac;
    border-radius: 999px;
    background: #dcfce7;
    color: #047857;
    font-size: 13px;
    font-weight: 900;
    box-shadow: 0 8px 22px rgba(22, 163, 74, 0.18);
}

.landing-root:has(.vps-hero) .vps-pricing-section .vps-save-pill::before {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #16a34a;
    box-shadow: 0 0 0 4px rgba(22, 163, 74, 0.13);
    content: '';
}

.landing-root:has(.vps-hero) .vps-pricing-section .vps-billing-discount {
    margin-left: 8px;
    padding: 4px 8px;
    background: #16a34a;
    color: #ffffff;
    font-size: 11px;
    box-shadow: 0 4px 10px rgba(22, 163, 74, 0.24);
}

.landing-root:has(.vps-hero) .vps-pricing-section .vps-billing-toggle {
    border-color: rgba(255, 255, 255, 0.34);
    background: #ffffff;
}

.landing-root:has(.vps-hero) #vps-pricing-grid.pricing-grid {
    max-width: 1260px;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 28px;
    align-items: stretch;
}

.landing-root:has(.vps-hero) #vps-pricing-grid .pricing-card {
    min-height: 570px;
    gap: 0;
    overflow: visible;
    padding: 40px 30px 28px;
    border: 1px solid #d6e0ec;
    border-radius: 8px;
    background: #ffffff;
    box-shadow: 0 18px 42px rgba(13, 38, 78, 0.11);
    transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.landing-root:has(.vps-hero) #vps-pricing-grid .pricing-card::before {
    display: none;
}

.landing-root:has(.vps-hero) #vps-pricing-grid .pricing-card:hover {
    transform: translateY(-4px);
    border-color: #8fb7ef;
    box-shadow: 0 24px 54px rgba(13, 38, 78, 0.16);
}

.landing-root:has(.vps-hero) #vps-pricing-grid .pricing-card.featured {
    border: 2px solid #2867f0;
    transform: translateY(-8px);
    box-shadow: 0 28px 64px rgba(40, 103, 240, 0.2);
}

.landing-root:has(.vps-hero) #vps-pricing-grid .pricing-card.featured:hover {
    transform: translateY(-10px);
}

.landing-root:has(.vps-hero) #vps-pricing-grid .pricing-badge {
    position: absolute;
    top: -18px;
    right: auto;
    left: 50%;
    min-height: 36px;
    gap: 7px;
    padding: 8px 22px;
    border-radius: 999px;
    background: #2867f0;
    color: #ffffff;
    font-size: 12px;
    font-weight: 900;
    text-transform: uppercase;
    transform: translateX(-50%);
    box-shadow: 0 12px 28px rgba(40, 103, 240, 0.25);
}

.landing-root:has(.vps-hero) #vps-pricing-grid .pricing-header {
    min-height: 198px;
    margin: 0;
    padding: 0 0 20px;
    border: 0;
    text-align: center;
}

.landing-root:has(.vps-hero) #vps-pricing-grid .vps-plan-eyebrow {
    margin: 0 0 14px;
    color: #506784;
    font-size: 12px;
    font-weight: 750;
}

.landing-root:has(.vps-hero) #vps-pricing-grid .pricing-name {
    margin: 0 0 10px;
    color: #07152f;
    font-size: 27px;
    font-weight: 850;
}

.landing-root:has(.vps-hero) #vps-pricing-grid .vps-price-line,
.landing-root:has(.vps-hero) #vps-pricing-grid .pricing-price {
    justify-content: center;
}

.landing-root:has(.vps-hero) #vps-pricing-grid .pricing-price {
    display: flex;
    align-items: baseline;
    gap: 5px;
    margin: 12px 0 10px;
}

.landing-root:has(.vps-hero) #vps-pricing-grid .pricing-price span:first-child {
    color: #2867f0;
    font-size: 44px;
    font-weight: 900;
    line-height: 1;
}

.landing-root:has(.vps-hero) #vps-pricing-grid .pricing-price span:last-child {
    color: #536a88;
    font-size: 14px;
    font-weight: 650;
}

.landing-root:has(.vps-hero) #vps-pricing-grid .pricing-desc {
    min-height: 46px;
    margin: 0 auto;
    color: #5b6d84;
    font-size: 14px;
    line-height: 1.55;
}

.landing-root:has(.vps-hero) #vps-pricing-grid .vps-yearly-note {
    margin-top: 8px;
    color: #08744f;
}

.landing-root:has(.vps-hero) #vps-pricing-grid .vps-plan-fit,
.landing-root:has(.vps-hero) #vps-pricing-grid .vps-plan-note {
    display: none;
}

.landing-root:has(.vps-hero) #vps-pricing-grid .vps-spec-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0;
    margin: 0 0 26px;
    padding: 0;
    border: 0;
}

.landing-root:has(.vps-hero) #vps-pricing-grid .vps-spec,
.landing-root:has(.vps-hero) #vps-pricing-grid .vps-spec:first-child,
.landing-root:has(.vps-hero) #vps-pricing-grid .vps-spec:last-child {
    display: grid;
    min-height: 52px;
    grid-template-columns: 28px minmax(82px, 0.8fr) minmax(0, 1.2fr);
    align-items: center;
    gap: 11px;
    padding: 11px 0;
    border: 0;
    border-bottom: 1px solid #e4eaf2;
    border-radius: 0;
    text-align: left;
}

.landing-root:has(.vps-hero) #vps-pricing-grid .vps-spec-icon {
    display: grid;
    width: 24px;
    height: 24px;
    margin: 0;
    place-items: center;
    border-radius: 0;
    background: transparent;
    color: #2867f0;
}

.landing-root:has(.vps-hero) #vps-pricing-grid .vps-spec-icon svg {
    width: 19px;
    height: 19px;
}

.landing-root:has(.vps-hero) #vps-pricing-grid .vps-spec > span:not(.vps-spec-icon) {
    color: #5b6d84;
    font-size: 12px;
    font-weight: 650;
}

.landing-root:has(.vps-hero) #vps-pricing-grid .vps-spec strong {
    margin: 0;
    color: #183153;
    font-size: 14px;
    font-weight: 800;
    text-align: right;
}

.landing-root:has(.vps-hero) #vps-pricing-grid .vps-offer-cta,
.landing-root:has(.vps-hero) #vps-pricing-grid .vps-offer-cta:visited {
    display: flex;
    width: 100%;
    min-height: 52px;
    align-items: center;
    justify-content: center;
    margin-top: auto;
    border: 1px solid #2867f0;
    border-radius: 6px;
    background: #2867f0;
    color: #ffffff;
    font-size: 15px;
    font-weight: 850;
    text-decoration: none;
    box-shadow: 0 12px 24px rgba(40, 103, 240, 0.18);
}

.landing-root:has(.vps-hero) #vps-pricing-grid .pricing-card.featured .vps-offer-cta,
.landing-root:has(.vps-hero) #vps-pricing-grid .pricing-card.featured .vps-offer-cta:visited {
    border-color: #17366f;
    background: #17366f;
}

.landing-root:has(.vps-hero) #vps-pricing-grid .vps-offer-cta:hover {
    border-color: #174fc9;
    background: #174fc9;
    color: #ffffff;
}

@media (min-width: 861px) and (max-width: 1100px) {
    .landing-root:has(.vps-hero) #vps-pricing-grid.pricing-grid {
        max-width: 880px;
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .landing-root:has(.vps-hero) #vps-pricing-grid .pricing-card:last-child {
        width: min(100%, 426px);
        grid-column: 1 / -1;
        justify-self: center;
    }
}

@media (max-width: 860px) {
    .landing-root:has(.vps-hero) #vps-pricing-grid.pricing-grid {
        max-width: 620px;
        grid-template-columns: 1fr;
    }
}

@media (max-width: 640px) {
    .landing-root:has(.vps-hero) .vps-pricing-section {
        padding-top: 54px;
        padding-bottom: 72px;
        background: linear-gradient(180deg, #17366f 0, #17366f 370px, #edf3f9 370px, #f7f9fc 100%);
    }

    .landing-root:has(.vps-hero) .vps-pricing-section .vps-billing-wrap {
        margin-bottom: 46px;
    }

    .landing-root:has(.vps-hero) #vps-pricing-grid .pricing-card {
        min-height: 0;
        padding: 36px 24px 24px;
    }

    .landing-root:has(.vps-hero) #vps-pricing-grid .pricing-card.featured,
    .landing-root:has(.vps-hero) #vps-pricing-grid .pricing-card.featured:hover {
        transform: none;
    }

    .landing-root:has(.vps-hero) #vps-pricing-grid .pricing-header {
        min-height: 0;
    }

    .landing-root:has(.vps-hero) #vps-pricing-grid .vps-spec-grid {
        grid-template-columns: 1fr;
        row-gap: 0;
    }

    .landing-root:has(.vps-hero) #vps-pricing-grid .vps-spec,
    .landing-root:has(.vps-hero) #vps-pricing-grid .vps-spec:first-child,
    .landing-root:has(.vps-hero) #vps-pricing-grid .vps-spec:last-child,
    .landing-root:has(.vps-hero) #vps-pricing-grid .vps-spec:nth-child(2),
    .landing-root:has(.vps-hero) #vps-pricing-grid .vps-spec:nth-child(3) {
        grid-template-columns: 28px minmax(74px, 0.8fr) minmax(0, 1.2fr);
        padding: 11px 0;
        border-right: 0;
    }
}
