/* ============================================================
   VETCYT — components.css
   Styles spécifiques aux composants de la home et du layout.
   ============================================================ */

/* ============================================================
   1. Header & navigation
   ============================================================ */

.vc-skip-link {
    background: var(--vc-marine);
    color: var(--vc-blanc);
    padding: 0.5rem 1rem;
    position: absolute;
    top: 0;
    left: 0;
    z-index: var(--vc-z-nav);
}
.vc-skip-link:focus {
    clip: auto;
    width: auto;
    height: auto;
    margin: 0;
    overflow: visible;
}

.vc-scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    height: 3px;
    width: 0;
    background: var(--vc-framboise);
    z-index: var(--vc-z-nav);
    transition: width 100ms linear;
}

.vc-header {
    position: sticky;
    top: 0;
    z-index: var(--vc-z-nav);
    background: var(--vc-blanc);
    border-bottom: var(--vc-border);
    transition: box-shadow var(--vc-transition);
}
.vc-header.is-scrolled {
    box-shadow: 0 2px 12px rgba(26, 43, 74, 0.06);
}

.vc-header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--vc-space-4);
    padding-top: 0.875rem;
    padding-bottom: 0.875rem;
}

.vc-logo-text {
    font-family: var(--vc-font-serif);
    font-size: 1.625rem;
    font-weight: 500;
    color: var(--vc-marine);
    letter-spacing: 0.02em;
    text-decoration: none;
}
.vc-logo-text span {
    color: var(--vc-framboise);
}

.vc-menu {
    display: flex;
    gap: var(--vc-space-5);
    list-style: none;
    margin: 0;
    padding: 0;
}
.vc-menu li a {
    color: var(--vc-texte-secondaire);
    font-size: 0.9rem;
    text-decoration: none;
    transition: color var(--vc-transition);
}
.vc-menu li.current-menu-item a,
.vc-menu li a:hover {
    color: var(--vc-marine);
    font-weight: 500;
}

.vc-header-actions {
    display: flex;
    align-items: center;
    gap: var(--vc-space-4);
}

.vc-btn-compact {
    padding: 8px 16px;
    font-size: 0.8125rem;
}

.vc-lang-switcher {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.8125rem;
    color: var(--vc-texte-secondaire);
}
.vc-lang {
    color: var(--vc-texte-secondaire);
    text-decoration: none;
    text-transform: uppercase;
    transition: color var(--vc-transition);
}
.vc-lang.is-current {
    color: var(--vc-marine);
    font-weight: 500;
}
.vc-lang:hover {
    color: var(--vc-framboise-dark);
}
.vc-lang-sep {
    color: var(--vc-bordure);
}

/* Burger menu */
.vc-burger {
    display: none;
    background: transparent;
    border: 0;
    padding: 8px;
    cursor: pointer;
    width: 40px;
    height: 40px;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
}
.vc-burger span {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--vc-marine);
    transition: transform var(--vc-transition), opacity var(--vc-transition);
}
.vc-burger[aria-expanded="true"] span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}
.vc-burger[aria-expanded="true"] span:nth-child(2) {
    opacity: 0;
}
.vc-burger[aria-expanded="true"] span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

.vc-mobile-nav {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    max-width: 360px;
    background: var(--vc-blanc);
    box-shadow: -4px 0 24px rgba(26, 43, 74, 0.08);
    transform: translateX(100%);
    transition: transform 300ms ease;
    z-index: calc(var(--vc-z-nav) - 1);
    overflow-y: auto;
    padding-top: 80px;
}
.vc-mobile-nav.is-open {
    transform: translateX(0);
}
.vc-mobile-close {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--vc-creme, #FBF6EE);
    color: var(--vc-marine);
    border: 0;
    border-radius: 50%;
    cursor: pointer;
    z-index: 2;
    transition: background var(--vc-transition), color var(--vc-transition);
}
.vc-mobile-close:hover,
.vc-mobile-close:focus-visible {
    background: var(--vc-framboise-btn, #C13A66);
    color: #fff;
}
.vc-mobile-nav-inner {
    padding: var(--vc-space-6);
}
.vc-mobile-menu {
    list-style: none;
    margin: 0 0 var(--vc-space-8);
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: var(--vc-space-4);
}
.vc-mobile-menu li a {
    font-family: var(--vc-font-serif);
    font-size: 1.0625rem;
    color: var(--vc-marine);
    text-decoration: none;
    font-weight: 500;
}
.vc-mobile-actions {
    display: flex;
    flex-direction: column;
    gap: var(--vc-space-4);
    padding-top: var(--vc-space-4);
    border-top: var(--vc-border);
}

/* ============================================================
   2. Hero
   ============================================================ */

.vc-hero {
    background: var(--vc-creme);
    padding: var(--vc-space-20) 0;
}
.vc-hero-grid {
    display: grid;
    grid-template-columns: 1fr 360px;
    gap: var(--vc-space-12);
    align-items: center;
}
.vc-hero h1 {
    font-size: clamp(2.25rem, 5vw, 3.5rem);
    margin-bottom: var(--vc-space-5);
    max-width: 580px;
}
.vc-hero-lead {
    font-size: 1.0625rem;
    color: var(--vc-texte-secondaire);
    line-height: 1.6;
    max-width: 520px;
    margin-bottom: var(--vc-space-8);
}
.vc-hero-actions {
    display: flex;
    gap: var(--vc-space-3);
    flex-wrap: wrap;
}
.vc-hero-visual {
    position: relative;
    width: 100%;
    max-width: 560px;
}
.vc-hero-media {
    position: relative;
    width: 100%;
    aspect-ratio: 4 / 3;
    border-radius: var(--vc-radius-lg);
    overflow: hidden;
    box-shadow: 0 24px 64px -16px rgba(0, 0, 0, 0.5), 0 0 0 1px rgba(212, 83, 126, 0.3);
}
.vc-hero-media-fallback {
    background: var(--vc-blanc);
    display: flex;
    align-items: center;
    justify-content: center;
    aspect-ratio: 1;
    border-radius: 50%;
    box-shadow: var(--vc-glow-framboise);
    max-width: 360px;
    margin: 0 auto;
}
.vc-hero-media-fallback svg {
    width: 80%;
    height: 80%;
}
.vc-hero-media-badge {
    position: absolute;
    bottom: 14px;
    left: 14px;
    background: rgba(10, 20, 40, 0.7);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    color: var(--vc-blanc);
    padding: 6px 12px;
    border-radius: var(--vc-radius-pill);
    font-size: 0.6875rem;
    font-weight: 500;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

/* ============================================================
   3. Trust strip
   ============================================================ */

.vc-trust {
    background: var(--vc-blanc);
    padding: var(--vc-space-8) 0;
    border-top: var(--vc-border);
    border-bottom: var(--vc-border);
}
.vc-trust-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--vc-space-6);
    text-align: center;
}
.vc-trust-n {
    font-family: var(--vc-font-serif);
    font-size: clamp(1.75rem, 3.5vw, 2.25rem);
    font-weight: 500;
    color: var(--vc-marine);
    margin: 0;
    line-height: 1;
}
.vc-trust-n span {
    font-size: 0.6em;
}
.vc-trust-l {
    font-size: 0.8125rem;
    color: var(--vc-texte-muet);
    margin-top: 0.5rem;
}

/* ============================================================
   4. Problem / Solution
   ============================================================ */

.vc-compare {
    background: var(--vc-blanc);
}
.vc-compare-head {
    text-align: center;
    margin-bottom: var(--vc-space-10);
}
.vc-compare-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--vc-space-5);
}
.vc-compare-card {
    border-radius: var(--vc-radius-lg);
    padding: var(--vc-space-8);
}
.vc-compare-old {
    background: var(--vc-creme-fonce);
}
.vc-compare-new {
    background: var(--vc-marine);
    color: var(--vc-blanc);
}
.vc-compare-label {
    font-size: 0.75rem;
    letter-spacing: 0.05em;
    font-weight: 500;
    margin: 0 0 var(--vc-space-5);
    color: var(--vc-texte-muet);
}
.vc-compare-new .vc-compare-label {
    color: var(--vc-rose-pale);
}
.vc-compare-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: var(--vc-space-3);
}
.vc-compare-list li {
    display: flex;
    gap: 10px;
    align-items: flex-start;
    font-size: 0.9375rem;
    color: var(--vc-texte-muet);
    line-height: 1.5;
}
.vc-compare-new .vc-compare-list li {
    color: var(--vc-creme);
}
.vc-compare-icon {
    flex-shrink: 0;
    width: 20px;
    height: 20px;
    margin-top: 1px;
    stroke-width: 2;
}
.vc-compare-old .vc-compare-icon {
    color: var(--vc-texte-muet);
}
.vc-compare-new .vc-compare-icon {
    color: var(--vc-framboise);
}

/* ============================================================
   5. Piliers
   ============================================================ */

.vc-piliers {
    background: var(--vc-creme);
}
.vc-piliers-head {
    text-align: center;
    margin-bottom: var(--vc-space-10);
}
.vc-piliers-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: var(--vc-space-4);
}
.vc-pilier {
    background: var(--vc-blanc);
    border: var(--vc-border);
    border-radius: var(--vc-radius-lg);
    padding: var(--vc-space-5);
    transition: box-shadow var(--vc-transition), transform var(--vc-transition);
}
.vc-pilier:hover {
    box-shadow: 0 4px 24px rgba(26, 43, 74, 0.06);
    transform: translateY(-2px);
}
.vc-pilier-icon {
    width: 32px;
    height: 32px;
    color: var(--vc-framboise);
    margin-bottom: var(--vc-space-3);
    stroke-width: 1.5;
}
.vc-pilier h3 {
    font-family: var(--vc-font-sans);
    font-size: 1rem;
    margin: 0 0 var(--vc-space-2);
    color: var(--vc-marine);
}
.vc-pilier p {
    font-size: 0.875rem;
    color: var(--vc-texte-muet);
    margin: 0;
    line-height: 1.5;
}

/* ============================================================
   6. Cytologie arc
   ============================================================ */

.vc-cytology {
    background: var(--vc-blanc);
}
.vc-cytology-head {
    text-align: center;
    margin-bottom: var(--vc-space-8);
}
.vc-cytology-svg {
    max-width: 680px;
    margin: 0 auto;
    display: block;
}

/* ============================================================
   7. Parcours preview
   ============================================================ */

.vc-parcours {
    background: var(--vc-creme);
}
.vc-parcours-head {
    text-align: center;
    margin-bottom: var(--vc-space-10);
}
.vc-parcours-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--vc-space-5);
}
.vc-parcours-card {
    background: var(--vc-blanc);
    border: var(--vc-border);
    border-radius: var(--vc-radius-lg);
    padding: var(--vc-space-5);
    transition: box-shadow var(--vc-transition);
    display: flex;
    flex-direction: column;
}
.vc-parcours-card:hover {
    box-shadow: 0 4px 24px rgba(26, 43, 74, 0.06);
}
.vc-parcours-card.is-featured {
    border: 2px solid var(--vc-framboise);
    position: relative;
}
.vc-parcours-badge {
    position: absolute;
    top: 14px;
    right: 14px;
    background: var(--vc-framboise);
    color: var(--vc-blanc);
    font-size: 0.6875rem;
    padding: 6px 14px;
    border-radius: var(--vc-radius-pill);
    font-weight: 600;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    z-index: 5;
    box-shadow: 0 4px 16px rgba(212, 83, 126, 0.45);
    display: inline-flex;
    align-items: center;
    gap: 4px;
}
.vc-parcours-badge::before {
    content: "★";
    font-size: 0.875em;
}
.vc-parcours-pill {
    display: inline-block;
    padding: 4px 12px;
    background: var(--vc-framboise-light);
    color: var(--vc-rose-cellule);
    font-size: 0.75rem;
    border-radius: var(--vc-radius-pill);
    font-weight: 500;
    align-self: flex-start;
    width: -moz-max-content;
    width: max-content;
    max-width: 100%;
}
.vc-parcours-pill-dark {
    background: var(--vc-marine);
    color: var(--vc-blanc);
}
.vc-parcours-card h3 {
    font-family: var(--vc-font-serif);
    font-size: 1.375rem;
    margin: var(--vc-space-3) 0 var(--vc-space-2);
    color: var(--vc-marine);
}
.vc-parcours-desc {
    font-size: 0.875rem;
    color: var(--vc-texte-muet);
    line-height: 1.5;
    margin: 0;
}
.vc-parcours-stats {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    margin-top: var(--vc-space-4);
    font-size: 0.75rem;
    color: var(--vc-texte-muet);
}
.vc-parcours-stats span:nth-child(even) {
    color: var(--vc-bordure);
}
.vc-parcours-footer {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    margin-top: var(--vc-space-5);
    padding-top: var(--vc-space-4);
    border-top: var(--vc-border);
}
.vc-parcours-price {
    font-family: var(--vc-font-serif);
    font-size: 1.375rem;
    font-weight: 500;
    color: var(--vc-marine);
}
.vc-parcours-link {
    font-size: 0.8125rem;
    color: var(--vc-framboise-dark);
    text-decoration: none;
    font-weight: 500;
}
.vc-parcours-link:hover {
    color: var(--vc-framboise);
}

/* ============================================================
   8. Témoignages carousel infini
   ============================================================ */

.vc-testimonials {
    background: var(--vc-blanc);
    overflow: hidden;
}
.vc-testimonials-head {
    text-align: center;
    margin-bottom: var(--vc-space-10);
}
.vc-testimonials-track-wrapper {
    mask-image: linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%);
    -webkit-mask-image: linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%);
    overflow: hidden;
}
.vc-testimonials-track {
    display: flex;
    gap: var(--vc-space-4);
    animation: vc-scroll 60s linear infinite;
    width: max-content;
}
.vc-testimonials-track:hover {
    animation-play-state: paused;
}
.vc-testimonial-card {
    background: var(--vc-creme);
    border-radius: var(--vc-radius-lg);
    padding: var(--vc-space-5);
    width: 320px;
    flex-shrink: 0;
}
.vc-testimonial-stars {
    display: flex;
    gap: 2px;
    color: var(--vc-framboise);
    font-size: 0.875rem;
    margin-bottom: var(--vc-space-3);
}
.vc-testimonial-quote {
    font-family: var(--vc-font-serif);
    font-size: 0.9375rem;
    line-height: 1.5;
    color: var(--vc-marine);
    font-style: italic;
    margin: 0 0 var(--vc-space-3);
}
.vc-testimonial-author {
    font-size: 0.8125rem;
    font-weight: 500;
    color: var(--vc-marine);
    margin: 0;
}
.vc-testimonial-meta {
    font-size: 0.6875rem;
    color: var(--vc-texte-muet);
    margin: 2px 0 0;
}

@keyframes vc-scroll {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
}

/* ============================================================
   9. Founder bloc
   ============================================================ */

.vc-founder {
    background: var(--vc-marine);
    color: var(--vc-blanc);
}
.vc-founder-grid {
    display: grid;
    grid-template-columns: 160px 1fr;
    gap: var(--vc-space-8);
    align-items: center;
}
.vc-founder-eyebrow {
    font-size: 0.75rem;
    letter-spacing: 0.08em;
    font-weight: 500;
    color: var(--vc-rose-pale);
    margin: 0 0 var(--vc-space-3);
}
.vc-founder h2 {
    color: var(--vc-blanc);
    margin-bottom: var(--vc-space-3);
}
.vc-founder p {
    color: var(--vc-creme);
    font-size: 0.9375rem;
    line-height: 1.6;
}
.vc-founder-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-top: var(--vc-space-4);
    color: var(--vc-rose-pale);
    text-decoration: none;
    font-size: 0.875rem;
    font-weight: 500;
}
.vc-founder-link:hover {
    color: var(--vc-framboise);
}

/* ============================================================
   10. Financement
   ============================================================ */

.vc-financement {
    background: var(--vc-blanc);
}
.vc-financement-head {
    text-align: center;
    margin-bottom: var(--vc-space-8);
}
.vc-financement-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--vc-space-4);
}
.vc-financement-card {
    text-align: center;
    padding: var(--vc-space-8) var(--vc-space-5);
    background: var(--vc-creme);
    border-radius: var(--vc-radius-lg);
}
.vc-financement-card h3 {
    font-family: var(--vc-font-serif);
    font-size: 1.375rem;
    margin: 0;
    color: var(--vc-marine);
}
.vc-financement-card p {
    margin-top: var(--vc-space-2);
    font-size: 0.8125rem;
    color: var(--vc-texte-muet);
}

/* ============================================================
   11. CTA final + steps
   ============================================================ */

.vc-cta-final {
    background: var(--vc-creme);
    padding: var(--vc-space-16) 0;
}
.vc-cta-head {
    text-align: center;
    max-width: 520px;
    margin: 0 auto var(--vc-space-8);
}
.vc-cta-steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--vc-space-5);
    max-width: 640px;
    margin: 0 auto var(--vc-space-8);
}
.vc-step {
    text-align: center;
}
.vc-step-n {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--vc-framboise);
    color: var(--vc-blanc);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--vc-font-serif);
    font-size: 1.25rem;
    font-weight: 500;
    margin: 0 auto var(--vc-space-3);
}
.vc-step-title {
    font-weight: 500;
    color: var(--vc-marine);
    font-size: 0.9375rem;
    margin: 0;
}
.vc-step-desc {
    font-size: 0.8125rem;
    color: var(--vc-texte-muet);
    margin-top: 4px;
}
.vc-cta-action {
    text-align: center;
}

/* ============================================================
   12. Footer
   ============================================================ */

.vc-footer {
    background: var(--vc-marine-dark);
    color: var(--vc-creme);
    padding: var(--vc-space-12) 0 var(--vc-space-6);
    margin-top: 0;
}
.vc-footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
    gap: var(--vc-space-8);
    margin-bottom: var(--vc-space-8);
}
.vc-footer-logo {
    font-family: var(--vc-font-serif);
    font-size: 1.625rem;
    font-weight: 500;
    color: var(--vc-blanc);
    margin-bottom: var(--vc-space-3);
    letter-spacing: 0.02em;
}
.vc-footer-logo span {
    color: var(--vc-framboise);
}
.vc-footer-tagline {
    font-size: 0.875rem;
    color: #B5D4F4;
    margin: 0 0 var(--vc-space-4);
    line-height: 1.5;
}
.vc-footer-badges {
    display: flex;
    gap: 6px;
    flex-wrap: wrap;
}
.vc-badge {
    font-size: 0.6875rem;
    padding: 4px 10px;
    background: rgba(255, 255, 255, 0.08);
    color: var(--vc-creme);
    border-radius: var(--vc-radius-pill);
    border: 0.5px solid rgba(255, 255, 255, 0.15);
}
.vc-footer-title {
    font-family: var(--vc-font-sans);
    font-size: 0.8125rem;
    font-weight: 500;
    color: var(--vc-blanc);
    margin: 0 0 var(--vc-space-3);
    text-transform: none;
}
.vc-footer-list {
    list-style: none;
    margin: 0;
    padding: 0;
}
.vc-footer-list li {
    margin-bottom: 0.5rem;
}
.vc-footer-list a {
    color: #B5D4F4;
    font-size: 0.8125rem;
    text-decoration: none;
    transition: color var(--vc-transition);
}
.vc-footer-list a:hover {
    color: var(--vc-blanc);
}
.vc-footer-contact li {
    font-size: 0.8125rem;
    color: #B5D4F4;
    line-height: 1.6;
}
.vc-footer-bottom {
    border-top: 0.5px solid var(--vc-marine-light);
    padding-top: var(--vc-space-4);
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: var(--vc-space-4);
    align-items: flex-start;
}
.vc-footer-legal-text {
    font-size: 0.6875rem;
    color: #85B7EB;
    line-height: 1.6;
    flex: 1;
    min-width: 240px;
}
.vc-footer-legal-text p {
    margin: 0 0 4px;
}
.vc-footer-legal-menu {
    list-style: none;
    display: flex;
    gap: var(--vc-space-3);
    margin: 0;
    padding: 0;
    font-size: 0.6875rem;
}
.vc-footer-legal-menu a {
    color: #85B7EB;
    text-decoration: none;
}
.vc-footer-legal-menu a:hover {
    color: var(--vc-blanc);
}

/* ============================================================
   13. Body lock quand mobile nav ouvert
   ============================================================ */

body.vc-nav-open {
    overflow: hidden;
}

/* ============================================================
   14. Responsive
   ============================================================ */

@media (max-width: 1024px) {
    .vc-nav-primary,
    .vc-header-actions {
        display: none;
    }
    .vc-burger {
        display: flex;
    }
    .vc-hero-grid {
        grid-template-columns: 1fr 280px;
        gap: var(--vc-space-8);
    }
    .vc-trust-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .vc-financement-grid {
        grid-template-columns: 1fr;
    }
    .vc-footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .vc-hero-grid {
        grid-template-columns: 1fr;
        gap: var(--vc-space-6);
    }
    .vc-hero-visual {
        max-width: 280px;
        margin: 0 auto;
    }
    .vc-compare-grid,
    .vc-parcours-grid {
        grid-template-columns: 1fr;
    }
    .vc-founder-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .vc-founder-grid > div:first-child {
        max-width: 140px;
        margin: 0 auto;
    }
    .vc-cta-steps {
        grid-template-columns: 1fr;
    }
    .vc-footer-grid {
        grid-template-columns: 1fr;
    }
    .vc-testimonial-card {
        width: 280px;
    }
    .vc-testimonials-track {
        animation-duration: 45s;
    }
    .vc-footer-bottom {
        flex-direction: column;
    }
}

@media (max-width: 380px) {
    .vc-logo-text {
        font-size: 1.375rem;
    }
    .vc-trust-grid {
        grid-template-columns: 1fr;
    }
}

/* ============================================================
   15. Fiche formation — breadcrumb
   ============================================================ */

.vc-breadcrumb {
    background: var(--vc-blanc);
    border-bottom: var(--vc-border);
    padding: 12px 0;
    font-size: 0.75rem;
    color: var(--vc-texte-muet);
}
.vc-breadcrumb a {
    color: var(--vc-texte-muet);
    text-decoration: none;
    transition: color var(--vc-transition);
}
.vc-breadcrumb a:hover {
    color: var(--vc-marine);
}
.vc-breadcrumb span:last-child {
    color: var(--vc-marine);
}

/* ============================================================
   16. Fiche formation — hero
   ============================================================ */

.vc-fiche-hero {
    background: var(--vc-creme);
    padding: var(--vc-space-16) 0 var(--vc-space-20);
}
.vc-fiche-hero-grid {
    display: grid;
    grid-template-columns: 1fr 320px;
    gap: var(--vc-space-12);
    align-items: start;
}
.vc-fiche-hero h1 {
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    line-height: 1.1;
    margin-bottom: var(--vc-space-4);
    max-width: 580px;
}
.vc-fiche-sous-titre {
    display: block;
    font-size: 0.6em;
    color: var(--vc-texte-muet);
    font-weight: 400;
    font-style: italic;
    margin-top: 0.25em;
}
.vc-fiche-lead {
    font-size: 1rem;
    color: var(--vc-texte-secondaire);
    max-width: 520px;
    line-height: 1.6;
    margin-bottom: var(--vc-space-6);
}
.vc-fiche-actions {
    display: flex;
    gap: var(--vc-space-3);
    flex-wrap: wrap;
}
.vc-fiche-by {
    margin-top: var(--vc-space-4);
    font-size: 0.8125rem;
    color: var(--vc-texte-muet);
}
.vc-fiche-by strong {
    color: var(--vc-marine);
    font-weight: 500;
}

/* ============================================================
   17. Fiche formation — carte « En un coup d'œil »
   ============================================================ */

.vc-fiche-summary {
    background: var(--vc-blanc);
    border: var(--vc-border);
    border-radius: var(--vc-radius-lg);
    padding: var(--vc-space-5) var(--vc-space-6);
    position: sticky;
    top: 90px;
}
.vc-fiche-summary-eyebrow {
    font-size: 0.6875rem;
    letter-spacing: 0.08em;
    font-weight: 500;
    color: var(--vc-framboise-dark);
    margin: 0 0 var(--vc-space-3);
}
.vc-fiche-summary-list {
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.vc-fiche-summary-list > div {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    padding-bottom: 8px;
    border-bottom: var(--vc-border);
}
.vc-fiche-summary-list > div:last-child {
    border-bottom: none;
    padding-bottom: 0;
}
.vc-fiche-summary-list dt {
    font-size: 0.75rem;
    color: var(--vc-texte-muet);
    margin: 0;
}
.vc-fiche-summary-list dd {
    font-family: var(--vc-font-serif);
    font-size: 1rem;
    font-weight: 500;
    color: var(--vc-marine);
    margin: 0;
}
.vc-fiche-summary-price dd {
    font-size: 1.375rem;
    color: var(--vc-framboise);
}

/* ============================================================
   18. Fiche formation — objectifs
   ============================================================ */

.vc-objectifs {
    background: var(--vc-blanc);
}
.vc-objectifs-list {
    list-style: none;
    margin: var(--vc-space-8) 0 0;
    padding: 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--vc-space-3);
}
.vc-objectifs-list li {
    display: flex;
    gap: 10px;
    align-items: flex-start;
}
.vc-objectifs-list svg {
    width: 20px;
    height: 20px;
    color: var(--vc-framboise);
    margin-top: 2px;
    flex-shrink: 0;
}
.vc-objectifs-list span {
    font-size: 0.9375rem;
    color: var(--vc-texte-secondaire);
    line-height: 1.5;
}

/* ============================================================
   19. Fiche formation — modalités (Comment ça se passe)
   ============================================================ */

.vc-modalites {
    background: var(--vc-creme);
}
.vc-modalites-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: var(--vc-space-4);
    margin-top: var(--vc-space-8);
}
.vc-modalite {
    background: var(--vc-blanc);
    border: var(--vc-border);
    border-radius: var(--vc-radius-lg);
    padding: var(--vc-space-5);
}
.vc-modalite-icon {
    width: 28px;
    height: 28px;
    color: var(--vc-framboise);
    stroke-width: 1.5;
}
.vc-modalite h3 {
    font-family: var(--vc-font-sans);
    font-size: 1rem;
    margin: var(--vc-space-3) 0 var(--vc-space-1);
    color: var(--vc-marine);
}
.vc-modalite p {
    font-size: 0.875rem;
    color: var(--vc-texte-muet);
    margin: 0;
    line-height: 1.5;
}

/* ============================================================
   20. Fiche formation — programme détaillé (accordéons)
   ============================================================ */

.vc-programme {
    background: var(--vc-blanc);
}
.vc-programme-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: var(--vc-space-8);
}
.vc-chapitre {
    background: var(--vc-creme);
    border: var(--vc-border);
    border-radius: var(--vc-radius-md);
    overflow: hidden;
}
.vc-chapitre summary {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: var(--vc-space-3);
    padding: var(--vc-space-4) var(--vc-space-5);
    cursor: pointer;
    list-style: none;
    transition: background var(--vc-transition);
}
.vc-chapitre summary::-webkit-details-marker {
    display: none;
}
.vc-chapitre summary:hover {
    background: var(--vc-creme-fonce);
}
.vc-chapitre-titre {
    font-size: 0.9375rem;
    font-weight: 500;
    color: var(--vc-marine);
    flex: 1;
}
.vc-chapitre-count {
    font-size: 0.75rem;
    color: var(--vc-framboise-dark);
    white-space: nowrap;
}
.vc-chapitre-chevron {
    color: var(--vc-marine);
    transition: transform var(--vc-transition);
    flex-shrink: 0;
}
.vc-chapitre[open] .vc-chapitre-chevron {
    transform: rotate(180deg);
}
.vc-chapitre-modules {
    list-style: none;
    margin: 0;
    padding: 0 var(--vc-space-5) var(--vc-space-4);
    border-top: var(--vc-border);
    padding-top: var(--vc-space-3);
}
.vc-chapitre-modules li {
    font-size: 0.8125rem;
    color: var(--vc-texte-secondaire);
    padding: 6px 0;
    padding-left: 18px;
    position: relative;
    line-height: 1.5;
}
.vc-chapitre-modules li::before {
    content: "·";
    position: absolute;
    left: 6px;
    color: var(--vc-framboise);
    font-weight: 500;
}
.vc-programme-stats {
    display: flex;
    gap: var(--vc-space-3);
    margin-top: var(--vc-space-6);
    padding-top: var(--vc-space-5);
    border-top: var(--vc-border);
    font-size: 0.8125rem;
    color: var(--vc-texte-muet);
    flex-wrap: wrap;
}
.vc-programme-stats strong {
    color: var(--vc-marine);
    font-weight: 500;
}

/* ============================================================
   21. Fiche formation — public visé & prérequis
   ============================================================ */

.vc-public {
    background: var(--vc-creme);
}
.vc-public-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--vc-space-5);
}
.vc-public-card {
    background: var(--vc-blanc);
    border-radius: var(--vc-radius-lg);
    padding: var(--vc-space-6);
}
.vc-public-card h2 {
    font-size: 1.25rem;
    margin: var(--vc-space-2) 0 var(--vc-space-3);
}
.vc-public-card p {
    font-size: 0.9375rem;
    color: var(--vc-texte-secondaire);
    margin: 0;
    line-height: 1.6;
}

/* ============================================================
   22. Fiche formation — multi-formateurs (cas Eve + Marion)
   ============================================================ */

.vc-founder-grid-multi {
    margin-top: var(--vc-space-8);
    padding-top: var(--vc-space-8);
    border-top: 0.5px solid var(--vc-marine-light);
}

/* ============================================================
   23. Fiche formation — financement (OPCO + FIFPL)
   ============================================================ */

.vc-fiche-financement {
    background: var(--vc-blanc);
}
.vc-fiche-financement-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--vc-space-4);
    margin-top: var(--vc-space-8);
}
.vc-fiche-finance-card {
    background: var(--vc-creme);
    border: var(--vc-border);
    border-radius: var(--vc-radius-lg);
    padding: var(--vc-space-5);
}
.vc-fiche-finance-card h3 {
    font-family: var(--vc-font-serif);
    font-size: 1.25rem;
    margin: var(--vc-space-3) 0 var(--vc-space-2);
    color: var(--vc-marine);
}
.vc-fiche-finance-card p {
    font-size: 0.875rem;
    color: var(--vc-texte-muet);
    margin: 0 0 var(--vc-space-2);
    line-height: 1.5;
}
.vc-fiche-finance-highlight {
    color: var(--vc-framboise-dark) !important;
    font-weight: 500;
    margin-top: var(--vc-space-3) !important;
}
.vc-fiche-finance-help {
    text-align: center;
    margin-top: var(--vc-space-5);
    font-size: 0.875rem;
}
.vc-fiche-finance-help a {
    color: var(--vc-framboise-dark);
    text-decoration: none;
    font-weight: 500;
}
.vc-fiche-finance-help a:hover {
    color: var(--vc-framboise);
}

/* ============================================================
   24. Fiche formation — parcours similaires
   ============================================================ */

.vc-similar {
    background: var(--vc-creme);
}
.vc-similar-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--vc-space-4);
    margin-top: var(--vc-space-8);
}
.vc-similar-card {
    background: var(--vc-blanc);
    border: var(--vc-border);
    border-radius: var(--vc-radius-lg);
    padding: var(--vc-space-5);
    position: relative;
    display: flex;
    flex-direction: column;
}
.vc-similar-card.is-featured {
    border: 2px solid var(--vc-framboise);
}
.vc-similar-card h3 {
    font-family: var(--vc-font-serif);
    font-size: 1.125rem;
    margin: var(--vc-space-3) 0 var(--vc-space-2);
    color: var(--vc-marine);
}
.vc-similar-card p {
    font-size: 0.8125rem;
    color: var(--vc-texte-muet);
    margin: 0;
    line-height: 1.5;
}
.vc-similar-price {
    font-family: var(--vc-font-serif);
    font-size: 1.125rem;
    color: var(--vc-marine);
    margin-top: var(--vc-space-3) !important;
}
.vc-similar-link {
    margin-top: auto;
    padding-top: var(--vc-space-3);
    color: var(--vc-framboise-dark);
    text-decoration: none;
    font-size: 0.8125rem;
    font-weight: 500;
}

/* ============================================================
   25. Fiche formation — CTA final marine
   ============================================================ */

.vc-fiche-cta {
    background: var(--vc-marine-dark);
    color: var(--vc-blanc);
    padding: var(--vc-space-16) 0;
}
.vc-fiche-cta h2 {
    color: var(--vc-blanc);
}
.vc-btn-outline-light {
    background: transparent;
    color: var(--vc-creme);
    border: 0.5px solid var(--vc-creme);
}
.vc-btn-outline-light:hover {
    background: var(--vc-creme);
    color: var(--vc-marine);
}

/* ============================================================
   26. Fiche formation — bottom note (mention QUALIOPI obligatoire)
   ============================================================ */

.vc-fiche-bottom-note {
    background: var(--vc-marine-dark);
    border-top: 0.5px solid var(--vc-marine-light);
    padding: var(--vc-space-3) 0;
    text-align: center;
    font-size: 0.6875rem;
    color: #85B7EB;
    line-height: 1.6;
}
.vc-fiche-bottom-note > div {
    display: flex;
    justify-content: center;
    gap: var(--vc-space-2);
    flex-wrap: wrap;
}

/* ============================================================
   27. Responsive fiche formation
   ============================================================ */

@media (max-width: 1024px) {
    .vc-fiche-hero-grid {
        grid-template-columns: 1fr 280px;
        gap: var(--vc-space-8);
    }
    .vc-fiche-summary {
        position: static;
    }
    .vc-similar-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .vc-fiche-hero-grid {
        grid-template-columns: 1fr;
    }
    .vc-objectifs-list {
        grid-template-columns: 1fr;
    }
    .vc-public-grid,
    .vc-fiche-financement-grid,
    .vc-similar-grid {
        grid-template-columns: 1fr;
    }
}

/* ============================================================
   28. Hero vidéo (médiathèque) — accueil
   ============================================================ */

.vc-hero-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* ============================================================
   29. Fiche formation — hero avec image de fond
   ============================================================ */

.vc-fiche-hero.has-bg-image {
    position: relative;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    color: var(--vc-blanc);
}
.vc-fiche-hero.has-bg-image::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(26, 43, 74, 0.92) 0%, rgba(26, 43, 74, 0.75) 100%);
    z-index: 0;
}
.vc-fiche-hero.has-bg-image > .vc-container {
    position: relative;
    z-index: 1;
}
.vc-fiche-hero.has-bg-image h1,
.vc-fiche-hero.has-bg-image .vc-fiche-sous-titre {
    color: var(--vc-blanc);
}
.vc-fiche-hero.has-bg-image .vc-eyebrow {
    color: var(--vc-rose-pale);
}
.vc-fiche-hero.has-bg-image .vc-fiche-lead {
    color: var(--vc-creme);
}
.vc-fiche-hero.has-bg-image .vc-fiche-by {
    color: #B5D4F4;
}
.vc-fiche-hero.has-bg-image .vc-fiche-by strong {
    color: var(--vc-blanc);
}
.vc-fiche-hero.has-bg-image .vc-btn-secondary {
    color: var(--vc-blanc);
    border-color: var(--vc-blanc);
}
.vc-fiche-hero.has-bg-image .vc-btn-secondary:hover {
    background: var(--vc-blanc);
    color: var(--vc-marine);
}
/* La carte « En un coup d'œil » reste claire pour le contraste */
.vc-fiche-hero.has-bg-image .vc-fiche-summary {
    background: var(--vc-blanc);
    color: var(--vc-marine);
}

/* ============================================================
   30. Photo fondatrice (cercle bordé framboise)
   ============================================================ */

.vc-founder-photo {
    width: 100%;
    max-width: 160px;
    aspect-ratio: 1;
    object-fit: cover;
    border-radius: 50%;
    border: 2px solid var(--vc-framboise);
    display: block;
    margin: 0 auto;
}

/* ============================================================
   ===========================================================
   REFONTE DESIGN « TECH-BIO GLOW » (alignement maquettes Eve)
   ===========================================================
   ============================================================ */

/* ============================================================
   31. HERO en marine profond avec cellules en arrière-plan
   ============================================================ */

.vc-hero {
    background: var(--vc-marine-deep);
    color: var(--vc-blanc);
    position: relative;
    overflow: hidden;
    padding: var(--vc-space-24) 0;
}
.vc-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: url('../img/cells-pattern.svg');
    background-size: cover;
    background-position: center;
    opacity: 0.6;
    z-index: 0;
}
.vc-hero::after {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 70% 50%, rgba(212, 83, 126, 0.15) 0%, transparent 60%);
    z-index: 0;
}
.vc-hero > .vc-container {
    position: relative;
    z-index: 1;
}
.vc-hero h1 {
    color: var(--vc-blanc);
}
.vc-hero .vc-eyebrow {
    color: var(--vc-rose-pale);
}
.vc-hero-lead {
    color: var(--vc-creme);
    opacity: 0.92;
}
.vc-hero .vc-btn-secondary {
    color: var(--vc-blanc);
    border-color: var(--vc-blanc);
}
.vc-hero .vc-btn-secondary:hover {
    background: var(--vc-blanc);
    color: var(--vc-marine-deep);
}
.vc-hero-video {
    /* styles vidéo gérés via .vc-hero-media wrapper */
}

/* Variante SVG hero — fallback */
.vc-hero-visual svg {
    filter: drop-shadow(0 0 30px rgba(212, 83, 126, 0.5));
}

/* ============================================================
   32. SECTION 5 PILIERS en bulles glow constellation
   ============================================================ */

.vc-piliers {
    background: var(--vc-marine-deep);
    color: var(--vc-blanc);
    position: relative;
    overflow: hidden;
    padding: var(--vc-space-24) 0;
}
.vc-piliers::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 50% 50%, rgba(212, 83, 126, 0.12) 0%, transparent 50%);
    z-index: 0;
}
.vc-piliers > .vc-container {
    position: relative;
    z-index: 1;
}
.vc-piliers h2 {
    color: var(--vc-blanc);
}
.vc-piliers .vc-eyebrow {
    color: var(--vc-rose-pale);
}
.vc-piliers-head {
    margin-bottom: var(--vc-space-16);
}

/* Conversion des cards rectangulaires en bulles circulaires glow */
.vc-piliers .vc-piliers-grid {
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: var(--vc-space-8);
    max-width: 1100px;
    margin: 0 auto;
}
.vc-piliers .vc-pilier {
    aspect-ratio: 1;
    border-radius: 50%;
    background: linear-gradient(135deg, #ffffff 0%, var(--vc-creme) 100%);
    border: 2px solid var(--vc-framboise);
    box-shadow: var(--vc-glow-bulle);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: var(--vc-space-4);
    text-align: center;
    transition: transform 300ms ease, box-shadow 300ms ease;
}
.vc-piliers .vc-pilier:hover {
    transform: translateY(-4px) scale(1.03);
    box-shadow: var(--vc-glow-framboise-strong), inset 0 0 0 2px var(--vc-framboise);
}
.vc-piliers .vc-pilier-icon {
    width: 36px;
    height: 36px;
    margin-bottom: var(--vc-space-2);
    color: var(--vc-framboise);
    stroke-width: 1.5;
}
.vc-piliers .vc-pilier h3 {
    font-family: var(--vc-font-serif);
    font-size: 1rem;
    color: var(--vc-marine);
    margin: 0 0 var(--vc-space-1);
    line-height: 1.15;
}
.vc-piliers .vc-pilier p {
    font-size: 0.75rem;
    color: var(--vc-texte-muet);
    line-height: 1.35;
    margin: 0;
}

/* ============================================================
   33. SECTION CYTOLOGIE — grand cercle « lame microscope » glow
   ============================================================ */

.vc-cytology {
    background: var(--vc-marine-deep);
    color: var(--vc-blanc);
    position: relative;
    overflow: hidden;
    padding: var(--vc-space-24) 0;
}
.vc-cytology > .vc-container {
    position: relative;
    z-index: 1;
}
.vc-cytology h2 {
    color: var(--vc-blanc);
}
.vc-cytology .vc-eyebrow {
    color: var(--vc-rose-pale);
}
.vc-cytology-head {
    margin-bottom: var(--vc-space-12);
}

.vc-cytology-stage {
    display: grid;
    grid-template-columns: 1fr 1.4fr 1fr;
    gap: var(--vc-space-8);
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

/* Cercle central avec image cytologie */
.vc-cytology-lame {
    width: 100%;
    max-width: 420px;
    aspect-ratio: 1;
    margin: 0 auto;
    border-radius: 50%;
    border: 4px solid var(--vc-framboise);
    box-shadow: var(--vc-glow-framboise-strong);
    overflow: hidden;
    background: var(--vc-blanc);
    position: relative;
}
.vc-cytology-lame::before {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;
    width: 1px;
    background: rgba(212, 83, 126, 0.2);
    z-index: 1;
}
.vc-cytology-lame::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    top: 50%;
    height: 1px;
    background: rgba(212, 83, 126, 0.2);
    z-index: 1;
}
.vc-cytology-lame img,
.vc-cytology-lame video,
.vc-cytology-lame svg {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Petites bulles satellites */
.vc-cytology-sats {
    display: flex;
    flex-direction: column;
    gap: var(--vc-space-6);
}
.vc-cytology-sat {
    display: flex;
    align-items: center;
    gap: var(--vc-space-4);
}
.vc-cytology-sat-bulle {
    flex-shrink: 0;
    width: 110px;
    height: 110px;
    border-radius: 50%;
    background: linear-gradient(135deg, #ffffff 0%, var(--vc-creme) 100%);
    border: 2px solid var(--vc-framboise);
    box-shadow: var(--vc-glow-bulle);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: var(--vc-space-2);
    text-align: center;
}
.vc-cytology-sat-bulle svg {
    width: 28px;
    height: 28px;
    color: var(--vc-framboise);
    stroke-width: 1.5;
    margin-bottom: 4px;
}
.vc-cytology-sat-bulle strong {
    font-family: var(--vc-font-sans);
    font-size: 0.7rem;
    color: var(--vc-marine);
    font-weight: 500;
    line-height: 1.1;
}
.vc-cytology-sat-text {
    color: var(--vc-creme);
    font-size: 0.875rem;
    line-height: 1.5;
    opacity: 0.92;
}
.vc-cytology-sats-left {
    text-align: right;
}
.vc-cytology-sats-left .vc-cytology-sat {
    flex-direction: row-reverse;
}

/* ============================================================
   34. FOUNDER — intensification du glow
   ============================================================ */

.vc-founder {
    background: var(--vc-marine-deep);
    position: relative;
    overflow: hidden;
}
.vc-founder::before {
    content: "";
    position: absolute;
    top: -200px;
    left: -150px;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(212, 83, 126, 0.18) 0%, transparent 60%);
    z-index: 0;
}
.vc-founder > .vc-container {
    position: relative;
    z-index: 1;
}
.vc-founder-photo {
    box-shadow: var(--vc-glow-framboise-strong);
    border: 3px solid var(--vc-framboise);
}
.vc-founder svg {
    filter: drop-shadow(0 0 25px rgba(212, 83, 126, 0.5));
}

/* ============================================================
   35. CTA FINAL — marine deep avec glow dramatique
   ============================================================ */

.vc-cta-final {
    background: var(--vc-marine-deep);
    background-image: var(--vc-cta-bg);
    background-size: cover;
    background-position: center;
    background-blend-mode: overlay;
    color: var(--vc-blanc);
    position: relative;
    overflow: hidden;
    padding: var(--vc-space-24) 0;
}
.vc-cta-final::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(10, 20, 40, 0.85) 0%, rgba(26, 43, 74, 0.7) 60%, rgba(212, 83, 126, 0.35) 100%);
    z-index: 0;
    pointer-events: none;
}
.vc-cta-final::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(212, 83, 126, 0.25) 0%, transparent 50%);
    z-index: 0;
    pointer-events: none;
}
.vc-cta-final > .vc-container {
    position: relative;
    z-index: 1;
}
.vc-cta-final h2 {
    color: var(--vc-blanc);
}
.vc-cta-final .vc-eyebrow {
    color: var(--vc-rose-pale);
}
.vc-cta-final p {
    color: var(--vc-creme);
}
.vc-cta-final .vc-step-n {
    box-shadow: var(--vc-glow-framboise);
}
.vc-cta-final .vc-step-title {
    color: var(--vc-blanc);
}
.vc-cta-final .vc-step-desc {
    color: var(--vc-rose-pale);
    opacity: 0.85;
}
.vc-cta-final .vc-btn-primary {
    box-shadow: var(--vc-glow-framboise);
}

/* ============================================================
   36. Boutons primary — glow systématique
   ============================================================ */

.vc-btn-primary {
    box-shadow: 0 0 0 transparent;
    transition: background var(--vc-transition), box-shadow var(--vc-transition), transform var(--vc-transition);
}
.vc-btn-primary:hover {
    box-shadow: var(--vc-glow-framboise);
    transform: translateY(-1px);
}

/* ============================================================
   37. Responsive — bulles et cytologie
   ============================================================ */

@media (max-width: 1024px) {
    .vc-cytology-stage {
        grid-template-columns: 1fr;
        gap: var(--vc-space-10);
    }
    .vc-cytology-sats-left {
        text-align: left;
    }
    .vc-cytology-sats-left .vc-cytology-sat {
        flex-direction: row;
    }
    .vc-cytology-sats {
        max-width: 480px;
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    .vc-piliers .vc-piliers-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: var(--vc-space-4);
    }
    .vc-piliers .vc-pilier {
        padding: var(--vc-space-3);
    }
    .vc-piliers .vc-pilier h3 {
        font-size: 0.875rem;
    }
    .vc-piliers .vc-pilier p {
        font-size: 0.6875rem;
    }
    .vc-cytology-lame {
        max-width: 280px;
    }
    .vc-cytology-sat-bulle {
        width: 90px;
        height: 90px;
    }
}

/* ============================================================
   ============================================================
   SPRINT 4 — Pages internes
   ============================================================
   ============================================================ */

/* ============================================================
   38. Page hero compact (formations, méthode, financement, contact)
   ============================================================ */

.vc-page-hero {
    background: var(--vc-creme);
    padding: var(--vc-space-16) 0 var(--vc-space-12);
    border-bottom: var(--vc-border);
}
.vc-page-hero-dark {
    background: var(--vc-marine-deep);
    color: var(--vc-blanc);
    position: relative;
    overflow: hidden;
}
/* Image de fond optionnelle (lame d'atlas) injectée via --vc-hero-bg.
   Pseudo-élément avec voile marine pour garantir la lisibilité du texte. */
.vc-page-hero-dark[style*="--vc-hero-bg"]::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: var(--vc-hero-bg);
    background-size: cover;
    background-position: center;
    opacity: 0.28;
    z-index: 0;
}
.vc-page-hero-dark[style*="--vc-hero-bg"]::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(10,20,40,0.55), rgba(10,20,40,0.82));
    z-index: 0;
}
.vc-page-hero-dark > .vc-container { position: relative; z-index: 1; }
.vc-page-hero-dark::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: url('../img/cells-pattern.svg');
    background-size: cover;
    background-position: center;
    opacity: 0.5;
    z-index: 0;
}
.vc-page-hero-dark > .vc-container {
    position: relative;
    z-index: 1;
}
.vc-page-hero-dark h1 {
    color: var(--vc-blanc);
}
.vc-page-hero-dark .vc-eyebrow {
    color: var(--vc-rose-pale);
}
.vc-page-hero-inner {
    max-width: 760px;
}
.vc-page-hero h1 {
    font-size: clamp(2rem, 4.5vw, 3rem);
    margin-bottom: var(--vc-space-4);
}
.vc-page-hero-lead {
    font-size: 1.0625rem;
    line-height: 1.6;
    color: var(--vc-texte-secondaire);
    max-width: 620px;
}
.vc-page-hero-dark .vc-page-hero-lead {
    color: var(--vc-creme);
    opacity: 0.92;
}

/* ============================================================
   39. Page Formations — matrice comparative
   ============================================================ */

.vc-matrice-section {
    background: var(--vc-blanc);
}
.vc-matrice-wrap {
    overflow-x: auto;
    border-radius: var(--vc-radius-lg);
    border: var(--vc-border);
    background: var(--vc-blanc);
}
.vc-matrice {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.875rem;
    min-width: 720px;
}
.vc-matrice thead {
    background: var(--vc-marine-deep);
    color: var(--vc-blanc);
}
.vc-matrice th {
    padding: var(--vc-space-4) var(--vc-space-3);
    text-align: left;
    font-family: var(--vc-font-sans);
    font-weight: 500;
    font-size: 0.75rem;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}
.vc-matrice td {
    padding: var(--vc-space-4) var(--vc-space-3);
    border-bottom: var(--vc-border);
    vertical-align: middle;
}
.vc-matrice tr:last-child td {
    border-bottom: none;
}
.vc-matrice tr.is-featured {
    background: linear-gradient(90deg, rgba(212, 83, 126, 0.04) 0%, transparent 100%);
}
.vc-matrice tr:hover {
    background: var(--vc-creme);
}
.vc-matrice-title {
    color: var(--vc-marine);
    text-decoration: none;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}
.vc-matrice-title:hover {
    color: var(--vc-framboise-dark);
}
.vc-matrice-badge {
    color: var(--vc-framboise);
    font-size: 1.1em;
}
.vc-matrice-price {
    text-align: right;
    white-space: nowrap;
}
.vc-matrice-price strong {
    font-family: var(--vc-font-serif);
    font-size: 1.0625rem;
    color: var(--vc-marine);
}

/* ============================================================
   40. Page Formations — grille des 7 cards
   ============================================================ */

.vc-formations-grid-section {
    background: var(--vc-creme);
}
.vc-formations-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: var(--vc-space-6);
}
.vc-formation-card {
    background: var(--vc-blanc);
    border: var(--vc-border);
    border-radius: var(--vc-radius-lg);
    overflow: hidden;
    position: relative;
    display: flex;
    flex-direction: column;
    transition: box-shadow var(--vc-transition), transform var(--vc-transition);
}
.vc-formation-card:hover {
    box-shadow: 0 8px 32px rgba(26, 43, 74, 0.08);
    transform: translateY(-2px);
}
.vc-formation-card.is-featured {
    border: 2px solid var(--vc-framboise);
    box-shadow: var(--vc-glow-soft);
}
.vc-formation-thumb {
    display: block;
    aspect-ratio: 16/9;
    overflow: hidden;
    background: var(--vc-creme);
}
.vc-formation-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 400ms ease;
}
.vc-formation-card:hover .vc-formation-thumb img {
    transform: scale(1.04);
}
.vc-formation-body {
    padding: var(--vc-space-5);
    display: flex;
    flex-direction: column;
    flex: 1;
}
.vc-formation-body h3 {
    font-family: var(--vc-font-serif);
    font-size: 1.25rem;
    margin: var(--vc-space-3) 0 var(--vc-space-2);
    line-height: 1.2;
}
.vc-formation-body h3 a {
    color: var(--vc-marine);
    text-decoration: none;
}
.vc-formation-body h3 a:hover {
    color: var(--vc-framboise-dark);
}
.vc-formation-desc {
    font-size: 0.875rem;
    color: var(--vc-texte-muet);
    line-height: 1.5;
    margin: 0 0 var(--vc-space-4);
    flex: 1;
}
.vc-formation-stats {
    list-style: none;
    padding: 0;
    margin: 0 0 var(--vc-space-4);
    display: flex;
    gap: var(--vc-space-3);
    font-size: 0.75rem;
    color: var(--vc-texte-muet);
}
.vc-formation-stats strong {
    color: var(--vc-marine);
    font-size: 1rem;
    font-family: var(--vc-font-serif);
    font-weight: 500;
    display: block;
    line-height: 1;
}
.vc-formation-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: var(--vc-space-3);
    border-top: var(--vc-border);
}
.vc-formation-price {
    font-family: var(--vc-font-serif);
    font-size: 1.25rem;
    color: var(--vc-marine);
}

/* ============================================================
   41. Page Méthode — équation de la rentabilité
   ============================================================ */

.vc-equation {
    background: var(--vc-creme);
}
.vc-equation-stage {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: var(--vc-space-3);
    max-width: 1100px;
    margin: 0 auto;
}
.vc-eq-bulle {
    width: 180px;
    height: 180px;
    border-radius: 50%;
    background: var(--vc-blanc);
    border: 2px solid var(--vc-framboise);
    box-shadow: var(--vc-glow-bulle);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: var(--vc-space-4);
    text-align: center;
}
.vc-eq-bulle svg {
    width: 36px;
    height: 36px;
    color: var(--vc-framboise);
    stroke-width: 1.5;
    margin-bottom: var(--vc-space-2);
}
.vc-eq-bulle strong {
    font-family: var(--vc-font-sans);
    font-size: 0.8125rem;
    color: var(--vc-marine);
    font-weight: 500;
    line-height: 1.2;
}
.vc-eq-result {
    width: 200px;
    height: 200px;
    background: linear-gradient(135deg, var(--vc-framboise) 0%, var(--vc-framboise-dark) 100%);
    border-color: var(--vc-framboise);
    box-shadow: var(--vc-glow-framboise-strong);
}
.vc-eq-result svg {
    color: var(--vc-blanc);
}
.vc-eq-result strong {
    color: var(--vc-blanc);
    font-size: 0.875rem;
}
.vc-eq-op {
    font-family: var(--vc-font-serif);
    font-size: 2.5rem;
    color: var(--vc-framboise);
    font-weight: 500;
    line-height: 1;
}

/* ============================================================
   42. Page Méthode — section microscope virtuel
   ============================================================ */

.vc-microscope {
    background: var(--vc-blanc);
}
.vc-microscope-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--vc-space-12);
    align-items: center;
}
.vc-bullet-list {
    list-style: none;
    padding: 0;
    margin: var(--vc-space-5) 0 0;
    display: flex;
    flex-direction: column;
    gap: var(--vc-space-3);
}
.vc-bullet-list li {
    display: flex;
    gap: 10px;
    align-items: flex-start;
    font-size: 0.9375rem;
    color: var(--vc-texte-secondaire);
    line-height: 1.5;
}
.vc-bullet-list svg {
    width: 20px;
    height: 20px;
    color: var(--vc-framboise);
    flex-shrink: 0;
    margin-top: 2px;
}

/* ============================================================
   43. Cards numérotées (étapes)
   ============================================================ */

.vc-evaluations {
    background: var(--vc-creme);
}
.vc-grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--vc-space-5);
}
.vc-grid-4 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--vc-space-4);
}
.vc-card {
    background: var(--vc-blanc);
    border: var(--vc-border);
    border-radius: var(--vc-radius-lg);
    padding: var(--vc-space-6);
    position: relative;
    transition: box-shadow var(--vc-transition), transform var(--vc-transition);
}
.vc-card:hover {
    box-shadow: 0 8px 32px rgba(212, 83, 126, 0.12);
    transform: translateY(-2px);
}
.vc-card-n {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--vc-framboise);
    color: var(--vc-blanc);
    font-family: var(--vc-font-serif);
    font-size: 1.25rem;
    font-weight: 500;
    margin-bottom: var(--vc-space-4);
    box-shadow: var(--vc-glow-soft);
}
.vc-card h3 {
    font-family: var(--vc-font-serif);
    font-size: 1.125rem;
    margin: 0 0 var(--vc-space-2);
    color: var(--vc-marine);
}
.vc-card p {
    font-size: 0.875rem;
    color: var(--vc-texte-muet);
    line-height: 1.5;
    margin: 0;
}

/* ============================================================
   44. Page Financement — 3 dispositifs
   ============================================================ */

.vc-dispositifs {
    background: var(--vc-creme);
}
.vc-dispositifs-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--vc-space-5);
}
.vc-dispositif-card {
    background: var(--vc-blanc);
    border: var(--vc-border);
    border-radius: var(--vc-radius-lg);
    padding: var(--vc-space-6);
    display: flex;
    flex-direction: column;
}
.vc-dispositif-pill {
    align-self: flex-start;
    padding: 4px 12px;
    background: var(--vc-framboise-light);
    color: var(--vc-framboise-dark);
    font-size: 0.6875rem;
    border-radius: var(--vc-radius-pill);
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    margin-bottom: var(--vc-space-3);
}
.vc-dispositif-card h3 {
    font-family: var(--vc-font-serif);
    font-size: 1.875rem;
    margin: 0 0 var(--vc-space-2);
    color: var(--vc-marine);
}
.vc-dispositif-pitch {
    font-size: 0.875rem;
    color: var(--vc-texte-muet);
    margin: 0 0 var(--vc-space-4);
    line-height: 1.5;
    min-height: 60px;
}
.vc-dispositif-amount {
    background: linear-gradient(135deg, var(--vc-creme) 0%, var(--vc-blanc) 100%);
    border: 1px dashed var(--vc-framboise);
    border-radius: var(--vc-radius-md);
    padding: var(--vc-space-4);
    text-align: center;
    margin-bottom: var(--vc-space-5);
}
.vc-dispositif-amount strong {
    font-family: var(--vc-font-serif);
    font-size: 1.625rem;
    color: var(--vc-framboise-dark);
    display: block;
    font-weight: 500;
    line-height: 1.1;
}
.vc-dispositif-amount span {
    font-size: 0.75rem;
    color: var(--vc-texte-muet);
}

/* ============================================================
   45. Page Financement — démarches 4 étapes
   ============================================================ */

.vc-demarches {
    background: var(--vc-blanc);
}

/* ============================================================
   46. FAQ accordéons
   ============================================================ */

.vc-faq {
    background: var(--vc-creme);
}
.vc-faq-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.vc-faq-item {
    background: var(--vc-blanc);
    border: var(--vc-border);
    border-radius: var(--vc-radius-md);
    overflow: hidden;
}
.vc-faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    padding: var(--vc-space-4) var(--vc-space-5);
    background: transparent;
    border: 0;
    cursor: pointer;
    font-family: var(--vc-font-sans);
    font-size: 0.9375rem;
    font-weight: 500;
    color: var(--vc-marine);
    text-align: left;
    transition: background var(--vc-transition);
}
.vc-faq-question:hover {
    background: var(--vc-creme);
}
.vc-faq-question svg {
    flex-shrink: 0;
    transition: transform var(--vc-transition);
    color: var(--vc-framboise);
}
.vc-faq-item.is-open .vc-faq-question svg {
    transform: rotate(180deg);
}
.vc-faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 300ms ease;
}
.vc-faq-item.is-open .vc-faq-answer {
    max-height: 400px;
}
.vc-faq-answer p {
    padding: 0 var(--vc-space-5) var(--vc-space-4);
    margin: 0;
    font-size: 0.9375rem;
    color: var(--vc-texte-secondaire);
    line-height: 1.6;
    border-top: 1px dashed var(--vc-bordure);
    padding-top: var(--vc-space-4);
}

/* ============================================================
   47. Page Contact — layout 2 colonnes
   ============================================================ */

.vc-contact-section {
    background: var(--vc-blanc);
}
.vc-contact-layout {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: var(--vc-space-12);
}
.vc-contact-form-wrap h2 {
    font-size: 1.5rem;
    margin-bottom: var(--vc-space-6);
}
.vc-contact-infos {
    display: flex;
    flex-direction: column;
    gap: var(--vc-space-6);
    padding: var(--vc-space-6);
    background: var(--vc-creme);
    border-radius: var(--vc-radius-lg);
    height: fit-content;
    position: sticky;
    top: 100px;
}
.vc-contact-block h3 {
    font-family: var(--vc-font-sans);
    font-size: 0.75rem;
    letter-spacing: 0.06em;
    font-weight: 600;
    color: var(--vc-framboise-dark);
    text-transform: uppercase;
    margin: 0 0 var(--vc-space-2);
}
.vc-contact-big-link {
    font-family: var(--vc-font-serif);
    font-size: 1.0625rem;
    color: var(--vc-marine);
    text-decoration: none;
    font-weight: 500;
    line-height: 1.3;
    word-break: break-word;
}
.vc-contact-big-link:hover {
    color: var(--vc-framboise-dark);
}
.vc-contact-block p,
.vc-contact-block address {
    font-size: 0.875rem;
    color: var(--vc-texte-muet);
    margin: var(--vc-space-1) 0 0;
    line-height: 1.5;
    font-style: normal;
}

/* ============================================================
   48. Formulaire — champs natifs
   ============================================================ */

.vc-form {
    display: flex;
    flex-direction: column;
    gap: var(--vc-space-4);
}
.vc-form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--vc-space-4);
}
.vc-form-field {
    display: flex;
    flex-direction: column;
    gap: 6px;
}
.vc-form-field label {
    font-size: 0.8125rem;
    font-weight: 500;
    color: var(--vc-marine);
}
.vc-form-field input[type="text"],
.vc-form-field input[type="email"],
.vc-form-field input[type="tel"],
.vc-form-field select,
.vc-form-field textarea {
    width: 100%;
    padding: 12px 14px;
    font-family: var(--vc-font-sans);
    font-size: 0.9375rem;
    color: var(--vc-marine);
    background: var(--vc-blanc);
    border: 1px solid var(--vc-bordure);
    border-radius: var(--vc-radius-md);
    transition: border-color var(--vc-transition), box-shadow var(--vc-transition);
}
.vc-form-field input:focus,
.vc-form-field select:focus,
.vc-form-field textarea:focus {
    outline: 0;
    border-color: var(--vc-framboise);
    box-shadow: 0 0 0 3px rgba(212, 83, 126, 0.12);
}
.vc-form-field textarea {
    resize: vertical;
    min-height: 140px;
    font-family: var(--vc-font-sans);
    line-height: 1.5;
}
.vc-form-field.is-error input,
.vc-form-field.is-error select,
.vc-form-field.is-error textarea {
    border-color: var(--vc-erreur);
    background: rgba(163, 45, 45, 0.04);
}
.vc-form-error {
    font-size: 0.8125rem;
    color: var(--vc-erreur);
    margin: 0;
}
.vc-form-optional {
    font-weight: 400;
    color: var(--vc-texte-muet);
    font-size: 0.75rem;
}
.vc-form-checkbox label {
    display: flex;
    gap: 10px;
    align-items: flex-start;
    cursor: pointer;
    font-weight: 400;
    font-size: 0.8125rem;
    color: var(--vc-texte-muet);
    line-height: 1.5;
}
.vc-form-checkbox input[type="checkbox"] {
    margin-top: 3px;
    flex-shrink: 0;
    accent-color: var(--vc-framboise);
}
.vc-form-checkbox a {
    color: var(--vc-framboise-dark);
    text-decoration: underline;
}
.vc-form-notice {
    padding: var(--vc-space-3) var(--vc-space-4);
    border-radius: var(--vc-radius-md);
    font-size: 0.875rem;
    margin-bottom: var(--vc-space-4);
}
.vc-form-notice-error {
    background: rgba(163, 45, 45, 0.08);
    border: 1px solid rgba(163, 45, 45, 0.3);
    color: var(--vc-erreur);
}
.vc-form-honeypot {
    position: absolute;
    left: -9999px;
    top: -9999px;
    width: 1px;
    height: 1px;
    overflow: hidden;
}
.vc-form-actions {
    display: flex;
    justify-content: flex-start;
    gap: var(--vc-space-3);
    margin-top: var(--vc-space-2);
}

/* ============================================================
   49. Carte Google Maps
   ============================================================ */

.vc-contact-map {
    background: var(--vc-marine-deep);
    line-height: 0;
}
.vc-contact-map iframe {
    display: block;
    width: 100%;
    filter: sepia(15%) saturate(0.85) hue-rotate(-5deg);
}

/* ============================================================
   50. Page Merci
   ============================================================ */

.vc-merci {
    background: var(--vc-marine-deep);
    color: var(--vc-blanc);
    padding: var(--vc-space-20) 0 var(--vc-space-24);
    min-height: 70vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}
.vc-merci::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: url('../img/cells-pattern.svg');
    background-size: cover;
    opacity: 0.4;
    z-index: 0;
}
.vc-merci::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(212, 83, 126, 0.18) 0%, transparent 50%);
    z-index: 0;
    pointer-events: none;
}
.vc-merci > .vc-container {
    position: relative;
    z-index: 1;
}
.vc-merci-inner {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
}
.vc-merci-icon {
    width: 100px;
    height: 100px;
    margin: 0 auto var(--vc-space-6);
    filter: drop-shadow(0 0 25px rgba(212, 83, 126, 0.6));
}
.vc-merci-icon svg {
    width: 100%;
    height: 100%;
}
.vc-merci h1 {
    color: var(--vc-blanc);
    font-size: clamp(1.875rem, 4vw, 2.5rem);
    margin-bottom: var(--vc-space-4);
}
.vc-merci .vc-eyebrow {
    color: var(--vc-rose-pale);
}
.vc-merci-lead {
    color: var(--vc-creme);
    font-size: 1.0625rem;
    line-height: 1.6;
    margin-bottom: var(--vc-space-10);
}
.vc-merci-meta {
    margin-bottom: var(--vc-space-5);
    color: var(--vc-rose-pale);
    font-size: 0.875rem;
}
.vc-merci-actions {
    display: flex;
    flex-direction: column;
    gap: var(--vc-space-3);
    max-width: 460px;
    margin: 0 auto var(--vc-space-8);
}
.vc-merci-link {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: var(--vc-space-4) var(--vc-space-5);
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(212, 83, 126, 0.3);
    border-radius: var(--vc-radius-md);
    text-decoration: none;
    color: var(--vc-blanc);
    text-align: left;
    transition: background var(--vc-transition), border-color var(--vc-transition), transform var(--vc-transition);
}
.vc-merci-link:hover {
    background: rgba(212, 83, 126, 0.12);
    border-color: var(--vc-framboise);
    transform: translateX(4px);
}
.vc-merci-link span {
    font-family: var(--vc-font-serif);
    font-size: 1.0625rem;
    font-weight: 500;
    color: var(--vc-blanc);
    margin-bottom: 2px;
}
.vc-merci-link small {
    font-size: 0.8125rem;
    color: var(--vc-rose-pale);
    opacity: 0.85;
}
.vc-merci-tel {
    color: var(--vc-rose-pale);
    font-size: 0.875rem;
}
.vc-merci-tel a {
    color: var(--vc-blanc);
    text-decoration: none;
    font-family: var(--vc-font-serif);
    font-size: 1.0625rem;
    margin-left: 8px;
}
.vc-merci-tel a:hover {
    color: var(--vc-framboise);
}

/* ============================================================
   51. Page 404
   ============================================================ */

.vc-404 {
    background: var(--vc-marine-deep);
    color: var(--vc-blanc);
    padding: var(--vc-space-20) 0 var(--vc-space-24);
    min-height: 70vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}
.vc-404::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: url('../img/cells-pattern.svg');
    background-size: cover;
    opacity: 0.4;
    z-index: 0;
}
.vc-404 > .vc-container {
    position: relative;
    z-index: 1;
}
.vc-404-inner {
    max-width: 640px;
    margin: 0 auto;
    text-align: center;
}
.vc-404-visual {
    width: 200px;
    margin: 0 auto var(--vc-space-6);
    filter: drop-shadow(0 0 30px rgba(212, 83, 126, 0.5));
}
.vc-404 h1 {
    color: var(--vc-blanc);
    font-size: clamp(1.875rem, 4vw, 2.5rem);
    margin-bottom: var(--vc-space-4);
}
.vc-404 .vc-eyebrow {
    color: var(--vc-rose-pale);
}
.vc-404-lead {
    color: var(--vc-creme);
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: var(--vc-space-8);
}
.vc-404-actions {
    display: flex;
    gap: var(--vc-space-3);
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: var(--vc-space-10);
}
.vc-404-links {
    padding-top: var(--vc-space-6);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}
.vc-404-links p {
    color: var(--vc-rose-pale);
    font-size: 0.875rem;
    margin-bottom: var(--vc-space-3);
}
.vc-404-links ul {
    list-style: none;
    display: flex;
    justify-content: center;
    gap: var(--vc-space-5);
    flex-wrap: wrap;
    padding: 0;
    margin: 0;
}
.vc-404-links a {
    color: var(--vc-creme);
    text-decoration: none;
    font-size: 0.9375rem;
    transition: color var(--vc-transition);
}
.vc-404-links a:hover {
    color: var(--vc-framboise);
}

/* ============================================================
   52. Responsive Sprint 4
   ============================================================ */

@media (max-width: 1024px) {
    .vc-contact-layout {
        grid-template-columns: 1fr;
        gap: var(--vc-space-8);
    }
    .vc-contact-infos {
        position: static;
    }
    .vc-microscope-grid {
        grid-template-columns: 1fr;
        gap: var(--vc-space-8);
    }
    .vc-dispositifs-grid {
        grid-template-columns: 1fr;
    }
    .vc-grid-3,
    .vc-grid-4 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .vc-form-row {
        grid-template-columns: 1fr;
    }
    .vc-formations-grid {
        grid-template-columns: 1fr;
    }
    .vc-grid-3,
    .vc-grid-4 {
        grid-template-columns: 1fr;
    }
    /* Schémas animés : rendu correct sur desktop/tablette, illisible sur mobile → masqués */
    .vc-equation-stage,
    .vc-schema-decision {
        display: none;
    }
    .vc-eq-op {
        font-size: 1.75rem;
    }
    .vc-eq-bulle {
        width: 160px;
        height: 160px;
    }
}

/* ============================================================
   53. LOGO header & footer
   ============================================================ */

.vc-header-logo {
    display: flex;
    flex-direction: column;
    gap: 2px;
}
.vc-logo-baseline {
    font-family: var(--vc-font-sans);
    font-size: 0.6875rem;
    font-weight: 500;
    letter-spacing: 0.04em;
    color: var(--vc-framboise-dark);
    line-height: 1.1;
    white-space: nowrap;
}
@media (max-width: 600px) {
    .vc-logo-baseline { font-size: 0.625rem; }
}

.vc-header-logo .vc-logo-img,
.vc-header-logo .custom-logo-link {
    display: inline-block;
    line-height: 0;
}
.vc-header-logo img,
.vc-header-logo .custom-logo {
    max-height: 48px;
    width: auto;
    height: auto;
    display: block;
}

/* Logo footer en BLANC via filtre CSS */
.vc-footer-logo-img {
    display: inline-block;
    line-height: 0;
}
.vc-footer-logo-img img {
    max-height: 56px;
    width: auto;
    height: auto;
    filter: brightness(0) invert(1);
    display: block;
}

/* Certifications dans le footer */
.vc-footer-certifs {
    display: flex;
    align-items: center;
    gap: var(--vc-space-3);
    margin: var(--vc-space-4) 0;
    flex-wrap: wrap;
}
.vc-footer-certifs img {
    max-height: 56px;
    width: auto;
    height: auto;
    background: var(--vc-blanc);
    border-radius: 4px;
    padding: 4px 6px;
}

/* ── Bloc Qualiopi (fiche formation) : logo HD lisible + mention cofinancement ── */
.vc-qualiopi-block {
    display: flex;
    align-items: center;
    gap: var(--vc-space-5);
    flex-wrap: wrap;
    margin-top: var(--vc-space-5);
    padding: var(--vc-space-5);
    background: var(--vc-blanc);
    border: var(--vc-border);
    border-radius: var(--vc-radius-lg);
}
.vc-qualiopi-logo-link { flex: 0 0 auto; display: inline-block; }
.vc-qualiopi-logo {
    width: 220px;
    height: auto;
    display: block;
}
.vc-qualiopi-mention {
    flex: 1 1 260px;
    margin: 0;
    font-size: 0.8125rem;
    line-height: 1.5;
    color: var(--vc-texte-secondaire);
}
.vc-qualiopi-mention a { color: var(--vc-framboise); text-decoration: underline; }
@media (max-width: 768px) {
    .vc-qualiopi-block { flex-direction: column; align-items: flex-start; }
    .vc-qualiopi-logo { width: 180px; }
}

/* ============================================================
   54. Page À PROPOS
   ============================================================ */

.vc-about-eve,
.vc-about-greg {
    background: var(--vc-blanc);
}
.vc-about-greg {
    background: var(--vc-creme);
}
.vc-about-grid {
    display: grid;
    grid-template-columns: 360px 1fr;
    gap: var(--vc-space-12);
    align-items: center;
}
.vc-about-grid-reverse {
    grid-template-columns: 1fr 360px;
}
.vc-about-photo img,
.vc-about-photo svg {
    width: 100%;
    height: auto;
    border-radius: var(--vc-radius-lg);
    box-shadow: var(--vc-glow-soft);
    border: 2px solid var(--vc-framboise);
    display: block;
}
.vc-about-content h2 {
    margin-bottom: var(--vc-space-2);
}
.vc-about-titres {
    color: var(--vc-framboise-dark);
    font-size: 0.875rem;
    letter-spacing: 0.04em;
    margin: 0 0 var(--vc-space-5);
    font-weight: 500;
}
.vc-about-content p {
    font-size: 0.9375rem;
    line-height: 1.7;
    color: var(--vc-texte-secondaire);
    margin-bottom: var(--vc-space-3);
}
.vc-about-contact {
    margin-top: var(--vc-space-5);
    display: flex;
    flex-direction: column;
    gap: var(--vc-space-2);
}
.vc-about-contact-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--vc-marine);
    text-decoration: none;
    font-size: 0.9375rem;
    font-weight: 500;
    transition: color var(--vc-transition);
}
.vc-about-contact-link:hover {
    color: var(--vc-framboise-dark);
}
.vc-about-contact-link svg {
    color: var(--vc-framboise);
}

/* Section « Pathologiste clinique » */
.vc-explain {
    background: var(--vc-marine-deep);
    color: var(--vc-blanc);
    position: relative;
    overflow: hidden;
}
.vc-explain::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: url('../img/cells-pattern.svg');
    background-size: cover;
    opacity: 0.35;
    z-index: 0;
}
.vc-explain > .vc-container {
    position: relative;
    z-index: 1;
}
.vc-explain-inner {
    max-width: 760px;
    margin: 0 auto;
    text-align: center;
}
.vc-explain h2 {
    color: var(--vc-blanc);
}
.vc-explain .vc-eyebrow {
    color: var(--vc-rose-pale);
}
.vc-explain p {
    color: var(--vc-creme);
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: var(--vc-space-4);
}

/* Chiffres clés à propos */
.vc-about-chiffres {
    background: var(--vc-blanc);
}
.vc-chiffres-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--vc-space-5);
}
.vc-chiffre {
    text-align: center;
    padding: var(--vc-space-6) var(--vc-space-4);
    background: var(--vc-creme);
    border-radius: var(--vc-radius-lg);
    border: var(--vc-border);
    transition: box-shadow var(--vc-transition), transform var(--vc-transition);
}
.vc-chiffre:hover {
    box-shadow: 0 8px 32px rgba(212, 83, 126, 0.12);
    transform: translateY(-2px);
}
.vc-chiffre-n {
    font-family: var(--vc-font-serif);
    font-size: clamp(1.875rem, 4vw, 2.5rem);
    font-weight: 500;
    color: var(--vc-framboise-dark);
    line-height: 1;
    margin-bottom: var(--vc-space-2);
}
.vc-chiffre-n span {
    font-size: 0.7em;
}
.vc-chiffre p {
    font-size: 0.8125rem;
    color: var(--vc-texte-muet);
    margin: 0;
    line-height: 1.4;
}

/* Certifications grille */
.vc-about-certifs {
    background: var(--vc-creme);
}
.vc-certifs-grid {
    display: flex;
    gap: var(--vc-space-6);
    justify-content: center;
    flex-wrap: wrap;
    align-items: center;
}
.vc-certif-card {
    background: var(--vc-blanc);
    border: var(--vc-border);
    border-radius: var(--vc-radius-md);
    padding: var(--vc-space-4) var(--vc-space-6);
    box-shadow: 0 4px 16px rgba(26, 43, 74, 0.05);
}
.vc-certif-card img {
    max-height: 80px;
    width: auto;
    display: block;
}
.vc-certif-card a { display: block; line-height: 0; }

@media (max-width: 1024px) {
    .vc-about-grid,
    .vc-about-grid-reverse {
        grid-template-columns: 240px 1fr;
        gap: var(--vc-space-8);
    }
    .vc-chiffres-grid {
        grid-template-columns: 1fr 1fr;
    }
}
@media (max-width: 768px) {
    .vc-about-grid,
    .vc-about-grid-reverse {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .vc-about-grid-reverse .vc-about-content {
        order: 2;
    }
    .vc-about-photo {
        max-width: 280px;
        margin: 0 auto;
    }
    .vc-about-contact {
        align-items: center;
    }
}

/* Grille 2 colonnes pour financement (OPCO + FIFPL) */
.vc-dispositifs-grid-2 {
    grid-template-columns: 1fr 1fr;
    max-width: 920px;
    margin: 0 auto;
}
@media (max-width: 768px) {
    .vc-dispositifs-grid-2 {
        grid-template-columns: 1fr;
    }
}

/* ============================================================
   55. Breadcrumb (pages internes)
   ============================================================ */

.vc-breadcrumb {
    background: var(--vc-creme);
    border-bottom: var(--vc-border);
    padding: var(--vc-space-3) 0;
    font-size: 0.8125rem;
}
.vc-breadcrumb .vc-container {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--vc-texte-muet);
    flex-wrap: wrap;
}
.vc-breadcrumb a {
    color: var(--vc-marine);
    text-decoration: none;
}
.vc-breadcrumb a:hover {
    color: var(--vc-framboise-dark);
}
.vc-breadcrumb span[aria-hidden] {
    color: var(--vc-texte-muet);
    opacity: 0.5;
}

/* ============================================================
   56. Contenu SEO éditorial (taxonomy + pages SEO)
   ============================================================ */

.vc-seo-content {
    background: var(--vc-creme);
}
.vc-seo-inner {
    max-width: 760px;
    margin: 0 auto;
}
.vc-seo-inner h2 {
    margin-top: var(--vc-space-8);
    margin-bottom: var(--vc-space-4);
    color: var(--vc-marine);
}
.vc-seo-inner h2:first-child {
    margin-top: 0;
}
.vc-seo-inner h3 {
    margin-top: var(--vc-space-6);
    margin-bottom: var(--vc-space-3);
    color: var(--vc-marine);
    font-family: var(--vc-font-serif);
    font-size: 1.25rem;
}
.vc-seo-inner p {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--vc-texte-secondaire);
    margin-bottom: var(--vc-space-4);
}
.vc-seo-inner p strong,
.vc-seo-inner li strong {
    color: var(--vc-marine);
    font-weight: 600;
}
.vc-seo-keywords {
    list-style: none;
    padding: 0;
    margin: var(--vc-space-4) 0;
    display: flex;
    flex-direction: column;
    gap: var(--vc-space-2);
}
.vc-seo-keywords li {
    padding: var(--vc-space-3) var(--vc-space-4);
    background: var(--vc-blanc);
    border-left: 3px solid var(--vc-framboise);
    border-radius: 0 var(--vc-radius-md) var(--vc-radius-md) 0;
    font-size: 0.9375rem;
    line-height: 1.5;
    color: var(--vc-texte-secondaire);
}
.vc-seo-keywords li strong {
    color: var(--vc-marine);
}
.vc-seo-inner a {
    color: var(--vc-framboise-dark);
    text-decoration: underline;
    text-underline-offset: 2px;
}
.vc-seo-inner a:hover {
    color: var(--vc-framboise);
}

/* ============================================================
   57. Blog archive — grille + sidebar
   ============================================================ */

.vc-blog-archive {
    background: var(--vc-blanc);
}
.vc-blog-layout {
    display: grid;
    grid-template-columns: 1fr 300px;
    gap: var(--vc-space-10);
    align-items: flex-start;
}
.vc-blog-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--vc-space-6);
}
.vc-blog-grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--vc-space-5);
}
.vc-blog-card {
    background: var(--vc-blanc);
    border: var(--vc-border);
    border-radius: var(--vc-radius-lg);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: box-shadow var(--vc-transition), transform var(--vc-transition);
}
.vc-blog-card:hover {
    box-shadow: 0 8px 32px rgba(26, 43, 74, 0.08);
    transform: translateY(-2px);
}
.vc-blog-card-thumb {
    display: block;
    aspect-ratio: 16/9;
    overflow: hidden;
    background: var(--vc-creme);
    line-height: 0;
}
.vc-blog-card-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 400ms ease;
}
.vc-blog-card:hover .vc-blog-card-thumb img {
    transform: scale(1.04);
}
.vc-blog-card-body {
    padding: var(--vc-space-5);
    flex: 1;
    display: flex;
    flex-direction: column;
}
.vc-blog-card-meta {
    display: flex;
    align-items: center;
    gap: var(--vc-space-3);
    margin-bottom: var(--vc-space-3);
    font-size: 0.75rem;
    color: var(--vc-texte-muet);
}
.vc-blog-card-meta time {
    color: var(--vc-texte-muet);
}
.vc-blog-card-body h2,
.vc-blog-card-body h3 {
    font-family: var(--vc-font-serif);
    font-size: 1.1875rem;
    line-height: 1.25;
    margin: 0 0 var(--vc-space-3);
}
.vc-blog-card-body h2 a,
.vc-blog-card-body h3 a {
    color: var(--vc-marine);
    text-decoration: none;
}
.vc-blog-card-body h2 a:hover,
.vc-blog-card-body h3 a:hover {
    color: var(--vc-framboise-dark);
}
.vc-blog-card-body p {
    font-size: 0.875rem;
    color: var(--vc-texte-muet);
    line-height: 1.5;
    flex: 1;
    margin: 0 0 var(--vc-space-3);
}
.vc-blog-card-link {
    color: var(--vc-framboise-dark);
    text-decoration: none;
    font-size: 0.8125rem;
    font-weight: 500;
    align-self: flex-start;
}
.vc-blog-card-link:hover {
    color: var(--vc-framboise);
}
.vc-blog-empty {
    text-align: center;
    padding: var(--vc-space-12) var(--vc-space-4);
}

/* Sidebar blog */
.vc-blog-sidebar {
    position: sticky;
    top: 100px;
    display: flex;
    flex-direction: column;
    gap: var(--vc-space-5);
}
.vc-sidebar-block {
    background: var(--vc-creme);
    border-radius: var(--vc-radius-lg);
    padding: var(--vc-space-5);
}
.vc-sidebar-block h3 {
    font-family: var(--vc-font-sans);
    font-size: 0.75rem;
    letter-spacing: 0.06em;
    font-weight: 600;
    color: var(--vc-framboise-dark);
    text-transform: uppercase;
    margin: 0 0 var(--vc-space-3);
}
.vc-sidebar-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 4px;
}
.vc-sidebar-list a {
    display: flex;
    justify-content: space-between;
    padding: 8px 0;
    color: var(--vc-marine);
    text-decoration: none;
    font-size: 0.9375rem;
    border-bottom: 1px dashed var(--vc-bordure);
}
.vc-sidebar-list a:hover {
    color: var(--vc-framboise-dark);
}
.vc-sidebar-count {
    color: var(--vc-texte-muet);
    font-size: 0.75rem;
}
.vc-sidebar-cta {
    background: var(--vc-marine-deep);
    color: var(--vc-blanc);
}
.vc-sidebar-cta h3 {
    color: var(--vc-rose-pale);
}
.vc-sidebar-cta p {
    color: var(--vc-creme);
    font-size: 0.875rem;
    line-height: 1.5;
    margin: 0 0 var(--vc-space-4);
}
.vc-sidebar-cta .vc-btn {
    width: 100%;
    justify-content: center;
}
.vc-sidebar-recent {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: var(--vc-space-3);
}
.vc-sidebar-recent a {
    display: flex;
    gap: 10px;
    color: var(--vc-marine);
    text-decoration: none;
}
.vc-sidebar-recent-thumb {
    width: 56px;
    height: 56px;
    flex-shrink: 0;
    overflow: hidden;
    border-radius: var(--vc-radius-md);
    line-height: 0;
}
.vc-sidebar-recent-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.vc-sidebar-recent-meta {
    display: flex;
    flex-direction: column;
    justify-content: center;
    flex: 1;
    min-width: 0;
}
.vc-sidebar-recent-title {
    font-family: var(--vc-font-serif);
    font-size: 0.875rem;
    line-height: 1.3;
    margin-bottom: 4px;
}
.vc-sidebar-recent time {
    font-size: 0.75rem;
    color: var(--vc-texte-muet);
}
.vc-pagination {
    margin-top: var(--vc-space-8);
    text-align: center;
}
.vc-pagination .nav-links {
    display: inline-flex;
    gap: 6px;
    flex-wrap: wrap;
}
.vc-pagination a,
.vc-pagination span {
    padding: 8px 14px;
    border-radius: var(--vc-radius-md);
    border: var(--vc-border);
    text-decoration: none;
    color: var(--vc-marine);
    font-size: 0.875rem;
    background: var(--vc-blanc);
}
.vc-pagination a:hover,
.vc-pagination .current {
    background: var(--vc-framboise);
    color: var(--vc-blanc);
    border-color: var(--vc-framboise);
}

/* ============================================================
   58. Single article — hero + layout 2 cols TOC + contenu
   ============================================================ */

.vc-article-hero {
    background: var(--vc-creme);
    padding: var(--vc-space-12) 0 var(--vc-space-8);
    border-bottom: var(--vc-border);
}
.vc-article-hero-inner {
    max-width: 880px;
}
.vc-article-hero h1 {
    font-size: clamp(1.875rem, 4vw, 3rem);
    margin: var(--vc-space-3) 0;
    line-height: 1.15;
}
.vc-article-meta {
    display: flex;
    align-items: center;
    gap: var(--vc-space-3);
    color: var(--vc-texte-muet);
    font-size: 0.875rem;
    flex-wrap: wrap;
    margin-top: var(--vc-space-4);
}
.vc-article-author {
    display: flex;
    align-items: center;
    gap: 8px;
}
.vc-article-author img {
    border-radius: 50%;
    width: 36px;
    height: 36px;
}
.vc-article-author strong {
    color: var(--vc-marine);
}
.vc-article-sep {
    opacity: 0.4;
}
.vc-article-thumb {
    background: var(--vc-creme);
    padding: var(--vc-space-8) 0;
}
.vc-article-thumb img {
    width: 100%;
    height: auto;
    max-height: 480px;
    object-fit: cover;
    border-radius: var(--vc-radius-lg);
    display: block;
}
.vc-article-layout {
    display: grid;
    grid-template-columns: 240px 1fr;
    gap: var(--vc-space-12);
    padding: var(--vc-space-12) 0;
    align-items: flex-start;
}
.vc-article-content {
    max-width: 760px;
    font-size: 1.0625rem;
    line-height: 1.75;
    color: var(--vc-texte-secondaire);
}
.vc-article-content h2,
.vc-article-content h3 {
    color: var(--vc-marine);
    margin-top: var(--vc-space-8);
    margin-bottom: var(--vc-space-3);
    scroll-margin-top: 100px;
}
.vc-article-content h2 {
    font-size: clamp(1.5rem, 2.5vw, 1.875rem);
}
.vc-article-content h3 {
    font-size: 1.25rem;
}
.vc-article-content p {
    margin-bottom: var(--vc-space-4);
}
.vc-article-content blockquote {
    border-left: 4px solid var(--vc-framboise);
    padding-left: var(--vc-space-5);
    margin: var(--vc-space-6) 0;
    font-style: italic;
    color: var(--vc-marine);
    font-family: var(--vc-font-serif);
    font-size: 1.25rem;
    line-height: 1.5;
}
.vc-article-content ul,
.vc-article-content ol {
    margin: var(--vc-space-4) 0 var(--vc-space-4) var(--vc-space-5);
}
.vc-article-content li {
    margin-bottom: var(--vc-space-2);
}
.vc-article-content img {
    border-radius: var(--vc-radius-md);
    margin: var(--vc-space-4) 0;
    max-width: 100%;
    height: auto;
}
.vc-article-content a {
    color: var(--vc-framboise-dark);
    text-decoration: underline;
    text-underline-offset: 2px;
}
.vc-article-content code {
    background: var(--vc-creme);
    padding: 2px 6px;
    border-radius: 4px;
    font-size: 0.9em;
}

/* Sommaire sticky */
.vc-article-toc {
    position: sticky;
    top: 100px;
    padding: var(--vc-space-4);
    background: var(--vc-creme);
    border-radius: var(--vc-radius-lg);
    border: 1px solid var(--vc-bordure);
    max-height: calc(100vh - 120px);
    overflow-y: auto;
}
.vc-toc-label {
    font-family: var(--vc-font-sans);
    font-size: 0.6875rem;
    letter-spacing: 0.08em;
    font-weight: 600;
    color: var(--vc-framboise-dark);
    text-transform: uppercase;
    margin: 0 0 var(--vc-space-3);
}
#vc-toc-list {
    list-style: none;
    padding: 0;
    margin: 0;
    border-left: 1px solid var(--vc-bordure);
}
#vc-toc-list li {
    margin: 0;
}
#vc-toc-list a {
    display: block;
    padding: 6px 0 6px 12px;
    color: var(--vc-texte-muet);
    text-decoration: none;
    font-size: 0.8125rem;
    line-height: 1.4;
    border-left: 2px solid transparent;
    margin-left: -1px;
    transition: color var(--vc-transition), border-color var(--vc-transition);
}
#vc-toc-list a:hover {
    color: var(--vc-marine);
}
#vc-toc-list a.is-active {
    color: var(--vc-framboise-dark);
    border-left-color: var(--vc-framboise);
    font-weight: 500;
}
.vc-toc-h3 a {
    padding-left: 24px;
    font-size: 0.75rem;
}

/* Tags + partage + bio auteur */
.vc-article-tags {
    margin-top: var(--vc-space-10);
    padding-top: var(--vc-space-5);
    border-top: var(--vc-border);
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    align-items: center;
    font-size: 0.875rem;
    color: var(--vc-texte-muet);
}
.vc-tag-pill {
    padding: 4px 12px;
    background: var(--vc-creme);
    color: var(--vc-marine);
    text-decoration: none;
    border-radius: var(--vc-radius-pill);
    font-size: 0.75rem;
}
.vc-tag-pill:hover {
    background: var(--vc-framboise);
    color: var(--vc-blanc);
}
.vc-article-share {
    margin-top: var(--vc-space-5);
    display: flex;
    gap: var(--vc-space-3);
    align-items: center;
    font-size: 0.875rem;
}
.vc-article-share a {
    display: inline-flex;
    width: 36px;
    height: 36px;
    align-items: center;
    justify-content: center;
    background: var(--vc-creme);
    color: var(--vc-marine);
    border-radius: 50%;
    text-decoration: none;
    transition: background var(--vc-transition), color var(--vc-transition);
}
.vc-article-share a:hover {
    background: var(--vc-framboise);
    color: var(--vc-blanc);
}
.vc-article-author-bio {
    margin-top: var(--vc-space-10);
    padding: var(--vc-space-6);
    background: var(--vc-creme);
    border-radius: var(--vc-radius-lg);
    display: flex;
    gap: var(--vc-space-4);
}
.vc-article-author-bio img {
    border-radius: 50%;
    flex-shrink: 0;
}
.vc-article-author-bio h3 {
    margin: 4px 0 var(--vc-space-2);
    font-size: 1.125rem;
    color: var(--vc-marine);
}
.vc-article-author-bio p {
    font-size: 0.875rem;
    line-height: 1.5;
    color: var(--vc-texte-muet);
    margin: 0;
}

.vc-related {
    background: var(--vc-creme);
}

@media (max-width: 1024px) {
    .vc-blog-layout {
        grid-template-columns: 1fr;
        gap: var(--vc-space-8);
    }
    .vc-blog-sidebar {
        position: static;
        order: 2;
    }
    .vc-article-layout {
        grid-template-columns: 1fr;
        gap: var(--vc-space-6);
    }
    .vc-article-toc {
        position: static;
        max-height: none;
    }
    .vc-blog-grid-3 {
        grid-template-columns: 1fr 1fr;
    }
}
@media (max-width: 768px) {
    .vc-blog-grid,
    .vc-blog-grid-3 {
        grid-template-columns: 1fr;
    }
    .vc-article-content {
        font-size: 1rem;
    }
    .vc-article-author-bio {
        flex-direction: column;
        text-align: center;
        align-items: center;
    }
}

/* ============================================================
   59. MEGA MENU desktop — dropdowns hover/focus
   ============================================================ */

.vc-menu {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    align-items: center;
    gap: var(--vc-space-1);
}
.vc-menu-item {
    position: static;
}
.vc-menu-item > a {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 10px 14px;
    color: var(--vc-marine);
    text-decoration: none;
    font-size: 0.875rem;
    font-weight: 500;
    border-radius: var(--vc-radius-md);
    transition: color var(--vc-transition), background var(--vc-transition);
}
.vc-menu-item > a:hover,
.vc-menu-item > a:focus {
    color: var(--vc-framboise-dark);
    background: rgba(212, 83, 126, 0.05);
}
.vc-menu-arrow {
    transition: transform 200ms ease;
    color: currentColor;
}
.vc-has-mega.is-open > a .vc-menu-arrow {
    transform: rotate(180deg);
}

/* Panneau mega */
.vc-mega {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    width: 100%;
    background: var(--vc-blanc);
    border-top: 1px solid var(--vc-bordure);
    border-bottom: 1px solid var(--vc-bordure);
    box-shadow: 0 24px 48px -12px rgba(26, 43, 74, 0.18);
    padding: var(--vc-space-8) 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px);
    transition: opacity 220ms ease, transform 220ms ease, visibility 220ms ease;
    z-index: 100;
    pointer-events: none;
}
.vc-mega::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--vc-framboise) 0%, var(--vc-framboise-dark) 100%);
    box-shadow: 0 0 18px rgba(212, 83, 126, 0.4);
}
/* Ouverture pilotée par JS (.is-open) — fermée au mouseleave avec délai.
   :focus-within conservé pour l'accessibilité clavier (Tab dans le menu). */
.vc-has-mega.is-open > .vc-mega,
.vc-has-mega:focus-within > .vc-mega {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    pointer-events: auto;
}

/* Pont invisible entre bouton et panneau pour absorber l'espace
   pendant que le délai JS attend (sécurité supplémentaire). */
.vc-has-mega.is-open::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    top: 100%;
    height: 16px;
    z-index: 99;
    display: block;
}
.vc-mega-grid {
    max-width: 1360px;
    margin: 0 auto;
    padding: 0 var(--vc-space-6);
    display: grid;
    grid-template-columns: 1fr 1fr 1.2fr;
    gap: var(--vc-space-8);
}
.vc-mega-grid-1 {
    grid-template-columns: 1fr;
    max-width: 480px;
}
.vc-mega-small {
    padding: var(--vc-space-5) 0;
}
.vc-mega-col {
    min-width: 0;
}
.vc-mega-title {
    font-family: var(--vc-font-sans);
    font-size: 0.6875rem;
    letter-spacing: 0.1em;
    font-weight: 700;
    color: var(--vc-framboise-dark);
    text-transform: uppercase;
    margin: 0 0 var(--vc-space-3);
    padding-bottom: var(--vc-space-2);
    border-bottom: 1px dashed var(--vc-bordure);
}
.vc-mega-link {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    padding: 10px 12px;
    margin: 0 -12px;
    color: var(--vc-marine);
    text-decoration: none;
    border-radius: var(--vc-radius-md);
    transition: background var(--vc-transition), transform var(--vc-transition);
}
.vc-mega-link:hover {
    background: var(--vc-creme);
    transform: translateX(2px);
}
.vc-mega-link-icon {
    flex-shrink: 0;
    width: 32px;
    height: 32px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.125rem;
    background: var(--vc-framboise-light);
    border-radius: var(--vc-radius-md);
    color: var(--vc-framboise-dark);
}
.vc-mega-link span:not(.vc-mega-link-icon) {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 2px;
    min-width: 0;
}
.vc-mega-link strong {
    font-family: var(--vc-font-serif);
    font-size: 1rem;
    color: var(--vc-marine);
    font-weight: 500;
    line-height: 1.2;
}
.vc-mega-link:hover strong {
    color: var(--vc-framboise-dark);
}
.vc-mega-link small {
    font-size: 0.75rem;
    color: var(--vc-texte-muet);
    line-height: 1.4;
}
.vc-mega-pill-free {
    background: var(--vc-succes);
    color: var(--vc-blanc);
    font-size: 0.625rem;
    padding: 3px 7px;
    border-radius: var(--vc-radius-pill);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    white-space: nowrap;
}
.vc-mega-badge {
    background: var(--vc-framboise);
    color: var(--vc-blanc);
    width: 28px;
    height: 28px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 0.875rem;
    box-shadow: var(--vc-glow-soft);
}

/* CTA column dans le mega */
.vc-mega-cta {
    background: var(--vc-marine-deep);
    color: var(--vc-blanc);
    border-radius: var(--vc-radius-lg);
    padding: var(--vc-space-5);
    position: relative;
    overflow: hidden;
}
.vc-mega-cta::before {
    content: "";
    position: absolute;
    top: -40px;
    right: -40px;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(212, 83, 126, 0.35) 0%, transparent 60%);
    pointer-events: none;
}
.vc-mega-cta-content {
    position: relative;
}
.vc-mega-cta .vc-eyebrow {
    color: var(--vc-rose-pale);
    margin: 0 0 6px;
}
.vc-mega-cta h3,
.vc-mega-cta-title {
    display: block;
    font-family: var(--vc-font-serif);
    font-size: 1.125rem;
    color: var(--vc-blanc);
    margin: 0 0 8px;
    line-height: 1.2;
}
.vc-mega-cta p {
    font-size: 0.8125rem;
    color: var(--vc-creme);
    margin: 0 0 var(--vc-space-3);
    line-height: 1.4;
}

/* Footer du mega menu */
.vc-mega-footer {
    max-width: 1360px;
    margin: var(--vc-space-6) auto 0;
    padding: var(--vc-space-4) var(--vc-space-6) 0;
    border-top: 1px dashed var(--vc-bordure);
    text-align: center;
}
.vc-mega-footer-link {
    color: var(--vc-framboise-dark);
    text-decoration: none;
    font-size: 0.875rem;
    font-weight: 500;
}
.vc-mega-footer-link:hover {
    color: var(--vc-framboise);
    text-decoration: underline;
}

@media (max-width: 1024px) {
    /* Masquer mega menu desktop sur mobile */
    .vc-nav-primary,
    .vc-header-actions {
        display: none;
    }
}

/* ============================================================
   60. MOBILE menu — accordéons multi-niveaux
   ============================================================ */

.vc-mobile-menu {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
}
.vc-mobile-menu > li > a,
.vc-mob-toggle {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 13px 0;
    color: var(--vc-marine);
    text-decoration: none;
    font-family: var(--vc-font-serif);
    font-size: 1.0625rem;
    font-weight: 500;
    border: 0;
    background: transparent;
    border-bottom: 1px dashed var(--vc-bordure);
    cursor: pointer;
    text-align: left;
}
.vc-mob-toggle svg {
    transition: transform 200ms ease;
    color: var(--vc-framboise);
    flex-shrink: 0;
}
.vc-mob-has-sub.is-open .vc-mob-toggle svg {
    transform: rotate(180deg);
}
.vc-mob-sub {
    list-style: none;
    padding: 0;
    margin: 0;
    max-height: 0;
    overflow: hidden;
    transition: max-height 300ms ease;
}
.vc-mob-has-sub.is-open .vc-mob-sub {
    max-height: 600px;
}
.vc-mob-sub a {
    display: block;
    padding: 9px 0 9px 16px;
    color: var(--vc-texte-secondaire);
    text-decoration: none;
    font-family: var(--vc-font-sans);
    font-size: 0.875rem;
    border-left: 2px solid var(--vc-framboise-light);
    margin-left: 4px;
    transition: color var(--vc-transition), border-color var(--vc-transition);
}
.vc-mob-sub a:hover {
    color: var(--vc-framboise-dark);
    border-left-color: var(--vc-framboise);
}

/* ============================================================
   61. Cartes de maillage interne (.vc-internal-card)
   ============================================================ */

.vc-internal-links-grid {
    gap: var(--vc-space-5);
}
/* EN : les 2 cartes articles FR sont masquées → la carte vidéo reste seule.
   On bascule en flex centré pour ne pas la laisser collée à gauche. */
.vc-internal-links-grid-en {
    display: flex;
    justify-content: center;
}
.vc-internal-links-grid-en .vc-internal-card {
    max-width: 420px;
}
.vc-internal-card {
    display: flex;
    flex-direction: column;
    gap: var(--vc-space-3);
    padding: var(--vc-space-6);
    background: var(--vc-blanc);
    border: var(--vc-border);
    border-radius: var(--vc-radius-lg);
    text-decoration: none;
    color: var(--vc-marine);
    transition: box-shadow var(--vc-transition), transform var(--vc-transition), border-color var(--vc-transition);
}
.vc-internal-card:hover {
    box-shadow: 0 12px 32px rgba(212, 83, 126, 0.12);
    transform: translateY(-3px);
    border-color: var(--vc-framboise);
}
.vc-internal-icon {
    width: 48px;
    height: 48px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    background: var(--vc-framboise-light);
    border-radius: var(--vc-radius-md);
}
.vc-internal-card h3 {
    font-family: var(--vc-font-serif);
    font-size: 1.125rem;
    margin: 0;
    color: var(--vc-marine);
    line-height: 1.2;
}
.vc-internal-card p {
    font-size: 0.875rem;
    color: var(--vc-texte-muet);
    line-height: 1.5;
    margin: 0;
    flex: 1;
}
.vc-internal-link {
    color: var(--vc-framboise-dark);
    font-size: 0.8125rem;
    font-weight: 500;
}

/* ============================================================
   62. SINGLE article — REFONTE PREMIUM
   ============================================================ */

/* Hero refondu */
.vc-article-hero {
    background: linear-gradient(180deg, var(--vc-blanc) 0%, var(--vc-creme) 100%);
    padding: var(--vc-space-16) 0 var(--vc-space-12);
    text-align: center;
}
.vc-article-hero-inner {
    max-width: 820px;
    margin: 0 auto;
}
.vc-article-hero h1 {
    font-size: clamp(2rem, 5vw, 3.5rem);
    margin: var(--vc-space-4) 0 var(--vc-space-5);
    line-height: 1.1;
    letter-spacing: -0.015em;
}
.vc-article-cat-pill {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 14px;
    background: var(--vc-framboise);
    color: var(--vc-blanc);
    text-decoration: none;
    border-radius: var(--vc-radius-pill);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    box-shadow: 0 4px 16px rgba(212, 83, 126, 0.3);
    transition: transform var(--vc-transition), box-shadow var(--vc-transition);
}
.vc-article-cat-pill:hover {
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(212, 83, 126, 0.4);
}
.vc-article-cat-pill span {
    font-size: 0.625rem;
}
.vc-article-lead {
    font-family: var(--vc-font-serif);
    font-size: 1.25rem;
    line-height: 1.5;
    color: var(--vc-texte-secondaire);
    font-style: italic;
    max-width: 680px;
    margin: 0 auto var(--vc-space-8);
}
.vc-article-meta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--vc-space-5);
    flex-wrap: wrap;
    margin-top: var(--vc-space-6);
}
.vc-article-author {
    display: inline-flex;
    align-items: center;
    gap: 10px;
}
.vc-article-author img {
    border-radius: 50%;
    width: 40px;
    height: 40px;
}
.vc-article-author-info,
.vc-article-meta-block {
    display: flex;
    flex-direction: column;
    text-align: left;
    line-height: 1.2;
}
.vc-article-author-info small,
.vc-article-meta-block small {
    font-size: 0.6875rem;
    color: var(--vc-texte-muet);
    letter-spacing: 0.04em;
    text-transform: uppercase;
}
.vc-article-author-info strong,
.vc-article-meta-block strong,
.vc-article-meta-block time {
    color: var(--vc-marine);
    font-size: 0.875rem;
    font-weight: 500;
    font-family: var(--vc-font-sans);
}
.vc-article-meta-sep {
    width: 1px;
    height: 28px;
    background: var(--vc-bordure);
    flex-shrink: 0;
}

/* Featured image plus impactante */
.vc-article-thumb {
    background: transparent;
    padding: 0 0 var(--vc-space-10);
    margin-top: -1px;
}
.vc-article-thumb img {
    width: 100%;
    height: auto;
    max-height: 540px;
    object-fit: cover;
    border-radius: var(--vc-radius-lg);
    display: block;
    box-shadow: 0 24px 60px -20px rgba(26, 43, 74, 0.35);
}

/* Layout 2 colonnes */
.vc-article-layout {
    display: grid;
    grid-template-columns: 260px 1fr;
    gap: 60px;
    padding: var(--vc-space-8) 0 var(--vc-space-12);
    align-items: flex-start;
}
.vc-article-content {
    max-width: 740px;
    font-size: 1.0625rem;
    line-height: 1.8;
    color: var(--vc-texte-secondaire);
}

/* Drop cap sur le premier paragraphe */
.vc-article-content > p:first-of-type::first-letter {
    font-family: var(--vc-font-serif);
    float: left;
    font-size: 4.5rem;
    line-height: 0.9;
    font-weight: 500;
    color: var(--vc-framboise-dark);
    padding: 6px 12px 0 0;
    margin-top: 6px;
}

/* Titres dans le contenu */
.vc-article-content h2,
.vc-article-content h3 {
    color: var(--vc-marine);
    margin-top: var(--vc-space-10);
    margin-bottom: var(--vc-space-4);
    scroll-margin-top: 100px;
    line-height: 1.2;
    position: relative;
}
.vc-article-content h2 {
    font-size: clamp(1.5rem, 2.5vw, 1.875rem);
    padding-left: var(--vc-space-5);
    border-left: 3px solid var(--vc-framboise);
}
.vc-article-content h3 {
    font-size: 1.25rem;
    color: var(--vc-framboise-dark);
}
.vc-article-content p {
    margin-bottom: var(--vc-space-4);
}
.vc-article-content strong {
    color: var(--vc-marine);
    font-weight: 600;
}
.vc-article-content em {
    color: var(--vc-framboise-dark);
    font-style: italic;
}

/* Blockquote stylisée */
.vc-article-content blockquote {
    border-left: 0;
    padding: var(--vc-space-6) var(--vc-space-6) var(--vc-space-6) var(--vc-space-8);
    margin: var(--vc-space-6) 0;
    background: var(--vc-creme);
    border-radius: var(--vc-radius-lg);
    font-style: italic;
    color: var(--vc-marine);
    font-family: var(--vc-font-serif);
    font-size: 1.25rem;
    line-height: 1.5;
    position: relative;
}
.vc-article-content blockquote::before {
    content: "❝";
    position: absolute;
    top: 4px;
    left: 18px;
    font-size: 2.5rem;
    color: var(--vc-framboise);
    line-height: 1;
    font-family: var(--vc-font-serif);
}

/* Listes premium */
.vc-article-content ul,
.vc-article-content ol {
    margin: var(--vc-space-4) 0 var(--vc-space-4) 0;
    padding-left: var(--vc-space-5);
}
.vc-article-content ul li,
.vc-article-content ol li {
    margin-bottom: var(--vc-space-2);
    padding-left: 6px;
}
.vc-article-content ul {
    list-style: none;
    padding-left: 0;
}
.vc-article-content ul li {
    position: relative;
    padding-left: var(--vc-space-5);
}
.vc-article-content ul li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.7em;
    width: 8px;
    height: 8px;
    background: var(--vc-framboise);
    border-radius: 50%;
}

.vc-article-content img {
    border-radius: var(--vc-radius-md);
    margin: var(--vc-space-6) 0;
    max-width: 100%;
    height: auto;
    box-shadow: 0 12px 32px -10px rgba(26, 43, 74, 0.2);
}

.vc-article-content a {
    color: var(--vc-framboise-dark);
    text-decoration: underline;
    text-underline-offset: 3px;
    text-decoration-thickness: 1.5px;
    transition: color var(--vc-transition);
}
.vc-article-content a:hover {
    color: var(--vc-framboise);
}

/* ===================== SOMMAIRE STICKY REFONDU ===================== */
.vc-article-toc {
    position: sticky;
    top: 100px;
    padding: var(--vc-space-5);
    background: var(--vc-blanc);
    border-radius: var(--vc-radius-lg);
    border: 1px solid var(--vc-bordure);
    box-shadow: 0 8px 24px -8px rgba(26, 43, 74, 0.08);
    max-height: calc(100vh - 120px);
    overflow-y: auto;
}
.vc-toc-header {
    display: flex;
    align-items: center;
    gap: 8px;
    padding-bottom: var(--vc-space-3);
    margin-bottom: var(--vc-space-3);
    border-bottom: 1px solid var(--vc-bordure);
}
.vc-toc-icon {
    width: 28px;
    height: 28px;
    background: var(--vc-framboise-light);
    color: var(--vc-framboise-dark);
    border-radius: 6px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}
.vc-toc-label {
    font-family: var(--vc-font-sans);
    font-size: 0.6875rem;
    letter-spacing: 0.1em;
    font-weight: 700;
    color: var(--vc-marine);
    text-transform: uppercase;
}
#vc-toc-list {
    list-style: none;
    padding: 0;
    margin: 0;
    counter-reset: toc;
}
#vc-toc-list li {
    margin: 0;
    position: relative;
}
#vc-toc-list .vc-toc-h2 {
    margin-bottom: 2px;
}
#vc-toc-list a {
    display: flex;
    gap: 10px;
    align-items: flex-start;
    padding: 8px 10px 8px 8px;
    margin-left: -2px;
    color: var(--vc-texte-muet);
    text-decoration: none;
    font-size: 0.8125rem;
    line-height: 1.4;
    border-left: 2px solid transparent;
    border-radius: 0 6px 6px 0;
    transition: color var(--vc-transition), border-color var(--vc-transition), background var(--vc-transition);
}
#vc-toc-list a:hover {
    color: var(--vc-marine);
    background: var(--vc-creme);
}
#vc-toc-list a.is-active {
    color: var(--vc-framboise-dark);
    border-left-color: var(--vc-framboise);
    background: var(--vc-framboise-light);
    font-weight: 500;
}
.vc-toc-num {
    flex-shrink: 0;
    font-family: var(--vc-font-serif);
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--vc-framboise-dark);
    line-height: 1.4;
    opacity: 0.7;
    letter-spacing: 0.04em;
}
#vc-toc-list a.is-active .vc-toc-num {
    opacity: 1;
}
.vc-toc-h3 a {
    padding-left: 32px;
    font-size: 0.75rem;
    color: var(--vc-texte-muet);
}
.vc-toc-h3 .vc-toc-num {
    display: none;
}
.vc-toc-text {
    flex: 1;
}

/* ===================== TAGS, PARTAGE, BIO ===================== */
.vc-article-tags {
    margin-top: var(--vc-space-10);
    padding-top: var(--vc-space-6);
    border-top: 2px solid var(--vc-creme);
}
.vc-article-tags-label {
    display: block;
    font-family: var(--vc-font-sans);
    font-size: 0.6875rem;
    letter-spacing: 0.1em;
    font-weight: 700;
    color: var(--vc-framboise-dark);
    text-transform: uppercase;
    margin-bottom: var(--vc-space-3);
}
.vc-article-tags-list {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}
.vc-tag-pill {
    padding: 6px 14px;
    background: var(--vc-creme);
    color: var(--vc-marine);
    text-decoration: none;
    border-radius: var(--vc-radius-pill);
    font-size: 0.8125rem;
    font-weight: 500;
    transition: background var(--vc-transition), color var(--vc-transition);
}
.vc-tag-pill:hover {
    background: var(--vc-framboise);
    color: var(--vc-blanc);
}

.vc-article-share-block {
    margin-top: var(--vc-space-8);
    padding: var(--vc-space-6);
    background: var(--vc-marine-deep);
    color: var(--vc-blanc);
    border-radius: var(--vc-radius-lg);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--vc-space-4);
    position: relative;
    overflow: hidden;
}
.vc-article-share-block::before {
    content: "";
    position: absolute;
    top: -40px;
    right: -40px;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(212, 83, 126, 0.3) 0%, transparent 60%);
    pointer-events: none;
}
.vc-article-share-text {
    position: relative;
}
.vc-article-share-text strong {
    font-family: var(--vc-font-serif);
    font-size: 1.25rem;
    color: var(--vc-blanc);
    display: block;
    margin-bottom: 4px;
}
.vc-article-share-text p {
    margin: 0;
    color: var(--vc-creme);
    font-size: 0.875rem;
    line-height: 1.4;
}
.vc-article-share-icons {
    display: flex;
    gap: 8px;
    position: relative;
    flex-shrink: 0;
}
.vc-article-share-icons a,
.vc-article-share-copy {
    display: inline-flex;
    width: 44px;
    height: 44px;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.08);
    color: var(--vc-blanc);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    text-decoration: none;
    transition: background var(--vc-transition), border-color var(--vc-transition), transform var(--vc-transition);
    cursor: pointer;
}
.vc-article-share-icons a:hover,
.vc-article-share-copy:hover {
    background: var(--vc-framboise);
    border-color: var(--vc-framboise);
    transform: translateY(-2px);
}
.vc-article-share-copy {
    padding: 0;
    font: inherit;
}
.vc-article-share-copy .vc-icon-check { display: none; }
.vc-article-share-copy.is-copied { background: var(--vc-succes); border-color: var(--vc-succes); }
.vc-article-share-copy.is-copied .vc-icon-copy { display: none; }
.vc-article-share-copy.is-copied .vc-icon-check { display: block; }

/* Bio auteur en card */
.vc-article-author-bio {
    margin-top: var(--vc-space-10);
    padding: var(--vc-space-6);
    background: var(--vc-creme);
    border-radius: var(--vc-radius-lg);
    border: 1px solid var(--vc-bordure);
    display: flex;
    gap: var(--vc-space-5);
    align-items: flex-start;
}
.vc-article-author-bio-avatar {
    flex-shrink: 0;
}
.vc-article-author-bio-avatar img {
    border-radius: 50%;
    width: 100px;
    height: 100px;
    object-fit: cover;
    box-shadow: var(--vc-glow-soft);
    border: 2px solid var(--vc-framboise);
}
.vc-article-author-bio-content {
    flex: 1;
}
.vc-article-author-bio-content .vc-eyebrow {
    margin: 0 0 4px;
}
.vc-article-author-bio-content h3 {
    margin: 0 0 var(--vc-space-2);
    font-size: 1.25rem;
    color: var(--vc-marine);
    font-family: var(--vc-font-serif);
}
.vc-article-author-bio-content p {
    font-size: 0.9375rem;
    line-height: 1.6;
    color: var(--vc-texte-secondaire);
    margin: 0 0 var(--vc-space-3);
}
.vc-article-author-bio-link {
    color: var(--vc-framboise-dark);
    text-decoration: none;
    font-size: 0.875rem;
    font-weight: 500;
}
.vc-article-author-bio-link:hover {
    color: var(--vc-framboise);
}

/* Breakpoints article */
@media (max-width: 1100px) {
    .vc-article-layout {
        grid-template-columns: 220px 1fr;
        gap: 40px;
    }
    .vc-article-content {
        font-size: 1rem;
    }
}
@media (max-width: 900px) {
    .vc-article-layout {
        grid-template-columns: 1fr;
        gap: var(--vc-space-6);
    }
    .vc-article-toc {
        position: static;
        max-height: none;
        margin-bottom: var(--vc-space-6);
    }
    .vc-article-content > p:first-of-type::first-letter {
        font-size: 3.5rem;
    }
    .vc-article-share-block {
        flex-direction: column;
        text-align: center;
        align-items: center;
    }
    .vc-article-author-bio {
        flex-direction: column;
        text-align: center;
        align-items: center;
    }
}

/* ============================================================
   63. Scroll-margin pour les ancres (anti-masquage par nav sticky)
   ============================================================ */

section[id],
#microscope,
#evaluations,
.vc-section[id],
.vc-article-content [id] {
    scroll-margin-top: 100px;
}

/* ============================================================
   64. NOTIF iOS "Besoin d'aide" (bottom-left) + Scroll-top (bottom-right)
   ============================================================ */

/* Notif iOS */
.vc-help-notif {
    position: fixed;
    bottom: 22px;
    left: 22px;
    z-index: 998;
    width: 340px;
    max-width: calc(100vw - 90px);
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: saturate(180%) blur(20px);
    -webkit-backdrop-filter: saturate(180%) blur(20px);
    border-radius: 18px;
    box-shadow: 0 12px 32px -8px rgba(26, 43, 74, 0.25), 0 4px 12px -2px rgba(0, 0, 0, 0.08);
    padding: 14px 16px;
    display: grid;
    grid-template-columns: 40px 1fr;
    gap: 12px;
    align-items: flex-start;
    opacity: 0;
    visibility: hidden;
    transform: translateY(24px) scale(0.96);
    transition: opacity 360ms cubic-bezier(0.16, 1, 0.3, 1),
                transform 360ms cubic-bezier(0.16, 1, 0.3, 1),
                visibility 360ms ease;
}
.vc-help-notif.is-visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
}
.vc-help-notif-close {
    position: absolute;
    top: 8px;
    right: 10px;
    width: 22px;
    height: 22px;
    background: rgba(26, 43, 74, 0.08);
    border: 0;
    border-radius: 50%;
    font-size: 18px;
    line-height: 1;
    color: var(--vc-marine);
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    transition: background var(--vc-transition);
}
.vc-help-notif-close:hover {
    background: rgba(26, 43, 74, 0.16);
}
.vc-help-notif-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    overflow: hidden;
    background: linear-gradient(135deg, var(--vc-framboise) 0%, var(--vc-rose-cellule) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    position: relative;
}
.vc-help-notif-avatar::after {
    content: "";
    position: absolute;
    right: -1px;
    bottom: -1px;
    width: 12px;
    height: 12px;
    background: var(--vc-succes);
    border: 2px solid var(--vc-blanc);
    border-radius: 50%;
}
.vc-help-notif-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.vc-help-notif-avatar-fallback {
    color: var(--vc-blanc);
    font-family: var(--vc-font-serif);
    font-weight: 600;
    font-size: 1rem;
}
.vc-help-notif-body {
    min-width: 0;
    padding-right: 16px;
}
.vc-help-notif-head {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 8px;
    margin-bottom: 2px;
}
.vc-help-notif-head strong {
    font-size: 0.875rem;
    color: var(--vc-marine);
    font-weight: 600;
    font-family: var(--vc-font-sans);
}
.vc-help-notif-head time {
    font-size: 0.6875rem;
    color: var(--vc-texte-muet);
}
.vc-help-notif-body p {
    margin: 0 0 10px;
    font-size: 0.8125rem;
    line-height: 1.4;
    color: var(--vc-texte-secondaire);
}
.vc-help-notif-actions {
    display: flex;
    gap: 8px;
}
.vc-help-notif-btn {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 6px 12px;
    background: rgba(26, 43, 74, 0.06);
    color: var(--vc-marine);
    text-decoration: none;
    border-radius: 10px;
    font-size: 0.75rem;
    font-weight: 500;
    transition: background var(--vc-transition), color var(--vc-transition);
}
.vc-help-notif-btn:hover {
    background: rgba(26, 43, 74, 0.12);
}
.vc-help-notif-btn-primary {
    background: var(--vc-framboise);
    color: var(--vc-blanc);
}
.vc-help-notif-btn-primary:hover {
    background: var(--vc-framboise-dark);
    color: var(--vc-blanc);
}

/* Bouton scroll-top circulaire */
.vc-scroll-top {
    position: fixed;
    bottom: 24px;
    right: 24px;
    z-index: 999;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--vc-framboise);
    color: var(--vc-blanc);
    border: 0;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 24px -4px rgba(212, 83, 126, 0.45);
    opacity: 0;
    visibility: hidden;
    transform: translateY(12px) scale(0.9);
    transition: opacity 240ms ease, transform 240ms cubic-bezier(0.16, 1, 0.3, 1), visibility 240ms ease, background var(--vc-transition);
}
.vc-scroll-top.is-visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
}
.vc-scroll-top:hover {
    background: var(--vc-framboise-dark);
    transform: translateY(-2px) scale(1.05);
}

@media (max-width: 720px) {
    .vc-help-notif {
        bottom: 16px;
        left: 12px;
        right: 76px;
        width: auto;
        max-width: none;
    }
    .vc-scroll-top {
        bottom: 16px;
        right: 16px;
        width: 44px;
        height: 44px;
    }
}

/* ============================================================
   65. PARALLAX bulles cellules en background
   ============================================================ */

.vc-bubbles-bg {
    position: absolute;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
    z-index: 0;
}
.vc-bubble {
    position: absolute;
    border-radius: 50%;
    opacity: 0.5;
    will-change: transform;
    animation: vc-float 18s ease-in-out infinite;
}
.vc-bubble:nth-child(1) { top: 8%;  left: 6%;  width: 84px; height: 84px;  background: radial-gradient(circle at 32% 32%, rgba(212, 83, 126, 0.35), rgba(212, 83, 126, 0.08) 60%, transparent 75%); animation-duration: 22s; }
.vc-bubble:nth-child(2) { top: 64%; left: 12%; width: 56px; height: 56px;  background: radial-gradient(circle at 32% 32%, rgba(116, 76, 156, 0.32), rgba(116, 76, 156, 0.06) 60%, transparent 75%); animation-duration: 26s; animation-delay: -3s; }
.vc-bubble:nth-child(3) { top: 18%; left: 78%; width: 120px; height: 120px; background: radial-gradient(circle at 32% 32%, rgba(212, 83, 126, 0.28), rgba(212, 83, 126, 0.06) 60%, transparent 75%); animation-duration: 30s; animation-delay: -7s; }
.vc-bubble:nth-child(4) { top: 70%; left: 70%; width: 64px;  height: 64px;  background: radial-gradient(circle at 32% 32%, rgba(244, 162, 197, 0.45), rgba(244, 162, 197, 0.06) 60%, transparent 75%); animation-duration: 24s; animation-delay: -12s; }
.vc-bubble:nth-child(5) { top: 38%; left: 48%; width: 40px;  height: 40px;  background: radial-gradient(circle at 32% 32%, rgba(212, 83, 126, 0.35), rgba(212, 83, 126, 0.06) 60%, transparent 75%); animation-duration: 20s; animation-delay: -5s; }
.vc-bubble:nth-child(6) { top: 88%; left: 30%; width: 72px;  height: 72px;  background: radial-gradient(circle at 32% 32%, rgba(116, 76, 156, 0.25), rgba(116, 76, 156, 0.05) 60%, transparent 75%); animation-duration: 28s; animation-delay: -9s; }

@keyframes vc-float {
    0%, 100% { transform: translate(0, 0) scale(1); }
    25%      { transform: translate(20px, -28px) scale(1.04); }
    50%      { transform: translate(-12px, -40px) scale(0.96); }
    75%      { transform: translate(-24px, -12px) scale(1.02); }
}

@media (prefers-reduced-motion: reduce) {
    .vc-bubble {
        animation: none;
    }
}

/* ============================================================
   66. SCROLL REVEAL — variations & stagger
   ============================================================ */

.vc-reveal {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 620ms cubic-bezier(0.16, 1, 0.3, 1), transform 620ms cubic-bezier(0.16, 1, 0.3, 1);
}
.vc-reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.vc-reveal-left   { transform: translateX(-32px); }
.vc-reveal-right  { transform: translateX(32px); }
.vc-reveal-zoom   { transform: scale(0.94); }
.vc-reveal-left.is-visible,
.vc-reveal-right.is-visible,
.vc-reveal-zoom.is-visible {
    transform: translate(0, 0) scale(1);
}

/* Stagger sur les grilles : delay automatique sur les enfants .vc-reveal */
.vc-stagger > .vc-reveal:nth-child(1)  { transition-delay: 0ms; }
.vc-stagger > .vc-reveal:nth-child(2)  { transition-delay: 80ms; }
.vc-stagger > .vc-reveal:nth-child(3)  { transition-delay: 160ms; }
.vc-stagger > .vc-reveal:nth-child(4)  { transition-delay: 240ms; }
.vc-stagger > .vc-reveal:nth-child(5)  { transition-delay: 320ms; }
.vc-stagger > .vc-reveal:nth-child(6)  { transition-delay: 400ms; }
.vc-stagger > .vc-reveal:nth-child(7)  { transition-delay: 480ms; }
.vc-stagger > .vc-reveal:nth-child(n+8) { transition-delay: 560ms; }

@media (prefers-reduced-motion: reduce) {
    .vc-reveal {
        opacity: 1;
        transform: none;
        transition: none;
    }
}

/* ============================================================
   67. SCHÉMAS SVG dynamiques (Décision thérapeutique + Cytologie)
   ============================================================ */

.vc-schema-section {
    background: var(--vc-blanc);
}
.vc-schema-section + .vc-schema-section,
.vc-section + .vc-schema-section {
    background: var(--vc-creme);
}
.vc-schema-head {
    max-width: 720px;
    margin: 0 auto var(--vc-space-10);
}
.vc-schema-lead {
    color: var(--vc-texte-muet);
    font-size: 1rem;
    line-height: 1.6;
    margin-top: var(--vc-space-3);
}

/* Schéma Décision Thérapeutique */
.vc-schema-decision {
    max-width: 920px;
    margin: 0 auto;
}
.vc-schema-decision svg {
    width: 100%;
    height: auto;
    display: block;
}

/* Animations des étapes — pop in séquencé */
.vc-schema-step {
    opacity: 0;
    transform: translateY(20px);
    transform-origin: center;
    transition: opacity 600ms ease, transform 600ms cubic-bezier(0.16, 1, 0.3, 1);
}
.vc-schema-decision.is-visible .vc-schema-step-1 { opacity: 1; transform: translateY(0); transition-delay: 200ms; }
.vc-schema-decision.is-visible .vc-schema-step-2 { opacity: 1; transform: translateY(0); transition-delay: 600ms; }
.vc-schema-decision.is-visible .vc-schema-step-3 { opacity: 1; transform: translateY(0); transition-delay: 1000ms; }

/* Animations des flèches — dash drawing */
.vc-schema-arrow {
    stroke-dasharray: 600;
    stroke-dashoffset: 600;
    transition: stroke-dashoffset 900ms cubic-bezier(0.45, 0, 0.55, 1);
}
.vc-schema-decision.is-visible .vc-schema-arrow-1 { stroke-dashoffset: 0; transition-delay: 400ms; }
.vc-schema-decision.is-visible .vc-schema-arrow-2 { stroke-dashoffset: 0; transition-delay: 800ms; }
.vc-schema-decision.is-visible .vc-schema-arrow-3 { stroke-dashoffset: 0; transition-delay: 1200ms; }

/* Schéma La Cytologie */
.vc-schema-cytology {
    max-width: 920px;
    margin: 0 auto;
}
.vc-schema-cytology svg {
    width: 100%;
    height: auto;
    display: block;
}
.vc-schema-cyto-arrow {
    opacity: 0;
    transition: opacity 800ms ease;
}
.vc-schema-cytology.is-visible .vc-schema-cyto-arrow {
    opacity: 1;
}
.vc-schema-cyto-point {
    opacity: 0;
    transform: translateY(12px);
    transition: opacity 500ms ease, transform 500ms cubic-bezier(0.16, 1, 0.3, 1);
}
.vc-schema-cytology.is-visible .vc-schema-cyto-point-1 { opacity: 1; transform: translateY(0); transition-delay: 300ms; }
.vc-schema-cytology.is-visible .vc-schema-cyto-point-2 { opacity: 1; transform: translateY(0); transition-delay: 600ms; }
.vc-schema-cytology.is-visible .vc-schema-cyto-point-3 { opacity: 1; transform: translateY(0); transition-delay: 900ms; }
.vc-schema-cytology.is-visible .vc-schema-cyto-point-4 { opacity: 1; transform: translateY(0); transition-delay: 1200ms; }

@media (max-width: 720px) {
    /* Empêche le texte trop petit sur mobile en gardant le ratio */
    .vc-schema-decision,
    .vc-schema-cytology {
        overflow-x: auto;
    }
    .vc-schema-decision svg,
    .vc-schema-cytology svg {
        min-width: 640px;
    }
}

/* ============================================================
   68. Carte Leaflet + pin VETCYT custom
   ============================================================ */

.vc-contact-map {
    position: relative;
    height: 480px;
    width: 100%;
}
#vc-map {
    height: 100%;
    width: 100%;
    background: var(--vc-creme);
}
.vc-map-overlay {
    position: absolute;
    top: 24px;
    left: 24px;
    z-index: 401;
    background: var(--vc-blanc);
    padding: var(--vc-space-4) var(--vc-space-5);
    border-radius: var(--vc-radius-md);
    box-shadow: 0 8px 24px -6px rgba(26, 43, 74, 0.18);
    max-width: 260px;
}
.vc-map-overlay strong {
    display: block;
    font-family: var(--vc-font-serif);
    font-size: 1.125rem;
    color: var(--vc-marine);
    margin-bottom: 4px;
}
.vc-map-overlay p {
    margin: 0 0 8px;
    font-size: 0.8125rem;
    line-height: 1.4;
    color: var(--vc-texte-secondaire);
}
.vc-map-overlay-link {
    color: var(--vc-framboise-dark);
    text-decoration: none;
    font-size: 0.8125rem;
    font-weight: 500;
}
.vc-map-overlay-link:hover {
    color: var(--vc-framboise);
}

/* Pin VETCYT custom */
.vc-map-pin {
    background: transparent !important;
    border: 0 !important;
    position: relative;
}
.vc-map-pin svg {
    position: relative;
    z-index: 2;
    animation: vc-pin-bounce 1.8s cubic-bezier(0.45, 0, 0.55, 1) both;
}
.vc-map-pin-glow {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 30px;
    height: 12px;
    background: radial-gradient(ellipse, rgba(212, 83, 126, 0.55) 0%, transparent 70%);
    border-radius: 50%;
    animation: vc-pin-pulse 2.4s ease-in-out infinite;
    z-index: 1;
}
@keyframes vc-pin-bounce {
    0%   { transform: translateY(-40px) scale(0.6); opacity: 0; }
    60%  { transform: translateY(6px)   scale(1.05); opacity: 1; }
    80%  { transform: translateY(-2px)  scale(0.98); }
    100% { transform: translateY(0)     scale(1); }
}
@keyframes vc-pin-pulse {
    0%, 100% { opacity: 0.7; transform: translateX(-50%) scale(1); }
    50%      { opacity: 1;   transform: translateX(-50%) scale(1.4); }
}

/* Popup Leaflet — accord palette */
.leaflet-popup-content-wrapper {
    border-radius: var(--vc-radius-md);
    box-shadow: 0 12px 32px -8px rgba(26, 43, 74, 0.25);
}
.leaflet-popup-content {
    margin: 14px 18px;
    font-family: var(--vc-font-sans);
    font-size: 0.875rem;
    line-height: 1.5;
    color: var(--vc-texte-secondaire);
}
.leaflet-control-zoom a {
    background: var(--vc-blanc) !important;
    color: var(--vc-marine) !important;
    border-color: var(--vc-bordure) !important;
}
.leaflet-control-zoom a:hover {
    background: var(--vc-framboise-light) !important;
    color: var(--vc-framboise-dark) !important;
}

@media (max-width: 720px) {
    .vc-contact-map { height: 380px; }
    .vc-map-overlay {
        top: 14px;
        left: 14px;
        right: 14px;
        max-width: none;
        padding: 12px 14px;
    }
}

/* ============================================================
   FAQ — réponses riches (multi-paragraphes + citations)
   Surcharge ciblée pour les FAQ longues (page Formations).
   ============================================================ */
.vc-faq-item.is-open .vc-faq-answer {
    max-height: 1600px;
}
/* Quand la réponse contient plusieurs blocs, le liseré ne s'applique
   qu'au premier bloc, pas entre chaque paragraphe. */
.vc-faq-answer > p,
.vc-faq-answer > blockquote {
    padding: 0 var(--vc-space-5);
    margin: 0;
    font-size: 0.9375rem;
    color: var(--vc-texte-secondaire);
    line-height: 1.6;
    border-top: none;
}
.vc-faq-answer > *:first-child {
    border-top: 1px dashed var(--vc-bordure);
    padding-top: var(--vc-space-4);
}
.vc-faq-answer > *:last-child {
    padding-bottom: var(--vc-space-4);
}
.vc-faq-answer > p + p {
    padding-top: var(--vc-space-3);
}
.vc-faq-answer > blockquote {
    margin: var(--vc-space-3) var(--vc-space-5) 0;
    padding: var(--vc-space-3) var(--vc-space-4);
    border-left: 3px solid var(--vc-rose, #D4537E);
    background: var(--vc-creme, #FBF6EE);
    border-radius: 6px;
    font-style: italic;
}

/* ============================================================
   LIENS DANS LE CONTENU RÉDACTIONNEL — style global du site
   Sur fond clair : rose (framboise) souligné.
   Sur fond foncé (marine) : blanc souligné.
   Ne s'applique qu'aux liens inline dans la prose, jamais aux
   boutons, menus, cards et autres éléments d'interface.
   ============================================================ */

/* --- Fond clair : rose souligné --- */
.vc-article-content a:not(.vc-btn):not(.vc-article-share-icons a),
.vc-article-lead a:not(.vc-btn),
.vc-article-author-bio-content a:not(.vc-btn),
.vc-faq-answer a:not(.vc-btn),
.vc-about-content a:not(.vc-btn),
.vc-explain a:not(.vc-btn),
.vc-content a:not(.vc-btn),
.vc-formation-body a:not(.vc-btn),
.vc-fiche-lead a:not(.vc-btn),
.vc-hero-lead a:not(.vc-btn),
.vc-page-hero-lead a:not(.vc-btn),
.vc-schema-lead a:not(.vc-btn),
.vc-cytology-sat-text a:not(.vc-btn),
.vc-prose a:not(.vc-btn) {
    color: var(--vc-framboise-dark) !important;
    text-decoration: underline !important;
    text-underline-offset: 2px;
    transition: color 150ms ease;
}
.vc-article-content a:not(.vc-btn):hover,
.vc-article-lead a:not(.vc-btn):hover,
.vc-article-author-bio-content a:not(.vc-btn):hover,
.vc-faq-answer a:not(.vc-btn):hover,
.vc-about-content a:not(.vc-btn):hover,
.vc-explain a:not(.vc-btn):hover,
.vc-content a:not(.vc-btn):hover,
.vc-formation-body a:not(.vc-btn):hover,
.vc-fiche-lead a:not(.vc-btn):hover,
.vc-hero-lead a:not(.vc-btn):hover,
.vc-page-hero-lead a:not(.vc-btn):hover,
.vc-schema-lead a:not(.vc-btn):hover,
.vc-cytology-sat-text a:not(.vc-btn):hover,
.vc-prose a:not(.vc-btn):hover {
    color: var(--vc-framboise) !important;
}

/* Exclusions : les liens UI dans la prose ne sont PAS des liens de texte.
   Boutons partage (fond foncé) → icônes blanches ; tout .vc-btn garde son
   style propre (texte blanc sur fond plein), où qu'il soit dans la prose. */
.vc-article-share-icons a,
.vc-article-share-icons a:hover,
.vc-about-content .vc-btn,
.vc-about-content a.vc-btn,
.vc-article-content .vc-btn,
.vc-article-content a.vc-btn,
.vc-faq-answer .vc-btn,
.vc-schema-lead .vc-btn,
.vc-prose .vc-btn,
a.vc-btn-primary,
a.vc-btn-primary:hover {
    color: var(--vc-blanc) !important;
    text-decoration: none !important;
}

/* --- Fond foncé (sections marine) : blanc souligné --- */
.vc-cta-final a:not(.vc-btn):not([class*="vc-btn-"]),
.vc-fiche-cta a:not(.vc-btn):not([class*="vc-btn-"]),
.vc-page-hero-dark a:not(.vc-btn):not([class*="vc-btn-"]),
.vc-merci a:not(.vc-btn):not([class*="vc-btn-"]):not(.vc-merci-link),
.vc-footer-tagline a,
.vc-footer-legal-text a,
.vc-link-light {
    color: var(--vc-blanc) !important;
    text-decoration: underline !important;
    text-underline-offset: 2px;
    transition: opacity 150ms ease;
}
.vc-cta-final a:not(.vc-btn):not([class*="vc-btn-"]):hover,
.vc-fiche-cta a:not(.vc-btn):not([class*="vc-btn-"]):hover,
.vc-page-hero-dark a:not(.vc-btn):not([class*="vc-btn-"]):hover,
.vc-merci a:not(.vc-btn):not([class*="vc-btn-"]):not(.vc-merci-link):hover,
.vc-footer-tagline a:hover,
.vc-footer-legal-text a:hover,
.vc-link-light:hover {
    color: var(--vc-blanc);
    opacity: 0.8;
}

/* Utilitaire fond clair forcé (rose souligné) si besoin ponctuel */
.vc-link-rose {
    color: var(--vc-framboise-dark);
    text-decoration: underline;
    text-underline-offset: 2px;
}
.vc-link-rose:hover {
    color: var(--vc-framboise);
}



/* ============================================================
   ARTICLE SANS SOMMAIRE — fallback robuste
   Quand le JS détecte qu'il n'y a pas de sommaire (moins de 2
   titres), il ajoute .vc-article-layout--no-toc : le layout
   passe en une seule colonne centrée, le contenu s'élargit.
   Évite la colonne étroite + zone vide à droite.
   ============================================================ */
.vc-article-layout--no-toc {
    grid-template-columns: 1fr !important;
    justify-items: center;
}
.vc-article-layout--no-toc .vc-article-content {
    max-width: 760px;
    width: 100%;
}

/* ============================================================
   Images Gutenberg dans le contenu (articles + cas cliniques)
   Centrage, légendes, alignements WP. Profite aux lames de cytologie.
   ============================================================ */
.vc-article-content figure,
.vc-article-content .wp-block-image {
    margin: var(--vc-space-6) 0;
    text-align: center;
}
.vc-article-content figure img,
.vc-article-content .wp-block-image img {
    display: block;
    margin: 0 auto;
}
.vc-article-content figcaption {
    margin-top: var(--vc-space-2);
    font-size: 0.875rem;
    font-style: italic;
    color: var(--vc-texte-muet);
    text-align: center;
}
.vc-article-content .alignwide img,
.vc-article-content .alignfull img {
    width: 100%;
}

/* ============================================================
   PAGE HUB — Guide des ressources (page-blog.php)
   ============================================================ */

/* Mini-nav d'ancres sticky */
.vc-hub-nav {
    position: sticky;
    top: 0;
    z-index: 40;
    background: var(--vc-blanc);
    border-bottom: 1px solid var(--vc-bordure);
}
.vc-hub-nav-list {
    display: flex;
    flex-wrap: wrap;
    gap: var(--vc-space-2) var(--vc-space-6);
    margin: 0;
    padding: var(--vc-space-3) 0;
    list-style: none;
    justify-content: center;
}
.vc-hub-nav-list a {
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--vc-texte-secondaire);
    text-decoration: none;
    padding: 4px 2px;
    border-bottom: 2px solid transparent;
    transition: color 150ms ease, border-color 150ms ease;
}
.vc-hub-nav-list a:hover {
    color: var(--vc-framboise);
    border-bottom-color: var(--vc-framboise);
}

/* Sections du hub */
.vc-hub-section {
    scroll-margin-top: 72px;
}
.vc-hub-section-alt {
    background: var(--vc-creme);
}
.vc-hub-head {
    text-align: center;
    max-width: 720px;
    margin: 0 auto var(--vc-space-8);
}
.vc-hub-head h2 {
    margin: var(--vc-space-2) 0 var(--vc-space-3);
}

/* Boutons d'action centrés sous une section */
.vc-hub-actions {
    display: flex;
    flex-wrap: wrap;
    gap: var(--vc-space-3);
    justify-content: center;
    margin-top: var(--vc-space-8);
}

/* Bouton outline (fond clair) */
.vc-btn-outline {
    background: transparent;
    border: 1.5px solid var(--vc-marine);
    color: var(--vc-marine);
}
.vc-btn-outline:hover {
    background: var(--vc-marine);
    color: var(--vc-blanc);
}

/* Bloc "à venir / bientôt" */
.vc-hub-soon {
    max-width: 640px;
    margin: 0 auto;
    text-align: center;
    background: var(--vc-blanc);
    border: 1px dashed var(--vc-bordure);
    border-radius: var(--vc-radius-lg);
    padding: var(--vc-space-8);
}
.vc-hub-soon-badge {
    display: inline-block;
    background: var(--vc-framboise-light);
    color: var(--vc-framboise-dark);
    font-size: 0.8125rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    padding: 4px 14px;
    border-radius: 999px;
    margin-bottom: var(--vc-space-3);
}
.vc-hub-soon p {
    margin: 0;
    color: var(--vc-texte-secondaire);
}

/* Grille 2 colonnes (liens utiles) */
.vc-grid-2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--vc-space-5);
}
.vc-hub-links-grid .vc-internal-card h3 {
    margin: 0 0 var(--vc-space-2);
}

/* Délais de stagger pour les .vc-reveal */
.vc-delay-1 { transition-delay: 90ms; }
.vc-delay-2 { transition-delay: 180ms; }
.vc-delay-3 { transition-delay: 270ms; }

/* Responsive hub */
@media (max-width: 880px) {
    .vc-grid-2 { grid-template-columns: 1fr; }
}

/* ============================================================
   SECTION VIDÉO — Avis vétérinaires (template-parts/video-interviews.php)
   Façade YouTube légère : miniature + bouton play, iframe au clic.
   ============================================================ */
.vc-video-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--vc-space-6);
    max-width: 920px;
    margin: 0 auto;
}
/* Une seule vidéo (ex : page formations EN) → carte centrée, pas collée à gauche */
.vc-video-grid-single {
    grid-template-columns: minmax(0, 460px);
    justify-content: center;
}
.vc-video-card {
    display: flex;
    flex-direction: column;
    gap: var(--vc-space-3);
}
.vc-video-facade,
.vc-video-iframe {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9;
    border: none;
    border-radius: var(--vc-radius-lg);
    overflow: hidden;
    cursor: pointer;
    padding: 0;
    background-size: cover;
    background-position: center;
    box-shadow: 0 12px 32px -10px rgba(26, 43, 74, 0.28);
    transition: transform var(--vc-transition), box-shadow var(--vc-transition);
}
.vc-video-facade::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(26,43,74,0.05), rgba(26,43,74,0.35));
    transition: background var(--vc-transition);
}
.vc-video-facade:hover {
    transform: translateY(-3px);
    box-shadow: 0 18px 42px -12px rgba(26, 43, 74, 0.38);
}
.vc-video-facade:hover::after {
    background: linear-gradient(180deg, rgba(26,43,74,0.0), rgba(26,43,74,0.25));
}
.vc-video-play {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
    transition: transform var(--vc-transition);
}
.vc-video-facade:hover .vc-video-play {
    transform: translate(-50%, -50%) scale(1.08);
}
.vc-video-play-bg {
    transition: fill var(--vc-transition);
}
.vc-video-facade:hover .vc-video-play-bg {
    fill: var(--vc-framboise-dark);
}
.vc-video-card-label {
    margin: 0;
    text-align: center;
    font-size: 0.9375rem;
    font-weight: 600;
    color: var(--vc-marine);
}
@media (max-width: 760px) {
    .vc-video-grid { grid-template-columns: 1fr; }
}

/* ============================================================
   PAGE LE LAB (page-le-lab.php) — service d'accompagnement cytologique
   ============================================================ */
.vc-lab-dispo {
    display: inline-block;
    margin-top: var(--vc-space-4);
    padding: 6px 16px;
    background: rgba(255,255,255,0.12);
    border: 1px solid rgba(255,255,255,0.25);
    border-radius: 999px;
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--vc-blanc);
}

/* Cartes d'offres (aperçu) */
.vc-lab-offers { align-items: stretch; }
.vc-lab-card {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: var(--vc-space-3);
    padding: var(--vc-space-6);
    background: var(--vc-blanc);
    border: var(--vc-border);
    border-radius: var(--vc-radius-lg);
}
.vc-lab-card-featured {
    border-color: var(--vc-framboise);
    box-shadow: 0 12px 32px -12px rgba(212,83,126,0.35);
}
.vc-lab-card-tag {
    margin: 0;
    font-size: 0.8125rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: var(--vc-framboise-dark);
}
.vc-lab-card-price {
    margin: 0;
    font-family: 'Fraunces', serif;
    font-size: 2.25rem;
    font-weight: 600;
    color: var(--vc-marine);
}
.vc-lab-card-desc {
    margin: 0;
    color: var(--vc-texte-secondaire);
    flex-grow: 1;
}
.vc-lab-card .vc-btn { margin-top: var(--vc-space-2); }

/* Sections de détail des offres */
/* Alignées sur la largeur des autres sections du Lab (ex. « Transparence »),
   c.-à-d. la pleine largeur du .vc-container, et non un encart étroit. */
.vc-lab-detail { max-width: none; margin: 0; }
.vc-lab-detail-head {
    display: flex;
    align-items: flex-start;
    gap: var(--vc-space-4);
    margin-bottom: var(--vc-space-5);
}
.vc-lab-detail-num {
    font-family: 'Fraunces', serif;
    font-size: 2rem;
    font-weight: 600;
    color: var(--vc-framboise);
    line-height: 1;
    flex-shrink: 0;
}
.vc-lab-detail-head h2 { margin: 0 0 var(--vc-space-2); }
.vc-lab-price-inline {
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    color: var(--vc-framboise-dark);
    background: var(--vc-framboise-light);
    padding: 3px 12px;
    border-radius: 999px;
    vertical-align: middle;
    margin-left: var(--vc-space-2);
}
.vc-lab-detail-lead {
    margin: 0;
    font-size: 1.0625rem;
    color: var(--vc-texte-secondaire);
}
.vc-lab-detail-body h3 {
    margin: var(--vc-space-5) 0 var(--vc-space-2);
    font-size: 1.0625rem;
}
.vc-lab-detail-body ul { margin: 0 0 var(--vc-space-4); padding-left: 1.25rem; }
.vc-lab-detail-body li { margin-bottom: 6px; }
.vc-lab-cols { gap: var(--vc-space-6); }
.vc-lab-note {
    background: var(--vc-creme);
    border-left: 3px solid var(--vc-framboise);
    padding: var(--vc-space-4);
    border-radius: 0 var(--vc-radius-md) var(--vc-radius-md) 0;
    color: var(--vc-texte-secondaire);
}
.vc-lab-ideal { color: var(--vc-marine); }

/* Étapes du process */
.vc-lab-steps { gap: var(--vc-space-5); }

/* Mise en garde */
.vc-lab-warning {
    max-width: 880px;
    margin: var(--vc-space-8) auto 0;
    padding: var(--vc-space-5);
    background: #FBF6EE;
    border: 1px dashed var(--vc-bordure);
    border-radius: var(--vc-radius-md);
    font-size: 0.9375rem;
    color: var(--vc-texte-secondaire);
}

/* Tableau de choix */
.vc-lab-table-wrap { max-width: 760px; margin: 0 auto; overflow-x: auto; }
.vc-lab-table {
    width: 100%;
    border-collapse: collapse;
    background: var(--vc-blanc);
    border-radius: var(--vc-radius-lg);
    overflow: hidden;
    box-shadow: 0 4px 16px -8px rgba(26,43,74,0.15);
}
.vc-lab-table th {
    background: var(--vc-marine);
    color: var(--vc-blanc);
    text-align: left;
    padding: var(--vc-space-3) var(--vc-space-4);
    font-size: 0.9375rem;
}
.vc-lab-table td {
    padding: var(--vc-space-3) var(--vc-space-4);
    border-top: 1px solid var(--vc-bordure);
    color: var(--vc-texte-secondaire);
}
.vc-lab-table td:last-child { font-weight: 600; color: var(--vc-marine); white-space: nowrap; }

@media (max-width: 760px) {
    .vc-lab-cols { grid-template-columns: 1fr; }
    .vc-lab-steps { grid-template-columns: 1fr; }
}

/* ============================================================
   ATLAS CYTOLOGIQUE (page-atlas.php) — galerie filtrable + lightbox
   ============================================================ */
.vc-atlas-filters {
    display: flex;
    flex-wrap: wrap;
    gap: var(--vc-space-2);
    justify-content: center;
    margin-bottom: var(--vc-space-8);
}
.vc-atlas-filter {
    padding: 8px 18px;
    border: 1.5px solid var(--vc-bordure);
    background: var(--vc-blanc);
    border-radius: 999px;
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--vc-texte-secondaire);
    cursor: pointer;
    transition: all var(--vc-transition);
}
.vc-atlas-filter:hover { border-color: var(--vc-framboise); color: var(--vc-framboise-dark); }
.vc-atlas-filter.is-active {
    background: var(--vc-marine);
    border-color: var(--vc-marine);
    color: var(--vc-blanc);
}
.vc-atlas-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--vc-space-5);
}
.vc-atlas-item { margin: 0; }
.vc-atlas-thumb {
    display: block;
    width: 100%;
    aspect-ratio: 1 / 1;
    padding: 0;
    border: none;
    border-radius: var(--vc-radius-md);
    overflow: hidden;
    cursor: pointer;
    background: var(--vc-creme);
    box-shadow: 0 4px 14px -6px rgba(26,43,74,0.2);
    transition: transform var(--vc-transition), box-shadow var(--vc-transition);
}
.vc-atlas-thumb:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 28px -8px rgba(26,43,74,0.32);
}
.vc-atlas-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.vc-atlas-item figcaption {
    margin-top: var(--vc-space-2);
    font-size: 0.8125rem;
    line-height: 1.35;
    color: var(--vc-marine);
    text-align: center;
}
.vc-atlas-empty { text-align: center; color: var(--vc-texte-secondaire); padding: var(--vc-space-8) 0; }

/* Lightbox */
.vc-lightbox {
    position: fixed;
    inset: 0;
    z-index: 9999;
    background: rgba(10,20,40,0.92);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: var(--vc-space-6);
}
.vc-lightbox[hidden] { display: none; }
.vc-lightbox-figure {
    margin: 0;
    max-width: 92vw;
    max-height: 90vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--vc-space-3);
}
.vc-lightbox-figure img {
    max-width: 100%;
    max-height: 80vh;
    border-radius: var(--vc-radius-md);
    box-shadow: 0 20px 60px -12px rgba(0,0,0,0.6);
}
.vc-lightbox-figure figcaption {
    color: var(--vc-blanc);
    font-size: 1rem;
    text-align: center;
}
.vc-lightbox-close {
    position: absolute;
    top: 18px;
    right: 24px;
    width: 44px;
    height: 44px;
    border: none;
    background: rgba(255,255,255,0.12);
    color: var(--vc-blanc);
    font-size: 28px;
    line-height: 1;
    border-radius: 50%;
    cursor: pointer;
    transition: background var(--vc-transition);
}
.vc-lightbox-close:hover { background: rgba(255,255,255,0.25); }

@media (max-width: 900px) { .vc-atlas-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 600px) { .vc-atlas-grid { grid-template-columns: repeat(2, 1fr); } }

/* ============================================================
   LE LAB — compléments design (intro, offres enrichies, limites,
   bénéfices co-pilote, tableau matrice)
   ============================================================ */

/* Bloc intro / second regard */
.vc-lab-intro { max-width: 820px; margin: 0 auto; text-align: center; }
.vc-lab-intro-text h2 { margin-bottom: var(--vc-space-4); }
.vc-lab-intro-text p { color: var(--vc-texte-secondaire); }
.vc-lab-highlight {
    margin-top: var(--vc-space-5);
    padding: var(--vc-space-4) var(--vc-space-5);
    background: var(--vc-marine);
    color: var(--vc-blanc) !important;
    border-radius: var(--vc-radius-md);
    font-weight: 600;
    display: inline-block;
}

/* Pastilles colorées des offres */
.vc-lab-dot {
    width: 40px; height: 40px;
    border-radius: 50%;
    display: block;
}
.vc-lab-dot-consultatif { background: radial-gradient(circle at 35% 30%, #F5C57A, #E0962E); }
.vc-lab-dot-classique   { background: radial-gradient(circle at 35% 30%, #5FC9CE, #2A8FA0); }
.vc-lab-dot-premium     { background: radial-gradient(circle at 35% 30%, #B06BB0, #6E2A6E); }
.vc-lab-card-sub {
    margin: 0;
    font-weight: 700;
    color: var(--vc-marine);
}

/* Limites 2 colonnes */
.vc-lab-limits { gap: var(--vc-space-6); }
.vc-lab-limit {
    background: var(--vc-blanc);
    border-radius: var(--vc-radius-lg);
    padding: var(--vc-space-6);
    border-top: 4px solid var(--vc-bordure);
}
.vc-lab-limit-consultatif { border-top-color: #E0962E; }
.vc-lab-limit-classique   { border-top-color: #2A8FA0; }
.vc-lab-limit-head {
    margin: 0 0 var(--vc-space-3);
    font-size: 0.8125rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: var(--vc-texte-secondaire);
}
.vc-lab-limit-main { margin: 0 0 var(--vc-space-3); font-size: 1.125rem; color: var(--vc-marine); }
.vc-lab-limit-why { margin: 0; color: var(--vc-texte-secondaire); font-size: 0.9375rem; }

/* Bénéfices co-pilote */
.vc-lab-benefits { gap: var(--vc-space-5); max-width: 880px; margin: 0 auto; }
.vc-lab-benefit {
    background: var(--vc-blanc);
    border: var(--vc-border);
    border-radius: var(--vc-radius-lg);
    padding: var(--vc-space-5) var(--vc-space-6);
}
.vc-lab-benefit h3 { margin: 0 0 var(--vc-space-2); color: var(--vc-framboise-dark); }
.vc-lab-benefit p { margin: 0; color: var(--vc-texte-secondaire); }

/* Tableau matrice (4 colonnes avec coches) */
.vc-lab-table-matrix th:not(:first-child),
.vc-lab-table-matrix td:not(:first-child) { text-align: center; white-space: nowrap; }
.vc-lab-table-matrix td.yes { color: var(--vc-framboise); font-weight: 700; font-size: 1.1rem; }
.vc-lab-table-matrix td:not(:first-child):not(.yes) { color: var(--vc-bordure); }

@media (max-width: 760px) {
    .vc-lab-limits { grid-template-columns: 1fr; }
    .vc-lab-benefits { grid-template-columns: 1fr; }
}

/* ============================================================
   LE LAB — visuels animés (WhatsApp, certificat, visio, frise, icônes)
   ============================================================ */

/* Layout 2 colonnes pour les détails d'offre */
.vc-lab-split {
    display: grid;
    grid-template-columns: 320px 1fr;
    gap: var(--vc-space-8);
    align-items: center;
    margin-top: var(--vc-space-6);
}
.vc-lab-split-reverse { grid-template-columns: 1fr 320px; }

/* ---- Mockup téléphone + conversation ---- */
.vc-lab-phone-wrap { display: flex; justify-content: center; }
.vc-phone {
    position: relative;
    width: 300px;
    background: #0A1428;
    border-radius: 34px;
    padding: 12px;
    box-shadow: 0 24px 60px -16px rgba(26,43,74,0.5);
}
.vc-phone-notch {
    position: absolute; top: 14px; left: 50%; transform: translateX(-50%);
    width: 90px; height: 18px; background: #0A1428; border-radius: 0 0 12px 12px; z-index: 3;
}
.vc-phone-screen {
    background: #ECECEC; border-radius: 24px; overflow: hidden; height: 540px; display: flex; flex-direction: column;
}
.vc-chat-header {
    background: var(--vc-blanc); padding: 26px 14px 10px; display: flex; align-items: center; gap: 8px;
    border-bottom: 1px solid #e2e2e2;
}
.vc-chat-avatar { width: 26px; height: 26px; border-radius: 50%; background: linear-gradient(135deg,#D4537E,#993556); }
.vc-chat-name { font-size: 0.8125rem; font-weight: 600; color: var(--vc-marine); }
.vc-chat-body { flex: 1; padding: 12px; display: flex; flex-direction: column; gap: 8px; overflow: hidden; }
.vc-chat-msg { max-width: 82%; opacity: 0; transform: translateY(8px); }
.vc-chat-msg img { width: 100%; border-radius: 12px; display: block; }
.vc-chat-msg-out { align-self: flex-end; }
.vc-chat-msg-in { align-self: flex-start; }
.vc-chat-bubble {
    background: #D4537E; color: #fff; padding: 8px 12px; border-radius: 14px 14px 4px 14px;
    font-size: 0.8125rem; line-height: 1.3;
}
.vc-chat-time { font-size: 0.6875rem; color: #888; display: block; text-align: right; margin-top: 2px; }
.vc-chat-label {
    align-self: flex-start; background: #fff; padding: 6px 10px; border-radius: 10px;
    font-size: 0.75rem; color: var(--vc-marine); font-weight: 600; opacity: 0; transform: translateY(8px);
}
.vc-chat-annotated { position: relative; }
.vc-chat-annotated img { width: 100%; border-radius: 12px; display: block; }
.vc-chat-tag {
    position: absolute; font-size: 0.625rem; font-weight: 700; color: #fff;
    padding: 3px 8px; border-radius: 999px; white-space: nowrap; box-shadow: 0 2px 6px rgba(0,0,0,0.25);
}
.vc-chat-tag-noyau   { top: 14%; right: -6px; background: #C8861E; }
.vc-chat-tag-cyto    { top: 46%; right: -6px; background: #2A8FA0; }
.vc-chat-tag-suspect { bottom: 10%; right: -6px; background: #993556; }
.vc-chat-typing {
    align-self: flex-start; background: #fff; padding: 8px 12px; border-radius: 14px;
    display: flex; gap: 4px; opacity: 0;
}
.vc-chat-typing span { width: 6px; height: 6px; border-radius: 50%; background: #bbb; animation: vc-typing 1.2s infinite; }
.vc-chat-typing span:nth-child(2) { animation-delay: 0.2s; }
.vc-chat-typing span:nth-child(3) { animation-delay: 0.4s; }
@keyframes vc-typing { 0%,60%,100% { transform: translateY(0); opacity: .5; } 30% { transform: translateY(-4px); opacity: 1; } }

/* Déclenchement des messages quand la section .vc-reveal devient visible */
.vc-reveal.is-visible .vc-chat-anim-1 { animation: vc-msg-in .5s .2s forwards; }
.vc-reveal.is-visible .vc-chat-anim-2 { animation: vc-msg-in .5s .9s forwards; }
.vc-reveal.is-visible .vc-chat-anim-3 { animation: vc-msg-in .5s 1.6s forwards; }
.vc-reveal.is-visible .vc-chat-anim-4 { animation: vc-msg-in .5s 2.2s forwards; }
.vc-reveal.is-visible .vc-chat-anim-5 { animation: vc-fade-in .4s 3s forwards; }
@keyframes vc-msg-in { to { opacity: 1; transform: translateY(0); } }
@keyframes vc-fade-in { to { opacity: 1; } }

/* ---- Certificat animé ---- */
.vc-lab-cert-wrap { display: flex; justify-content: center; perspective: 1000px; }
.vc-cert {
    position: relative; width: 280px; background: #fff; border-radius: 8px;
    padding: 22px; box-shadow: 0 20px 50px -14px rgba(26,43,74,0.4);
    transform: rotate(-3deg); transition: transform .4s ease;
}
.vc-reveal.is-visible .vc-cert { animation: vc-cert-in .8s ease forwards; }
@keyframes vc-cert-in { from { opacity: 0; transform: rotate(-8deg) translateY(20px); } to { opacity: 1; transform: rotate(-3deg) translateY(0); } }
.vc-cert-head { display: flex; align-items: center; gap: 10px; margin-bottom: 14px; }
.vc-cert-badge {
    width: 34px; height: 34px; border-radius: 6px; background: var(--vc-marine); color: #fff;
    font-size: 0.75rem; font-weight: 700; display: flex; align-items: center; justify-content: center;
}
.vc-cert-head-lines { flex: 1; display: flex; flex-direction: column; gap: 4px; }
.vc-cert-head-lines span { height: 5px; background: #e2e2e2; border-radius: 3px; }
.vc-cert-head-lines span:first-child { width: 70%; }
.vc-cert-head-lines span:last-child { width: 45%; }
.vc-cert-title { font-size: 0.8125rem; font-weight: 700; color: var(--vc-marine); margin: 0 0 10px; }
.vc-cert-rows { display: flex; flex-direction: column; gap: 5px; margin-bottom: 10px; }
.vc-cert-rows span { height: 5px; background: #ededed; border-radius: 3px; }
.vc-cert-rows span:nth-child(2) { width: 92%; }
.vc-cert-rows span:nth-child(4) { width: 80%; }
.vc-cert-rows span:nth-child(6) { width: 88%; }
.vc-cert-table { display: grid; grid-template-columns: repeat(3,1fr); gap: 4px; margin-bottom: 10px; }
.vc-cert-table span { height: 12px; background: #f1f1f1; border: 1px solid #e6e6e6; border-radius: 2px; }
.vc-cert-loupe {
    position: absolute; width: 56px; height: 56px; border-radius: 50%;
    border: 3px solid #2A8FA0; background: rgba(42,143,160,0.08);
    box-shadow: 0 4px 14px rgba(42,143,160,0.3);
}
.vc-cert-loupe::after {
    content: ""; position: absolute; bottom: -10px; right: -6px; width: 4px; height: 18px;
    background: #2A8FA0; border-radius: 3px; transform: rotate(-45deg);
}
.vc-cert-loupe-1 { top: 30px; right: -18px; }
.vc-cert-loupe-2 { bottom: 40px; right: 10px; }
.vc-reveal.is-visible .vc-cert-loupe-1 { animation: vc-loupe-move-1 4s ease-in-out 0.8s infinite; }
.vc-reveal.is-visible .vc-cert-loupe-2 { animation: vc-loupe-move-2 4s ease-in-out 1.4s infinite; }
@keyframes vc-loupe-move-1 { 0%,100% { transform: translate(0,0) scale(1); } 50% { transform: translate(-12px,16px) scale(1.1); } }
@keyframes vc-loupe-move-2 { 0%,100% { transform: translate(0,0) scale(1); } 50% { transform: translate(-20px,-12px) scale(1.08); } }

/* ---- Visioconférence animée ---- */
.vc-lab-visio-wrap { display: flex; justify-content: center; }
.vc-visio {
    position: relative; width: 100%; max-width: 360px; background: #14223C; border-radius: var(--vc-radius-lg);
    padding: 10px; box-shadow: 0 20px 50px -14px rgba(26,43,74,0.45);
}
.vc-visio-main { position: relative; border-radius: 10px; overflow: hidden; aspect-ratio: 4/3; }
.vc-visio-main img { width: 100%; height: 100%; object-fit: cover; display: block; }
.vc-visio-pointer {
    position: absolute; width: 18px; height: 18px; border-radius: 50%;
    border: 2px solid #fff; background: rgba(212,83,126,0.5); box-shadow: 0 0 0 4px rgba(212,83,126,0.25);
}
.vc-reveal.is-visible .vc-visio-pointer { animation: vc-pointer 5s ease-in-out 0.5s infinite; }
@keyframes vc-pointer {
    0%   { top: 30%; left: 25%; } 25% { top: 55%; left: 60%; }
    50%  { top: 40%; left: 45%; } 75% { top: 65%; left: 30%; } 100% { top: 30%; left: 25%; }
}
.vc-visio-scanlabel {
    position: absolute; bottom: 8px; left: 8px; background: rgba(10,20,40,0.78); color: #fff;
    font-size: 0.6875rem; font-weight: 600; padding: 4px 10px; border-radius: 999px;
}
.vc-visio-side { position: absolute; top: 16px; right: 16px; display: flex; flex-direction: column; gap: 8px; }
.vc-visio-cam {
    width: 96px; height: 58px; border-radius: 8px; background: linear-gradient(135deg,#26344f,#1a2b4a);
    color: #fff; font-size: 0.625rem; display: flex; align-items: flex-end; gap: 4px; padding: 5px 7px;
    border: 1.5px solid rgba(255,255,255,0.15);
}
.vc-visio-cam-1 { background: linear-gradient(135deg,#3a2f4f,#2a1f3f); }
.vc-visio-dot { width: 6px; height: 6px; border-radius: 50%; background: #4ade80; }
.vc-visio-bar { display: flex; justify-content: center; gap: 10px; padding: 10px 0 4px; }
.vc-visio-btn { width: 24px; height: 24px; border-radius: 50%; background: rgba(255,255,255,0.18); }
.vc-visio-btn-end { background: #e5484d; }

/* ---- Frise à chevrons (4 étapes) ---- */
.vc-lab-frise { display: grid; grid-template-columns: repeat(4,1fr); gap: 6px; margin-top: var(--vc-space-6); }
.vc-frise-step { text-align: center; }
.vc-frise-chevron {
    position: relative; height: 120px; display: flex; align-items: center; justify-content: center;
    background: linear-gradient(135deg,#FCEBC8,#F7D08A);
    clip-path: polygon(0 0, 86% 0, 100% 50%, 86% 100%, 0 100%, 14% 50%);
    margin-bottom: var(--vc-space-4);
}
.vc-frise-step:first-child .vc-frise-chevron { clip-path: polygon(0 0, 86% 0, 100% 50%, 86% 100%, 0 100%); }
.vc-frise-chevron-last { background: linear-gradient(135deg,#F7C566,#EBA52E) !important; }
.vc-frise-step:nth-child(2) .vc-frise-chevron { background: linear-gradient(135deg,#FAE3B0,#F4C572); }
.vc-frise-step:nth-child(3) .vc-frise-chevron { background: linear-gradient(135deg,#F8D89A,#F0B956); }
.vc-frise-icon { color: #8a5a14; }
.vc-frise-title { font-weight: 700; color: var(--vc-marine); margin: 0 0 var(--vc-space-2); font-size: 1rem; }
.vc-frise-desc { font-size: 0.875rem; color: var(--vc-texte-secondaire); margin: 0; padding: 0 var(--vc-space-2); }
/* Bouton « Télécharger la feuille de demande » sous l'étape 1 de la frise */
.vc-btn-sm { font-size: 0.8125rem; padding: var(--vc-space-2) var(--vc-space-3); }
.vc-frise-dl { margin-top: var(--vc-space-3); }

/* ---- Icônes bénéfices co-pilote ---- */
.vc-lab-benefit { display: flex; align-items: flex-start; gap: var(--vc-space-4); }
.vc-lab-benefit-icon {
    flex-shrink: 0; width: 48px; height: 48px; border-radius: 12px;
    display: flex; align-items: center; justify-content: center;
    background: var(--vc-framboise-light); color: var(--vc-framboise-dark);
}

@media (max-width: 820px) {
    .vc-lab-split, .vc-lab-split-reverse { grid-template-columns: 1fr; }
    .vc-lab-frise { grid-template-columns: 1fr 1fr; gap: var(--vc-space-4); }
    .vc-frise-chevron { clip-path: none !important; border-radius: var(--vc-radius-md); }
}
@media (max-width: 480px) {
    .vc-lab-frise { grid-template-columns: 1fr; }
}

/* Le Lab — titre de la frise (dans l'avis consultatif) + pill process */
.vc-lab-process-head {
    text-align: center;
    margin: var(--vc-space-8) 0 var(--vc-space-5);
}
.vc-lab-process-head h3 {
    font-family: 'Fraunces', serif;
    font-size: 1.375rem;
    color: var(--vc-marine);
    margin: 0;
}
.vc-lab-process-pill {
    background: var(--vc-creme);
    border-left: 3px solid var(--vc-framboise);
    border-radius: 0 var(--vc-radius-md) var(--vc-radius-md) 0;
    padding: var(--vc-space-3) var(--vc-space-4);
    color: var(--vc-marine);
    margin: var(--vc-space-4) 0;
}

/* Le Lab — badge "France métropolitaine" sur la Classique */
.vc-lab-badge-fr {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--vc-texte-secondaire);
    background: var(--vc-creme);
    border: 1px solid var(--vc-bordure);
    border-radius: 999px;
    padding: 4px 12px;
    margin-bottom: var(--vc-space-2);
}

/* Le Lab — vidéo tuto "réussir ses photos" (dans l'avis consultatif) */
.vc-lab-video-intro {
    text-align: center;
    font-weight: 600;
    color: var(--vc-marine);
    margin: var(--vc-space-6) 0 var(--vc-space-4);
}
.vc-lab-video {
    max-width: 640px;
    margin: 0 auto;
}
.vc-lab-video-facade,
.vc-lab-video .vc-video-iframe {
    width: 100%;
    aspect-ratio: 16 / 9;
    border: none;
    border-radius: var(--vc-radius-lg);
    overflow: hidden;
    cursor: pointer;
    background-size: cover;
    background-position: center;
    position: relative;
    box-shadow: 0 12px 32px -10px rgba(26,43,74,0.28);
    transition: transform var(--vc-transition), box-shadow var(--vc-transition);
}
.vc-lab-video-facade:hover { transform: translateY(-3px); box-shadow: 0 18px 42px -12px rgba(26,43,74,0.38); }

/* ============================================================
   MÉTHODE — section "La méthode qui rend libre" (plaisir, autonomie)
   ============================================================ */
.vc-methode-libre { background: var(--vc-creme); }
.vc-libre-manifeste {
    max-width: 760px;
    margin: 0 auto var(--vc-space-12);
    text-align: center;
}
.vc-libre-quote {
    font-family: 'Fraunces', serif;
    font-size: clamp(1.75rem, 4vw, 2.75rem);
    font-weight: 600;
    line-height: 1.15;
    color: var(--vc-marine);
    margin: 0 0 var(--vc-space-5);
}
.vc-libre-credo {
    font-size: 1.0625rem;
    line-height: 1.7;
    color: var(--vc-texte-secondaire);
    margin: 0;
}
.vc-libre-head {
    max-width: 720px;
    margin: 0 auto var(--vc-space-8);
    text-align: center;
}
.vc-libre-cards { align-items: stretch; }
.vc-libre-card {
    background: var(--vc-blanc);
    border: var(--vc-border);
    border-radius: var(--vc-radius-lg);
    padding: var(--vc-space-6);
    display: flex;
    flex-direction: column;
    gap: var(--vc-space-3);
}
.vc-libre-card-icon {
    width: 56px; height: 56px;
    border-radius: 14px;
    display: flex; align-items: center; justify-content: center;
    background: var(--vc-marine);
    color: var(--vc-blanc);
}
.vc-libre-card h3 { margin: 0; color: var(--vc-marine); font-size: 1.25rem; }
.vc-libre-card p { margin: 0; color: var(--vc-texte-secondaire); }
.vc-libre-card-gold {
    border-color: #EBA52E;
    box-shadow: 0 16px 40px -16px rgba(235,165,46,0.45);
}
.vc-libre-card-gold .vc-libre-card-icon {
    background: linear-gradient(135deg, #F5C57A, #E0962E);
    color: #5a3d0a;
}
.vc-libre-closing {
    text-align: center;
    font-family: 'Fraunces', serif;
    font-size: clamp(1.25rem, 2.5vw, 1.6rem);
    font-weight: 600;
    color: var(--vc-marine);
    margin: var(--vc-space-10) auto 0;
    max-width: 680px;
}

/* ============================================================
   À PROPOS — Nos valeurs (design enrichi, images cliquables)
   ============================================================ */
.vc-about-valeurs { background: var(--vc-creme); }
.vc-valeur {
    max-width: 920px;
    margin: 0 auto var(--vc-space-6);
    background: var(--vc-blanc);
    border: var(--vc-border);
    border-radius: var(--vc-radius-lg);
    overflow: hidden;
    box-shadow: 0 8px 28px -16px rgba(26,43,74,0.25);
}
.vc-valeur:last-of-type { margin-bottom: 0; }
.vc-valeur-banner {
    display: flex;
    align-items: center;
    gap: var(--vc-space-4);
    padding: var(--vc-space-5) var(--vc-space-6);
    border-left: 5px solid var(--vc-framboise);
}
.vc-valeur-excellence  .vc-valeur-banner { border-left-color: #2A8FA0; }
.vc-valeur-pragmatisme .vc-valeur-banner { border-left-color: #E0962E; }
.vc-valeur-partage     .vc-valeur-banner { border-left-color: var(--vc-framboise); }
.vc-valeur-icon {
    width: 56px; height: 56px; flex-shrink: 0;
    border-radius: 14px;
    display: flex; align-items: center; justify-content: center;
    color: var(--vc-blanc);
}
.vc-valeur-excellence  .vc-valeur-icon { background: linear-gradient(135deg,#5FC9CE,#2A8FA0); }
.vc-valeur-pragmatisme .vc-valeur-icon { background: linear-gradient(135deg,#F5C57A,#E0962E); }
.vc-valeur-partage     .vc-valeur-icon { background: linear-gradient(135deg,#D4537E,#993556); }
.vc-valeur-num {
    display: block;
    font-family: 'Fraunces', serif;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--vc-texte-secondaire);
    letter-spacing: 0.08em;
}
.vc-valeur-banner h3 { margin: 0; font-size: 1.5rem; color: var(--vc-marine); }
.vc-valeur-body {
    display: grid;
    grid-template-columns: 1fr 280px;
    gap: var(--vc-space-6);
    padding: 0 var(--vc-space-6) var(--vc-space-6);
    align-items: start;
}
.vc-valeur-pragmatisme .vc-valeur-body { grid-template-columns: 1fr; }
.vc-valeur-lead {
    font-size: 1.0625rem;
    font-weight: 600;
    color: var(--vc-marine);
    margin: var(--vc-space-4) 0 var(--vc-space-3);
}
.vc-valeur-list { margin: 0; padding-left: 1.25rem; }
.vc-valeur-list li { margin-bottom: var(--vc-space-2); color: var(--vc-texte-secondaire); }
.vc-valeur-gallery {
    display: flex;
    flex-direction: column;
    gap: var(--vc-space-3);
    padding-top: var(--vc-space-4);
}
.vc-valeur-thumb {
    padding: 0; border: none; cursor: pointer;
    border-radius: var(--vc-radius-md);
    overflow: hidden;
    background: var(--vc-creme);
    box-shadow: 0 4px 14px -6px rgba(26,43,74,0.25);
    transition: transform var(--vc-transition), box-shadow var(--vc-transition);
}
.vc-valeur-thumb img {
    width: 100%;
    aspect-ratio: 16 / 10;
    object-fit: contain;
    background: var(--vc-blanc);
    display: block;
}
.vc-valeur-thumb:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 28px -8px rgba(26,43,74,0.35);
}
@media (max-width: 760px) {
    .vc-valeur-body { grid-template-columns: 1fr; }
    .vc-valeur-gallery { flex-direction: row; flex-wrap: wrap; }
    .vc-valeur-gallery .vc-valeur-thumb { flex: 1 1 30%; }
}

/* Le Lab — badge "disponible à partir du 1er octobre" */
.vc-lab-badge-soon {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 600;
    color: #8a5a14;
    background: #FCEBC8;
    border: 1px solid #EBA52E;
    border-radius: 999px;
    padding: 4px 12px;
    margin-bottom: var(--vc-space-2);
}

/* ============================================================
   EYEBROW — petite "cellule" de cytologie avant le texte
   Cellule = cercle (cytoplasme) + noyau décentré, en dégradé.
   S'adapte au fond clair (framboise) et au fond foncé (rose pâle).
   ============================================================ */
.vc-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}
.vc-eyebrow::before {
    content: "";
    flex-shrink: 0;
    width: 14px;
    height: 14px;
    border-radius: 50%;
    /* cytoplasme clair + noyau décentré plus dense (radial-gradient) */
    background:
        radial-gradient(circle at 65% 60%, var(--vc-framboise) 0 32%, transparent 33%),
        radial-gradient(circle at 50% 50%, var(--vc-framboise-light) 0 70%, transparent 71%);
    border: 1.5px solid var(--vc-framboise);
    box-shadow: 0 0 0 3px rgba(212, 83, 126, 0.10);
}

/* Sur fonds foncés : cellule en tons clairs/rosés pour rester lisible */
.vc-fiche-hero.has-bg-image .vc-eyebrow::before,
.vc-hero .vc-eyebrow::before,
.vc-piliers .vc-eyebrow::before,
.vc-cytology .vc-eyebrow::before,
.vc-cta-final .vc-eyebrow::before,
.vc-page-hero-dark .vc-eyebrow::before,
.vc-merci .vc-eyebrow::before,
.vc-404 .vc-eyebrow::before,
.vc-explain .vc-eyebrow::before,
.vc-mega-cta .vc-eyebrow::before {
    background:
        radial-gradient(circle at 65% 60%, var(--vc-rose-pale) 0 32%, transparent 33%),
        radial-gradient(circle at 50% 50%, rgba(255,255,255,0.30) 0 70%, transparent 71%);
    border-color: var(--vc-rose-pale);
    box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.10);
}
