/* =============================================================================
   OneMoove — thème global
   Palette : navy profond + accent cyan (reprend l'identité du site vitrine).
   ============================================================================= */

:root {
    --om-navy: #0b2239;
    --om-navy-2: #123a63;
    --om-accent: #17c1e8;
    --om-accent-2: #2152ff;
    --om-gradient: linear-gradient(310deg, #2152ff 0%, #21d4fd 100%);
    --om-bg: #f4f6fb;
    --om-card-shadow: 0 .25rem 1rem rgba(11, 34, 57, .07);
    --om-radius: .75rem;
}

html, body {
    font-family: "Segoe UI", system-ui, -apple-system, 'Helvetica Neue', Arial, sans-serif;
    background-color: var(--om-bg);
}

h1, h2, h3, .h1, .h2, .h3 {
    color: var(--om-navy);
    font-weight: 600;
}

a, .btn-link {
    color: var(--om-accent-2);
}

/* --- Boutons ----------------------------------------------------------------- */
.btn-primary {
    color: #fff;
    background-image: var(--om-gradient);
    background-color: var(--om-accent-2);
    border: 0;
    box-shadow: 0 .125rem .375rem rgba(33, 82, 255, .35);
}

    .btn-primary:hover, .btn-primary:focus, .btn-primary:active {
        color: #fff;
        background-image: var(--om-gradient);
        background-color: var(--om-accent-2);
        filter: brightness(1.08);
    }

.btn-outline-primary {
    color: var(--om-accent-2);
    border-color: var(--om-accent-2);
}

    .btn-outline-primary:hover {
        background-color: var(--om-accent-2);
        border-color: var(--om-accent-2);
    }

.btn:focus, .btn:active:focus, .btn-link.nav-link:focus, .form-control:focus, .form-check-input:focus, .form-select:focus {
    box-shadow: 0 0 0 .2rem rgba(23, 193, 232, .3);
    border-color: var(--om-accent);
}

.form-check-input:checked {
    background-color: var(--om-accent-2);
    border-color: var(--om-accent-2);
}

/* --- Cartes / tableaux -------------------------------------------------------- */
.card {
    border: 0;
    border-radius: var(--om-radius);
    box-shadow: var(--om-card-shadow);
}

.card-header {
    background-color: transparent;
    border-bottom: 1px solid rgba(11, 34, 57, .08);
    color: var(--om-navy);
}

.table > thead {
    color: var(--om-navy);
}

    .table > thead th {
        font-size: .75rem;
        text-transform: uppercase;
        letter-spacing: .04em;
        color: #6c7a8c;
        border-bottom-width: 2px;
    }

.table-hover > tbody > tr:hover > * {
    background-color: rgba(23, 193, 232, .06);
}

.cursor-pointer {
    cursor: pointer;
}

/* --- Pagination ---------------------------------------------------------------- */
.page-link {
    color: var(--om-navy);
}

.page-item.active .page-link {
    background-color: var(--om-accent-2);
    border-color: var(--om-accent-2);
}

/* --- Badges métier -------------------------------------------------------------- */
.role-badge {
    font-weight: 500;
}

.role-badge.role-10 { background-color: var(--om-navy); color: #fff; }
.role-badge.role-20 { background-color: var(--om-accent-2); color: #fff; }
.role-badge.role-30 { background-color: #e9edf4; color: var(--om-navy); }

/* Plaque d'immatriculation */
.plate {
    display: inline-block;
    font-family: Consolas, "Courier New", monospace;
    font-weight: 700;
    letter-spacing: .08em;
    background: #fff;
    color: var(--om-navy);
    border: 2px solid var(--om-navy);
    border-left: .5rem solid var(--om-accent-2);
    border-radius: .375rem;
    padding: .05rem .5rem;
    font-size: .95rem;
    white-space: nowrap;
}

/* Cloche de notifications (header) */
.notif-bell { position: relative; }
.notif-dot { position: absolute; top: 2px; right: 2px; width: .5rem; height: .5rem; background: #dc3545; border-radius: 50%; }
.notif-overlay { position: fixed; inset: 0; z-index: 1040; }
.notif-panel {
    position: absolute; right: 0; top: calc(100% + .35rem); z-index: 1050;
    width: min(320px, 86vw); background: var(--bs-body-bg, #fff);
    border: 1px solid rgba(11,34,57,.15); border-radius: .5rem; overflow: hidden;
    max-height: 70vh; overflow-y: auto;
}
/* Mobile : position fixe sous le header pour ne pas être tronqué par un parent */
@media (max-width: 640.98px) {
    .notif-panel {
        position: fixed; top: 3.75rem; right: .5rem; left: .5rem; width: auto;
    }
}
.notif-panel-head { font-weight: 600; padding: .5rem .75rem; border-bottom: 1px solid rgba(11,34,57,.1); }
.notif-empty { padding: .75rem; color: #6c757d; font-size: .85rem; }
.notif-item { padding: .5rem .75rem; border-bottom: 1px solid rgba(11,34,57,.06); }
.notif-title { font-weight: 600; font-size: .85rem; }
.notif-body { font-size: .8rem; color: #6c757d; }
.notif-date { font-size: .7rem; color: #adb5bd; margin-top: .1rem; }
.notif-all { display: block; padding: .5rem .75rem; font-size: .8rem; text-decoration: none; }

/* Pastille du site courant dans le header */
.site-chip {
    display: inline-flex;
    align-items: center;
    gap: .4rem;
    font-weight: 600;
    color: var(--om-navy);
    background: rgba(23, 193, 232, .12);
    border: 1px solid rgba(23, 193, 232, .35);
    border-radius: 999px;
    padding: .15rem .7rem;
    max-width: 60vw;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}
.site-ico {
    width: 1rem;
    height: 1rem;
    flex-shrink: 0;
    background-color: currentColor;
    -webkit-mask: center / contain no-repeat url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath d='M4 16.5v-11h-.5A.5.5 0 0 1 3 5V4a.5.5 0 0 1 .5-.5h9A.5.5 0 0 1 13 4v1a.5.5 0 0 1-.5.5H12v11h1.5a.5.5 0 0 1 0 1h-11a.5.5 0 0 1 0-1zm2-10v1h1v-1zm2 0v1h1v-1zm2 0v1h1v-1zm-4 2v1h1v-1zm2 0v1h1v-1zm2 0v1h1v-1zm-4 2v1h1v-1zm2 0v1h1v-1zm2 0v1h1v-1zm-4 3.5v2h4v-2a.5.5 0 0 0-.5-.5h-3a.5.5 0 0 0-.5.5M6.5 2 8 .5 9.5 2z'/%3E%3C/svg%3E");
    mask: center / contain no-repeat url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath d='M4 16.5v-11h-.5A.5.5 0 0 1 3 5V4a.5.5 0 0 1 .5-.5h9A.5.5 0 0 1 13 4v1a.5.5 0 0 1-.5.5H12v11h1.5a.5.5 0 0 1 0 1h-11a.5.5 0 0 1 0-1zm2-10v1h1v-1zm2 0v1h1v-1zm2 0v1h1v-1zm-4 2v1h1v-1zm2 0v1h1v-1zm2 0v1h1v-1zm-4 2v1h1v-1zm2 0v1h1v-1zm2 0v1h1v-1zm-4 3.5v2h4v-2a.5.5 0 0 0-.5-.5h-3a.5.5 0 0 0-.5.5M6.5 2 8 .5 9.5 2z'/%3E%3C/svg%3E");
}
[data-bs-theme="dark"] .site-chip { color: #9fe6f5; }

/* Bandeau « se connecter en tant que » (MainLayout, session impersonée) */
.impersonation-banner {
    background: #b45309;
    color: #fff;
    font-size: .875rem;
}

/* Cartes du tableau de bord */
.dash-card {
    border: none;
    box-shadow: 0 .125rem .5rem rgba(11, 34, 57, .08);
    transition: transform .1s ease, box-shadow .1s ease;
}
a.dash-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 .375rem 1rem rgba(11, 34, 57, .15);
}
.dash-value {
    font-size: 2rem;
    font-weight: 700;
    color: var(--om-navy);
    line-height: 1;
}
.dash-label {
    color: #6c757d;
    font-size: .85rem;
    margin-top: .35rem;
}
.dash-warn .dash-value { color: #b45309; }
.dash-danger .dash-value { color: #b02a37; }

/* Logo sur les pages de compte */
.account-logo { max-width: 200px; height: auto; }

/* Couleur du mot IN/OUT selon l'accès (Activité) — contraste OK clair/sombre */
.status-auth { color: #198754; }
.status-reco { color: #c15803; }
.status-unknown { color: #dc3545; }

/* Plaque cliquable (Activité) : garde l'aspect plaque, pas de style lien */
.plate-btn {
    cursor: pointer;
    font-family: Consolas, "Courier New", monospace;
    transition: box-shadow .1s ease;
}
.plate-btn:hover {
    box-shadow: 0 0 0 2px rgba(23, 193, 232, .5);
}

/* ---- Mode sombre (Bootstrap 5.3 data-bs-theme + surcharges maison) ---- */
.theme-ico-dark { display: none; }
[data-bs-theme="dark"] .theme-ico-light { display: none; }
[data-bs-theme="dark"] .theme-ico-dark { display: inline; }

:root { --om-heat-empty: #eef2f6; }

[data-bs-theme="dark"] {
    --om-heat-empty: #2a2f38;
}
[data-bs-theme="dark"] body { background-color: #12161c; }
/* Textes navy → clairs en sombre (titres, en-têtes de carte, monitoring, tableaux, pagination) */
[data-bs-theme="dark"] h1, [data-bs-theme="dark"] h2, [data-bs-theme="dark"] h3,
[data-bs-theme="dark"] .h1, [data-bs-theme="dark"] .h2, [data-bs-theme="dark"] .h3,
[data-bs-theme="dark"] .card-header,
[data-bs-theme="dark"] .mon-value,
[data-bs-theme="dark"] .table > thead,
[data-bs-theme="dark"] .page-link { color: #e6e9ee; }
[data-bs-theme="dark"] .bg-light { background-color: #12161c !important; }
[data-bs-theme="dark"] .dash-value { color: #e6e9ee; }
[data-bs-theme="dark"] .donut-total { fill: #e6e9ee; }
[data-bs-theme="dark"] .donut-legend-val { color: #e6e9ee; }
[data-bs-theme="dark"] .donut circle[stroke="#eef2f6"] { stroke: #2a2f38; }
/* Surfaces à fond blanc codé en dur → sombre (sinon texte gris clair illisible) */
[data-bs-theme="dark"] .car-row { background: #1a1f27; }
[data-bs-theme="dark"] .mon-card.mon-ko { background: #2a1d22; }
/* Textes discrets (gris) éclaircis pour rester lisibles sur fond sombre */
[data-bs-theme="dark"] .dash-label,
[data-bs-theme="dark"] .notif-body,
[data-bs-theme="dark"] .notif-empty,
[data-bs-theme="dark"] .notif-date,
[data-bs-theme="dark"] .heat-row-label,
[data-bs-theme="dark"] .donut-cap { color: #aeb6c2 !important; }
[data-bs-theme="dark"] .text-muted { color: #aeb6c2 !important; }
/* Logos de marque : badge blanc en sombre (sinon logos foncés invisibles) */
[data-bs-theme="dark"] .brand-logo { background: #fff; border-radius: 3px; padding: 1px 2px; }
[data-bs-theme="dark"] .dash-card { box-shadow: 0 .125rem .5rem rgba(0, 0, 0, .4); }
/* la plaque reste blanche (comme une vraie plaque) ; on garde le vert clair "autorisé" */

/* ---- Graphiques (SVG inline, sans dépendance) ---- */
.donut-wrap { display: flex; align-items: center; gap: 1.25rem; flex-wrap: wrap; }
.donut { width: 130px; height: 130px; flex-shrink: 0; }
.donut-total { font-size: 7px; font-weight: 700; text-anchor: middle; fill: var(--om-navy); }
.donut-cap { font-size: 3px; text-anchor: middle; fill: #6c757d; }
.donut-legend { display: flex; flex-direction: column; gap: .35rem; font-size: .85rem; }
.donut-legend-item { display: flex; align-items: center; gap: .5rem; }
.donut-legend-val { margin-left: auto; font-weight: 600; color: var(--om-navy); }
.donut-dot { width: .75rem; height: .75rem; border-radius: 50%; flex-shrink: 0; }

.barchart { width: 100%; height: 90px; display: block; }
.barchart-axis { display: flex; font-size: .65rem; color: #adb5bd; margin-top: .15rem; }
.lgd-box { display: inline-block; width: .7rem; height: .7rem; border-radius: 2px; vertical-align: middle; margin-right: .2rem; }

/* Heatmap jour × heure */
.heatmap { border-collapse: collapse; font-size: .7rem; }
.heatmap td, .heatmap th { text-align: center; padding: 0; }
.heatmap th { color: #adb5bd; font-weight: 500; }
.heat-cell { width: 14px; height: 14px; border-radius: 2px; }
.heat-row-label { color: #6c757d; padding-right: .35rem !important; text-align: right; white-space: nowrap; }

/* Sélecteur de période */
.period-switch .btn.active { background: var(--om-navy); color: #fff; border-color: var(--om-navy); }

/* Accès à l'instant T d'un véhicule (fiche parc) : plaque teintée selon l'accès */
.plate-auth {
    border-color: #198754 !important;
    border-left-color: #198754 !important;
    background: #e8f6ee !important;           /* vert clair : autorisé maintenant */
    color: #14653a !important;
}
.plate-noauth {
    border-left-color: #adb5bd !important;    /* gris : non autorisé maintenant */
    opacity: .7;
}

/* Logo de marque devant une plaque (wwwroot/brands, via BrandLogo.razor) */
.brand-logo {
    height: 1.5em;
    width: 1.9em;
    object-fit: contain;
    vertical-align: -0.4em;
    margin-left: .35rem;
}

/* Jours d'un créneau (pastilles L M M J V S D) */
.slot-days {
    display: inline-flex;
    gap: .2rem;
}

.day-dot {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 1.4rem;
    height: 1.4rem;
    border-radius: 50%;
    font-size: .7rem;
    font-weight: 600;
    background: #e9edf4;
    color: #9aa7b8;
}

    .day-dot.on {
        background: var(--om-gradient);
        color: #fff;
    }

/* --- Modales maison (Blazor, sans JS bootstrap) --------------------------------- */
.app-modal {
    background: rgba(11, 34, 57, .55);
}

    .app-modal .modal-content {
        border: 0;
        border-radius: var(--om-radius);
        box-shadow: 0 1rem 3rem rgba(11, 34, 57, .25);
    }

/* --- Pages compte (connexion, reset…) -------------------------------------------- */
.account-page {
    background: linear-gradient(160deg, var(--om-navy) 0%, var(--om-navy-2) 55%, #1b5e8c 100%);
}

    .account-page .account-card {
        border: 0;
        border-radius: 1rem;
        box-shadow: 0 1rem 3rem rgba(0, 0, 0, .35);
    }

    .account-page h1 {
        letter-spacing: .02em;
    }

    .account-page h1::after {
        content: "";
        display: block;
        width: 3rem;
        height: .25rem;
        margin: .5rem auto 0;
        border-radius: 2px;
        background: var(--om-gradient);
    }

/* --- Divers ----------------------------------------------------------------------- */
.content {
    padding-top: 1.25rem;
    padding-bottom: 2rem;
}

h1:focus {
    outline: none;
}

.valid.modified:not([type=checkbox]) {
    outline: 1px solid #26b050;
}

.invalid {
    outline: 1px solid #e50000;
}

.validation-message {
    color: #e50000;
}

.blazor-error-boundary {
    background: #b32121;
    padding: 1rem;
    color: white;
    border-radius: var(--om-radius);
}

    .blazor-error-boundary::after {
        content: "Une erreur s'est produite.";
    }

.darker-border-checkbox.form-check-input {
    border-color: #929292;
}

/* Ligne véhicule (fiche parc) */
.car-row {
    background: #fff;
    transition: box-shadow .15s ease;
}

    .car-row:hover {
        box-shadow: var(--om-card-shadow);
    }

/* --- Monitoring -------------------------------------------------------------- */
.mon-card {
    border-left: 4px solid #2dce89;
}

    .mon-card.mon-ko {
        border-left-color: #f5365c;
        background: #fff6f8;
    }

.mon-value {
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--om-navy);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.min-w-0 {
    min-width: 0;
}

.mon-ico {
    width: 2.5rem;
    height: 2.5rem;
    flex-shrink: 0;
    border-radius: .625rem;
    background: var(--om-gradient);
    position: relative;
}

    .mon-ico::after {
        content: "";
        position: absolute;
        inset: 0;
        background-color: #fff;
        -webkit-mask-repeat: no-repeat;
        mask-repeat: no-repeat;
        -webkit-mask-position: center;
        mask-position: center;
        -webkit-mask-size: 1.3rem;
        mask-size: 1.3rem;
    }

.mon-ko .mon-ico {
    background: linear-gradient(310deg, #f5365c, #f56036);
}

/* contact magnétique : aimant */
.mon-ico-1::after {
    -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath d='M8 1a7 7 0 0 0-7 7v3h4V8a3 3 0 0 1 6 0v3h4V8a7 7 0 0 0-7-7Zm3 11v3h4v-3h-4Zm-10 0v3h4v-3H1Z'/%3E%3C/svg%3E");
    mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath d='M8 1a7 7 0 0 0-7 7v3h4V8a3 3 0 0 1 6 0v3h4V8a7 7 0 0 0-7-7Zm3 11v3h4v-3h-4Zm-10 0v3h4v-3H1Z'/%3E%3C/svg%3E");
}

/* température : thermomètre */
.mon-ico-2::after {
    -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath d='M9.5 12.5a1.5 1.5 0 1 1-2-1.415V6.5a.5.5 0 0 1 1 0v4.585a1.5 1.5 0 0 1 1 1.415z'/%3E%3Cpath d='M5.5 2.5a2.5 2.5 0 0 1 5 0v7.55a3.5 3.5 0 1 1-5 0V2.5zM8 1a1.5 1.5 0 0 0-1.5 1.5v7.987l-.167.15a2.5 2.5 0 1 0 3.333 0l-.166-.15V2.5A1.5 1.5 0 0 0 8 1z'/%3E%3C/svg%3E");
    mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath d='M9.5 12.5a1.5 1.5 0 1 1-2-1.415V6.5a.5.5 0 0 1 1 0v4.585a1.5 1.5 0 0 1 1 1.415z'/%3E%3Cpath d='M5.5 2.5a2.5 2.5 0 0 1 5 0v7.55a3.5 3.5 0 1 1-5 0V2.5zM8 1a1.5 1.5 0 0 0-1.5 1.5v7.987l-.167.15a2.5 2.5 0 1 0 3.333 0l-.166-.15V2.5A1.5 1.5 0 0 0 8 1z'/%3E%3C/svg%3E");
}

/* keepalive : pulsation */
.mon-ico-3::after {
    -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath fill-rule='evenodd' d='M6 2a.5.5 0 0 1 .47.33L10 12.036l1.53-4.208A.5.5 0 0 1 12 7.5h3.5a.5.5 0 0 1 0 1h-3.15l-1.88 5.17a.5.5 0 0 1-.94 0L6 3.964 4.47 8.171A.5.5 0 0 1 4 8.5H.5a.5.5 0 0 1 0-1h3.15l1.88-5.17A.5.5 0 0 1 6 2Z'/%3E%3C/svg%3E");
    mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath fill-rule='evenodd' d='M6 2a.5.5 0 0 1 .47.33L10 12.036l1.53-4.208A.5.5 0 0 1 12 7.5h3.5a.5.5 0 0 1 0 1h-3.15l-1.88 5.17a.5.5 0 0 1-.94 0L6 3.964 4.47 8.171A.5.5 0 0 1 4 8.5H.5a.5.5 0 0 1 0-1h3.15l1.88-5.17A.5.5 0 0 1 6 2Z'/%3E%3C/svg%3E");
}

/* caméra */
.mon-ico-4::after {
    -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath d='M15 12h-1v.5a.5.5 0 0 1-.5.5h-2a.5.5 0 0 1-.5-.5V12H1.5A1.5 1.5 0 0 1 0 10.5v-6A1.5 1.5 0 0 1 1.5 3h9A1.5 1.5 0 0 1 12 4.5v.634l2.34-1.17A.5.5 0 0 1 15 4.41v7.18a.5.5 0 0 1-.66.474L12 11.366V10.5l3 1.5V5l-3 1.5V4.5a.5.5 0 0 0-.5-.5h-9a.5.5 0 0 0-.5.5v6a.5.5 0 0 0 .5.5H15z'/%3E%3Ccircle cx='5' cy='7.5' r='2'/%3E%3C/svg%3E");
    mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath d='M15 12h-1v.5a.5.5 0 0 1-.5.5h-2a.5.5 0 0 1-.5-.5V12H1.5A1.5 1.5 0 0 1 0 10.5v-6A1.5 1.5 0 0 1 1.5 3h9A1.5 1.5 0 0 1 12 4.5v.634l2.34-1.17A.5.5 0 0 1 15 4.41v7.18a.5.5 0 0 1-.66.474L12 11.366V10.5l3 1.5V5l-3 1.5V4.5a.5.5 0 0 0-.5-.5h-9a.5.5 0 0 0-.5.5v6a.5.5 0 0 0 .5.5H15z'/%3E%3Ccircle cx='5' cy='7.5' r='2'/%3E%3C/svg%3E");
}

/* =============================================================================
   Page vitrine (Landing) — préfixe .lp-
   ============================================================================= */
.lp {
    background: #fff;
    scroll-behavior: smooth;
    /* les gouttières négatives des .row ne doivent pas créer de scroll horizontal */
    overflow-x: hidden;
}

.lp-container {
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 1.25rem;
}

.lp-nav {
    position: sticky;
    top: 0;
    z-index: 100;
    background: #fff;
    box-shadow: 0 1px 8px rgba(11, 34, 57, .08);
    padding: .6rem 0;
}

.lp-logo img {
    height: 44px;
}

.lp-links {
    gap: 1.75rem;
}

    .lp-links a {
        color: var(--om-navy);
        text-decoration: none;
        font-weight: 500;
        font-size: .95rem;
    }

        .lp-links a:hover {
            color: var(--om-accent-2);
        }

/* Bascule de langue FR/EN sur la vitrine */
.lp-lang {
    color: var(--om-navy);
    text-decoration: none;
    font-weight: 700;
    font-size: .85rem;
    border: 1px solid rgba(11, 34, 57, .2);
    border-radius: 6px;
    padding: .25rem .5rem;
    line-height: 1;
}

    .lp-lang:hover {
        color: var(--om-accent-2);
        border-color: var(--om-accent-2);
    }

.lp-hero {
    background: linear-gradient(160deg, var(--om-navy) 0%, var(--om-navy-2) 55%, #1b5e8c 100%);
    color: #fff;
    padding: 5rem 0 5.5rem;
}

    .lp-hero h1 {
        color: #fff;
        font-size: clamp(1.8rem, 4vw, 2.8rem);
        font-weight: 700;
        line-height: 1.2;
    }

        .lp-hero h1 em {
            font-style: normal;
            background: var(--om-gradient);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
        }

.lp-sub {
    color: rgba(255, 255, 255, .85);
    font-size: 1.1rem;
    max-width: 34rem;
    margin-top: 1rem;
}

.lp-pills span {
    display: inline-block;
    border: 1px solid rgba(255, 255, 255, .35);
    border-radius: 2rem;
    padding: .2rem .8rem;
    margin-right: .4rem;
    font-size: .8rem;
    letter-spacing: .06em;
    text-transform: uppercase;
    color: #9fe8ff;
}

.lp-hero .btn-outline-light {
    border-color: rgba(255, 255, 255, .5);
    color: #fff;
}

.lp-illu {
    width: 100%;
    height: auto;
}

.lp-section {
    padding: 4.5rem 0;
}

.lp-section-alt {
    background: var(--om-bg);
}

.lp-title {
    text-align: center;
    font-size: clamp(1.5rem, 3vw, 2.1rem);
}

.lp-lead {
    text-align: center;
    color: #6c7a8c;
    max-width: 40rem;
    margin: .5rem auto 0;
}

.lp-step {
    text-align: center;
    padding: 1rem;
}

.lp-step-num {
    width: 3rem;
    height: 3rem;
    margin: 0 auto 1rem;
    border-radius: 50%;
    background: var(--om-gradient);
    color: #fff;
    font-size: 1.3rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 .5rem 1rem rgba(33, 82, 255, .3);
}

.lp-step h3, .lp-card h3, .lp-usecase h3 {
    font-size: 1.05rem;
    font-weight: 600;
    margin-bottom: .5rem;
}

.lp-step p, .lp-card p, .lp-usecase p {
    color: #6c7a8c;
    font-size: .95rem;
    margin-bottom: 0;
}

.lp-card {
    background: #fff;
    border-radius: var(--om-radius);
    box-shadow: var(--om-card-shadow);
    padding: 1.5rem;
    height: 100%;
    transition: transform .15s ease, box-shadow .15s ease;
}

    .lp-card:hover {
        transform: translateY(-3px);
        box-shadow: 0 .75rem 1.5rem rgba(11, 34, 57, .12);
    }

.lp-ico {
    font-size: 1.8rem;
    margin-bottom: .75rem;
}

.lp-usecase {
    border: 1px solid rgba(11, 34, 57, .1);
    border-radius: var(--om-radius);
    padding: 1.5rem;
    height: 100%;
}

.lp-cta {
    background: var(--om-gradient);
    color: #fff;
    padding: 3rem 0;
}

    .lp-cta h2 {
        color: #fff;
        font-size: 1.5rem;
    }

    .lp-cta p {
        color: rgba(255, 255, 255, .9);
    }

.lp-footer {
    background: var(--om-navy);
    color: rgba(255, 255, 255, .75);
    padding: 3rem 0 2rem;
    font-size: .95rem;
}

    .lp-footer a {
        color: #9fe8ff;
        text-decoration: none;
    }

    .lp-footer h3 {
        color: #fff;
    }

.lp-footer-logo {
    height: 40px;
    background: #fff;
    border-radius: .5rem;
    padding: .3rem .6rem;
}

.lp-copyright {
    border-top: 1px solid rgba(255, 255, 255, .15);
    margin-top: 2rem;
    padding-top: 1.25rem;
    text-align: center;
    font-size: .85rem;
    color: rgba(255, 255, 255, .5);
}

@media (max-width: 767.98px) {
    .lp-hero {
        padding: 3rem 0;
        text-align: center;
    }

    .lp-sub {
        margin-left: auto;
        margin-right: auto;
    }

    .lp-hero .d-flex {
        justify-content: center;
    }

    .lp-section {
        padding: 3rem 0;
    }
}

/* Tables : confort mobile */
@media (max-width: 575.98px) {
    .table > :not(caption) > * > * {
        padding: .5rem .4rem;
        font-size: .85rem;
    }

    .content {
        padding-left: .75rem !important;
        padding-right: .75rem !important;
    }
}
