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

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    font-family: 'Inter', 'Segoe UI', Arial, sans-serif;
    color: #333;
    line-height: 1.6;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

/* ============================================
   GLOBAL REVEAL ANIMATIONS
   ============================================ */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s cubic-bezier(.16,1,.3,1),
                transform 0.8s cubic-bezier(.16,1,.3,1);
}

.reveal.is-visible {
    opacity: 1;
    transform: translateY(0) translateX(0) scale(1);
}

.reveal--left {
    transform: translateX(-50px);
}

.reveal--right {
    transform: translateX(50px);
}

/* Stagger children */
[data-stagger] > * {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s cubic-bezier(.16,1,.3,1),
                transform 0.7s cubic-bezier(.16,1,.3,1);
}

[data-stagger] > *.is-visible {
    opacity: 1;
    transform: translateY(0);
}

[data-stagger] > *:nth-child(1) { transition-delay: 0s; }
[data-stagger] > *:nth-child(2) { transition-delay: 0.08s; }
[data-stagger] > *:nth-child(3) { transition-delay: 0.08s; }
[data-stagger] > *:nth-child(4) { transition-delay: 0.16s; }
[data-stagger] > *:nth-child(5) { transition-delay: 0.16s; }
[data-stagger] > *:nth-child(6) { transition-delay: 0.24s; }
[data-stagger] > *:nth-child(7) { transition-delay: 0.24s; }
[data-stagger] > *:nth-child(8) { transition-delay: 0.32s; }

/* ============================================
   UTILITIES
   ============================================ */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* ============================================
   CONTAINER
   ============================================ */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ============================================
   SECTION HEADER (shared)
   ============================================ */
.section-header {
    text-align: center;
    margin-bottom: 48px;
}

.section-title {
    font-size: 2.2rem;
    font-weight: 800;
    color: #111111;
    margin-bottom: 10px;
}

.section-subtitle {
    font-size: 1.05rem;
    color: #64748b;
    font-style: italic;
}

@media (max-width: 640px) {
    .section-title {
        font-size: 1.7rem;
    }
}

/* ============================================
   SHARED COMPONENTS
   ============================================ */
.arrow-link {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-size: 0.9rem;
    font-weight: 600;
    color: #6ab1d9;
    transition: gap 0.25s, color 0.2s;
}

.arrow-link span {
    display: inline-block;
    transition: transform 0.25s;
}

.arrow-link:hover {
    color: #6ab1d9;
    gap: 8px;
}

.arrow-link:hover span {
    transform: translateX(3px);
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 32px;
    font-size: 0.95rem;
    font-weight: 600;
    border-radius: 6px;
    cursor: pointer;
    transition: background-color 0.2s, transform 0.1s, box-shadow 0.2s;
}

.btn--primary {
    background-color: #6ab1d9;
    color: #fff;
    border: 2px solid #6ab1d9;
}

.btn--primary:hover {
    background-color: transparent;
    color: #6ab1d9;
    border-color: #6ab1d9;
    transform: translateY(-1px);
    box-shadow: 0 4px 14px rgba(37, 99, 235, 0.4);
}

.btn--outline {
    background-color: transparent;
    color: #fff;
    border: 2px solid rgba(255, 255, 255, 0.7);
}

.btn--outline:hover {
    background-color: rgba(255, 255, 255, 0.1);
    border-color: #fff;
    transform: translateY(-1px);
}

/* ============================================
   SITE HEADER (wrapper)
   ============================================ */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 200;
    transition: background-color 0.35s, box-shadow 0.35s;
}

.site-header.is-scrolled {
    background-color: #fff;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
}

/* Pages internes : header blanc + top bar visible */
.site-header--solid {
    background-color: #fff;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
}

.site-header--solid .top-bar {
    background-color: #111111;
}

.site-header--solid .navbar__brand {
    opacity: 1;
}

.site-header--solid .navbar__link {
    color: #475569;
}

.site-header--solid .navbar__link:hover {
    color: #111111;
}

.site-header--solid .navbar__link--active {
    color: #6ab1d9;
}

.site-header--solid .navbar__cta {
    background-color: #6ab1d9;
    color: #fff;
    border-color: #6ab1d9;
}

.site-header--solid .navbar__cta:hover {
    background-color: transparent;
    border-color: #6ab1d9;
    color: #6ab1d9;
}

.site-header--solid .navbar__toggle span {
    background-color: #111111;
}

/* ============================================
   TOP BAR
   ============================================ */
.top-bar {
    background-color: rgba(106, 177, 217, 0.35);
    color: #fff;
    font-size: 0.85rem;
    padding: 8px 0;
    transition: opacity 0.3s, max-height 0.3s, padding 0.3s;
    max-height: 50px;
    overflow: hidden;
}

.site-header.is-scrolled .top-bar {
    opacity: 0;
    max-height: 0;
    padding: 0;
}

.top-bar .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.top-bar__contact {
    display: flex;
    align-items: center;
    gap: 24px;
}

.top-bar__contact a {
    display: flex;
    align-items: center;
    gap: 6px;
    color: #fff;
    transition: color 0.2s;
}

.top-bar__contact a:hover {
    color: #fff;
}

.top-bar__contact svg {
    width: 14px;
    height: 14px;
    flex-shrink: 0;
}

.top-bar__social {
    display: flex;
    align-items: center;
    gap: 16px;
}

.top-bar__social a {
    display: flex;
    align-items: center;
    justify-content: center;
    color: #cbd5e1;
    transition: color 0.2s;
}

.top-bar__social a:hover {
    color: #fff;
}

.top-bar__social svg {
    width: 16px;
    height: 16px;
}

/* ============================================
   NAVBAR
   ============================================ */
.navbar {
    background-color: transparent;
    padding: 0;
    transition: background-color 0.35s;
}

.navbar .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 64px;
}

.navbar__brand {
    display: flex;
    align-items: center;
    transition: opacity 0.35s;
}

.navbar__logo {
    height: 175px;
    width: auto;
    display: block;
}

.site-header.is-scrolled .navbar__brand {
    opacity: 1;
}

.navbar__menu {
    display: flex;
    align-items: center;
    gap: 32px;
    flex: 1;
    justify-content: center;
}

.navbar__link {
    font-size: 0.95rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.85);
    padding: 8px 0;
    position: relative;
    transition: color 0.3s;
}

.navbar__link:hover {
    color: #fff;
}

.navbar__link--active {
    color: #6ab1d9;
}

.site-header.is-scrolled .navbar__link {
    color: #475569;
}

.site-header.is-scrolled .navbar__link:hover {
    color: #111111;
}

.site-header.is-scrolled .navbar__link--active {
    color: #6ab1d9;
}

.navbar__cta {
    display: inline-flex;
    align-items: center;
    padding: 10px 24px;
    background-color: #fff;
    color: #111111;
    font-size: 0.9rem;
    font-weight: 600;
    border-radius: 50px;
    border: 2px solid transparent;
    cursor: pointer;
    transition: all 0.3s;
}

.navbar__cta:hover {
    background-color: transparent;
    color: #fff;
    border-color: #fff;
    transform: translateY(-1px);
}

.site-header.is-scrolled .navbar__cta {
    background-color: #6ab1d9;
    color: #fff;
    border-color: #6ab1d9;
}

.site-header.is-scrolled .navbar__cta:hover {
    background-color: transparent;
    border-color: #6ab1d9;
    color: #6ab1d9;
}

.navbar__cta:active {
    transform: translateY(0);
}

.navbar__cta-mobile {
    display: none;
}

.navbar__mobile-overlay {
    display: none;
}

.navbar__menu-footer {
    display: none;
}

.navbar__menu-links {
    display: contents;
}

/* ============================================
   HAMBURGER (MOBILE)
   ============================================ */
.navbar__toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
}

.navbar__toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background-color: #fff;
    margin: 5px 0;
    border-radius: 2px;
    transition: all 0.3s;
}

.site-header.is-scrolled .navbar__toggle span {
    background-color: #111111;
}

/* Hamburger -> croix */
.navbar__toggle.is-active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.navbar__toggle.is-active span:nth-child(2) {
    opacity: 0;
}

.navbar__toggle.is-active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* Fond header quand menu ouvert */
.site-header.menu-open {
    background-color: #fff;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
}

.site-header.menu-open .navbar__brand {
    opacity: 1;
}

.site-header.menu-open .navbar__toggle span {
    background-color: #111111;
}

/* ============================================
   HERO
   ============================================ */
.hero {
    position: relative;
    min-height: 85vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero__video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 30%;
    z-index: 0;
    will-change: transform;
}

.hero__overlay {
    position: absolute;
    inset: 0;
    background: rgba(15, 23, 42, 0.55);
    z-index: 1;
}

.hero__content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 720px;
    padding: 60px 20px;
}

/* Hero cascade animation */
.hero__title,
.hero__subtitle,
.hero__actions {
    opacity: 0;
    transform: translateY(30px);
    animation: heroFadeIn 0.9s cubic-bezier(.16,1,.3,1) forwards;
}

.hero__title { animation-delay: 0.3s; }
.hero__subtitle { animation-delay: 0.55s; }
.hero__actions { animation-delay: 0.8s; }

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

.hero__title {
    font-size: 3rem;
    font-weight: 700;
    color: #fff;
    line-height: 1.15;
    margin-bottom: 18px;
}

.hero__subtitle {
    font-size: 1.15rem;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 36px;
    font-style: italic;
}

.hero__actions {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}


@media (max-width: 768px) {
    .hero {
        min-height: 80vh;
        padding-top: 100px;
    }

    .hero__title {
        font-size: 1.8rem;
    }

    .hero__subtitle {
        font-size: 0.95rem;
        margin-bottom: 28px;
    }

    .hero__actions {
        flex-direction: column;
        align-items: center;
        gap: 12px;
    }

    .hero__actions .btn {
        width: 100%;
        max-width: 260px;
        padding: 12px 24px;
        font-size: 0.88rem;
    }

    /* Hero animations plus rapides sur mobile */
    .hero__title { animation-delay: 0.2s; }
    .hero__subtitle { animation-delay: 0.35s; }
    .hero__actions { animation-delay: 0.5s; }
}

/* ============================================
   TRUST (Ils nous font confiance)
   ============================================ */
.trust {
    padding: 48px 0 56px;
    background-color: #f8fafc;
    overflow: hidden;
}


.trust__label {
    text-align: center;
    font-size: 1rem;
    font-weight: 600;
    color: #111111;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 36px;
}

/* Slider infini */
.trust__slider {
    position: relative;
    width: 100%;
    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);
}

.trust__track {
    display: flex;
    align-items: center;
    gap: 64px;
    width: max-content;
    animation: trust-scroll 30s linear infinite;
}

.trust__track:hover {
    animation-play-state: paused;
}

@keyframes trust-scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

.trust__item {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 12px 8px;
    transition: transform 0.3s, filter 0.3s, opacity 0.3s;
    filter: grayscale(100%);
    opacity: 0.45;
}

.trust__item:hover {
    filter: grayscale(0%);
    opacity: 1;
    transform: scale(1.1);
}

.trust__item svg {
    height: 40px;
    width: auto;
}

/* ============================================
   SERVICES (Nos Prestations)
   ============================================ */
.services {
    padding: 80px 0 90px;
    background-color: #fff;
}


.services .section-header {
    margin-bottom: 56px;
}

.services .section-title {
    margin-bottom: 12px;
}

.services__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

/* Card */
.services__card {
    position: relative;
    background: #fff;
    border: 1px solid #e8ecf2;
    border-radius: 16px;
    padding: 36px 30px 32px;
    transition: transform 0.35s cubic-bezier(.25,.8,.25,1),
                box-shadow 0.35s cubic-bezier(.25,.8,.25,1),
                border-color 0.3s;
    cursor: default;
}

.services__card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 40px rgba(15, 23, 42, 0.08), 0 8px 16px rgba(15, 23, 42, 0.04);
    border-color: #6ab1d9;
}

/* Icon */
.services__icon {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 22px;
    transition: transform 0.3s;
}

.services__icon svg {
    width: 26px;
    height: 26px;
}

.services__icon--blue {
    background: rgba(37, 99, 235, 0.1);
    color: #6ab1d9;
}

.services__icon--indigo {
    background: rgba(79, 70, 229, 0.1);
    color: #6ab1d9;
}

.services__icon--violet {
    background: rgba(124, 58, 237, 0.1);
    color: #6ab1d9;
}

.services__icon--emerald {
    background: rgba(16, 185, 129, 0.1);
    color: #10b981;
}

.services__icon--amber {
    background: rgba(245, 158, 11, 0.1);
    color: #f59e0b;
}

.services__icon--rose {
    background: rgba(244, 63, 94, 0.1);
    color: #f43f5e;
}

/* Text */
.services__name {
    font-size: 1.1rem;
    font-weight: 700;
    color: #111111;
    margin-bottom: 10px;
}

.services__desc {
    font-size: 0.92rem;
    color: #64748b;
    line-height: 1.65;
    margin-bottom: 20px;
}

/* Responsive */
@media (max-width: 1024px) {
    .services__grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 640px) {
    .services {
        padding: 56px 0 64px;
    }

    .services__grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .services__grid .services__card:nth-child(n+3) {
        display: none;
    }

    .services__grid.is-expanded .services__card:nth-child(n+3) {
        display: block;
    }
}

/* Mobile toggle buttons (shared) */
.section-toggle {
    display: none;
}

@media (max-width: 640px) {
    .section-toggle {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 6px;
        margin: 28px auto 0;
        padding: 12px 28px;
        font-size: 0.9rem;
        font-weight: 600;
        color: #6ab1d9;
        background: none;
        border: 2px solid #6ab1d9;
        border-radius: 50px;
        cursor: pointer;
        font-family: inherit;
        transition: background-color 0.2s, color 0.2s;
    }

    .section-toggle:hover {
        background-color: #6ab1d9;
        color: #fff;
    }
}

/* ============================================
   WHY (Pourquoi nous choisir)
   ============================================ */
.why {
    padding: 90px 0;
    background-color: #f8fafc;
}


.why__grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 60px;
    align-items: center;
}

.why__title {
    font-size: 2.1rem;
    font-weight: 800;
    color: #111111;
    margin-bottom: 18px;
    line-height: 1.2;
}

.why__text {
    font-size: 0.98rem;
    color: #64748b;
    line-height: 1.75;
    margin-bottom: 28px;
}

.why__list {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 34px;
}

.why__list li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.95rem;
    font-weight: 500;
    color: #334155;
}

.why__list li svg {
    width: 22px;
    height: 22px;
    flex-shrink: 0;
    color: #22c55e;
}


/* Video */
.why__media {
    position: relative;
}

.why__video-wrapper {
    position: relative;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 24px 48px rgba(15, 23, 42, 0.12), 0 8px 20px rgba(15, 23, 42, 0.06);
    aspect-ratio: 4 / 3;
    background: #111111;
    max-width: 420px;
    margin-left: auto;
}

.why__video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}


/* Decorative dots behind video */
.why__media::before {
    content: '';
    position: absolute;
    top: -16px;
    right: -16px;
    width: 120px;
    height: 120px;
    background-image: radial-gradient(#6ab1d9 1.5px, transparent 1.5px);
    background-size: 12px 12px;
    opacity: 0.2;
    z-index: -1;
    border-radius: 8px;
}

.why__media::after {
    content: '';
    position: absolute;
    bottom: -16px;
    left: -16px;
    width: 80px;
    height: 80px;
    background: #6ab1d9;
    opacity: 0.08;
    border-radius: 16px;
    z-index: -1;
}

.why__cta--mobile {
    display: none;
}

/* Responsive */
@media (max-width: 900px) {
    .why__grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .why__video-wrapper {
        margin-left: auto;
        margin-right: auto;
    }

    .why__cta--desktop {
        display: none;
    }

    .why__cta--mobile {
        display: inline-flex;
        margin: 32px auto 0;
    }
}

@media (max-width: 640px) {
    .why {
        padding: 56px 0;
    }

    .why__title {
        font-size: 1.6rem;
    }
}

/* ============================================
   GALLERY (Notre Galerie)
   ============================================ */
.gallery {
    padding: 80px 0 90px;
    background-color: #fff;
}

.gallery__grid {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: 220px 220px;
    gap: 14px;
}

.gallery__item {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    cursor: pointer;
}

.gallery__item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s cubic-bezier(.25,.8,.25,1);
}

.gallery__item:hover img {
    transform: scale(1.08);
}

/* Overlay au hover */
.gallery__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(15, 23, 42, 0.7) 0%, transparent 60%);
    display: flex;
    align-items: flex-end;
    padding: 20px;
    opacity: 0;
    transition: opacity 0.35s;
}

.gallery__item:hover .gallery__overlay {
    opacity: 1;
}

.gallery__label {
    color: #fff;
    font-size: 0.95rem;
    font-weight: 600;
    transform: translateY(8px);
    transition: transform 0.35s;
}

.gallery__item:hover .gallery__label {
    transform: translateY(0);
}


/* Responsive */
@media (max-width: 1024px) {
    .gallery__grid {
        grid-template-columns: repeat(3, 1fr);
        grid-auto-rows: 200px;
    }
}

@media (max-width: 768px) {
    .gallery__grid {
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: repeat(4, 180px);
    }
}

@media (max-width: 640px) {
    .gallery__grid .gallery__item:nth-child(n+3) {
        display: none;
    }

    .gallery__grid.is-expanded .gallery__item:nth-child(n+3) {
        display: block;
    }
}

@media (max-width: 480px) {
    .gallery__grid {
        grid-template-columns: 1fr;
        grid-template-rows: auto;
    }

    .gallery__item {
        height: 200px;
    }
}

/* ============================================
   TESTIMONIALS (Ce que disent nos clients)
   ============================================ */
.testimonials {
    padding: 80px 0 90px;
    background-color: #f4f9fc;
    overflow: hidden;
    border-top: 1px solid #d0e8f3;
    border-bottom: 1px solid #d0e8f3;
}

/* Version pinned (locomotive scroll) */
.testimonials--pinned {
    padding: 0;
    overflow: visible;
}

.testimonials__pin {
    padding: 80px 0 60px;
    overflow: hidden;
}

.testimonials__track {
    display: flex;
    gap: 28px;
    width: max-content;
    padding: 0 60px;
}

/* Card */
.testimonials__card {
    flex-shrink: 0;
    width: 360px;
    display: flex;
    flex-direction: column;
    background: #fff;
    border: 1px solid #e8ecf2;
    border-radius: 16px;
    padding: 28px 24px;
    transition: border-color 0.3s;
}

.testimonials__card:hover {
    border-color: #6ab1d9;
}

.testimonials__stars {
    display: flex;
    gap: 3px;
    margin-bottom: 10px;
}

.testimonials__stars svg {
    width: 18px;
    height: 18px;
    color: #f59e0b;
}

.testimonials__text {
    font-size: 0.95rem;
    color: #475569;
    line-height: 1.7;
    font-style: italic;
    flex: 1;
    margin-bottom: 14px;
}

.testimonials__author {
    display: flex;
    align-items: center;
    gap: 14px;
}

.testimonials__avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: linear-gradient(135deg, #6ab1d9, #6ab1d9);
    color: #fff;
    font-size: 0.85rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.testimonials__name {
    font-size: 0.95rem;
    font-weight: 700;
    color: #111111;
}

.testimonials__role {
    font-size: 0.82rem;
    color: #94a3b8;
    margin-top: 2px;
}

/* Responsive */
@media (max-width: 640px) {
    .testimonials {
        padding: 56px 0 64px;
    }

    .testimonials__card {
        width: 280px;
    }
}

@media (max-width: 360px) {
    .testimonials__card {
        width: 240px;
        padding: 22px 18px;
    }
}

/* ============================================
   BLOG (Derniers Articles)
   ============================================ */
.blog {
    padding: 80px 0 90px;
    background-color: #fff;
}

.blog__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

/* Card */
.blog__card {
    background: #fff;
    border: 1px solid #e8ecf2;
    border-radius: 16px;
    overflow: hidden;
    transition: transform 0.35s cubic-bezier(.25,.8,.25,1),
                box-shadow 0.35s cubic-bezier(.25,.8,.25,1);
}

.blog__card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 40px rgba(15, 23, 42, 0.08), 0 8px 16px rgba(15, 23, 42, 0.04);
}

/* Image */
.blog__image {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.blog__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s cubic-bezier(.25,.8,.25,1);
}

.blog__card:hover .blog__image img {
    transform: scale(1.06);
}

.blog__tag {
    position: absolute;
    top: 14px;
    left: 14px;
    background: #6ab1d9;
    color: #fff;
    font-size: 0.75rem;
    font-weight: 600;
    padding: 5px 14px;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Body */
.blog__body {
    padding: 24px 24px 28px;
}

.blog__meta {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.8rem;
    color: #94a3b8;
    margin-bottom: 12px;
}

.blog__meta-sep {
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: #cbd5e1;
}

.blog__name {
    font-size: 1.05rem;
    font-weight: 700;
    color: #111111;
    line-height: 1.4;
    margin-bottom: 10px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.blog__excerpt {
    font-size: 0.9rem;
    color: #64748b;
    line-height: 1.65;
    margin-bottom: 18px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}


/* Footer CTA */
.blog__footer {
    text-align: center;
    margin-top: 44px;
}

.blog__btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 13px 32px;
    font-size: 0.95rem;
    font-weight: 600;
    color: #6ab1d9;
    border: 2px solid #6ab1d9;
    border-radius: 50px;
    transition: all 0.25s;
}

.blog__btn span {
    display: inline-block;
    transition: transform 0.25s;
}

.blog__btn:hover {
    background-color: #6ab1d9;
    color: #fff;
    gap: 10px;
}

.blog__btn:hover span {
    transform: translateX(3px);
}


/* Responsive */
@media (max-width: 900px) {
    .blog__grid {
        grid-template-columns: 1fr;
        max-width: 600px;
        margin: 0 auto;
    }
}

@media (max-width: 640px) {
    .blog {
        padding: 56px 0 64px;
    }

    .blog__grid .blog__card:nth-child(n+2) {
        display: none;
    }

    .blog__grid.is-expanded .blog__card:nth-child(n+2) {
        display: block;
    }

    .blog__footer {
        display: none;
    }

    .blog__grid.is-expanded ~ .blog__footer {
        display: block;
    }
}

/* ============================================
   TEAM (Notre Équipe)
   ============================================ */
.team {
    padding: 80px 0 90px;
    background-color: #f8fafc;
}

.team__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 28px;
}

/* Card */
.team__card {
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid #e8ecf2;
    transition: transform 0.35s cubic-bezier(.25,.8,.25,1),
                box-shadow 0.35s cubic-bezier(.25,.8,.25,1);
}

.team__card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 40px rgba(15, 23, 42, 0.08);
}

/* Photo */
.team__photo {
    position: relative;
    height: 280px;
    overflow: hidden;
}

.team__photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top;
    transition: transform 0.5s cubic-bezier(.25,.8,.25,1);
}

.team__card:hover .team__photo img {
    transform: scale(1.05);
}

/* Social overlay */
.team__social {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    display: flex;
    justify-content: center;
    gap: 10px;
    padding: 16px;
    background: linear-gradient(to top, rgba(15, 23, 42, 0.6), transparent);
    transform: translateY(100%);
    transition: transform 0.35s cubic-bezier(.25,.8,.25,1);
}

.team__card:hover .team__social {
    transform: translateY(0);
}

.team__social a {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(4px);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    transition: background 0.2s;
}

.team__social a:hover {
    background: #6ab1d9;
}

.team__social svg {
    width: 16px;
    height: 16px;
}

/* Info */
.team__info {
    padding: 20px 20px 24px;
    text-align: center;
}

.team__name {
    font-size: 1.05rem;
    font-weight: 700;
    color: #111111;
    margin-bottom: 4px;
}

.team__role {
    font-size: 0.85rem;
    color: #6ab1d9;
    font-weight: 500;
}


/* Responsive */
@media (max-width: 1024px) {
    .team__grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 640px) {
    .team {
        padding: 56px 0 64px;
    }

    .team__grid {
        grid-template-columns: 1fr;
        max-width: 360px;
        margin: 0 auto;
    }

    .team__grid .team__card:nth-child(n+3) {
        display: none;
    }

    .team__grid.is-expanded .team__card:nth-child(n+3) {
        display: block;
    }
}

/* ============================================
   NEWSLETTER
   ============================================ */
.newsletter {
    padding: 80px 0;
    background-color: #0A0A0A;
}


.newsletter__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
}

.newsletter__text {
    flex: 1;
    max-width: 480px;
}

.newsletter__title {
    font-size: 2rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 12px;
}

.newsletter__desc {
    font-size: 0.95rem;
    color: #94a3b8;
    line-height: 1.7;
}

.newsletter__form {
    flex: 1;
    max-width: 480px;
}

.newsletter__field {
    display: flex;
    gap: 0;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 50px;
    padding: 5px;
    transition: border-color 0.3s;
}

.newsletter__field:focus-within {
    border-color: rgba(255, 255, 255, 0.35);
}

.newsletter__input {
    flex: 1;
    background: transparent;
    border: none;
    outline: none;
    padding: 14px 22px;
    font-size: 0.95rem;
    color: #fff;
    font-family: inherit;
}

.newsletter__input::placeholder {
    color: #64748b;
}

.newsletter__btn {
    background: #6ab1d9;
    color: #fff;
    border: none;
    padding: 14px 30px;
    border-radius: 50px;
    font-size: 0.92rem;
    font-weight: 600;
    cursor: pointer;
    font-family: inherit;
    white-space: nowrap;
    transition: background-color 0.2s, transform 0.15s;
}

.newsletter__btn:hover {
    background: #6ab1d9;
    transform: translateY(-1px);
}

.newsletter__note {
    margin-top: 14px;
    font-size: 0.78rem;
    color: #475569;
    padding-left: 22px;
}


/* Responsive */
@media (max-width: 768px) {
    .newsletter {
        padding: 56px 0;
    }

    .newsletter__inner {
        flex-direction: column;
        gap: 32px;
        text-align: center;
    }

    .newsletter__text,
    .newsletter__form {
        max-width: 100%;
    }

    .newsletter__title {
        font-size: 1.6rem;
    }

    .newsletter__note {
        padding-left: 0;
        text-align: center;
    }
}

@media (max-width: 640px) {
    .newsletter__field {
        flex-direction: column;
        border-radius: 16px;
        padding: 8px;
    }

    .newsletter__input {
        text-align: center;
    }

    .newsletter__btn {
        width: 100%;
    }
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
    background-color: #0A0A0A;
    color: #cbd5e1;
    font-size: 0.9rem;
}

.footer__main {
    padding: 56px 0 0;
}


.footer__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
}

.footer__brand {
    display: inline-block;
    margin-bottom: 14px;
}

.footer__logo {
    height: 180px;
    width: auto;
    display: block;
    margin-top: -20px;
    filter: brightness(0) invert(1);
}

.footer__desc {
    color: #94a3b8;
    line-height: 1.7;
    margin-bottom: 20px;
    text-align: center;
}

.footer__social {
    display: flex;
    gap: 12px;
    justify-content: center;
}

.footer__social-bar {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 12px;
    padding: 16px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    margin-top: 20px;
    margin-bottom: 0;
}

.footer__social a,
.footer__social-bar a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.08);
    color: #cbd5e1;
    transition: background-color 0.2s, color 0.2s;
}

.footer__social a:hover,
.footer__social-bar a:hover {
    background-color: #6ab1d9;
    color: #fff;
}

.footer__social svg,
.footer__social-bar svg {
    width: 16px;
    height: 16px;
}

.footer__title {
    font-size: 1rem;
    font-weight: 600;
    color: #fff;
    margin-bottom: 20px;
}

.footer__links li {
    margin-bottom: 10px;
}

.footer__links a {
    color: #94a3b8;
    transition: color 0.2s, padding-left 0.2s;
}

.footer__links a:hover {
    color: #fff;
    padding-left: 4px;
}

.footer__contact {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.footer__contact li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    color: #94a3b8;
}

.footer__contact li svg {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
    margin-top: 2px;
    color: #6ab1d9;
}

.footer__contact a {
    color: #94a3b8;
    transition: color 0.2s;
}

.footer__contact a:hover {
    color: #fff;
}

.footer__map {
    width: 100%;
    aspect-ratio: 4 / 3;
    border-radius: 10px;
    overflow: hidden;
    background-color: #111111;
    position: relative;
}

.footer__map iframe {
    width: 100%;
    height: 100%;
    display: block;
}

/* Footer Bottom — même épaisseur que la zone au-dessus des icônes */
.footer__bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding: 16px 0;
}

.footer__social--mobile {
    display: none;
}

.footer__bottom .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.footer__bottom p {
    color: #64748b;
    font-size: 0.85rem;
}

.footer__legal {
    display: flex;
    gap: 24px;
}

.footer__legal a {
    color: #64748b;
    font-size: 0.85rem;
    transition: color 0.2s;
}

.footer__legal a:hover {
    color: #cbd5e1;
}

.footer__legal-btn {
    background: none;
    border: none;
    padding: 0;
    font: inherit;
    color: #64748b;
    font-size: 0.85rem;
    cursor: pointer;
    transition: color 0.2s;
}

.footer__legal-btn:hover {
    color: #cbd5e1;
}

/* ============================================
   COOKIE BANNER
   ============================================ */
.cookie-banner {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 300;
    background: #fff;
    border-top: 1px solid #e8e4df;
    box-shadow: 0 -6px 28px rgba(0, 0, 0, 0.1);
    max-height: min(85vh, 520px);
    overflow-y: auto;
}

.cookie-banner[hidden] {
    display: none !important;
}

.cookie-banner__wrap {
    padding: 18px 20px 22px;
}

.cookie-banner__view--simple {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.cookie-banner__text {
    margin: 0;
    font-size: 0.88rem;
    line-height: 1.65;
    color: #475569;
    max-width: 820px;
}

.cookie-banner__text a {
    color: #6ab1d9;
    font-weight: 600;
    text-decoration: underline;
}

.cookie-banner__text a:hover {
    color: #4a9bc4;
}

.cookie-banner__actions {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 10px;
}

.cookie-banner__actions .btn {
    flex: 1 1 auto;
    min-width: 120px;
    justify-content: center;
}

.cookie-banner__custom-title {
    margin: 0 0 8px;
    font-size: 1.05rem;
    font-weight: 700;
    color: #111;
}

.cookie-banner__custom-intro {
    margin: 0 0 16px;
    font-size: 0.85rem;
    line-height: 1.55;
    color: #64748b;
}

.cookie-banner__categories {
    list-style: none;
    margin: 0 0 20px;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.cookie-banner__cat {
    background: #f8f7f5;
    border: 1px solid #e8e4df;
    border-radius: 12px;
    padding: 14px 16px;
}

.cookie-banner__cat-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    margin-bottom: 6px;
}

.cookie-banner__cat-name {
    font-size: 0.9rem;
    font-weight: 700;
    color: #111;
}

.cookie-banner__badge {
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    color: #64748b;
    background: #e2e8f0;
    padding: 4px 10px;
    border-radius: 6px;
    white-space: nowrap;
}

.cookie-banner__cat-desc {
    margin: 0;
    font-size: 0.8rem;
    line-height: 1.5;
    color: #64748b;
}

.cookie-banner__toggle {
    position: relative;
    display: inline-flex;
    align-items: center;
    flex-shrink: 0;
    cursor: pointer;
}

.cookie-banner__toggle input {
    position: absolute;
    inset: 0;
    width: 46px;
    height: 26px;
    margin: 0;
    opacity: 0;
    cursor: pointer;
    z-index: 1;
}

.cookie-banner__toggle-ui {
    display: block;
    width: 46px;
    height: 26px;
    border-radius: 26px;
    background: #cbd5e1;
    transition: background 0.2s;
    position: relative;
}

.cookie-banner__toggle-ui::after {
    content: "";
    position: absolute;
    top: 3px;
    left: 3px;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: #fff;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
    transition: transform 0.2s;
}

.cookie-banner__toggle input:checked + .cookie-banner__toggle-ui {
    background: #6ab1d9;
}

.cookie-banner__toggle input:checked + .cookie-banner__toggle-ui::after {
    transform: translateX(20px);
}

.cookie-banner__toggle input:focus-visible + .cookie-banner__toggle-ui {
    outline: 2px solid #6ab1d9;
    outline-offset: 2px;
}

.cookie-banner__actions--custom {
    justify-content: flex-end;
}

.cookie-banner__actions--custom .btn {
    flex: 0 1 auto;
    min-width: 140px;
}

@media (max-width: 640px) {
    .cookie-banner__actions .btn {
        width: 100%;
        flex: 1 1 100%;
    }

    .cookie-banner__actions--custom {
        flex-direction: column-reverse;
    }

    .cookie-banner__actions--custom .btn {
        width: 100%;
    }

    .cookie-banner__cat-top {
        flex-wrap: wrap;
    }
}

.cookie-banner:not([hidden]) ~ .scroll-top {
    bottom: min(200px, 35vh);
}

@media (max-width: 640px) {
    .cookie-banner:not([hidden]) ~ .scroll-top {
        bottom: min(220px, 40vh);
    }
}

/* ============================================
   SCROLL TO TOP
   ============================================ */
.scroll-top {
    position: fixed;
    bottom: 32px;
    right: 32px;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background-color: #6ab1d9;
    color: #fff;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
    opacity: 0;
    visibility: hidden;
    transform: translateY(16px);
    transition: opacity 0.3s, visibility 0.3s, transform 0.3s,
                background-color 0.3s, color 0.3s, box-shadow 0.3s, border-color 0.3s;
    z-index: 200;
}

.scroll-top.is-visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.scroll-top:hover {
    background-color: transparent;
    color: #6ab1d9;
    border: 2px solid #6ab1d9;
    box-shadow: none;
}

/* Variante claire sur fond sombre */
.scroll-top--light {
    background-color: #fff;
    color: #6ab1d9;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.scroll-top--light:hover {
    background-color: transparent;
    color: #fff;
    border: 2px solid #fff;
    box-shadow: none;
}

.scroll-top svg {
    width: 20px;
    height: 20px;
}

/* ============================================
   PAGE BANNER (inner pages)
   ============================================ */
.page-banner {
    position: relative;
    min-height: 340px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(180deg, #eef6fb 0%, #e2f0f7 100%);
    border-bottom: 1px solid #c8e0ee;
    overflow: hidden;
}

.page-banner__content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 140px 20px 60px;
}

.page-banner__title {
    font-size: 2.8rem;
    font-weight: 800;
    color: #111111;
    margin-bottom: 12px;
    opacity: 0;
    transform: translateY(25px);
    animation: heroFadeIn 0.8s cubic-bezier(.16,1,.3,1) 0.2s forwards;
}

.page-banner__subtitle {
    font-size: 1.1rem;
    color: #64748b;
    max-width: 500px;
    margin: 0 auto 20px;
    opacity: 0;
    transform: translateY(25px);
    animation: heroFadeIn 0.8s cubic-bezier(.16,1,.3,1) 0.4s forwards;
}

.page-banner__breadcrumb {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-size: 0.9rem;
    color: #94a3b8;
    opacity: 0;
    transform: translateY(25px);
    animation: heroFadeIn 0.8s cubic-bezier(.16,1,.3,1) 0.55s forwards;
}

.page-banner__breadcrumb a {
    color: #64748b;
    transition: color 0.2s;
}

.page-banner__breadcrumb a:hover {
    color: #111111;
}

.page-banner__breadcrumb span:last-child {
    color: #6ab1d9;
    font-weight: 600;
}

/* ============================================
   SVC CARDS (Services page — card layout)
   ============================================ */
.svc-cards {
    padding: 80px 0 90px;
    background: #fff;
}

.svc-cards__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

/* Card */
.svc-card {
    background: #fff;
    border-radius: 16px;
    border: 1px solid #e8ecf2;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: transform 0.35s cubic-bezier(.25,.8,.25,1),
                box-shadow 0.35s cubic-bezier(.25,.8,.25,1);
}

.svc-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 40px rgba(15, 23, 42, 0.08), 0 8px 16px rgba(15, 23, 42, 0.04);
    border-color: #6ab1d9;
}

/* Image + badge */
.svc-card__image {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.svc-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s cubic-bezier(.25,.8,.25,1);
}

.svc-card:hover .svc-card__image img {
    transform: scale(1.05);
}

/* Body */
.svc-card__body {
    padding: 24px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.svc-card__name {
    font-size: 1.1rem;
    font-weight: 700;
    color: #111111;
    margin-bottom: 8px;
}

.svc-card__desc {
    font-size: 0.9rem;
    color: #64748b;
    line-height: 1.65;
    margin-bottom: 18px;
}

/* Features list */
.svc-card__features {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 24px;
    flex: 1;
}

.svc-card__features li {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.85rem;
    color: #334155;
}

.svc-card__features svg {
    width: 16px;
    height: 16px;
    color: #6ab1d9;
    flex-shrink: 0;
}

/* Footer with price + link */
.svc-card__footer {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    padding-top: 18px;
    border-top: 1px solid #f1f5f9;
    margin-top: auto;
}

.svc-card__price-label {
    display: block;
    font-size: 0.75rem;
    color: #94a3b8;
    font-weight: 500;
}

.svc-card__price-value {
    font-size: 1.5rem;
    font-weight: 800;
    color: #111111;
}

/* Responsive */
@media (max-width: 1024px) {
    .svc-cards__grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 640px) {
    .svc-cards {
        padding: 56px 0 64px;
    }

    .svc-cards__grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .svc-card__image {
        height: 180px;
    }

    .svc-cards__grid .svc-card:nth-child(n+4) {
        display: none;
    }

    .svc-cards__grid.is-expanded .svc-card:nth-child(n+4) {
        display: flex;
    }
}

/* ============================================
   SVC PROCESS (Notre Approche)
   ============================================ */
.svc-process {
    position: relative;
    background: #fff;
}

.svc-process__pin {
    padding: 80px 0 60px;
}

.svc-process__grid {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    padding: 0 40px;
}

/* GSAP gère l'animation — les éléments commencent invisibles */
.svc-reveal {
    opacity: 0;
}

.svc-process__step {
    flex: 1;
    max-width: 280px;
    text-align: center;
    padding: 40px 28px;
    border-radius: 16px;
    border: 1px solid #e8ecf2;
    background: #fff;
    position: relative;
    transition: transform 0.35s cubic-bezier(.25,.8,.25,1),
                box-shadow 0.35s cubic-bezier(.25,.8,.25,1),
                border-color 0.3s;
}

.svc-process__step:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 40px rgba(15, 23, 42, 0.08);
    border-color: #6ab1d9;
}

/* Flèche SVG entre les étapes */
.svc-process__arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    width: 80px;
    color: #94a3b8;
}

.svc-process__arrow svg {
    width: 44px;
    height: 44px;
}

.svc-process__number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: linear-gradient(135deg, #6ab1d9, #6ab1d9);
    color: #fff;
    font-size: 1.2rem;
    font-weight: 800;
    margin-bottom: 20px;
}

.svc-process__name {
    font-size: 1.1rem;
    font-weight: 700;
    color: #111111;
    margin-bottom: 10px;
}

.svc-process__desc {
    font-size: 0.9rem;
    color: #64748b;
    line-height: 1.65;
}

/* ============================================
   SVC CTA (Appel à l'action)
   ============================================ */
.svc-cta {
    padding: 80px 0;
    background: #6ab1d9;
}

.svc-cta__inner {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.svc-cta__title {
    font-size: 2rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 16px;
}

.svc-cta__desc {
    font-size: 1.05rem;
    color: rgba(255, 255, 255, 0.75);
    margin-bottom: 32px;
    line-height: 1.7;
}

.svc-cta__actions {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

.btn--white {
    background-color: #fff;
    color: #6ab1d9;
    border: 2px solid #fff;
}

.btn--white:hover {
    background-color: transparent;
    color: #fff;
    border-color: #fff;
    transform: translateY(-1px);
}

.btn--outline-dark {
    background-color: transparent;
    color: #fff;
    border: 2px solid rgba(255, 255, 255, 0.4);
}

.btn--outline-dark:hover {
    background-color: rgba(255, 255, 255, 0.1);
    border-color: #fff;
    transform: translateY(-1px);
}

/* ============================================
   SVC RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
    .svc-process__pin {
        height: auto;
        padding: 60px 0;
    }

    .svc-process__grid {
        flex-wrap: wrap;
        gap: 20px;
        padding: 0 20px;
    }

    .svc-reveal {
        opacity: 1;
    }

    .svc-process__step {
        flex: 1 1 calc(50% - 10px);
        max-width: none;
    }

    .svc-process__arrow {
        display: none;
    }
}

@media (max-width: 768px) {
    .page-banner {
        min-height: 280px;
    }

    .page-banner__content {
        padding: 100px 20px 40px;
    }

    .page-banner__title {
        font-size: 2rem;
    }

    .svc-process {
        padding: 56px 0 64px;
    }

    .svc-process__pin {
        height: auto;
        padding: 48px 0;
    }

    .svc-process__grid {
        flex-direction: column;
        gap: 16px;
        padding: 0 20px;
    }

    .svc-reveal {
        opacity: 1;
    }

    .svc-process__step {
        padding: 28px 20px;
        flex: 1 1 100%;
        width: 100%;
        max-width: none;
    }

    .svc-process__arrow {
        display: none;
    }

    .svc-cta {
        padding: 56px 0;
    }

    .svc-cta__title {
        font-size: 1.5rem;
    }

    .svc-cta__actions {
        flex-direction: column;
    }

    .svc-cta__actions .btn {
        width: 100%;
    }
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 768px) {
    .top-bar {
        display: none;
    }

    .navbar__toggle {
        display: block;
        z-index: 210;
    }

    .navbar .container {
        height: 56px;
    }

    .navbar__logo {
        height: 120px;
    }

    .navbar {
        position: relative;
    }

    /* Overlay sombre derriere le menu */
    .navbar__mobile-overlay {
        display: block;
        position: fixed;
        inset: 0;
        background: rgba(0, 0, 0, 0.5);
        z-index: 199;
        opacity: 0;
        visibility: hidden;
        transition: opacity 0.35s, visibility 0.35s;
    }

    .navbar__mobile-overlay.is-visible {
        opacity: 1;
        visibility: visible;
    }

    /* Menu mobile — panneau lateral droit */
    .navbar__menu {
        position: fixed;
        top: 0;
        right: 0;
        width: 300px;
        max-width: 85vw;
        height: 100vh;
        height: 100dvh;
        background: #fff;
        z-index: 200;
        display: flex;
        flex-direction: column;
        padding: 80px 28px 32px;
        transform: translateX(100%);
        transition: transform 0.4s cubic-bezier(.25,.8,.25,1);
        box-shadow: -8px 0 30px rgba(0, 0, 0, 0.12);
        overflow-y: auto;
    }

    .navbar__menu.is-open {
        transform: translateX(0);
    }

    /* Liste des liens */
    .navbar__menu-links {
        display: flex;
        flex-direction: column;
        gap: 4px;
        list-style: none;
        padding: 0;
        margin: 0;
    }

    .navbar__menu-links .navbar__link {
        display: block;
        color: #333;
        font-size: 1.05rem;
        font-weight: 600;
        padding: 14px 16px;
        border-radius: 10px;
        transition: background-color 0.2s, color 0.2s;
    }

    .navbar__menu-links .navbar__link:hover {
        background: #f0f7fc;
        color: #111;
    }

    .navbar__menu-links .navbar__link--active {
        color: #6ab1d9;
        background: rgba(106, 177, 217, 0.08);
    }

    /* Footer du menu mobile */
    .navbar__menu-footer {
        margin-top: auto;
        display: flex;
        flex-direction: column;
        gap: 20px;
        padding-top: 24px;
        border-top: 1px solid #eef2f7;
    }

    .navbar__cta--mobile-menu {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 100%;
        padding: 14px 24px;
        background: #6ab1d9;
        color: #fff;
        font-size: 0.92rem;
        font-weight: 600;
        border-radius: 10px;
        border: 2px solid #6ab1d9;
        transition: background 0.2s, color 0.2s;
    }

    .navbar__cta--mobile-menu:hover {
        background: transparent;
        color: #6ab1d9;
    }

    /* Contact dans le menu */
    .navbar__menu-contact {
        display: flex;
        flex-direction: column;
        gap: 10px;
    }

    .navbar__menu-contact a {
        display: flex;
        align-items: center;
        gap: 10px;
        font-size: 0.85rem;
        color: #64748b;
        transition: color 0.2s;
    }

    .navbar__menu-contact a:hover {
        color: #6ab1d9;
    }

    .navbar__menu-contact svg {
        width: 16px;
        height: 16px;
        flex-shrink: 0;
        color: #6ab1d9;
    }

    /* Reseaux sociaux dans le menu */
    .navbar__menu-social {
        display: flex;
        gap: 10px;
    }

    .navbar__menu-social a {
        width: 38px;
        height: 38px;
        border-radius: 50%;
        background: #f0f7fc;
        display: flex;
        align-items: center;
        justify-content: center;
        color: #64748b;
        transition: background 0.2s, color 0.2s;
    }

    .navbar__menu-social a:hover {
        background: #6ab1d9;
        color: #fff;
    }

    .navbar__menu-social svg {
        width: 16px;
        height: 16px;
    }

    .navbar__cta--desktop {
        display: none;
    }

    /* Footer mobile — layout style EntryWeb (tout centré, colonne) */
    .footer__main {
        padding: 40px 0 0;
    }

    .footer__grid {
        grid-template-columns: 1fr;
        gap: 0;
        text-align: center;
    }

    /* Logo centré en haut */
    .footer__col:first-child {
        display: flex;
        flex-direction: column;
        align-items: center;
        border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    }

    .footer__brand {
        display: inline-block;
    }

    .footer__logo {
        height: 130px;
        margin-top: 0;
        filter: brightness(0) invert(1);
    }

    .footer__desc {
        display: block;
        text-align: center;
        font-size: 0.88rem;
        color: #94a3b8;
        margin-top: 10px;
        margin-bottom: 0;
    }

    /* Section Liens — centrée */
    .footer__col--links {
        display: block;
        padding: 28px 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    }

    .footer__title {
        font-size: 0.95rem;
        font-weight: 700;
        color: #fff;
        text-align: center;
        margin-bottom: 18px;
    }

    .footer__links {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 0;
    }

    .footer__links li {
        margin-bottom: 10px;
    }

    .footer__links a {
        font-size: 0.95rem;
        color: #94a3b8;
        padding-left: 0;
    }

    .footer__links a:hover {
        padding-left: 0;
        color: #fff;
    }

    /* Section Contact — centrée avec icônes */
    .footer__col--contact {
        display: block;
        padding: 28px 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    }

    .footer__contact {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 16px;
    }

    .footer__contact li {
        display: flex;
        align-items: center;
        gap: 10px;
        font-size: 0.9rem;
        justify-content: center;
    }

    /* Carte (map) masquée sur mobile */
    .footer__col:last-child {
        display: none;
    }

    /* Social-bar sous le contact — padding haut / bas identiques */
    .footer__social-bar {
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 12px;
        padding: 16px 0;
        border-top: none;
        margin-top: 0;
        margin-bottom: 0;
    }

    .footer__social--desktop {
        display: none;
    }

    .footer__social--mobile {
        display: none;
    }

    /* Bottom bar — copyright + legal centrés */
    .footer__bottom {
        padding: 16px 0;
    }

    .footer__bottom .container {
        flex-direction: column;
        gap: 12px;
        text-align: center;
    }

    .footer__bottom p {
        font-size: 0.8rem;
    }

    .footer__legal {
        flex-wrap: wrap;
        justify-content: center;
        gap: 14px;
    }

    .footer__legal a {
        font-size: 0.8rem;
    }
}

@media (min-width: 769px) and (max-width: 1024px) {
    .footer__grid {
        grid-template-columns: 1fr 1fr;
        gap: 32px;
    }
}

/* ============================================
   REDUCED MOTION
   ============================================ */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        transition-duration: 0.01ms !important;
    }

    .reveal,
    [data-stagger] > * {
        opacity: 1 !important;
        transform: none !important;
    }

    .trust__track {
        animation: none !important;
    }
}

/* ============================================
   SVC CARDS — Prestations avec image
   ============================================ */
.svc-cards__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 28px;
}

.svc-card {
    background: #fff;
    border: 1px solid #ececec;
    border-radius: 4px;
    overflow: hidden;
    transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.svc-card:hover {
    box-shadow: 0 12px 40px rgba(0,0,0,0.10);
    transform: translateY(-4px);
}

.svc-card__image {
    position: relative;
    overflow: hidden;
    height: 260px;
}

.svc-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

.svc-card:hover .svc-card__image img {
    transform: scale(1.04);
}

.svc-card__icon {
    position: absolute;
    top: 16px;
    left: 16px;
    width: 42px;
    height: 42px;
    background: rgba(255,255,255,0.92);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #6ab1d9;
    backdrop-filter: blur(4px);
}

.svc-card__icon svg {
    width: 20px;
    height: 20px;
}

.svc-card__body {
    padding: 32px 32px 36px;
}

.svc-card__title {
    font-family: 'Inter', 'Segoe UI', Arial, sans-serif;
    font-size: 1.5rem;
    font-weight: 400;
    color: #111111;
    margin-bottom: 14px;
    line-height: 1.2;
}

.svc-card__desc {
    font-size: 0.9rem;
    color: #666;
    line-height: 1.75;
    margin-bottom: 24px;
}

@media (max-width: 768px) {
    .svc-cards__grid {
        grid-template-columns: 1fr;
    }
}

/* ============================================
   EXPLICATION SECTION
   ============================================ */
.explication {
    padding: 100px 0;
    background: #fff;
}

.explication__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.explication__label {
    display: inline-block;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    color: #6ab1d9;
    text-transform: uppercase;
    margin-bottom: 18px;
}

.explication__title {
    font-family: 'Inter', 'Segoe UI', Arial, sans-serif;
    font-size: 2.6rem;
    font-weight: 700;
    color: #111111;
    line-height: 1.2;
    margin-bottom: 22px;
}

.explication__title--gold {
    color: #6ab1d9;
}

.explication__desc {
    font-size: 0.97rem;
    color: #64748b;
    line-height: 1.8;
    margin-bottom: 36px;
    max-width: 480px;
}

.explication__actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.btn--dark {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    background: #111111;
    color: #fff;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    border-radius: 4px;
    transition: background 0.2s, transform 0.2s;
}

.btn--dark:hover {
    background: #333;
    transform: translateY(-1px);
}

.btn--outline-dark {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    background: transparent;
    color: #111111;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    border: 2px solid #111111;
    border-radius: 4px;
    transition: background 0.2s, color 0.2s, transform 0.2s;
}

.btn--outline-dark:hover {
    background: #111111;
    color: #fff;
    transform: translateY(-1px);
}

/* Right side — image + floating card */
.explication__media {
    position: relative;
}

.explication__img-wrapper {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 24px 60px rgba(0,0,0,0.12);
    aspect-ratio: 4 / 3;
}

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

.explication__card {
    position: absolute;
    bottom: -28px;
    left: -36px;
    background: #fff;
    border-radius: 14px;
    box-shadow: 0 12px 40px rgba(0,0,0,0.12);
    padding: 20px 24px;
    display: flex;
    align-items: flex-start;
    gap: 16px;
    max-width: 270px;
}

.explication__card-icon {
    width: 44px;
    height: 44px;
    background: #6ab1d9;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: #fff;
}

.explication__card-icon svg {
    width: 22px;
    height: 22px;
}

.explication__card-title {
    font-size: 0.95rem;
    font-weight: 700;
    color: #111111;
    margin-bottom: 4px;
}

.explication__card-text {
    font-size: 0.8rem;
    color: #64748b;
    line-height: 1.5;
}

@media (max-width: 900px) {
    .explication__grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .explication__title {
        font-size: 2rem;
    }

    .explication__media {
        padding-bottom: 40px;
    }

    .explication__card {
        left: auto;
        right: -10px;
        bottom: -20px;
        transform: none;
        flex-direction: row;
        align-items: center;
        gap: 14px;
        max-width: 300px;
        padding: 16px 20px;
    }
}

@media (max-width: 640px) {
    .explication {
        padding: 64px 0;
    }

    .explication__title {
        font-size: 1.7rem;
    }

    .explication__actions {
        flex-direction: column;
    }
}

/* ============================================
   CONTACT PAGE
   ============================================ */
.contact-hero,
.contact-content,
.contact-form-card,
.contact-info {
    font-family: 'Plus Jakarta Sans', 'Inter', sans-serif;
}

/* Hero */
.contact-hero {
    background: linear-gradient(180deg, #f9f8f6 0%, #f3f1ed 100%);
    text-align: center;
    padding: 160px 20px 80px;
    border-bottom: 1px solid #e8e4de;
}

.contact-hero__label {
    display: inline-block;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 3px;
    color: #D4B896;
    text-transform: uppercase;
    margin-bottom: 16px;
}

.contact-hero__title {
    font-size: 2.8rem;
    font-weight: 400;
    color: #111111;
    margin-bottom: 18px;
    line-height: 1.2;
    opacity: 0;
    transform: translateY(25px);
    animation: heroFadeIn 0.8s cubic-bezier(.16,1,.3,1) 0.2s forwards;
}

.contact-hero__subtitle {
    font-size: 1.05rem;
    color: #6b7280;
    max-width: 540px;
    margin: 0 auto;
    line-height: 1.7;
    opacity: 0;
    transform: translateY(25px);
    animation: heroFadeIn 0.8s cubic-bezier(.16,1,.3,1) 0.4s forwards;
}

/* Contact Content */
.contact-content {
    padding: 80px 0 100px;
    background: #fff;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 60px;
    align-items: start;
}

/* Info Column */
.contact-info__title {
    font-size: 1.6rem;
    font-weight: 400;
    color: #111111;
    margin-bottom: 16px;
}

.contact-info__text {
    font-size: 0.95rem;
    color: #6b7280;
    line-height: 1.75;
    margin-bottom: 36px;
}

.contact-info__items {
    display: flex;
    flex-direction: column;
    gap: 28px;
}

.contact-info__item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.contact-info__icon {
    width: 48px;
    height: 48px;
    min-width: 48px;
    border-radius: 50%;
    border: 1.5px solid #D4B896;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #D4B896;
    transition: background-color 0.3s, color 0.3s;
}

.contact-info__icon svg {
    width: 20px;
    height: 20px;
}

.contact-info__icon:hover {
    background-color: #D4B896;
    color: #fff;
}

.contact-info__label {
    display: block;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    color: #111111;
    margin-bottom: 4px;
}

.contact-info__item p {
    font-size: 0.92rem;
    color: #6b7280;
    line-height: 1.6;
}

.contact-info__item a {
    color: #6b7280;
    transition: color 0.2s;
}

.contact-info__item a:hover {
    color: #111111;
}

.contact-info__badge {
    display: inline-block;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    color: #D4B896;
    margin-top: 4px;
}

/* Horaires */
.contact-info__hours {
    border-collapse: collapse;
    margin-top: 4px;
}

.contact-info__hours td {
    font-size: 0.9rem;
    color: #4b5563;
    padding: 4px 0;
}

.contact-info__hours td:first-child {
    padding-right: 32px;
}

.contact-info__hours--closed td {
    color: #9ca3af;
}

/* Form Card */
.contact-form-card {
    background: #f9f8f6;
    border-radius: 16px;
    padding: 44px 40px;
    border: 1px solid #e8e4de;
}

.contact-form__title {
    font-size: 1.5rem;
    font-weight: 400;
    color: #111111;
    margin-bottom: 32px;
}

.contact-form__group {
    margin-bottom: 22px;
}

.contact-form__label {
    display: block;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 1.2px;
    color: #111111;
    margin-bottom: 8px;
}

.contact-form__input {
    width: 100%;
    padding: 14px 16px;
    font-size: 0.92rem;
    font-family: 'Plus Jakarta Sans', 'Inter', sans-serif;
    color: #333;
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 8px;
    transition: border-color 0.3s, box-shadow 0.3s;
    outline: none;
}

.contact-form__input::placeholder {
    color: #aaa;
}

.contact-form__input:focus {
    border-color: #D4B896;
    box-shadow: 0 0 0 3px rgba(212, 184, 150, 0.15);
}

.contact-form__select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%236b7280' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    padding-right: 44px;
    cursor: pointer;
}

.contact-form__textarea {
    resize: vertical;
    min-height: 120px;
}

.contact-form__row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.contact-form__submit {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 16px 32px;
    font-size: 0.9rem;
    font-weight: 700;
    font-family: 'Plus Jakarta Sans', 'Inter', sans-serif;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: #fff;
    background: #111;
    border: 2px solid #111;
    border-radius: 8px;
    cursor: pointer;
    transition: background-color 0.3s, color 0.3s, transform 0.2s;
    margin-top: 4px;
}

.contact-form__submit:hover {
    background: transparent;
    color: #111;
    transform: translateY(-2px);
}

.contact-form__submit svg {
    flex-shrink: 0;
}

.contact-form__disclaimer {
    text-align: center;
    font-size: 0.8rem;
    color: #9ca3af;
    margin-top: 16px;
    font-style: italic;
}

.contact-form__required {
    color: #D4B896;
}

/* Checkbox RGPD */
.contact-form__check {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 20px;
    font-size: 0.88rem;
    color: #6b7280;
    line-height: 1.5;
}

.contact-form__check input[type="checkbox"] {
    margin-top: 2px;
    accent-color: #D4B896;
    width: 16px;
    height: 16px;
    flex-shrink: 0;
    cursor: pointer;
}

.contact-form__check a {
    color: #D4B896;
    text-decoration: underline;
}

/* Layout inversé: form à gauche, sidebar à droite */
.contact-grid--reversed {
    grid-template-columns: 1.1fr 1fr;
}

/* Sidebar droite */
.contact-sidebar {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

/* Cartes sidebar */
.contact-card {
    background: #f9f8f6;
    border: 1px solid #e8e4de;
    border-radius: 16px;
    padding: 28px 28px;
}

.contact-card__title {
    font-size: 1.05rem;
    font-weight: 700;
    color: #111111;
    margin-bottom: 8px;
}

.contact-card__text {
    font-size: 0.88rem;
    color: #6b7280;
    line-height: 1.65;
    margin-bottom: 20px;
}

.contact-card__items {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.contact-card__item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
}

.contact-card__icon {
    width: 40px;
    height: 40px;
    min-width: 40px;
    border-radius: 10px;
    background: rgba(212, 184, 150, 0.12);
    color: #D4B896;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s;
}

.contact-card__icon svg {
    width: 18px;
    height: 18px;
}

.contact-card__icon:hover {
    background: #D4B896;
    color: #fff;
}

.contact-card__item-label {
    display: block;
    font-size: 0.75rem;
    color: #9ca3af;
    margin-bottom: 2px;
}

.contact-card__item-value {
    display: block;
    font-size: 0.9rem;
    font-weight: 600;
    color: #111111;
    text-decoration: none;
    transition: color 0.2s;
}

a.contact-card__item-value:hover {
    color: #D4B896;
}

/* Carte réseaux sociaux */
.contact-social {
    display: flex;
    gap: 12px;
    margin-top: 4px;
}

.contact-social__link {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1.5px solid #e8e4de;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #6b7280;
    transition: border-color 0.3s, color 0.3s, background 0.3s;
}

.contact-social__link svg {
    width: 18px;
    height: 18px;
}

.contact-social__link:hover {
    border-color: #D4B896;
    color: #D4B896;
    background: rgba(212, 184, 150, 0.08);
}

/* Carte avantages */
.contact-card--benefits {
    background: rgba(212, 184, 150, 0.08);
    border-color: rgba(212, 184, 150, 0.3);
}

.contact-benefit {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.9rem;
    color: #111111;
    padding: 6px 0;
}

.contact-benefit svg {
    color: #D4B896;
    flex-shrink: 0;
}

.contact-benefit + .contact-benefit {
    border-top: 1px solid rgba(212, 184, 150, 0.2);
}

/* Contact responsive */
@media (max-width: 900px) {
    .contact-grid,
    .contact-grid--reversed {
        grid-template-columns: 1fr;
        gap: 48px;
    }
}

/* ============================================
   SVC SECTION HEADER (Titre catégorie)
   ============================================ */
.svc-section {
    padding: 80px 0 20px;
    background: #fff;
}

.svc-section--alt {
    padding-top: 40px;
    background: #f4f9fc;
    border-top: 1px solid #d0e8f3;
}

.svc-section__header {
    text-align: center;
}

.svc-section__label {
    display: inline-block;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    color: #6ab1d9;
    text-transform: uppercase;
    margin-bottom: 14px;
}

.svc-section__title {
    font-size: 2.2rem;
    font-weight: 800;
    color: #111111;
    line-height: 1.2;
}

/* ============================================
   SVC ROW (Alternating photo/text layout)
   ============================================ */
.svc-row {
    padding: 60px 0;
    background: #fff;
}

.svc-row--alt {
    background: #f4f9fc;
    border-top: 1px solid #d0e8f3;
    border-bottom: 1px solid #d0e8f3;
}

.svc-section--alt + .svc-row--alt {
    border-top: none;
}

.svc-row__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
}

.svc-row--reversed .svc-row__grid {
    direction: rtl;
}

.svc-row--reversed .svc-row__grid > * {
    direction: ltr;
}

/* Image */
.svc-row__img-wrapper {
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
    aspect-ratio: 4 / 3;
}

.svc-row__img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.6s cubic-bezier(.25,.8,.25,1);
}

.svc-row__img-wrapper:hover img {
    transform: scale(1.04);
}

/* Content */
.svc-row__name {
    font-size: 1.6rem;
    font-weight: 800;
    color: #111111;
    margin-bottom: 16px;
    line-height: 1.2;
}

.svc-row__desc {
    font-size: 0.95rem;
    color: #64748b;
    line-height: 1.8;
    margin-bottom: 24px;
}

.svc-row__list {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 28px;
}

.svc-row__list li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.92rem;
    font-weight: 500;
    color: #334155;
}

.svc-row__list li svg {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    color: #6ab1d9;
}

/* ============================================
   SVC BEFORE/AFTER SECTION
   ============================================ */
.svc-ba {
    padding: 60px 0 80px;
    background: #fff;
}

.svc-ba--alt {
    background: #f8fafc;
}

.svc-ba__header {
    text-align: center;
    margin-bottom: 36px;
}

.svc-ba__title {
    font-size: 1.3rem;
    font-weight: 700;
    color: #111111;
    margin-bottom: 8px;
}

.svc-ba__subtitle {
    font-size: 0.9rem;
    color: #94a3b8;
}

/* Before/After grid */
.ba-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 28px;
}

/* ============================================
   BEFORE/AFTER SLIDER
   ============================================ */
.ba-slider {
    position: relative;
    overflow: hidden;
    border-radius: 14px;
    aspect-ratio: 3 / 4;
    max-height: 450px;
    cursor: ew-resize;
    user-select: none;
    -webkit-user-select: none;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.ba-slider--landscape {
    aspect-ratio: 16 / 9;
    max-height: none;
}

.ba-slider__after {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
}

.ba-slider__before {
    position: absolute;
    inset: 0;
    clip-path: inset(0 50% 0 0);
}

.ba-slider__before img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
}

/* Handle (drag line) */
.ba-slider__handle {
    position: absolute;
    top: 0;
    left: 50%;
    width: 4px;
    height: 100%;
    transform: translateX(-50%);
    z-index: 10;
    cursor: ew-resize;
    padding: 0 20px;
}

.ba-slider__line {
    position: absolute;
    top: 0;
    left: 50%;
    width: 3px;
    height: 100%;
    background: #fff;
    transform: translateX(-50%);
    box-shadow: 0 0 8px rgba(0, 0, 0, 0.3);
}

.ba-slider__circle {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: #fff;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.25);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    transition: transform 0.2s;
}

.ba-slider.is-dragging .ba-slider__circle {
    transform: translate(-50%, -50%) scale(1.1);
}

.ba-slider__circle svg {
    width: 16px;
    height: 16px;
    color: #333;
}

/* Tags */
.ba-slider__tag {
    position: absolute;
    top: 16px;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 5px 14px;
    border-radius: 50px;
    z-index: 5;
    pointer-events: none;
}

.ba-slider__tag--before {
    left: 16px;
    background: rgba(0, 0, 0, 0.55);
    color: #fff;
    backdrop-filter: blur(4px);
}

.ba-slider__tag--after {
    right: 16px;
    background: rgba(106, 177, 217, 0.9);
    color: #fff;
    backdrop-filter: blur(4px);
}

/* ============================================
   SVC ROW + BA SLIDER — RESPONSIVE
   ============================================ */
@media (max-width: 900px) {
    .svc-section__title {
        font-size: 1.8rem;
    }

    .svc-row__grid {
        gap: 40px;
    }

    .svc-row__name {
        font-size: 1.35rem;
    }
}

@media (max-width: 768px) {
    .svc-section {
        padding: 56px 0 10px;
    }

    .svc-row {
        padding: 40px 0;
    }

    .svc-row__grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .svc-row--reversed .svc-row__grid {
        direction: ltr;
    }

    .ba-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .svc-ba {
        padding: 40px 0 56px;
    }
}

@media (max-width: 640px) {
    .contact-hero {
        padding: 130px 20px 50px;
    }

    .contact-hero__title {
        font-size: 2rem;
    }

    .contact-content {
        padding: 48px 0 64px;
    }

    .contact-form-card {
        padding: 28px 20px;
    }

    .contact-form__row {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .svc-section__title {
        font-size: 1.5rem;
    }

    .svc-row__name {
        font-size: 1.2rem;
    }

    .ba-slider__circle {
        width: 36px;
        height: 36px;
    }

    .ba-slider__circle svg {
        width: 13px;
        height: 13px;
    }
}

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

/* Hero */
.contact-hero {
    background: linear-gradient(180deg, #eef6fb 0%, #e2f0f7 100%);
    text-align: center;
    padding: 160px 20px 80px;
    border-bottom: 1px solid #c8e0ee;
}

.contact-hero__title {
    font-size: 2.8rem;
    font-weight: 800;
    color: #111111;
    margin-bottom: 18px;
    line-height: 1.2;
    opacity: 0;
    transform: translateY(25px);
    animation: heroFadeIn 0.8s cubic-bezier(.16,1,.3,1) 0.2s forwards;
}

.contact-hero__subtitle {
    font-size: 1.05rem;
    color: #6b7280;
    max-width: 540px;
    margin: 0 auto;
    line-height: 1.7;
    opacity: 0;
    transform: translateY(25px);
    animation: heroFadeIn 0.8s cubic-bezier(.16,1,.3,1) 0.4s forwards;
}

/* Contact Content */
.contact-content {
    padding: 80px 0 100px;
    background: #fff;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 60px;
    align-items: start;
}

/* Form Card */
.contact-form-card {
    background: #fff;
    border-radius: 16px;
    padding: 44px 40px;
    border: 1px solid #e2edf5;
    box-shadow: 0 4px 24px rgba(106, 177, 217, 0.07);
}

.contact-form__title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #111111;
    margin-bottom: 32px;
}

.contact-form__flash {
    padding: 14px 18px;
    border-radius: 10px;
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: 18px;
    border: 1px solid transparent;
}

.contact-form__flash--success {
    background: rgba(34,197,94,0.08);
    border-color: rgba(34,197,94,0.25);
    color: #15803d;
}

.contact-form__flash--error {
    background: rgba(239,68,68,0.08);
    border-color: rgba(239,68,68,0.25);
    color: #b91c1c;
}

.contact-form__group {
    margin-bottom: 22px;
}

.contact-form__label {
    display: block;
    font-size: 0.88rem;
    font-weight: 600;
    color: #111111;
    margin-bottom: 8px;
}

.contact-form__required {
    color: #6ab1d9;
}

.contact-form__input {
    width: 100%;
    padding: 14px 16px;
    font-size: 0.92rem;
    font-family: inherit;
    color: #333;
    background: #f8fbfd;
    border: 1px solid #d0e8f3;
    border-radius: 8px;
    transition: border-color 0.3s, box-shadow 0.3s;
    outline: none;
    box-sizing: border-box;
}

.contact-form__input::placeholder {
    color: #aaa;
}

.contact-form__input:focus {
    border-color: #6ab1d9;
    box-shadow: 0 0 0 3px rgba(106, 177, 217, 0.15);
    background: #fff;
}

.contact-form__select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%236b7280' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    padding-right: 44px;
    cursor: pointer;
}

.contact-form__textarea {
    resize: vertical;
    min-height: 130px;
}

/* Checkbox RGPD */
.contact-form__check {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 20px;
    font-size: 0.88rem;
    color: #6b7280;
    line-height: 1.5;
}

.contact-form__check input[type="checkbox"] {
    margin-top: 2px;
    accent-color: #6ab1d9;
    width: 16px;
    height: 16px;
    flex-shrink: 0;
    cursor: pointer;
}

.contact-form__check a {
    color: #6ab1d9;
    text-decoration: underline;
}

/* Submit button */
.contact-form__submit {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 16px 32px;
    font-size: 0.95rem;
    font-weight: 700;
    font-family: inherit;
    color: #fff;
    background: #6ab1d9;
    border: 2px solid #6ab1d9;
    border-radius: 8px;
    cursor: pointer;
    transition: background-color 0.3s, color 0.3s, transform 0.2s;
    margin-top: 4px;
}

.contact-form__submit:hover {
    background: transparent;
    color: #6ab1d9;
    transform: translateY(-2px);
}

.contact-form__disclaimer {
    text-align: center;
    font-size: 0.8rem;
    color: #9ca3af;
    margin-top: 16px;
}

/* Sidebar */
.contact-sidebar {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

/* Cartes sidebar */
.contact-card {
    background: #f8fbfd;
    border: 1px solid #d0e8f3;
    border-radius: 16px;
    padding: 26px 26px;
}

.contact-card__title {
    font-size: 1rem;
    font-weight: 700;
    color: #111111;
    margin-bottom: 8px;
}

.contact-card__text {
    font-size: 0.87rem;
    color: #6b7280;
    line-height: 1.65;
    margin-bottom: 20px;
}

.contact-card__items {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.contact-card__item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
}

.contact-card__icon {
    width: 40px;
    height: 40px;
    min-width: 40px;
    border-radius: 10px;
    background: rgba(106, 177, 217, 0.12);
    color: #6ab1d9;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s;
}

.contact-card__icon svg {
    width: 18px;
    height: 18px;
}

.contact-card__item-label {
    display: block;
    font-size: 0.75rem;
    color: #9ca3af;
    margin-bottom: 2px;
}

.contact-card__item-value {
    display: block;
    font-size: 0.9rem;
    font-weight: 600;
    color: #111111;
    text-decoration: none;
    transition: color 0.2s;
}

a.contact-card__item-value:hover {
    color: #6ab1d9;
}

/* Réseaux sociaux */
.contact-social {
    display: flex;
    gap: 12px;
    margin-top: 4px;
}

.contact-social__link {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1.5px solid #d0e8f3;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #6b7280;
    transition: border-color 0.3s, color 0.3s, background 0.3s;
}

.contact-social__link svg {
    width: 18px;
    height: 18px;
}

.contact-social__link:hover {
    border-color: #6ab1d9;
    color: #6ab1d9;
    background: rgba(106, 177, 217, 0.08);
}

/* Avantages */
.contact-card--benefits {
    background: rgba(106, 177, 217, 0.07);
    border-color: rgba(106, 177, 217, 0.3);
}

.contact-benefit {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.9rem;
    color: #111111;
    padding: 8px 0;
}

.contact-benefit svg {
    color: #6ab1d9;
    flex-shrink: 0;
}

.contact-benefit + .contact-benefit {
    border-top: 1px solid rgba(106, 177, 217, 0.2);
}

/* Responsive */
@media (max-width: 900px) {
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

@media (max-width: 640px) {
    .contact-hero {
        padding: 130px 20px 50px;
    }

    .contact-hero__title {
        font-size: 2rem;
    }

    .contact-content {
        padding: 48px 0 64px;
    }

    .contact-form-card {
        padding: 28px 20px;
    }

    .contact-card--social {
        display: none;
    }
}

/* ============================================
   ASSURANCE PAGE
   ============================================ */

/* Hero */
.assurance-hero {
    background: linear-gradient(180deg, #eef6fb 0%, #e2f0f7 100%);
    text-align: center;
    padding: 160px 20px 100px;
    border-bottom: 1px solid #c8e0ee;
}

.assurance-hero__title {
    font-size: 3rem;
    font-weight: 800;
    color: #111111;
    line-height: 1.2;
    margin-bottom: 24px;
    opacity: 0;
    transform: translateY(25px);
    animation: heroFadeIn 0.8s cubic-bezier(.16,1,.3,1) 0.2s forwards;
}

.assurance-hero__subtitle {
    font-size: 1rem;
    color: #6b7280;
    max-width: 580px;
    margin: 0 auto;
    line-height: 1.75;
    opacity: 0;
    transform: translateY(25px);
    animation: heroFadeIn 0.8s cubic-bezier(.16,1,.3,1) 0.4s forwards;
}

/* Content */
.assurance-content {
    padding: 80px 0 100px;
    background: #fff;
}

.assurance-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 72px;
    align-items: start;
}

/* Colonne gauche — Actes */
.assurance-actes__title,
.assurance-demarches__title {
    font-size: 1.6rem;
    font-weight: 600;
    color: #111111;
    margin-bottom: 32px;
}

.assurance-acte-block {
    margin-bottom: 36px;
    padding-bottom: 36px;
    border-bottom: 1px solid #e8f4f9;
}

.assurance-acte-block:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.assurance-acte-block__label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 14px;
    padding: 6px 12px;
    border-radius: 4px;
}

.assurance-acte-block__label--warning {
    color: #d97706;
    background: rgba(217, 119, 6, 0.08);
}

.assurance-acte-block__label--success {
    color: #6ab1d9;
    background: rgba(106, 177, 217, 0.1);
}

.assurance-acte-block__text {
    font-size: 0.93rem;
    color: #4b5563;
    line-height: 1.75;
    margin-bottom: 16px;
}

.assurance-acte-block__list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.assurance-acte-block__list li {
    font-size: 0.9rem;
    color: #6b7280;
    padding-left: 18px;
    position: relative;
}

.assurance-acte-block__list li::before {
    content: "›";
    position: absolute;
    left: 0;
    color: #6ab1d9;
    font-weight: 700;
}

/* Colonne droite — Démarches */
.assurance-steps {
    display: flex;
    flex-direction: column;
    gap: 28px;
    margin-bottom: 32px;
}

.assurance-step {
    display: flex;
    gap: 18px;
    align-items: flex-start;
}

.assurance-step__num {
    width: 36px;
    height: 36px;
    min-width: 36px;
    border-radius: 50%;
    background: #6ab1d9;
    color: #fff;
    font-size: 0.85rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
}

.assurance-step__title {
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 1px;
    color: #111111;
    margin-bottom: 6px;
}

.assurance-step__text {
    font-size: 0.9rem;
    color: #6b7280;
    line-height: 1.7;
}

/* Carte Transparence */
.assurance-transparency {
    background: rgba(106, 177, 217, 0.07);
    border: 1px solid rgba(106, 177, 217, 0.25);
    border-radius: 12px;
    padding: 22px 24px;
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.assurance-transparency__icon {
    width: 40px;
    height: 40px;
    min-width: 40px;
    border-radius: 10px;
    background: rgba(106, 177, 217, 0.15);
    color: #6ab1d9;
    display: flex;
    align-items: center;
    justify-content: center;
}

.assurance-transparency__title {
    font-size: 0.95rem;
    font-weight: 700;
    color: #111111;
    margin-bottom: 6px;
}

.assurance-transparency__text {
    font-size: 0.88rem;
    color: #6b7280;
    line-height: 1.65;
}

/* CTA Section */
.assurance-cta {
    background: #f4f9fc;
    text-align: center;
    padding: 80px 20px;
    border-top: 1px solid #d0e8f3;
    border-bottom: 1px solid #d0e8f3;
}

.assurance-cta__title {
    font-size: 2rem;
    font-weight: 600;
    color: #111111;
    margin-bottom: 16px;
}

.assurance-cta__text {
    font-size: 0.97rem;
    color: #6b7280;
    max-width: 540px;
    margin: 0 auto 32px;
    line-height: 1.7;
}

/* Responsive */
@media (max-width: 900px) {
    .assurance-grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }
}

@media (max-width: 640px) {
    .assurance-hero {
        padding: 130px 20px 60px;
    }

    .assurance-hero__title {
        font-size: 2rem;
    }

    .assurance-content {
        padding: 48px 0 64px;
    }
}
