/* ============================================================
   NVS — Navigation pilule flottante (inspirée Clinitex)
   Intégrée par-dessus le hero / page-header de chaque page.
   ============================================================ */
:root {
    color-scheme: light;
    --nvs-primary:   #042245;
    --nvs-accent:    #28afa6;
    --nvs-cyan:      #229DC7;
    --nvs-cyan-soft: #5CC9E3;
    --nvs-bg:        #F3F3F5;
    --nvs-white:     #FFFFFF;
    --nav-radius:    60px;
}

body { background: #fff; margin: 0; }

.nvs-header {
    position: absolute;
    top: 28px;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 0 24px;
    font-family: 'Inter Tight', sans-serif;
}
.nvs-nav {
    max-width: 1360px;
    margin: 0 auto;
    background: var(--nvs-white);
    border-radius: var(--nav-radius);
    box-shadow: 0 10px 40px rgba(4, 34, 69, .14);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 12px 14px 12px 28px;
    min-height: 76px;
}
.nvs-header a { text-decoration: none; transition: color .15s, background .15s, border-color .15s; }

/* ---------- Logo ---------- */
.nvs-logo { display: inline-flex; align-items: center; line-height: 0; flex-shrink: 0; }
.nvs-logo img { height: 52px; width: auto; }

/* ---------- Menu ---------- */
.nvs-menu {
    display: flex;
    align-items: center;
    gap: 4px;
    list-style: none;
    margin: 0;
    padding: 0;
    flex: 1;
}
.nvs-item { position: relative; }
.nvs-link {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 10px 14px 14px;
    font-size: 15.5px;
    font-weight: 600;
    color: var(--nvs-primary);
    letter-spacing: 0.005em;
    white-space: nowrap;
}
.nvs-link:hover { color: var(--nvs-cyan); }
.nvs-chevron { width: 11px; height: 11px; stroke-width: 2.6; margin-top: 1px; transition: transform .2s; }
.nvs-item.has-dropdown:hover .nvs-chevron { transform: rotate(180deg); }

/* ---------- Vague onglet actif ---------- */
.nvs-link.is-active { color: var(--nvs-cyan); }
.nvs-wave {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: 2px;
    width: 34px;
    height: 7px;
    color: var(--nvs-accent);
    pointer-events: none;
}
.nvs-wave svg { width: 100%; height: 100%; display: block; overflow: visible; }
.nvs-link.is-active:hover .nvs-wave svg path { animation: nvs-wave-slide .6s ease-in-out; }
@keyframes nvs-wave-slide {
    0% { transform: translateX(0); }
    50% { transform: translateX(3px); }
    100% { transform: translateX(0); }
}

/* ---------- Dropdown ---------- */
.nvs-dropdown {
    position: absolute;
    top: calc(100% + 10px);
    left: 0;
    min-width: 270px;
    background: var(--nvs-white);
    border-radius: 18px;
    box-shadow: 0 18px 50px rgba(4, 34, 69, .16);
    padding: 10px;
    list-style: none;
    margin: 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: opacity .18s, transform .18s, visibility 0s linear .18s;
    z-index: 1001;
}
.nvs-item.has-dropdown::after {
    content: '';
    position: absolute;
    left: 0; right: 0;
    top: 100%;
    height: 14px;
}
.nvs-item.has-dropdown:hover .nvs-dropdown,
.nvs-item.has-dropdown:focus-within .nvs-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    transition-delay: 0s;
}
.nvs-dropdown li { list-style: none; }
.nvs-dropdown li a {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 14px;
    border-radius: 12px;
    font-size: 14.5px;
    font-weight: 500;
    color: var(--nvs-primary);
}
.nvs-dropdown li a:hover { background: var(--nvs-bg); color: var(--nvs-cyan); }
.nvs-dot {
    width: 6px; height: 6px;
    border-radius: 50%;
    background: var(--nvs-accent);
    flex-shrink: 0;
    opacity: .5;
    transition: opacity .15s;
}
.nvs-dropdown li a:hover .nvs-dot { opacity: 1; }

/* ---------- Boutons droite ---------- */
.nvs-actions { display: flex; align-items: center; gap: 10px; flex-shrink: 0; }
.nvs-btn-outline {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 13px 22px;
    border: 2px solid var(--nvs-primary);
    border-radius: 50px;
    color: var(--nvs-primary);
    font-size: 13.5px;
    font-weight: 700;
    letter-spacing: 0.04em;
    background: var(--nvs-white);
}
.nvs-btn-outline:hover { border-color: var(--nvs-cyan); color: var(--nvs-cyan); }
.nvs-btn-outline svg { width: 15px; height: 15px; stroke-width: 2.4; }
.nvs-btn-solid {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 15px 24px;
    background: var(--nvs-primary);
    border: 2px solid var(--nvs-primary);
    border-radius: 50px;
    color: var(--nvs-white);
    font-size: 13.5px;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}
.nvs-btn-solid:hover { background: var(--nvs-cyan); border-color: var(--nvs-cyan); color: var(--nvs-white); }
.nvs-btn-round {
    display: none;
    width: 48px;
    height: 48px;
    border: 2px solid var(--nvs-primary);
    border-radius: 50%;
    align-items: center;
    justify-content: center;
    color: var(--nvs-primary);
    background: var(--nvs-white);
    flex-shrink: 0;
}
.nvs-btn-round svg { width: 18px; height: 18px; stroke-width: 2.2; }
.nvs-btn-round:hover { border-color: var(--nvs-cyan); color: var(--nvs-cyan); }

/* ---------- Burger ---------- */
.nvs-burger {
    display: none;
    width: 48px;
    height: 48px;
    border: none;
    background: var(--nvs-primary);
    border-radius: 50%;
    cursor: pointer;
    position: relative;
    flex-shrink: 0;
}
.nvs-burger span {
    position: absolute;
    left: 14px; right: 14px;
    height: 2px;
    background: #fff;
    border-radius: 2px;
    transition: transform .25s, opacity .25s;
}
.nvs-burger span:nth-child(1) { top: 17px; }
.nvs-burger span:nth-child(2) { top: 23px; }
.nvs-burger span:nth-child(3) { top: 29px; }
.nvs-burger.is-open span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.nvs-burger.is-open span:nth-child(2) { opacity: 0; }
.nvs-burger.is-open span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

/* ---------- Responsive ---------- */
@media (max-width: 1240px) {
    .nvs-btn-outline { display: none; }
    .nvs-btn-round { display: inline-flex; }
}
@media (max-width: 1080px) {
    .nvs-menu { display: none; }
    .nvs-burger { display: block; }
    .nvs-nav { padding: 10px 12px 10px 22px; min-height: 68px; }
    .nvs-menu.is-open {
        display: flex;
        flex-direction: column;
        align-items: stretch;
        gap: 2px;
        position: fixed;
        top: 110px;
        left: 16px;
        right: 16px;
        background: var(--nvs-white);
        border-radius: 24px;
        box-shadow: 0 24px 60px rgba(4, 34, 69, .25);
        padding: 18px;
        z-index: 999;
        max-height: calc(100vh - 130px);
        overflow-y: auto;
    }
    .nvs-menu.is-open .nvs-link { width: 100%; padding: 14px 16px; font-size: 16px; border-radius: 14px; }
    .nvs-menu.is-open .nvs-link:hover { background: var(--nvs-bg); }
    .nvs-menu.is-open .nvs-wave { left: 16px; transform: none; bottom: 6px; }
    .nvs-menu.is-open .nvs-dropdown {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        border-left: 2px solid var(--nvs-bg);
        border-radius: 0;
        margin: 0 0 6px 18px;
        padding: 2px 0 2px 6px;
        min-width: 0;
    }
    .nvs-menu.is-open .nvs-cta-mobile {
        display: flex;
        justify-content: center;
        margin-top: 12px;
        background: var(--nvs-primary);
        color: #fff;
        border-radius: 50px;
        padding: 15px;
        font-weight: 700;
        text-transform: uppercase;
        font-size: 13.5px;
        letter-spacing: .04em;
    }
}
.nvs-cta-mobile { display: none; }
@media (max-width: 560px) {
    .nvs-btn-solid { display: none; }
    .nvs-logo img { height: 44px; }
    .nvs-header { top: 16px; padding: 0 14px; }
}

.nvs-overlay {
    position: fixed;
    inset: 0;
    background: rgba(4, 34, 69, .45);
    opacity: 0;
    visibility: hidden;
    transition: opacity .2s, visibility 0s linear .2s;
    z-index: 998;
}
.nvs-overlay.is-visible { opacity: 1; visibility: visible; transition-delay: 0s; }

/* ============================================================
   Compensation : la nav flotte au-dessus du contenu.
   Le hero (home) et les bannières internes gagnent du padding.
   ============================================================ */
.hero.bg-section { padding-top: 130px; }
.page-header.bg-section { padding-top: 170px !important; padding-bottom: 60px; }
@media (max-width: 1080px) {
    .hero.bg-section { padding-top: 110px; }
    .page-header.bg-section { padding-top: 140px !important; }
}

/* ============================================================
   MEGA-MENUS « tiroirs » — panneau pleine largeur sous la nav
   ============================================================ */
.nvs-nav { position: relative; }
.nvs-item.has-mega { position: static; }
.nvs-mega {
    position: absolute;
    top: calc(100% + 12px);
    left: 0;
    right: 0;
    background: var(--nvs-white);
    border-radius: 28px;
    box-shadow: 0 24px 70px rgba(4, 34, 69, .18);
    padding: 38px 44px 40px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(12px);
    transition: opacity .2s, transform .2s, visibility 0s linear .2s;
    z-index: 1001;
}
.nvs-item.has-mega::after {
    content: '';
    position: absolute;
    left: 0; right: 0;
    top: 100%;
    height: 16px;
}
.nvs-item.has-mega:hover .nvs-mega,
.nvs-item.has-mega:focus-within .nvs-mega,
.nvs-mega.debug-open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    transition-delay: 0s;
}

/* Titre du tiroir avec vague signature */
.nvs-mega-title {
    font-size: 26px;
    font-weight: 800;
    color: var(--nvs-primary);
    letter-spacing: -0.01em;
    margin: 0 0 6px;
    display: inline-block;
    position: relative;
}
.nvs-mega-title .nvs-title-wave {
    display: block;
    width: 64px;
    height: 8px;
    color: var(--nvs-accent);
    margin-top: 6px;
}
.nvs-mega-title .nvs-title-wave svg { width: 100%; height: 100%; display: block; overflow: visible; }

/* Grille interne */
.nvs-mega-grid {
    display: grid;
    grid-template-columns: 1.1fr 1.1fr 0.9fr;
    gap: 40px;
    margin-top: 22px;
    align-items: start;
}
.nvs-mega-col-label {
    font-size: 12.5px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--nvs-cyan);
    margin: 0 0 14px;
}
.nvs-mega-list { list-style: none; margin: 0; padding: 0; }
.nvs-mega-list li { margin-bottom: 2px; }
.nvs-mega-list a {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 10px;
    margin-left: -10px;
    border-radius: 10px;
    font-size: 15px;
    font-weight: 500;
    color: var(--nvs-primary);
}
.nvs-mega-list a:hover { background: var(--nvs-bg); color: var(--nvs-cyan); }
.nvs-mega-list a:hover .nvs-dot { opacity: 1; }

/* Variante « cartes » (tiroir société) : titre + description */
.nvs-mega-cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px 32px;
}
.nvs-mega-card {
    display: block;
    padding: 14px 16px;
    margin-left: -16px;
    border-radius: 14px;
}
.nvs-mega-card:hover { background: var(--nvs-bg); }
.nvs-mega-card-title {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 15.5px;
    font-weight: 700;
    color: var(--nvs-primary);
    margin-bottom: 4px;
}
.nvs-mega-card:hover .nvs-mega-card-title { color: var(--nvs-cyan); }
.nvs-mega-card-title svg { width: 13px; height: 13px; stroke-width: 2.6; color: var(--nvs-accent); flex-shrink: 0; }
.nvs-mega-card-desc {
    font-size: 13.5px;
    color: #64748B;
    line-height: 1.5;
}

/* Photo du tiroir */
.nvs-mega-photo {
    border-radius: 20px;
    overflow: hidden;
    height: 100%;
    max-height: 300px;
}
.nvs-mega-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Note bas de colonne (zones) */
.nvs-mega-note {
    margin-top: 12px;
    font-size: 13px;
    color: #64748B;
}
.nvs-mega-note a { color: var(--nvs-cyan); font-weight: 600; }

/* ---------- Mobile : les megas deviennent des listes empilées ---------- */
@media (max-width: 1080px) {
    .nvs-item.has-mega { position: relative; }
    .nvs-menu.is-open .nvs-mega {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        border-radius: 0;
        padding: 4px 0 10px 24px;
        border-left: 2px solid var(--nvs-bg);
        margin: 0 0 6px 18px;
    }
    .nvs-menu.is-open .nvs-mega-title,
    .nvs-menu.is-open .nvs-mega-photo,
    .nvs-menu.is-open .nvs-mega-note,
    .nvs-menu.is-open .nvs-mega-col-label { display: none; }
    .nvs-menu.is-open .nvs-mega-grid { display: block; margin-top: 0; }
    .nvs-menu.is-open .nvs-mega-cards { display: block; }
    .nvs-menu.is-open .nvs-mega-card { padding: 8px 10px; margin-left: 0; }
    .nvs-menu.is-open .nvs-mega-card-desc { display: none; }
    .nvs-menu.is-open .nvs-mega-list a { margin-left: 0; }
}

/* ============================================================
   HERO plein écran — photo de fond, texte gauche, 2 boutons
   (la nav pilule flotte par-dessus)
   ============================================================ */
.nvs-hero {
    position: relative;
    min-height: 92vh;
    background-image:
        linear-gradient(90deg, rgba(4, 34, 69, .60) 0%, rgba(4, 34, 69, .28) 42%, rgba(4, 34, 69, 0) 68%),
        url('../images/hero-nvs.webp');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    font-family: 'Inter Tight', sans-serif;
}
.nvs-hero-inner {
    max-width: 1360px;
    width: 100%;
    margin: 0 auto;
    padding: 150px 40px 90px;
    position: relative;
}
.nvs-hero-content { max-width: 590px; }
.nvs-hero-eyebrow {
    color: #BFE3F2;
    font-size: 13.5px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    margin: 0 0 18px;
}
.nvs-hero-title {
    color: #fff;
    font-size: clamp(40px, 5.6vw, 74px);
    line-height: 0.98;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: -0.01em;
    margin: 0 0 22px;
    text-shadow: 0 2px 24px rgba(4, 34, 69, .35);
}
.nvs-hero-sub {
    color: rgba(255, 255, 255, .92);
    font-size: 18px;
    line-height: 1.55;
    max-width: 470px;
    margin: 0 0 34px;
    text-shadow: 0 1px 12px rgba(4, 34, 69, .4);
}
.nvs-hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
}
.nvs-hero-btn-solid {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 17px 34px;
    background: var(--nvs-accent);
    color: #fff;
    border: 2px solid var(--nvs-accent);
    border-radius: 50px;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    text-decoration: none;
    transition: background .15s, border-color .15s, transform .1s;
}
.nvs-hero-btn-solid:hover { background: #1f978f; border-color: #1f978f; color: #fff; }
.nvs-hero-btn-solid:active { transform: translateY(1px); }
.nvs-hero-btn-outline {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 17px 34px;
    background: transparent;
    color: #fff;
    border: 2px solid rgba(255, 255, 255, .85);
    border-radius: 50px;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    text-decoration: none;
    transition: background .15s, color .15s;
}
.nvs-hero-btn-outline:hover { background: #fff; color: var(--nvs-primary); }

/* Badge bas-droite (équivalent sobre du badge Clinitex, sans fausse certif) */
.nvs-hero-badge {
    position: absolute;
    right: 40px;
    bottom: 36px;
    background: rgba(255, 255, 255, .95);
    border-radius: 18px;
    padding: 14px 20px;
    display: flex;
    flex-direction: column;
    gap: 2px;
    font-size: 13px;
    color: #64748B;
    box-shadow: 0 10px 30px rgba(4, 34, 69, .18);
}
.nvs-hero-badge-strong {
    font-size: 15px;
    font-weight: 800;
    color: var(--nvs-primary);
}

/* ---------- Responsive hero ---------- */
@media (max-width: 1080px) {
    .nvs-hero { min-height: 78vh; }
    .nvs-hero-inner { padding: 130px 24px 70px; }
}
@media (max-width: 767px) {
    .nvs-hero {
        min-height: 100svh;
        background-position: 68% center;
        background-image:
            linear-gradient(180deg, rgba(4, 34, 69, .55) 0%, rgba(4, 34, 69, .25) 45%, rgba(4, 34, 69, .55) 100%),
            url('../images/hero-nvs.webp');
        align-items: flex-end;
    }
    .nvs-hero-inner { padding: 140px 20px 96px; }
    .nvs-hero-title { font-size: clamp(34px, 10vw, 46px); }
    .nvs-hero-sub { font-size: 16px; }
    .nvs-hero-actions { flex-direction: column; align-items: stretch; }
    .nvs-hero-btn-solid, .nvs-hero-btn-outline { width: 100%; }
    .nvs-hero-badge {
        right: 20px;
        bottom: 20px;
        padding: 10px 14px;
        border-radius: 14px;
    }
    .nvs-hero-badge span:not(.nvs-hero-badge-strong) { display: none; }
}

/* ============================================================
   SECTION ENGAGEMENTS — 3 piliers, blob pastel, pill CTA
   ============================================================ */
.nvs-values {
    position: relative;
    background: #fff;
    padding: 96px 24px 88px;
    overflow: hidden;
    font-family: 'Inter Tight', sans-serif;
}
.nvs-values-blob {
    position: absolute;
    top: -140px;
    left: -160px;
    width: 520px;
    height: 380px;
    background: #E4F4FA;
    border-radius: 42% 58% 55% 45% / 55% 42% 58% 45%;
    transform: rotate(-8deg);
    pointer-events: none;
}
.nvs-values-inner {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
}
.nvs-values-title {
    font-size: clamp(26px, 3.6vw, 40px);
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: -0.005em;
    color: var(--nvs-primary);
    line-height: 1.12;
    margin: 0 0 64px;
    max-width: 700px;
}
.nvs-values-title .nvs-title-wave {
    display: block;
    width: 74px;
    height: 9px;
    color: var(--nvs-accent);
    margin-top: 14px;
}
.nvs-values-title .nvs-title-wave svg { width: 100%; height: 100%; display: block; overflow: visible; }

.nvs-values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 48px;
}
.nvs-value-icon {
    display: inline-flex;
    width: 52px;
    height: 52px;
    color: var(--nvs-cyan);
    margin-bottom: 18px;
}
.nvs-value-icon svg { width: 100%; height: 100%; }
.nvs-value h3 {
    font-size: 20px;
    font-weight: 800;
    text-transform: uppercase;
    color: var(--nvs-primary);
    letter-spacing: 0.01em;
    margin: 0 0 12px;
    line-height: 1.2;
}
.nvs-value p {
    font-size: 15px;
    line-height: 1.65;
    color: #545454;
    margin: 0;
    max-width: 340px;
}
.nvs-values-cta {
    text-align: center;
    margin-top: 64px;
}
.nvs-values-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 32px;
    background: #DDF1EF;
    color: var(--nvs-primary);
    border-radius: 50px;
    font-size: 13.5px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    text-decoration: none;
    transition: background .15s, color .15s;
}
.nvs-values-btn:hover { background: var(--nvs-accent); color: #fff; }

@media (max-width: 900px) {
    .nvs-values { padding: 72px 20px 64px; }
    .nvs-values-grid { grid-template-columns: 1fr; gap: 40px; }
    .nvs-value p { max-width: none; }
    .nvs-values-title { margin-bottom: 44px; }
    .nvs-values-cta { margin-top: 44px; }
    .nvs-values-blob { width: 360px; height: 280px; top: -120px; left: -140px; }
}

/* ============================================================
   SECTION PRESTATIONS — bloc bleu arrondi + carrousel de cartes
   ============================================================ */
.nvs-prest {
    padding: 24px 16px;
    font-family: 'Inter Tight', sans-serif;
}
.nvs-prest-box {
    max-width: 1440px;
    margin: 0 auto;
    background: linear-gradient(150deg, #2E93BD 0%, #1F7FAB 100%);
    border-radius: 36px;
    padding: 72px 0 84px;
    overflow: hidden;
}
.nvs-prest-head {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    gap: 24px;
    padding: 0 64px;
    margin-bottom: 48px;
}
.nvs-prest-title {
    color: #fff;
    font-size: clamp(26px, 3.6vw, 40px);
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: -0.005em;
    margin: 0;
    line-height: 1.1;
}
.nvs-title-wave-white { color: rgba(255, 255, 255, .85) !important; display: block; width: 74px; height: 9px; margin-top: 12px; }
.nvs-title-wave-white svg { width: 100%; height: 100%; display: block; overflow: visible; }

.nvs-prest-arrows { display: flex; gap: 10px; }
.nvs-prest-arrow {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, .7);
    background: transparent;
    color: #fff;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: background .15s, border-color .15s, color .15s;
}
.nvs-prest-arrow:hover { background: #fff; color: #1F7FAB; border-color: #fff; }
.nvs-prest-arrow svg { width: 20px; height: 20px; }

.nvs-prest-track {
    display: flex;
    gap: 24px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    padding: 0 64px 8px;
    scrollbar-width: none;
}
.nvs-prest-track::-webkit-scrollbar { display: none; }

.nvs-prest-card {
    flex: 0 0 320px;
    scroll-snap-align: start;
    background: #fff;
    border-radius: 22px;
    overflow: hidden;
    box-shadow: 0 12px 30px rgba(4, 34, 69, .16);
    display: flex;
    flex-direction: column;
}
.nvs-prest-img { height: 230px; overflow: hidden; }
.nvs-prest-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform .35s ease;
}
.nvs-prest-card:hover .nvs-prest-img img { transform: scale(1.05); }
.nvs-prest-body {
    padding: 20px 22px 24px;
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 14px;
    flex: 1;
    justify-content: space-between;
}
.nvs-prest-body h3 {
    font-size: 17px;
    font-weight: 800;
    text-transform: uppercase;
    color: var(--nvs-primary);
    line-height: 1.25;
    margin: 0;
    letter-spacing: 0.01em;
}
.nvs-prest-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 24px;
    background: var(--nvs-primary);
    color: #fff;
    border-radius: 50px;
    font-size: 12.5px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    text-decoration: none;
    transition: background .15s;
    align-self: center;
    min-width: 150px;
}
.nvs-prest-btn:hover { background: var(--nvs-cyan); color: #fff; }

@media (max-width: 900px) {
    .nvs-prest { padding: 16px 10px; }
    .nvs-prest-box { border-radius: 26px; padding: 52px 0 60px; }
    .nvs-prest-head { padding: 0 24px; margin-bottom: 32px; }
    .nvs-prest-track { padding: 0 24px 8px; gap: 16px; }
    .nvs-prest-card { flex: 0 0 78vw; max-width: 320px; }
    .nvs-prest-img { height: 200px; }
}

/* ============================================================
   SECTION SECTEURS D'ACTIVITÉ — liste 2 colonnes, icônes + chevrons
   ============================================================ */
.nvs-sect {
    background: #fff;
    padding: 96px 24px 88px;
    font-family: 'Inter Tight', sans-serif;
}
.nvs-sect-inner { max-width: 1200px; margin: 0 auto; }
.nvs-sect-title {
    font-size: clamp(26px, 3.6vw, 40px);
    font-weight: 800;
    text-transform: uppercase;
    color: var(--nvs-primary);
    line-height: 1.12;
    margin: 0 0 56px;
}
.nvs-sect-title .nvs-title-wave {
    display: block;
    width: 74px;
    height: 9px;
    color: var(--nvs-accent);
    margin-top: 14px;
}
.nvs-sect-title .nvs-title-wave svg { width: 100%; height: 100%; display: block; overflow: visible; }

.nvs-sect-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0 72px;
}
.nvs-sect-row {
    display: flex;
    align-items: center;
    gap: 18px;
    padding: 22px 4px;
    border-bottom: 1.5px solid #DCE4EC;
    text-decoration: none;
    transition: border-color .15s;
}
.nvs-sect-row:hover { border-color: var(--nvs-cyan); }
.nvs-sect-icon {
    width: 34px;
    height: 34px;
    flex-shrink: 0;
    color: var(--nvs-cyan);
    display: inline-flex;
}
.nvs-sect-icon svg { width: 100%; height: 100%; }
.nvs-sect-label {
    flex: 1;
    font-size: 16.5px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.01em;
    color: var(--nvs-primary);
    line-height: 1.25;
    transition: color .15s;
}
.nvs-sect-row:hover .nvs-sect-label { color: var(--nvs-cyan); }
.nvs-sect-chev {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
    color: var(--nvs-accent);
    transition: transform .2s;
}
.nvs-sect-row:hover .nvs-sect-chev { transform: translateX(5px); }

@media (max-width: 820px) {
    .nvs-sect { padding: 64px 20px 56px; }
    .nvs-sect-grid { grid-template-columns: 1fr; gap: 0; }
    .nvs-sect-title { margin-bottom: 36px; }
    .nvs-sect-label { font-size: 15px; }
    .nvs-sect-row { padding: 18px 2px; }
}

/* ============================================================
   SECTION QUI SOMMES-NOUS — texte gauche, photo arrondie droite
   ============================================================ */
.nvs-who {
    background: #F7FBFD;
    padding: 96px 24px 88px;
    font-family: 'Inter Tight', sans-serif;
}
.nvs-who-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 72px;
    align-items: center;
}
.nvs-who-title {
    font-size: clamp(26px, 3.6vw, 40px);
    font-weight: 800;
    text-transform: uppercase;
    color: var(--nvs-primary);
    line-height: 1.12;
    margin: 0 0 28px;
}
.nvs-who-title .nvs-title-wave {
    display: block;
    width: 74px;
    height: 9px;
    color: var(--nvs-accent);
    margin-top: 14px;
}
.nvs-who-title .nvs-title-wave svg { width: 100%; height: 100%; display: block; overflow: visible; }
.nvs-who-text p {
    font-size: 15.5px;
    line-height: 1.7;
    color: #45526B;
    margin: 0 0 16px;
    max-width: 520px;
}
.nvs-who-brand {
    color: var(--nvs-cyan) !important;
    font-weight: 600;
    margin-top: 22px !important;
}
.nvs-who-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-top: 18px;
    padding: 14px 32px;
    background: #DDF1EF;
    color: var(--nvs-primary);
    border-radius: 50px;
    font-size: 13.5px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    text-decoration: none;
    transition: background .15s, color .15s;
}
.nvs-who-btn:hover { background: var(--nvs-accent); color: #fff; }
.nvs-who-photo {
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 18px 50px rgba(4, 34, 69, .12);
}
.nvs-who-photo img { width: 100%; height: 100%; object-fit: cover; display: block; }

/* Partenaires (activé quand les logos seront fournis) */
.nvs-partners { max-width: 1200px; margin: 88px auto 0; text-align: center; }
.nvs-partners-title {
    font-size: clamp(22px, 3vw, 32px);
    font-weight: 800;
    text-transform: uppercase;
    color: var(--nvs-primary);
    margin: 0 0 44px;
}
.nvs-partners-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 40px 64px;
}
.nvs-partners-row img { height: 44px; width: auto; opacity: .8; transition: opacity .15s; }
.nvs-partners-row img:hover { opacity: 1; }

@media (max-width: 900px) {
    .nvs-who { padding: 64px 20px 56px; }
    .nvs-who-inner { grid-template-columns: 1fr; gap: 36px; }
    .nvs-who-photo { order: -1; }
    .nvs-who-text p { max-width: none; }
}

/* Logos partenaires : badges arrondis */
.nvs-partners-row img {
    height: 64px;
    border-radius: 14px;
    box-shadow: 0 4px 14px rgba(4, 34, 69, .08);
}

/* ============================================================
   FOOTER — bloc marine arrondi, 4 colonnes, logo centré
   ============================================================ */
.nvs-footer {
    padding: 24px 16px 20px;
    font-family: 'Inter Tight', sans-serif;
}
.nvs-footer-box {
    max-width: 1440px;
    margin: 0 auto;
    background: var(--nvs-primary);
    border-radius: 36px;
    padding: 72px 64px 32px;
    color: #C7D6E4;
}
.nvs-footer-grid {
    display: grid;
    grid-template-columns: 1.1fr 1.2fr 1fr 0.9fr;
    gap: 48px;
    margin-bottom: 56px;
}
.nvs-footer-title {
    color: #fff;
    font-size: 15px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin: 0 0 20px;
}
.nvs-footer-title .nvs-title-wave {
    display: block;
    width: 48px;
    height: 7px;
    color: var(--nvs-cyan-soft);
    margin-top: 8px;
}
.nvs-footer-title .nvs-title-wave svg { width: 100%; height: 100%; display: block; overflow: visible; }
.nvs-footer-list { list-style: none; margin: 0; padding: 0; }
.nvs-footer-list li { margin-bottom: 11px; font-size: 14.5px; line-height: 1.5; }
.nvs-footer-list a { color: #C7D6E4; text-decoration: none; transition: color .15s; }
.nvs-footer-list a:hover { color: var(--nvs-cyan-soft); }
.nvs-footer-list-2col {
    columns: 2;
    column-gap: 28px;
}
.nvs-footer-list-2col li { break-inside: avoid; }
.nvs-footer-contact li { color: #C7D6E4; }
.nvs-footer-pill {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-top: 18px;
    padding: 12px 26px;
    background: var(--nvs-cyan-soft);
    color: var(--nvs-primary);
    border-radius: 50px;
    font-size: 12.5px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    text-decoration: none;
    transition: background .15s;
}
.nvs-footer-pill:hover { background: #fff; color: var(--nvs-primary); }
.nvs-footer-logo {
    display: flex;
    justify-content: center;
    padding: 8px 0 28px;
    border-bottom: 1px solid rgba(255, 255, 255, .14);
}
.nvs-footer-logo img {
    height: 52px;
    width: auto;
    filter: brightness(0) invert(1);
    opacity: .95;
}
.nvs-footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px 24px;
    padding-top: 22px;
    font-size: 13px;
    color: #8FA6BC;
}
.nvs-footer-bottom a { color: #C7D6E4; text-decoration: none; margin: 0 8px; }
.nvs-footer-bottom a:hover { color: var(--nvs-cyan-soft); }

/* Pages légales */
.nvs-legal { padding: 140px 24px 80px; font-family: 'Inter Tight', sans-serif; }
.nvs-legal-inner { max-width: 760px; margin: 0 auto; }
.nvs-legal h1 { font-size: clamp(28px, 4vw, 40px); font-weight: 800; color: var(--nvs-primary); text-transform: uppercase; margin: 0 0 32px; }
.nvs-legal h2 { font-size: 19px; font-weight: 700; color: var(--nvs-primary); margin: 32px 0 10px; }
.nvs-legal p { font-size: 15px; line-height: 1.7; color: #45526B; margin: 0 0 14px; }

@media (max-width: 1000px) {
    .nvs-footer-box { padding: 52px 32px 24px; border-radius: 26px; }
    .nvs-footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
}
@media (max-width: 560px) {
    .nvs-footer-grid { grid-template-columns: 1fr; gap: 32px; }
    .nvs-footer-bottom { flex-direction: column; text-align: center; }
    .nvs-legal { padding: 120px 20px 60px; }
}

/* ============================================================
   PAGE SERVICES — hero blob + grille de cartes à pied marine
   ============================================================ */
.nvs-svc-hero {
    position: relative;
    background: #fff;
    padding: 150px 24px 56px;
    overflow: hidden;
    font-family: 'Inter Tight', sans-serif;
}
.nvs-svc-blob {
    position: absolute;
    top: -180px;
    left: -220px;
    width: 720px;
    height: 480px;
    background: #CFE9F5;
    border-radius: 45% 55% 60% 40% / 55% 45% 55% 45%;
    transform: rotate(-10deg);
    pointer-events: none;
}
.nvs-svc-hero-inner { max-width: 1200px; margin: 0 auto; position: relative; }
.nvs-breadcrumb {
    display: flex;
    gap: 10px;
    font-size: 13.5px;
    color: #6B7A90;
    margin-bottom: 14px;
    font-weight: 500;
}
.nvs-breadcrumb a { color: var(--nvs-cyan); text-decoration: none; }
.nvs-breadcrumb a:hover { text-decoration: underline; }
.nvs-svc-title {
    font-size: clamp(38px, 6vw, 66px);
    font-weight: 800;
    text-transform: uppercase;
    color: var(--nvs-primary);
    letter-spacing: -0.01em;
    line-height: 1.02;
    margin: 0 0 20px;
}
.nvs-svc-intro {
    font-size: 16.5px;
    line-height: 1.65;
    color: #45526B;
    max-width: 520px;
    margin: 0;
}

.nvs-svc-grid-section {
    background: #fff;
    padding: 40px 24px 96px;
    font-family: 'Inter Tight', sans-serif;
}
.nvs-svc-grid-inner { max-width: 1200px; margin: 0 auto; }
.nvs-svc-subtitle {
    font-size: clamp(24px, 3.2vw, 36px);
    font-weight: 800;
    text-transform: uppercase;
    color: var(--nvs-primary);
    margin: 0 0 48px;
}
.nvs-svc-subtitle .nvs-title-wave {
    display: block;
    width: 74px;
    height: 9px;
    color: var(--nvs-accent);
    margin-top: 12px;
}
.nvs-svc-subtitle .nvs-title-wave svg { width: 100%; height: 100%; display: block; overflow: visible; }

.nvs-svc-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}
.nvs-svc-card {
    border-radius: 22px;
    overflow: hidden;
    box-shadow: 0 12px 34px rgba(4, 34, 69, .12);
    display: flex;
    flex-direction: column;
    background: var(--nvs-primary);
}
.nvs-svc-img { height: 240px; overflow: hidden; background: #fff; }
.nvs-svc-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform .35s ease;
}
.nvs-svc-card:hover .nvs-svc-img img { transform: scale(1.05); }
.nvs-svc-foot {
    padding: 22px 24px 26px;
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 16px;
    flex: 1;
    justify-content: space-between;
}
.nvs-svc-foot h3 {
    color: #fff;
    font-size: 17.5px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.02em;
    margin: 0;
    line-height: 1.25;
}
.nvs-svc-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 28px;
    border: 2px solid rgba(255, 255, 255, .8);
    border-radius: 50px;
    color: #fff;
    font-size: 12.5px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    text-decoration: none;
    transition: background .15s, color .15s;
    align-self: center;
    min-width: 150px;
}
.nvs-svc-btn:hover { background: #fff; color: var(--nvs-primary); }

.nvs-svc-cta {
    margin-top: 64px;
    text-align: center;
}
.nvs-svc-cta p {
    font-size: 16px;
    color: #45526B;
    margin: 0 0 20px;
}

@media (max-width: 1000px) {
    .nvs-svc-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 640px) {
    .nvs-svc-hero { padding: 130px 20px 40px; }
    .nvs-svc-grid { grid-template-columns: 1fr; gap: 24px; }
    .nvs-svc-blob { width: 420px; height: 320px; top: -140px; left: -180px; }
    .nvs-svc-grid-section { padding: 24px 20px 64px; }
}

/* ============================================================
   CTA BAND + CARTES DE RENVOI (bas de page services)
   ============================================================ */
.nvs-cta-band {
    margin-top: 72px;
    background: #A9DDD8;
    border-radius: 32px;
    padding: 72px 32px;
    text-align: center;
}
.nvs-cta-band h2 {
    font-size: clamp(26px, 3.6vw, 42px);
    font-weight: 800;
    text-transform: uppercase;
    color: var(--nvs-primary);
    margin: 0 0 16px;
    letter-spacing: -0.005em;
}
.nvs-cta-band p {
    font-size: 15.5px;
    line-height: 1.65;
    color: #1F4258;
    max-width: 560px;
    margin: 0 auto 30px;
}
.nvs-cta-band-actions {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 14px;
}
.nvs-cta-band-solid {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 15px 30px;
    background: var(--nvs-primary);
    border: 2px solid var(--nvs-primary);
    color: #fff;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    text-decoration: none;
    transition: background .15s, border-color .15s;
}
.nvs-cta-band-solid:hover { background: var(--nvs-cyan); border-color: var(--nvs-cyan); color: #fff; }
.nvs-cta-band-outline {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 15px 30px;
    background: transparent;
    border: 2px solid var(--nvs-primary);
    color: var(--nvs-primary);
    border-radius: 50px;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    text-decoration: none;
    transition: background .15s, color .15s;
}
.nvs-cta-band-outline:hover { background: var(--nvs-primary); color: #fff; }

.nvs-cta-cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    max-width: 920px;
    margin: 40px auto 0;
}
.nvs-cta-card {
    background: #fff;
    border-radius: 24px;
    box-shadow: 0 14px 40px rgba(4, 34, 69, .10);
    padding: 40px 36px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 14px;
}
.nvs-cta-card h3 {
    font-size: 19px;
    font-weight: 800;
    text-transform: uppercase;
    color: var(--nvs-primary);
    margin: 0;
    line-height: 1.25;
}
.nvs-cta-card p {
    font-size: 14.5px;
    line-height: 1.6;
    color: #45526B;
    margin: 0;
}
.nvs-cta-card-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-top: 8px;
    padding: 13px 34px;
    border-radius: 50px;
    font-size: 12.5px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    text-decoration: none;
    color: var(--nvs-primary);
    transition: filter .15s;
}
.nvs-cta-card-btn:hover { filter: brightness(.94); }
.nvs-cta-card-btn-cyan { background: #BFE3F2; }
.nvs-cta-card-btn-teal { background: #C4E9E5; }

@media (max-width: 720px) {
    .nvs-cta-band { padding: 52px 20px; border-radius: 24px; margin-top: 48px; }
    .nvs-cta-cards { grid-template-columns: 1fr; gap: 20px; }
}

/* ============================================================
   BLOC SEO DÉPLIABLE (pages services)
   ============================================================ */
.nvs-seo {
    background: #fff;
    padding: 16px 24px 72px;
    font-family: 'Inter Tight', sans-serif;
}
.nvs-seo-inner { max-width: 1100px; margin: 0 auto; }
.nvs-seo-details summary {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    cursor: pointer;
    list-style: none;
    font-size: clamp(19px, 2.4vw, 26px);
    font-weight: 800;
    text-transform: uppercase;
    color: var(--nvs-primary);
    padding: 8px 0 18px;
    border-bottom: 2px solid #DCE4EC;
    letter-spacing: 0.005em;
}
.nvs-seo-details summary::-webkit-details-marker { display: none; }
.nvs-seo-details summary svg {
    width: 22px;
    height: 22px;
    flex-shrink: 0;
    color: var(--nvs-cyan);
    transition: transform .2s;
}
.nvs-seo-details[open] summary svg { transform: rotate(180deg); }
.nvs-seo-body { padding-top: 26px; }
.nvs-seo-body h2 {
    font-size: clamp(18px, 2.2vw, 24px);
    font-weight: 800;
    text-transform: uppercase;
    color: var(--nvs-primary);
    margin: 30px 0 12px;
    line-height: 1.25;
}
.nvs-seo-body h2:first-child { margin-top: 0; }
.nvs-seo-body p {
    font-size: 15.5px;
    line-height: 1.75;
    color: #45526B;
    margin: 0 0 14px;
}

/* ============================================================
   ENGAGEMENTS — variante marine (pages services)
   ============================================================ */
.nvs-values--navy {
    background: transparent;
    padding: 24px 16px 32px;
}
.nvs-values--navy .nvs-values-inner {
    max-width: 1440px;
    background: var(--nvs-primary);
    border-radius: 36px;
    padding: 72px 64px 80px;
}
.nvs-values--navy .nvs-values-title { color: #fff; max-width: none; }
.nvs-values--navy .nvs-values-title .nvs-title-wave { color: var(--nvs-cyan-soft); }
.nvs-values--navy .nvs-value-icon { color: #fff; opacity: .9; }
.nvs-values--navy .nvs-value h3 { color: #fff; }
.nvs-values--navy .nvs-value p { color: #B5C9D9; }
.nvs-hl-cyan { color: var(--nvs-cyan-soft); }
.nvs-hl-teal { color: #7FD8CF; }
.nvs-hl-soft { color: #BFE3F2; }
@media (max-width: 900px) {
    .nvs-values--navy .nvs-values-inner { padding: 52px 28px 56px; border-radius: 26px; }
}

/* ============================================================
   HERO PHOTO plein écran — pages services (bloc 1)
   ============================================================ */
.nvs-svc-photohero {
    position: relative;
    min-height: 86vh;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: flex-end;
    font-family: 'Inter Tight', sans-serif;
}
.nvs-svc-photohero-inner {
    max-width: 1360px;
    width: 100%;
    margin: 0 auto;
    padding: 160px 40px 72px;
}
.nvs-breadcrumb-light {
    color: rgba(255, 255, 255, .75);
    margin-bottom: 10px;
}
.nvs-breadcrumb-light a { color: rgba(255, 255, 255, .85); }
.nvs-breadcrumb-light a:hover { color: #fff; }
.nvs-breadcrumb-light span[aria-current] { color: #fff; font-weight: 700; }
.nvs-svc-phototitle {
    color: #fff;
    font-size: clamp(40px, 6.4vw, 78px);
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: -0.01em;
    line-height: 0.98;
    margin: 0 0 18px;
    max-width: 640px;
    text-shadow: 0 2px 28px rgba(4, 34, 69, .4);
}
.nvs-svc-photointro {
    color: rgba(255, 255, 255, .92);
    font-size: 16.5px;
    line-height: 1.6;
    max-width: 460px;
    margin: 0;
    text-shadow: 0 1px 14px rgba(4, 34, 69, .45);
}
@media (max-width: 767px) {
    .nvs-svc-photohero { min-height: 72vh; }
    .nvs-svc-photohero-inner { padding: 130px 20px 52px; }
    .nvs-svc-phototitle { font-size: clamp(32px, 9.5vw, 44px); }
}

/* ============================================================
   ATOUTS — 3 colonnes, 3e icône géante (pages services)
   ============================================================ */
.nvs-atouts {
    background: #fff;
    padding: 88px 24px 40px;
    font-family: 'Inter Tight', sans-serif;
}
.nvs-atouts-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr 1.2fr;
    gap: 56px;
    align-items: start;
}
.nvs-atout-icon {
    display: inline-flex;
    width: 64px;
    height: 64px;
    color: var(--nvs-cyan);
    margin-bottom: 16px;
}
.nvs-atout-icon svg { width: 100%; height: 100%; }
.nvs-atout-icon-big { width: 190px; height: 190px; margin-bottom: 8px; }
.nvs-atout h3 {
    font-size: 19px;
    font-weight: 800;
    text-transform: uppercase;
    color: var(--nvs-primary);
    margin: 0 0 10px;
    line-height: 1.2;
}
.nvs-atout p {
    font-size: 14.5px;
    line-height: 1.65;
    color: #45526B;
    margin: 0;
    max-width: 330px;
}

/* ============================================================
   PRESTATION DE … — titre outline sur blob + texte + photo
   ============================================================ */
.nvs-presta {
    position: relative;
    background: #fff;
    padding: 56px 24px 72px;
    overflow: hidden;
    font-family: 'Inter Tight', sans-serif;
}
.nvs-presta-blob {
    position: absolute;
    top: 20px;
    left: -260px;
    width: 640px;
    height: 300px;
    background: #A9CBE8;
    border-radius: 48% 52% 62% 38% / 58% 46% 54% 42%;
    transform: rotate(-6deg);
    pointer-events: none;
}
.nvs-presta-inner {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    display: grid;
    grid-template-columns: 1.4fr 1fr;
    gap: 64px;
    align-items: start;
}
.nvs-presta-title {
    font-size: clamp(28px, 4vw, 46px);
    font-weight: 800;
    text-transform: uppercase;
    color: var(--nvs-primary);
    line-height: 1.05;
    margin: 0 0 26px;
}
.nvs-outline {
    color: #fff;
    -webkit-text-stroke: 2px var(--nvs-cyan);
    paint-order: stroke fill;
}
.nvs-presta-sub {
    font-size: 17px;
    font-weight: 700;
    color: var(--nvs-cyan);
    margin: 0 0 14px;
}
.nvs-presta-text p {
    font-size: 15.5px;
    line-height: 1.75;
    color: #45526B;
    margin: 0 0 14px;
}
.nvs-presta-photo {
    border-radius: 22px;
    overflow: hidden;
    box-shadow: 0 16px 44px rgba(4, 34, 69, .14);
    margin-top: 24px;
}
.nvs-presta-photo img { width: 100%; height: 100%; object-fit: cover; display: block; }

@media (max-width: 900px) {
    .nvs-atouts { padding: 60px 20px 24px; }
    .nvs-atouts-inner { grid-template-columns: 1fr; gap: 40px; }
    .nvs-atout-icon-big { width: 110px; height: 110px; }
    .nvs-atout p { max-width: none; }
    .nvs-presta-inner { grid-template-columns: 1fr; gap: 32px; }
    .nvs-presta-photo { order: -1; margin-top: 0; }
    .nvs-presta-blob { width: 420px; height: 220px; left: -200px; }
}

/* ============================================================
   HERO SECTEURS — surtitre plein + nom en contour blanc
   ============================================================ */
.nvs-sector-title { display: flex; flex-direction: column; gap: 2px; }
.nvs-sector-surtitle {
    color: #fff;
    font-size: clamp(30px, 4.4vw, 54px);
    line-height: 1.04;
}
.nvs-outline-white {
    color: transparent;
    -webkit-text-stroke: 2px rgba(255, 255, 255, .92);
    font-size: clamp(34px, 5.2vw, 64px);
    line-height: 1.06;
    letter-spacing: 0.01em;
}
@supports not (-webkit-text-stroke: 2px #fff) {
    .nvs-outline-white { color: #fff; }
}
@media (max-width: 767px) {
    .nvs-outline-white { -webkit-text-stroke-width: 1.5px; }
}

/* ============================================================
   BLOC 2 PAGES SECTEURS — intro + photo, 4 promesses fond organique
   ============================================================ */
.nvs-sd2 {
    position: relative;
    background: #fff;
    overflow: hidden;
    font-family: 'Inter Tight', sans-serif;
}
.nvs-sd2-blob {
    position: absolute;
    top: -60px;
    left: 44%;
    width: 340px;
    height: 220px;
    background: #CFE9F5;
    border-radius: 52% 48% 60% 40% / 55% 60% 40% 45%;
    transform: rotate(12deg);
    pointer-events: none;
}
.nvs-sd2-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.15fr 1fr;
    gap: 64px;
    align-items: center;
    padding: 88px 24px 72px;
    position: relative;
}
.nvs-sd2-title {
    font-size: clamp(24px, 3.2vw, 36px);
    font-weight: 800;
    text-transform: uppercase;
    color: var(--nvs-primary);
    line-height: 1.15;
    margin: 0 0 22px;
    position: relative;
}
.nvs-sd2-text p {
    font-size: 15.5px;
    line-height: 1.75;
    color: #45526B;
    margin: 0 0 14px;
}
.nvs-sd2-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 26px;
}
.nvs-sd2-photo {
    border-radius: 240px 24px 24px 240px / 200px 24px 24px 200px;
    overflow: hidden;
    box-shadow: 0 18px 50px rgba(4, 34, 69, .14);
    min-height: 380px;
}
.nvs-sd2-photo img { width: 100%; height: 100%; object-fit: cover; display: block; }

/* Zone 4 promesses — fond pastel organique */
.nvs-sd2-features {
    background: #BCE4E0;
    border-radius: 280px 120px 0 0 / 90px 60px 0 0;
    padding: 96px 24px 88px;
    position: relative;
}
.nvs-sd2-features-inner {
    max-width: 1000px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 56px 72px;
}
.nvs-sd2-ficon {
    display: inline-flex;
    width: 62px;
    height: 62px;
    color: var(--nvs-primary);
    margin-bottom: 16px;
}
.nvs-sd2-ficon svg { width: 100%; height: 100%; }
.nvs-sd2-feature h3 {
    font-size: 17px;
    font-weight: 800;
    text-transform: uppercase;
    color: var(--nvs-primary);
    line-height: 1.25;
    margin: 0 0 10px;
}
.nvs-sd2-feature p {
    font-size: 14px;
    line-height: 1.65;
    color: #1F4258;
    margin: 0;
    max-width: 400px;
}
@media (max-width: 900px) {
    .nvs-sd2-inner { grid-template-columns: 1fr; gap: 32px; padding: 60px 20px 48px; }
    .nvs-sd2-photo { order: -1; min-height: 260px; border-radius: 24px; }
    .nvs-sd2-features { border-radius: 80px 40px 0 0; padding: 64px 20px 56px; }
    .nvs-sd2-features-inner { grid-template-columns: 1fr; gap: 36px; }
    .nvs-sd2-feature p { max-width: none; }
}

/* ============================================================
   CARTES ZIGZAG — sections de contenu sur bande diagonale
   ============================================================ */
.nvs-zz {
    position: relative;
    background: #fff;
    padding: 130px 24px 150px;
    overflow: hidden;
    font-family: 'Inter Tight', sans-serif;
}
.nvs-zz::before {
    content: '';
    position: absolute;
    left: -10%;
    right: -10%;
    top: 90px;
    bottom: 90px;
    background: #BFDCEF;
    transform: skewY(-5deg);
    pointer-events: none;
}
.nvs-zz-inner {
    max-width: 1080px;
    margin: 0 auto;
    position: relative;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px 56px;
    align-items: start;
}
.nvs-zz-card {
    background: #fff;
    border-radius: 26px;
    box-shadow: 0 18px 50px rgba(4, 34, 69, .13);
    padding: 40px 36px 36px;
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 14px;
}
.nvs-zz-card:nth-child(even) { margin-top: 130px; }
.nvs-zz-card h2 {
    font-size: 19px;
    font-weight: 800;
    text-transform: uppercase;
    color: var(--nvs-primary);
    line-height: 1.3;
    margin: 0;
    letter-spacing: 0.01em;
}
.nvs-zz-card p {
    font-size: 14.5px;
    line-height: 1.7;
    color: #45526B;
    margin: 0;
}
.nvs-zz-photo {
    border-radius: 18px;
    overflow: hidden;
    margin-top: 10px;
}
.nvs-zz-photo img { width: 100%; height: 240px; object-fit: cover; display: block; }

@media (max-width: 860px) {
    .nvs-zz { padding: 90px 20px 100px; }
    .nvs-zz-inner { grid-template-columns: 1fr; gap: 28px; }
    .nvs-zz-card:nth-child(even) { margin-top: 0; }
    .nvs-zz::before { top: 50px; bottom: 50px; }
}

/* ============================================================
   CTA FINAL BLANC (pages secteurs) — aligné gauche
   ============================================================ */
.nvs-exchange {
    background: #fff;
    padding: 88px 24px 96px;
    font-family: 'Inter Tight', sans-serif;
}
.nvs-exchange-inner { max-width: 1200px; margin: 0 auto; }
.nvs-exchange h2 {
    font-size: clamp(28px, 4vw, 46px);
    font-weight: 800;
    text-transform: uppercase;
    color: var(--nvs-primary);
    letter-spacing: -0.005em;
    margin: 0 0 16px;
}
.nvs-exchange p {
    font-size: 15.5px;
    line-height: 1.7;
    color: #45526B;
    max-width: 520px;
    margin: 0 0 28px;
}
.nvs-exchange-actions { display: flex; flex-wrap: wrap; gap: 14px; }
@media (max-width: 640px) {
    .nvs-exchange { padding: 60px 20px 64px; }
}

/* ============================================================
   PAGES SOCIÉTÉ — galerie, FAQ, blocs "en attente"
   ============================================================ */
.nvs-gal {
    background: #fff;
    padding: 88px 24px 80px;
    font-family: 'Inter Tight', sans-serif;
}
.nvs-gal-inner { max-width: 1200px; margin: 0 auto; }
.nvs-gal-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.nvs-gal-tile {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    display: block;
    box-shadow: 0 10px 28px rgba(4, 34, 69, .12);
    aspect-ratio: 4 / 3;
}
.nvs-gal-tile img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform .35s ease;
}
.nvs-gal-tile:hover img { transform: scale(1.06); }
.nvs-gal-label {
    position: absolute;
    left: 14px;
    right: 14px;
    bottom: 14px;
    background: rgba(4, 34, 69, .88);
    color: #fff;
    font-size: 13.5px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    padding: 10px 16px;
    border-radius: 50px;
    text-align: center;
}
.nvs-gal-note {
    text-align: center;
    margin: 40px 0 0;
    font-size: 14.5px;
    color: #45526B;
}
.nvs-gal-note a { color: var(--nvs-cyan); font-weight: 600; }

/* FAQ accordéon */
.nvs-faq {
    background: #fff;
    padding: 88px 24px 80px;
    font-family: 'Inter Tight', sans-serif;
}
.nvs-faq-inner { max-width: 860px; margin: 0 auto; }
.nvs-faq-item {
    border-bottom: 1.5px solid #DCE4EC;
}
.nvs-faq-item summary {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    cursor: pointer;
    list-style: none;
    font-size: 16.5px;
    font-weight: 700;
    color: var(--nvs-primary);
    padding: 20px 4px;
}
.nvs-faq-item summary::-webkit-details-marker { display: none; }
.nvs-faq-item summary svg {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
    color: var(--nvs-cyan);
    transition: transform .2s;
}
.nvs-faq-item[open] summary svg { transform: rotate(180deg); }
.nvs-faq-item[open] summary { color: var(--nvs-cyan); }
.nvs-faq-item p {
    font-size: 14.5px;
    line-height: 1.7;
    color: #45526B;
    margin: 0;
    padding: 0 4px 20px;
    max-width: 760px;
}

/* Blocs "en attente" (avis / actualités) */
.nvs-reviews-pending {
    max-width: 640px;
    margin: 0 auto;
    text-align: center;
    background: #F7FBFD;
    border-radius: 24px;
    padding: 56px 36px;
}
.nvs-reviews-pending p {
    font-size: 15.5px;
    line-height: 1.7;
    color: #45526B;
    margin: 0 0 14px;
}
.nvs-reviews-pending strong { color: var(--nvs-primary); font-size: 17px; }
.nvs-reviews-pending .nvs-exchange-actions { margin-top: 24px; }

@media (max-width: 900px) {
    .nvs-gal-grid { grid-template-columns: 1fr 1fr; gap: 16px; }
}
@media (max-width: 560px) {
    .nvs-gal-grid { grid-template-columns: 1fr; }
    .nvs-reviews-pending { padding: 40px 22px; }
}
