/* Alignement Pro' - feuille de style commune aux 5 pages */
:root {
    --violet-deep: #2D1B5E;
    --violet-med: #7B5EA7;
    --mint: #7ECBC4;
    --rose: #E879A0;
    --coral: #F0A070;
    --gold: #F0B95A;
    --lavender: #9B7BB8;
    --cream: #FEFBF2;
    --white: #FFFFFF;
    --text-dark: #1A1A2E;
    --text-mid: #4A4A6A;
    --text-light: #7A7A9A;
    --border: #E8E4F0;
    --font-display: Georgia, 'Times New Roman', serif;
    --font-body: -apple-system, BlinkMacSystemFont, 'Segoe UI', Helvetica, Arial, sans-serif;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; overflow-x: hidden; max-width: 100%; }
body {
    font-family: var(--font-body);
    background: var(--cream);
    color: var(--text-dark);
    line-height: 1.6;
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
    max-width: 100vw;
}

/* ── NAV ── */
nav {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 100;
    background: rgba(254,251,242,0.97);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border);
    padding: 0 5vw;
    height: 68px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 100vw;
    overflow: visible;
    box-sizing: border-box;
}
.nav-brand { text-decoration: none; display: flex; flex-direction: column; }
.brand-name {
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--violet-deep);
    letter-spacing: 0.04em;
}
.brand-tag {
    font-size: 0.65rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--mint);
    font-weight: 500;
}
.nav-links { display: flex; align-items: center; gap: 28px; list-style: none; }
.nav-links a {
    font-size: 0.82rem;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--text-mid);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s;
}
.nav-links a:hover { color: var(--violet-deep); }
.nav-cta {
    background: var(--violet-deep) !important;
    color: var(--white) !important;
    padding: 9px 20px;
    border-radius: 50px;
    font-size: 0.78rem !important;
}
.nav-cta:hover { background: var(--violet-med) !important; }
.nav-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.6rem;
    color: var(--violet-deep);
    cursor: pointer;
    padding: 4px 8px;
}

/* ── SECTIONS ── */
section { width: 100%; max-width: 100vw; scroll-margin-top: 68px; overflow-x: hidden; }
.section-inner { max-width: 1100px; margin: 0 auto; padding: 96px 5vw; box-sizing: border-box; }
.bg-white { background: var(--white); }
.bg-cream { background: var(--cream); }
.bg-dark { background: var(--violet-deep); color: var(--white); }

h1, h2, h3 { font-family: var(--font-display); color: var(--violet-deep); font-weight: 300; }
.bg-dark h2 { color: var(--white); }

/* ── HERO ── */
.hero { min-height: 100vh; padding-top: 68px; display: flex; align-items: center; }
.hero h1 { font-size: clamp(2rem, 4.5vw, 3.5rem); line-height: 1.2; margin-bottom: 24px; }
.hero-sub { font-size: 1.15rem; color: var(--text-mid); margin-bottom: 40px; max-width: 700px; }
.hero-grid { display: grid; grid-template-columns: 1fr 0.92fr; gap: 56px; align-items: center; }
.hero-copy { text-align: left; }
.hero-eyebrow { font-size: 0.95rem; font-family: var(--font-body); font-weight: 600;
    letter-spacing: 0.06em; text-transform: uppercase; color: var(--mint); margin-bottom: 18px; }
.hero-photo { position: relative; border-radius: 24px; overflow: hidden; aspect-ratio: 4 / 5;
    background: linear-gradient(140deg, var(--lavender) 0%, var(--mint) 100%);
    box-shadow: 0 24px 60px rgba(45,27,94,0.18); }
.hero-photo img { width: 100%; height: 100%; object-fit: cover; display: block; }
.contact-direct { margin-top: 14px; font-size: 0.9rem; color: var(--text-mid); line-height: 1.6; }
.contact-direct a { color: var(--violet-deep); text-decoration: none; border-bottom: 1px solid var(--mint); }
.preuve-bande { display: flex; flex-wrap: wrap; justify-content: center; gap: 12px 34px;
    margin: 44px auto 0; padding: 24px 28px; max-width: 900px; border-radius: 18px;
    background: rgba(255,255,255,0.6); border: 1px solid var(--border); text-align: center; }
.preuve-bande span { font-size: 0.95rem; color: var(--violet-deep); font-weight: 600; line-height: 1.4; }
.encart { max-width: 860px; margin: 0 auto; }
.encart p { color: var(--text-mid); margin-bottom: 16px; }
.encart strong { color: var(--violet-deep); }
.encart-note { font-size: 0.95rem; font-style: italic; color: var(--text-light); }
.bloc-finance { max-width: 860px; margin: 44px auto 0; padding: 30px 34px; border-radius: 18px;
    background: var(--white); border: 1px dashed var(--lavender); }
.bloc-finance h3 { font-size: 1.25rem; margin-bottom: 14px; }
.bloc-finance p { color: var(--text-mid); margin-bottom: 12px; }

/* ── BUTTONS ── */
.btn-group { display: flex; gap: 20px; align-items: center; flex-wrap: wrap; margin-bottom: 20px; }
.btn-primary {
    display: inline-flex; align-items: center; background: var(--violet-deep); color: var(--white);
    padding: 15px 32px; border-radius: 50px; font-size: 0.95rem; font-weight: 500;
    text-decoration: none; transition: all 0.25s; box-shadow: 0 4px 20px rgba(45,27,94,0.2);
}
.btn-primary:hover { background: var(--violet-med); transform: translateY(-1px); }
.btn-ghost {
    color: var(--violet-deep); font-size: 0.95rem; font-weight: 500; text-decoration: none;
    border-bottom: 1px solid var(--violet-deep); padding-bottom: 2px;
}
.btn-ghost:hover { color: var(--violet-med); border-color: var(--violet-med); }
.btn-info { font-size: 0.85rem; color: var(--text-light); }

/* ── HISTOIRE & VERBATIMS ── */
.story-text p { margin-bottom: 20px; font-size: 1.05rem; color: var(--text-mid); line-height: 1.8; }
.story-text strong { color: var(--violet-deep); font-weight: 500; }
.verbatim {
    font-family: var(--font-display); font-style: italic; font-size: 1.25rem;
    color: var(--violet-med); border-left: 3px solid var(--mint); padding-left: 20px; margin: 30px 0;
}

/* ── METHODE ── */
.method-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; margin-top: 40px; }
.method-card { padding: 30px; border-radius: 20px; border: 1px solid var(--border); }
.method-card h3 { font-size: 1.3rem; margin-bottom: 10px; font-weight: 600; }
.method-card.nommer { background: #D4F2EF; }
.method-card.explorer { background: #FADDCC; }
.method-card.oser { background: #E4D4F2; }
.method-card.securiser { background: #FCEBC4; }

/* ── OFFRES ── */
.offres-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 30px; margin-top: 40px; margin-bottom: 50px; }
.offre-card { background: var(--cream); border-radius: 20px; padding: 40px 30px; border: 1px solid var(--border); display: flex; flex-direction: column; justify-content: space-between; border-top: 4px solid var(--mint); }
.offre-card h3 { font-size: 1.6rem; font-weight: 600; margin-bottom: 5px; }
.offre-subtitle { font-style: italic; color: var(--violet-med); margin-bottom: 20px; font-size: 0.95rem; }
.offre-content h4 { font-family: var(--font-display); margin-bottom: 10px; color: var(--text-dark); }
.offre-content p { font-size: 0.95rem; color: var(--text-mid); margin-bottom: 20px; }
.offre-meta { margin-top: auto; padding-top: 20px; border-top: 1px solid var(--border); }
.offre-price { font-family: var(--font-display); font-size: 1.5rem; font-weight: 600; color: var(--violet-deep); margin-bottom: 15px; }
.offre-cta {
    display: inline-block; color: var(--violet-deep); font-weight: 500; text-decoration: none;
    border-bottom: 2px solid var(--mint); padding-bottom: 2px; font-size: 0.95rem;
}

/* ── FREEBIE ── */
.freebie-section { background: linear-gradient(135deg, #F1EBF8 0%, #EBF9F8 100%); }
.freebie-inner { max-width: 1100px; margin: 0 auto; padding: 80px 5vw; display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.freebie-badges { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 24px; }
.badge {
    display: inline-block; padding: 6px 16px; border-radius: 50px; font-size: 0.8rem; font-weight: 500;
}
.badge-mint { background: #D0F0EE; color: #2D7A75; }
.badge-lavender { background: #E8DEFF; color: #5B3EA6; }
.badge-gold { background: #FEF3D0; color: #8A6500; }
.freebie-title { font-family: var(--font-display); font-size: clamp(2rem, 3.5vw, 2.8rem); color: var(--violet-deep); line-height: 1.2; margin-bottom: 20px; font-weight: 300; }
.freebie-title em { color: var(--lavender); font-style: italic; }
.freebie-desc { font-size: 1.05rem; color: var(--text-mid); line-height: 1.8; margin-bottom: 30px; }
.freebie-cta-block { background: var(--white); border-radius: 20px; padding: 30px; border: 1px solid var(--border); }
.freebie-cta-label { font-size: 0.75rem; letter-spacing: 0.15em; text-transform: uppercase; color: var(--violet-med); margin-bottom: 12px; font-weight: 600; }
.freebie-cta-block p { font-size: 0.9rem; color: var(--text-mid); margin-bottom: 16px; }
.freebie-visual { display: flex; justify-content: center; align-items: center; }
.freebie-mockup {
    background: var(--white); border-radius: 24px; padding: 40px;
    box-shadow: 0 20px 60px rgba(45,27,94,0.12); max-width: 320px; width: 100%;
    text-align: center;
}
.freebie-mockup-title { font-family: var(--font-display); font-size: 1.5rem; color: var(--violet-deep); margin-bottom: 8px; }
.freebie-mockup-sub { font-size: 0.85rem; color: var(--text-light); margin-bottom: 20px; }
.freebie-mockup-dims { display: flex; flex-direction: column; gap: 8px; margin-bottom: 20px; }
.dim-bar { display: flex; justify-content: space-between; align-items: center; font-size: 0.8rem; color: var(--text-mid); }
.dim-bar-fill { height: 6px; border-radius: 3px; background: linear-gradient(90deg, var(--mint), var(--lavender)); flex: 1; margin: 0 10px; }

/* ── PARTENAIRES ── */
.partners-intro { font-size: 1.1rem; color: var(--text-mid); margin-bottom: 30px; }
.partners-list { margin: 15px 0 25px 0; padding-left: 0; color: var(--text-mid); list-style: none; }
.partners-list li { margin-bottom: 10px; padding-left: 0; }
.contact-info { margin-top: 30px; font-size: 1.1rem; font-weight: bold; color: var(--violet-deep); }
.contact-info a { color: var(--violet-deep); text-decoration: none; border-bottom: 2px solid var(--mint); }

/* ── FOOTER ── */
footer { background: #1A0F38; color: rgba(255,255,255,0.7); padding: 60px 5vw 40px; font-size: 0.9rem; }
.footer-grid { max-width: 1100px; margin: 0 auto; display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 40px; }
.footer-col h4 { color: var(--white); font-family: var(--font-body); font-weight: 600; margin-bottom: 20px; font-size: 1rem; text-transform: uppercase; letter-spacing: 0.05em; }
.footer-col p { line-height: 1.7; margin-bottom: 10px; }
.footer-col a { color: rgba(255,255,255,0.7); text-decoration: none; transition: color 0.2s; display: block; margin-bottom: 8px; }
.footer-col a:hover { color: var(--mint); }
/* -- BANDES DE RESPIRATION -- */
.bande-respiration { background: var(--violet-deep); color: var(--white); text-align: center; }
.respiration-liste { font-size: 1.12rem; line-height: 2.1; color: rgba(255,255,255,0.80);
    margin: 0 auto 34px; max-width: 46ch; text-wrap: balance; }
.respiration-chute { font-family: var(--font-display); font-style: italic;
    font-size: clamp(1.45rem, 2.9vw, 2rem); color: var(--white); line-height: 1.45;
    margin: 0 auto; max-width: 24ch; text-wrap: balance; }
.respiration-chute strong { color: var(--gold); font-weight: 400; white-space: nowrap; }
.bande-meteo { background: linear-gradient(135deg, #FEF6E8 0%, #EBF9F8 100%); text-align: center; }
.meteo-question { font-family: var(--font-display); font-size: clamp(1.4rem, 2.8vw, 1.95rem);
    color: var(--violet-deep); line-height: 1.45; margin: 0 auto 22px; max-width: 26ch; text-wrap: balance; }
.meteo-suite { font-size: 1.08rem; color: var(--text-mid); line-height: 1.9; margin-bottom: 18px; }
.meteo-chute { font-family: var(--font-display); font-style: italic; font-size: 1.2rem;
    color: var(--violet-med); margin: 0 auto; max-width: 34ch; text-wrap: balance; }
.bande-conviction { background: linear-gradient(135deg, #F1EBF8 0%, #FDEEE7 100%); text-align: center; }
.conviction-titre { font-family: var(--font-display); font-size: clamp(1.5rem, 3vw, 2.05rem);
    color: var(--violet-deep); line-height: 1.4; margin: 0 auto 14px; max-width: 24ch; text-wrap: balance; }
.conviction-suite { font-size: 1.08rem; color: var(--text-mid); margin: 0 auto; max-width: 40ch; text-wrap: balance; }
.relance-cta { font-family: var(--font-display); font-style: italic;
    font-size: clamp(1.2rem, 2.4vw, 1.55rem); color: var(--violet-deep);
    margin: 0 auto 22px; max-width: 26ch; text-wrap: balance; }
.footer-signature { font-family: var(--font-display); font-style: italic; text-wrap: balance;
    font-size: 1.35rem; color: var(--mint); margin-bottom: 22px; letter-spacing: 0.01em; }

.footer-bottom { max-width: 1100px; margin: 40px auto 0; padding-top: 20px; border-top: 1px solid rgba(255,255,255,0.1); font-size: 0.75rem; color: rgba(255,255,255,0.4); text-align: center; }

@media (max-width: 768px) {
    .btn-group { flex-direction: column; align-items: stretch; }
    .btn-primary { justify-content: center; }
    .btn-ghost { text-align: center; }
    .freebie-inner { grid-template-columns: 1fr; }
    .freebie-visual { display: none; }
    .hero-grid { grid-template-columns: 1fr; gap: 28px; }
    .hero-photo { max-width: 330px; margin: 0 auto; order: -1; }
    .hero-copy { text-align: center; }
    .method-grid { grid-template-columns: 1fr; }
    .hero h1 { font-size: 1.9rem; }
    .preuve-bande { flex-direction: column; gap: 14px; }
    .hero .section-inner { padding: 96px 6vw 48px; }
    .section-inner { padding: 64px 6vw; }
    img, svg { max-width: 100%; height: auto; }
    .nav-toggle { display: block; }
    .nav-links {
        display: none;
        position: absolute;
        top: 68px; left: 0; right: 0;
        background: var(--cream);
        flex-direction: column;
        align-items: flex-start;
        gap: 0;
        border-bottom: 1px solid var(--border);
        box-shadow: 0 8px 20px rgba(0,0,0,0.06);
    }
    .nav-links.open { display: flex; }
    .nav-links li { width: 100%; }
    .nav-links a { display: block; width: 100%; padding: 16px 5vw; box-sizing: border-box; }
    .nav-cta { margin: 8px 5vw 16px; width: calc(100% - 10vw); text-align: center; border-radius: 50px; }
    section { overflow-x: hidden; }
    body { overflow-x: hidden; }
}
