/* ============================================================
   lereplay — site de présentation
   charte graphique cohérente avec l'application
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@300;400;500;600;700&display=swap');

:root {
    --primary:      #2e3d55;
    --primary-dark: #0d1758;
    --primary-mid:  #1e2d45;
    --accent:       #00acc1;
    --accent-hover: #00838f;
    --white:        #ffffff;
    --gray-50:      #f8f9fa;
    --gray-100:     #f1f3f5;
    --gray-200:     #e9ecef;
    --gray-400:     #ced4da;
    --gray-600:     #6c757d;
    --gray-700:     #495057;
    --gray-800:     #343a40;
    --gray-900:     #212529;
    --success:      #00c853;
    --radius:       10px;
    --radius-lg:    18px;
    --radius-xl:    28px;
    --shadow-sm:    0 2px 6px rgba(0,0,0,.06);
    --shadow-md:    0 6px 20px rgba(0,0,0,.10);
    --shadow-lg:    0 12px 40px rgba(0,0,0,.15);
}

*, *::before, *::after { margin:0; padding:0; box-sizing:border-box; }

html { scroll-behavior: smooth; }

body {
    font-family: 'Roboto', -apple-system, BlinkMacSystemFont, 'Segoe UI', Arial, sans-serif;
    font-size: 16px;
    line-height: 1.65;
    color: var(--gray-800);
    background: var(--white);
    -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; }
a   { color: var(--primary); text-decoration: none; }

.container {
    max-width: 1160px;
    margin: 0 auto;
    padding: 0 24px;
}

/* -------------------------------------------------------
   NAVBAR
   ------------------------------------------------------- */
.navbar {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 1000;
    background: var(--white);
    border-bottom: 1px solid var(--gray-200);
    transition: box-shadow .3s;
}
.navbar.scrolled {
    box-shadow: var(--shadow-md);
}
.nav-inner {
    max-width: 1160px;
    margin: 0 auto;
    padding: 16px 24px;
    display: flex;
    align-items: center;
    gap: 32px;
}
.nav-brand {
    display: flex;
    flex-direction: column;
    gap: 1px;
}
.nav-logo img { display: block; height: 62px; width: auto; }
.nav-tagline {
    font-size: 1rem;
    color: var(--accent);
    font-weight: 700;
    white-space: nowrap;
}
.nav-links {
    display: flex;
    gap: 8px;
    margin-left: auto;
}
.nav-links a {
    color: var(--gray-700);
    font-size: .9rem;
    font-weight: 500;
    padding: 6px 10px;
    border-radius: 6px;
    transition: all .2s;
    white-space: nowrap;
}
.nav-links a:hover { color: var(--gray-900); background: var(--gray-100); }

.btn-nav {
    background: var(--accent);
    color: #fff !important;
    padding: 8px 22px;
    border-radius: 8px;
    font-size: .9rem;
    font-weight: 600;
    transition: background .2s, transform .2s;
    white-space: nowrap;
}
.btn-nav:hover { background: var(--accent-hover); transform: translateY(-1px); }

.nav-burger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
    margin-left: auto;
}
.nav-burger span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--gray-800);
    border-radius: 2px;
    transition: all .3s;
}
.nav-burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-burger.open span:nth-child(2) { opacity: 0; }
.nav-burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.nav-mobile {
    display: none;
    flex-direction: column;
    padding: 12px 24px 20px;
    background: var(--white);
    border-top: 1px solid var(--gray-200);
}
.nav-mobile.open { display: flex; }
.nav-mobile a {
    color: var(--gray-700);
    font-size: 1rem;
    padding: 10px 0;
    border-bottom: 1px solid var(--gray-200);
}
.btn-nav-mobile {
    margin-top: 14px;
    background: var(--accent);
    color: #fff !important;
    text-align: center;
    padding: 12px;
    border-radius: 8px;
    font-weight: 600;
}

/* -------------------------------------------------------
   HERO
   ------------------------------------------------------- */
.hero {
    background: linear-gradient(150deg, #edf2f7 0%, #ffffff 70%);
    display: flex;
    align-items: center;
    padding: 178px 24px 64px;
    gap: 48px;
    overflow: hidden;
    position: relative;
}

.hero::before {
    content: '';
    position: absolute;
    width: 700px; height: 700px;
    background: radial-gradient(circle, rgba(0,172,193,.07) 0%, transparent 70%);
    top: -100px; right: -100px;
    pointer-events: none;
}

.hero-inner {
    flex: 1;
    max-width: 580px;
    margin: 0 auto;
    color: var(--gray-900);
}

.hero-badge {
    display: inline-block;
    background: rgba(0,172,193,.2);
    color: var(--accent);
    border: 1px solid rgba(0,172,193,.4);
    padding: 5px 14px;
    border-radius: 20px;
    font-size: .8rem;
    font-weight: 600;
    letter-spacing: .08em;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.hero h1 {
    font-size: clamp(2.2rem, 5vw, 3.2rem);
    font-weight: 700;
    line-height: 1.15;
    margin-bottom: 22px;
    color: var(--gray-900);
    background: none;
    -webkit-text-fill-color: unset;
}
.hero h1 .accent { color: var(--accent); }

.hero-sub {
    font-size: 1.05rem;
    color: var(--gray-600);
    line-height: 1.7;
    margin-bottom: 20px;
}
.hero-feature-highlight {
    color: var(--accent);
    font-size: 1.1rem;
    margin-bottom: 10px;
}

/* ======= diaporama hero ======= */
.hero-slideshow {
    width: 100%;
    aspect-ratio: 16 / 9;
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: 0 24px 80px rgba(0,0,0,.45);
    background: #0d1b2a;
}

.ss-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 0.45s ease;
}
.ss-slide.active {
    opacity: 1;
}

/* slides texte (accroche) */
.ss-text {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #0d1b2a 0%, #0f2a3f 100%);
    gap: 6px;
}
.ss-label {
    font-size: .95rem;
    color: rgba(255,255,255,.55);
    text-transform: uppercase;
    letter-spacing: .1em;
    font-weight: 500;
}
.ss-title {
    font-size: 2rem;
    font-weight: 700;
    color: var(--accent);
    text-align: center;
    padding: 0 20px;
}

/* slides image */
.ss-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
}


.hero-cta {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    margin-bottom: 0;
}

.btn-primary {
    background: var(--accent);
    color: #fff;
    padding: 14px 30px;
    border-radius: var(--radius);
    font-size: 1rem;
    font-weight: 600;
    transition: background .2s, transform .2s, box-shadow .2s;
    box-shadow: 0 4px 16px rgba(0,172,193,.35);
}
.btn-primary:hover {
    background: var(--accent-hover);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0,172,193,.45);
    color: #fff;
}

.btn-ghost {
    color: var(--primary);
    border: 1.5px solid var(--gray-300);
    padding: 14px 28px;
    border-radius: var(--radius);
    font-size: 1rem;
    font-weight: 500;
    transition: all .2s;
}
.btn-ghost:hover {
    background: var(--gray-100);
    border-color: var(--primary);
    color: var(--primary);
}

.hero-stats {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 20px 24px;
    background: var(--white);
    border-radius: var(--radius);
    border: 1px solid var(--gray-200);
    box-shadow: var(--shadow-sm);
    flex-wrap: wrap;
}
.stat { text-align: center; }
.stat-val {
    display: block;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary);
    line-height: 1;
    margin-bottom: 4px;
}
.stat-label {
    font-size: .78rem;
    color: var(--gray-600);
    text-transform: uppercase;
    letter-spacing: .04em;
}
.stat-sep {
    width: 1px;
    height: 36px;
    background: var(--gray-200);
}

/* Diaporama */
.hero-visual {
    flex: 1.5;
    max-width: 720px;
    margin: 0 auto;
}
.mockup-window {
    background: #1e2d3d;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: 0 24px 80px rgba(0,0,0,.5);
    border: 1px solid rgba(255,255,255,.08);
}
.mockup-bar {
    background: #2a3a4d;
    padding: 12px 16px;
    display: flex;
    align-items: center;
    gap: 8px;
}
.dot {
    width: 12px; height: 12px;
    border-radius: 50%;
}
.dot.red    { background: #ff5f57; }
.dot.yellow { background: #febc2e; }
.dot.green  { background: #28c840; }
.mockup-url {
    margin-left: 16px;
    background: rgba(255,255,255,.07);
    padding: 4px 16px;
    border-radius: 6px;
    font-size: .8rem;
    color: rgba(255,255,255,.5);
    flex: 1;
    text-align: center;
}
.mockup-content {
    display: flex;
    height: 300px;
}
.mockup-sidebar {
    width: 180px;
    border-right: 1px solid rgba(255,255,255,.07);
    padding: 12px;
    display: flex;
    flex-direction: column;
    gap: 4px;
    flex-shrink: 0;
}
.mockup-chapter {
    display: flex;
    flex-direction: column;
    padding: 8px 10px;
    border-radius: 6px;
    cursor: pointer;
    transition: background .2s;
}
.mockup-chapter.active { background: rgba(0,172,193,.2); }
.mockup-chapter:not(.active):hover { background: rgba(255,255,255,.05); }
.chap-time {
    font-size: .72rem;
    color: var(--accent);
    font-weight: 600;
    margin-bottom: 2px;
}
.chap-title {
    font-size: .78rem;
    color: rgba(255,255,255,.75);
    line-height: 1.3;
}
.mockup-player {
    flex: 1;
    padding: 12px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.mockup-video {
    flex: 1;
    background: linear-gradient(135deg, #0d1c2e, #1a3050);
    border-radius: 6px;
}
.mockup-controls {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 6px 0;
}
.ctrl-play {
    color: var(--accent);
    font-size: 1rem;
    cursor: pointer;
}
.ctrl-bar {
    flex: 1;
    height: 4px;
    background: rgba(255,255,255,.15);
    border-radius: 2px;
    overflow: hidden;
}
.ctrl-progress {
    width: 35%;
    height: 100%;
    background: var(--accent);
    border-radius: 2px;
}
.ctrl-time {
    font-size: .75rem;
    color: rgba(255,255,255,.5);
    font-variant-numeric: tabular-nums;
}
.mockup-search {
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(255,255,255,.06);
    padding: 8px 12px;
    border-radius: 6px;
    border: 1px solid rgba(255,255,255,.08);
}
.search-icon { font-size: .85rem; }
.search-text { font-size: .78rem; color: rgba(255,255,255,.35); }

/* -------------------------------------------------------
   SECTIONS COMMUNES
   ------------------------------------------------------- */
.section-label {
    display: inline-block;
    background: rgba(0,172,193,.1);
    color: var(--accent);
    border: 1px solid rgba(0,172,193,.25);
    padding: 4px 14px;
    border-radius: 20px;
    font-size: .78rem;
    font-weight: 600;
    letter-spacing: .08em;
    text-transform: uppercase;
    margin-bottom: 16px;
}

section h2 {
    font-size: clamp(1.7rem, 3.5vw, 2.4rem);
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 12px;
    line-height: 1.2;
}

.section-sub {
    font-size: 1.05rem;
    color: var(--gray-600);
    max-width: 600px;
    margin-bottom: 52px;
    line-height: 1.6;
}

/* -------------------------------------------------------
   ÉTAPES
   ------------------------------------------------------- */
.steps-section {
    padding: 96px 0;
    background: var(--gray-50);
}

.steps {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    flex-wrap: wrap;
}

.step {
    flex: 1;
    min-width: 220px;
    text-align: center;
    padding: 32px 24px;
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--gray-200);
    position: relative;
    transition: transform .3s, box-shadow .3s;
}
.step:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.step-number {
    position: absolute;
    top: -16px;
    left: 50%;
    transform: translateX(-50%);
    width: 32px; height: 32px;
    background: var(--accent);
    color: #fff;
    font-size: .85rem;
    font-weight: 700;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(0,172,193,.35);
}

.step-icon {
    width: 64px; height: 64px;
    background: linear-gradient(135deg, rgba(46,61,85,.08), rgba(0,172,193,.12));
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: var(--primary);
}
.step-icon svg { width: 28px; height: 28px; }

.step h3 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--gray-900);
    margin-bottom: 10px;
}
.step p {
    font-size: .9rem;
    color: var(--gray-600);
    line-height: 1.6;
    margin: 0;
}

.step-arrow {
    font-size: 1.8rem;
    color: var(--gray-400);
    padding-top: 60px;
    flex-shrink: 0;
}

/* -------------------------------------------------------
   FONCTIONNALITÉS
   ------------------------------------------------------- */
.features-section {
    padding: 96px 0;
    background: var(--white);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 24px;
}

.feature-card {
    padding: 32px;
    background: var(--gray-50);
    border-radius: var(--radius-lg);
    border: 1px solid var(--gray-200);
    transition: transform .3s, box-shadow .3s, border-color .3s;
}
.feature-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: rgba(0,172,193,.3);
}

.feature-icon {
    width: 52px; height: 52px;
    background: linear-gradient(135deg, rgba(46,61,85,.07), rgba(0,172,193,.12));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    color: var(--primary);
}
.feature-icon svg { width: 24px; height: 24px; }

.feature-card h4 {
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--gray-900);
    margin-bottom: 10px;
}
.feature-card p {
    font-size: .9rem;
    color: var(--gray-600);
    line-height: 1.6;
    margin: 0;
}

/* -------------------------------------------------------
   POUR QUI
   ------------------------------------------------------- */
.audience-section {
    padding: 96px 0;
    background: var(--gray-50);
}

.audience-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 28px;
}

.audience-card {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-xl);
    padding: 40px 36px;
    transition: transform .3s, box-shadow .3s;
}
.audience-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.audience-icon {
    width: 60px; height: 60px;
    background: rgba(0,172,193,.1);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    color: var(--accent);
}
.audience-icon svg { width: 28px; height: 28px; }

.audience-card h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--gray-900);
    margin-bottom: 20px;
}

.audience-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.audience-list li {
    display: grid;
    grid-template-columns: auto 1fr;
    align-items: flex-start;
    gap: 10px;
    font-size: .92rem;
    color: var(--gray-700);
    line-height: 1.5;
}
.check {
    color: var(--accent);
    font-weight: 700;
    flex-shrink: 0;
    margin-top: 1px;
}

/* -------------------------------------------------------
   À PROPOS — STORYTELLING
   ------------------------------------------------------- */
.story-section {
    padding: 96px 0;
    background: var(--white);
}
.story-grid {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 72px;
    align-items: start;
}
.story-left {
    display: flex;
    flex-direction: column;
    gap: 36px;
}
.story-photo-wrap {
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--gray-200);
}
.story-photo-wrap img {
    width: 100%;
    display: block;
    height: auto;
}
.story-timeline {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
}
.story-milestone {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 10px 0;
}
.story-year {
    font-size: .85rem;
    font-weight: 700;
    color: var(--gray-400);
    width: 38px;
    flex-shrink: 0;
    text-align: right;
}
.story-role {
    font-size: .88rem;
    color: var(--gray-700);
    font-weight: 500;
}
.story-milestone.highlight .story-year {
    color: var(--accent);
}
.story-milestone.highlight .story-role {
    color: var(--accent);
    font-weight: 700;
    font-size: .95rem;
}
.story-connector {
    width: 2px;
    height: 18px;
    background: var(--gray-200);
    margin-left: 36px;
}
.story-text {
    display: flex;
    flex-direction: column;
    gap: 18px;
    padding-top: 8px;
}
.story-text p {
    font-size: 1rem;
    color: var(--gray-700);
    line-height: 1.75;
    margin: 0;
}
.story-text strong { color: var(--gray-900); }
.story-text em { color: var(--gray-600); }
.story-quote {
    margin: 10px 0 0;
    padding: 20px 28px;
    border-left: 4px solid var(--accent);
    background: rgba(0,172,193,.06);
    border-radius: 0 var(--radius-lg) var(--radius-lg) 0;
    font-size: 1.05rem;
    font-style: italic;
    font-weight: 500;
    color: var(--primary);
    line-height: 1.6;
}

/* -------------------------------------------------------
   TARIFS
   ------------------------------------------------------- */
.pricing-section {
    padding: 96px 0;
    background: var(--gray-50);
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 24px;
    margin-bottom: 28px;
}

.pricing-card {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-xl);
    padding: 36px 28px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    position: relative;
    transition: transform .3s, box-shadow .3s;
}
.pricing-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}
.pricing-card.featured {
    border-color: var(--accent);
    box-shadow: 0 0 0 3px rgba(0,172,193,.12), var(--shadow-md);
}

.pricing-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--accent);
    color: #fff;
    font-size: .75rem;
    font-weight: 700;
    padding: 4px 16px;
    border-radius: 20px;
    white-space: nowrap;
    text-transform: uppercase;
    letter-spacing: .05em;
}

.pricing-name {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--primary);
}
.pricing-desc {
    font-size: .88rem;
    color: var(--gray-600);
    line-height: 1.5;
    margin-bottom: 12px;
}

.pricing-features {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 8px;
    flex: 1;
    margin-bottom: 24px;
}
.pricing-features li {
    font-size: .88rem;
    color: var(--gray-700);
    padding-left: 20px;
    position: relative;
    line-height: 1.4;
}
.pricing-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--accent);
    font-weight: 700;
}

.btn-pricing {
    display: block;
    text-align: center;
    padding: 12px;
    border-radius: var(--radius);
    font-size: .9rem;
    font-weight: 600;
    border: 1.5px solid var(--primary);
    color: var(--primary);
    transition: all .2s;
}
.btn-pricing:hover {
    background: var(--primary);
    color: #fff;
}
.btn-pricing.featured {
    background: var(--accent);
    border-color: var(--accent);
    color: #fff;
}
.btn-pricing.featured:hover {
    background: var(--accent-hover);
    border-color: var(--accent-hover);
    color: #fff;
}

.lien-abonnement-direct {
    display: block;
    text-align: center;
    margin-top: 10px;
    padding: 10px 20px;
    background: transparent;
    color: var(--accent);
    border: 2px solid var(--accent);
    border-radius: 6px;
    font-size: 0.88rem;
    font-weight: 600;
    text-decoration: none;
    transition: background 0.2s, color 0.2s;
}
.lien-abonnement-direct:hover {
    background: var(--accent);
    color: white;
}

/* Toggle mensuel / annuel */
.billing-toggle {
    display: flex;
    align-items: center;
    gap: 12px;
    justify-content: center;
    margin: 24px 0 36px;
    font-size: 0.9rem;
}
.toggle-label { color: #aaa; font-weight: 400; }
.toggle-label.active { color: #2e3d55; font-weight: 600; }
.toggle-switch {
    position: relative;
    width: 48px;
    height: 26px;
    cursor: pointer;
}
.toggle-switch input { opacity: 0; width: 0; height: 0; }
.toggle-slider {
    position: absolute;
    inset: 0;
    background: #ccc;
    border-radius: 26px;
    transition: .3s;
}
.toggle-slider:before {
    content: '';
    position: absolute;
    width: 20px;
    height: 20px;
    left: 3px;
    bottom: 3px;
    background: white;
    border-radius: 50%;
    transition: .3s;
}
.toggle-switch input:checked + .toggle-slider { background: var(--accent); }
.toggle-switch input:checked + .toggle-slider:before { transform: translateX(22px); }
.badge-annuel {
    background: #e0f7fa;
    color: #00838f;
    font-size: 0.75rem;
    font-weight: 600;
    padding: 3px 8px;
    border-radius: 12px;
}

.pricing-group {
    margin-bottom: 48px;
}
.pricing-group:last-child {
    margin-bottom: 0;
}
.pricing-group-title {
    font-size: 1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .08em;
    color: var(--gray-500);
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 1px solid var(--gray-200);
}

.pricing-price {
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--primary);
    line-height: 1;
    margin: 8px 0 2px;
}
.pricing-unit {
    font-size: 1rem;
    font-weight: 400;
    color: var(--gray-500);
}
.pricing-duration {
    font-size: .82rem;
    color: var(--gray-500);
    margin-bottom: 12px;
}

.pricing-note {
    text-align: center;
    font-size: .9rem;
    color: var(--gray-600);
    margin-top: 8px;
}
.pricing-note a { color: var(--accent); }

/* -------------------------------------------------------
   TÉLÉCHARGEMENT
   ------------------------------------------------------- */
.download-section {
    background: var(--gray-100);
    border-top: 1px solid var(--gray-200);
    border-bottom: 1px solid var(--gray-200);
    padding: 72px 0;
}
.download-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 48px;
    flex-wrap: wrap;
}
.download-text h2 {
    color: var(--gray-900);
    font-size: 1.9rem;
    margin-bottom: 12px;
}
.download-text p {
    color: var(--gray-600);
    max-width: 520px;
    font-size: .95rem;
    margin-bottom: 8px;
}
.download-compat {
    font-size: .95rem;
    color: var(--gray-600);
}
.btn-download {
    display: flex;
    align-items: center;
    gap: 12px;
    background: var(--accent);
    color: #fff;
    padding: 18px 32px;
    border-radius: var(--radius-lg);
    font-size: 1rem;
    font-weight: 600;
    transition: background .2s, transform .2s, box-shadow .2s;
    box-shadow: 0 8px 24px rgba(0,172,193,.4);
    white-space: nowrap;
    flex-shrink: 0;
}
.btn-download:hover {
    background: var(--accent-hover);
    transform: translateY(-2px);
    box-shadow: 0 12px 32px rgba(0,172,193,.5);
    color: #fff;
}

/* -------------------------------------------------------
   CONTACT
   ------------------------------------------------------- */
.contact-section {
    padding: 96px 0;
    background: var(--white);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 56px;
    align-items: start;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 28px;
}
.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
}
.contact-item-icon {
    width: 44px; height: 44px;
    background: rgba(0,172,193,.1);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent);
    flex-shrink: 0;
}
.contact-item-icon svg { width: 20px; height: 20px; }
.contact-item strong {
    display: block;
    font-size: .82rem;
    text-transform: uppercase;
    letter-spacing: .06em;
    color: var(--gray-600);
    margin-bottom: 2px;
}
.contact-item span {
    color: var(--gray-800);
    font-size: .95rem;
}

.contact-form {
    background: var(--gray-50);
    padding: 40px;
    border-radius: var(--radius-xl);
    border: 1px solid var(--gray-200);
}
.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}
.form-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
    margin-bottom: 18px;
}
.form-group label {
    font-size: .85rem;
    font-weight: 500;
    color: var(--gray-700);
    text-transform: lowercase;
}
.form-group input,
.form-group select,
.form-group textarea {
    padding: 11px 14px;
    border: 1.5px solid var(--gray-300);
    border-radius: var(--radius);
    font-size: .95rem;
    font-family: inherit;
    background: var(--white);
    color: var(--gray-800);
    transition: border-color .2s, box-shadow .2s;
    resize: vertical;
    width: 100%;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent);
    box-shadow: 0 0 0 3px rgba(0,172,193,.12);
}
.btn-submit {
    width: 100%;
    padding: 14px;
    background: var(--accent);
    color: #fff;
    border: none;
    border-radius: var(--radius);
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background .2s, transform .2s;
    font-family: inherit;
}
.btn-submit:hover {
    background: var(--accent-hover);
    transform: translateY(-1px);
}

/* -------------------------------------------------------
   FOOTER
   ------------------------------------------------------- */
.footer {
    background: var(--gray-100);
    border-top: 1px solid var(--gray-200);
    color: var(--gray-700);
    padding: 64px 0 28px;
}
.footer-inner {
    display: flex;
    justify-content: space-between;
    gap: 48px;
    flex-wrap: wrap;
    margin-bottom: 48px;
}
.footer-brand img {
    display: block;
    height: 32px;
    width: auto;
    margin-bottom: 14px;
}
.footer-brand p {
    font-size: .88rem;
    color: var(--gray-600);
    max-width: 260px;
    line-height: 1.6;
    margin: 0;
}
.footer-links {
    display: flex;
    gap: 56px;
    flex-wrap: wrap;
}
.footer-col {
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.footer-col strong {
    color: var(--gray-900);
    font-size: .85rem;
    text-transform: uppercase;
    letter-spacing: .08em;
    margin-bottom: 4px;
}
.footer-col a {
    color: var(--gray-600);
    font-size: .88rem;
    transition: color .2s;
}
.footer-col a:hover { color: var(--gray-900); }
.footer-bottom {
    border-top: 1px solid var(--gray-200);
    padding-top: 24px;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 8px;
    font-size: .82rem;
    color: var(--gray-500, #adb5bd);
}

/* -------------------------------------------------------
   HERO TAGLINE
   ------------------------------------------------------- */
.hero-subtitle {
    font-size: clamp(1.3rem, 2.5vw, 1.7rem);
    font-weight: 300;
    color: var(--gray-500, #6b7280);
    margin-top: -4px;
    margin-bottom: 28px;
    font-style: italic;
    letter-spacing: .02em;
}
.hero-tagline {
    font-size: 1.15rem;
    font-weight: 500;
    color: var(--gray-700);
    margin-bottom: 24px;
    line-height: 1.6;
}
.accent-txt {
    color: var(--accent);
    font-weight: 700;
}

/* -------------------------------------------------------
   AVANTAGES CLÉS
   ------------------------------------------------------- */
.avantages-section {
    padding: 64px 0 52px;
    background: var(--gray-50);
    border-bottom: 1px solid var(--gray-200);
}
.avantages-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 40px;
}
.avantage-card {
    padding: 36px 28px 32px;
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-top: 4px solid var(--accent);
    border-radius: var(--radius-lg);
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: transform .3s, box-shadow .3s;
}
.avantage-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}
.avantage-icon {
    width: 64px; height: 64px;
    background: rgba(0,172,193,.12);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 18px;
    color: var(--accent);
}
.avantage-icon svg { width: 32px; height: 32px; }
.avantage-card h3 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--gray-900);
    line-height: 1.3;
    margin-bottom: 10px;
}
.avantage-card p {
    font-size: .9rem;
    color: var(--gray-600);
    line-height: 1.6;
    margin: 0;
}
/* bandeau sous les 6 cartes */
.avantages-footer {
    text-align: center;
}
.avantages-qualiopi {
    display: inline-block;
    background: var(--accent);
    color: #fff;
    font-size: 1.2rem;
    font-weight: 700;
    padding: 14px 44px;
    border-radius: 40px;
    margin-bottom: 18px;
    box-shadow: 0 6px 24px rgba(0,172,193,.4);
    letter-spacing: .01em;
}
.avantages-differenciez {
    font-size: .95rem;
    color: var(--gray-600);
    max-width: 620px;
    margin: 0 auto;
    line-height: 1.65;
}

/* -------------------------------------------------------
   AUDIENCE — COMMUN
   ------------------------------------------------------- */
.audience-common {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-xl);
    padding: 36px 40px;
    margin-bottom: 40px;
}
.audience-common-title {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 20px;
}
.audience-list-common {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.audience-list-common li {
    display: grid;
    grid-template-columns: auto 1fr;
    align-items: flex-start;
    gap: 10px;
    font-size: .92rem;
    color: var(--gray-700);
    line-height: 1.5;
}
.audience-specific-title {
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--gray-700);
    margin-bottom: 24px;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: .06em;
}

/* -------------------------------------------------------
   INSCRIPTION
   ------------------------------------------------------- */
.btn-nav-register {
    border: 1.5px solid var(--primary);
    color: var(--primary) !important;
    padding: 7px 18px;
    border-radius: 8px;
    font-size: .9rem;
    font-weight: 600;
    transition: all .2s;
    white-space: nowrap;
    margin-right: 4px;
}
.btn-nav-register:hover {
    background: var(--primary);
    color: #fff !important;
}
.inscription-section {
    padding: 96px 0;
    background: var(--gray-50);
    border-top: 1px solid var(--gray-200);
}
.inscription-grid {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 56px;
    align-items: start;
}
.inscription-info {
    display: flex;
    flex-direction: column;
    gap: 24px;
}
.inscription-info h3 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--gray-900);
    margin-bottom: 4px;
}
.inscription-steps {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 16px;
}
.inscription-step {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    font-size: .9rem;
    color: var(--gray-700);
    line-height: 1.5;
}
.inscription-step-num {
    width: 28px; height: 28px;
    background: var(--accent);
    color: #fff;
    font-size: .8rem;
    font-weight: 700;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.inscription-note {
    background: rgba(0,172,193,.07);
    border: 1px solid rgba(0,172,193,.2);
    border-radius: var(--radius);
    padding: 16px 20px;
    font-size: .88rem;
    color: var(--gray-700);
    line-height: 1.6;
}
.inscription-form {
    background: var(--white);
    padding: 40px;
    border-radius: var(--radius-xl);
    border: 1px solid var(--gray-200);
}
.field-conditional { display: none; }

/* -------------------------------------------------------
   RESPONSIVE
   ------------------------------------------------------- */
@media (max-width: 900px) {
    .story-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .story-left {
        flex-direction: row;
        align-items: flex-start;
        gap: 28px;
    }
    .story-photo-wrap { width: 120px; flex-shrink: 0; }

    .hero {
        flex-direction: column;
        padding-top: 192px;
        text-align: center;
    }
    .hero-inner { max-width: 100%; }
    .hero-cta { justify-content: center; }
    .hero-stats { justify-content: center; }
    .hero-visual { width: 100%; }

    .avantages-grid { grid-template-columns: repeat(2, 1fr); }

    .step-arrow { display: none; }
    .steps { flex-direction: column; align-items: stretch; }
    .step { min-width: unset; }

    .contact-grid { grid-template-columns: 1fr; }
    .form-row { grid-template-columns: 1fr; }

    .download-inner { flex-direction: column; align-items: flex-start; }

    .nav-links, .btn-nav, .btn-nav-register { display: none; }
    .nav-burger { display: flex; }
    .nav-tagline { font-size: .78rem; }
}

@media (max-width: 600px) {
    .pricing-grid { grid-template-columns: 1fr; }
    .audience-grid { grid-template-columns: 1fr; }
    .features-grid { grid-template-columns: 1fr; }
    .avantages-grid { grid-template-columns: 1fr; }
    .avantages-qualiopi { font-size: 1rem; padding: 12px 24px; }
    .contact-form { padding: 24px 20px; }
    .footer-links { gap: 32px; }
    .mockup-sidebar { display: none; }
    .inscription-grid { grid-template-columns: 1fr; }
    .inscription-form { padding: 24px 20px; }
    .audience-common { padding: 24px 20px; }
    .audience-list-common { grid-template-columns: 1fr; }
}
