/* ══════════════════════════════════════════════
       GLOBAL RESET & BASE
    ══════════════════════════════════════════════ */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

img {
    display: block;
    max-width: 100%;
    height: auto;
    border: 0;
}

body {
    font-family: 'DM Sans', sans-serif;
    background: #FDF8F3;
    color: #2C2C2C;
    line-height: 1.5;
    overflow-x: hidden;
}

body::before {
    content: "";
    position: fixed;
    inset: 0;
    background-image: linear-gradient(to right, rgba(154, 23, 80, 0.03) 1px, transparent 1px),
        linear-gradient(to bottom, rgba(154, 23, 80, 0.03) 1px, transparent 1px);
    background-size: 48px 48px;
    pointer-events: none;
    z-index: 0;
}

/* ══════════════════════════════════════════════
       VARIABLES
    ══════════════════════════════════════════════ */
:root {
    /* Palette principale */
    --primary: #9A1750;
    /* bordeaux */
    --primary-light: #BD2169;
    --accent: #E8A735;
    /* doré */
    --accent-light: #F4C966;

    --dark-bg: #1A000A;
    --dark-bg2: #220010;
    --dark-bg3: #2E0015;

    --light-bg: #FDF8F3;
    --white: #FFFFFF;
    --text-dark: #2C2C2C;
    --text-muted: #5E5E5E;
    --text-light: #FDF8F3;

    /* Dégradés */
    --gradient-primary: linear-gradient(140deg, #9A1750, #BD2169);
    --gradient-accent: linear-gradient(135deg, #E8A735, #F4C966);
    --gradient-dark: linear-gradient(135deg, rgba(26, 0, 10, 0.97) 0%, rgba(46, 0, 21, 0.98) 100%);

    /* Ombre générale */
    --radius: 24px;
}

/* ══════════════════════════════════════════════
       HEADER / NAV
    ══════════════════════════════════════════════ */
#header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(253, 248, 243, 0.97);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    z-index: 1000;
    border-bottom: 1px solid rgba(154, 23, 80, 0.08);
}

.header__container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1440px;
    margin: 0 auto;
    padding: 14px 32px;
}

.header__logo {
    width: 170px;
    flex-shrink: 0;
    text-decoration: none;
}

.header__nav__menu {
    display: flex;
    gap: 28px;
    list-style: none;
    align-items: center;
}

.header-link {
    font-weight: 500;
    color: var(--text-dark);
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.2s;
    position: relative;
    cursor: pointer;
    background: none;
    border: none;
    font-family: inherit;
    padding: 0;
}

.header-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-primary);
    transition: width 0.3s ease;
    border-radius: 2px;
}

.header-link:hover {
    color: var(--primary);
}

.header-link:hover::after {
    width: 100%;
}

.menu-item-has-children {
    position: relative;
    display: flex;
    align-items: center;
    gap: 4px;
}

.submenu {
    position: absolute;
    top: calc(100% + 10px);
    left: -16px;
    background: #fff;
    min-width: 260px;
    border-radius: 20px;
    box-shadow: 0 20px 35px rgba(0, 0, 0, 0.08);
    opacity: 0;
    visibility: hidden;
    transform: translateY(12px);
    transition: all 0.25s ease;
    padding: 18px 12px;
    list-style: none;
    border: 1px solid rgba(154, 23, 80, 0.1);
}

.menu-item-has-children:hover>.submenu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.submenu__bloc {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    color: var(--text-dark);
    font-size: 0.85rem;
    padding: 10px 12px;
    transition: 0.2s;
    border-radius: 12px;
    font-weight: 500;
}

.submenu__bloc:hover {
    color: var(--primary);
    background: rgba(154, 23, 80, 0.05);
}

.submenu__bloc span {
    font-size: 1.1rem;
}

.header__right-side {
    display: flex;
    align-items: center;
    gap: 24px;
}

.header__actions {
    display: flex;
    align-items: center;
    gap: 20px;
    list-style: none;
}

.header__actions--mobile {
    display: none;
}

.btn {
    border-radius: 50px;
    background: var(--gradient-accent);
    padding: 10px 24px;
    font-weight: 600;
    color: var(--dark-bg);
    text-decoration: none;
    transition: 0.3s;
    font-size: 0.85rem;
    border: none;
    cursor: pointer;
    white-space: nowrap;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(232, 167, 53, 0.4);
    color: var(--dark-bg);
}

.link.--calendar {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
    font-size: 0.85rem;
    text-decoration: none;
    color: var(--text-dark);
    transition: color 0.2s;
    cursor: pointer;
    background: none;
    border: none;
    font-family: inherit;
}

.link.--calendar:hover {
    color: var(--primary);
}

.burger {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    z-index: 1200;
    padding: 5px;
    width: 40px;
    height: 40px;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    transition: background 0.2s;
}

.burger:hover {
    background: rgba(154, 23, 80, 0.06);
}

.burger__bars {
    display: flex;
    flex-direction: column;
    gap: 5px;
    width: 24px;
}

.burger__bars span {
    display: block;
    width: 100%;
    height: 2px;
    background: var(--text-dark);
    transition: 0.3s;
    border-radius: 2px;
}

.menu-overlay {
    position: fixed;
    inset: 0;
    background: rgba(93, 0, 30, 0.35);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease;
    z-index: 998;
}

.menu-overlay.active {
    opacity: 1;
    visibility: visible;
}

@media (max-width: 1024px) {
    .header__container {
        padding: 12px 20px;
    }

    .header__actions--desktop {
        display: none;
    }

    .burger {
        display: flex;
    }

    .header__menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 85%;
        max-width: 380px;
        height: 100vh;
        height: 100dvh;
        background: var(--light-bg);
        padding: 50px 24px 32px;
        display: flex;
        flex-direction: column;
        transition: 0.45s cubic-bezier(0.16, 1, 0.3, 1);
        box-shadow: -10px 0 40px rgba(0, 0, 0, 0.08);
        z-index: 999;
        overflow-y: auto;
    }

    .header__menu.active {
        right: 0;
    }

    .header__nav__menu {
        flex-direction: column;
        gap: 0;
        align-items: stretch;
    }

    .header__nav__menu>li {
        opacity: 0;
        transform: translateX(20px);
        transition: all 0.35s ease;
    }

    .header__menu.active .header__nav__menu>li {
        opacity: 1;
        transform: translateX(0);
    }

    .header__menu.active .header__nav__menu>li:nth-child(1) {
        transition-delay: 0.05s;
    }

    .header__menu.active .header__nav__menu>li:nth-child(2) {
        transition-delay: 0.1s;
    }

    .header__menu.active .header__nav__menu>li:nth-child(3) {
        transition-delay: 0.15s;
    }

    .header__menu.active .header__nav__menu>li:nth-child(4) {
        transition-delay: 0.2s;
    }

    .header__menu.active .header__nav__menu>li:nth-child(5) {
        transition-delay: 0.25s;
    }

    .header__menu.active .header__nav__menu>li:nth-child(6) {
        transition-delay: 0.3s;
    }

    .menu-item-has-children {
        flex-direction: column;
        align-items: flex-start;
        border-bottom: 1px solid rgba(154, 23, 80, 0.15);
    }

    .menu-item-has-children .header-link {
        width: 100%;
        padding: 16px 0;
        font-size: 1.15rem;
        font-weight: 600;
        border: none;
        display: flex;
        align-items: center;
        justify-content: space-between;
    }

    .dropdown-icon {
        transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
        padding: 8px;
        margin: -8px;
    }

    .active-mobile .dropdown-icon {
        transform: rotate(180deg);
    }

    .submenu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        max-height: 0;
        overflow: hidden;
        padding: 0;
        border: none;
        box-shadow: none;
        background: rgba(154, 23, 80, 0.03);
        width: 100%;
        transition: max-height 0.4s cubic-bezier(0.16, 1, 0.3, 1), padding 0.3s ease;
        border-radius: 16px;
        margin-bottom: 8px;
    }

    .active-mobile .submenu {
        max-height: 500px;
        padding: 12px;
    }

    .submenu__bloc {
        padding: 12px;
        font-size: 0.95rem;
    }

    .header__nav__menu>li:not(.menu-item-has-children) {
        border-bottom: 1px solid rgba(154, 23, 80, 0.15);
    }

    .header__nav__menu>li:not(.menu-item-has-children) .header-link {
        padding: 16px 0;
        font-size: 1.15rem;
        font-weight: 600;
        display: block;
    }

    .header__actions--mobile {
        display: flex;
        margin-top: auto;
        flex-direction: column;
        width: 100%;
        gap: 12px;
        padding-top: 24px;
        opacity: 0;
        transform: translateY(20px);
        transition: all 0.4s ease 0.3s;
    }

    .header__menu.active .header__actions--mobile {
        opacity: 1;
        transform: translateY(0);
    }

    .header__actions--mobile li {
        width: 100%;
    }

    .header__actions--mobile .btn {
        width: 100%;
        text-align: center;
        padding: 16px;
        font-size: 1rem;
    }

    .header__actions--mobile .link.--calendar {
        background: rgba(154, 23, 80, 0.05);
        padding: 16px;
        border-radius: 50px;
        justify-content: center;
        font-size: 1rem;
        width: 100%;
    }

    .burger.active .burger__bars span:nth-child(1) {
        transform: translateY(7px) rotate(45deg);
    }

    .burger.active .burger__bars span:nth-child(2) {
        opacity: 0;
    }

    .burger.active .burger__bars span:nth-child(3) {
        transform: translateY(-7px) rotate(-45deg);
    }
}

/* ══════════════════════════════════════════════
       HERO / INTRO
    ══════════════════════════════════════════════ */
.intro {
    padding: 160px 20px 80px;
    text-align: center;
    position: relative;
    z-index: 1;
}

.intro__title {
    font-size: clamp(2.5rem, 7vw, 4.5rem);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 20px;
}

.intro__title strong {
    position: relative;
    display: inline-block;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
}

.intro__title strong::before {
    content: '';
    position: absolute;
    inset: -4px -10px;
    background: linear-gradient(140deg, var(--primary), var(--primary-light));
    border-radius: 6px;
    transform: scaleX(0);
    transform-origin: left center;
    animation: heroHighlight 2s cubic-bezier(0.16, 1, 0.3, 1) forwards;
    animation-delay: 0.5s;
    z-index: -1;
}

.intro__title strong::after {
    content: attr(data-text);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    color: #fff;
    -webkit-text-fill-color: #ffffff;
    background: none;
    clip-path: inset(0 100% 0 0);
    animation: heroTextReveal 2s cubic-bezier(0.16, 1, 0.3, 1) forwards;
    animation-delay: 0.5s;
    pointer-events: none;
    white-space: nowrap;
}

@keyframes heroHighlight {
    0% {
        transform: scaleX(0);
        opacity: 0;
    }

    15% {
        opacity: 1;
    }

    50% {
        transform: scaleX(1);
        opacity: 1;
    }

    85% {
        transform: scaleX(1);
        opacity: 1;
    }

    100% {
        transform: scaleX(1);
        opacity: 0;
    }
}

@keyframes heroTextReveal {
    0% {
        clip-path: inset(0 100% 0 0);
        opacity: 0;
    }

    15% {
        opacity: 1;
    }

    50% {
        clip-path: inset(0 0% 0 0);
    }

    85% {
        clip-path: inset(0 0% 0 0);
        opacity: 1;
    }

    100% {
        clip-path: inset(0 0% 0 0);
        opacity: 0;
    }
}

.intro__title strong::selection {
    background: linear-gradient(140deg, var(--primary), var(--primary-light));
    -webkit-text-fill-color: var(--accent);
}

.intro__content {
    max-width: 600px;
    margin: 0 auto 40px;
    font-size: 1.1rem;
}

.edito-partners {
    padding: 40px 0 100px;
    overflow: hidden;
    mask-image: linear-gradient(to right, transparent, black 8%, black 92%, transparent);
    -webkit-mask-image: linear-gradient(to right, transparent, black 8%, black 92%, transparent);
    position: relative;
    z-index: 1;
}

.marquee-track {
    display: flex;
    gap: 80px;
    width: max-content;
    animation: marquee-scroll 25s linear infinite;
    will-change: transform;
}

.marquee-item {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 45px;
    transition: opacity 0.3s, filter 0.3s;
}

.marquee-item img {
    max-height: 45px;
    width: auto;
    display: block;
}

@keyframes marquee-scroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-33.333%);
    }
}

/* ══════════════════════════════════════════════
       SECTION: OUR SERVICES (index6)
    ══════════════════════════════════════════════ */
#services-section {
    background: var(--light-bg);
    padding: clamp(4rem, 8vw, 7rem) 0;
    position: relative;
    z-index: 1;
}

.c-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    width: 100%;
}

.services-main-title {
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 700;
    letter-spacing: -0.02em;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
    font-family: 'DM Sans', sans-serif;
}

.services-hr {
    margin-bottom: 3rem;
    border: none;
    height: 1px;
    background: linear-gradient(90deg, var(--accent) 0%, rgba(232, 167, 53, 0) 100%);
}

.services-grid {
    display: flex;
    gap: 3rem;
    flex-wrap: wrap;
}

.services-list {
    flex: 1.2;
    min-width: 280px;
}

.media-sticky {
    flex: 0.9;
    position: relative;
}

@media(max-width:1024px) {
    .services-grid {
        flex-direction: column;
    }

    .media-sticky {
        display: none;
    }
}

.service-card {
    padding: 1.8rem 0 1.8rem 2rem;
    border-left: 3px solid transparent;
    transition: all 0.35s cubic-bezier(0.2, 0.9, 0.4, 1.1);
    margin-bottom: 0.5rem;
}

.service-card.active-card {
    border-left-color: var(--primary);
    background: rgba(154, 23, 80, 0.03);
    transform: translateX(6px);
}

.service-card h3 {
    font-size: clamp(1.5rem, 2.5vw, 2rem);
    font-weight: 700;
    margin-bottom: 1rem;
    font-family: 'DM Sans', sans-serif;
    color: var(--text-dark);
}

.pill-group {
    display: flex;
    flex-wrap: wrap;
    gap: 0.6rem;
    margin: 1rem 0;
}

.pill {
    background: rgba(154, 23, 80, 0.06);
    border-radius: 100px;
    padding: 0.35rem 1rem;
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--text-dark);
    text-decoration: none;
    transition: 0.2s;
}

.pill:hover {
    background: var(--primary);
    color: white;
}

.service-desc {
    color: var(--text-muted);
    line-height: 1.55;
    font-size: 1rem;
    margin: 1.2rem 0 1.5rem;
}

.btn-outline {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    background: transparent;
    border: 1.5px solid var(--primary);
    border-radius: 100px;
    padding: 0.6rem 1.6rem;
    font-weight: 600;
    font-size: 0.85rem;
    text-decoration: none;
    color: var(--primary);
    transition: 0.25s;
}

.btn-outline svg {
    width: 18px;
    height: 18px;
    transition: transform 0.2s;
}

.btn-outline:hover {
    background: var(--primary);
    color: white;
    gap: 0.9rem;
}

.btn-outline:hover svg {
    transform: translateX(4px);
    stroke: white;
}

.mobile-img-svc {
    display: none;
    width: 100%;
    border-radius: 24px;
    margin-top: 1.5rem;
    aspect-ratio: 16/9;
    object-fit: cover;
    box-shadow: 0 10px 25px -10px rgba(0, 0, 0, 0.1);
}

@media(max-width:1024px) {
    .mobile-img-svc {
        display: block;
    }
}

.sticky-media-container {
    position: sticky;
    top: 120px;
    background: var(--accent-light);
    border-radius: 32px;
    overflow: hidden;
    aspect-ratio: 4/3;
    box-shadow: 0 25px 35px -12px rgba(0, 0, 0, 0.2);
}

.media-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.5s cubic-bezier(0.23, 1, 0.32, 1);
    will-change: opacity;
}

.media-slide.active {
    opacity: 1;
    z-index: 2;
}

.media-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.media-slide.active img {
    transform: scale(1.02);
}

/* bottom tabs */
.sticky-tabs-panel {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(253, 248, 243, 0.97);
    backdrop-filter: blur(16px);
    border-top: 1px solid rgba(0, 0, 0, 0.08);
    box-shadow: 0 -8px 25px rgba(0, 0, 0, 0.03);
    transform: translateY(100%);
    transition: transform 0.4s cubic-bezier(0.2, 0.96, 0.4, 1);
    z-index: 1000;
}

@media(max-width:1024px) {
    .sticky-tabs-panel {
        display: none !important;
    }
}

.sticky-tabs-panel.visible {
    transform: translateY(0);
}

.progress-wrapper {
    width: 100%;
    height: 3px;
    background: rgba(232, 167, 53, 0.3);
    position: relative;
}

.progress-fill {
    width: 0%;
    height: 100%;
    background: var(--primary);
    transition: width 0.08s linear;
}

.tabs-row {
    display: flex;
    justify-content: space-between;
    align-items: stretch;
    padding: 0.6rem 1.5rem;
    gap: 0.25rem;
    flex-wrap: nowrap;
    overflow-x: auto;
}

.tab-bottom {
    flex: 1;
    background: transparent;
    border: none;
    padding: 0.9rem 0.2rem;
    font-size: 0.85rem;
    font-weight: 500;
    text-align: center;
    color: var(--text-muted);
    cursor: pointer;
    border-radius: 40px;
    transition: all 0.2s ease;
    white-space: nowrap;
    font-family: 'DM Sans', sans-serif;
}

.tab-bottom.active {
    color: var(--primary);
    font-weight: 700;
    transform: scale(1.02);
}

/* ══════════════════════════════════════════════
       SECTION: POURQUOI CHOISIR (index5)
    ══════════════════════════════════════════════ */
#pourquoi-section {
    position: relative;
    width: 100%;
    overflow: visible;
    z-index: 1;
    background: var(--gradient-dark);
}

.pq-container {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
}

.pq-row {
    display: flex;
    align-items: flex-start;
    position: relative;
}

.photo-col {
    flex: 0 0 28%;
    max-width: 320px;
    position: relative;
    margin-top: -80px;
    z-index: 10;
    display: block;
}

.photo-wrapper {
    position: relative;
    overflow: hidden;
    box-shadow: 15px 0 40px rgba(0, 0, 0, 0.4);
    border-bottom: 4px solid var(--accent);
}

.photo-col img {
    width: 100%;
    height: auto;
    display: block;
    animation: photoReveal 1.2s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
    animation-delay: 0.2s;
    opacity: 0;
    transform: scale(1.1);
    transition: transform 6s ease;
}

@keyframes photoReveal {
    0% {
        opacity: 0;
        transform: scale(1.15) translateY(20px);
        filter: brightness(0.6) contrast(1.1);
    }

    100% {
        opacity: 1;
        transform: scale(1) translateY(0);
        filter: brightness(1) contrast(1);
    }
}

.photo-wrapper:hover img {
    transform: scale(1.05);
}

.content-col {
    flex: 1;
    padding: 40px 50px 40px 60px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.pq-title {
    font-size: 34px;
    font-weight: 300;
    color: #fff;
    margin-bottom: 50px;
    margin-top: 10px;
    line-height: 1.4;
    letter-spacing: 0.3px;
    animation: titleSlide 0.9s ease-out forwards;
    animation-delay: 0.4s;
    opacity: 0;
    transform: translateY(25px);
}

@keyframes titleSlide {
    0% {
        opacity: 0;
        transform: translateY(25px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.pq-title .highlight {
    background-color: var(--accent);
    color: var(--dark-bg);
    padding: 3px 14px;
    font-weight: 600;
    display: inline-block;
    position: relative;
    animation: highlightPulse 2.5s ease-in-out infinite;
    animation-delay: 1.2s;
}

@keyframes highlightPulse {

    0%,
    100% {
        box-shadow: 0 0 0 0 rgba(232, 167, 53, 0.5);
    }

    50% {
        box-shadow: 0 0 0 12px rgba(232, 167, 53, 0);
    }
}

.features-grid {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -20px;
}

.feature-item {
    flex: 0 0 33.333%;
    max-width: 33.333%;
    padding: 0 20px;
    margin-bottom: 40px;
    text-align: center;
    opacity: 0;
    transform: translateY(30px);
    animation: featureFadeUp 0.7s ease-out forwards;
}

.feature-item:nth-child(1) {
    animation-delay: 0.6s;
}

.feature-item:nth-child(2) {
    animation-delay: 0.75s;
}

.feature-item:nth-child(3) {
    animation-delay: 0.9s;
}

.feature-item:nth-child(4) {
    animation-delay: 1.05s;
}

.feature-item:nth-child(5) {
    animation-delay: 1.2s;
}

.feature-item:nth-child(6) {
    animation-delay: 1.35s;
}

@keyframes featureFadeUp {
    0% {
        opacity: 0;
        transform: translateY(30px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.feature-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 20px;
    position: relative;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    animation: iconFloat 3s ease-in-out infinite;
}

.feature-icon svg {
    width: 100%;
    height: 100%;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
}

.feature-item:hover .feature-icon {
    transform: translateY(-8px) scale(1.15);
}

@keyframes iconFloat {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-5px);
    }
}

.feature-text {
    font-size: 14.5px;
    line-height: 1.65;
    color: rgba(255, 255, 255, 0.92);
    font-weight: 400;
    max-width: 230px;
    margin: 0 auto;
    transition: color 0.3s ease;
}

.feature-item:hover .feature-text {
    color: #fff;
}

@media(max-width:991px) {
    .pq-row {
        flex-direction: column;
        align-items: center;
    }

    .photo-col {
        flex: 0 0 auto;
        max-width: 280px;
        margin-top: -60px;
        margin-bottom: 30px;
    }

    .content-col {
        flex: 0 0 100%;
        max-width: 100%;
        padding: 20px 30px 40px;
    }

    .feature-item {
        flex: 0 0 50%;
        max-width: 50%;
        margin-bottom: 35px;
    }

    .pq-title {
        text-align: center;
        font-size: 28px;
        margin-bottom: 40px;
    }
}

@media(max-width:576px) {
    .photo-col {
        max-width: 220px;
        margin-top: -40px;
    }

    .content-col {
        padding: 15px 20px 30px;
    }

    .feature-item {
        flex: 0 0 100%;
        max-width: 100%;
        margin-bottom: 30px;
    }

    .pq-title {
        font-size: 24px;
        margin-bottom: 30px;
    }

    .feature-icon {
        width: 50px;
        height: 50px;
    }

    .feature-text {
        font-size: 13.5px;
    }
}

/* ══════════════════════════════════════════════
       SECTION: OPTIMISATION CONVERSIONS (index4)
    ══════════════════════════════════════════════ */
#features-section {
    position: relative;
    background: var(--light-bg);
    padding: 100px 0 80px;
    overflow: hidden;
    z-index: 1;
}

.padding-global {
    padding-left: 5%;
    padding-right: 5%;
}

.container-large {
    width: 100%;
    max-width: 80rem;
    margin-left: auto;
    margin-right: auto;
}

.features_component {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
}

.grid-dot-features {
    position: absolute;
    top: -40px;
    right: -60px;
    width: 200px;
    height: 200px;
    opacity: 0.6;
    pointer-events: none;
    z-index: 0;
}

.features-component-left {
    position: relative;
    z-index: 2;
    opacity: 0;
    transform: translateY(40px);
    animation: fadeInUp 1s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.heading-style-h3 {
    font-family: 'DM Sans', sans-serif;
    font-size: 2.7rem;
    font-weight: 700;
    line-height: 1.2;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
}

.span-green {
    background-color: var(--accent);
    padding: 0 8px;
    border-radius: 4px;
    display: inline;
    color: var(--dark-bg);
}

.text-rich-text {
    font-family: 'DM Sans', sans-serif;
    font-size: 1.125rem;
    line-height: 1.8rem;
    color: var(--text-muted);
}

.text-rich-text p {
    margin-bottom: 1.5rem;
    line-height: 1.8;
    font-weight: 400;
}

.text-rich-text ul {
    list-style: none;
    padding-left: 0;
    margin-top: 1rem;
}

.text-rich-text li {
    position: relative;
    padding-left: 1.75rem;
    padding-top: 0.25rem;
    padding-bottom: 0.75rem;
    line-height: 1.5rem;
    font-size: 1rem;
    color: var(--text-muted);
    opacity: 0;
    transform: translateX(-20px);
    animation: slideInLeft 0.6s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.text-rich-text li:nth-child(1) {
    animation-delay: 0.3s;
}

.text-rich-text li:nth-child(2) {
    animation-delay: 0.45s;
}

.text-rich-text li:nth-child(3) {
    animation-delay: 0.6s;
}

.text-rich-text li:nth-child(4) {
    animation-delay: 0.75s;
}

.text-rich-text li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.6rem;
    width: 1.25rem;
    height: 1.25rem;
    background-image: url("data:image/svg+xml,%3Csvg width='20' height='20' viewBox='0 0 20 20' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='10' cy='10' r='8' fill='%239A1750'/%3E%3Cpath d='M6 10L8.5 12.5L14 7' stroke='white' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    background-size: contain;
    background-repeat: no-repeat;
}

.text-rich-text li strong {
    color: var(--text-dark);
    font-weight: 600;
}

.features-component-right {
    position: relative;
    z-index: 2;
    opacity: 0;
    transform: translateY(40px) scale(0.95);
    animation: fadeInUpScale 1.2s cubic-bezier(0.16, 1, 0.3, 1) 0.2s forwards;
}

.image-frame-wrapper {
    position: relative;
    width: 100%;
    max-width: 540px;
    margin-left: auto;
}

.blue-frame {
    background-color: var(--primary);
    border-radius: 20px;
    padding: 24px;
    position: relative;
    overflow: visible;
    box-shadow: 0 20px 60px rgba(154, 23, 80, 0.15);
}

.main-image {
    width: 100%;
    border-radius: 12px;
    display: block;
    object-fit: cover;
}

.floating-element {
    position: absolute;
    z-index: 10;
    animation: floatEl 6s ease-in-out infinite;
}

.floating-arrow {
    top: -20px;
    left: -30px;
    width: 60px;
    height: 60px;
    background-color: var(--accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 24px rgba(232, 167, 53, 0.4);
    animation-delay: 0s;
}

.floating-arrow svg {
    width: 24px;
    height: 24px;
    transform: rotate(-45deg);
}

.floating-card {
    top: 20px;
    right: -30px;
    background: white;
    border-radius: 12px;
    padding: 14px 18px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
    animation-delay: 1s;
    min-width: 140px;
}

.floating-card .number {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-dark);
    line-height: 1;
    margin-bottom: 4px;
}

.floating-card .label {
    font-size: 0.75rem;
    color: var(--text-muted);
    font-weight: 500;
}

.floating-button {
    top: 50%;
    right: -40px;
    background: white;
    border-radius: 10px;
    padding: 10px 16px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
    animation-delay: 2s;
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.floating-button:hover {
    transform: translateY(-2px) scale(1.05);
}

.floating-button .icon {
    width: 28px;
    height: 28px;
    background-color: var(--primary);
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.floating-button .icon svg {
    width: 16px;
    height: 16px;
}

.floating-button .text {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-dark);
    white-space: nowrap;
}

.floating-chart {
    bottom: -20px;
    left: 20px;
    background: white;
    border-radius: 12px;
    padding: 16px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    animation-delay: 0.5s;
    width: 160px;
}

.chart-bars {
    display: flex;
    align-items: flex-end;
    gap: 6px;
    height: 60px;
}

.chart-bar {
    flex: 1;
    border-radius: 4px 4px 0 0;
    background-color: rgba(154, 23, 80, 0.25);
    opacity: 0.6;
    animation: growBar 1.5s ease-out forwards;
    transform-origin: bottom;
    transform: scaleY(0);
}

.chart-bar:nth-child(1) {
    height: 40%;
    animation-delay: 0.8s;
}

.chart-bar:nth-child(2) {
    height: 70%;
    animation-delay: 1s;
    background-color: var(--accent);
    opacity: 0.8;
}

.chart-bar:nth-child(3) {
    height: 55%;
    animation-delay: 1.2s;
}

.chart-bar:nth-child(4) {
    height: 85%;
    animation-delay: 1.4s;
    background-color: var(--accent);
    opacity: 0.8;
}

.chart-bar:nth-child(5) {
    height: 60%;
    animation-delay: 1.6s;
}

.floating-indicator {
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 24px;
    background-color: var(--accent);
    border-radius: 12px;
    animation-delay: 1.5s;
    box-shadow: 0 4px 12px rgba(232, 167, 53, 0.4);
}

.floating-indicator::after {
    content: '';
    position: absolute;
    right: 4px;
    top: 50%;
    transform: translateY(-50%);
    width: 16px;
    height: 16px;
    background: white;
    border-radius: 50%;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }

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

@keyframes fadeInUpScale {
    from {
        opacity: 0;
        transform: translateY(40px) scale(0.95);
    }

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

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-20px);
    }

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

@keyframes floatEl {

    0%,
    100% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-15px);
    }
}

@keyframes growBar {
    from {
        transform: scaleY(0);
    }

    to {
        transform: scaleY(1);
    }
}

@media(max-width:991px) {
    .features_component {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .heading-style-h3 {
        font-size: 2rem;
    }

    .image-frame-wrapper {
        margin: 0 auto;
        max-width: 480px;
    }

    .grid-dot-features {
        display: none;
    }

    .floating-card {
        right: -10px;
    }

    .floating-button {
        right: -20px;
    }
}

@media(max-width:767px) {
    #features-section {
        padding: 60px 0 40px;
    }

    .heading-style-h3 {
        font-size: 1.75rem;
    }

    .text-rich-text {
        font-size: 1rem;
    }

    .floating-arrow {
        left: -10px;
        width: 50px;
        height: 50px;
    }

    .floating-card {
        right: 10px;
        top: 10px;
        padding: 10px 14px;
    }

    .floating-button {
        right: 10px;
        padding: 8px 12px;
    }

    .floating-chart {
        left: 10px;
        bottom: -10px;
    }
}

/* ══════════════════════════════════════════════
       SECTION: PROCESSUS DE TRAVAIL (index8)
    ══════════════════════════════════════════════ */
#processus-section {
    background: var(--light-bg);
    padding: 80px 0;
    position: relative;
    z-index: 1;
}

.processus-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

.big-title {
    font-size: 3.5rem;
    font-weight: 100;
    text-align: center;
    margin-bottom: 60px;
    color: var(--text-dark);
    text-transform: uppercase;
    font-family: 'Cormorant Garant', serif;
}

@media(max-width:768px) {
    .big-title {
        font-size: 2rem;
        margin-bottom: 40px;
    }
}

.steps-container {
    max-width: 1000px !important;
    margin: 0 auto;
}

.row-step {
    justify-content: center;
}

.item-step {
    position: relative;
    background: rgba(255, 255, 255, .85);
    border-radius: 20px;
    padding: 30px 20px;
    box-shadow: 0 5px 15px rgba(154, 23, 80, .07);
    overflow: visible;
    margin: 20px;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
}

.item-step .number-step {
    font-family: "Anton", sans-serif;
    position: absolute;
    bottom: -15px;
    left: 36px;
    transform: translateX(-50%);
    color: transparent;
    font-size: 180px;
    font-weight: 100;
    z-index: 2;
    -webkit-text-stroke: 1.5px rgba(154, 23, 80, 0.25);
    text-align: center;
    line-height: 180px;
    -webkit-font-smoothing: antialiased;
}

.row>.col-sm-6:nth-child(even) .number-step {
    left: auto;
    right: 44px;
    transform: translateX(50%);
}

.item-step .content-step {
    margin-left: 30px;
    text-align: center;
    padding: 0px 0px 0px 60px;
}

.row>.col-sm-6:nth-child(even) .content-step {
    margin-left: 0;
    margin-right: 30px;
    padding: 0px 60px 0px 0px;
}

.item-step .content-step .title-step {
    font-weight: 600;
    font-size: 20px;
    font-family: 'DM Sans', sans-serif;
    margin-bottom: 10px;
    color: var(--text-dark);
}

.item-step .content-step .step-paragraph {
    color: var(--text-muted);
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 0;
}

.item-step::after {
    content: "";
    position: absolute;
    width: 100px;
    height: 100px;
    border-radius: 20px;
    z-index: -2;
    background: linear-gradient(45deg, var(--primary), var(--accent));
    padding: 10px;
    box-sizing: border-box;
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
}

.row-step>.col-sm-6:nth-child(1) .item-step::after {
    top: -10px;
    left: -10px;
    clip-path: polygon(0 0, 100% 0, 100% 60px, 60px 60px, 60px 100%, 0 100%);
}

.row-step>.col-sm-6:nth-child(2) .item-step::after {
    top: -10px;
    right: -10px;
    clip-path: polygon(0 0, 100% 0, 100% 100%, 90px 100%, 90px 60px, 0 60px);
}

.row-step>.col-sm-6:nth-child(3) .item-step::after {
    bottom: -10px;
    left: -10px;
    clip-path: polygon(0 0, 60px 0, 60px 90px, 100% 90px, 100% 100%, 0 100%);
}

.row-step>.col-sm-6:nth-child(4) .item-step::after {
    bottom: -10px;
    right: -10px;
    clip-path: polygon(60px 90px, 90px 90px, 90px 0, 100% 0, 100% 100%, 0 100%);
}

@media(max-width:768px) {
    .item-step {
        padding: 20px 15px;
        margin: 15px 10px;
    }

    .item-step .number-step {
        font-size: 100px;
        line-height: 100px;
        bottom: 10px;
        left: 20px;
    }

    .item-step .content-step {
        margin-left: 10px;
        padding-left: 20px;
    }

    .row>.col-sm-6:nth-child(even) .content-step {
        margin-right: 10px;
        padding-right: 20px;
    }

    .row>.col-sm-6:nth-child(even) .number-step {
        right: 25px;
    }
}

/* ══════════════════════════════════════════════
       SECTION: NOS PROJETS (index3)
    ══════════════════════════════════════════════ */
#projets-section {
    padding: 100px 0;
    overflow: hidden;
    background: var(--light-bg);
    position: relative;
    z-index: 1;
}

.projects__container {
    width: 100%;
    padding-right: 15px;
    padding-left: 15px;
    margin-right: auto;
    margin-left: auto;
    max-width: 1280px;
}

.title--xl {
    font-size: 4.25rem;
    font-weight: 600;
    color: var(--text-dark);
    line-height: 1.25;
}

.title-ui--dark strong {
    background: linear-gradient(140deg, var(--accent), var(--primary), var(--accent), var(--primary));
    background-size: 400% 400%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: 8s linear infinite gradientAnim;
}

@keyframes gradientAnim {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

.badge {
    position: relative;
    display: inline-block;
    font-size: 10px;
    font-weight: 500;
    color: #fff;
    background-color: var(--primary);
    border-radius: 50px;
    text-decoration: none;
}

.badge span {
    display: inline-block;
    padding: 5px 15px;
}

.btn-link {
    --line-width: 20px;
    --line-space: 12px;
    position: relative;
    display: inline-flex;
    align-items: center;
    color: var(--text-dark);
    font-weight: 500;
    font-size: 0.95rem;
    text-decoration: none;
    transition: color .3s ease;
}

.btn-link span {
    position: relative;
    transition: transform .3s ease;
    display: inline-block;
}

.btn-link::before,
.btn-link::after {
    content: "";
    display: block;
    width: var(--line-width);
    height: 3px;
    border-radius: 10px;
    transition: transform .3s ease;
}

.btn-link::before {
    position: absolute;
    left: 0;
    top: calc(50% - 1px);
    transform: scaleX(0);
    transform-origin: left center;
    background: linear-gradient(to left, var(--primary), var(--accent));
}

.btn-link::after {
    margin-left: var(--line-space);
    background: linear-gradient(to right, var(--primary), var(--accent));
}

.btn-link:hover::before {
    transform: scaleX(1);
}

.btn-link:hover span {
    transform: translateX(calc(var(--line-width) + var(--line-space)));
}

.btn-link:hover::after {
    transform: scaleX(0);
}

.swiper-arrow-group {
    display: flex;
    margin-top: 45px;
}

.swiper-arrow-group .swiper-arrow:last-child {
    margin-left: 12px;
}

.swiper-arrow {
    --arrow-size: 44px;
    --arrow-svg-size: 9px;
    position: relative;
    width: var(--arrow-size);
    height: var(--arrow-size);
    cursor: pointer;
    border-radius: 5px;
    background: var(--accent);
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.swiper-arrow::before {
    content: "";
    position: absolute;
    bottom: 50%;
    width: 100%;
    height: 100%;
    background-image: linear-gradient(41deg, var(--primary), var(--accent), var(--primary));
    transition: opacity .6s ease;
    opacity: 0;
}

.swiper-arrow.--left::before {
    left: 50%;
    transform-origin: left bottom;
}

.swiper-arrow.--right::before {
    right: 50%;
    transform-origin: right bottom;
}

.swiper-arrow .swiper-arrow__inner {
    position: absolute;
    z-index: 1;
    left: 1px;
    top: 1px;
    width: calc(100% - 2px);
    height: calc(100% - 2px);
    border-radius: 4px;
    background-color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
}

.swiper-arrow svg {
    width: var(--arrow-svg-size);
    height: auto;
}

.swiper-arrow:hover::before {
    opacity: 1;
    animation: 1.7s linear rotation infinite;
}

.swiper-arrow.inactive {
    pointer-events: none;
    opacity: 0.5;
}

@keyframes rotation {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(-360deg);
    }
}

.line-y {
    position: absolute;
    width: calc(50px*2);
    background-image: linear-gradient(to bottom, var(--accent), var(--primary));
    z-index: 5;
    opacity: 0.45;
}

.projects__row {
    display: flex;
    align-items: center;
    flex-wrap: nowrap;
    margin-left: -50px;
    margin-right: -50px;
}

.projects__col {
    padding-left: 50px;
    padding-right: 50px;
    flex: 0 0 50%;
    max-width: 50%;
}

.projects h2.projects__title {
    display: none;
}

.projects .projects__left {
    display: flex;
    flex-direction: column;
}

.projects .projects__wrapper {
    position: relative;
    margin-top: 90px;
}

.projects .project {
    position: absolute;
    width: 100%;
    top: 0;
    left: 0;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.4s ease, visibility 0.4s ease;
}

.projects .project.active {
    position: relative;
    opacity: 1;
    visibility: visible;
}

.projects .project__inner>* {
    opacity: 1;
    transform: translateX(0);
    transition: opacity 0.4s ease, transform 0.4s ease;
}

.projects .project__badges {
    margin-bottom: 18px;
}

.projects .project__title {
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-dark);
    line-height: 1.2;
}

.projects .project__title a {
    color: inherit;
    text-decoration: none;
}

.projects .project__content {
    max-width: 410px;
    margin-top: 16px;
    font-size: 1rem;
    line-height: 1.7;
}

.projects .project__cta {
    margin-top: 24px;
}

.projects__images__container {
    position: relative;
    overflow: hidden;
}

.projects__images__container::after {
    content: "";
    display: block;
    padding-bottom: 120%;
}

.projects__images__container .line-y {
    height: 48%;
    bottom: 80px;
    left: calc(-1*50px);
    transform-origin: right bottom;
}

.projects__images {
    position: absolute;
    inset: 0;
    overflow: hidden;
    white-space: nowrap;
}

.projects__images__item {
    position: absolute;
    inset: 0;
    overflow: hidden;
    white-space: nowrap;
}

.projects__images__item__inner {
    position: absolute;
    inset: 0;
    overflow: hidden;
    transform: translateX(100%);
    transition: transform 0s ease;
}

.projects__images__item img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transform: translate3d(-100%, 0, 0) scale(1.3);
    transition: transform 0s ease;
}

.projects__images__item.--in .projects__images__item__inner,
.projects__images__item.--in img,
.projects__images__item.--out .projects__images__item__inner,
.projects__images__item.--out img {
    transition-duration: 1.4s;
}

.projects__images__item.--in {
    z-index: 2;
}

.projects__images__item.--in .projects__images__item__inner {
    transform: none;
}

.projects__images__item.--in img {
    transform: translateZ(0) scale(1);
}

.projects__images__item.--out .projects__images__item__inner {
    transform: translateX(-100%);
}

.projects__images__item.--out img {
    transform: translate3d(100%, 0, 0) scale(1.3);
}

@media(max-width:767px) {
    .projects h2.projects__title {
        display: block;
        margin-bottom: 24px;
    }

    .projects div.projects__title {
        display: none;
    }

    .projects__row {
        flex-wrap: wrap;
    }

    .projects__col {
        flex: 0 0 100%;
        max-width: 100%;
    }

    .projects .projects__left {
        order: 2;
    }

    .projects .projects__right {
        order: 1;
    }

    .projects .projects__wrapper {
        margin-top: 12px;
    }

    .projects__images__container .line-y {
        display: none;
    }

    .projects .project__content,
    .projects .project__cta,
    .projects .project__badges {
        display: none;
    }

    .projects .swiper-arrow-group {
        margin-top: 18px;
    }
}

/* ══════════════════════════════════════════════
       SECTION: AGENCE HUMAINE & DURABLE (index11)
    ══════════════════════════════════════════════ */
#digital-section {
    width: 100%;
    padding: 80px 0;
    background: var(--light-bg);
    position: relative;
    z-index: 1;
}

.s2__row {
    display: flex;
    align-items: flex-start;
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 30px;
    gap: 60px;
}

.s2__left {
    flex: 0 0 42%;
}

.s2__right {
    flex: 1 1 0;
}

.s2__label {
    font-family: 'DM Sans', sans-serif;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: .13em;
    color: var(--primary);
    margin-bottom: 8px;
}

.s2__title {
    font-family: 'Cormorant Garant', serif;
    font-size: 42px;
    font-weight: 700;
    line-height: 1.18;
    color: var(--text-dark);
}

.s2__title .red {
    color: var(--primary);
}

.s2__body {
    font-family: 'DM Sans', sans-serif;
    font-size: 15px;
    line-height: 1.8;
    color: var(--text-muted);
    margin-bottom: 22px;
}

.s2__body strong {
    color: var(--text-dark);
    font-weight: 600;
}

.s2__tech-title {
    font-family: 'Cormorant Garant', serif;
    font-size: 28px;
    font-weight: 700;
    line-height: 1.25;
    color: var(--text-dark);
    margin-bottom: 32px;
}

.s2__tech-title .red {
    color: var(--primary);
}

.s2__logos {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    row-gap: 28px;
    column-gap: 10px;
    justify-items: start;
}

.s2__logo {
    display: flex;
    align-items: center;
    height: 53px;
}

.s2__logo img {
    width: auto;
    max-width: 160px;
    height: 53px;
    object-fit: contain;
    transition: opacity .3s;
    opacity: 1;
}

.s2__logo img:hover {
    opacity: .75;
}

@media(max-width:1024px) {
    .s2__row {
        gap: 40px;
        padding: 0 24px;
    }

    .s2__left {
        flex: 0 0 40%;
    }

    .s2__title {
        font-size: 34px;
    }

    .s2__tech-title {
        font-size: 24px;
    }

    .s2__logo img {
        max-width: 130px;
    }
}

@media(max-width:767px) {
    #digital-section {
        padding: 50px 0;
    }

    .s2__row {
        flex-direction: column;
        gap: 32px;
        padding: 0 20px;
    }

    .s2__left {
        flex: none;
        width: 100%;
    }

    .s2__right {
        width: 100%;
    }

    .s2__title {
        font-size: 28px;
    }

    .s2__tech-title {
        font-size: 22px;
        margin-bottom: 24px;
    }

    .s2__logos {
        grid-template-columns: repeat(3, 1fr);
        row-gap: 20px;
        justify-items: center;
    }

    .s2__logo img {
        max-width: 90px;
        height: auto;
    }
}

/* ══════════════════════════════════════════════
       SECTION: YOUR DIGITAL PARTNER (index10)
    ══════════════════════════════════════════════ */
#partner-section {
    position: relative;
    width: 100%;
    background: var(--gradient-dark);
    overflow: hidden;
    z-index: 1;
}

.s3__dots {
    position: absolute;
    top: 30px;
    right: 60px;
    display: grid;
    grid-template-columns: repeat(9, 10px);
    grid-template-rows: repeat(4, 10px);
    gap: 10px;
    z-index: 0;
}

.s3__dots span {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: rgba(232, 167, 53, 0.25);
    display: block;
}

.s3__blob {
    position: absolute;
    right: -60px;
    top: 50%;
    transform: translateY(-50%);
    width: 260px;
    height: 320px;
    background: rgba(232, 167, 53, 0.2);
    border-radius: 60% 40% 50% 50% / 40% 50% 60% 50%;
    opacity: .55;
    z-index: 0;
}

.s3__wrap {
    position: relative;
    z-index: 1;
    max-width: 1300px;
    margin: 0 auto;
    padding: 70px 40px 60px;
}

.s3__grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 0 40px;
    align-items: start;
}

.s3__label {
    font-family: 'DM Sans', sans-serif;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .14em;
    color: var(--accent);
    margin-bottom: 16px;
}

.s3__heading {
    font-family: 'DM Sans', sans-serif;
    font-size: 38px;
    font-weight: 800;
    line-height: 1.15;
    color: #fff;
    margin-bottom: 28px;
}

.s3__heading .red {
    color: var(--accent);
    font-style: italic;
}

.s3__sub {
    font-family: 'DM Sans', sans-serif;
    font-size: 14px;
    font-weight: 400;
    line-height: 1.6;
    color: var(--text-light);
    max-width: 340px;
}

.icon-box {
    padding-top: 0;
}

.icon-box__icon {
    width: 52px;
    height: 52px;
    margin-bottom: 18px;
    color: #fff;
}

.icon-box__icon svg {
    width: 100%;
    height: 100%;
    stroke: #fff;
    fill: none;
    stroke-width: 1.4;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.icon-box__title {
    font-family: 'DM Sans', sans-serif;
    font-size: 18px;
    font-weight: 700;
    line-height: 1.3;
    color: #fff;
    margin-bottom: 14px;
}

.icon-box__body {
    font-family: 'DM Sans', sans-serif;
    font-size: 14px;
    line-height: 1.7;
    color: var(--text-light);
    margin-bottom: 8px;
}

.icon-box__cta {
    font-family: 'DM Sans', sans-serif;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .08em;
    color: var(--accent);
    text-decoration: none;
    display: inline-block;
}

.icon-box__cta:hover {
    text-decoration: underline;
}

@media(max-width:1024px) {
    .s3__grid {
        gap: 0 28px;
    }

    .s3__heading {
        font-size: 30px;
    }

    .s3__blob {
        width: 180px;
        right: -40px;
    }

    .s3__dots {
        right: 30px;
    }
}

@media(max-width:767px) {
    .s3__wrap {
        padding: 50px 20px 40px;
    }

    .s3__grid {
        grid-template-columns: 1fr;
        gap: 40px 0;
    }

    .s3__heading {
        font-size: 28px;
    }

    .s3__blob {
        display: none;
    }

    .s3__dots {
        display: none;
    }
}

/* ══════════════════════════════════════════════
       SECTION: NOS ENGAGEMENTS (index7)
    ══════════════════════════════════════════════ */
#engagements-section {
    background: var(--light-bg);
    position: relative;
    z-index: 1;
}

.engagements-container {
    max-width: 1260px;
    margin: 0 auto;
    padding: 60px 20px;
}

.big-title-eng {
    font-size: 2.5rem;
    font-weight: 100;
    text-align: center;
    letter-spacing: 2px;
    color: var(--text-dark);
    text-transform: uppercase;
    font-family: 'Cormorant Garant', serif;
    margin-bottom: 50px;
    position: relative;
}

.big-title-eng:after {
    content: '';
    display: block;
    width: 70px;
    height: 3px;
    background: linear-gradient(90deg, var(--accent), var(--primary));
    margin: 15px auto 0;
    border-radius: 3px;
}

.engagement-card {
    display: flex;
    flex-wrap: wrap;
    background: rgba(255, 255, 255, .85);
    border-radius: 28px;
    overflow: hidden;
    box-shadow: 0 25px 45px -12px rgba(0, 0, 0, 0.12);
    transition: transform 0.3s ease;
}

.engagement-card:hover {
    transform: translateY(-5px);
}

.engagement-image {
    flex: 1.2;
    min-width: 280px;
}

.engagement-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.engagement-content {
    flex: 1;
    padding: 40px 35px;
    background: rgba(255, 255, 255, .85);
}

.engagement-content h2 {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 20px;
    letter-spacing: -0.3px;
    border-left: 4px solid var(--accent);
    padding-left: 20px;
    font-family: 'Cormorant Garant', serif;
}

.engagement-content p {
    margin-bottom: 20px;
    color: var(--text-muted);
    text-align: justify;
}

.custom-list {
    list-style: none;
    margin: 25px 0;
}

.custom-list li {
    position: relative;
    padding-left: 28px;
    margin-bottom: 14px;
    font-weight: 500;
}

.custom-list li:before {
    content: "\f00c";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    position: absolute;
    left: 0;
    top: 2px;
    color: var(--accent);
    font-size: 1rem;
}

.btn-engagement {
    display: inline-block;
    background: var(--gradient-accent);
    color: var(--dark-bg);
    padding: 12px 28px;
    border-radius: 40px;
    font-weight: 600;
    text-decoration: none;
    margin-top: 10px;
    transition: all 0.3s;
    border: none;
    font-size: 0.9rem;
}

.btn-engagement:hover {
    transform: translateX(6px);
    background: linear-gradient(135deg, var(--primary), var(--accent));
    color: #fff;
    text-decoration: none;
}

@media(max-width:768px) {
    .engagement-card {
        flex-direction: column;
    }

    .engagement-content {
        padding: 30px 25px;
    }

    .engagement-content h2 {
        font-size: 1.5rem;
    }

    .big-title-eng {
        font-size: 1.8rem;
    }
}

/* ══════════════════════════════════════════════
       SECTION: CONTACT (index2)
    ══════════════════════════════════════════════ */
#contact-section {
    background: var(--light-bg);
    position: relative;
    z-index: 1;
}

.edito-form {
    max-width: 1160px;
    margin: 0 auto;
    padding: 100px 24px 120px;
}

.edito-form__row {
    display: grid;
    grid-template-columns: 5fr 7fr;
    gap: 100px;
    align-items: start;
}

.edito-form__left {
    padding-top: 8px;
}

.edito-form__title {
    font-size: clamp(2.8rem, 5vw, 3.6rem);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 28px;
    letter-spacing: -0.02em;
}

.edito-form__title .line-dark {
    color: var(--text-dark);
    display: block;
}

.edito-form__title .line-blue {
    display: block;
    background: linear-gradient(100deg, var(--accent), var(--primary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.edito-form__description {
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 40px;
    max-width: 340px;
}

.edito-form__description strong {
    color: var(--text-dark);
    font-weight: 600;
}

.address-sep {
    width: 28px;
    height: 3px;
    background: var(--primary);
    border-radius: 2px;
    margin-bottom: 20px;
}

.edito-form__address {
    font-style: normal;
    font-size: 0.88rem;
    color: var(--text-muted);
    line-height: 1.9;
}

.edito-form__address strong {
    color: var(--text-dark);
    font-weight: 600;
}

.edito-form__form {
    position: relative;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

.form-group {
    position: relative;
}

.form-group.full {
    grid-column: 1/-1;
}

.form-group label {
    display: block;
    font-size: 0.78rem;
    font-weight: 500;
    color: var(--text-dark);
    margin-bottom: 6px;
}

.form-group label .required {
    color: var(--primary);
    margin-left: 2px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 13px 16px;
    border: 1px solid rgba(154, 23, 80, 0.2);
    border-radius: 10px;
    font-family: 'DM Sans', sans-serif;
    font-size: 0.9rem;
    color: var(--text-dark);
    background: #fff;
    transition: all 0.2s ease;
    outline: none;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--text-muted);
    font-weight: 400;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(154, 23, 80, 0.08);
}

.form-group select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='%239A1750' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 14px center;
    padding-right: 38px;
    cursor: pointer;
    color: var(--text-muted);
}

.form-group select:valid {
    color: var(--text-dark);
}

.form-group textarea {
    resize: vertical;
    min-height: 130px;
    line-height: 1.5;
}

.char-counter {
    text-align: right;
    font-size: 0.72rem;
    color: var(--text-muted);
    margin-top: 6px;
    font-weight: 500;
}

.file-upload {
    position: relative;
    cursor: pointer;
}

.file-upload input[type="file"] {
    position: absolute;
    inset: 0;
    opacity: 0;
    cursor: pointer;
    z-index: 2;
    width: 100%;
    height: 100%;
}

.file-upload-display {
    width: 100%;
    padding: 13px 16px;
    border: 1px solid rgba(154, 23, 80, 0.2);
    border-radius: 10px;
    font-size: 0.9rem;
    color: var(--text-muted);
    background: #fff;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-family: 'DM Sans', sans-serif;
}

.file-upload:hover .file-upload-display {
    border-color: var(--primary-light);
}

.file-upload-display.has-file {
    color: var(--text-dark);
    border-color: var(--primary);
    background: #F0E6EB;
}

.file-icon {
    color: var(--primary);
    flex-shrink: 0;
}

.form-submit .btn-submit {
    width: 100%;
    padding: 14px 32px;
    font-size: 0.80rem;
    font-weight: 600;
    font-family: 'DM Sans', sans-serif;
    border-radius: 50px;
    background: var(--gradient-accent);
    color: var(--dark-bg);
    border: none;
    cursor: pointer;
    transition: all 0.25s ease;
}

.form-submit .btn-submit:hover {
    background: var(--primary);
    color: white;
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(154, 23, 80, 0.25);
}

.edito-form__confirmation {
    display: none;
    position: absolute;
    inset: 0;
    background: #fff;
    border-radius: 16px;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 40px;
    z-index: 10;
    animation: fadeConfirm 0.5s ease;
}

.edito-form__confirmation.active {
    display: flex;
}

.confirmation-icon {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, var(--accent), var(--primary));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    color: white;
    font-size: 28px;
}

.edito-form__confirmation-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 8px;
}

.edito-form__confirmation-text {
    font-size: 0.9rem;
    color: var(--text-muted);
    max-width: 320px;
    line-height: 1.6;
}

@keyframes fadeConfirm {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

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

@media(max-width:991px) {
    .edito-form__row {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .edito-form__description {
        max-width: 100%;
    }
}

@media(max-width:576px) {
    .edito-form {
        padding: 60px 20px 80px;
    }

    .form-row {
        grid-template-columns: 1fr;
        gap: 16px;
        margin-bottom: 16px;
    }

    .edito-form__title {
        margin-bottom: 20px;
    }
}

/* ══════════════════════════════════════════════
       FOOTER — REDESIGNED COMPLET
    ══════════════════════════════════════════════ */
.site-footer {
    position: relative;
    overflow: hidden;
    color: #fff;
    line-height: 1.7;
    font-family: 'DM Sans', sans-serif;
    font-size: 15px;
    font-weight: 400;
    background: var(--dark-bg);
    border-top: 1px solid rgba(232, 167, 53, 0.15);
}

.footer-bg-grid {
    position: absolute;
    inset: 0;
    background-image: linear-gradient(to right, rgba(232, 167, 53, 0.05) 1px, transparent 1px), linear-gradient(to bottom, rgba(232, 167, 53, 0.05) 1px, transparent 1px);
    background-size: 48px 48px;
    pointer-events: none;
}

.footer-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    pointer-events: none;
}

.footer-orb--1 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(232, 167, 53, 0.07), transparent 70%);
    top: -100px;
    left: -100px;
}

.footer-orb--2 {
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(154, 23, 80, 0.08), transparent 70%);
    bottom: -50px;
    right: -50px;
}

.footer-inner {
    position: relative;
    z-index: 1;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 40px;
}

.footer-cta-band {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    padding: 56px 0;
    border-bottom: 1px solid rgba(232, 167, 53, 0.1);
    flex-wrap: wrap;
}

.footer-cta-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(232, 167, 53, 0.1);
    border: 1px solid rgba(232, 167, 53, 0.2);
    color: var(--accent);
    font-family: 'Space Mono', monospace;
    font-size: 0.65rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 5px 14px;
    border-radius: 50px;
    margin-bottom: 16px;
}

.footer-cta-title {
    font-family: 'Syne', sans-serif;
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    color: var(--white);
    line-height: 1.1;
    letter-spacing: -0.03em;
}

.footer-cta-title em {
    color: var(--accent);
    font-style: italic;
}

.footer-cta-band__right {
    flex-shrink: 0;
    max-width: 380px;
}

.footer-cta-band__right p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 24px;
}

.footer-cta-band__right p strong {
    color: var(--accent);
    font-weight: 700;
}

.footer-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--gradient-accent);
    color: var(--dark-bg);
    font-family: 'DM Sans', sans-serif;
    font-weight: 700;
    font-size: 0.95rem;
    padding: 14px 32px;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s;
    cursor: pointer;
}

.footer-cta-btn:hover {
    background: var(--accent-light);
    transform: translateY(-2px);
    box-shadow: 0 12px 30px rgba(232, 167, 53, 0.3);
    color: var(--dark-bg);
}

.footer-divider {
    height: 1px;
    background: rgba(232, 167, 53, 0.06);
}

.footer-main {
    display: grid;
    grid-template-columns: 2fr 1.2fr 1.5fr 1.8fr;
    gap: 60px;
    padding: 64px 0;
    border-bottom: 1px solid rgba(232, 167, 53, 0.08);
}

.footer-col {}

.footer-logo {
    display: block;
    margin-bottom: 24px;
}

.footer-brand-desc {
    font-size: 0.88rem;
    line-height: 1.8;
    color: #fff;
    margin-bottom: 32px;
    max-width: 320px;
}

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

.footer-social {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(232, 167, 53, 0.06);
    border: 1px solid rgba(232, 167, 53, 0.15);
    border-radius: 10px;
    color: var(--accent);
    text-decoration: none;
    font-size: 0.9rem;
    transition: all 0.3s;
}

.footer-social::after {
    display: none;
}

.footer-social:hover {
    background: var(--accent);
    border-color: var(--accent);
    color: var(--dark-bg);
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(232, 167, 53, 0.25);
}

.footer-col-title {
    font-family: 'Syne', sans-serif;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--white);
    margin-bottom: 24px;
    position: relative;
    padding-bottom: 14px;
}

.footer-col-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 24px;
    height: 1px;
    background: var(--accent);
    border-radius: 2px;
}

.footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-links li a {
    color: #fff;
    text-decoration: none;
    font-size: 0.88rem;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.25s;
}

.footer-links li a::after {
    display: none;
}

.footer-links li a:hover {
    color: var(--accent);
    transform: translateX(4px);
}

.footer-link-arrow {
    color: rgba(232, 167, 53, 0.4);
    font-size: 0.8rem;
    transition: color 0.25s, transform 0.25s;
}

.footer-links li a:hover .footer-link-arrow {
    color: var(--accent);
    transform: translateX(2px);
}

.footer-contact-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.footer-contact-list li {
    display: flex;
    align-items: flex-start;
    gap: 14px;
}

.footer-contact-icon {
    width: 36px;
    height: 36px;
    background: rgba(232, 167, 53, 0.08);
    border: 1px solid rgba(232, 167, 53, 0.15);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: var(--accent);
    font-size: 0.85rem;
}

.footer-contact-label {
    display: block;
    font-family: 'Space Mono', monospace;
    font-size: 0.6rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 3px;
}

.footer-contact-val {
    display: block;
    font-size: 0.85rem;
    color: #fff;
    line-height: 1.5;
    text-decoration: none;
    transition: color 0.2s;
}

.footer-contact-val::after {
    display: none;
}

.footer-contact-val:hover {
    color: var(--white);
}

.footer-price-card {
    background: var(--dark-bg3);
    border: 1px solid rgba(232, 167, 53, 0.15);
    border-radius: var(--radius);
    padding: 28px 24px;
    position: relative;
    overflow: hidden;
    transition: border-color 0.3s;
}

.footer-price-card:hover {
    border-color: rgba(232, 167, 53, 0.35);
}

.footer-price-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--gradient-accent);
}

.footer-price-badge {
    display: inline-flex;
    align-items: center;
    background: rgba(232, 167, 53, 0.1);
    border: 1px solid rgba(232, 167, 53, 0.2);
    color: var(--accent);
    font-family: 'Space Mono', monospace;
    font-size: 0.6rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 4px 12px;
    border-radius: 50px;
    margin-bottom: 16px;
}

.footer-price-amount {
    font-family: 'Syne', sans-serif;
    font-size: 3rem;
    font-weight: 800;
    color: var(--accent);
    line-height: 1;
    margin-bottom: 20px;
    letter-spacing: -0.03em;
}

.footer-price-amount span {
    font-size: 1.2rem;
    font-weight: 600;
    color: #fff;
    margin-left: 4px;
}

.footer-price-features {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 24px;
}

.footer-price-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.85rem;
    color: #fff;
}

.footer-price-features li i {
    color: var(--accent);
    font-size: 0.75rem;
    width: 16px;
    text-align: center;
}

.footer-price-btn {
    display: block;
    text-align: center;
    background: var(--gradient-accent);
    color: var(--dark-bg);
    font-family: 'DM Sans', sans-serif;
    font-weight: 700;
    font-size: 0.88rem;
    padding: 12px 20px;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s;
    cursor: pointer;
}

.footer-price-btn::after {
    display: none;
}

.footer-price-btn:hover {
    background: var(--accent-light);
    color: var(--dark-bg);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(232, 167, 53, 0.3);
}

.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 24px 0;
    flex-wrap: wrap;
    gap: 16px;
}

.footer-bottom__left p {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.5);
    font-family: 'DM Sans', sans-serif;
}

.footer-bottom__right {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.5);
    font-family: 'Space Mono', monospace;
    letter-spacing: 0.05em;
}

.footer-bottom-dot {
    width: 4px;
    height: 4px;
    background: rgba(232, 167, 53, 0.3);
    border-radius: 50%;
}

@media(max-width:1100px) {
    .footer-main {
        grid-template-columns: 1fr 1fr;
        gap: 48px 60px;
    }

    .footer-col--brand {
        grid-column: 1 / -1;
    }
}

@media(max-width:640px) {
    .footer-main {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .footer-col--brand {
        grid-column: auto;
    }

    .footer-inner {
        padding: 0 20px;
    }

    .footer-cta-band {
        flex-direction: column;
        gap: 32px;
        padding: 40px 0;
    }

    .footer-cta-band__right {
        max-width: 100%;
    }
}

/* ══════════════════════════════════════════════
       CALENDLY MODAL
    ══════════════════════════════════════════════ */
.calendly-overlay {
    position: fixed;
    inset: 0;
    background: rgba(93, 0, 30, 0.6);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.4s cubic-bezier(0.2, 0.9, 0.4, 1.1), visibility 0.4s;
}

.calendly-overlay.active {
    opacity: 1;
    visibility: visible;
}

.calendly-popup {
    background: white;
    border-radius: 32px;
    width: 100%;
    max-width: 1100px;
    height: 85vh;
    max-height: 720px;
    position: relative;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.3);
    overflow: hidden;
    transform: scale(0.95) translateY(20px);
    transition: transform 0.5s cubic-bezier(0.2, 0.9, 0.4, 1.2);
}

.calendly-overlay.active .calendly-popup {
    transform: scale(1) translateY(0);
}

.calendly-loader {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 48px;
    height: 48px;
    margin: -24px 0 0 -24px;
    border: 4px solid rgba(154, 23, 80, 0.2);
    border-top: 4px solid var(--primary);
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
    z-index: 5;
    pointer-events: none;
    transition: opacity 0.2s ease;
    display: none;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

.calendly-popup iframe {
    width: 100%;
    height: 100%;
    border: none;
    display: block;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.calendly-popup.loaded iframe {
    opacity: 1;
}

.calendly-close {
    position: absolute;
    top: 18px;
    right: 18px;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(253, 248, 243, 0.97);
    backdrop-filter: blur(4px);
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    font-weight: 400;
    color: var(--text-dark);
    z-index: 20;
    transition: all 0.25s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.calendly-close:hover {
    background: white;
    transform: scale(1.05) rotate(90deg);
    color: var(--primary);
    box-shadow: 0 4px 12px rgba(154, 23, 80, 0.2);
}

@media(max-width:768px) {
    .calendly-overlay {
        padding: 0;
    }

    .calendly-popup {
        border-radius: 0;
        max-width: 100%;
        height: 100vh;
        height: 100dvh;
        max-height: none;
    }

    .calendly-close {
        top: 12px;
        right: 12px;
        background: rgba(255, 255, 255, 0.98);
        width: 40px;
        height: 40px;
        font-size: 28px;
    }
}

/* ══════════════════════════════════════════════
   ANIMATIONS SCROLL REVEAL (conservées)
    ══════════════════════════════════════════════ */
#processus-section .item-step {
    opacity: 0;
    transform: translateY(80px) scale(0.95);
    transition: all 1.4s cubic-bezier(0.16, 1, 0.3, 1);
}

#processus-section.is-visible .item-step:nth-child(1) {
    transition-delay: 0.15s;
    opacity: 1;
    transform: translateY(0) scale(1);
}

#processus-section.is-visible .item-step:nth-child(2) {
    transition-delay: 0.40s;
    opacity: 1;
    transform: translateY(0) scale(1);
}

#processus-section.is-visible .item-step:nth-child(3) {
    transition-delay: 0.65s;
    opacity: 1;
    transform: translateY(0) scale(1);
}

#processus-section.is-visible .item-step:nth-child(4) {
    transition-delay: 0.90s;
    opacity: 1;
    transform: translateY(0) scale(1);
}

#processus-section .number-step {
    opacity: 0;
    transform: translateY(50px);
    transition: all 1.6s cubic-bezier(0.16, 1, 0.3, 1);
}

#processus-section.is-visible .item-step:nth-child(1) .number-step {
    transition-delay: 0.45s;
    opacity: 1;
    transform: translateY(0);
}

#processus-section.is-visible .item-step:nth-child(2) .number-step {
    transition-delay: 0.70s;
    opacity: 1;
    transform: translateY(0);
}

#processus-section.is-visible .item-step:nth-child(3) .number-step {
    transition-delay: 0.95s;
    opacity: 1;
    transform: translateY(0);
}

#processus-section.is-visible .item-step:nth-child(4) .number-step {
    transition-delay: 1.20s;
    opacity: 1;
    transform: translateY(0);
}

#processus-section .item-step::after {
    transform: scale(0.8);
    opacity: 0;
    transition: all 1.0s ease;
}

#processus-section.is-visible .item-step:nth-child(1)::after {
    transition-delay: 0.70s;
    transform: scale(1);
    opacity: 1;
}

#processus-section.is-visible .item-step:nth-child(2)::after {
    transition-delay: 0.95s;
    transform: scale(1);
    opacity: 1;
}

#processus-section.is-visible .item-step:nth-child(3)::after {
    transition-delay: 1.20s;
    transform: scale(1);
    opacity: 1;
}

#processus-section.is-visible .item-step:nth-child(4)::after {
    transition-delay: 1.45s;
    transform: scale(1);
    opacity: 1;
}

#digital-section .s2__left {
    opacity: 0;
    transform: translateX(-60px);
    transition: all 1.4s cubic-bezier(0.16, 1, 0.3, 1);
}

#digital-section.is-visible .s2__left {
    opacity: 1;
    transform: translateX(0);
}

#digital-section .s2__right {
    opacity: 0;
    transform: translateX(60px);
    transition: all 1.4s cubic-bezier(0.16, 1, 0.3, 1) 0.25s;
}

#digital-section.is-visible .s2__right {
    opacity: 1;
    transform: translateX(0);
}

#digital-section .s2__title .red {
    position: relative;
    display: inline-block;
}

#digital-section .s2__title .red::before {
    content: '';
    position: absolute;
    inset: -2px -6px;
    background: var(--accent);
    border-radius: 4px;
    transform: scaleX(0);
    transform-origin: left center;
    transition: transform 1.2s cubic-bezier(0.16, 1, 0.3, 1) 0.7s;
    z-index: -1;
}

#digital-section.is-visible .s2__title .red::before {
    transform: scaleX(1);
}

#digital-section .s2__logo {
    opacity: 0;
    transform: translateY(30px) scale(0.9);
    transition: all 0.8s cubic-bezier(0.34, 1.56, 0.64, 1);
}

#digital-section.is-visible .s2__logo:nth-child(1) {
    transition-delay: 0.40s;
    opacity: 1;
    transform: translateY(0) scale(1);
}

#digital-section.is-visible .s2__logo:nth-child(2) {
    transition-delay: 0.55s;
    opacity: 1;
    transform: translateY(0) scale(1);
}

#digital-section.is-visible .s2__logo:nth-child(3) {
    transition-delay: 0.70s;
    opacity: 1;
    transform: translateY(0) scale(1);
}

#digital-section.is-visible .s2__logo:nth-child(4) {
    transition-delay: 0.85s;
    opacity: 1;
    transform: translateY(0) scale(1);
}

#digital-section.is-visible .s2__logo:nth-child(5) {
    transition-delay: 1.00s;
    opacity: 1;
    transform: translateY(0) scale(1);
}

#digital-section.is-visible .s2__logo:nth-child(6) {
    transition-delay: 1.15s;
    opacity: 1;
    transform: translateY(0) scale(1);
}

#partner-section .s3__col1 {
    opacity: 0;
    transform: translateY(50px);
    transition: all 1.4s cubic-bezier(0.16, 1, 0.3, 1);
}

#partner-section.is-visible .s3__col1 {
    opacity: 1;
    transform: translateY(0);
}

#partner-section .s3__heading .red {
    position: relative;
    display: inline-block;
}

#partner-section .s3__heading .red::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 4px;
    width: 100%;
    height: 4px;
    background: var(--accent);
    border-radius: 4px;
    z-index: -1;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 1.0s cubic-bezier(0.16, 1, 0.3, 1) 0.6s;
}

#partner-section.is-visible .s3__heading .red::after {
    transform: scaleX(1);
}

#partner-section .icon-box {
    opacity: 0;
    transform: translateY(80px);
    transition: all 1.2s cubic-bezier(0.16, 1, 0.3, 1);
}

#partner-section.is-visible .icon-box:nth-of-type(2) {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.50s;
}

#partner-section.is-visible .icon-box:nth-of-type(3) {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.80s;
}

#partner-section .s3__dots span {
    opacity: 0;
    transform: scale(0);
    transition: all 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
}

#partner-section.is-visible .s3__dots span {
    opacity: 1;
    transform: scale(1);
}

#partner-section.is-visible .s3__dots span:nth-child(1) {
    transition-delay: 0.10s;
}

#partner-section.is-visible .s3__dots span:nth-child(2) {
    transition-delay: 0.14s;
}

#partner-section.is-visible .s3__dots span:nth-child(3) {
    transition-delay: 0.18s;
}

#partner-section.is-visible .s3__dots span:nth-child(4) {
    transition-delay: 0.22s;
}

#partner-section.is-visible .s3__dots span:nth-child(5) {
    transition-delay: 0.26s;
}

#partner-section.is-visible .s3__dots span:nth-child(6) {
    transition-delay: 0.30s;
}

#partner-section.is-visible .s3__dots span:nth-child(7) {
    transition-delay: 0.34s;
}

#partner-section.is-visible .s3__dots span:nth-child(8) {
    transition-delay: 0.38s;
}

#partner-section.is-visible .s3__dots span:nth-child(9) {
    transition-delay: 0.42s;
}

#partner-section.is-visible .s3__dots span:nth-child(10) {
    transition-delay: 0.46s;
}

#partner-section.is-visible .s3__dots span:nth-child(11) {
    transition-delay: 0.50s;
}

#partner-section.is-visible .s3__dots span:nth-child(12) {
    transition-delay: 0.54s;
}

#partner-section.is-visible .s3__dots span:nth-child(13) {
    transition-delay: 0.58s;
}

#partner-section.is-visible .s3__dots span:nth-child(14) {
    transition-delay: 0.62s;
}

#partner-section.is-visible .s3__dots span:nth-child(15) {
    transition-delay: 0.66s;
}

#partner-section.is-visible .s3__dots span:nth-child(16) {
    transition-delay: 0.70s;
}

#partner-section.is-visible .s3__dots span:nth-child(17) {
    transition-delay: 0.74s;
}

#partner-section.is-visible .s3__dots span:nth-child(18) {
    transition-delay: 0.78s;
}

#partner-section.is-visible .s3__dots span:nth-child(19) {
    transition-delay: 0.82s;
}

#partner-section.is-visible .s3__dots span:nth-child(20) {
    transition-delay: 0.86s;
}

#partner-section.is-visible .s3__dots span:nth-child(21) {
    transition-delay: 0.90s;
}

#partner-section.is-visible .s3__dots span:nth-child(22) {
    transition-delay: 0.94s;
}

#partner-section.is-visible .s3__dots span:nth-child(23) {
    transition-delay: 0.98s;
}

#partner-section.is-visible .s3__dots span:nth-child(24) {
    transition-delay: 1.02s;
}

#partner-section.is-visible .s3__dots span:nth-child(25) {
    transition-delay: 1.06s;
}

#partner-section.is-visible .s3__dots span:nth-child(26) {
    transition-delay: 1.10s;
}

#partner-section.is-visible .s3__dots span:nth-child(27) {
    transition-delay: 1.14s;
}

#partner-section.is-visible .s3__dots span:nth-child(28) {
    transition-delay: 1.18s;
}

#partner-section.is-visible .s3__dots span:nth-child(29) {
    transition-delay: 1.22s;
}

#partner-section.is-visible .s3__dots span:nth-child(30) {
    transition-delay: 1.26s;
}

#partner-section.is-visible .s3__dots span:nth-child(31) {
    transition-delay: 1.30s;
}

#partner-section.is-visible .s3__dots span:nth-child(32) {
    transition-delay: 1.34s;
}

#partner-section.is-visible .s3__dots span:nth-child(33) {
    transition-delay: 1.38s;
}

#partner-section.is-visible .s3__dots span:nth-child(34) {
    transition-delay: 1.42s;
}

#partner-section.is-visible .s3__dots span:nth-child(35) {
    transition-delay: 1.46s;
}

#partner-section.is-visible .s3__dots span:nth-child(36) {
    transition-delay: 1.50s;
}

#partner-section .s3__blob {
    animation: blobBreathe 12s ease-in-out infinite;
}

@keyframes blobBreathe {

    0%,
    100% {
        transform: translateY(-50%) scale(1) rotate(0deg);
    }

    33% {
        transform: translateY(-50%) scale(1.06) rotate(2deg);
    }

    66% {
        transform: translateY(-50%) scale(0.96) rotate(-1deg);
    }
}

.footer-space {
    height: 1px;
}

/* ============================================
   BOUTON FLOTTANT WHATSAPP
   ============================================ */

.whatsapp-float {
    position: fixed;
    bottom: 24px;
    right: 24px;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4), 0 0 0 0 rgba(37, 211, 102, 0.7);
    z-index: 9999;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    animation: whatsapp-pulse 2s infinite;
}

.whatsapp-float:hover {
    transform: scale(1.1) translateY(-4px);
    box-shadow: 0 8px 30px rgba(37, 211, 102, 0.5), 0 0 0 0 rgba(37, 211, 102, 0);
    animation: none;
}

.whatsapp-float:active {
    transform: scale(0.95);
}

.whatsapp-icon {
    width: 32px;
    height: 32px;
    fill: currentColor;
}

/* Tooltip au survol */
.whatsapp-tooltip {
    position: absolute;
    right: 70px;
    top: 50%;
    transform: translateY(-50%) scale(0.8);
    background: #1f2937;
    color: #fff;
    padding: 8px 14px;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 500;
    font-family: 'DM Sans', sans-serif;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.whatsapp-tooltip::after {
    content: '';
    position: absolute;
    right: -6px;
    top: 50%;
    transform: translateY(-50%);
    border-width: 6px 0 6px 6px;
    border-style: solid;
    border-color: transparent transparent transparent #1f2937;
}

.whatsapp-float:hover .whatsapp-tooltip {
    opacity: 1;
    transform: translateY(-50%) scale(1);
}

/* Animation pulse */
@keyframes whatsapp-pulse {
    0% {
        box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4), 0 0 0 0 rgba(37, 211, 102, 0.7);
    }

    70% {
        box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4), 0 0 0 20px rgba(37, 211, 102, 0);
    }

    100% {
        box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4), 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

/* Responsive mobile */
@media (max-width: 768px) {
    .whatsapp-float {
        width: 54px;
        height: 54px;
        bottom: 16px;
        right: 16px;
    }

    .whatsapp-icon {
        width: 28px;
        height: 28px;
    }

    .whatsapp-tooltip {
        display: none;
        /* Cache le tooltip sur mobile */
    }
}

/* Ajustement si footer fixe ou éléments en bas */
@media (max-width: 480px) {
    .whatsapp-float {
        bottom: 20px;
        right: 16px;
    }
}

/* ============================================
   LANGUAGE TOGGLE SWITCHER - ON/OFF
   ============================================ */

.lang-toggle {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    user-select: none;
    -webkit-tap-highlight-color: transparent;
    padding: 4px;
}

.lang-toggle__label {
    font-family: 'DM Sans', sans-serif;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.8px;
    color: rgba(93, 0, 30, 0.35);
    transition: all 0.3s ease;
    min-width: 24px;
    text-align: center;
}

.lang-toggle__label.active {
    color: #5D001E;
}

.lang-toggle__track {
    position: relative;
    width: 52px;
    height: 28px;
    background: rgba(93, 0, 30, 0.08);
    border-radius: 50px;
    border: 2px solid rgba(93, 0, 30, 0.15);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
}

.lang-toggle__track::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, #5D001E 0%, #9A1750 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
    border-radius: 50px;
}

.lang-toggle[aria-checked="true"] .lang-toggle__track {
    border-color: #5D001E;
}

.lang-toggle[aria-checked="true"] .lang-toggle__track::before {
    opacity: 1;
}

.lang-toggle__thumb {
    position: absolute;
    top: 2px;
    left: 2px;
    width: 20px;
    height: 20px;
    background: #fff;
    border-radius: 50%;
    box-shadow: 0 2px 8px rgba(93, 0, 30, 0.2), 0 0 0 1px rgba(93, 0, 30, 0.05);
    transition: all 0.4s cubic-bezier(0.68, -0.3, 0.32, 1.3);
    display: flex;
    align-items: center;
    justify-content: center;
}

.lang-toggle[aria-checked="true"] .lang-toggle__thumb {
    transform: translateX(24px);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.25), 0 0 0 1px rgba(255, 255, 255, 0.2);
}

.lang-toggle__flag {
    font-size: 11px;
    line-height: 1;
    transition: all 0.32s ease;
}

/* Hover states */
.lang-toggle:hover .lang-toggle__track {
    border-color: rgba(93, 0, 30, 0.3);
    box-shadow: 0 0 0 4px rgba(93, 0, 30, 0.06);
}

.lang-toggle:active .lang-toggle__thumb {
    transform: scale(0.92);
}

.lang-toggle[aria-checked="true"]:active .lang-toggle__thumb {
    transform: translateX(24px) scale(0.92);
}

/* Focus visible */
.lang-toggle:focus-visible {
    outline: none;
}

.lang-toggle:focus-visible .lang-toggle__track {
    box-shadow: 0 0 0 3px rgba(93, 0, 30, 0.2);
}

/* Glow pulse animation on active side */
@keyframes langGlow {

    0%,
    100% {
        text-shadow: 0 0 0 transparent;
    }

    50% {
        text-shadow: 0 0 8px rgba(93, 0, 30, 0.2);
    }
}

.lang-toggle__label.active {
    animation: langGlow 2s ease-in-out infinite;
}

/* ============================================
   HEADER INTEGRATION
   ============================================ */

.header__right-side {
    display: flex;
    align-items: center;
    gap: 1.2rem;
}

/* Mobile: show in menu */
@media (max-width: 991px) {
    .header__menu .lang-toggle {
        display: inline-flex;
        margin: 1.5rem auto 0;
        justify-content: center;
    }

    .header__right-side>.lang-toggle {
        display: none;
    }
}

@media (min-width: 992px) {
    .header__menu .lang-toggle {
        display: none;
    }

    .header__right-side>.lang-toggle {
        display: inline-flex;
    }
}

/* Compact version for very small screens */
@media (max-width: 360px) {
    .lang-toggle__label {
        font-size: 11px;
    }

    .lang-toggle__track {
        width: 46px;
        height: 26px;
    }

    .lang-toggle__thumb {
        width: 18px;
        height: 18px;
    }

    .lang-toggle[aria-checked="true"] .lang-toggle__thumb {
        transform: translateX(20px);
    }
}

#langToggle a {
    color: #2C2C2C;
    display: block;
}