/*
|--------------------------------------------------------------------------
| Alice Media 2026
|--------------------------------------------------------------------------
| CSS principal de la nouvelle page d'accueil.
| Bootstrap est utilisé comme grille/fondation; toute l'identité est ici.
|--------------------------------------------------------------------------
*/

:root {
    --alice-navy: #06264f;
    --alice-navy-dark: #031d3d;
    --alice-navy-deep: #02162f;
    --alice-blue-soft: #eef4fa;
    --alice-green: #57ad4d;
    --alice-green-dark: #3f9238;
    --alice-green-soft: #eef8ec;
    --alice-text: #28384b;
    --alice-muted: #69798b;
    --alice-border: #dce4ec;
    --alice-bg: #ffffff;
    --alice-bg-soft: #f7f9fb;
    --alice-shadow: 0 22px 60px rgba(5, 35, 72, 0.10);
    --alice-shadow-sm: 0 12px 30px rgba(5, 35, 72, 0.08);
    --alice-radius: 18px;
    --alice-radius-lg: 28px;
    --alice-transition: 220ms ease;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    color: var(--alice-text);
    background: var(--alice-bg);
    font-family:
        Inter,
        ui-sans-serif,
        system-ui,
        -apple-system,
        BlinkMacSystemFont,
        "Segoe UI",
        sans-serif;
    font-size: 16px;
    line-height: 1.65;
    -webkit-font-smoothing: antialiased;
}

body,
button,
input,
textarea,
select {
    font-family: inherit;
}

a {
    color: var(--alice-navy);
    text-decoration: none;
    transition:
        color var(--alice-transition),
        background-color var(--alice-transition),
        border-color var(--alice-transition),
        opacity var(--alice-transition),
        transform var(--alice-transition);
}

a:hover {
    color: var(--alice-green-dark);
}

img {
    max-width: 100%;
    height: auto;
}

.alice-container {
    width: min(100% - 32px, 1280px);
}

.skip-link {
    position: fixed;
    left: 12px;
    top: 12px;
    z-index: 99999;
    transform: translateY(-160%);
    background: #fff;
    color: var(--alice-navy);
    padding: 10px 16px;
    border-radius: 8px;
    box-shadow: var(--alice-shadow-sm);
}

.skip-link:focus {
    transform: translateY(0);
}

/* Header */

.site-header {
    position: sticky;
    top: 0;
    z-index: 1040;
    background: rgba(255, 255, 255, 0.96);
    border-bottom: 1px solid transparent;
    backdrop-filter: blur(15px);
    transition:
        border-color var(--alice-transition),
        box-shadow var(--alice-transition);
}

.site-header.is-scrolled {
    border-bottom-color: var(--alice-border);
    box-shadow: 0 8px 30px rgba(5, 35, 72, 0.06);
}

.site-header .navbar {
    min-height: 96px;
    padding: 12px 0;
}

.site-logo {
    display: block;
    width: 150px;
    max-height: 70px;
    object-fit: contain;
    object-position: left center;
}

.site-header .nav-link {
    color: var(--alice-navy);
    font-weight: 650;
    padding: 12px 13px !important;
    position: relative;
}

.site-header .nav-link::after {
    content: "";
    position: absolute;
    left: 13px;
    right: 13px;
    bottom: 7px;
    height: 2px;
    background: var(--alice-green);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform var(--alice-transition);
}

.site-header .nav-link:hover::after,
.site-header .nav-link:focus-visible::after {
    transform: scaleX(1);
}

.navbar-toggler {
    border-color: var(--alice-border);
}

.navbar-toggler:focus {
    box-shadow: 0 0 0 0.2rem rgba(87, 173, 77, 0.2);
}

/* Buttons */

.btn {
    border-radius: 7px;
    font-weight: 700;
    letter-spacing: -0.01em;
}

.btn-alice-primary {
    --bs-btn-color: #fff;
    --bs-btn-bg: var(--alice-navy);
    --bs-btn-border-color: var(--alice-navy);
    --bs-btn-hover-color: #fff;
    --bs-btn-hover-bg: var(--alice-navy-dark);
    --bs-btn-hover-border-color: var(--alice-navy-dark);
    --bs-btn-active-color: #fff;
    --bs-btn-active-bg: var(--alice-navy-deep);
    --bs-btn-active-border-color: var(--alice-navy-deep);
    padding: 13px 21px;
}

.btn-alice-outline {
    --bs-btn-color: var(--alice-navy);
    --bs-btn-border-color: #90a1b5;
    --bs-btn-hover-color: #fff;
    --bs-btn-hover-bg: var(--alice-navy);
    --bs-btn-hover-border-color: var(--alice-navy);
    padding: 13px 21px;
}

.nav-cta {
    min-width: 138px;
}

/* Type */

.eyebrow {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 14px;
    color: var(--alice-green-dark);
    font-size: 0.76rem;
    font-weight: 800;
    letter-spacing: 0.15em;
    text-transform: uppercase;
}

.eyebrow::before {
    content: "";
    width: 28px;
    height: 2px;
    background: currentColor;
}

.eyebrow-light {
    color: #8fdb86;
}

.section-title {
    margin: 0;
    color: var(--alice-navy);
    font-size: clamp(2rem, 4vw, 3.35rem);
    line-height: 1.08;
    letter-spacing: -0.045em;
    font-weight: 760;
}

.section-intro {
    margin: 0;
    color: var(--alice-muted);
    font-size: clamp(1.05rem, 1.5vw, 1.25rem);
    line-height: 1.75;
}

.section-subtitle {
    max-width: 760px;
    margin: 18px auto 0;
    color: var(--alice-muted);
    font-size: 1.08rem;
}

.section-space {
    padding: 100px 0;
}
/* ==========================================================
   HERO WOW - TEXTE À GAUCHE / VISUEL À DROITE
   ========================================================== */

.hero-wow {
    position: relative;
    overflow: hidden;

    background:
        radial-gradient(
            circle at 72% 52%,
            rgba(36, 105, 255, 0.24),
            transparent 38%
        ),
        linear-gradient(
            115deg,
            #02142f 0%,
            #031c42 52%,
            #041b3d 100%
        );

    color: #fff;
}


.hero-wow-row {
    min-height: 680px;
}


/* ----------------------------------------------------------
   TEXTE
   ---------------------------------------------------------- */

.hero-wow-copy {
    position: relative;
    z-index: 5;

    padding-top: 70px;
    padding-bottom: 70px;
}


.hero-wow-copy h1 {
    margin: 0;

    color: #fff;

    font-size: clamp(3.5rem, 6vw, 6.8rem);
    font-weight: 800;
    line-height: .94;

    letter-spacing: -.065em;
    text-transform: uppercase;
}


.hero-wow-copy h1 span {
    display: block;

    margin-top: 8px;

    background: linear-gradient(
        90deg,
        #ffffff 0%,
        #83a9ff 35%,
        #3471ff 75%
    );

    -webkit-background-clip: text;
    background-clip: text;

    color: transparent;
}


.hero-wow-copy .hero-lead {
    max-width: 600px;

    margin-top: 34px;

    color: rgba(255,255,255,.82);

    font-size: 1.2rem;
    line-height: 1.75;
}


.hero-wow-copy .eyebrow {
    color: #82e674;
}


/* ----------------------------------------------------------
   BOUTONS
   ---------------------------------------------------------- */

.hero-wow .hero-actions {
    display: flex;
    flex-wrap: wrap;

    gap: 14px;

    margin-top: 34px;
}


.btn-wow-primary {
    padding: 14px 22px;

    color: #fff;
    background: #2864ff;

    border: 1px solid #2864ff;
    border-radius: 7px;

    font-weight: 700;
}


.btn-wow-primary:hover {
    color: #fff;
    background: #174be0;
    border-color: #174be0;
}


.btn-wow-outline {
    padding: 14px 22px;

    color: #fff;
    background: transparent;

    border: 1px solid rgba(255,255,255,.50);
    border-radius: 7px;

    font-weight: 700;
}


.btn-wow-outline:hover {
    color: #02142f;
    background: #fff;
}


/* ----------------------------------------------------------
   VISUEL
   ---------------------------------------------------------- */

.hero-wow-visual {
    position: relative;

    align-self: stretch;

    min-height: 680px;
}


.hero-wow-image-wrap {
    position: absolute;

    top: 25px;
    bottom: 20px;
    left: -15px;

    /*
     * Permet au visuel de s'approcher du bord droit
     * de l'écran plutôt que de rester enfermé dans le container.
     */
    right: calc((100vw - min(100vw - 24px, 1440px)) / -2);

    display: flex;
    align-items: center;

    overflow: visible;
}


.hero-wow-image {
    display: block;

    width: 100%;
    height: 100%;

    object-fit: contain;
    object-position: center right;

    filter:
        drop-shadow(0 35px 55px rgba(0,0,0,.30));
}


/* Halo derrière les écrans */

.hero-wow-visual::before {
    content: "";

    position: absolute;

    width: 580px;
    height: 580px;

    top: 50%;
    left: 50%;

    transform: translate(-42%, -50%);

    background: radial-gradient(
        circle,
        rgba(43,111,255,.28) 0%,
        rgba(43,111,255,.08) 42%,
        transparent 72%
    );

    filter: blur(15px);

    pointer-events: none;
}


/* ----------------------------------------------------------
   TABLETTE / MOBILE
   Les règles du Hero WOW mobile sont regroupées plus bas,
   après les règles responsive générales, pour éviter les conflits.
   ---------------------------------------------------------- */

/* ==========================================================
   HERO - container plus large et moins tassé
   ========================================================== */

.hero-wow .hero-wow-container {
    width: min(100% - 24px, 1440px);
    max-width: 1440px;
}

/* Un peu moins d'espace perdu à gauche */
.hero-wow-copy {
    padding-left: 0;
    padding-right: 28px;
}

/* On donne un peu plus de place au texte */
.hero-wow-row {
    min-height: 680px;
}

/* Facultatif : colonnes un peu moins serrées */
.hero-wow .row {
    --bs-gutter-x: 2rem;
}

/* Trust */

.trust-strip {
    background: #fff;
    border-top: 1px solid var(--alice-border);
    border-bottom: 1px solid var(--alice-border);
}

.trust-item {
    min-height: 190px;
    padding: 34px 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
}

.trust-item:not(:last-child)::after {
    content: "";
    position: absolute;
    top: 27%;
    right: 0;
    width: 1px;
    height: 46%;
    background: var(--alice-border);
}

.trust-item strong {
    color: var(--alice-navy);
    font-size: 1.05rem;
}

.trust-item span {
    margin-top: 6px;
    color: var(--alice-muted);
    font-size: .86rem;
    max-width: 210px;
}

.line-icon {
    width: 54px;
    height: 54px;
    margin-bottom: 14px;
}

.line-icon svg {
    width: 100%;
    height: 100%;
    fill: none;
    stroke: var(--alice-navy);
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.line-icon svg path:last-child {
    stroke: var(--alice-green);
}

/* About */

.about-section {
    background: #fff;
}

/* Cases */

.cases-section {
    background: var(--alice-bg-soft);
    border-top: 1px solid #edf1f5;
    border-bottom: 1px solid #edf1f5;
}

.section-heading {
    max-width: 900px;
    margin: 0 auto 54px;
}

.case-card {
    overflow: hidden;
    background: #fff;
    border: 1px solid var(--alice-border);
    border-radius: var(--alice-radius);
    box-shadow: 0 1px 0 rgba(5, 35, 72, 0.02);
    transition:
        transform var(--alice-transition),
        box-shadow var(--alice-transition),
        border-color var(--alice-transition);
}

.case-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--alice-shadow);
    border-color: #cfd9e3;
}

.case-media {
    height: 250px;
    position: relative;
    overflow: hidden;
    background:
        linear-gradient(135deg, rgba(6,38,79,.88), rgba(87,173,77,.60)),
        #dce8f1;
}

.case-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 600ms ease;
}

.case-card:hover .case-media img {
    transform: scale(1.035);
}

.case-renoclimat .case-media {
    background:
        linear-gradient(135deg, rgba(3,29,61,.25), rgba(87,173,77,.24)),
        url("../images/alice-2026/renoclimat.jpg") center / cover no-repeat,
        linear-gradient(135deg, #dfece0, #cddae5);
}

.case-chip {
    position: absolute;
    left: 20px;
    bottom: 18px;
    padding: 7px 11px;
    border-radius: 99px;
    color: #173651;
    background: rgba(255,255,255,.94);
    box-shadow: 0 6px 20px rgba(0,0,0,.08);
    font-size: .72rem;
    font-weight: 800;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.case-body {
    padding: 30px;
}

.case-kicker {
    margin: 0 0 5px;
    color: var(--alice-green-dark);
    text-transform: uppercase;
    letter-spacing: .13em;
    font-size: .74rem;
    font-weight: 800;
}

.case-body h3 {
    margin: 0 0 14px;
    color: var(--alice-navy);
    font-size: 1.65rem;
    font-weight: 760;
    letter-spacing: -0.03em;
}

.case-body p:not(.case-kicker) {
    min-height: 112px;
    color: var(--alice-muted);
}

.case-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--alice-navy);
    font-weight: 800;
}

.case-link:hover {
    gap: 12px;
}

/* Metrics */

.metrics-section {
    padding: 46px 0;
    color: #fff;
    background:
        linear-gradient(110deg, var(--alice-navy-deep), var(--alice-navy)),
        var(--alice-navy);
}

.metric {
    padding: 6px 28px;
    text-align: center;
    border-right: 1px solid rgba(255,255,255,.18);
}

.metric:last-child {
    border-right: 0;
}

.metric strong {
    display: block;
    color: #fff;
    font-size: clamp(2rem, 4vw, 3.1rem);
    line-height: 1;
    font-weight: 780;
    letter-spacing: -0.05em;
}

.metric span {
    display: block;
    margin: 10px auto 0;
    color: rgba(255,255,255,.74);
    font-size: .92rem;
    max-width: 220px;
}

/* Expertise */

.expertise-section {
    background: #fff;
}

.expertise-card {
    padding: 30px;
    border: 1px solid var(--alice-border);
    border-radius: 14px;
    background: #fff;
    transition:
        transform var(--alice-transition),
        box-shadow var(--alice-transition),
        border-color var(--alice-transition);
}

.expertise-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--alice-shadow-sm);
    border-color: #cbd7e2;
}

.expertise-icon {
    width: 54px;
    height: 54px;
    display: grid;
    place-items: center;
    margin-bottom: 22px;
    border: 1px solid #cddbe8;
    border-radius: 12px;
    background: #f9fbfd;
    color: var(--alice-navy);
}

.expertise-icon span {
    font-size: 1.2rem;
    font-weight: 850;
}

.expertise-card h3 {
    margin-bottom: 10px;
    color: var(--alice-navy);
    font-size: 1.22rem;
    font-weight: 760;
}

.expertise-card p {
    margin: 0;
    color: var(--alice-muted);
}

/* Sectors */

.sectors-section {
    background:
        linear-gradient(135deg, rgba(2,22,47,.98), rgba(6,38,79,.96)),
        var(--alice-navy-deep);
}

.sector-lead {
    font-size: 1.08rem;
    line-height: 1.75;
}

.sector-list {
    border-top: 1px solid rgba(255,255,255,.18);
}

.sector-row {
    display: grid;
    grid-template-columns: 70px 1fr;
    gap: 16px;
    padding: 25px 0;
    border-bottom: 1px solid rgba(255,255,255,.18);
}

.sector-row span {
    color: #8fdb86;
    font-size: .8rem;
    font-weight: 800;
}

.sector-row strong {
    color: #fff;
    font-size: clamp(1rem, 2vw, 1.35rem);
    font-weight: 650;
}

/* Infrastructure */

.infrastructure-section {
    background:
        radial-gradient(circle at 80% 30%, rgba(87,173,77,.08), transparent 35%),
        #f7f9fb;
}

.infra-panel {
    padding: clamp(34px, 6vw, 72px);
    background: #fff;
    border: 1px solid var(--alice-border);
    border-radius: var(--alice-radius-lg);
    box-shadow: var(--alice-shadow-sm);
}

.infra-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 26px;
}

.infra-tags span {
    padding: 9px 13px;
    border-radius: 99px;
    background: var(--alice-green-soft);
    color: #356f31;
    font-size: .84rem;
    font-weight: 700;
}

.infra-card {
    padding: 34px;
    color: #fff;
    background:
        linear-gradient(145deg, var(--alice-navy-deep), var(--alice-navy));
    border-radius: var(--alice-radius);
    box-shadow: var(--alice-shadow);
}

.infra-card .infra-label {
    display: inline-block;
    margin-bottom: 18px;
    color: #91df88;
    text-transform: uppercase;
    letter-spacing: .14em;
    font-size: .74rem;
    font-weight: 800;
}

.infra-card strong {
    display: block;
    margin-bottom: 16px;
    font-size: 1.9rem;
    line-height: 1.08;
    letter-spacing: -.035em;
}

.infra-card p {
    margin: 0;
    color: rgba(255,255,255,.72);
}

/* Plateformes */

.platforms-section {
    background: #fff;
}

.platform-card {
    padding: 34px;
    border: 1px solid var(--alice-border);
    border-radius: var(--alice-radius);
    background: #fff;
    box-shadow: var(--alice-shadow-sm);
}

.platform-card h3 {
    margin: 0 0 12px;
    color: var(--alice-navy);
    font-size: 1.7rem;
    font-weight: 760;
}

.platform-card p {
    color: var(--alice-muted);
    margin-bottom: 16px;
}

.infra-service-card {
    padding: 22px;
    border: 1px solid var(--alice-border);
    border-radius: 12px;
    background: #fbfcfe;
}

.infra-service-card h3 {
    margin: 0 0 10px;
    color: var(--alice-navy);
    font-size: 1.2rem;
    font-weight: 750;
}

.infra-service-card p {
    margin: 0 0 10px;
    color: var(--alice-muted);
}

/* CTA */

.cta-section {
    padding: 0 0 100px;
    background: #f7f9fb;
}

.cta-panel {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
    padding: 48px 54px;
    color: #fff;
    background:
        linear-gradient(110deg, rgba(2,22,47,.98), rgba(6,38,79,.94)),
        var(--alice-navy);
    border-radius: var(--alice-radius-lg);
    box-shadow: var(--alice-shadow);
}

.cta-panel h2 {
    max-width: 790px;
    margin: 0;
    color: #fff;
    font-size: clamp(1.8rem, 4vw, 3rem);
    line-height: 1.08;
    letter-spacing: -.04em;
}

/* Contact */

.contact-section {
    background: #fff;
}

.contact-details {
    margin-top: 32px;
}

.contact-details strong {
    color: var(--alice-navy);
}

.contact-details a {
    font-weight: 700;
}

.alice-contact-form {
    padding: clamp(25px, 4vw, 44px);
    background: var(--alice-bg-soft);
    border: 1px solid var(--alice-border);
    border-radius: var(--alice-radius);
}

.form-label {
    color: var(--alice-navy);
    font-size: .88rem;
    font-weight: 750;
}

.form-control {
    min-height: 52px;
    border-color: #cfd9e3;
    border-radius: 8px;
    background: #fff;
}

textarea.form-control {
    min-height: 150px;
}

.form-control:focus {
    border-color: var(--alice-green);
    box-shadow: 0 0 0 .22rem rgba(87, 173, 77, 0.12);
}

.captcha-column {
    display: flex;
    align-items: end;
}

.captcha-image {
    width: 200px;
    height: 50px;
    border-radius: 7px;
    border: 1px solid var(--alice-border);
}

/* Footer */

.site-footer {
    padding: 38px 0;
    color: rgba(255,255,255,.72);
    background: var(--alice-navy-deep);
}

.footer-logo {
    width: 125px;
    filter: brightness(0) invert(1);
    opacity: .95;
}

.footer-title {
    margin: 0 0 10px;
    color: #fff;
    font-size: .98rem;
    font-weight: 760;
}

.footer-links-col {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.footer-links-col a {
    color: rgba(255,255,255,.72);
    font-size: .92rem;
}

.footer-links-col a:hover {
    color: #fff;
}

.footer-copy {
    margin: 0;
    color: rgba(255,255,255,.54);
    font-size: .86rem;
}

/* Animation progressive */

.reveal {
    opacity: 0;
    transform: translateY(18px);
    transition:
        opacity 600ms ease,
        transform 600ms ease;
}

.reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
}

/* Responsive */

@media (max-width: 1199.98px) {
    .hero-copy h1 {
        font-size: clamp(2.7rem, 5vw, 4.2rem);
    }

    .hero-image-wrap {
        right: -3vw;
    }
}

@media (max-width: 991.98px) {
    .site-header .navbar {
        min-height: 78px;
    }

    .site-logo {
        width: 125px;
    }

    .navbar-collapse {
        padding: 16px 0 22px;
    }

    .site-header .nav-link::after {
        display: none;
    }

    .nav-cta {
        display: inline-flex;
        margin-top: 8px;
    }

    .hero-section:not(.hero-wow) {
        background: #fff;
    }

    .min-vh-alice {
        min-height: auto;
    }

    .hero-copy {
        padding: 72px 0 42px;
    }

    .hero-copy h1 {
        font-size: clamp(2.55rem, 8.4vw, 4.6rem);
    }

    .hero-visual {
        min-height: 430px;
        margin-left: -16px;
        margin-right: -16px;
    }

    .hero-image-wrap {
        position: absolute;
        inset: 0;
    }

    .hero-image-wrap::before {
        width: 20%;
    }

    .trust-item:nth-child(2)::after {
        display: none;
    }

    .trust-item {
        border-bottom: 1px solid var(--alice-border);
    }

    .metric:nth-child(2) {
        border-right: 0;
    }

    .metric:nth-child(-n+2) {
        margin-bottom: 15px;
    }

    .cta-panel {
        align-items: flex-start;
        flex-direction: column;
    }
}

@media (max-width: 767.98px) {
    .alice-container {
        width: min(100% - 24px, 1280px);
    }

    .section-space {
        padding: 72px 0;
    }

    .hero-copy {
        padding-top: 52px;
    }

    .hero-copy h1 {
        font-size: clamp(2.2rem, 10.5vw, 3.5rem);
    }

    .hero-section:not(.hero-wow) .hero-actions {
        flex-direction: column;
        align-items: stretch;
    }

    .hero-section:not(.hero-wow) .hero-actions .btn {
        width: 100%;
    }

    .hero-visual {
        min-height: 330px;
    }

    .trust-item {
        min-height: 175px;
        padding: 26px 12px;
    }

    .trust-item::after {
        display: none;
    }

    .trust-item:nth-child(odd) {
        border-right: 1px solid var(--alice-border);
    }

    .case-media {
        height: 220px;
    }

    .case-body p:not(.case-kicker) {
        min-height: auto;
    }

    .metric {
        padding: 12px 10px;
        border-right: 0;
    }

    .cta-section {
        padding-bottom: 72px;
    }

    .cta-panel {
        padding: 34px 25px;
        border-radius: 18px;
    }

    .infra-panel {
        border-radius: 18px;
    }

    .footer-links-col {
        align-items: flex-start;
    }
}



/* ==========================================================
   HERO WOW — TABLETTE / MOBILE
   Bloc autoritaire : garder après les règles responsive générales.
   ========================================================== */

@media (max-width: 991.98px) {

    /* Le Hero WOW conserve son fond sombre sur tablette/mobile. */
    .hero-section.hero-wow {
        position: relative;
        overflow: hidden;
        color: #fff;
        background:
            radial-gradient(
                circle at 70% 78%,
                rgba(36, 105, 255, 0.24),
                transparent 42%
            ),
            linear-gradient(
                145deg,
                #02142f 0%,
                #031c42 58%,
                #02142f 100%
            ) !important;
    }

    /* En mobile, on reprend toute la largeur utile avec une marge simple. */
    .hero-wow .hero-wow-container {
        width: 100% !important;
        max-width: none !important;
        padding-left: 24px !important;
        padding-right: 24px !important;
    }

    /* Les deux colonnes deviennent une pile verticale. */
    .hero-wow .hero-wow-row {
        display: flex;
        flex-direction: column;
        min-height: 0 !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
        --bs-gutter-x: 0;
    }

    /* -----------------------
       Texte
       ----------------------- */

    .hero-wow .hero-wow-copy {
        position: relative;
        z-index: 5;
        width: 100% !important;
        max-width: 100% !important;
        padding: 56px 0 36px !important;
        margin: 0 !important;
    }

    .hero-wow .hero-wow-copy .eyebrow {
        margin: 0 0 26px !important;
        color: #73df70 !important;
        font-size: 0.76rem !important;
        line-height: 1.45;
        letter-spacing: 0.13em;
    }

    .hero-wow .hero-wow-copy h1 {
        width: 100%;
        max-width: 100%;
        margin: 0 !important;
        color: #fff !important;
        font-size: clamp(3rem, 12.5vw, 4.7rem) !important;
        font-weight: 800;
        line-height: 0.93 !important;
        letter-spacing: -0.055em !important;
        text-align: left;
        text-transform: uppercase;
        overflow-wrap: normal;
        word-break: normal;
    }

    .hero-wow .hero-wow-copy h1 span {
        display: block;
        margin-top: 8px;
        background: linear-gradient(
            90deg,
            #ffffff 0%,
            #8eb2ff 38%,
            #3471ff 92%
        ) !important;
        -webkit-background-clip: text !important;
        background-clip: text !important;
        -webkit-text-fill-color: transparent !important;
        color: transparent !important;
    }

    .hero-wow .hero-wow-copy .hero-lead {
        width: 100%;
        max-width: 640px !important;
        margin: 28px 0 0 !important;
        color: rgba(255, 255, 255, 0.84) !important;
        font-size: 1.04rem !important;
        line-height: 1.7 !important;
    }

    /* -----------------------
       Boutons
       ----------------------- */

    .hero-wow .hero-actions {
        display: flex !important;
        flex-direction: column !important;
        align-items: stretch !important;
        width: 100%;
        gap: 12px;
        margin-top: 28px !important;
    }

    .hero-wow .hero-actions .btn {
        display: flex !important;
        align-items: center;
        justify-content: center;
        width: 100% !important;
        min-height: 56px;
        margin: 0 !important;
        padding: 13px 18px !important;
        font-size: 1rem;
        line-height: 1.25;
        white-space: normal;
    }

    .hero-wow .btn-wow-primary {
        color: #fff !important;
        background: #2864ff !important;
        border-color: #2864ff !important;
    }

    .hero-wow .btn-wow-outline {
        color: #fff !important;
        background: transparent !important;
        border-color: rgba(255, 255, 255, 0.52) !important;
    }

    /* -----------------------
       Visuel
       ----------------------- */

    .hero-wow .hero-wow-visual {
        position: relative !important;
        align-self: auto !important;
        width: 100% !important;
        max-width: 100% !important;
        min-height: 0 !important;
        height: auto !important;
        margin: 0 !important;
        padding: 8px 0 34px !important;
    }

    /* Sur mobile, le visuel redevient un élément normal du document.
       Aucun position:absolute : il ne peut donc plus sortir de l'écran. */
    .hero-wow .hero-wow-image-wrap {
        position: relative !important;
        inset: auto !important;
        top: auto !important;
        right: auto !important;
        bottom: auto !important;
        left: auto !important;
        display: flex !important;
        align-items: center;
        justify-content: center;
        width: 100% !important;
        height: auto !important;
        overflow: visible !important;
    }

    .hero-wow .hero-wow-image {
        display: block !important;
        width: min(112%, 760px) !important;
        max-width: none !important;
        height: auto !important;
        max-height: none !important;
        margin: 0 -6% !important;
        object-fit: contain !important;
        object-position: center !important;
        filter: drop-shadow(0 24px 34px rgba(0, 0, 0, 0.28));
    }

    .hero-wow .hero-wow-visual::before {
        width: min(92vw, 520px) !important;
        height: min(92vw, 520px) !important;
        top: 50% !important;
        left: 50% !important;
        transform: translate(-50%, -50%) !important;
        opacity: 0.72;
    }
}

@media (max-width: 575.98px) {

    .hero-wow .hero-wow-container {
        padding-left: 18px !important;
        padding-right: 18px !important;
    }

    .hero-wow .hero-wow-copy {
        padding-top: 46px !important;
        padding-bottom: 30px !important;
    }

    .hero-wow .hero-wow-copy .eyebrow {
        margin-bottom: 22px !important;
        font-size: 0.68rem !important;
        letter-spacing: 0.11em !important;
    }

    .hero-wow .hero-wow-copy h1 {
        /* Environ 47–56 px sur la majorité des téléphones :
           assez fort, sans faire déborder « SIMPLIFIE ». */
        font-size: clamp(2.8rem, 12.8vw, 3.55rem) !important;
        line-height: 0.94 !important;
    }

    .hero-wow .hero-wow-copy .hero-lead {
        margin-top: 24px !important;
        font-size: 1rem !important;
        line-height: 1.65 !important;
    }

    .hero-wow .hero-actions {
        margin-top: 24px !important;
    }

    .hero-wow .hero-wow-image {
        width: 124% !important;
        margin-left: -12% !important;
        margin-right: -12% !important;
    }
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }

    *,
    *::before,
    *::after {
        scroll-behavior: auto !important;
        transition-duration: 0.001ms !important;
        animation-duration: 0.001ms !important;
        animation-iteration-count: 1 !important;
    }

    .reveal {
        opacity: 1;
        transform: none;
    }
}

.case-placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    background:
        linear-gradient(135deg, rgba(6,38,79,.06), rgba(87,173,77,.10)),
        #edf3f7;
}

.case-placeholder-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 4px;
    color: #6d7c8d;
    text-align: center;
}

.case-placeholder-inner span {
    color: #06264f;
    font-size: .76rem;
    font-weight: 800;
    letter-spacing: .12em;
}

.case-placeholder-inner small {
    font-size: .84rem;
}