    :root {
        --blue: #1f3f9a;
        /* bandeau */
        --blue2: #2348ad;
        /* boutons */
        --bg: #f5f8ff;
        /* fond */
        --card: #ffffff;
        --line: #e5e7eb;
        --text: #0f172a;
        --muted: #64748b;
        --shadow: 0 12px 30px rgba(15, 23, 42, .08);
        --radius: 14px;
        --max: 1120px;
        --chatRadius: 12px;

        /* ✅ Espacements globaux (faciles à ajuster) */
        --gapTimeline: 16px;
        --gapStep: 16px;
        --gapRow: 12px;
    }

    * {
        box-sizing: border-box
    }

    html,
    body {
        margin: 0;
        padding: 0;
        font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial
    }

    body {
        background: var(--bg);
        color: var(--text)
    }

    /* Top blue bar */
    .topbar {
        background: var(--blue);
        color: #fff;
        text-align: center;
        padding: 10px 12px;
        font-weight: 700;
        font-size: 12px;
        letter-spacing: .2px;
    }

    .topbar .region {
        font-weight: 900
    }

    .topbar .sub {
        font-weight: 700;
        opacity: .95
    }

    /* Header with logos */
    .header {
        background: #fff;
        border-bottom: 1px solid var(--line);
    }

    .header-inner {
        max-width: var(--max);
        margin: 0 auto;
        padding: 12px 16px;
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 12px;
    }

    .brand {
        display: flex;
        align-items: center;
        gap: 10px;
        min-width: 220px;
    }

    .brand img {
        width: 34px;
        height: 34px;
        object-fit: contain
    }

    .brand .t1 {
        font-weight: 900;
        color: #1f3f9a;
        line-height: 1
    }

    .brand .t2 {
        font-size: 11px;
        color: #94a3b8;
        font-weight: 700
    }

    .logos {
        display: flex;
        align-items: center;
        gap: 20px;
        flex-wrap: wrap;
        justify-content: flex-end;
    }

    .logos img {
        height: 35px;
        width: auto;
        object-fit: contain;
        opacity: .95
    }

    /* Page layout */
    .wrap {
        max-width: var(--max);
        margin: 0 auto;
        padding: 22px 16px 28px;
    }

    /* ✅ Timeline plus aérée */
    .timeline {
        display: flex;
        flex-direction: column;
        gap: var(--gapTimeline);
        align-items: center;
        padding-bottom: 24px;
    }

    /* ✅ Chaque step crée un gros espace (on respire + on scroll) */
    .step {
        width: 100%;
        display: none;
        margin-bottom: var(--gapStep);
    }

    .step.active {
        display: block
    }

    /* ✅ Chaque row un peu plus espacée */
    .row {
        width: 100%;
        display: grid;
        grid-template-columns: 80px minmax(260px, 520px) 60px;
        align-items: end;
        gap: 12px;
        justify-content: center;
        margin: var(--gapRow) 0;
    }

    /* small house icon at left */
    .house {
        display: flex;
        align-items: center;
        justify-content: center;
        height: 42px;
    }

    .house svg {
        width: 30px;
        height: 30px
    }

    .time {
        font-size: 11px;
        color: #111827;
        opacity: .7;
        padding-bottom: 6px;
        text-align: left;
        white-space: nowrap;
    }

    /* Bubbles */
    .bubble {
        background: var(--card);
        border: 1px solid var(--line);
        border-radius: var(--chatRadius);
        box-shadow: var(--shadow);
        padding: 14px 16px;
    }

    .bubble.slim {
        padding: 10px 14px
    }

    .bubble h3 {
        margin: 0 0 6px;
        font-size: 13px;
        font-weight: 900;
    }

    .bubble p {
        margin: 0;
        font-size: 12px;
        color: #111827;
        line-height: 1.45;
        font-weight: 650;
    }

    .bubble .muted {
        color: var(--muted);
        font-weight: 700
    }

    .bubble .list {
        margin: 10px 0 0;
        padding: 0;
        list-style: none;
        display: grid;
        gap: 6px;
        font-size: 12px;
        color: #111827;
        font-weight: 700;
    }

    .bubble .list li {
        display: flex;
        gap: 8px;
        align-items: flex-start;
    }

    .badge {
        width: 18px;
        height: 18px;
        border-radius: 99px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        background: #eef2ff;
        border: 1px solid #dbeafe;
        color: #1f3f9a;
        font-weight: 900;
        font-size: 12px;
        flex: 0 0 auto;
        margin-top: 1px;
    }

    /* Buttons */
    .btn {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        gap: 10px;
        border: 0;
        background: var(--blue2);
        color: #fff;
        font-weight: 900;
        padding: 14px 18px;
        border-radius: 999px;
        box-shadow: 0 10px 18px rgba(35, 72, 173, .22);
        cursor: pointer;
        width: 100%;
        max-width: 520px;
        text-decoration: none;
        user-select: none;
    }

    .btn.small {
        max-width: 420px;
        padding: 12px 16px;
        font-size: 13px;
    }

    .btn.secondary {
        background: #fff;
        color: #0f172a;
        border: 1px solid var(--line);
        box-shadow: none;
        font-weight: 900;
    }

    .btn:active {
        transform: translateY(1px)
    }

    .btn .arrow {
        font-weight: 900
    }

    .cta-row {
        display: flex;
        justify-content: center;
        width: 100%;
        margin-top: 12px;
        margin-bottom: 6px;
    }

    /* Form card */
    .form-card {
        width: 100%;
        max-width: 520px;
        background: #fff;
        border: 1px solid var(--line);
        border-radius: var(--radius);
        box-shadow: var(--shadow);
        padding: 16px;
    }

    .form-card .intro {
        font-size: 12px;
        color: #111827;
        font-weight: 700;
        margin: 0 0 12px;
    }

    label {
        display: block;
        font-weight: 900;
        font-size: 12px;
        color: #111827;
        margin: 16px 0 8px;
        /* ✅ un peu plus d’air */
    }

    .field {
        position: relative;
    }

    select,
    input {
        width: 100%;
        padding: 13px 40px 13px 12px;
        /* ✅ plus confortable */
        border: 1px solid #c7d2fe;
        border-radius: 8px;
        background: #fff;
        font-weight: 800;
        color: #111827;
        outline: none;
    }

    select {
        appearance: none;
        -webkit-appearance: none;
        -moz-appearance: none;
        cursor: pointer;
    }

    select:focus,
    input:focus {
        box-shadow: 0 0 0 4px rgba(99, 102, 241, .15)
    }

    .hint {
        margin: 8px 0 0;
        font-size: 11px;
        color: #64748b;
        font-weight: 700;
        line-height: 1.35;
    }

    .chev {
        position: absolute;
        right: 12px;
        top: 50%;
        width: 10px;
        height: 10px;
        border-right: 2px solid #94a3b8;
        border-bottom: 2px solid #94a3b8;
        transform: translateY(-60%) rotate(45deg);
        pointer-events: none;
        transition: transform 0.2s ease;
    }

    .chev.open {
        transform: translateY(-40%) rotate(-135deg);
    }

    .btn-block {
        margin-top: 16px;
        border-radius: 10px;
        max-width: none;
        padding: 13px 14px;
    }

    /* Progress */
    .progress {
        margin-top: 10px;
        background: #e5e7eb;
        border-radius: 999px;
        height: 10px;
        overflow: hidden;
    }

    .bar {
        height: 100%;
        width: 0%;
        background: linear-gradient(90deg, #22c55e, #16a34a);
        border-radius: 999px;
        transition: width .6s ease;
    }

    .status-line {
        margin-top: 8px;
        font-size: 12px;
        color: #111827;
        font-weight: 800;
    }

    .status-line .ok {
        color: #16a34a;
        font-weight: 950
    }

    .status-line .run {
        color: #0ea5e9;
        font-weight: 950
    }

    /* Grid 2 */
    .grid2 {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 12px;
        /* ✅ un peu plus */
    }

    .small-note {
        font-size: 10.5px;
        color: #64748b;
        font-weight: 700;
        line-height: 1.35;
        margin-top: 8px;
    }

    .user-mini {
        justify-self: end;
        max-width: 260px;
        background: #fff;
        border: 1px solid var(--line);
        border-radius: 10px;
        padding: 10px 12px;
        box-shadow: var(--shadow);
        font-size: 12px;
        font-weight: 900;
        color: #111827;
    }

    .user-mini .muted {
        color: #64748b;
        font-weight: 900
    }

    /* Document block */
    .doc-wrap {
        display: flex;
        justify-content: center;
        margin-top: 10px;
    }

    .doc {
        width: 220px;
        border-radius: 10px;
        border: 1px solid #e5e7eb;
        box-shadow: 0 10px 22px rgba(15, 23, 42, .08);
        background: #fff;
        overflow: hidden;
    }

    .doc img {
        width: 100%;
        height: auto;
        display: block
    }

    /* Responsive */
    @media (max-width: 860px) {
        .row {
            grid-template-columns: 52px 1fr 44px
        }

        .brand {
            min-width: 0
        }

        .logos img {
            height: 22px
        }

        .doc {
            width: 190px
        }
    }

    /* ✅ Mobile : plus lisible, plus “scroll-friendly” */
    @media (max-width: 520px) {
        .wrap {
            padding: 16px 12px 28px;
        }

        /* Layout plus simple */
        .row {
            grid-template-columns: 44px 1fr;
            gap: 10px;
            margin: 14px 0;
        }

        /* On évite l’encombrement à droite */
        .time {
            display: none;
            /* ✅ mobile: optionnel, mais ça aère énormément */
        }

        .grid2 {
            grid-template-columns: 1fr
        }

        .bubble,
        .form-card {
            padding: 14px
        }

        .btn {
            padding: 14px 16px
        }
    }