:root {
    --brand: #37b4e6;
    --brand-strong: #179bd1;
    --ink: #0b1420;
    --ink-soft: #405064;
    --surface: #ffffff;
    --surface-muted: #f4f7f9;
    --surface-dark: #0b1420;
    --line: #dce5ea;
    --success: #157347;
    --danger: #b42318;
    --radius: 18px;
    --radius-sm: 12px;
    --shadow: 0 22px 55px rgba(11,20,32,.10);
    --container: 1180px;
}
* {
    box-sizing: border-box;
}
html {
    scroll-behavior: smooth;
}
body {
    margin: 0;
    color: var(--ink);
    background: var(--surface);
    font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    font-size: 17px;
    line-height: 1.65;
    -webkit-font-smoothing: antialiased;
}
img {
    display: block;
    max-width: 100%;
    height: auto;
}
a {
    color: var(--brand-strong);
    text-decoration: none;
}
a:hover {
    color: #087eae;
}
button, input, textarea {
    font: inherit;
}
button {
    cursor: pointer;
}
address {
    font-style: normal;
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0,0,0,0);
    white-space: nowrap;
    border: 0;
}

.skip-link {
    position: fixed;
    left: 16px;
    top: -80px;
    z-index: 9999;
    padding: 10px 14px;
    background: var(--ink);
    color: white;
    border-radius: 8px;
}

.skip-link:focus {
    top: 16px;
}

.site-container {
    width: min(calc(100% - 40px), var(--container));
    margin-inline: auto;
}

.content-narrow {
    max-width: 860px;
}
h1, h2, h3 {
    margin: 0 0 .65em;
    line-height: 1.12;
    letter-spacing: -.035em;
}
h1 {
    font-size: clamp(2.5rem, 6vw, 5.35rem);
}
h2 {
    font-size: clamp(2rem, 4vw, 3.45rem);
}
h3 {
    font-size: clamp(1.25rem, 2vw, 1.55rem);
    letter-spacing: -.02em;
}
p {
    margin: 0 0 1.2em;
}
ul {
    margin-top: 0;
}

.eyebrow {
    margin: 0 0 14px;
    color: var(--brand);
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: .13em;
    font-size: .78rem;
}

.lead {
    max-width: 820px;
    color: var(--ink-soft);
    font-size: clamp(1.12rem, 2vw, 1.35rem);
}

.section {
    padding: 92px 0;
}

.section--muted {
    background: var(--surface-muted);
}

.section--dark {
    background: var(--surface-dark);
    color: white;
}

.section--dark .lead, .section--dark p {
    color: #b9c7d2;
}

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

.section-head > :first-child {
    max-width: 760px;
}

.section-head p {
    max-width: 450px;
    color: var(--ink-soft);
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 50px;
    padding: 0 22px;
    border: 1px solid var(--brand);
    border-radius: 999px;
    background: var(--brand);
    color: #061018;
    font-weight: 800;
    transition: .18s ease;
}

.btn:hover {
    transform: translateY(-1px);
    background: #55c5ee;
    color: #061018;
}

.btn--outline {
    background: transparent;
    color: white;
    border-color: rgba(255,255,255,.55);
}

.btn--outline:hover {
    background: white;
    color: var(--ink);
}

.btn--light {
    background: white;
    border-color: white;
    color: var(--ink);
}

.btn--small {
    min-height: 42px;
    padding-inline: 18px;
    font-size: .94rem;
}

.utility-bar {
    background: #07101a;
    color: #b7c5cf;
    font-size: .84rem;
}

.utility-bar__inner {
    min-height: 36px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.utility-bar a {
    color: #d5e0e7;
}

.utility-bar__contact, .utility-bar__links {
    display: flex;
    align-items: center;
    gap: 18px;
}

.site-header {
    position: relative;
    z-index: 100;
}

.nav-shell {
    background: rgba(255,255,255,.96);
    border-bottom: 1px solid rgba(220,229,234,.95);
    backdrop-filter: blur(14px);
}

.nav-shell__inner {
    min-height: 82px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 28px;
}

.brand {
    width: 205px;
    flex: 0 0 auto;
}

.brand img {
    width: 100%;
}

.primary-nav > ul {
    display: flex;
    align-items: center;
    gap: 5px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.primary-nav li {
    position: relative;
}

.nav-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    min-height: 44px;
    padding: 0 10px;
    border: 0;
    background: transparent;
    color: var(--ink);
    font-size: .93rem;
    font-weight: 700;
}

.nav-link:hover, .nav-link.is-active {
    color: var(--brand-strong);
}

.nav-dropdown {
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    width: 285px;
    margin: 0;
    padding: 10px;
    list-style: none;
    border: 1px solid var(--line);
    border-radius: 14px;
    background: white;
    box-shadow: var(--shadow);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-6px);
    transition: .15s ease;
}

.nav-dropdown a {
    display: block;
    padding: 10px 12px;
    border-radius: 9px;
    color: var(--ink);
    font-size: .93rem;
}

.nav-dropdown a:hover {
    background: var(--surface-muted);
    color: var(--brand-strong);
}

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

.nav-toggle {
    display: none;
    width: 46px;
    height: 42px;
    border: 0;
    background: transparent;
    padding: 8px;
}

.nav-toggle > span:not(.sr-only) {
    display: block;
    height: 2px;
    margin: 6px 0;
    background: var(--ink);
}

.home-hero, .page-hero {
    position: relative;
    isolation: isolate;
    overflow: hidden;
    color: white;
}

.home-hero__inner {
    min-height: 650px;
    display: grid;
    align-content: center;
    padding: 86px 0;
}

.home-hero h1 {
    max-width: 980px;
}

.home-hero__lead {
    max-width: 760px;
    color: #d0dae2;
    font-size: clamp(1.12rem, 2vw, 1.4rem);
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 26px;
}

.hero-proof {
    display: flex;
    flex-wrap: wrap;
    gap: 10px 28px;
    margin: 42px 0 0;
    padding: 0;
    list-style: none;
    color: #d2dde5;
    font-size: .94rem;
}

.hero-proof li::before {
    content: "✓";
    color: var(--brand);
    font-weight: 900;
    margin-right: 8px;
}

.page-hero__inner {
    min-height: 420px;
    display: grid;
    align-content: end;
    padding: 80px 0 62px;
}

.page-hero h1 {
    max-width: 960px;
    font-size: clamp(2.45rem, 5vw, 4.7rem);
}

.page-hero__lead {
    max-width: 840px;
    color: #d0dae2;
    font-size: clamp(1.05rem, 2vw, 1.3rem);
}

.service-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}

.service-card {
    position: relative;
    isolation: isolate;
    min-height: 390px;
    display: flex;
    flex-direction: column;
    justify-content: end;
    overflow: hidden;
    padding: 30px;
    border-radius: var(--radius);
    color: white;
    box-shadow: 0 12px 30px rgba(11,20,32,.08);
    background: var(--ink);
}

.service-card::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -2;
    background: var(--card-image) center/cover;
    transition: transform .35s ease;
}

.service-card::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -1;
    background: linear-gradient(0deg, rgba(5,13,22,.94), rgba(5,13,22,.15) 70%);
}

.service-card:hover::before {
    transform: scale(1.035);
}

.service-card h3 {
    margin-bottom: 10px;
    font-size: 1.65rem;
}

.service-card p {
    color: #d7e0e6;
}

.service-card__link {
    color: white;
    font-weight: 800;
}

.service-card__link:hover {
    color: var(--brand);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1px;
    background: var(--line);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    overflow: hidden;
}

.stat {
    padding: 32px 28px;
    background: white;
}

.stat strong {
    display: block;
    color: var(--brand-strong);
    font-size: clamp(2rem,4vw,3.1rem);
    line-height: 1;
}

.stat span {
    display: block;
    margin-top: 10px;
    color: var(--ink-soft);
    font-size: .94rem;
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}

/* ============================================================================
   ACCUEIL — VISUELS : STRUCTURE COMMUNE
   ----------------------------------------------------------------------------
   Les dimensions et positions sont volontairement absentes ici.
   Elles sont regroupées par largeur d'écran dans la section RESPONSIVE en fin
   de fichier.
   ============================================================================ */

.hero-stage__card--video {
    animation: heroFloatA 6.5s ease-in-out infinite;
}

.hero-stage__card--web {
    padding: 0;
    animation: heroFloatB 7.2s ease-in-out infinite;
}

.hero-stage__card--it {
    animation: heroFloatC 6.9s ease-in-out infinite;
}

/* Objets PNG du hero : dimensions/positions définies par breakpoint plus bas. */
.hero-stage__video-object,
.hero-stage__web-object,
.hero-stage__it-object {
    position: absolute;
    z-index: 2;
    max-width: none;
}

.hero-stage__video-object {
    filter: drop-shadow(0 18px 20px rgba(0,0,0,.28));
}

.hero-stage__web-object {
    filter: drop-shadow(0 18px 22px rgba(0,0,0,.32));
}

.hero-stage__it-object {
    filter: drop-shadow(0 16px 20px rgba(0,0,0,.30));
}

.hero-stage__card--web::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 34% 62%, rgba(23,155,209,.20), transparent 46%);
}

.service-card__visual {
    position: relative;
    box-sizing: border-box;
    overflow: hidden;
    background: linear-gradient(135deg,#eef9fd,#dceff7);
}

.service-card--web .service-card__visual {
    display: block;
    padding: 0;
    background: radial-gradient(circle at 22% 74%, rgba(55,180,230,.16), transparent 28%),
        radial-gradient(circle at 82% 18%, rgba(104,217,255,.11), transparent 26%),
        linear-gradient(145deg,#08131f,#0f2236 56%,#12354a);
}

.service-card__visual--video,
.service-card__visual--web,
.service-card__visual--it {
    overflow: hidden;
}

.service-card--web .service-card__number {
    color: rgba(255,255,255,.66);
}

/* Objets PNG des cartes : dimensions/positions définies par breakpoint plus bas. */
.service-card__object--video {
    z-index: 2;
    filter: drop-shadow(0 18px 22px rgba(0,0,0,.28));
}

.service-card__object--web {
    right: auto;
    z-index: 2;
    filter: drop-shadow(0 14px 18px rgba(0,0,0,.28));
}

.service-card__object--it {
    right: auto;
    z-index: 2;
    filter: drop-shadow(0 16px 20px rgba(0,0,0,.30));
}


.process-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
    counter-reset: process;
}

.feature-card {
    position: relative;
    overflow: hidden;
    padding: 28px;
    border: 1px solid var(--line);
    border-radius: var(--radius-sm);
    background: white;
    box-shadow: 0 12px 30px rgba(11,20,32,.045);
}

.footer-brand img {
    width: 190px;
    filter: brightness(0) invert(1);
    opacity: .95;
    margin-bottom: 10px;
}

.back-to-top {
    position: fixed;
    right: 22px;
    bottom: 22px;
    width: 52px;
    height: 52px;
    border: 2px solid rgba(255,255,255,.9);
    border-radius: 50%;
    background: #168fbe;
    color: white;
    font-size: 1.25rem;
    font-weight: 900;
    box-shadow: 0 10px 30px rgba(4,38,55,.34), 0 0 0 3px rgba(22,143,190,.18);
    opacity: 0;
    pointer-events: none;
    transform: translateY(10px);
    transition: .2s ease;
    z-index: 80;
}

.method-section__head {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.method-section__head .lead {
    max-width: 860px;
    margin: 0 auto;
}

.feature-card__num {
    display: inline-flex;
    width: 38px;
    height: 38px;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: #e8f7fd;
    color: #087eae;
    font-weight: 900;
    margin-bottom: 18px;
}

.feature-card p {
    color: var(--ink-soft);
}

.logo-cloud {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.logo-chip {
    padding: 10px 15px;
    border: 1px solid var(--line);
    border-radius: 999px;
    background: white;
    color: #38475a;
    font-weight: 700;
    font-size: .92rem;
}

.split {
    display: grid;
    grid-template-columns: minmax(0,1.05fr) minmax(380px,.95fr);
    gap: 56px;
    align-items: start;
}

.cards-2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 22px;
}

.info-card {
    padding: 32px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: white;
}

.info-card p, .info-card li {
    color: var(--ink-soft);
}

.info-card ul {
    padding-left: 20px;
}

.link-arrow {
    font-weight: 800;
}

.link-arrow::after {
    content: " →";
}

.process-step {
    padding: 26px;
    border-radius: var(--radius-sm);
    background: #111e2d;
    border: 1px solid #233548;
}

.process-step::before {
    counter-increment: process;
    content: "0" counter(process);
    display: block;
    margin-bottom: 28px;
    color: var(--brand);
    font-weight: 900;
    font-size: 1.4rem;
}

.process-step p {
    color: #b8c7d2;
}

.faq-list {
    margin-top: 28px;
    border-top: 1px solid var(--line);
}

.faq-item {
    border-bottom: 1px solid var(--line);
}

.faq-item summary {
    padding: 20px 36px 20px 0;
    font-weight: 800;
    cursor: pointer;
    list-style: none;
    position: relative;
}

.faq-item summary::-webkit-details-marker {
    display: none;
}

.faq-item summary::after {
    content: "+";
    position: absolute;
    right: 0;
    font-size: 1.5rem;
    color: var(--brand-strong);
}

.faq-item[open] summary::after {
    content: "–";
}

.faq-item p {
    padding: 0 0 20px;
    color: var(--ink-soft);
}

.cta-band {
    padding: 70px 0;
    color: white;
    background: linear-gradient(120deg, #0c7eaa, #37b4e6);
}

.cta-band__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 50px;
}

.cta-band h2 {
    margin-bottom: 10px;
}

.cta-band p {
    max-width: 760px;
    margin-bottom: 0;
    color: #e8f7fd;
}

.cta-band .eyebrow {
    color: white;
    opacity: .82;
}

.portfolio-toolbar {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin: 0 0 34px;
}

.filter-btn {
    padding: 9px 14px;
    border: 1px solid var(--line);
    border-radius: 999px;
    background: white;
    color: var(--ink);
    font-weight: 700;
}

.filter-btn:hover, .filter-btn.is-active {
    background: var(--ink);
    border-color: var(--ink);
    color: white;
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}

.portfolio-item {
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: var(--radius-sm);
    background: white;
}

.portfolio-item[hidden] {
    display: none;
}

.portfolio-thumb {
    aspect-ratio: 16/10;
    overflow: hidden;
    background: #e8edf1;
}

.portfolio-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .25s ease;
}

.portfolio-item:hover .portfolio-thumb img {
    transform: scale(1.025);
}

.portfolio-body {
    padding: 20px;
}

.portfolio-body h3 {
    margin-bottom: 6px;
    font-size: 1.15rem;
}

.portfolio-body p {
    margin: 0;
    color: var(--ink-soft);
    font-size: .94rem;
}

.support-grid {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 22px;
}

.download-card {
    padding: 28px;
    border: 1px solid var(--line);
    border-radius: var(--radius-sm);
    background: white;
}

.download-card ul {
    margin-bottom: 0;
    padding-left: 20px;
}

.download-card li + li {
    margin-top: 9px;
}

.contact-layout {
    display: grid;
    grid-template-columns: minmax(0,1.2fr) minmax(300px,.8fr);
    gap: 58px;
}

.contact-form {
    display: grid;
    gap: 18px;
}

.form-row {
    display: grid;
    grid-template-columns: repeat(2,1fr);
    gap: 18px;
}

.form-field {
    display: grid;
    gap: 7px;
}

.form-field label {
    font-weight: 800;
    font-size: .92rem;
}

.form-field input, .form-field textarea {
    width: 100%;
    border: 1px solid #cfdbe2;
    border-radius: 10px;
    background: white;
    padding: 13px 14px;
    color: var(--ink);
}

.form-field input:focus, .form-field textarea:focus {
    outline: 3px solid rgba(55,180,230,.18);
    border-color: var(--brand);
}

.captcha-row {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 12px;
}

.captcha-image {
    border: 1px solid var(--line);
    border-radius: 8px;
    overflow: hidden;
}

.captcha-refresh {
    border: 0;
    border-radius: 999px;
    padding: 10px 13px;
    background: var(--surface-muted);
    font-weight: 800;
}

.form-message {
    padding: 12px 14px;
    border-radius: 9px;
    background: var(--surface-muted);
}

.form-message.is-error {
    color: var(--danger);
    background: #fff0ee;
}

.form-message.is-success {
    color: var(--success);
    background: #ecf8f1;
}

.honeypot {
    position: absolute;
    left: -9999px;
}

.contact-panel {
    padding: 30px;
    border-radius: var(--radius);
    background: var(--surface-muted);
}

.contact-panel h3 {
    margin-top: 28px;
}

.contact-panel h3:first-child {
    margin-top: 0;
}

.contact-panel p {
    color: var(--ink-soft);
}

.map-embed {
    width: 100%;
    height: 380px;
    border: 0;
    display: block;
}

.site-footer {
    padding: 72px 0 0;
    background: #07101a;
    color: #d1dbe2;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.3fr .9fr .8fr 1fr;
    gap: 50px;
    padding-bottom: 55px;
}

.footer-brand p {
    max-width: 330px;
    color: #aebdc8;
}

.footer-muted {
    font-size: .9rem;
}

.footer-heading {
    color: white;
    font-size: 1rem;
    letter-spacing: 0;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li + li {
    margin-top: 8px;
}

.site-footer a {
    color: #d1dbe2;
}

.site-footer a:hover {
    color: var(--brand);
}

.footer-contact {
    color: #aebdc8;
}

.footer-social {
    display: flex;
    gap: 14px;
    font-weight: 800;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    padding: 20px 0;
    border-top: 1px solid #203040;
    color: #8597a5;
    font-size: .84rem;
}

.footer-bottom p {
    margin: 0;
}

.back-to-top.is-visible {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
}

@media (max-width: 1050px) {
    .utility-bar__links span {
        display: none;
    }
    .nav-toggle {
        display: block;
    }
    .primary-nav {
        display: none;
        position: absolute;
        left: 20px;
        right: 20px;
        top: calc(100% - 1px);
        border: 1px solid var(--line);
        border-radius: 14px;
        background: white;
        box-shadow: var(--shadow);
        padding: 12px;
    }
    .primary-nav.is-open {
        display: block;
    }
    .primary-nav > ul {
        display: block;
    }
    .primary-nav li {
        width: 100%;
    }
    .nav-link {
        width: 100%;
        justify-content: space-between;
        padding: 10px 12px;
    }
    .nav-dropdown {
        position: static;
        width: 100%;
        display: none;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        border: 0;
        padding: 0 0 6px 12px;
    }
    .nav-group.is-open .nav-dropdown {
        display: block;
    }
    .primary-nav .btn {
        margin-top: 6px;
    }
    .service-grid, .feature-grid {
        grid-template-columns: 1fr 1fr;
    }
    .stats-grid {
        grid-template-columns: 1fr 1fr;
    }
    .split {
        grid-template-columns: 1fr;
        gap: 38px;
    }
    .process-grid {
        grid-template-columns: 1fr 1fr;
    }
    .portfolio-grid {
        grid-template-columns: 1fr 1fr;
    }
    .footer-grid {
        grid-template-columns: 1.2fr 1fr 1fr;
    }
    .footer-grid > :first-child {
        grid-column: 1 / -1;
    }
}

@media (max-width: 720px) {
    body {
        font-size: 16px;
    }
    .site-container {
        width: min(calc(100% - 28px), var(--container));
    }
    .utility-bar__inner {
        min-height: 34px;
    }
    .utility-bar__contact a:nth-child(2), .utility-bar__links {
        display: none;
    }
    .nav-shell__inner {
        min-height: 70px;
    }
    .brand {
        width: 170px;
    }
    .primary-nav {
        left: 14px;
        right: 14px;
    }
    .home-hero__inner {
        min-height: 590px;
        padding: 65px 0;
    }
    .page-hero__inner {
        min-height: 360px;
        padding: 65px 0 46px;
    }
    .section {
        padding: 66px 0;
    }
    .section-head {
        display: block;
    }
    .section-head p {
        margin-top: 16px;
    }
    .service-grid, .feature-grid, .cards-2, .process-grid, .portfolio-grid, .support-grid, .contact-layout, .form-row {
        grid-template-columns: 1fr;
    }
    .service-card {
        min-height: 330px;
    }
    .stats-grid {
        grid-template-columns: 1fr 1fr;
    }
    .stat {
        padding: 23px 20px;
    }
    .cta-band__inner {
        display: block;
    }
    .cta-band .btn {
        margin-top: 22px;
    }
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 36px 28px;
    }
    .footer-grid > :first-child {
        grid-column: 1 / -1;
    }
    .footer-bottom {
        display: block;
    }
    .footer-bottom p + p {
        margin-top: 5px;
    }
}

@media (max-width: 480px) {
    .stats-grid, .footer-grid {
        grid-template-columns: 1fr;
    }
    .footer-grid > :first-child {
        grid-column: auto;
    }
    .hero-actions .btn {
        width: 100%;
    }
}

@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        scroll-behavior: auto !important;
        transition-duration: .001ms !important;
        animation-duration: .001ms !important;
    }
}

/* Navigation — chevron de sous-menu */

.nav-group__toggle::after {
    content: "";
    width: 7px;
    height: 7px;
    margin-left: 7px;
    border-right: 2px solid currentColor;
    border-bottom: 2px solid currentColor;
    transform: translateY(-2px) rotate(45deg);
    transition: transform .18s ease;
}

.nav-group:hover > .nav-group__toggle::after, .nav-group:focus-within > .nav-group__toggle::after, .nav-group.is-open > .nav-group__toggle::after {
    transform: translateY(2px) rotate(225deg);
}

/* Accueil — hero */

.home-hero--showcase {
    position: relative;
    isolation: isolate;
    overflow: hidden;
    color: white;
    background: radial-gradient(circle at 82% 22%, rgba(55,180,230,.24), transparent 30%),
        radial-gradient(circle at 70% 82%, rgba(23,155,209,.14), transparent 34%),
        linear-gradient(120deg, #07111d 0%, #0b1a2b 55%, #0a2431 100%);
}

.home-hero--showcase::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -2;
    opacity: .2;
    background-image: linear-gradient(rgba(255,255,255,.055) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,.055) 1px, transparent 1px);
    background-size: 58px 58px;
    mask-image: linear-gradient(90deg, transparent 5%, black 50%, black 100%);
}

.home-hero--showcase::after {
    content: "";
    position: absolute;
    left: -8%;
    bottom: -44%;
    width: 62%;
    aspect-ratio: 1;
    z-index: -1;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(55,180,230,.11), transparent 66%);
}

.home-hero--showcase .home-hero__inner {
    min-height: 660px;
}

.home-hero__grid {
    display: grid;
    grid-template-columns: minmax(0,1.08fr) minmax(420px,.92fr);
    gap: clamp(36px,5vw,78px);
    align-items: center;
}

.home-hero__content {
    position: relative;
    z-index: 3;
}

.home-hero--showcase h1 {
    max-width: 820px;
    font-size: clamp(2.75rem,5.4vw,5rem);
}

.home-hero--showcase .home-hero__lead {
    max-width: 730px;
}

.hero-stage {
    position: relative;
    min-height: 510px;
    perspective: 1000px;
}

.hero-stage__halo {
    position: absolute;
    inset: 13% 6% 8% 11%;
    border-radius: 50%;
    border: 1px solid rgba(121,218,255,.22);
    box-shadow: 0 0 80px rgba(55,180,230,.14), inset 0 0 70px rgba(55,180,230,.04);
}

.hero-stage__halo::before, .hero-stage__halo::after {
    content: "";
    position: absolute;
    border-radius: 50%;
    border: 1px dashed rgba(255,255,255,.12);
}

.hero-stage__halo::before {
    inset: 13%;
}

.hero-stage__halo::after {
    inset: 28%;
}

.hero-stage__card {
    position: absolute;
    overflow: hidden;
    border: 1px solid rgba(255,255,255,.18);
    border-radius: 22px;
    background: linear-gradient(145deg, rgba(255,255,255,.14), rgba(255,255,255,.055));
    box-shadow: 0 28px 70px rgba(0,0,0,.28);
    backdrop-filter: blur(12px);
}

.hero-stage__label {
    position: absolute;
    top: 16px;
    left: 18px;
    z-index: 3;
    padding: 5px 9px;
    border-radius: 999px;
    background: rgba(5,13,22,.62);
    color: #dff7ff;
    font-size: .72rem;
    font-weight: 800;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.hero-stage__card--video::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 68% 54%, rgba(55,180,230,.27), transparent 43%);
}

.hero-stage__card--it::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 38% 45%, rgba(23,155,209,.24), transparent 48%);
}


@keyframes heroFloatA {
    0%, 100% {
        transform: translate3d(0,0,0) rotate(1.2deg);
    }
    50% {
        transform: translate3d(0,-9px,0) rotate(.2deg);
    }
}

@keyframes heroFloatB {
    0%, 100% {
        transform: translate3d(0,0,0) rotate(-1.2deg);
    }
    50% {
        transform: translate3d(0,8px,0) rotate(-.2deg);
    }
}

@keyframes heroFloatC {
    0%, 100% {
        transform: translate3d(0,0,0) rotate(.7deg);
    }
    50% {
        transform: translate3d(0,-7px,0) rotate(1.2deg);
    }
}

/* Accueil — cartes des trois expertises */

.service-grid--visual {
    align-items: stretch;
}

.service-card--modern {
    min-height: 0;
    display: flex;
    flex-direction: column;
    padding: 0;
    color: var(--ink);
    background: white;
    border: 1px solid var(--line);
    box-shadow: 0 18px 45px rgba(11,20,32,.075);
}

.service-card--modern::before, .service-card--modern::after {
    display: none;
}

.service-card--modern:hover {
    transform: translateY(-5px);
    box-shadow: 0 26px 58px rgba(11,20,32,.12);
}

.service-card--video .service-card__visual {
    background: linear-gradient(145deg,#0b1a2b,#12354a);
}

.service-card--it .service-card__visual {
    background: radial-gradient(circle at 20% 78%, rgba(55,180,230,.18), transparent 28%),
        radial-gradient(circle at 88% 16%, rgba(104,217,255,.10), transparent 24%),
        linear-gradient(145deg,#08131f,#102c40 58%,#12364d);
}

.service-card__number {
    position: absolute;
    top: 20px;
    left: 22px;
    z-index: 4;
    color: rgba(255,255,255,.66);
    font-weight: 900;
    font-size: .84rem;
    letter-spacing: .1em;
}

.service-card__body {
    flex: 1;
    display: flex;
    flex-direction: column;
    padding: 28px 28px 30px;
}

.service-card__body h3 {
    margin-bottom: 10px;
}

.service-card__body p {
    color: var(--ink-soft);
}

.service-card__body .service-card__link {
    margin-top: auto;
    color: var(--brand-strong);
}

.service-card__object {
    position: absolute;
    z-index: 2;
    filter: drop-shadow(0 18px 22px rgba(0,0,0,.28));
}


.visual-ring {
    position: absolute;
    border-radius: 50%;
    border: 1px solid rgba(94,213,255,.28);
}

.visual-ring--1 {
    width: 235px;
    height: 235px;
    right: -30px;
    bottom: -65px;
}

.visual-ring--2 {
    width: 155px;
    height: 155px;
    right: 10px;
    bottom: -25px;
    border-style: dashed;
}


/* Accueil — chiffres clés */

.section--stats {
    position: relative;
    overflow: hidden;
    padding: 58px 0;
    background: #0b1623;
}

.section--stats::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 12% 40%, rgba(55,180,230,.16), transparent 28%), radial-gradient(circle at 88% 60%, rgba(23,155,209,.10), transparent 28%);
}

.stats-grid--three {
    position: relative;
    grid-template-columns: repeat(3,1fr);
    gap: 0;
    border: 1px solid rgba(255,255,255,.13);
    background: rgba(255,255,255,.08);
    box-shadow: 0 24px 65px rgba(0,0,0,.18);
}

.stats-grid--three .stat {
    min-height: 190px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 34px 38px;
    background: rgba(8,20,32,.82);
}

.stats-grid--three .stat + .stat {
    border-left: 1px solid rgba(255,255,255,.11);
}

.stats-grid--three .stat__value {
    display: flex;
    align-items: baseline;
    gap: .16em;
    margin: 0 0 14px;
    color: #77ddff;
    font-size: clamp(2.8rem,4.6vw,4.5rem);
    font-weight: 900;
    line-height: .88;
    letter-spacing: -.055em;
    font-variant-numeric: tabular-nums;
}

.stats-grid--three .stat__value [data-counter] {
    display: inline;
    margin: 0;
    color: inherit;
    font: inherit;
    line-height: inherit;
}

.stats-grid--three .stat__value small {
    color: #c8ecf8;
    font-size: .32em;
    font-weight: 800;
    letter-spacing: -.02em;
}

.stats-grid--three .stat__label {
    display: block;
    margin: 0;
    color: white;
    font-size: 1.06rem;
    font-weight: 800;
    line-height: 1.25;
}

.stats-grid--three .stat__meta {
    display: block;
    margin-top: 9px;
    color: #9bb0bf;
    font-style: normal;
    font-size: .86rem;
    line-height: 1.45;
}

/* Bouton retour en haut */

.back-to-top:hover {
    background: #0b1420;
    transform: translateY(-2px);
}

.back-to-top.is-visible:hover {
    transform: translateY(-2px);
}

@media (prefers-reduced-motion: reduce) {
    .hero-stage__card {
        animation: none !important;
    }
}

/* Accueil — méthode en trois étapes */

/* Répartition desktop du footer : davantage d'espace pour la colonne Services. */

@media (min-width: 1051px) {
    .footer-grid {
        grid-template-columns: 1.10fr 1.35fr .75fr .90fr;
        gap: 36px;
    }
}

/* Méthode — tablette */

@media (min-width: 721px) and (max-width: 1050px) {
    .process-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.method-section {
    position: relative;
    overflow: hidden;
    background: radial-gradient(circle at 14% 18%, rgba(55,180,230,.10), transparent 27%),
        radial-gradient(circle at 88% 76%, rgba(23,155,209,.07), transparent 30%),
        linear-gradient(180deg,#f8fbfd 0%,#f1f6f9 100%);
}

.method-timeline {
    position: relative;
    display: grid;
    grid-template-columns: repeat(3,minmax(0,1fr));
    gap: clamp(28px,4vw,58px);
    margin-top: 58px;
}

.method-timeline::before {
    content: "";
    position: absolute;
    z-index: 0;
    top: 39px;
    left: calc(100% / 6);
    right: calc(100% / 6);
    height: 2px;
    background: linear-gradient(90deg,rgba(55,180,230,.24),#37b4e6 50%,rgba(55,180,230,.24));
}

.method-step {
    position: relative;
    z-index: 1;
    text-align: center;
}

.method-step__number {
    width: 78px;
    height: 78px;
    display: grid;
    place-items: center;
    margin: 0 auto 24px;
    border: 7px solid #f4f8fa;
    border-radius: 50%;
    background: #0b1a2b;
    color: #7bdfff;
    box-shadow: 0 0 0 1px rgba(55,180,230,.22), 0 13px 30px rgba(11,20,32,.16);
    font-size: 1.12rem;
    font-weight: 900;
    letter-spacing: .08em;
}

.method-step h3 {
    margin-bottom: 10px;
    font-size: clamp(1.3rem,2vw,1.65rem);
}

.method-step p {
    max-width: 320px;
    margin: 0 auto;
    color: var(--ink-soft);
}

@media (max-width: 720px) {
    .method-section__head {
        text-align: left;
    }
    .method-section__head .lead {
        margin-left: 0;
    }
    .method-timeline {
        grid-template-columns: 1fr;
        gap: 34px;
        margin-top: 42px;
        padding-left: 4px;
    }
    .method-timeline::before {
        top: 38px;
        bottom: 38px;
        left: 39px;
        right: auto;
        width: 2px;
        height: auto;
        background: linear-gradient(180deg,rgba(55,180,230,.24),#37b4e6 50%,rgba(55,180,230,.24));
    }
    .method-step {
        display: grid;
        grid-template-columns: 78px 1fr;
        column-gap: 22px;
        text-align: left;
    }
    .method-step__number {
        grid-row: 1 / span 2;
        margin: 0;
    }
    .method-step h3 {
        align-self: end;
        margin-bottom: 7px;
    }
    .method-step p {
        max-width: none;
        margin: 0;
    }
}

@media (min-width: 1051px) {
    .stats-grid--three .stat {
        padding-left: 32px;
        padding-right: 32px;
    }
    .stats-grid--three .stat:last-child .stat__meta {
        font-size: .83rem;
        letter-spacing: -.012em;
    }
}

/* Pages intérieures — hero commun */

.page-hero--visual {
    position: relative;
    isolation: isolate;
    overflow: hidden;
    color: white;
    background: radial-gradient(circle at 83% 22%, rgba(55,180,230,.22), transparent 30%),
        radial-gradient(circle at 70% 84%, rgba(23,155,209,.12), transparent 34%),
        linear-gradient(120deg,#07111d 0%,#0b1a2b 56%,#0a2431 100%);
}

.page-hero--visual::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -2;
    opacity: .18;
    background-image: linear-gradient(rgba(255,255,255,.055) 1px,transparent 1px),linear-gradient(90deg,rgba(255,255,255,.055) 1px,transparent 1px);
    background-size: 58px 58px;
    mask-image: linear-gradient(90deg,transparent 4%,#000 54%,#000 100%);
}

.page-hero--visual::after {
    content: "";
    position: absolute;
    right: -10%;
    bottom: -58%;
    width: 58%;
    aspect-ratio: 1;
    z-index: -1;
    border-radius: 50%;
    background: radial-gradient(circle,rgba(55,180,230,.12),transparent 65%);
}

.page-hero--visual .page-hero__inner {
    min-height: 500px;
    padding: 72px 0;
    align-content: center;
}

.page-hero__grid {
    grid-template-columns: minmax(0,1.08fr) minmax(380px,.92fr);
    gap: clamp(38px,6vw,82px);
    align-items: center;
}

.page-hero__content {
    position: relative;
    z-index: 4;
}

.page-hero--visual h1 {
    max-width: 790px;
    font-size: clamp(2.65rem,4.8vw,4.7rem);
}

.page-hero--visual .page-hero__lead {
    max-width: 760px;
    color: #d0dae2;
}

.page-hero__stage {
    position: relative;
    min-height: 360px;
}

.page-hero__halo {
    position: absolute;
    inset: 7% 5% 6% 8%;
    border: 1px solid rgba(121,218,255,.18);
    border-radius: 50%;
    box-shadow: 0 0 70px rgba(55,180,230,.10), inset 0 0 60px rgba(55,180,230,.035);
}

.page-hero__halo::before, .page-hero__halo::after {
    content: "";
    position: absolute;
    border: 1px dashed rgba(255,255,255,.10);
    border-radius: 50%;
}

.page-hero__halo::before {
    inset: 14%;
}

.page-hero__halo::after {
    inset: 30%;
}

.page-hero__object {
    position: absolute;
    z-index: 3;
    max-width: none;
    filter: drop-shadow(0 20px 25px rgba(0,0,0,.32));
}


.page-hero__orbit {
    position: absolute;
    border-radius: 50%;
    border: 1px solid rgba(104,217,255,.25);
    z-index: 2;
}

.page-hero__orbit--a {
    width: 275px;
    height: 275px;
    right: 0;
    bottom: -20px;
}

.page-hero__orbit--b {
    width: 190px;
    height: 190px;
    right: 42px;
    bottom: 23px;
    border-style: dashed;
}

.page-hero__visual {
    position: absolute;
    inset: 0;
    z-index: 3;
    pointer-events: none;
    transform-origin: center center;
}


/* Pages intérieures — cartes */

.info-card, .feature-card, .download-card {
    box-shadow: 0 12px 30px rgba(11,20,32,.045);
}

.feature-card::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 3px;
    background: linear-gradient(90deg,var(--brand),transparent 72%);
    opacity: .7;
}

.process-grid--three {
    grid-template-columns: repeat(3,1fr);
}

@media (max-width:1050px) {
    .page-hero__grid {
        grid-template-columns: minmax(0,1fr) minmax(320px,.72fr);
        gap: 28px;
    }
    .page-hero__stage {
        transform: scale(.9);
        transform-origin: center right;
    }
    .page-hero--visual .page-hero__inner {
        min-height: 455px;
    }
}

@media (max-width:820px) {
    .page-hero__grid {
        grid-template-columns: 1fr;
    }
    .page-hero__stage {
        min-height: 330px;
        width: min(100%,560px);
        margin: 0 auto;
        transform: none;
    }
    .page-hero--visual .page-hero__inner {
        padding-top: 62px;
        padding-bottom: 38px;
    }
    .process-grid--three {
        grid-template-columns: 1fr;
    }
}

@media (max-width:560px) {
    .page-hero__stage {
        min-height: 280px;
    }
    
    
    
}

/* =========================================================
   INTERMÉDIAIRE : tablette paysage / petit écran desktop
   ========================================================= */

/* =========================================================
   SMARTPHONE
   ========================================================= */


/* ============================================================================
   RESPONSIVE — PAGES INTÉRIEURES : VISUELS HERO PAR PAGE
   ----------------------------------------------------------------------------
   Chaque page dispose volontairement de sa propre classe, même lorsque les
   valeurs sont identiques. Cela permet de retoucher une page sans influencer
   les autres.

   1. Desktop       : >= 1051 px
   2. Intermédiaire : 821 à 1050 px
   3. Tablette      : 561 à 820 px
   4. Smartphone    : <= 560 px
   ============================================================================ */

/* ---------------------------------------------------------------------------
   1. DESKTOP — >= 1051 px
   --------------------------------------------------------------------------- */

@media (min-width: 1051px) {
    /* Réalisations */
    .page-hero__object--references {
        width: 100%;
        right: -2%;
        bottom: -4%;
    }

    /* STUDIO MT — prêt pour un futur PNG dédié */
    .page-hero__object--studio {
        width: 100%;
        right: -2%;
        bottom: -4%;
    }

    /* Contact — prêt pour un futur PNG dédié */
    .page-hero__object--contact {
        width: 100%;
        right: -2%;
        bottom: -4%;
    }

    /* Tournage vidéo */
    .page-hero__object--tournage {
        width: 100%;
        right: -2%;
        bottom: -4%;
    }

    /* Montage & postproduction */
    .page-hero__object--montage {
        width: 100%;
        right: -2%;
        bottom: -4%;
    }

    /* Captation, régie & streaming */
    .page-hero__object--regie {
        width: 100%;
        right: -2%;
        bottom: -4%;
    }

    /* Création de sites web */
    .page-hero__object--web {
        width: 100%;
        right: -2%;
        bottom: -4%;
    }

    /* Hébergement, domaines & DNS */
    .page-hero__object--hosting {
        width: 100%;
        right: -2%;
        bottom: -4%;
    }

    /* Infogérance & maintenance */
    .page-hero__object--informatique {
        width: 100%;
        right: -2%;
        bottom: -4%;
    }

    /* Support client */
    .page-hero__object--support {
        width: 100%;
        right: -2%;
        bottom: -4%;
    }
}

/* ---------------------------------------------------------------------------
   2. INTERMÉDIAIRE — 821 à 1050 px
   --------------------------------------------------------------------------- */

@media (min-width: 821px) and (max-width: 1050px) {
    /* Réalisations */
    .page-hero__object--references {
        width: 120%;
        right: -2%;
        bottom: -4%;
    }

    /* STUDIO MT — prêt pour un futur PNG dédié */
    .page-hero__object--studio {
        width: 120%;
        right: -2%;
        bottom: -4%;
    }

    /* Contact — prêt pour un futur PNG dédié */
    .page-hero__object--contact {
        width: 120%;
        right: -2%;
        bottom: -4%;
    }

    /* Tournage vidéo */
    .page-hero__object--tournage {
        width: 120%;
        right: -2%;
        bottom: -4%;
    }

    /* Montage & postproduction */
    .page-hero__object--montage {
        width: 120%;
        right: -2%;
        bottom: -4%;
    }

    /* Captation, régie & streaming */
    .page-hero__object--regie {
        width: 120%;
        right: -2%;
        bottom: -4%;
    }

    /* Création de sites web */
    .page-hero__object--web {
        width: 120%;
        right: -2%;
        bottom: -4%;
    }

    /* Hébergement, domaines & DNS */
    .page-hero__object--hosting {
        width: 120%;
        right: -2%;
        bottom: -4%;
    }

    /* Infogérance & maintenance */
    .page-hero__object--informatique {
        width: 120%;
        right: -2%;
        bottom: -4%;
    }

    /* Support client */
    .page-hero__object--support {
        width: 120%;
        right: -2%;
        bottom: -4%;
    }
}

/* ---------------------------------------------------------------------------
   3. TABLETTE — 561 à 820 px
   --------------------------------------------------------------------------- */

@media (min-width: 561px) and (max-width: 820px) {
    /* Réalisations */
    .page-hero__object--references {
        width: 70%;
        right: 10%;
        bottom: 1%;
    }

    /* STUDIO MT — prêt pour un futur PNG dédié */
    .page-hero__object--studio {
        width: 70%;
        right: 10%;
        bottom: 1%;
    }

    /* Contact — prêt pour un futur PNG dédié */
    .page-hero__object--contact {
        width: 70%;
        right: 10%;
        bottom: 1%;
    }

    /* Tournage vidéo */
    .page-hero__object--tournage {
        width: 70%;
        right: 10%;
        bottom: 1%;
    }

    /* Montage & postproduction */
    .page-hero__object--montage {
        width: 70%;
        right: 10%;
        bottom: 1%;
    }

    /* Captation, régie & streaming */
    .page-hero__object--regie {
        width: 70%;
        right: 10%;
        bottom: 1%;
    }

    /* Création de sites web */
    .page-hero__object--web {
        width: 70%;
        right: 10%;
        bottom: 1%;
    }

    /* Hébergement, domaines & DNS */
    .page-hero__object--hosting {
        width: 70%;
        right: 10%;
        bottom: 1%;
    }

    /* Infogérance & maintenance */
    .page-hero__object--informatique {
        width: 70%;
        right: 10%;
        bottom: 1%;
    }

    /* Support client */
    .page-hero__object--support {
        width: 70%;
        right: 10%;
        bottom: 1%;
    }
}

/* ---------------------------------------------------------------------------
   4. SMARTPHONE — <= 560 px
   --------------------------------------------------------------------------- */

@media (max-width: 560px) {
    /* Réalisations */
    .page-hero__object--references {
        width: 70%;
        right: 10%;
        bottom: 1%;
    }

    /* STUDIO MT — prêt pour un futur PNG dédié */
    .page-hero__object--studio {
        width: 70%;
        right: 10%;
        bottom: 1%;
    }

    /* Contact — prêt pour un futur PNG dédié */
    .page-hero__object--contact {
        width: 70%;
        right: 10%;
        bottom: 1%;
    }

    /* Tournage vidéo */
    .page-hero__object--tournage {
        width: 70%;
        right: 10%;
        bottom: 1%;
    }

    /* Montage & postproduction */
    .page-hero__object--montage {
        width: 70%;
        right: 10%;
        bottom: 1%;
    }

    /* Captation, régie & streaming */
    .page-hero__object--regie {
        width: 70%;
        right: 10%;
        bottom: 1%;
    }

    /* Création de sites web */
    .page-hero__object--web {
        width: 70%;
        right: 10%;
        bottom: 1%;
    }

    /* Hébergement, domaines & DNS */
    .page-hero__object--hosting {
        width: 70%;
        right: 10%;
        bottom: 1%;
    }

    /* Infogérance & maintenance */
    .page-hero__object--informatique {
        width: 70%;
        right: 10%;
        bottom: 1%;
    }

    /* Support client */
    .page-hero__object--support {
        width: 70%;
        right: 10%;
        bottom: 1%;
    }
}

/* ============================================================================
   RESPONSIVE — ACCUEIL : HERO + CARTES 01 / 02 / 03
   ----------------------------------------------------------------------------
   ZONE UNIQUE À MODIFIER POUR LE CADRAGE DES VISUELS.

   Chaque visuel possède systématiquement :
   - une classe CONTENEUR ;
   - une classe IMAGE indépendante.

   1. Desktop         : >= 1051 px
   2. Intermédiaire   : 821 à 1050 px
   3. Tablette        : 721 à 820 px
   4. Smartphone      : <= 720 px
   ============================================================================ */

/* ---------------------------------------------------------------------------
   1. DESKTOP — >= 1051 px
   --------------------------------------------------------------------------- */

@media (min-width: 1051px) {
    /* HERO 01 — Audiovisuel : conteneur */
    .hero-stage__card--video {
        top: 10px;
        right: 6px;
        width: 70%;
        height: 235px;
    }
    /* HERO 01 — Audiovisuel : image */
    .hero-stage__video-object {
        width: 74%;
        right: 9%;
        bottom: 6%;
    }

    /* HERO 02 — Web & hébergement : conteneur */
    .hero-stage__card--web {
        top: 176px;
        left: -2px;
        width: 72%;
        height: 248px;
        overflow: visible;
    }
    /* HERO 02 — Web & hébergement : image */
    .hero-stage__web-object {
        width: 90%;
        left: 2%;
        bottom: -1%;
    }

    /* HERO 03 — IT : conteneur */
    .hero-stage__card--it {
        right: -5px;
        bottom: 5px;
        width: 70%;
        height: 220px;
    }
    /* HERO 03 — IT : image */
    .hero-stage__it-object {
        width: 95%;
        left: auto;
        right: 2%;
        bottom: -10%;
    }

    /* CARTE 01 — Audiovisuel : conteneur */
    .service-card__visual--video {
        height: 245px;
        min-height: 245px;
    }
    /* CARTE 01 — Audiovisuel : image */
    .service-card__object--video {
        width: 80%;
        right: 8%;
        bottom: 6%;
    }

    /* CARTE 02 — Web & hébergement : conteneur */
    .service-card__visual--web {
        height: 245px;
        min-height: 245px;
    }
    /* CARTE 02 — Web & hébergement : image */
    .service-card__object--web {
        width: 84%;
        left: 8%;
        right: auto;
        bottom: -1%;
    }

    /* CARTE 03 — IT : conteneur */
    .service-card__visual--it {
        height: 245px;
        min-height: 245px;
    }
    /* CARTE 03 — IT : image */
    .service-card__object--it {
        width: 88%;
        left: 6%;
        right: auto;
        bottom: -1%;
    }
}

/* ---------------------------------------------------------------------------
   2. INTERMÉDIAIRE — 821 à 1050 px
   --------------------------------------------------------------------------- */

@media (min-width: 821px) and (max-width: 1050px) {
    .home-hero__grid {
        grid-template-columns: minmax(0,1fr) minmax(330px,.72fr);
        gap: 28px;
    }
    .hero-stage {
        min-height: 440px;
        transform: scale(.9);
        transform-origin: center right;
    }

    /* HERO 01 — Audiovisuel : conteneur */
    .hero-stage__card--video {
        top: 10px;
        right: 6px;
        width: 70%;
        height: 235px;
    }
    /* HERO 01 — Audiovisuel : image */
    .hero-stage__video-object {
        width: 74%;
        right: 9%;
        bottom: 10%;
    }

    /* HERO 02 — Web & hébergement : conteneur */
    .hero-stage__card--web {
        top: 142px;
        left: -2px;
        width: 72%;
        height: 192px;
        overflow: hidden;
    }
    /* HERO 02 — Web & hébergement : image */
    .hero-stage__web-object {
        width: 70%;
        left: 4%;
        bottom: -5%;
    }

    /* HERO 03 — IT : conteneur */
    .hero-stage__card--it {
        right: -2px;
        bottom: 5px;
        width: 70%;
        height: 220px;
    }
    /* HERO 03 — IT : image */
    .hero-stage__it-object {
        width: 90%;
        left: auto;
        right: 2%;
        bottom: 1%;
    }

    /* CARTE 01 — Audiovisuel : conteneur */
    .service-card__visual--video {
        height: 215px;
        min-height: 215px;
    }
    /* CARTE 01 — Audiovisuel : image */
    .service-card__object--video {
        width: 60%;
        right: 15%;
        bottom: 2%;
    }

    /* CARTE 02 — Web & hébergement : conteneur */
    .service-card__visual--web {
        height: 215px;
        min-height: 215px;
    }
    /* CARTE 02 — Web & hébergement : image */
    .service-card__object--web {
        width: 65%;
        left: 20%;
        right: auto;
        bottom: -7%;
    }

    /* CARTE 03 — IT : conteneur */
    .service-card__visual--it {
        height: 215px;
        min-height: 215px;
    }
    /* CARTE 03 — IT : image */
    .service-card__object--it {
        width: 78%;
        left: 8%;
        right: auto;
        bottom: -12%;
    }

    .stats-grid--three {
        grid-template-columns: repeat(3,1fr);
    }
}

/* ---------------------------------------------------------------------------
   3. TABLETTE — 721 à 820 px
   Valeurs initiales identiques à l'intermédiaire, mais volontairement répétées
   pour permettre un réglage spécifique sans rechercher les héritages CSS.
   --------------------------------------------------------------------------- */

@media (min-width: 721px) and (max-width: 820px) {
    .home-hero__grid {
        grid-template-columns: 1fr;
    }
    .home-hero--showcase .home-hero__inner {
        padding-top: 70px;
        padding-bottom: 42px;
    }
    .hero-stage {
        min-height: 420px;
        width: min(100%,560px);
        margin: 8px auto 0;
        transform: none;
    }

    /* HERO 01 — Audiovisuel : conteneur */
    .hero-stage__card--video {
        top: 10px;
        right: 6px;
        width: 70%;
        height: 235px;
    }
    /* HERO 01 — Audiovisuel : image */
    .hero-stage__video-object {
        width: 74%;
        right: 9%;
        bottom: 10%;
    }

    /* HERO 02 — Web & hébergement : conteneur */
    .hero-stage__card--web {
        top: 142px;
        left: -2px;
        width: 72%;
        height: 192px;
        overflow: hidden;
    }
    /* HERO 02 — Web & hébergement : image */
    .hero-stage__web-object {
        width: 70%;
        left: 4%;
        bottom: -5%;
    }

    /* HERO 03 — IT : conteneur */
    .hero-stage__card--it {
        right: -2px;
        bottom: 5px;
        width: 70%;
        height: 220px;
    }
    /* HERO 03 — IT : image */
    .hero-stage__it-object {
        width: 90%;
        left: auto;
        right: 2%;
        bottom: -12%;
    }

    /* CARTE 01 — Audiovisuel : conteneur */
    .service-card__visual--video {
        height: 215px;
        min-height: 215px;
    }
    /* CARTE 01 — Audiovisuel : image */
    .service-card__object--video {
        width: 66%;
        right: 8%;
        bottom: 4%;
    }

    /* CARTE 02 — Web & hébergement : conteneur */
    .service-card__visual--web {
        height: 215px;
        min-height: 215px;
    }
    /* CARTE 02 — Web & hébergement : image */
    .service-card__object--web {
        width: 72%;
        left: 20%;
        right: auto;
        bottom: -5%;
    }

    /* CARTE 03 — IT : conteneur */
    .service-card__visual--it {
        height: 215px;
        min-height: 215px;
    }
    /* CARTE 03 — IT : image */
    .service-card__object--it {
        width: 82%;
        left: 8%;
        right: auto;
        bottom: -10%;
    }

    .stats-grid--three {
        grid-template-columns: 1fr;
    }
    .stats-grid--three .stat + .stat {
        border-left: 0;
        border-top: 1px solid rgba(255,255,255,.11);
    }
}

/* ---------------------------------------------------------------------------
   4. SMARTPHONE — <= 720 px
   --------------------------------------------------------------------------- */

@media (max-width: 720px) {
    .home-hero__grid {
        grid-template-columns: 1fr;
    }
    .home-hero--showcase .home-hero__inner {
        padding-top: 70px;
        padding-bottom: 42px;
    }
    .hero-stage {
        min-height: 355px;
        width: min(100%,560px);
        margin: 8px auto 0;
        transform: none;
    }

    /* HERO 01 — Audiovisuel : conteneur */
    .hero-stage__card--video {
        top: 10px;
        right: 6px;
        width: 65%;
        height: 175px;
    }
    /* HERO 01 — Audiovisuel : image */
    .hero-stage__video-object {
        width: 64%;
        right: 8%;
        bottom: 5%;
    }

    /* HERO 02 — Web & hébergement : conteneur */
    .hero-stage__card--web {
        top: 150px;
        left: -2px;
        width: 64%;
        height: 158px;
        overflow: hidden;
    }
    /* HERO 02 — Web & hébergement : image */
    .hero-stage__web-object {
        width: 66%;
        left: 13%;
        bottom: -5%;
    }

    /* HERO 03 — IT : conteneur */
    .hero-stage__card--it {
        right: -2px;
        bottom: 5px;
        width: 60%;
        height: 160px;
    }
    /* HERO 03 — IT : image */
    .hero-stage__it-object {
        width: 72%;
        left: auto;
        right: 7%;
        bottom: -8%;
    }

    /* CARTE 01 — Audiovisuel : conteneur */
    .service-card__visual--video {
        height: 185px;
        min-height: 185px;
    }
    /* CARTE 01 — Audiovisuel : image */
    .service-card__object--video {
        width: 42%;
        right: 20%;
        bottom: 0;
    }

    /* CARTE 02 — Web & hébergement : conteneur */
    .service-card__visual--web {
        height: 185px;
        min-height: 185px;
    }
    /* CARTE 02 — Web & hébergement : image */
    .service-card__object--web {
        width: 52%;
        left: 28%;
        right: auto;
        bottom: -12%;
    }

    /* CARTE 03 — IT : conteneur */
    .service-card__visual--it {
        height: 185px;
        min-height: 185px;
    }
    /* CARTE 03 — IT : image */
    .service-card__object--it {
        width: 56%;
        left: 25%;
        right: auto;
        bottom: -12%;
    }

    .stats-grid--three {
        grid-template-columns: 1fr;
    }
    .stats-grid--three .stat + .stat {
        border-left: 0;
        border-top: 1px solid rgba(255,255,255,.11);
    }
}

