@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&family=Orbitron:wght@500;600;700;800&display=swap');
* {
    box-sizing: border-box;
}
:root {
    --layout-max-width: 1360px;
    --layout-gutter: 24px;
    --layout-gutter-mobile: 12px;
    --layout-shell-width: min(var(--layout-max-width), calc(100% - (var(--layout-gutter) * 2)));
    --layout-shell-width-mobile: calc(100% - (var(--layout-gutter-mobile) * 2));
    --hero-content-gutter: 28px;
    --hero-content-gutter-mobile: 14px;
    --section-gap: 10px;
    --surface-radius: 10px;
    --card-radius: 14px;
    --card-border: 1px solid #8f8f8f;
    --slider-dot-size: 8px;
    --slider-dot-size-mobile: 8px;
    --hero-image-fixed-height: 520px;
}
html, body {
    width: 100%;
    margin: 0;
    padding: 0;
    overflow-x: hidden;
}
body {
    font-family: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
    background: #fff;
    color: #000;
    line-height: 1.5;
}
img {
    max-width: 100%;
    height: auto;
}
h1, h2, h3, h4, h5, h6,
.page-kicker {
    font-family: "Orbitron", "Inter", system-ui, sans-serif;
}
.page-shell {
    width: 100%;
    max-width: 1100px;
    margin: 0 auto;
    padding: 28px 16px 48px;
}
.page-shell section {
    margin-bottom: 24px;
}
.page-shell > section:first-of-type {
    border: 0;
    padding: 16px;
    background: #000;
    color: #fff;
}
.page-shell > section:first-of-type h1 {
    margin: 0 0 8px;
    color: #fff;
}
.page-shell > section:first-of-type p {
    max-width: 76ch;
    color: #fff;
}
.page-shell > section:first-of-type .page-kicker {
    color: #fff;
    border-color: #fff;
}
.page-shell > section:first-of-type .mono-hero {
    display: block;
    width: 100%;
    height: var(--hero-image-fixed-height);
    object-fit: cover;
    object-position: center;
    border: 0 !important;
    border-radius: 0;
    background: #000;
}
.page-shell section h2 {
    margin: 0 0 12px;
}
.section-grid {
    display: grid;
    gap: 12px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
}
.section-grid--3 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}
.section-grid--4 {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}
.panel {
    border: 1px solid #d9d9d9;
    border-radius: 10px;
    padding: 12px;
    background: #fff;
}
.panel h3 {
    margin: 0 0 6px;
    font-size: 1rem;
}
.panel p {
    margin: 0 0 8px;
}
a {
    color: inherit;
    text-decoration: none;
}
a:hover {
    text-decoration: none;
}
button,
[type="button"],
[type="submit"] {
    cursor: pointer;
}
:where(a, button, input, textarea, select):focus-visible {
    outline: 2px solid #111;
    outline-offset: 2px;
}
.skip-link {
    position: absolute;
    left: 8px;
    top: -48px;
    z-index: 1200;
    background: #000;
    color: #fff;
    padding: 8px 12px;
    border-radius: 6px;
    font-size: 0.9rem;
}
.skip-link:focus-visible {
    top: 8px;
}
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
}
.services-section,
.expertise-section,
.engagement-section,
.faq-section,
.footer,
.contact-section,
.service-page,
.boutique-page,
.entreprise-page,
.b2-section {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 80px 20px;
}
.main-header {
    position: relative;
    z-index: 10;
}
.cc-header {
    border-bottom: 0;
    background: #e9e9e9;
    position: relative;
    overflow: visible;
    z-index: 50;
}
.cc-header__inner {
    max-width: var(--layout-max-width);
    margin: 0 auto;
    min-height: 128px;
    padding: 16px 56px;
    display: flex;
    gap: 16px;
    align-items: center;
    justify-content: space-between;
}
.cc-brand {
    display: inline-flex;
    align-items: center;
}
.cc-brand__logo {
    display: block;
    width: clamp(166px, 14.6vw, 252px);
    height: auto;
}
.cc-nav {
    display: flex;
    gap: 38px;
    align-items: center;
}
.cc-nav__group {
    position: relative;
    overflow: visible;
}
.cc-nav__link {
    display: inline-block;
    padding: 8px 0;
    font-weight: 700;
    font-size: 1.05rem;
    font-family: "Orbitron", "Inter", system-ui, sans-serif;
}
.cc-nav__link.is-active {
    border-bottom: 2px solid #111;
}
.cc-nav__submenu {
    position: absolute;
    left: 0;
    top: 100%;
    min-width: 220px;
    background: #fff;
    border: 1px solid #ececec;
    border-radius: 8px;
    padding: 6px;
    display: none;
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.08);
    z-index: 1000;
}
.cc-nav__submenu a {
    display: block;
    padding: 8px;
    border-radius: 6px;
    font-size: 0.95rem;
    font-family: "Orbitron", "Inter", system-ui, sans-serif;
}
.cc-nav__submenu a:hover {
    background: #f3f3f3;
}
.cc-nav__group:hover .cc-nav__submenu {
    display: block;
}
.cc-nav__group.is-open .cc-nav__submenu {
    display: block;
}
.cc-btn--primary {
    border: 1px solid #111;
    border-radius: 8px;
    padding: 8px 12px;
    font-weight: 700;
}
.nav {
    background: #fff;
    padding: 20px 40px;
    position: relative;
    border-bottom: 1px solid #eee;
}
.nav-menu {
    display: flex;
    gap: 40px;
    list-style: none;
    align-items: center;
    padding: 0;
    margin: 0;
}
.nav-item > a {
    font-weight: 600;
}
.dropdown {
    position: relative;
}
.dropdown-menu {
    position: absolute;
    top: calc(100% + 10px);
    left: 0;
    background: #fff;
    border: 1px solid #eee;
    padding: 10px 0;
    list-style: none;
    display: none;
    min-width: 240px;
    border-radius: 10px;
    opacity: 0;
    transform: translateY(8px);
    transition: 0.25s ease;
    box-shadow: 0 18px 40px rgba(0,0,0,0.08);
}
.dropdown-menu li a {
    display: block;
    padding: 10px 16px;
    font-weight: 500;
}
.dropdown-menu li a:hover {
    background: #f7f7f7;
}
.dropdown:hover .dropdown-menu {
    display: block;
    opacity: 1;
    transform: translateY(0);
}
.burger {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
}
.burger span {
    width: 28px;
    height: 3px;
    background: #000;
    border-radius: 3px;
}
@media (max-width: 900px) {
    .section-grid,
    .section-grid--3,
    .section-grid--4 {
        grid-template-columns: 1fr;
    }
    .cc-header__inner {
        flex-direction: column;
        align-items: stretch;
        gap: 10px;
        padding: 10px 12px;
    }
    .cc-nav {
        width: 100%;
        flex-direction: column;
        align-items: stretch;
        flex-wrap: wrap;
        gap: 10px;
    }
    .cc-nav__group,
    .cc-nav > .cc-nav__link {
        width: 100%;
    }
    .cc-nav__group {
        border-top: 1px solid #000;
        padding-top: 4px;
    }
    .cc-nav__link {
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 8px 2px;
        min-height: 36px;
    }
    .cc-nav__submenu {
        position: static;
        display: none;
        border: none;
        box-shadow: none;
        padding: 2px 0 8px 10px;
        min-width: 0;
    }
    .cc-nav__group.is-open .cc-nav__submenu {
        display: block;
    }
    .cc-nav__submenu a {
        padding: 6px 0;
        min-height: 32px;
        display: flex;
        align-items: center;
    }
    .cc-nav__chevron {
        margin-left: 10px;
        opacity: 0.85;
    }
    .nav {
        padding: 18px 18px;
    }
    .burger {
        display: flex;
        position: absolute;
        top: 22px;
        left: 18px;
        z-index: 20;
    }
    .nav-menu {
        position: absolute;
        top: 64px;
        left: 0;
        width: 100%;
        background: #fff;
        flex-direction: column;
        padding: 18px 0;
        display: none;
        gap: 0;
        border-top: 1px solid #eee;
    }
    .nav-menu.open {
        display: flex;
    }
    .nav-item {
        width: 100%;
        padding: 0 18px;
    }
    .nav-item > a {
        display: block;
        padding: 14px 0;
        width: 100%;
    }
    .dropdown-menu {
        position: static;
        box-shadow: none;
        border: none;
        opacity: 1;
        transform: none;
        display: none;
        padding: 0 0 10px 12px;
        min-width: 0;
        border-radius: 0;
    }
    .dropdown.open .dropdown-menu {
        display: block;
    }
    .dropdown-menu li a {
        padding: 10px 0;
    }
}
.hero-slider {
    position: relative;
    width: var(--layout-shell-width);
    margin: var(--section-gap) auto var(--section-gap);
    height: 82vh;
    min-height: 640px;
    max-height: 820px;
    overflow: hidden;
    border: 0;
    border-radius: var(--surface-radius);
    background: #000;
    isolation: isolate;
}

/* Keep slider edges aligned with sibling sections when it is inside page-shell layouts. */
.page-shell .hero-slider {
    width: 100%;
    max-width: none;
    margin-left: 0;
    margin-right: 0;
}
.hero-slide {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 0.8s ease;
}
.hero-slide.active {
    opacity: 1;
}
.hero-slide--1 {
    background-image: url('/img/home-slide-1-final-0d3633432e89af56fec3b7bbfd4a542b.webp');
}
.hero-slide--2 { background-image: url('/img/covering-9872-b5429114a4566b6a144cb26e6d639260.webp'); }
.hero-slide--3 { background-image: url('/img/home-slide-3-final-e8fd0bbdb796928a5664d2e1c29e1ec0.webp'); }
.hero-slide--4 { background-image: url('/img/home-slide-4-porsche-front-33e35a0d290ecf91cb8b750a020f037f.webp'); }
.hero-slide--5 { background-image: url('/img/entreprise-publicite-chatgpt-20260305-36e1e2ad71fd51e9bfe2683820a3ca8e.webp'); }
.hero-slide--6 { background-image: url('/img/home-slide-6-fctech-spray-4f76d6cddb6dbff44210b681729f2e13.webp'); }
.hero-slide--ent-0 { background-image: url('/img/entreprise-hero-final-2c93a817ae72edcf5d1fba72f661a116.webp'); }
.hero-slide--ent-1 { background-image: url('/img/entreprise-flotte-final-93e2fbbe2a2777274523569f7d2b274a.webp'); }
.hero-slide--ent-2 { background-image: url('/img/entreprise-publicite-final-ada9a777a070afa4f5987902d48a7226.webp'); }
.hero-slide--ent-3 { background-image: url('/img/entreprise-projet-final-66516071cd6656694b95629da885a7e5.webp'); }
.hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.45);
}
.hero-content {
    position: relative;
    z-index: 2;
    height: 100%;
    max-width: 1340px;
    margin: 0 auto;
    padding: 0 var(--hero-content-gutter) 72px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: flex-start;
    gap: 18px;
    color: #fff;
    text-align: left;
}
.hero-title {
    font-size: clamp(48px, 6.2vw, 94px);
    font-weight: 700;
    line-height: 1.05;
    letter-spacing: -0.02em;
    margin: 0;
}
.hero-text {
    max-width: 680px;
    font-size: 1.2rem;
    line-height: 1.6;
    opacity: 0.95;
    margin: 0;
}
.hero-btn {
    display: inline-block;
    width: fit-content;
    padding: 12px 30px;
    border: 2px solid #fff;
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    border-radius: 6px;
    transition: 0.2s ease;
    margin-top: 8px;
}
.hero-btn:hover {
    background: #fff;
    color: #000;
}
.hero-dots {
    position: absolute;
    left: 50%;
    bottom: 26px;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 20;
}
.hero-nav {
    position: absolute;
    inset: 0;
    z-index: 19;
    pointer-events: none;
}
.hero-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 54px;
    height: 54px;
    border: 0;
    background: transparent;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    cursor: pointer;
    filter: drop-shadow(0 1px 8px rgba(0, 0, 0, 0.7));
    transition: transform 0.2s ease, opacity 0.2s ease;
    pointer-events: auto;
}
.hero-arrow svg {
    width: 32px;
    height: 32px;
}
.hero-arrow svg path {
    fill: none;
    stroke: currentColor;
    stroke-width: 2.2;
    stroke-linecap: round;
    stroke-linejoin: round;
}
.hero-arrow:hover {
    opacity: 0.86;
    transform: translateY(-50%) scale(1.06);
}
.hero-arrow--prev {
    left: var(--hero-content-gutter);
}
.hero-arrow--next {
    right: var(--hero-content-gutter);
}
.hero-dot {
    width: var(--slider-dot-size);
    height: var(--slider-dot-size);
    border-radius: 999px;
    background: #fff;
    opacity: 0.35;
    cursor: pointer;
    border: none;
    padding: 0;
}
.hero-dot.active {
    opacity: 1;
}
@media (max-width: 900px) {
    .hero-slider {
        width: var(--layout-shell-width-mobile);
        height: 78vh;
        min-height: 460px;
    }
    .hero-content {
        padding: 0 var(--hero-content-gutter-mobile) 56px;
    }
    .hero-arrow--prev {
        left: var(--hero-content-gutter-mobile);
    }
    .hero-arrow--next {
        right: var(--hero-content-gutter-mobile);
    }
    .hero-arrow {
        width: 42px;
        height: 42px;
    }
    .hero-arrow svg {
        width: 24px;
        height: 24px;
    }
}
.faq-heading {
    font-size: 2.4rem;
    font-weight: 700;
    margin: 0 0 30px;
}
.faq-tabs {
    display: flex;
    gap: 20px;
    margin-bottom: 40px;
    overflow-x: auto;
    padding-bottom: 10px;
}
.faq-tab {
    padding: 10px 20px;
    border: 2px solid #000;
    font-weight: 600;
    border-radius: 6px;
    transition: 0.2s ease;
    background: #fff;
    white-space: nowrap;
    cursor: pointer;
}
.faq-tab.active {
    background: #000;
    color: #fff;
}
.faq-item {
    margin-bottom: 20px;
    border-bottom: 1px solid #ddd;
}
.faq-question {
    width: 100%;
    background: none;
    border: none;
    font-size: 1.2rem;
    font-weight: 600;
    padding: 10px 0;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.faq-answer {
    display: none;
    padding: 10px 0;
}
.faq-item.open .faq-answer {
    display: block;
}
.footer-cta-container {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
}
.footer-btn {
    padding: 10px 20px;
    border: 2px solid #000;
    font-weight: 600;
    border-radius: 6px;
    transition: 0.2s ease;
}
.footer-btn:hover {
    background: #000;
    color: #fff;
}
.contact-form {
    display: flex;
    flex-direction: column;
    gap: 25px;
}
.contact-submit {
    padding: 12px 24px;
    border: 2px solid #000;
    background: #000;
    color: #fff;
    font-weight: 600;
    border-radius: 6px;
}
.tint-hero {
    padding: 80px 20px;
    max-width: 900px;
    margin: 0 auto;
}
.tint-sliders {
    display: flex;
    gap: 40px;
    padding: 80px 20px;
    max-width: 1400px;
    margin: 0 auto;
}
.tint-vertical-slider {
    width: 35%;
    display: flex;
    flex-direction: column;
    gap: 30px;
}
.tint-vertical-item {
    padding: 20px;
    border-left: 3px solid transparent;
    cursor: pointer;
    transition: 0.2s ease;
}
.tint-vertical-item.active {
    border-left: 3px solid #000;
}
.tint-horizontal-slider {
    width: 65%;
}
.tint-horizontal-item {
    display: none;
}
.tint-horizontal-item.active {
    display: block;
}
.tint-horizontal-item img {
    width: 100%;
    height: 420px;
    object-fit: cover;
    border-radius: 12px;
}
.tint-options {
    display: flex;
    gap: 15px;
    margin: 20px 0;
    flex-wrap: wrap;
}
.tint-options span {
    padding: 8px 14px;
    border: 1px solid #000;
    border-radius: 6px;
}
.tint-cta {
    padding: 12px 24px;
    border: 2px solid #000;
    font-weight: 600;
    border-radius: 6px;
}
.tint-benefits {
    padding: 80px 20px;
    max-width: 900px;
    margin: 0 auto;
}
.tint-expert {
    padding: 80px 20px;
    background: #f7f7f7;
}
.tint-form {
    padding: 80px 20px;
    max-width: 900px;
    margin: 0 auto;
}
.hero-slider-image {
    width: 100%;
    height: 600px;
    object-fit: cover;
    border-radius: 12px;
}
.entreprises-hero {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 80px 20px;
    position: relative;
}
.entreprises-hero-title {
    font-size: 3.2rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    margin: 0 0 24px;
}
.entreprises-hero-btn {
    padding: 12px 26px;
    border: 2px solid #000;
    background: transparent;
    font-weight: 700;
    border-radius: 6px;
    cursor: pointer;
    transition: 0.2s ease;
    margin-bottom: 30px;
}
.entreprises-hero-btn:hover {
    background: #000;
    color: #fff;
}
.entreprises-hero-image {
    width: 100%;
    height: 520px;
    object-fit: cover;
    border-radius: 12px;
    background: #eaeaea;
}
.entreprises-categories {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 80px 20px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}
.entreprise-card {
    display: flex;
    flex-direction: column;
    gap: 14px;
}
.entreprise-card-image {
    width: 100%;
    height: 340px;
    object-fit: cover;
    border-radius: 12px;
    background: #eaeaea;
}
.entreprise-card h2 {
    font-size: 1.6rem;
    margin: 0;
}
.entreprise-card p {
    margin: 0;
    line-height: 1.6;
    opacity: 0.95;
}
.entreprise-card-cta {
    display: inline-block;
    margin-top: 8px;
    padding: 12px 24px;
    border: 2px solid #000;
    font-weight: 600;
    border-radius: 6px;
    transition: 0.2s ease;
    width: fit-content;
}
.entreprise-card-cta:hover {
    background: #000;
    color: #fff;
}
@media (max-width: 900px) {
    .entreprises-categories {
        grid-template-columns: 1fr;
    }
    .entreprises-hero-image {
        height: 420px;
    }
}
.services-hero {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 80px 20px;
    position: relative;
}
.services-hero-title {
    font-size: 3.2rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    margin: 0 0 24px;
}
.services-hero-btn {
    padding: 12px 26px;
    border: 2px solid #000;
    background: transparent;
    font-weight: 700;
    border-radius: 6px;
    cursor: pointer;
    transition: 0.2s ease;
    margin-bottom: 30px;
}
.services-hero-btn:hover {
    background: #000;
    color: #fff;
}
.services-hero-image {
    width: 100%;
    height: 520px;
    object-fit: cover;
    border-radius: 12px;
    background: #eaeaea;
}
.services-categories {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 80px 20px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}
.service-overview-card {
    display: flex;
    flex-direction: column;
    gap: 14px;
}
.service-overview-image {
    width: 100%;
    height: 360px;
    object-fit: cover;
    border-radius: 12px;
    background: #eaeaea;
}
.service-overview-card h2 {
    font-size: 1.6rem;
    margin: 0;
}
.service-overview-card p {
    margin: 0;
    line-height: 1.6;
    opacity: 0.95;
}
.service-overview-cta {
    display: inline-block;
    margin-top: 8px;
    padding: 12px 24px;
    border: 2px solid #000;
    font-weight: 600;
    border-radius: 6px;
    transition: 0.2s ease;
    width: fit-content;
}
.service-overview-cta:hover {
    background: #000;
    color: #fff;
}
@media (max-width: 900px) {
    .services-categories {
        grid-template-columns: 1fr;
    }
    .services-hero-image {
        height: 420px;
    }
}
.faq-content .faq-panel {
    display: none;
}
.faq-content .faq-panel.active {
    display: block;
}
.faq-central {
    border: 1px solid #000;
    padding: 12px;
}
.faq-focus {
    border: 1px solid #000;
    padding: 12px;
    margin: 0 0 12px;
    background: #000;
    color: #fff;
}
.faq-focus h2 {
    margin: 0 0 6px;
}
.faq-focus p {
    margin: 0;
}
.faq-tab--spotlight {
    border-width: 2px;
}
.footer {
    border-top: 1px solid #e6e6e6;
    margin-top: 36px;
}
.footer-cta-container {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
}
.footer-columns {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 14px;
}
.footer-columns--minimal {
    grid-template-columns: 7fr 3fr;
    gap: 20px;
}
.footer-cta,
.footer-col {
    border: 1px solid #e1e1e1;
    border-radius: 10px;
    padding: 12px;
}
.footer-col h4 {
    margin: 0 0 10px;
}
.footer-col p {
    margin: 0 0 8px;
}
.footer-col p:last-child {
    margin-bottom: 0;
}
.footer-newsletter {
    margin: 18px 0;
    border: 1px solid #e1e1e1;
    border-radius: 10px;
    padding: 16px;
}
.footer-newsletter-form {
    display: flex;
    gap: 8px;
}
.footer-newsletter-form input {
    flex: 1;
    min-width: 0;
    border: 1px solid #ccc;
    border-radius: 8px;
    padding: 10px;
}
.footer-newsletter-form button {
    border: 1px solid #111;
    border-radius: 8px;
    padding: 10px 12px;
    background: #111;
    color: #fff;
    font-weight: 700;
}
.footer-bottom {
    margin-top: 16px;
    padding-top: 8px;
    border-top: 1px solid #000;
    text-align: center;
}
@media (max-width: 900px) {
    .footer-cta-container,
    .footer-columns {
        grid-template-columns: 1fr;
    }
    .footer-newsletter-form {
        flex-direction: column;
    }
}
body {
    background: #fff !important;
    color: #000 !important;
}
.cc-header,
.cc-header__inner,
.cc-nav__submenu,
.panel,
.footer-cta,
.footer-col,
.footer-newsletter {
    border-radius: 0 !important;
    box-shadow: none !important;
}
.cc-header {
    border-bottom: 0 !important;
    background: #fff !important;
}
.cc-nav__link {
    font-weight: 700;
}
.cc-nav__link.is-active {
    border-bottom: 2px solid #000 !important;
}
.cc-nav__submenu {
    border: 1px solid #000 !important;
    background: #fff !important;
}
.cc-nav__submenu a:hover {
    background: #000 !important;
    color: #fff !important;
}
.cc-nav__chevron {
    font-size: 0.95rem;
    margin-left: 2px;
    transition: transform 0.2s ease;
}
.cc-nav__group.is-open > .cc-nav__link .cc-nav__chevron {
    transform: rotate(180deg);
}
.home-dual-hero {
    padding: 0;
    background: #e9e9e9;
}
.home-dual-hero__shell {
    width: min(var(--layout-max-width), calc(100% - (var(--layout-gutter) * 2)));
    margin: var(--section-gap) auto 0;
    background: #000;
    border: 0;
    border-radius: var(--surface-radius);
    padding: 28px 28px 36px;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
}
.home-dual-hero__card {
    position: relative;
    min-height: 620px;
    overflow: hidden;
    background-size: cover;
    background-position: center;
}
.home-dual-hero__card--private {
    background-image: url('/img/home/home-private-final-006cfc78733644b0afa7de13b8ff6521.webp');
}
.home-dual-hero__card--business {
    background-image: url('/img/home/home-business-final-ab040b728a93722f0a56c231f3e0b05a.webp');
}
.home-dual-hero__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.62), rgba(0, 0, 0, 0.1) 45%);
}
.home-dual-hero__content {
    position: absolute;
    inset: auto 0 24px 0;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
    padding: 0 34px;
    text-align: left;
}
.home-dual-hero__content h1,
.home-dual-hero__content h2 {
    margin: 0;
    font-family: "Orbitron", "Inter", system-ui, sans-serif;
    font-size: clamp(2.1rem, 4.1vw, 3.6rem);
    line-height: 0.95;
    color: #fff;
    text-transform: none;
    letter-spacing: 0;
}
.home-dual-hero__content a {
    display: inline-block;
    padding: 11px 26px;
    border-radius: 999px;
    border: 1px solid #fff;
    background: #fff;
    color: #000;
    font-size: 0.98rem;
    font-weight: 500;
    text-decoration: none;
}
.home-expertise-strip {
    padding: 8px 0 0;
    background: #e9e9e9;
}
.ent-km-fixed-title {
    margin: 0 0 22px;
    color: #fff;
    font-family: "Orbitron", "Inter", system-ui, sans-serif;
    font-size: clamp(2rem, 3.7vw, 3.3rem);
    line-height: 0.95;
    letter-spacing: 0;
    text-transform: none;
}
.entreprise-km-strip .home-expertise-strip__shell {
    position: relative;
}
.entreprise-km-strip .ent-km-fixed-title {
    margin: 0;
}
.home-expertise-strip__shell {
    width: min(var(--layout-max-width), calc(100% - (var(--layout-gutter) * 2)));
    margin: 0 auto;
    background: #000;
    border: 0;
    border-radius: var(--surface-radius);
    padding: 28px 34px 34px;
}
.home-expertise-strip__track {
    min-height: 590px;
    display: flex;
    gap: 2px;
    border: 0;
    overflow: hidden;
    background: #000;
}
.home-expertise-tile {
    position: relative;
    flex: 1;
    min-width: 0;
    overflow: hidden;
    color: #fff;
    transition: flex 320ms ease;
    border-radius: var(--card-radius);
}
.home-expertise-tile.is-active {
    flex: 7;
}
.home-expertise-tile img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.home-expertise-tile__shade {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.22) 52%, rgba(0, 0, 0, 0.5));
}
.home-expertise-tile__content {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 22px;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    padding: 0 24px;
    text-align: left;
    opacity: 0;
    transform: translateY(8px);
    transition: opacity 220ms ease, transform 220ms ease;
}
.home-expertise-tile.is-active .home-expertise-tile__content {
    opacity: 1;
    transform: translateY(0);
}
.home-expertise-tile__content strong {
    font-family: "Orbitron", "Inter", system-ui, sans-serif;
    font-size: clamp(1.9rem, 3.7vw, 3.3rem);
    line-height: 0.95;
    font-weight: 700;
    letter-spacing: 0;
    text-transform: none;
}
.home-expertise-tile__content em {
    display: inline-block;
    font-style: normal;
    font-size: 0.94rem;
    line-height: 1;
    border-radius: 999px;
    padding: 13px 30px;
    color: #000;
    background: #fff;
}
.home-realizations {
    padding: 8px 0 0;
    background: #e9e9e9;
}
.home-realizations__shell {
    width: min(var(--layout-max-width), calc(100% - (var(--layout-gutter) * 2)));
    margin: 0 auto;
    background: #000;
    border: 0;
    border-radius: var(--surface-radius);
    padding: 28px 34px 36px;
}
.home-realizations__shell h2 {
    margin: 0 0 22px;
    color: #fff;
    font-family: "Orbitron", "Inter", system-ui, sans-serif;
    font-size: clamp(2rem, 3.8vw, 3.4rem);
    line-height: 0.95;
    text-transform: none;
    letter-spacing: 0;
}
.home-realizations__grid {
    display: grid;
    grid-template-columns: 1fr 1.05fr 1.7fr;
    grid-template-rows: repeat(2, clamp(210px, 18vw, 265px));
    min-height: 0;
    gap: 2px;
    border: 0;
    background: #000;
    overflow: hidden;
}
.home-realizations__item {
    position: relative;
    overflow: hidden;
    border-radius: var(--card-radius);
    isolation: isolate;
}
.home-realizations__item img {
    position: relative;
    z-index: 1;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}
.home-realizations__shade {
    position: absolute;
    inset: 0;
    z-index: 2;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.62), rgba(0, 0, 0, 0.25) 55%, rgba(0, 0, 0, 0.5));
}
.home-realizations__item--lead {
    grid-column: 1 / span 2;
    grid-row: 1 / span 2;
}
.home-realizations__item--top-right {
    grid-column: 3;
    grid-row: 1;
}
.home-realizations__item--bottom-right {
    grid-column: 3;
    grid-row: 2;
}
.home-top-sales {
    padding: 8px 0 0;
    background: #e9e9e9;
}
.home-top-sales__shell {
    width: min(var(--layout-max-width), calc(100% - (var(--layout-gutter) * 2)));
    margin: 0 auto;
    background: #000;
    border: 0;
    border-radius: var(--surface-radius);
    padding: 46px 34px 26px;
}
.home-top-sales__shell h2 {
    margin: 0 0 34px;
    color: #fff;
    font-family: "Orbitron", "Inter", system-ui, sans-serif;
    font-size: clamp(2rem, 3.6vw, 3.2rem);
    line-height: 0.95;
    text-transform: none;
    letter-spacing: 0;
}
.home-top-sales__grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 22px;
}
.home-top-sales__card {
    border-radius: var(--card-radius);
    border: var(--card-border);
    background: #ececec;
    overflow: hidden;
    padding: 14px 16px 18px;
}
.home-top-sales__card img {
    width: 100%;
    height: 334px;
    object-fit: contain;
    display: block;
}
.home-top-sales__meta {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 10px;
}
.home-top-sales__meta h3 {
    margin: 0;
    color: #000;
    font-family: "Orbitron", "Inter", system-ui, sans-serif;
    font-size: 1.6rem;
    font-weight: 700;
    line-height: 1;
    text-transform: none;
}
.home-top-sales__meta p {
    margin: 0;
    color: #000;
    font-family: "Orbitron", "Inter", system-ui, sans-serif;
    font-size: 1rem;
    line-height: 1;
}
.home-trust {
    background: #e9e9e9;
    padding: 8px 0 0;
}
.home-trust__shell {
    width: min(var(--layout-max-width), calc(100% - (var(--layout-gutter) * 2)));
    margin: 0 auto;
    background: #000;
    border-radius: var(--surface-radius);
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr)) auto;
    gap: 12px;
    align-items: center;
    padding: 20px 26px;
}
.home-trust__item {
    display: flex;
    flex-direction: column;
    gap: 2px;
}
.home-trust__item strong {
    font-family: "Orbitron", "Inter", system-ui, sans-serif;
    font-size: clamp(1.2rem, 2.2vw, 2rem);
    color: #fff;
    line-height: 1;
}
.home-trust__item span {
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.92rem;
}
.home-trust__cta {
    justify-self: end;
    display: inline-flex;
    align-items: center;
    border: 1px solid #fff;
    border-radius: 999px;
    background: #fff;
    color: #000;
    font-weight: 700;
    padding: 10px 20px;
    white-space: nowrap;
}
.mobile-devis-cta {
    display: none;
}
.home-commitment {
    padding: 8px 0 0;
    background: #e9e9e9;
}
.home-commitment__shell {
    width: min(var(--layout-max-width), calc(100% - (var(--layout-gutter) * 2)));
    margin: 0 auto;
    background: #000;
    border: 0;
    border-radius: var(--surface-radius);
    padding: 46px 10px 34px;
}
.home-commitment__shell h2 {
    margin: 0 0 32px 58px;
    color: #fff;
    font-family: "Orbitron", "Inter", system-ui, sans-serif;
    font-size: clamp(2.2rem, 4.2vw, 4.2rem);
    line-height: 0.95;
    text-transform: none;
    letter-spacing: 0;
}
.home-commitment__grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 10px;
}
.home-commitment__card {
    position: relative;
    min-height: 560px;
    overflow: hidden;
    border-radius: var(--card-radius);
    isolation: isolate;
    cursor: pointer;
}
.home-commitment__card img {
    position: relative;
    z-index: 1;
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    filter: brightness(0.72);
    transition: filter 0.3s ease, transform 0.3s ease;
}
.home-commitment__shade {
    position: absolute;
    inset: 0;
    z-index: 2;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.66), rgba(0, 0, 0, 0.26) 55%, rgba(0, 0, 0, 0.54));
    transition: background 0.3s ease;
}
.home-commitment__copy {
    position: absolute;
    left: 10%;
    right: 10%;
    bottom: 48px;
    z-index: 3;
    color: #fff;
    opacity: 0;
    transform: translateY(12px);
    transition: opacity 0.28s ease, transform 0.28s ease;
}
.home-commitment__card:hover img,
.home-commitment__card:focus-within img,
.home-commitment__card:focus-visible img {
    filter: brightness(0.95);
    transform: scale(1.01);
}
.home-commitment__card:hover .home-commitment__shade,
.home-commitment__card:focus-within .home-commitment__shade,
.home-commitment__card:focus-visible .home-commitment__shade {
    background: linear-gradient(to top, rgba(0, 0, 0, 0.76), rgba(0, 0, 0, 0.24) 52%, rgba(255, 255, 255, 0.08));
}
.home-commitment__card:hover .home-commitment__copy,
.home-commitment__card:focus-within .home-commitment__copy,
.home-commitment__card:focus-visible .home-commitment__copy {
    opacity: 1;
    transform: translateY(0);
}
.home-commitment__copy strong {
    display: block;
    margin: 0 0 10px;
    font-family: "Orbitron", "Inter", system-ui, sans-serif;
    font-size: clamp(1.7rem, 2.6vw, 3.2rem);
    line-height: 0.95;
    font-weight: 700;
    text-transform: none;
    letter-spacing: 0;
}
.home-commitment__copy em {
    display: block;
    margin: 0;
    font-style: normal;
    font-size: 1.05rem;
    line-height: 1.25;
}
@media (hover: none) {
    .home-commitment__card img {
        filter: brightness(0.88);
    }
    .home-commitment__copy {
        opacity: 1;
        transform: translateY(0);
    }
}
.home-faq {
    padding: 8px 0 0;
    background: #e9e9e9;
}
.home-faq__shell {
    width: min(var(--layout-max-width), calc(100% - (var(--layout-gutter) * 2)));
    margin: 0 auto;
    background: #000;
    border: 0;
    border-radius: var(--surface-radius);
    padding: 46px 34px 26px;
}
.home-faq__shell h2 {
    margin: 0 0 34px;
    color: #fff;
    font-family: "Orbitron", "Inter", system-ui, sans-serif;
    font-size: clamp(2rem, 3.6vw, 3.2rem);
    line-height: 0.95;
    text-transform: none;
    letter-spacing: 0;
}
.home-faq__menu {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
}
.home-faq__cat {
    height: 180px;
    border: 1px solid #3b3b3b;
    border-radius: var(--card-radius);
    background: #000;
    color: #fff;
    font-family: "Orbitron", "Inter", system-ui, sans-serif;
    font-size: clamp(1.85rem, 2.8vw, 2.6rem);
    line-height: 0.95;
    text-transform: none;
    white-space: nowrap;
    letter-spacing: 0;
}
.home-faq__cat.is-active {
    background: #e9e9e9;
    color: #000;
}
.home-faq__panel-wrap {
    display: none;
    grid-template-columns: 48px 1fr;
    gap: 12px;
    align-items: start;
}
.home-faq.is-panel-open .home-faq__menu {
    display: none;
}
.home-faq.is-panel-open .home-faq__panel-wrap {
    display: grid;
}
.home-faq__back {
    width: 44px;
    height: 44px;
    border: 2px solid #5b5b5b;
    border-radius: 50%;
    background: #353535;
    color: #fff;
    font-size: 1.35rem;
    line-height: 1;
    margin-top: 12px;
}
.home-faq__panel {
    border: 2px solid #373737;
    border-radius: var(--card-radius);
    overflow: hidden;
}
.home-faq__panel-title {
    background: #e9e9e9;
    color: #000;
    font-family: "Orbitron", "Inter", system-ui, sans-serif;
    font-size: clamp(2rem, 3.2vw, 3.2rem);
    line-height: 1;
    padding: 12px 18px;
}
.home-faq__question {
    width: 100%;
    border: 0;
    border-top: 2px solid #373737;
    background: #000;
    color: #fff;
    text-align: left;
    font-size: clamp(1.45rem, 2vw, 2.05rem);
    font-weight: 700;
    padding: 12px 18px;
}
.home-faq__answer {
    display: none;
    border-top: 2px solid #373737;
    background: #050505;
    color: #fff;
    padding: 14px 22px 16px 46px;
    font-size: 1.05rem;
    line-height: 1.38;
}
.home-faq__item.is-open .home-faq__answer {
    display: block;
}
.home-faq__answer p,
.home-faq__answer ul {
    margin: 0;
}
.home-faq__answer ul {
    padding-left: 22px;
}
.hero-overlay {
    background: rgba(0, 0, 0, 0.55) !important;
}
.hero-btn,
.footer-btn {
    background: #fff !important;
    color: #000 !important;
    border: 1px solid #000 !important;
    border-radius: 0 !important;
}
.hero-btn:hover,
.footer-btn:hover {
    background: #000 !important;
    color: #fff !important;
}
.hero-btn,
.footer-btn,
.prefooter-link,
.list-card a {
    border-radius: 999px !important;
}
.page-shell h1,
.page-shell h2,
.page-shell h3 {
    text-transform: uppercase;
    letter-spacing: 0.02em;
}
.panel {
    border: 1px solid #000 !important;
}
.footer {
    border-top: 2px solid #000 !important;
    padding-top: 24px;
}
.footer-newsletter-form input {
    border: 1px solid #000 !important;
    border-radius: 0 !important;
}
.footer-newsletter-form button {
    border-radius: 0 !important;
}
.faq-tab {
    border-radius: 0 !important;
}
.faq-tab.active {
    background: #000 !important;
    color: #fff !important;
}
.product-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
}
.product-card {
    border: 1px solid #000;
    padding: 10px;
    background: #fff;
}
.product-card__img {
    width: 100%;
    height: 220px;
    object-fit: contain;
    object-position: center;
    background: #f2f2f2;
    margin-bottom: 8px;
    border: 1px solid #000;
}
.product-card h2 {
    margin: 0 0 4px;
    font-size: 1rem;
}
.product-card p {
    margin: 0 0 6px;
}
.price {
    font-weight: 800;
}
.inline-form {
    display: flex;
    gap: 8px;
    align-items: center;
    flex-wrap: wrap;
}
.inline-form input,
.inline-form textarea,
.inline-form select {
    border: 1px solid #000;
    border-radius: 0;
    padding: 8px;
    background: #fff;
}
.qty-input {
    width: 76px;
}
.inline-form button {
    border: 1px solid #000;
    border-radius: 0;
    padding: 8px 10px;
    background: #fff;
    color: #000;
    font-weight: 700;
}
.inline-form button:hover {
    background: #000;
    color: #fff;
}
.cart-card {
    border: 1px solid #000;
    padding: 10px;
    margin-bottom: 10px;
}
.cart-actions {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}
.totals-box,
.status-box {
    border: 1px solid #000;
    padding: 12px;
    margin-top: 10px;
}
.total-line {
    font-weight: 800;
}
.payment-methods {
    margin: 12px 0;
}
.payment-methods__title {
    margin: 0 0 8px;
    font-weight: 800;
}
.payment-methods__list {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    list-style: none;
    margin: 0;
    padding: 0;
}
.payment-methods__list li {
    border: 1px solid #000;
    border-radius: 999px;
    padding: 5px 10px;
    font-size: 0.92rem;
    font-weight: 700;
    background: #fff;
    line-height: 1.2;
}
.payment-methods__hint {
    margin: 8px 0 0;
    font-size: 0.9rem;
}
@media (max-width: 900px) {
    .product-grid {
        grid-template-columns: 1fr;
    }
}
.page-kicker {
    display: inline-block;
    border: 1px solid #000;
    padding: 4px 8px;
    font-size: 0.78rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: 8px;
}
.mono-hero {
    width: 100%;
    height: var(--hero-image-fixed-height);
    object-fit: cover;
    border: 1px solid #000;
    border-radius: 0;
    margin: 8px 0 14px;
}
.boutique-s0-image {
    width: 100%;
    height: auto;
    max-height: none;
    object-fit: contain;
}
.real-item,
.product-card__img,
.hero-slider-image,
.entreprises-hero-image,
.entreprise-card-image,
.services-hero-image,
.service-overview-image,
.home-top-sales__card img,
.home-expertise-tile img,
.home-realizations__item img,
.contact-hero__slide img {
    border-radius: 0 !important;
}
.list-grid {
    display: grid;
    gap: 12px;
    grid-template-columns: repeat(3, minmax(0, 1fr));
}
.list-card {
    border: 1px solid #000;
    padding: 10px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    min-height: 100%;
}
.list-card h3 {
    margin: 0;
    font-size: 0.98rem;
}
.list-card p,
.list-card ul {
    margin: 0;
}
.list-card__img {
    width: 100%;
    height: 190px;
    object-fit: cover;
    object-position: center;
    border: 1px solid #000;
    margin-bottom: 4px;
}
.service-price {
    margin-top: 2px !important;
    display: inline-flex;
    align-self: flex-start;
    border: 1px solid #000;
    border-radius: 999px;
    padding: 4px 10px;
    font-family: "Orbitron", "Inter", system-ui, sans-serif;
    font-size: 0.8rem;
    font-weight: 700;
    line-height: 1.1;
}
.service-price--quote {
    background: #f0f0f0;
}
.list-card a {
    margin-top: auto;
    align-self: flex-start;
    border: 1px solid #000;
    border-radius: 999px !important;
    padding: 6px 12px;
    font-size: 0.9rem;
    font-weight: 700;
}
.list-card a:hover {
    background: #000;
    color: #fff;
}
.service-benefits-quicklinks {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin: 0 0 12px;
}
.service-benefits-quicklinks a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #000;
    border-radius: 999px;
    padding: 6px 12px;
    font-size: 0.86rem;
    font-weight: 700;
    color: #000;
    text-decoration: none;
}
.service-benefits-quicklinks a:hover {
    background: #000;
    color: #fff;
}
.tint-benefits-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}
.service-benefit-card {
    border: 1px solid #000;
    background: linear-gradient(165deg, #fff 0%, #f2f2f2 100%);
    box-shadow: 0 8px 22px rgba(0, 0, 0, 0.08);
    padding: 12px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    min-height: 100%;
    transition: box-shadow 0.22s ease, background 0.22s ease, transform 0.22s ease;
}
.service-benefit-levels {
    margin: 0;
    display: inline-flex;
    align-self: flex-start;
    border: 1px solid #000;
    border-radius: 999px;
    padding: 4px 10px;
    font-family: "Orbitron", "Inter", system-ui, sans-serif;
    font-size: 0.75rem;
    line-height: 1.1;
}
.service-benefit-more {
    margin-top: auto;
}
.service-benefit-more summary {
    list-style: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #000;
    border-radius: 999px;
    padding: 6px 12px;
    font-size: 0.9rem;
    font-weight: 700;
    cursor: pointer;
    user-select: none;
    background: rgba(255, 255, 255, 0.9);
    transition: background-color 0.2s ease, color 0.2s ease;
}
.service-benefit-more summary::-webkit-details-marker {
    display: none;
}
.service-benefit-more summary::after {
    content: " +";
    margin-left: 6px;
}
.service-benefit-more__text--less {
    display: none;
}
.service-benefit-more[open] summary {
    background: #000;
    color: #fff;
}
.service-benefit-more[open] summary::after {
    content: " −";
}
.service-benefit-more[open] .service-benefit-more__text--more {
    display: none;
}
.service-benefit-more[open] .service-benefit-more__text--less {
    display: inline;
}

.service-benefit-more:not([open]) .service-benefit-more__content {
    display: none;
}

.service-benefit-card.is-expanded {
    background: linear-gradient(165deg, #fff 0%, #ececec 100%);
    box-shadow: 0 14px 30px rgba(0, 0, 0, 0.12);
    transform: translateY(-1px);
}
.service-benefit-more__content {
    margin-top: 10px;
    padding-top: 10px;
    border-top: 1px solid #d8d8d8;
}
.service-benefit-list {
    margin: 0;
    padding: 0;
    list-style: none;
    display: grid;
    gap: 6px;
}
.service-benefit-list li {
    position: relative;
    padding-left: 14px;
    line-height: 1.4;
}
.service-benefit-list li::before {
    content: "-";
    position: absolute;
    left: 0;
    top: 0;
    font-weight: 700;
}
.services-categories-section .list-card__img {
    width: 100%;
    height: 190px;
    object-fit: cover;
    border: 1px solid #000;
    margin-bottom: 4px;
}
.services-categories-section .list-card h3 {
    margin-top: 2px;
}
.services-tiles {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
}
.services-page-shell {
    width: min(var(--layout-max-width), calc(100% - (var(--layout-gutter) * 2)));
    max-width: none;
    padding: 0 0 48px;
}
.services-hero-section {
    position: relative;
    width: 100%;
    margin: var(--section-gap) 0 24px;
    height: 71vh;
    min-height: 538px;
    max-height: 710px;
    overflow: hidden;
    border: 0;
    border-radius: var(--surface-radius);
    background: #000;
    isolation: isolate;
    padding: 0 !important;
}
.services-hero-section .mono-hero {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
    background: #000;
    border: 0;
    border-radius: 0;
    margin: 0;
}
.services-hero-section__overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.45);
    z-index: 1;
}
.services-hero-section__content {
    position: relative;
    z-index: 2;
    height: 100%;
    max-width: 1340px;
    margin: 0 auto;
    padding: 0 34px 72px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: flex-start;
    gap: 16px;
    color: #fff;
    text-align: left;
}
.services-hero-section__content .page-kicker {
    color: #fff;
    border-color: #fff;
    margin-bottom: 0;
}
.services-hero-section h1 {
    font-size: clamp(48px, 6.2vw, 94px);
    font-weight: 700;
    line-height: 1.05;
    letter-spacing: -0.02em;
    color: #fff;
    margin: 0;
}
.services-hero-section p {
    color: rgba(255, 255, 255, 0.92);
    max-width: 680px;
    font-size: 1.2rem;
    line-height: 1.6;
    margin: 0;
}
.services-categories-section h2 {
    margin: 0 0 18px;
    color: #000;
    font-family: "Orbitron", "Inter", system-ui, sans-serif;
    font-size: clamp(2rem, 3.6vw, 3.2rem);
    line-height: 0.95;
    letter-spacing: 0;
    text-transform: none;
}
.boutique-page-shell,
.entreprise-page-shell {
    width: min(var(--layout-max-width), calc(100% - (var(--layout-gutter) * 2)));
    max-width: none;
    padding: 0 0 48px;
}
.boutique-page-shell > section:first-of-type,
.entreprise-page-shell > section:first-of-type {
    border: 0;
    background: transparent;
    padding: 0;
}
.boutique-page-shell > section:first-of-type > p {
    color: #000;
    max-width: none;
}
.boutique-hero-section,
.entreprise-hero-section {
    position: relative;
    width: 100%;
    margin: var(--section-gap) 0 24px;
    height: 71vh;
    min-height: 538px;
    max-height: 710px;
    overflow: hidden;
    border: 0;
    border-radius: var(--surface-radius);
    background: #000;
    isolation: isolate;
}
.boutique-hero-section .mono-hero,
.entreprise-hero-section .mono-hero,
.boutique-hero-section .boutique-s0-image {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    background: #000;
    margin: 0;
    border: 0;
    border-radius: 0;
}
.boutique-hero-section__overlay,
.entreprise-hero-section__overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.45);
    z-index: 1;
}
.boutique-hero-section__content,
.entreprise-hero-section__content {
    position: relative;
    z-index: 2;
    height: 100%;
    max-width: 1340px;
    margin: 0 auto;
    padding: 0 34px 72px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: flex-start;
    gap: 16px;
    color: #fff;
    text-align: left;
}
.boutique-hero-section__content .page-kicker,
.entreprise-hero-section__content .page-kicker {
    color: #fff;
    border-color: #fff;
    margin-bottom: 0;
}
.boutique-hero-section h1,
.entreprise-hero-section h1 {
    margin: 0;
    color: #fff;
    font-size: clamp(48px, 6.2vw, 94px);
    font-weight: 700;
    line-height: 1.05;
    letter-spacing: -0.02em;
}
.boutique-maintenance-hero,
.boutique-entretien-hero {
    position: relative;
    width: 100%;
    margin: 0 0 24px;
    height: 71vh;
    min-height: 538px;
    max-height: 710px;
    overflow: hidden;
    border: 0;
    border-radius: var(--surface-radius);
    background: #000;
    isolation: isolate;
}
.boutique-maintenance-hero .mono-hero,
.boutique-entretien-hero .mono-hero {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    margin: 0;
    border: 0;
    border-radius: 0;
}
.boutique-maintenance-hero__overlay,
.boutique-entretien-hero__overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    background: rgba(0, 0, 0, 0.45);
}
.boutique-maintenance-hero__content,
.boutique-entretien-hero__content {
    position: relative;
    z-index: 2;
    height: 100%;
    max-width: 1340px;
    margin: 0 auto;
    padding: 0 34px 72px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: flex-start;
    gap: 14px;
    color: #fff;
}
.boutique-maintenance-hero__content .page-kicker,
.boutique-entretien-hero__content .page-kicker {
    color: #fff;
    border-color: #fff;
    margin-bottom: 0;
}
.boutique-maintenance-hero__content h2,
.boutique-entretien-hero__content h1 {
    margin: 0;
    color: #fff;
    font-size: clamp(48px, 6.2vw, 94px);
    font-weight: 700;
    line-height: 1.05;
    letter-spacing: -0.02em;
}
.boutique-maintenance-hero__content p,
.boutique-entretien-hero__content p {
    margin: 0;
    max-width: 680px;
    color: rgba(255, 255, 255, 0.92);
    font-size: 1.12rem;
    line-height: 1.5;
}
.boutique-maintenance-hero__content a {
    display: inline-flex;
    align-self: flex-start;
    border: 1px solid #fff;
    border-radius: 999px !important;
    padding: 8px 18px;
    background: #fff;
    color: #000;
    font-weight: 700;
    text-decoration: none;
}
.boutique-categories-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
    max-width: none;
    margin: 0 auto;
}

.boutique-category-card--featured {
    grid-column: auto;
}

.boutique-category-card--borderless {
    border: 0;
}
.boutique-category-card {
    position: relative;
    min-height: 320px;
    overflow: hidden;
    border: 1px solid #000;
    border-radius: 12px;
    isolation: isolate;
}
.boutique-category-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}
.boutique-category-card__shade {
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.78), rgba(0, 0, 0, 0.28) 58%, rgba(0, 0, 0, 0.18));
}
.boutique-category-card__content {
    position: absolute;
    left: 14px;
    right: 14px;
    bottom: 14px;
    z-index: 2;
    color: #fff;
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.boutique-category-card__content h3,
.boutique-category-card__content p {
    margin: 0;
}
.boutique-category-card__content a {
    display: inline-flex;
    align-self: flex-start;
    border: 1px solid #fff;
    border-radius: 999px !important;
    padding: 6px 12px;
    color: #fff;
    text-decoration: none;
    font-weight: 700;
}
.boutique-category-card__content a:hover {
    background: #fff;
    color: #000;
}
.entreprise-hero-section p {
    color: rgba(255, 255, 255, 0.92);
    max-width: 680px;
    font-size: 1.2rem;
    line-height: 1.6;
    margin: 0;
}
.services-tile {
    position: relative;
    min-height: 269px;
    overflow: hidden;
    border: 1px solid #000;
    border-radius: 12px;
    isolation: isolate;
}
.services-tile__img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
    background: #000;
    display: block;
}
.services-tile__shade {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.78), rgba(0, 0, 0, 0.42) 58%, rgba(0, 0, 0, 0.28));
    z-index: 1;
}
.services-tile__content {
    position: absolute;
    left: 14px;
    right: 14px;
    bottom: 14px;
    z-index: 2;
    display: flex;
    flex-direction: column;
    gap: 8px;
    color: #fff;
}
.services-tile__content h3 {
    margin: 0;
    font-size: 1.05rem;
}
.services-tile__content p {
    margin: 0;
    font-size: 0.95rem;
    line-height: 1.35;
}
.services-tile__content strong {
    display: inline-flex;
    align-self: flex-start;
    border: 1px solid rgba(255, 255, 255, 0.9);
    border-radius: 999px;
    padding: 4px 10px;
    font-family: "Orbitron", "Inter", system-ui, sans-serif;
    font-size: 0.78rem;
    font-weight: 700;
}
.services-tile__content a {
    display: inline-flex;
    align-self: flex-start;
    border: 1px solid #fff;
    border-radius: 999px !important;
    padding: 6px 12px;
    font-size: 0.88rem;
    font-weight: 700;
    color: #fff;
    text-decoration: none;
}
.services-tile__content a:hover {
    background: #fff;
    color: #000;
}
@media (max-width: 900px) {
    .list-grid {
        grid-template-columns: 1fr;
    }
    .services-categories-section .list-card__img,
    .list-card__img {
        height: 220px;
    }
    .services-tiles {
        grid-template-columns: 1fr;
    }
    .services-tile {
        min-height: 211px;
    }
    .services-hero-section h1,
    .services-categories-section h2 {
        font-size: 2rem;
    }
    .services-page-shell {
        width: calc(100% - (var(--layout-gutter-mobile) * 2));
        padding-top: 0;
    }
    .boutique-page-shell,
    .entreprise-page-shell {
        width: calc(100% - (var(--layout-gutter-mobile) * 2));
        padding-top: 0;
    }
    .boutique-hero-section,
    .entreprise-hero-section {
        height: 63vh;
        min-height: 403px;
        max-height: none;
    }
    .boutique-hero-section__content,
    .entreprise-hero-section__content {
        padding: 0 16px 46px;
        gap: 12px;
    }
    .boutique-hero-section h1,
    .entreprise-hero-section h1 {
        font-size: 2rem;
    }
    .boutique-maintenance-hero,
    .boutique-entretien-hero {
        height: 63vh;
        min-height: 403px;
        max-height: none;
    }
    .boutique-maintenance-hero__content,
    .boutique-entretien-hero__content {
        padding: 0 16px 46px;
        gap: 12px;
    }
    .boutique-maintenance-hero__content h2,
    .boutique-entretien-hero__content h1 {
        font-size: 2rem;
    }
    .boutique-maintenance-hero__content p,
    .boutique-entretien-hero__content p {
        font-size: 1rem;
        line-height: 1.45;
    }
    .boutique-categories-grid {
        grid-template-columns: 1fr;
    }

    .boutique-category-card--featured {
        grid-column: auto;
    }

    .boutique-category-card {
        min-height: 240px;
    }
    .entreprise-hero-section p {
        font-size: 1rem;
        line-height: 1.45;
    }
    .services-hero-section {
        height: 63vh;
        min-height: 403px;
        max-height: none;
    }
    .services-hero-section__content {
        padding: 0 16px 46px;
        gap: 12px;
    }
    .services-hero-section p {
        font-size: 1rem;
        line-height: 1.45;
    }
}
.real-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
}
.real-item {
    width: 100%;
    height: 180px;
    object-fit: cover;
    border: 1px solid #000;
}
.prefooter-shell {
    margin-top: 22px;
}
.prefooter-expert,
.prefooter-project {
    border: 1px solid #000;
    padding: 14px;
    margin: 0 0 14px;
}
.prefooter-expert h2,
.prefooter-project h2 {
    margin: 0 0 8px;
    font-size: 1.05rem;
}
.prefooter-expert p {
    margin: 0 0 6px;
}
.prefooter-link {
    display: inline-block;
    border: 1px solid #000;
    padding: 6px 10px;
    margin-top: 4px;
    font-weight: 700;
}
.prefooter-form__grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
    margin: 8px 0;
}
.prefooter-form input,
.prefooter-form select,
.prefooter-form textarea {
    width: 100%;
    border: 1px solid #000;
    padding: 9px 10px;
    background: #fff;
    color: #000;
}
.prefooter-form select {
    appearance: none;
    cursor: pointer;
}
.prefooter-form button {
    border: 1px solid #000;
    background: #000;
    color: #fff;
    font-weight: 700;
    padding: 9px 12px;
    cursor: pointer;
}
.lead-form {
    display: block;
}
.lead-form__hint {
    margin: 8px 0 12px;
    font-size: 0.9rem;
}
@media (max-width: 900px) {
    .real-grid {
        grid-template-columns: 1fr;
    }
    .mono-hero {
        height: var(--hero-image-fixed-height);
    }
    .real-item,
    .product-card__img {
        height: 180px;
    }
    .prefooter-form__grid {
        grid-template-columns: 1fr;
    }
}
@media (max-width: 600px) {
    .cc-nav {
        gap: 6px;
    }
    .cc-nav__link {
        font-size: 0.95rem;
        padding: 7px 2px;
    }
    .cc-nav__submenu a {
        font-size: 0.9rem;
        padding: 5px 0;
    }
    .page-shell {
        padding: 20px 12px 34px;
    }
    .page-shell section {
        margin-bottom: 24px;
    }
    .page-shell h1 {
        font-size: 1.5rem;
        line-height: 1.2;
    }
    .page-shell h2 {
        font-size: 1.15rem;
        line-height: 1.25;
    }
    .hero-content {
        padding: 0 var(--hero-content-gutter-mobile) 50px;
    }
    .hero-title {
        font-size: 1.55rem;
        line-height: 1.2;
    }
    .hero-text {
        font-size: 0.95rem;
        line-height: 1.4;
    }
    .faq-tabs {
        gap: 8px;
        margin-bottom: 18px;
    }
    .faq-tab {
        padding: 7px 10px;
        font-size: 0.82rem;
    }
    .faq-central,
    .faq-focus {
        padding: 10px;
    }
    .panel,
    .list-card,
    .product-card,
    .prefooter-expert,
    .prefooter-project,
    .footer-cta,
    .footer-col,
    .footer-newsletter {
        padding: 10px;
    }
    .prefooter-link,
    .footer-btn {
        width: 100%;
        text-align: center;
    }
    .footer-newsletter-form button {
        width: 100%;
    }
}
@media (max-width: 600px) {
    .cc-header .cc-brand__logo {
        width: 146px;
    }
}
@media (max-width: 900px) {
    .cc-header__inner {
        min-height: 0;
        padding: 10px 16px;
    }
    .cc-nav {
        gap: 10px;
    }
    .home-dual-hero__shell {
        width: calc(100% - (var(--layout-gutter-mobile) * 2));
        grid-template-columns: 1fr;
        padding: 14px;
        gap: 12px;
    }
    .home-dual-hero__card {
        min-height: 420px;
    }
    .home-dual-hero__content {
        bottom: 28px;
        gap: 12px;
        padding: 0 16px;
        align-items: flex-start;
        text-align: left;
    }
    .home-dual-hero__content a {
        width: auto;
        max-width: none;
        text-align: left;
    }
    .home-expertise-strip__shell {
        width: calc(100% - (var(--layout-gutter-mobile) * 2));
        padding: 16px;
    }
    .ent-km-fixed-title {
        margin: 0 0 14px;
        font-size: 1.55rem;
    }
    .home-expertise-strip__track {
        min-height: 0;
        flex-direction: column;
        gap: 10px;
        border: 0;
        background: transparent;
    }
    .home-expertise-tile,
    .home-expertise-tile.is-active {
        flex: 1 1 auto;
    }
    .home-expertise-tile {
        height: 240px;
        border: 1px solid #9a9a9a;
    }
    .home-expertise-tile__content {
        opacity: 1;
        transform: none;
        bottom: 22px;
        padding: 0 16px;
        align-items: flex-start;
        text-align: left;
    }
    .home-expertise-tile__content strong {
        font-size: 1.55rem;
    }
    .home-expertise-tile__content em {
        font-size: 0.9rem;
        padding: 10px 18px;
    }
    .home-realizations__shell {
        width: calc(100% - (var(--layout-gutter-mobile) * 2));
        padding: 16px;
    }
    .home-realizations__grid {
        grid-template-columns: 1fr;
        grid-template-rows: repeat(4, 240px);
        min-height: 0;
        gap: 10px;
        border: 0;
        background: transparent;
    }
    .home-realizations__item {
        border: 1px solid #9a9a9a;
    }
    .home-realizations__item--lead,
    .home-realizations__item--middle,
    .home-realizations__item--top-right,
    .home-realizations__item--bottom-right {
        grid-column: auto;
        grid-row: auto;
    }
    .home-realizations__shell h2 {
        margin: 0 0 14px;
        font-size: 2rem;
    }
    .home-top-sales__shell,
    .home-trust__shell,
    .home-commitment__shell,
    .home-faq__shell {
        width: calc(100% - (var(--layout-gutter-mobile) * 2));
        padding: 18px 12px;
    }
    .home-top-sales__shell h2,
    .home-commitment__shell h2,
    .home-faq__shell h2 {
        margin: 0 0 18px;
        font-size: 2rem;
    }
    .home-top-sales__grid {
        grid-template-columns: 1fr;
        gap: 14px;
    }
    .home-top-sales__card img {
        height: 220px;
    }
    .home-top-sales__meta h3 {
        font-size: 1.35rem;
    }
    .home-top-sales__meta p {
        font-size: 0.95rem;
    }
    .home-trust__shell {
        grid-template-columns: 1fr;
        gap: 8px;
    }
    .home-trust__item strong {
        font-size: 1.3rem;
    }
    .home-trust__item span {
        font-size: 0.9rem;
    }
    .home-trust__cta {
        justify-self: stretch;
        justify-content: center;
        margin-top: 6px;
    }
    .home-commitment__grid {
        grid-template-columns: 1fr;
    }
    .home-commitment__card {
        min-height: 300px;
    }
    .home-commitment__copy {
        display: block;
        left: 16px;
        right: 16px;
        bottom: 16px;
        opacity: 1;
        transform: translateY(0);
    }
    .home-commitment__copy strong {
        font-size: 1.6rem;
    }
    .home-commitment__copy em {
        font-size: 1.05rem;
    }
    .home-faq__menu {
        grid-template-columns: 1fr;
        gap: 10px;
    }
    .home-faq__cat {
        height: 96px;
        font-size: 1.45rem;
    }
    .home-faq__panel-wrap {
        grid-template-columns: 1fr;
    }
    .home-faq__back {
        margin: 0;
    }
    .home-faq__panel-title {
        font-size: 1.45rem;
    }
    .home-faq__question {
        font-size: 1.15rem;
    }
    .home-faq__answer {
        font-size: 1rem;
        padding: 12px;
    }
    .mobile-devis-cta {
        position: fixed;
        left: 12px;
        right: 12px;
        bottom: max(12px, env(safe-area-inset-bottom));
        z-index: 1200;
        display: flex;
        justify-content: center;
        align-items: center;
        min-height: 46px;
        border: 1px solid #111;
        border-radius: 999px;
        background: #111;
        color: #fff;
        font-weight: 700;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.28);
    }
}
.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;
}
.site-footer {
    max-width: none !important;
    width: 100% !important;
    margin-top: 0 !important;
    padding: 0 !important;
    border-top: 0 !important;
    background: #fff;
    color: #000;
}
.site-footer__shell {
    width: min(1760px, calc(100% - (var(--layout-gutter) * 2)));
    max-width: none;
    margin: 0 auto;
    padding-left: 0;
    padding-right: 0;
}
.site-footer__cta-band {
    background: #fff;
    color: #000;
    border-top: 0;
    border-bottom: 0;
}
.site-footer__cta-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 56px;
    padding-top: 58px;
    padding-bottom: 56px;
}
.site-footer__cta-card {
    text-align: center;
    padding: 0 12px !important;
}
.site-footer__icon-wrap {
    width: 72px;
    height: 72px;
    margin: 0 auto 16px;
    border: 2px solid #000;
    border-radius: 50%;
    display: grid;
    place-items: center;
}
.site-footer__icon {
    width: 32px;
    height: 32px;
}
.site-footer__cta-card h3 {
    margin: 0 0 12px;
    font-family: "Orbitron", "Inter", system-ui, sans-serif;
    font-size: clamp(2.1rem, 2.8vw, 3.2rem);
    line-height: 1.04;
    letter-spacing: 0;
    text-transform: none;
    white-space: normal;
}
.site-footer__cta-card p {
    margin: 0 auto 20px;
    max-width: 420px;
    font-size: clamp(1rem, 1.08vw, 1.35rem);
    line-height: 1.28;
}
.site-footer__cta-link {
    display: inline-flex;
    align-items: center;
    gap: 18px;
    font-weight: 800;
    font-size: clamp(1.28rem, 1.45vw, 1.78rem);
    color: #000;
}
.site-footer__main {
    background: #fff;
    border-top: 0;
}
.site-footer__main-grid {
    display: grid;
    grid-template-columns: 1.3fr 0.8fr 0.8fr 0.9fr;
    align-items: start;
    gap: 74px;
    padding-top: 62px;
    padding-bottom: 30px;
}
.site-footer__newsletter {
    max-width: 520px;
    width: 100%;
    margin: 0;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}
.site-footer__logo {
    margin: 0 0 14px -18px;
    display: block;
    width: clamp(240px, 12.5vw, 328px);
    height: auto;
}
.site-footer__newsletter h3 {
    margin: 0 0 10px;
    font-family: "Orbitron", "Inter", system-ui, sans-serif;
    font-size: clamp(2.1rem, 2.25vw, 2.8rem);
    line-height: 1.01;
    letter-spacing: 0;
    text-transform: none;
}
.site-footer__newsletter p {
    margin: 0 0 14px;
    font-size: clamp(1rem, 1.02vw, 1.22rem);
    line-height: 1.24;
}
.site-footer__newsletter-form {
    position: relative;
    width: 100%;
    max-width: 520px;
}
.site-footer__newsletter-form input {
    width: 100%;
    height: 52px;
    border: 2px solid #bebebe !important;
    border-radius: 11px !important;
    background: #fff;
    padding: 0 70px 0 18px;
    font-size: 1.02rem;
    color: #000;
}
.site-footer__newsletter-form button {
    position: absolute;
    right: 14px;
    top: 50%;
    transform: translateY(-50%);
    width: auto;
    height: auto;
    border: 0;
    background: transparent;
    color: #000;
    font-size: 1.7rem;
    font-weight: 700;
    line-height: 1;
    padding: 0;
    border-radius: 0 !important;
}
.site-footer__col h4 {
    margin: 0 0 16px;
    font-family: "Orbitron", "Inter", system-ui, sans-serif;
    font-size: clamp(2rem, 2.15vw, 2.6rem);
    line-height: 1.04;
    text-transform: none;
    letter-spacing: 0;
}
.site-footer__col h4 a {
    color: inherit;
    text-decoration: none;
    display: inline;
    margin: 0;
    font: inherit;
    line-height: inherit;
}
.site-footer__main-grid > .site-footer__col {
    align-self: start;
    padding-top: 0;
    margin-top: 0;
}
.site-footer__col a,
.site-footer__col p {
    display: block;
    margin: 0 0 10px;
    font-size: clamp(1rem, 1.03vw, 1.22rem);
    line-height: 1.28;
    color: #000;
    text-decoration: none;
}
.site-footer__col a:hover,
.site-footer__col a:focus-visible {
    text-decoration: underline;
    text-underline-offset: 3px;
}
.site-footer__map-link {
    display: inline-block;
    margin-top: 4px;
    margin-bottom: 10px;
    border: 1px solid #000;
    border-radius: 999px;
    padding: 6px 12px;
    font-size: 0.92rem !important;
    font-weight: 700;
}
.site-footer__legal {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    border-top: 0;
    padding-top: 16px;
    padding-bottom: 26px;
}
.site-footer__legal p {
    margin: 0;
    color: #000;
    font-size: 1rem;
}
.site-footer__legal-links {
    display: flex;
    gap: 56px;
}
.site-footer__legal-links a {
    color: #000;
    font-size: 1rem;
    text-decoration: none;
}
@media (max-width: 1100px) {
    .site-footer__cta-grid {
        gap: 20px;
    }
    .site-footer__cta-card h3 {
        font-size: 1.6rem;
    }
    .site-footer__cta-card p {
        font-size: 1.02rem;
    }
    .site-footer__cta-link {
        font-size: 1.08rem;
    }
    .site-footer__newsletter h3,
    .site-footer__col h4 {
        font-size: 1.68rem;
    }
    .site-footer__newsletter p,
    .site-footer__col a,
    .site-footer__col p,
    .site-footer__legal p,
    .site-footer__legal-links a {
        font-size: 1rem;
    }
    .site-footer__newsletter-form input {
        height: 46px;
        font-size: 1rem;
        padding-right: 56px;
    }
    .site-footer__newsletter-form button {
        font-size: 1.5rem;
    }
    .site-footer__main-grid {
        grid-template-columns: 1fr 1fr;
        gap: 34px;
    }
}

/* Fidelity override: remove newsletter/cta card frames in footer */
.site-footer__cta-card,
.site-footer__newsletter {
    border: 0 !important;
    border-radius: 0 !important;
    background: transparent !important;
    padding: 0 !important;
}

@media (max-width: 1700px) {
    .site-footer__cta-grid {
        gap: 48px;
    }
    .site-footer__newsletter-form input {
        height: 50px;
        font-size: 1rem;
        padding-right: 58px;
    }
    .site-footer__newsletter-form button {
        font-size: 1.55rem;
    }
}
@media (max-width: 700px) {
    .site-footer__shell {
        width: calc(100% - 32px);
    }
    .site-footer__cta-grid,
    .site-footer__main-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    .site-footer__cta-grid {
        padding-top: 30px;
        padding-bottom: 30px;
    }
    .site-footer__cta-card p {
        max-width: none;
    }
    .site-footer__cta-card h3 {
        white-space: normal;
    }
    .site-footer__logo {
        margin-left: -10px;
        width: 170px;
    }
    .site-footer__newsletter h3,
    .site-footer__col h4 {
        font-size: 1.35rem;
    }
    .site-footer__map-link {
        width: 100%;
        text-align: center;
    }
    .site-footer__legal {
        flex-direction: column;
        align-items: flex-start;
    }
    .site-footer__legal-links {
        gap: 18px;
        flex-wrap: wrap;
    }
}
.contact-hero {
    background: #e9e9e9;
    border-top: 0;
    padding: var(--section-gap) 0 var(--section-gap);
}
.contact-hero__shell {
    width: min(var(--layout-max-width), calc(100% - (var(--layout-gutter) * 2)));
    margin: 0 auto;
    padding: 0;
}
.contact-hero__intro {
    position: relative;
    width: 100%;
    height: 69vh;
    min-height: 538px;
    max-height: 730px;
    overflow: hidden;
    border: 0;
    border-radius: var(--surface-radius);
    background: transparent;
    isolation: isolate;
    margin-bottom: var(--section-gap);
}
.contact-hero__intro img {
    position: relative;
    z-index: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    background: transparent;
    display: block;
}
.contact-hero__slider {
    position: relative;
    width: 100%;
    height: 69vh;
    min-height: 538px;
    max-height: 730px;
    overflow: hidden;
    border: 0;
    border-radius: var(--surface-radius);
    background: transparent;
    isolation: isolate;
}
.contact-hero__slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 0.6s ease;
    --slide-focus-x: 50%;
    --slide-focus-y: 50%;
}
.contact-hero__slide.is-active {
    opacity: 1;
    z-index: 2;
}
.contact-hero__slide img {
    position: relative;
    z-index: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: var(--slide-focus-x) var(--slide-focus-y);
    background: transparent;
    display: block;
}
.contact-hero__slide--team {
    --slide-focus-x: 56%;
    --slide-focus-y: 36%;
}
.contact-hero__slide--garage {
    --slide-focus-x: 54%;
    --slide-focus-y: 48%;
}
.contact-hero__slide--clients {
    --slide-focus-x: 52%;
    --slide-focus-y: 46%;
}
.contact-hero__overlay--intro {
    background: rgba(0, 0, 0, 0.18);
}
.contact-hero__overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.68), rgba(0, 0, 0, 0.25) 45%, rgba(0, 0, 0, 0.58));
}
.contact-hero__content {
    position: absolute;
    left: 5.8%;
    bottom: 10.5%;
    z-index: 10;
    max-width: 640px;
    color: #fff;
}
.contact-hero__content--center {
    left: 50%;
    top: 50%;
    bottom: auto;
    transform: translate(-50%, -50%);
    text-align: center;
    max-width: 760px;
}
.contact-hero__logo {
    display: block;
    width: clamp(260px, 46vw, 760px);
    height: auto;
    margin: 0 auto 18px;
}
.contact-hero__intro .contact-hero__logo {
    mix-blend-mode: normal;
}
.contact-hero__logo--outlined {
    margin-bottom: 0;
    filter: brightness(0) invert(1)
        drop-shadow(1px 0 0 #000)
        drop-shadow(-1px 0 0 #000)
        drop-shadow(0 1px 0 #000)
        drop-shadow(0 -1px 0 #000)
        drop-shadow(1px 1px 0 #000)
        drop-shadow(-1px 1px 0 #000)
        drop-shadow(1px -1px 0 #000)
        drop-shadow(-1px -1px 0 #000);
}
.contact-hero__slide--intro .contact-hero__cta {
    background: #ececec;
    color: #111;
    border-color: #fff;
}
.contact-hero__content h1,
.contact-hero__content h2 {
    margin: 0 0 14px;
    font-family: "Orbitron", "Inter", system-ui, sans-serif;
    font-size: clamp(3.8rem, 8vw, 7.7rem);
    line-height: 0.9;
    font-weight: 700;
    letter-spacing: 0;
    text-transform: none;
}
.contact-hero__content h2 {
    font-size: clamp(3rem, 6.1vw, 6rem);
}
.contact-hero__lead {
    margin: 0 0 8px;
    font-size: clamp(1.2rem, 1.7vw, 2rem);
    line-height: 1.32;
}
.contact-hero__content p {
    margin: 0 0 14px;
    font-size: 1rem;
    line-height: 1.35;
    max-width: 620px;
}
.contact-hero__cta {
    display: inline-block;
    min-width: 180px;
    text-align: center;
    border: 1px solid #fff;
    border-radius: 999px;
    background: rgba(0, 0, 0, 0.24);
    color: #fff;
    font-size: 1.05rem;
    font-weight: 500;
    padding: 11px 28px;
}
.contact-hero__dots {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: 30px;
    z-index: 30;
    display: flex;
    align-items: center;
    gap: 10px;
}
.contact-hero__dot {
    width: var(--slider-dot-size);
    height: var(--slider-dot-size);
    border: 0;
    border-radius: 999px;
    background: #fff;
    opacity: 0.36;
    padding: 0;
}
.contact-hero__dot.is-active {
    opacity: 1;
}
.contact-hero__nav {
    position: absolute;
    inset: 0;
    z-index: 20;
    pointer-events: none;
}
.contact-hero__arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 54px;
    height: 54px;
    border: 0;
    background: transparent;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    cursor: pointer;
    filter: drop-shadow(0 1px 8px rgba(0, 0, 0, 0.7));
    transition: transform 0.2s ease, opacity 0.2s ease;
    pointer-events: auto;
}
.contact-hero__arrow svg {
    width: 32px;
    height: 32px;
}
.contact-hero__arrow svg path {
    fill: none;
    stroke: currentColor;
    stroke-width: 2.2;
    stroke-linecap: round;
    stroke-linejoin: round;
}
.contact-hero__arrow:hover {
    opacity: 0.86;
    transform: translateY(-50%) scale(1.06);
}
.contact-hero__arrow--prev {
    left: 14px;
}
.contact-hero__arrow--next {
    right: 14px;
}
.contact-note {
    padding: 14px 0 30px;
}
.contact-note__shell {
    width: min(var(--layout-max-width), calc(100% - (var(--layout-gutter) * 2)));
    margin: 0 auto;
    border: 1px solid #000;
    background: #fff;
    padding: 18px 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}
.contact-note__shell h2 {
    margin: 0 0 10px;
    font-size: clamp(1.6rem, 2.8vw, 2.2rem);
    line-height: 1.05;
}
.contact-note__shell p {
    margin: 0 0 8px;
    max-width: 86ch;
}
.contact-note__shell p:last-child {
    margin-bottom: 0;
}
@media (max-width: 900px) {
    .contact-hero__shell {
        width: calc(100% - (var(--layout-gutter-mobile) * 2));
    }
    .contact-hero__intro {
        height: 63vh;
        min-height: 403px;
    }
    .contact-hero__slider {
        height: 63vh;
        min-height: 403px;
    }
    .contact-hero__content {
        left: 16px;
        right: 16px;
        bottom: 74px;
        max-width: none;
    }
    .contact-hero__content--center {
        left: 50%;
        right: auto;
        top: 47%;
        transform: translate(-50%, -50%);
        bottom: auto;
        width: calc(100% - 40px);
    }
    .contact-hero__logo {
        width: min(86vw, 560px);
        margin-bottom: 14px;
    }
    .contact-hero__content h1,
    .contact-hero__content h2 {
        font-size: clamp(2.2rem, 7vw, 4.2rem);
    }
    .contact-hero__lead {
        font-size: 1.05rem;
    }
    .contact-hero__content p {
        font-size: 0.92rem;
    }
    .contact-hero__cta {
        min-width: 0;
        font-size: 1.02rem;
        padding: 10px 22px;
    }
    .contact-hero__dots {
        bottom: 18px;
    }
    .contact-hero__dot {
        width: var(--slider-dot-size-mobile);
        height: var(--slider-dot-size-mobile);
    }
    .contact-hero__arrow {
        width: 42px;
        height: 42px;
    }
    .contact-hero__arrow svg {
        width: 24px;
        height: 24px;
    }
    .contact-hero__slide--team {
        --slide-focus-x: 63%;
        --slide-focus-y: 34%;
    }
    .contact-hero__slide--garage {
        --slide-focus-x: 62%;
        --slide-focus-y: 46%;
    }
    .contact-hero__slide--clients {
        --slide-focus-x: 59%;
        --slide-focus-y: 42%;
    }
    .contact-note {
        padding: 10px 0 20px;
    }
    .contact-note__shell {
        width: calc(100% - (var(--layout-gutter-mobile) * 2));
        padding: 12px;
    }
}
.boutique-boost section + section {
    margin-top: 26px;
}
.boutique-boost .panel a,
.boutique-boost .list-card a {
    display: inline-block;
    margin-top: 8px;
    font-weight: 700;
    border-bottom: 1px solid #000;
}
.shop-map__card {
    border: 1px solid #000;
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    min-height: 170px;
}
.shop-map__preview {
    border-right: 1px solid #000;
    display: grid;
    place-items: center;
    font-family: "Orbitron", "Inter", system-ui, sans-serif;
    font-size: 1rem;
    text-align: center;
    padding: 12px;
    background: #f4f4f4;
}
.shop-map__info {
    padding: 16px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 10px;
}
.shop-map__info p {
    margin: 0;
}
.shop-map__card--single {
    grid-template-columns: 1fr;
}
.shop-map__card--single .shop-map__info {
    align-items: center;
    text-align: center;
}
.shop-map__link {
    width: fit-content;
    border: 1px solid #000;
    border-radius: 999px;
    padding: 8px 14px;
    font-weight: 700;
}
@media (max-width: 900px) {
    .shop-map__card {
        grid-template-columns: 1fr;
    }
    .shop-map__preview {
        border-right: 0;
        border-bottom: 1px solid #000;
        min-height: 90px;
    }
}

/* Global homogenization layer */
:root {
    --ui-gap-section: 24px;
    --ui-gap-card: 12px;
    --ui-pad-card: 12px;
    --ui-border: 1px solid #000;
}

.page-shell section {
    margin-bottom: var(--ui-gap-section);
}

.boutique-boost section + section {
    margin-top: var(--ui-gap-section);
}

.panel,
.list-card,
.product-card,
.faq-central,
.faq-focus,
.prefooter-expert,
.prefooter-project,
.shop-map__card {
    border: var(--ui-border) !important;
    border-radius: 0 !important;
}

.panel,
.list-card,
.product-card,
.faq-central,
.faq-focus,
.prefooter-expert,
.prefooter-project {
    padding: var(--ui-pad-card);
}

.panel h3,
.list-card h3,
.product-card h2,
.page-shell h2 {
    line-height: 1.2;
}

.page-shell p,
.list-card p,
.product-card p,
.faq-answer,
.home-faq__answer,
.prefooter-project p {
    line-height: 1.45;
}

.hero-btn,
.home-trust__cta,
.home-dual-hero__content a,
.contact-hero__cta,
.prefooter-link,
.list-card a,
.shop-map__link,
.site-footer__map-link,
.inline-form button,
.prefooter-form button,
.cc-btn--primary {
    border: var(--ui-border) !important;
    border-radius: 999px !important;
    min-height: 40px;
    padding: 8px 16px;
    font-weight: 700;
}

.inline-form input,
.inline-form textarea,
.inline-form select,
.prefooter-form input,
.prefooter-form select,
.prefooter-form textarea,
.site-footer__newsletter-form input {
    min-height: 40px;
    border-radius: 0 !important;
}

.home-top-sales__card,
.home-faq__panel,
.home-faq__cat,
.home-faq__back,
.home-trust__shell,
.home-realizations__item,
.home-expertise-tile,
.home-dual-hero__shell,
.home-top-sales__shell,
.home-commitment__shell,
.home-faq__shell,
.home-realizations__shell,
.home-expertise-strip__shell,
.contact-hero__slider {
    border-radius: 0 !important;
}

@media (max-width: 900px) {
    .panel,
    .list-card,
    .product-card,
    .prefooter-expert,
    .prefooter-project,
    .faq-central,
    .faq-focus {
        padding: 10px;
    }
}

/* FAQ page: interactive + full dark section */
.faq-page {
    background: #fff;
    color: #000;
}

.faq-page-shell {
    max-width: var(--layout-max-width);
    width: min(var(--layout-max-width), calc(100% - (var(--layout-gutter) * 2)));
    padding: 22px 0 42px;
    background: #fff;
}

.faq-page-shell > section:first-of-type {
    border: 1px solid #d9d9d9;
    background: #fff;
    color: #000;
    padding: 18px;
}

.faq-page-shell .page-kicker {
    color: #111;
}

.faq-page-shell .faq-hero h1 {
    margin: 2px 0 8px;
    color: #000;
}

.faq-page-shell .faq-hero p {
    color: #000;
    max-width: 78ch;
    margin: 0;
}

.faq-page-shell .faq-toolbar {
    margin-top: 14px;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    align-items: center;
}

.faq-page-shell .faq-search {
    flex: 1 1 340px;
}

.faq-page-shell .faq-search input {
    width: 100%;
    min-height: 44px;
    border: 1px solid #bfbfbf;
    background: #fff;
    color: #000;
    padding: 0 14px;
    border-radius: 999px;
}

.faq-page-shell .faq-tool-btn {
    border: 1px solid #bfbfbf;
    background: #fff;
    color: #000;
    min-height: 44px;
    padding: 0 14px;
    border-radius: 999px;
    font-weight: 700;
}

.faq-page-shell .faq-tool-btn:hover {
    background: #f4f4f4;
}

.faq-page-shell .faq-meta {
    margin-top: 10px;
    font-size: 0.95rem;
    color: #000;
}

.faq-page-shell .faq-central {
    border: 1px solid #d9d9d9 !important;
    background: #fff;
    color: #000;
    padding: 18px;
}

.faq-page-shell .faq-tabs {
    gap: 10px;
    margin-bottom: 16px;
}

.faq-page-shell .faq-tab {
    background: #fff;
    border: 1px solid #bfbfbf !important;
    color: #000;
    border-radius: 999px !important;
    padding: 10px 16px;
}

.faq-page-shell .faq-tab.active {
    background: #000 !important;
    color: #fff !important;
    border-color: #000 !important;
}

.faq-page-shell .faq-focus {
    border: 1px solid #d9d9d9 !important;
    background: #fff;
    color: #000;
    margin-bottom: 12px;
}

.faq-page-shell .faq-item {
    border: 1px solid #d9d9d9;
    border-radius: 12px;
    margin-bottom: 10px;
    overflow: hidden;
    background: #fff;
}

.faq-page-shell .faq-question {
    color: #000;
    width: 100%;
    min-height: 62px;
    padding: 12px 16px;
    font-size: 1.02rem;
    border: 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    text-align: left;
}

.faq-page-shell .faq-question__icon {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    border: 1px solid #8a8a8a;
    position: relative;
    flex: 0 0 auto;
}

.faq-page-shell .faq-question__icon::before,
.faq-page-shell .faq-question__icon::after {
    content: "";
    position: absolute;
    left: 50%;
    top: 50%;
    width: 10px;
    height: 1.5px;
    background: #000;
    transform: translate(-50%, -50%);
    transition: transform 0.2s ease;
}

.faq-page-shell .faq-question__icon::after {
    transform: translate(-50%, -50%) rotate(90deg);
}

.faq-page-shell .faq-item.open .faq-question__icon::after {
    transform: translate(-50%, -50%) rotate(0);
}

.faq-page-shell .faq-answer {
    display: block;
    max-height: 0;
    overflow: hidden;
    padding: 0 16px;
    color: #000;
    transition: max-height 0.25s ease, padding-bottom 0.25s ease;
}

.faq-page-shell .faq-item.open .faq-answer {
    max-height: 260px;
    padding-bottom: 16px;
}

.faq-page-shell .faq-answer p {
    margin: 0;
}

.faq-page-shell .faq-content .faq-panel {
    display: none;
    opacity: 0;
    transform: translateY(8px);
}

.faq-page-shell .faq-content .faq-panel.active {
    display: block;
}

.faq-page-shell .faq-content .faq-panel.is-visible {
    opacity: 1;
    transform: translateY(0);
    transition: opacity 0.28s ease, transform 0.28s ease;
}

.faq-page-shell .faq-highlight {
    background: #fff;
    color: #000;
    border-radius: 4px;
    padding: 0 3px;
}

@media (max-width: 900px) {
    .faq-page-shell {
        width: calc(100% - (var(--layout-gutter-mobile) * 2));
        padding-top: 16px;
    }

    .faq-page-shell > section:first-of-type,
    .faq-page-shell .faq-central {
        padding: 12px;
    }

    .faq-page-shell .faq-tabs {
        gap: 8px;
        margin-bottom: 12px;
    }

    .faq-page-shell .faq-tab {
        padding: 8px 12px;
        font-size: 0.8rem;
    }
}

/* Footer cleanup: remove outlined text areas */
.site-footer__newsletter {
    border: 0 !important;
    box-shadow: none !important;
}

.site-footer__newsletter-form input {
    border: 2px solid #bebebe !important;
    border-radius: 11px !important;
    background: #fff !important;
    box-shadow: none !important;
}

.site-footer__newsletter-form textarea {
    box-shadow: none !important;
}

.site-footer__newsletter-form input:focus-visible,
.site-footer__newsletter-form textarea:focus-visible {
    outline: 2px solid #111 !important;
    outline-offset: 2px;
}

.cart-toast {
    position: fixed;
    right: 18px;
    bottom: 18px;
    z-index: 1100;
    width: min(360px, calc(100% - 24px));
    border: 1px solid #111;
    border-left: 6px solid #0f9d58;
    background: #fff;
    color: #000;
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.2);
    padding: 12px 12px 10px;
    opacity: 1;
    transform: translateY(0);
    transition: opacity 0.25s ease, transform 0.25s ease;
}

.cart-toast--error {
    border-left-color: #cf1322;
}

.cart-toast.is-hidden {
    opacity: 0;
    transform: translateY(8px);
}

.cart-toast p {
    margin: 0 0 10px;
    font-weight: 600;
    line-height: 1.35;
}

.cart-toast__actions {
    display: flex;
    gap: 10px;
    align-items: center;
    justify-content: space-between;
}

.cart-toast__actions a,
.cart-toast__close {
    border: 1px solid #111;
    background: #fff;
    color: #000;
    border-radius: 999px;
    padding: 6px 10px;
    font-size: 0.85rem;
    font-weight: 700;
    text-decoration: none;
}

.cart-toast__actions a:hover,
.cart-toast__close:hover {
    background: #111;
    color: #fff;
}

@media (max-width: 700px) {
    .cart-toast {
        right: 12px;
        bottom: 12px;
        width: calc(100% - 24px);
    }
}

.floating-cart {
    position: fixed;
    left: 16px;
    bottom: 18px;
    z-index: 1090;
    width: 54px;
    height: 54px;
    border-radius: 50%;
    border: 1px solid #111;
    background: #111;
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    box-shadow: 0 10px 22px rgba(0, 0, 0, 0.22);
}

.floating-cart__icon {
    font-size: 1.25rem;
    line-height: 1;
}

.floating-cart__count {
    position: absolute;
    top: -6px;
    right: -6px;
    min-width: 22px;
    height: 22px;
    padding: 0 6px;
    border-radius: 999px;
    border: 1px solid #111;
    background: #fff;
    color: #111;
    font-size: 0.75rem;
    font-weight: 800;
    line-height: 20px;
    text-align: center;
}

.floating-cart:hover {
    background: #fff;
    color: #111;
}

@media (max-width: 700px) {
    .floating-cart {
        left: 12px;
        bottom: 12px;
        width: 50px;
        height: 50px;
    }
}

/* Unified hero layout: text first, image below, same visual proportions as homepage */
.services-hero-section,
.boutique-hero-section,
.entreprise-hero-section,
.boutique-maintenance-hero,
.boutique-entretien-hero {
    position: static;
    height: auto;
    min-height: 0;
    max-height: none;
    overflow: visible;
    border: 0;
    border-radius: 0;
    background: transparent;
    isolation: auto;
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding: 0;
}

.services-hero-section__overlay,
.boutique-hero-section__overlay,
.entreprise-hero-section__overlay,
.boutique-maintenance-hero__overlay,
.boutique-entretien-hero__overlay {
    display: none;
}

.services-hero-section__content,
.boutique-hero-section__content,
.entreprise-hero-section__content,
.boutique-maintenance-hero__content,
.boutique-entretien-hero__content {
    position: static;
    z-index: auto;
    height: auto;
    max-width: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 8px;
    color: #fff;
    text-align: left;
    order: -1;
}

.services-hero-section__content .page-kicker,
.boutique-hero-section__content .page-kicker,
.entreprise-hero-section__content .page-kicker,
.boutique-maintenance-hero__content .page-kicker,
.boutique-entretien-hero__content .page-kicker {
    color: #fff;
    border-color: #fff;
}

.services-hero-section h1,
.boutique-hero-section h1,
.entreprise-hero-section h1,
.boutique-maintenance-hero__content h2,
.boutique-entretien-hero__content h1 {
    margin: 0;
    color: #fff;
    font-size: clamp(2rem, 5vw, 4.2rem);
    line-height: 1.05;
    letter-spacing: -0.01em;
}

.services-hero-section p,
.boutique-maintenance-hero__content p,
.boutique-entretien-hero__content p,
.entreprise-hero-section p {
    margin: 0;
    max-width: 75ch;
    color: #fff;
    font-size: 1.05rem;
    line-height: 1.5;
}

.services-hero-section .mono-hero,
.boutique-hero-section .mono-hero,
.entreprise-hero-section .mono-hero,
.boutique-hero-section .boutique-s0-image,
.boutique-maintenance-hero .mono-hero,
.boutique-entretien-hero .mono-hero {
    position: static;
    inset: auto;
    width: 100%;
    height: var(--hero-image-fixed-height);
    object-fit: cover;
    object-position: center;
    background: #000;
    margin: 0;
    border: 0 !important;
    border-radius: 0;
}

/* No black outline on images */
img,
.mono-hero,
.services-hero-section .mono-hero,
.boutique-hero-section .mono-hero,
.entreprise-hero-section .mono-hero,
.boutique-hero-section .boutique-s0-image,
.boutique-maintenance-hero .mono-hero,
.boutique-entretien-hero .mono-hero,
.list-card__img,
.product-card__img,
.services-tile__img,
.boutique-category-card > img,
.home-realizations__item img,
.home-expertise-tile img,
.contact-hero__slide img {
    border: 0 !important;
}

/* Final override: all linked-page intro sections use black frame, white text, full-width image */
.page-shell > section:first-of-type {
    background: #000 !important;
    border: 0 !important;
    color: #fff !important;
}

.page-shell > section:first-of-type h1,
.page-shell > section:first-of-type h2,
.page-shell > section:first-of-type h3,
.page-shell > section:first-of-type p,
.page-shell > section:first-of-type .page-kicker {
    color: #fff !important;
}

.page-shell > section:first-of-type .page-kicker {
    border-color: #fff !important;
}

.page-shell > section:first-of-type .service-price {
    color: #fff !important;
    border-color: #fff !important;
    background: transparent !important;
}

.page-shell > section:first-of-type .service-price.service-price--quote {
    background: rgba(255, 255, 255, 0.12) !important;
}

.page-shell > section:first-of-type img,
.page-shell > section:first-of-type .mono-hero {
    display: block;
    width: 100% !important;
    height: var(--hero-image-fixed-height) !important;
    object-fit: cover !important;
    object-position: center !important;
    border: 0 !important;
    border-radius: 0 !important;
    background: #000;
}

/* Final override: boutique + entreprise top hero match homepage first slide settings */
.entreprise-page-shell > section.entreprise-hero-section,
.boutique-page-shell > section.boutique-hero-section {
    position: relative;
    width: 100%;
    margin: var(--section-gap) 0 24px;
    height: 82vh;
    min-height: 640px;
    max-height: 820px;
    overflow: hidden;
    border: 0 !important;
    border-radius: var(--surface-radius);
    background: #000 !important;
    isolation: isolate;
    padding: 0 !important;
    color: #fff !important;
}
.entreprise-page-shell > section.entreprise-hero-section .mono-hero,
.boutique-page-shell > section.boutique-hero-section .mono-hero,
.boutique-page-shell > section.boutique-hero-section .boutique-s0-image {
    position: absolute;
    inset: 0;
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    object-position: center !important;
    margin: 0;
    border: 0 !important;
    border-radius: 0 !important;
    background: #000;
}
.entreprise-page-shell > section.entreprise-hero-section .entreprise-hero-section__overlay,
.boutique-page-shell > section.boutique-hero-section .boutique-hero-section__overlay {
    display: block;
    position: absolute;
    inset: 0;
    z-index: 1;
    background: rgba(0, 0, 0, 0.45);
}
.entreprise-page-shell > section.entreprise-hero-section .entreprise-hero-section__content,
.boutique-page-shell > section.boutique-hero-section .boutique-hero-section__content {
    position: relative;
    z-index: 2;
    height: 100%;
    max-width: 1340px;
    margin: 0 auto;
    padding: 0 34px 72px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: flex-start;
    gap: 16px;
    color: #fff !important;
    text-align: left;
}
.entreprise-page-shell > section.entreprise-hero-section .page-kicker,
.boutique-page-shell > section.boutique-hero-section .page-kicker {
    color: #fff !important;
    border-color: #fff !important;
}
.entreprise-page-shell > section.entreprise-hero-section h1,
.boutique-page-shell > section.boutique-hero-section h1 {
    margin: 0;
    color: #fff !important;
    font-size: clamp(48px, 6.2vw, 94px);
    font-weight: 700;
    line-height: 1.05;
    letter-spacing: -0.02em;
}
.entreprise-page-shell > section.entreprise-hero-section p,
.boutique-page-shell > section.boutique-hero-section p {
    margin: 0;
    max-width: 680px;
    color: rgba(255, 255, 255, 0.92) !important;
    font-size: 1.2rem;
    line-height: 1.6;
}

@media (max-width: 900px) {
    .entreprise-page-shell > section.entreprise-hero-section,
    .boutique-page-shell > section.boutique-hero-section {
        height: 78vh;
        min-height: 460px;
        max-height: none;
    }
}

/* Unified page backgrounds: keep section wrappers white across the site */
.cc-header,
.home-dual-hero,
.home-expertise-strip,
.home-realizations,
.home-top-sales,
.home-trust,
.home-commitment,
.home-faq,
.contact-hero,
.site-footer {
    background: #fff !important;
}

.home-faq__cat.is-active,
.home-faq__panel-title {
    background: #fff !important;
}

/* Boutique hero: anchor title block at bottom-left of the image */
.boutique-page-shell > section.boutique-hero-section .boutique-hero-section__content {
    position: absolute;
    left: 34px;
    right: auto;
    bottom: 34px;
    height: auto;
    max-width: min(680px, calc(100% - 68px));
    margin: 0;
    padding: 0;
    justify-content: flex-end;
}

@media (max-width: 900px) {
    .boutique-page-shell > section.boutique-hero-section .boutique-hero-section__content {
        left: 14px;
        bottom: 20px;
        max-width: calc(100% - 28px);
    }
}

/* Final media-card overlay harmonization (services + links with images) */
.services-tile__img {
    object-fit: cover !important;
    object-position: center !important;
}

.services-tile__content {
    left: clamp(14px, 2vw, 26px);
    right: clamp(14px, 2vw, 26px);
    top: clamp(14px, 2vw, 24px);
    bottom: auto;
}

.services-tile__shade {
    background: linear-gradient(
        to bottom,
        rgba(0, 0, 0, 0.82),
        rgba(0, 0, 0, 0.38) 52%,
        rgba(0, 0, 0, 0.08)
    );
}

.services-page-shell .services-tile__content {
    top: clamp(14px, 2vw, 24px);
    bottom: clamp(14px, 2vw, 24px);
    left: clamp(14px, 2vw, 24px);
    right: clamp(14px, 2vw, 24px);
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.services-page-shell .services-tile__content strong {
    margin-top: auto;
}

.services-page-shell .services-tile__content p {
    margin-top: 0;
}

.services-page-shell .services-tile__content strong,
.services-page-shell .services-tile__content a {
    align-self: flex-start;
}

.services-page-shell .services-tile__shade {
    background: linear-gradient(
        to bottom,
        rgba(0, 0, 0, 0.78),
        rgba(0, 0, 0, 0.14) 42%,
        rgba(0, 0, 0, 0.74)
    );
}

.boutique-page-shell .boutique-category-card__content {
    top: clamp(14px, 2vw, 24px);
    bottom: clamp(14px, 2vw, 24px);
    left: clamp(14px, 2vw, 24px);
    right: clamp(14px, 2vw, 24px);
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.boutique-page-shell .boutique-category-card__content p {
    margin-top: auto;
}

.boutique-page-shell .boutique-category-card__shade {
    background: linear-gradient(
        to bottom,
        rgba(0, 0, 0, 0.78),
        rgba(0, 0, 0, 0.16) 42%,
        rgba(0, 0, 0, 0.72)
    );
}

.home-expertise-tile__content {
    top: clamp(14px, 2vw, 24px);
    bottom: auto;
}

.home-expertise-tile__shade {
    background: linear-gradient(
        to bottom,
        rgba(0, 0, 0, 0.78),
        rgba(0, 0, 0, 0.32) 52%,
        rgba(0, 0, 0, 0.1)
    );
}

.home-expertise-strip:not(.entreprise-expertise-strip) .home-expertise-tile__content {
    top: auto;
    bottom: clamp(14px, 2vw, 24px);
}

.home-expertise-strip:not(.entreprise-expertise-strip) .home-expertise-tile__shade {
    background: linear-gradient(
        to top,
        rgba(0, 0, 0, 0.78),
        rgba(0, 0, 0, 0.32) 52%,
        rgba(0, 0, 0, 0.1)
    );
}

.home-dual-hero__content {
    inset: auto 0 24px 0;
}

.home-dual-hero__overlay {
    background: linear-gradient(
        to top,
        rgba(0, 0, 0, 0.78),
        rgba(0, 0, 0, 0.28) 45%,
        rgba(0, 0, 0, 0.08)
    );
}

.entreprise-expertise-strip .home-expertise-strip__shell h2 {
    margin: 0 0 22px;
    color: #000;
    font-family: "Orbitron", "Inter", system-ui, sans-serif;
    font-size: clamp(2rem, 3.6vw, 3.2rem);
    line-height: 0.95;
    letter-spacing: 0;
    text-transform: none;
}

.entreprise-expertise-strip__lead {
    margin: -8px 0 14px;
    max-width: 74ch;
    color: #000;
    font-size: 1rem;
    line-height: 1.45;
}

.entreprise-expertise-strip,
.entreprise-expertise-strip .home-expertise-strip__shell,
.entreprise-expertise-strip .home-expertise-strip__track {
    background: #fff;
}

.entreprise-page-shell .entreprise-expertise-strip .home-expertise-strip__shell {
    width: 100%;
    max-width: none;
    margin-left: 0;
    margin-right: 0;
    padding: 0;
    border-radius: var(--surface-radius);
    overflow: hidden;
}

.entreprise-expertise-strip .home-expertise-strip__track {
    display: flex;
    gap: 2px;
    min-height: clamp(360px, 38vw, 590px);
    border: 0;
    overflow: hidden;
    background: #fff;
    border-radius: var(--surface-radius);
}

.entreprise-expertise-strip .home-expertise-tile {
    flex: 1;
    min-width: 0;
    height: auto;
    border: 0;
    transition: flex 320ms ease;
}

.entreprise-expertise-strip .home-expertise-tile.is-active {
    flex: 5;
}

.entreprise-expertise-strip .home-expertise-tile img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.entreprise-expertise-strip .home-expertise-tile__content {
    top: auto;
    bottom: clamp(14px, 2vw, 24px);
    opacity: 0;
    transform: translateY(8px);
}

.entreprise-expertise-strip .home-expertise-tile__shade {
    background: linear-gradient(
        to top,
        rgba(0, 0, 0, 0.78),
        rgba(0, 0, 0, 0.32) 52%,
        rgba(0, 0, 0, 0.1)
    );
}

.entreprise-expertise-strip .home-expertise-tile.is-active .home-expertise-tile__content {
    opacity: 1;
    transform: translateY(0);
}

.entreprise-expertise-strip .entreprise-km-tile {
    border-radius: var(--card-radius);
}

.entreprise-expertise-strip .entreprise-km-tile .home-expertise-tile__shade {
    background: transparent;
}

.entreprise-expertise-strip .entreprise-km-overlay {
    left: clamp(12px, 2.4vw, 32px);
    right: clamp(12px, 2.4vw, 32px);
    bottom: clamp(14px, 2.2vw, 30px);
    gap: 10px;
    padding: 0;
    opacity: 1;
    transform: none;
}

.entreprise-expertise-strip .entreprise-km-overlay__title {
    display: inline-block;
    margin: 0;
    padding: 8px 16px;
    border: 1px solid rgba(255, 255, 255, 0.92);
    color: #fff;
    font-family: "Orbitron", "Inter", system-ui, sans-serif;
    font-size: clamp(1.2rem, 2.2vw, 2rem);
    line-height: 1.08;
    letter-spacing: 0.01em;
    text-shadow:
        -1px 0 0 rgba(24, 24, 24, 0.9),
        1px 0 0 rgba(24, 24, 24, 0.9),
        0 -1px 0 rgba(24, 24, 24, 0.9),
        0 1px 0 rgba(24, 24, 24, 0.9),
        0 2px 8px rgba(0, 0, 0, 0.6);
}

.entreprise-expertise-strip .entreprise-km-overlay__text {
    margin: 0;
    max-width: min(66ch, 92%);
    color: #fff;
    font-size: clamp(0.92rem, 1.35vw, 1.06rem);
    line-height: 1.45;
    text-shadow:
        -1px -1px 0 rgba(18, 18, 18, 0.78),
        1px -1px 0 rgba(18, 18, 18, 0.78),
        -1px 1px 0 rgba(18, 18, 18, 0.78),
        1px 1px 0 rgba(18, 18, 18, 0.78),
        0 2px 8px rgba(0, 0, 0, 0.6);
}

.home-top-sales__card {
    position: relative;
    overflow: hidden;
    min-height: 334px;
    padding: 0 !important;
    isolation: isolate;
}

.home-top-sales__card a {
    position: relative;
    display: block;
    width: 100%;
    height: 100%;
}

.home-top-sales__card img {
    width: 100%;
    height: 100% !important;
    object-fit: cover !important;
    object-position: center !important;
    transform: scale(0.85);
    transform-origin: center center;
}

.home-top-sales__card::after {
    content: none;
}

.home-top-sales__meta {
    position: absolute;
    left: 14px;
    right: 14px;
    top: 14px;
    bottom: auto;
    z-index: 2;
    background: rgba(255, 255, 255, 0.92);
    border-radius: 10px;
    padding: 8px 10px;
}

.home-top-sales__meta h3,
.home-top-sales__meta p {
    color: #000 !important;
    text-shadow: none;
}

@media (max-width: 900px) {
    .entreprise-expertise-strip .home-expertise-strip__track {
        flex-direction: column;
        gap: 10px;
        min-height: 0;
        background: transparent;
    }

    .entreprise-expertise-strip .home-expertise-tile,
    .entreprise-expertise-strip .home-expertise-tile.is-active {
        flex: 1 1 auto;
        height: 240px;
        border: 1px solid #9a9a9a;
    }

    .entreprise-expertise-strip .home-expertise-tile__content {
        opacity: 1;
        transform: none;
    }

    .entreprise-expertise-strip .entreprise-km-overlay {
        gap: 8px;
        left: 16px;
        right: 16px;
        bottom: 16px;
    }

    .entreprise-expertise-strip .entreprise-km-overlay__title {
        padding: 7px 12px;
        font-size: 1.05rem;
        line-height: 1.12;
    }

    .entreprise-expertise-strip .entreprise-km-overlay__text {
        max-width: 100%;
        font-size: 0.88rem;
        line-height: 1.4;
    }

    .home-top-sales__card {
        min-height: 220px;
    }

    .home-dual-hero__content {
        inset: auto 0 14px 0;
    }
}

/* FAQ white lock: keep full FAQ page in white despite global dark intro overrides */
.faq-page,
.faq-page .page-shell,
.faq-page-shell,
.faq-page-shell > section:first-of-type,
.faq-page-shell .faq-central,
.faq-page-shell .faq-focus,
.faq-page-shell .faq-item,
.faq-page-shell .faq-question,
.faq-page-shell .faq-answer,
.faq-page-shell .faq-tab,
.faq-page-shell .faq-tool-btn,
.faq-page-shell .faq-search input {
    background: #fff !important;
    color: #000 !important;
}

.faq-page-shell > section:first-of-type,
.faq-page-shell .faq-central,
.faq-page-shell .faq-focus,
.faq-page-shell .faq-item,
.faq-page-shell .faq-tab,
.faq-page-shell .faq-tool-btn,
.faq-page-shell .faq-search input {
    border-color: #d9d9d9 !important;
}

.faq-page-shell .faq-tab.active {
    background: #f2f2f2 !important;
    color: #000 !important;
    border-color: #9a9a9a !important;
}

/* Homepage FAQ white theme */
.home-faq,
.home-faq__shell {
    background: #fff !important;
    color: #000 !important;
}

.home-faq__shell {
    border: 1px solid #d9d9d9 !important;
}

.home-faq__shell h2 {
    color: #000 !important;
}

.home-faq__cat {
    background: #fff !important;
    color: #000 !important;
    border: 1px solid #d9d9d9 !important;
}

.home-faq__cat.is-active {
    background: #f2f2f2 !important;
    color: #000 !important;
    border-color: #9a9a9a !important;
}

.home-faq__panel {
    border: 1px solid #d9d9d9 !important;
    background: #fff !important;
}

.home-faq__panel-title {
    background: #fff !important;
    color: #000 !important;
    border-bottom: 1px solid #d9d9d9;
}

.home-faq__question {
    background: #fff !important;
    color: #000 !important;
    border-top: 1px solid #d9d9d9 !important;
}

.home-faq__answer {
    background: #fff !important;
    color: #000 !important;
    border-top: 1px solid #e1e1e1 !important;
}

.home-faq__back {
    background: #fff !important;
    color: #000 !important;
    border: 1px solid #bfbfbf !important;
}

/* Global intro image overlay: title top-left, text+price bottom-left */
.page-shell > section:first-of-type:has(.mono-hero):not(.boutique-hero-section):not(.entreprise-hero-section):not(.services-hero-section) {
    position: relative;
    overflow: hidden;
    isolation: isolate;
    min-height: clamp(420px, 62vh, 760px);
    padding: clamp(14px, 2vw, 24px) !important;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 10px;
}

.page-shell > section:first-of-type:has(.mono-hero):not(.boutique-hero-section):not(.entreprise-hero-section):not(.services-hero-section)::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(
        to top,
        rgba(0, 0, 0, 0.78),
        rgba(0, 0, 0, 0.38) 54%,
        rgba(0, 0, 0, 0.16)
    );
}

.page-shell > section:first-of-type:has(.mono-hero):not(.boutique-hero-section):not(.entreprise-hero-section):not(.services-hero-section) .mono-hero {
    position: absolute;
    inset: 0;
    z-index: 0;
    width: 100% !important;
    max-width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    object-position: center !important;
    margin: 0 !important;
}

.page-shell > section:first-of-type:has(.mono-hero):not(.boutique-hero-section):not(.entreprise-hero-section):not(.services-hero-section) > :not(.mono-hero) {
    position: relative;
    z-index: 2;
    max-width: min(980px, 100%);
}

.page-shell > section:first-of-type:has(.mono-hero):not(.boutique-hero-section):not(.entreprise-hero-section):not(.services-hero-section) > p:first-of-type {
    margin-top: auto;
}

.page-shell > section:first-of-type:has(.mono-hero):not(.boutique-hero-section):not(.entreprise-hero-section):not(.services-hero-section) .service-price {
    align-self: flex-start;
    margin-top: 4px;
}

@media (max-width: 900px) {
    .page-shell > section:first-of-type:has(.mono-hero):not(.boutique-hero-section):not(.entreprise-hero-section):not(.services-hero-section) {
        min-height: 460px;
        gap: 8px;
    }
}

/* Contact slider CTA bubble */
.contact-hero .contact-hero__cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 220px;
    padding: 12px 26px !important;
    border: 1px solid #fff !important;
    border-radius: 999px !important;
    background: rgba(255, 255, 255, 0.94) !important;
    color: #111 !important;
    font-weight: 700;
    text-decoration: none;
    box-shadow: 0 10px 28px rgba(0, 0, 0, 0.3);
    transition: transform 0.18s ease, box-shadow 0.18s ease, background-color 0.18s ease;
}

.contact-hero .contact-hero__cta:hover {
    transform: translateY(-2px);
    background: #fff !important;
    box-shadow: 0 14px 34px rgba(0, 0, 0, 0.34);
}

.contact-hero__slide--intro .contact-hero__cta {
    border-color: #111 !important;
}

@media (max-width: 900px) {
    .contact-hero .contact-hero__cta {
        min-width: 0;
        padding: 10px 22px !important;
    }
}

/* Enterprise B2B upgrade */
.enterprise-hero-actions {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}

.enterprise-hero-actions .hero-btn {
    margin-top: 0;
}

.hero-btn--secondary {
    background: rgba(255, 255, 255, 0.12);
}

.hero-btn--secondary:hover {
    background: #fff;
}

.enterprise-b2b-nav {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin: 0 0 12px;
}

.enterprise-b2b-nav a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #000;
    border-radius: 999px;
    padding: 6px 12px;
    font-size: 0.86rem;
    font-weight: 700;
    color: #000;
    text-decoration: none;
}

.enterprise-b2b-nav a:hover {
    background: #000;
    color: #fff;
}

.enterprise-b2b-section {
    border: 1px solid #000;
    background: #fff;
    padding: 16px;
}

.enterprise-b2b-section h2 {
    margin: 0 0 10px;
    color: #000;
    font-family: "Orbitron", "Inter", system-ui, sans-serif;
    font-size: clamp(1.6rem, 3vw, 2.4rem);
    line-height: 1.05;
}

.enterprise-b2b-section > p {
    margin: 0 0 12px;
    max-width: 90ch;
}

.enterprise-benefits-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 10px;
    margin: 12px 0 0;
}

.enterprise-benefit-card {
    border: 1px solid #000;
    background: linear-gradient(160deg, #fff 0%, #f3f3f3 100%);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
    border-radius: var(--card-radius);
    overflow: hidden;
    min-height: 100%;
    transition: box-shadow 0.22s ease, background 0.22s ease, transform 0.22s ease;
}

.enterprise-benefit-more {
    display: block;
}

.enterprise-benefit-more summary {
    list-style: none;
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: flex-start;
    gap: 14px;
    padding: 14px;
    cursor: pointer;
    user-select: none;
}

.enterprise-benefit-more summary::-webkit-details-marker {
    display: none;
}

.enterprise-benefit-summary__text {
    min-width: 0;
    display: grid;
    gap: 6px;
    text-align: left;
}

.enterprise-benefit-summary__title {
    margin: 0;
    font-size: 1rem;
    line-height: 1.15;
    font-weight: 700;
}

.enterprise-benefit-summary__desc {
    margin: 0;
    line-height: 1.45;
}

.enterprise-benefit-more__btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    align-self: flex-start;
    border: 1px solid #000;
    border-radius: 999px;
    padding: 6px 12px;
    font-size: 0.9rem;
    font-weight: 700;
    white-space: nowrap;
    background: rgba(255, 255, 255, 0.9);
    transition: background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.enterprise-benefit-more__btn::after {
    content: " +";
    margin-left: 6px;
}

.enterprise-benefit-more__text--less {
    display: none;
}

.enterprise-benefit-more__content {
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    padding: 0 14px;
    border-top: 1px solid transparent;
    transition: max-height 0.3s ease, opacity 0.2s ease, padding 0.2s ease, border-color 0.2s ease;
}

.enterprise-benefit-more[open] .enterprise-benefit-more__btn {
    background: #000;
    color: #fff;
}

.enterprise-benefit-more[open] .enterprise-benefit-more__btn::after {
    content: " −";
}

.enterprise-benefit-more[open] .enterprise-benefit-more__text--more {
    display: none;
}

.enterprise-benefit-more[open] .enterprise-benefit-more__text--less {
    display: inline;
}

.enterprise-benefit-more[open] .enterprise-benefit-more__content {
    max-height: 260px;
    opacity: 1;
    padding: 10px 14px 14px;
    border-top-color: #d8d8d8;
}

.enterprise-benefit-list {
    margin: 0;
    padding: 0;
    list-style: none;
    display: grid;
    gap: 6px;
}

.enterprise-benefit-list li {
    position: relative;
    padding-left: 14px;
    line-height: 1.4;
}

.enterprise-benefit-list li::before {
    content: "-";
    position: absolute;
    left: 0;
    top: 0;
    font-weight: 700;
}

.enterprise-benefit-card.is-expanded {
    background: linear-gradient(160deg, #fff 0%, #ececec 100%);
    box-shadow: 0 14px 30px rgba(0, 0, 0, 0.12);
    transform: translateY(-1px);
}

.enterprise-packs-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 10px;
}

.enterprise-pack-card ul {
    margin: 0;
    padding-left: 18px;
    display: grid;
    gap: 4px;
}

.enterprise-proof-logos {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 8px;
    margin-bottom: 10px;
}

.enterprise-proof-logos span {
    border: 1px solid #000;
    padding: 10px;
    text-align: center;
    font-weight: 700;
    background: #fff;
}

.enterprise-proof-cases {
    display: grid;
    gap: 8px;
}

.enterprise-proof-cases details {
    border: 1px solid #000;
    padding: 10px;
    background: #fff;
}

.enterprise-proof-cases summary {
    cursor: pointer;
    font-weight: 700;
}

.enterprise-proof-cases p {
    margin: 8px 0 0;
}

.enterprise-process-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 10px;
}

.enterprise-process-step {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 46px;
    height: 30px;
    border: 1px solid #000;
    border-radius: 999px;
    font-family: "Orbitron", "Inter", system-ui, sans-serif;
    font-size: 0.8rem;
    font-weight: 700;
}

.enterprise-account-form {
    border: 1px solid #000;
    padding: 12px;
    background: #fff;
}

.enterprise-account-form button {
    margin-top: 8px;
}

#ent-km .home-expertise-strip__shell {
    position: relative;
    width: 100%;
    max-width: none;
    margin: 0;
    padding: 0;
    background: transparent;
    border-radius: 0;
}

#ent-km .home-expertise-strip__track {
    position: relative;
    gap: 0;
    background: transparent;
    border-radius: 0;
}

#ent-km .ent-km-fixed-title {
    position: absolute;
    top: clamp(12px, 1.8vw, 22px);
    left: clamp(12px, 2vw, 24px);
    z-index: 5;
    margin: 0;
    padding: clamp(6px, 0.7vw, 10px) clamp(10px, 1.4vw, 18px);
    border-radius: 2px;
    border: 1px solid #9a9a9a;
    background: transparent;
    pointer-events: none;
}

#ent-km .home-expertise-tile__content {
    top: auto;
    bottom: clamp(14px, 2vw, 24px);
    z-index: 3;
}

#ent-km .home-expertise-tile__content strong {
    display: inline-block;
    font-size: clamp(1.05rem, 1.6vw, 1.6rem);
    line-height: 1.08;
    padding: 5px 8px;
    border: 1px solid #9a9a9a;
    border-radius: 2px;
    background: transparent;
}

#ent-km .home-expertise-tile__content em {
    display: inline-block;
    font-style: normal;
    font-size: clamp(0.8rem, 1.02vw, 0.94rem);
    line-height: 1.25;
    padding: 5px 8px;
    color: #fff;
    border: 1px solid #9a9a9a;
    border-radius: 2px;
    background: transparent;
}

@media (max-width: 1100px) {
    .enterprise-packs-grid {
        grid-template-columns: 1fr;
    }

    .enterprise-process-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 900px) {
    .enterprise-benefits-grid {
        grid-template-columns: 1fr;
    }

    #ent-km .ent-km-fixed-title {
        top: 10px;
        left: 10px;
        right: 10px;
        max-width: calc(100% - 20px);
        padding: 6px 10px;
        font-size: clamp(1.1rem, 7vw, 1.6rem);
        line-height: 1.05;
    }

    #ent-km .home-expertise-tile__content {
        opacity: 1;
        transform: none;
        bottom: 14px;
        padding: 0 12px;
    }

    #ent-km .home-expertise-tile__content strong {
        font-size: 1.05rem;
        padding: 4px 7px;
    }

    #ent-km .home-expertise-tile__content em {
        font-size: 0.82rem;
        padding: 4px 7px;
    }

    .enterprise-proof-logos {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .enterprise-process-grid {
        grid-template-columns: 1fr;
    }
}

/* Mobile optimization pass */
@media (max-width: 900px) {
    :root {
        --layout-gutter-mobile: 10px;
        --hero-content-gutter-mobile: 12px;
    }

    .page-shell {
        padding: 18px var(--layout-gutter-mobile) 30px;
    }

    .cc-header__inner {
        min-height: 0;
        padding: 8px 12px;
        gap: 8px;
    }

    .cc-nav__link,
    .cc-nav__submenu a,
    .hero-btn,
    .contact-hero__cta,
    .shop-map__link,
    .site-footer__cta-link,
    .site-footer__newsletter-form button,
    .prefooter-form button,
    .inline-form button,
    .faq-tab {
        min-height: 44px;
    }

    .hero-slider,
    .contact-hero__slider,
    .contact-hero__intro,
    .services-hero-section,
    .boutique-hero-section,
    .entreprise-hero-section,
    .boutique-maintenance-hero,
    .boutique-entretien-hero {
        height: 58vh;
        min-height: 340px;
    }

    .hero-content,
    .services-hero-section__content,
    .boutique-hero-section__content,
    .entreprise-hero-section__content,
    .boutique-maintenance-hero__content,
    .boutique-entretien-hero__content {
        padding-left: 12px;
        padding-right: 12px;
    }

    .hero-title,
    .contact-hero__content h1,
    .contact-hero__content h2 {
        line-height: 1.08;
        overflow-wrap: anywhere;
    }

    .hero-text,
    .contact-hero__content p,
    .list-card p {
        font-size: 0.95rem;
        line-height: 1.45;
    }

    .hero-arrow,
    .contact-hero__arrow {
        width: 40px;
        height: 40px;
    }

    .cart-actions {
        flex-direction: column;
        align-items: stretch;
    }

    .cart-actions .inline-form {
        width: 100%;
    }

    .qty-input {
        width: 100%;
        max-width: 110px;
    }

    .inline-form input,
    .inline-form select,
    .inline-form textarea,
    .prefooter-form input,
    .prefooter-form select,
    .prefooter-form textarea,
    .site-footer__newsletter-form input {
        min-height: 44px;
        font-size: 16px;
    }

    .payment-methods__list li {
        font-size: 0.82rem;
    }
}

@media (max-width: 600px) {
    .cc-header .cc-brand__logo {
        width: 132px;
    }

    .hero-slider,
    .contact-hero__slider,
    .contact-hero__intro,
    .services-hero-section,
    .boutique-hero-section,
    .entreprise-hero-section,
    .boutique-maintenance-hero,
    .boutique-entretien-hero {
        height: 52vh;
        min-height: 300px;
    }

    .hero-title {
        font-size: clamp(1.35rem, 7.2vw, 2rem);
    }

    .home-dual-hero__card {
        min-height: 340px;
    }

    .home-expertise-tile,
    .home-expertise-tile.is-active {
        height: 210px;
    }

    .home-realizations__grid {
        grid-template-rows: repeat(4, 210px);
    }

    .hero-btn,
    .contact-hero__cta {
        width: 100%;
        justify-content: center;
    }
}
