/* =========================================================
   OBJECTIF AUTEUR — Feuille de style
   Palette : bleu nuit / anthracite / noir / blanc / doré
   Aucune dépendance externe. HTML5 / CSS3.
   ========================================================= */

/* ---------- 1. Reset & bases ---------- */
*, *::before, *::after { box-sizing: border-box; }

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
}

body {
    margin: 0;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", Arial, sans-serif;
    font-size: 17px;
    line-height: 1.7;
    color: #1A1F2B;
    background: #FFFFFF;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }

a {
    color: #0B1B34;
    text-decoration: none;
    transition: color .25s ease, opacity .25s ease;
}
a:hover { color: #C9A961; }
a:focus-visible {
    outline: 2px solid #C9A961;
    outline-offset: 3px;
    border-radius: 2px;
}

button { font: inherit; cursor: pointer; }

h1, h2, h3, h4 {
    font-family: Georgia, "Times New Roman", "Playfair Display", serif;
    font-weight: 600;
    line-height: 1.25;
    color: #0B1B34;
    margin: 0 0 .6em;
    letter-spacing: -.01em;
}
h1 { font-size: clamp(2.1rem, 4.5vw, 3.6rem); }
h2 { font-size: clamp(1.7rem, 3.2vw, 2.6rem); }
h3 { font-size: clamp(1.15rem, 1.8vw, 1.4rem); }

p { margin: 0 0 1.1em; }

::selection { background: #C9A961; color: #0B1B34; }

/* ---------- 2. Variables ---------- */
:root {
    --nuit:      #0B1B34;
    --nuit-2:    #12244A;
    --anthra:    #1A1F2B;
    --noir:      #0A0A0A;
    --blanc:     #FFFFFF;
    --ivoire:    #F7F5EF;
    --gris:      #E5E7EB;
    --gris-txt:  #4B5563;
    --or:        #C9A961;
    --or-2:      #D4B872;
    --or-fonce:  #9E813E;
    --ombre-sm:  0 2px 8px rgba(11,27,52,.06);
    --ombre-md:  0 8px 32px rgba(11,27,52,.10);
    --ombre-lg:  0 20px 60px rgba(11,27,52,.18);
    --radius:    10px;
    --radius-lg: 16px;
    --max:       1180px;
    --pad:       clamp(1.2rem, 4vw, 2.4rem);
}

/* ---------- 3. Layout utils ---------- */
.container {
    width: 100%;
    max-width: var(--max);
    margin: 0 auto;
    padding: 0 var(--pad);
}
.narrow { max-width: 780px; }

.gold { color: var(--or); }
.light { color: var(--ivoire); }
.italic { font-style: italic; }
.strike { text-decoration: line-through; opacity: .55; margin-left: .35em; font-weight: 400; }

/* ---------- 4. Header ---------- */
.site-header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(255,255,255,.92);
    backdrop-filter: saturate(180%) blur(12px);
    -webkit-backdrop-filter: saturate(180%) blur(12px);
    border-bottom: 1px solid rgba(11,27,52,.08);
    transition: box-shadow .3s ease, background .3s ease;
}
.site-header.scrolled { box-shadow: var(--ombre-sm); }

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 72px;
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: .65rem;
    color: var(--nuit);
    font-weight: 700;
    letter-spacing: .02em;
}
.brand:hover { color: var(--nuit); opacity: .85; }
.brand-mark {
    display: inline-grid;
    place-items: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: linear-gradient(140deg, var(--nuit), var(--nuit-2));
    color: var(--or);
    font-family: Georgia, serif;
    font-weight: 700;
    font-size: 1rem;
    letter-spacing: .04em;
    box-shadow: inset 0 0 0 1px rgba(201,169,97,.35);
}
.brand-name {
    font-family: Georgia, serif;
    font-size: 1.15rem;
}

.primary-nav ul {
    display: flex;
    align-items: center;
    gap: 2rem;
    list-style: none;
    margin: 0;
    padding: 0;
}
.primary-nav a {
    font-size: .95rem;
    color: var(--anthra);
    position: relative;
    padding: .3rem 0;
}
.primary-nav a::after {
    content: "";
    position: absolute;
    left: 0; right: 0; bottom: -4px;
    height: 1px;
    background: var(--or);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform .3s ease;
}
.primary-nav a:hover::after { transform: scaleX(1); }

.nav-cta {
    background: var(--nuit);
    color: var(--ivoire) !important;
    padding: .55rem 1.1rem !important;
    border-radius: 999px;
    border: 1px solid var(--nuit);
    transition: background .25s ease, color .25s ease;
}
.nav-cta::after { display: none !important; }
.nav-cta:hover {
    background: var(--or);
    border-color: var(--or);
    color: var(--nuit) !important;
}

.nav-toggle {
    display: none;
    background: transparent;
    border: 0;
    padding: .5rem;
    width: 44px;
    height: 44px;
    position: relative;
}
.nav-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--nuit);
    margin: 5px auto;
    transition: transform .3s ease, opacity .3s ease;
}
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ---------- 5. Boutons ---------- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: .5rem;
    padding: .95rem 1.8rem;
    border-radius: 999px;
    font-weight: 600;
    font-size: 1rem;
    letter-spacing: .01em;
    border: 1px solid transparent;
    transition: transform .2s ease, box-shadow .25s ease, background .25s ease, color .25s ease, border-color .25s ease;
    text-align: center;
    cursor: pointer;
    line-height: 1.3;
}
.btn:hover { transform: translateY(-2px); }
.btn-lg { padding: 1.1rem 2.2rem; font-size: 1.05rem; }
.btn-block { width: 100%; }

.btn-gold {
    background: linear-gradient(135deg, var(--or), var(--or-2));
    color: var(--nuit);
    box-shadow: 0 8px 24px rgba(201,169,97,.35);
}
.btn-gold:hover {
    color: var(--nuit);
    box-shadow: 0 12px 32px rgba(201,169,97,.5);
}

.btn-ghost {
    background: transparent;
    color: var(--ivoire);
    border-color: rgba(255,255,255,.35);
}
.btn-ghost:hover {
    background: rgba(255,255,255,.08);
    border-color: var(--or);
    color: var(--or);
}

.btn-outline {
    background: transparent;
    color: var(--nuit);
    border-color: var(--nuit);
}
.btn-outline:hover {
    background: var(--nuit);
    color: var(--ivoire);
}

.btn-outline-light {
    background: transparent;
    color: var(--ivoire);
    border-color: rgba(247,245,239,.4);
}
.btn-outline-light:hover {
    background: var(--ivoire);
    color: var(--nuit);
    border-color: var(--ivoire);
}

/* ---------- 6. Hero ---------- */
.hero {
    position: relative;
    color: var(--ivoire);
    overflow: hidden;
    padding: clamp(5rem, 10vw, 8rem) 0 clamp(4rem, 8vw, 6rem);
    isolation: isolate;
}
.hero-bg {
    position: absolute;
    inset: 0;
    z-index: -1;
    background:
        radial-gradient(circle at 20% 20%, rgba(201,169,97,.18), transparent 45%),
        radial-gradient(circle at 85% 75%, rgba(18,36,74,.85), transparent 55%),
        linear-gradient(160deg, #0A1428 0%, #0B1B34 45%, #12244A 100%);
}
.hero-bg::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255,255,255,.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,.03) 1px, transparent 1px);
    background-size: 60px 60px;
    opacity: .4;
    mask-image: radial-gradient(ellipse at center, black, transparent 75%);
    -webkit-mask-image: radial-gradient(ellipse at center, black, transparent 75%);
}

.hero-inner { max-width: 880px; }

.eyebrow {
    display: inline-block;
    text-transform: uppercase;
    letter-spacing: .28em;
    font-size: .78rem;
    color: var(--or);
    margin: 0 0 1.4rem;
    padding: .4rem .9rem;
    border: 1px solid rgba(201,169,97,.4);
    border-radius: 999px;
    background: rgba(201,169,97,.08);
    animation: fadeUp .8s ease both;
}

.hero h1 {
    color: var(--ivoire);
    margin-bottom: 1.4rem;
    animation: fadeUp .9s .1s ease both;
}
.hero .lede {
    font-size: clamp(1.05rem, 1.6vw, 1.2rem);
    color: rgba(247,245,239,.88);
    max-width: 680px;
    margin-bottom: 2.2rem;
    animation: fadeUp 1s .2s ease both;
}

.hero-cta {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 2.4rem;
    animation: fadeUp 1s .3s ease both;
}

.hero-note {
    display: inline-flex;
    align-items: center;
    gap: .6rem;
    font-size: .95rem;
    color: rgba(247,245,239,.75);
    animation: fadeUp 1s .4s ease both;
}
.hero-note .dot {
    width: 8px; height: 8px;
    border-radius: 50%;
    background: var(--or);
    box-shadow: 0 0 0 0 rgba(201,169,97,.7);
    animation: pulse 2s infinite;
}

@keyframes fadeUp {
    from { opacity: 0; transform: translateY(20px); }
    to   { opacity: 1; transform: none; }
}
@keyframes pulse {
    0%   { box-shadow: 0 0 0 0 rgba(201,169,97,.7); }
    70%  { box-shadow: 0 0 0 12px rgba(201,169,97,0); }
    100% { box-shadow: 0 0 0 0 rgba(201,169,97,0); }
}

/* ---------- 7. Sections génériques ---------- */
.section {
    padding: clamp(4rem, 8vw, 7rem) 0;
    position: relative;
}
.section-dark {
    background: linear-gradient(160deg, #0B1B34 0%, #12244A 100%);
    color: rgba(247,245,239,.88);
}
.section-dark h1, .section-dark h2, .section-dark h3 { color: var(--ivoire); }
.section-dark strong { color: var(--ivoire); }

.section-alt { background: var(--ivoire); }

.section-title {
    text-align: center;
    margin-bottom: 1rem;
}
.section-title.light { color: var(--ivoire); }
.section-eyebrow {
    text-align: center;
    text-transform: uppercase;
    letter-spacing: .24em;
    font-size: .78rem;
    color: var(--or-fonce);
    margin: 0 0 .8rem;
    font-weight: 600;
}
.section-eyebrow.light { color: var(--or); }
.section-intro {
    text-align: center;
    max-width: 720px;
    margin: 0 auto 3.5rem;
    color: var(--gris-txt);
    font-size: 1.05rem;
}
.section-dark .section-intro { color: rgba(247,245,239,.75); }

.quote-block {
    font-family: Georgia, serif;
    font-size: 1.4rem;
    color: var(--or);
    text-align: center;
    padding: 1.2rem 0;
    border-top: 1px solid rgba(201,169,97,.25);
    border-bottom: 1px solid rgba(201,169,97,.25);
    margin: 2rem 0;
}

.pullquote {
    font-family: Georgia, serif;
    font-size: 1.35rem;
    line-height: 1.5;
    text-align: center;
    padding: 1.6rem clamp(1rem, 3vw, 2rem);
    border-left: 3px solid var(--or);
    background: rgba(201,169,97,.06);
    border-radius: 0 var(--radius) var(--radius) 0;
    margin: 2rem 0;
}
.section-dark .pullquote { background: rgba(201,169,97,.08); }

.highlight-card {
    background: rgba(201,169,97,.07);
    border: 1px solid rgba(201,169,97,.28);
    padding: clamp(1.5rem, 3vw, 2.4rem);
    border-radius: var(--radius-lg);
    margin-top: 2rem;
}
.highlight-card .lead { font-size: 1.25rem; font-weight: 600; margin-bottom: .5rem; }

.closing {
    text-align: center;
    font-family: Georgia, serif;
    font-size: 1.35rem;
    color: var(--or);
    font-style: italic;
    margin-top: 2rem;
}

.scarcity {
    text-align: center;
    color: var(--gris-txt);
    font-size: .95rem;
    margin-top: 2rem;
}
.scarcity.light { color: rgba(247,245,239,.75); }

.cta-center {
    display: flex;
    justify-content: center;
    margin-top: 2.5rem;
}

/* ---------- 8. Cards 2 (aperçu formules) ---------- */
.cards-2 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.6rem;
    margin-top: 3rem;
}
.card {
    background: var(--blanc);
    border: 1px solid var(--gris);
    padding: 2rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--ombre-sm);
    transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease;
    display: flex;
    flex-direction: column;
}
.card:hover { transform: translateY(-4px); box-shadow: var(--ombre-md); border-color: rgba(201,169,97,.35); }
.card-signature {
    background: linear-gradient(160deg, #0B1B34, #12244A);
    color: var(--ivoire);
    border-color: var(--or);
}
.card-signature h3, .card-signature .card-tag { color: var(--ivoire); }
.card-tag {
    font-size: .85rem;
    text-transform: uppercase;
    letter-spacing: .18em;
    color: var(--or-fonce);
    margin: 0 0 1rem;
    font-weight: 700;
}
.card h3 { margin-bottom: .6rem; }
.card p { margin-bottom: 1.4rem; flex-grow: 1; }
.price {
    display: flex;
    flex-wrap: wrap;
    align-items: baseline;
    gap: .6rem;
    margin: 1.2rem 0 1.6rem;
}
.price-old {
    text-decoration: line-through;
    color: var(--gris-txt);
    font-size: 1rem;
}
.card-signature .price-old { color: rgba(247,245,239,.55); }
.price-new {
    font-family: Georgia, serif;
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--or);
}
.price-badge {
    display: inline-block;
    font-size: .72rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: .1em;
    padding: .25rem .6rem;
    background: rgba(201,169,97,.15);
    color: var(--or-fonce);
    border-radius: 999px;
    border: 1px solid rgba(201,169,97,.35);
}
.card-signature .price-badge { color: var(--or); }

/* ---------- 9. Obstacles ---------- */
.obstacles-grid {
    list-style: none;
    padding: 0;
    margin: 3rem 0 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.4rem;
    counter-reset: obs;
}
.obstacles-grid li {
    background: var(--blanc);
    border: 1px solid var(--gris);
    border-radius: var(--radius-lg);
    padding: 2rem 1.6rem 1.6rem;
    position: relative;
    box-shadow: var(--ombre-sm);
    transition: transform .3s ease, box-shadow .3s ease;
}
.obstacles-grid li:hover { transform: translateY(-4px); box-shadow: var(--ombre-md); }
.obs-num {
    position: absolute;
    top: -18px;
    left: 1.4rem;
    display: inline-grid;
    place-items: center;
    width: 44px; height: 44px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--nuit), var(--nuit-2));
    color: var(--or);
    font-family: Georgia, serif;
    font-weight: 700;
    font-size: 1.15rem;
    box-shadow: var(--ombre-sm), inset 0 0 0 1px rgba(201,169,97,.35);
}
.obstacles-grid h3 { margin-top: .5rem; margin-bottom: .6rem; }
.obstacles-grid p { margin: 0; color: var(--gris-txt); font-size: .95rem; }

/* ---------- 10. Deux colonnes check ---------- */
.two-col-check {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 2rem;
    margin: 2.4rem 0;
}
.two-col-check h3 { margin-bottom: .8rem; }
.list-check, .list-cross {
    list-style: none;
    padding: 0;
    margin: 0;
}
.list-check li, .list-cross li {
    padding: .5rem 0 .5rem 2rem;
    position: relative;
    border-bottom: 1px solid rgba(201,169,97,.15);
}
.list-check li::before {
    content: "✔";
    position: absolute;
    left: 0;
    color: var(--or);
    font-weight: 700;
}
.list-cross li::before {
    content: "✘";
    position: absolute;
    left: 0;
    color: #C86A6A;
    font-weight: 700;
}

/* ---------- 11. Modules grid ---------- */
.modules-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.4rem;
}
.module {
    background: var(--blanc);
    border: 1px solid var(--gris);
    border-radius: var(--radius-lg);
    padding: 1.8rem;
    box-shadow: var(--ombre-sm);
    transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease;
    position: relative;
    overflow: hidden;
}
.module::before {
    content: "";
    position: absolute;
    top: 0; left: 0;
    width: 4px; height: 100%;
    background: linear-gradient(180deg, var(--or), transparent);
    opacity: 0;
    transition: opacity .3s ease;
}
.module:hover { transform: translateY(-4px); box-shadow: var(--ombre-md); border-color: rgba(201,169,97,.35); }
.module:hover::before { opacity: 1; }
.mod-index {
    font-family: Georgia, serif;
    font-size: .85rem;
    text-transform: uppercase;
    letter-spacing: .22em;
    color: var(--or-fonce);
    margin: 0 0 .8rem;
    font-weight: 600;
}
.module h3 { margin-bottom: .6rem; }
.module p { margin: 0; color: var(--gris-txt); font-size: .95rem; }

.plus-bloc {
    margin-top: 3.5rem;
    padding: clamp(1.8rem, 4vw, 3rem);
    background: linear-gradient(160deg, #0B1B34, #12244A);
    color: var(--ivoire);
    border-radius: var(--radius-lg);
    text-align: center;
    box-shadow: var(--ombre-md);
}
.plus-bloc h3 { color: var(--ivoire); }
.inline-list {
    list-style: none;
    padding: 0;
    margin: 1.2rem 0 1.8rem;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: .6rem;
}
.inline-list li {
    padding: .5rem 1.1rem;
    background: rgba(255,255,255,.06);
    border: 1px solid rgba(201,169,97,.3);
    border-radius: 999px;
    font-size: .9rem;
}
.mission {
    font-family: Georgia, serif;
    font-size: 1.2rem;
    margin-top: 1.5rem;
    line-height: 1.5;
}

/* ---------- 12. Section image ---------- */
.section-image {
    padding: clamp(5rem, 10vw, 8rem) 0;
    text-align: center;
    position: relative;
    overflow: hidden;
    isolation: isolate;
}
.section-image-bg {
    position: absolute;
    inset: 0;
    z-index: -1;
}
.section-image-bg img {
    width: 100%; height: 100%;
    object-fit: cover;
    object-position: center;
}
.section-image-bg .overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(160deg, rgba(10,20,40,.92), rgba(11,27,52,.86));
}
.big-word {
    font-family: Georgia, serif;
    font-size: clamp(3rem, 8vw, 5.5rem);
    color: var(--or);
    letter-spacing: .1em;
    margin: 2rem 0;
    text-shadow: 0 4px 30px rgba(201,169,97,.25);
}

/* ---------- 13. Pricing détaillé ---------- */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(310px, 1fr));
    gap: 1.6rem;
    margin: 2rem 0 4rem;
}
.pricing-card {
    background: var(--blanc);
    border: 1px solid var(--gris);
    border-radius: var(--radius-lg);
    padding: 2.2rem;
    box-shadow: var(--ombre-sm);
    display: flex;
    flex-direction: column;
    position: relative;
    transition: transform .3s ease, box-shadow .3s ease;
}
.pricing-card:hover { transform: translateY(-4px); box-shadow: var(--ombre-md); }
.pricing-card-featured {
    background: linear-gradient(160deg, #0B1B34 0%, #12244A 100%);
    color: var(--ivoire);
    border-color: var(--or);
    box-shadow: var(--ombre-lg);
    transform: scale(1.02);
}
.pricing-card-featured:hover { transform: scale(1.02) translateY(-4px); }
.pricing-card-featured h3, .pricing-card-featured .p-tag { color: var(--ivoire); }
.pricing-card-featured .p-sub { color: rgba(247,245,239,.7); }
.pricing-card-featured .p-features li { color: rgba(247,245,239,.9); border-color: rgba(201,169,97,.2); }

.p-ribbon {
    position: absolute;
    top: -14px; left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, var(--or), var(--or-2));
    color: var(--nuit);
    padding: .35rem 1.2rem;
    border-radius: 999px;
    font-size: .78rem;
    font-weight: 700;
    letter-spacing: .06em;
    text-transform: uppercase;
    white-space: nowrap;
    box-shadow: var(--ombre-sm);
}
.p-tag {
    font-size: .82rem;
    text-transform: uppercase;
    letter-spacing: .2em;
    color: var(--or-fonce);
    margin: 0 0 .6rem;
    font-weight: 700;
}
.pricing-card h3 { font-size: 1.35rem; margin-bottom: .4rem; }
.p-sub { color: var(--gris-txt); font-style: italic; margin-bottom: 1.4rem; }

.p-features {
    list-style: none;
    padding: 0;
    margin: 0 0 1.8rem;
    flex-grow: 1;
}
.p-features li {
    padding: .65rem 0 .65rem 1.8rem;
    border-bottom: 1px solid var(--gris);
    position: relative;
    font-size: .95rem;
}
.p-features li::before {
    content: "✔";
    position: absolute;
    left: 0;
    color: var(--or);
    font-weight: 700;
}
.p-price {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: .3rem;
    margin: 0 0 1.4rem;
    padding: 1.2rem 0;
    border-top: 1px solid var(--gris);
    border-bottom: 1px solid var(--gris);
}
.pricing-card-featured .p-price { border-color: rgba(201,169,97,.2); }
.p-price .price-new { font-size: 2.6rem; line-height: 1; }
.p-scarcity {
    margin-top: 1rem;
    text-align: center;
    font-size: .88rem;
    color: rgba(247,245,239,.75);
}

/* ---------- 14. Comparatif ---------- */
.comparatif-wrapper { margin-top: 3rem; }
.comparatif-title {
    text-align: center;
    margin-bottom: 1.6rem;
    font-size: 1.4rem;
}
.table-scroll {
    overflow-x: auto;
    border-radius: var(--radius-lg);
    box-shadow: var(--ombre-sm);
    border: 1px solid var(--gris);
}
.comparatif {
    width: 100%;
    border-collapse: collapse;
    background: var(--blanc);
    min-width: 480px;
}
.comparatif th, .comparatif td {
    padding: 1rem 1.2rem;
    text-align: left;
    border-bottom: 1px solid var(--gris);
    font-size: .95rem;
}
.comparatif thead th {
    background: linear-gradient(160deg, var(--nuit), var(--nuit-2));
    color: var(--ivoire);
    font-weight: 600;
    text-align: center;
    padding: 1.1rem;
    font-family: Georgia, serif;
}
.comparatif thead th:first-child { text-align: left; background: var(--nuit); }
.comparatif tbody th { font-weight: 500; color: var(--anthra); }
.comparatif tbody td { text-align: center; color: var(--or); font-weight: 700; font-size: 1.1rem; }
.comparatif tbody td.dash { color: #C7C7C7; }
.comparatif tbody tr:nth-child(even) { background: rgba(247,245,239,.55); }
.comparatif tbody tr:hover { background: rgba(201,169,97,.06); }
.comparatif-note {
    margin-top: 1.6rem;
    text-align: center;
    color: var(--gris-txt);
    font-size: .95rem;
    max-width: 780px;
    margin-left: auto;
    margin-right: auto;
}

/* ---------- 15. Bonus ---------- */
.bonus-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1.4rem;
    margin-top: 2.5rem;
}
.bonus {
    background: var(--blanc);
    border: 1px solid var(--gris);
    border-radius: var(--radius-lg);
    padding: 1.8rem;
    box-shadow: var(--ombre-sm);
    position: relative;
    overflow: hidden;
    transition: transform .3s ease, box-shadow .3s ease;
}
.bonus:hover { transform: translateY(-3px); box-shadow: var(--ombre-md); }
.bonus::after {
    content: "";
    position: absolute;
    top: -40px; right: -40px;
    width: 120px; height: 120px;
    background: radial-gradient(circle, rgba(201,169,97,.15), transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}
.bonus-wide { grid-column: 1 / -1; }
.bonus-tag {
    font-family: Georgia, serif;
    font-size: .85rem;
    text-transform: uppercase;
    letter-spacing: .2em;
    color: var(--or-fonce);
    margin: 0 0 .8rem;
    font-weight: 700;
}
.bonus h3 { margin-bottom: .6rem; font-size: 1.15rem; }
.bonus p { color: var(--gris-txt); font-size: .95rem; margin-bottom: .8rem; }
.bonus-inc {
    display: inline-block;
    padding: .3rem .8rem;
    background: rgba(201,169,97,.12);
    color: var(--or-fonce);
    border-radius: 999px;
    font-size: .8rem;
    font-weight: 600;
    letter-spacing: .04em;
    margin-top: .4rem !important;
}

/* ---------- 16. Témoignages ---------- */
.video-wrapper {
    max-width: 900px;
    margin: 0 auto 3rem;
}
.video-wrapper iframe {
    display: block;
    width: 100%;
    aspect-ratio: 16 / 9;
    border: 0;
    border-radius: var(--radius-lg);
}
.video-card {
    display: block;
    background: var(--blanc);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--ombre-md);
    border: 1px solid var(--gris);
    transition: transform .3s ease, box-shadow .3s ease;
}
.video-card:hover { transform: translateY(-3px); box-shadow: var(--ombre-lg); color: var(--nuit); }
.video-thumb {
    position: relative;
    aspect-ratio: 16 / 9;
    overflow: hidden;
    background: var(--nuit);
}
.video-thumb img { width: 100%; height: 100%; object-fit: cover; opacity: .82; transition: opacity .3s ease, transform .5s ease; }
.video-card:hover .video-thumb img { opacity: .95; transform: scale(1.03); }
.play-btn {
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    filter: drop-shadow(0 4px 12px rgba(0,0,0,.4));
    transition: transform .3s ease;
}
.video-card:hover .play-btn { transform: translate(-50%, -50%) scale(1.08); }
.video-info { padding: 1.2rem 1.5rem; }
.video-title { margin: 0 0 .3rem; font-weight: 600; color: var(--nuit); }
.video-link { margin: 0; font-size: .9rem; color: var(--or-fonce); }

.temoignages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1.4rem;
}
.temoignage {
    background: var(--blanc);
    border: 1px dashed rgba(11,27,52,.2);
    border-radius: var(--radius-lg);
    padding: 1.8rem;
    box-shadow: var(--ombre-sm);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
}
.temoignage.placeholder { background: repeating-linear-gradient(135deg, #FAFAF7 0 12px, #F4F1E9 12px 24px); }
.temoignage-avatar {
    width: 56px; height: 56px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--nuit), var(--nuit-2));
    color: var(--or);
    display: grid;
    place-items: center;
    font-family: Georgia, serif;
    font-size: 1.4rem;
    font-weight: 700;
    box-shadow: inset 0 0 0 1px rgba(201,169,97,.4);
}
.temoignage blockquote {
    margin: 0;
    font-style: italic;
    color: var(--gris-txt);
    font-size: .95rem;
    line-height: 1.6;
}
.temoignage blockquote p { margin: 0; }
.temoignage footer {
    font-size: .88rem;
    color: var(--nuit);
    font-weight: 600;
    font-style: normal;
    margin-top: auto;
}
.temoignage cite { font-style: normal; }

/* ---------- 17. Promesse ---------- */
.promise-card {
    margin-top: 2.5rem;
    padding: clamp(1.8rem, 3.5vw, 2.6rem);
    background: linear-gradient(160deg, var(--ivoire), #EFEBDF);
    border-radius: var(--radius-lg);
    border-left: 4px solid var(--or);
    box-shadow: var(--ombre-sm);
}
.promise-card h3 { margin-bottom: 1rem; }
.promise-final {
    font-family: Georgia, serif;
    font-size: 1.25rem;
    font-style: italic;
    text-align: center;
    margin-top: 1.4rem !important;
    padding-top: 1.4rem;
    border-top: 1px solid rgba(201,169,97,.3);
}

/* ---------- 18. FAQ ---------- */
.faq-list { margin-top: 2.5rem; }
.faq-item {
    border: 1px solid var(--gris);
    border-radius: var(--radius);
    margin-bottom: .8rem;
    background: var(--blanc);
    box-shadow: var(--ombre-sm);
    overflow: hidden;
    transition: box-shadow .25s ease, border-color .25s ease;
}
.faq-item:hover { border-color: rgba(201,169,97,.4); }
.faq-item[open] { border-color: var(--or); box-shadow: var(--ombre-md); }
.faq-item summary {
    padding: 1.2rem 3rem 1.2rem 1.3rem;
    cursor: pointer;
    font-weight: 600;
    color: var(--nuit);
    position: relative;
    list-style: none;
    font-size: 1rem;
    transition: background .25s ease;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
    content: "+";
    position: absolute;
    right: 1.3rem;
    top: 50%;
    transform: translateY(-50%);
    width: 28px; height: 28px;
    border-radius: 50%;
    background: var(--nuit);
    color: var(--or);
    display: grid;
    place-items: center;
    font-size: 1.4rem;
    font-weight: 400;
    line-height: 1;
    transition: transform .3s ease, background .3s ease;
}
.faq-item[open] summary::after {
    content: "−";
    background: var(--or);
    color: var(--nuit);
    transform: translateY(-50%) rotate(180deg);
}
.faq-item summary:hover { background: rgba(201,169,97,.05); }
.faq-item summary:focus-visible {
    outline: none;
    background: rgba(201,169,97,.08);
}
.faq-answer {
    padding: 0 1.3rem 1.3rem;
    color: var(--gris-txt);
    animation: fadeIn .3s ease;
}
.faq-answer p { margin: 0; }
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }

/* ---------- 19. CTA final ---------- */
.section-final {
    background:
        radial-gradient(circle at 80% 20%, rgba(201,169,97,.15), transparent 50%),
        linear-gradient(160deg, #0A1428 0%, #0B1B34 50%, #12244A 100%);
    color: var(--ivoire);
    padding: clamp(4rem, 8vw, 7rem) 0;
    position: relative;
    overflow: hidden;
}
.final-list {
    list-style: none;
    padding: 0;
    margin: 2rem 0;
    max-width: 480px;
    margin-left: auto;
    margin-right: auto;
}
.final-list li {
    padding: .7rem 0;
    color: var(--ivoire);
    font-size: 1.05rem;
    border-bottom: 1px solid rgba(201,169,97,.15);
}
.final-list li:last-child { border-bottom: 0; }
.final-cta-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1rem;
    margin: 2.5rem 0 1.5rem;
}
.last-word {
    margin-top: 4rem;
    padding-top: 3rem;
    border-top: 1px solid rgba(201,169,97,.2);
    text-align: center;
}
.last-word .pullquote {
    background: transparent;
    border: 0;
    padding: 1rem 0;
    text-align: center;
    font-size: 1.5rem;
}

/* ---------- 20. Footer ---------- */
.site-footer {
    background: #05101F;
    color: rgba(247,245,239,.7);
    padding: 4rem 0 0;
}
.footer-inner {
    display: grid;
    grid-template-columns: 1.6fr repeat(3, 1fr);
    gap: 2.5rem;
    padding-bottom: 3rem;
}
.footer-brand .brand-name-lg {
    font-family: Georgia, serif;
    font-size: 1.5rem;
    color: var(--or);
    margin: 0 0 .6rem;
}
.footer-brand .tagline { color: rgba(247,245,239,.6); font-size: .95rem; max-width: 320px; }
.footer-col-title {
    color: var(--ivoire);
    font-size: .85rem;
    text-transform: uppercase;
    letter-spacing: .18em;
    margin: 0 0 1rem;
    font-weight: 600;
}
.site-footer ul {
    list-style: none;
    padding: 0;
    margin: 0;
}
.site-footer li { margin-bottom: .6rem; font-size: .93rem; }
.site-footer a { color: rgba(247,245,239,.7); }
.site-footer a:hover { color: var(--or); }
.footer-bottom {
    border-top: 1px solid rgba(255,255,255,.08);
    padding: 1.3rem 0;
    text-align: center;
    font-size: .85rem;
    color: rgba(247,245,239,.5);
}
.footer-bottom p { margin: 0; }

/* ---------- 21. Back to top ---------- */
.back-to-top {
    position: fixed;
    bottom: 24px;
    right: 24px;
    width: 46px; height: 46px;
    background: var(--nuit);
    color: var(--or);
    border-radius: 50%;
    display: grid;
    place-items: center;
    font-size: 1.3rem;
    font-weight: 700;
    box-shadow: var(--ombre-md);
    border: 1px solid rgba(201,169,97,.35);
    opacity: 0;
    visibility: hidden;
    transform: translateY(12px);
    transition: opacity .3s ease, transform .3s ease, background .25s ease, color .25s ease, visibility .3s;
    z-index: 90;
}
.back-to-top.visible { opacity: 1; visibility: visible; transform: none; }
.back-to-top:hover { background: var(--or); color: var(--nuit); }

/* ---------- 22. Responsive ---------- */
@media (max-width: 960px) {
    .footer-inner { grid-template-columns: 1fr 1fr; }
    .pricing-card-featured { transform: none; }
    .pricing-card-featured:hover { transform: translateY(-4px); }
}

@media (max-width: 780px) {
    .nav-toggle { display: block; }
    .primary-nav {
        position: fixed;
        top: 72px;
        left: 0; right: 0;
        background: var(--blanc);
        border-bottom: 1px solid var(--gris);
        max-height: 0;
        overflow: hidden;
        transition: max-height .35s ease;
        box-shadow: var(--ombre-md);
    }
    .primary-nav.open { max-height: 500px; }
    .primary-nav ul {
        flex-direction: column;
        gap: 0;
        padding: 1rem 0;
    }
    .primary-nav li { width: 100%; text-align: center; }
    .primary-nav a {
        display: block;
        padding: .85rem var(--pad);
    }
    .primary-nav a::after { display: none; }
    .nav-cta {
        margin: .8rem var(--pad) 0;
        display: inline-block !important;
    }

    .hero-cta { flex-direction: column; align-items: stretch; }
    .hero-cta .btn { width: 100%; }

    .footer-inner { grid-template-columns: 1fr; gap: 2rem; }

    .pullquote { font-size: 1.15rem; }
    .quote-block { font-size: 1.15rem; }
}

@media (max-width: 480px) {
    body { font-size: 16px; }
    .btn { padding: .85rem 1.4rem; font-size: .95rem; }
    .btn-lg { padding: 1rem 1.6rem; }
    .brand-name { display: none; }
    .back-to-top { bottom: 16px; right: 16px; width: 42px; height: 42px; }
    .price-new { font-size: 1.9rem; }
    .p-price .price-new { font-size: 2.2rem; }
}

/* ---------- 23. Print & accessibilité ---------- */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: .01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: .01ms !important;
        scroll-behavior: auto !important;
    }
}

@media print {
    .site-header, .back-to-top, .hero-cta, .nav-toggle, .primary-nav { display: none !important; }
    body { color: #000; background: #fff; }
    .section, .hero { padding: 1rem 0; }
    a { color: #000; text-decoration: underline; }
}


/* =========================================================
   PAGE TÉLÉCHARGEMENT — styles additionnels
   ========================================================= */

/* ---------- Hero centré (page merci) ---------- */
.hero-inner-centered {
    max-width: 680px;
    text-align: center;
    margin: 0 auto;
}

.hero-merci {
    padding: clamp(4rem, 8vw, 6rem) 0 clamp(3rem, 6vw, 5rem);
}

.merci-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: rgba(201,169,97,.08);
    border: 1px solid rgba(201,169,97,.3);
    margin: 0 auto 1.8rem;
    animation: badgeIn .6s cubic-bezier(.34,1.56,.64,1) both;
}

@keyframes badgeIn {
    from { opacity: 0; transform: scale(.6); }
    to   { opacity: 1; transform: scale(1); }
}

/* ---------- Section téléchargement ---------- */
.telechargement-section {
    padding-top: clamp(3rem, 6vw, 5rem);
    padding-bottom: clamp(3rem, 6vw, 5rem);
}

/* ---------- Carte de téléchargement ---------- */
.dl-card {
    background: var(--blanc);
    border: 1px solid rgba(201,169,97,.35);
    border-radius: var(--radius-lg);
    padding: clamp(2rem, 4vw, 3rem);
    box-shadow: var(--ombre-md);
    margin-bottom: 2.5rem;
}

.dl-card-header {
    display: flex;
    align-items: flex-start;
    gap: 1.2rem;
    margin-bottom: 2rem;
}

.dl-icon {
    flex-shrink: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background: rgba(201,169,97,.08);
    border: 1px solid rgba(201,169,97,.3);
    border-radius: var(--radius);
    margin-top: .2rem;
}

.dl-card-header h2 {
    font-size: clamp(1.25rem, 2.2vw, 1.6rem);
    margin-bottom: .4rem;
    text-align: left;
}

.dl-subtitle {
    color: var(--gris-txt);
    margin: 0;
    font-size: .97rem;
}

.dl-action {
    text-align: center;
    padding-top: 1.6rem;
    border-top: 1px solid var(--gris);
}

.dl-btn {
    display: inline-flex;
    align-items: center;
    gap: .65rem;
    font-size: 1.1rem;
    padding: 1.1rem 2.4rem;
}

.dl-note {
    margin: 1rem 0 0;
    color: var(--gris-txt);
    font-size: .85rem;
}

/* ---------- Prochaines étapes ---------- */
.next-steps {
    background: var(--ivoire);
    border-radius: var(--radius-lg);
    padding: clamp(1.8rem, 3.5vw, 2.6rem);
    margin-bottom: 2rem;
    border: 1px solid rgba(201,169,97,.2);
}

.next-steps h3 {
    font-size: 1.15rem;
    margin-bottom: 1.4rem;
    color: var(--nuit);
}

.steps-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 1.4rem;
}

.steps-list li {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.step-num {
    flex-shrink: 0;
    display: inline-grid;
    place-items: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--nuit), var(--nuit-2));
    color: var(--or);
    font-family: Georgia, serif;
    font-weight: 700;
    font-size: 1rem;
    box-shadow: inset 0 0 0 1px rgba(201,169,97,.3);
    margin-top: .15rem;
}

.steps-list li > div { flex: 1; }
.steps-list strong { display: block; color: var(--nuit); margin-bottom: .3rem; font-size: 1rem; }
.steps-list p { margin: 0; color: var(--gris-txt); font-size: .93rem; }

/* ---------- Carte contact ---------- */
.contact-card {
    text-align: center;
    padding: clamp(2rem, 4vw, 2.8rem);
    border: 1px dashed rgba(11,27,52,.18);
    border-radius: var(--radius-lg);
    background: var(--blanc);
}

.contact-eyebrow {
    text-transform: uppercase;
    letter-spacing: .24em;
    font-size: .75rem;
    color: var(--or-fonce);
    font-weight: 600;
    margin-bottom: .6rem;
}

.contact-text {
    color: var(--gris-txt);
    margin-bottom: 1.6rem;
    font-size: .97rem;
    max-width: 480px;
    margin-left: auto;
    margin-right: auto;
}

.contact-btn {
    display: inline-flex;
    align-items: center;
    gap: .6rem;
}

/* ---------- Section encouragement ---------- */
.encourage-section {
    padding: clamp(3rem, 6vw, 5rem) 0;
}

/* ---------- Responsive téléchargement ---------- */
@media (max-width: 560px) {
    .dl-card-header {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    .dl-card-header h2 { text-align: center; }
    .dl-icon { margin: 0 auto; }
    .steps-list li { flex-direction: column; gap: .6rem; }
    .step-num { margin: 0; }
}

/* ---------- Page coaching : carte info mail ---------- */
.coaching-details {
    padding-top: 1.4rem;
    border-top: 1px solid var(--gris);
    color: var(--gris-txt);
    font-size: .97rem;
}
.coaching-details p:last-child { margin-bottom: 0; }
.coaching-info-card { margin-bottom: 2rem; }
