:root{
    /* Palette extraite du screenshot */
    --navy: #0f243d;      /* rgb(25,47,76) */
    --blue:#28599B;      /* rgb(40,89,155) */
    --orange: #ed3d3d;    /* rgb(253,145,72) */
    --light:#E9ECF1;     /* rgb(233,236,241) */
    --white:#ffffff;
    --text:#0f1a2a;
    --muted:#6b778a;

    --radius:18px;
    --radius2:28px;
    --shadow: 0 18px 40px rgba(18,36,60,.12);
    --container: 1280px;
}

*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
    margin:0;
    font-family:"Poppins",system-ui,-apple-system,Segoe UI,Roboto,Arial,sans-serif;
    color:var(--text);
    background:#fff;
}

.container{width:min(var(--container), calc(100% - 44px)); margin:0 auto}
.muted{color:var(--muted)}
.w100{width:100%}
.u-accent{color:var(--blue)}
.u-warm{color:var(--orange)}
.sep{opacity:.55; margin:0 10px}
a{color:inherit; text-decoration:none}

.topbar{
    background:var(--orange);
    color:#fff;
    font-size:13px;
}
.topbar__inner{
    display:flex; align-items:center; justify-content:space-between;
    padding:10px 0;
    gap:12px;
}
.topbar__badge{
    background:rgba(255,255,255,.18);
    border:1px solid rgba(255,255,255,.25);
    padding:4px 10px;
    border-radius:999px;
    font-weight:600;
    margin-right:10px;
    display:inline-block;
}
.topbar__right a{font-weight:600}

.header{
    background:#fff;
    box-shadow: 0 0 10px #00000040;

}
.header__inner{
    display:flex; align-items:center; justify-content:space-between;
    padding:10px 0;
    gap:20px;
}

.brand img {
    width: 230px;
    margin-block: -10px;

}
.brand__logo{
    width:44px; height:44px; border-radius:14px;
    background:
            radial-gradient(circle at 30% 30%, rgba(255,255,255,.55), transparent 60%),
            linear-gradient(135deg, var(--blue), var(--navy));
    box-shadow: 0 10px 25px rgba(40,89,155,.20);
}
.brand__txt{display:flex; flex-direction:column; line-height:1.1}
.brand__txt strong{font-size:16px; letter-spacing:.2px}
.brand__txt small{font-size:12px; color:rgba(25,47,76,.70)}
.nav{display:flex; gap:20px; font-weight:600; font-size:14px}
.nav a{padding:10px 12px; border-radius:12px}
.nav a:hover{background:rgba(25,47,76,.06)}

.header__cta{display:flex; gap:10px}

.btn{
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 0.2em;
    padding: 0.5em 1em;
    font-weight: 700;
    border: 2px solid transparent;
    transition: transform .12s ease, box-shadow .12s ease, background .12s ease;
    cursor:pointer;
}
.btn:hover{transform:translateY(-1px)}
.btn--primary{
    background:var(--orange);
    color:#fff;
}
.btn--outline{
    background:#fff;
    border-color:rgba(25,47,76,.18);
    color:var(--navy);
}
.btn--soft{
    background:rgba(40,89,155,.10);
    color:var(--blue);
}

.hero{
    padding:48px 0 30px;
    display: flex;
    justify-content: space-between;
    gap: 28px;
    align-items: center;
}
.hero .container > div {
    flex: 1;
}
.hero h1{
    font-size:42px;
    line-height:1.08;
    margin:0 0 12px;
    letter-spacing:-.6px;
    color:var(--navy);
}
.lead{
    margin:0 0 18px;
    color:rgba(25,47,76,.72);
    line-height:1.75;
    font-size:15px;
}
.hero__actions{display:flex; gap:12px; margin-bottom:18px; flex-wrap:wrap}
.hero-cards {
    display: flex;
    justify-content: space-between;
    gap: 10px;
    margin-top: 28px;
}

.hero-card {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 14px 10px;
    background: #fff;
    border-radius: 14px;
    border: 1px solid rgba(25, 47, 76, 0.12);
    box-shadow: 0 8px 20px rgba(25, 47, 76, 0.08);
}
.hero-card .hero-line{
    font-size: 0.85em;
}
.hero-icon {
    width: 42px;
    height: 42px;
    flex-shrink: 0;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    color: #fff;
}

.hero-icon--blue {
    background: var(--blue);
}

.hero-icon--orange {
    background: var(--orange);
}

.hero-icon--dark {
    background: #1e2e46;
}
.hero-text {
    display: flex;
    flex-direction: column;
    line-height: 1.35;
}

.hero-text strong {
    font-size: 14px;
    font-weight: 700;
    color: var(--navy);
}

.hero-text span {
    font-size: 13px;
    font-weight: 500;
    color: rgba(25, 47, 76, 0.65);
}
.hero__visual{position:relative}
.hero__visual::before {
    content: "";
    position: absolute;
    width: 250px;
    height: 250px;
    background: url("../medias/decenale.png");
    background-size: contain;
    background-repeat: no-repeat;
    right: 0;
    top: 0;
    transform: translate(81%, -32%) rotate(24deg);
}
.hero{
    position: relative;
}
.footer-seo {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px;
}

.footer-seo strong {
    margin-right: 4px;
}

.footer-seo span {
    display: inline-flex;
    align-items: center;
    padding: 6px 10px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.08);
    color: inherit;
    font-size: 13px;
    line-height: 1;
    white-space: nowrap;
}
@media (max-width: 1200px) {
    .hero__visual::before {
        width: 210px;
        height: 210px;
        transform: translate(55%, -28%) rotate(22deg);
    }
}

/* Tablette */
@media (max-width: 992px) {
    .hero__visual::before {
        width: 170px;
        height: 170px;
        transform: translate(32%, -22%) rotate(18deg);
    }
}

/* Mobile */
@media (max-width: 768px) {
    .hero__visual::before {
        width: 126px;
        height: 116px;
        right: 12px;
        top: 12px;
        transform: translate(18%, -59%) rotate(16deg);
        backdrop-filter: blur(5px);
        border-radius: 100%;
        background-color: #ffffff73;
    }
}

/* Petit mobile */
@media (max-width: 480px) {
    .hero__visual::before {
        width: 105px;
        height: 105px;
        right: 10px;
        top: 10px;
        transform: translate(10%, -12%) rotate(14deg);
    }
}
section.hero::before {
    content: "";
    position: absolute;
    width: 39vw;
    height: 26vw;
    background: url("../medias/decenale.png");
    background-repeat: repeat;
    background-size: auto;
    background-size: contain;
    background-repeat: no-repeat;
    opacity: 0.06;
    transform: translate(-18%, 10%) rotate(-44deg);
}
.heroImg{
    height:380px;
    border-radius:28px;
    background:
            radial-gradient(circle at 20% 30%, rgba(253,145,72,.25), transparent 55%),
            radial-gradient(circle at 70% 40%, rgba(40,89,155,.22), transparent 55%),
            linear-gradient(135deg, rgba(25,47,76,.10), rgba(25,47,76,.04));
    border:1px solid rgba(25,47,76,.12);
    box-shadow: var(--shadow);
    overflow:hidden;
}
.heroImg img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}


.heroFloat{
    position: absolute;
    bottom: -16px;
    left: 26px;
    right: 26px;
    background:var(--orange);
    border-radius: 18px;
    color:#fff;
    border: 1px solid rgba(25, 47, 76, 0.08);
    box-shadow: var(--shadow);
    padding: 14px 16px;
    display: flex;
    justify-content: space-between;
    gap: 14px;
}

.heroFloat > div{
    display: flex;
    align-items: center;
    gap: 1em;
}
.heroFloat small{color: rgba(255, 255, 255, 0.55); font-size:12px}
.heroFloat strong{color:#fff; font-size:13px}
.hero h1 strong:nth-of-type(1) {
    color: var(--blue);
}

.hero h1 strong:nth-of-type(2) {
    color: var(--orange);
}
.about {
    padding: 64px 0;
}
.about__img {
    position: relative;
    width: 28vw;
    max-height: 63vh;
    box-shadow: var(--shadow);
    aspect-ratio: 9 / 13;
}

.about__img img{
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    border-radius: 22px;
    background: transparent;
}

.about__img:before{
    content:"";
    inset:0;
    right: -4em;
    left: 4em;
    top: 2em;
    bottom: -2em;
    border: 2px solid rgba(0,0,0,0.08);
    position: absolute;
    border-radius: 22px;
}

.about__content{
    flex: 1;
}
/* about */
.about{padding:64px 0}
.about__grid {
    display: flex;
    gap: 7em;
    justify-content: space-between;
    align-items: center;
}
.ph{border-radius:20px; background:linear-gradient(135deg, rgba(25,47,76,.10), rgba(40,89,155,.12)); border:1px solid rgba(25,47,76,.10)}
.ph--img{height:390px}
.ph--imgTall{height:460px; border-radius:26px}

.about h2{margin:0 0 10px; font-size:34px; line-height:1.15; color:var(--navy)}
.about p{margin:0 0 14px; color:rgba(25,47,76,.68); line-height:1.8; font-size:14px}

.ticks{margin:0 0 18px; padding:0; list-style:none}
.ticks li{
    padding-left:24px;
    position:relative;
    margin:10px 0;
    color:rgba(25,47,76,.72);
    font-size:14px;
}
.ticks li:before{
    content:"✓";
    position:absolute; left:0; top:0;
    color:var(--orange);
    font-weight:800;
}

.sectionHead{margin-bottom:24px}
.sectionHead--center{text-align:center}
.sectionHead--light{color:#fff}
.sectionHead h2{
    margin:0 0 10px;
    font-size:32px;
    color:var(--navy);
}
.sectionHead--light h2{color:#fff}
.sectionHead p{
    margin:0;
    color:rgba(25,47,76,.62);
    line-height:1.7;
    font-size:14px;
}
.sectionHead--light p{color:rgba(255,255,255,.75)}
.services {
    background: #0f243d;
    padding: 90px 0;
    color: #fff;
    overflow: hidden;
}

.services-head {
    text-align: center;
    max-width: 680px;
    margin: 0 auto 46px;
}

.services-head h2 {
    font-size: 34px;
    margin-bottom: 10px;
}

.services-head p {
    font-size: 14px;
    color: rgba(255,255,255,.75);
}

.services-slider {
    position: relative;
}
.swiper-wrapper, .swiper-slide{
    width: inherit!important;
    padding: 1em;
}
.service-card {
    background: #0f243d;
    border-radius: 26px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    height: 100%;
    box-shadow: 0 30px 60px rgba(0,0,0,.25);
    transition: transform .4s ease;
    max-width: 400px;
}
.clients, .services{
    overflow-x: hidden;
}
.service-card:hover {
    transform: translateY(-6px);
}

.service-media {
    position: relative;
    height: 290px;
}

.service-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.service-media::after {
    content:"";
    position:absolute;
    inset:0;
    background: linear-gradient(180deg, transparent, rgba(15,36,61,.85));
}

.service-tag {
    position:absolute;
    top:16px;
    left:16px;
    background: var(--orange);
    color:#fff;
    font-weight:700;
    font-size:11px;
    padding:6px 10px;
    border-radius:999px;
    z-index:2;
}

.service-tag--blue{background:var(--blue)}
.service-tag--danger{background:#d94848}

.service-body {
    padding: 22px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.service-body h3 {
    margin: 0 0 8px;
    font-size: 23px;
}

.service-body p {
    font-size: 13px;
    line-height: 1.7;
    color: rgba(255,255,255,.8);
    flex: 1;
}

.service-body a {
    color: var(--orange);
    font-weight: 800;
    margin-top: 12px;
}

/* Navigation arrows */
.services-nav {
    display: flex;
    justify-content: center;
    gap: 14px;
    margin-top: 26px;
}

.services-nav button {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: none;
    background: rgba(255,255,255,.1);
    color: #fff;
    font-size: 14px;
    cursor: pointer;
    transition: background .2s ease;
}
.service-body a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    margin-top: 20px;
    padding: 13px 18px;
    background: var(--orange);
    color: #fff;
    border: 2px solid var(--orange);
    border-radius: 10px;
    font-size: 13px;
    font-weight: 800;
    line-height: 1;
    text-align: center;
    text-decoration: none;
    letter-spacing: .2px;
    transition: background .25s ease, color .25s ease, border-color .25s ease, transform .2s ease;
}

.service-body a::after {
    content: "→";
    margin-left: 10px;
    font-size: 15px;
    font-weight: 900;
    transition: transform .2s ease;
}

.service-body a:hover {
    background: #fff;
    color: var(--orange);
    border-color: #fff;
    transform: translateY(-2px);
}

.service-body a:hover::after {
    transform: translateX(4px);
}

.service-body a:active {
    transform: translateY(0);
}
.swiper{
    overflow: visible;
}
.services-nav button:hover {
    background: var(--orange);
}

.swiper-pagination-bullet {
    background: rgba(255,255,255,.4);
    opacity: 1;
}
.swiper-pagination-bullet-active {
    background: var(--orange);
}
.duo{
    width: 100vw;
    overflow: hidden;
    display: flex;
}

.duo-inner{
    display: flex;
    width: 100%;
}
.duo-box {
    position: relative;
    color: #fff;
    display: flex;
    flex-direction: column;
    text-align: start;
    padding-left: 12%;
    padding-block: 2em;
    padding-right: 3em;
    width: 50%;
}
.duo-box--blue {
    background: radial-gradient(circle at 20% 30%, rgba(255,255,255,.18), transparent 55%), linear-gradient(135deg, #1f4f8f, #16385f);
    direction: rtl;
    padding-right: 12%;
    padding-block: 2em;
    padding-left: 3em;
}
.duo-box--blue li::before {
    left: unset !important;
    right: -0.9em;
}
.duo-box::before{
    content:"";
    position:absolute;
    inset:0;
    background:
            linear-gradient(
                    120deg,
                    rgba(255,255,255,.22),
                    rgba(255,255,255,.06) 35%,
                    rgba(255,255,255,0) 60%
            );
    opacity:.45;
    pointer-events:none;
}

.duo-box--blue{
    background:
            radial-gradient(circle at 20% 30%, rgba(255,255,255,.18), transparent 55%),
            linear-gradient(135deg, #1f4f8f, #16385f);
}

.duo-box--orange{
    background:
            radial-gradient(circle at 80% 25%, rgba(255,255,255,.22), transparent 55%), linear-gradient(135deg, #ff3a3a, #e51c1c);
}
.duo-box > *{
    position: relative;
    z-index: 2;
}

.duo-box .duo-content{
    max-width: 440px;
    margin: auto;
    padding: 56px 48px;
    background: rgba(0,0,0,.18);
    border-radius: 22px;
    backdrop-filter: blur(6px);
    box-shadow: 0 30px 70px rgba(0,0,0,.25);
}
.duo-icon{
    width: 64px;
    height: 64px;
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    margin-bottom: 22px;
    background: rgba(255,255,255,.18);
    box-shadow:
            inset 0 0 0 1px rgba(255,255,255,.35),
            0 14px 28px rgba(0,0,0,.25);
}
.duo-box--blue .duo-icon{
    color: #e6f2ff;
}
.duo-box--orange .duo-icon{
    color: #fff3e8;
}
.duo-box h3{
    font-size: 28px;
    margin: 0 0 14px;
    line-height: 1.15;
}

.duo-box p{
    font-size: 15px;
    line-height: 1.75;
    margin: 0 0 18px;
    opacity: .95;
}
.duo-box ul{
    list-style: none;
    padding: 0;
    margin: 0;
}

.duo-box li{
    font-size: 14px;
    margin-bottom: 10px;
    padding-left: 18px;
    position: relative;
    opacity: .9;
}

.duo-box li::before{
    content:"•";
    position:absolute;
    left:0;
    top: .15em !important;

    font-size:18px;
    line-height:1;
}

.duo-center img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.clients-premium {
    position: relative;
    padding: 86px 0;
    background:
            radial-gradient(circle at 10% 10%, rgba(237, 61, 61, .09), transparent 28%),
            radial-gradient(circle at 92% 75%, rgba(40, 89, 155, .12), transparent 30%),
            linear-gradient(180deg, #ffffff 0%, #f4f7fb 100%);
    overflow: hidden;
}

.clients-head {
    display: grid;
    grid-template-columns: 1fr 420px;
    gap: 36px;
    align-items: end;
    margin-bottom: 34px;
}

.section-kicker {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 12px;
    padding: 7px 12px;
    background: rgba(237, 61, 61, .10);
    color: var(--orange);
    border-radius: 999px;
    font-size: 12px;
    font-weight: 900;
    letter-spacing: .4px;
    text-transform: uppercase;
}

.section-kicker::before {
    content: "";
    width: 8px;
    height: 8px;
    background: var(--orange);
    border-radius: 50%;
}

.clients-head h2 {
    margin: 0;
    color: var(--navy);
    font-size: 36px;
    line-height: 1.12;
    letter-spacing: -.6px;
}

.clients-head p {
    margin: 0;
    color: rgba(25, 47, 76, .66);
    font-size: 14px;
    line-height: 1.8;
}

.clients-slider-wrap {
    position: relative;
}

.clients-premium .clients-swiper {
    padding: 8px 0 34px;
    overflow: visible;
}

.clients-premium .swiper-wrapper {
    align-items: stretch;
}

.clients-premium .swiper-slide.client {
    width: 370px !important;
    height: auto;
    padding: 0 !important;
}

.client-card {
    height: 100%;
    background: #fff;
    border: 1px solid rgba(25, 47, 76, .10);
    border-radius: 26px;
    overflow: hidden;
    transition: transform .28s ease, border-color .28s ease;
}

.client-card:hover {
    transform: translateY(-6px);
    border-color: rgba(237, 61, 61, .28);
}

.client-img {
    position: relative;
    width: 100%;
    height: 330px;
    overflow: hidden;
    border-radius: 0;
    background: #e9ecf1;
    box-shadow: none;
}

.client-img::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
            linear-gradient(180deg, rgba(15, 36, 61, 0) 42%, rgba(15, 36, 61, .70) 100%),
            linear-gradient(120deg, rgba(255,255,255,.18), transparent 48%);
    pointer-events: none;
}

.client-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform .55s ease;
}

.client-card:hover .client-img img {
    transform: scale(1.06);
}

.client-tag {
    position: absolute;
    left: 16px;
    top: 16px;
    z-index: 2;
    display: inline-flex;
    align-items: center;
    padding: 7px 12px;
    background: var(--orange);
    color: #fff;
    border-radius: 999px;
    font-size: 11px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: .35px;
}

.client-tag--blue {
    background: var(--blue);
}

.client-content {
    padding: 22px;
}

.client-location {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    margin-bottom: 10px;
    color: var(--orange);
    font-size: 12px;
    font-weight: 800;
}

.client-location i {
    font-size: 12px;
}

.client-content h3 {
    margin: 0 0 8px;
    color: var(--navy);
    font-size: 21px;
    line-height: 1.2;
    font-weight: 900;
    text-transform: none;
    letter-spacing: -.2px;
}

.client-content p {
    margin: 0;
    color: rgba(25, 47, 76, .68);
    font-size: 13px;
    line-height: 1.7;
}

.clients-nav {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 4px;
}

.clients-nav button {
    width: 46px;
    height: 46px;
    border: 0;
    border-radius: 14px;
    background: var(--navy);
    color: #fff;
    cursor: pointer;
    transition: transform .22s ease, background .22s ease;
}

.clients-nav button:hover {
    background: var(--orange);
    transform: translateY(-2px);
}
.clients-premium .client-name,
.clients-premium .client-name::after {
    display: none;
}

@media (max-width: 992px) {
    .clients-head {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .clients-head h2 {
        font-size: 32px;
    }

    .clients-head p {
        max-width: 640px;
    }
}

@media (max-width: 768px) {
    .clients-premium {
        padding: 62px 0;
    }

    .clients-head h2 {
        font-size: 28px;
    }

    .clients-premium .swiper-slide.client {
        width: 310px !important;
    }

    .client-img {
        height: 280px;
    }
}

@media (max-width: 420px) {
    .clients-premium .swiper-slide.client {
        width: 280px !important;
    }

    .client-img {
        height: 250px;
    }

    .client-content {
        padding: 19px;
    }

    .client-content h3 {
        font-size: 19px;
    }
}




.faq-seo .acc-body p {
    margin: 0;
    max-width: 820px;
    color: rgba(25, 47, 76, .74);
    font-size: 14px;
    line-height: 1.85;
}

.faq-seo details[open] {
    background: rgba(255, 255, 255, .58);
    border-radius: 14px;
    padding-inline: 16px;
    margin-inline: -16px;
}

.faq-seo summary span {
    line-height: 1.45;
}

.faq-seo details[open] summary span {
    color: var(--blue);
}

.faq-seo .acc-body {
    padding-bottom: 20px;
}

.contact-premium {
    position: relative;
    padding: 90px 0;
    background:
            radial-gradient(circle at 88% 82%, rgba(40, 89, 155, .28), transparent 32%),
            linear-gradient(135deg, #0f243d 0%, #172f4e 100%);
    color: #fff;
    overflow: hidden;
}

.contact-premium::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
            linear-gradient(120deg, rgba(255,255,255,.08), transparent 40%),
            repeating-linear-gradient(
                    135deg,
                    rgba(255,255,255,.025) 0,
                    rgba(255,255,255,.025) 1px,
                    transparent 1px,
                    transparent 18px
            );
    pointer-events: none;
}

.contact-premium .contact-grid {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: .9fr 1.1fr;
    gap: 48px;
    align-items: center;
}

.contact-kicker {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    margin-bottom: 16px;
    padding: 8px 13px;
    background: rgba(255,255,255,.08);
    border: 1px solid rgba(255,255,255,.14);
    border-radius: 999px;
    color: #fff;
    font-size: 12px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: .4px;
}

.contact-kicker::before {
    content: "";
    width: 8px;
    height: 8px;
    background: var(--orange);
    border-radius: 50%;
}

.contact-info h2 {
    margin: 0 0 16px;
    font-size: 38px;
    line-height: 1.12;
    letter-spacing: -.7px;
}

.contact-desc {
    max-width: 560px;
    margin: 0 0 30px;
    color: rgba(255,255,255,.74);
    font-size: 15px;
    line-height: 1.8;
}

.contact-lines {
    display: grid;
    gap: 14px;
    margin-bottom: 28px;
}

.contact-line {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 15px;
    background: rgba(255,255,255,.07);
    border: 1px solid rgba(255,255,255,.12);
    border-radius: 16px;
    color: #fff;
    transition: background .22s ease, transform .22s ease, border-color .22s ease;
}

a.contact-line:hover {
    background: rgba(255,255,255,.11);
    border-color: rgba(255,255,255,.22);
    transform: translateY(-2px);
}

.contact-line .icon {
    width: 46px;
    height: 46px;
    flex-shrink: 0;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
}

.contact-line small {
    display: block;
    margin-bottom: 3px;
    color: rgba(255,255,255,.58);
    font-size: 12px;
    font-weight: 700;
}

.contact-line strong {
    display: block;
    color: #fff;
    font-size: 14px;
    line-height: 1.35;
}

.contact-line[href^="tel"] strong {
    font-size: 20px;
}

.contact-urgent {
    display: grid;
    grid-template-columns: 48px 1fr auto;
    gap: 14px;
    align-items: center;
    padding: 18px;
    background: rgba(237, 61, 61, .16);
    border: 1px solid rgba(237, 61, 61, .36);
    border-radius: 18px;
}

.urgent-icon {
    width: 48px;
    height: 48px;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--orange);
    color: #fff;
    font-size: 18px;
}

.contact-urgent strong {
    display: block;
    margin-bottom: 4px;
    font-size: 15px;
    color: #fff;
}

.contact-urgent p {
    margin: 0;
    color: rgba(255,255,255,.72);
    font-size: 13px;
    line-height: 1.55;
}

.urgent-call {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 11px 15px;
    background: #fff;
    color: var(--orange);
    border-radius: 10px;
    font-size: 13px;
    font-weight: 900;
    transition: background .22s ease, color .22s ease, transform .22s ease;
}

.urgent-call:hover {
    background: var(--orange);
    color: #fff;
    transform: translateY(-2px);
}


.contact-premium .contact-form {
    padding: 30px;
    background: rgba(255,255,255,.08);
    border: 1px solid rgba(255,255,255,.14);
    border-radius: 26px;
    backdrop-filter: blur(12px);
}

.form-head {
    margin-bottom: 22px;
}

.form-head h3 {
    margin: 0 0 6px;
    font-size: 25px;
    color: #fff;
}

.form-head p {
    margin: 0;
    color: rgba(255,255,255,.66);
    font-size: 13px;
    line-height: 1.6;
}

.contact-premium .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
}

.contact-premium .field {
    margin-bottom: 14px;
}

.contact-premium .field label {
    display: block;
    margin-bottom: 7px;
    color: rgba(255,255,255,.78);
    font-size: 12px;
    font-weight: 800;
}

.contact-premium input,
.contact-premium select,
.contact-premium textarea {
    width: 100%;
    margin: 0;
    padding: 14px 15px;
    background: rgba(0,0,0,.22);
    border: 1px solid rgba(255,255,255,.16);
    border-radius: 12px;
    color: #fff;
    font-family: inherit;
    font-size: 14px;
    outline: none;
    transition: border-color .22s ease, background .22s ease;
}

.contact-premium input::placeholder,
.contact-premium textarea::placeholder {
    color: rgba(255,255,255,.42);
}

.contact-premium select {
    appearance: none;
    cursor: pointer;
}

.contact-premium input:focus,
.contact-premium select:focus,
.contact-premium textarea:focus {
    background: rgba(0,0,0,.30);
    border-color: rgba(237, 61, 61, .75);
}

.contact-premium textarea {
    resize: vertical;
    min-height: 135px;
}

.contact-premium .btn.w100 {
    gap: 10px;
    min-height: 50px;
    margin-top: 4px;
    border-radius: 12px;
    font-size: 14px;
    box-shadow: none;
}

.contact-premium .rgpd {
    margin: 14px 0 0;
    color: rgba(255,255,255,.52);
    font-size: 12px;
    text-align: center;
}


#footer.footer-premium {
    position: relative;
    padding: 72px 0 28px;
    background: #102033;
    color: #fff;
    overflow: hidden;
}

#footer.footer-premium * {
    box-sizing: border-box;
}

#footer.footer-premium .footer-container {
    width: min(var(--container), calc(100% - 44px));
    margin: 0 auto;
    display: block;
    text-align: left;
}


#footer.footer-premium .footer-main {
    display: grid;
    grid-template-columns: 1.25fr .9fr 1fr .95fr;
    gap: 42px;
    align-items: flex-start;
}

#footer.footer-premium .footer-brand img {
    width: 230px;
    max-width: 100%;
    display: block;
    margin: 0 0 20px;
}

#footer.footer-premium .footer-brand p {
    max-width: 420px;
    margin: 0 0 22px;
    color: rgba(255,255,255,.72);
    font-size: 14px;
    line-height: 1.8;
}

#footer.footer-premium .footer-brand p strong {
    color: #fff;
    font-weight: 800;
}


#footer.footer-premium .footer-call {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-height: 46px;
    padding: 12px 18px;
    background: var(--orange);
    color: #fff;
    border: 2px solid var(--orange);
    border-radius: 8px;
    font-size: 14px;
    font-weight: 900;
    line-height: 1;
    text-decoration: none;
    transition: background .2s ease, color .2s ease, border-color .2s ease;
}

#footer.footer-premium .footer-call:hover {
    background: transparent;
    color: #fff;
    border-color: #fff;
}

#footer.footer-premium .footer-call i {
    font-size: 13px;
}


#footer.footer-premium .footer-col {
    min-width: 0;
}

#footer.footer-premium .footer-col h3 {
    position: relative;
    margin: 0 0 18px;
    padding-bottom: 12px;
    color: #fff;
    font-size: 15px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: .4px;
}

#footer.footer-premium .footer-col h3::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 38px;
    height: 3px;
    background: var(--orange);
    border-radius: 999px;
}

#footer.footer-premium .footer-col ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: 10px;
}

#footer.footer-premium .footer-col li {
    margin: 0;
    color: rgba(255,255,255,.72);
    font-size: 13px;
    line-height: 1.6;
}

#footer.footer-premium .footer-col a {
    position: relative;
    display: inline-block;
    color: rgba(255,255,255,.72);
    font-size: 13px;
    line-height: 1.6;
    text-decoration: none;
    transition: color .2s ease, transform .2s ease;
}

#footer.footer-premium .footer-col a:hover {
    color: #fff;
    transform: translateX(3px);
}


#footer.footer-premium .footer-contact ul {
    gap: 13px;
}

#footer.footer-premium .footer-contact li {
    display: grid;
    grid-template-columns: 18px 1fr;
    gap: 10px;
    align-items: flex-start;
}

#footer.footer-premium .footer-contact i {
    margin-top: 4px;
    color: var(--orange);
    font-size: 13px;
}

#footer.footer-premium .footer-contact span,
#footer.footer-premium .footer-contact a {
    color: rgba(255,255,255,.76);
}

#footer.footer-premium .footer-contact a:hover {
    color: #fff;
}


#footer.footer-premium  .footer-quote {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    width: 100%;
    min-height: 44px;
    margin-top: 20px;
    padding: 12px 14px;
    background: #fff;
    color: var(--orange)!important;
    border: 2px solid #fff;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 900;
    text-decoration: none;
    transition: background .2s ease, color .2s ease, border-color .2s ease;
}

#footer.footer-premium .footer-quote:hover {
    background: var(--orange);
    color: #fff;
    border-color: var(--orange);
}

#footer.footer-premium .footer-quote i {
    font-size: 12px;
    transition: transform .2s ease;
}

#footer.footer-premium .footer-quote:hover i {
    transform: translateX(3px);
}


#footer.footer-premium .footer-seo {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 44px;
    padding: 18px;
    background: rgba(255,255,255,.06);
    border: 1px solid rgba(255,255,255,.12);
    border-radius: 10px;
}

#footer.footer-premium .footer-seo strong {
    margin-right: 6px;
    color: #fff;
    font-size: 13px;
    font-weight: 900;
}

#footer.footer-premium .footer-seo a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 30px;
    padding: 7px 11px;
    background: rgba(255,255,255,.08);
    color: rgba(255,255,255,.78);
    border: 1px solid rgba(255,255,255,.10);
    border-radius: 999px;
    font-size: 12px;
    font-weight: 800;
    line-height: 1;
    transition: background .2s ease, color .2s ease, border-color .2s ease;
}

#footer.footer-premium .footer-seo span:hover {
    background: var(--orange);
    color: #fff;
    border-color: var(--orange);
}


#footer.footer-premium .footer-legal {
    margin-top: 30px;
    padding-top: 24px;
    border-top: 1px solid rgba(255,255,255,.12);
}

#footer.footer-premium .footer-legal ul {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 13px 22px;
    padding: 0;
    margin: 0;
}

#footer.footer-premium .footer-legal li {
    margin: 0;
}

#footer.footer-premium .footer-legal a {
    position: relative;
    color: rgba(255,255,255,.60);
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: .35px;
    text-decoration: none;
    transition: color .2s ease;
}

#footer.footer-premium .footer-legal a:hover {
    color: #fff;
}

#footer.footer-premium .footer-legal a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -5px;
    width: 100%;
    height: 2px;
    background: var(--orange);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform .2s ease;
}

#footer.footer-premium .footer-legal a:hover::after {
    transform: scaleX(1);
}


#footer.footer-premium .footer-bottom {
    margin-top: 24px;
    text-align: center;
}

#footer.footer-premium .footer-bottom p {
    margin: 0;
    color: rgba(255,255,255,.52);
    font-size: 12px;
    line-height: 1.7;
    font-weight: 600;
}


@media (max-width: 1100px) {
    #footer.footer-premium .footer-main {
        grid-template-columns: 1fr 1fr;
        gap: 34px 40px;
    }

    #footer.footer-premium .footer-brand {
        grid-column: 1 / -1;
    }

    #footer.footer-premium .footer-brand p {
        max-width: 720px;
    }

    #footer.footer-premium .footer-call {
        width: fit-content;
    }
}

@media (max-width: 768px) {
    #footer.footer-premium {
        padding: 58px 0 26px;
    }

    #footer.footer-premium .footer-container {
        width: calc(100% - 32px);
    }

    #footer.footer-premium .footer-main {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    #footer.footer-premium .footer-brand img {
        width: 205px;
    }

    #footer.footer-premium .footer-brand p {
        font-size: 13px;
        line-height: 1.75;
    }

    #footer.footer-premium .footer-call {
        width: 100%;
    }

    #footer.footer-premium .footer-quote {
        width: 100%;
    }

    #footer.footer-premium .footer-seo {
        margin-top: 34px;
        padding: 16px;
        gap: 8px;
    }

    #footer.footer-premium .footer-seo strong {
        width: 100%;
        margin-bottom: 2px;
    }

    #footer.footer-premium .footer-legal ul {
        justify-content: flex-start;
        gap: 12px 16px;
    }

    #footer.footer-premium .footer-bottom {
        text-align: left;
    }
}

@media (max-width: 420px) {
    #footer.footer-premium .footer-container {
        width: calc(100% - 26px);
    }

    #footer.footer-premium .footer-brand img {
        width: 190px;
    }

    #footer.footer-premium .footer-col h3 {
        font-size: 14px;
    }

    #footer.footer-premium .footer-col a,
    #footer.footer-premium .footer-col li {
        font-size: 12.8px;
    }

    #footer.footer-premium .footer-seo span {
        font-size: 11.5px;
        padding: 7px 10px;
    }
}

@media (max-width: 992px) {
    .contact-premium .contact-grid {
        grid-template-columns: 1fr;
        gap: 34px;
    }

    .contact-info h2 {
        font-size: 34px;
    }
}

@media (max-width: 768px) {
    .contact-premium {
        padding: 64px 0;
    }

    .contact-info h2 {
        font-size: 29px;
    }

    .contact-premium .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .contact-premium .contact-form {
        padding: 22px;
        border-radius: 22px;
    }

    .contact-urgent {
        grid-template-columns: 44px 1fr;
    }

    .urgent-call {
        grid-column: 1 / -1;
        width: 100%;
    }
}

@media (max-width: 420px) {
    .contact-line {
        align-items: flex-start;
    }

    .contact-line[href^="tel"] strong {
        font-size: 17px;
    }

    .contact-premium input,
    .contact-premium select,
    .contact-premium textarea {
        font-size: 13px;
        padding: 13px 14px;
    }
}
@media (max-width: 768px) {
    .faq-seo details[open] {
        padding-inline: 12px;
        margin-inline: -12px;
    }

    .faq-seo .acc-body p {
        font-size: 13px;
        line-height: 1.75;
    }
}



/* choose */
.choose {
    padding: 64px 0;
    box-shadow: 0 0 10px inset #00000024;
}
.choose__grid{
    display:grid;
    grid-template-columns: 1.05fr .95fr;
    gap:28px;
    align-items:center;
}
.choose h2{margin:0 0 10px; font-size:32px; color:var(--navy)}
.choose p{margin:0 0 14px; color:rgba(25,47,76,.68); line-height:1.8; font-size:14px}
.accordion {
    border-top: 1px solid rgba(25,47,76,.15);
}

.accordion details {
    border-bottom: 1px solid rgba(25,47,76,.15);
}

.accordion summary {
    list-style: none;
    cursor: pointer;
    padding: 18px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    font-weight: 700;
    color: var(--navy);
    font-size: 15px;
}

.accordion summary::-webkit-details-marker {
    display: none;
}

/* Texte */
.accordion summary span {
    flex: 1;
}

/* Icône + / - */
.acc-icon {
    width: 18px;
    height: 18px;
    position: relative;
    flex-shrink: 0;
}

.acc-icon::before,
.acc-icon::after {
    content: "";
    position: absolute;
    background: var(--navy);
    transition: transform .25s ease, opacity .25s ease;
}

/* barre horizontale */
.acc-icon::before {
    width: 18px;
    height: 2px;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
}

/* barre verticale */
.acc-icon::after {
    width: 2px;
    height: 18px;
    left: 50%;
    top: 0;
    transform: translateX(-50%);
}

/* quand ouvert → devient "-" */
.accordion details[open] .acc-icon::after {
    opacity: 0;
    transform: translateX(-50%) scaleY(0);
}

.accordion details[open] summary {
    color: var(--blue);
}

/* Contenu */
.acc-body {
    padding: 0 0 18px 0;
    font-size: 14px;
    line-height: 1.7;
    color: rgba(25,47,76,.7);
    max-width: 820px;
}
.choose__content{
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.acc__body{margin-top:10px; color:rgba(25,47,76,.65); line-height:1.7; font-size:13px}
.choose__img img{
    width: 100%;
    height: 100%;
    border-radius: 1em;
    z-index: 2;
    position: relative;
}
.choose__img::before {
    content: "";
    inset: 0;
    right: -4em;
    left: 4em;
    top: 2em;
    bottom: -2em;
    border: 2px solid rgba(0,0,0,0.08);

    position: absolute;
    border-radius: 22px;

}
.choose__img{
    position: relative;
}
/* what else */
.whatElse{padding:64px 0 20px; background:linear-gradient(180deg, rgba(233,236,241,.55), #fff)}
.iconCards{
    display:grid;
    grid-template-columns: repeat(4, 1fr);
    gap:14px;
}
.iconCard{
    background:var(--navy);
    color:#fff;
    border-radius:20px;
    padding:18px;
    box-shadow: var(--shadow);
}
.iconCard strong{display:block; font-size:14px}
.iconCard small{display:block; opacity:.8; margin-top:6px}

.clients{
    padding: 70px 0;
    background: linear-gradient(180deg, #fff, rgba(233,236,241,.6));
}

.clients-swiper{
    margin-top: 32px;
}

.client{
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}

.client-img{
    width: 100%;
    height: 180px;
    border-radius: 18px;
    overflow: hidden;
    background: #f2f4f7;
    box-shadow: 0 18px 40px rgba(18,36,60,.18);
    position: relative;
}

.client-img::after{
    /* léger reflet / vernis */
    content:"";
    position:absolute;
    inset:0;
    background: linear-gradient(
            120deg,
            rgba(255,255,255,.35),
            rgba(255,255,255,0) 55%
    );
    pointer-events:none;
}

.client-img img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.client-name{
    font-weight: 700;
    font-size: 14px;
    color: var(--navy);
    letter-spacing: .2px;
}

.clients-swiper {
    padding: 30px 0 50px;
}

.client {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 14px;
    width: 400px!important;
}

/* IMAGE */
.client-img {
    width: 100%;
    height: 380px;
    background: #f4f6f9;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 18px 40px rgba(18,36,60,.18);
    position: relative;
}



/* reflet premium */
.client-img::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
            120deg,
            rgba(255,255,255,.35),
            rgba(255,255,255,0) 55%
    );
    pointer-events: none;
}

/* NOM ENSEIGNE */
.client-name {
    font-size: 20px;
    font-weight: 800;
    letter-spacing: .6px;
    color: var(--navy);
    text-transform: uppercase;
    position: relative;
    text-align: center;
}

/* petit trait marque */
.client-name::after {
    content: "";
    display: block;
    width: 36px;
    height: 3px;
    margin: 8px auto 0;
    background: var(--orange);
    border-radius: 2px;
}
.client-name small{
    display:block;
    font-size:13px;
    opacity:.7;
    margin-top:4px;
    text-align: center
}
.contact{
    background: var(--navy);
    color: #fff;
    padding: 80px 0;
}

.contact-grid{
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: flex-start;
}

/* LEFT */
.contact-info h2{
    margin: 0 0 10px;
    font-size: 32px;
}

.contact-desc{
    color: rgba(255,255,255,.7);
    font-size: 15px;
    margin-bottom: 28px;
}

.contact-lines{
    display: grid;
    gap: 18px;
    margin-bottom: 32px;
}

.contact-line{
    display: flex;
    align-items: center;
    gap: 14px;
}

.contact .icon{
    width: 42px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 16px;
    border-radius: 5px;
}

.bg-blue{background: var(--blue)}
.bg-orange{background: var(--orange)}
.contact .bg-dark{background: #3b916d}

.contact-value{
    font-size: 14px;
    color: rgba(255,255,255,.9);
}

.contact-value.big{
    font-size: 20px;
    font-weight: 700;
}

/* URGENCE */
.contact-urgent{
    background: rgba(255,255,255,.06);
    padding: 22px;
}

.contact-urgent strong{
    display: block;
    margin-bottom: 6px;
    font-size: 16px;
}

.contact-urgent p{
    font-size: 14px;
    color: rgba(255,255,255,.8);
    margin-bottom: 14px;
}

/* FORM */
.contact-form{
    background: rgba(255,255,255,.04);
    padding: 28px;
}

.form-row{
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
}

.contact-form input,
.contact-form select,
.contact-form textarea{
    width: 100%;
    padding: 14px 16px;
    background: rgba(0,0,0,.25);
    border: 1px solid rgba(255,255,255,.18);
    color: #fff;
    font-size: 14px;
    margin-bottom: 14px;
}

.contact-form textarea{
    resize: vertical;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder{
    color: rgba(255,255,255,.55);
}

/* RGPD */
.rgpd{
    margin-top: 14px;
    font-size: 12px;
    text-align: center;
    color: rgba(255,255,255,.55);
}
.contact .btn--primary {
    background: var(--orange);
    color: #fff;
    font-size: 1em;
}

.btn{
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: .6em 1.2em;
    border-radius: .3em;
    font-weight: 700;
    border: 2px solid transparent;
    cursor: pointer;
    overflow: hidden;
    text-decoration: none;
    transform: translateY(0);
    transition:
            transform .25s ease,
            box-shadow .25s ease,
            background .25s ease;
}

/* effet lumière */
.btn::after{
    content:"";
    position:absolute;
    top:0;
    left:-75%;
    width:50%;
    height:100%;
    background: linear-gradient(
            120deg,
            transparent,
            rgba(255,255,255,0.35),
            transparent
    );
    transform: skewX(-20deg);
}

/* hover global */
.btn:hover{
    transform: translateY(-3px);
}

/* animation sweep */
.btn:hover::after{
    left:120%;
    transition: .7s ease;
}

/* click */
.btn:active{
    transform: translateY(-1px) scale(.98);
}

.btn--primary{
    background: var(--orange);
    color:#fff;
}

.btn--outline{
    background:#fff;
    border-color:rgba(25,47,76,.18);
    color:var(--navy);
}

.btn--outline:hover{
    box-shadow: 0 15px 35px rgba(0,0,0,.15);
}

.btn--soft{
    background:rgba(40,89,155,.10);
    color:var(--blue);
}

.btn--soft:hover{
    box-shadow: 0 12px 28px rgba(40,89,155,.2);
}

/* compat liens */
a.btn,
button.btn{
    display:inline-flex;
}

.reassurance{
    padding: 40px 0;
    background: #fff;
}

.reassurance-grid{
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
}

.reassurance-item{
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 18px 16px;
    background: #fff;
    border-radius: 16px;
    border: 1px solid rgba(25,47,76,.10);
    box-shadow: 0 10px 25px rgba(25,47,76,.08);
    transition: transform .25s ease, box-shadow .25s ease;
}

.reassurance-item:hover{
    transform: translateY(-4px);
    box-shadow: 0 18px 40px rgba(25,47,76,.12);
}

.reassurance-icon{
    width: 44px;
    height: 44px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    color:#fff;
    flex-shrink: 0;
}
.reassurance-icon.bg-dark{background: #3b916d}
.reassurance-content{
    display:flex;
    flex-direction:column;
    line-height:1.35;
}

.reassurance-content strong{
    font-size:14px;
    font-weight:700;
    color: var(--navy);
}

.reassurance-content span{
    font-size:13px;
    color: rgba(25,47,76,.65);
}


@media (max-width: 992px){
    .reassurance-grid{
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px){
    .reassurance-grid{
        grid-template-columns: 1fr;
    }

    .reassurance-item{
        padding:16px;
    }
}
#footer{
    position: relative;
    background:#1a1a1a;
    color: #fff;
    padding: 70px 20px 36px;
    text-align: center;
    overflow: hidden;
}
#footer::before{
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
            120deg,
            rgba(255,255,255,.22),
            rgba(255,255,255,.06) 35%,
            rgba(255,255,255,0) 60%
    );
    opacity: .45;
    pointer-events: none;
}

.footer-container{
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 32px;
}

/* LOGO */
.footer-logo img {
    width: 260px;
    max-width: 90%;
}
/* NAVS */
.footer-links ul,
.footer-legal ul{
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 22px;
    padding: 0;
    margin: 0;
}

.footer-links a,
.footer-legal a{
    color: rgba(255,255,255,.75);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: .4px;
    text-transform: uppercase;
}

.footer-links a:hover,
.footer-legal a:hover{
    color: #fff;
}

/* INFOS */
.footer-info{
    font-size: 13px;
    color: rgba(255,255,255,.7);
    line-height: 1.8;
}

.footer-info a{
    color: rgba(255,255,255,.9);
}

/* BAS DE FOOTER */
.footer-bottom{
    width: 100%;
    border-top: 1px solid rgba(255,255,255,.15);
    padding-top: 18px;
    font-size: 12px;
    color: rgba(255,255,255,.55);
}
#footer a{
    color: #fff;
}

#footer a:hover{
    color: #fff;
}

.footer-info{
    color: #fff;
    font-weight: 700;
}

.footer-bottom{
    border-top: 1px solid rgba(0,0,0,.15);
    color: #fff;
    font-weight: 700;
}
.reviews{

    padding:70px 0;
    background:#f4f7fb;

}

.reviews-head{

    display:flex;
    align-items:center;
    justify-content:space-between;
    margin-bottom:40px;
    flex-wrap:wrap;
    gap:20px;

}

.reviews-head h2{

    font-size:32px;
    color:var(--navy);
    margin:0;

}

.reviews-rating{

    display:flex;
    align-items:center;
    gap:12px;

}

.rating-score{

    font-size:28px;
    font-weight:800;
    color:var(--navy);

}

.rating-stars{

    color:#f6b01e;
    font-size:16px;

}

.rating-count{

    font-size:14px;
    color:rgba(25,47,76,.6);

}

.reviews-grid{

    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:24px;

}

.review-card{

    background:#fff;
    padding:22px;
    border-radius:18px;
    border:1px solid rgba(25,47,76,.08);
    box-shadow:0 12px 30px rgba(25,47,76,.08);

}

.review-stars{

    color:#f6b01e;
    font-size:14px;
    margin-bottom:10px;

}

.review-card p{

    font-size:14px;
    line-height:1.7;
    color:rgba(25,47,76,.8);
    margin-bottom:12px;

}

.review-card strong{

    font-size:13px;
    color:var(--navy);

}

.google-reviews-section {
    position: relative;
}

.google-reviews-layout {
    display: grid;
    grid-template-columns: 320px minmax(0, 1fr);
    gap: 34px;
    align-items: stretch;
    max-width: 89vw;
    margin-right: 0;
    margin-left: auto;
    width: 100%;
}

#page4 .hero-big-cta .btn--white {
    background: #fff;
    color: var(--orange);
    border: 2px solid #fff;
    border-radius: 10px;
    min-height: 56px;
    font-size: 15px;
    font-weight: 900;
}

#page4 .hero-big-cta .btn--white:hover {
    background: var(--orange);
    color: #fff;
    border-color: var(--orange);
}

#page4 .hero-big-cta .btn--primary {
    background: transparent;
    color: #fff;
    border: 2px solid rgba(255,255,255,.30);
    border-radius: 10px;
    min-height: 52px;
}

#page4 .hero-big-cta .btn--primary:hover {
    background: rgba(255,255,255,.10);
    color: #fff;
}



#page4 .google-reviews-summary {
    background: var(--navy);
}

#page4 .google-review-card {
    box-shadow: none;
}

#page4 .entreprise-story .seo-intro p strong,
#page4 .entreprise-method .seo-intro p strong {
    color: var(--navy);
    font-weight: 800;
}

#page4 .entreprise-panels {
    align-self: stretch;
}


#page4 .entreprise-stat-card {
    position: relative;
    min-height: 210px;
    padding: 26px;
    background: var(--navy);
    color: #fff;
    border: 1px solid rgba(25,47,76,.10);
    overflow: hidden;
}

#page4 .entreprise-stat-card::after {
    content: "";
    position: absolute;
    right: -42px;
    bottom: -42px;
    width: 130px;
    height: 130px;
    border-radius: 50%;
    background: rgba(237, 61, 61, .18);
    pointer-events: none;
}

#page4 .entreprise-stat-number {
    position: relative;
    z-index: 2;
    display: block;
    margin-bottom: 10px;
    color: var(--orange);
    font-size: 72px;
    line-height: .85;
    font-weight: 900;
    letter-spacing: -2px;
}

#page4 .entreprise-stat-card h3 {
    position: relative;
    z-index: 2;
    margin: 0 0 10px;
    color: #fff;
    font-size: 23px;
    line-height: 1.18;
}

#page4 .entreprise-stat-card p {
    position: relative;
    z-index: 2;
    margin: 0;
    color: rgba(255,255,255,.76);
    font-size: 13px;
    line-height: 1.75;
}


#page4 .entreprise-panels .seo-panel:not(.entreprise-stat-card) {
    background: #f4f7fb;
    border: 1px solid rgba(25,47,76,.10);
    transition: transform .2s ease, border-color .2s ease;
}

#page4 .entreprise-panels .seo-panel:not(.entreprise-stat-card):hover {
    transform: translateY(-3px);
    border-color: rgba(237, 61, 61, .28);
}

#page4 .entreprise-panels .seo-panel h3 {
    font-size: 18px;
}


#page4 .entreprise-values {
}

#page4 .entreprise-values .reassurance-grid {
    align-items: stretch;
}

#page4 .entreprise-values .reassurance-item {
    height: 100%;
}


#page4 .entreprise-duo h2 {
    margin: 0 0 14px;
    font-size: 28px;
    line-height: 1.15;
    letter-spacing: -.4px;
}

#page4 .entreprise-duo p {
    max-width: 620px;
}

#page4 .entreprise-duo ul {
    margin-top: 18px;
}


#page4 .method-steps {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
}

#page4 .method-steps .seo-panel {
    position: relative;
    min-height: 175px;
    padding: 22px;
    background: #fff;
    border: 1px solid rgba(25,47,76,.10);
    transition: transform .2s ease, border-color .2s ease;
}

#page4 .method-steps .seo-panel:hover {
    transform: translateY(-3px);
    border-color: rgba(237, 61, 61, .28);
}

#page4 .method-steps .seo-panel h3 {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 9px;
    color: var(--navy);
    font-size: 17px;
}

#page4 .method-steps .seo-panel h3::before {
    content: "";
    display: inline-flex;
    width: 8px;
    height: 8px;
    flex-shrink: 0;
    background: var(--orange);
    border-radius: 50%;
}


#page4 .zones-section {
    background: var(--navy);
}

#page4 .zones-content p strong {
    color: #fff;
}

#page4 .zones-phone {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-height: 48px;
    padding: 12px 17px;
    background: rgba(255,255,255,.08);
    color: #fff;
    border: 1px solid rgba(255,255,255,.18);
    border-radius: 10px;
    font-size: 14px;
    font-weight: 900;
    line-height: 1;
    transition: background .2s ease, color .2s ease, border-color .2s ease, transform .2s ease;
}

#page4 .zones-phone i {
    color: var(--orange);
    font-size: 13px;
}

#page4 .zones-phone:hover {
    background: #fff;
    color: var(--orange);
    border-color: #fff;
    transform: translateY(-2px);
}



.google-reviews-summary {
    position: relative;
    background:
            linear-gradient(145deg, rgba(15, 36, 61, .96), rgba(25, 47, 76, .92)),
            var(--navy);
    color: #fff;
    border-radius: 28px;
    padding: 30px;
    overflow: hidden;
    z-index: 999;
    box-shadow: 0 24px 55px rgba(15, 36, 61, .20);
}

.google-reviews-summary::before {
    content: "";
    position: absolute;
    width: 180px;
    height: 180px;
    right: -70px;
    top: -70px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    filter: blur(4px);
}

.google-reviews-summary::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(120deg, rgba(255,255,255,.16), transparent 42%);
    pointer-events: none;
}

.google-reviews-summary > * {
    position: relative;
    z-index: 2;
}

.google-reviews-kicker {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 7px 12px;
    margin-bottom: 20px;
    background: rgba(255,255,255,.10);
    border: 1px solid rgba(255,255,255,.16);
    border-radius: 999px;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: .4px;
    text-transform: uppercase;
}

.google-reviews-kicker::before {
    content: "";
    width: 8px;
    height: 8px;
    background: var(--orange);
    border-radius: 50%;
    box-shadow: 0 0 0 5px rgba(237, 61, 61, .18);
}

.google-reviews-summary h2 {
    margin: 0 0 24px;
    font-size: 28px;
    line-height: 1.18;
    letter-spacing: -.5px;
}

.google-score-box {
    padding: 20px;
    margin-bottom: 22px;
    background: rgba(255,255,255,.08);
    border: 1px solid rgba(255,255,255,.14);
    border-radius: 22px;
}

.google-score-main {
    display: flex;
    align-items: flex-end;
    gap: 4px;
    margin-bottom: 8px;
}

.google-score-main strong {
    font-size: 54px;
    line-height: .9;
    font-weight: 900;
}

.google-score-main span {
    font-size: 18px;
    font-weight: 800;
    color: rgba(255,255,255,.72);
}

.google-stars,
.review-stars-line {
    display: flex;
    gap: 3px;
    color: #ffbf18;
}

.google-stars {
    font-size: 17px;
    margin-bottom: 10px;
}

.google-score-box p {
    margin: 0;
    color: rgba(255,255,255,.74);
    font-size: 13px;
    line-height: 1.6;
}

.google-score-box p strong {
    color: #fff;
}

.google-review-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    padding: 13px 16px;
    background: var(--orange);
    color: #fff;
    border-radius: 12px;
    font-weight: 800;
    font-size: 13px;
    box-shadow: 0 16px 34px rgba(237, 61, 61, .28);
    transition: transform .25s ease, box-shadow .25s ease;
}

.google-review-link:hover {
    transform: translateY(-3px);
    box-shadow: 0 22px 44px rgba(237, 61, 61, .34);
}

.google-reviews-carousel {
    min-width: 0;
    padding: 4px 0;
    max-width: 100%;
}

.google-reviews-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 22px;
    margin-bottom: 18px;
    margin: 1em 2em;
}

.google-reviews-top p {
    max-width: 620px;
    margin: 0;
    color: rgba(25, 47, 76, .68);
    font-size: 14px;
    line-height: 1.7;
}

.google-reviews-nav {
    display: flex;
    gap: 10px;
    flex-shrink: 0;
}

.google-reviews-nav button {
    width: 44px;
    height: 44px;
    border: 0;
    border-radius: 14px;
    background: #fff;
    color: var(--navy);
    box-shadow: 0 12px 28px rgba(25, 47, 76, .10);
    cursor: pointer;
    transition: transform .25s ease, background .25s ease, color .25s ease;
}

.google-reviews-nav button:hover {
    transform: translateY(-2px);
    background: var(--orange);
    color: #fff;
}

/* Important : neutralise le CSS global .swiper-slide du site */
.google-reviews-section .swiper-wrapper {
    align-items: stretch;
}

.google-reviews-section .swiper-slide {
    width: 335px !important;
    height: auto;
    padding: 0 !important;
}

.about__content h2 {
    margin: 0 0 16px;
    color: var(--navy);
    font-size: 34px;
    line-height: 1.16;
    letter-spacing: -.5px;
}

.about__content p {
    margin: 0 0 22px;
    color: rgba(25, 47, 76, .72);
    font-size: 15px;
    line-height: 1.85;
}

.about__content p strong {
    color: var(--navy);
    font-weight: 900;
}

.about__content .ticks {
    display: grid;
    gap: 12px;
    list-style: none;
    padding: 0;
    margin: 0;
}

.about__content .ticks li {
    position: relative;
    padding: 14px 15px 14px 46px;
    background: #f4f7fb;
    border: 1px solid rgba(25, 47, 76, .08);
    border-radius: 12px;
    color: rgba(25, 47, 76, .78);
    font-size: 14px;
    font-weight: 700;
    line-height: 1.55;
}

.about__content .ticks li::before {
    content: "✓";
    position: absolute;
    left: 14px;
    top: 50%;
    width: 22px;
    height: 22px;
    transform: translateY(-50%);
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--orange);
    color: #fff;
    border-radius: 50%;
    font-size: 12px;
    font-weight: 900;
}

.about__content .ticks li:hover {
    border-color: rgba(237, 61, 61, .26);
    background: #fff;
}

/* Si le bloc est sur fond sombre */
.duo .about__content,
.about-dark .about__content {
    background: rgba(255,255,255,.06);
    border-color: rgba(255,255,255,.12);
}

.duo .about__content h2,
.about-dark .about__content h2 {
    color: #fff;
}

.duo .about__content p,
.about-dark .about__content p {
    color: rgba(255,255,255,.74);
}

.duo .about__content p strong,
.about-dark .about__content p strong {
    color: #fff;
}

.duo .about__content .ticks li,
.about-dark .about__content .ticks li {
    background: rgba(255,255,255,.07);
    border-color: rgba(255,255,255,.12);
    color: rgba(255,255,255,.82);
}

.duo .about__content .ticks li:hover,
.about-dark .about__content .ticks li:hover {
    background: rgba(255,255,255,.10);
    border-color: rgba(237, 61, 61, .42);
}
.heroFloat a.heroFloat__right{
    display: flex!important;
    align-items: center!important;
    gap: 15px!important;
}
@media (max-width: 768px) {
    .about__content {
        padding: 22px;
        border-radius: 16px;
    }

    .about__content h2 {
        font-size: 27px;
    }

    .about__content p {
        font-size: 14px;
        line-height: 1.75;
    }

    .about__content .ticks li {
        padding: 13px 14px 13px 42px;
        font-size: 13px;
    }

    .about__content .ticks li::before {
        left: 13px;
        width: 20px;
        height: 20px;
    }
}
.google-reviews-swiper {
    overflow: hidden;
    padding: 8px 2px 26px;
}

.google-review-card {
    position: relative;
    height: 100%;
    min-height: 255px;
    padding: 22px;
    background: rgba(255,255,255,.88);
    border: 1px solid rgba(25, 47, 76, .10);
    border-radius: 24px;
    box-shadow: 0 18px 25px rgba(25, 47, 76, .10);
    backdrop-filter: blur(10px);
    overflow: hidden;
    transition: transform .28s ease, box-shadow .28s ease, border-color .28s ease;
}

.google-review-card::before {
    content: "“";
    position: absolute;
    right: 18px;
    bottom: -36px;
    font-size: 130px;
    line-height: 1;
    font-weight: 900;
    color: rgba(237, 61, 61, .08);
    font-family: Georgia, serif;
}

.google-review-card:hover {
    transform: translateY(-6px);
    border-color: rgba(237, 61, 61, .22);
    box-shadow: 0 28px 60px rgba(25, 47, 76, .16);
}

.review-card-head {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 46px 1fr 28px;
    gap: 12px;
    align-items: center;
    margin-bottom: 14px;
}

.review-avatar {
    width: 46px;
    height: 46px;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--orange);
    color: #fff;
    font-size: 18px;
    font-weight: 900;
    box-shadow: 0 12px 24px rgba(237, 61, 61, .22);
}

.review-avatar--blue {
    background: var(--blue);
    box-shadow: 0 12px 24px rgba(40, 89, 155, .22);
}

.review-avatar--dark {
    background: var(--navy);
    box-shadow: 0 12px 24px rgba(15, 36, 61, .22);
}

.review-card-head strong {
    display: block;
    color: var(--navy);
    font-size: 14px;
    line-height: 1.25;
}

.review-card-head span {
    display: block;
    margin-top: 3px;
    color: rgba(25, 47, 76, .52);
    font-size: 12px;
    font-weight: 600;
}

.google-mark {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    color: var(--blue);
    font-weight: 900;
    font-size: 16px;
    box-shadow: 0 8px 18px rgba(25, 47, 76, .10);
}

.review-stars-line {
    position: relative;
    z-index: 2;
    font-size: 13px;
    margin-bottom: 13px;
}

.google-review-card p {
    position: relative;
    z-index: 2;
    margin: 0 0 18px;
    color: rgba(25, 47, 76, .76);
    font-size: 14px;
    line-height: 1.72;
}

.review-service {
    position: relative;
    z-index: 2;
    display: inline-flex;
    padding: 7px 11px;
    background: rgba(40, 89, 155, .09);
    color: var(--blue);
    border-radius: 999px;
    font-size: 11px;
    font-weight: 800;
}


body:is(#page3, #page72, #page4, #page96) img {
    max-width: 100%;
}


body:is(#page3, #page72, #page4, #page96) .secondary-hero {
    padding: 38px 0 34px;
}

body:is(#page3, #page72, #page4, #page96) .breadcrumb {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 18px;
    color: rgba(25, 47, 76, .58);
    font-size: 13px;
    font-weight: 700;
}

body:is(#page3, #page72, #page4, #page96) .breadcrumb a {
    color: rgba(25, 47, 76, .58);
    transition: color .2s ease;
}

body:is(#page3, #page72, #page4, #page96) .breadcrumb a:hover {
    color: var(--orange);
}

body:is(#page3, #page72, #page4, #page96) .breadcrumb strong {
    color: var(--navy);
    font-weight: 800;
}

body:is(#page3, #page72, #page4, #page96) .secondary-hero__grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 380px;
    gap: 38px;
    align-items: stretch;
}

body:is(#page3, #page72, #page4, #page96) .secondary-hero h1 {
    max-width: 850px;
    margin: 0 0 14px;
    color: var(--navy);
    font-size: 38px;
    line-height: 1.12;
    letter-spacing: -.7px;
}

body:is(#page3, #page72, #page4, #page96) .secondary-hero h1 strong {
    color: var(--orange);
}

body:is(#page3, #page72, #page4, #page96) .secondary-hero__lead {
    max-width: 860px;
    margin: 0 0 20px;
    color: rgba(25, 47, 76, .72);
    font-size: 15px;
    line-height: 1.8;
}

body:is(#page3, #page72, #page4, #page96) .secondary-hero__proofs {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

body:is(#page3, #page72, #page4, #page96) .hero-proof-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 9px 12px;
    background: #fff;
    border: 1px solid rgba(25, 47, 76, .11);
    border-radius: 999px;
    color: rgba(25, 47, 76, .76);
    font-size: 12px;
    font-weight: 800;
    transition: border-color .2s ease, color .2s ease, transform .2s ease;
}

body:is(#page3, #page72, #page4, #page96) .hero-proof-pill i {
    color: var(--orange);
}

body:is(#page3, #page72, #page4, #page96) .hero-proof-pill:hover {
    transform: translateY(-2px);
    border-color: rgba(237, 61, 61, .28);
    color: var(--navy);
}


body:is(#page3, #page72, #page4, #page96) .hero-big-cta {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 24px;
    background: var(--navy);
    color: #fff;
    border-radius: 18px;
    border: 1px solid rgba(255, 255, 255, .08);
}

body:is(#page3, #page72, #page4, #page96) .hero-big-cta span {
    display: block;
    margin-bottom: 8px;
    color: rgba(255, 255, 255, .62);
    font-size: 12px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: .35px;
}

body:is(#page3, #page72, #page4, #page96) .hero-big-cta strong {
    display: block;
    margin-bottom: 10px;
    color: #fff;
    font-size: 25px;
    line-height: 1.15;
    letter-spacing: -.3px;
}

body:is(#page3, #page72, #page4, #page96) .hero-big-cta p {
    margin: 0 0 16px;
    color: rgba(255, 255, 255, .72);
    font-size: 13px;
    line-height: 1.65;
}

body:is(#page3, #page72, #page4, #page96) .hero-big-cta .btn {
    min-height: 54px;
    width: 100%;
    font-size: 15px;
}

body:is(#page3, #page72, #page4, #page96) .hero-big-cta .btn + .btn {
    margin-top: 10px;
}


body:is(#page3, #page72, #page4, #page96) .services-page-head {
    max-width: 780px;
    margin: 0 auto 34px;
    text-align: center;
}

body:is(#page3, #page72, #page4, #page96) .services-page-head .section-kicker {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 12px;
    padding: 7px 12px;
    background: rgba(237, 61, 61, .08);
    color: var(--orange);
    border: 1px solid rgba(237, 61, 61, .12);
    border-radius: 999px;
    font-size: 12px;
    font-weight: 900;
    letter-spacing: .35px;
    text-transform: uppercase;
}

body:is(#page3, #page72, #page4, #page96) .services-page-head .section-kicker::before {
    content: "";
    width: 8px;
    height: 8px;
    background: var(--orange);
    border-radius: 50%;
}

body:is(#page3, #page72, #page4, #page96) .services-page-head h2 {
    margin: 0 0 12px;
    color: var(--navy);
    font-size: 34px;
    line-height: 1.18;
    letter-spacing: -.5px;
}

body:is(#page3, #page72, #page4, #page96) .services-page-head p {
    margin: 0;
    color: rgba(25, 47, 76, .66);
    font-size: 14px;
    line-height: 1.8;
}


body:is(#page3, #page72, #page4, #page96) .services-main {
    padding: 74px 0;
}

body:is(#page3, #page72, #page4, #page96) .services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}

body:is(#page3, #page72, #page4, #page96) .service-card-pro {
    display: flex;
    flex-direction: column;
    min-height: 100%;
    background: #fff;
    border: 1px solid rgba(25, 47, 76, .10);
    border-radius: 18px;
    overflow: hidden;
    transition: transform .2s ease, border-color .2s ease;
}

body:is(#page3, #page72, #page4, #page96) .service-card-pro:hover {
    transform: translateY(-4px);
    border-color: rgba(237, 61, 61, .32);
}

body:is(#page3, #page72, #page4, #page96) .service-media-pro {
    position: relative;
    height: 220px;
    overflow: hidden;
    background: #e9edf4;
}

body:is(#page3, #page72, #page4, #page96) .service-media-pro img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .35s ease;
}

body:is(#page3, #page72, #page4, #page96) .service-card-pro:hover .service-media-pro img {
    transform: scale(1.04);
}

body:is(#page3, #page72, #page4, #page96) .service-tag-pro {
    position: absolute;
    top: 15px;
    left: 15px;
    z-index: 2;
    display: inline-flex;
    padding: 7px 11px;
    background: var(--orange);
    color: #fff;
    border-radius: 999px;
    font-size: 11px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: .3px;
}

body:is(#page3, #page72, #page4, #page96) .service-card-content {
    display: flex;
    flex-direction: column;
    flex: 1;
    padding: 22px;
}

body:is(#page3, #page72, #page4, #page96) .service-card-content h2,
body:is(#page3, #page72, #page4, #page96) .service-card-content h3 {
    margin: 0 0 10px;
    color: var(--navy);
    font-size: 21px;
    line-height: 1.25;
    letter-spacing: -.2px;
}

body:is(#page3, #page72, #page4, #page96) .service-card-content p {
    margin: 0 0 16px;
    color: rgba(25, 47, 76, .70);
    font-size: 13px;
    line-height: 1.72;
}

body:is(#page3, #page72, #page4, #page96) .service-card-content ul {
    display: grid;
    gap: 8px;
    list-style: none;
    padding: 0;
    margin: auto 0 18px;
}

body:is(#page3, #page72, #page4, #page96) .service-card-content li {
    position: relative;
    padding-left: 19px;
    color: rgba(25, 47, 76, .76);
    font-size: 12.8px;
    line-height: 1.5;
}

body:is(#page3, #page72, #page4, #page96) .service-card-content li::before {
    content: "";
    position: absolute;
    left: 0;
    top: .57em;
    width: 7px;
    height: 7px;
    background: var(--orange);
    border-radius: 50%;
}

body:is(#page3, #page72, #page4, #page96) .service-card-content a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    width: 100%;
    min-height: 44px;
    padding: 11px 14px;
    background: var(--navy);
    color: #fff;
    border: 2px solid var(--navy);
    border-radius: 8px;
    font-size: 13px;
    font-weight: 900;
    transition: background .2s ease, border-color .2s ease, transform .2s ease;
}

body:is(#page3, #page72, #page4, #page96) .service-card-content a:hover {
    background: var(--orange);
    border-color: var(--orange);
    transform: translateY(-2px);
}


body:is(#page3, #page72, #page4, #page96) .big-cta-strip {
    padding: 44px 0;
    background: #fff;
    border-top: 1px solid rgba(25, 47, 76, .10);
    border-bottom: 1px solid rgba(25, 47, 76, .10);
}

body:is(#page3, #page72, #page4, #page96) .big-cta-box {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 330px;
    gap: 28px;
    align-items: center;
    padding: 28px;
    background: var(--navy);
    color: #fff;
    border-radius: 18px;
}

body:is(#page3, #page72, #page4, #page96) .big-cta-box h2 {
    margin: 0 0 8px;
    color: #fff;
    font-size: 27px;
    line-height: 1.18;
}

body:is(#page3, #page72, #page4, #page96) .big-cta-box p {
    margin: 0;
    color: rgba(255, 255, 255, .72);
    font-size: 14px;
    line-height: 1.75;
}

body:is(#page3, #page72, #page4, #page96) .big-cta-actions {
    display: grid;
    gap: 10px;
}

body:is(#page3, #page72, #page4, #page96) .big-cta-actions .btn {
    min-height: 52px;
    width: 100%;
}


body:is(#page3, #page72, #page4, #page96) .seo-service-section {
    padding: 74px 0;
    background: #fff;
}

body:is(#page3, #page72, #page4, #page96) .seo-service-grid {
    display: grid;
    grid-template-columns: .95fr 1.05fr;
    gap: 42px;
    align-items: flex-start;
}

body:is(#page3, #page72, #page4, #page96) .seo-intro h2 {
    margin: 0 0 14px;
    color: var(--navy);
    font-size: 32px;
    line-height: 1.18;
    letter-spacing: -.4px;
}

body:is(#page3, #page72, #page4, #page96) .seo-intro p {
    margin: 0 0 18px;
    color: rgba(25, 47, 76, .68);
    font-size: 14px;
    line-height: 1.82;
}

body:is(#page3, #page72, #page4, #page96) .seo-keywords {
    display: flex;
    flex-wrap: wrap;
    gap: 9px;
    margin-top: 20px;
}

body:is(#page3, #page72, #page4, #page96) .seo-keywords span {
    display: inline-flex;
    align-items: center;
    padding: 8px 11px;
    background: #f4f7fb;
    border: 1px solid rgba(25, 47, 76, .10);
    border-radius: 999px;
    color: rgba(25, 47, 76, .76);
    font-size: 12px;
    font-weight: 800;
    transition: border-color .2s ease, color .2s ease;
}

body:is(#page3, #page72, #page4, #page96) .seo-keywords span:hover {
    border-color: rgba(237, 61, 61, .30);
    color: var(--navy);
}

body:is(#page3, #page72, #page4, #page96) .seo-panels {
    display: grid;
    gap: 14px;
}

body:is(#page3, #page72, #page4, #page96) .seo-panel {
    padding: 20px;
    background: #f4f7fb;
    border: 1px solid rgba(25, 47, 76, .10);
    border-radius: 14px;
    transition: border-color .2s ease, transform .2s ease;
}

body:is(#page3, #page72, #page4, #page96) .seo-panel:hover {
    transform: translateY(-3px);
    border-color: rgba(237, 61, 61, .28);
}

body:is(#page3, #page72, #page4, #page96) .seo-panel h3 {
    margin: 0 0 8px;
    color: var(--navy);
    font-size: 17px;
}

body:is(#page3, #page72, #page4, #page96) .seo-panel p {
    margin: 0;
    color: rgba(25, 47, 76, .72);
    font-size: 13px;
    line-height: 1.75;
}


body:is(#page3, #page72, #page4, #page96) .zones-section {
    padding: 76px 0;
    background: var(--navy);
    color: #fff;
}

body:is(#page3, #page72, #page4, #page96) .zones-grid {
    display: grid;
    grid-template-columns: .95fr 1.05fr;
    gap: 44px;
    align-items: center;
}

body:is(#page3, #page72, #page4, #page96) .zones-content {
    max-width: 640px;
}

body:is(#page3, #page72, #page4, #page96) .zones-section .section-kicker {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 14px;
    padding: 7px 12px;
    background: rgba(255,255,255,.08);
    color: #fff;
    border: 1px solid rgba(255,255,255,.14);
    border-radius: 999px;
    font-size: 12px;
    font-weight: 900;
    letter-spacing: .35px;
    text-transform: uppercase;
}

body:is(#page3, #page72, #page4, #page96) .zones-section .section-kicker::before {
    content: "";
    width: 8px;
    height: 8px;
    background: var(--orange);
    border-radius: 50%;
}

body:is(#page3, #page72, #page4, #page96) .zones-section h2 {
    margin: 0 0 16px;
    color: #fff;
    font-size: 34px;
    line-height: 1.16;
    letter-spacing: -.5px;
}

body:is(#page3, #page72, #page4, #page96) .zones-section p {
    margin: 0 0 16px;
    color: rgba(255,255,255,.74);
    font-size: 14px;
    line-height: 1.85;
}

body:is(#page3, #page72, #page4, #page96) .zones-section p strong {
    color: #fff;
    font-weight: 800;
}

body:is(#page3, #page72, #page4, #page96) .zones-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 9px;
    margin-top: 24px;
}

body:is(#page3, #page72, #page4, #page96) .zones-tags a {
    display: inline-flex;
    align-items: center;
    padding: 8px 11px;
    background: rgba(255,255,255,.08);
    border: 1px solid rgba(255,255,255,.13);
    border-radius: 999px;
    color: rgba(255,255,255,.86);
    font-size: 12px;
    font-weight: 800;
    transition: background .2s ease, color .2s ease, border-color .2s ease, transform .2s ease;
}

body:is(#page3, #page72, #page4, #page96) .zones-tags a:hover {
    background: var(--orange);
    color: #fff;
    border-color: var(--orange);
    transform: translateY(-2px);
}

body:is(#page3, #page72, #page4, #page96) .zones-cta {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 26px;
}

body:is(#page3, #page72, #page4, #page96) .zones-cta .btn {
    min-height: 48px;
}

body:is(#page3, #page72, #page4, #page96) .zones-phone {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    color: #fff;
    font-size: 14px;
    font-weight: 900;
    transition: color .2s ease;
}

body:is(#page3, #page72, #page4, #page96) .zones-phone i {
    color: var(--orange);
}

body:is(#page3, #page72, #page4, #page96) .zones-phone:hover {
    color: var(--orange);
}

body:is(#page3, #page72, #page4, #page96) .zones-card {
    padding: 28px;
    background: #fff;
    color: var(--navy);
    border-radius: 18px;
    border: 1px solid rgba(255,255,255,.10);
}

body:is(#page3, #page72, #page4, #page96) .zones-card-head {
    margin-bottom: 24px;
}

body:is(#page3, #page72, #page4, #page96) .zones-card-head span {
    display: inline-flex;
    margin-bottom: 8px;
    color: var(--orange);
    font-size: 12px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: .35px;
}

body:is(#page3, #page72, #page4, #page96) .zones-card-head h3 {
    margin: 0 0 8px;
    color: var(--navy);
    font-size: 24px;
    line-height: 1.2;
}

body:is(#page3, #page72, #page4, #page96) .zones-card-head p {
    margin: 0;
    color: rgba(25,47,76,.64);
    font-size: 13px;
    line-height: 1.65;
}

body:is(#page3, #page72, #page4, #page96) .zones-list-group {
    display: grid;
    grid-template-columns: 1.35fr .85fr;
    gap: 24px;
}

body:is(#page3, #page72, #page4, #page96) .zones-list-group h4 {
    margin: 0 0 12px;
    color: var(--navy);
    font-size: 14px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: .3px;
}

body:is(#page3, #page72, #page4, #page96) .zones-list-group ul {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 9px 12px;
    list-style: none;
    padding: 0;
    margin: 0;
}

body:is(#page3, #page72, #page4, #page96) .zones-list-group > div:nth-child(2) ul {
    grid-template-columns: 1fr;
}

body:is(#page3, #page72, #page4, #page96) .zones-list-group li {
    margin: 0;
}

body:is(#page3, #page72, #page4, #page96) .zones-list-group a {
    position: relative;
    display: inline-flex;
    align-items: center;
    padding-left: 18px;
    color: rgba(25,47,76,.76);
    font-size: 13px;
    font-weight: 800;
    line-height: 1.45;
    transition: color .2s ease, transform .2s ease;
}

body:is(#page3, #page72, #page4, #page96) .zones-list-group a::before {
    content: "";
    position: absolute;
    left: 0;
    top: .55em;
    width: 7px;
    height: 7px;
    background: var(--orange);
    border-radius: 50%;
}

body:is(#page3, #page72, #page4, #page96) .zones-list-group a:hover {
    color: var(--orange);
    transform: translateX(3px);
}

body:is(#page3, #page72, #page4, #page96) .zones-note {
    display: grid;
    grid-template-columns: 22px 1fr;
    gap: 10px;
    margin-top: 24px;
    padding: 15px;
    background: #f4f7fb;
    border: 1px solid rgba(25,47,76,.08);
    border-radius: 12px;
}

body:is(#page3, #page72, #page4, #page96) .zones-note i {
    margin-top: 3px;
    color: var(--orange);
}

body:is(#page3, #page72, #page4, #page96) .zones-note p {
    margin: 0;
    color: rgba(25,47,76,.68);
    font-size: 12.5px;
    line-height: 1.65;
}

@media (max-width: 1100px) {
    body:is(#page3, #page72, #page4, #page96) .zones-grid {
        grid-template-columns: 1fr;
    }

    body:is(#page3, #page72, #page4, #page96) .zones-content {
        max-width: none;
    }
}

@media (max-width: 768px) {
    body:is(#page3, #page72, #page4, #page96) .zones-section {
        padding: 56px 0;
    }

    body:is(#page3, #page72, #page4, #page96) .zones-section h2 {
        font-size: 28px;
    }

    body:is(#page3, #page72, #page4, #page96) .zones-card {
        padding: 22px;
    }

    body:is(#page3, #page72, #page4, #page96) .zones-list-group {
        grid-template-columns: 1fr;
    }

    body:is(#page3, #page72, #page4, #page96) .zones-list-group ul {
        grid-template-columns: 1fr;
    }

    body:is(#page3, #page72, #page4, #page96) .zones-cta .btn {
        width: 100%;
    }

    body:is(#page3, #page72, #page4, #page96) .zones-phone {
        width: 100%;
        justify-content: center;
    }
}

body:is(#page3, #page72, #page4, #page96) .process-section {
    padding: 74px 0;
    background: #f4f7fb;
}

body:is(#page3, #page72, #page4, #page96) .process-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
}

body:is(#page3, #page72, #page4, #page96) .process-card {
    padding: 22px;
    background: #fff;
    border: 1px solid rgba(25, 47, 76, .10);
    border-radius: 16px;
    transition: transform .2s ease, border-color .2s ease;
}

body:is(#page3, #page72, #page4, #page96) .process-card:hover {
    transform: translateY(-4px);
    border-color: rgba(237, 61, 61, .32);
}

body:is(#page3, #page72, #page4, #page96) .process-number {
    width: 38px;
    height: 38px;
    margin-bottom: 15px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--orange);
    color: #fff;
    font-weight: 900;
}

body:is(#page3, #page72, #page4, #page96) .process-card h3 {
    margin: 0 0 8px;
    color: var(--navy);
    font-size: 16px;
}

body:is(#page3, #page72, #page4, #page96) .process-card p {
    margin: 0;
    color: rgba(25, 47, 76, .66);
    font-size: 13px;
    line-height: 1.72;
}


@media (max-width: 1100px) {
    body:is(#page3, #page72, #page4, #page96) .secondary-hero__grid,
    body:is(#page3, #page72, #page4, #page96) .seo-service-grid,
    body:is(#page3, #page72, #page4, #page96) .zones-grid {
        grid-template-columns: 1fr;
    }

    body:is(#page3, #page72, #page4, #page96) .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    body:is(#page3, #page72, #page4, #page96) .process-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    body:is(#page3, #page72, #page4, #page96) .secondary-hero {
        padding: 32px 0;
    }

    body:is(#page3, #page72, #page4, #page96) .secondary-hero h1 {
        font-size: 30px;
    }

    body:is(#page3, #page72, #page4, #page96) .secondary-hero__lead {
        font-size: 14px;
    }

    body:is(#page3, #page72, #page4, #page96) .hero-big-cta {
        padding: 22px;
    }

    body:is(#page3, #page72, #page4, #page96) .hero-big-cta strong {
        font-size: 22px;
    }

    body:is(#page3, #page72, #page4, #page96) .services-main,
    body:is(#page3, #page72, #page4, #page96) .seo-service-section,
    body:is(#page3, #page72, #page4, #page96) .zones-section,
    body:is(#page3, #page72, #page4, #page96) .process-section,
    body:is(#page3, #page72, #page4, #page96) .big-cta-strip {
        padding: 52px 0;
    }

    body:is(#page3, #page72, #page4, #page96) .services-page-head h2,
    body:is(#page3, #page72, #page4, #page96) .seo-intro h2,
    body:is(#page3, #page72, #page4, #page96) .zones-section h2 {
        font-size: 27px;
    }

    body:is(#page3, #page72, #page4, #page96) .services-grid,
    body:is(#page3, #page72, #page4, #page96) .process-grid,
    body:is(#page3, #page72, #page4, #page96) .big-cta-box,
    body:is(#page3, #page72, #page4, #page96) .zones-card ul {
        grid-template-columns: 1fr;
    }

    body:is(#page3, #page72, #page4, #page96) .service-media-pro {
        height: 195px;
    }

    body:is(#page3, #page72, #page4, #page96) .big-cta-box {
        padding: 22px;
    }
}
/* ===== COOKIE POPUP ===== */

.popup {
    position: fixed;
    left: 24px;
    bottom: 24px;
    z-index: 9999;
    width: min(420px, calc(100% - 48px));
    padding: 24px;
    background: #ffffff;
    border: 1px solid rgba(25, 47, 76, .14);
    border-radius: 18px;
    color: #192F4C;
}

.popup::before {
    content: "";
    display: block;
    width: 46px;
    height: 4px;
    margin-bottom: 18px;
    background: #ed3d3d;
    border-radius: 999px;
}

.popup h2 {
    margin: 0 0 10px;
    color: #192F4C;
    font-size: 21px;
    font-weight: 800;
    line-height: 1.2;
    letter-spacing: -.3px;
}

.popup p {
    margin: 0;
    color: rgba(25, 47, 76, .72);
    font-size: 14px;
    line-height: 1.65;
}

.popup-buttons {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin-top: 20px;
}

.popup-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 46px;
    width: 100%;
    padding: 12px 16px;
    border-radius: 12px;
    border: 1px solid transparent;
    font-family: inherit;
    font-size: 14px;
    font-weight: 800;
    line-height: 1;
    cursor: pointer;
    transition: background .2s ease, color .2s ease, border-color .2s ease, transform .2s ease;
}

.popup-button:hover {
    transform: translateY(-1px);
}

#accept.popup-button {
    background: #ed3d3d;
    color: #ffffff;
    border-color: #ed3d3d;
}

#accept.popup-button:hover {
    background: #d96f2b;
    border-color: #d96f2b;
}

#refuse.popup-button {
    background: #F3F5F8;
    color: #192F4C;
    border-color: rgba(25, 47, 76, .12);
}

#refuse.popup-button:hover {
    background: #ffffff;
    border-color: rgba(25, 47, 76, .28);
}

.popup.is-hidden {
    display: none;
}

@media (max-width: 640px) {
    .popup {
        left: 14px;
        right: 14px;
        bottom: 14px;
        width: auto;
        padding: 20px;
        border-radius: 16px;
    }

    .popup h2 {
        font-size: 19px;
    }

    .popup p {
        font-size: 13px;
    }

    .popup-buttons {
        grid-template-columns: 1fr;
    }
}
@media (max-width: 420px) {
    body:is(#page3, #page72, #page4, #page96) .secondary-hero h1 {
        font-size: 27px;
    }

    body:is(#page3, #page72, #page4, #page96) .secondary-hero__proofs {
        display: grid;
        grid-template-columns: 1fr;
    }

    body:is(#page3, #page72, #page4, #page96) .hero-proof-pill {
        justify-content: flex-start;
        width: 100%;
    }

    body:is(#page3, #page72, #page4, #page96) .service-media-pro {
        height: 180px;
    }

    body:is(#page3, #page72, #page4, #page96) .service-card-content {
        padding: 19px;
    }
}

body:is(#page3, #page72, #page4, #page96) .hero-big-cta .btn--white {
    background: #fff;
    color: var(--orange);
    border: 2px solid #fff;
    border-radius: 10px;
    font-size: 15px;
    font-weight: 900;
    letter-spacing: .2px;
    min-height: 56px;
    padding: 15px 18px;
    text-align: center;
    transition: background .2s ease, color .2s ease, border-color .2s ease, transform .2s ease;
}

body:is(#page3, #page72, #page4, #page96) .hero-big-cta .btn--white i {
    font-size: 13px;
    transition: transform .2s ease;
}

body:is(#page3, #page72, #page4, #page96) .hero-big-cta .btn--white:hover {
    background: var(--orange);
    color: #fff;
    border-color: var(--orange);
    transform: translateY(-2px);
}

body:is(#page3, #page72, #page4, #page96) .hero-big-cta .btn--white:hover i {
    transform: translateX(4px);
}

body:is(#page3, #page72, #page4, #page96) .hero-big-cta .btn--primary {
    background: transparent;
    color: #fff;
    border: 2px solid rgba(255,255,255,.32);
    border-radius: 10px;
    font-size: 14px;
    font-weight: 900;
    min-height: 52px;
    transition: background .2s ease, color .2s ease, border-color .2s ease, transform .2s ease;
}
.btn i {
    margin: 0 10px;
}
body:is(#page3, #page72, #page4, #page96) .hero-big-cta .btn--primary:hover {
    background: rgba(255,255,255,.10);
    color: #fff;
    border-color: #fff;
    transform: translateY(-2px);
}

body:is(#page3, #page72, #page4, #page96) .zones-phone {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-height: 48px;
    padding: 12px 17px;
    background: rgba(255,255,255,.08);
    color: #fff;
    border: 1px solid rgba(255,255,255,.18);
    border-radius: 10px;
    font-size: 14px;
    font-weight: 900;
    line-height: 1;
    transition: background .2s ease, color .2s ease, border-color .2s ease, transform .2s ease;
}

body:is(#page3, #page72, #page4, #page96) .zones-phone i {
    color: var(--orange);
    font-size: 13px;
    transition: color .2s ease;
}

body:is(#page3, #page72, #page4, #page96) .zones-phone:hover {
    background: #fff;
    color: var(--orange);
    border-color: #fff;
    transform: translateY(-2px);
}

body:is(#page3, #page72, #page4, #page96) .zones-phone:hover i {
    color: var(--orange);
}

body:is(#page3, #page72, #page4, #page96) .contact-urgent,
.contact-premium .contact-urgent {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px 16px;
    padding: 18px;
    border-radius: 14px;
    background: rgba(237, 61, 61, .12);
    border: 1px solid rgba(237, 61, 61, .32);
}

body:is(#page3, #page72, #page4, #page96) .contact-urgent strong,
.contact-premium .contact-urgent strong {
    display: block;
    width: 100%;
    margin: 0;
    color: #fff;
    font-size: 15px;
    line-height: 1.35;
}

body:is(#page3, #page72, #page4, #page96) .contact-urgent p,
.contact-premium .contact-urgent p {
    flex: 1 1 260px;
    min-width: 0;
    margin: 0;
    color: rgba(255,255,255,.72);
    font-size: 13px;
    line-height: 1.6;
}

body:is(#page3, #page72, #page4, #page96) .contact-urgent .btn,
.contact-premium .contact-urgent .btn {
    flex: 0 0 auto;
    min-height: 44px;
    padding: 12px 16px;
    white-space: nowrap;
    border-radius: 9px;
}

@media (max-width: 768px) {
    body:is(#page3, #page72, #page4, #page96) .zones-phone {
        width: 100%;
    }

    body:is(#page3, #page72, #page4, #page96) .contact-urgent .btn,
    .contact-premium .contact-urgent .btn {
        width: 100%;
    }

    body:is(#page3, #page72, #page4, #page96) .contact-urgent p,
    .contact-premium .contact-urgent p {
        flex-basis: 100%;
    }
}

@media (max-width: 992px) {
    .google-reviews-layout {
        grid-template-columns: 1fr;
    }

    .google-reviews-summary {
        display: grid;
        grid-template-columns: 1fr auto;
        gap: 20px;
        align-items: center;
    }

    .google-reviews-summary h2 {
        margin-bottom: 0;
    }

    .google-score-box {
        min-width: 220px;
        margin-bottom: 0;
    }

    .google-review-link {
        grid-column: 1 / -1;
        width: fit-content;
    }
}

@media (max-width: 768px) {
    .google-reviews-section {
        padding: 52px 0 58px;
    }

    .google-reviews-summary {
        display: block;
        padding: 24px;
        border-radius: 24px;
    }

    .google-reviews-summary h2 {
        font-size: 25px;
        margin-bottom: 20px;
    }

    .google-score-box {
        margin-bottom: 18px;
    }

    .google-review-link {
        width: 100%;
    }

    .google-reviews-top {
        align-items: flex-start;
        flex-direction: column;
    }

    .google-reviews-nav {
        width: 100%;
        justify-content: flex-end;
    }

    .google-reviews-section .swiper-slide {
        width: 300px !important;
    }
}

@media (max-width: 420px) {
    .google-reviews-section .swiper-slide {
        width: 275px !important;
    }

    .google-review-card {
        padding: 19px;
        min-height: 270px;
    }

    .google-score-main strong {
        font-size: 46px;
    }
}
@media (max-width: 1200px){
    :root{ --container: 1080px; }

    .nav{ gap:14px; }
    .hero h1{ font-size: 38px; }
    .heroImg{ height: 340px; }

    .service img{ height: 150px; }
    .client-img{ height: 210px; }
}

@media (max-width: 992px){
    :root{ --container: 920px; }

    .header__inner{ gap:14px; }
    .nav{ gap:10px; flex-wrap:wrap; justify-content:center; }
    .header__cta{ gap:8px; }

    .hero{
        padding: 40px 0 26px;
        gap: 22px;
    }
    .hero h1{ font-size: 34px; }
    .heroImg{ height: 310px; }

    .about__grid{ gap: 48px; }
    .about h2{ font-size: 30px; }

    .service img{ height: 145px; }
    .client-img{ height: 200px; }

    .contact-grid,
    .contact__grid{
        grid-template-columns: 1fr;
        gap: 28px;
    }
}

@media (max-width: 768px){
    .container{ width: calc(100% - 32px); }

    /* HEADER -> stack */
    .header__inner{
        flex-direction: column;
        align-items: center;
        padding: 12px 0;
    }
    .brand img{ width: 150px; }

    .nav{
        width:100%;
        justify-content:center;
        gap: 8px;
    }
    .nav a{ padding: 8px 10px; }

    .header__cta{
        width:100%;
        justify-content:center;
        flex-wrap:wrap;
    }
    .header__cta .btn{
        padding: .55em 1.05em;
    }

    .hero{
        flex-direction: column;
        text-align: center;
        padding: 34px 0 20px;
    }
    .hero .container > div{ width:100%; }
    .hero h1{
        font-size: 30px;
        line-height: 1.15;
        margin-bottom: 10px;
    }
    .lead{ font-size: 14px; }
    .hero__actions{ justify-content:center; }

    .hero-cards{
        flex-direction: column;
        gap: 12px;
        margin-top: 18px;
    }
    .hero-card{
        justify-content: flex-start;
        padding: 14px 14px;
    }

    .heroImg{ height: 260px; border-radius: 22px; }
    .heroFloat{
        position: static;
        margin-top: 12px;
        border-radius: 16px;
    }

    .about{ padding: 48px 0; }
    .about__grid{
        flex-direction: column;
        gap: 28px;
    }
    .about__img{
        width:100% !important;
        max-height:none;
        aspect-ratio: 3 / 4;
    }

    .services{ padding: 54px 0; }
    .services-head h2{ font-size: 28px; }
    .service{ border-radius: 18px; }
    .service img{ height: 140px; border-radius: 14px; }

    .clients{ padding: 54px 0; }
    .client-img{ height: 190px; border-radius: 16px; }
    .client-name{ font-size: 18px; }

    .contact-section, .contact{ padding: 54px 0; }
    .contact-form, .contact__form{ padding: 18px; border-radius: 18px; }
    .form-row, .fRow{ grid-template-columns: 1fr; gap: 12px; }
    input, select, textarea{ margin-bottom: 12px; }
    textarea{ min-height: 120px; }

    #footer{ padding: 50px 16px 28px; }
    .footer-logo img{ width: 220px; }
    .footer-links ul, .footer-legal ul{ gap: 12px; }
}

@media (max-width: 576px){
    .container{ width: calc(100% - 28px); }

    .hero{ padding: 30px 0 18px; }
    .hero h1{ font-size: 28px; }

    .btn{
        padding: .55em 1.05em;
    }

    .heroImg{ height: 240px; }
    .hero-icon, .contact-icon, .icon{
        width: 42px; height: 42px; border-radius: 12px;
    }

    .about h2{ font-size: 28px; }
    .ticks li{ font-size: 13px; }

    .client-img{ height: 175px; }
    .client-name{ font-size: 17px; }

    input, select, textarea{
        padding: 13px 14px;
        font-size: 14px;
    }
}

@media (max-width: 420px){
    .container{ width: calc(100% - 24px); }

    .nav a{ padding: 7px 9px; font-size: 13px; }
    .hero h1{ font-size: 26px; }
    .lead{ font-size: 13px; }

    .heroImg{ height: 220px; border-radius: 20px; }
    .hero-card{ padding: 12px 12px; }

    .service img{ height: 130px; }
    .client-img{ height: 165px; }

    /* footer liens */
    .footer-links a, .footer-legal a{
        font-size: 12px;
    }
}

@media (max-width: 360px){
    .container{ width: calc(100% - 20px); }

    .brand img{ width: 140px; }

    .hero h1{ font-size: 24px; }
    .hero__actions{ gap: 10px; }
    .hero__actions .btn{ width: 100%; justify-content:center; }

    .heroImg{ height: 205px; }
    .heroFloat{ padding: 12px 12px; gap: 10px; }

    .client-name{ font-size: 16px; }
    .client-img{ height: 155px; }

    input, select, textarea{ padding: 12px 13px; }
}

@media (max-width: 320px){
    .container{ width: calc(100% - 18px); }

    .hero h1{ font-size: 23px; }
    .heroImg{ height: 195px; }

    .nav{ gap: 6px; }
    .nav a{ padding: 6px 8px; font-size: 12.5px; }

    .client-img{ height: 145px; }
    .client-name{ font-size: 15px; letter-spacing: .4px; }

    .footer-logo img{ width: 200px; }
}

@media (max-width: 300px){
    .container{ width: calc(100% - 16px); }

    body{ font-size: 13px; }
    h1, h2, h3{ word-break: break-word; hyphens:auto; }

    .hero h1{ font-size: 22px; }
    .lead{ font-size: 12.8px; }

    .heroImg{ height: 180px; }

    .hero-card{
        gap: 10px;
        padding: 11px 11px;
    }
    .hero-text strong{ font-size: 13px; }
    .hero-text span{ font-size: 12px; }

    .client-img{ height: 130px; }
    .client-name{ font-size: 14px; }

    input, select, textarea{
        padding: 11px 12px;
        font-size: 13px;
    }

    #footer{ padding: 44px 12px 24px; }
}
 .privacy-page {
     background: #F6F8FB;
     color: #192F4C;
     font-family: "Poppins", Arial, sans-serif;
 }

.privacy-page * {
    box-sizing: border-box;
}

.privacy-hero {
    padding: 72px 0 48px;
    background: #ffffff;
    border-bottom: 1px solid rgba(25, 47, 76, .10);
}

.privacy-container {
    width: min(1120px, calc(100% - 32px));
    margin: 0 auto;
}

.privacy-breadcrumb {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px;
    margin-bottom: 22px;
    color: rgba(25, 47, 76, .62);
    font-size: 13px;
    font-weight: 600;
}

.privacy-breadcrumb a {
    color: #28599B;
    text-decoration: none;
}

.privacy-breadcrumb a:hover {
    text-decoration: underline;
}

.privacy-kicker {
    display: inline-flex;
    align-items: center;
    width: fit-content;
    margin-bottom: 16px;
    padding: 8px 12px;
    border-radius: 999px;
    background: #E9ECF1;
    color: #28599B;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: .04em;
    text-transform: uppercase;
}

.privacy-hero h1 {
    max-width: 850px;
    margin: 0;
    color: #192F4C;
    font-size: clamp(34px, 5vw, 56px);
    line-height: 1.04;
    letter-spacing: -.04em;
    font-weight: 850;
}

.privacy-hero p {
    max-width: 780px;
    margin: 20px 0 0;
    color: rgba(25, 47, 76, .74);
    font-size: 17px;
    line-height: 1.75;
}

.privacy-updated {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 26px;
}

.privacy-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 9px 12px;
    border: 1px solid rgba(25, 47, 76, .12);
    border-radius: 999px;
    background: #ffffff;
    color: rgba(25, 47, 76, .78);
    font-size: 13px;
    font-weight: 700;
}

.privacy-pill i {
    color: #ed3d3d;
}

.privacy-layout {
    display: grid;
    grid-template-columns: 280px minmax(0, 1fr);
    gap: 34px;
    padding: 52px 0 70px;
    align-items: start;
}

.privacy-summary {
    position: sticky;
    top: 110px;
    padding: 22px;
    border: 1px solid rgba(25, 47, 76, .10);
    border-radius: 24px;
    background: #ffffff;
}

.privacy-summary strong {
    display: block;
    margin-bottom: 14px;
    color: #192F4C;
    font-size: 15px;
    font-weight: 850;
}

.privacy-summary nav {
    display: grid;
    gap: 8px;
}

.privacy-summary a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    padding: 10px 0;
    border-bottom: 1px solid rgba(25, 47, 76, .08);
    color: rgba(25, 47, 76, .78);
    text-decoration: none;
    font-size: 13px;
    font-weight: 700;
    line-height: 1.35;
}

.privacy-summary a:hover {
    color: #28599B;
}

.privacy-summary a:last-child {
    border-bottom: 0;
}

.privacy-content {
    display: grid;
    gap: 18px;
}

.privacy-card {
    padding: clamp(22px, 4vw, 34px);
    border: 1px solid rgba(25, 47, 76, .10);
    border-radius: 26px;
    background: #ffffff;
}

.privacy-card h2 {
    margin: 0 0 14px;
    color: #192F4C;
    font-size: clamp(22px, 3vw, 30px);
    line-height: 1.18;
    letter-spacing: -.03em;
    font-weight: 850;
}

.privacy-card h3 {
    margin: 22px 0 10px;
    color: #192F4C;
    font-size: 18px;
    line-height: 1.25;
    font-weight: 800;
}

.privacy-card p {
    margin: 0 0 13px;
    color: rgba(25, 47, 76, .76);
    font-size: 15px;
    line-height: 1.8;
}

.privacy-card p:last-child {
    margin-bottom: 0;
}

.privacy-card ul {
    display: grid;
    gap: 10px;
    margin: 14px 0 0;
    padding: 0;
    list-style: none;
}

.privacy-card li {
    position: relative;
    padding-left: 26px;
    color: rgba(25, 47, 76, .78);
    font-size: 15px;
    line-height: 1.7;
}

.privacy-card li::before {
    content: "";
    position: absolute;
    left: 0;
    top: .7em;
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: #ed3d3d;
}

.privacy-table {
    width: 100%;
    margin-top: 18px;
    border-collapse: collapse;
    overflow: hidden;
    border-radius: 18px;
    border: 1px solid rgba(25, 47, 76, .10);
    background: #ffffff;
}

.privacy-table th,
.privacy-table td {
    padding: 15px 16px;
    border-bottom: 1px solid rgba(25, 47, 76, .08);
    vertical-align: top;
    text-align: left;
    font-size: 14px;
    line-height: 1.6;
}

.privacy-table th {
    width: 30%;
    background: #F3F5F8;
    color: #192F4C;
    font-weight: 850;
}

.privacy-table td {
    color: rgba(25, 47, 76, .76);
}

.privacy-table tr:last-child th,
.privacy-table tr:last-child td {
    border-bottom: 0;
}

.privacy-alert {
    margin-top: 18px;
    padding: 18px 18px;
    border-left: 4px solid #ed3d3d;
    border-radius: 18px;
    background: #FFF7F0;
    color: rgba(25, 47, 76, .80);
    font-size: 14px;
    line-height: 1.7;
}

.privacy-contact-box {
    display: grid;
    gap: 10px;
    margin-top: 18px;
    padding: 20px;
    border-radius: 22px;
    background: #F3F5F8;
}

.privacy-contact-line {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px;
    color: rgba(25, 47, 76, .78);
    font-size: 15px;
    line-height: 1.6;
}

.privacy-contact-line strong {
    color: #192F4C;
}

.privacy-contact-line a {
    color: #28599B;
    font-weight: 800;
    text-decoration: none;
}

.privacy-contact-line a:hover {
    text-decoration: underline;
}

.privacy-cta {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 22px;
}

.privacy-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 13px 18px;
    border-radius: 14px;
    border: 1px solid #28599B;
    background: #28599B;
    color: #ffffff;
    font-size: 14px;
    font-weight: 850;
    text-decoration: none;
    transition: background .2s ease, border-color .2s ease, color .2s ease;
}

.privacy-btn:hover {
    background: #192F4C;
    border-color: #192F4C;
}

.privacy-btn--soft {
    background: #ffffff;
    color: #192F4C;
    border-color: rgba(25, 47, 76, .16);
}

.privacy-btn--soft:hover {
    background: #F3F5F8;
    color: #192F4C;
    border-color: rgba(25, 47, 76, .26);
}

@media (max-width: 920px) {
    .privacy-layout {
        grid-template-columns: 1fr;
    }

    .privacy-summary {
        position: static;
    }
}

@media (max-width: 640px) {
    .privacy-hero {
        padding: 52px 0 36px;
    }

    .privacy-layout {
        padding: 34px 0 52px;
    }

    .privacy-table,
    .privacy-table tbody,
    .privacy-table tr,
    .privacy-table th,
    .privacy-table td {
        display: block;
        width: 100%;
    }

    .privacy-table th {
        border-bottom: 0;
        padding-bottom: 8px;
    }

    .privacy-table td {
        padding-top: 8px;
    }
}


 .cc-contact-page {
     background: #F6F8FB;
     color: #192F4C;
     font-family: "Poppins", Arial, sans-serif;
 }

.cc-contact-page * {
    box-sizing: border-box;
}

.cc-contact-container {
    width: min(1180px, calc(100% - 32px));
    margin: 0 auto;
}

/* HERO */

.cc-contact-hero {
    padding: 72px 0 46px;
    background: #ffffff;
    border-bottom: 1px solid rgba(25, 47, 76, .10);
}

.cc-contact-breadcrumb {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px;
    margin-bottom: 22px;
    color: rgba(25, 47, 76, .62);
    font-size: 13px;
    font-weight: 650;
}

.cc-contact-breadcrumb a {
    color: #28599B;
    text-decoration: none;
}

.cc-contact-breadcrumb a:hover {
    text-decoration: underline;
}

.cc-contact-kicker {
    display: inline-flex;
    align-items: center;
    width: fit-content;
    margin-bottom: 16px;
    padding: 8px 12px;
    border-radius: 999px;
    background: #E9ECF1;
    color: #28599B;
    font-size: 12px;
    font-weight: 850;
    letter-spacing: .045em;
    text-transform: uppercase;
}

.cc-contact-hero-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) 420px;
    gap: 38px;
    align-items: end;
}

.cc-contact-hero h1 {
    max-width: 850px;
    margin: 0;
    color: #192F4C;
    font-size: clamp(36px, 5vw, 62px);
    line-height: 1.03;
    letter-spacing: -.045em;
    font-weight: 900;
}

.cc-contact-hero h1 strong {
    color: #28599B;
}

.cc-contact-hero p {
    max-width: 780px;
    margin: 20px 0 0;
    color: rgba(25, 47, 76, .75);
    font-size: 17px;
    line-height: 1.78;
}

.cc-contact-hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 28px;
}

.cc-contact-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    min-height: 52px;
    padding: 14px 20px;
    border-radius: 14px;
    border: 1px solid #28599B;
    background: #28599B;
    color: #ffffff;
    font-size: 14px;
    font-weight: 850;
    text-decoration: none;
    transition: background .2s ease, border-color .2s ease, color .2s ease, transform .2s ease;
}

.cc-contact-btn:hover {
    background: #192F4C;
    border-color: #192F4C;
    transform: translateY(-1px);
}

.cc-contact-btn--urgent {
    background: #ed3d3d;
    border-color: #ed3d3d;
}

.cc-contact-btn--urgent:hover {
    background: #d86f2c;
    border-color: #d86f2c;
}

.cc-contact-btn--soft {
    background: #ffffff;
    color: #192F4C;
    border-color: rgba(25, 47, 76, .16);
}

.cc-contact-btn--soft:hover {
    background: #F3F5F8;
    color: #192F4C;
    border-color: rgba(25, 47, 76, .26);
}

/* HERO SIDE CARD */

.cc-contact-quick-card {
    padding: 24px;
    border: 1px solid rgba(25, 47, 76, .10);
    border-radius: 26px;
    background: #F6F8FB;
}

.cc-contact-quick-card h2 {
    margin: 0 0 16px;
    color: #192F4C;
    font-size: 22px;
    line-height: 1.2;
    font-weight: 900;
    letter-spacing: -.025em;
}

.cc-contact-quick-list {
    display: grid;
    gap: 10px;
}

.cc-contact-quick-line {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 13px;
    border-radius: 16px;
    background: #ffffff;
    color: #192F4C;
    text-decoration: none;
}

.cc-contact-quick-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 42px;
    width: 42px;
    height: 42px;
    border-radius: 14px;
    background: #192F4C;
    color: #ffffff;
}

.cc-contact-quick-icon--blue {
    background: #28599B;
}

.cc-contact-quick-icon--orange {
    background: #ed3d3d;
}

.cc-contact-quick-line small {
    display: block;
    margin-bottom: 2px;
    color: rgba(25, 47, 76, .58);
    font-size: 12px;
    font-weight: 700;
}

.cc-contact-quick-line strong {
    display: block;
    color: #192F4C;
    font-size: 14px;
    line-height: 1.35;
    font-weight: 850;
}

/* MAIN */

.cc-contact-main {
    padding: 56px 0 72px;
}

.cc-contact-grid {
    display: grid;
    grid-template-columns: minmax(0, .86fr) minmax(0, 1.14fr);
    gap: 28px;
    align-items: start;
}

/* LEFT */

.cc-contact-info-panel {
    display: grid;
    gap: 18px;
}

.cc-contact-info-card,
.cc-contact-urgent-card,
.cc-contact-zone-card {
    padding: clamp(22px, 4vw, 30px);
    border: 1px solid rgba(25, 47, 76, .10);
    border-radius: 26px;
    background: #ffffff;
}

.cc-contact-info-card h2,
.cc-contact-urgent-card h2,
.cc-contact-zone-card h2 {
    margin: 0 0 12px;
    color: #192F4C;
    font-size: clamp(22px, 3vw, 30px);
    line-height: 1.18;
    letter-spacing: -.03em;
    font-weight: 900;
}

.cc-contact-info-card p,
.cc-contact-urgent-card p,
.cc-contact-zone-card p {
    margin: 0;
    color: rgba(25, 47, 76, .75);
    font-size: 15px;
    line-height: 1.75;
}

.cc-contact-lines {
    display: grid;
    gap: 12px;
    margin-top: 22px;
}

.cc-contact-line {
    display: flex;
    gap: 14px;
    align-items: center;
    padding: 15px;
    border-radius: 18px;
    background: #F6F8FB;
    color: #192F4C;
    text-decoration: none;
}

.cc-contact-line:hover strong {
    color: #28599B;
}

.cc-contact-line-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 46px;
    width: 46px;
    height: 46px;
    border-radius: 15px;
    background: #28599B;
    color: #ffffff;
}

.cc-contact-line-icon--orange {
    background: #ed3d3d;
}

.cc-contact-line-icon--dark {
    background: #192F4C;
}

.cc-contact-line small {
    display: block;
    margin-bottom: 3px;
    color: rgba(25, 47, 76, .58);
    font-size: 12px;
    font-weight: 750;
}

.cc-contact-line strong {
    display: block;
    color: #192F4C;
    font-size: 15px;
    line-height: 1.35;
    font-weight: 850;
    transition: color .2s ease;
}

.cc-contact-urgent-card {
    border-color: rgba(237, 132, 61, .24);
    background: #FFF8F2;
}

.cc-contact-urgent-head {
    display: flex;
    gap: 14px;
    align-items: flex-start;
}

.cc-contact-urgent-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 50px;
    width: 50px;
    height: 50px;
    border-radius: 16px;
    background: #ed3d3d;
    color: #ffffff;
    font-size: 20px;
}

.cc-contact-urgent-card .cc-contact-btn {
    width: 100%;
    margin-top: 20px;
}

.cc-contact-zone-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 9px;
    margin-top: 18px;
}

.cc-contact-zone-tags span,
.cc-contact-zone-tags a {
    display: inline-flex;
    align-items: center;
    min-height: 34px;
    padding: 8px 11px;
    border-radius: 999px;
    background: #F3F5F8;
    color: rgba(25, 47, 76, .76);
    font-size: 12px;
    font-weight: 800;
    text-decoration: none;
}

.cc-contact-zone-tags a:hover {
    background: #E9ECF1;
    color: #28599B;
}

/* FORM */

.cc-contact-form-card {
    padding: clamp(24px, 4vw, 36px);
    border: 1px solid rgba(25, 47, 76, .10);
    border-radius: 30px;
    background: #ffffff;
}

.cc-contact-form-head {
    margin-bottom: 24px;
}

.cc-contact-form-head span {
    display: inline-flex;
    margin-bottom: 10px;
    color: #ed3d3d;
    font-size: 12px;
    font-weight: 900;
    letter-spacing: .05em;
    text-transform: uppercase;
}

.cc-contact-form-head h2 {
    margin: 0 0 10px;
    color: #192F4C;
    font-size: clamp(26px, 4vw, 38px);
    line-height: 1.08;
    letter-spacing: -.04em;
    font-weight: 900;
}

.cc-contact-form-head p {
    margin: 0;
    color: rgba(25, 47, 76, .72);
    font-size: 15px;
    line-height: 1.7;
}

.cc-contact-form {
    display: grid;
    gap: 16px;
}

.cc-contact-form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
}

.cc-contact-field {
    display: grid;
    gap: 7px;
}

.cc-contact-field label {
    color: #192F4C;
    font-size: 13px;
    font-weight: 850;
}

.cc-contact-field input,
.cc-contact-field select,
.cc-contact-field textarea {
    width: 100%;
    border: 1px solid rgba(25, 47, 76, .14);
    border-radius: 15px;
    background: #F8FAFC;
    color: #192F4C;
    font-family: inherit;
    font-size: 14px;
    font-weight: 600;
    outline: none;
    transition: border-color .2s ease, background .2s ease;
}

.cc-contact-field input,
.cc-contact-field select {
    min-height: 52px;
    padding: 0 15px;
}

.cc-contact-field textarea {
    min-height: 148px;
    padding: 15px;
    resize: vertical;
}

.cc-contact-field input:focus,
.cc-contact-field select:focus,
.cc-contact-field textarea:focus {
    border-color: #28599B;
    background: #ffffff;
}

.cc-contact-form-note {
    margin: 0;
    color: rgba(25, 47, 76, .58);
    font-size: 12px;
    line-height: 1.6;
}

.cc-contact-form .cc-contact-btn {
    width: 100%;
    min-height: 56px;
    margin-top: 4px;
    border-radius: 16px;
}

/* MAP */

.cc-contact-map-section {
    background: #ffffff;
}

.cc-contact-map-head {
    width: min(1180px, calc(100% - 32px));
    margin: 0 auto;
    padding: 54px 0 24px;
}

.cc-contact-map-head span {
    display: inline-flex;
    margin-bottom: 10px;
    color: #ed3d3d;
    font-size: 12px;
    font-weight: 900;
    letter-spacing: .05em;
    text-transform: uppercase;
}

.cc-contact-map-head h2 {
    margin: 0;
    color: #192F4C;
    font-size: clamp(26px, 4vw, 42px);
    line-height: 1.1;
    letter-spacing: -.04em;
    font-weight: 900;
}

.cc-contact-map-head p {
    max-width: 780px;
    margin: 14px 0 0;
    color: rgba(25, 47, 76, .72);
    font-size: 15px;
    line-height: 1.75;
}

.cc-contact-map {
    width: 100%;
    height: clamp(360px, 46vw, 560px);
    overflow: hidden;
    background: #E9ECF1;
}

.cc-contact-map iframe {
    display: block;
    width: 100%;
    height: 100%;
    border: 0;
}

/* SEO LINKS */

.cc-contact-seo-links {
    padding: 48px 0 68px;
    background: #ffffff;
}

.cc-contact-seo-box {
    padding: 24px;
    border-radius: 24px;
    background: #F6F8FB;
    border: 1px solid rgba(25, 47, 76, .10);
}

.cc-contact-seo-box h2 {
    margin: 0 0 12px;
    color: #192F4C;
    font-size: 24px;
    line-height: 1.2;
    font-weight: 900;
    letter-spacing: -.025em;
}

.cc-contact-seo-box p {
    margin: 0 0 18px;
    color: rgba(25, 47, 76, .72);
    font-size: 14px;
    line-height: 1.75;
}

.cc-contact-seo-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.cc-contact-seo-grid a {
    display: inline-flex;
    align-items: center;
    min-height: 38px;
    padding: 9px 12px;
    border-radius: 999px;
    background: #ffffff;
    color: #192F4C;
    text-decoration: none;
    font-size: 13px;
    font-weight: 850;
    border: 1px solid rgba(25, 47, 76, .10);
}

.cc-contact-seo-grid a:hover {
    color: #28599B;
    border-color: rgba(40, 89, 155, .26);
}

/* RESPONSIVE */

@media (max-width: 1020px) {
    .cc-contact-hero-grid,
    .cc-contact-grid {
        grid-template-columns: 1fr;
    }

    .cc-contact-quick-card {
        max-width: 620px;
    }
}

@media (max-width: 680px) {
    .cc-contact-hero {
        padding: 52px 0 36px;
    }

    .cc-contact-main {
        padding: 36px 0 52px;
    }

    .cc-contact-form-row {
        grid-template-columns: 1fr;
    }

    .cc-contact-hero-actions {
        display: grid;
    }

    .cc-contact-btn {
        width: 100%;
    }

    .cc-contact-map-head {
        padding: 38px 0 20px;
    }
}
.callback-popup {
    position: fixed;
    inset: 0;
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 18px;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity .25s ease, visibility .25s ease;
}

.callback-popup.is-visible {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.callback-popup__overlay {
    position: absolute;
    inset: 0;
    background: rgba(25, 47, 76, .62);
    backdrop-filter: blur(5px);
}

.callback-popup__box {
    position: relative;
    width: min(480px, 100%);
    max-height: calc(100vh - 36px);
    overflow: auto;
    padding: 30px;
    border-radius: 28px;
    background: #ffffff;
    color: #192F4C;
    border: 1px solid rgba(25, 47, 76, .10);
    transform: translateY(14px) scale(.98);
    transition: transform .25s ease;
}

.callback-popup.is-visible .callback-popup__box {
    transform: translateY(0) scale(1);
}

.callback-popup__close {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 40px;
    height: 40px;
    border: 1px solid rgba(25, 47, 76, .12);
    border-radius: 13px;
    background: #F6F8FB;
    color: #192F4C;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: background .2s ease, color .2s ease, border-color .2s ease;
}

.callback-popup__close:hover {
    background: #192F4C;
    color: #ffffff;
    border-color: #192F4C;
}

.callback-popup__icon {
    width: 58px;
    height: 58px;
    border-radius: 18px;
    background: #28599B;
    color: #ffffff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    margin-bottom: 18px;
}

.callback-popup__kicker {
    display: inline-flex;
    width: fit-content;
    padding: 7px 11px;
    border-radius: 999px;
    background: #E9ECF1;
    color: #28599B;
    font-size: 11px;
    font-weight: 900;
    letter-spacing: .05em;
    text-transform: uppercase;
    margin-bottom: 12px;
}

.callback-popup h2 {
    margin: 0 0 12px;
    color: #192F4C;
    font-size: 30px;
    line-height: 1.12;
    letter-spacing: -.035em;
    font-weight: 900;
}

.callback-popup p {
    margin: 0;
}

.callback-popup #callback-popup-desc {
    color: rgba(25, 47, 76, .72);
    font-size: 14px;
    line-height: 1.7;
}

.callback-popup__form {
    display: grid;
    gap: 13px;
    margin-top: 22px;
}
.callback-popup__field select {
    width: 100%;
    min-height: 52px;
    padding: 0 46px 0 15px;
    border: 1px solid rgba(25, 47, 76, .14);
    border-radius: 15px;
    background-color: #F8FAFC;
    color: #192F4C;
    font-family: inherit;
    font-size: 14px;
    font-weight: 700;
    outline: none;
    cursor: pointer;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    transition: border-color .2s ease, background .2s ease, box-shadow .2s ease;
    background-image:
            linear-gradient(45deg, transparent 50%, #192F4C 50%),
            linear-gradient(135deg, #192F4C 50%, transparent 50%);
    background-position:
            calc(100% - 22px) 50%,
            calc(100% - 16px) 50%;
    background-size:
            6px 6px,
            6px 6px;
    background-repeat: no-repeat;
}

.callback-popup__field select:hover {
    background-color: #ffffff;
    border-color: rgba(40, 89, 155, .32);
}

.callback-popup__field select:focus {
    background-color: #ffffff;
    border-color: #28599B;
    box-shadow: 0 0 0 4px rgba(40, 89, 155, .10);
}

.callback-popup__field select:invalid,
.callback-popup__field select option[value=""] {
    color: rgba(25, 47, 76, .55);
}

.callback-popup__field select option {
    color: #192F4C;
    background: #ffffff;
    font-weight: 600;
}

@media (max-width: 560px) {
    .callback-popup__field select {
        min-height: 49px;
        padding-right: 42px;
        font-size: 13px;
        border-radius: 13px;
        background-position:
                calc(100% - 20px) 50%,
                calc(100% - 14px) 50%;
    }
}

@media (max-width: 360px) {
    .callback-popup__field select {
        min-height: 46px;
        font-size: 12.5px;
        padding-left: 13px;
    }
}
.callback-popup__field {
    display: grid;
    gap: 7px;
}

.callback-popup__field label {
    color: #192F4C;
    font-size: 13px;
    font-weight: 850;
}

.callback-popup__field input,
.callback-popup__message {
    width: 100%;
    border: 1px solid rgba(25, 47, 76, .14);
    border-radius: 15px;
    background: #F8FAFC;
    color: #192F4C;
    font-family: inherit;
    font-size: 14px;
    font-weight: 600;
    outline: none;
    transition: border-color .2s ease, background .2s ease;
}

.callback-popup__field input {
    min-height: 52px;
    padding: 0 15px;
}

.callback-popup__message {
    min-height: 92px;
    padding: 14px 15px;
    resize: vertical;
}

.callback-popup__field input:focus,
.callback-popup__message:focus {
    border-color: #28599B;
    background: #ffffff;
}

.callback-popup__submit {
    min-height: 54px;
    border: 1px solid #28599B;
    border-radius: 16px;
    background: #28599B;
    color: #ffffff;
    font-family: inherit;
    font-size: 14px;
    font-weight: 900;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    transition: background .2s ease, border-color .2s ease, transform .2s ease;
    margin-block: 1em;
    width: 100%;
}

.callback-popup__submit:hover {
    background: #192F4C;
    border-color: #192F4C;
    transform: translateY(-1px);
}

.callback-popup__rgpd {
    color: rgba(25, 47, 76, .56);
    font-size: 11.5px;
    line-height: 1.55;
}

.callback-popup__error {
    display: none;
    padding: 10px 12px;
    border-radius: 12px;
    background: #fff2f2;
    color: #c93333;
    font-size: 12.5px;
    font-weight: 700;
}

.callback-popup__error.is-visible {
    display: block;
}

body.callback-popup-open {
    overflow: hidden;
}

@media (max-width: 560px) {
    .callback-popup {
        align-items: flex-end;
        padding: 12px;
    }

    .callback-popup__box {
        padding: 24px 20px 20px;
        border-radius: 24px;
    }

    .callback-popup__icon {
        width: 52px;
        height: 52px;
        border-radius: 16px;
        font-size: 20px;
        margin-bottom: 15px;
    }

    .callback-popup h2 {
        font-size: 25px;
    }

    .callback-popup #callback-popup-desc {
        font-size: 13.2px;
    }

    .callback-popup__field input {
        min-height: 49px;
    }

    .callback-popup__submit {
        min-height: 50px;
    }
}
.callback-popup__box.callback-popup__form {
    display: block;
}
@media (max-width: 360px) {
    .callback-popup__box {
        padding: 22px 16px 16px;
        border-radius: 20px;
    }

    .callback-popup h2 {
        font-size: 23px;
    }

    .callback-popup__close {
        width: 36px;
        height: 36px;
        border-radius: 11px;
    }
}