
/* ─── Base ─── */
.landing[data-v-27945d97] {
    min-height: 100vh;
    background: #f5f5fe;
    font-family: 'Marianne', system-ui, -apple-system, sans-serif;
    color: #1e1e1e;
}

/* ─── Header ─── */
.landing-header[data-v-27945d97] {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(255,255,255,0.92);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid #e5e5e5;
}
.header-inner[data-v-27945d97] {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 20px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}
.header-brand[data-v-27945d97] {
    display: flex;
    align-items: center;
    gap: 10px;
    min-width: 0;
}
.brand-name[data-v-27945d97] {
    font-size: 15px;
    font-weight: 700;
    color: #000091;
    white-space: nowrap;
}
.header-nav[data-v-27945d97] {
    display: flex;
    gap: 8px;
    flex-shrink: 0;
}

/* ─── Boutons ─── */
.btn-primary[data-v-27945d97] {
    display: inline-block;
    padding: 8px 18px;
    background: #000091;
    color: white;
    font-weight: 600;
    font-size: 14px;
    border-radius: 4px;
    text-decoration: none;
    transition: background 0.15s;
}
.btn-primary[data-v-27945d97]:hover { background: #1212ff; color: white;
}
.btn-ghost[data-v-27945d97] {
    display: inline-block;
    padding: 8px 16px;
    background: transparent;
    color: #000091;
    font-weight: 600;
    font-size: 14px;
    border-radius: 4px;
    text-decoration: none;
    border: 1px solid #cacafb;
}
.btn-ghost[data-v-27945d97]:hover { background: #f5f5fe;
}
.btn-sm[data-v-27945d97] { font-size: 13px; padding: 6px 14px;
}
.btn-white[data-v-27945d97] {
    display: inline-block;
    padding: 13px 28px;
    background: white;
    color: #000091;
    font-weight: 700;
    font-size: 15px;
    border-radius: 6px;
    text-decoration: none;
    box-shadow: 0 2px 12px rgba(0,0,0,0.15);
    transition: transform 0.15s, box-shadow 0.15s;
}
.btn-white[data-v-27945d97]:hover { transform: translateY(-1px); box-shadow: 0 4px 20px rgba(0,0,0,0.2);
}
.btn-outline-white[data-v-27945d97] {
    display: inline-block;
    padding: 13px 28px;
    background: transparent;
    color: white;
    font-weight: 600;
    font-size: 15px;
    border-radius: 6px;
    text-decoration: none;
    border: 2px solid rgba(255,255,255,0.45);
    transition: border-color 0.15s, background 0.15s;
}
.btn-outline-white[data-v-27945d97]:hover { border-color: white; background: rgba(255,255,255,0.1);
}

/* ─── Hero ─── */
.hero[data-v-27945d97] {
    position: relative;
    background: linear-gradient(145deg, #06047a 0%, #000091 50%, #1a0d8f 100%);
    color: white;
    padding: 72px 20px 80px;
    overflow: hidden;
}
.hero-bg-grid[data-v-27945d97] {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255,255,255,0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.04) 1px, transparent 1px);
    background-size: 40px 40px;
    pointer-events: none;
}
.hero-inner[data-v-27945d97] {
    position: relative;
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
}
.hero-badge[data-v-27945d97] {
    display: inline-block;
    margin-bottom: 24px;
    padding: 5px 14px;
    background: rgba(255,255,255,0.12);
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 100px;
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.03em;
    color: rgba(255,255,255,0.85) !important;
}
.hero-title[data-v-27945d97] {
    font-size: clamp(28px, 5.5vw, 48px);
    font-weight: 800;
    line-height: 1.15;
    margin: 0 0 20px;
    letter-spacing: -0.02em;
    color: white !important;
}
.hero-title-accent[data-v-27945d97] {
    background: linear-gradient(90deg, #a8d8ff, #c3b1e1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.hero-sub[data-v-27945d97] {
    font-size: 17px;
    line-height: 1.65;
    color: rgba(255,255,255,0.8) !important;
    margin: 0 0 36px;
    max-width: 520px;
    margin-left: auto;
    margin-right: auto;
}
.hero-ctas[data-v-27945d97] {
    display: flex;
    gap: 12px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 48px;
}
.hero-stats[data-v-27945d97] {
    display: inline-flex;
    align-items: center;
    gap: 0;
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: 100px;
    padding: 10px 20px;
    flex-wrap: wrap;
    justify-content: center;
    gap: 4px;
}
.stat-pill[data-v-27945d97] {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    color: rgba(255,255,255,0.85) !important;
    padding: 0 10px;
}
.stat-icon[data-v-27945d97] { font-size: 16px;
}
.stat-sep[data-v-27945d97] {
    width: 1px;
    height: 18px;
    background: rgba(255,255,255,0.2);
}

/* ─── Sections communes ─── */
.section-inner[data-v-27945d97] {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 20px;
}
.section-label[data-v-27945d97] {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #000091;
    margin-bottom: 10px;
}
.section-title[data-v-27945d97] {
    font-size: clamp(22px, 3.5vw, 32px);
    font-weight: 800;
    line-height: 1.2;
    margin: 0 0 40px;
    letter-spacing: -0.01em;
    color: #1e1e1e;
}

/* ─── Features ─── */
.section-features[data-v-27945d97] {
    background: white;
    padding: 72px 20px;
}
.features-grid[data-v-27945d97] {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    grid-template-rows: auto auto;
    gap: 16px;
}
.feature-card--large[data-v-27945d97] {
    grid-column: span 1;
}
.feature-card[data-v-27945d97] {
    background: #f9f9ff;
    border: 1px solid #e8e8f0;
    border-radius: 12px;
    padding: 24px 22px;
    transition: box-shadow 0.2s, transform 0.2s;
}
.feature-card[data-v-27945d97]:hover {
    box-shadow: 0 8px 24px rgba(0,0,145,0.08);
    transform: translateY(-2px);
}
.feature-icon-wrap[data-v-27945d97] {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 14px;
}
.feature-card h3[data-v-27945d97] {
    font-size: 15px;
    font-weight: 700;
    margin: 0 0 8px;
    color: #1e1e1e;
}
.feature-card p[data-v-27945d97] {
    font-size: 13px;
    color: #666;
    margin: 0;
    line-height: 1.65;
}

/* ─── Steps ─── */
.section-steps[data-v-27945d97] {
    background: #f5f5fe;
    padding: 72px 20px;
}
.steps[data-v-27945d97] {
    display: flex;
    align-items: flex-start;
    gap: 0;
}
.step[data-v-27945d97] {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 16px;
}
.step-num[data-v-27945d97] {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: #000091;
    color: white;
    font-weight: 800;
    font-size: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 4px 12px rgba(0,0,145,0.25);
}
.step-body h3[data-v-27945d97] {
    font-size: 15px;
    font-weight: 700;
    margin: 0 0 6px;
    color: #1e1e1e;
}
.step-body p[data-v-27945d97] {
    font-size: 13px;
    color: #666;
    margin: 0;
    line-height: 1.65;
    max-width: 200px;
    margin-left: auto;
    margin-right: auto;
}
.step-arrow[data-v-27945d97] {
    flex-shrink: 0;
    font-size: 22px;
    color: #cacafb;
    margin-top: 12px;
    padding: 0 8px;
}

/* ─── CTA final ─── */
.section-cta[data-v-27945d97] {
    padding: 72px 20px;
    background: white;
}
.cta-card[data-v-27945d97] {
    max-width: 600px;
    margin: 0 auto;
    background: linear-gradient(135deg, #000091, #1212cc);
    border-radius: 20px;
    padding: 56px 40px;
    text-align: center;
    color: white;
    box-shadow: 0 20px 60px rgba(0,0,145,0.2);
}
.cta-card h2[data-v-27945d97] {
    font-size: clamp(22px, 3.5vw, 30px);
    font-weight: 800;
    margin: 0 0 10px;
    letter-spacing: -0.02em;
    color: white !important;
}
.cta-card p[data-v-27945d97] {
    font-size: 14px;
    color: rgba(255,255,255,0.75) !important;
    margin: 0 0 32px;
}

/* ─── Footer ─── */
.landing-footer[data-v-27945d97] {
    background: #f0f0fb;
    border-top: 1px solid #e5e5e5;
    padding: 20px;
    text-align: center;
}
.landing-footer p[data-v-27945d97] {
    margin: 0;
    font-size: 12px;
    color: #999;
}

/* ─── Responsive ─── */
@media (max-width: 700px) {
.features-grid[data-v-27945d97] {
        grid-template-columns: 1fr 1fr;
}
.feature-card--large[data-v-27945d97] {
        grid-column: span 1;
}
.steps[data-v-27945d97] {
        flex-direction: column;
        align-items: stretch;
        gap: 8px;
}
.step[data-v-27945d97] {
        flex-direction: row;
        text-align: left;
        gap: 16px;
}
.step-body p[data-v-27945d97] { max-width: none; margin: 0;
}
.step-arrow[data-v-27945d97] { display: none;
}
.cta-card[data-v-27945d97] { padding: 40px 24px; border-radius: 14px;
}
}
@media (max-width: 480px) {
.features-grid[data-v-27945d97] {
        grid-template-columns: 1fr;
}
.hero-stats[data-v-27945d97] {
        flex-direction: column;
        border-radius: 16px;
        gap: 8px;
}
.stat-sep[data-v-27945d97] { display: none;
}
}
