html,
body {
    width: 100%;
    max-width: 100%;
    overflow-x: clip;
}

img,
video,
iframe {
    max-width: 100%;
    height: auto;
}


/* =====================================================
   BANNIÈRE PREMIUM ALUPUB
===================================================== */

.banner-fullpage {
    position: relative;
    isolation: isolate;
    width: 100%;
    min-height: 620px;
    padding: 110px 0 90px;
    overflow: hidden;

    color: #ffffff;
    background-color: #0a2d4b;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

    text-align: left;
}

/* Superposition premium sur l’image */
.banner-fullpage::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -2;

    background:
        linear-gradient(
            90deg,
            rgba(5, 29, 49, 0.97) 0%,
            rgba(10, 45, 75, 0.88) 42%,
            rgba(10, 45, 75, 0.52) 68%,
            rgba(5, 29, 49, 0.28) 100%
        ),
        linear-gradient(
            180deg,
            rgba(5, 29, 49, 0.18) 0%,
            rgba(5, 29, 49, 0.12) 60%,
            rgba(5, 29, 49, 0.82) 100%
        );
}

/* Lumière jaune décorative */
.banner-fullpage::after {
    content: "";
    position: absolute;
    top: -180px;
    left: -160px;
    z-index: -1;

    width: 520px;
    height: 520px;

    background: radial-gradient(
        circle,
        rgba(252, 176, 4, 0.2) 0%,
        rgba(252, 176, 4, 0.08) 35%,
        transparent 72%
    );

    pointer-events: none;
}

/* Container de la bannière */
.banner-fullpage .container {
    position: relative;
    z-index: 2;
}

/* Petit badge */
.banner-fullpage .banner-badge {
    display: inline-flex;
    align-items: center;
    gap: 9px;

    margin-bottom: 22px;
    padding: 9px 16px;

    color: #fcb004;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 1.3px;
    text-transform: uppercase;

    background: rgba(252, 176, 4, 0.1);
    border: 1px solid rgba(252, 176, 4, 0.45);
    border-radius: 50px;

    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.banner-fullpage .banner-badge::before {
    content: "";
    width: 7px;
    height: 7px;
    background: #fcb004;
    border-radius: 50%;
    box-shadow: 0 0 12px rgba(252, 176, 4, 0.8);
}

/* Titre principal */
.banner-fullpage h1 {
    max-width: 850px;
    margin: 0 0 22px;

    color: #ffffff;
    font-size: clamp(40px, 5vw, 72px);
    font-weight: 800;
    line-height: 1.08;
    letter-spacing: -1.7px;

    text-shadow: 0 8px 28px rgba(5, 29, 49, 0.48);
}

/* Partie jaune du titre */
.banner-fullpage h1 span {
    color: #fcb004;
}

/* Description */
.banner-fullpage .banner-description {
    max-width: 700px;
    margin: 0 0 32px;

    color: rgba(255, 255, 255, 0.82);
    font-size: 18px;
    font-weight: 400;
    line-height: 1.75;
}

/* Zone des boutons */
.banner-fullpage .banner-actions {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 14px;
}

/* Bouton principal */
.banner-fullpage .banner-btn-primary {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 11px;

    min-height: 55px;
    padding: 0 25px;
    overflow: hidden;

    color: #0a2d4b;
    font-size: 14px;
    font-weight: 800;
    letter-spacing: 0.4px;
    text-decoration: none;
    text-transform: uppercase;

    background: linear-gradient(
        135deg,
        #ffd45c 0%,
        #fcb004 50%,
        #e49b00 100%
    );

    border: 1px solid rgba(255, 212, 92, 0.8);
    border-radius: 12px;

    box-shadow:
        0 12px 30px rgba(252, 176, 4, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.65);

    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease;
}

/* Effet brillant */
.banner-fullpage .banner-btn-primary::before {
    content: "";
    position: absolute;
    top: -60%;
    left: -80%;

    width: 40%;
    height: 220%;

    background: rgba(255, 255, 255, 0.42);
    transform: rotate(25deg);
    transition: left 0.65s ease;
}

.banner-fullpage .banner-btn-primary:hover::before {
    left: 140%;
}

.banner-fullpage .banner-btn-primary span,
.banner-fullpage .banner-btn-primary i {
    position: relative;
    z-index: 2;
}

.banner-fullpage .banner-btn-primary:hover {
    color: #051d31;
    transform: translateY(-3px);

    box-shadow:
        0 17px 38px rgba(252, 176, 4, 0.42),
        inset 0 1px 0 rgba(255, 255, 255, 0.7);
}

/* Bouton secondaire */
.banner-fullpage .banner-btn-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;

    min-height: 55px;
    padding: 0 25px;

    color: #ffffff;
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;

    background: rgba(255, 255, 255, 0.07);
    border: 1px solid rgba(255, 255, 255, 0.28);
    border-radius: 12px;

    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);

    transition:
        color 0.3s ease,
        background-color 0.3s ease,
        border-color 0.3s ease,
        transform 0.3s ease;
}

.banner-fullpage .banner-btn-secondary:hover {
    color: #fcb004;
    background: rgba(252, 176, 4, 0.1);
    border-color: rgba(252, 176, 4, 0.6);
    transform: translateY(-3px);
}

/* Ligne décorative en bas */
.banner-fullpage .banner-line {
    width: 75px;
    height: 3px;
    margin-bottom: 23px;

    background: linear-gradient(
        90deg,
        #fcb004,
        #ffd45c
    );

    border-radius: 20px;
    box-shadow: 0 0 16px rgba(252, 176, 4, 0.5);
}

/* =====================================================
   RESPONSIVE
===================================================== */

@media (max-width: 991.98px) {
    .banner-fullpage {
        min-height: 570px;
        padding: 90px 0 75px;
    }

    .banner-fullpage::before {
        background:
            linear-gradient(
                90deg,
                rgba(5, 29, 49, 0.95) 0%,
                rgba(10, 45, 75, 0.83) 60%,
                rgba(5, 29, 49, 0.58) 100%
            ),
            linear-gradient(
                180deg,
                transparent 40%,
                rgba(5, 29, 49, 0.78) 100%
            );
    }

    .banner-fullpage h1 {
        max-width: 700px;
        font-size: clamp(38px, 7vw, 58px);
    }
}

@media (max-width: 575.98px) {
    .banner-fullpage {
        min-height: 540px;
        padding: 75px 0 65px;
        background-position: center;
    }

    .banner-fullpage::before {
        background: linear-gradient(
            180deg,
            rgba(5, 29, 49, 0.84) 0%,
            rgba(10, 45, 75, 0.9) 55%,
            rgba(5, 29, 49, 0.98) 100%
        );
    }

    .banner-fullpage h1 {
        font-size: 38px;
        line-height: 1.12;
        letter-spacing: -0.8px;
    }

    .banner-fullpage .banner-description {
        font-size: 16px;
        line-height: 1.65;
    }

    .banner-fullpage .banner-actions {
        width: 100%;
        flex-direction: column;
        align-items: stretch;
    }

    .banner-fullpage .banner-btn-primary,
    .banner-fullpage .banner-btn-secondary {
        width: 100%;
    }
}

a {
    color: #e63946;
    text-decoration: none;
    transition: all 0.3s ease;
}

a:hover {
    color: #e63946;
    text-decoration: underline;
     text-decoration: none;
}

a:focus {
    outline: 2px solid rgba(13, 110, 253, 0.3);
    outline-offset: 3px;
}

/* =====================================================
   FOOTER PREMIUM ALUPUB
   Bleu : #0a2d4b
   Jaune : #fcb004
===================================================== */

:root {
    --alupub-blue: #0a2d4b;
    --alupub-blue-dark: #051d31;
    --alupub-blue-medium: #103d61;
    --alupub-yellow: #fcb004;
    --alupub-yellow-light: #ffd45c;
    --alupub-yellow-dark: #e49b00;
    --alupub-white: #ffffff;
    --alupub-light-text: rgba(255, 255, 255, 0.72);
}

/* =====================================================
   STRUCTURE GÉNÉRALE
===================================================== */

.footer-alupub {
    position: relative;
    margin-top: auto;
    color: #ffffff;
    background:
        radial-gradient(
            circle at 10% 15%,
            rgba(16, 61, 97, 0.48),
            transparent 30%
        ),
        linear-gradient(
            145deg,
            #051d31 0%,
            #0a2d4b 52%,
            #061f35 100%
        );
    border-top: 1px solid rgba(252, 176, 4, 0.3);
}

/* Ligne jaune supérieure */
.footer-alupub::before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    height: 2px;
    background: linear-gradient(
        90deg,
        transparent 0%,
        rgba(252, 176, 4, 0.3) 20%,
        #fcb004 50%,
        rgba(252, 176, 4, 0.3) 80%,
        transparent 100%
    );
}

/* =====================================================
   CTA SUPÉRIEUR
===================================================== */

.footer-cta {
    position: relative;
    padding-top: 55px;
}

.footer-cta-box {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 35px;
    padding: 30px 34px;
    overflow: hidden;

    background:
        radial-gradient(
            circle at 90% 10%,
            rgba(255, 212, 92, 0.25),
            transparent 28%
        ),
        linear-gradient(
            135deg,
            #fcb004 0%,
            #e49b00 100%
        );

    border: 1px solid rgba(255, 212, 92, 0.85);
    border-radius: 20px;

    box-shadow:
        0 18px 45px rgba(5, 29, 49, 0.35),
        inset 0 1px 0 rgba(255, 255, 255, 0.5);
}

/* Forme décorative */
.footer-cta-box::after {
    content: "";
    position: absolute;
    top: -85px;
    right: 18%;
    width: 230px;
    height: 230px;
    border: 40px solid rgba(10, 45, 75, 0.08);
    border-radius: 50%;
}

.footer-cta-content {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    gap: 20px;
}

.footer-cta-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 62px;
    height: 62px;
    flex: 0 0 62px;
    color: #fcb004;
    font-size: 25px;
    background: #0a2d4b;
    border-radius: 15px;
    box-shadow: 0 10px 25px rgba(5, 29, 49, 0.23);
}

.footer-small-title {
    display: block;
    margin-bottom: 5px;
    color: rgba(5, 29, 49, 0.7);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 1.4px;
    text-transform: uppercase;
}

.footer-cta-content h2 {
    margin: 0 0 7px;
    color: #051d31;
    font-size: clamp(23px, 3vw, 33px);
    font-weight: 800;
    line-height: 1.18;
}

.footer-cta-content p {
    max-width: 670px;
    margin: 0;
    color: rgba(5, 29, 49, 0.76);
    font-size: 15px;
    line-height: 1.55;
}

/* Bouton du CTA */
.footer-cta-btn {
    position: relative;
    z-index: 2;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 11px;
    min-width: 215px;
    min-height: 55px;
    padding: 0 22px;
    color: #ffffff;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 0.4px;
    text-decoration: none;
    text-transform: uppercase;
    background: #0a2d4b;
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 12px;
    box-shadow: 0 12px 28px rgba(5, 29, 49, 0.28);
    transition:
        color 0.3s ease,
        background-color 0.3s ease,
        transform 0.3s ease,
        box-shadow 0.3s ease;
}

.footer-cta-btn i {
    font-size: 17px;
    transition: transform 0.3s ease;
}

.footer-cta-btn:hover {
    color: #0a2d4b;
    background: #ffffff;
    transform: translateY(-3px);
    box-shadow: 0 16px 35px rgba(5, 29, 49, 0.34);
}

.footer-cta-btn:hover i {
    transform: translate(3px, -3px);
}

/* =====================================================
   CONTENU PRINCIPAL
===================================================== */

.footer-main {
    padding: 75px 0 35px;
}

.footer-logo {
    width: auto;
    max-width: 175px;
    height: 65px;
    margin-bottom: 22px;
    object-fit: contain;
    filter: drop-shadow(0 8px 15px rgba(252, 176, 4, 0.18));
}

.footer-description {
    max-width: 420px;
    margin-bottom: 24px;
    color: var(--alupub-light-text);
    font-size: 14px;
    line-height: 1.85;
}

.footer-description strong {
    color: #fcb004;
}

/* Titres */
.footer-title {
    position: relative;
    margin: 4px 0 27px;
    padding-bottom: 13px;
    color: #ffffff;
    font-size: 18px;
    font-weight: 800;
}

.footer-title::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 44px;
    height: 3px;
    background: linear-gradient(
        90deg,
        #fcb004,
        #ffd45c
    );
    border-radius: 20px;
    box-shadow: 0 0 12px rgba(252, 176, 4, 0.35);
}

/* =====================================================
   RÉSEAUX SOCIAUX
===================================================== */

.footer-socials {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.footer-socials a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 43px;
    height: 43px;
    color: #ffffff;
    font-size: 17px;
    text-decoration: none;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.13);
    border-radius: 11px;
    transition:
        color 0.3s ease,
        background-color 0.3s ease,
        border-color 0.3s ease,
        transform 0.3s ease;
}

.footer-socials a:hover {
    color: #0a2d4b;
    background: #fcb004;
    border-color: #fcb004;
    transform: translateY(-4px);
}

/* =====================================================
   LIENS
===================================================== */

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

.footer-links li {
    margin-bottom: 11px;
}

.footer-links a {
    display: inline-flex;
    align-items: flex-start;
    gap: 8px;
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
    line-height: 1.45;
    text-decoration: none;
    transition:
        color 0.25s ease,
        transform 0.25s ease;
}

.footer-links a i {
    margin-top: 2px;
    color: #fcb004;
    font-size: 11px;
    transition: transform 0.25s ease;
}

.footer-links a:hover {
    color: #fcb004;
    transform: translateX(4px);
}

.footer-links a:hover i {
    transform: translateX(2px);
}

/* =====================================================
   CONTACT
===================================================== */

.footer-contact-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.footer-contact-item {
    display: flex;
    align-items: center;
    gap: 12px;
    color: #ffffff;
    text-decoration: none;
}

.footer-contact-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    flex: 0 0 42px;
    color: #fcb004;
    background: rgba(252, 176, 4, 0.09);
    border: 1px solid rgba(252, 176, 4, 0.25);
    border-radius: 10px;
    transition:
        color 0.25s ease,
        background-color 0.25s ease,
        transform 0.25s ease;
}

.footer-contact-item > span:last-child {
    display: flex;
    flex-direction: column;
}

.footer-contact-item small {
    margin-bottom: 3px;
    color: rgba(255, 255, 255, 0.48);
    font-size: 11px;
    letter-spacing: 0.6px;
    text-transform: uppercase;
}

.footer-contact-item strong {
    color: rgba(255, 255, 255, 0.86);
    font-size: 13px;
    font-weight: 600;
    overflow-wrap: anywhere;
}

a.footer-contact-item:hover .footer-contact-icon {
    color: #0a2d4b;
    background: #fcb004;
    transform: translateY(-2px);
}

a.footer-contact-item:hover strong {
    color: #fcb004;
}

/* =====================================================
   TEXTE SEO
===================================================== */

.footer-seo {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-top: 55px;
    padding: 22px 24px;
    background: rgba(255, 255, 255, 0.035);
    border: 1px solid rgba(252, 176, 4, 0.16);
    border-radius: 14px;
}

.footer-seo-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 39px;
    height: 39px;
    flex: 0 0 39px;
    color: #fcb004;
    background: rgba(252, 176, 4, 0.09);
    border-radius: 9px;
}

.footer-seo p {
    margin: 0;
    color: rgba(255, 255, 255, 0.58);
    font-size: 12px;
    line-height: 1.75;
}

.footer-seo strong {
    color: rgba(255, 255, 255, 0.82);
    font-weight: 600;
}

/* =====================================================
   BARRE INFÉRIEURE
===================================================== */

.footer-bottom {
    padding: 21px 0;
    background: rgba(2, 18, 31, 0.55);
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-bottom-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.footer-bottom p {
    margin: 0;
    color: rgba(255, 255, 255, 0.55);
    font-size: 12px;
}

.footer-bottom strong {
    color: #fcb004;
}

.footer-signature {
    text-align: right;
}

/* =====================================================
   BOUTONS FLOTTANTS
===================================================== */

.floating-contact-buttons {
    position: fixed;
    right: 22px;
    bottom: 23px;
    z-index: 1080;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 11px;
}

.floating-contact-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    min-width: 52px;
    height: 52px;
    padding: 0 17px;
    overflow: hidden;
    color: #ffffff;
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
    border: 2px solid rgba(255, 255, 255, 0.76);
    border-radius: 50px;
    box-shadow: 0 10px 28px rgba(5, 29, 49, 0.35);
    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease;
}

.floating-contact-btn i {
    font-size: 20px;
}

.floating-call {
    background: linear-gradient(
        135deg,
        #103d61,
        #0a2d4b
    );
}

.floating-whatsapp {
    background: linear-gradient(
        135deg,
        #2bd66f,
        #128c4b
    );
}

.floating-contact-btn:hover {
    color: #ffffff;
    transform: translateY(-4px);
    box-shadow: 0 15px 34px rgba(5, 29, 49, 0.44);
}

/* Animation légère WhatsApp */
.floating-whatsapp::after {
    content: "";
    position: absolute;
    width: 52px;
    height: 52px;
    border: 2px solid rgba(37, 211, 102, 0.55);
    border-radius: 50%;
    animation: whatsappPulse 2.2s infinite;
    pointer-events: none;
}

@keyframes whatsappPulse {
    0% {
        opacity: 0.7;
        transform: scale(0.9);
    }

    70% {
        opacity: 0;
        transform: scale(1.5);
    }

    100% {
        opacity: 0;
        transform: scale(1.5);
    }
}

/* =====================================================
   RESPONSIVE
===================================================== */

@media (max-width: 991.98px) {
    .footer-cta-box {
        align-items: flex-start;
        flex-direction: column;
    }

    .footer-cta-btn {
        min-width: 220px;
    }

    .footer-main {
        padding-top: 65px;
    }

    .footer-bottom-content {
        align-items: flex-start;
        flex-direction: column;
        gap: 7px;
    }

    .footer-signature {
        text-align: left;
    }
}

@media (max-width: 575.98px) {
    .footer-cta {
        padding-top: 38px;
    }

    .footer-cta-box {
        padding: 24px 20px;
        border-radius: 16px;
    }

    .footer-cta-content {
        align-items: flex-start;
        flex-direction: column;
    }

    .footer-cta-icon {
        width: 54px;
        height: 54px;
        flex-basis: 54px;
    }

    .footer-cta-content h2 {
        font-size: 24px;
    }

    .footer-cta-btn {
        width: 100%;
        min-width: 100%;
    }

    .footer-main {
        padding: 55px 0 30px;
    }

    .footer-seo {
        gap: 12px;
        margin-top: 40px;
        padding: 18px;
    }

    .footer-seo-icon {
        display: none;
    }

    .floating-contact-buttons {
        right: 14px;
        bottom: 15px;
    }

    .floating-contact-btn {
        width: 52px;
        min-width: 52px;
        padding: 0;
    }

    .floating-contact-btn span {
        display: none;
    }
}



/* =====================================================
   NAVBAR PREMIUM ALUPUB
   Bleu principal : #0a2d4b
   Jaune principal : #fcb004
===================================================== */

:root {
    --alupub-blue: #0a2d4b;
    --alupub-blue-dark: #051d31;
    --alupub-blue-medium: #103d61;
    --alupub-blue-light: #18527e;

    --alupub-yellow: #fcb004;
    --alupub-yellow-light: #ffd45c;
    --alupub-yellow-dark: #e49b00;

    --alupub-white: #ffffff;
    --alupub-text-light: rgba(255, 255, 255, 0.86);
}

/* =====================================================
   STRUCTURE PRINCIPALE
===================================================== */

.navbar-premium {
    position: relative;
    min-height: 90px;
    padding: 12px 0;
    background:
        radial-gradient(
            circle at 75% 0%,
            rgba(24, 82, 126, 0.55),
            transparent 35%
        ),
        linear-gradient(
            135deg,
            var(--alupub-blue-dark) 0%,
            var(--alupub-blue) 50%,
            var(--alupub-blue-medium) 100%
        );
    border-bottom: 1px solid rgba(252, 176, 4, 0.36);
    box-shadow:
        0 12px 35px rgba(5, 29, 49, 0.26),
        inset 0 -1px 0 rgba(255, 255, 255, 0.04);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    z-index: 1050;
}

/* Ligne décorative sous la navbar */
.navbar-premium::after {
    content: "";
    position: absolute;
    right: 0;
    bottom: -1px;
    left: 0;
    height: 1px;
    background: linear-gradient(
        90deg,
        transparent 0%,
        rgba(252, 176, 4, 0.25) 25%,
        var(--alupub-yellow) 50%,
        rgba(252, 176, 4, 0.25) 75%,
        transparent 100%
    );
}

/* =====================================================
   LOGO
===================================================== */

.navbar-premium .navbar-brand {
    display: flex;
    align-items: center;
    flex-shrink: 0;
    padding: 0;
    margin: 0 35px 0 0;
}

.navbar-logo {
    display: block;
    width: auto;
    max-width: 180px;
    height: 62px;
    object-fit: contain;
    transition:
        transform 0.35s ease,
        filter 0.35s ease;
}

.navbar-brand:hover .navbar-logo {
    transform: translateY(-2px);
    filter: drop-shadow(0 8px 15px rgba(252, 176, 4, 0.25));
}

/* =====================================================
   MENU PRINCIPAL
===================================================== */

.navbar-premium .navbar-nav {
    gap: 6px;
}

.navbar-premium .nav-item {
    position: relative;
}

.navbar-premium .nav-link {
    position: relative;
    display: flex;
    align-items: center;
    padding: 15px 18px !important;
    color: var(--alupub-text-light) !important;
    font-size: 14px;
    font-weight: 700;
    line-height: 1;
    letter-spacing: 0.4px;
    text-transform: uppercase;
    border-radius: 8px;
    transition:
        color 0.3s ease,
        background-color 0.3s ease,
        transform 0.3s ease;
}

/* Trait jaune sous les liens */
.navbar-premium .nav-link:not(.dropdown-toggle)::after {
    content: "";
    position: absolute;
    right: 18px;
    bottom: 7px;
    left: 18px;
    height: 2px;
    background: linear-gradient(
        90deg,
        var(--alupub-yellow-dark),
        var(--alupub-yellow-light)
    );
    border-radius: 20px;
    box-shadow: 0 0 10px rgba(252, 176, 4, 0.4);
    transform: scaleX(0);
    transform-origin: center;
    transition: transform 0.3s ease;
}

.navbar-premium .nav-link:hover,
.navbar-premium .nav-link:focus,
.navbar-premium .nav-link.active {
    color: var(--alupub-yellow) !important;
    transform: translateY(-1px);
}

.navbar-premium .nav-link:not(.dropdown-toggle):hover::after,
.navbar-premium .nav-link:not(.dropdown-toggle).active::after {
    transform: scaleX(1);
}

/* =====================================================
   FLÈCHE DU DROPDOWN
===================================================== */

.navbar-premium .dropdown-toggle::after {
    width: 7px;
    height: 7px;
    margin: 0 0 4px 10px;
    border: 0;
    border-right: 1.5px solid currentColor;
    border-bottom: 1.5px solid currentColor;
    transform: rotate(45deg);
    transition: transform 0.3s ease;
}

.navbar-premium .dropdown-toggle.show::after {
    margin-bottom: -2px;
    transform: rotate(225deg);
}

/* =====================================================
   MENU DÉROULANT
===================================================== */

.navbar-premium .premium-dropdown {
    min-width: 330px;
    margin-top: 14px;
    padding: 12px;
    overflow: hidden;
    background:
        linear-gradient(
            145deg,
            rgba(5, 29, 49, 0.99),
            rgba(10, 45, 75, 0.99)
        );
    border: 1px solid rgba(252, 176, 4, 0.3);
    border-radius: 17px;
    box-shadow:
        0 25px 60px rgba(5, 29, 49, 0.5),
        inset 0 1px 0 rgba(255, 255, 255, 0.06);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    animation: premiumDropdown 0.25s ease;
}

@keyframes premiumDropdown {
    from {
        opacity: 0;
        transform: translateY(12px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.navbar-premium .dropdown-item {
    display: flex;
    align-items: center;
    gap: 13px;
    min-height: 60px;
    padding: 9px 12px;
    margin-bottom: 3px;
    color: rgba(255, 255, 255, 0.88);
    white-space: normal;
    border-radius: 11px;
    transition:
        color 0.25s ease,
        background-color 0.25s ease,
        transform 0.25s ease;
}

.navbar-premium .dropdown-item:last-child {
    margin-bottom: 0;
}

.navbar-premium .dropdown-item:hover,
.navbar-premium .dropdown-item:focus,
.navbar-premium .dropdown-item.active {
    color: var(--alupub-yellow);
    background: linear-gradient(
        90deg,
        rgba(252, 176, 4, 0.18),
        rgba(252, 176, 4, 0.04)
    );
    transform: translateX(5px);
}

/* Icône du service */
.dropdown-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    flex: 0 0 40px;
    color: var(--alupub-yellow);
    font-size: 18px;
    background: rgba(252, 176, 4, 0.1);
    border: 1px solid rgba(252, 176, 4, 0.25);
    border-radius: 10px;
    transition:
        color 0.25s ease,
        background-color 0.25s ease;
}

.dropdown-item:hover .dropdown-icon {
    color: var(--alupub-blue);
    background: var(--alupub-yellow);
}

/* Texte du service */
.dropdown-text {
    display: flex;
    flex-direction: column;
    line-height: 1.25;
}

.dropdown-text strong {
    color: inherit;
    font-size: 14px;
    font-weight: 700;
}

.dropdown-text small {
    display: block;
    margin-top: 4px;
    color: rgba(255, 255, 255, 0.52);
    font-size: 12px;
    font-weight: 400;
}

.dropdown-item:hover .dropdown-text small {
    color: rgba(255, 255, 255, 0.7);
}

/* =====================================================
   BOUTON DEVIS GRATUIT
===================================================== */

.navbar-cta {
    flex-shrink: 0;
    margin-left: 24px;
}

.devis-premium-btn {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 11px;
    min-height: 52px;
    padding: 0 23px;
    overflow: hidden;
    color: var(--alupub-blue);
    font-size: 13px;
    font-weight: 800;
    line-height: 1;
    letter-spacing: 0.4px;
    text-decoration: none;
    text-transform: uppercase;
    background: linear-gradient(
        135deg,
        var(--alupub-yellow-light) 0%,
        var(--alupub-yellow) 50%,
        var(--alupub-yellow-dark) 100%
    );
    border: 1px solid rgba(255, 212, 92, 0.8);
    border-radius: 12px;
    box-shadow:
        0 10px 25px rgba(252, 176, 4, 0.28),
        inset 0 1px 0 rgba(255, 255, 255, 0.65);
    transition:
        color 0.3s ease,
        transform 0.3s ease,
        box-shadow 0.3s ease;
}

/* Effet lumineux */
.devis-premium-btn::before {
    content: "";
    position: absolute;
    top: -60%;
    left: -85%;
    width: 45%;
    height: 220%;
    background: rgba(255, 255, 255, 0.4);
    transform: rotate(25deg);
    transition: left 0.65s ease;
}

.devis-premium-btn:hover::before {
    left: 140%;
}

.devis-premium-btn span,
.devis-premium-btn i {
    position: relative;
    z-index: 2;
}

.devis-premium-btn i {
    font-size: 17px;
    transition: transform 0.3s ease;
}

.devis-premium-btn:hover {
    color: var(--alupub-blue-dark);
    transform: translateY(-3px);
    box-shadow:
        0 16px 35px rgba(252, 176, 4, 0.42),
        inset 0 1px 0 rgba(255, 255, 255, 0.7);
}

.devis-premium-btn:hover i {
    transform: translate(3px, -3px);
}

/* =====================================================
   BOUTON MOBILE
===================================================== */

.premium-toggler {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 5px;
    width: 47px;
    height: 47px;
    padding: 0;
    background: rgba(252, 176, 4, 0.08);
    border: 1px solid rgba(252, 176, 4, 0.5) !important;
    border-radius: 11px;
    box-shadow: none !important;
}

.premium-toggler span {
    display: block;
    width: 21px;
    height: 2px;
    background: var(--alupub-yellow);
    border-radius: 20px;
    transition:
        transform 0.3s ease,
        opacity 0.3s ease;
}

.premium-toggler[aria-expanded="true"] span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.premium-toggler[aria-expanded="true"] span:nth-child(2) {
    opacity: 0;
}

.premium-toggler[aria-expanded="true"] span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* =====================================================
   VERSION TABLETTE ET MOBILE
===================================================== */

@media (max-width: 991.98px) {
    .navbar-premium {
        min-height: 78px;
        padding: 9px 0;
    }

    .navbar-premium .navbar-brand {
        margin-right: 15px;
    }

    .navbar-logo {
        max-width: 150px;
        height: 54px;
    }

    .navbar-premium .navbar-collapse {
        max-height: calc(100vh - 100px);
        margin-top: 13px;
        padding: 16px;
        overflow-y: auto;
        background:
            linear-gradient(
                145deg,
                rgba(5, 29, 49, 0.99),
                rgba(10, 45, 75, 0.99)
            );
        border: 1px solid rgba(252, 176, 4, 0.24);
        border-radius: 16px;
        box-shadow: 0 22px 50px rgba(5, 29, 49, 0.42);
    }

    .navbar-premium .navbar-nav {
        align-items: stretch !important;
        gap: 2px;
    }

    .navbar-premium .nav-link {
        justify-content: space-between;
        padding: 14px 13px !important;
        border-radius: 10px;
    }

    .navbar-premium .nav-link:hover,
    .navbar-premium .nav-link:focus,
    .navbar-premium .nav-link.active {
        padding-left: 18px !important;
        color: var(--alupub-yellow) !important;
        background: rgba(252, 176, 4, 0.1);
        transform: none;
    }

    .navbar-premium .nav-link:not(.dropdown-toggle)::after {
        display: none;
    }

    .navbar-premium .premium-dropdown {
        min-width: 100%;
        margin: 4px 0 10px;
        padding: 8px;
        background: rgba(5, 29, 49, 0.58);
        border-color: rgba(252, 176, 4, 0.2);
        border-radius: 12px;
        box-shadow: none;
    }

    .navbar-premium .dropdown-item {
        min-height: 56px;
    }

    .navbar-cta {
        margin: 14px 0 0;
        padding-top: 14px;
        border-top: 1px solid rgba(252, 176, 4, 0.2);
    }

    .devis-premium-btn {
        width: 100%;
        min-height: 54px;
    }
}

/* =====================================================
   PETITS ÉCRANS
===================================================== */

@media (max-width: 575.98px) {
    .navbar-premium > .container {
        padding-right: 16px;
        padding-left: 16px;
    }

    .navbar-logo {
        max-width: 135px;
        height: 50px;
    }

    .premium-toggler {
        width: 44px;
        height: 44px;
    }

    .navbar-premium .navbar-collapse {
        padding: 12px;
        border-radius: 14px;
    }

    .dropdown-text small {
        font-size: 11px;
    }
}

/* =====================================================
   AFFICHAGE DROPDOWN AU SURVOL SUR ORDINATEUR
===================================================== */

@media (min-width: 992px) {
    .navbar-premium .dropdown:hover > .dropdown-menu {
        display: block;
    }

    .navbar-premium .dropdown:hover > .dropdown-toggle {
        color: var(--alupub-yellow) !important;
    }

    .navbar-premium .dropdown:hover > .dropdown-toggle::after {
        margin-bottom: -2px;
        transform: rotate(225deg);
    }
}





/* =====================================================
   PRÉSENTATION PREMIUM ALUPUB
===================================================== */

.alupub-presentation {
    position: relative;
    padding: 105px 0;
    overflow: hidden;
    background:
        radial-gradient(
            circle at 5% 20%,
            rgba(252, 176, 4, 0.08),
            transparent 26%
        ),
        linear-gradient(
            180deg,
            #ffffff 0%,
            #f5f8fb 100%
        );
}

/* Décoration de fond */
.alupub-presentation::before {
    content: "";
    position: absolute;
    top: 80px;
    left: -130px;
    width: 300px;
    height: 300px;
    border: 55px solid rgba(10, 45, 75, 0.035);
    border-radius: 50%;
    pointer-events: none;
}

.alupub-content {
    position: relative;
    z-index: 2;
}

/* Badge */
.alupub-badge {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    margin-bottom: 20px;
    padding: 9px 15px;
    color: #0a2d4b;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 1px;
    text-transform: uppercase;
    background: rgba(252, 176, 4, 0.13);
    border: 1px solid rgba(252, 176, 4, 0.35);
    border-radius: 50px;
}

.alupub-badge i {
    color: #fcb004;
    font-size: 15px;
}

/* Titre */
.alupub-content h2 {
    max-width: 650px;
    margin: 0 0 20px;
    color: #0a2d4b;
    font-size: clamp(35px, 4vw, 53px);
    font-weight: 800;
    line-height: 1.13;
    letter-spacing: -1.2px;
}

.alupub-content h2 span {
    color: #fcb004;
}

.alupub-title-line {
    width: 75px;
    height: 4px;
    margin-bottom: 25px;
    background: linear-gradient(
        90deg,
        #fcb004,
        #ffd45c
    );
    border-radius: 20px;
    box-shadow: 0 5px 14px rgba(252, 176, 4, 0.25);
}

.alupub-content p {
    max-width: 650px;
    margin-bottom: 16px;
    color: #657483;
    font-size: 15px;
    line-height: 1.85;
}

.alupub-content .alupub-intro {
    color: #344a5d;
    font-size: 17px;
    line-height: 1.75;
}

.alupub-content strong {
    color: #0a2d4b;
}

/* =====================================================
   AVANTAGES
===================================================== */

.alupub-benefits {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
    margin: 30px 0 32px;
}

.alupub-benefit {
    display: flex;
    align-items: flex-start;
    gap: 11px;
}

.alupub-benefit > span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 27px;
    height: 27px;
    flex: 0 0 27px;
    margin-top: 2px;
    color: #0a2d4b;
    font-size: 13px;
    background: #fcb004;
    border-radius: 50%;
    box-shadow: 0 6px 15px rgba(252, 176, 4, 0.22);
}

.alupub-benefit > div {
    display: flex;
    flex-direction: column;
}

.alupub-benefit strong {
    margin-bottom: 3px;
    color: #0a2d4b;
    font-size: 14px;
    font-weight: 750;
}

.alupub-benefit small {
    color: #7a8792;
    font-size: 12px;
    line-height: 1.45;
}

/* =====================================================
   BOUTONS
===================================================== */

.alupub-actions {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 13px;
}

.alupub-btn-primary,
.alupub-btn-whatsapp {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-height: 54px;
    padding: 0 23px;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 0.3px;
    text-decoration: none;
    border-radius: 11px;
    transition:
        color 0.3s ease,
        background-color 0.3s ease,
        transform 0.3s ease,
        box-shadow 0.3s ease;
}

.alupub-btn-primary {
    color: #0a2d4b;
    text-transform: uppercase;
    background: linear-gradient(
        135deg,
        #ffd45c,
        #fcb004
    );
    border: 1px solid #fcb004;
    box-shadow: 0 12px 28px rgba(252, 176, 4, 0.26);
}

.alupub-btn-primary:hover {
    color: #ffffff;
    background: #0a2d4b;
    border-color: #0a2d4b;
    transform: translateY(-3px);
    box-shadow: 0 16px 32px rgba(10, 45, 75, 0.25);
}

.alupub-btn-primary i {
    transition: transform 0.3s ease;
}

.alupub-btn-primary:hover i {
    transform: translate(3px, -3px);
}

.alupub-btn-whatsapp {
    color: #0a2d4b;
    background: #ffffff;
    border: 1px solid rgba(10, 45, 75, 0.18);
    box-shadow: 0 10px 25px rgba(10, 45, 75, 0.08);
}

.alupub-btn-whatsapp i {
    color: #1ebc66;
    font-size: 19px;
}

.alupub-btn-whatsapp:hover {
    color: #ffffff;
    background: #159957;
    border-color: #159957;
    transform: translateY(-3px);
}

.alupub-btn-whatsapp:hover i {
    color: #ffffff;
}

/* =====================================================
   IMAGE
===================================================== */

.alupub-image-wrapper {
    position: relative;
    max-width: 610px;
    margin-left: auto;
    padding: 15px 15px 30px 30px;
}

.alupub-image-decoration {
    position: absolute;
    top: 0;
    right: 0;
    width: 78%;
    height: 86%;
    background: linear-gradient(
        135deg,
        #fcb004,
        #ffd45c
    );
    border-radius: 25px;
}

.alupub-main-image {
    position: relative;
    z-index: 2;
    display: block;
    width: 100%;
    height: 570px;
    object-fit: cover;
    object-position: 67% center;
    border: 7px solid #ffffff;
    border-radius: 24px;
    box-shadow: 0 25px 60px rgba(10, 45, 75, 0.22);
}

/* Carte sur l’image */
.alupub-image-card {
    position: absolute;
    right: -10px;
    bottom: 0;
    z-index: 3;
    display: flex;
    align-items: center;
    gap: 12px;
    max-width: 295px;
    padding: 16px 18px;
    color: #ffffff;
    background: rgba(10, 45, 75, 0.96);
    border: 1px solid rgba(252, 176, 4, 0.35);
    border-radius: 14px;
    box-shadow: 0 17px 38px rgba(10, 45, 75, 0.28);
    backdrop-filter: blur(13px);
}

.alupub-image-card-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    flex: 0 0 42px;
    color: #0a2d4b;
    background: #fcb004;
    border-radius: 10px;
}

.alupub-image-card > div {
    display: flex;
    flex-direction: column;
}

.alupub-image-card strong {
    font-size: 13px;
}

.alupub-image-card small {
    margin-top: 3px;
    color: rgba(255, 255, 255, 0.63);
    font-size: 11px;
}

.alupub-image-label {
    position: absolute;
    top: 50px;
    left: 0;
    z-index: 3;
    display: inline-flex;
    align-items: center;
    gap: 9px;
    padding: 11px 15px;
    color: #0a2d4b;
    font-size: 12px;
    font-weight: 800;
    background: #fcb004;
    border-radius: 10px;
    box-shadow: 0 12px 27px rgba(10, 45, 75, 0.2);
}

/* =====================================================
   SERVICES EN BAS
===================================================== */

.alupub-services-box {
    margin-top: 105px;
    padding: 55px 45px;
    background: #ffffff;
    border: 1px solid rgba(10, 45, 75, 0.08);
    border-radius: 24px;
    box-shadow: 0 25px 65px rgba(10, 45, 75, 0.09);
}

.alupub-services-heading {
    max-width: 760px;
    margin: 0 auto 42px;
    text-align: center;
}

.alupub-services-heading > span {
    display: block;
    margin-bottom: 9px;
    color: #fcb004;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 1.2px;
    text-transform: uppercase;
}

.alupub-services-heading h3 {
    margin-bottom: 13px;
    color: #0a2d4b;
    font-size: clamp(27px, 3vw, 38px);
    font-weight: 800;
}

.alupub-services-heading p {
    margin: 0;
    color: #70808e;
    font-size: 15px;
    line-height: 1.7;
}

.alupub-service-item {
    height: 100%;
    padding: 25px 21px;
    background: #f7f9fb;
    border: 1px solid rgba(10, 45, 75, 0.07);
    border-radius: 16px;
    transition:
        transform 0.3s ease,
        background-color 0.3s ease,
        border-color 0.3s ease,
        box-shadow 0.3s ease;
}

.alupub-service-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    margin-bottom: 18px;
    color: #0a2d4b;
    font-size: 21px;
    background: #fcb004;
    border-radius: 13px;
}

.alupub-service-item h4 {
    margin-bottom: 10px;
    color: #0a2d4b;
    font-size: 17px;
    font-weight: 750;
}

.alupub-service-item p {
    margin: 0;
    color: #74828e;
    font-size: 13px;
    line-height: 1.7;
}

.alupub-service-item:hover {
    background: #ffffff;
    border-color: rgba(252, 176, 4, 0.48);
    transform: translateY(-7px);
    box-shadow: 0 17px 35px rgba(10, 45, 75, 0.11);
}

/* =====================================================
   CTA CONTACT INFÉRIEUR
===================================================== */

.alupub-contact-banner {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 35px;
    margin-top: 40px;
    padding: 32px 35px;
    overflow: hidden;
    background:
        radial-gradient(
            circle at 90% 10%,
            rgba(252, 176, 4, 0.18),
            transparent 25%
        ),
        linear-gradient(
            135deg,
            #051d31,
            #0a2d4b
        );
    border: 1px solid rgba(252, 176, 4, 0.3);
    border-radius: 20px;
    box-shadow: 0 20px 48px rgba(10, 45, 75, 0.2);
}

.alupub-contact-content {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    gap: 19px;
}

.alupub-contact-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 61px;
    height: 61px;
    flex: 0 0 61px;
    color: #0a2d4b;
    font-size: 23px;
    background: #fcb004;
    border-radius: 15px;
}

.alupub-contact-small {
    display: block;
    margin-bottom: 5px;
    color: #fcb004;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 1.1px;
    text-transform: uppercase;
}

.alupub-contact-content h3 {
    margin: 0 0 7px;
    color: #ffffff;
    font-size: clamp(21px, 2.5vw, 29px);
    font-weight: 800;
}

.alupub-contact-content p {
    max-width: 760px;
    margin: 0;
    color: rgba(255, 255, 255, 0.66);
    font-size: 13px;
    line-height: 1.6;
}

.alupub-contact-btn {
    position: relative;
    z-index: 2;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 11px;
    min-width: 190px;
    min-height: 54px;
    padding: 0 21px;
    color: #0a2d4b;
    font-size: 13px;
    font-weight: 800;
    text-decoration: none;
    text-transform: uppercase;
    background: #fcb004;
    border: 1px solid #ffd45c;
    border-radius: 11px;
    transition:
        color 0.3s ease,
        background-color 0.3s ease,
        transform 0.3s ease;
}

.alupub-contact-btn:hover {
    color: #0a2d4b;
    background: #ffffff;
    transform: translateY(-3px);
}

.alupub-contact-btn i {
    transition: transform 0.3s ease;
}

.alupub-contact-btn:hover i {
    transform: translateX(4px);
}

/* =====================================================
   RESPONSIVE
===================================================== */

@media (max-width: 991.98px) {
    .alupub-presentation {
        padding: 80px 0;
    }

    .alupub-image-wrapper {
        margin: 20px auto 0;
    }

    .alupub-main-image {
        height: 500px;
    }

    .alupub-services-box {
        margin-top: 80px;
        padding: 45px 30px;
    }

    .alupub-contact-banner {
        align-items: flex-start;
        flex-direction: column;
    }
}

@media (max-width: 575.98px) {
    .alupub-presentation {
        padding: 65px 0;
    }

    .alupub-content h2 {
        font-size: 35px;
    }

    .alupub-benefits {
        grid-template-columns: 1fr;
    }

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

    .alupub-btn-primary,
    .alupub-btn-whatsapp {
        width: 100%;
    }

    .alupub-image-wrapper {
        padding: 10px 10px 25px 17px;
    }

    .alupub-main-image {
        height: 400px;
        border-width: 5px;
        border-radius: 19px;
    }

    .alupub-image-card {
        right: 0;
        max-width: calc(100% - 30px);
    }

    .alupub-image-label {
        top: 35px;
        left: 0;
    }

    .alupub-services-box {
        margin-top: 65px;
        padding: 38px 18px;
        border-radius: 19px;
    }

    .alupub-contact-banner {
        padding: 27px 20px;
    }

    .alupub-contact-content {
        align-items: flex-start;
        flex-direction: column;
    }

    .alupub-contact-btn {
        width: 100%;
    }
}

/* ==================================================
   SECTIONS ACCUEIL ALUPUB
================================================== */

:root {
    --hp-blue: #0a2d4b;
    --hp-blue-dark: #051d31;
    --hp-blue-light: #154b73;
    --hp-yellow: #fcb004;
    --hp-yellow-light: #ffd45c;
    --hp-text: #607180;
    --hp-light: #f5f8fb;
    --hp-white: #ffffff;
}

/* Titres communs */
.hp-section-heading {
    max-width: 780px;
    margin: 0 auto 52px;
    text-align: center;
}

.hp-eyebrow,
.hp-dark-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 16px;
    color: var(--hp-blue);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 1.2px;
    text-transform: uppercase;
}

.hp-eyebrow i {
    color: var(--hp-yellow);
}

.hp-dark-eyebrow {
    color: var(--hp-yellow);
}

.hp-section-heading h2,
.hp-faq h2 {
    margin-bottom: 17px;
    color: var(--hp-blue);
    font-size: clamp(32px, 4vw, 48px);
    font-weight: 800;
    line-height: 1.16;
    letter-spacing: -1px;
}

.hp-section-heading h2 span {
    color: var(--hp-yellow);
}

.hp-section-heading p {
    margin: 0;
    color: var(--hp-text);
    font-size: 16px;
    line-height: 1.8;
}

/* ==================================================
   SERVICES
================================================== */

.hp-services {
    padding: 105px 0;
    background:
        radial-gradient(
            circle at 95% 5%,
            rgba(252, 176, 4, 0.08),
            transparent 25%
        ),
        #f5f8fb;
}

.hp-service-card {
    position: relative;
    display: flex;
    flex-direction: column;
    height: 100%;
    padding: 29px 25px;
    overflow: hidden;
    color: inherit;
    text-decoration: none;
    background: #ffffff;
    border: 1px solid rgba(10, 45, 75, 0.08);
    border-radius: 18px;
    box-shadow: 0 13px 35px rgba(10, 45, 75, 0.06);
    transition:
        transform 0.35s ease,
        border-color 0.35s ease,
        box-shadow 0.35s ease;
}

.hp-service-card::before {
    content: "";
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
    height: 4px;
    background: linear-gradient(90deg, #fcb004, #ffd45c);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.35s ease;
}

.hp-service-number {
    position: absolute;
    top: 17px;
    right: 20px;
    color: rgba(10, 45, 75, 0.08);
    font-size: 37px;
    font-weight: 900;
}

.hp-service-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 55px;
    height: 55px;
    margin-bottom: 22px;
    color: #0a2d4b;
    font-size: 23px;
    background: linear-gradient(135deg, #ffd45c, #fcb004);
    border-radius: 14px;
    box-shadow: 0 10px 22px rgba(252, 176, 4, 0.22);
}

.hp-service-card h3 {
    margin-bottom: 12px;
    color: #0a2d4b;
    font-size: 19px;
    font-weight: 800;
}

.hp-service-card p {
    flex-grow: 1;
    margin-bottom: 20px;
    color: #6b7a87;
    font-size: 13px;
    line-height: 1.75;
}

.hp-service-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #0a2d4b;
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
}

.hp-service-link i {
    color: #fcb004;
    transition: transform 0.3s ease;
}

.hp-service-card:hover {
    transform: translateY(-9px);
    border-color: rgba(252, 176, 4, 0.48);
    box-shadow: 0 23px 48px rgba(10, 45, 75, 0.13);
}

.hp-service-card:hover::before {
    transform: scaleX(1);
}

.hp-service-card:hover .hp-service-link i {
    transform: translate(3px, -3px);
}

/* ==================================================
   EXPERTISE
================================================== */

.hp-expertise {
    padding: 105px 0;
    color: #ffffff;
    background:
        radial-gradient(
            circle at 85% 10%,
            rgba(252, 176, 4, 0.12),
            transparent 28%
        ),
        linear-gradient(135deg, #051d31, #0a2d4b);
}

.hp-expertise h2 {
    margin-bottom: 20px;
    color: #ffffff;
    font-size: clamp(33px, 4vw, 49px);
    font-weight: 800;
    line-height: 1.15;
}

.hp-expertise p {
    color: rgba(255, 255, 255, 0.66);
    font-size: 14px;
    line-height: 1.8;
}

.hp-expertise .hp-expertise-intro {
    color: rgba(255, 255, 255, 0.86);
    font-size: 16px;
}

.hp-yellow-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    min-height: 53px;
    margin-top: 14px;
    padding: 0 22px;
    color: #0a2d4b;
    font-size: 13px;
    font-weight: 800;
    text-decoration: none;
    text-transform: uppercase;
    background: linear-gradient(135deg, #ffd45c, #fcb004);
    border-radius: 11px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.hp-yellow-btn:hover {
    color: #0a2d4b;
    transform: translateY(-3px);
    box-shadow: 0 15px 32px rgba(252, 176, 4, 0.25);
}

.hp-expertise-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}

.hp-expertise-card {
    display: flex;
    gap: 15px;
    padding: 24px 20px;
    background: rgba(255, 255, 255, 0.055);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    transition: background 0.3s ease, border-color 0.3s ease;
}

.hp-expertise-card > span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    flex: 0 0 45px;
    color: #0a2d4b;
    font-size: 19px;
    background: #fcb004;
    border-radius: 11px;
}

.hp-expertise-card h3 {
    margin-bottom: 7px;
    color: #ffffff;
    font-size: 16px;
    font-weight: 750;
}

.hp-expertise-card p {
    margin: 0;
    font-size: 12px;
    line-height: 1.65;
}

.hp-expertise-card:hover {
    background: rgba(252, 176, 4, 0.08);
    border-color: rgba(252, 176, 4, 0.3);
}

/* ==================================================
   PROCESSUS
================================================== */

.hp-process {
    padding: 105px 0;
    background: #ffffff;
}

.hp-process-card {
    position: relative;
    height: 100%;
    padding: 29px 23px;
    background: #f7f9fb;
    border: 1px solid rgba(10, 45, 75, 0.07);
    border-radius: 17px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.hp-process-number {
    position: absolute;
    top: 20px;
    right: 22px;
    color: rgba(10, 45, 75, 0.1);
    font-size: 30px;
    font-weight: 900;
}

.hp-process-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 53px;
    height: 53px;
    margin-bottom: 21px;
    color: #fcb004;
    font-size: 21px;
    background: #0a2d4b;
    border-radius: 13px;
}

.hp-process-card h3 {
    color: #0a2d4b;
    font-size: 18px;
    font-weight: 800;
}

.hp-process-card p {
    margin: 0;
    color: #71808c;
    font-size: 13px;
    line-height: 1.75;
}

.hp-process-card:hover {
    transform: translateY(-7px);
    box-shadow: 0 18px 38px rgba(10, 45, 75, 0.1);
}

/* ==================================================
   ZONES
================================================== */

.hp-zones {
    padding: 30px 0 105px;
    background: #ffffff;
}

.hp-zones-box {
    padding: 55px;
    color: #ffffff;
    background:
        radial-gradient(
            circle at 90% 0%,
            rgba(252, 176, 4, 0.18),
            transparent 30%
        ),
        linear-gradient(135deg, #051d31, #0a2d4b);
    border: 1px solid rgba(252, 176, 4, 0.28);
    border-radius: 24px;
    box-shadow: 0 25px 60px rgba(10, 45, 75, 0.18);
}

.hp-zones h2 {
    margin-bottom: 18px;
    color: #ffffff;
    font-size: clamp(31px, 4vw, 45px);
    font-weight: 800;
    line-height: 1.15;
}

.hp-zones p {
    color: rgba(255, 255, 255, 0.67);
    font-size: 14px;
    line-height: 1.8;
}

.hp-zone-btn {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    margin-top: 10px;
    padding: 14px 19px;
    color: #0a2d4b;
    font-size: 13px;
    font-weight: 800;
    text-decoration: none;
    background: #fcb004;
    border-radius: 10px;
}

.hp-zone-btn:hover {
    color: #0a2d4b;
    background: #ffd45c;
}

.hp-city-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 13px;
}

.hp-city-card {
    display: flex;
    align-items: center;
    gap: 11px;
    min-height: 76px;
    padding: 16px 18px;
    background: rgba(255, 255, 255, 0.07);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 13px;
}

.hp-city-card i {
    color: #fcb004;
    font-size: 19px;
}

.hp-city-card strong,
.hp-city-card small {
    display: block;
}

.hp-city-card strong {
    color: #ffffff;
    font-size: 14px;
}

.hp-city-card small {
    margin-top: 3px;
    color: rgba(255, 255, 255, 0.52);
    font-size: 11px;
}

.hp-city-main,
.hp-city-morocco {
    background: rgba(252, 176, 4, 0.13);
    border-color: rgba(252, 176, 4, 0.34);
}

/* ==================================================
   FAQ
================================================== */

.hp-faq {
    padding: 105px 0;
    background: #f5f8fb;
}

.hp-faq > .container > .row > div:first-child > p {
    color: #667785;
    font-size: 15px;
    line-height: 1.8;
}

.hp-faq-contact {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 27px;
}

.hp-faq-contact > span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    color: #0a2d4b;
    background: #fcb004;
    border-radius: 12px;
}

.hp-faq-contact div {
    display: flex;
    flex-direction: column;
}

.hp-faq-contact small {
    color: #7a8994;
}

.hp-faq-contact a {
    color: #0a2d4b;
    font-size: 17px;
    font-weight: 800;
    text-decoration: none;
}

.hp-accordion .accordion-item {
    margin-bottom: 12px;
    overflow: hidden;
    background: #ffffff;
    border: 1px solid rgba(10, 45, 75, 0.09);
    border-radius: 13px;
}

.hp-accordion .accordion-button {
    padding: 19px 21px;
    color: #0a2d4b;
    font-size: 14px;
    font-weight: 750;
    background: #ffffff;
    box-shadow: none;
}

.hp-accordion .accordion-button:not(.collapsed) {
    color: #0a2d4b;
    background: rgba(252, 176, 4, 0.1);
}

.hp-accordion .accordion-button::after {
    background-size: 16px;
}

.hp-accordion .accordion-body {
    padding: 3px 21px 21px;
    color: #697986;
    font-size: 13px;
    line-height: 1.75;
}

/* ==================================================
   CTA FINAL
================================================== */

.hp-final-cta {
    padding: 0 0 105px;
    background: #f5f8fb;
}

.hp-final-cta-box {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 35px;
    padding: 38px 40px;
    background: linear-gradient(135deg, #fcb004, #e49b00);
    border-radius: 21px;
    box-shadow: 0 22px 50px rgba(10, 45, 75, 0.18);
}

.hp-final-content {
    display: flex;
    align-items: center;
    gap: 19px;
}

.hp-final-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 61px;
    height: 61px;
    flex: 0 0 61px;
    color: #fcb004;
    font-size: 23px;
    background: #0a2d4b;
    border-radius: 15px;
}

.hp-final-small {
    color: rgba(5, 29, 49, 0.7);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.hp-final-content h2 {
    margin: 4px 0 6px;
    color: #051d31;
    font-size: clamp(23px, 3vw, 33px);
    font-weight: 800;
}

.hp-final-content p {
    margin: 0;
    color: rgba(5, 29, 49, 0.72);
    font-size: 13px;
}

.hp-final-actions {
    display: flex;
    flex-shrink: 0;
    gap: 10px;
}

.hp-final-primary,
.hp-final-whatsapp {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    min-height: 52px;
    padding: 0 19px;
    color: #ffffff;
    font-size: 12px;
    font-weight: 800;
    text-decoration: none;
    border-radius: 10px;
}

.hp-final-primary {
    background: #0a2d4b;
}

.hp-final-whatsapp {
    background: #159957;
}

.hp-final-primary:hover,
.hp-final-whatsapp:hover {
    color: #ffffff;
    transform: translateY(-2px);
}

/* ==================================================
   RESPONSIVE
================================================== */

@media (max-width: 991.98px) {
    .hp-services,
    .hp-expertise,
    .hp-process,
    .hp-faq {
        padding: 80px 0;
    }

    .hp-expertise-grid {
        margin-top: 20px;
    }

    .hp-zones-box {
        padding: 40px 30px;
    }

    .hp-final-cta-box {
        align-items: flex-start;
        flex-direction: column;
    }
}

@media (max-width: 575.98px) {
    .hp-services,
    .hp-expertise,
    .hp-process,
    .hp-faq {
        padding: 65px 0;
    }

    .hp-section-heading {
        margin-bottom: 38px;
    }

    .hp-expertise-grid,
    .hp-city-grid {
        grid-template-columns: 1fr;
    }

    .hp-zones {
        padding-bottom: 65px;
    }

    .hp-zones-box {
        padding: 32px 20px;
        border-radius: 18px;
    }

    .hp-final-cta {
        padding-bottom: 65px;
    }

    .hp-final-cta-box {
        padding: 28px 20px;
    }

    .hp-final-content {
        align-items: flex-start;
        flex-direction: column;
    }

    .hp-final-actions {
        width: 100%;
        flex-direction: column;
    }

    .hp-final-primary,
    .hp-final-whatsapp {
        width: 100%;
    }
}


/* ==================================================
   PAGE LOGO 3D ALUPUB
================================================== */

:root {
    --l3d-blue: #0a2d4b;
    --l3d-blue-dark: #051d31;
    --l3d-blue-light: #154b73;
    --l3d-yellow: #fcb004;
    --l3d-yellow-light: #ffd45c;
    --l3d-text: #687986;
    --l3d-light: #f5f8fb;
    --l3d-white: #ffffff;
}

.logo3d-page {
    overflow: hidden;
}

/* Titres communs */
.logo3d-eyebrow,
.logo3d-dark-eyebrow {
    display: inline-block;
    margin-bottom: 15px;
    color: var(--l3d-yellow);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 1.2px;
    text-transform: uppercase;
}

.logo3d-section-heading {
    max-width: 780px;
    margin: 0 auto 50px;
    text-align: center;
}

.logo3d-section-heading > span {
    display: block;
    margin-bottom: 12px;
    color: var(--l3d-yellow);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 1.2px;
    text-transform: uppercase;
}

.logo3d-section-heading h2,
.logo3d-intro h2,
.logo3d-faq h2 {
    margin-bottom: 16px;
    color: var(--l3d-blue);
    font-size: clamp(32px, 4vw, 48px);
    font-weight: 800;
    line-height: 1.16;
    letter-spacing: -1px;
}

.logo3d-section-heading p {
    margin: 0;
    color: var(--l3d-text);
    font-size: 15px;
    line-height: 1.8;
}

/* ==================================================
   HERO
================================================== */

.logo3d-hero {
    position: relative;
    min-height: 590px;
    padding: 125px 0 100px;
    color: #ffffff;
    background-position: center;
    background-size: cover;
    display: flex;
    align-items: center;
    isolation: isolate;
}

.logo3d-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -1;
    background:
        linear-gradient(
            90deg,
            rgba(5, 29, 49, 0.98) 0%,
            rgba(10, 45, 75, 0.9) 48%,
            rgba(10, 45, 75, 0.44) 100%
        ),
        linear-gradient(
            180deg,
            transparent 45%,
            rgba(5, 29, 49, 0.76) 100%
        );
}

.logo3d-breadcrumb {
    display: flex;
    align-items: center;
    gap: 9px;
    margin-bottom: 22px;
    font-size: 12px;
}

.logo3d-breadcrumb a {
    color: rgba(255, 255, 255, 0.65);
    text-decoration: none;
}

.logo3d-breadcrumb i {
    color: var(--l3d-yellow);
    font-size: 9px;
}

.logo3d-breadcrumb span {
    color: #ffffff;
}

.logo3d-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 18px;
    padding: 9px 15px;
    color: var(--l3d-yellow);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 1px;
    text-transform: uppercase;
    background: rgba(252, 176, 4, 0.1);
    border: 1px solid rgba(252, 176, 4, 0.4);
    border-radius: 50px;
}

.logo3d-hero h1 {
    max-width: 800px;
    margin-bottom: 22px;
    color: #ffffff;
    font-size: clamp(42px, 6vw, 72px);
    font-weight: 850;
    line-height: 1.07;
    letter-spacing: -1.8px;
}

.logo3d-hero h1 span {
    color: var(--l3d-yellow);
}

.logo3d-hero p {
    max-width: 710px;
    margin-bottom: 30px;
    color: rgba(255, 255, 255, 0.78);
    font-size: 17px;
    line-height: 1.75;
}

.logo3d-hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.logo3d-btn-primary,
.logo3d-btn-whatsapp,
.logo3d-inline-btn,
.logo3d-yellow-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    min-height: 53px;
    padding: 0 22px;
    font-size: 13px;
    font-weight: 800;
    text-decoration: none;
    border-radius: 11px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.logo3d-btn-primary,
.logo3d-yellow-btn {
    color: var(--l3d-blue);
    background: linear-gradient(
        135deg,
        var(--l3d-yellow-light),
        var(--l3d-yellow)
    );
}

.logo3d-btn-whatsapp {
    color: #ffffff;
    background: #159957;
}

.logo3d-btn-primary:hover,
.logo3d-yellow-btn:hover,
.logo3d-btn-whatsapp:hover {
    color: inherit;
    transform: translateY(-3px);
    box-shadow: 0 15px 32px rgba(5, 29, 49, 0.24);
}

/* ==================================================
   INTRODUCTION
================================================== */

.logo3d-intro {
    padding: 105px 0;
    background: #ffffff;
}

.logo3d-heading-line {
    width: 70px;
    height: 4px;
    margin-bottom: 23px;
    background: linear-gradient(
        90deg,
        var(--l3d-yellow),
        var(--l3d-yellow-light)
    );
    border-radius: 20px;
}

.logo3d-intro p {
    color: var(--l3d-text);
    font-size: 14px;
    line-height: 1.85;
}

.logo3d-intro .logo3d-lead {
    color: #354c5e;
    font-size: 17px;
}

.logo3d-intro strong {
    color: var(--l3d-blue);
}

.logo3d-checks {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    margin: 27px 0;
}

.logo3d-checks div {
    display: flex;
    align-items: center;
    gap: 9px;
    color: var(--l3d-blue);
    font-size: 13px;
    font-weight: 700;
}

.logo3d-checks i {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 25px;
    height: 25px;
    color: var(--l3d-blue);
    background: var(--l3d-yellow);
    border-radius: 50%;
}

.logo3d-inline-btn {
    color: #ffffff;
    background: var(--l3d-blue);
}

.logo3d-inline-btn:hover {
    color: #ffffff;
    transform: translateY(-3px);
}

/* Image introduction */
.logo3d-intro-image {
    position: relative;
    max-width: 590px;
    margin-left: auto;
    padding: 15px 15px 30px 30px;
}

.logo3d-image-background {
    position: absolute;
    top: 0;
    right: 0;
    width: 78%;
    height: 85%;
    background: var(--l3d-yellow);
    border-radius: 24px;
}

.logo3d-intro-image img {
    position: relative;
    z-index: 2;
    width: 100%;
    height: 560px;
    object-fit: cover;
    border: 6px solid #ffffff;
    border-radius: 22px;
    box-shadow: 0 25px 60px rgba(10, 45, 75, 0.2);
}

.logo3d-image-card {
    position: absolute;
    right: 0;
    bottom: 0;
    z-index: 3;
    display: flex;
    align-items: center;
    gap: 11px;
    padding: 15px 17px;
    color: #ffffff;
    background: rgba(10, 45, 75, 0.96);
    border: 1px solid rgba(252, 176, 4, 0.3);
    border-radius: 13px;
    box-shadow: 0 15px 35px rgba(10, 45, 75, 0.25);
}

.logo3d-image-card > span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 41px;
    height: 41px;
    color: var(--l3d-blue);
    background: var(--l3d-yellow);
    border-radius: 10px;
}

.logo3d-image-card div {
    display: flex;
    flex-direction: column;
}

.logo3d-image-card strong {
    color: #ffffff;
    font-size: 13px;
}

.logo3d-image-card small {
    color: rgba(255, 255, 255, 0.6);
}

/* ==================================================
   TYPES DE LOGOS
================================================== */

.logo3d-types {
    padding: 105px 0;
    background: var(--l3d-light);
}

.logo3d-type-card {
    height: 100%;
    padding: 28px 24px;
    background: #ffffff;
    border: 1px solid rgba(10, 45, 75, 0.08);
    border-radius: 17px;
    box-shadow: 0 13px 35px rgba(10, 45, 75, 0.06);
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.logo3d-type-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 53px;
    height: 53px;
    margin-bottom: 19px;
    color: var(--l3d-blue);
    font-size: 21px;
    background: var(--l3d-yellow);
    border-radius: 13px;
}

.logo3d-type-card h3 {
    color: var(--l3d-blue);
    font-size: 18px;
    font-weight: 800;
}

.logo3d-type-card p,
.logo3d-type-card li {
    color: var(--l3d-text);
    font-size: 13px;
    line-height: 1.7;
}

.logo3d-type-card ul {
    margin: 15px 0 0;
    padding-left: 18px;
}

.logo3d-type-card li::marker {
    color: var(--l3d-yellow);
}

.logo3d-type-card:hover {
    transform: translateY(-7px);
    border-color: rgba(252, 176, 4, 0.5);
}

/* ==================================================
   MATÉRIAUX
================================================== */

.logo3d-materials {
    padding: 105px 0;
    color: #ffffff;
    background:
        radial-gradient(
            circle at 85% 5%,
            rgba(252, 176, 4, 0.15),
            transparent 28%
        ),
        linear-gradient(135deg, #051d31, #0a2d4b);
}

.logo3d-materials h2 {
    color: #ffffff;
    font-size: clamp(32px, 4vw, 47px);
    font-weight: 800;
}

.logo3d-materials p {
    color: rgba(255, 255, 255, 0.68);
    font-size: 14px;
    line-height: 1.8;
}

.logo3d-material-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 13px;
}

.logo3d-material {
    padding: 22px 17px;
    background: rgba(255, 255, 255, 0.055);
    border: 1px solid rgba(255, 255, 255, 0.11);
    border-radius: 14px;
}

.logo3d-material i {
    color: var(--l3d-yellow);
    font-size: 23px;
}

.logo3d-material h3 {
    margin: 13px 0 6px;
    color: #ffffff;
    font-size: 16px;
    font-weight: 800;
}

.logo3d-material p {
    margin: 0;
    font-size: 12px;
}

/* ==================================================
   SECTEURS
================================================== */

.logo3d-sectors {
    padding: 105px 0;
    background: #ffffff;
}

.logo3d-sector-list {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 14px;
}

.logo3d-sector-list div {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 20px 18px;
    color: var(--l3d-blue);
    font-size: 14px;
    font-weight: 750;
    background: var(--l3d-light);
    border: 1px solid rgba(10, 45, 75, 0.07);
    border-radius: 13px;
}

.logo3d-sector-list i {
    color: var(--l3d-yellow);
    font-size: 20px;
}

/* ==================================================
   PROCESSUS
================================================== */

.logo3d-process {
    padding: 105px 0;
    background: var(--l3d-light);
}

.logo3d-process-card {
    position: relative;
    height: 100%;
    padding: 28px 23px;
    background: #ffffff;
    border: 1px solid rgba(10, 45, 75, 0.08);
    border-radius: 16px;
}

.logo3d-process-card strong {
    position: absolute;
    top: 20px;
    right: 21px;
    color: rgba(10, 45, 75, 0.09);
    font-size: 32px;
    font-weight: 900;
}

.logo3d-process-card > i {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 51px;
    height: 51px;
    margin-bottom: 19px;
    color: var(--l3d-blue);
    font-size: 20px;
    background: var(--l3d-yellow);
    border-radius: 12px;
}

.logo3d-process-card h3 {
    color: var(--l3d-blue);
    font-size: 17px;
    font-weight: 800;
}

.logo3d-process-card p {
    margin: 0;
    color: var(--l3d-text);
    font-size: 13px;
    line-height: 1.7;
}

/* ==================================================
   ZONES
================================================== */

.logo3d-zones {
    padding: 105px 0;
    background: #ffffff;
}

.logo3d-zones-box {
    padding: 55px;
    color: #ffffff;
    background: linear-gradient(135deg, #051d31, #0a2d4b);
    border: 1px solid rgba(252, 176, 4, 0.3);
    border-radius: 23px;
    box-shadow: 0 25px 60px rgba(10, 45, 75, 0.18);
}

.logo3d-zones h2 {
    color: #ffffff;
    font-size: clamp(31px, 4vw, 45px);
    font-weight: 800;
}

.logo3d-zones p {
    color: rgba(255, 255, 255, 0.67);
    font-size: 14px;
    line-height: 1.8;
}

.logo3d-zones strong {
    color: #ffffff;
}

.logo3d-city-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 13px;
}

.logo3d-city {
    display: flex;
    align-items: center;
    gap: 11px;
    min-height: 75px;
    padding: 16px 18px;
    background: rgba(255, 255, 255, 0.065);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 13px;
}

.logo3d-city i {
    color: var(--l3d-yellow);
    font-size: 19px;
}

.logo3d-city span {
    display: flex;
    flex-direction: column;
}

.logo3d-city small {
    color: rgba(255, 255, 255, 0.52);
}

.logo3d-city-main,
.logo3d-city-morocco {
    background: rgba(252, 176, 4, 0.12);
    border-color: rgba(252, 176, 4, 0.32);
}

/* ==================================================
   FAQ
================================================== */

.logo3d-faq {
    padding: 105px 0;
    background: var(--l3d-light);
}

.logo3d-faq p {
    color: var(--l3d-text);
    font-size: 14px;
    line-height: 1.8;
}

.logo3d-accordion .accordion-item {
    margin-bottom: 12px;
    overflow: hidden;
    border: 1px solid rgba(10, 45, 75, 0.09);
    border-radius: 13px;
}

.logo3d-accordion .accordion-button {
    padding: 19px 21px;
    color: var(--l3d-blue);
    font-size: 14px;
    font-weight: 750;
    background: #ffffff;
    box-shadow: none;
}

.logo3d-accordion .accordion-button:not(.collapsed) {
    background: rgba(252, 176, 4, 0.11);
}

.logo3d-accordion .accordion-body {
    color: var(--l3d-text);
    font-size: 13px;
    line-height: 1.75;
}

/* ==================================================
   CTA FINAL
================================================== */

.logo3d-final {
    padding: 0 0 105px;
    background: var(--l3d-light);
}

.logo3d-final-box {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 35px;
    padding: 38px 40px;
    background: linear-gradient(
        135deg,
        var(--l3d-yellow),
        #e49b00
    );
    border-radius: 21px;
    box-shadow: 0 22px 50px rgba(10, 45, 75, 0.17);
}

.logo3d-final-box > div:first-child > span {
    color: rgba(5, 29, 49, 0.7);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 1.1px;
    text-transform: uppercase;
}

.logo3d-final h2 {
    margin: 5px 0 7px;
    color: var(--l3d-blue-dark);
    font-size: clamp(24px, 3vw, 34px);
    font-weight: 800;
}

.logo3d-final p {
    margin: 0;
    color: rgba(5, 29, 49, 0.72);
    font-size: 13px;
}

.logo3d-final-actions {
    display: flex;
    flex-shrink: 0;
    gap: 10px;
}

.logo3d-final-primary,
.logo3d-final-call {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    min-height: 52px;
    padding: 0 19px;
    color: #ffffff;
    font-size: 12px;
    font-weight: 800;
    text-decoration: none;
    border-radius: 10px;
}

.logo3d-final-primary {
    background: var(--l3d-blue);
}

.logo3d-final-call {
    color: var(--l3d-blue);
    background: #ffffff;
}

/* ==================================================
   RESPONSIVE
================================================== */

@media (max-width: 991.98px) {
    .logo3d-intro,
    .logo3d-types,
    .logo3d-materials,
    .logo3d-sectors,
    .logo3d-process,
    .logo3d-zones,
    .logo3d-faq {
        padding: 80px 0;
    }

    .logo3d-intro-image {
        margin: 25px auto 0;
    }

    .logo3d-material-grid {
        margin-top: 25px;
    }

    .logo3d-sector-list {
        grid-template-columns: repeat(2, 1fr);
    }

    .logo3d-zones-box {
        padding: 40px 30px;
    }

    .logo3d-final-box {
        align-items: flex-start;
        flex-direction: column;
    }
}

@media (max-width: 575.98px) {
    .logo3d-hero {
        min-height: 540px;
        padding: 90px 0 70px;
    }

    .logo3d-hero h1 {
        font-size: 40px;
    }

    .logo3d-hero-actions {
        flex-direction: column;
    }

    .logo3d-btn-primary,
    .logo3d-btn-whatsapp {
        width: 100%;
    }

    .logo3d-intro,
    .logo3d-types,
    .logo3d-materials,
    .logo3d-sectors,
    .logo3d-process,
    .logo3d-zones,
    .logo3d-faq {
        padding: 65px 0;
    }

    .logo3d-checks,
    .logo3d-material-grid,
    .logo3d-sector-list,
    .logo3d-city-grid {
        grid-template-columns: 1fr;
    }

    .logo3d-intro-image {
        padding: 10px 10px 25px 17px;
    }

    .logo3d-intro-image img {
        height: 430px;
    }

    .logo3d-zones-box {
        padding: 32px 20px;
        border-radius: 18px;
    }

    .logo3d-final {
        padding-bottom: 65px;
    }

    .logo3d-final-box {
        padding: 28px 20px;
    }

    .logo3d-final-actions {
        width: 100%;
        flex-direction: column;
    }

    .logo3d-final-primary,
    .logo3d-final-call {
        width: 100%;
    }
}

/* ==================================================
   PAGE LOGO INOX ALUPUB
================================================== */

:root {
    --inox-blue: #0a2d4b;
    --inox-blue-dark: #051d31;
    --inox-blue-light: #154b73;
    --inox-yellow: #fcb004;
    --inox-yellow-light: #ffd45c;
    --inox-text: #687986;
    --inox-light: #f5f8fb;
    --inox-white: #ffffff;
}

.inox-page {
    overflow: hidden;
}

/* Titres communs */
.inox-eyebrow,
.inox-dark-eyebrow {
    display: inline-block;
    margin-bottom: 15px;
    color: var(--inox-yellow);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 1.2px;
    text-transform: uppercase;
}

.inox-section-heading {
    max-width: 780px;
    margin: 0 auto 50px;
    text-align: center;
}

.inox-section-heading > span {
    display: block;
    margin-bottom: 12px;
    color: var(--inox-yellow);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 1.2px;
    text-transform: uppercase;
}

.inox-section-heading h2,
.inox-intro h2,
.inox-faq h2 {
    margin-bottom: 16px;
    color: var(--inox-blue);
    font-size: clamp(32px, 4vw, 48px);
    font-weight: 800;
    line-height: 1.16;
    letter-spacing: -1px;
}

.inox-section-heading p {
    margin: 0;
    color: var(--inox-text);
    font-size: 15px;
    line-height: 1.8;
}

/* ==================================================
   HERO
================================================== */

.inox-hero {
    position: relative;
    isolation: isolate;
    display: flex;
    align-items: center;
    min-height: 590px;
    padding: 125px 0 100px;
    color: #ffffff;
    background-position: center;
    background-size: cover;
}

.inox-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -1;
    background:
        linear-gradient(
            90deg,
            rgba(5, 29, 49, 0.98) 0%,
            rgba(10, 45, 75, 0.9) 48%,
            rgba(10, 45, 75, 0.42) 100%
        ),
        linear-gradient(
            180deg,
            transparent 45%,
            rgba(5, 29, 49, 0.76) 100%
        );
}

.inox-breadcrumb {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 9px;
    margin-bottom: 22px;
    font-size: 12px;
}

.inox-breadcrumb a {
    color: rgba(255, 255, 255, 0.65);
    text-decoration: none;
}

.inox-breadcrumb i {
    color: var(--inox-yellow);
    font-size: 9px;
}

.inox-breadcrumb span {
    color: #ffffff;
}

.inox-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 18px;
    padding: 9px 15px;
    color: var(--inox-yellow);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 1px;
    text-transform: uppercase;
    background: rgba(252, 176, 4, 0.1);
    border: 1px solid rgba(252, 176, 4, 0.4);
    border-radius: 50px;
}

.inox-hero h1 {
    max-width: 820px;
    margin-bottom: 22px;
    color: #ffffff;
    font-size: clamp(42px, 6vw, 72px);
    font-weight: 850;
    line-height: 1.07;
    letter-spacing: -1.8px;
}

.inox-hero h1 span {
    color: var(--inox-yellow);
}

.inox-hero p {
    max-width: 710px;
    margin-bottom: 30px;
    color: rgba(255, 255, 255, 0.78);
    font-size: 17px;
    line-height: 1.75;
}

.inox-hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.inox-btn-primary,
.inox-btn-whatsapp,
.inox-dark-btn,
.inox-yellow-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    min-height: 53px;
    padding: 0 22px;
    font-size: 13px;
    font-weight: 800;
    text-decoration: none;
    border-radius: 11px;
    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease;
}

.inox-btn-primary,
.inox-yellow-btn {
    color: var(--inox-blue);
    background: linear-gradient(
        135deg,
        var(--inox-yellow-light),
        var(--inox-yellow)
    );
}

.inox-btn-whatsapp {
    color: #ffffff;
    background: #159957;
}

.inox-dark-btn {
    color: #ffffff;
    background: var(--inox-blue);
}

.inox-btn-primary:hover,
.inox-btn-whatsapp:hover,
.inox-dark-btn:hover,
.inox-yellow-btn:hover {
    color: inherit;
    color: #ffffff;
    transform: translateY(-3px);
    box-shadow: 0 15px 32px rgba(5, 29, 49, 0.24);
}

/* ==================================================
   INTRODUCTION
================================================== */

.inox-intro {
    padding: 105px 0;
    background: #ffffff;
}

.inox-title-line {
    width: 72px;
    height: 4px;
    margin-bottom: 23px;
    background: linear-gradient(
        90deg,
        var(--inox-yellow),
        var(--inox-yellow-light)
    );
    border-radius: 20px;
}

.inox-intro p {
    color: var(--inox-text);
    font-size: 14px;
    line-height: 1.85;
}

.inox-intro .inox-lead {
    color: #354c5e;
    font-size: 17px;
}

.inox-intro strong {
    color: var(--inox-blue);
}

.inox-check-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    margin: 27px 0;
}

.inox-check-grid div {
    display: flex;
    align-items: center;
    gap: 9px;
    color: var(--inox-blue);
    font-size: 13px;
    font-weight: 700;
}

.inox-check-grid i {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 25px;
    height: 25px;
    color: var(--inox-blue);
    background: var(--inox-yellow);
    border-radius: 50%;
}

/* Image */
.inox-intro-image {
    position: relative;
    max-width: 590px;
    margin-left: auto;
    padding: 15px 15px 30px 30px;
}

.inox-image-decoration {
    position: absolute;
    top: 0;
    right: 0;
    width: 78%;
    height: 85%;
    background: linear-gradient(
        135deg,
        #fcb004,
        #ffd45c
    );
    border-radius: 24px;
}

.inox-intro-image img {
    position: relative;
    z-index: 2;
    display: block;
    width: 100%;
    height: 560px;
    object-fit: cover;
    border: 6px solid #ffffff;
    border-radius: 22px;
    box-shadow: 0 25px 60px rgba(10, 45, 75, 0.2);
}

.inox-image-card {
    position: absolute;
    right: 0;
    bottom: 0;
    z-index: 3;
    display: flex;
    align-items: center;
    gap: 11px;
    padding: 15px 17px;
    color: #ffffff;
    background: rgba(10, 45, 75, 0.96);
    border: 1px solid rgba(252, 176, 4, 0.3);
    border-radius: 13px;
    box-shadow: 0 15px 35px rgba(10, 45, 75, 0.25);
}

.inox-image-card > span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 41px;
    height: 41px;
    color: var(--inox-blue);
    background: var(--inox-yellow);
    border-radius: 10px;
}

.inox-image-card div {
    display: flex;
    flex-direction: column;
}

.inox-image-card strong {
    font-size: 13px;
}

.inox-image-card small {
    color: rgba(255, 255, 255, 0.6);
}

/* ==================================================
   TYPES
================================================== */

.inox-types {
    padding: 105px 0;
    background: var(--inox-light);
}

.inox-type-card {
    height: 100%;
    padding: 28px 24px;
    background: #ffffff;
    border: 1px solid rgba(10, 45, 75, 0.08);
    border-radius: 17px;
    box-shadow: 0 13px 35px rgba(10, 45, 75, 0.06);
    transition:
        transform 0.3s ease,
        border-color 0.3s ease;
}

.inox-type-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 53px;
    height: 53px;
    margin-bottom: 19px;
    color: var(--inox-blue);
    font-size: 21px;
    background: var(--inox-yellow);
    border-radius: 13px;
}

.inox-type-card h3 {
    color: var(--inox-blue);
    font-size: 18px;
    font-weight: 800;
}

.inox-type-card p,
.inox-type-card li {
    color: var(--inox-text);
    font-size: 13px;
    line-height: 1.7;
}

.inox-type-card ul {
    margin: 15px 0 0;
    padding-left: 18px;
}

.inox-type-card li::marker {
    color: var(--inox-yellow);
}

.inox-type-card:hover {
    transform: translateY(-7px);
    border-color: rgba(252, 176, 4, 0.5);
}

/* ==================================================
   PARTIE TECHNIQUE
================================================== */

.inox-technical {
    padding: 105px 0;
    color: #ffffff;
    background:
        radial-gradient(
            circle at 85% 5%,
            rgba(252, 176, 4, 0.15),
            transparent 28%
        ),
        linear-gradient(135deg, #051d31, #0a2d4b);
}

.inox-technical h2 {
    color: #ffffff;
    font-size: clamp(32px, 4vw, 47px);
    font-weight: 800;
}

.inox-technical p {
    color: rgba(255, 255, 255, 0.68);
    font-size: 14px;
    line-height: 1.8;
}

.inox-technical-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
}

.inox-technical-card {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 23px 20px;
    background: rgba(255, 255, 255, 0.055);
    border: 1px solid rgba(255, 255, 255, 0.11);
    border-radius: 14px;
}

.inox-technical-card > span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    flex: 0 0 48px;
    color: var(--inox-blue);
    font-size: 15px;
    font-weight: 900;
    background: var(--inox-yellow);
    border-radius: 11px;
}

.inox-technical-card h3 {
    margin-bottom: 6px;
    color: #ffffff;
    font-size: 16px;
    font-weight: 800;
}

.inox-technical-card p {
    margin: 0;
    font-size: 12px;
    line-height: 1.65;
}

/* ==================================================
   AVANTAGES
================================================== */

.inox-benefits {
    padding: 105px 0;
    background: #ffffff;
}

.inox-benefit-card {
    height: 100%;
    padding: 27px 22px;
    text-align: center;
    background: var(--inox-light);
    border: 1px solid rgba(10, 45, 75, 0.07);
    border-radius: 16px;
}

.inox-benefit-card > span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 53px;
    height: 53px;
    margin-bottom: 17px;
    color: var(--inox-blue);
    font-size: 21px;
    background: var(--inox-yellow);
    border-radius: 50%;
}

.inox-benefit-card h3 {
    color: var(--inox-blue);
    font-size: 17px;
    font-weight: 800;
}

.inox-benefit-card p {
    margin: 0;
    color: var(--inox-text);
    font-size: 13px;
    line-height: 1.7;
}

/* ==================================================
   SECTEURS
================================================== */

.inox-sectors {
    padding: 105px 0;
    background: var(--inox-light);
}

.inox-sector-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 14px;
}

.inox-sector-item {
    display: flex;
    align-items: center;
    gap: 12px;
    min-height: 70px;
    padding: 17px 18px;
    color: var(--inox-blue);
    font-size: 14px;
    font-weight: 750;
    background: #ffffff;
    border: 1px solid rgba(10, 45, 75, 0.08);
    border-radius: 13px;
}

.inox-sector-item i {
    color: var(--inox-yellow);
    font-size: 20px;
}

/* ==================================================
   PROCESSUS
================================================== */

.inox-process {
    padding: 105px 0;
    background: #ffffff;
}

.inox-process-card {
    position: relative;
    height: 100%;
    padding: 28px 23px;
    background: var(--inox-light);
    border: 1px solid rgba(10, 45, 75, 0.07);
    border-radius: 16px;
}

.inox-process-card > strong {
    position: absolute;
    top: 18px;
    right: 20px;
    color: rgba(10, 45, 75, 0.09);
    font-size: 32px;
    font-weight: 900;
}

.inox-process-card > span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 51px;
    height: 51px;
    margin-bottom: 19px;
    color: var(--inox-blue);
    font-size: 20px;
    background: var(--inox-yellow);
    border-radius: 12px;
}

.inox-process-card h3 {
    color: var(--inox-blue);
    font-size: 17px;
    font-weight: 800;
}

.inox-process-card p {
    margin: 0;
    color: var(--inox-text);
    font-size: 13px;
    line-height: 1.7;
}

/* ==================================================
   ENTRETIEN
================================================== */

.inox-maintenance {
    padding: 20px 0 105px;
    background: #ffffff;
}

.inox-maintenance-box {
    display: flex;
    align-items: flex-start;
    gap: 22px;
    padding: 35px;
    background: linear-gradient(
        135deg,
        rgba(252, 176, 4, 0.12),
        rgba(252, 176, 4, 0.035)
    );
    border: 1px solid rgba(252, 176, 4, 0.34);
    border-radius: 18px;
}

.inox-maintenance-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 59px;
    height: 59px;
    flex: 0 0 59px;
    color: var(--inox-yellow);
    font-size: 23px;
    background: var(--inox-blue);
    border-radius: 14px;
}

.inox-maintenance-box span {
    color: var(--inox-yellow);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.inox-maintenance-box h2 {
    margin: 5px 0 12px;
    color: var(--inox-blue);
    font-size: clamp(25px, 3vw, 35px);
    font-weight: 800;
}

.inox-maintenance-box p {
    margin-bottom: 8px;
    color: var(--inox-text);
    font-size: 13px;
    line-height: 1.75;
}

/* ==================================================
   ZONES
================================================== */

.inox-zones {
    padding: 105px 0;
    background: var(--inox-light);
}

.inox-zones-box {
    padding: 55px;
    color: #ffffff;
    background:
        radial-gradient(
            circle at 88% 5%,
            rgba(252, 176, 4, 0.16),
            transparent 30%
        ),
        linear-gradient(135deg, #051d31, #0a2d4b);
    border: 1px solid rgba(252, 176, 4, 0.3);
    border-radius: 23px;
    box-shadow: 0 25px 60px rgba(10, 45, 75, 0.18);
}

.inox-zones h2 {
    color: #ffffff;
    font-size: clamp(31px, 4vw, 45px);
    font-weight: 800;
}

.inox-zones p {
    color: rgba(255, 255, 255, 0.67);
    font-size: 14px;
    line-height: 1.8;
}

.inox-zones strong {
    color: #ffffff;
}

.inox-city-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 13px;
}

.inox-city {
    display: flex;
    align-items: center;
    gap: 11px;
    min-height: 75px;
    padding: 16px 18px;
    background: rgba(255, 255, 255, 0.065);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 13px;
}

.inox-city i {
    color: var(--inox-yellow);
    font-size: 19px;
}

.inox-city span {
    display: flex;
    flex-direction: column;
}

.inox-city small {
    color: rgba(255, 255, 255, 0.52);
}

.inox-city-main,
.inox-city-morocco {
    background: rgba(252, 176, 4, 0.12);
    border-color: rgba(252, 176, 4, 0.32);
}

/* ==================================================
   FAQ
================================================== */

.inox-faq {
    padding: 105px 0;
    background: #ffffff;
}

.inox-faq p {
    color: var(--inox-text);
    font-size: 14px;
    line-height: 1.8;
}

.inox-accordion .accordion-item {
    margin-bottom: 12px;
    overflow: hidden;
    border: 1px solid rgba(10, 45, 75, 0.09);
    border-radius: 13px;
}

.inox-accordion .accordion-button {
    padding: 19px 21px;
    color: var(--inox-blue);
    font-size: 14px;
    font-weight: 750;
    background: #ffffff;
    box-shadow: none;
}

.inox-accordion .accordion-button:not(.collapsed) {
    background: rgba(252, 176, 4, 0.11);
}

.inox-accordion .accordion-body {
    color: var(--inox-text);
    font-size: 13px;
    line-height: 1.75;
}

/* ==================================================
   CTA FINAL
================================================== */

.inox-final {
    padding: 0 0 105px;
    background: #ffffff;
}

.inox-final-box {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 35px;
    padding: 38px 40px;
    background: linear-gradient(
        135deg,
        var(--inox-yellow),
        #e49b00
    );
    border-radius: 21px;
    box-shadow: 0 22px 50px rgba(10, 45, 75, 0.17);
}

.inox-final-box > div:first-child > span {
    color: rgba(5, 29, 49, 0.7);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 1.1px;
    text-transform: uppercase;
}

.inox-final h2 {
    margin: 5px 0 7px;
    color: var(--inox-blue-dark);
    font-size: clamp(24px, 3vw, 34px);
    font-weight: 800;
}

.inox-final p {
    margin: 0;
    color: rgba(5, 29, 49, 0.72);
    font-size: 13px;
}

.inox-final-actions {
    display: flex;
    flex-shrink: 0;
    gap: 10px;
}

.inox-final-primary,
.inox-final-call {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    min-height: 52px;
    padding: 0 19px;
    color: #ffffff;
    font-size: 12px;
    font-weight: 800;
    text-decoration: none;
    border-radius: 10px;
}

.inox-final-primary {
    background: var(--inox-blue);
}

.inox-final-call {
    color: var(--inox-blue);
    background: #ffffff;
}

/* ==================================================
   RESPONSIVE
================================================== */

@media (max-width: 991.98px) {
    .inox-intro,
    .inox-types,
    .inox-technical,
    .inox-benefits,
    .inox-sectors,
    .inox-process,
    .inox-zones,
    .inox-faq {
        padding: 80px 0;
    }

    .inox-intro-image {
        margin: 25px auto 0;
    }

    .inox-technical-grid {
        margin-top: 25px;
    }

    .inox-sector-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .inox-zones-box {
        padding: 40px 30px;
    }

    .inox-final-box {
        align-items: flex-start;
        flex-direction: column;
    }
}

@media (max-width: 575.98px) {
    .inox-hero {
        min-height: 540px;
        padding: 90px 0 70px;
    }

    .inox-hero h1 {
        font-size: 40px;
    }

    .inox-hero-actions {
        flex-direction: column;
    }

    .inox-btn-primary,
    .inox-btn-whatsapp {
        width: 100%;
    }

    .inox-intro,
    .inox-types,
    .inox-technical,
    .inox-benefits,
    .inox-sectors,
    .inox-process,
    .inox-zones,
    .inox-faq {
        padding: 65px 0;
    }

    .inox-check-grid,
    .inox-technical-grid,
    .inox-sector-grid,
    .inox-city-grid {
        grid-template-columns: 1fr;
    }

    .inox-intro-image {
        padding: 10px 10px 25px 17px;
    }

    .inox-intro-image img {
        height: 430px;
    }

    .inox-maintenance {
        padding-bottom: 65px;
    }

    .inox-maintenance-box {
        flex-direction: column;
        padding: 25px 20px;
    }

    .inox-zones-box {
        padding: 32px 20px;
        border-radius: 18px;
    }

    .inox-final {
        padding-bottom: 65px;
    }

    .inox-final-box {
        padding: 28px 20px;
    }

    .inox-final-actions {
        width: 100%;
        flex-direction: column;
    }

    .inox-final-primary,
    .inox-final-call {
        width: 100%;
    }
}

/* ==================================================
   PAGE PANNEAUX PUBLICITAIRES ALUPUB
================================================== */

:root {
    --pan-blue: #0a2d4b;
    --pan-blue-dark: #051d31;
    --pan-blue-light: #154b73;
    --pan-yellow: #fcb004;
    --pan-yellow-light: #ffd45c;
    --pan-text: #687986;
    --pan-light: #f5f8fb;
    --pan-white: #ffffff;
}

.panneaux-page {
    overflow: hidden;
}

/* ==================================================
   ÉLÉMENTS COMMUNS
================================================== */

.panneaux-eyebrow,
.panneaux-dark-eyebrow {
    display: inline-block;
    margin-bottom: 15px;
    color: var(--pan-yellow);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 1.2px;
    text-transform: uppercase;
}

.panneaux-section-heading {
    max-width: 790px;
    margin: 0 auto 50px;
    text-align: center;
}

.panneaux-section-heading > span {
    display: block;
    margin-bottom: 12px;
    color: var(--pan-yellow);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 1.2px;
    text-transform: uppercase;
}

.panneaux-section-heading h2,
.panneaux-intro h2,
.panneaux-faq h2 {
    margin-bottom: 16px;
    color: var(--pan-blue);
    font-size: clamp(32px, 4vw, 48px);
    font-weight: 800;
    line-height: 1.16;
    letter-spacing: -1px;
}

.panneaux-section-heading p {
    margin: 0;
    color: var(--pan-text);
    font-size: 15px;
    line-height: 1.8;
}

.panneaux-btn-primary,
.panneaux-btn-whatsapp,
.panneaux-dark-btn,
.panneaux-yellow-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    min-height: 53px;
    padding: 0 22px;
    font-size: 13px;
    font-weight: 800;
    text-decoration: none;
    border-radius: 11px;
    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease;
}

.panneaux-btn-primary,
.panneaux-yellow-btn {
    color: var(--pan-blue);
    background: linear-gradient(
        135deg,
        var(--pan-yellow-light),
        var(--pan-yellow)
    );
}

.panneaux-btn-whatsapp {
    color: #ffffff;
    background: #159957;
}

.panneaux-dark-btn {
    color: #ffffff;
    background: var(--pan-blue);
}

.panneaux-btn-primary:hover,
.panneaux-btn-whatsapp:hover,
.panneaux-dark-btn:hover,
.panneaux-yellow-btn:hover {
    color: inherit;
    color: #ffffff;
    transform: translateY(-3px);
    box-shadow: 0 15px 32px rgba(5, 29, 49, 0.24);
}

/* ==================================================
   HERO
================================================== */

.panneaux-hero {
    position: relative;
    isolation: isolate;
    display: flex;
    align-items: center;
    min-height: 600px;
    padding: 125px 0 100px;
    color: #ffffff;
    background-position: center;
    background-size: cover;
}

.panneaux-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -1;
    background:
        linear-gradient(
            90deg,
            rgba(5, 29, 49, 0.98) 0%,
            rgba(10, 45, 75, 0.91) 48%,
            rgba(10, 45, 75, 0.42) 100%
        ),
        linear-gradient(
            180deg,
            transparent 45%,
            rgba(5, 29, 49, 0.78) 100%
        );
}

.panneaux-breadcrumb {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 9px;
    margin-bottom: 22px;
    font-size: 12px;
}

.panneaux-breadcrumb a {
    color: rgba(255, 255, 255, 0.65);
    text-decoration: none;
}

.panneaux-breadcrumb i {
    color: var(--pan-yellow);
    font-size: 9px;
}

.panneaux-breadcrumb span {
    color: #ffffff;
}

.panneaux-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 18px;
    padding: 9px 15px;
    color: var(--pan-yellow);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 1px;
    text-transform: uppercase;
    background: rgba(252, 176, 4, 0.1);
    border: 1px solid rgba(252, 176, 4, 0.4);
    border-radius: 50px;
}

.panneaux-hero h1 {
    max-width: 900px;
    margin-bottom: 22px;
    color: #ffffff;
    font-size: clamp(42px, 6vw, 70px);
    font-weight: 850;
    line-height: 1.07;
    letter-spacing: -1.8px;
}

.panneaux-hero h1 span {
    color: var(--pan-yellow);
}

.panneaux-hero p {
    max-width: 720px;
    margin-bottom: 30px;
    color: rgba(255, 255, 255, 0.78);
    font-size: 17px;
    line-height: 1.75;
}

.panneaux-hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

/* ==================================================
   INTRODUCTION
================================================== */

.panneaux-intro {
    padding: 105px 0;
    background: #ffffff;
}

.panneaux-title-line {
    width: 72px;
    height: 4px;
    margin-bottom: 23px;
    background: linear-gradient(
        90deg,
        var(--pan-yellow),
        var(--pan-yellow-light)
    );
    border-radius: 20px;
}

.panneaux-intro p {
    color: var(--pan-text);
    font-size: 14px;
    line-height: 1.85;
}

.panneaux-intro .panneaux-lead {
    color: #354c5e;
    font-size: 17px;
}

.panneaux-intro strong {
    color: var(--pan-blue);
}

.panneaux-checks {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    margin: 27px 0;
}

.panneaux-checks div {
    display: flex;
    align-items: center;
    gap: 9px;
    color: var(--pan-blue);
    font-size: 13px;
    font-weight: 700;
}

.panneaux-checks i {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 25px;
    height: 25px;
    color: var(--pan-blue);
    background: var(--pan-yellow);
    border-radius: 50%;
}

/* Image introduction */
.panneaux-intro-image {
    position: relative;
    max-width: 590px;
    margin-left: auto;
    padding: 15px 15px 30px 30px;
}

.panneaux-image-decoration {
    position: absolute;
    top: 0;
    right: 0;
    width: 78%;
    height: 85%;
    background: var(--pan-yellow);
    border-radius: 24px;
}

.panneaux-intro-image img {
    position: relative;
    z-index: 2;
    display: block;
    width: 100%;
    height: 560px;
    object-fit: cover;
    border: 6px solid #ffffff;
    border-radius: 22px;
    box-shadow: 0 25px 60px rgba(10, 45, 75, 0.2);
}

.panneaux-image-card {
    position: absolute;
    right: 0;
    bottom: 0;
    z-index: 3;
    display: flex;
    align-items: center;
    gap: 11px;
    padding: 15px 17px;
    color: #ffffff;
    background: rgba(10, 45, 75, 0.96);
    border: 1px solid rgba(252, 176, 4, 0.3);
    border-radius: 13px;
    box-shadow: 0 15px 35px rgba(10, 45, 75, 0.25);
}

.panneaux-image-card > span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 41px;
    height: 41px;
    color: var(--pan-blue);
    background: var(--pan-yellow);
    border-radius: 10px;
}

.panneaux-image-card div {
    display: flex;
    flex-direction: column;
}

.panneaux-image-card strong {
    font-size: 13px;
}

.panneaux-image-card small {
    color: rgba(255, 255, 255, 0.6);
}

/* ==================================================
   TYPES DE PANNEAUX
================================================== */

.panneaux-types {
    padding: 105px 0;
    background: var(--pan-light);
}

.panneaux-type-card {
    height: 100%;
    padding: 28px 24px;
    background: #ffffff;
    border: 1px solid rgba(10, 45, 75, 0.08);
    border-radius: 17px;
    box-shadow: 0 13px 35px rgba(10, 45, 75, 0.06);
    transition:
        transform 0.3s ease,
        border-color 0.3s ease;
}

.panneaux-type-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 53px;
    height: 53px;
    margin-bottom: 19px;
    color: var(--pan-blue);
    font-size: 21px;
    background: var(--pan-yellow);
    border-radius: 13px;
}

.panneaux-type-card h3 {
    color: var(--pan-blue);
    font-size: 18px;
    font-weight: 800;
}

.panneaux-type-card p,
.panneaux-type-card li {
    color: var(--pan-text);
    font-size: 13px;
    line-height: 1.7;
}

.panneaux-type-card ul {
    margin: 15px 0 0;
    padding-left: 18px;
}

.panneaux-type-card li::marker {
    color: var(--pan-yellow);
}

.panneaux-type-card:hover {
    transform: translateY(-7px);
    border-color: rgba(252, 176, 4, 0.5);
}

/* ==================================================
   MATÉRIAUX
================================================== */

.panneaux-materials {
    padding: 105px 0;
    color: #ffffff;
    background:
        radial-gradient(
            circle at 85% 5%,
            rgba(252, 176, 4, 0.15),
            transparent 28%
        ),
        linear-gradient(135deg, #051d31, #0a2d4b);
}

.panneaux-materials h2 {
    color: #ffffff;
    font-size: clamp(32px, 4vw, 47px);
    font-weight: 800;
}

.panneaux-materials p {
    color: rgba(255, 255, 255, 0.68);
    font-size: 14px;
    line-height: 1.8;
}

.panneaux-material-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
}

.panneaux-material-card {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 22px 19px;
    background: rgba(255, 255, 255, 0.055);
    border: 1px solid rgba(255, 255, 255, 0.11);
    border-radius: 14px;
}

.panneaux-material-card > span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 47px;
    height: 47px;
    flex: 0 0 47px;
    color: var(--pan-blue);
    font-size: 19px;
    background: var(--pan-yellow);
    border-radius: 11px;
}

.panneaux-material-card h3 {
    margin-bottom: 5px;
    color: #ffffff;
    font-size: 16px;
    font-weight: 800;
}

.panneaux-material-card p {
    margin: 0;
    font-size: 12px;
    line-height: 1.65;
}

/* ==================================================
   CONCEPTION
================================================== */

.panneaux-design {
    padding: 105px 0;
    background: #ffffff;
}

.panneaux-design-card {
    position: relative;
    height: 100%;
    padding: 28px 23px;
    background: var(--pan-light);
    border: 1px solid rgba(10, 45, 75, 0.07);
    border-radius: 16px;
}

.panneaux-design-card > span {
    position: absolute;
    top: 18px;
    right: 20px;
    color: rgba(10, 45, 75, 0.09);
    font-size: 32px;
    font-weight: 900;
}

.panneaux-design-card > i {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 51px;
    height: 51px;
    margin-bottom: 19px;
    color: var(--pan-blue);
    font-size: 20px;
    background: var(--pan-yellow);
    border-radius: 12px;
}

.panneaux-design-card h3 {
    color: var(--pan-blue);
    font-size: 17px;
    font-weight: 800;
}

.panneaux-design-card p {
    margin: 0;
    color: var(--pan-text);
    font-size: 13px;
    line-height: 1.7;
}

/* ==================================================
   SECTEURS
================================================== */

.panneaux-sectors {
    padding: 105px 0;
    background: var(--pan-light);
}

.panneaux-sector-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 14px;
}

.panneaux-sector-grid div {
    display: flex;
    align-items: center;
    gap: 12px;
    min-height: 70px;
    padding: 17px 18px;
    color: var(--pan-blue);
    font-size: 14px;
    font-weight: 750;
    background: #ffffff;
    border: 1px solid rgba(10, 45, 75, 0.08);
    border-radius: 13px;
}

.panneaux-sector-grid i {
    color: var(--pan-yellow);
    font-size: 20px;
}

/* ==================================================
   PROCESSUS
================================================== */

.panneaux-process {
    padding: 105px 0;
    background: #ffffff;
}

.panneaux-process-card {
    position: relative;
    height: 100%;
    padding: 28px 23px;
    background: var(--pan-light);
    border: 1px solid rgba(10, 45, 75, 0.07);
    border-radius: 16px;
}

.panneaux-process-card > strong {
    position: absolute;
    top: 18px;
    right: 20px;
    color: rgba(10, 45, 75, 0.09);
    font-size: 32px;
    font-weight: 900;
}

.panneaux-process-card > span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 51px;
    height: 51px;
    margin-bottom: 19px;
    color: var(--pan-blue);
    font-size: 20px;
    background: var(--pan-yellow);
    border-radius: 12px;
}

.panneaux-process-card h3 {
    color: var(--pan-blue);
    font-size: 17px;
    font-weight: 800;
}

.panneaux-process-card p {
    margin: 0;
    color: var(--pan-text);
    font-size: 13px;
    line-height: 1.7;
}

/* ==================================================
   ZONES
================================================== */

.panneaux-zones {
    padding: 105px 0;
    background: var(--pan-light);
}

.panneaux-zones-box {
    padding: 55px;
    color: #ffffff;
    background:
        radial-gradient(
            circle at 88% 5%,
            rgba(252, 176, 4, 0.16),
            transparent 30%
        ),
        linear-gradient(135deg, #051d31, #0a2d4b);
    border: 1px solid rgba(252, 176, 4, 0.3);
    border-radius: 23px;
    box-shadow: 0 25px 60px rgba(10, 45, 75, 0.18);
}

.panneaux-zones h2 {
    color: #ffffff;
    font-size: clamp(31px, 4vw, 45px);
    font-weight: 800;
}

.panneaux-zones p {
    color: rgba(255, 255, 255, 0.67);
    font-size: 14px;
    line-height: 1.8;
}

.panneaux-zones strong {
    color: #ffffff;
}

.panneaux-city-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 13px;
}

.panneaux-city {
    display: flex;
    align-items: center;
    gap: 11px;
    min-height: 75px;
    padding: 16px 18px;
    background: rgba(255, 255, 255, 0.065);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 13px;
}

.panneaux-city i {
    color: var(--pan-yellow);
    font-size: 19px;
}

.panneaux-city span {
    display: flex;
    flex-direction: column;
}

.panneaux-city small {
    color: rgba(255, 255, 255, 0.52);
}

.panneaux-city-main,
.panneaux-city-morocco {
    background: rgba(252, 176, 4, 0.12);
    border-color: rgba(252, 176, 4, 0.32);
}

/* ==================================================
   FAQ
================================================== */

.panneaux-faq {
    padding: 105px 0;
    background: #ffffff;
}

.panneaux-faq p {
    color: var(--pan-text);
    font-size: 14px;
    line-height: 1.8;
}

.panneaux-accordion .accordion-item {
    margin-bottom: 12px;
    overflow: hidden;
    border: 1px solid rgba(10, 45, 75, 0.09);
    border-radius: 13px;
}

.panneaux-accordion .accordion-button {
    padding: 19px 21px;
    color: var(--pan-blue);
    font-size: 14px;
    font-weight: 750;
    background: #ffffff;
    box-shadow: none;
}

.panneaux-accordion .accordion-button:not(.collapsed) {
    background: rgba(252, 176, 4, 0.11);
}

.panneaux-accordion .accordion-body {
    color: var(--pan-text);
    font-size: 13px;
    line-height: 1.75;
}

/* ==================================================
   CTA FINAL
================================================== */

.panneaux-final {
    padding: 0 0 105px;
    background: #ffffff;
}

.panneaux-final-box {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 35px;
    padding: 38px 40px;
    background: linear-gradient(
        135deg,
        var(--pan-yellow),
        #e49b00
    );
    border-radius: 21px;
    box-shadow: 0 22px 50px rgba(10, 45, 75, 0.17);
}

.panneaux-final-box > div:first-child > span {
    color: rgba(5, 29, 49, 0.7);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 1.1px;
    text-transform: uppercase;
}

.panneaux-final h2 {
    margin: 5px 0 7px;
    color: var(--pan-blue-dark);
    font-size: clamp(24px, 3vw, 34px);
    font-weight: 800;
}

.panneaux-final p {
    margin: 0;
    color: rgba(5, 29, 49, 0.72);
    font-size: 13px;
}

.panneaux-final-actions {
    display: flex;
    flex-shrink: 0;
    gap: 10px;
}

.panneaux-final-primary,
.panneaux-final-call {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    min-height: 52px;
    padding: 0 19px;
    color: #ffffff;
    font-size: 12px;
    font-weight: 800;
    text-decoration: none;
    border-radius: 10px;
}

.panneaux-final-primary {
    background: var(--pan-blue);
}

.panneaux-final-call {
    color: var(--pan-blue);
    background: #ffffff;
}

/* ==================================================
   RESPONSIVE
================================================== */

@media (max-width: 991.98px) {
    .panneaux-intro,
    .panneaux-types,
    .panneaux-materials,
    .panneaux-design,
    .panneaux-sectors,
    .panneaux-process,
    .panneaux-zones,
    .panneaux-faq {
        padding: 80px 0;
    }

    .panneaux-intro-image {
        margin: 25px auto 0;
    }

    .panneaux-material-grid {
        margin-top: 25px;
    }

    .panneaux-sector-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .panneaux-zones-box {
        padding: 40px 30px;
    }

    .panneaux-final-box {
        align-items: flex-start;
        flex-direction: column;
    }
}

@media (max-width: 575.98px) {
    .panneaux-hero {
        min-height: 550px;
        padding: 90px 0 70px;
    }

    .panneaux-hero h1 {
        font-size: 38px;
    }

    .panneaux-hero-actions {
        flex-direction: column;
    }

    .panneaux-btn-primary,
    .panneaux-btn-whatsapp {
        width: 100%;
    }

    .panneaux-intro,
    .panneaux-types,
    .panneaux-materials,
    .panneaux-design,
    .panneaux-sectors,
    .panneaux-process,
    .panneaux-zones,
    .panneaux-faq {
        padding: 65px 0;
    }

    .panneaux-checks,
    .panneaux-material-grid,
    .panneaux-sector-grid,
    .panneaux-city-grid {
        grid-template-columns: 1fr;
    }

    .panneaux-intro-image {
        padding: 10px 10px 25px 17px;
    }

    .panneaux-intro-image img {
        height: 430px;
    }

    .panneaux-zones-box {
        padding: 32px 20px;
        border-radius: 18px;
    }

    .panneaux-final {
        padding-bottom: 65px;
    }

    .panneaux-final-box {
        padding: 28px 20px;
    }

    .panneaux-final-actions {
        width: 100%;
        flex-direction: column;
    }

    .panneaux-final-primary,
    .panneaux-final-call {
        width: 100%;
    }
}


/* ==================================================
   PAGE TOTEM PUBLICITAIRE ALUPUB
================================================== */

:root {
    --tot-blue: #0a2d4b;
    --tot-blue-dark: #051d31;
    --tot-yellow: #fcb004;
    --tot-yellow-light: #ffd45c;
    --tot-text: #687986;
    --tot-light: #f5f8fb;
    --tot-white: #ffffff;
}

.totem-page {
    overflow: hidden;
}

/* Éléments communs */
.totem-eyebrow,
.totem-dark-eyebrow {
    display: inline-block;
    margin-bottom: 15px;
    color: var(--tot-yellow);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 1.2px;
    text-transform: uppercase;
}

.totem-section-heading {
    max-width: 790px;
    margin: 0 auto 50px;
    text-align: center;
}

.totem-section-heading > span {
    display: block;
    margin-bottom: 12px;
    color: var(--tot-yellow);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 1.2px;
    text-transform: uppercase;
}

.totem-section-heading h2,
.totem-intro h2,
.totem-faq h2 {
    margin-bottom: 16px;
    color: var(--tot-blue);
    font-size: clamp(32px, 4vw, 48px);
    font-weight: 800;
    line-height: 1.16;
    letter-spacing: -1px;
}

.totem-section-heading p {
    margin: 0;
    color: var(--tot-text);
    font-size: 15px;
    line-height: 1.8;
}

/* Boutons */
.totem-btn-primary,
.totem-btn-whatsapp,
.totem-dark-btn,
.totem-yellow-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    min-height: 53px;
    padding: 0 22px;
    font-size: 13px;
    font-weight: 800;
    text-decoration: none;
    border-radius: 11px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.totem-btn-primary,
.totem-yellow-btn {
    color: var(--tot-blue);
    background: linear-gradient(
        135deg,
        var(--tot-yellow-light),
        var(--tot-yellow)
    );
}

.totem-btn-whatsapp {
    color: #ffffff;
    background: #159957;
}

.totem-dark-btn {
    color: #ffffff;
    background: var(--tot-blue);
}

.totem-btn-primary:hover,
.totem-btn-whatsapp:hover,
.totem-dark-btn:hover,
.totem-yellow-btn:hover {
    color: inherit;
    color: #ffffff;
    transform: translateY(-3px);
    box-shadow: 0 15px 32px rgba(5, 29, 49, 0.24);
}

/* ==================================================
   HERO
================================================== */

.totem-hero {
    position: relative;
    isolation: isolate;
    display: flex;
    align-items: center;
    min-height: 600px;
    padding: 125px 0 100px;
    color: #ffffff;
    background-position: center;
    background-size: cover;
}

.totem-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -1;
    background:
        linear-gradient(
            90deg,
            rgba(5, 29, 49, 0.98) 0%,
            rgba(10, 45, 75, 0.91) 48%,
            rgba(10, 45, 75, 0.42) 100%
        ),
        linear-gradient(
            180deg,
            transparent 45%,
            rgba(5, 29, 49, 0.78) 100%
        );
}

.totem-breadcrumb {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 9px;
    margin-bottom: 22px;
    font-size: 12px;
}

.totem-breadcrumb a {
    color: rgba(255, 255, 255, 0.65);
    text-decoration: none;
}

.totem-breadcrumb i {
    color: var(--tot-yellow);
    font-size: 9px;
}

.totem-breadcrumb span {
    color: #ffffff;
}

.totem-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 18px;
    padding: 9px 15px;
    color: var(--tot-yellow);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 1px;
    text-transform: uppercase;
    background: rgba(252, 176, 4, 0.1);
    border: 1px solid rgba(252, 176, 4, 0.4);
    border-radius: 50px;
}

.totem-hero h1 {
    max-width: 900px;
    margin-bottom: 22px;
    color: #ffffff;
    font-size: clamp(42px, 6vw, 70px);
    font-weight: 850;
    line-height: 1.07;
    letter-spacing: -1.8px;
}

.totem-hero h1 span {
    color: var(--tot-yellow);
}

.totem-hero p {
    max-width: 720px;
    margin-bottom: 30px;
    color: rgba(255, 255, 255, 0.78);
    font-size: 17px;
    line-height: 1.75;
}

.totem-hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

/* ==================================================
   INTRO
================================================== */

.totem-intro {
    padding: 105px 0;
    background: #ffffff;
}

.totem-title-line {
    width: 72px;
    height: 4px;
    margin-bottom: 23px;
    background: linear-gradient(
        90deg,
        var(--tot-yellow),
        var(--tot-yellow-light)
    );
    border-radius: 20px;
}

.totem-intro p {
    color: var(--tot-text);
    font-size: 14px;
    line-height: 1.85;
}

.totem-intro .totem-lead {
    color: #354c5e;
    font-size: 17px;
}

.totem-intro strong {
    color: var(--tot-blue);
}

.totem-checks {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    margin: 27px 0;
}

.totem-checks div {
    display: flex;
    align-items: center;
    gap: 9px;
    color: var(--tot-blue);
    font-size: 13px;
    font-weight: 700;
}

.totem-checks i {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 25px;
    height: 25px;
    color: var(--tot-blue);
    background: var(--tot-yellow);
    border-radius: 50%;
}

/* Image */
.totem-intro-image {
    position: relative;
    max-width: 590px;
    margin-left: auto;
    padding: 15px 15px 30px 30px;
}

.totem-image-decoration {
    position: absolute;
    top: 0;
    right: 0;
    width: 78%;
    height: 85%;
    background: var(--tot-yellow);
    border-radius: 24px;
}

.totem-intro-image img {
    position: relative;
    z-index: 2;
    display: block;
    width: 100%;
    height: 560px;
    object-fit: cover;
    border: 6px solid #ffffff;
    border-radius: 22px;
    box-shadow: 0 25px 60px rgba(10, 45, 75, 0.2);
}

.totem-image-card {
    position: absolute;
    right: 0;
    bottom: 0;
    z-index: 3;
    display: flex;
    align-items: center;
    gap: 11px;
    padding: 15px 17px;
    color: #ffffff;
    background: rgba(10, 45, 75, 0.96);
    border: 1px solid rgba(252, 176, 4, 0.3);
    border-radius: 13px;
    box-shadow: 0 15px 35px rgba(10, 45, 75, 0.25);
}

.totem-image-card > span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 41px;
    height: 41px;
    color: var(--tot-blue);
    background: var(--tot-yellow);
    border-radius: 10px;
}

.totem-image-card div {
    display: flex;
    flex-direction: column;
}

.totem-image-card strong {
    font-size: 13px;
}

.totem-image-card small {
    color: rgba(255, 255, 255, 0.6);
}

/* ==================================================
   TYPES
================================================== */

.totem-types {
    padding: 105px 0;
    background: var(--tot-light);
}

.totem-type-card {
    height: 100%;
    padding: 28px 24px;
    background: #ffffff;
    border: 1px solid rgba(10, 45, 75, 0.08);
    border-radius: 17px;
    box-shadow: 0 13px 35px rgba(10, 45, 75, 0.06);
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.totem-type-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 53px;
    height: 53px;
    margin-bottom: 19px;
    color: var(--tot-blue);
    font-size: 21px;
    background: var(--tot-yellow);
    border-radius: 13px;
}

.totem-type-card h3 {
    color: var(--tot-blue);
    font-size: 18px;
    font-weight: 800;
}

.totem-type-card p,
.totem-type-card li {
    color: var(--tot-text);
    font-size: 13px;
    line-height: 1.7;
}

.totem-type-card ul {
    margin: 15px 0 0;
    padding-left: 18px;
}

.totem-type-card li::marker {
    color: var(--tot-yellow);
}

.totem-type-card:hover {
    transform: translateY(-7px);
    border-color: rgba(252, 176, 4, 0.5);
}

/* ==================================================
   MATÉRIAUX
================================================== */

.totem-materials {
    padding: 105px 0;
    color: #ffffff;
    background:
        radial-gradient(
            circle at 85% 5%,
            rgba(252, 176, 4, 0.15),
            transparent 28%
        ),
        linear-gradient(135deg, #051d31, #0a2d4b);
}

.totem-materials h2 {
    color: #ffffff;
    font-size: clamp(32px, 4vw, 47px);
    font-weight: 800;
}

.totem-materials p {
    color: rgba(255, 255, 255, 0.68);
    font-size: 14px;
    line-height: 1.8;
}

.totem-material-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
}

.totem-material-card {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 22px 19px;
    background: rgba(255, 255, 255, 0.055);
    border: 1px solid rgba(255, 255, 255, 0.11);
    border-radius: 14px;
}

.totem-material-card > span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 47px;
    height: 47px;
    flex: 0 0 47px;
    color: var(--tot-blue);
    font-size: 19px;
    background: var(--tot-yellow);
    border-radius: 11px;
}

.totem-material-card h3 {
    margin-bottom: 5px;
    color: #ffffff;
    font-size: 16px;
    font-weight: 800;
}

.totem-material-card p {
    margin: 0;
    font-size: 12px;
    line-height: 1.65;
}

/* ==================================================
   CONCEPTION
================================================== */

.totem-design,
.totem-process {
    padding: 105px 0;
    background: #ffffff;
}

.totem-design-card,
.totem-process-card {
    position: relative;
    height: 100%;
    padding: 28px 23px;
    background: var(--tot-light);
    border: 1px solid rgba(10, 45, 75, 0.07);
    border-radius: 16px;
}

.totem-design-card > span,
.totem-process-card > strong {
    position: absolute;
    top: 18px;
    right: 20px;
    color: rgba(10, 45, 75, 0.09);
    font-size: 32px;
    font-weight: 900;
}

.totem-design-card > i,
.totem-process-card > span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 51px;
    height: 51px;
    margin-bottom: 19px;
    color: var(--tot-blue);
    font-size: 20px;
    background: var(--tot-yellow);
    border-radius: 12px;
}

.totem-design-card h3,
.totem-process-card h3 {
    color: var(--tot-blue);
    font-size: 17px;
    font-weight: 800;
}

.totem-design-card p,
.totem-process-card p {
    margin: 0;
    color: var(--tot-text);
    font-size: 13px;
    line-height: 1.7;
}

/* ==================================================
   AVANTAGES
================================================== */

.totem-benefits {
    padding: 105px 0;
    background: var(--tot-light);
}

.totem-benefit-card {
    height: 100%;
    padding: 27px 22px;
    text-align: center;
    background: #ffffff;
    border: 1px solid rgba(10, 45, 75, 0.08);
    border-radius: 16px;
}

.totem-benefit-card i {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 53px;
    height: 53px;
    margin-bottom: 17px;
    color: var(--tot-blue);
    font-size: 21px;
    background: var(--tot-yellow);
    border-radius: 50%;
}

.totem-benefit-card h3 {
    color: var(--tot-blue);
    font-size: 17px;
    font-weight: 800;
}

.totem-benefit-card p {
    margin: 0;
    color: var(--tot-text);
    font-size: 13px;
    line-height: 1.7;
}

/* ==================================================
   SECTEURS
================================================== */

.totem-sectors {
    padding: 105px 0;
    background: #ffffff;
}

.totem-sector-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 14px;
}

.totem-sector-grid div {
    display: flex;
    align-items: center;
    gap: 12px;
    min-height: 70px;
    padding: 17px 18px;
    color: var(--tot-blue);
    font-size: 14px;
    font-weight: 750;
    background: var(--tot-light);
    border: 1px solid rgba(10, 45, 75, 0.07);
    border-radius: 13px;
}

.totem-sector-grid i {
    color: var(--tot-yellow);
    font-size: 20px;
}

/* ==================================================
   INSTALLATION
================================================== */

.totem-installation {
    padding: 10px 0 105px;
    background: #ffffff;
}

.totem-installation-box {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 32px;
    background: rgba(252, 176, 4, 0.09);
    border: 1px solid rgba(252, 176, 4, 0.3);
    border-radius: 18px;
}

.totem-installation-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    flex: 0 0 56px;
    color: var(--tot-yellow);
    font-size: 22px;
    background: var(--tot-blue);
    border-radius: 13px;
}

.totem-installation-small {
    color: var(--tot-yellow);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.totem-installation h2 {
    margin: 5px 0 10px;
    color: var(--tot-blue);
    font-size: clamp(25px, 3vw, 35px);
    font-weight: 800;
}

.totem-installation p {
    margin: 0;
    color: var(--tot-text);
    font-size: 13px;
    line-height: 1.75;
}

/* ==================================================
   ZONES
================================================== */

.totem-zones {
    padding: 105px 0;
    background: var(--tot-light);
}

.totem-zones-box {
    padding: 55px;
    color: #ffffff;
    background:
        radial-gradient(
            circle at 88% 5%,
            rgba(252, 176, 4, 0.16),
            transparent 30%
        ),
        linear-gradient(135deg, #051d31, #0a2d4b);
    border: 1px solid rgba(252, 176, 4, 0.3);
    border-radius: 23px;
    box-shadow: 0 25px 60px rgba(10, 45, 75, 0.18);
}

.totem-zones h2 {
    color: #ffffff;
    font-size: clamp(31px, 4vw, 45px);
    font-weight: 800;
}

.totem-zones p {
    color: rgba(255, 255, 255, 0.67);
    font-size: 14px;
    line-height: 1.8;
}

.totem-zones strong {
    color: #ffffff;
}

.totem-city-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 13px;
}

.totem-city {
    display: flex;
    align-items: center;
    gap: 11px;
    min-height: 75px;
    padding: 16px 18px;
    background: rgba(255, 255, 255, 0.065);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 13px;
}

.totem-city i {
    color: var(--tot-yellow);
    font-size: 19px;
}

.totem-city span {
    display: flex;
    flex-direction: column;
}

.totem-city small {
    color: rgba(255, 255, 255, 0.52);
}

.totem-city-main,
.totem-city-morocco {
    background: rgba(252, 176, 4, 0.12);
    border-color: rgba(252, 176, 4, 0.32);
}

/* ==================================================
   FAQ
================================================== */

.totem-faq {
    padding: 105px 0;
    background: #ffffff;
}

.totem-faq p {
    color: var(--tot-text);
    font-size: 14px;
    line-height: 1.8;
}

.totem-accordion .accordion-item {
    margin-bottom: 12px;
    overflow: hidden;
    border: 1px solid rgba(10, 45, 75, 0.09);
    border-radius: 13px;
}

.totem-accordion .accordion-button {
    padding: 19px 21px;
    color: var(--tot-blue);
    font-size: 14px;
    font-weight: 750;
    background: #ffffff;
    box-shadow: none;
}

.totem-accordion .accordion-button:not(.collapsed) {
    background: rgba(252, 176, 4, 0.11);
}

.totem-accordion .accordion-body {
    color: var(--tot-text);
    font-size: 13px;
    line-height: 1.75;
}

/* ==================================================
   CTA FINAL
================================================== */

.totem-final {
    padding: 0 0 105px;
    background: #ffffff;
}

.totem-final-box {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 35px;
    padding: 38px 40px;
    background: linear-gradient(
        135deg,
        var(--tot-yellow),
        #e49b00
    );
    border-radius: 21px;
    box-shadow: 0 22px 50px rgba(10, 45, 75, 0.17);
}

.totem-final-box > div:first-child > span {
    color: rgba(5, 29, 49, 0.7);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 1.1px;
    text-transform: uppercase;
}

.totem-final h2 {
    margin: 5px 0 7px;
    color: var(--tot-blue-dark);
    font-size: clamp(24px, 3vw, 34px);
    font-weight: 800;
}

.totem-final p {
    margin: 0;
    color: rgba(5, 29, 49, 0.72);
    font-size: 13px;
}

.totem-final-actions {
    display: flex;
    flex-shrink: 0;
    gap: 10px;
}

.totem-final-primary,
.totem-final-call {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    min-height: 52px;
    padding: 0 19px;
    color: #ffffff;
    font-size: 12px;
    font-weight: 800;
    text-decoration: none;
    border-radius: 10px;
}

.totem-final-primary {
    background: var(--tot-blue);
}

.totem-final-call {
    color: var(--tot-blue);
    background: #ffffff;
}

/* ==================================================
   RESPONSIVE
================================================== */

@media (max-width: 991.98px) {
    .totem-intro,
    .totem-types,
    .totem-materials,
    .totem-design,
    .totem-benefits,
    .totem-sectors,
    .totem-process,
    .totem-zones,
    .totem-faq {
        padding: 80px 0;
    }

    .totem-intro-image {
        margin: 25px auto 0;
    }

    .totem-material-grid {
        margin-top: 25px;
    }

    .totem-sector-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .totem-zones-box {
        padding: 40px 30px;
    }

    .totem-final-box {
        align-items: flex-start;
        flex-direction: column;
    }
}

@media (max-width: 575.98px) {
    .totem-hero {
        min-height: 550px;
        padding: 90px 0 70px;
    }

    .totem-hero h1 {
        font-size: 39px;
    }

    .totem-hero-actions {
        flex-direction: column;
    }

    .totem-btn-primary,
    .totem-btn-whatsapp {
        width: 100%;
    }

    .totem-intro,
    .totem-types,
    .totem-materials,
    .totem-design,
    .totem-benefits,
    .totem-sectors,
    .totem-process,
    .totem-zones,
    .totem-faq {
        padding: 65px 0;
    }

    .totem-checks,
    .totem-material-grid,
    .totem-sector-grid,
    .totem-city-grid {
        grid-template-columns: 1fr;
    }

    .totem-intro-image {
        padding: 10px 10px 25px 17px;
    }

    .totem-intro-image img {
        height: 430px;
    }

    .totem-installation {
        padding-bottom: 65px;
    }

    .totem-installation-box {
        flex-direction: column;
        padding: 25px 20px;
    }

    .totem-zones-box {
        padding: 32px 20px;
        border-radius: 18px;
    }

    .totem-final {
        padding-bottom: 65px;
    }

    .totem-final-box {
        padding: 28px 20px;
    }

    .totem-final-actions {
        width: 100%;
        flex-direction: column;
    }

    .totem-final-primary,
    .totem-final-call {
        width: 100%;
    }
}

/* ==================================================
   PAGE HABILLAGE FAÇADE ALUPUB
================================================== */

:root {
    --fac-blue: #0a2d4b;
    --fac-blue-dark: #051d31;
    --fac-yellow: #fcb004;
    --fac-yellow-light: #ffd45c;
    --fac-text: #687986;
    --fac-light: #f5f8fb;
    --fac-white: #ffffff;
}

.facade-page {
    overflow: hidden;
}

/* Éléments communs */
.facade-eyebrow,
.facade-dark-eyebrow {
    display: inline-block;
    margin-bottom: 15px;
    color: var(--fac-yellow);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 1.2px;
    text-transform: uppercase;
}

.facade-section-heading {
    max-width: 790px;
    margin: 0 auto 50px;
    text-align: center;
}

.facade-section-heading > span {
    display: block;
    margin-bottom: 12px;
    color: var(--fac-yellow);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 1.2px;
    text-transform: uppercase;
}

.facade-section-heading h2,
.facade-intro h2,
.facade-faq h2 {
    margin-bottom: 16px;
    color: var(--fac-blue);
    font-size: clamp(32px, 4vw, 48px);
    font-weight: 800;
    line-height: 1.16;
    letter-spacing: -1px;
}

.facade-section-heading p {
    margin: 0;
    color: var(--fac-text);
    font-size: 15px;
    line-height: 1.8;
}

/* Boutons */
.facade-btn-primary,
.facade-btn-whatsapp,
.facade-dark-btn,
.facade-yellow-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    min-height: 53px;
    padding: 0 22px;
    font-size: 13px;
    font-weight: 800;
    text-decoration: none;
    border-radius: 11px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.facade-btn-primary,
.facade-yellow-btn {
    color: var(--fac-blue);
    background: linear-gradient(
        135deg,
        var(--fac-yellow-light),
        var(--fac-yellow)
    );
}

.facade-btn-whatsapp {
    color: #ffffff;
    background: #159957;
}

.facade-dark-btn {
    color: #ffffff;
    background: var(--fac-blue);
}

.facade-btn-primary:hover,
.facade-btn-whatsapp:hover,
.facade-dark-btn:hover,
.facade-yellow-btn:hover {
    color: #ffffff !important;
    color: inherit;
    transform: translateY(-3px);
    box-shadow: 0 15px 32px rgba(5, 29, 49, 0.24);
}

/* ==================================================
   HERO
================================================== */

.facade-hero {
    position: relative;
    isolation: isolate;
    display: flex;
    align-items: center;
    min-height: 600px;
    padding: 125px 0 100px;
    color: #ffffff;
    background-position: center;
    background-size: cover;
}

.facade-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -1;
    background:
        linear-gradient(
            90deg,
            rgba(5, 29, 49, 0.98) 0%,
            rgba(10, 45, 75, 0.91) 48%,
            rgba(10, 45, 75, 0.42) 100%
        ),
        linear-gradient(
            180deg,
            transparent 45%,
            rgba(5, 29, 49, 0.78) 100%
        );
}

.facade-breadcrumb {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 9px;
    margin-bottom: 22px;
    font-size: 12px;
}

.facade-breadcrumb a {
    color: rgba(255, 255, 255, 0.65);
    text-decoration: none;
}

.facade-breadcrumb i {
    color: var(--fac-yellow);
    font-size: 9px;
}

.facade-breadcrumb span {
    color: #ffffff;
}

.facade-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 18px;
    padding: 9px 15px;
    color: var(--fac-yellow);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 1px;
    text-transform: uppercase;
    background: rgba(252, 176, 4, 0.1);
    border: 1px solid rgba(252, 176, 4, 0.4);
    border-radius: 50px;
}

.facade-hero h1 {
    max-width: 900px;
    margin-bottom: 22px;
    color: #ffffff;
    font-size: clamp(42px, 6vw, 70px);
    font-weight: 850;
    line-height: 1.07;
    letter-spacing: -1.8px;
}

.facade-hero h1 span {
    color: var(--fac-yellow);
}

.facade-hero p {
    max-width: 720px;
    margin-bottom: 30px;
    color: rgba(255, 255, 255, 0.78);
    font-size: 17px;
    line-height: 1.75;
}

.facade-hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

/* ==================================================
   INTRO
================================================== */

.facade-intro {
    padding: 105px 0;
    background: #ffffff;
}

.facade-title-line {
    width: 72px;
    height: 4px;
    margin-bottom: 23px;
    background: linear-gradient(
        90deg,
        var(--fac-yellow),
        var(--fac-yellow-light)
    );
    border-radius: 20px;
}

.facade-intro p {
    color: var(--fac-text);
    font-size: 14px;
    line-height: 1.85;
}

.facade-intro .facade-lead {
    color: #354c5e;
    font-size: 17px;
}

.facade-intro strong {
    color: var(--fac-blue);
}

.facade-checks {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    margin: 27px 0;
}

.facade-checks div {
    display: flex;
    align-items: center;
    gap: 9px;
    color: var(--fac-blue);
    font-size: 13px;
    font-weight: 700;
}

.facade-checks i {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 25px;
    height: 25px;
    color: var(--fac-blue);
    background: var(--fac-yellow);
    border-radius: 50%;
}

/* Image */
.facade-intro-image {
    position: relative;
    max-width: 590px;
    margin-left: auto;
    padding: 15px 15px 30px 30px;
}

.facade-image-decoration {
    position: absolute;
    top: 0;
    right: 0;
    width: 78%;
    height: 85%;
    background: var(--fac-yellow);
    border-radius: 24px;
}

.facade-intro-image img {
    position: relative;
    z-index: 2;
    display: block;
    width: 100%;
    height: 560px;
    object-fit: cover;
    border: 6px solid #ffffff;
    border-radius: 22px;
    box-shadow: 0 25px 60px rgba(10, 45, 75, 0.2);
}

.facade-image-card {
    position: absolute;
    right: 0;
    bottom: 0;
    z-index: 3;
    display: flex;
    align-items: center;
    gap: 11px;
    padding: 15px 17px;
    color: #ffffff;
    background: rgba(10, 45, 75, 0.96);
    border: 1px solid rgba(252, 176, 4, 0.3);
    border-radius: 13px;
    box-shadow: 0 15px 35px rgba(10, 45, 75, 0.25);
}

.facade-image-card > span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 41px;
    height: 41px;
    color: var(--fac-blue);
    background: var(--fac-yellow);
    border-radius: 10px;
}

.facade-image-card div {
    display: flex;
    flex-direction: column;
}

.facade-image-card strong {
    font-size: 13px;
}

.facade-image-card small {
    color: rgba(255, 255, 255, 0.6);
}

/* ==================================================
   SOLUTIONS
================================================== */

.facade-solutions {
    padding: 105px 0;
    background: var(--fac-light);
}

.facade-solution-card {
    height: 100%;
    padding: 28px 24px;
    background: #ffffff;
    border: 1px solid rgba(10, 45, 75, 0.08);
    border-radius: 17px;
    box-shadow: 0 13px 35px rgba(10, 45, 75, 0.06);
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.facade-solution-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 53px;
    height: 53px;
    margin-bottom: 19px;
    color: var(--fac-blue);
    font-size: 21px;
    background: var(--fac-yellow);
    border-radius: 13px;
}

.facade-solution-card h3 {
    color: var(--fac-blue);
    font-size: 18px;
    font-weight: 800;
}

.facade-solution-card p,
.facade-solution-card li {
    color: var(--fac-text);
    font-size: 13px;
    line-height: 1.7;
}

.facade-solution-card ul {
    margin: 15px 0;
    padding-left: 18px;
}

.facade-solution-card li::marker {
    color: var(--fac-yellow);
}

.facade-solution-card a {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    color: var(--fac-blue);
    font-size: 12px;
    font-weight: 800;
    text-decoration: none;
}

.facade-solution-card a i {
    color: var(--fac-yellow);
}

.facade-solution-card:hover {
    transform: translateY(-7px);
    border-color: rgba(252, 176, 4, 0.5);
}

/* ==================================================
   MATÉRIAUX
================================================== */

.facade-materials {
    padding: 105px 0;
    color: #ffffff;
    background:
        radial-gradient(
            circle at 85% 5%,
            rgba(252, 176, 4, 0.15),
            transparent 28%
        ),
        linear-gradient(135deg, #051d31, #0a2d4b);
}

.facade-materials h2 {
    color: #ffffff;
    font-size: clamp(32px, 4vw, 47px);
    font-weight: 800;
}

.facade-materials p {
    color: rgba(255, 255, 255, 0.68);
    font-size: 14px;
    line-height: 1.8;
}

.facade-material-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
}

.facade-material-card {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 22px 19px;
    background: rgba(255, 255, 255, 0.055);
    border: 1px solid rgba(255, 255, 255, 0.11);
    border-radius: 14px;
}

.facade-material-card > span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 47px;
    height: 47px;
    flex: 0 0 47px;
    color: var(--fac-blue);
    font-size: 19px;
    background: var(--fac-yellow);
    border-radius: 11px;
}

.facade-material-card h3 {
    margin-bottom: 5px;
    color: #ffffff;
    font-size: 16px;
    font-weight: 800;
}

.facade-material-card p {
    margin: 0;
    font-size: 12px;
    line-height: 1.65;
}

/* ==================================================
   AVANTAGES
================================================== */

.facade-benefits {
    padding: 105px 0;
    background: #ffffff;
}

.facade-benefit-card {
    height: 100%;
    padding: 27px 22px;
    text-align: center;
    background: var(--fac-light);
    border: 1px solid rgba(10, 45, 75, 0.07);
    border-radius: 16px;
}

.facade-benefit-card i {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 53px;
    height: 53px;
    margin-bottom: 17px;
    color: var(--fac-blue);
    font-size: 21px;
    background: var(--fac-yellow);
    border-radius: 50%;
}

.facade-benefit-card h3 {
    color: var(--fac-blue);
    font-size: 17px;
    font-weight: 800;
}

.facade-benefit-card p {
    margin: 0;
    color: var(--fac-text);
    font-size: 13px;
    line-height: 1.7;
}

/* ==================================================
   DESIGN ET PROCESSUS
================================================== */

.facade-design {
    padding: 105px 0;
    background: var(--fac-light);
}

.facade-process {
    padding: 105px 0;
    background: #ffffff;
}

.facade-design-card,
.facade-process-card {
    position: relative;
    height: 100%;
    padding: 28px 23px;
    background: #ffffff;
    border: 1px solid rgba(10, 45, 75, 0.08);
    border-radius: 16px;
}

.facade-process-card {
    background: var(--fac-light);
}

.facade-design-card > strong,
.facade-process-card > strong {
    position: absolute;
    top: 18px;
    right: 20px;
    color: rgba(10, 45, 75, 0.09);
    font-size: 32px;
    font-weight: 900;
}

.facade-design-card > span,
.facade-process-card > span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 51px;
    height: 51px;
    margin-bottom: 19px;
    color: var(--fac-blue);
    font-size: 20px;
    background: var(--fac-yellow);
    border-radius: 12px;
}

.facade-design-card h3,
.facade-process-card h3 {
    color: var(--fac-blue);
    font-size: 17px;
    font-weight: 800;
}

.facade-design-card p,
.facade-process-card p {
    margin: 0;
    color: var(--fac-text);
    font-size: 13px;
    line-height: 1.7;
}

/* ==================================================
   SECTEURS
================================================== */

.facade-sectors {
    padding: 105px 0;
    background: #ffffff;
}

.facade-sector-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 14px;
}

.facade-sector-grid div {
    display: flex;
    align-items: center;
    gap: 12px;
    min-height: 70px;
    padding: 17px 18px;
    color: var(--fac-blue);
    font-size: 14px;
    font-weight: 750;
    background: var(--fac-light);
    border: 1px solid rgba(10, 45, 75, 0.07);
    border-radius: 13px;
}

.facade-sector-grid i {
    color: var(--fac-yellow);
    font-size: 20px;
}

/* ==================================================
   INFORMATION
================================================== */

.facade-information {
    padding: 10px 0 105px;
    background: #ffffff;
}

.facade-information-box {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 32px;
    background: rgba(252, 176, 4, 0.09);
    border: 1px solid rgba(252, 176, 4, 0.3);
    border-radius: 18px;
}

.facade-information-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    flex: 0 0 56px;
    color: var(--fac-yellow);
    font-size: 22px;
    background: var(--fac-blue);
    border-radius: 13px;
}

.facade-information-small {
    color: var(--fac-yellow);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.facade-information h2 {
    margin: 5px 0 10px;
    color: var(--fac-blue);
    font-size: clamp(25px, 3vw, 35px);
    font-weight: 800;
}

.facade-information p {
    margin: 0;
    color: var(--fac-text);
    font-size: 13px;
    line-height: 1.75;
}

/* ==================================================
   ZONES
================================================== */

.facade-zones {
    padding: 105px 0;
    background: var(--fac-light);
}

.facade-zones-box {
    padding: 55px;
    color: #ffffff;
    background:
        radial-gradient(
            circle at 88% 5%,
            rgba(252, 176, 4, 0.16),
            transparent 30%
        ),
        linear-gradient(135deg, #051d31, #0a2d4b);
    border: 1px solid rgba(252, 176, 4, 0.3);
    border-radius: 23px;
    box-shadow: 0 25px 60px rgba(10, 45, 75, 0.18);
}

.facade-zones h2 {
    color: #ffffff;
    font-size: clamp(31px, 4vw, 45px);
    font-weight: 800;
}

.facade-zones p {
    color: rgba(255, 255, 255, 0.67);
    font-size: 14px;
    line-height: 1.8;
}

.facade-zones strong {
    color: #ffffff;
}

.facade-city-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 13px;
}

.facade-city {
    display: flex;
    align-items: center;
    gap: 11px;
    min-height: 75px;
    padding: 16px 18px;
    background: rgba(255, 255, 255, 0.065);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 13px;
}

.facade-city i {
    color: var(--fac-yellow);
    font-size: 19px;
}

.facade-city span {
    display: flex;
    flex-direction: column;
}

.facade-city small {
    color: rgba(255, 255, 255, 0.52);
}

.facade-city-main,
.facade-city-morocco {
    background: rgba(252, 176, 4, 0.12);
    border-color: rgba(252, 176, 4, 0.32);
}

/* ==================================================
   FAQ
================================================== */

.facade-faq {
    padding: 105px 0;
    background: #ffffff;
}

.facade-faq p {
    color: var(--fac-text);
    font-size: 14px;
    line-height: 1.8;
}

.facade-accordion .accordion-item {
    margin-bottom: 12px;
    overflow: hidden;
    border: 1px solid rgba(10, 45, 75, 0.09);
    border-radius: 13px;
}

.facade-accordion .accordion-button {
    padding: 19px 21px;
    color: var(--fac-blue);
    font-size: 14px;
    font-weight: 750;
    background: #ffffff;
    box-shadow: none;
}

.facade-accordion .accordion-button:not(.collapsed) {
    background: rgba(252, 176, 4, 0.11);
}

.facade-accordion .accordion-body {
    color: var(--fac-text);
    font-size: 13px;
    line-height: 1.75;
}

/* ==================================================
   CTA FINAL
================================================== */

.facade-final {
    padding: 0 0 105px;
    background: #ffffff;
}

.facade-final-box {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 35px;
    padding: 38px 40px;
    background: linear-gradient(
        135deg,
        var(--fac-yellow),
        #e49b00
    );
    border-radius: 21px;
    box-shadow: 0 22px 50px rgba(10, 45, 75, 0.17);
}

.facade-final-box > div:first-child > span {
    color: rgba(5, 29, 49, 0.7);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 1.1px;
    text-transform: uppercase;
}

.facade-final h2 {
    margin: 5px 0 7px;
    color: var(--fac-blue-dark);
    font-size: clamp(24px, 3vw, 34px);
    font-weight: 800;
}

.facade-final p {
    margin: 0;
    color: rgba(5, 29, 49, 0.72);
    font-size: 13px;
}

.facade-final-actions {
    display: flex;
    flex-shrink: 0;
    gap: 10px;
}

.facade-final-primary,
.facade-final-call {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    min-height: 52px;
    padding: 0 19px;
    color: #ffffff;
    font-size: 12px;
    font-weight: 800;
    text-decoration: none;
    border-radius: 10px;
}

.facade-final-primary {
    background: var(--fac-blue);
}

.facade-final-call {
    color: var(--fac-blue);
    background: #ffffff;
}

/* ==================================================
   RESPONSIVE
================================================== */

@media (max-width: 991.98px) {
    .facade-intro,
    .facade-solutions,
    .facade-materials,
    .facade-benefits,
    .facade-design,
    .facade-sectors,
    .facade-process,
    .facade-zones,
    .facade-faq {
        padding: 80px 0;
    }

    .facade-intro-image {
        margin: 25px auto 0;
    }

    .facade-material-grid {
        margin-top: 25px;
    }

    .facade-sector-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .facade-zones-box {
        padding: 40px 30px;
    }

    .facade-final-box {
        align-items: flex-start;
        flex-direction: column;
    }
}

@media (max-width: 575.98px) {
    .facade-hero {
        min-height: 550px;
        padding: 90px 0 70px;
    }

    .facade-hero h1 {
        font-size: 40px;
    }

    .facade-hero-actions {
        flex-direction: column;
    }

    .facade-btn-primary,
    .facade-btn-whatsapp {
        width: 100%;
    }

    .facade-intro,
    .facade-solutions,
    .facade-materials,
    .facade-benefits,
    .facade-design,
    .facade-sectors,
    .facade-process,
    .facade-zones,
    .facade-faq {
        padding: 65px 0;
    }

    .facade-checks,
    .facade-material-grid,
    .facade-sector-grid,
    .facade-city-grid {
        grid-template-columns: 1fr;
    }

    .facade-intro-image {
        padding: 10px 10px 25px 17px;
    }

    .facade-intro-image img {
        height: 430px;
    }

    .facade-information {
        padding-bottom: 65px;
    }

    .facade-information-box {
        flex-direction: column;
        padding: 25px 20px;
    }

    .facade-zones-box {
        padding: 32px 20px;
        border-radius: 18px;
    }

    .facade-final {
        padding-bottom: 65px;
    }

    .facade-final-box {
        padding: 28px 20px;
    }

    .facade-final-actions {
        width: 100%;
        flex-direction: column;
    }

    .facade-final-primary,
    .facade-final-call {
        width: 100%;
    }
}


/* ==================================================
   PAGE FAÇADE ALUCOBOND ALUPUB
================================================== */

:root {
    --acm-blue: #0a2d4b;
    --acm-blue-dark: #051d31;
    --acm-yellow: #fcb004;
    --acm-yellow-light: #ffd45c;
    --acm-text: #687986;
    --acm-light: #f5f8fb;
    --acm-white: #ffffff;
}

.acm-page {
    overflow: hidden;
}

/* Éléments communs */
.acm-eyebrow,
.acm-dark-eyebrow {
    display: inline-block;
    margin-bottom: 15px;
    color: var(--acm-yellow);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 1.2px;
    text-transform: uppercase;
}

.acm-section-heading {
    max-width: 790px;
    margin: 0 auto 50px;
    text-align: center;
}

.acm-section-heading > span {
    display: block;
    margin-bottom: 12px;
    color: var(--acm-yellow);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 1.2px;
    text-transform: uppercase;
}

.acm-section-heading h2,
.acm-intro h2,
.acm-faq h2 {
    margin-bottom: 16px;
    color: var(--acm-blue);
    font-size: clamp(32px, 4vw, 48px);
    font-weight: 800;
    line-height: 1.16;
    letter-spacing: -1px;
}

.acm-section-heading p {
    margin: 0;
    color: var(--acm-text);
    font-size: 15px;
    line-height: 1.8;
}

/* Boutons */
.acm-btn-primary,
.acm-btn-whatsapp,
.acm-dark-btn,
.acm-yellow-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    min-height: 53px;
    padding: 0 22px;
    font-size: 13px;
    font-weight: 800;
    text-decoration: none;
    border-radius: 11px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.acm-btn-primary,
.acm-yellow-btn {
    color: var(--acm-blue);
    background: linear-gradient(
        135deg,
        var(--acm-yellow-light),
        var(--acm-yellow)
    );
}

.acm-btn-whatsapp {
    color: #ffffff;
    background: #159957;
}

.acm-dark-btn {
    color: #ffffff;
    background: var(--acm-blue);
}

.acm-btn-primary:hover,
.acm-btn-whatsapp:hover,
.acm-dark-btn:hover,
.acm-yellow-btn:hover {
    color: inherit;
     color: #ffffff;
    transform: translateY(-3px);
    box-shadow: 0 15px 32px rgba(5, 29, 49, 0.24);
}

/* ==================================================
   HERO
================================================== */

.acm-hero {
    position: relative;
    isolation: isolate;
    display: flex;
    align-items: center;
    min-height: 600px;
    padding: 125px 0 100px;
    color: #ffffff;
    background-position: center;
    background-size: cover;
}

.acm-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -1;
    background:
        linear-gradient(
            90deg,
            rgba(5, 29, 49, 0.98) 0%,
            rgba(10, 45, 75, 0.91) 48%,
            rgba(10, 45, 75, 0.42) 100%
        ),
        linear-gradient(
            180deg,
            transparent 45%,
            rgba(5, 29, 49, 0.78) 100%
        );
}

.acm-breadcrumb {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 9px;
    margin-bottom: 22px;
    font-size: 12px;
}

.acm-breadcrumb a {
    color: rgba(255, 255, 255, 0.65);
    text-decoration: none;
}

.acm-breadcrumb i {
    color: var(--acm-yellow);
    font-size: 9px;
}

.acm-breadcrumb span {
    color: #ffffff;
}

.acm-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 18px;
    padding: 9px 15px;
    color: var(--acm-yellow);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 1px;
    text-transform: uppercase;
    background: rgba(252, 176, 4, 0.1);
    border: 1px solid rgba(252, 176, 4, 0.4);
    border-radius: 50px;
}

.acm-hero h1 {
    max-width: 900px;
    margin-bottom: 22px;
    color: #ffffff;
    font-size: clamp(42px, 6vw, 70px);
    font-weight: 850;
    line-height: 1.07;
    letter-spacing: -1.8px;
}

.acm-hero h1 span {
    color: var(--acm-yellow);
}

.acm-hero p {
    max-width: 720px;
    margin-bottom: 30px;
    color: rgba(255, 255, 255, 0.78);
    font-size: 17px;
    line-height: 1.75;
}

.acm-hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

/* ==================================================
   INTRO
================================================== */

.acm-intro {
    padding: 105px 0;
    background: #ffffff;
}

.acm-title-line {
    width: 72px;
    height: 4px;
    margin-bottom: 23px;
    background: linear-gradient(
        90deg,
        var(--acm-yellow),
        var(--acm-yellow-light)
    );
    border-radius: 20px;
}

.acm-intro p {
    color: var(--acm-text);
    font-size: 14px;
    line-height: 1.85;
}

.acm-intro .acm-lead {
    color: #354c5e;
    font-size: 17px;
}

.acm-intro strong {
    color: var(--acm-blue);
}

.acm-checks {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    margin: 27px 0;
}

.acm-checks div {
    display: flex;
    align-items: center;
    gap: 9px;
    color: var(--acm-blue);
    font-size: 13px;
    font-weight: 700;
}

.acm-checks i {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 25px;
    height: 25px;
    color: var(--acm-blue);
    background: var(--acm-yellow);
    border-radius: 50%;
}

/* Image */
.acm-intro-image {
    position: relative;
    max-width: 590px;
    margin-left: auto;
    padding: 15px 15px 30px 30px;
}

.acm-image-decoration {
    position: absolute;
    top: 0;
    right: 0;
    width: 78%;
    height: 85%;
    background: var(--acm-yellow);
    border-radius: 24px;
}

.acm-intro-image img {
    position: relative;
    z-index: 2;
    display: block;
    width: 100%;
    height: 560px;
    object-fit: cover;
    border: 6px solid #ffffff;
    border-radius: 22px;
    box-shadow: 0 25px 60px rgba(10, 45, 75, 0.2);
}

.acm-image-card {
    position: absolute;
    right: 0;
    bottom: 0;
    z-index: 3;
    display: flex;
    align-items: center;
    gap: 11px;
    padding: 15px 17px;
    color: #ffffff;
    background: rgba(10, 45, 75, 0.96);
    border: 1px solid rgba(252, 176, 4, 0.3);
    border-radius: 13px;
    box-shadow: 0 15px 35px rgba(10, 45, 75, 0.25);
}

.acm-image-card > span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 41px;
    height: 41px;
    color: var(--acm-blue);
    background: var(--acm-yellow);
    border-radius: 10px;
}

.acm-image-card div {
    display: flex;
    flex-direction: column;
}

.acm-image-card strong {
    font-size: 13px;
}

.acm-image-card small {
    color: rgba(255, 255, 255, 0.6);
}

/* ==================================================
   SOLUTIONS
================================================== */

.acm-solutions {
    padding: 105px 0;
    background: var(--acm-light);
}

.acm-solution-card {
    height: 100%;
    padding: 28px 24px;
    background: #ffffff;
    border: 1px solid rgba(10, 45, 75, 0.08);
    border-radius: 17px;
    box-shadow: 0 13px 35px rgba(10, 45, 75, 0.06);
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.acm-solution-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 53px;
    height: 53px;
    margin-bottom: 19px;
    color: var(--acm-blue);
    font-size: 21px;
    background: var(--acm-yellow);
    border-radius: 13px;
}

.acm-solution-card h3 {
    color: var(--acm-blue);
    font-size: 18px;
    font-weight: 800;
}

.acm-solution-card p,
.acm-solution-card li {
    color: var(--acm-text);
    font-size: 13px;
    line-height: 1.7;
}

.acm-solution-card ul {
    margin: 15px 0 0;
    padding-left: 18px;
}

.acm-solution-card li::marker {
    color: var(--acm-yellow);
}

.acm-solution-card:hover {
    transform: translateY(-7px);
    border-color: rgba(252, 176, 4, 0.5);
}

/* ==================================================
   COMPOSITION
================================================== */

.acm-composition {
    padding: 105px 0;
    color: #ffffff;
    background:
        radial-gradient(
            circle at 85% 5%,
            rgba(252, 176, 4, 0.15),
            transparent 28%
        ),
        linear-gradient(135deg, #051d31, #0a2d4b);
}

.acm-composition h2 {
    color: #ffffff;
    font-size: clamp(32px, 4vw, 47px);
    font-weight: 800;
}

.acm-composition p {
    color: rgba(255, 255, 255, 0.68);
    font-size: 14px;
    line-height: 1.8;
}

.acm-composition-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
}

.acm-composition-card {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 22px 19px;
    background: rgba(255, 255, 255, 0.055);
    border: 1px solid rgba(255, 255, 255, 0.11);
    border-radius: 14px;
}

.acm-composition-card > span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 47px;
    height: 47px;
    flex: 0 0 47px;
    color: var(--acm-blue);
    font-size: 15px;
    font-weight: 900;
    background: var(--acm-yellow);
    border-radius: 11px;
}

.acm-composition-card h3 {
    margin-bottom: 5px;
    color: #ffffff;
    font-size: 16px;
    font-weight: 800;
}

.acm-composition-card p {
    margin: 0;
    font-size: 12px;
    line-height: 1.65;
}

/* ==================================================
   FINITIONS
================================================== */

.acm-finishes {
    padding: 105px 0;
    background: #ffffff;
}

.acm-finish-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
}

.acm-finish-card {
    padding: 24px 20px;
    background: var(--acm-light);
    border: 1px solid rgba(10, 45, 75, 0.07);
    border-radius: 15px;
}

.acm-finish-card i {
    color: var(--acm-yellow);
    font-size: 22px;
}

.acm-finish-card h3 {
    margin: 12px 0 6px;
    color: var(--acm-blue);
    font-size: 17px;
    font-weight: 800;
}

.acm-finish-card p {
    margin: 0;
    color: var(--acm-text);
    font-size: 13px;
    line-height: 1.65;
}

/* ==================================================
   AVANTAGES
================================================== */

.acm-benefits {
    padding: 105px 0;
    background: var(--acm-light);
}

.acm-benefit-card {
    height: 100%;
    padding: 27px 22px;
    text-align: center;
    background: #ffffff;
    border: 1px solid rgba(10, 45, 75, 0.08);
    border-radius: 16px;
}

.acm-benefit-card i {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 53px;
    height: 53px;
    margin-bottom: 17px;
    color: var(--acm-blue);
    font-size: 21px;
    background: var(--acm-yellow);
    border-radius: 50%;
}

.acm-benefit-card h3 {
    color: var(--acm-blue);
    font-size: 17px;
    font-weight: 800;
}

.acm-benefit-card p {
    margin: 0;
    color: var(--acm-text);
    font-size: 13px;
    line-height: 1.7;
}

/* ==================================================
   TYPES DE POSE
================================================== */

.acm-installation-types {
    padding: 105px 0;
    background: #ffffff;
}

.acm-installation-card {
    height: 100%;
    padding: 28px 24px;
    background: var(--acm-light);
    border: 1px solid rgba(10, 45, 75, 0.07);
    border-radius: 16px;
}

.acm-installation-card > span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 53px;
    height: 53px;
    margin-bottom: 18px;
    color: var(--acm-blue);
    font-size: 20px;
    background: var(--acm-yellow);
    border-radius: 13px;
}

.acm-installation-card h3 {
    color: var(--acm-blue);
    font-size: 18px;
    font-weight: 800;
}

.acm-installation-card p {
    margin: 0;
    color: var(--acm-text);
    font-size: 13px;
    line-height: 1.7;
}

/* ==================================================
   SECTEURS
================================================== */

.acm-sectors {
    padding: 105px 0;
    background: var(--acm-light);
}

.acm-sector-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 14px;
}

.acm-sector-grid div {
    display: flex;
    align-items: center;
    gap: 12px;
    min-height: 70px;
    padding: 17px 18px;
    color: var(--acm-blue);
    font-size: 14px;
    font-weight: 750;
    background: #ffffff;
    border: 1px solid rgba(10, 45, 75, 0.08);
    border-radius: 13px;
}

.acm-sector-grid i {
    color: var(--acm-yellow);
    font-size: 20px;
}

/* ==================================================
   PROCESSUS
================================================== */

.acm-process {
    padding: 105px 0;
    background: #ffffff;
}

.acm-process-card {
    position: relative;
    height: 100%;
    padding: 28px 23px;
    background: var(--acm-light);
    border: 1px solid rgba(10, 45, 75, 0.07);
    border-radius: 16px;
}

.acm-process-card > strong {
    position: absolute;
    top: 18px;
    right: 20px;
    color: rgba(10, 45, 75, 0.09);
    font-size: 32px;
    font-weight: 900;
}

.acm-process-card > span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 51px;
    height: 51px;
    margin-bottom: 19px;
    color: var(--acm-blue);
    font-size: 20px;
    background: var(--acm-yellow);
    border-radius: 12px;
}

.acm-process-card h3 {
    color: var(--acm-blue);
    font-size: 17px;
    font-weight: 800;
}

.acm-process-card p {
    margin: 0;
    color: var(--acm-text);
    font-size: 13px;
    line-height: 1.7;
}

/* ==================================================
   INFORMATION TECHNIQUE
================================================== */

.acm-technical {
    padding: 10px 0 105px;
    background: #ffffff;
}

.acm-technical-box {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 32px;
    background: rgba(252, 176, 4, 0.09);
    border: 1px solid rgba(252, 176, 4, 0.3);
    border-radius: 18px;
}

.acm-technical-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    flex: 0 0 56px;
    color: var(--acm-yellow);
    font-size: 22px;
    background: var(--acm-blue);
    border-radius: 13px;
}

.acm-technical-small {
    color: var(--acm-yellow);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.acm-technical h2 {
    margin: 5px 0 10px;
    color: var(--acm-blue);
    font-size: clamp(25px, 3vw, 35px);
    font-weight: 800;
}

.acm-technical p {
    margin: 0;
    color: var(--acm-text);
    font-size: 13px;
    line-height: 1.75;
}

/* ==================================================
   ZONES
================================================== */

.acm-zones {
    padding: 105px 0;
    background: var(--acm-light);
}

.acm-zones-box {
    padding: 55px;
    color: #ffffff;
    background:
        radial-gradient(
            circle at 88% 5%,
            rgba(252, 176, 4, 0.16),
            transparent 30%
        ),
        linear-gradient(135deg, #051d31, #0a2d4b);
    border: 1px solid rgba(252, 176, 4, 0.3);
    border-radius: 23px;
    box-shadow: 0 25px 60px rgba(10, 45, 75, 0.18);
}

.acm-zones h2 {
    color: #ffffff;
    font-size: clamp(31px, 4vw, 45px);
    font-weight: 800;
}

.acm-zones p {
    color: rgba(255, 255, 255, 0.67);
    font-size: 14px;
    line-height: 1.8;
}

.acm-zones strong {
    color: #ffffff;
}

.acm-city-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 13px;
}

.acm-city {
    display: flex;
    align-items: center;
    gap: 11px;
    min-height: 75px;
    padding: 16px 18px;
    background: rgba(255, 255, 255, 0.065);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 13px;
}

.acm-city i {
    color: var(--acm-yellow);
    font-size: 19px;
}

.acm-city span {
    display: flex;
    flex-direction: column;
}

.acm-city small {
    color: rgba(255, 255, 255, 0.52);
}

.acm-city-main,
.acm-city-morocco {
    background: rgba(252, 176, 4, 0.12);
    border-color: rgba(252, 176, 4, 0.32);
}

/* ==================================================
   FAQ
================================================== */

.acm-faq {
    padding: 105px 0;
    background: #ffffff;
}

.acm-faq p {
    color: var(--acm-text);
    font-size: 14px;
    line-height: 1.8;
}

.acm-accordion .accordion-item {
    margin-bottom: 12px;
    overflow: hidden;
    border: 1px solid rgba(10, 45, 75, 0.09);
    border-radius: 13px;
}

.acm-accordion .accordion-button {
    padding: 19px 21px;
    color: var(--acm-blue);
    font-size: 14px;
    font-weight: 750;
    background: #ffffff;
    box-shadow: none;
}

.acm-accordion .accordion-button:not(.collapsed) {
    background: rgba(252, 176, 4, 0.11);
}

.acm-accordion .accordion-body {
    color: var(--acm-text);
    font-size: 13px;
    line-height: 1.75;
}

/* ==================================================
   CTA FINAL
================================================== */

.acm-final {
    padding: 0 0 105px;
    background: #ffffff;
}

.acm-final-box {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 35px;
    padding: 38px 40px;
    background: linear-gradient(
        135deg,
        var(--acm-yellow),
        #e49b00
    );
    border-radius: 21px;
    box-shadow: 0 22px 50px rgba(10, 45, 75, 0.17);
}

.acm-final-box > div:first-child > span {
    color: rgba(5, 29, 49, 0.7);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 1.1px;
    text-transform: uppercase;
}

.acm-final h2 {
    margin: 5px 0 7px;
    color: var(--acm-blue-dark);
    font-size: clamp(24px, 3vw, 34px);
    font-weight: 800;
}

.acm-final p {
    margin: 0;
    color: rgba(5, 29, 49, 0.72);
    font-size: 13px;
}

.acm-final-actions {
    display: flex;
    flex-shrink: 0;
    gap: 10px;
}

.acm-final-primary,
.acm-final-call {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    min-height: 52px;
    padding: 0 19px;
    color: #ffffff;
    font-size: 12px;
    font-weight: 800;
    text-decoration: none;
    border-radius: 10px;
}

.acm-final-primary {
    background: var(--acm-blue);
}

.acm-final-call {
    color: var(--acm-blue);
    background: #ffffff;
}

/* ==================================================
   RESPONSIVE
================================================== */

@media (max-width: 991.98px) {
    .acm-intro,
    .acm-solutions,
    .acm-composition,
    .acm-finishes,
    .acm-benefits,
    .acm-installation-types,
    .acm-sectors,
    .acm-process,
    .acm-zones,
    .acm-faq {
        padding: 80px 0;
    }

    .acm-intro-image {
        margin: 25px auto 0;
    }

    .acm-composition-grid {
        margin-top: 25px;
    }

    .acm-finish-grid,
    .acm-sector-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .acm-zones-box {
        padding: 40px 30px;
    }

    .acm-final-box {
        align-items: flex-start;
        flex-direction: column;
    }
}

@media (max-width: 575.98px) {
    .acm-hero {
        min-height: 550px;
        padding: 90px 0 70px;
    }

    .acm-hero h1 {
        font-size: 40px;
    }

    .acm-hero-actions {
        flex-direction: column;
    }

    .acm-btn-primary,
    .acm-btn-whatsapp {
        width: 100%;
    }

    .acm-intro,
    .acm-solutions,
    .acm-composition,
    .acm-finishes,
    .acm-benefits,
    .acm-installation-types,
    .acm-sectors,
    .acm-process,
    .acm-zones,
    .acm-faq {
        padding: 65px 0;
    }

    .acm-checks,
    .acm-composition-grid,
    .acm-finish-grid,
    .acm-sector-grid,
    .acm-city-grid {
        grid-template-columns: 1fr;
    }

    .acm-intro-image {
        padding: 10px 10px 25px 17px;
    }

    .acm-intro-image img {
        height: 430px;
    }

    .acm-technical {
        padding-bottom: 65px;
    }

    .acm-technical-box {
        flex-direction: column;
        padding: 25px 20px;
    }

    .acm-zones-box {
        padding: 32px 20px;
        border-radius: 18px;
    }

    .acm-final {
        padding-bottom: 65px;
    }

    .acm-final-box {
        padding: 28px 20px;
    }

    .acm-final-actions {
        width: 100%;
        flex-direction: column;
    }

    .acm-final-primary,
    .acm-final-call {
        width: 100%;
    }
}

/* ==================================================
   PAGE PALISSADE DE CHANTIER ALUPUB
================================================== */

:root {
    --pal-blue: #0a2d4b;
    --pal-blue-dark: #051d31;
    --pal-yellow: #fcb004;
    --pal-yellow-light: #ffd45c;
    --pal-text: #687986;
    --pal-light: #f5f8fb;
    --pal-white: #ffffff;
}

.pal-page {
    overflow: hidden;
}

/* Éléments communs */
.pal-eyebrow,
.pal-dark-eyebrow {
    display: inline-block;
    margin-bottom: 15px;
    color: var(--pal-yellow);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 1.2px;
    text-transform: uppercase;
}

.pal-section-heading {
    max-width: 790px;
    margin: 0 auto 50px;
    text-align: center;
}

.pal-section-heading > span {
    display: block;
    margin-bottom: 12px;
    color: var(--pal-yellow);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 1.2px;
    text-transform: uppercase;
}

.pal-section-heading h2,
.pal-intro h2,
.pal-faq h2 {
    margin-bottom: 16px;
    color: var(--pal-blue);
    font-size: clamp(32px, 4vw, 48px);
    font-weight: 800;
    line-height: 1.16;
    letter-spacing: -1px;
}

.pal-section-heading p {
    margin: 0;
    color: var(--pal-text);
    font-size: 15px;
    line-height: 1.8;
}

/* Boutons */
.pal-btn-primary,
.pal-btn-whatsapp,
.pal-dark-btn,
.pal-yellow-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    min-height: 53px;
    padding: 0 22px;
    font-size: 13px;
    font-weight: 800;
    text-decoration: none;
    border-radius: 11px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.pal-btn-primary,
.pal-yellow-btn {
    color: var(--pal-blue);
    background: linear-gradient(
        135deg,
        var(--pal-yellow-light),
        var(--pal-yellow)
    );
}

.pal-btn-whatsapp {
    color: #ffffff;
    background: #159957;
}

.pal-dark-btn {
    color: #ffffff;
    background: var(--pal-blue);
}

.pal-btn-primary:hover,
.pal-btn-whatsapp:hover,
.pal-dark-btn:hover,
.pal-yellow-btn:hover {
    color: inherit;
    transform: translateY(-3px);
    box-shadow: 0 15px 32px rgba(5, 29, 49, 0.24);
}

/* ==================================================
   HERO
================================================== */

.pal-hero {
    position: relative;
    isolation: isolate;
    display: flex;
    align-items: center;
    min-height: 600px;
    padding: 125px 0 100px;
    color: #ffffff;
    background-position: center;
    background-size: cover;
}

.pal-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -1;
    background:
        linear-gradient(
            90deg,
            rgba(5, 29, 49, 0.98) 0%,
            rgba(10, 45, 75, 0.91) 48%,
            rgba(10, 45, 75, 0.42) 100%
        ),
        linear-gradient(
            180deg,
            transparent 45%,
            rgba(5, 29, 49, 0.78) 100%
        );
}

.pal-breadcrumb {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 9px;
    margin-bottom: 22px;
    font-size: 12px;
}

.pal-breadcrumb a {
    color: rgba(255, 255, 255, 0.65);
    text-decoration: none;
}

.pal-breadcrumb i {
    color: var(--pal-yellow);
    font-size: 9px;
}

.pal-breadcrumb span {
    color: #ffffff;
}

.pal-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 18px;
    padding: 9px 15px;
    color: var(--pal-yellow);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 1px;
    text-transform: uppercase;
    background: rgba(252, 176, 4, 0.1);
    border: 1px solid rgba(252, 176, 4, 0.4);
    border-radius: 50px;
}

.pal-hero h1 {
    max-width: 900px;
    margin-bottom: 22px;
    color: #ffffff;
    font-size: clamp(42px, 6vw, 70px);
    font-weight: 850;
    line-height: 1.07;
    letter-spacing: -1.8px;
}

.pal-hero h1 span {
    color: var(--pal-yellow);
}

.pal-hero p {
    max-width: 720px;
    margin-bottom: 30px;
    color: rgba(255, 255, 255, 0.78);
    font-size: 17px;
    line-height: 1.75;
}

.pal-hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

/* ==================================================
   INTRO
================================================== */

.pal-intro {
    padding: 105px 0;
    background: #ffffff;
}

.pal-title-line {
    width: 72px;
    height: 4px;
    margin-bottom: 23px;
    background: linear-gradient(
        90deg,
        var(--pal-yellow),
        var(--pal-yellow-light)
    );
    border-radius: 20px;
}

.pal-intro p {
    color: var(--pal-text);
    font-size: 14px;
    line-height: 1.85;
}

.pal-intro .pal-lead {
    color: #354c5e;
    font-size: 17px;
}

.pal-intro strong {
    color: var(--pal-blue);
}

.pal-checks {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    margin: 27px 0;
}

.pal-checks div {
    display: flex;
    align-items: center;
    gap: 9px;
    color: var(--pal-blue);
    font-size: 13px;
    font-weight: 700;
}

.pal-checks i {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 25px;
    height: 25px;
    color: var(--pal-blue);
    background: var(--pal-yellow);
    border-radius: 50%;
}

/* Image */
.pal-intro-image {
    position: relative;
    max-width: 590px;
    margin-left: auto;
    padding: 15px 15px 30px 30px;
}

.pal-image-decoration {
    position: absolute;
    top: 0;
    right: 0;
    width: 78%;
    height: 85%;
    background: var(--pal-yellow);
    border-radius: 24px;
}

.pal-intro-image img {
    position: relative;
    z-index: 2;
    display: block;
    width: 100%;
    height: 560px;
    object-fit: cover;
    border: 6px solid #ffffff;
    border-radius: 22px;
    box-shadow: 0 25px 60px rgba(10, 45, 75, 0.2);
}

.pal-image-card {
    position: absolute;
    right: 0;
    bottom: 0;
    z-index: 3;
    display: flex;
    align-items: center;
    gap: 11px;
    padding: 15px 17px;
    color: #ffffff;
    background: rgba(10, 45, 75, 0.96);
    border: 1px solid rgba(252, 176, 4, 0.3);
    border-radius: 13px;
    box-shadow: 0 15px 35px rgba(10, 45, 75, 0.25);
}

.pal-image-card > span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 41px;
    height: 41px;
    color: var(--pal-blue);
    background: var(--pal-yellow);
    border-radius: 10px;
}

.pal-image-card div {
    display: flex;
    flex-direction: column;
}

.pal-image-card strong {
    font-size: 13px;
}

.pal-image-card small {
    color: rgba(255, 255, 255, 0.6);
}

/* ==================================================
   TYPES
================================================== */

.pal-types {
    padding: 105px 0;
    background: var(--pal-light);
}

.pal-type-card {
    height: 100%;
    padding: 28px 24px;
    background: #ffffff;
    border: 1px solid rgba(10, 45, 75, 0.08);
    border-radius: 17px;
    box-shadow: 0 13px 35px rgba(10, 45, 75, 0.06);
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.pal-type-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 53px;
    height: 53px;
    margin-bottom: 19px;
    color: var(--pal-blue);
    font-size: 21px;
    background: var(--pal-yellow);
    border-radius: 13px;
}

.pal-type-card h3 {
    color: var(--pal-blue);
    font-size: 18px;
    font-weight: 800;
}

.pal-type-card p,
.pal-type-card li {
    color: var(--pal-text);
    font-size: 13px;
    line-height: 1.7;
}

.pal-type-card ul {
    margin: 15px 0 0;
    padding-left: 18px;
}

.pal-type-card li::marker {
    color: var(--pal-yellow);
}

.pal-type-card:hover {
    transform: translateY(-7px);
    border-color: rgba(252, 176, 4, 0.5);
}

/* ==================================================
   COMMUNICATION
================================================== */

.pal-communication {
    padding: 105px 0;
    color: #ffffff;
    background:
        radial-gradient(
            circle at 85% 5%,
            rgba(252, 176, 4, 0.15),
            transparent 28%
        ),
        linear-gradient(135deg, #051d31, #0a2d4b);
}

.pal-communication h2 {
    color: #ffffff;
    font-size: clamp(32px, 4vw, 47px);
    font-weight: 800;
}

.pal-communication p {
    color: rgba(255, 255, 255, 0.68);
    font-size: 14px;
    line-height: 1.8;
}

.pal-communication-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
}

.pal-communication-card {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 22px 19px;
    background: rgba(255, 255, 255, 0.055);
    border: 1px solid rgba(255, 255, 255, 0.11);
    border-radius: 14px;
}

.pal-communication-card > span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 47px;
    height: 47px;
    flex: 0 0 47px;
    color: var(--pal-blue);
    font-size: 19px;
    background: var(--pal-yellow);
    border-radius: 11px;
}

.pal-communication-card h3 {
    margin-bottom: 5px;
    color: #ffffff;
    font-size: 16px;
    font-weight: 800;
}

.pal-communication-card p {
    margin: 0;
    font-size: 12px;
    line-height: 1.65;
}

/* ==================================================
   MATÉRIAUX
================================================== */

.pal-materials {
    padding: 105px 0;
    background: #ffffff;
}

.pal-material-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
}

.pal-material-card {
    padding: 24px 20px;
    background: var(--pal-light);
    border: 1px solid rgba(10, 45, 75, 0.07);
    border-radius: 15px;
}

.pal-material-card i {
    color: var(--pal-yellow);
    font-size: 22px;
}

.pal-material-card h3 {
    margin: 12px 0 6px;
    color: var(--pal-blue);
    font-size: 17px;
    font-weight: 800;
}

.pal-material-card p {
    margin: 0;
    color: var(--pal-text);
    font-size: 13px;
    line-height: 1.65;
}

/* ==================================================
   AVANTAGES
================================================== */

.pal-benefits {
    padding: 105px 0;
    background: var(--pal-light);
}

.pal-benefit-card {
    height: 100%;
    padding: 27px 22px;
    text-align: center;
    background: #ffffff;
    border: 1px solid rgba(10, 45, 75, 0.08);
    border-radius: 16px;
}

.pal-benefit-card i {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 53px;
    height: 53px;
    margin-bottom: 17px;
    color: var(--pal-blue);
    font-size: 21px;
    background: var(--pal-yellow);
    border-radius: 50%;
}

.pal-benefit-card h3 {
    color: var(--pal-blue);
    font-size: 17px;
    font-weight: 800;
}

.pal-benefit-card p {
    margin: 0;
    color: var(--pal-text);
    font-size: 13px;
    line-height: 1.7;
}

/* ==================================================
   SECTEURS
================================================== */

.pal-sectors {
    padding: 105px 0;
    background: #ffffff;
}

.pal-sector-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 14px;
}

.pal-sector-grid div {
    display: flex;
    align-items: center;
    gap: 12px;
    min-height: 70px;
    padding: 17px 18px;
    color: var(--pal-blue);
    font-size: 14px;
    font-weight: 750;
    background: var(--pal-light);
    border: 1px solid rgba(10, 45, 75, 0.07);
    border-radius: 13px;
}

.pal-sector-grid i {
    color: var(--pal-yellow);
    font-size: 20px;
}

/* ==================================================
   PROCESSUS
================================================== */

.pal-process {
    padding: 105px 0;
    background: var(--pal-light);
}

.pal-process-card {
    position: relative;
    height: 100%;
    padding: 28px 23px;
    background: #ffffff;
    border: 1px solid rgba(10, 45, 75, 0.08);
    border-radius: 16px;
}

.pal-process-card > strong {
    position: absolute;
    top: 18px;
    right: 20px;
    color: rgba(10, 45, 75, 0.09);
    font-size: 32px;
    font-weight: 900;
}

.pal-process-card > span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 51px;
    height: 51px;
    margin-bottom: 19px;
    color: var(--pal-blue);
    font-size: 20px;
    background: var(--pal-yellow);
    border-radius: 12px;
}

.pal-process-card h3 {
    color: var(--pal-blue);
    font-size: 17px;
    font-weight: 800;
}

.pal-process-card p {
    margin: 0;
    color: var(--pal-text);
    font-size: 13px;
    line-height: 1.7;
}

/* ==================================================
   SÉCURITÉ
================================================== */

.pal-security {
    padding: 10px 0 105px;
    background: var(--pal-light);
}

.pal-security-box {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 32px;
    background: rgba(252, 176, 4, 0.09);
    border: 1px solid rgba(252, 176, 4, 0.3);
    border-radius: 18px;
}

.pal-security-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    flex: 0 0 56px;
    color: var(--pal-yellow);
    font-size: 22px;
    background: var(--pal-blue);
    border-radius: 13px;
}

.pal-security-small {
    color: var(--pal-yellow);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.pal-security h2 {
    margin: 5px 0 10px;
    color: var(--pal-blue);
    font-size: clamp(25px, 3vw, 35px);
    font-weight: 800;
}

.pal-security p {
    margin: 0;
    color: var(--pal-text);
    font-size: 13px;
    line-height: 1.75;
}

/* ==================================================
   ZONES
================================================== */

.pal-zones {
    padding: 105px 0;
    background: #ffffff;
}

.pal-zones-box {
    padding: 55px;
    color: #ffffff;
    background:
        radial-gradient(
            circle at 88% 5%,
            rgba(252, 176, 4, 0.16),
            transparent 30%
        ),
        linear-gradient(135deg, #051d31, #0a2d4b);
    border: 1px solid rgba(252, 176, 4, 0.3);
    border-radius: 23px;
    box-shadow: 0 25px 60px rgba(10, 45, 75, 0.18);
}

.pal-zones h2 {
    color: #ffffff;
    font-size: clamp(31px, 4vw, 45px);
    font-weight: 800;
}

.pal-zones p {
    color: rgba(255, 255, 255, 0.67);
    font-size: 14px;
    line-height: 1.8;
}

.pal-zones strong {
    color: #ffffff;
}

.pal-city-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 13px;
}

.pal-city {
    display: flex;
    align-items: center;
    gap: 11px;
    min-height: 75px;
    padding: 16px 18px;
    background: rgba(255, 255, 255, 0.065);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 13px;
}

.pal-city i {
    color: var(--pal-yellow);
    font-size: 19px;
}

.pal-city span {
    display: flex;
    flex-direction: column;
}

.pal-city small {
    color: rgba(255, 255, 255, 0.52);
}

.pal-city-main,
.pal-city-morocco {
    background: rgba(252, 176, 4, 0.12);
    border-color: rgba(252, 176, 4, 0.32);
}

/* ==================================================
   FAQ
================================================== */

.pal-faq {
    padding: 105px 0;
    background: #ffffff;
}

.pal-faq p {
    color: var(--pal-text);
    font-size: 14px;
    line-height: 1.8;
}

.pal-accordion .accordion-item {
    margin-bottom: 12px;
    overflow: hidden;
    border: 1px solid rgba(10, 45, 75, 0.09);
    border-radius: 13px;
}

.pal-accordion .accordion-button {
    padding: 19px 21px;
    color: var(--pal-blue);
    font-size: 14px;
    font-weight: 750;
    background: #ffffff;
    box-shadow: none;
}

.pal-accordion .accordion-button:not(.collapsed) {
    background: rgba(252, 176, 4, 0.11);
}

.pal-accordion .accordion-body {
    color: var(--pal-text);
    font-size: 13px;
    line-height: 1.75;
}

/* ==================================================
   CTA FINAL
================================================== */

.pal-final {
    padding: 0 0 105px;
    background: #ffffff;
}

.pal-final-box {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 35px;
    padding: 38px 40px;
    background: linear-gradient(
        135deg,
        var(--pal-yellow),
        #e49b00
    );
    border-radius: 21px;
    box-shadow: 0 22px 50px rgba(10, 45, 75, 0.17);
}

.pal-final-box > div:first-child > span {
    color: rgba(5, 29, 49, 0.7);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 1.1px;
    text-transform: uppercase;
}

.pal-final h2 {
    margin: 5px 0 7px;
    color: var(--pal-blue-dark);
    font-size: clamp(24px, 3vw, 34px);
    font-weight: 800;
}

.pal-final p {
    margin: 0;
    color: rgba(5, 29, 49, 0.72);
    font-size: 13px;
}

.pal-final-actions {
    display: flex;
    flex-shrink: 0;
    gap: 10px;
}

.pal-final-primary,
.pal-final-call {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    min-height: 52px;
    padding: 0 19px;
    color: #ffffff;
    font-size: 12px;
    font-weight: 800;
    text-decoration: none;
    border-radius: 10px;
}

.pal-final-primary {
    background: var(--pal-blue);
}

.pal-final-call {
    color: var(--pal-blue);
    background: #ffffff;
}

/* ==================================================
   RESPONSIVE
================================================== */

@media (max-width: 991.98px) {
    .pal-intro,
    .pal-types,
    .pal-communication,
    .pal-materials,
    .pal-benefits,
    .pal-sectors,
    .pal-process,
    .pal-zones,
    .pal-faq {
        padding: 80px 0;
    }

    .pal-intro-image {
        margin: 25px auto 0;
    }

    .pal-communication-grid {
        margin-top: 25px;
    }

    .pal-material-grid,
    .pal-sector-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .pal-zones-box {
        padding: 40px 30px;
    }

    .pal-final-box {
        align-items: flex-start;
        flex-direction: column;
    }
}

@media (max-width: 575.98px) {
    .pal-hero {
        min-height: 550px;
        padding: 90px 0 70px;
    }

    .pal-hero h1 {
        font-size: 39px;
    }

    .pal-hero-actions {
        flex-direction: column;
    }

    .pal-btn-primary,
    .pal-btn-whatsapp {
        width: 100%;
    }

    .pal-intro,
    .pal-types,
    .pal-communication,
    .pal-materials,
    .pal-benefits,
    .pal-sectors,
    .pal-process,
    .pal-zones,
    .pal-faq {
        padding: 65px 0;
    }

    .pal-checks,
    .pal-communication-grid,
    .pal-material-grid,
    .pal-sector-grid,
    .pal-city-grid {
        grid-template-columns: 1fr;
    }

    .pal-intro-image {
        padding: 10px 10px 25px 17px;
    }

    .pal-intro-image img {
        height: 430px;
    }

    .pal-security {
        padding-bottom: 65px;
    }

    .pal-security-box {
        flex-direction: column;
        padding: 25px 20px;
    }

    .pal-zones-box {
        padding: 32px 20px;
        border-radius: 18px;
    }

    .pal-final {
        padding-bottom: 65px;
    }

    .pal-final-box {
        padding: 28px 20px;
    }

    .pal-final-actions {
        width: 100%;
        flex-direction: column;
    }

    .pal-final-primary,
    .pal-final-call {
        width: 100%;
    }
}

/* ==================================================
   PAGE IMPRESSION PUBLICITAIRE ALUPUB
================================================== */

:root {
    --pr-blue: #0a2d4b;
    --pr-blue-dark: #051d31;
    --pr-yellow: #fcb004;
    --pr-yellow-light: #ffd45c;
    --pr-text: #687986;
    --pr-light: #f5f8fb;
    --pr-white: #ffffff;
}

.print-page {
    overflow: hidden;
}

/* Éléments communs */
.print-eyebrow,
.print-dark-eyebrow {
    display: inline-block;
    margin-bottom: 15px;
    color: var(--pr-yellow);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 1.2px;
    text-transform: uppercase;
}

.print-section-heading {
    max-width: 790px;
    margin: 0 auto 50px;
    text-align: center;
}

.print-section-heading > span {
    display: block;
    margin-bottom: 12px;
    color: var(--pr-yellow);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 1.2px;
    text-transform: uppercase;
}

.print-section-heading h2,
.print-intro h2,
.print-faq h2 {
    margin-bottom: 16px;
    color: var(--pr-blue);
    font-size: clamp(32px, 4vw, 48px);
    font-weight: 800;
    line-height: 1.16;
    letter-spacing: -1px;
}

.print-section-heading p {
    margin: 0;
    color: var(--pr-text);
    font-size: 15px;
    line-height: 1.8;
}

/* Boutons */
.print-btn-primary,
.print-btn-whatsapp,
.print-dark-btn,
.print-yellow-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    min-height: 53px;
    padding: 0 22px;
    font-size: 13px;
    font-weight: 800;
    text-decoration: none;
    border-radius: 11px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.print-btn-primary,
.print-yellow-btn {
    color: var(--pr-blue);
    background: linear-gradient(
        135deg,
        var(--pr-yellow-light),
        var(--pr-yellow)
    );
}

.print-btn-whatsapp {
    color: #ffffff;
    background: #159957;
}

.print-dark-btn {
    color: #ffffff;
    background: var(--pr-blue);
}

.print-btn-primary:hover,
.print-btn-whatsapp:hover,
.print-dark-btn:hover,
.print-yellow-btn:hover {
    color: inherit;
    color: #ffffff !important;
    transform: translateY(-3px);
    box-shadow: 0 15px 32px rgba(5, 29, 49, 0.24);
}

/* ==================================================
   HERO
================================================== */

.print-hero {
    position: relative;
    isolation: isolate;
    display: flex;
    align-items: center;
    min-height: 600px;
    padding: 125px 0 100px;
    color: #ffffff;
    background-position: center;
    background-size: cover;
}

.print-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -1;
    background:
        linear-gradient(
            90deg,
            rgba(5, 29, 49, 0.98) 0%,
            rgba(10, 45, 75, 0.91) 48%,
            rgba(10, 45, 75, 0.42) 100%
        ),
        linear-gradient(
            180deg,
            transparent 45%,
            rgba(5, 29, 49, 0.78) 100%
        );
}

.print-breadcrumb {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 9px;
    margin-bottom: 22px;
    font-size: 12px;
}

.print-breadcrumb a {
    color: rgba(255, 255, 255, 0.65);
    text-decoration: none;
}

.print-breadcrumb i {
    color: var(--pr-yellow);
    font-size: 9px;
}

.print-breadcrumb span {
    color: #ffffff;
}

.print-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 18px;
    padding: 9px 15px;
    color: var(--pr-yellow);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 1px;
    text-transform: uppercase;
    background: rgba(252, 176, 4, 0.1);
    border: 1px solid rgba(252, 176, 4, 0.4);
    border-radius: 50px;
}

.print-hero h1 {
    max-width: 900px;
    margin-bottom: 22px;
    color: #ffffff;
    font-size: clamp(42px, 6vw, 70px);
    font-weight: 850;
    line-height: 1.07;
    letter-spacing: -1.8px;
}

.print-hero h1 span {
    color: var(--pr-yellow);
}

.print-hero p {
    max-width: 720px;
    margin-bottom: 30px;
    color: rgba(255, 255, 255, 0.78);
    font-size: 17px;
    line-height: 1.75;
}

.print-hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

/* ==================================================
   INTRO
================================================== */

.print-intro {
    padding: 105px 0;
    background: #ffffff;
}

.print-title-line {
    width: 72px;
    height: 4px;
    margin-bottom: 23px;
    background: linear-gradient(
        90deg,
        var(--pr-yellow),
        var(--pr-yellow-light)
    );
    border-radius: 20px;
}

.print-intro p {
    color: var(--pr-text);
    font-size: 14px;
    line-height: 1.85;
}

.print-intro .print-lead {
    color: #354c5e;
    font-size: 17px;
}

.print-intro strong {
    color: var(--pr-blue);
}

.print-checks {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    margin: 27px 0;
}

.print-checks div {
    display: flex;
    align-items: center;
    gap: 9px;
    color: var(--pr-blue);
    font-size: 13px;
    font-weight: 700;
}

.print-checks i {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 25px;
    height: 25px;
    color: var(--pr-blue);
    background: var(--pr-yellow);
    border-radius: 50%;
}

/* Image */
.print-intro-image {
    position: relative;
    max-width: 590px;
    margin-left: auto;
    padding: 15px 15px 30px 30px;
}

.print-image-decoration {
    position: absolute;
    top: 0;
    right: 0;
    width: 78%;
    height: 85%;
    background: var(--pr-yellow);
    border-radius: 24px;
}

.print-intro-image img {
    position: relative;
    z-index: 2;
    display: block;
    width: 100%;
    height: 560px;
    object-fit: cover;
    border: 6px solid #ffffff;
    border-radius: 22px;
    box-shadow: 0 25px 60px rgba(10, 45, 75, 0.2);
}

.print-image-card {
    position: absolute;
    right: 0;
    bottom: 0;
    z-index: 3;
    display: flex;
    align-items: center;
    gap: 11px;
    padding: 15px 17px;
    color: #ffffff;
    background: rgba(10, 45, 75, 0.96);
    border: 1px solid rgba(252, 176, 4, 0.3);
    border-radius: 13px;
    box-shadow: 0 15px 35px rgba(10, 45, 75, 0.25);
}

.print-image-card > span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 41px;
    height: 41px;
    color: var(--pr-blue);
    background: var(--pr-yellow);
    border-radius: 10px;
}

.print-image-card div {
    display: flex;
    flex-direction: column;
}

.print-image-card strong {
    font-size: 13px;
}

.print-image-card small {
    color: rgba(255, 255, 255, 0.6);
}

/* ==================================================
   SERVICES
================================================== */

.print-services {
    padding: 105px 0;
    background: var(--pr-light);
}

.print-service-card {
    height: 100%;
    padding: 28px 24px;
    background: #ffffff;
    border: 1px solid rgba(10, 45, 75, 0.08);
    border-radius: 17px;
    box-shadow: 0 13px 35px rgba(10, 45, 75, 0.06);
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.print-service-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 53px;
    height: 53px;
    margin-bottom: 19px;
    color: var(--pr-blue);
    font-size: 21px;
    background: var(--pr-yellow);
    border-radius: 13px;
}

.print-service-card h3 {
    color: var(--pr-blue);
    font-size: 18px;
    font-weight: 800;
}

.print-service-card p,
.print-service-card li {
    color: var(--pr-text);
    font-size: 13px;
    line-height: 1.7;
}

.print-service-card ul {
    margin: 15px 0 0;
    padding-left: 18px;
}

.print-service-card li::marker {
    color: var(--pr-yellow);
}

.print-service-card:hover {
    transform: translateY(-7px);
    border-color: rgba(252, 176, 4, 0.5);
}

/* ==================================================
   MATÉRIAUX
================================================== */

.print-materials {
    padding: 105px 0;
    color: #ffffff;
    background:
        radial-gradient(
            circle at 85% 5%,
            rgba(252, 176, 4, 0.15),
            transparent 28%
        ),
        linear-gradient(135deg, #051d31, #0a2d4b);
}

.print-materials h2 {
    color: #ffffff;
    font-size: clamp(32px, 4vw, 47px);
    font-weight: 800;
}

.print-materials p {
    color: rgba(255, 255, 255, 0.68);
    font-size: 14px;
    line-height: 1.8;
}

.print-material-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
}

.print-material-card {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 22px 19px;
    background: rgba(255, 255, 255, 0.055);
    border: 1px solid rgba(255, 255, 255, 0.11);
    border-radius: 14px;
}

.print-material-card > span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 47px;
    height: 47px;
    flex: 0 0 47px;
    color: var(--pr-blue);
    font-size: 19px;
    background: var(--pr-yellow);
    border-radius: 11px;
}

.print-material-card h3 {
    margin-bottom: 5px;
    color: #ffffff;
    font-size: 16px;
    font-weight: 800;
}

.print-material-card p {
    margin: 0;
    font-size: 12px;
    line-height: 1.65;
}

/* ==================================================
   FINITIONS
================================================== */

.print-finishes {
    padding: 105px 0;
    background: #ffffff;
}

.print-finish-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
}

.print-finish-card {
    padding: 24px 20px;
    background: var(--pr-light);
    border: 1px solid rgba(10, 45, 75, 0.07);
    border-radius: 15px;
}

.print-finish-card i {
    color: var(--pr-yellow);
    font-size: 22px;
}

.print-finish-card h3 {
    margin: 12px 0 6px;
    color: var(--pr-blue);
    font-size: 17px;
    font-weight: 800;
}

.print-finish-card p {
    margin: 0;
    color: var(--pr-text);
    font-size: 13px;
    line-height: 1.65;
}

/* ==================================================
   FICHIERS ET PROCESSUS
================================================== */

.print-files {
    padding: 105px 0;
    background: var(--pr-light);
}

.print-process {
    padding: 105px 0;
    background: #ffffff;
}

.print-file-card,
.print-process-card {
    position: relative;
    height: 100%;
    padding: 28px 23px;
    background: #ffffff;
    border: 1px solid rgba(10, 45, 75, 0.08);
    border-radius: 16px;
}

.print-process-card {
    background: var(--pr-light);
}

.print-file-card > strong,
.print-process-card > strong {
    position: absolute;
    top: 18px;
    right: 20px;
    color: rgba(10, 45, 75, 0.09);
    font-size: 32px;
    font-weight: 900;
}

.print-file-card > span,
.print-process-card > span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 51px;
    height: 51px;
    margin-bottom: 19px;
    color: var(--pr-blue);
    font-size: 20px;
    background: var(--pr-yellow);
    border-radius: 12px;
}

.print-file-card h3,
.print-process-card h3 {
    color: var(--pr-blue);
    font-size: 17px;
    font-weight: 800;
}

.print-file-card p,
.print-process-card p {
    margin: 0;
    color: var(--pr-text);
    font-size: 13px;
    line-height: 1.7;
}

/* ==================================================
   SECTEURS
================================================== */

.print-sectors {
    padding: 105px 0;
    background: #ffffff;
}

.print-sector-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 14px;
}

.print-sector-grid div {
    display: flex;
    align-items: center;
    gap: 12px;
    min-height: 70px;
    padding: 17px 18px;
    color: var(--pr-blue);
    font-size: 14px;
    font-weight: 750;
    background: var(--pr-light);
    border: 1px solid rgba(10, 45, 75, 0.07);
    border-radius: 13px;
}

.print-sector-grid i {
    color: var(--pr-yellow);
    font-size: 20px;
}

/* ==================================================
   INFORMATION
================================================== */

.print-information {
    padding: 10px 0 105px;
    background: #ffffff;
}

.print-information-box {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 32px;
    background: rgba(252, 176, 4, 0.09);
    border: 1px solid rgba(252, 176, 4, 0.3);
    border-radius: 18px;
}

.print-information-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    flex: 0 0 56px;
    color: var(--pr-yellow);
    font-size: 22px;
    background: var(--pr-blue);
    border-radius: 13px;
}

.print-information-small {
    color: var(--pr-yellow);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.print-information h2 {
    margin: 5px 0 10px;
    color: var(--pr-blue);
    font-size: clamp(25px, 3vw, 35px);
    font-weight: 800;
}

.print-information p {
    margin: 0;
    color: var(--pr-text);
    font-size: 13px;
    line-height: 1.75;
}

/* ==================================================
   ZONES
================================================== */

.print-zones {
    padding: 105px 0;
    background: var(--pr-light);
}

.print-zones-box {
    padding: 55px;
    color: #ffffff;
    background:
        radial-gradient(
            circle at 88% 5%,
            rgba(252, 176, 4, 0.16),
            transparent 30%
        ),
        linear-gradient(135deg, #051d31, #0a2d4b);
    border: 1px solid rgba(252, 176, 4, 0.3);
    border-radius: 23px;
    box-shadow: 0 25px 60px rgba(10, 45, 75, 0.18);
}

.print-zones h2 {
    color: #ffffff;
    font-size: clamp(31px, 4vw, 45px);
    font-weight: 800;
}

.print-zones p {
    color: rgba(255, 255, 255, 0.67);
    font-size: 14px;
    line-height: 1.8;
}

.print-zones strong {
    color: #ffffff;
}

.print-city-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 13px;
}

.print-city {
    display: flex;
    align-items: center;
    gap: 11px;
    min-height: 75px;
    padding: 16px 18px;
    background: rgba(255, 255, 255, 0.065);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 13px;
}

.print-city i {
    color: var(--pr-yellow);
    font-size: 19px;
}

.print-city span {
    display: flex;
    flex-direction: column;
}

.print-city small {
    color: rgba(255, 255, 255, 0.52);
}

.print-city-main,
.print-city-morocco {
    background: rgba(252, 176, 4, 0.12);
    border-color: rgba(252, 176, 4, 0.32);
}

/* ==================================================
   FAQ
================================================== */

.print-faq {
    padding: 105px 0;
    background: #ffffff;
}

.print-faq p {
    color: var(--pr-text);
    font-size: 14px;
    line-height: 1.8;
}

.print-accordion .accordion-item {
    margin-bottom: 12px;
    overflow: hidden;
    border: 1px solid rgba(10, 45, 75, 0.09);
    border-radius: 13px;
}

.print-accordion .accordion-button {
    padding: 19px 21px;
    color: var(--pr-blue);
    font-size: 14px;
    font-weight: 750;
    background: #ffffff;
    box-shadow: none;
}

.print-accordion .accordion-button:not(.collapsed) {
    background: rgba(252, 176, 4, 0.11);
}

.print-accordion .accordion-body {
    color: var(--pr-text);
    font-size: 13px;
    line-height: 1.75;
}

/* ==================================================
   CTA FINAL
================================================== */

.print-final {
    padding: 0 0 105px;
    background: #ffffff;
}

.print-final-box {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 35px;
    padding: 38px 40px;
    background: linear-gradient(
        135deg,
        var(--pr-yellow),
        #e49b00
    );
    border-radius: 21px;
    box-shadow: 0 22px 50px rgba(10, 45, 75, 0.17);
}

.print-final-box > div:first-child > span {
    color: rgba(5, 29, 49, 0.7);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 1.1px;
    text-transform: uppercase;
}

.print-final h2 {
    margin: 5px 0 7px;
    color: var(--pr-blue-dark);
    font-size: clamp(24px, 3vw, 34px);
    font-weight: 800;
}

.print-final p {
    margin: 0;
    color: rgba(5, 29, 49, 0.72);
    font-size: 13px;
}

.print-final-actions {
    display: flex;
    flex-shrink: 0;
    gap: 10px;
}

.print-final-primary,
.print-final-call {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    min-height: 52px;
    padding: 0 19px;
    color: #ffffff;
    font-size: 12px;
    font-weight: 800;
    text-decoration: none;
    border-radius: 10px;
}

.print-final-primary {
    background: var(--pr-blue);
}

.print-final-call {
    color: var(--pr-blue);
    background: #ffffff;
}

/* ==================================================
   RESPONSIVE
================================================== */

@media (max-width: 991.98px) {
    .print-intro,
    .print-services,
    .print-materials,
    .print-finishes,
    .print-files,
    .print-sectors,
    .print-process,
    .print-zones,
    .print-faq {
        padding: 80px 0;
    }

    .print-intro-image {
        margin: 25px auto 0;
    }

    .print-material-grid {
        margin-top: 25px;
    }

    .print-finish-grid,
    .print-sector-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .print-zones-box {
        padding: 40px 30px;
    }

    .print-final-box {
        align-items: flex-start;
        flex-direction: column;
    }
}

@media (max-width: 575.98px) {
    .print-hero {
        min-height: 550px;
        padding: 90px 0 70px;
    }

    .print-hero h1 {
        font-size: 39px;
    }

    .print-hero-actions {
        flex-direction: column;
    }

    .print-btn-primary,
    .print-btn-whatsapp {
        width: 100%;
    }

    .print-intro,
    .print-services,
    .print-materials,
    .print-finishes,
    .print-files,
    .print-sectors,
    .print-process,
    .print-zones,
    .print-faq {
        padding: 65px 0;
    }

    .print-checks,
    .print-material-grid,
    .print-finish-grid,
    .print-sector-grid,
    .print-city-grid {
        grid-template-columns: 1fr;
    }

    .print-intro-image {
        padding: 10px 10px 25px 17px;
    }

    .print-intro-image img {
        height: 430px;
    }

    .print-information {
        padding-bottom: 65px;
    }

    .print-information-box {
        flex-direction: column;
        padding: 25px 20px;
    }

    .print-zones-box {
        padding: 32px 20px;
        border-radius: 18px;
    }

    .print-final {
        padding-bottom: 65px;
    }

    .print-final-box {
        padding: 28px 20px;
    }

    .print-final-actions {
        width: 100%;
        flex-direction: column;
    }

    .print-final-primary,
    .print-final-call {
        width: 100%;
    }
}

.alupub-video-wrapper {
    position: relative;
    overflow: hidden;
}

.alupub-main-video {
    display: block;
    width: 100%;
    height: 100%;
    min-height: 520px;
    object-fit: cover;
    object-position: center;
    border-radius: inherit;
}

.alupub-sound-button {
    position: absolute;
    top: 20px;
    right: 20px;
    z-index: 10;

    display: flex;
    align-items: center;
    gap: 9px;

    padding: 11px 17px;
    border: 1px solid rgba(255, 255, 255, 0.35);
    border-radius: 50px;

    color: #ffffff;
    background: rgba(15, 23, 42, 0.82);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);

    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: 0.3s ease;
}

.alupub-sound-button:hover {
    background: #dc2626;
    transform: translateY(-2px);
}

.alupub-sound-button i {
    font-size: 19px;
}

.alupub-sound-button.sound-active {
    background: #dc2626;
}

.alupub-image-card,
.alupub-image-label {
    z-index: 4;
}

@media (max-width: 991.98px) {
    .alupub-main-video {
        min-height: 420px;
    }
}

@media (max-width: 575.98px) {
    .alupub-main-video {
        min-height: 340px;
    }

    .alupub-sound-button {
        top: 14px;
        right: 14px;
        padding: 9px 13px;
        font-size: 12px;
    }
}