:root {
    --brand-gray: #4e5458;
    --brand-gray-light: #6b7379;
    --clr-surface: #fff;
    --clr-primary-dark: var(--brand-blue-dark);
    --clr-accent: #fdb640;
    --clr-accent-dark: #d28d16;
    --clr-text-light: #4a5359;
    --transition: 0.25s ease;
    --logo-w-min: 180px;
    --logo-w-pref: 17vw;
    --logo-w-max: 260px
}

body,
html {
    height: 100%
}

body {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    min-height: 100dvh
}

main {
    flex: 1 0 auto
}

.site-footer {
    margin-top: auto
}

html {
    scroll-behavior: smooth
}

body {
    background: var(--clr-bg);
    text-rendering: optimizeLegibility
}

a {
    color: var(--clr-primary)
}

a:focus,
a:hover {
    text-decoration: underline
}

ul {
    margin: 0 0 1rem;
    padding-left: 1.2rem
}

.skip-link {
    height: 1px;
    overflow: hidden;
    top: auto;
    width: 1px
}

.skip-link:focus {
    height: auto;
    width: auto
}

.site-header {
    transition: background .3s var(--ease), box-shadow .3s var(--ease), padding .3s var(--ease)
}

.site-header.large-logo.row-layout .header-inner {
    align-items: center;
    display: flex;
    flex-direction: row;
    gap: 2rem;
    justify-content: space-between;
    padding: .75rem 0 .8rem
}

.branding {
    align-items: center;
    display: flex;
    flex: 0 0 auto
}

.logo-img,
.logo-picture {
    aspect-ratio: 355/112;
    display: block
}

.logo-img {
    height: auto;
    transition: width .45s var(--ease), transform .45s var(--ease);
    width: clamp(var(--logo-w-min), var(--logo-w-pref), var(--logo-w-max));
    will-change: width, transform
}

.site-header.large-logo.row-layout.shrink .header-inner {
    padding: .45rem 0 .5rem
}

.site-header.large-logo.row-layout.shrink {
    background: #ffffffee;
    border-bottom: 1px solid #d6dde2;
    box-shadow: 0 4px 18px -8px rgba(0, 0, 0, .16)
}

.site-header.large-logo.row-layout.shrink .logo-img {
    width: clamp(120px, 12vw, 160px)
}

.main-nav {
    align-items: center;
    display: flex;
    flex: 1 1 auto;
    justify-content: flex-end;
    position: relative
}

.main-nav a {
    line-height: 1.1;
    white-space: nowrap
}

.nav-toggle {
    background: var(--clr-primary);
    border: 1px solid var(--clr-primary-dark);
    line-height: 1
}

@media (max-width:1150px) {
    .main-nav ul {
        flex-wrap: wrap;
        justify-content: flex-end
    }
}

@media (max-width:900px) {
    .site-header.large-logo.row-layout .header-inner {
        flex-wrap: nowrap;
        gap: 1rem
    }

    .nav-toggle {
        display: inline-block;
        margin-left: 1rem;
        order: 2
    }

    .main-nav ul {
        align-items: stretch;
        background: #fff;
        border: 1px solid var(--clr-border);
        border-radius: 10px;
        box-shadow: 0 14px 34px -12px rgba(0, 0, 0, .18);
        display: none;
        flex-direction: column;
        gap: .35rem;
        min-width: 220px;
        padding: 1rem;
        position: absolute;
        right: 0;
        top: 100%
    }

    .main-nav ul.open {
        display: flex
    }

    .main-nav a {
        font-size: .92rem;
        padding: .6rem .75rem;
        text-align: left
    }

    :root {
        --logo-w-min: 150px;
        --logo-w-pref: 32vw;
        --logo-w-max: 200px
    }

    .site-header.large-logo.row-layout.shrink .logo-img {
        width: clamp(120px, 28vw, 170px)
    }
}

@media (max-width:520px) {
    :root {
        --logo-w-min: 140px;
        --logo-w-pref: 48vw;
        --logo-w-max: 190px
    }

    .site-header.large-logo.row-layout.shrink .logo-img {
        width: clamp(120px, 52vw, 170px)
    }
}

.hero-parallax .before-after .half {
    filter: none
}

.hero-parallax .before-after .before {
    background-image: url(/assets/img/services/marche-avant.webp)
}

.hero-parallax .before-after .after {
    background-image: url(/assets/img/services/marche-apres.webp)
}

/* Mobile: utiliser <img> au lieu de background pour LCP */
@media (max-width: 768px) {
    .hero-parallax .before-after .before,
    .hero-parallax .before-after .after {
        background-image: none !important;
    }
}

.hero-parallax .before-after .label {
    background: #0d1117d9;
    border-radius: 4px;
    color: #fff;
    font-size: .62rem;
    font-weight: 600;
    left: 1rem;
    letter-spacing: 1px;
    line-height: 1;
    padding: .4rem .8rem;
    position: absolute;
    text-transform: uppercase;
    top: 1rem
}

.hero-text h1 {
    line-height: 1.08;
    text-wrap: balance
}

.subtitle {
    letter-spacing: .5px
}

.hero-benefits {
    letter-spacing: .3px
}

.btn,
.btn-accent,
.btn-primary {
    line-height: 1.1;
    position: relative
}

.btn-primary {
    background: linear-gradient(90deg, var(--clr-primary), var(--brand-blue-dark))
}

.btn-accent {
    background: var(--clr-accent);
    color: #212121
}

.btn-accent:hover {
    background: var(--clr-accent-dark)
}

.why h2 {
    font-weight: 700;
    letter-spacing: .5px;
    margin-top: 0
}

.advantage {
    background: var(--clr-surface)
}

.advantage h3 {
    margin-top: 0
}

.proof-stat strong {
    font-weight: 700;
    line-height: 1
}

.proof-note {
    text-align: center
}

.process h2,
.zones h2 {
    margin-top: 0
}

.zones-list li {
    letter-spacing: .5px
}

.cta-inline {
    font-size: .85rem
}

.cta-banner p {
    font-size: .95rem;
    margin: 0 0 1.1rem
}

.services-list {
    display: grid;
    gap: 1.75rem;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    padding: 3rem 0 2rem
}

.service-item {
    background: var(--clr-surface);
    border: 1px solid var(--clr-border);
    border-radius: var(--radius);
    box-shadow: 0 4px 14px -8px rgba(0, 0, 0, .06);
    display: flex;
    flex-direction: column;
    gap: .3rem;
    justify-content: flex-start;
    padding: 1.25rem 1.2rem 1.45rem
}

.service-item h2 {
    color: var(--brand-blue-dark);
    font-size: 1.12rem;
    font-weight: 600;
    margin-top: 0
}

.service-bullets {
    font-size: .8rem;
    line-height: 1.35;
    margin: .55rem 0 .7rem;
    padding-left: 1.1rem
}

.service-note {
    font-size: .62rem;
    letter-spacing: .5px;
    margin: 0;
    opacity: .65;
    text-transform: uppercase
}

.svc-cta {
    align-self: flex-start;
    background: #e8f5fc;
    border-radius: 6px;
    color: var(--brand-blue-dark);
    display: inline-block;
    font-size: .7rem;
    font-weight: 600;
    letter-spacing: .5px;
    margin-top: .6rem;
    padding: .45rem .7rem;
    text-decoration: none
}

.svc-cta:hover {
    background: #d6eef9
}

.page-hero.small {
    background: linear-gradient(135deg, var(--brand-blue) 0, var(--brand-blue-dark) 85%);
    color: #fff;
    padding: 4rem 0 3rem;
    position: relative;
    text-align: left
}

.page-hero.small:after {
    background: radial-gradient(circle at 78% 22%, hsla(0, 0%, 100%, .15), transparent 55%);
    content: "";
    inset: 0;
    pointer-events: none;
    position: absolute
}

.page-hero.small h1 {
    font-size: clamp(2rem, 2.2vw + 1rem, 2.8rem);
    font-weight: 800;
    margin: 0 0 .75rem
}

.lnk {
    letter-spacing: .5px
}

.faq-answer p {
    line-height: 1.5;
    margin: 0
}

.form-section {
    padding: 3rem 0 4rem
}

.quote-form {
    background: var(--clr-bg-alt);
    border: 1px solid var(--clr-border);
    border-radius: var(--radius);
    box-shadow: 0 6px 22px -10px rgba(0, 0, 0, .08);
    margin: 0 auto;
    max-width: 820px;
    padding: 2rem 2rem 2.5rem
}

.quote-form fieldset {
    border: none;
    margin: 0 0 1.75rem;
    padding: 0
}

.quote-form legend {
    font-size: 1.05rem;
    font-weight: 600;
    margin-bottom: .75rem
}

.quote-form label {
    display: flex;
    flex-direction: column;
    font-size: .9rem;
    font-weight: 500;
    gap: .4rem;
    margin-bottom: 1rem
}

.quote-form input[type=date],
.quote-form input[type=email],
.quote-form input[type=tel],
.quote-form input[type=text],
.quote-form textarea {
    background: #fff;
    border: 1px solid #c8d2da;
    border-radius: 6px;
    font: inherit;
    padding: .7rem .75rem;
    resize: vertical;
    transition: var(--transition)
}

.quote-form input:focus,
.quote-form textarea:focus {
    border-color: var(--brand-blue);
    outline: 2px solid var(--brand-blue);
    outline-offset: 1px
}

.quote-form .checkbox {
    align-items: flex-start;
    flex-direction: row;
    gap: .6rem
}

.quote-form .checkbox input {
    accent-color: var(--brand-blue);
    height: 1.05rem;
    margin-top: .25rem;
    width: 1.05rem
}

.form-note {
    font-size: .7rem;
    margin-top: 1rem;
    opacity: .65
}

.hp-field {
    left: -9999px;
    position: absolute;
    visibility: hidden
}

.checkbox-grid {
    grid-template-columns: repeat(auto-fit, minmax(210px, 1fr))
}

.check-item {
    border-radius: 6px;
    font-size: .75rem
}

.check-item input {
    margin-top: .2rem
}

.radio-group .radio {
    font-size: .75rem
}

.form-errors ul {
    margin: .6rem 0 0;
    padding-left: 1.2rem
}

.field-hint {
    margin: .25rem 0 .4rem;
    opacity: .65
}

.recap-title {
    font-size: 1rem;
    margin: 2rem 0 .75rem
}

.recap-block {
    background: #f5f7fa;
    border: 1px solid #e3e7ec;
    border-radius: 6px;
    font-size: .82rem;
    overflow: auto;
    padding: 1rem;
    white-space: pre-wrap
}

.policy-wrapper {
    font-size: .95rem;
    line-height: 1.55;
    margin: 2.5rem auto 4rem;
    max-width: 900px
}

.policy-wrapper h1 {
    margin-top: 2rem
}

.policy-wrapper h2 {
    font-size: 1.25rem;
    margin-top: 2.4rem;
    position: relative
}

.policy-wrapper h2:after {
    background: var(--brand-blue);
    border-radius: 2px;
    content: "";
    display: block;
    height: 3px;
    margin: .5rem 0 .75rem;
    width: 46px
}

.policy-meta {
    font-size: .7rem;
    letter-spacing: .5px;
    margin: 0 0 1.2rem;
    opacity: .6;
    text-transform: uppercase
}

.cookie-banner {
    background: #fff;
    border-top: 1px solid var(--clr-border);
    bottom: 0;
    box-shadow: 0 -4px 22px -10px rgba(0, 0, 0, .18);
    display: none;
    font-family: inherit;
    font-size: .85rem;
    left: 0;
    right: 0;
    z-index: 200
}

.cookie-banner.open {
    display: block
}

.cookie-text h2 {
    font-size: 1rem;
    margin: .2rem 0 .5rem
}

.cookie-text p {
    font-size: .78rem;
    line-height: 1.35;
    margin: 0 0 .75rem
}

.breadcrumb {
    font-size: .65rem;
    letter-spacing: .5px;
    margin: 1.2rem 0 1.4rem
}

.breadcrumb ol {
    display: flex;
    flex-wrap: wrap;
    gap: .4rem;
    list-style: none;
    margin: 0;
    padding: 0
}

.breadcrumb li:after {
    color: #999;
    content: "›";
    margin: 0 .35rem
}

.breadcrumb li:last-child:after {
    content: ""
}

.breadcrumb a {
    color: var(--brand-blue-dark);
    text-decoration: none
}

.breadcrumb a:hover {
    text-decoration: underline
}

.carpet-landing .landing-hero,
.sofa-landing .landing-hero {
    margin-top: 1rem
}

.landing-hero .lead {
    font-size: 1.05rem;
    line-height: 1.5;
    max-width: 780px
}

.landing-cta {
    gap: .9rem;
    margin: 1.1rem 0 1.2rem
}

.hero-points,
.landing-cta {
    display: flex;
    flex-wrap: wrap
}

.hero-points {
    font-size: .78rem;
    gap: .55rem 1.1rem;
    letter-spacing: .25px;
    list-style: none;
    margin: 1.1rem 0 .4rem;
    padding: 0
}

.hero-points li {
    padding-left: 14px;
    position: relative
}

.hero-points li:before {
    background: var(--brand-blue);
    border-radius: 50%;
    content: "";
    height: 6px;
    left: 0;
    position: absolute;
    top: 6px;
    width: 6px
}

.content-block {
    margin: 3.2rem 0 3rem
}

.content-block.alt {
    background: var(--clr-bg-alt);
    border: 1px solid var(--clr-border);
    border-radius: 12px;
    padding: 2.3rem 1.8rem 2.6rem
}

.note-inline {
    font-size: .7rem;
    margin: 1rem 0 0;
    opacity: .7
}

.benefit-grid {
    display: grid;
    gap: 1.2rem;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    margin: 1.6rem 0 0
}

.benefit-grid article {
    background: #fff;
    border: 1px solid var(--clr-border);
    border-radius: 8px;
    font-size: .85rem;
    padding: 1rem .9rem 1.15rem
}

.benefit-grid h3 {
    color: var(--brand-blue-dark);
    font-size: .9rem;
    margin: .1rem 0 .4rem
}

.steps-detailed {
    counter-reset: step;
    display: grid;
    gap: .85rem;
    list-style: none;
    margin: 1.4rem 0 1rem;
    padding: 0
}

.steps-detailed li {
    background: #fff;
    border: 1px solid var(--clr-border);
    border-radius: 8px;
    font-size: .82rem;
    line-height: 1.35;
    padding: .85rem .85rem .9rem 3rem;
    position: relative
}

.steps-detailed li:before {
    align-items: center;
    background: var(--brand-blue-dark);
    border-radius: 50%;
    box-shadow: 0 2px 6px -2px rgba(0, 0, 0, .35);
    color: #fff;
    content: counter(step);
    counter-increment: step;
    display: flex;
    font-size: .7rem;
    font-weight: 600;
    height: 1.55rem;
    justify-content: center;
    left: .85rem;
    position: absolute;
    top: .75rem;
    width: 1.55rem
}

.types-grid {
    display: grid;
    gap: 1.1rem;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    margin: 1.4rem 0 .5rem
}

.types-grid article {
    background: #fff;
    border: 1px solid var(--clr-border);
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    font-size: .8rem;
    gap: .45rem;
    padding: 1rem .95rem 1.15rem
}

.types-grid h3 {
    color: var(--brand-blue-dark);
    font-size: .9rem;
    margin: .1rem 0 .2rem
}

.freq-table-wrapper {
    margin: 1.5rem 0 .5rem;
    overflow: auto
}

.freq-table {
    background: #fff;
    border: 1px solid var(--clr-border);
    border-collapse: collapse;
    border-radius: 10px;
    font-size: .75rem;
    min-width: 640px;
    overflow: hidden;
    width: 100%
}

.freq-table td,
.freq-table th {
    border-bottom: 1px solid var(--clr-border);
    padding: .6rem .7rem;
    text-align: left;
    vertical-align: top
}

.freq-table thead {
    background: var(--brand-blue-dark);
    color: #fff;
    font-size: .65rem;
    letter-spacing: .5px;
    text-transform: uppercase
}

.freq-table tbody tr:last-child td {
    border-bottom: none
}

.micro-legal {
    font-size: .6rem;
    line-height: 1.4;
    margin: 2.6rem 0 3rem;
    opacity: .65
}

.visually-hidden {
    clip: rect(0 0 0 0)
}

@media (max-width:780px) {
    .landing-hero .lead {
        font-size: .95rem
    }

    .steps-detailed li {
        padding-left: 2.6rem
    }

    .freq-table {
        font-size: .7rem
    }

    .content-block.alt {
        padding: 1.9rem 1.25rem 2.1rem
    }
}

.site-footer {
    padding: 3.5rem 0 2rem
}

.site-footer h3 {
    color: #fff;
    font-size: 1rem;
    letter-spacing: .5px;
    margin-top: 0;
    text-transform: uppercase
}

.footer-logo {
    margin-top: .75rem
}

.legal {
    font-size: .7rem;
    margin-top: 2.5rem;
    opacity: .75;
    text-align: center
}

@media (max-width:900px) {
    .adv-table {
        font-size: .7rem
    }

    .proofs-inner {
        grid-template-columns: repeat(2, 1fr)
    }
}

@media (max-width:620px) {
    .inline-radios {
        flex-direction: column;
        gap: 1rem
    }

    .hero-benefits {
        font-size: .7rem
    }
}

@media (prefers-reduced-motion:reduce) {
    * {
        animation-duration: .01ms !important;
        animation-iteration-count: 1 !important;
        scroll-behavior: auto !important;
        transition: none !important
    }
}

.site-header.large-logo.row-layout {
    transition: background .35s var(--ease), box-shadow .35s var(--ease), padding .35s var(--ease)
}

.site-header.large-logo.row-layout .logo-img {
    transition: width .45s var(--ease), transform .45s var(--ease)
}

.submenu-toggle {
    gap: .4rem
}

.submenu {
    background: #fff;
    border: 1px solid var(--clr-border);
    border-radius: 10px;
    box-shadow: 0 14px 34px -12px rgba(0, 0, 0, .18);
    display: none;
    left: 0;
    list-style: none;
    margin: .35rem 0 0;
    min-width: 230px;
    padding: .6rem .55rem .65rem;
    position: absolute;
    top: 100%;
    z-index: 40
}

.submenu.open {
    display: block
}

.submenu li {
    margin: 0
}

.submenu a {
    line-height: 1.2
}

@media (max-width:900px) {

    .has-submenu,
    .submenu {
        width: 100%
    }

    .submenu {
        border: 1px solid var(--clr-border);
        box-shadow: none;
        margin: .4rem 0 0;
        position: static
    }

    .submenu-toggle {
        justify-content: space-between;
        width: 100%
    }
}

.main-nav>ul#nav-menu {
    align-items: center;
    display: flex;
    flex-wrap: nowrap;
    gap: .85rem;
    list-style: none;
    margin: 0;
    padding: 0
}

.main-nav .submenu {
    background: #fff;
    border: 1px solid var(--clr-border);
    border-radius: 10px;
    box-shadow: 0 14px 34px -12px rgba(0, 0, 0, .18);
    display: none;
    left: 0;
    list-style: none;
    margin: .35rem 0 0;
    min-width: 250px;
    padding: .55rem .55rem .6rem;
    position: absolute;
    top: 100%;
    z-index: 70
}

.main-nav .submenu.open {
    display: block
}

.has-submenu {
    position: relative
}

.submenu-toggle {
    align-items: center;
    background: transparent;
    border: none;
    border-radius: 6px;
    color: var(--clr-text);
    cursor: pointer;
    display: flex;
    font: inherit;
    font-weight: 500;
    gap: .45rem;
    line-height: 1.1;
    padding: .55rem .8rem
}

.submenu-toggle:focus-visible,
.submenu-toggle:hover {
    background: var(--clr-bg-alt);
    outline: none
}

.submenu-toggle .chevron {
    display: inline-block;
    flex: 0 0 14px;
    height: 14px;
    position: relative;
    width: 14px
}

.submenu-toggle .chevron:after,
.submenu-toggle .chevron:before {
    background: currentColor;
    border-radius: 1px;
    content: "";
    height: 2px;
    position: absolute;
    top: 50%;
    transform-origin: 50% 50%;
    transition: transform .28s var(--ease), background-color .25s var(--ease);
    width: 7px
}

.submenu-toggle .chevron:before {
    left: 0;
    transform: translateY(-50%) rotate(38deg)
}

.submenu-toggle .chevron:after {
    right: 0;
    transform: translateY(-50%) rotate(-38deg)
}

.submenu-toggle[aria-expanded=true] .chevron:before {
    animation: chevronBounceLeft .38s var(--ease);
    transform: translateY(-50%) rotate(-38deg)
}

.submenu-toggle[aria-expanded=true] .chevron:after {
    animation: chevronBounceRight .38s var(--ease);
    transform: translateY(-50%) rotate(38deg)
}

@keyframes chevronBounceLeft {
    0% {
        transform: translateY(-50%) rotate(38deg)
    }

    55% {
        transform: translateY(-58%) rotate(-43deg)
    }

    80% {
        transform: translateY(-50%) rotate(-36deg)
    }

    to {
        transform: translateY(-50%) rotate(-38deg)
    }
}

@keyframes chevronBounceRight {
    0% {
        transform: translateY(-50%) rotate(-38deg)
    }

    55% {
        transform: translateY(-58%) rotate(43deg)
    }

    80% {
        transform: translateY(-50%) rotate(36deg)
    }

    to {
        transform: translateY(-50%) rotate(38deg)
    }
}

@keyframes chevronReturn {
    0% {
        transform: translateY(-50%) rotate(var(--closing-from))
    }

    60% {
        transform: translateY(-46%) rotate(var(--closing-overshoot))
    }

    to {
        transform: translateY(-50%) rotate(var(--closing-final))
    }
}

@media (prefers-reduced-motion:reduce) {

    .submenu-toggle .chevron:after,
    .submenu-toggle .chevron:before,
    .submenu-toggle[aria-expanded=true] .chevron:after,
    .submenu-toggle[aria-expanded=true] .chevron:before {
        animation: none !important;
        transition: transform .15s linear
    }
}

.submenu a {
    border-radius: 6px;
    color: var(--clr-text);
    display: block;
    font-size: .82rem;
    line-height: 1.25;
    padding: .55rem .65rem;
    text-decoration: none;
    white-space: nowrap
}

.submenu a:focus-visible,
.submenu a:hover {
    background: var(--clr-bg-alt);
    outline: none
}

@media (max-width:900px) {
    .main-nav>ul#nav-menu {
        align-items: stretch;
        background: #fff;
        border: 1px solid var(--clr-border);
        border-radius: 14px;
        box-shadow: 0 14px 34px -12px rgba(0, 0, 0, .22);
        display: none;
        flex-direction: column;
        left: auto;
        min-width: 260px;
        padding: 1rem 1.1rem 1.2rem;
        position: absolute;
        right: 1rem;
        top: 100%;
        z-index: 80
    }

    .main-nav>ul#nav-menu.open {
        display: flex
    }

    .has-submenu {
        width: 100%
    }

    .submenu-toggle {
        font-size: .95rem;
        justify-content: space-between;
        width: 100%
    }

    .main-nav .submenu {
        background: transparent;
        border: 1px solid var(--clr-border);
        border-radius: 10px;
        box-shadow: none;
        display: none !important;
        margin: .5rem 0 0;
        min-width: unset;
        padding: .35rem .6rem .5rem;
        position: static
    }

    .main-nav .submenu.open {
        display: block !important
    }

    .main-nav .submenu a {
        font-size: .85rem;
        padding: .5rem .25rem;
        white-space: normal
    }

    #nav-menu:not(.open) .submenu {
        display: none !important
    }
}

body.menu-open {
    overflow: hidden;
    touch-action: none
}

.site-footer {
    padding: 3.5rem 0 2.2rem
}

.check-item {
    background: var(--clr-bg-alt, #f5f7fa);
    border: 1px solid var(--clr-border, #e3e7ec);
    line-height: 1.25;
    transition: background .25s, border-color .25s, box-shadow .25s
}

.check-item input[type=checkbox] {
    accent-color: var(--brand-blue, #0a93dd);
    cursor: pointer;
    height: 1rem;
    margin-top: .15rem;
    width: 1rem
}

.check-item:focus-within {
    border-color: var(--brand-blue, #0a93dd)
}

.radio-group .group-label {
    color: var(--brand-blue-dark, #076aa0)
}

.radio-group .radio {
    background: var(--clr-bg-alt, #f5f7fa);
    border: 1px solid var(--clr-border, #e3e7ec);
    transition: background .25s, border-color .25s
}

.radio-group input[type=radio] {
    accent-color: var(--brand-blue, #0a93dd);
    cursor: pointer
}

.checkbox.consent {
    background: var(--clr-bg-alt, #f5f7fa);
    border: 1px solid var(--clr-border, #e3e7ec);
    line-height: 1.3
}

.checkbox.consent input {
    accent-color: var(--brand-blue, #0a93dd)
}

@media (max-width:620px) {
    .inline-radios {
        flex-direction: column;
        gap: 1rem
    }

    .checkbox-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr))
    }
}

.primary-service-item {
    background: var(--clr-bg-alt, #f5f7fa);
    border: 1px solid var(--clr-border, #e3e7ec);
    position: relative
}

.primary-service-item input[type=checkbox] {
    accent-color: var(--brand-blue, #0a93dd);
    cursor: pointer;
    flex: 0 0 auto;
    height: 1.05rem;
    margin-top: .2rem;
    width: 1.05rem
}

.primary-service-item:focus-within {
    border-color: var(--brand-blue, #0a93dd)
}

.psi-label {
    display: block;
    flex: 1 1 auto
}

@media (max-width:620px) {
    .primary-services-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr))
    }

    .primary-service-item {
        font-size: .74rem
    }
}

:root {
    --brand-blue: #0a93dd;
    --brand-blue-dark: #076aa0;
    --brand-blue-darker: #064e75;
    --clr-bg: #fff;
    --clr-bg-alt: #f5f7fa;
    --clr-border: #e3e7ec;
    --clr-text: #1f2529;
    --clr-primary: var(--brand-blue);
    --radius: 10px;
    --ease: cubic-bezier(.4, 0, .2, 1);
    --transition: .25s ease;
    font-size: 16px
}

* {
    box-sizing: border-box
}

body {
    background: #fff;
    color: var(--clr-text);
    font-family: Inter, system-ui, Arial, sans-serif;
    line-height: 1.5;
    margin: 0
}

h1,
h2,
h3 {
    line-height: 1.15;
    margin: 0 0 .75rem
}

p {
    margin: 0 0 1rem
}

a {
    color: var(--brand-blue);
    text-decoration: none
}

img {
    display: block;
    height: auto;
    max-width: 100%
}

.container {
    margin: 0 auto;
    width: min(1180px, 92%)
}

.skip-link {
    left: -999px;
    position: absolute
}

.skip-link:focus {
    background: #000;
    color: #fff;
    padding: 1rem;
    position: static;
    z-index: 999
}

.site-header {
    backdrop-filter: blur(8px);
    background: #fffffffa;
    border-bottom: 1px solid var(--clr-border);
    position: sticky;
    top: 0;
    transition: background .3s, var(--ease), box-shadow .3s, padding .3s;
    z-index: 60
}

.site-header .header-inner {
    align-items: center;
    display: flex;
    gap: 2rem;
    justify-content: space-between;
    padding: .75rem 0 .8rem
}

.logo-img {
    transition: width .45s var(--ease);
    width: clamp(180px, 17vw, 260px)
}

.site-header.shrink .logo-img {
    width: clamp(120px, 12vw, 160px)
}

.main-nav ul {
    align-items: center;
    display: flex;
    gap: .85rem;
    list-style: none;
    margin: 0;
    padding: 0
}

.main-nav a {
    border-radius: 6px;
    color: var(--clr-text);
    font-size: .9rem;
    font-weight: 500;
    padding: .55rem .8rem
}

.main-nav a:hover {
    background: var(--clr-bg-alt);
    text-decoration: none
}

.nav-toggle {
    background: var(--brand-blue-darker);
    border: 1px solid var(--brand-blue-dark);
    border-radius: 6px;
    color: #fff;
    cursor: pointer;
    display: none;
    font-size: .9rem;
    font-weight: 600;
    padding: .55rem .95rem
}

@media(max-width:900px) {
    .nav-toggle {
        display: inline-block
    }

    .main-nav ul {
        background: #fff;
        border: 1px solid var(--clr-border);
        border-radius: 10px;
        box-shadow: 0 14px 34px -12px rgba(0, 0, 0, .18);
        display: none;
        flex-direction: column;
        gap: .35rem;
        min-width: 220px;
        padding: 1rem;
        position: absolute;
        right: 0;
        top: 100%
    }

    .main-nav ul.open {
        display: flex
    }

    .logo-img {
        width: clamp(150px, 32vw, 200px)
    }

    .site-header.shrink .logo-img {
        width: clamp(120px, 28vw, 170px)
    }
}

@media(max-width:520px) {
    .logo-img {
        width: clamp(140px, 48vw, 190px)
    }

    .site-header.shrink .logo-img {
        width: clamp(120px, 52vw, 170px)
    }
}

.hero-parallax {
    background: #0b1724;
    height: clamp(480px, 72vh, 760px);
    isolation: isolate;
    overflow: hidden;
    position: relative
}

.hero-parallax:before {
    background: linear-gradient(180deg, rgba(0, 0, 0, .35), rgba(0, 0, 0, .65) 80%);
    content: "";
    inset: 0;
    position: absolute;
    z-index: 2
}

.hero-overlay {
    display: flex;
    flex-direction: column;
    height: 100%;
    justify-content: flex-end;
    padding: 2rem 0 3.2rem;
    position: relative;
    z-index: 3
}

.hero-text {
    color: #fff;
    max-width: 760px;
    padding: 0 4%;
    position: relative;
    z-index: 4
}

.hero-text h1 {
    font-size: clamp(2rem, 3.3vw + 1rem, 3.25rem);
    font-weight: 800;
    margin: 0 0 1rem
}

.subtitle {
    font-size: 1.05rem;
    font-weight: 500;
    margin: 0 0 1.25rem;
    opacity: .95
}

.hero-benefits {
    color: #f0f8ff;
    display: flex;
    flex-wrap: wrap;
    font-size: .78rem;
    gap: .6rem 1.1rem;
    list-style: none;
    margin: 1rem 0 .4rem;
    padding: 0
}

.hero-benefits li {
    padding-left: 14px;
    position: relative
}

.hero-benefits li:before {
    background: #53d1ff;
    border-radius: 50%;
    content: "";
    height: 6px;
    left: 0;
    position: absolute;
    top: 6px;
    width: 6px
}

.before-after .before {
    background-image: url(/assets/img/services/marche-avant.webp)
}

.before-after .after {
    background-image: url(/assets/img/services/marche-apres.webp)
}

.before-after .label {
    background: #0d1117d9;
    border-radius: 4px;
    color: #fff;
    font-size: .62rem;
    font-weight: 600;
    left: 1rem;
    letter-spacing: 1px;
    padding: .4rem .8rem;
    position: absolute;
    text-transform: uppercase;
    top: 1rem
}

.hero-cta-row {
    display: flex;
    flex-wrap: wrap;
    gap: .9rem;
    margin: 1.2rem 0 1.1rem
}

.btn,
.btn-accent,
.btn-primary {
    border: none;
    border-radius: 8px;
    cursor: pointer;
    display: inline-block;
    font-size: 1rem;
    font-weight: 600;
    padding: .85rem 1.4rem;
    text-align: center;
    transition: var(--transition)
}

.btn-primary {
    background: linear-gradient(90deg, var(--brand-blue), var(--brand-blue-dark));
    box-shadow: 0 6px 20px -6px rgba(10, 147, 221, .55)
}

.btn-primary:hover {
    background: linear-gradient(90deg, var(--brand-blue-dark), var(--brand-blue-darker))
}

.btn-accent {
    background: #fdb640;
    box-shadow: 0 4px 14px -4px rgba(253, 182, 64, .55);
    color: #212
}

.btn-accent:hover {
    background: #d28d16;
    color: #fff
}

.why {
    padding: 4rem 0 3.6rem
}

.advantages-grid {
    display: grid;
    gap: 1.5rem;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    margin-top: 2.2rem
}

.advantage {
    background: #fff;
    border: 1px solid var(--clr-border);
    border-radius: var(--radius);
    box-shadow: 0 4px 10px -6px rgba(0, 0, 0, .05);
    padding: 1.25rem 1.25rem 1.4rem
}

.advantage h3 {
    color: var(--brand-blue-dark);
    font-size: 1.05rem
}

.adv-table-wrapper {
    margin: 2.2rem 0 2.4rem;
    overflow: auto
}

.adv-table {
    background: #fff;
    border: 1px solid var(--clr-border);
    border-radius: 10px;
    font-size: .78rem;
    min-width: 640px;
    overflow: hidden
}

.adv-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr)
}

.adv-row span {
    border-bottom: 1px solid var(--clr-border);
    padding: .65rem .75rem
}

.adv-row:last-child span {
    border-bottom: none
}

.adv-head {
    background: var(--brand-blue-dark);
    color: #fff;
    font-weight: 600;
    letter-spacing: .5px;
    text-transform: uppercase
}

.adv-head span {
    border-bottom: none
}

.proofs {
    background: linear-gradient(110deg, var(--brand-blue-dark), var(--brand-blue));
    color: #fff;
    padding: 2.8rem 0 2.3rem;
    text-align: center
}

.proofs-inner {
    display: grid;
    gap: 1.5rem;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    margin: 0 auto;
    width: min(880px, 92%)
}

.proof-stat strong {
    display: block;
    font-size: 1.8rem;
    margin: 0 0 .3rem
}

.proof-stat span {
    font-size: .75rem;
    letter-spacing: .8px;
    opacity: .9;
    text-transform: uppercase
}

.proof-note {
    font-size: .6rem;
    margin: .9rem auto 0;
    opacity: .8
}

.process {
    padding: 3rem 0 4rem
}

.zones {
    background: linear-gradient(105deg, #0a1d29, #093c55 60%, var(--brand-blue-dark));
    color: #fff;
    padding: 3.7rem 0
}

.zones-list {
    display: flex;
    flex-wrap: wrap;
    gap: .7rem .95rem;
    list-style: none;
    margin: 1rem 0 1.6rem;
    padding: 0
}

.zones-list li {
    background: hsla(0, 0%, 100%, .08);
    border-radius: 6px;
    font-size: .85rem;
    padding: .55rem .85rem
}

.cta-banner {
    background: linear-gradient(95deg, var(--brand-blue-dark), var(--brand-blue));
    color: #fff;
    margin: 4rem 0 0;
    padding: 3rem 0;
    text-align: center
}

.cta-banner h2 {
    font-size: 1.6rem;
    margin: 0 0 .7rem
}

.primary-services-grid {
    display: grid;
    gap: .7rem .9rem;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    margin: .8rem 0 .4rem
}

.primary-service-item {
    align-items: flex-start;
    background: var(--clr-bg-alt);
    border: 1px solid var(--clr-border);
    border-radius: 10px;
    cursor: pointer;
    display: flex;
    font-size: .78rem;
    gap: .55rem;
    line-height: 1.35;
    padding: .7rem .75rem .75rem;
    transition: background .25s, border-color .25s, box-shadow .25s
}

.primary-service-item input {
    accent-color: var(--brand-blue);
    height: 1.05rem;
    margin-top: .2rem;
    width: 1.05rem
}

.primary-service-item:hover {
    background: #eef6fb;
    border-color: #d6e5ee
}

.primary-service-item:focus-within {
    border-color: var(--brand-blue);
    box-shadow: 0 0 0 2px rgba(10, 147, 221, .25)
}

.checkbox-grid {
    display: grid;
    gap: .55rem .9rem;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    margin: .75rem 0 0
}

.check-item {
    align-items: flex-start;
    background: var(--clr-bg-alt);
    border: 1px solid var(--clr-border);
    border-radius: 8px;
    cursor: pointer;
    display: flex;
    font-size: .72rem;
    gap: .55rem;
    padding: .55rem .65rem;
    transition: background .25s, border-color .25s
}

.check-item input {
    accent-color: var(--brand-blue);
    height: 1rem;
    margin-top: .15rem;
    width: 1rem
}

.check-item:hover {
    background: #eef6fb;
    border-color: #d6e5ee
}

.check-item:focus-within {
    border-color: var(--brand-blue);
    box-shadow: 0 0 0 2px rgba(10, 147, 221, .25)
}

.field-hint {
    font-size: .6rem;
    letter-spacing: .5px;
    margin: .15rem 0 .6rem;
    opacity: .6;
    text-transform: uppercase
}

.inline-radios {
    display: flex;
    flex-wrap: wrap;
    gap: 2.2rem;
    margin: 1rem 0 1.25rem
}

.radio-group {
    align-items: center;
    display: flex;
    flex-wrap: wrap;
    gap: .75rem
}

.radio-group .group-label {
    color: var(--brand-blue-dark);
    font-size: .65rem;
    font-weight: 600;
    letter-spacing: .5px;
    text-transform: uppercase
}

.radio-group .radio {
    align-items: center;
    background: var(--clr-bg-alt);
    border: 1px solid var(--clr-border);
    border-radius: 6px;
    display: flex;
    font-size: .74rem;
    gap: .35rem;
    padding: .4rem .65rem
}

.radio-group .radio:hover {
    background: #eef6fb;
    border-color: #d6e5ee
}

.radio-group input[type=radio] {
    accent-color: var(--brand-blue);
    height: .95rem;
    margin: 0;
    width: .95rem
}

.quote-form textarea {
    min-height: 140px;
    resize: vertical
}

.checkbox.consent {
    align-items: flex-start;
    background: var(--clr-bg-alt);
    border: 1px solid var(--clr-border);
    border-radius: 8px;
    flex-direction: row;
    font-size: .7rem;
    gap: .55rem;
    padding: .6rem .7rem
}

.checkbox.consent input {
    accent-color: var(--brand-blue);
    height: 1.05rem;
    margin-top: .2rem;
    width: 1.05rem
}

.form-errors {
    background: #ffe9e9;
    border: 1px solid #f5b5b5;
    border-radius: 8px;
    color: #5b1f1f;
    font-size: .8rem;
    margin: 1.75rem auto 1rem;
    max-width: 820px;
    padding: 1rem 1.1rem
}

.site-footer {
    background: #0d1117;
    color: #cfd6dd;
    margin-top: 3rem;
    padding: 3.2rem 0 0
}

.footer-logo {
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, .25));
    margin-top: 1rem
}

.legal {
    line-height: 1.4;
    margin: 0;
    opacity: .78
}

.back-top-btn {
    background: none;
    border: none;
    color: #cfd6dd;
    cursor: pointer;
    font-size: .7rem
}

.back-top-btn:hover {
    text-decoration: underline
}

.faq-inline {
    display: grid;
    gap: 1rem;
    grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
    margin: 1.4rem 0 1rem
}

.faq-card {
    border: 1px solid var(--clr-border);
    border-radius: 10px;
    font-size: .75rem;
    line-height: 1.4;
    padding: .9rem .85rem 1rem
}

.faq-card h3 {
    color: var(--brand-blue-dark);
    font-size: .85rem;
    margin: .1rem 0 .4rem
}

.cta-inline-box {
    background: var(--clr-bg-alt);
    border: 1px solid var(--clr-border);
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    font-size: .8rem;
    gap: .8rem;
    margin: 1.8rem 0 0;
    padding: 1rem 1rem 1.2rem
}

.micro-note {
    font-size: .6rem;
    opacity: .65
}

.lnk {
    color: var(--brand-blue-dark);
    font-size: .75rem;
    font-weight: 600;
    text-decoration: none
}

.lnk:hover {
    text-decoration: underline
}

@media(max-width:780px) {
    .hero-text h1 {
        font-size: clamp(2rem, 6vw, 2.7rem)
    }

    .steps-detailed li {
        padding-left: 2.6rem
    }
}

@media(max-width:620px) {
    .inline-radios {
        flex-direction: column;
        gap: 1rem
    }

    .checkbox-grid,
    .primary-services-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr))
    }
}

.before-after {
    display: flex;
    inset: 0;
    position: absolute;
    z-index: 1
}

.before-after .half {
    background-position: 50%;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
    width: 50%
}

.before-after .half .label {
    background: rgba(13, 17, 23, .85);
    border-radius: 4px;
    color: #fff;
    font-size: .62rem;
    font-weight: 700;
    letter-spacing: .6px;
    padding: .35rem .6rem;
    position: absolute;
    top: 12px;
    z-index: 3
}

.before-after .before .label {
    content: "AVANT";
    left: 12px
}

.before-after .after .label {
    content: "APRÈS";
    right: 12px
}

@media (min-width:1600px) {

    .before-after .after,
    .before-after .before {
        background-position: center 45%
    }
}

.hero-parallax .before-after {
    display: flex;
    inset: 0;
    position: absolute;
    z-index: 1
}

.hero-parallax .before-after .half {
    background-position: 50%;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
    width: 50%
}

.hero-parallax .before-after label {
    all: unset;
    left: 12px
}

.hero-parallax .before-after .half .label,
.hero-parallax .before-after label {
    background: rgba(13, 17, 23, .85);
    border-radius: 4px;
    color: #fff;
    display: inline-flex;
    font-size: .62rem;
    font-weight: 700;
    letter-spacing: .6px;
    padding: .35rem .6rem;
    pointer-events: none;
    position: absolute;
    top: 12px;
    white-space: nowrap;
    z-index: 3
}

.hero-parallax .before-after .half .label {
    line-height: 1;
    max-width: calc(50% - 24px);
    width: auto
}

.hero-parallax .before-after .before .label {
    left: 12px;
    right: auto
}

.hero-parallax .before-after .after .label {
    left: auto;
    right: 12px
}

@media (min-width:1600px) {

    .hero-parallax .before-after .after,
    .hero-parallax .before-after .before {
        background-position: center 45%
    }
}

.service-thumb {
    aspect-ratio: 16/9;
    background: #f5f7fa;
    border-radius: 10px;
    margin: 0 0 .9rem;
    overflow: hidden;
    position: relative
}

.service-thumb img {
    display: block;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    width: 100%
}

.service-badge {
    background: var(--brand-blue, #0a93dd);
    border-radius: 6px;
    box-shadow: 0 4px 12px -6px rgba(0, 0, 0, .25);
    color: #fff;
    font-size: .65rem;
    left: 10px;
    letter-spacing: .5px;
    padding: .35rem .55rem;
    position: absolute;
    text-transform: uppercase;
    top: 10px
}

.faq-hero {
    margin: 2rem 0 1rem
}

.faq-controls {
    align-items: center;
    display: flex;
    flex-wrap: wrap;
    gap: .75rem;
    margin-top: .8rem
}

.faq-controls input[type=search] {
    background: #fafbfc;
    border: 1px solid #e2e6eb;
    border-radius: 10px;
    flex: 1 1 340px;
    max-width: 720px;
    padding: .65rem .8rem
}

.faq-actions {
    display: flex;
    gap: .5rem
}

.faq-result-count {
    color: #667085;
    font-size: .9rem;
    margin: .35rem 0 0
}

.faq-section {
    margin: 2rem 0
}

.faq-section-title {
    font-size: 1.25rem;
    margin: 0 0 .8rem
}

.faq-grid {
    display: grid;
    gap: .9rem;
    grid-template-columns: 1fr
}

@media (min-width:880px) {
    .faq-grid {
        grid-template-columns: 1fr 1fr
    }
}

.faq-card {
    background: #fff;
    border: 1px solid #e9eef3;
    border-radius: 12px;
    box-shadow: 0 4px 14px -10px rgba(0, 0, 0, .15);
    overflow: hidden
}

.faq-accord summary {
    align-items: center;
    color: #0c2740;
    cursor: pointer;
    display: flex;
    font-weight: 600;
    gap: .75rem;
    justify-content: space-between;
    list-style: none;
    padding: .95rem 1rem
}

.faq-accord summary::-webkit-details-marker {
    display: none
}

.faq-accord summary:after {
    color: #0a93dd;
    content: "＋";
    flex: 0 0 auto;
    font-weight: 700
}

.faq-accord[open] summary:after {
    content: "−"
}

.faq-accord .faq-answer {
    color: #2d3b4a;
    line-height: 1.55;
    padding: 0 1rem 1rem
}

.faq-accord .faq-answer p {
    margin: .5rem 0 0
}

.visually-hidden {
    height: 1px;
    overflow: hidden;
    position: absolute !important;
    width: 1px;
    clip: rect(1px, 1px, 1px, 1px);
    border: 0;
    margin: -1px;
    padding: 0;
    white-space: nowrap
}

.faq-grid {
    align-items: start
}

.faq-card {
    height: auto
}

@media (max-width:780px) {
    .site-footer {
        padding-top: 1.4rem
    }

    .footer-col {
        padding: .4rem 0 .9rem
    }

    .footer-logo {
        height: auto;
        margin-top: .7rem;
        opacity: .95;
        width: 120px
    }

    .back-top-btn {
        font-size: .75rem;
        padding: .45rem .7rem
    }
}

.footer-modern .footer-wrap {
    padding: 1.2rem 0
}

.footer-modern .footer-top {
    align-items: center;
    display: grid;
    gap: 1rem;
    grid-template-columns: 1fr auto 1fr;
    padding: 1rem 0 1.1rem
}

.footer-modern .footer-logo-link {
    grid-column: 1;
    justify-self: start
}

.footer-modern .footer-logo {
    display: block;
    height: auto;
    width: clamp(160px, 18vw, 240px)
}

.footer-modern .footer-top-nav {
    align-items: center;
    display: flex;
    flex-wrap: wrap;
    gap: clamp(.8rem, 2.2vw, 2.2rem);
    grid-column: 2;
    justify-self: center
}

.footer-modern .footer-top-nav a {
    font-weight: 600;
    line-height: 1.1;
    text-decoration: none;
    white-space: nowrap
}

.footer-modern .footer-sep {
    background: var(--clr-border);
    height: 2px;
    opacity: .9
}

.footer-modern .footer-main {
    align-items: start;
    display: grid;
    gap: 1.2rem 1.4rem;
    grid-template-columns: 1fr;
    padding: 1.1rem 0 1.4rem
}

@media (min-width:700px) and (max-width:1099.98px) {
    .footer-modern .footer-main {
        grid-template-columns: 1fr 1fr
    }

    .footer-modern .footer-col.social {
        grid-column: 1/-1;
        justify-self: start;
        order: 3
    }
}

@media (min-width:1100px) {
    .footer-modern .footer-main {
        grid-template-columns: 1.25fr 1fr .7fr
    }

    .footer-modern .footer-col.social {
        justify-self: end
    }
}

.footer-modern .footer-city {
    font-size: 1.05rem;
    margin: .2rem 0 .5rem
}

.footer-modern .footer-col.info p {
    line-height: 1.45;
    margin: .25rem 0
}

.footer-modern .footer-col.call {
    align-content: start;
    display: grid;
    gap: .55rem
}

.footer-modern .footer-phone {
    font-size: clamp(1.6rem, 3.6vw, 2.3rem);
    font-weight: 800;
    letter-spacing: .5px;
    line-height: 1.05;
    text-decoration: none
}

.footer-modern .footer-email {
    opacity: .9;
    text-decoration: none
}

.footer-modern .footer-cta {
    border-radius: 999px;
    display: inline-block;
    line-height: 1;
    padding: .85rem 1.4rem;
    text-align: center
}

.footer-modern .social-list {
    display: flex;
    gap: .6rem;
    list-style: none;
    margin: .2rem 0 0;
    padding: 0
}

.footer-modern .social-btn {
    background: transparent;
    border: 1px solid var(--clr-border);
    border-radius: 999px;
    color: inherit;
    display: grid;
    height: 44px;
    place-items: center;
    text-decoration: none;
    width: 44px
}

.footer-modern .social-btn:hover {
    background: var(--clr-bg-alt)
}

.footer-modern .social-btn svg {
    display: block;
    height: 22px;
    width: 22px
}

.footer-modern .footer-bottom {
    align-items: center;
    border-top: 1px solid var(--clr-border);
    display: flex;
    gap: .8rem;
    justify-content: space-between;
    padding-top: .7rem
}

.footer-modern .footer-bottom .legal,
.footer-modern .footer-bottom .policy {
    margin: 0
}

.footer-modern .back-top-btn {
    background: transparent;
    border: 1px solid var(--clr-border);
    border-radius: 999px;
    cursor: pointer;
    font-size: .85rem;
    font-weight: 600;
    padding: .4rem .7rem
}

.footer-modern .back-top-btn:hover {
    background: var(--clr-bg-alt)
}

@media (max-width:699.98px) {
    .footer-modern .footer-top {
        grid-template-columns: 1fr;
        row-gap: .75rem
    }

    .footer-modern .footer-top-nav {
        gap: .8rem 1rem;
        justify-self: start
    }

    .footer-modern .footer-bottom {
        flex-direction: column;
        gap: .5rem;
        text-align: center
    }
}

.footer-modern .social-list,
.site-footer .social-list {
    display: flex;
    gap: 10px;
    list-style: none;
    margin: .2rem 0 0;
    padding: 0
}

.footer-modern .social-btn,
.site-footer .social-btn {
    align-items: center;
    background: transparent;
    border: 1px solid var(--clr-border, hsla(0, 0%, 100%, .15));
    border-radius: 999px;
    box-sizing: border-box;
    color: currentColor;
    display: inline-flex;
    height: 46px;
    justify-content: center;
    line-height: 0;
    text-decoration: none;
    width: 46px
}

.footer-modern .social-btn i,
.site-footer .social-btn i {
    display: block;
    font-size: 22px;
    line-height: 1;
    pointer-events: none
}

.footer-modern .social-btn i:before,
.site-footer .social-btn i:before {
    font-family: Font Awesome\ 6 Brands !important;
    font-weight: 400 !important
}

.footer-modern .social-btn:hover,
.site-footer .social-btn:hover {
    background: var(--clr-bg-alt, hsla(0, 0%, 100%, .08));
    text-decoration: none
}

@media (max-width:420px) {

    .footer-modern .social-btn,
    .site-footer .social-btn {
        height: 50px;
        width: 50px
    }

    .footer-modern .social-btn i,
    .site-footer .social-btn i {
        font-size: 24px
    }
}

.sr-only {
    height: 1px !important;
    margin: -1px !important;
    overflow: hidden !important;
    padding: 0 !important;
    position: absolute !important;
    width: 1px !important;
    clip: rect(0, 0, 0, 0) !important;
    border: 0 !important;
    white-space: nowrap !important
}

:root {
    --color-primary: #1f5a78;
    --color-slate: #46525a;
    --color-mist: #e6e8ea;
    --color-aqua: #2aa3b1;
    --color-aqua-dark: #248e9c;
    --radius: 12px;
    --shadow: 0 8px 20px rgba(0, 0, 0, .06)
}

body {
    background: var(--color-mist);
    color: var(--color-slate);
    font-family: Nunito, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale
}

h1,
h2,
h3 {
    font-weight: 700;
    line-height: 1.25
}

a,
h1,
h2,
h3 {
    color: var(--color-primary)
}

a:hover {
    text-decoration: underline
}

.card,
.panel {
    background: #fff;
    border: 1px solid rgba(0, 0, 0, .05);
    border-radius: var(--radius);
    box-shadow: var(--shadow)
}

.btn,
.button,
.cta,
button,
input[type=submit] {
    background: var(--color-aqua);
    border: none;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(42, 163, 177, .25);
    color: #fff;
    font-weight: 600;
    transition: transform .08s ease, box-shadow .2s ease, background .2s ease
}

.btn:hover,
.button:hover,
.cta:hover,
button:hover,
input[type=submit]:hover {
    background: var(--color-aqua-dark);
    transform: translateY(-1px)
}

input,
textarea {
    background: #fff;
    border: 1px solid #d2d6da;
    border-radius: 10px;
    color: var(--color-slate)
}

input:focus,
textarea:focus {
    border-color: var(--color-aqua);
    box-shadow: 0 0 0 3px rgba(42, 163, 177, .18);
    outline: none
}

.site-header,
header {
    background: #fff;
    border-bottom: 1px solid #dfe3e6
}

.site-footer,
footer {
    background: #fff;
    border-top: 1px solid #dfe3e6;
    color: var(--color-slate)
}

.btn-primary {
    background: var(--color-aqua);
    color: #fff
}

.btn-primary:hover {
    background: var(--color-aqua-dark)
}

:is(.landing-hero, .faq-hero, .page-intro, .process-head, .faq-cta) {
    background: transparent !important;
    border: 0 !important;
    box-shadow: none !important
}

.hero-title,
.hero-zones {
    color: #fff;
    text-shadow: 0 2px 6px rgba(0, 0, 0, .25)
}

.main-nav .has-submenu>.submenu-toggle,
.main-nav .has-submenu>a.submenu-toggle {
    background: transparent !important;
    border: 0;
    box-shadow: none !important
}

.main-nav .has-submenu:focus-within>.submenu-toggle,
.main-nav .has-submenu:focus-within>a.submenu-toggle,
.main-nav .has-submenu:hover>.submenu-toggle,
.main-nav .has-submenu:hover>a.submenu-toggle,
.main-nav .has-submenu>.submenu-toggle:active,
.main-nav .has-submenu>.submenu-toggle[aria-expanded=true],
.main-nav .has-submenu>a.submenu-toggle:active,
.main-nav .has-submenu>a.submenu-toggle[aria-expanded=true] {
    background: transparent !important;
    box-shadow: none !important
}

.main-nav .has-submenu>.submenu-toggle:focus-visible,
.main-nav .has-submenu>a.submenu-toggle:focus-visible {
    outline: 2px solid currentColor;
    outline-offset: 3px
}

.main-nav .has-submenu>.submenu-toggle .chevron,
.main-nav .has-submenu>a.submenu-toggle .chevron {
    background: transparent !important;
    box-shadow: none !important;
    filter: none
}

#services .services-list {
    display: grid;
    gap: clamp(16px, 2vw, 24px);
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr))
}

#services .service-item {
    background: #fff;
    border: 1px solid rgba(16, 24, 40, .08);
    border-radius: 14px;
    box-shadow: 0 1px 2px rgba(16, 24, 40, .06), 0 8px 24px rgba(16, 24, 40, .06);
    overflow: hidden;
    transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease
}

#services .service-item:focus-within,
#services .service-item:hover {
    border-color: rgba(10, 147, 221, .25);
    box-shadow: 0 2px 6px rgba(16, 24, 40, .08), 0 14px 36px rgba(16, 24, 40, .1);
    transform: translateY(-4px)
}

#services .service-thumb {
    aspect-ratio: 16/9;
    overflow: hidden;
    position: relative
}

#services .service-thumb img {
    display: block;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    transform: scale(1.02);
    transition: transform .5s ease;
    width: 100%
}

#services .service-item:hover .service-thumb img {
    transform: scale(1.06)
}

#services .service-thumb .service-badge {
    backdrop-filter: blur(6px);
    background: rgba(10, 147, 221, .1);
    border: 1px solid rgba(10, 147, 221, .25);
    border-radius: 999px;
    color: #0a93dd;
    font-size: 12px;
    font-weight: 600;
    left: 12px;
    letter-spacing: .2px;
    padding: 4px 10px;
    position: absolute;
    top: 12px
}

#services .service-item h2,
#services .service-item h3 {
    align-items: center;
    display: flex;
    font-size: clamp(18px, 2.1vw, 22px);
    gap: 10px;
    line-height: 1.2;
    margin: 14px 16px 6px
}

#services .service-item h3 .svc-ico {
    color: #0a93dd;
    font-size: 1.1em;
    opacity: .9
}

#services .service-item .service-bullets,
#services .service-item .service-note,
#services .service-item>p {
    margin: 0 16px
}

#services .service-item>p {
    color: #475467;
    margin-bottom: 8px
}

#services .service-item .service-bullets {
    color: #344054;
    margin-bottom: 8px;
    padding-left: 18px
}

#services .service-item .service-note {
    color: #667085;
    font-size: 13px
}

#services .service-item .btn,
#services .service-item .svc-cta {
    margin-bottom: 14px;
    margin-left: 16px
}

#services .service-item .svc-cta {
    color: #0a93dd;
    display: inline-block;
    font-weight: 600;
    margin-right: 8px;
    text-underline-offset: 3px
}

#services .service-item .btn.btn-primary {
    box-shadow: 0 4px 14px rgba(10, 147, 221, .22)
}

#services .page-intro .subtitle {
    color: #475467
}

[data-reveal] {
    opacity: 0;
    transform: translateY(14px);
    transition: opacity .5s ease, transform .5s ease
}

[data-reveal].is-visible {
    opacity: 1;
    transform: translateY(0)
}

@media (prefers-reduced-motion:reduce) {

    #services .service-item,
    #services .service-thumb img,
    [data-reveal] {
        transform: none !important;
        transition: none !important
    }
}

.process.modern {
    margin: 3rem auto
}

.process.modern .process-head {
    margin-bottom: 1.4rem;
    text-align: center
}

.process.modern .process-head .subtitle {
    color: #475467;
    margin-top: .25rem
}

.process.modern .modern-steps {
    display: grid;
    gap: clamp(14px, 2vw, 22px);
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    list-style: none;
    margin: 0;
    padding: 0
}

.process.modern .step {
    animation: processFadeUp .6s ease both;
    background: #fff;
    border: 1px solid rgba(16, 24, 40, .08);
    border-radius: 14px;
    box-shadow: 0 1px 2px rgba(16, 24, 40, .06), 0 8px 24px rgba(16, 24, 40, .06);
    opacity: 0;
    padding: 18px 16px 16px;
    position: relative;
    transform: translateY(10px);
    transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease
}

.process.modern .step:focus-within,
.process.modern .step:hover {
    border-color: rgba(10, 147, 221, .22);
    box-shadow: 0 2px 6px rgba(16, 24, 40, .08), 0 14px 36px rgba(16, 24, 40, .1);
    transform: translateY(-3px)
}

.process.modern .step-index {
    background: radial-gradient(120% 120% at 20% 20%, #32b5f2 0, #0a93dd 70%);
    border-radius: 999px;
    box-shadow: 0 6px 18px rgba(10, 147, 221, .35);
    color: #fff;
    display: grid;
    font-weight: 700;
    height: 36px;
    left: -10px;
    place-items: center;
    position: absolute;
    top: -10px;
    width: 36px
}

.process.modern .step-icon {
    background: rgba(10, 147, 221, .08);
    border: 1px solid rgba(10, 147, 221, .18);
    border-radius: 10px;
    color: #0a93dd;
    display: grid;
    height: 36px;
    margin-bottom: 10px;
    place-items: center;
    width: 36px
}

.process.modern .step-icon i {
    font-size: 16px
}

.process.modern .step-body h3 {
    font-size: clamp(16px, 1.9vw, 18px);
    line-height: 1.25;
    margin: 0 0 4px
}

.process.modern .step-body p {
    color: #475467;
    font-size: .975rem;
    margin: 0
}

.process.modern .process-note {
    color: #667085;
    margin-top: 1rem;
    text-align: center
}

.process.modern .step:first-child {
    animation-delay: .05s
}

.process.modern .step:nth-child(2) {
    animation-delay: .12s
}

.process.modern .step:nth-child(3) {
    animation-delay: .19s
}

.process.modern .step:nth-child(4) {
    animation-delay: .26s
}

.process.modern .step:nth-child(5) {
    animation-delay: .33s
}

.process.modern .step:nth-child(6) {
    animation-delay: .4s
}

.process.modern .step:nth-child(7) {
    animation-delay: .47s
}

@keyframes processFadeUp {
    0% {
        opacity: 0;
        transform: translateY(10px)
    }

    to {
        opacity: 1;
        transform: translateY(0)
    }
}

@media (prefers-reduced-motion:reduce) {
    .process.modern .step {
        animation: none !important;
        transform: none !important
    }
}

.process.modern .modern-steps [data-reveal] {
    opacity: 0;
    pointer-events: none;
    transform: scale(.92) translateY(14px);
    visibility: hidden
}

.process.modern .modern-steps [data-reveal].pop-reveal {
    animation: popIn .7s cubic-bezier(.62, 1.42, .39, .98) both;
    opacity: 1;
    pointer-events: auto;
    transform: scale(1) translateY(0);
    visibility: visible
}

.process.modern .modern-steps [data-reveal]:first-child.pop-reveal {
    animation-delay: .05s
}

.process.modern .modern-steps [data-reveal]:nth-child(2).pop-reveal {
    animation-delay: .15s
}

.process.modern .modern-steps [data-reveal]:nth-child(3).pop-reveal {
    animation-delay: .25s
}

.process.modern .modern-steps [data-reveal]:nth-child(4).pop-reveal {
    animation-delay: .35s
}

.process.modern .modern-steps [data-reveal]:nth-child(5).pop-reveal {
    animation-delay: .45s
}

.process.modern .modern-steps [data-reveal]:nth-child(6).pop-reveal {
    animation-delay: .55s
}

.process.modern .modern-steps [data-reveal]:nth-child(7).pop-reveal {
    animation-delay: .65s
}

.process.modern .modern-steps [data-reveal]:nth-child(8).pop-reveal {
    animation-delay: .75s
}

@keyframes popIn {
    0% {
        opacity: 0;
        transform: scale(.92) translateY(18px)
    }

    70% {
        opacity: 1;
        transform: scale(1.06) translateY(-2px)
    }

    85% {
        opacity: 1;
        transform: scale(.98) translateY(0)
    }

    to {
        opacity: 1;
        transform: scale(1) translateY(0)
    }
}

@media (prefers-reduced-motion:reduce) {

    .process.modern .modern-steps [data-reveal],
    .process.modern .modern-steps [data-reveal].pop-reveal {
        animation: none !important;
        opacity: 1 !important;
        transform: none !important;
        transition: none !important
    }
}

#services .services-list [data-reveal] {
    opacity: 0;
    pointer-events: none;
    transform: scale(.92) translateY(14px);
    visibility: hidden
}

#services .services-list [data-reveal].pop-reveal {
    animation: popIn .7s cubic-bezier(.62, 1.42, .39, .98) both;
    opacity: 1;
    pointer-events: auto;
    transform: scale(1) translateY(0);
    visibility: visible
}

#services .services-list [data-reveal]:first-child.pop-reveal {
    animation-delay: .05s
}

#services .services-list [data-reveal]:nth-child(2).pop-reveal {
    animation-delay: .15s
}

#services .services-list [data-reveal]:nth-child(3).pop-reveal {
    animation-delay: .25s
}

#services .services-list [data-reveal]:nth-child(4).pop-reveal {
    animation-delay: .35s
}

html {
    font-size: 1.1em
}

@media (prefers-reduced-motion:reduce) {

    #services .services-list [data-reveal],
    #services .services-list [data-reveal].pop-reveal {
        animation: none !important;
        opacity: 1 !important;
        transform: none !important;
        transition: none !important
    }
}

.thanks-card {
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 4px 24px rgba(10, 147, 221, .07), 0 1.5px 4px rgba(0, 0, 0, .03);
    margin: 2rem auto;
    max-width: 540px;
    padding: 2.5rem 2rem 2rem;
    text-align: center
}

.thanks-icon {
    align-items: center;
    background: #e6f1f9;
    border-radius: 50%;
    color: #2aa3b1;
    display: flex;
    font-size: 3.5rem;
    height: 78px;
    justify-content: center;
    margin: 0 auto 1.2rem;
    width: 78px
}

.thanks-message {
    color: #444;
    font-size: 1.15rem;
    margin-bottom: 1.3rem
}

.recap-title {
    color: #2aa3b1;
    font-size: 1.1rem;
    letter-spacing: .5px;
    margin-top: 2rem
}

.recap-block {
    background: #f7fafc;
    border: 1px solid #e2e8f0;
    border-radius: 7px;
    box-shadow: 0 1.5px 6px rgba(10, 147, 221, .07);
    color: #222;
    font-size: 1rem;
    margin-bottom: 1.5rem;
    margin-top: .8rem;
    overflow-x: auto;
    padding: 1.1rem 1rem;
    text-align: left
}

.thanks-home-btn {
    background: #2aa3b1;
    border-radius: 24px;
    box-shadow: 0 2px 8px rgba(10, 147, 221, .07);
    color: #fff;
    display: inline-block;
    font-size: 1.07rem;
    font-weight: 500;
    margin-top: 1.4rem;
    padding: .65rem 1.8rem;
    text-decoration: none;
    transition: background .2s
}

.thanks-home-btn:focus,
.thanks-home-btn:hover {
    background: #1f5a78;
    color: #fff
}

.cookie-banner {
    align-items: center;
    background: linear-gradient(135deg, #0b1d28, #1a3a4a);
    border-top: 3px solid #0a93dd;
    box-shadow: 0 -8px 32px rgba(0, 0, 0, .4);
    color: #fff;
    display: flex;
    font-size: 15px;
    gap: 1rem;
    inset: auto 0 0 0;
    padding: 1.2rem;
    position: fixed;
    transition: all .3s ease;
    z-index: 2147483000
}

.cookie-banner.cookie-banner-enhanced {
    padding: 1.5rem
}

.cookie-banner .cookie-content {
    align-items: center;
    display: flex;
    flex: 1;
    gap: 1rem
}

.cookie-banner .cookie-icon {
    animation: bounce 2s infinite;
    font-size: 2rem
}

.cookie-banner .cookie-text {
    flex: 1
}

.cookie-banner p {
    line-height: 1.5;
    margin: 0
}

.cookie-banner .btns {
    display: flex;
    flex-wrap: wrap;
    gap: .8rem
}

.cookie-banner .btn {
    border: 0;
    border-radius: 8px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 600;
    padding: .8rem 1.2rem;
    transition: all .3s ease
}

.cookie-banner .btn-accept {
    background: linear-gradient(135deg, #0a93dd, #0d7bc4);
    box-shadow: 0 4px 12px rgba(10, 147, 221, .3);
    color: #fff;
    transform: scale(1)
}

.cookie-banner .btn-accept:hover {
    box-shadow: 0 6px 16px rgba(10, 147, 221, .4);
    transform: scale(1.05)
}

.cookie-banner .btn-accept span {
    margin-right: .5rem
}

.cookie-banner .btn-decline {
    background: #213644;
    color: #ccc;
    opacity: .8
}

.cookie-banner .btn-decline:hover {
    color: #fff;
    opacity: 1
}

.cookie-banner a {
    color: #9dd7f5;
    text-decoration: underline
}

.cookie-banner a:hover {
    color: #fff
}

.cookie-banner.slide-in {
    animation: slideInUp .5s ease-out
}

.cookie-banner.pulse-animation {
    animation: pulse 1.5s ease-in-out 3
}

@keyframes slideInUp {
    0% {
        opacity: 0;
        transform: translateY(100%)
    }

    to {
        opacity: 1;
        transform: translateY(0)
    }
}

@keyframes pulse {

    0%,
    to {
        box-shadow: 0 -8px 32px rgba(0, 0, 0, .4);
        transform: scale(1)
    }

    50% {
        box-shadow: 0 -12px 40px rgba(10, 147, 221, .6);
        transform: scale(1.02)
    }
}

@keyframes bounce {

    0%,
    20%,
    50%,
    80%,
    to {
        transform: translateY(0)
    }

    40% {
        transform: translateY(-10px)
    }

    60% {
        transform: translateY(-5px)
    }
}

@media (max-width:640px) {
    .cookie-banner {
        align-items: flex-start;
        flex-direction: column;
        gap: 1.2rem
    }

    .cookie-banner .cookie-content {
        width: 100%
    }

    .cookie-banner .btns {
        justify-content: space-between;
        width: 100%
    }

    .cookie-banner .btn {
        flex: 1;
        min-width: 120px
    }
}

.cookie-banner.is-hidden,
.cookie-banner[hidden] {
    display: none !important
}