:root {
    --colorBody: transparent;
    --colorText: white;
    --ColorNumberOne: #1b1b1b;
    --ColorNumber2: #8c8c8c;
    --ColorNumber3: #b3b3b3;
    --ColorNumber4: #f2b300;
    --ColorNumber5: #5a5a5a;
    --colorText2: white;
    --c-bg-1: var(--ColorNumberOne);
    --c-bg-2: var(--ColorNumber2);
    --c-accent: var(--ColorNumberOne);
    --c-accent-2: var(--ColorNumber4);
    --c-tint: #efefef;
    --c-text: #f7f7f5;
    --c-card: rgba(255, 255, 255, .06);
    --c-border: rgba(255, 255, 255, .18);
    --radius: 14px;
    --radius-xl: 18px;
    --shadow: 0 10px 28px rgba(0, 0, 0, .22);
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    color: var(--colorText);
    background: var(--colorBody);
    scroll-behavior: smooth;
}

.Body {
    scroll-behavior: smooth;
    background-image: url('images/BackG.jpg');
    background-repeat: no-repeat;
    background-size: cover;
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    height: 100%;
    width: 100%;
    margin: auto auto;
    overflow-x: hidden;
    overflow-y: auto;
}

#prefond {
    position: fixed;
    background: linear-gradient(114deg, var(--ColorNumberOne), var(--ColorNumber2), var(--ColorNumberOne), var(--ColorNumber3));
    background-size: 200% 400%;
    animation: gradient 10s ease infinite;
    width: 70vw;
    height: 100vh;
    z-index: -2;
    top: 0vh;
    left: 15vw;
}

#fond {
    position: fixed;
    background-image: url(images/fond.jpg);
    background-color: transparent;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    width: 90vw;
    left: 5vw;
    height: 50vh;
    z-index: -1;
    top: 35vh;
    transition: background-image 1s ease;
    display: none;
}

@keyframes gradient {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

a {
    color: var(--colorText);
    text-decoration: none;
}

a:hover {
    color: inherit;
}

a[href^="tel"] {
    text-decoration: none;
}

::-webkit-scrollbar {
    -webkit-appearance: none;
}

::-webkit-scrollbar:vertical {
    width: 12px;
}

::-webkit-scrollbar:horizontal {
    height: 12px;
}

::-webkit-scrollbar-thumb {
    background-color: var(--ColorNumberOne);
    border-radius: 10px;
    border: 2px solid var(--ColorNumber2);
}

::-webkit-scrollbar-track {
    border-radius: 10px;
    background-color: var(--ColorNumber2);
}

h1, h2, h3 {
    margin: 0;
}

p {
    text-align: justify;
    hyphens: auto;
    -webkit-hyphens: auto;
    font-weight: 300;
    padding: 3vh;
}

hr {
    display: block;
    margin-top: 0.5em;
    margin-bottom: 0.5em;
    margin-left: auto;
    margin-right: auto;
    border-style: inset;
    border-width: 10px;
    border-color: var(--colorText);
}

.margin-top-10 {
    padding-top: 10px;
}

.line-break {
    border-bottom: 3px solid var(--colorText);
    width: 60vw;
    margin: 0 auto;
    margin-bottom: 6vh;
}

img {
    image-rendering: auto;
}

.alternative {
    background: linear-gradient(114deg, var(--ColorNumber2), var(--colorBody), var(--ColorNumber4), var(--colorBody));
    background-size: 400% 400%;
    animation: gradient 10s ease infinite;
    color: var(--colorText2);
}

.alternative2 {
    background: #0000001f;
}

.flex {
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    align-items: center;
    text-align: center;
}

.Format80 {
    width: 80vw;
    margin: 3vh 10vw 3vh;
}

.Format60 {
    width: 60vw;
    margin: 3vh 20vw 3vh;
}

.Format60bis {
    width: 60vw;
    margin: 3vh 20vw 3vh;
    background-color: #4c819dcf;
    height: 60vh;
}

@media screen and (orientation: portrait) {
    .Format60 {
        width: 80vw;
        margin: 3vh 10vw 3vh;
    }

    .Format60bis {
        width: 80vw;
        margin: 3vh 10vw 3vh;
        height: 60vh;
    }
}

.supertitle {
    font-size: 2.5em;
    text-transform: uppercase;
    font-weight: 100;
    padding: 1vh;
    text-align: center;
}

.title {
    font-size: 2em;
    text-transform: uppercase;
    font-weight: 100;
    padding: 1vh;
    text-align: center;
}

.subtitle {
    font-size: 1.5em;
    text-align: center;
    padding: 1vh;
}

.Photo {
    width: 15vw;
    border-radius: 10%;
    background: linear-gradient(114deg, var(--ColorNumberOne), var(--ColorNumber2), var(--ColorNumber3), var(--ColorNumber4));
    display: flex;
    align-items: center;
    justify-content: center;
    float: right;
    margin: 5vh;
}

.Photo img {
    width: 95%;
    height: auto;
    border-radius: 10%;
}

@media screen and (orientation: portrait) {
    .Photo {
        width: 70vw;
        float: unset;
        margin: 4% 4% 4% 7%;
    }
}

@media screen and (orientation: portrait) {
    .supertitle {
        font-size: 2em;
    }

    .title {
        font-size: 1.5em;
    }

    .subtitle {
        font-size: 1.2em;
    }
}

@media screen and (orientation: landscape) and (max-width: 1024px) {
    .supertitle {
        font-size: 1.5em;
    }

    .title {
        font-size: 1.2em;
    }

    .subtitle {
        font-size: 1.1em;
    }
}

.shadow {
    box-shadow: 0 4px 8px 0 rgba(255, 255, 255, 0.2), 0 6px 20px 0 rgba(200, 200, 200, 0.2);
}

.shadow2 {
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.2);
}

.radius {
    border-radius: 2vh;
}

#BaliseH1 {
    width: 92%;
    margin: 4%;
}

.row {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    position: relative;
    width: 92%;
    margin: 4%;
}

.column {
    flex: 40%;
    margin: 20px;
    display: grid;
    align-content: center;
    max-width: 80vw;
    justify-content: center;
    justify-items: center;
}

.column1 {
    flex: 40%;
    margin: 20px;
    display: grid;
    align-content: center;
    max-width: 80vw;
    justify-content: center;
    justify-items: center;
}

.column2 {
    flex: 30%;
    margin: 20px;
    display: grid;
    align-content: center;
    max-width: 80vw;
    justify-content: center;
    justify-items: center;
}

.Boutique {
    position: fixed;
    width: 20vw;
    height: 12vh;
    background-color: var(--ColorNumberOne);
    z-index: 1000;
    opacity: .7;
    margin-top: 75vh;
    border-radius: 50px;
    left: 75vw;
    display: flex;
    transition: 1s ease-in;
    justify-content: center;
}

.Boutique:hover {
    transition: 1s ease-out;
    opacity: .95;
}

.Boutique img {
    width: 15%;
}

.Boutique a {
    display: flex;
    justify-content: space-around;
    align-items: center;
    text-decoration: none;
    text-transform: uppercase;
    color: var(--colorText);
}

@media screen and (orientation: portrait) {
    .Boutique {
        width: 70vw;
        height: 10vh;
        left: 15vw;
        margin-top: 80vh;
    }

    .Boutique img {
        width: 15%;
    }
}

.Depannage img {
    width: 30%;
    border-radius: 2vh;
}

.Boutique2 {
    position: relative;
    width: 25vw;
    height: 12vh;
    background-color: var(--ColorNumber2);
    z-index: 1000;
    opacity: .7;
    border-radius: 50px;
    display: flex;
    transition: 1s ease-in;
    justify-content: center;
}

.Boutique2 a {
    display: flex;
    justify-content: space-around;
    align-items: center;
    text-decoration: none;
    text-transform: uppercase;
    color: var(--colorText);
}

#Decennale1 img {
    width: 50%;
    border-radius: 2vh;
}

@media screen and (orientation: portrait) {
    .Depannage img {
        width: 100%;
    }

    .Boutique2 {
        width: 70vw;
        height: 10vh;
        position: relative;
    }

    .Boutique2 img {
        width: 15%;
    }
}

/* contact */

input {
    width: 30vw;
    padding: 6px 10px;
    margin: 8px 0;
    box-sizing: border-box;
    margin-left: 0vw;
    background-color: transparent;
    color: white;
    border: solid white 1px;
}

input::placeholder {
    font-style: italic;
    color: white;
}

textarea {
    width: 30vw;
    padding: 6px 10px;
    margin: 8px 0;
    box-sizing: border-box;
    margin-left: 0vw;
    background-color: transparent;
    color: white;
    border: solid white 1px;
}

textarea::placeholder {
    font-style: italic;
    color: white;
}

.ButtonForm {
    background-color: transparent;
    border: 1px solid white;
    color: white;
    padding: 15px 32px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 16px;
    margin: 4px 2px;
    cursor: pointer;
    border-radius: 50px;
    width: 30vw;
    margin-left: 0vw;
}

.ButtonForm:hover {
    background-color: grey;
}

@media screen and (orientation: portrait) {
    input {
        width: 80vw;
    }

    textarea {
        width: 80vw;
    }

    .ButtonForm {
        width: 50vw;
    }
}

/* contact */

#SectionArticle {
    min-width: 90vw;
    max-width: 90vw;
    margin-left: 5vw;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    padding: 10px;
    position: relative;
    border-radius: 3vh;
}

#SectionArticleText {
    display: grid;
    align-content: center;
    color: white;
    justify-items: center;
}

/* Container for flexboxes */
.rowPresentation {
    display: flex;
    flex-wrap: wrap;
    top: 15vh;
    width: 90vw;
    justify-content: center;
}

/* Create two equal columns */
.columnPresentationA {
    flex: 60%;
    padding: 2vh;
    margin: 2vh;
    display: flex;
    align-items: center;
    flex-direction: column;
    hyphens: auto;
    text-align: justify;
}

.columnPresentationA .title {
    font-size: 2em;
    text-align: center;
    color: white;
    margin: 2vh;
}

.columnPresentationA .text {
    text-align: justify;
    hyphens: auto;
    color: white;
    margin: 2vh;
}

.columnPresentationA ul {
    max-width: 30vw;
    margin: 2vh;
}

@media only screen and (orientation: portrait) {
    .columnPresentationA .title {
        font-size: 1.3em;
    }

    .columnPresentationA ul {
        max-width: 50vw;
        margin: 2vh;
        font-size: 1em;
    }
}

.columnPresentationA ul .title {
    font-size: 1.1em;
    text-align: center;
    color: white;
    margin: 2vh;
    font-weight: 700;
}

.columnPresentationB {
    flex: 25%;
    padding: 3vh;
    margin: 3vh;
    display: flex;
    align-items: center;
    flex-direction: column;
    color: white;
    border-radius: 3vh;
    height: fit-content;
}

.underMenu {
    font-size: 2em;
    padding: 2vh;
}

@media only screen and (orientation: portrait) {
    .underMenu {
        font-size: 1.3em;
    }
}

.underMenu li {
    margin: 0 0 2vh 0;
}

.underMenu a {
    color: white;
    text-decoration: underline;
    margin: 0;
}

#footer {
    background: black;
    display: flex;
    justify-content: center;
    padding: 2vh;
    height: 10vh;
}

#footer p {
    font-size: 12px;
}

#footer a {
    color: blue;
    text-decoration: underline;
}

/* ===========================
   HOME V3 / CH'TI RENOV
   =========================== */

.home-v3 {
    --v3-bg: #d7d7d4;
    --v3-bg-soft: #ecece8;
    --v3-panel: #f7f7f3;
    --v3-ink: #171717;
    --v3-ink-2: #2a2a2a;
    --v3-line: rgba(0, 0, 0, .10);
    --v3-accent: #f2b300;
    --v3-accent-strong: #d89c00;
    --v3-dark-block: #1b1b1b;
    --v3-shadow: 0 20px 50px rgba(0, 0, 0, .16);
    --v3-shadow-soft: 0 12px 30px rgba(0, 0, 0, .10);
    --v3-radius: 24px;
    --v3-radius-sm: 18px;

    margin: 0;
    color: var(--v3-ink);
    font-family: Inter, Arial, sans-serif;
    background:
        linear-gradient(135deg, rgba(242,179,0,.08), transparent 28%),
        linear-gradient(180deg, #d3d3cf 0%, #dcdcd8 18%, #efefea 100%);
    min-height: 100vh;
    overflow-x: hidden;
}

.home-v3 * {
    box-sizing: border-box;
}

.home-v3 p,
.home-v3 li {
    padding: 0;
    margin: 0;
    text-align: left;
    hyphens: none;
    -webkit-hyphens: none;
}

.home-v3 h1,
.home-v3 h2,
.home-v3 h3 {
    margin: 0;
}

.home-v3 a,
.home-v3 a:hover {
    color: inherit;
    text-decoration: none;
}

.home-v3 img {
    display: block;
    max-width: 100%;
    height: auto;
    image-rendering: auto !important;
}

.home-v3 .v3-wrap,
.home-v3 .v3-main {
    width: min(1280px, 92vw);
    margin-inline: auto;
}

.home-v3 .v3-main {
    display: grid;
    gap: 26px;
    padding: 34px 0 100px;
}

/* Hero */
.home-v3 .v3-hero {
    position: relative;
    overflow: hidden;
    padding: 36px 0 18px;
}

.home-v3 .v3-hero::before {
    content: "";
    position: absolute;
    top: -8%;
    right: -10%;
    width: 46vw;
    height: 46vw;
    min-width: 380px;
    min-height: 380px;
    background: linear-gradient(135deg, rgba(242,179,0,.20), rgba(242,179,0,.02));
    clip-path: polygon(28% 0%, 100% 0%, 100% 74%, 62% 100%, 0% 100%, 0% 30%);
    pointer-events: none;
    z-index: 0;
}

.home-v3 .v3-hero::after {
    content: "";
    position: absolute;
    left: -8%;
    bottom: 6%;
    width: 24vw;
    height: 16vw;
    min-width: 220px;
    min-height: 120px;
    background: rgba(27, 27, 27, .06);
    clip-path: polygon(0 0, 76% 0, 100% 34%, 30% 100%, 0 100%);
    pointer-events: none;
    z-index: 0;
}

.home-v3 .v3-hero-grid {
    position: relative;
    z-index: 1;
    min-height: 78vh;
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(340px, .95fr);
    gap: 26px;
    align-items: center;
}

.home-v3 .v3-hero-copy {
    position: relative;
    padding: 22px 8px 22px 0;
}

.home-v3 .v3-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 18px;
}

.home-v3 .v3-tags span {
    display: inline-flex;
    align-items: center;
    min-height: 42px;
    padding: 10px 14px;
    border: 1px solid rgba(0,0,0,.10);
    background: rgba(255,255,255,.55);
    backdrop-filter: blur(8px);
    border-radius: 999px;
    font-size: .84rem;
    font-weight: 800;
    letter-spacing: .04em;
    text-transform: uppercase;
    color: var(--v3-ink);
}

.home-v3 .v3-logo {
    width: clamp(150px, 17vw, 240px);
    margin-bottom: 20px;
    filter: drop-shadow(0 16px 22px rgba(0, 0, 0, .12));
    border-radius: 2vh;
}

.home-v3 .v3-kicker {
    font-size: .78rem;
    font-weight: 900;
    letter-spacing: .22em;
    text-transform: uppercase;
    color: rgba(27,27,27,.58);
    margin-bottom: 14px;
}

.home-v3 .v3-hero-copy h1 {
    font-size: clamp(2.4rem, 5vw, 5.4rem);
    line-height: .98;
    font-weight: 900;
    letter-spacing: -.04em;
    max-width: 11ch;
    text-transform: uppercase;
    color: var(--v3-ink);
}

.home-v3 .v3-lead {
    margin-top: 22px;
    max-width: 58ch;
    font-size: clamp(1rem, 1.4vw, 1.16rem);
    line-height: 1.75;
    color: rgba(23,23,23,.82);
}

.home-v3 .v3-actions {
    margin-top: 28px;
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.home-v3 .v3-btn {
    --bg: transparent;
    --bd: #171717;
    --tx: #171717;

    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: .65em;
    min-height: 56px;
    padding: 14px 22px;
    border: 2px solid var(--bd);
    border-radius: 999px;
    background: var(--bg);
    color: var(--tx);
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: .04em;
    transition: transform .18s ease, box-shadow .18s ease, background .18s ease, color .18s ease, border-color .18s ease;
    box-shadow: none;
}

.home-v3 .v3-btn .material-icons {
    font-size: 1.15em;
}

.home-v3 .v3-btn:hover {
    transform: translateY(-2px);
}

.home-v3 .v3-btn-solid {
    --bg: var(--v3-accent);
    --bd: var(--v3-accent);
    --tx: #171717;
    box-shadow: 0 14px 30px rgba(242,179,0,.26);
}

.home-v3 .v3-btn-solid:hover {
    background: var(--v3-accent-strong);
    border-color: var(--v3-accent-strong);
}

.home-v3 .v3-btn-ghost:hover {
    background: #171717;
    color: #fff;
    border-color: #171717;
}

.home-v3 .v3-btn-full {
    width: 100%;
}

/* Visual hero */
.home-v3 .v3-hero-visual {
    position: relative;
    min-height: 620px;
    border-radius: 30px;
    overflow: hidden;
    box-shadow: var(--v3-shadow);
    background: #1f1f1f;
    clip-path: polygon(10% 0, 100% 0, 100% 88%, 90% 100%, 0 100%, 0 12%);
}

.home-v3 .v3-hero-visual > img {
    width: 100%;
    height: 100%;
    min-height: 620px;
    object-fit: cover;
    filter: grayscale(.18) contrast(1.03);
}

.home-v3 .v3-hero-visual::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(180deg, rgba(0,0,0,.08), rgba(0,0,0,.28)),
        linear-gradient(135deg, rgba(242,179,0,.16), transparent 42%);
    pointer-events: none;
}

.home-v3 .v3-visual-badge {
    position: absolute;
    top: 18px;
    left: 18px;
    z-index: 2;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 14px;
    border-radius: 999px;
    background: rgba(247,247,243,.92);
    color: var(--v3-ink);
    font-size: .82rem;
    font-weight: 800;
    box-shadow: var(--v3-shadow-soft);
}

.home-v3 .v3-float-card {
    position: absolute;
    left: 18px;
    right: 18px;
    bottom: 18px;
    z-index: 2;
    background: rgba(247,247,243,.94);
    color: var(--v3-ink);
    border: 1px solid rgba(0,0,0,.08);
    border-radius: 22px;
    padding: 18px;
    backdrop-filter: blur(12px);
    box-shadow: 0 16px 36px rgba(0,0,0,.16);
}

.home-v3 .v3-float-card strong {
    display: block;
    font-size: 1.15rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: .04em;
    margin-bottom: 10px;
}

.home-v3 .v3-float-card p {
    color: rgba(23,23,23,.82);
    line-height: 1.55;
    margin-bottom: 10px;
}

.home-v3 .v3-float-card-zone {
    font-weight: 700;
}

.home-v3 .v3-mini-logos {
    position: absolute;
    top: 18px;
    right: 18px;
    z-index: 2;
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    justify-content: flex-end;
}

.home-v3 .v3-mini-logos img {
    height: 56px;
    width: auto;
    background: rgba(255,255,255,.96);
    padding: 7px;
    border-radius: 14px;
    box-shadow: 0 10px 22px rgba(0,0,0,.14);
}

/* Headings */
.home-v3 .v3-head {
    display: grid;
    gap: 10px;
    margin-bottom: 12px;
}

.home-v3 .v3-section-label {
    display: inline-block;
    font-size: .78rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: .22em;
    color: rgba(23,23,23,.48);
}

.home-v3 .v3-head h2,
.home-v3 .v3-panel h2,
.home-v3 .v3-final-cta h2 {
    font-size: clamp(1.6rem, 2.8vw, 2.8rem);
    line-height: 1.05;
    letter-spacing: -.03em;
    font-weight: 900;
    text-transform: uppercase;
    color: var(--v3-ink);
}

.home-v3 .v3-head p,
.home-v3 .v3-panel .muted,
.home-v3 .v3-final-cta p {
    color: rgba(23,23,23,.72);
    line-height: 1.7;
}

/* KPI */
.home-v3 .v3-kpis-wrap {
    position: relative;
    background: linear-gradient(135deg, rgba(255,255,255,.58), rgba(255,255,255,.34));
    border: 1px solid rgba(0,0,0,.08);
    border-radius: 30px;
    box-shadow: var(--v3-shadow-soft);
    padding: 28px;
    overflow: hidden;
}

.home-v3 .v3-kpis-wrap::after {
    content: "";
    position: absolute;
    top: -1px;
    right: -1px;
    width: 180px;
    height: 180px;
    background: rgba(242,179,0,.14);
    clip-path: polygon(100% 0, 100% 100%, 0 0);
    pointer-events: none;
}

.home-v3 .v3-kpis {
    margin-top: 18px;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 14px;
}

.home-v3 .v3-kpi {
    position: relative;
    background: rgba(247,247,243,.88);
    border: 1px solid rgba(0,0,0,.08);
    border-radius: 22px;
    padding: 22px 18px;
    min-height: 165px;
    display: grid;
    align-content: space-between;
    box-shadow: 0 10px 24px rgba(0,0,0,.06);
}

.home-v3 .v3-kpi:nth-child(odd) {
    transform: translateY(10px);
}

.home-v3 .v3-kpi-label {
    font-size: .78rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: .14em;
    color: rgba(23,23,23,.54);
}

.home-v3 .v3-kpi-value {
    font-size: clamp(2.2rem, 4vw, 3.6rem);
    line-height: 1;
    font-weight: 900;
    letter-spacing: -.04em;
    color: var(--v3-ink);
}

.home-v3 .v3-kpi small {
    color: rgba(23,23,23,.68);
    line-height: 1.45;
    font-weight: 600;
}

/* Services */
.home-v3 .v3-services {
    display: grid;
    grid-template-columns: repeat(12, minmax(0, 1fr));
    gap: 16px;
}

.home-v3 .v3-service {
    grid-column: span 4;
    background: var(--v3-panel);
    color: var(--v3-ink);
    border: 1px solid rgba(0,0,0,.08);
    border-radius: 28px;
    overflow: hidden;
    box-shadow: var(--v3-shadow-soft);
    transition: transform .2s ease, box-shadow .2s ease;
}

.home-v3 .v3-service:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 38px rgba(0,0,0,.12);
}

.home-v3 .v3-service-featured {
    grid-column: span 8;
}

.home-v3 .v3-service img {
    width: 100%;
    aspect-ratio: 16 / 9;
    object-fit: cover;
    filter: grayscale(.1) contrast(1.02);
}

.home-v3 .v3-service-body {
    position: relative;
    padding: 22px 22px 20px;
    display: grid;
    gap: 10px;
}

.home-v3 .v3-service-index {
    font-size: .82rem;
    font-weight: 900;
    letter-spacing: .18em;
    text-transform: uppercase;
    color: var(--v3-accent-strong);
}

.home-v3 .v3-service-body h3 {
    font-size: 1.4rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: -.02em;
}

.home-v3 .v3-service-body p {
    color: rgba(23,23,23,.74);
    line-height: 1.65;
}

.home-v3 .v3-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 6px;
    width: fit-content;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: .05em;
    color: var(--v3-ink);
    padding-bottom: 2px;
    border-bottom: 2px solid var(--v3-accent);
}

.home-v3 .v3-link .material-icons {
    font-size: 1.08rem;
}

/* Panels */
.home-v3 .v3-two-cols {
    display: grid;
    grid-template-columns: 1.1fr .9fr;
    gap: 18px;
}

.home-v3 .v3-panel {
    background: linear-gradient(180deg, rgba(255,255,255,.56), rgba(255,255,255,.38));
    border: 1px solid rgba(0,0,0,.08);
    border-radius: 28px;
    box-shadow: var(--v3-shadow-soft);
    padding: 24px;
    overflow: hidden;
}

/* Before / after */
.home-v3 .v3-ba {
    --pos: 50%;
    position: relative;
    margin-top: 16px;
    aspect-ratio: 1.55 / 1;
    border-radius: 22px;
    overflow: hidden;
    background: #000;
    box-shadow: inset 0 0 0 1px rgba(255,255,255,.08);
    touch-action: none;
    user-select: none;
    -webkit-user-select: none;
    -webkit-tap-highlight-color: transparent;
}

.home-v3 .v3-ba-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

.home-v3 .v3-ba-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    pointer-events: none;
    user-drag: none;
    -webkit-user-drag: none;
}

.home-v3 .v3-ba-before,
.home-v3 .v3-ba-after {
    position: absolute;
    inset: 0;
}

.home-v3 .v3-ba-after {
    clip-path: inset(0 0 0 var(--pos));
    -webkit-clip-path: inset(0 0 0 var(--pos));
}

.home-v3 .v3-ba-line {
    position: absolute;
    top: 0;
    bottom: 0;
    left: var(--pos);
    transform: translateX(-50%);
    width: 4px;
    background: var(--v3-accent);
    box-shadow: 0 0 0 2px rgba(255,255,255,.16);
    pointer-events: none;
}

.home-v3 .v3-ba-handle {
    position: absolute;
    left: var(--pos);
    top: 50%;
    transform: translate(-50%, -50%);
    width: 52px;
    height: 52px;
    border-radius: 50%;
    border: 0;
    background: var(--v3-accent);
    color: #171717;
    font-weight: 900;
    font-size: 1rem;
    cursor: ew-resize;
    box-shadow: 0 10px 22px rgba(0,0,0,.22);
    z-index: 3;
    touch-action: none;
}

.home-v3 .v3-ba-handle:focus-visible {
    outline: 2px solid #171717;
    outline-offset: 3px;
}

/* Steps */
.home-v3 .v3-steps {
    margin: 18px 0 0;
    padding: 0;
    list-style: none;
    display: grid;
    gap: 12px;
}

.home-v3 .v3-steps li {
    display: grid;
    grid-template-columns: 54px 1fr;
    gap: 14px;
    align-items: start;
    background: rgba(247,247,243,.92);
    border: 1px solid rgba(0,0,0,.08);
    border-radius: 18px;
    padding: 14px;
}

.home-v3 .v3-steps li > span {
    width: 54px;
    height: 54px;
    display: grid;
    place-items: center;
    border-radius: 16px;
    background: var(--v3-dark-block);
    color: var(--v3-accent);
    font-weight: 900;
    font-size: 1.05rem;
    box-shadow: inset 0 0 0 1px rgba(255,255,255,.06);
}

.home-v3 .v3-steps strong {
    display: block;
    font-size: 1.02rem;
    font-weight: 900;
    text-transform: uppercase;
    margin-bottom: 6px;
    color: var(--v3-ink);
}

.home-v3 .v3-steps p {
    color: rgba(23,23,23,.72);
    line-height: 1.6;
}

/* Banner */
.home-v3 .v3-banner-photo {
    position: relative;
    border-radius: 30px;
    overflow: hidden;
    box-shadow: var(--v3-shadow);
    min-height: 320px;
    clip-path: polygon(4% 0, 100% 0, 96% 100%, 0 100%);
}

.home-v3 .v3-banner-photo img {
    width: 100%;
    height: 100%;
    min-height: 320px;
    max-height: 360px;
    object-fit: cover;
    filter: grayscale(.12) contrast(1.02);
}

.home-v3 .v3-banner-photo::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(0,0,0,.58), rgba(0,0,0,.14)),
        linear-gradient(135deg, rgba(242,179,0,.18), transparent 38%);
}

.home-v3 .v3-banner-photo-overlay {
    position: absolute;
    left: 24px;
    right: 24px;
    bottom: 24px;
    z-index: 2;
    max-width: 760px;
    background: rgba(247,247,243,.92);
    color: var(--v3-ink);
    border-radius: 18px;
    padding: 16px 18px;
    font-weight: 900;
    text-transform: uppercase;
    line-height: 1.5;
    box-shadow: 0 10px 24px rgba(0,0,0,.16);
}

/* Partners */
.home-v3 .partners {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    align-items: center;
    margin-top: 14px;
}

.home-v3 .partners img {
    height: 62px;
    width: auto;
    background: #fff;
    padding: 8px;
    border-radius: 14px;
    box-shadow: 0 10px 22px rgba(0,0,0,.10);
}

/* CTA */
.home-v3 .v3-final-cta {
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #171717 0%, #242424 100%);
    color: #f7f7f3;
    border-radius: 34px;
    box-shadow: 0 24px 54px rgba(0,0,0,.24);
    padding: 0;
}

.home-v3 .v3-final-cta::before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    width: 220px;
    height: 220px;
    background: rgba(242,179,0,.16);
    clip-path: polygon(100% 0, 100% 100%, 0 0);
}

.home-v3 .v3-final-cta-inner {
    position: relative;
    z-index: 1;
    padding: 34px 28px;
    display: grid;
    gap: 12px;
}

.home-v3 .v3-final-cta .v3-section-label,
.home-v3 .v3-final-cta h2,
.home-v3 .v3-final-cta p {
    color: #f7f7f3;
}

.home-v3 .v3-final-cta .v3-section-label {
    opacity: .68;
}

.home-v3 .v3-final-cta p {
    opacity: .90;
}

/* Responsive */
@media (max-width: 1180px) {
    .home-v3 .v3-services {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .home-v3 .v3-service,
    .home-v3 .v3-service-featured {
        grid-column: auto;
    }

    .home-v3 .v3-kpis {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 980px) {
    .home-v3 .v3-hero-grid {
        grid-template-columns: 1fr;
        min-height: auto;
    }

    .home-v3 .v3-hero-copy h1 {
        max-width: none;
    }

    .home-v3 .v3-hero-visual,
    .home-v3 .v3-hero-visual > img {
        min-height: 420px;
    }

    .home-v3 .v3-two-cols {
        grid-template-columns: 1fr;
    }

    .home-v3 .v3-kpi:nth-child(odd) {
        transform: none;
    }
}

@media (max-width: 680px) {
    .home-v3 .v3-wrap,
    .home-v3 .v3-main {
        width: min(94vw, 94vw);
    }

    .home-v3 .v3-hero {
        padding-top: 18px;
    }

    .home-v3 .v3-hero-copy {
        padding-right: 0;
    }

    .home-v3 .v3-tags {
        gap: 8px;
    }

    .home-v3 .v3-tags span {
        width: 100%;
        justify-content: center;
        text-align: center;
        min-height: auto;
    }

    .home-v3 .v3-kicker {
        letter-spacing: .14em;
        line-height: 1.5;
    }

    .home-v3 .v3-hero-copy h1 {
        font-size: clamp(2rem, 11vw, 3rem);
        line-height: 1.02;
    }

    .home-v3 .v3-actions {
        flex-direction: column;
    }

    .home-v3 .v3-btn {
        width: 100%;
    }

    .home-v3 .v3-hero-visual {
        min-height: 360px;
        border-radius: 24px;
        clip-path: none;
    }

    .home-v3 .v3-hero-visual > img {
        min-height: 360px;
    }

    .home-v3 .v3-mini-logos {
        position: static;
        padding: 14px 14px 0;
        justify-content: flex-start;
    }

    .home-v3 .v3-kpis {
        grid-template-columns: 1fr;
    }

    .home-v3 .v3-services {
        grid-template-columns: 1fr;
    }

    .home-v3 .v3-panel,
    .home-v3 .v3-kpis-wrap,
    .home-v3 .v3-service {
        border-radius: 22px;
    }

    .home-v3 .v3-banner-photo {
        clip-path: none;
        border-radius: 24px;
    }

    .home-v3 .v3-banner-photo-overlay {
        left: 14px;
        right: 14px;
        bottom: 14px;
        font-size: .92rem;
    }

    .home-v3 .v3-final-cta {
        border-radius: 24px;
    }

    .home-v3 .v3-final-cta-inner {
        padding: 24px 18px;
    }

    .home-v3 .v3-ba {
        aspect-ratio: 1.15 / 1;
    }

    .home-v3 .v3-ba-handle {
        width: 56px;
        height: 56px;
    }
}

/* CTA flottant appel */
.floating-call-cta {
    position: fixed;
    right: 20px;
    bottom: 20px;
    z-index: 10000;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    min-height: 58px;
    padding: 0 18px;
    border-radius: 999px;
    background: linear-gradient(135deg, var(--ColorNumber4), #d89c00);
    color: #171717;
    font-weight: 900;
    font-size: .98rem;
    letter-spacing: .02em;
    box-shadow: 0 14px 34px rgba(0,0,0,.24);
    border: 1px solid rgba(0,0,0,.08);
    transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}

.floating-call-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 18px 38px rgba(0,0,0,.28);
    background: linear-gradient(135deg, #ffc61a, #e0a400);
    color: #171717;
}

.floating-call-cta .material-icons {
    font-size: 22px;
    line-height: 1;
}

@media (max-width: 680px) {
    .floating-call-cta {
        right: 14px;
        left: 14px;
        bottom: 14px;
        justify-content: center;
        min-height: 54px;
        font-size: .95rem;
        padding: 0 16px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .floating-call-cta {
        transition: none !important;
    }

    .home-v3 .v3-btn,
    .home-v3 .v3-service,
    .Boutique,
    .Boutique:hover {
        transition: none !important;
    }
}

/* ===========================
   CONTACT V3 / CH'TI RENOV
   =========================== */

.page-contact-v3 .is-active,
.page-contact-v3 [aria-current="page"] {
    color: var(--ColorNumber4) !important;
    font-weight: 900;
    text-decoration: underline;
    text-underline-offset: 4px;
}

.page-contact-v3 .contact-v3-main {
    padding-top: 8px;
}

.page-contact-v3 .contact-v3-hero {
    position: relative;
    padding: 24px 0 8px;
}

.page-contact-v3 .contact-v3-hero-box {
    display: grid;
    grid-template-columns: minmax(0, 1.15fr) minmax(320px, .85fr);
    gap: 18px;
    align-items: stretch;
}

.page-contact-v3 .contact-v3-hero-copy,
.page-contact-v3 .contact-v3-hero-card,
.page-contact-v3 .contact-v3-card {
    background: linear-gradient(180deg, rgba(255,255,255,.56), rgba(255,255,255,.38));
    border: 1px solid rgba(0,0,0,.08);
    border-radius: 28px;
    box-shadow: var(--v3-shadow-soft);
}

.page-contact-v3 .contact-v3-hero-copy {
    padding: 28px;
}

.page-contact-v3 .contact-v3-logo {
    width: clamp(140px, 16vw, 220px);
    margin: 6px 0 18px;
    border-radius: 16px;
    box-shadow: 0 14px 26px rgba(0,0,0,.10);
}

.page-contact-v3 .contact-v3-hero-copy h1 {
    font-size: clamp(2rem, 4.8vw, 4.2rem);
    line-height: .98;
    font-weight: 900;
    letter-spacing: -.04em;
    text-transform: uppercase;
    color: var(--v3-ink);
    max-width: 10ch;
}

.page-contact-v3 .contact-v3-lead {
    margin-top: 18px;
    max-width: 58ch;
    font-size: clamp(1rem, 1.3vw, 1.08rem);
    line-height: 1.75;
    color: rgba(23,23,23,.80);
}

.page-contact-v3 .contact-v3-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 20px;
}

.page-contact-v3 .contact-v3-tags span {
    display: inline-flex;
    align-items: center;
    min-height: 42px;
    padding: 10px 14px;
    border: 1px solid rgba(0,0,0,.10);
    background: rgba(255,255,255,.55);
    border-radius: 999px;
    font-size: .82rem;
    font-weight: 800;
    letter-spacing: .04em;
    text-transform: uppercase;
    color: var(--v3-ink);
}

.page-contact-v3 .contact-v3-hero-card {
    padding: 24px;
    display: grid;
    align-content: start;
    gap: 12px;
    position: relative;
    overflow: hidden;
}

.page-contact-v3 .contact-v3-hero-card::after {
    content: "";
    position: absolute;
    top: -1px;
    right: -1px;
    width: 160px;
    height: 160px;
    background: rgba(242,179,0,.16);
    clip-path: polygon(100% 0, 100% 100%, 0 0);
    pointer-events: none;
}

.page-contact-v3 .contact-v3-card-label {
    font-size: .78rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: .18em;
    color: rgba(23,23,23,.48);
}

.page-contact-v3 .contact-v3-info-list,
.page-contact-v3 .contact-v3-side-list,
.page-contact-v3 .contact-v3-services-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.page-contact-v3 .contact-v3-info-list,
.page-contact-v3 .contact-v3-side-list {
    display: grid;
    gap: 12px;
}

.page-contact-v3 .contact-v3-info-list li,
.page-contact-v3 .contact-v3-side-list li {
    display: flex;
    gap: 10px;
    align-items: flex-start;
    color: rgba(23,23,23,.84);
    line-height: 1.6;
    font-weight: 500;
}

.page-contact-v3 .contact-v3-info-list .material-icons,
.page-contact-v3 .contact-v3-side-list .material-icons {
    font-size: 1.1rem;
    margin-top: 2px;
    color: var(--v3-accent-strong);
}

.page-contact-v3 .contact-v3-grid {
    display: grid;
    grid-template-columns: 1.15fr .85fr;
    gap: 18px;
}

.page-contact-v3 .contact-v3-card {
    padding: 24px;
    overflow: hidden;
}

.page-contact-v3 .contact-v3-breadcrumb {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 12px;
    font-size: .94rem;
    color: rgba(23,23,23,.72);
}

.page-contact-v3 .contact-v3-breadcrumb a {
    text-decoration: underline;
}

.page-contact-v3 .contact-v3-form {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
    margin-top: 14px;
}

.page-contact-v3 .contact-v3-form .wide {
    grid-column: 1 / -1;
}

.page-contact-v3 .contact-v3-form label {
    display: flex;
    flex-direction: column;
    gap: 8px;
    font-size: .95rem;
    font-weight: 700;
    color: var(--v3-ink);
}

.page-contact-v3 .contact-v3-form input[type="text"],
.page-contact-v3 .contact-v3-form input[type="tel"],
.page-contact-v3 .contact-v3-form input[type="email"],
.page-contact-v3 .contact-v3-form select,
.page-contact-v3 .contact-v3-form textarea {
    width: 100%;
    min-width: 0;
    margin: 0;
    padding: 12px 14px;
    border-radius: 14px;
    border: 1px solid rgba(0,0,0,.12);
    background: rgba(255,255,255,.74);
    color: #171717;
    box-sizing: border-box;
    outline: none;
    font-family: inherit;
    font-size: .98rem;
    transition: border-color .18s ease, box-shadow .18s ease, background .18s ease;
}

.page-contact-v3 .contact-v3-form input::placeholder,
.page-contact-v3 .contact-v3-form textarea::placeholder {
    color: rgba(23,23,23,.46);
    font-style: normal;
}

.page-contact-v3 .contact-v3-form input:focus,
.page-contact-v3 .contact-v3-form select:focus,
.page-contact-v3 .contact-v3-form textarea:focus {
    border-color: var(--v3-accent);
    box-shadow: 0 0 0 3px rgba(242,179,0,.20);
    background: rgba(255,255,255,.94);
}

.page-contact-v3 .contact-v3-form textarea {
    min-height: 150px;
    resize: vertical;
}

.page-contact-v3 .honeypot {
    position: absolute !important;
    left: -9999px !important;
    width: 1px !important;
    height: 1px !important;
    opacity: 0 !important;
    pointer-events: none !important;
}

.page-contact-v3 .contact-v3-consent {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: .92rem !important;
    line-height: 1.6;
    color: rgba(23,23,23,.74);
    font-weight: 500 !important;
}

.page-contact-v3 .contact-v3-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 4px;
}

.page-contact-v3 .contact-v3-help {
    color: rgba(23,23,23,.62);
    line-height: 1.6;
    font-size: .88rem;
}

.page-contact-v3 .contact-v3-side-title {
    margin: 18px 0 10px;
    font-size: 1.02rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: .04em;
    color: var(--v3-ink);
}

.page-contact-v3 .contact-v3-services-list {
    display: grid;
    gap: 8px;
    color: rgba(23,23,23,.78);
    padding-left: 18px;
    list-style: disc;
}

.page-contact-v3 .contact-v3-map {
    margin-top: 18px;
}

.page-contact-v3 .contact-v3-map iframe {
    width: 100%;
    height: 320px;
    border: 0;
    border-radius: 18px;
    display: block;
}

.page-contact-v3 .v3-btn[disabled] {
    opacity: .65;
    cursor: not-allowed;
    pointer-events: none;
}

@media (max-width: 980px) {
    .page-contact-v3 .contact-v3-hero-box,
    .page-contact-v3 .contact-v3-grid {
        grid-template-columns: 1fr;
    }

    .page-contact-v3 .contact-v3-hero-copy h1 {
        max-width: none;
    }
}

@media (max-width: 680px) {
    .page-contact-v3 .contact-v3-hero-copy,
    .page-contact-v3 .contact-v3-hero-card,
    .page-contact-v3 .contact-v3-card {
        border-radius: 22px;
        padding: 18px;
    }

    .page-contact-v3 .contact-v3-form {
        grid-template-columns: 1fr;
    }

    .page-contact-v3 .contact-v3-actions {
        flex-direction: column;
    }

    .page-contact-v3 .contact-v3-actions .v3-btn {
        width: 100%;
    }

    .page-contact-v3 .contact-v3-tags span {
        width: 100%;
        justify-content: center;
        text-align: center;
    }

    .page-contact-v3 .contact-v3-map iframe {
        height: 280px;
    }
}