:root {
    --violet: #1a3fa6;
    --orange: #f97316;
    --grad: linear-gradient(135deg, #f97316 0%, #1a3fa6 100%);
    --grad-soft: linear-gradient(
        135deg,
        rgba(26, 63, 166, 0.07) 0%,
        rgba(249, 115, 22, 0.07) 100%
    );
    --border-light: rgba(26, 63, 166, 0.14);
    --dark: #0f2943;
}

* {
    box-sizing: border-box;
}

body {
    font-family: "Segoe UI", system-ui, sans-serif;
    color: #1a1a2e;
    background: #fff;
    margin: 0;
}

/* TOPBAR */
.topbar {
    background: var(--grad);
    color: #fff;
    text-align: center;
    padding: 11px 16px;
    font-size: 0.84rem;
    font-weight: 600;
    letter-spacing: 0.3px;
}

/* HERO */
.hero {
    background: #f8faff;
    padding: 72px 0 56px;
    position: relative;
    overflow: hidden;
    text-align: center;
}

.hero::before {
    content: "";
    position: absolute;
    top: -120px;
    right: -120px;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    background: radial-gradient(
        circle,
        rgba(26, 63, 166, 0.06),
        transparent 70%
    );
    pointer-events: none;
}

.hero::after {
    content: "";
    position: absolute;
    bottom: -80px;
    left: -80px;
    width: 340px;
    height: 340px;
    border-radius: 50%;
    background: radial-gradient(
        circle,
        rgba(249, 115, 22, 0.07),
        transparent 70%
    );
    pointer-events: none;
}

.badge-dispo {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    background: rgba(26, 63, 166, 0.09);
    border: 1px solid rgba(26, 63, 166, 0.22);
    color: var(--violet);
    font-size: 11px;
    font-weight: 700;
    padding: 5px 16px;
    border-radius: 30px;
    letter-spacing: 1.4px;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.badge-dispo .dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--violet);
    animation: pulse-dot 1.8s infinite;
}

@keyframes pulse-dot {
    0%,
    100% {
        opacity: 1;
        transform: scale(1);
    }

    50% {
        opacity: 0.5;
        transform: scale(1.3);
    }
}

.hero h1 {
    font-size: clamp(1.8rem, 4vw, 2.6rem);
    font-weight: 800;
    line-height: 1.2;
    color: var(--dark);
    margin-bottom: 14px;
}

.grad-text {
    background: var(--grad);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-sub {
    font-size: 1.05rem;
    color: #555;
    max-width: 560px;
    margin: 0 auto 8px;
    line-height: 1.75;
}

.hero-italic {
    font-size: 0.92rem;
    color: var(--orange);
    font-weight: 600;
    font-style: italic;
    margin-bottom: 28px;
}

/* BOOK PNG */
.book-wrap {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 24px 0;
}

.book-img-wrap {
    position: relative;
    display: inline-block;
}

.book-img-wrap img {
    width: 220px;
    max-width: 90vw;
    border-radius: 6px 12px 12px 6px;
    display: block;
    transform: perspective(700px) rotateY(-14deg);
    transition: transform 0.4s ease;
    box-shadow:
        10px 16px 40px rgba(26, 63, 166, 0.3),
        -5px 0 0 rgba(0, 0, 0, 0.15),
        -10px 0 0 rgba(0, 0, 0, 0.08);
    background: linear-gradient(135deg, #1a3fa6, #f97316);
}

.book-img-wrap img:hover {
    transform: perspective(700px) rotateY(-4deg);
}

.book-placeholder {
    width: 220px;
    height: 300px;
    border-radius: 6px 12px 12px 6px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: var(--grad);
    transform: perspective(700px) rotateY(-14deg);
    box-shadow: 10px 16px 40px rgba(26, 63, 166, 0.3);
    color: #fff;
    font-weight: 800;
    font-size: 1rem;
    text-align: center;
    padding: 20px;
    transition: transform 0.4s ease;
}

.book-placeholder:hover {
    transform: perspective(700px) rotateY(-4deg);
}

.book-placeholder i {
    font-size: 3rem;
    margin-bottom: 12px;
    opacity: 0.9;
}

/* STATS */
.stats-row {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: center;
    margin-top: 32px;
}

.stat-pill {
    background: #fff;
    border: 1px solid var(--border-light);
    border-radius: 50px;
    padding: 10px 22px;
    text-align: center;
    min-width: 100px;
    box-shadow: 0 2px 12px rgba(26, 63, 166, 0.07);
}

.stat-pill .num {
    font-size: 1.6rem;
    font-weight: 800;
    background: var(--grad);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: block;
    line-height: 1;
}

.stat-pill .lbl {
    font-size: 0.7rem;
    color: #888;
    margin-top: 3px;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

/* SECTIONS */
section {
    padding: 64px 0;
}

.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
}

.section-label {
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--orange);
    margin-bottom: 8px;
}

.section-title {
    font-size: clamp(1.4rem, 3vw, 2rem);
    font-weight: 800;
    color: var(--dark);
    margin-bottom: 12px;
}

.section-divider {
    width: 56px;
    height: 4px;
    background: var(--grad);
    border-radius: 2px;
    margin: 0 auto 32px;
}

/* PROBLEM */
.problem-section {
    background: #fff;
}

.problem-card {
    background: #f8faff;
    border: 1px solid var(--border-light);
    border-left: 4px solid var(--violet);
    border-radius: 12px;
    padding: 20px 22px;
    margin-bottom: 14px;
}

.problem-card .q {
    font-weight: 700;
    color: var(--dark);
    font-size: 1rem;
    margin-bottom: 8px;
}

.problem-card p {
    margin: 0;
    font-size: 0.93rem;
    color: #444;
    line-height: 1.7;
}

.check-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.check-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 10px 0;
    border-bottom: 1px solid rgba(26, 63, 166, 0.07);
    font-size: 0.93rem;
    color: #444;
    line-height: 1.6;
}

.check-list li:last-child {
    border-bottom: none;
}

.check-list.bad li i {
    color: #dc3545;
}

.check-list.good li i {
    color: #198754;
}

/* ------------------------------------------------- ------------------------*/
/* ===== TRUST TICKER ===== */
.ticker-section {
    background: #fff;
    padding: 36px 0 28px;
    border-top: 1px solid var(--border-light);
    border-bottom: 1px solid var(--border-light);
    overflow: hidden;
}
.ticker-label {
    text-align: center;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #aaa;
    margin-bottom: 20px;
}
.ticker-track-wrap {
    overflow: hidden;
    -webkit-mask-image: linear-gradient(
        to right,
        transparent 0%,
        black 10%,
        black 90%,
        transparent 100%
    );
    mask-image: linear-gradient(
        to right,
        transparent 0%,
        black 10%,
        black 90%,
        transparent 100%
    );
}
.ticker-track {
    display: flex;
    gap: 0;
    width: max-content;
    animation: ticker-scroll 28s linear infinite;
}
.ticker-track:hover {
    animation-play-state: paused;
}
@keyframes ticker-scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}
.ticker-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 36px;
    border-right: 1px solid var(--border-light);
    white-space: nowrap;
}
.ticker-num {
    font-size: 1.5rem;
    font-weight: 900;
    background: var(--grad);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
}
.ticker-desc {
    font-size: 0.78rem;
    color: #666;
    line-height: 1.3;
    font-weight: 500;
}
.ticker-icon {
    width: 36px;
    height: 36px;
    border-radius: 10px;
    background: var(--grad);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    color: #fff;
    flex-shrink: 0;
}

/* ===== MARQUEE TÉMOIGNAGES ===== */
.marquee-section {
    background: #faf8ff;
    padding: 56px 0;
    overflow: hidden;
}
.marquee-wrap {
    overflow: hidden;
    margin-bottom: 20px;
    -webkit-mask-image: linear-gradient(
        to right,
        transparent 0%,
        black 8%,
        black 92%,
        transparent 100%
    );
    mask-image: linear-gradient(
        to right,
        transparent 0%,
        black 8%,
        black 92%,
        transparent 100%
    );
}
.marquee-track {
    display: flex;
    gap: 20px;
    width: max-content;
    animation: marquee-left 40s linear infinite;
}
.marquee-track.reverse {
    animation: marquee-right 44s linear infinite;
}
.marquee-track:hover {
    animation-play-state: paused;
}
@keyframes marquee-left {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}
@keyframes marquee-right {
    0% {
        transform: translateX(-50%);
    }
    100% {
        transform: translateX(0);
    }
}

.marquee-card {
    background: #fff;
    border: 1px solid var(--border-light);
    border-radius: 16px;
    padding: 22px 24px;
    width: 320px;
    flex-shrink: 0;
    position: relative;
    transition: 0.25s;
}

.marquee-card:hover {
    border-color: rgba(137, 1, 133, 0.3);
    box-shadow: 0 8px 28px rgba(137, 1, 133, 0.1);
    transform: translateY(-3px);
}

.marquee-quote {
    position: absolute;
    top: 14px;
    right: 18px;
    font-size: 2.8rem;
    color: rgba(137, 1, 133, 0.08);
    font-family: Georgia, serif;
    line-height: 1;
}

/* ================================================================
   AJOUTE AUSSI CES STYLES qui manquent dans ton CSS actuel
   (nécessaires pour que les cartes s'affichent correctement)
   ================================================================ */

/* Étoiles dans les cartes */
.testi-stars {
    font-size: 12px;
    color: var(--orange);
    margin-bottom: 10px;
    letter-spacing: 1px;
}

/* Texte du témoignage */
.testi-text {
    font-size: 0.86rem;
    color: #444;
    line-height: 1.7;
    margin-bottom: 14px;
    font-style: italic;
}

/* Ligne auteur (avatar + nom + badge) */
.testi-author {
    display: flex;
    align-items: center;
    gap: 10px;
}

/* Cercle avec initiales */
.testi-avatar {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: var(--grad);
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.testi-author strong {
    font-size: 0.85rem;
    color: var(--dark);
    display: block;
}

.testi-author span {
    font-size: 0.75rem;
    color: #888;
}

/* Badge "Vérifié" */
.testi-badge {
    margin-left: auto;
    font-size: 10px;
    font-weight: 700;
    border-radius: 20px;
    padding: 2px 8px;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    white-space: nowrap;
}

.testi-badge.verified {
    color: #0a7c4b;
    background: rgba(25, 135, 84, 0.1);
    border: 1px solid rgba(25, 135, 84, 0.2);
}

/* Note globale au dessus des témoignages */
.rating-bar {
    margin-bottom: 8px;
}
.rating-stars {
    font-size: 1.2rem;
    color: var(--orange);
    margin-bottom: 6px;
}
.rating-text {
    font-size: 0.85rem;
    color: #888;
    font-weight: 600;
}

/* Barre de stats satisfaction (bas de section marquee) */
.satisfaction-bar {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 32px;
    flex-wrap: wrap;
    background: #fff;
    border: 1px solid var(--border-light);
    border-radius: 16px;
    padding: 24px 32px;
}

.satis-item {
    text-align: center;
}

.satis-num {
    font-size: 2rem;
    font-weight: 900;
    background: var(--grad);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
}

.satis-lbl {
    font-size: 0.78rem;
    color: #888;
    margin-top: 4px;
    line-height: 1.4;
}

.satis-divider {
    width: 1px;
    height: 40px;
    background: var(--border-light);
}
/* ------------------------------------------------- ------------------------*/

/* BENEFITS */
.benefits-section {
    background: #fff;
}

.benefit-item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    margin-bottom: 18px;
}

.benefit-icon {
    width: 42px;
    height: 42px;
    border-radius: 12px;
    background: var(--grad);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.benefit-icon i {
    color: #fff;
    font-size: 17px;
}

.benefit-text strong {
    display: block;
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 3px;
}

.benefit-text span {
    font-size: 0.85rem;
    color: #666;
    line-height: 1.6;
}

/* CHAPTERS */
.chapters-section {
    background: #f8faff;
}

.chapter-item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 16px 20px;
    background: #fff;
    border: 1px solid var(--border-light);
    border-radius: 12px;
    margin-bottom: 10px;
    transition: 0.25s;
}

.chapter-item:hover {
    border-color: rgba(26, 63, 166, 0.3);
    box-shadow: 0 4px 18px rgba(26, 63, 166, 0.09);
    transform: translateX(4px);
}

.chapter-num {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: var(--grad);
    color: #fff;
    font-size: 0.82rem;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.chapter-body strong {
    font-size: 0.93rem;
    font-weight: 700;
    color: var(--dark);
}

.chapter-body span {
    font-size: 0.82rem;
    color: #777;
    display: block;
    margin-top: 2px;
}

/* PACK */
.pack-section {
    background: var(--grad-soft);
}

.pack-card {
    background: #fff;
    border: 1px solid var(--border-light);
    border-radius: 16px;
    padding: 28px 24px;
    height: 100%;
    position: relative;
    overflow: hidden;
    transition: 0.3s;
}

.pack-card::after {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    width: 70px;
    height: 70px;
    background: var(--grad);
    opacity: 0.05;
    border-radius: 0 0 0 70px;
}

.pack-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 32px rgba(26, 63, 166, 0.13);
    border-color: rgba(26, 63, 166, 0.3);
}

.pack-card.featured {
    border: 2px solid rgba(26, 63, 166, 0.4);
}

.pack-badge {
    display: inline-block;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 3px 12px;
    border-radius: 20px;
    margin-bottom: 12px;
}

.pack-badge.main {
    background: var(--grad);
    color: #fff;
}

.pack-badge.bonus {
    background: rgba(249, 115, 22, 0.13);
    color: #8a3d00;
    border: 1px solid rgba(249, 115, 22, 0.3);
}

.pack-card i.big {
    font-size: 2.2rem;
    color: var(--violet);
    margin-bottom: 12px;
    display: block;
}

.pack-card h4 {
    font-size: 1.05rem;
    font-weight: 800;
    color: var(--dark);
    margin-bottom: 8px;
}

.pack-card p {
    font-size: 0.84rem;
    color: #666;
    line-height: 1.7;
    margin-bottom: 10px;
}

.value-tag {
    font-size: 0.76rem;
    font-weight: 700;
    color: var(--violet);
    background: rgba(26, 63, 166, 0.08);
    border: 1px solid rgba(26, 63, 166, 0.18);
    padding: 3px 10px;
    border-radius: 20px;
    display: inline-block;
}

/* GRID helpers */
.row {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -10px;
}

.col-md-5,
.col-md-6 {
    padding: 0 10px;
    width: 100%;
}

@media (min-width: 768px) {
    .col-md-5 {
        width: 41.66%;
    }

    .col-md-6 {
        width: 50%;
    }
}

.g-3 {
    gap: 20px 0;
}

.justify-content-center {
    justify-content: center;
}

/* COMPARE */
.compare-section {
    background: #fff;
}

.compare-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(26, 63, 166, 0.08);
}

.compare-table th {
    padding: 16px 20px;
    font-size: 0.85rem;
    font-weight: 700;
    text-align: center;
}

.compare-table th:first-child {
    text-align: left;
    background: #f8f8f8;
    color: #888;
}

.compare-table th.col-sans {
    background: #f8f8f8;
    color: #888;
}

.compare-table th.col-pack {
    background: var(--grad);
    color: #fff;
}

.compare-table td {
    padding: 14px 20px;
    font-size: 0.85rem;
    border-bottom: 1px solid rgba(26, 63, 166, 0.07);
    text-align: center;
}

.compare-table td:first-child {
    text-align: left;
    color: var(--dark);
    font-weight: 500;
}

.compare-table tr:last-child td {
    border-bottom: none;
}

.compare-table tr:nth-child(even) td {
    background: rgba(26, 63, 166, 0.02);
}

.ico-yes {
    color: #198754;
    font-size: 1.1rem;
}

.ico-no {
    color: #dc3545;
    font-size: 1.1rem;
}

/* PRICING */
.pricing-section {
    background: #f8faff;
}

.price-box {
    background: #fff;
    border: 2px solid rgba(26, 63, 166, 0.25);
    border-radius: 20px;
    padding: 40px 36px;
    max-width: 480px;
    margin: 0 auto;
    position: relative;
    overflow: hidden;
    text-align: center;
}

.price-box::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: var(--grad);
}

.price-old {
    font-size: 0.95rem;
    color: #aaa;
    text-decoration: line-through;
    margin-bottom: 4px;
}

.price-new {
    font-size: 3rem;
    font-weight: 900;
    background: var(--grad);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    margin-bottom: 6px;
}

.price-caption {
    font-size: 0.82rem;
    color: #888;
    margin-bottom: 28px;
}

.price-features {
    list-style: none;
    padding: 0;
    margin: 0 0 28px;
    text-align: left;
}

.price-features li {
    font-size: 0.88rem;
    color: #555;
    padding: 7px 0;
    border-bottom: 1px solid rgba(26, 63, 166, 0.08);
    display: flex;
    align-items: center;
    gap: 10px;
}

.price-features li i {
    color: var(--violet);
    width: 16px;
}

.urgency-note {
    background: rgba(249, 115, 22, 0.1);
    border: 1px solid rgba(249, 115, 22, 0.25);
    border-radius: 8px;
    padding: 10px 16px;
    font-size: 0.82rem;
    color: #7a3d00;
    font-weight: 600;
    margin-bottom: 22px;
    text-align: center;
}

.urgency-note i {
    color: var(--orange);
    margin-right: 6px;
}

/* CTA */
.btn-cta {
    display: inline-block;
    background: var(--grad);
    color: #fff !important;
    font-size: 1.05rem;
    font-weight: 700;
    padding: 16px 40px;
    border-radius: 50px;
    text-decoration: none;
    border: none;
    box-shadow: 0 8px 24px rgba(26, 63, 166, 0.3);
    transition: 0.3s;
    letter-spacing: 0.3px;
    cursor: pointer;
}

.btn-cta:hover {
    opacity: 0.9;
    transform: translateY(-3px);
    box-shadow: 0 14px 32px rgba(26, 63, 166, 0.4);
}

.trust-icons {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
    margin-top: 20px;
}

.trust-icon {
    font-size: 0.8rem;
    color: #888;
    display: flex;
    align-items: center;
    gap: 7px;
}

.trust-icon i {
    color: var(--violet);
}

/* FAQ */
.faq-section {
    background: #fff;
}

.faq-item {
    background: #f8faff;
    border: 1px solid var(--border-light);
    border-radius: 12px;
    margin-bottom: 10px;
    overflow: hidden;
}

.faq-q {
    padding: 18px 20px;
    font-size: 0.93rem;
    font-weight: 700;
    color: var(--dark);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    user-select: none;
}

.faq-q i.chevron {
    color: var(--violet);
    transition: 0.3s;
    font-size: 0.9rem;
}

.faq-a {
    padding: 0 20px;
    max-height: 0;
    overflow: hidden;
    transition:
        max-height 0.35s ease,
        padding 0.3s;
}

.faq-a p {
    font-size: 0.88rem;
    color: #555;
    line-height: 1.75;
    margin: 0 0 16px;
}

.faq-item.open .faq-a {
    max-height: 220px;
    padding-top: 2px;
}

.faq-item.open .faq-q i.chevron {
    transform: rotate(180deg);
}

.faq-item.open {
    border-color: rgba(26, 63, 166, 0.3);
    background: #fff;
}

.faq-item.open .faq-q {
    color: var(--violet);
}

/* TRUTH SECTION */
.truth-section {
    background: #0f2943;
    padding: 64px 0;
    text-align: center;
}

.truth-section h2 {
    color: #fff;
    font-size: clamp(1.4rem, 3vw, 2rem);
    font-weight: 800;
    margin-bottom: 20px;
}

.truth-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 16px;
    max-width: 700px;
    margin: 0 auto 32px;
}

.truth-item-bad,
.truth-item-good {
    padding: 16px 20px;
    border-radius: 12px;
    font-size: 0.88rem;
    font-weight: 600;
    text-align: left;
}

.truth-item-bad {
    background: rgba(220, 53, 69, 0.1);
    border: 1px solid rgba(220, 53, 69, 0.3);
    color: #f8a0a8;
}

.truth-item-good {
    background: rgba(25, 135, 84, 0.1);
    border: 1px solid rgba(25, 135, 84, 0.3);
    color: #6ee7b7;
}

.truth-item-bad i,
.truth-item-good i {
    margin-right: 8px;
}

footer {
    background: var(--grad);
    color: #fff;
    text-align: center;
    padding: 32px 16px;
}

footer p {
    margin: 0;
    font-size: 0.82rem;
    opacity: 0.85;
}

@media (max-width: 576px) {
    .hero h1 {
        font-size: 1.7rem;
    }

    .price-new {
        font-size: 2.4rem;
    }

    .price-box {
        padding: 28px 20px;
    }

    .btn-cta {
        font-size: 0.95rem;
        padding: 14px 28px;
        display: block;
        text-align: center;
    }
}
