:root {
    --bg: #f5f7fb;
    --ink: #0d1321;
    --muted: #5d6679;
    --card: #ffffff;
    --line: #e2e7f0;
    --primary: #111827;
    --primary-2: #263244;
    --soft: #eef2ff;
    --danger: #b42318;
    --danger-bg: #fff0ee;
    --radius: 22px;
    --shadow: 0 22px 60px rgba(15, 23, 42, .10);
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
    color: var(--ink);
    background: radial-gradient(circle at top left, #e8eeff, transparent 34rem), var(--bg);
}

a {
    color: inherit;
}

.nav {
    width: min(1160px, calc(100% - 32px));
    margin: 22px auto 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.brand {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 800;
    letter-spacing: -.02em;
}

.logo {
    width: 38px;
    height: 38px;
    display: grid;
    place-items: center;
    border-radius: 12px;
    color: #fff;
    background: linear-gradient(135deg, #111827, #3b485f);
    font-weight: 900;
    box-shadow: 0 12px 28px rgba(17, 24, 39, .22);
}

.logo.big {
    width: 56px;
    height: 56px;
    border-radius: 18px;
    margin: 0 auto 18px;
}

.nav-cta {
    text-decoration: none;
    font-weight: 700;
    padding: 11px 16px;
    border: 1px solid var(--line);
    border-radius: 999px;
    background: rgba(255,255,255,.72);
    backdrop-filter: blur(10px);
}

main {
    width: min(1160px, calc(100% - 32px));
    margin: 0 auto;
}

.hero {
    padding: 82px 0 54px;
    display: grid;
    grid-template-columns: 1.05fr .95fr;
    gap: 44px;
    align-items: center;
}

.eyebrow {
    text-transform: uppercase;
    letter-spacing: .11em;
    color: var(--muted);
    font-size: 12px;
    font-weight: 800;
}

h1, h2, h3, p {
    margin-top: 0;
}

h1 {
    font-size: clamp(42px, 6vw, 76px);
    line-height: .94;
    letter-spacing: -.065em;
    margin-bottom: 22px;
}

h2 {
    font-size: clamp(28px, 3vw, 44px);
    line-height: 1;
    letter-spacing: -.045em;
    margin-bottom: 18px;
}

.lead {
    color: var(--muted);
    font-size: 20px;
    line-height: 1.55;
    max-width: 680px;
}

.hero-actions, .admin-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    align-items: center;
    margin-top: 28px;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 0;
    cursor: pointer;
    text-decoration: none;
    border-radius: 999px;
    padding: 14px 20px;
    font-weight: 800;
    font-size: 15px;
}

.btn.primary {
    color: #fff;
    background: linear-gradient(135deg, var(--primary), var(--primary-2));
    box-shadow: 0 18px 34px rgba(17, 24, 39, .18);
}

.btn.ghost {
    background: #fff;
    border: 1px solid var(--line);
}

.btn.full {
    width: 100%;
}

.trust {
    margin-top: 24px;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    color: var(--muted);
    font-weight: 700;
    font-size: 14px;
}

.trust span {
    padding: 8px 10px;
    border-radius: 999px;
    background: rgba(255,255,255,.74);
    border: 1px solid var(--line);
}

.panel {
    background: rgba(255,255,255,.82);
    border: 1px solid rgba(255,255,255,.9);
    box-shadow: var(--shadow);
    border-radius: 30px;
    padding: 18px;
    backdrop-filter: blur(12px);
    transform: rotate(1deg);
}

.panel-header {
    height: 34px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.dot {
    width: 11px;
    height: 11px;
    border-radius: 999px;
    display: block;
}

.dot.red { background: #ff605c; }
.dot.orange { background: #ffbd44; }
.dot.green { background: #00ca4e; }

.alert-card {
    border: 1px solid var(--line);
    border-radius: 24px;
    padding: 26px;
    background: #fff;
}

.tag {
    display: inline-flex;
    padding: 7px 10px;
    border-radius: 999px;
    background: var(--soft);
    font-size: 12px;
    font-weight: 800;
    color: #334155;
    margin-bottom: 18px;
}

.alert-card h3 {
    font-size: 28px;
    letter-spacing: -.04em;
    margin-bottom: 8px;
}

.alert-card p {
    color: var(--muted);
    line-height: 1.45;
}

.alert-card button {
    width: 100%;
    padding: 13px 16px;
    border-radius: 14px;
    border: 0;
    background: var(--primary);
    color: #fff;
    font-weight: 800;
}

.mini-grid {
    margin-top: 14px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
}

.mini-grid div {
    background: #f8fafc;
    border: 1px solid var(--line);
    border-radius: 16px;
    padding: 14px 12px;
}

.mini-grid strong, .mini-grid span {
    display: block;
}

.mini-grid strong {
    font-size: 12px;
}

.mini-grid span {
    color: var(--muted);
    margin-top: 5px;
    font-size: 13px;
}

.cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
    margin: 24px 0;
}

.card, .quote, .lead-form, .form-copy {
    background: rgba(255,255,255,.82);
    border: 1px solid rgba(226,231,240,.9);
    border-radius: var(--radius);
    padding: 26px;
    box-shadow: 0 14px 35px rgba(15,23,42,.06);
}

.card h2 {
    font-size: 24px;
}

.card p, .form-copy p, .quote p {
    color: var(--muted);
    line-height: 1.6;
}

.split {
    display: grid;
    grid-template-columns: 1fr .8fr;
    gap: 24px;
    align-items: center;
    margin: 72px 0;
}

.checklist {
    list-style: none;
    padding: 0;
    margin: 26px 0 0;
    display: grid;
    gap: 12px;
}

.checklist li {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 16px;
    padding: 14px 16px;
    font-weight: 700;
}

.checklist li::before {
    content: "✓";
    margin-right: 10px;
}

.quote p {
    font-size: 25px;
    line-height: 1.25;
    letter-spacing: -.03em;
    color: var(--ink);
    margin: 0;
}

.form-section {
    display: grid;
    grid-template-columns: .8fr 1.2fr;
    gap: 24px;
    align-items: start;
    margin: 50px 0 90px;
}

.lead-form {
    display: grid;
    gap: 16px;
}

label {
    display: grid;
    gap: 7px;
    color: #334155;
    font-weight: 800;
    font-size: 14px;
}

input, select, textarea {
    width: 100%;
    border: 1px solid var(--line);
    border-radius: 14px;
    padding: 13px 14px;
    font: inherit;
    background: #fff;
    color: var(--ink);
    outline: none;
}

input:focus, select:focus, textarea:focus {
    border-color: #94a3b8;
    box-shadow: 0 0 0 4px rgba(148,163,184,.16);
}

.two {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
}

.consent {
    grid-template-columns: auto 1fr;
    align-items: start;
    gap: 10px;
    font-weight: 600;
    color: var(--muted);
}

.consent input {
    width: auto;
    margin-top: 2px;
}

.small {
    font-size: 13px;
    color: var(--muted);
    text-align: center;
    margin: 0;
}

.errors {
    background: var(--danger-bg);
    color: var(--danger);
    border: 1px solid #ffd8d3;
    border-radius: 16px;
    padding: 12px 14px;
    font-weight: 700;
}

.errors p {
    margin: 0;
}

.hp {
    position: absolute;
    left: -9999px;
    width: 1px;
    height: 1px;
    overflow: hidden;
}

footer {
    width: min(1160px, calc(100% - 32px));
    margin: 0 auto 34px;
    padding-top: 22px;
    border-top: 1px solid var(--line);
    display: flex;
    gap: 14px;
    justify-content: space-between;
    color: var(--muted);
    font-size: 14px;
}

.thanks-page, .admin-page {
    min-height: 100vh;
    display: grid;
    place-items: center;
}

.thanks, .admin {
    width: min(1100px, calc(100% - 32px));
    margin: 40px auto;
}

.thanks {
    text-align: center;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 28px;
    padding: 44px 28px;
    box-shadow: var(--shadow);
}

.thanks h1 {
    font-size: clamp(36px, 5vw, 56px);
}

.login-box {
    width: min(420px, 100%);
    margin: 0 auto;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 28px;
    padding: 28px;
    box-shadow: var(--shadow);
    display: grid;
    gap: 16px;
}

.login-box h1 {
    text-align: center;
    font-size: 34px;
    margin-bottom: 8px;
}

.admin-head {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 18px;
    margin-bottom: 18px;
}

.admin-head h1 {
    font-size: 46px;
    margin: 0;
}

.table-wrap {
    overflow: auto;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 22px;
    box-shadow: var(--shadow);
}

table {
    width: 100%;
    min-width: 950px;
    border-collapse: collapse;
}

th, td {
    padding: 14px 16px;
    border-bottom: 1px solid var(--line);
    text-align: left;
    vertical-align: top;
    font-size: 14px;
}

th {
    color: var(--muted);
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: .07em;
    background: #f8fafc;
}

td {
    color: #1f2937;
}

@media (max-width: 860px) {
    .hero, .cards, .split, .form-section {
        grid-template-columns: 1fr;
    }

    .hero {
        padding-top: 52px;
    }

    .panel {
        transform: none;
    }

    .cards {
        margin-top: 8px;
    }

    .two {
        grid-template-columns: 1fr;
    }

    .mini-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    footer {
        flex-direction: column;
    }

    .admin-head {
        align-items: start;
        flex-direction: column;
    }
}


/* =========================================================
   StationPro - illustration PC CSS only
   ========================================================= */

.pc-illustration {
    position: relative;
    min-height: 500px;
    display: grid;
    place-items: center;
    isolation: isolate;
    animation: pcSceneIn .75s cubic-bezier(.18,.89,.32,1.18) both;
}

.pc-glow {
    position: absolute;
    width: 420px;
    height: 420px;
    border-radius: 999px;
    background:
        radial-gradient(circle, rgba(79, 70, 229, .18), transparent 58%),
        radial-gradient(circle at 70% 30%, rgba(14, 165, 233, .14), transparent 42%);
    filter: blur(8px);
    z-index: -1;
    animation: pcGlowIn 1s ease-out both;
}

.pc-rig {
    position: relative;
    width: min(520px, 100%);
    display: grid;
    grid-template-columns: 1fr 86px;
    align-items: end;
    gap: 18px;
    transform-origin: center bottom;
    animation: pcTinySettle .9s .15s cubic-bezier(.18,.89,.32,1.18) both;
}

.pc-monitor {
    position: relative;
}

.pc-screen {
    position: relative;
    height: 335px;
    overflow: hidden;
    border: 10px solid #111827;
    border-bottom-width: 16px;
    border-radius: 18px;
    background:
        linear-gradient(135deg, rgba(15, 23, 42, .92), rgba(30, 41, 59, .95)),
        radial-gradient(circle at 20% 20%, rgba(96, 165, 250, .28), transparent 32%);
    box-shadow:
        0 28px 70px rgba(15, 23, 42, .24),
        inset 0 0 0 1px rgba(255,255,255,.08);
}

.pc-topbar {
    height: 42px;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 0 14px;
    color: #e5e7eb;
    background: rgba(15, 23, 42, .78);
    border-bottom: 1px solid rgba(255,255,255,.08);
}

.win-mark {
    width: 22px;
    height: 22px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3px;
}

.win-mark span {
    background: #93c5fd;
    border-radius: 2px;
    box-shadow: 0 0 12px rgba(147,197,253,.35);
}

.pc-title {
    font-size: 13px;
    font-weight: 900;
    letter-spacing: .02em;
}

.pc-status-dot {
    margin-left: auto;
    width: 11px;
    height: 11px;
    border-radius: 999px;
    background: #22c55e;
    box-shadow: 0 0 0 5px rgba(34,197,94,.13), 0 0 18px rgba(34,197,94,.7);
    animation: statusPulse 1.7s .8s ease-in-out infinite;
}

.pc-desktop {
    position: relative;
    padding: 18px;
    display: grid;
    gap: 13px;
}

.pc-widget,
.pc-alert,
.pc-metric,
.pc-report-button {
    border: 1px solid rgba(255,255,255,.12);
    background: rgba(255,255,255,.09);
    box-shadow: 0 12px 28px rgba(0,0,0,.18);
    backdrop-filter: blur(10px);
}

.pc-widget {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 14px;
    border-radius: 16px;
    color: #fff;
    animation: cardIn .5s .25s ease-out both;
}

.pc-label {
    display: block;
    margin-bottom: 4px;
    color: #b6c3d6;
    font-size: 11px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: .08em;
}

.pc-widget strong {
    font-size: 19px;
    letter-spacing: -.03em;
}

.pc-badge {
    white-space: nowrap;
    padding: 7px 9px;
    border-radius: 999px;
    font-size: 11px;
    font-weight: 900;
}

.pc-badge.warning {
    color: #fde68a;
    background: rgba(245, 158, 11, .16);
    border: 1px solid rgba(245, 158, 11, .26);
}

.pc-alert {
    display: grid;
    grid-template-columns: 46px 1fr;
    gap: 13px;
    padding: 16px;
    border-radius: 18px;
    color: #fff;
    background:
        linear-gradient(135deg, rgba(245, 158, 11, .18), rgba(255,255,255,.08));
    animation: alertPop .62s .42s cubic-bezier(.18,.89,.32,1.22) both;
}

.pc-alert-icon {
    width: 46px;
    height: 46px;
    display: grid;
    place-items: center;
    border-radius: 14px;
    color: #111827;
    background: #fbbf24;
    font-size: 28px;
    font-weight: 1000;
    box-shadow: 0 0 0 7px rgba(251,191,36,.12);
}

.pc-alert h3 {
    margin: 0 0 4px;
    font-size: 28px;
    color: #fff;
    letter-spacing: -.04em;
}

.pc-alert p {
    margin: 0;
    color: #cbd5e1;
    font-size: 13px;
    line-height: 1.35;
}

.pc-metrics {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    animation: cardIn .5s .62s ease-out both;
}

.pc-metric {
    padding: 12px;
    border-radius: 14px;
    color: #fff;
}

.pc-metric span {
    display: block;
    margin-bottom: 5px;
    color: #b6c3d6;
    font-size: 11px;
    font-weight: 800;
}

.pc-metric strong {
    font-size: 16px;
}

.pc-metric.ok strong {
    color: #86efac;
}

.pc-metric.wait strong {
    color: #bfdbfe;
}

.pc-metric.warn strong {
    color: #fde68a;
}

.pc-report-button {
    width: 100%;
    padding: 13px 15px;
    border-radius: 15px;
    color: #111827;
    text-align: center;
    font-weight: 1000;
    background: linear-gradient(135deg, #f8fafc, #dbeafe);
    animation: buttonIn .45s .78s ease-out both;
}

.pc-sweep {
    position: absolute;
    inset: 42px 0 0;
    background: linear-gradient(90deg, transparent, rgba(147,197,253,.20), transparent);
    transform: translateX(-120%);
    animation: scanSweep 1.4s .35s ease-out both;
    pointer-events: none;
}

.pc-stand {
    width: 86px;
    height: 50px;
    margin: 0 auto;
    background: linear-gradient(180deg, #1f2937, #111827);
    clip-path: polygon(30% 0, 70% 0, 84% 100%, 16% 100%);
}

.pc-base {
    width: 190px;
    height: 18px;
    margin: 0 auto;
    border-radius: 999px;
    background: linear-gradient(180deg, #263244, #111827);
    box-shadow: 0 16px 34px rgba(15,23,42,.22);
}

.pc-tower {
    position: relative;
    width: 78px;
    height: 230px;
    border-radius: 18px;
    background:
        linear-gradient(180deg, #1f2937, #111827);
    box-shadow: 0 24px 50px rgba(15,23,42,.24);
    border: 1px solid rgba(255,255,255,.08);
    animation: towerIn .75s .22s cubic-bezier(.18,.89,.32,1.18) both;
}

.tower-slot {
    position: absolute;
    top: 22px;
    left: 16px;
    right: 16px;
    height: 8px;
    border-radius: 99px;
    background: rgba(255,255,255,.18);
}

.tower-light {
    position: absolute;
    top: 52px;
    left: 50%;
    width: 13px;
    height: 13px;
    transform: translateX(-50%);
    border-radius: 999px;
    background: #22c55e;
    box-shadow: 0 0 0 5px rgba(34,197,94,.13), 0 0 18px rgba(34,197,94,.75);
    animation: statusPulse 1.9s 1s ease-in-out infinite;
}

.tower-grid {
    position: absolute;
    left: 16px;
    right: 16px;
    bottom: 24px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 7px;
}

.tower-grid span {
    height: 8px;
    border-radius: 999px;
    background: rgba(148,163,184,.36);
}

@keyframes pcSceneIn {
    from {
        opacity: 0;
        transform: translateY(18px) scale(.98);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

@keyframes pcGlowIn {
    from {
        opacity: 0;
        transform: scale(.82);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes pcTinySettle {
    0% {
        transform: translateY(22px) rotate(-1.6deg) scale(.96);
    }
    65% {
        transform: translateY(-4px) rotate(.7deg) scale(1.01);
    }
    100% {
        transform: translateY(0) rotate(0) scale(1);
    }
}

@keyframes towerIn {
    from {
        opacity: 0;
        transform: translateX(22px) translateY(18px);
    }
    to {
        opacity: 1;
        transform: translateX(0) translateY(0);
    }
}

@keyframes alertPop {
    from {
        opacity: 0;
        transform: translateY(12px) scale(.94);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

@keyframes cardIn {
    from {
        opacity: 0;
        transform: translateY(9px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes buttonIn {
    from {
        opacity: 0;
        transform: translateY(8px) scale(.98);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

@keyframes scanSweep {
    0% {
        transform: translateX(-120%);
    }
    100% {
        transform: translateX(120%);
    }
}

@keyframes statusPulse {
    0%, 100% {
        transform: scale(1);
        opacity: 1;
    }
    50% {
        transform: scale(.78);
        opacity: .72;
    }
}

@media (max-width: 860px) {
    .pc-illustration {
        min-height: auto;
        padding: 20px 0 10px;
    }

    .pc-rig {
        grid-template-columns: 1fr;
        max-width: 460px;
    }

    .pc-tower {
        display: none;
    }

    .pc-screen {
        height: 315px;
    }
}

@media (max-width: 460px) {
    .pc-screen {
        height: 345px;
        border-width: 8px;
        border-bottom-width: 14px;
    }

    .pc-metrics {
        grid-template-columns: 1fr;
    }

    .pc-alert {
        grid-template-columns: 1fr;
    }

    .pc-alert-icon {
        width: 40px;
        height: 40px;
        font-size: 24px;
    }

    .pc-alert h3 {
        font-size: 24px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .pc-illustration,
    .pc-glow,
    .pc-rig,
    .pc-widget,
    .pc-alert,
    .pc-metrics,
    .pc-report-button,
    .pc-sweep,
    .pc-tower,
    .pc-status-dot,
    .tower-light {
        animation: none !important;
    }
}


/* =========================================================
   StationPro - bouton contact prestataire très visible
   ========================================================= */

.pc-report-button {
    display: none !important;
}

.pc-contact-cta {
    position: relative;
    width: 100%;
    border: 0;
    margin-top: 2px;
    padding: 15px 16px;
    border-radius: 18px;
    display: grid;
    grid-template-columns: 46px 1fr;
    align-items: center;
    gap: 13px;
    cursor: pointer;
    text-align: left;
    color: #111827;
    background:
        linear-gradient(135deg, #ffffff 0%, #dbeafe 48%, #bfdbfe 100%);
    box-shadow:
        0 18px 36px rgba(37, 99, 235, .28),
        0 0 0 1px rgba(255,255,255,.65) inset,
        0 0 0 6px rgba(59, 130, 246, .13);
    font: inherit;
    transform-origin: center;
    animation: contactButtonIn .55s .9s cubic-bezier(.18,.89,.32,1.22) both,
               contactButtonPulse 2.4s 1.7s ease-in-out infinite;
}

.pc-contact-cta::after {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,.65), transparent);
    transform: translateX(-120%);
    animation: contactButtonShine 1.6s 1.25s ease-out both;
    pointer-events: none;
}

.pc-contact-icon {
    width: 46px;
    height: 46px;
    border-radius: 15px;
    background: #111827;
    box-shadow: 0 12px 24px rgba(17, 24, 39, .24);
    position: relative;
}

.pc-contact-icon::before {
    content: "";
    position: absolute;
    left: 11px;
    top: 12px;
    width: 24px;
    height: 17px;
    border: 3px solid #ffffff;
    border-radius: 4px;
}

.pc-contact-icon::after {
    content: "";
    position: absolute;
    left: 14px;
    top: 15px;
    width: 18px;
    height: 12px;
    border-left: 3px solid #ffffff;
    border-bottom: 3px solid #ffffff;
    transform: rotate(-45deg);
    opacity: .95;
}

.pc-contact-text {
    display: grid;
    gap: 3px;
}

.pc-contact-text strong {
    display: block;
    color: #0f172a;
    font-size: 18px;
    font-weight: 1000;
    line-height: 1.05;
    letter-spacing: -.03em;
}

.pc-contact-text small {
    display: block;
    color: #1d4ed8;
    font-size: 12px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: .06em;
}

/* Fallback si l’ancienne illustration est encore en place */
.alert-card .contact-provider-button {
    width: 100%;
    border: 0;
    margin-top: 10px;
    padding: 16px 18px;
    border-radius: 16px;
    display: grid;
    gap: 4px;
    cursor: pointer;
    text-align: center;
    background: linear-gradient(135deg, #111827, #2563eb);
    color: #ffffff;
    box-shadow:
        0 18px 36px rgba(37, 99, 235, .25),
        0 0 0 6px rgba(37, 99, 235, .12);
    font: inherit;
    animation: contactButtonIn .55s .4s cubic-bezier(.18,.89,.32,1.22) both,
               contactButtonPulse 2.4s 1.4s ease-in-out infinite;
}

.alert-card .contact-provider-button strong {
    font-size: 17px;
    font-weight: 1000;
}

.alert-card .contact-provider-button span {
    font-size: 12px;
    font-weight: 800;
    opacity: .86;
    text-transform: uppercase;
    letter-spacing: .06em;
}

@keyframes contactButtonIn {
    from {
        opacity: 0;
        transform: translateY(12px) scale(.94);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

@keyframes contactButtonPulse {
    0%, 100% {
        transform: scale(1);
        box-shadow:
            0 18px 36px rgba(37, 99, 235, .28),
            0 0 0 1px rgba(255,255,255,.65) inset,
            0 0 0 6px rgba(59, 130, 246, .13);
    }
    50% {
        transform: scale(1.025);
        box-shadow:
            0 22px 44px rgba(37, 99, 235, .36),
            0 0 0 1px rgba(255,255,255,.72) inset,
            0 0 0 10px rgba(59, 130, 246, .18);
    }
}

@keyframes contactButtonShine {
    from {
        transform: translateX(-120%);
    }
    to {
        transform: translateX(120%);
    }
}

@media (prefers-reduced-motion: reduce) {
    .pc-contact-cta,
    .pc-contact-cta::after,
    .alert-card .contact-provider-button {
        animation: none !important;
    }
}


/* =========================================================
   StationPro - illustration V2 contact prestataire évident
   ========================================================= */

.sp-client-contact-demo {
    position: relative;
    min-height: 560px;
    display: grid;
    place-items: center;
    isolation: isolate;
    animation: spDemoEnter .75s cubic-bezier(.18,.89,.32,1.18) both;
}

.sp-demo-orbit {
    position: absolute;
    border-radius: 999px;
    z-index: -1;
    filter: blur(2px);
    opacity: .9;
}

.sp-demo-orbit-one {
    width: 470px;
    height: 470px;
    background: radial-gradient(circle, rgba(37,99,235,.17), transparent 64%);
    animation: spGlowPop 1s ease-out both;
}

.sp-demo-orbit-two {
    width: 340px;
    height: 340px;
    background: radial-gradient(circle, rgba(245,158,11,.13), transparent 62%);
    transform: translate(80px, -50px);
    animation: spGlowPop 1.1s .1s ease-out both;
}

.sp-demo-pc {
    position: relative;
    width: min(560px, 100%);
    display: grid;
    grid-template-columns: 1fr 82px;
    gap: 18px;
    align-items: end;
    animation: spPcSettle .85s .1s cubic-bezier(.18,.89,.32,1.16) both;
}

.sp-demo-monitor {
    position: relative;
}

.sp-demo-screen {
    position: relative;
    height: 365px;
    overflow: hidden;
    border: 10px solid #111827;
    border-bottom-width: 17px;
    border-radius: 20px;
    background:
        radial-gradient(circle at 18% 18%, rgba(96,165,250,.24), transparent 34%),
        linear-gradient(135deg, #0f172a, #1e293b);
    box-shadow:
        0 30px 75px rgba(15,23,42,.24),
        inset 0 0 0 1px rgba(255,255,255,.08);
}

.sp-demo-windows-bar {
    height: 44px;
    display: flex;
    align-items: center;
    gap: 11px;
    padding: 0 14px;
    color: #e5e7eb;
    background: rgba(15, 23, 42, .84);
    border-bottom: 1px solid rgba(255,255,255,.09);
}

.sp-demo-windows-logo {
    width: 23px;
    height: 23px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3px;
    flex: 0 0 auto;
}

.sp-demo-windows-logo span {
    display: block;
    border-radius: 2px;
    background: #93c5fd;
    box-shadow: 0 0 12px rgba(147,197,253,.42);
}

.sp-demo-windows-bar strong {
    font-size: 13px;
    letter-spacing: .01em;
}

.sp-demo-live {
    margin-left: auto;
    padding: 6px 9px;
    border-radius: 999px;
    color: #86efac;
    background: rgba(34,197,94,.12);
    border: 1px solid rgba(34,197,94,.22);
    font-size: 11px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: .06em;
}

.sp-demo-desktop {
    position: relative;
    height: calc(100% - 44px);
    padding: 18px;
}

.sp-demo-small-card {
    position: absolute;
    width: 138px;
    padding: 12px;
    border-radius: 15px;
    color: #ffffff;
    background: rgba(255,255,255,.09);
    border: 1px solid rgba(255,255,255,.12);
    box-shadow: 0 14px 28px rgba(0,0,0,.17);
    backdrop-filter: blur(10px);
}

.sp-demo-small-card span {
    display: block;
    margin-bottom: 5px;
    color: #b6c3d6;
    font-size: 11px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: .06em;
}

.sp-demo-small-card strong {
    font-size: 15px;
}

.sp-demo-card-left {
    left: 18px;
    top: 18px;
    animation: spCardIn .45s .35s ease-out both;
}

.sp-demo-card-right {
    right: 18px;
    top: 18px;
    animation: spCardIn .45s .45s ease-out both;
}

.sp-demo-popup {
    position: absolute;
    left: 50%;
    top: 54%;
    width: min(390px, calc(100% - 34px));
    transform: translate(-50%, -50%);
    padding: 18px;
    border-radius: 22px;
    color: #111827;
    background: linear-gradient(180deg, #ffffff, #eff6ff);
    border: 1px solid rgba(255,255,255,.9);
    box-shadow:
        0 28px 70px rgba(15,23,42,.35),
        0 0 0 8px rgba(59,130,246,.13);
    animation: spPopupPop .7s .55s cubic-bezier(.18,.89,.32,1.22) both;
}

.sp-demo-popup::before {
    content: "";
    position: absolute;
    inset: -12px;
    border-radius: 30px;
    border: 2px solid rgba(59,130,246,.22);
    animation: spRingPulse 2.1s 1.2s ease-in-out infinite;
    pointer-events: none;
}

.sp-demo-popup-head {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #334155;
    font-size: 13px;
    font-weight: 900;
    margin-bottom: 12px;
}

.sp-demo-alert-dot {
    width: 32px;
    height: 32px;
    display: grid;
    place-items: center;
    border-radius: 11px;
    color: #111827;
    background: #fbbf24;
    font-size: 22px;
    font-weight: 1000;
    box-shadow: 0 0 0 6px rgba(251,191,36,.18);
}

.sp-demo-popup h3 {
    margin: 0 0 8px;
    font-size: 28px;
    line-height: .98;
    letter-spacing: -.055em;
    color: #0f172a;
}

.sp-demo-popup p {
    margin: 0 0 15px;
    color: #475569;
    font-size: 14px;
    line-height: 1.42;
}

.sp-demo-contact-button {
    position: relative;
    width: 100%;
    border: 0;
    padding: 16px;
    border-radius: 18px;
    display: grid;
    grid-template-columns: 52px 1fr;
    align-items: center;
    gap: 14px;
    cursor: pointer;
    text-align: left;
    font: inherit;
    color: #ffffff;
    background: linear-gradient(135deg, #111827, #2563eb);
    box-shadow:
        0 20px 38px rgba(37,99,235,.34),
        0 0 0 7px rgba(37,99,235,.14);
    overflow: hidden;
    animation: spButtonPulse 2.2s 1.45s ease-in-out infinite;
}

.sp-demo-contact-button::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,.34), transparent);
    transform: translateX(-120%);
    animation: spButtonShine 1.5s 1.15s ease-out both;
}

.sp-demo-contact-button strong {
    display: block;
    font-size: 20px;
    line-height: 1.02;
    font-weight: 1000;
    letter-spacing: -.04em;
}

.sp-demo-contact-button small {
    display: block;
    margin-top: 4px;
    color: #bfdbfe;
    font-size: 12px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: .06em;
}

.sp-demo-contact-icon {
    position: relative;
    width: 52px;
    height: 52px;
    border-radius: 17px;
    background: rgba(255,255,255,.16);
    box-shadow: inset 0 0 0 1px rgba(255,255,255,.20);
}

.sp-demo-contact-icon::before {
    content: "";
    position: absolute;
    left: 12px;
    top: 15px;
    width: 28px;
    height: 20px;
    border: 3px solid #ffffff;
    border-radius: 5px;
}

.sp-demo-contact-icon::after {
    content: "";
    position: absolute;
    left: 16px;
    top: 18px;
    width: 20px;
    height: 14px;
    border-left: 3px solid #ffffff;
    border-bottom: 3px solid #ffffff;
    transform: rotate(-45deg);
}

.sp-demo-client-label {
    position: absolute;
    left: 22px;
    bottom: 18px;
    max-width: 190px;
    padding: 11px 13px;
    border-radius: 15px;
    color: #ffffff;
    background: rgba(15,23,42,.74);
    border: 1px solid rgba(255,255,255,.11);
    backdrop-filter: blur(10px);
    animation: spCardIn .45s .95s ease-out both;
}

.sp-demo-client-label strong {
    display: block;
    font-size: 13px;
}

.sp-demo-client-label span {
    display: block;
    margin-top: 3px;
    color: #cbd5e1;
    font-size: 12px;
    line-height: 1.25;
}

.sp-demo-monitor-neck {
    width: 88px;
    height: 48px;
    margin: 0 auto;
    background: linear-gradient(180deg, #1f2937, #111827);
    clip-path: polygon(30% 0, 70% 0, 84% 100%, 16% 100%);
}

.sp-demo-monitor-base {
    width: 200px;
    height: 18px;
    margin: 0 auto;
    border-radius: 999px;
    background: linear-gradient(180deg, #263244, #111827);
    box-shadow: 0 16px 34px rgba(15,23,42,.22);
}

.sp-demo-tower {
    position: relative;
    width: 78px;
    height: 230px;
    border-radius: 18px;
    background: linear-gradient(180deg, #1f2937, #111827);
    box-shadow: 0 24px 50px rgba(15,23,42,.24);
    border: 1px solid rgba(255,255,255,.08);
    animation: spTowerIn .7s .28s cubic-bezier(.18,.89,.32,1.18) both;
}

.sp-demo-tower-light {
    position: absolute;
    top: 26px;
    left: 50%;
    width: 14px;
    height: 14px;
    transform: translateX(-50%);
    border-radius: 999px;
    background: #22c55e;
    box-shadow: 0 0 0 5px rgba(34,197,94,.13), 0 0 18px rgba(34,197,94,.75);
    animation: spLightPulse 1.7s 1s ease-in-out infinite;
}

.sp-demo-tower-slot {
    position: absolute;
    top: 58px;
    left: 16px;
    right: 16px;
    height: 8px;
    border-radius: 999px;
    background: rgba(255,255,255,.18);
}

.sp-demo-tower-grid {
    position: absolute;
    left: 16px;
    right: 16px;
    bottom: 26px;
    height: 74px;
    border-radius: 12px;
    background:
        radial-gradient(circle, rgba(148,163,184,.55) 2px, transparent 3px) 0 0 / 15px 15px;
    opacity: .85;
}

.sp-demo-provider-bubble {
    position: absolute;
    right: 8px;
    bottom: 40px;
    width: 235px;
    padding: 14px 16px;
    border-radius: 18px;
    color: #111827;
    background: #ffffff;
    border: 1px solid #e2e8f0;
    box-shadow: 0 18px 40px rgba(15,23,42,.16);
    animation: spProviderIn .55s 1.05s ease-out both;
}

.sp-demo-provider-bubble::before {
    content: "";
    position: absolute;
    left: -60px;
    top: 28px;
    width: 52px;
    height: 3px;
    border-radius: 999px;
    background: linear-gradient(90deg, rgba(37,99,235,0), rgba(37,99,235,.8));
}

.sp-demo-provider-bubble span {
    display: block;
    margin-bottom: 4px;
    color: #64748b;
    font-size: 11px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: .08em;
}

.sp-demo-provider-bubble strong {
    display: block;
    color: #0f172a;
    font-size: 17px;
    line-height: 1.1;
    letter-spacing: -.03em;
}

@keyframes spDemoEnter {
    from {
        opacity: 0;
        transform: translateY(18px) scale(.98);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

@keyframes spGlowPop {
    from {
        opacity: 0;
        transform: scale(.8);
    }
    to {
        opacity: .9;
        transform: scale(1);
    }
}

@keyframes spPcSettle {
    0% {
        transform: translateY(22px) rotate(-1.4deg) scale(.96);
    }
    65% {
        transform: translateY(-4px) rotate(.5deg) scale(1.01);
    }
    100% {
        transform: translateY(0) rotate(0) scale(1);
    }
}

@keyframes spTowerIn {
    from {
        opacity: 0;
        transform: translateX(24px) translateY(18px);
    }
    to {
        opacity: 1;
        transform: translateX(0) translateY(0);
    }
}

@keyframes spCardIn {
    from {
        opacity: 0;
        transform: translateY(9px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes spPopupPop {
    from {
        opacity: 0;
        transform: translate(-50%, -44%) scale(.88);
    }
    to {
        opacity: 1;
        transform: translate(-50%, -50%) scale(1);
    }
}

@keyframes spRingPulse {
    0%, 100% {
        opacity: .55;
        transform: scale(1);
    }
    50% {
        opacity: .9;
        transform: scale(1.035);
    }
}

@keyframes spButtonPulse {
    0%, 100% {
        transform: scale(1);
        box-shadow:
            0 20px 38px rgba(37,99,235,.34),
            0 0 0 7px rgba(37,99,235,.14);
    }
    50% {
        transform: scale(1.03);
        box-shadow:
            0 25px 48px rgba(37,99,235,.42),
            0 0 0 11px rgba(37,99,235,.20);
    }
}

@keyframes spButtonShine {
    from {
        transform: translateX(-120%);
    }
    to {
        transform: translateX(120%);
    }
}

@keyframes spLightPulse {
    0%, 100% {
        opacity: 1;
        transform: translateX(-50%) scale(1);
    }
    50% {
        opacity: .7;
        transform: translateX(-50%) scale(.78);
    }
}

@keyframes spProviderIn {
    from {
        opacity: 0;
        transform: translateX(18px) translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateX(0) translateY(0);
    }
}

@media (max-width: 920px) {
    .sp-client-contact-demo {
        min-height: auto;
        padding: 20px 0 10px;
    }

    .sp-demo-pc {
        grid-template-columns: 1fr;
        max-width: 520px;
    }

    .sp-demo-tower {
        display: none;
    }

    .sp-demo-provider-bubble {
        position: relative;
        right: auto;
        bottom: auto;
        margin-top: -8px;
        width: min(360px, 92%);
    }

    .sp-demo-provider-bubble::before {
        display: none;
    }
}

@media (max-width: 520px) {
    .sp-demo-screen {
        height: 410px;
        border-width: 8px;
        border-bottom-width: 14px;
    }

    .sp-demo-small-card {
        display: none;
    }

    .sp-demo-popup {
        top: 50%;
        width: calc(100% - 28px);
    }

    .sp-demo-popup h3 {
        font-size: 25px;
    }

    .sp-demo-contact-button {
        grid-template-columns: 44px 1fr;
        padding: 14px;
    }

    .sp-demo-contact-icon {
        width: 44px;
        height: 44px;
    }

    .sp-demo-contact-button strong {
        font-size: 17px;
    }

    .sp-demo-client-label {
        left: 14px;
        right: 14px;
        bottom: 12px;
        max-width: none;
    }
}

@media (prefers-reduced-motion: reduce) {
    .sp-client-contact-demo,
    .sp-demo-orbit,
    .sp-demo-pc,
    .sp-demo-tower,
    .sp-demo-small-card,
    .sp-demo-popup,
    .sp-demo-popup::before,
    .sp-demo-contact-button,
    .sp-demo-contact-button::after,
    .sp-demo-client-label,
    .sp-demo-provider-bubble,
    .sp-demo-tower-light {
        animation: none !important;
    }
}


/* =========================================================
   StationPro - bloc fidélisation clientèle
   ========================================================= */

.retention-section {
    margin: 54px 0 34px;
    display: grid;
    grid-template-columns: .95fr 1.05fr;
    gap: 22px;
    align-items: stretch;
}

.retention-main,
.retention-points {
    background: rgba(255,255,255,.86);
    border: 1px solid rgba(226,231,240,.9);
    border-radius: 24px;
    padding: 28px;
    box-shadow: 0 16px 40px rgba(15,23,42,.07);
}

.retention-main {
    background:
        radial-gradient(circle at top left, rgba(37,99,235,.13), transparent 34rem),
        #ffffff;
}

.retention-main h2 {
    margin-bottom: 16px;
}

.retention-main p {
    color: var(--muted);
    line-height: 1.65;
    font-size: 17px;
    margin-bottom: 0;
}

.retention-points {
    display: grid;
    gap: 14px;
}

.retention-points div {
    position: relative;
    padding: 18px 18px 18px 54px;
    border-radius: 18px;
    background: #f8fafc;
    border: 1px solid var(--line);
}

.retention-points div::before {
    content: "✓";
    position: absolute;
    left: 18px;
    top: 18px;
    width: 24px;
    height: 24px;
    display: grid;
    place-items: center;
    border-radius: 999px;
    background: #111827;
    color: #ffffff;
    font-size: 14px;
    font-weight: 900;
}

.retention-points strong {
    display: block;
    margin-bottom: 5px;
    font-size: 17px;
    letter-spacing: -.02em;
}

.retention-points span {
    display: block;
    color: var(--muted);
    line-height: 1.45;
}

@media (max-width: 860px) {
    .retention-section {
        grid-template-columns: 1fr;
    }
}


/* =========================================================
   StationPro - logo_sp.png + palette alignée logo
   Bleu principal + graphite foncé
   ========================================================= */

:root {
    --sp-blue: #1f76e8;
    --sp-blue-2: #2563eb;
    --sp-blue-dark: #174ea6;
    --sp-navy: #253244;
    --sp-navy-2: #111827;
    --sp-soft-blue: #eaf3ff;
    --sp-line-blue: #d7e6fb;

    --bg: #f6faff;
    --ink: #162233;
    --muted: #607086;
    --line: #dbe7f5;
    --primary: #1f76e8;
    --primary-2: #253244;
    --soft: #eaf3ff;
}

body {
    background:
        radial-gradient(circle at top left, rgba(31, 118, 232, .16), transparent 34rem),
        radial-gradient(circle at 80% 10%, rgba(37, 99, 235, .08), transparent 30rem),
        var(--bg);
}

.brand-with-image {
    gap: 0;
}

.brand-logo-link {
    display: inline-flex;
    align-items: center;
    text-decoration: none;
}

.brand-logo-img {
    display: block;
    width: auto;
    height: 58px;
    max-width: 285px;
    object-fit: contain;
}

.nav {
    align-items: center;
}

.nav-cta {
    color: var(--sp-navy);
    border-color: rgba(31, 118, 232, .20);
    background: rgba(255, 255, 255, .82);
    box-shadow: 0 10px 25px rgba(31, 118, 232, .07);
}

.nav-cta:hover {
    border-color: rgba(31, 118, 232, .45);
    box-shadow: 0 12px 30px rgba(31, 118, 232, .12);
}

.btn.primary {
    background: linear-gradient(135deg, var(--sp-blue), var(--sp-navy));
    box-shadow: 0 18px 34px rgba(31, 118, 232, .22);
}

.btn.ghost {
    color: var(--sp-navy);
    border-color: var(--sp-line-blue);
}

.logo {
    background: linear-gradient(135deg, var(--sp-blue), var(--sp-navy));
}

.trust span,
.tag {
    background: var(--sp-soft-blue);
    border-color: var(--sp-line-blue);
    color: var(--sp-navy);
}

.card,
.quote,
.lead-form,
.form-copy,
.retention-main,
.retention-points {
    border-color: rgba(215, 230, 251, .95);
}

input:focus,
select:focus,
textarea:focus {
    border-color: rgba(31, 118, 232, .65);
    box-shadow: 0 0 0 4px rgba(31, 118, 232, .14);
}

.checklist li::before {
    color: var(--sp-blue);
}

.retention-points div::before {
    background: linear-gradient(135deg, var(--sp-blue), var(--sp-navy));
}

.pc-status-dot,
.tower-light,
.sp-demo-tower-light {
    background: #27c46b;
}

.pc-contact-cta,
.sp-demo-contact-button {
    background: linear-gradient(135deg, var(--sp-blue), var(--sp-navy)) !important;
    box-shadow:
        0 20px 38px rgba(31, 118, 232, .34),
        0 0 0 7px rgba(31, 118, 232, .14) !important;
}

.sp-demo-contact-button small {
    color: #dbeafe;
}

.sp-demo-live {
    color: #dbeafe;
    background: rgba(31, 118, 232, .18);
    border-color: rgba(31, 118, 232, .30);
}

.sp-demo-provider-bubble::before {
    background: linear-gradient(90deg, rgba(31,118,232,0), rgba(31,118,232,.85));
}

.sp-demo-windows-logo span,
.win-mark span {
    background: #2f80ed;
    box-shadow: 0 0 12px rgba(47,128,237,.42);
}

.sp-demo-alert-dot,
.pc-alert-icon {
    background: #fbbf24;
}

footer {
    border-top-color: var(--sp-line-blue);
}

footer strong {
    color: var(--sp-navy);
}

@media (max-width: 860px) {
    .brand-logo-img {
        height: 46px;
        max-width: 220px;
    }
}

@media (max-width: 460px) {
    .brand-logo-img {
        height: 40px;
        max-width: 190px;
    }

    .nav {
        width: min(100% - 22px, 1160px);
    }

    .nav-cta {
        padding: 9px 12px;
        font-size: 13px;
    }
}



/* =========================================================
   StationPro - fix logo header V2
   Logo plus grand + aucun fond CSS
   ========================================================= */

header.nav {
    min-height: 92px !important;
    align-items: center !important;
    padding-top: 8px !important;
    padding-bottom: 8px !important;
}

header.nav .brand,
header.nav .brand-with-image {
    display: flex !important;
    align-items: center !important;
    justify-content: flex-start !important;
    background: transparent !important;
    border: none !important;
    box-shadow: none !important;
    padding: 0 !important;
    margin: 0 !important;
    width: auto !important;
    height: auto !important;
    line-height: 0 !important;
}

header.nav .brand-logo-link {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: flex-start !important;
    background: transparent !important;
    border: none !important;
    box-shadow: none !important;
    padding: 0 !important;
    margin: 0 !important;
    width: auto !important;
    height: auto !important;
    line-height: 0 !important;
    text-decoration: none !important;
}

header.nav .brand-logo-img {
    display: block !important;
    width: auto !important;
    height: 86px !important;
    max-width: 420px !important;
    object-fit: contain !important;

    background: transparent !important;
    border: none !important;
    box-shadow: none !important;
    outline: none !important;
    padding: 0 !important;
    margin: 0 !important;

    /*
      Si ton PNG a un fond blanc non transparent,
      cette ligne aide à l’effacer visuellement sur fond clair.
    */
    mix-blend-mode: multiply;
}

header.nav .brand-logo-link::before,
header.nav .brand-logo-link::after,
header.nav .brand-with-image::before,
header.nav .brand-with-image::after,
header.nav .brand::before,
header.nav .brand::after {
    content: none !important;
    display: none !important;
}

header.nav .logo {
    display: none !important;
}

@media (max-width: 900px) {
    header.nav {
        min-height: 78px !important;
    }

    header.nav .brand-logo-img {
        height: 68px !important;
        max-width: 320px !important;
    }
}

@media (max-width: 540px) {
    header.nav {
        min-height: 64px !important;
        gap: 12px !important;
    }

    header.nav .brand-logo-img {
        height: 52px !important;
        max-width: 220px !important;
    }

    header.nav .nav-cta {
        padding: 9px 12px !important;
        font-size: 13px !important;
    }
}




/* =========================================================
   StationPro - logo propre recadré + taille forte
   ========================================================= */

header.nav {
    min-height: 138px !important;
    align-items: center !important;
    padding-top: 10px !important;
    padding-bottom: 10px !important;
}

header.nav .brand,
header.nav .brand-with-image,
header.nav .brand-logo-link {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: flex-start !important;
    background: transparent !important;
    border: 0 !important;
    box-shadow: none !important;
    outline: 0 !important;
    padding: 0 !important;
    margin: 0 !important;
    width: auto !important;
    height: auto !important;
    line-height: 0 !important;
    text-decoration: none !important;
}

header.nav .brand::before,
header.nav .brand::after,
header.nav .brand-with-image::before,
header.nav .brand-with-image::after,
header.nav .brand-logo-link::before,
header.nav .brand-logo-link::after {
    display: none !important;
    content: none !important;
}

header.nav img#stationproHeaderLogo,
header.nav .brand-logo-img {
    display: block !important;
    width: auto !important;
    height: 122px !important;
    max-width: 560px !important;
    object-fit: contain !important;
    background: transparent !important;
    border: 0 !important;
    box-shadow: none !important;
    outline: 0 !important;
    padding: 0 !important;
    margin: 0 !important;
    mix-blend-mode: normal !important;
    filter: none !important;
}

header.nav .logo {
    display: none !important;
}

@media (max-width: 900px) {
    header.nav {
        min-height: 104px !important;
    }

    header.nav img#stationproHeaderLogo,
    header.nav .brand-logo-img {
        height: 92px !important;
        max-width: 420px !important;
    }
}

@media (max-width: 540px) {
    header.nav {
        min-height: 78px !important;
    }

    header.nav img#stationproHeaderLogo,
    header.nav .brand-logo-img {
        height: 64px !important;
        max-width: 260px !important;
    }
}



/* =========================================================
   StationPro - version courte + organigramme
   ========================================================= */

.hero {
    padding-bottom: 34px !important;
}

.lead {
    max-width: 680px;
    font-size: 18px !important;
    line-height: 1.5 !important;
}

.cards {
    margin-top: 18px !important;
    margin-bottom: 22px !important;
}

.card h2 {
    margin-bottom: 10px !important;
    font-size: 23px !important;
}

.card p,
.form-copy p {
    font-size: 15px !important;
    line-height: 1.55 !important;
}

.flow-section {
    margin: 36px 0 54px;
    display: grid;
    gap: 22px;
}

.flow-head {
    background: rgba(255,255,255,.84);
    border: 1px solid rgba(226,231,240,.92);
    border-radius: 24px;
    padding: 28px;
    box-shadow: 0 14px 35px rgba(15,23,42,.06);
}

.flow-head h2 {
    margin-bottom: 10px;
}

.flow-intro {
    margin: 0;
    color: var(--muted);
    line-height: 1.55;
}

.flow-steps {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 12px;
    align-items: stretch;
}

.flow-step {
    position: relative;
    background: rgba(255,255,255,.88);
    border: 1px solid rgba(226,231,240,.92);
    border-radius: 22px;
    padding: 18px;
    box-shadow: 0 14px 35px rgba(15,23,42,.06);
}

.flow-num {
    width: 34px;
    height: 34px;
    display: grid;
    place-items: center;
    border-radius: 999px;
    margin-bottom: 12px;
    background: linear-gradient(135deg, #1f76e8, #253244);
    color: #fff;
    font-size: 14px;
    font-weight: 900;
}

.flow-step h3 {
    margin: 0 0 8px;
    font-size: 18px;
    line-height: 1.15;
    letter-spacing: -.02em;
}

.flow-step p {
    margin: 0;
    color: var(--muted);
    font-size: 14px;
    line-height: 1.45;
}

.flow-arrow {
    display: none;
}

.form-section {
    margin-top: 10px !important;
}

@media (min-width: 1100px) {
    .flow-steps {
        grid-template-columns: 1fr 26px 1fr 26px 1fr 26px 1fr 26px 1fr;
    }

    .flow-arrow {
        display: grid;
        place-items: center;
        color: #1f76e8;
        font-size: 26px;
        font-weight: 900;
    }
}

@media (max-width: 1099px) {
    .flow-steps {
        grid-template-columns: 1fr;
    }
}



/* =========================================================
   StationPro - test pilote 100% gratuit
   ========================================================= */

.free-pilot-note {
    margin-top: 18px;
    max-width: 620px;
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
    padding: 14px 16px;
    border-radius: 18px;
    background: linear-gradient(135deg, rgba(31,118,232,.10), rgba(255,255,255,.88));
    border: 1px solid rgba(31,118,232,.22);
    box-shadow: 0 14px 32px rgba(31,118,232,.08);
}

.free-pilot-note strong {
    display: inline-flex;
    align-items: center;
    padding: 8px 11px;
    border-radius: 999px;
    color: #ffffff;
    background: linear-gradient(135deg, #1f76e8, #253244);
    font-size: 13px;
    font-weight: 1000;
    text-transform: uppercase;
    letter-spacing: .04em;
}

.free-pilot-note span {
    color: var(--muted);
    font-size: 14px;
    font-weight: 700;
    line-height: 1.35;
}

.free-form-callout {
    display: grid;
    gap: 5px;
    padding: 16px 17px;
    border-radius: 18px;
    background: #eaf3ff;
    border: 1px solid #d7e6fb;
    color: #162233;
}

.free-form-callout strong {
    font-size: 18px;
    font-weight: 1000;
    letter-spacing: -.02em;
}

.free-form-callout span {
    color: #607086;
    font-size: 14px;
    line-height: 1.4;
    font-weight: 700;
}

.nav-cta,
.btn.primary {
    position: relative;
}

.btn.primary::after {
    content: "100% gratuit";
    position: absolute;
    right: -10px;
    top: -11px;
    padding: 5px 8px;
    border-radius: 999px;
    background: #fbbf24;
    color: #111827;
    font-size: 10px;
    font-weight: 1000;
    text-transform: uppercase;
    letter-spacing: .04em;
    box-shadow: 0 8px 18px rgba(251,191,36,.28);
}

@media (max-width: 640px) {
    .free-pilot-note {
        align-items: flex-start;
    }

    .btn.primary::after {
        right: 8px;
        top: -12px;
    }
}



/* =========================================================
   StationPro - formulaire pleine largeur
   ========================================================= */

.form-section {
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 22px !important;
    width: 100% !important;
    max-width: 1160px !important;
    margin: 34px auto 90px !important;
    align-items: stretch !important;
}

.form-copy {
    width: 100% !important;
    max-width: none !important;
    padding: 30px !important;
    display: grid !important;
    grid-template-columns: 1fr auto !important;
    gap: 18px 28px !important;
    align-items: center !important;
}

.form-copy .eyebrow {
    grid-column: 1 / -1 !important;
    margin-bottom: 0 !important;
}

.form-copy h2 {
    margin: 0 !important;
    max-width: 620px !important;
}

.form-copy p {
    margin: 0 !important;
    max-width: 520px !important;
    justify-self: end !important;
}

.lead-form {
    width: 100% !important;
    max-width: none !important;
    padding: 30px !important;
    display: grid !important;
    grid-template-columns: 1fr 1fr !important;
    gap: 18px !important;
    align-items: start !important;
}

.lead-form > input[type="hidden"],
.lead-form > .hp {
    display: none !important;
}

.lead-form > .free-form-callout,
.lead-form > .errors,
.lead-form > label,
.lead-form > .two,
.lead-form > textarea,
.lead-form > .consent,
.lead-form > .btn,
.lead-form > .small {
    grid-column: 1 / -1 !important;
}

.lead-form > .two {
    display: grid !important;
    grid-template-columns: 1fr 1fr !important;
    gap: 18px !important;
}

.lead-form input,
.lead-form select,
.lead-form textarea {
    min-height: 52px !important;
}

.lead-form textarea {
    min-height: 120px !important;
}

.lead-form .btn.full {
    max-width: 520px !important;
    justify-self: center !important;
    min-height: 56px !important;
}

.lead-form .small {
    max-width: 720px !important;
    justify-self: center !important;
}

.free-form-callout {
    width: 100% !important;
}

@media (max-width: 860px) {
    .form-copy {
        grid-template-columns: 1fr !important;
    }

    .form-copy p {
        justify-self: start !important;
        max-width: none !important;
    }

    .lead-form,
    .lead-form > .two {
        grid-template-columns: 1fr !important;
    }

    .lead-form .btn.full {
        max-width: none !important;
    }
}
