:root {
    --bg: #07120b;
    --panel: rgba(7, 18, 11, .92);
    --text: #e9fff2;
    --muted: #b6d7c2;
    --line: rgba(255, 255, 255, .12);
    --shadow: 0 18px 60px rgba(0, 0, 0, .55);
    --radius: 18px;
    --max: 1120px;
    --g1: #18c37e;
    --g2: #00d084;
    --grad: linear-gradient(135deg, var(--g1), var(--g2));
    color-scheme: dark;
}

* {
    box-sizing: border-box;
}

html,
body {
    height: 100%;
}

body {
    margin: 0;
    font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Arial;
    background: var(--bg);
    color: var(--text);
    line-height: 1.55;
}

a {
    color: inherit;
    text-decoration: none;
}

strong {
    font-weight: 1000;
}

.wrap {
    max-width: var(--max);
    margin: 0 auto;
    padding: 28px 20px 120px;
}


/* Cards */

.card {
    background: var(--panel);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}


/* Topbar */

.topbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    padding: 12px 0;
    position: sticky;
    top: 0;
    z-index: 20;
}

.brandTitle {
    font-size: 20px;
    font-weight: 1100;
}

.brandSub {
    font-size: 12px;
    color: var(--muted);
    font-weight: 900;
}

.pill {
    font-size: 12px;
    padding: 8px 12px;
    border-radius: 999px;
    border: 1px solid var(--line);
    background: rgba(255, 255, 255, .03);
    color: var(--muted);
}


/* Hero */

.hero {
    display: grid;
    grid-template-columns: 1.2fr .8fr;
    gap: 18px;
    margin-top: 20px;
}

@media(max-width:900px) {
    .hero {
        grid-template-columns: 1fr;
    }
}

.heroMain {
    padding: 28px;
}

.heroSide {
    padding: 22px;
}

h1 {
    margin: 0 0 12px;
    font-size: 42px;
    font-weight: 1150;
    letter-spacing: -.9px;
}

@media(max-width:520px) {
    h1 {
        font-size: 34px;
    }
}

.gradText {
    background: var(--grad);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.sub {
    color: var(--muted);
}

.badges {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 16px;
}

.badge {
    padding: 8px 12px;
    border-radius: 999px;
    border: 1px solid var(--line);
    background: rgba(255, 255, 255, .03);
    color: var(--muted);
    font-size: 13px;
    font-weight: 900;
}

.notice {
    margin-top: 14px;
    padding: 10px 12px;
    border-radius: 14px;
    border: 1px solid rgba(255, 182, 182, .25);
    background: rgba(255, 182, 182, .06);
    color: #ffb6b6;
    font-size: 13px;
    font-weight: 950;
}


/* Side */

.miniTitle {
    font-weight: 1100;
}

.miniText {
    font-size: 14px;
    color: var(--muted);
}

.divider {
    height: 1px;
    background: var(--line);
    margin: 16px 0;
}

.checkline {
    display: flex;
    gap: 10px;
    font-size: 13px;
    color: var(--muted);
}

.checkline input {
    accent-color: var(--g2);
}


/* Grid packs */

.grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin-top: 22px;
}

@media(max-width:980px) {
    .grid {
        grid-template-columns: 1fr;
    }
}

.pack {
    padding: 20px;
    position: relative;
    transition: transform .15s ease, border-color .15s ease, box-shadow .15s ease;
}

.pack:hover {
    transform: translateY(-3px);
    border-color: rgba(0, 208, 132, .20);
    box-shadow: 0 22px 70px rgba(0, 0, 0, .62);
}

.packTop {
    padding-right: 110px;
}


/* espace pour badge pro */

.packHeader {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
}

.packName {
    font-size: 18px;
    font-weight: 1150;
    margin: 0;
}

.tag {
    font-size: 12px;
    padding: 6px 10px;
    border-radius: 999px;
    border: 1px solid var(--line);
    color: var(--muted);
    font-weight: 900;
    background: rgba(255, 255, 255, .03);
    white-space: nowrap;
}

.tagBest {
    border-color: rgba(0, 208, 132, .35);
    color: var(--text);
}


/* Pro popular */

.popular {
    border-color: rgba(0, 208, 132, .55);
}

.popularPill {
    position: absolute;
    top: 14px;
    right: 14px;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 14px;
    border-radius: 999px;
    background: rgba(0, 208, 132, .18);
    border: 1px solid rgba(0, 208, 132, .35);
    cursor: default;
    transition: transform .15s ease, filter .15s ease;
}

.popularPill:hover {
    transform: translateY(-1px);
    filter: brightness(1.06);
}

.popularText {
    display: flex;
    flex-direction: column;
    line-height: 1.1;
}

.popularTitle {
    font-weight: 1100;
    font-size: 13px;
}

.popularSub {
    font-weight: 1000;
    font-size: 12px;
    color: var(--muted);
}

.star {
    width: 22px;
    height: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    background: rgba(0, 208, 132, .22);
    border: 1px solid rgba(0, 208, 132, .30);
    line-height: 1;
    font-size: 14px;
    /* assure le centrage visuel de ⭐ */
}


/* Price */

.price {
    margin: 12px 0 6px;
    font-size: 34px;
    font-weight: 1200;
}

.price span {
    font-size: 14px;
    color: var(--muted);
    margin-left: 6px;
    font-weight: 1000;
}

.desc {
    color: var(--muted);
    margin: 0;
}


/* Features */

.features {
    list-style: none;
    padding: 0;
    margin: 14px 0;
    display: grid;
    gap: 10px;
}

.feat {
    display: flex;
    gap: 10px;
    align-items: flex-start;
    color: var(--muted);
}

.icon {
    width: 26px;
    height: 26px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    background: rgba(255, 255, 255, .04);
    border: 1px solid rgba(255, 255, 255, .10);
    flex: 0 0 auto;
    line-height: 1;
    font-size: 14px;
    padding: 0;
}

.dot {
    width: 22px;
    height: 22px;
    border-radius: 999px;
    background: rgba(0, 208, 132, .14);
    border: 1px solid rgba(0, 208, 132, .25);
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 auto;
    margin-top: 2px;
}

.dot::after {
    content: "";
    width: 8px;
    height: 8px;
    border-radius: 999px;
    background: var(--g2);
    box-shadow: 0 0 0 3px rgba(0, 208, 132, .10);
}

.featKey {
    color: var(--text);
}


/* Addon */

.addon {
    margin-top: 12px;
    padding: 10px 12px;
    border-radius: 14px;
    background: rgba(0, 208, 132, .08);
    border: 1px solid rgba(0, 208, 132, .25);
    font-size: 13px;
    font-weight: 1000;
    display: flex;
    gap: 10px;
    align-items: center;
}

.addonTitle {
    padding: 4px 10px;
    border-radius: 999px;
    background: rgba(0, 208, 132, .14);
    border: 1px solid rgba(0, 208, 132, .25);
    font-weight: 1100;
    font-size: 12px;
}


/* Buttons + hover */

.ctaRow {
    display: flex;
    gap: 10px;
    margin-top: 16px;
    flex-wrap: wrap;
}

.btn {
    padding: 14px 18px;
    border-radius: 14px;
    font-weight: 1200;
    letter-spacing: .35px;
    text-align: center;
    cursor: pointer;
    transition: transform .12s ease, filter .12s ease, box-shadow .12s ease;
    user-select: none;
}

.btn:hover {
    transform: translateY(-1px);
}

.btn:active {
    transform: translateY(1px);
}

.btnPrimary {
    background: var(--grad);
    color: #ffffff;
    /* texte blanc (lisible) */
    text-shadow: 0 1px 0 rgba(0, 0, 0, .25);
    box-shadow: 0 18px 40px rgba(0, 208, 132, .18);
}

.btnPrimary:hover {
    filter: brightness(1.05);
    box-shadow: 0 22px 55px rgba(0, 208, 132, .22);
}

.btnGhost {
    border: 1px solid var(--line);
    background: rgba(255, 255, 255, .03);
}

.btnGhost:hover {
    filter: brightness(1.06);
}

.btn[aria-disabled="true"] {
    opacity: .45;
    pointer-events: none;
}


/* Sections */

.section {
    margin-top: 22px;
    padding: 22px;
}

.muted {
    color: var(--muted);
}


/* Option block */

.optionRow {
    display: flex;
    justify-content: space-between;
    gap: 16px;
    flex-wrap: wrap;
}

.optionPrice {
    font-size: 20px;
    font-weight: 1200;
}

.optionHint {
    font-size: 13px;
    font-weight: 900;
}


/* Comparatif */

.cols {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
}

@media(max-width:900px) {
    .cols {
        grid-template-columns: 1fr;
    }
}

.box {
    padding: 14px;
    border-radius: 14px;
    border: 1px solid var(--line);
    background: rgba(255, 255, 255, .03);
}


/* FAQ */

.faq details {
    border: 1px solid var(--line);
    border-radius: 14px;
    padding: 14px;
    margin-top: 12px;
    background: rgba(255, 255, 255, .03);
}

.faq summary {
    font-weight: 1100;
    cursor: pointer;
}

.faq summary::-webkit-details-marker {
    display: none;
}


/* Footer texts */

.fineprint,
.footerNote {
    font-size: 12px;
    color: var(--muted);
}


/* Sticky */

.sticky {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 12px;
    background: #060f0b;
    border-top: 1px solid var(--line);
    z-index: 30;
}

.stickyInner {
    max-width: var(--max);
    margin: auto;
    display: flex;
    justify-content: space-between;
    gap: 12px;
}

.stickyText {
    padding-left: 14px;
    /* vers la droite */
    padding-top: 4px;
    /* vers le bas */
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.stickyText span {
    font-size: 12px;
    color: var(--muted);
}

.stickyActions {
    display: flex;
    gap: 10px;
}


/* Select (no white) */

.select {
    background: #0a0f0c;
    color: #fff;
    border: 1px solid var(--line);
    border-radius: 12px;
    padding: 10px 12px;
    font-weight: 1100;
}

.select option {
    background: #0a0f0c;
    color: #fff;
}


/* ================================
   SITE LOADER (intro progress 0-100)
================================ */

.siteLoader {
    position: fixed;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(7, 18, 11, .92);
    backdrop-filter: blur(10px);
    z-index: 99999;
    opacity: 1;
    transition: opacity .25s ease, transform .25s ease;
}

.siteLoader.is-hidden {
    opacity: 0;
    pointer-events: none;
    transform: translateY(-4px);
}

.loaderBox {
    width: min(520px, calc(100% - 40px));
    border-radius: 18px;
    border: 1px solid rgba(255, 255, 255, .12);
    background: rgba(10, 15, 12, .75);
    box-shadow: 0 18px 60px rgba(0, 0, 0, .55);
    padding: 16px 16px 14px;
}

.loaderTop {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 12px;
}

.loaderTop strong {
    font-weight: 1100;
    letter-spacing: .2px;
    display: flex;
    align-items: center;
    gap: 8px;
}

#loaderPct {
    font-weight: 1100;
    color: var(--muted);
}

.loaderBar {
    height: 12px;
    border-radius: 999px;
    background: rgba(255, 255, 255, .08);
    border: 1px solid rgba(255, 255, 255, .10);
    overflow: hidden;
}

.loaderFill {
    height: 100%;
    width: 0%;
    border-radius: 999px;
    background: linear-gradient(90deg, #18c37e, #00d084);
    box-shadow: 0 10px 35px rgba(0, 208, 132, .18);
    transition: width .12s ease;
}

.loaderHint {
    margin-top: 10px;
    font-size: 12px;
    color: var(--muted);
    font-weight: 900;
}


/* --- 3 points animés --- */

.dots {
    display: inline-flex;
    gap: 5px;
    margin-left: 2px;
}

.dots i {
    width: 5px;
    height: 5px;
    border-radius: 999px;
    background: rgba(0, 208, 132, .95);
    display: inline-block;
    animation: dotPulse 1s infinite ease-in-out;
    transform: translateY(0);
}

.dots i:nth-child(2) {
    animation-delay: .15s;
    opacity: .85;
}

.dots i:nth-child(3) {
    animation-delay: .30s;
    opacity: .7;
}

@keyframes dotPulse {
    0%,
    80%,
    100% {
        transform: translateY(0);
        opacity: .55;
    }
    40% {
        transform: translateY(-3px);
        opacity: 1;
    }
}


/* Interac payment box */

.interacBox {
    margin: 10px 0 14px;
    padding: 12px 14px;
    border-radius: 14px;
    background: rgba(0, 208, 132, .08);
    border: 1px solid rgba(0, 208, 132, .25);
    font-size: 13px;
    font-weight: 900;
}

.interacMail {
    display: block;
    margin-top: 4px;
    font-weight: 1200;
    color: var(--g2);
    letter-spacing: .3px;
}


/* Interac button */

.interacBtn {
    margin-top: 12px;
    display: inline-block;
}