/* --------------- HEADER --------------- */

:root {
    --brand-transition-height: 34px;
}

.brand-transition {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 120;
    min-height: var(--brand-transition-height);
    padding: .45rem 3rem;
    background: var(--blue-background-color);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    text-align: center;
    box-sizing: border-box;
}

.brand-transition p {
    margin: 0;
    font-size: 13px;
    font-weight: 600;
    line-height: 1.25;
}

.brand-transition-close {
    position: absolute;
    right: 1rem;
    top: 50%;
    transform: translateY(-50%);
    width: 26px;
    height: 26px;
    border: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.16);
    color: #fff;
    font-size: 18px;
    line-height: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background-color .15s ease, transform .15s ease;
}

.brand-transition-close:hover {
    background: rgba(255, 255, 255, 0.26);
    transform: translateY(-50%) scale(1.04);
}

body.brand-transition-dismissed .brand-transition {
    display: none;
}

.header {
    position: fixed;
    top: var(--brand-transition-height);
    left: 0;
    right: 0;
    z-index: 100;
    background-color: transparent;
    border-bottom: 1px solid transparent;
    transition: top .2s ease, background-color 0.22s, border-color 0.22s, backdrop-filter 0.22s;
}

body.brand-transition-dismissed .header {
    top: 0;
}

.header.scrolled {
    background-color: #ffffffa4;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-bottom: 1px solid #6670851a;
}

.header-inner {
    max-width: 1180px;
    margin: 0 auto;
    padding: 1rem 2rem;
    display: flex;
    align-items: center;
    gap: 2rem;
}

.logo {
    display: flex;
    align-items: center;
    gap: .5rem;
    color: var(--title-color);
    font-weight: 700;
    font-size: 17px;
    flex-shrink: 0;
}

.logo-text {
    display: flex;
    flex-direction: column;
    gap: 1px;
    line-height: 1;
}

.logo-brand {
    color: var(--title-color);
}

.logo-legacy {
    color: var(--text-color);
    font-size: 10px;
    font-weight: 500;
    line-height: 1.1;
    white-space: nowrap;
}

.logo-img {
    width: 36px;
    height: 36px;
    border-radius: 9px;
    object-fit: contain;
}

.nav {
    display: flex;
    align-items: center;
    gap: 2rem;
    flex: 1;
    min-width: 0;
}

.nav-list {
    display: flex;
    align-items: center;
    gap: .25rem;
    margin-left: 1rem;
}

.nav-item {
    position: relative;
}

.nav-link {
    display: flex;
    align-items: center;
    gap: .25rem;
    padding: .5rem .75rem;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 500;
    color: var(--text-color);
    background: none;
    border: none;
    cursor: pointer;
    font-family: inherit;
    white-space: nowrap;
}

.nav-link:hover {
    color: var(--title-color);
    background-color: var(--primary-background-color);
}

.nav-item:hover svg,
.nav-item:focus-within svg {
    transform: rotate(180deg);
}

.dropdown {
    position: absolute;
    top: calc(100% + 10px);
    left: 0;
    width: max-content;
    background-color: #fff;
    border: 1px solid #6670851a;
    border-radius: 14px;
    box-shadow: 0 20px 48px -12px rgba(15, 23, 42, 0.18);
    padding: .5rem;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-6px);
    transition: opacity .15s, transform .15s, visibility .15s;
    z-index: 10;
}

.nav-item:hover .dropdown,
.nav-item:focus-within .dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-item {
    display: flex;
    align-items: flex-start;
    gap: .75rem;
    padding: .6rem;
    border-radius: 10px;
    color: var(--title-color);
}

.dropdown-item:hover {
    background-color: var(--primary-background-color);
}

.dropdown-item strong {
    display: block;
    font-size: 13px;
    margin-bottom: 2px;
}

.dropdown-divider {
    border: none;
    border-top: 1px solid #6670851a;
    margin: .4rem;
}

/* Actions */
.header-actions {
    margin-left: auto;
    display: flex;
    align-items: center;
    gap: .5rem;
    flex-shrink: 0;
}

.header-actions .button {
    padding: .6rem 1.2rem;
    font-size: 13.5px;
    margin-top: 0;
    white-space: nowrap;
}

/* Bouton burger — masqué en desktop */
.burger {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    width: 40px;
    height: 40px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 210;
    flex-shrink: 0;
}

.burger span {
    display: block;
    width: 22px;
    height: 2px;
    background-color: var(--title-color);
    border-radius: 2px;
    transition: transform .25s ease, opacity .25s ease;
}

.burger[aria-expanded="true"] span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.burger[aria-expanded="true"] span:nth-child(2) {
    opacity: 0;
}

.burger[aria-expanded="true"] span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

.nav-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(15, 23, 42, 0.4);
    z-index: 150;
    opacity: 0;
    visibility: hidden;
    transition: opacity .25s ease, visibility .25s ease;
}

.nav-overlay.active {
    opacity: 1;
    visibility: visible;
}

/* ===================================================== */
/* RESPONSIVE HEADER                                      */
/* ===================================================== */

@media (max-width: 600px) {
    :root {
        --brand-transition-height: 42px;
    }

    .brand-transition {
        padding: .5rem 2.75rem .5rem 1rem;
    }

    .brand-transition p {
        font-size: 12px;
    }
}

@media (max-width: 380px) {
    .logo-legacy {
        display: none;
    }
}

@media (max-width: 900px) {
    .header {
        position: fixed;
        background-color: #fff;
        border-bottom: 1px solid rgba(102, 112, 133, 0.16);
    }

    .header.scrolled {
        background-color: #fff;
    }

    .header-inner {
        padding: .85rem 1.25rem;
        gap: 1rem;
        position: relative;
    }

    .burger {
        display: flex;
        order: 3;
        margin-left: auto;
    }

    /* Le nav devient un panneau plein écran / off-canvas */
    .nav {
        position: fixed;
        top: 0;
        right: 0;
        height: 100vh;
        height: 100dvh;
        width: min(320px, 85vw);
        background: #fff;
        flex-direction: column;
        align-items: stretch;
        justify-content: flex-start;
        gap: 0;
        padding: 5.5rem 1.5rem 2rem;
        box-sizing: border-box;
        transform: translateX(100%);
        transition: transform .3s ease;
        overflow-y: auto;
        z-index: 200;
        box-shadow: -10px 0 30px rgba(15, 23, 42, 0.12);
    }

    .nav.open {
        transform: translateX(0);
    }

    .nav-overlay {
        display: block;
    }

    .nav-list {
        flex-direction: column;
        align-items: stretch;
        width: 100%;
        gap: .25rem;
        margin-left: 0;
    }

    .nav-item {
        width: 100%;
    }

    .nav-link {
        width: 100%;
        justify-content: space-between;
        padding: .85rem .9rem;
        font-size: 15px;
    }

    .dropdown {
        position: static;
        width: 100%;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        border: 1px solid #6670851a;
        margin-top: .35rem;
        display: grid;
        grid-template-rows: 0fr;
        transition: grid-template-rows .25s ease, margin .25s ease;
    }

    .dropdown-inner {
        overflow: hidden;
        min-height: 0;
        padding: 0 .5rem;
        transition: padding .25s ease;
    }

    .nav-item.dropdown-open .dropdown {
        grid-template-rows: 1fr;
        margin-bottom: .35rem;
    }

    .nav-item.dropdown-open .dropdown-inner {
        padding: .5rem;
    }

    .nav-item:hover svg,
    .nav-item:focus-within svg {
        transform: none;
    }

    .nav-link[aria-expanded="true"] svg {
        transform: rotate(180deg);
    }

    .header-actions {
        margin-left: 0;
        margin-top: 1.5rem;
        flex-direction: column;
        align-items: stretch;
        width: 100%;
        gap: .6rem;
        border-top: 1px solid #6670851a;
        padding-top: 1.5rem;
    }

    .header-actions .button {
        width: 100%;
        justify-content: center;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .header-inner {
        padding: .8rem 1rem;
    }

    .logo {
        font-size: 15px;
    }

    .logo-img {
        width: 30px;
        height: 30px;
    }

    .nav {
        width: 100%;
        max-width: 100%;
    }
}

/* Empêche le scroll du body quand le menu mobile est ouvert */
body.nav-locked {
    overflow: hidden;
}

/* --------------- FOOTER --------------- */

.footer {
    background-color: var(--dark-background-color);
    padding: 4rem 0 2rem;
}

.footer-inner {
    max-width: 1180px;
    margin: 0 auto;
    padding: 0 2rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.6fr 1fr 1fr 1fr;
    gap: 2.5rem;
}

.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: .5rem;
    color: var(--title-color-light);
    font-weight: 700;
    font-size: 17px;
}

.footer-logo-img {
    width: 36px;
    height: 36px;
    border-radius: 9px;
    object-fit: contain;
}

.footer-tagline {
    font-size: 14px;
    line-height: 1.6;
    color: #F6F7FB8C;
}

.footer-badge {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    width: fit-content;
    border: 1px solid #F6F7FB26;
    border-radius: 25px;
    padding: .5rem 1rem;
    font-size: 12px;
    color: #F6F7FB8C;
}

.footer-badge i {
    color: #22c55e;
    font-size: 12px;
}

.footer-col-title {
    font-size: 12px;
    letter-spacing: .04em;
    text-transform: uppercase;
    font-family: "JetBrains Mono";
    font-weight: 600;
    color: #F6F7FB66;
    margin-bottom: 1.1rem;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: .75rem;
}

.footer-links a {
    font-size: 14px;
    color: #F6F7FBA6;
    transition: color 0.15s;
}

.footer-links a:hover {
    color: var(--title-color-light);
}

.footer-bottom {
    margin-top: 3.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid #F6F7FB1A;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 13px;
    color: #F6F7FB66;
}

/* --------------- HOMEPAGE --------------- */

/* Hero header */
.home-hero {
    position: relative;
    overflow: hidden;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 3rem;
    width: 100%;
    max-width: 1180px;
    margin: 0 auto;
    min-height: 90vh;
    padding: 8rem 2rem 4rem;
    box-sizing: border-box;
    margin-top: 4rem;
}

.hero-glow {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 0;
}

.hero-glow-top {
    position: absolute;
    top: -15%;
    right: -8%;
    width: 56%;
    height: 80%;
    background: radial-gradient(circle, color-mix(in srgb, var(--blue-background-color) 9%, transparent), transparent 65%);
}

.hero-glow-bottom {
    position: absolute;
    bottom: 10%;
    left: -6%;
    width: 44%;
    height: 50%;
    background: radial-gradient(circle, color-mix(in srgb, var(--blue-background-color) 5%, transparent), transparent 65%);
}

.home-hero-left {
    flex: 0 1 calc(48% - 1.5rem);
    min-width: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 1rem;
}

.home-hero-left p {
    line-height: 2rem;
}

.hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.home-hero-right {
    flex: 0 1 calc(52% - 1.5rem);
    min-width: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.home-hero-right img {
    width: 100%;
}

.cadre {
    background-color: #fff;
    border-radius: 14px;
    border: 1px solid #6670851a;
    box-shadow: 0 20px 48px -12px rgba(15, 23, 42, 0.18);
    overflow: hidden;
    max-width: 450px;
    width: 100%;
    max-height: 250px;
    height: 100%;
}

.cadre::before {
    content: "";
    display: block;
    height: 40px;
    background-color: var(--primary-background-color);
    border-bottom: 1px solid #6670851a;
    background-image:
        radial-gradient(circle 5.5px at 20px 20px, #ff5f57 100%, transparent 0),
        radial-gradient(circle 5.5px at 40px 20px, #febc2e 100%, transparent 0),
        radial-gradient(circle 5.5px at 60px 20px, #28c840 100%, transparent 0);
    background-repeat: no-repeat;
}

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

.hero-features {
    display: flex;
    justify-content: center;
    align-items: center;
    background: #fff;
    border: 1px solid #E5E7EB;
    border-radius: 16px;
    overflow: hidden;
    width: fit-content;
    margin: 3rem auto 0;
    box-shadow: 0 8px 24px rgba(15, 23, 42, 0.05);
}

.hero-feature {
    display: flex;
    align-items: center;
    gap: .75rem;
    padding: 1.25rem 2rem;
    min-width: 220px;
}

.hero-feature:not(:last-child) {
    border-right: 1px solid #E5E7EB;
}

.hero-feature i {
    color: var(--blue-background-color);
    font-size: 2rem;
    flex-shrink: 0;
}

.hero-feature span {
    color: var(--title-color);
    font-size: .9rem;
    font-weight: 500;
    line-height: 1.4;
}

/* Partenaires section défilante */
.partners-section {
    width: 100%;
    align-self: stretch;
    min-height: 20vh;
    background: var(--lightblue-background-color);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    border-bottom: 1px solid #6670851c;
    padding: 2rem 0;
}

.partners-label {
    text-align: center;
    font-family: "JetBrains Mono", monospace;
    font-size: 11px;
    letter-spacing: .09em;
    text-transform: uppercase;
    color: var(--text-color);
    margin-bottom: 28px;
}

.partners-track {
    width: 100%;
    overflow: hidden;
    mask-image: linear-gradient(90deg, transparent, black 12%, black 88%, transparent);
    -webkit-mask-image: linear-gradient(90deg, transparent, black 12%, black 88%, transparent);
}

.partners-inner {
    display: flex;
    align-items: center;
    width: max-content;
    animation: marquee 40s linear infinite;
}

.partners-inner:hover {
    animation-play-state: paused;
}

@keyframes marquee {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
}

.partner-logo {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 40px;
    margin-right: 64px;
    user-select: none;
}

.partner-logo img {
    height: 100%;
    width: auto;
    max-width: 140px;
    object-fit: contain;
    filter: grayscale(100%) opacity(0.6);
    transition: filter .2s;
}

.partner-logo:hover img {
    filter: grayscale(0%) opacity(1);
}

.partner-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background-color: #6670854D;
    flex-shrink: 0;
}

/* section about */
.home-about {
    width: 100%;
    max-width: 1180px;
    margin: 0 auto;
    min-height: 65vh;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 3rem;
    padding: 5rem 2rem;
    box-sizing: border-box;
}

.home-about-left {
    flex: 1 1 420px;
    min-width: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 1rem;
}

.home-about-left p:first-child {
    line-height: .8rem;
}

.home-about-right {
    flex: 1 1 380px;
    min-width: 0;
    display: flex;
    justify-content: right;
    align-items: center;
}

/* Section nos solutions */
.home-solutions {
    width: 100%;
    max-width: 1180px;
    margin: 0 auto;
    padding: 0 2rem;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.titles {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    gap: 1rem;
    margin: 6rem 0rem;
}

.home-solutions-items {
    margin: 4rem 0rem;
    width: 100%;
    display: flex;
    justify-content: center;
    flex-direction: column;
    gap: 6rem;
}

.home-solutions-item {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 3rem;
}

.home-solutions-item-reverse {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 3rem;
    flex-direction: row-reverse;
}

.home-solutions-item .left {
    flex: 1 1 320px;
    min-width: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 1rem;
} 

.home-solutions-item-reverse .left {
    flex: 1 1 320px;
    min-width: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 1rem;
}

.home-solutions-item .right,
.home-solutions-item-reverse .right {
    flex: 1 1 320px;
    min-width: 0;
}

.chiffres {
    width: 100%;
    min-height: 50vh;
    background: var(--lightblue-background-color);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 5rem 2rem;
    box-sizing: border-box;
}

.chiffres h2 {
    text-align: center;
}

.chiffres-box {
    width: 100%;
    max-width: 900px;
    border-radius: 15px;
    border: solid 1px #6670854D;
    background: #fff;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    margin-top: 2rem;
}

.chiffres-box-element {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 2rem 1rem;
    border-left: solid 1px #6670854D;
}

.chiffres-box-element:first-child {
    border-left: none;
}

.chiffres-title {
    font-size: 2.5rem;
    font-weight: 700;
    font-family: "JetBrains Mono";
}

/* Section sécurité & conformité */
.dark-securite {
    width: 100%;
    background: var(--dark-background-color);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 6rem 2rem;
}

.dark-securite h2 {
    color: var(--title-color-light);
    margin-top: 1rem;
    max-width: 600px;
}

.dark-securite .p2 {
    color: #F6F7FB8C;
    max-width: 600px;
    margin: 1rem auto 0;
}

.securite-grid {
    width: 100%;
    max-width: 1180px;
    margin-top: 3rem;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
}

.securite-card {
    background: #F6F7FB0D;
    border: 1px solid #F6F7FB1A;
    border-radius: 14px;
    padding: 1.75rem;
    text-align: left;
    transition: background-color .2s;
}

.securite-card:hover {
    background: #F6F7FB1A;
}

.securite-icon {
    width: 2.75rem;
    height: 2.75rem;
    border-radius: 10px;
    background: #0EA5E933;
    color: var(--eybrow-blue-color);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    margin-bottom: 1.25rem;
}

.securite-card h4 {
    color: var(--title-color-light);
    font-size: 17px;
    font-weight: 700;
    margin-bottom: .6rem;
}

.securite-card p {
    color: #F6F7FB8C;
    font-size: 14px;
    line-height: 1.6rem;
}

/* Section témoignages dynamique */
.temoignages {
    width: 100%;
    max-width: 1180px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 6rem 2rem;
    box-sizing: border-box;
}

.temoignages h2 {
    max-width: 600px;
    margin-top: 1rem;
}

.temoignages-slider {
    position: relative;
    width: 100%;
    max-width: 720px;
    margin-top: 3rem;
    overflow: hidden;
    padding-bottom: 1rem;
}

.temoignage-track {
    display: flex;
    transition: transform .5s cubic-bezier(.4,0,.2,1);
}

.temoignage-card {
    flex: 0 0 100%;
    background: #fff;
    border: 1px solid #6670851a;
    border-radius: 16px;
    box-shadow: 0 20px 48px -12px rgba(15, 23, 42, 0.1);
    padding: 2.5rem;
    text-align: left;
}

.temoignage-quote-icon {
    font-family: Georgia, serif;
    font-size: 3.5rem;
    line-height: 1;
    color: var(--eybrow-blue-color);
    opacity: .3;
    display: block;
    margin-bottom: .5rem;
}

.temoignage-text {
    font-size: 17px;
    line-height: 1.7rem;
    color: var(--title-color);
    margin-bottom: 1.5rem;
}

.temoignage-author {
    display: flex;
    align-items: center;
    gap: .85rem;
}

.temoignage-avatar {
    width: 2.75rem;
    height: 2.75rem;
    border-radius: 50%;
    background: var(--chip-background-color);
    color: var(--eybrow-blue-color);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 13px;
    flex-shrink: 0;
}

.temoignage-author-info {
    display: flex;
    flex-direction: column;
}

.temoignage-author-info b {
    font-size: 14px;
    color: var(--title-color);
}

.temoignage-author-info span {
    font-size: 13px;
    color: var(--text-color);
}

/* Navigation flèches */
.temoignage-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 50%;
    background: #fff;
    border: 1px solid #6670854D;
    color: var(--title-color);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 1.1rem;
    transition: background-color .15s, border-color .15s;
}

.temoignage-nav:hover {
    background: var(--primary-background-color);
    border-color: var(--blue-background-color);
    color: var(--blue-background-color);
}

.temoignage-prev { left: -3.25rem; }
.temoignage-next { right: -3.25rem; }

/* Points de navigation */
.temoignage-dots {
    display: flex;
    justify-content: center;
    gap: .5rem;
    margin-top: 1.75rem;
}

.temoignage-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: #6670854D;
    cursor: pointer;
    transition: background-color .2s, transform .2s;
    border: none;
    padding: 0;
}

.temoignage-dot.active {
    background-color: var(--blue-background-color);
    transform: scale(1.3);
}

/* --------------- FAQ --------------- */
.faq-wrapper {
    width: 100%;
    background-color: var(--lightblue-background-color);
    display: flex;
    justify-content: center;
}

.faq {
    width: 100%;
    max-width: 740px;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 6rem 2rem;
    box-sizing: border-box;
}

.faq-list {
    width: 100%;
    margin-top: 2rem;
}

.faq-item {
    border-top: 1px solid #6670851a;
}

.faq-list .faq-item:last-child {
    border-bottom: 1px solid #6670851a;
}

.faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
    background: none;
    border: none;
    cursor: pointer;
    font-family: inherit;
    text-align: left;
    padding: 1.5rem 0;
    font-size: 16px;
    font-weight: 600;
    color: var(--title-color);
}

.faq-icon {
    flex-shrink: 0;
    width: 1.5rem;
    height: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-color);
    font-size: 1rem;
    transition: transform .25s ease;
}

.faq-item.active .faq-icon {
    transform: rotate(135deg);
    color: var(--blue-background-color);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height .3s ease;
}

.faq-answer p {
    font-size: 15px;
    line-height: 1.7rem;
    color: var(--text-color);
    padding-bottom: 1.5rem;
    padding-right: 2.5rem;
}

.faq-item.active .faq-answer {
    max-height: 300px;
}

/* --------------- CTA CONTACT --------------- */
.cta-contact {
    width: 100%;
    background: linear-gradient(135deg, #1674b9 0%, #0b5a94 45%, #0d3f66 100%);
    display: flex;
    justify-content: center;
    padding: 6rem 2rem;
}

.cta-contact-inner {
    width: 100%;
    max-width: 700px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.cta-contact-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    margin-bottom: 3rem;
}

.eyebrow-light {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #ffffffcc;
    font-size: 12px;
    font-family: "JetBrains Mono";
    font-weight: 600;
    text-transform: uppercase;
}

.eyebrow-light::before {
    content: "";
    width: 30px;
    height: 2px;
    background-color: #ffffffcc;
}

.cta-contact-header h2 {
    color: #fff;
}

.cta-contact-header p {
    color: #ffffffb3;
    font-size: 15px;
    line-height: 1.7rem;
    max-width: 480px;
}

.cta-form-card {
    width: 100%;
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 25px 60px -12px rgba(0, 0, 0, 0.35);
    padding: 2.5rem;
    text-align: left;
}

.cta-form-card h3 {
    font-size: 20px;
    color: var(--title-color);
    margin-bottom: 1.5rem;
}

.cta-form {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.cta-form-row {
    display: flex;
    gap: 1.25rem;
}

.cta-form-row .cta-form-group {
    flex: 1;
}

.cta-form-group {
    display: flex;
    flex-direction: column;
    gap: .5rem;
}

.cta-form-group label {
    font-size: 13px;
    font-weight: 600;
    color: var(--title-color);
}

.cta-form-group input,
.cta-form-group select,
.cta-form-group textarea {
    font-family: inherit;
    font-size: 14px;
    color: var(--title-color);
    background-color: var(--primary-background-color);
    border: 1px solid #6670854D;
    border-radius: 8px;
    padding: .75rem .9rem;
    outline: none;
    transition: border-color .15s;
}

.cta-form-group input::placeholder,
.cta-form-group textarea::placeholder {
    color: #667085a6;
}

.cta-form-group input:focus,
.cta-form-group select:focus,
.cta-form-group textarea:focus {
    border-color: var(--blue-background-color);
}

.cta-form-group select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%23667085' d='M1 1l5 5 5-5'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right .9rem center;
    cursor: pointer;
}

.cta-form-group textarea {
    resize: vertical;
    min-height: 90px;
}

.cta-form-submit {
    appearance: none;
    -webkit-appearance: none;
    border: none;
    outline: none;
    cursor: pointer;
    width: 100%;
    justify-content: center;
    margin-top: .5rem;
    font-family: inherit;
    font-size: 15px;
}

.cta-form-footer {
    text-align: center;
    font-size: 12.5px;
    color: var(--text-color);
    margin-top: 1rem;
}

/* ------------------- PAGE A PROPOS ------------------- */
.about-hero {
    width: 100%;
    min-height: 55vh;
    background-color: var(--lightblue-background-color);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    gap: 1rem;
    padding-top: 6rem;
    padding-bottom: 3rem;
    border-bottom: solid 1px #6670854D;
}

.brand-transition-note {
    width: min(100%, 760px);
    margin-top: 1rem;
    padding: 1.15rem 1.35rem;
    border: 1px solid rgba(22, 116, 185, 0.18);
    border-radius: 14px;
    background: #fff;
    box-shadow: 0 12px 30px rgba(15, 23, 42, 0.06);
    text-align: left;
}

.brand-transition-note p {
    margin: 0;
    color: var(--text-color);
    font-size: 15px;
    line-height: 1.7;
}

.brand-transition-note strong {
    color: var(--blue-background-color);
}

.about-story {
    width: 100%;
    display: flex;
    justify-content: center;
    padding: 6rem 2rem;
    box-sizing: border-box;
}

.about-story-inner {
    width: 100%;
    max-width: 1180px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 4rem;
}

.story-left {
    flex: 1 1 420px;
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.story-right {
    flex: 1 1 380px;
    min-width: 0;
}

/* Timeline */
.timeline {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
    padding-left: 2rem;
}

.timeline::before {
    content: "";
    position: absolute;
    top: 6px;
    left: 5px;
    width: 1px;
    height: calc(100% - 12px);
    background-color: #6670854D;
}

.timeline-item {
    position: relative;
}

.timeline-dot {
    position: absolute;
    top: 6px;
    left: -2rem;
    width: 11px;
    height: 11px;
    border-radius: 50%;
    background-color: #fff;
    border: 2px solid var(--blue-background-color);
    box-sizing: border-box;
}

.timeline-year {
    display: block;
    font-family: "JetBrains Mono";
    font-size: 12px;
    font-weight: 600;
    letter-spacing: .04em;
    text-transform: uppercase;
    color: var(--eybrow-blue-color);
    margin-bottom: .4rem;
}

.timeline-title {
    font-size: 19px;
    font-weight: 700;
    color: var(--title-color);
    margin-bottom: .5rem;
}

.timeline-text {
    font-size: 14.5px;
    line-height: 1.7rem;
    color: var(--text-color);
    max-width: 400px;
}

.mission {
    width: 100%;
    display: flex;
    justify-content: center;
    padding: 6rem 2rem;
    box-sizing: border-box;
    background-color: var(--lightblue-background-color);
    border-top: solid 1px #6670854D;
}

.mission-inner {
    width: 100%;
    max-width: 1180px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.mission .titles {
    max-width: 720px;
}

.mission .titles h2 {
    text-align: center;
}

.mission .titles p {
    text-align: center;
}

.mission-grid {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-top: 1rem;
}

.mission-card {
    background: #fff;
    border: 1px solid #6670851a;
    border-radius: 14px;
    box-shadow: 0 20px 48px -12px rgba(15, 23, 42, 0.1);
    padding: 1.75rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.mission-card h4 {
    font-size: 17px;
    font-weight: 700;
    color: var(--title-color);
}

.mission-card p {
    font-size: 14px;
    line-height: 1.7rem;
    color: var(--text-color);
}

.valeurs {
    width: 100%;
    display: flex;
    justify-content: center;
    padding: 3rem 2rem;
    box-sizing: border-box;
}

.valeurs-inner {
    width: 100%;
    max-width: 1180px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.valeurs .titles {
    margin-bottom: 0;
}

.valeurs .titles h2 {
    text-align: center;
    margin-bottom: 2rem;
}

.valeurs-box {
    width: 100%;
    border-radius: 15px;
    border: solid 1px #6670854D;
    background: #fff;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
}

.valeurs-box-element {
    display: flex;
    flex-direction: column;
    gap: .9rem;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 2.5rem 1.5rem;
    border-left: solid 1px #6670854D;
}

.valeurs-box-element:first-child {
    border-left: none;
}

.valeurs-icon {
    width: 2.75rem;
    height: 2.75rem;
    border-radius: 50%;
    background: #0EA5E933;
    color: var(--eybrow-blue-color);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
}

.valeurs-box-element h4 {
    font-size: 16px;
    font-weight: 700;
    color: var(--title-color);
}

.valeurs-box-element p {
    font-size: 13.5px;
    line-height: 1.6rem;
    color: var(--text-color);
}

/* --------------- FAQ PAGE --------------- */
.faq-hero {
    position: relative;
    overflow: hidden;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 1rem;
    padding: 8rem 2rem 4rem;
    background: var(--lightblue-background-color);
    box-sizing: border-box;
}

.faq-hero .p1 {
    max-width: 600px;
}

.faq-filters {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: .6rem;
    margin-bottom: 3rem;
    width: 100%;
}

.faq-filter {
    font-family: inherit;
    font-size: 13.5px;
    font-weight: 600;
    color: var(--text-color);
    background: #fff;
    border: 1px solid #6670854D;
    border-radius: 25px;
    padding: .6rem 1.2rem;
    cursor: pointer;
    transition: background-color .15s, border-color .15s, color .15s;
}

.faq-filter:hover {
    border-color: var(--blue-background-color);
    color: var(--blue-background-color);
}

.faq-filter.active {
    background-color: var(--blue-background-color);
    border-color: var(--blue-background-color);
    color: #fff;
}

.faq-groups {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
    width: 100%;
}

.faq-group-title {
    display: flex;
    align-items: center;
    gap: .75rem;
    margin-bottom: .5rem;
}

.faq-group-title .icon {
    width: 2.25rem;
    height: 2.25rem;
    font-size: 1.1rem;
    border-radius: 8px;
}

.faq-group-title h4 {
    font-size: 15px;
    font-weight: 700;
    color: var(--title-color);
}

.faq-empty {
    text-align: center;
    color: var(--text-color);
    font-size: 14px;
    padding: 3rem 0;
}

/* --------------- CONTACT HERO --------------- */
.contact-hero {
    position: relative;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 1rem;
    padding: 8rem 2rem 4rem;
    background: var(--lightblue-background-color);
    box-sizing: border-box;
}

.contact-hero .p1 {
    max-width: 600px;
}

/* --------------- CONTACT SECTION --------------- */
.contact-section {
    width: 100%;
    display: flex;
    justify-content: center;
    padding: 5rem 2rem;
    box-sizing: border-box;
}

.contact-container {
    width: 100%;
    max-width: 1180px;
    display: grid;
    grid-template-columns: 1fr 1.15fr;
    gap: 4rem;
    align-items: start;
}

/* Colonne infos */
.contact-info h2 {
    font-size: 32px;
    margin-bottom: .75rem;
}

.contact-info > .p1 {
    margin-bottom: 2rem;
}

.contact-info-list {
    display: flex;
    flex-direction: column;
    gap: .9rem;
}

.contact-info-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    width: 100%;
    text-align: left;
    background: #fff;
    border: 1px solid #6670854D;
    border-radius: 12px;
    padding: 1.1rem 1.25rem;
    font-family: inherit;
    cursor: pointer;
    transition: border-color .15s, box-shadow .15s;
}

.contact-info-item:not(.contact-info-static):hover {
    border-color: var(--blue-background-color);
    box-shadow: 0 10px 24px -8px rgba(22, 116, 185, 0.18);
}

.contact-info-static {
    cursor: default;
}

.contact-info-item .icon {
    width: 2.5rem;
    height: 2.5rem;
    font-size: 1.15rem;
    flex-shrink: 0;
}

.contact-info-whatsapp .icon {
    background-color: rgba(37, 211, 102, 0.14);
    color: #25D366;
}

.contact-info-whatsapp .icon svg {
    width: 1.35rem;
    height: 1.35rem;
    display: block;
    fill: currentColor;
}

.contact-info-text {
    display: flex;
    flex-direction: column;
    gap: 2px;
    flex: 1;
    min-width: 0;
}

.contact-info-text strong {
    font-size: 14.5px;
    color: var(--title-color);
}

.contact-info-text span {
    font-size: 13px;
    color: var(--text-color);
}

.contact-info-sub {
    opacity: .8;
}

.contact-info-arrow {
    color: var(--text-color);
    font-size: 1rem;
    flex-shrink: 0;
}

/* Horaires */
.contact-hours {
    margin-top: 1.75rem;
    background: var(--primary-background-color);
    border: 1px solid #6670854D;
    border-radius: 12px;
    padding: 1.25rem 1.5rem;
}

.contact-hours-title {
    display: flex;
    align-items: center;
    gap: .5rem;
    font-size: 13px;
    font-weight: 700;
    color: var(--title-color);
    margin-bottom: .9rem;
}

.contact-hours-title i {
    color: var(--eybrow-blue-color);
}

.contact-hours-row {
    display: flex;
    justify-content: space-between;
    font-size: 13px;
    color: var(--text-color);
    padding: .4rem 0;
    border-top: 1px solid #6670854D;
}

.contact-hours-row:first-of-type {
    border-top: none;
}

/* Bandeau confiance */
.contact-trust {
    display: flex;
    flex-wrap: wrap;
    gap: 1.25rem;
    margin-top: 1.5rem;
    font-size: 12px;
    color: var(--text-color);
}

.contact-trust span {
    display: flex;
    align-items: center;
    gap: .4rem;
}

.contact-trust i {
    color: var(--eybrow-blue-color);
}

/* --------------- FORM CARD --------------- */
.contact-form-card {
    background: #fff;
    border: 1px solid #6670851a;
    border-radius: 16px;
    box-shadow: 0 20px 48px -12px rgba(15, 23, 42, 0.12);
    padding: 2rem;
}

.contact-tabs {
    display: flex;
    gap: .4rem;
    background: var(--primary-background-color);
    border-radius: 10px;
    padding: .3rem;
    margin-bottom: 1.75rem;
}

.contact-tab {
    flex: 1;
    font-family: inherit;
    font-size: 13.5px;
    font-weight: 600;
    color: var(--text-color);
    background: none;
    border: none;
    border-radius: 8px;
    padding: .65rem;
    cursor: pointer;
    transition: background-color .15s, color .15s;
}

.contact-tab.active {
    background: #fff;
    color: var(--title-color);
    box-shadow: 0 2px 6px rgba(15, 23, 42, 0.08);
}

/* Sélecteur de profil */
.profile-select {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: .6rem;
}

.profile-option {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 2px;
    border: 1px solid #6670854D;
    border-radius: 10px;
    padding: .75rem .5rem;
    cursor: pointer;
    transition: border-color .15s, background-color .15s;
}

.profile-option input {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.profile-option-title {
    font-size: 12.5px;
    font-weight: 700;
    color: var(--title-color);
}

.profile-option-sub {
    font-size: 11px;
    color: var(--text-color);
}

.profile-option:has(input:checked) {
    border-color: var(--blue-background-color);
    background: var(--chip-background-color);
}

.profile-option:has(input:checked) .profile-option-title {
    color: var(--eybrow-blue-color);
}

/* --------------- MODALE CONTACT --------------- */
.contact-modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(15, 23, 42, 0.55);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1.5rem;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: opacity .2s, visibility .2s;
}

.contact-modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.contact-modal {
    width: 100%;
    max-width: 460px;
    max-height: 90vh;
    overflow-y: auto;
    background: #fff;
    border-radius: 16px;
    padding: 2.25rem;
    position: relative;
    transform: translateY(12px);
    transition: transform .2s;
}

.contact-modal-overlay.active .contact-modal {
    transform: translateY(0);
}

.contact-modal-close {
    position: absolute;
    top: 1.25rem;
    right: 1.25rem;
    width: 2rem;
    height: 2rem;
    border-radius: 50%;
    background: var(--primary-background-color);
    border: none;
    color: var(--text-color);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 1rem;
}

.contact-modal-close:hover {
    background: #6670854D;
}

.contact-modal-icon {
    width: 3rem;
    height: 3rem;
    border-radius: 10px;
    background: #0EA5E933;
    color: var(--eybrow-blue-color);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    margin-bottom: 1.25rem;
}

.contact-modal h3 {
    font-size: 20px;
    color: var(--title-color);
    margin-bottom: .5rem;
}

.contact-modal .p2 {
    margin-bottom: 1.5rem;
    line-height: 1.6rem;
}

.form-feedback {
    font-size: 13.5px;
    padding: .85rem 1rem;
    border-radius: 8px;
    margin-top: -.25rem;
}

.form-feedback-success {
    background-color: #dcfce7;
    color: #166534;
}

.form-feedback-error {
    background-color: #fee2e2;
    color: #991b1b;
}

.cta-form-submit:disabled {
    opacity: .7;
    cursor: not-allowed;
}

.contact-form-header {
    display: flex;
    align-items: flex-start;
    gap: .9rem;
    background: var(--primary-background-color);
    border-radius: 10px;
    padding: 1rem 1.1rem;
    margin-bottom: 1.5rem;
}

.contact-form-header-icon {
    width: 2.25rem;
    height: 2.25rem;
    border-radius: 8px;
    background: #0EA5E933;
    color: var(--eybrow-blue-color);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    flex-shrink: 0;
}

.contact-form-header strong {
    display: block;
    font-size: 14px;
    color: var(--title-color);
    margin-bottom: 2px;
}

.contact-form-header p {
    font-size: 13px;
    line-height: 1.5rem;
    color: var(--text-color);
}

.form-feedback {
    font-size: 13.5px;
    padding: .85rem 1rem;
    border-radius: 8px;
    margin-top: -.25rem;
}

.form-feedback-success {
    background-color: #dcfce7;
    color: #166534;
}

.form-feedback-error {
    background-color: #fee2e2;
    color: #991b1b;
}

.cta-form-submit:disabled {
    opacity: .7;
    cursor: not-allowed;
}

/* =======================================================
   PAGE SOLUTIONS — UPH (à coller en fin de style.css)
   ======================================================= */

/* --- Hero --- */
.solutions-hero {
    width: 100%;
    min-height: 50vh;
    background-color: var(--lightblue-background-color);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    gap: 1rem;
    padding: 8rem 2rem 4rem;
    box-sizing: border-box;
    border-bottom: solid 1px #6670854D;
}

.solutions-hero .p1 {
    max-width: 600px;
}

.solutions-hero-buttons {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
}

/* --- Conteneur onglets + panneau --- */
.solutions-tabs-section {
    width: 100%;
    max-width: 1180px;
    margin: 0 auto;
    padding: 3rem 2rem;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.solutions-tabbar {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: .6rem;
    margin-bottom: 3rem;
    width: 100%;
}

.solutions-tabbtn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: .55rem;
    flex: 0 1 auto;
    min-width: 0;
    font-family: inherit;
    font-size: 14px;
    font-weight: 600;
    color: var(--text-color);
    background-color: #fff;
    border: 1px solid #6670854D;
    border-radius: 12px;
    padding: .85rem 1.4rem;
    cursor: pointer;
    white-space: nowrap;
    transition: border-color .15s, color .15s, background-color .15s;
}

.solutions-tabbtn i {
    font-size: 14px;
    flex-shrink: 0;
}

.solutions-tabbtn:hover {
    border-color: var(--blue-background-color);
    color: var(--blue-background-color);
}

.solutions-tabbtn.active {
    background-color: var(--blue-background-color);
    border-color: var(--blue-background-color);
    color: #fff;
}

/* --- Panneau --- */
.solutions-panel {
    width: 100%;
    background: #fff;
    border: 1px solid #6670851a;
    border-radius: 18px;
    box-shadow: 0 20px 48px -12px rgba(15, 23, 42, 0.12);
    padding: 3rem;
    box-sizing: border-box;
}

.solutions-tabpanel {
    display: none;
}

.solutions-tabpanel.active {
    display: block;
}

.solutions-panel-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 3rem;
    align-items: flex-start;
}

.solutions-panel-left {
    flex: 1 1 340px;
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.solutions-panel-left h3 {
    font-size: 28px;
    line-height: 1.25;
}

.solutions-panel-visual {
    flex: 1.3 1 420px;
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

/* --- Emplacements images --- */
.solutions-visual-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.25rem;
}

.solutions-visual-row-2x2 {
    grid-template-columns: repeat(2, 1fr);
}

.solutions-img-frame {
    --ar: 16/10;
    aspect-ratio: var(--ar);
    background-color: var(--primary-background-color);
    border: 1px solid #6670854D;
    border-radius: 14px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.solutions-img-frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* =======================================================
   À COLLER EN FIN DE style.css
   Nouveaux composants utilisés par transport-programme.php
   ======================================================= */

.solutions-feature-mini {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
}

.solutions-feature-mini-item {
    display: flex;
    align-items: center;
    gap: .65rem;
}

.solutions-feature-mini-icon {
    flex-shrink: 0;
    width: 2.25rem;
    height: 2.25rem;
    border-radius: 8px;
    background: #0EA5E933;
    color: var(--eybrow-blue-color);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: .95rem;
}

.solutions-feature-mini-item span:last-child {
    font-size: 14px;
    font-weight: 600;
    color: var(--title-color);
}

.solutions-stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
    margin-top: .5rem;
}

.solutions-stats-item {
    background: var(--primary-background-color);
    border: 1px solid #6670854D;
    border-radius: 12px;
    padding: 1.25rem 1rem;
    text-align: center;
}

.solutions-stats-number {
    font-family: "JetBrains Mono";
    font-weight: 700;
    font-size: 1.6rem;
    color: var(--eybrow-blue-color);
    margin-bottom: .4rem;
}

.solutions-stats-label {
    font-size: 12.5px;
    line-height: 1.5rem;
    color: var(--text-color);
}

.solutions-stats-footnote {
    font-size: 11.5px;
    color: var(--text-color);
    opacity: .8;
    margin-top: .75rem;
    text-align: left;
}

/* =======================================================
   À COLLER EN FIN DE responsive.css
   ======================================================= */

@media (max-width: 760px) {
    .solutions-stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .solutions-stats-grid {
        grid-template-columns: 1fr;
    }

    .solutions-feature-mini {
        flex-direction: column;
        gap: .9rem;
    }
}

/* =======================================================
   À COLLER EN FIN DE style.css
   Nouveaux composants utilisés par regulation.php
   ======================================================= */

/* --- Chip "bientôt disponible" --- */
.chip-orange {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    background-color: #F59E0B26;
    color: #b45309;
    border: 1px solid #F59E0B26;
    padding: .5rem 1rem;
    border-radius: 25px;
    font-family: "JetBrains Mono";
    font-weight: 600;
    font-size: 12px;
    text-transform: uppercase;
    width: fit-content;
}

/* --- Showcase à onglets (blocs séparés + navigation) --- */
.device-showcase {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    max-width: 480px;
}

.device-showcase-tabbar {
    margin-bottom: 2rem;
}

.device-showcase-panel {
    width: 100%;
    display: flex;
    justify-content: center;
}

.device-panel-item {
    display: none;
    flex-direction: column;
    align-items: center;
    width: 100%;
}

.device-panel-item.active {
    display: flex;
}

/* --- Mockups d'écrans (moniteur + téléphones) --- */
.device-monitor {
    width: 100%;
    background: var(--dark-background-color);
    border-radius: 18px;
    padding: 14px;
    box-shadow: 0 30px 60px -20px rgba(15, 23, 42, 0.35);
    box-sizing: border-box;
}

.device-monitor-screen {
    width: 100%;
    aspect-ratio: 16/10;
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
}

.device-monitor-screen img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.device-monitor-stand {
    width: 70px;
    height: 26px;
    background: var(--dark-background-color);
    margin: 0 auto;
    border-radius: 0 0 6px 6px;
}

.device-monitor-base {
    width: 180px;
    height: 10px;
    background: var(--dark-background-color);
    margin: 0 auto 2rem;
    border-radius: 20px;
    opacity: .9;
}

.device-phone {
    width: 220px;
    background: var(--dark-background-color);
    border-radius: 26px;
    padding: 8px;
    box-shadow: 0 20px 40px -15px rgba(15, 23, 42, 0.3);
    box-sizing: border-box;
}

.device-phone-screen {
    width: 100%;
    aspect-ratio: 9/19;
    background: #fff;
    border-radius: 18px;
    overflow: hidden;
    position: relative;
}

.device-phone-screen::before {
    content: "";
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    width: 40%;
    height: 6px;
    background: rgba(15, 23, 42, 0.12);
    border-radius: 4px;
    z-index: 2;
}

.device-phone-screen img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* =======================================================
   À COLLER EN FIN DE responsive.css
   ======================================================= */

@media (max-width: 960px) {
    .device-showcase {
        max-width: 420px;
    }
}

@media (max-width: 600px) {
    .device-showcase-tabbar {
        margin-bottom: 1.5rem;
    }

    .device-phone {
        width: 180px;
    }

    .device-monitor-stand {
        width: 50px;
    }

    .device-monitor-base {
        width: 130px;
    }
}

/* =======================================================
   PAGE CONNEXION
   ======================================================= */
 
.auth-section {
    width: 100%;
    display: flex;
    justify-content: center;
    padding: 2.5rem 2rem 6rem;
    box-sizing: border-box;
}
 
.auth-container {
    width: 100%;
    max-width: 440px;
}
 
.auth-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 13px;
    color: var(--text-color);
    margin-top: -.25rem;
}
 
.auth-remember {
    display: flex;
    align-items: center;
    gap: .5rem;
    cursor: pointer;
}
 
.auth-remember input {
    accent-color: var(--blue-background-color);
    width: 14px;
    height: 14px;
}
 
.auth-forgot {
    color: var(--eybrow-blue-color);
    font-weight: 600;
}
 
.auth-forgot:hover {
    text-decoration: underline;
}
 
.auth-back {
    display: block;
    margin: 1.5rem auto 0;
    background: none;
    border: none;
    font-family: inherit;
    font-size: 13px;
    color: var(--text-color);
    cursor: pointer;
}
 
.auth-back:hover {
    color: var(--title-color);
}
 
#platform-card .contact-info-list {
    margin-bottom: .25rem;
}

.legal-hero {
    width: 100%;
    min-height: 38vh;
    background-color: var(--lightblue-background-color);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    gap: 1rem;
    padding: 8.5rem 2rem 3rem;
    border-bottom: solid 1px #6670854D;
    box-sizing: border-box;
}

.legal-hero h1 {
    max-width: 700px;
}

.legal-hero .p1 {
    max-width: 620px;
    width: 100%;
    text-align: center;
}

.legal-updated {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    font-size: 13px;
    color: var(--text-color);
    background-color: #fff;
    border: 1px solid #6670854D;
    padding: .5rem 1.1rem;
    border-radius: 25px;
    font-family: "JetBrains Mono";
}

.legal-updated i {
    color: var(--eybrow-blue-color);
}

.legal-section {
    width: 100%;
    display: flex;
    justify-content: center;
    padding: 5rem 2rem 6rem;
    box-sizing: border-box;
}

.legal-wrapper {
    width: 100%;
    max-width: 1180px;
    display: flex;
    align-items: flex-start;
    gap: 4rem;
}

.legal-toc {
    position: sticky;
    top: 7rem;
    flex: 0 0 260px;
    display: flex;
    flex-direction: column;
    gap: .2rem;
    padding: 1.5rem;
    background-color: #fff;
    border: 1px solid #6670854D;
    border-radius: 16px;
    max-height: calc(100vh - 9rem);
    overflow-y: auto;
}

.legal-toc-title {
    font-family: "JetBrains Mono";
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    color: var(--eybrow-blue-color);
    margin-bottom: .6rem;
    letter-spacing: .02em;
}

.legal-toc a {
    font-size: 13.5px;
    color: var(--text-color);
    padding: .55rem .65rem;
    border-radius: 8px;
    transition: background-color .15s ease, color .15s ease;
    line-height: 1.4;
}

.legal-toc a:hover {
    background-color: var(--chip-background-color);
    color: var(--eybrow-blue-color);
}

.legal-content {
    flex: 1 1 auto;
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

.legal-block {
    scroll-margin-top: 7rem;
}

.legal-block h2 {
    font-size: 22px;
    display: flex;
    align-items: baseline;
    gap: .65rem;
    margin-bottom: 1rem;
    scroll-margin-top: 7rem;
}

.legal-block h2 .legal-num {
    font-family: "JetBrains Mono";
    color: var(--eybrow-blue-color);
    font-size: 15px;
    font-weight: 600;
    flex-shrink: 0;
}

.legal-block h3 {
    font-size: 16px;
    color: var(--title-color);
    margin: 1.4rem 0 .6rem;
    scroll-margin-top: 7rem;
}

.legal-block p {
    font-size: 15px;
    color: var(--text-color);
    line-height: 1.8;
    margin-bottom: .9rem;
}

.legal-block p:last-child {
    margin-bottom: 0;
}

.legal-block ul {
    display: flex;
    flex-direction: column;
    gap: .6rem;
    margin: .5rem 0 1.2rem;
}

.legal-block ul li {
    font-size: 15px;
    color: var(--text-color);
    line-height: 1.7;
    padding-left: 1.3rem;
    position: relative;
}

.legal-block ul li::before {
    content: "";
    position: absolute;
    left: 0;
    top: .65rem;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background-color: var(--eybrow-blue-color);
}

.legal-block a.legal-link {
    color: var(--eybrow-blue-color);
    font-weight: 600;
}

.legal-intro {
    font-size: 15.5px;
    color: var(--text-color);
    line-height: 1.85;
    max-width: 760px;
}

.legal-contact-box {
    background-color: var(--lightblue-background-color);
    border-radius: 16px;
    padding: 1.75rem;
    display: flex;
    flex-direction: column;
    gap: .4rem;
}

.legal-contact-box strong {
    color: var(--title-color);
    font-size: 15px;
}

.legal-contact-box span {
    font-size: 14px;
    color: var(--text-color);
}

.legal-contact-box a {
    font-size: 14px;
    color: var(--eybrow-blue-color);
    font-weight: 600;
    width: fit-content;
}

.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--blue-background-color);
    color: #fff;
    border: none;
    font-size: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s ease;
    z-index: 999;
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top:hover {
    background: var(--dark-background-color);
}

.floating-actions {
    position: fixed;
    right: 30px;
    bottom: 96px;
    display: inline-flex;
    align-items: center;
    gap: .35rem;
    padding: .4rem;
    border: 1px solid rgba(22, 116, 185, 0.14);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.96);
    box-shadow: 0 16px 36px rgba(11, 22, 31, 0.16);
    z-index: 998;
}

.floating-actions-link {
    position: relative;
    width: 46px;
    height: 46px;
    border-radius: 50%;
    color: var(--blue-background-color);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: color 0.25s ease, background-color 0.25s ease, transform 0.25s ease;
}

.floating-actions-link:hover {
    color: #fff;
    background-color: var(--blue-background-color);
    transform: scale(1.06);
}

.floating-actions-link:nth-child(2) {
    color: #25D366;
}

.floating-actions-link:nth-child(2):hover {
    color: #fff;
    background-color: #25D366;
}

.floating-actions-link svg {
    width: 22px;
    height: 22px;
    display: block;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.9;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.floating-actions-link:nth-child(2) svg {
    fill: currentColor;
    stroke: none;
}

.floating-actions-link::after {
    content: attr(data-tooltip);
    position: absolute;
    right: 50%;
    bottom: calc(100% + 12px);
    transform: translateX(50%) translateY(4px);
    padding: .45rem .65rem;
    border-radius: 8px;
    background: var(--dark-background-color);
    color: #fff;
    font-size: 12px;
    font-weight: 600;
    line-height: 1;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease;
}

.floating-actions-link:hover::after,
.floating-actions-link:focus-visible::after {
    opacity: 1;
    visibility: visible;
    transform: translateX(50%) translateY(0);
}

@media (max-width: 768px) {
    .back-to-top {
        bottom: 20px;
        right: 20px;
        width: 44px;
        height: 44px;
    }

    .floating-actions {
        right: 20px;
        bottom: 84px;
        gap: .25rem;
        padding: .3rem;
    }

    .floating-actions-link {
        width: 42px;
        height: 42px;
    }

    .floating-actions-link svg {
        width: 20px;
        height: 20px;
    }

    .floating-actions-link::after {
        display: none;
    }
}

.scroll-down {
    position: absolute;
    bottom: 0rem;
    left: 50%;
    transform: translateX(-50%);
    width: 52px;
    height: 52px;
    color: var(--blue-background-color);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    text-decoration: none;
    transition: all .25s ease;
    margin-top: 4rem;
}

.scroll-down:hover {
    transform: translateX(-50%) translateY(4px);
}

.section-grande {
    min-width: 80vw;
    width: 100%;
    min-height: 90vh;
    margin-bottom: 3rem;
}
