/* ============================================================================
   RGPD Vision — Legal-Tech Theme
   ----------------------------------------------------------------------------
   Sobre, premium, institutionnel. Bootstrap 5 base + overrides custom.
   Palette : bleu profond `#0F2C5A` + vert teal compliance `#0F8B6C`.
   ============================================================================ */

/* ---------- 1. Variables ---------------------------------------------------- */
:root {
    /* Palette */
    --rv-blue-900: #0F2C5A;       /* primary deep */
    --rv-blue-700: #1E3A6F;
    --rv-blue-500: #2F4F8C;
    --rv-blue-100: #E8EEF7;
    --rv-blue-50:  #F4F7FB;

    --rv-teal-700: #0E7458;       /* compliance hover */
    --rv-teal-600: #0F8B6C;       /* compliance primary */
    --rv-teal-100: #D7F0E7;
    --rv-teal-50:  #ECF8F3;

    --rv-slate-900: #0F172A;       /* text */
    --rv-slate-700: #334155;
    --rv-slate-500: #64748B;       /* muted */
    --rv-slate-300: #CBD5E1;
    --rv-slate-200: #E2E8F0;       /* border */
    --rv-slate-100: #F1F5F9;
    --rv-slate-50:  #F8FAFC;       /* bg light */

    --rv-white: #FFFFFF;
    --rv-amber-500: #F59E0B;       /* accent ponctuel (alerte / score) */
    --rv-red-500:   #DC2626;
    --rv-green-500: #16A34A;

    /* Typo */
    --rv-font-display: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --rv-font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --rv-font-mono: 'IBM Plex Mono', ui-monospace, SFMono-Regular, monospace;

    /* Layout */
    --rv-radius-sm: 6px;
    --rv-radius-md: 10px;
    --rv-radius-lg: 16px;
    --rv-shadow-xs: 0 1px 2px rgba(15, 23, 42, .04);
    --rv-shadow-sm: 0 1px 3px rgba(15, 23, 42, .06), 0 1px 2px rgba(15, 23, 42, .04);
    --rv-shadow-md: 0 4px 12px rgba(15, 23, 42, .06), 0 2px 4px rgba(15, 23, 42, .04);
    --rv-shadow-lg: 0 12px 32px rgba(15, 23, 42, .08), 0 4px 8px rgba(15, 23, 42, .04);

    --rv-nav-height: 76px;
    --rv-section-padding-y: 6rem;

    /* —— v2 premium tokens (refonte 2026-06-29) —— */
    --rv-navy-deep:    #0A1E3F;       /* fond hero le plus sombre */
    --rv-teal-glow:    #1FD1A3;       /* teal lumineux pour glow/accents sur sombre */
    --rv-glass-bg:     rgba(255, 255, 255, .06);
    --rv-glass-border: rgba(255, 255, 255, .10);
    --rv-glass-hi:     inset 0 1px 0 rgba(255, 255, 255, .12);   /* highlight interne verre */
    --rv-shadow-glow:  0 0 0 1px rgba(31, 209, 163, .18), 0 14px 50px rgba(31, 209, 163, .14);
    --rv-radius-xl:    24px;          /* squircle premium */
    --rv-ease-spring:  cubic-bezier(.32, .72, 0, 1);   /* motion à ressort (anti ease-in-out) */
    --rv-ease-out:     cubic-bezier(.16, 1, .3, 1);
    --rv-gradient-hero:
        radial-gradient(120% 90% at 82% 8%, rgba(31, 209, 163, .18), transparent 55%),
        radial-gradient(90% 80% at 8% 92%, rgba(47, 79, 140, .38), transparent 60%),
        linear-gradient(162deg, var(--rv-blue-900) 0%, var(--rv-navy-deep) 100%);
}

/* ---------- 2. Base reset --------------------------------------------------- */
html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--rv-font-body);
    color: var(--rv-slate-900);
    background-color: var(--rv-white);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    line-height: 1.6;
    font-size: 16px;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--rv-font-display);
    color: var(--rv-slate-900);
    font-weight: 700;
    letter-spacing: -0.02em;
    margin-bottom: 0.6em;
}

h1 { font-size: clamp(2.25rem, 4vw, 3.5rem); line-height: 1.1; }
h2 { font-size: clamp(1.875rem, 3vw, 2.625rem); line-height: 1.2; }
h3 { font-size: clamp(1.375rem, 2vw, 1.75rem); line-height: 1.3; }
h4 { font-size: 1.25rem; }
h5 { font-size: 1.125rem; }
h6 { font-size: 1rem; }

.rv-eyebrow {
    display: inline-block;
    font-size: 0.8125rem;
    font-weight: 600;
    color: var(--rv-teal-600);
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: 0.75rem;
}

.rv-lead {
    font-size: 1.125rem;
    color: var(--rv-slate-700);
    line-height: 1.65;
}

.rv-muted { color: var(--rv-slate-500) !important; }

a {
    color: var(--rv-blue-700);
    text-decoration: none;
    transition: color .2s ease;
}
a:hover { color: var(--rv-blue-900); }

::selection {
    background: var(--rv-blue-100);
    color: var(--rv-blue-900);
}

/* ---------- 3. Layout helpers ---------------------------------------------- */
.rv-section {
    padding: var(--rv-section-padding-y) 0;
}
.rv-section-tight {
    padding: 4rem 0;
}
.rv-bg-slate     { background: var(--rv-slate-50); }
.rv-bg-blue-soft { background: var(--rv-blue-50); }
.rv-bg-blue-deep {
    background: linear-gradient(135deg, var(--rv-blue-900) 0%, var(--rv-blue-700) 100%);
    color: var(--rv-white);
}
.rv-bg-blue-deep h1, .rv-bg-blue-deep h2, .rv-bg-blue-deep h3,
.rv-bg-blue-deep h4, .rv-bg-blue-deep h5, .rv-bg-blue-deep h6 {
    color: var(--rv-white);
}

/* ---------- 4. Navbar ------------------------------------------------------ */
.rv-navbar {
    position: fixed;
    top: 0; left: 0; right: 0;
    height: var(--rv-nav-height);
    background: rgba(255, 255, 255, .85);
    backdrop-filter: saturate(180%) blur(12px);
    -webkit-backdrop-filter: saturate(180%) blur(12px);
    border-bottom: 1px solid transparent;
    transition: all .25s ease;
    z-index: 1030;
}
.rv-navbar.scrolled {
    background: rgba(255, 255, 255, .95);
    border-bottom-color: var(--rv-slate-200);
    box-shadow: var(--rv-shadow-xs);
}
.rv-navbar .navbar-brand img {
    height: 36px;
    width: auto;
}
.rv-navbar .nav-link {
    color: var(--rv-slate-700);
    font-weight: 500;
    font-size: 0.9375rem;
    padding: 0.5rem 1rem !important;
    transition: color .2s ease;
}
.rv-navbar .nav-link:hover,
.rv-navbar .nav-link.active {
    color: var(--rv-blue-900);
}
.rv-navbar .nav-item.dropdown .dropdown-menu {
    border: 1px solid var(--rv-slate-200);
    box-shadow: var(--rv-shadow-md);
    border-radius: var(--rv-radius-md);
    padding: 0.5rem;
    margin-top: 0.5rem !important;
}
.rv-navbar .dropdown-item {
    border-radius: var(--rv-radius-sm);
    color: var(--rv-slate-700);
    font-size: 0.9375rem;
    padding: 0.5rem 0.75rem;
}
.rv-navbar .dropdown-item:hover {
    background: var(--rv-slate-50);
    color: var(--rv-blue-900);
}
.rv-navbar .navbar-toggler {
    border: 1px solid var(--rv-slate-200);
    padding: 0.4rem 0.6rem;
    border-radius: var(--rv-radius-sm);
}
.rv-navbar .navbar-toggler:focus { box-shadow: none; }

body { padding-top: var(--rv-nav-height); }

/* ---------- 5. Buttons ----------------------------------------------------- */
.btn-rv-primary {
    background: var(--rv-blue-900);
    color: var(--rv-white);
    border: 1px solid var(--rv-blue-900);
    border-radius: var(--rv-radius-sm);
    font-weight: 500;
    padding: 0.625rem 1.5rem;
    font-size: 0.9375rem;
    transition: all .2s ease;
    box-shadow: var(--rv-shadow-xs);
}
.btn-rv-primary:hover {
    background: var(--rv-blue-700);
    border-color: var(--rv-blue-700);
    color: var(--rv-white);
    box-shadow: var(--rv-shadow-md);
    transform: translateY(-1px);
}

.btn-rv-outline {
    background: transparent;
    color: var(--rv-blue-900);
    border: 1px solid var(--rv-slate-200);
    border-radius: var(--rv-radius-sm);
    font-weight: 500;
    padding: 0.625rem 1.5rem;
    font-size: 0.9375rem;
    transition: all .2s ease;
}
.btn-rv-outline:hover {
    background: var(--rv-blue-50);
    border-color: var(--rv-blue-900);
    color: var(--rv-blue-900);
}

.btn-rv-ghost {
    background: transparent;
    color: var(--rv-slate-700);
    border: none;
    font-weight: 500;
    padding: 0.625rem 1rem;
    transition: color .2s ease;
}
.btn-rv-ghost:hover { color: var(--rv-blue-900); }

.btn-rv-accent {
    background: var(--rv-teal-600);
    color: var(--rv-white);
    border: 1px solid var(--rv-teal-600);
    border-radius: var(--rv-radius-sm);
    font-weight: 500;
    padding: 0.625rem 1.5rem;
    transition: all .2s ease;
}
.btn-rv-accent:hover {
    background: var(--rv-teal-700);
    border-color: var(--rv-teal-700);
    color: var(--rv-white);
}

.btn-rv-dark {
    background: var(--rv-slate-900);
    color: var(--rv-white);
    border: 1px solid var(--rv-slate-900);
    border-radius: var(--rv-radius-sm);
    font-weight: 500;
    padding: 0.625rem 1.5rem;
    transition: all .2s ease;
}
.btn-rv-dark:hover {
    background: #000;
    color: var(--rv-white);
    border-color: #000;
}

.btn-lg {
    padding: 0.875rem 2rem !important;
    font-size: 1rem !important;
}

/* ---------- 6. Badges ------------------------------------------------------ */
.rv-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.35rem 0.85rem;
    border-radius: 999px;
    font-size: 0.8125rem;
    font-weight: 500;
    line-height: 1;
}
.rv-badge-blue {
    background: var(--rv-blue-100);
    color: var(--rv-blue-900);
}
.rv-badge-teal {
    background: var(--rv-teal-100);
    color: var(--rv-teal-700);
}
.rv-badge-slate {
    background: var(--rv-slate-100);
    color: var(--rv-slate-700);
}
.rv-badge i { font-size: 0.875rem; }

/* ---------- 7. Hero -------------------------------------------------------- */
.rv-hero {
    position: relative;
    overflow: hidden;
    padding: 6rem 0 5rem;
    background:
        radial-gradient(1200px 600px at 90% -20%, rgba(15, 139, 108, 0.08), transparent 60%),
        radial-gradient(1000px 500px at 0% 110%, rgba(15, 44, 90, 0.06), transparent 60%),
        var(--rv-white);
}
.rv-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(var(--rv-slate-200) 1px, transparent 1px),
        linear-gradient(90deg, var(--rv-slate-200) 1px, transparent 1px);
    background-size: 64px 64px;
    -webkit-mask-image: radial-gradient(ellipse 60% 50% at 50% 50%, #000 60%, transparent 100%);
            mask-image: radial-gradient(ellipse 60% 50% at 50% 50%, #000 60%, transparent 100%);
    opacity: 0.35;
    z-index: 0;
    pointer-events: none;
}
.rv-hero > .container { position: relative; z-index: 1; }

.rv-hero h1 .rv-accent {
    background: linear-gradient(135deg, var(--rv-blue-900) 0%, var(--rv-teal-600) 100%);
    -webkit-background-clip: text;
            background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
}

.rv-hero-stats {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
    margin-top: 2.5rem;
    padding-top: 2rem;
    border-top: 1px solid var(--rv-slate-200);
}
.rv-hero-stat {
    display: flex;
    flex-direction: column;
}
.rv-hero-stat-value {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--rv-blue-900);
    line-height: 1;
}
.rv-hero-stat-label {
    font-size: 0.8125rem;
    color: var(--rv-slate-500);
    margin-top: 0.25rem;
}

.rv-hero-visual {
    position: relative;
    border-radius: var(--rv-radius-lg);
    background: var(--rv-white);
    border: 1px solid var(--rv-slate-200);
    box-shadow: var(--rv-shadow-lg);
    padding: 1.5rem;
}
.rv-hero-visual-header {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding-bottom: 1rem;
    margin-bottom: 1rem;
    border-bottom: 1px solid var(--rv-slate-100);
}
.rv-hero-visual-header .dot {
    width: 10px; height: 10px;
    border-radius: 50%;
    background: var(--rv-slate-200);
}
.rv-hero-visual-header .dot.r { background: #FF6B6B; }
.rv-hero-visual-header .dot.y { background: #FFD93D; }
.rv-hero-visual-header .dot.g { background: #6BCB77; }
.rv-hero-visual-content { font-family: var(--rv-font-mono); font-size: 0.875rem; color: var(--rv-slate-700); }

/* ---------- 8. Cards ------------------------------------------------------- */
.rv-card {
    background: var(--rv-white);
    border: 1px solid var(--rv-slate-200);
    border-radius: var(--rv-radius-md);
    padding: 1.75rem;
    transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
    height: 100%;
}
.rv-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--rv-shadow-md);
    border-color: var(--rv-slate-300);
}

.rv-card-icon {
    width: 48px;
    height: 48px;
    border-radius: var(--rv-radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--rv-blue-50);
    color: var(--rv-blue-900);
    font-size: 1.25rem;
    margin-bottom: 1.25rem;
}
.rv-card-icon.teal {
    background: var(--rv-teal-50);
    color: var(--rv-teal-700);
}
.rv-card-icon.amber {
    background: #FEF3C7;
    color: #B45309;
}
.rv-card h3 {
    font-size: 1.125rem;
    margin-bottom: 0.5rem;
}
.rv-card p {
    font-size: 0.9375rem;
    color: var(--rv-slate-500);
    margin-bottom: 0;
    line-height: 1.6;
}

/* Persona card (3 cibles) */
.rv-persona-card {
    background: var(--rv-white);
    border: 1px solid var(--rv-slate-200);
    border-radius: var(--rv-radius-lg);
    padding: 2rem;
    height: 100%;
    transition: all .25s ease;
    position: relative;
    overflow: hidden;
}
.rv-persona-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 4px;
    background: var(--rv-blue-900);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform .35s ease;
}
.rv-persona-card:hover::before { transform: scaleX(1); }
.rv-persona-card:hover {
    box-shadow: var(--rv-shadow-md);
    border-color: var(--rv-slate-300);
}
.rv-persona-card.teal::before { background: var(--rv-teal-600); }
.rv-persona-card.dark::before { background: var(--rv-slate-900); }

.rv-persona-card .rv-card-icon { margin-bottom: 1.5rem; }
.rv-persona-card h3 { font-size: 1.375rem; margin-bottom: 0.5rem; }
.rv-persona-card .rv-tagline {
    color: var(--rv-slate-500);
    font-size: 0.9375rem;
    margin-bottom: 1.5rem;
}
.rv-persona-card ul {
    list-style: none;
    padding: 0;
    margin: 0 0 1.5rem;
}
.rv-persona-card ul li {
    padding: 0.4rem 0 0.4rem 1.75rem;
    position: relative;
    color: var(--rv-slate-700);
    font-size: 0.9375rem;
}
.rv-persona-card ul li::before {
    content: '';
    position: absolute;
    left: 0; top: 0.7em;
    width: 16px; height: 16px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%230F8B6C'%3E%3Cpath d='M13.78 4.22a.75.75 0 0 1 0 1.06l-7 7a.75.75 0 0 1-1.06 0l-3-3a.75.75 0 1 1 1.06-1.06L6.25 10.69l6.47-6.47a.75.75 0 0 1 1.06 0z'/%3E%3C/svg%3E");
    background-size: contain;
    background-repeat: no-repeat;
}
.rv-persona-card .rv-card-cta {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    color: var(--rv-blue-900);
    font-weight: 500;
    font-size: 0.9375rem;
}
.rv-persona-card .rv-card-cta:hover {
    color: var(--rv-teal-700);
    gap: 0.6rem;
}

/* Step card (démarche en 4 étapes) */
.rv-step {
    display: flex;
    gap: 1.25rem;
    padding: 1.75rem;
    background: var(--rv-white);
    border: 1px solid var(--rv-slate-200);
    border-radius: var(--rv-radius-md);
    height: 100%;
    transition: all .25s ease;
}
.rv-step:hover {
    border-color: var(--rv-blue-500);
    box-shadow: var(--rv-shadow-md);
}
.rv-step-number {
    flex: 0 0 44px;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--rv-blue-900);
    color: var(--rv-white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1rem;
    font-family: var(--rv-font-mono);
}
.rv-step-content h4 {
    font-size: 1.0625rem;
    margin-bottom: 0.4rem;
    color: var(--rv-slate-900);
}
.rv-step-content p {
    font-size: 0.9375rem;
    color: var(--rv-slate-500);
    margin: 0;
    line-height: 1.6;
}

/* Stat card */
.rv-stat {
    text-align: left;
    padding: 1.5rem 0;
    border-left: 3px solid var(--rv-blue-900);
    padding-left: 1.5rem;
}
.rv-stat-value {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--rv-blue-900);
    line-height: 1;
    letter-spacing: -0.03em;
}
.rv-stat-label {
    font-size: 0.875rem;
    color: var(--rv-slate-500);
    margin-top: 0.5rem;
    line-height: 1.4;
}

/* Trust badge (certifications row) */
.rv-trust-row {
    display: flex;
    align-items: center;
    gap: 2.5rem;
    flex-wrap: wrap;
    padding: 1.5rem 2rem;
    background: var(--rv-white);
    border: 1px solid var(--rv-slate-200);
    border-radius: var(--rv-radius-md);
}
.rv-trust-item {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    color: var(--rv-slate-700);
    font-size: 0.875rem;
    font-weight: 500;
}
.rv-trust-item i {
    color: var(--rv-teal-600);
    font-size: 1.125rem;
}

/* Quote / testimonial */
.rv-quote {
    padding: 2rem;
    background: var(--rv-white);
    border-left: 3px solid var(--rv-teal-600);
    border-radius: var(--rv-radius-sm);
    height: 100%;
}
.rv-quote-text {
    font-size: 1.0625rem;
    color: var(--rv-slate-700);
    line-height: 1.65;
    margin-bottom: 1.5rem;
}
.rv-quote-author {
    display: flex;
    align-items: center;
    gap: 0.85rem;
}
.rv-quote-avatar {
    width: 44px; height: 44px;
    border-radius: 50%;
    background: var(--rv-blue-100);
    display: flex; align-items: center; justify-content: center;
    font-weight: 600; color: var(--rv-blue-900);
    font-size: 0.9375rem;
}
.rv-quote-author-name {
    font-weight: 600;
    color: var(--rv-slate-900);
    font-size: 0.9375rem;
}
.rv-quote-author-role {
    font-size: 0.8125rem;
    color: var(--rv-slate-500);
}

/* CTA banner */
.rv-cta-banner {
    background: linear-gradient(135deg, var(--rv-blue-900) 0%, #14336B 100%);
    color: var(--rv-white);
    border-radius: var(--rv-radius-lg);
    padding: 4rem 3rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}
.rv-cta-banner::before {
    content: '';
    position: absolute;
    top: -100px; right: -100px;
    width: 400px; height: 400px;
    background: radial-gradient(circle, rgba(15, 139, 108, .25), transparent 70%);
    border-radius: 50%;
}
.rv-cta-banner h2 {
    color: var(--rv-white);
    font-size: 2.25rem;
    margin-bottom: 1rem;
}
.rv-cta-banner p {
    font-size: 1.125rem;
    color: rgba(255, 255, 255, .85);
    margin-bottom: 2rem;
    max-width: 640px;
    margin-left: auto;
    margin-right: auto;
}

/* ---------- 9. Footer ------------------------------------------------------ */
.rv-footer {
    background: var(--rv-slate-900);
    color: var(--rv-slate-300);
    padding: 4rem 0 2rem;
    margin-top: auto;
}
.rv-footer .rv-footer-brand img {
    height: 36px;
    margin-bottom: 1rem;
}
.rv-footer .rv-footer-tagline {
    color: var(--rv-slate-500);
    font-size: 0.9375rem;
    line-height: 1.6;
    max-width: 320px;
    margin-bottom: 1.5rem;
}
.rv-footer h6 {
    color: var(--rv-white);
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    margin-bottom: 1.25rem;
    font-weight: 600;
}
.rv-footer ul {
    list-style: none;
    padding: 0;
    margin: 0;
}
.rv-footer ul li {
    margin-bottom: 0.6rem;
}
.rv-footer ul li a {
    color: var(--rv-slate-300);
    font-size: 0.9375rem;
    transition: color .2s ease;
}
.rv-footer ul li a:hover {
    color: var(--rv-white);
}
.rv-footer-bottom {
    border-top: 1px solid #1E293B;
    padding-top: 2rem;
    margin-top: 3rem;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 1rem;
    font-size: 0.875rem;
    color: var(--rv-slate-500);
}
.rv-footer-legal {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
}
.rv-footer-legal a {
    color: var(--rv-slate-500);
}
.rv-footer-legal a:hover { color: var(--rv-white); }

.rv-footer-trust {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-top: 1.5rem;
}
.rv-footer-trust-item {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.35rem 0.75rem;
    background: rgba(255, 255, 255, .04);
    border: 1px solid rgba(255, 255, 255, .08);
    border-radius: var(--rv-radius-sm);
    font-size: 0.75rem;
    color: var(--rv-slate-300);
}
.rv-footer-trust-item i {
    color: var(--rv-teal-600);
}

/* ---------- 9.bis Persona — variantes "feature" / "spotlight" ------------- */

/* Persona spotlight (hero card mise en avant pour la cible prioritaire) */
.rv-persona-spotlight {
    background: linear-gradient(135deg, var(--rv-blue-900) 0%, #14336B 100%);
    border-radius: var(--rv-radius-lg);
    padding: 3rem 2.5rem;
    color: var(--rv-white);
    height: 100%;
    position: relative;
    overflow: hidden;
}
.rv-persona-spotlight::before {
    content: '';
    position: absolute;
    top: -120px; right: -120px;
    width: 360px; height: 360px;
    background: radial-gradient(circle, rgba(15, 139, 108, .35), transparent 65%);
    border-radius: 50%;
}
.rv-persona-spotlight > * { position: relative; }
.rv-persona-spotlight .rv-card-icon {
    background: rgba(255, 255, 255, .12);
    color: var(--rv-white);
    width: 56px; height: 56px;
    border-radius: var(--rv-radius-md);
    margin-bottom: 1.5rem;
}
.rv-persona-spotlight h3 {
    color: var(--rv-white);
    font-size: 1.625rem;
    margin-bottom: .75rem;
}
.rv-persona-spotlight .rv-tagline {
    color: rgba(255, 255, 255, .8);
    font-size: 1.0625rem;
    margin-bottom: 1.75rem;
}
.rv-persona-spotlight ul {
    list-style: none;
    padding: 0;
    margin: 0 0 2rem;
}
.rv-persona-spotlight ul li {
    color: rgba(255, 255, 255, .9);
    font-size: 0.9375rem;
    padding: 0.4rem 0 0.4rem 1.75rem;
    position: relative;
}
.rv-persona-spotlight ul li::before {
    content: '';
    position: absolute;
    left: 0; top: 0.7em;
    width: 16px; height: 16px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%2310B57F'%3E%3Cpath d='M13.78 4.22a.75.75 0 0 1 0 1.06l-7 7a.75.75 0 0 1-1.06 0l-3-3a.75.75 0 1 1 1.06-1.06L6.25 10.69l6.47-6.47a.75.75 0 0 1 1.06 0z'/%3E%3C/svg%3E");
    background-size: contain;
    background-repeat: no-repeat;
}
.rv-persona-spotlight .btn-rv-accent {
    background: var(--rv-teal-600);
    color: var(--rv-white);
}

/* Persona compact (variantes Agences / Gestionnaires sur la home) */
.rv-persona-compact {
    background: var(--rv-white);
    border: 1px solid var(--rv-slate-200);
    border-radius: var(--rv-radius-md);
    padding: 1.5rem;
    transition: all .25s ease;
    height: 100%;
}
.rv-persona-compact:hover {
    transform: translateY(-3px);
    box-shadow: var(--rv-shadow-md);
    border-color: var(--rv-slate-300);
}
.rv-persona-compact h4 { font-size: 1.0625rem; margin-bottom: .35rem; }
.rv-persona-compact p { font-size: 0.9375rem; color: var(--rv-slate-500); margin-bottom: .85rem; }
.rv-persona-compact .rv-card-icon {
    width: 40px; height: 40px;
    margin-bottom: 1rem;
    font-size: 1rem;
}
.rv-persona-compact .rv-card-cta {
    display: inline-flex;
    align-items: center;
    gap: .35rem;
    color: var(--rv-blue-900);
    font-weight: 500;
    font-size: 0.875rem;
    transition: gap .2s ease;
}
.rv-persona-compact .rv-card-cta:hover { gap: .55rem; color: var(--rv-teal-700); }


/* ---------- 9.ter Timeline alternée verticale (Démarche RGPD) -------------- */

.rv-timeline {
    position: relative;
    padding: 1rem 0;
}
.rv-timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0; bottom: 0;
    width: 2px;
    background: linear-gradient(180deg, var(--rv-slate-200) 0%, var(--rv-blue-500) 50%, var(--rv-slate-200) 100%);
    transform: translateX(-50%);
}
.rv-timeline-item {
    position: relative;
    margin-bottom: 3.5rem;
    width: 100%;
    display: flex;
    align-items: center;
}
.rv-timeline-item:last-child { margin-bottom: 0; }
.rv-timeline-item:nth-child(odd)  { justify-content: flex-start; }
.rv-timeline-item:nth-child(even) { justify-content: flex-end; }

.rv-timeline-content {
    width: 45%;
    background: var(--rv-white);
    border: 1px solid var(--rv-slate-200);
    border-radius: var(--rv-radius-md);
    padding: 1.75rem;
    position: relative;
    transition: all .3s ease;
}
.rv-timeline-content:hover {
    transform: translateY(-3px);
    box-shadow: var(--rv-shadow-md);
    border-color: var(--rv-slate-300);
}
.rv-timeline-item:nth-child(odd)  .rv-timeline-content { margin-right: auto; }
.rv-timeline-item:nth-child(even) .rv-timeline-content { margin-left: auto; }

/* Connecteur arrow vers la ligne centrale */
.rv-timeline-content::before {
    content: '';
    position: absolute;
    top: 1.6rem;
    width: 12px; height: 12px;
    background: var(--rv-white);
    border: 1px solid var(--rv-slate-200);
    transform: rotate(45deg);
}
.rv-timeline-item:nth-child(odd)  .rv-timeline-content::before {
    right: -7px;
    border-left: none; border-bottom: none;
}
.rv-timeline-item:nth-child(even) .rv-timeline-content::before {
    left: -7px;
    border-right: none; border-top: none;
}

/* Bullet numéroté au centre */
.rv-timeline-bullet {
    position: absolute;
    left: 50%;
    top: 1.5rem;
    transform: translateX(-50%);
    width: 48px; height: 48px;
    border-radius: 50%;
    background: var(--rv-blue-900);
    color: var(--rv-white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--rv-font-mono);
    font-weight: 700;
    font-size: 0.9375rem;
    box-shadow: 0 0 0 6px var(--rv-white), 0 0 0 8px var(--rv-slate-200);
    z-index: 2;
}
.rv-timeline-item:nth-child(2) .rv-timeline-bullet { background: var(--rv-teal-600); box-shadow: 0 0 0 6px var(--rv-white), 0 0 0 8px var(--rv-teal-100); }
.rv-timeline-item:nth-child(3) .rv-timeline-bullet { background: var(--rv-blue-700); box-shadow: 0 0 0 6px var(--rv-white), 0 0 0 8px var(--rv-blue-100); }
.rv-timeline-item:nth-child(4) .rv-timeline-bullet { background: var(--rv-teal-700); box-shadow: 0 0 0 6px var(--rv-white), 0 0 0 8px var(--rv-teal-100); }

.rv-timeline-content h4 {
    font-size: 1.125rem;
    margin-bottom: 0.5rem;
    color: var(--rv-slate-900);
}
.rv-timeline-content p {
    font-size: 0.9375rem;
    color: var(--rv-slate-500);
    margin-bottom: 0;
    line-height: 1.65;
}
.rv-timeline-tag {
    display: inline-block;
    margin-top: 1rem;
    padding: .25rem .65rem;
    background: var(--rv-slate-100);
    color: var(--rv-slate-700);
    border-radius: 999px;
    font-size: 0.75rem;
    font-family: var(--rv-font-mono);
}

/* Responsive timeline : sur mobile, ligne décalée à gauche, contenu pleine largeur */
@media (max-width: 767.98px) {
    .rv-timeline::before { left: 28px; }
    .rv-timeline-item, .rv-timeline-item:nth-child(odd), .rv-timeline-item:nth-child(even) {
        justify-content: flex-start;
    }
    .rv-timeline-content {
        width: calc(100% - 70px);
        margin-left: 70px !important;
        margin-right: 0 !important;
    }
    .rv-timeline-content::before {
        left: -7px !important;
        right: auto !important;
        border-right: none !important;
        border-top: none !important;
        border-left: 1px solid var(--rv-slate-200) !important;
        border-bottom: 1px solid var(--rv-slate-200) !important;
    }
    .rv-timeline-bullet {
        left: 28px;
        transform: translate(-50%, 0);
    }
}


/* ---------- 9.quater Bento grid (Features asymétriques) -------------------- */

.rv-bento-card {
    background: var(--rv-white);
    border: 1px solid var(--rv-slate-200);
    border-radius: var(--rv-radius-lg);
    padding: 2rem;
    transition: all .3s ease;
    height: 100%;
    position: relative;
    overflow: hidden;
}
.rv-bento-card:hover {
    transform: translateY(-4px);
    border-color: var(--rv-slate-300);
    box-shadow: var(--rv-shadow-lg);
}
.rv-bento-card .rv-card-icon { margin-bottom: 1.25rem; }
.rv-bento-card h3 { font-size: 1.25rem; margin-bottom: 0.5rem; }
.rv-bento-card p { font-size: 0.9375rem; color: var(--rv-slate-500); line-height: 1.6; margin: 0; }

/* Bento card "hero" (la grande à gauche) */
.rv-bento-hero {
    background: linear-gradient(135deg, var(--rv-blue-50) 0%, var(--rv-white) 60%);
    border: 1px solid var(--rv-blue-100);
    padding: 2.5rem;
}
.rv-bento-hero::before {
    content: '';
    position: absolute;
    bottom: -60px; right: -60px;
    width: 200px; height: 200px;
    background: radial-gradient(circle, rgba(15, 139, 108, .12), transparent 70%);
    border-radius: 50%;
}
.rv-bento-hero > * { position: relative; z-index: 1; }
.rv-bento-hero .rv-card-icon {
    width: 56px; height: 56px;
    background: var(--rv-blue-900);
    color: var(--rv-white);
    font-size: 1.5rem;
}
.rv-bento-hero h3 { font-size: 1.5rem; }
.rv-bento-hero .rv-bento-preview {
    margin-top: 1.5rem;
    padding: 1rem;
    background: var(--rv-white);
    border: 1px solid var(--rv-slate-200);
    border-radius: var(--rv-radius-sm);
    font-family: var(--rv-font-mono);
    font-size: 0.8125rem;
    color: var(--rv-slate-700);
    display: flex;
    flex-direction: column;
    gap: .5rem;
}
.rv-bento-preview-item {
    display: flex;
    align-items: center;
    gap: .5rem;
}
.rv-bento-preview-item i { color: var(--rv-teal-600); }

/* Bento card "stat" — pour faire varier visuellement */
.rv-bento-stat {
    background: var(--rv-slate-900);
    color: var(--rv-white);
    border-color: var(--rv-slate-900);
    padding: 2rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.rv-bento-stat:hover {
    border-color: var(--rv-slate-700);
    box-shadow: var(--rv-shadow-lg);
}
.rv-bento-stat .rv-stat-big {
    font-size: 3rem;
    font-weight: 700;
    color: var(--rv-white);
    line-height: 1;
    letter-spacing: -.02em;
}
.rv-bento-stat .rv-stat-big .accent { color: var(--rv-teal-600); }
.rv-bento-stat p { color: rgba(255, 255, 255, .7); margin-top: .75rem; }


/* ---------- 10. Animations (scroll reveal) --------------------------------- */
.rv-reveal {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity .6s ease, transform .6s ease;
}
.rv-reveal.visible {
    opacity: 1;
    transform: translateY(0);
}
.rv-reveal-delay-1 { transition-delay: .1s; }
.rv-reveal-delay-2 { transition-delay: .2s; }
.rv-reveal-delay-3 { transition-delay: .3s; }
.rv-reveal-delay-4 { transition-delay: .4s; }

/* ---------- 11. Responsive ------------------------------------------------- */
@media (max-width: 991.98px) {
    :root { --rv-section-padding-y: 4rem; }

    .rv-navbar { background: rgba(255, 255, 255, .98); }
    .rv-navbar .navbar-collapse {
        margin-top: 1rem;
        padding-top: 1rem;
        border-top: 1px solid var(--rv-slate-200);
    }
    .rv-navbar .nav-link {
        padding: 0.75rem 0 !important;
    }
    .rv-cta-banner {
        padding: 2.5rem 1.5rem;
    }
    .rv-cta-banner h2 { font-size: 1.75rem; }
    .rv-hero { padding: 4rem 0 3rem; }
}

@media (max-width: 575.98px) {
    .rv-hero-stats { gap: 1.5rem; }
    .rv-hero-stat-value { font-size: 1.25rem; }
    .rv-trust-row { gap: 1.25rem; padding: 1.25rem; }
    .rv-stat-value { font-size: 2rem; }
}

/* ============================================================================
   12. COUCHE PREMIUM v2 (refonte vitrine 2026-06-29)
   ----------------------------------------------------------------------------
   Additif. N'altère aucune classe app/checkout. Palette/typo projet conservées
   (navy + teal, Inter + IBM Plex Mono). Craft : profondeur haptique, glow teal,
   KPI mono, motion à ressort, whitespace généreux.
   ============================================================================ */

/* —— 12.1 Sections sombres premium —— */
.rv-bg-navy {
    position: relative;
    background: var(--rv-gradient-hero);
    color: rgba(255, 255, 255, .82);
    overflow: hidden;
}
.rv-bg-navy h1, .rv-bg-navy h2, .rv-bg-navy h3,
.rv-bg-navy h4, .rv-bg-navy h5, .rv-bg-navy h6 { color: #fff; }
.rv-bg-navy .rv-lead { color: rgba(255, 255, 255, .72); }
.rv-bg-navy .rv-muted { color: rgba(255, 255, 255, .55) !important; }

/* Halo teal qui dérive lentement (désactivé en reduced-motion §12.10) */
.rv-glow-drift::after {
    content: '';
    position: absolute;
    inset: -20% -10% auto auto;
    width: 60%; aspect-ratio: 1;
    background: radial-gradient(circle, rgba(31, 209, 163, .16), transparent 62%);
    filter: blur(8px);
    pointer-events: none;
    animation: rvGlowDrift 18s var(--rv-ease-out) infinite alternate;
    z-index: 0;
}
@keyframes rvGlowDrift {
    0%   { transform: translate3d(0, 0, 0) scale(1); opacity: .8; }
    100% { transform: translate3d(-8%, 10%, 0) scale(1.15); opacity: 1; }
}

/* Grain fin (fixe, sans coût de repaint au scroll) */
.rv-grain::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='2'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.04'/%3E%3C/svg%3E");
    pointer-events: none;
    z-index: 0;
    opacity: .6;
}

/* —— 12.2 Hero sombre (home) —— */
.rv-hero-dark {
    position: relative;
    overflow: hidden;
    padding: 7rem 0 6rem;
    background: var(--rv-gradient-hero);
    color: rgba(255, 255, 255, .82);
}
.rv-hero-dark h1 { color: #fff; }
.rv-hero-dark .rv-lead { color: rgba(255, 255, 255, .74); }
.rv-hero-dark > .container { position: relative; z-index: 1; }
.rv-hero-dark .rv-accent {
    background: linear-gradient(120deg, #fff 0%, var(--rv-teal-glow) 100%);
    -webkit-background-clip: text; background-clip: text;
    -webkit-text-fill-color: transparent; color: transparent;
}

/* —— 12.3 Eyebrow pill + badge article —— */
.rv-eyebrow-pill {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    padding: .35rem .85rem;
    border-radius: 999px;
    font-size: .6875rem;
    font-weight: 600;
    letter-spacing: .18em;
    text-transform: uppercase;
    color: var(--rv-teal-700);
    background: var(--rv-teal-50);
    border: 1px solid var(--rv-teal-100);
}
.rv-bg-navy .rv-eyebrow-pill,
.rv-hero-dark .rv-eyebrow-pill {
    color: var(--rv-teal-glow);
    background: rgba(31, 209, 163, .10);
    border-color: rgba(31, 209, 163, .22);
}
.rv-article-badge {
    display: inline-flex;
    align-items: center;
    gap: .45rem;
    padding: .3rem .7rem;
    border-radius: var(--rv-radius-sm);
    font-family: var(--rv-font-mono);
    font-size: .75rem;
    font-weight: 500;
    color: var(--rv-blue-900);
    background: var(--rv-blue-50);
    border: 1px solid var(--rv-blue-100);
}
.rv-bg-navy .rv-article-badge,
.rv-hero-dark .rv-article-badge {
    color: #fff;
    background: var(--rv-glass-bg);
    border-color: var(--rv-glass-border);
}

/* —— 12.4 Carte verre dépoli (double-bezel) —— */
.rv-glass-card {
    position: relative;
    background: var(--rv-glass-bg);
    border: 1px solid var(--rv-glass-border);
    border-radius: var(--rv-radius-xl);
    box-shadow: var(--rv-glass-hi);
    -webkit-backdrop-filter: blur(14px) saturate(160%);
            backdrop-filter: blur(14px) saturate(160%);
    padding: 1.5rem;
    color: rgba(255, 255, 255, .9);
    transition: transform .5s var(--rv-ease-spring), box-shadow .5s var(--rv-ease-spring);
}
.rv-glass-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--rv-glass-hi), var(--rv-shadow-glow);
}
.rv-glass-card .rv-glass-head {
    display: flex; align-items: center; gap: .5rem;
    padding-bottom: 1rem; margin-bottom: 1rem;
    border-bottom: 1px solid var(--rv-glass-border);
    font-family: var(--rv-font-mono); font-size: .8rem;
    color: rgba(255, 255, 255, .55);
}
.rv-glass-card .rv-glass-row { font-family: var(--rv-font-mono); font-size: .85rem; margin-bottom: .5rem; color: rgba(255,255,255,.82); }
.rv-glass-card .rv-glass-row .k { color: rgba(255, 255, 255, .5); }

/* —— 12.5 KPI (chiffre mono, count-up) —— */
.rv-kpi { display: flex; flex-direction: column; gap: .15rem; }
.rv-kpi-value {
    font-family: var(--rv-font-mono);
    font-weight: 500;
    font-size: clamp(1.5rem, 2.4vw, 2.25rem);
    line-height: 1;
    letter-spacing: -.02em;
    color: var(--rv-blue-900);
}
.rv-bg-navy .rv-kpi-value, .rv-hero-dark .rv-kpi-value { color: #fff; }
.rv-kpi-value .accent { color: var(--rv-teal-600); }
.rv-hero-dark .rv-kpi-value .accent, .rv-bg-navy .rv-kpi-value .accent { color: var(--rv-teal-glow); }
.rv-kpi-label { font-size: .8125rem; color: var(--rv-slate-500); }
.rv-hero-dark .rv-kpi-label, .rv-bg-navy .rv-kpi-label { color: rgba(255, 255, 255, .6); }
.rv-kpi-strip {
    display: flex; flex-wrap: wrap; gap: 2.5rem;
    margin-top: 2.5rem; padding-top: 2rem;
    border-top: 1px solid var(--rv-glass-border);
}

/* —— 12.6 Feature card premium (4 piliers) —— */
.rv-feature-card {
    position: relative;
    background: var(--rv-white);
    border: 1px solid var(--rv-slate-200);
    border-radius: var(--rv-radius-lg);
    padding: 1.75rem;
    height: 100%;
    overflow: hidden;
    transition: transform .5s var(--rv-ease-spring), box-shadow .5s var(--rv-ease-spring), border-color .3s ease;
}
.rv-feature-card::after {
    content: '';
    position: absolute; inset: auto -40% -50% auto;
    width: 200px; height: 200px;
    background: radial-gradient(circle, rgba(15, 139, 108, .10), transparent 70%);
    opacity: 0; transition: opacity .4s ease;
}
.rv-feature-card:hover {
    transform: translateY(-6px);
    border-color: var(--rv-teal-100);
    box-shadow: var(--rv-shadow-lg);
}
.rv-feature-card:hover::after { opacity: 1; }
.rv-feature-card .rv-card-icon { margin-bottom: 1.25rem; }
.rv-feature-card h3 { font-size: 1.1875rem; margin-bottom: .5rem; }
.rv-feature-card p { font-size: .9375rem; color: var(--rv-slate-500); line-height: 1.6; margin-bottom: 1rem; }

/* —— 12.7 Lien à soulignement grandissant —— */
.rv-link {
    display: inline-flex; align-items: center; gap: .4rem;
    color: var(--rv-blue-900); font-weight: 600; font-size: .9375rem;
    background-image: linear-gradient(var(--rv-teal-600), var(--rv-teal-600));
    background-size: 0% 1.5px; background-position: 0 100%; background-repeat: no-repeat;
    transition: background-size .35s var(--rv-ease-out), gap .25s ease, color .2s ease;
}
.rv-link:hover { color: var(--rv-teal-700); background-size: 100% 1.5px; gap: .65rem; }

/* —— 12.8 CTA pill « button-in-button » —— */
.btn-rv-cta {
    display: inline-flex; align-items: center; gap: .65rem;
    padding: .6rem .7rem .6rem 1.5rem;
    border-radius: 999px;
    background: linear-gradient(120deg, var(--rv-teal-600), var(--rv-teal-700));
    color: #fff; font-weight: 600; font-size: .9375rem;
    border: 1px solid rgba(255, 255, 255, .12);
    box-shadow: 0 8px 24px rgba(15, 139, 108, .28);
    transition: transform .4s var(--rv-ease-spring), box-shadow .4s var(--rv-ease-spring);
}
.btn-rv-cta .btn-rv-cta-icon {
    display: inline-flex; align-items: center; justify-content: center;
    width: 30px; height: 30px; border-radius: 999px;
    background: rgba(255, 255, 255, .18);
    transition: transform .4s var(--rv-ease-spring), background .3s ease;
}
.btn-rv-cta:hover { color: #fff; box-shadow: 0 12px 32px rgba(15, 139, 108, .36); }
.btn-rv-cta:hover .btn-rv-cta-icon { transform: translate(2px, -1px) scale(1.06); background: rgba(255, 255, 255, .26); }
.btn-rv-cta:active { transform: scale(.985); }
/* Variante outline claire sur fond sombre */
.btn-rv-cta-ghost {
    display: inline-flex; align-items: center; gap: .5rem;
    padding: .65rem 1.4rem; border-radius: 999px;
    color: #fff; font-weight: 600; font-size: .9375rem;
    background: var(--rv-glass-bg); border: 1px solid var(--rv-glass-border);
    transition: background .3s ease, transform .4s var(--rv-ease-spring);
}
.btn-rv-cta-ghost:hover { color: #fff; background: rgba(255, 255, 255, .12); transform: translateY(-1px); }

/* —— 12.9 Score bar (remplissage à l'apparition) —— */
.rv-score-bar {
    position: relative; height: 8px; border-radius: 999px;
    background: var(--rv-slate-200); overflow: hidden;
}
.rv-bg-navy .rv-score-bar, .rv-glass-card .rv-score-bar { background: rgba(255, 255, 255, .14); }
.rv-score-fill {
    position: absolute; inset: 0 auto 0 0; width: 0;
    border-radius: 999px;
    background: linear-gradient(90deg, var(--rv-teal-600), var(--rv-teal-glow));
    transition: width 1.1s var(--rv-ease-out);
}

/* —— 12.10 Trust strip (bandeau garanties, fond clair ou sombre) —— */
.rv-trust-strip {
    display: flex; flex-wrap: wrap; align-items: center;
    gap: 1.25rem 2.25rem; justify-content: center;
}
.rv-trust-strip .rv-trust-item { font-size: .9rem; }
.rv-bg-navy .rv-trust-strip .rv-trust-item { color: rgba(255, 255, 255, .8); }
.rv-bg-navy .rv-trust-strip .rv-trust-item i { color: var(--rv-teal-glow); }

/* —— 12.11 Animations : reveal premium (heavy fade-up + blur + stagger) —— */
.rv-reveal {
    transform: translateY(28px);
    filter: blur(6px);
    transition: opacity .8s var(--rv-ease-out), transform .8s var(--rv-ease-out), filter .8s var(--rv-ease-out);
    will-change: transform, opacity;
}
.rv-reveal.visible { transform: translateY(0); filter: blur(0); }
[data-rv-delay="1"] { transition-delay: .08s; }
[data-rv-delay="2"] { transition-delay: .16s; }
[data-rv-delay="3"] { transition-delay: .24s; }
[data-rv-delay="4"] { transition-delay: .32s; }
[data-rv-delay="5"] { transition-delay: .40s; }
[data-rv-delay="6"] { transition-delay: .48s; }

/* —— 12.12 Respect strict de prefers-reduced-motion —— */
@media (prefers-reduced-motion: reduce) {
    html { scroll-behavior: auto; }
    .rv-reveal { opacity: 1 !important; transform: none !important; filter: none !important; transition: none !important; }
    .rv-glow-drift::after { animation: none !important; }
    .rv-score-fill { transition: none !important; }
    .btn-rv-cta, .btn-rv-cta-ghost, .rv-feature-card, .rv-glass-card,
    .rv-card, .rv-bento-card, .rv-timeline-content, .rv-link { transition: none !important; }
    .btn-rv-cta:hover .btn-rv-cta-icon { transform: none !important; }
    [data-rv-parallax] { transform: none !important; }
}

/* —— 12.13 Responsive premium —— */
@media (max-width: 991.98px) {
    .rv-hero-dark { padding: 5rem 0 3.5rem; }
    .rv-kpi-strip { gap: 1.75rem; }
}
@media (max-width: 575.98px) {
    .rv-kpi-strip { gap: 1.25rem; }
    .rv-kpi-value { font-size: 1.4rem; }
    .btn-rv-cta { width: 100%; justify-content: center; }
}

/* —— 12.14 Robustesse : si le JS ne s'exécute pas, le contenu reste visible —— */
html:not(.js) .rv-reveal { opacity: 1 !important; transform: none !important; filter: none !important; }

/* ============================================================================
   13. COMPOSANTS « WAHOU » — hero en couches, anneau de score, bento éditorial
   ============================================================================ */

/* —— 13.1 Hero : composition en couches (figure) —— */
.rv-hero-figure {
    position: relative;
    min-height: 420px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.rv-hero-figure .rv-glass-card { width: 100%; max-width: 380px; position: relative; z-index: 2; }

/* Chip flottante (tâche, badge, mini-info) qui lévite doucement */
.rv-float-chip {
    position: absolute;
    z-index: 3;
    display: inline-flex;
    align-items: center;
    gap: .55rem;
    padding: .6rem .9rem;
    border-radius: 14px;
    background: rgba(10, 30, 63, .72);
    border: 1px solid var(--rv-glass-border);
    box-shadow: var(--rv-glass-hi), 0 18px 40px rgba(5, 15, 35, .45);
    -webkit-backdrop-filter: blur(12px); backdrop-filter: blur(12px);
    color: #fff;
    font-size: .8rem;
    font-weight: 500;
    white-space: nowrap;
    animation: rvFloat 6s var(--rv-ease-out) infinite alternate;
}
.rv-float-chip .ic {
    width: 28px; height: 28px; border-radius: 8px;
    display: inline-flex; align-items: center; justify-content: center;
    font-size: .95rem;
}
.rv-float-chip .ic.teal { background: rgba(31, 209, 163, .18); color: var(--rv-teal-glow); }
.rv-float-chip .ic.amber { background: rgba(245, 158, 11, .18); color: #FBBF24; }
.rv-float-chip .ic.blue { background: rgba(47, 79, 140, .28); color: #93B4F5; }
.rv-float-chip .lbl small { display: block; color: rgba(255,255,255,.55); font-size: .68rem; font-weight: 400; }
.rv-float-chip.pos-tl { top: 6%;  left: -6%;  animation-delay: 0s; }
.rv-float-chip.pos-br { bottom: 8%; right: -5%; animation-delay: 1.2s; }
.rv-float-chip.pos-bl { bottom: 18%; left: -9%; animation-delay: 2.1s; }
@keyframes rvFloat {
    0%   { transform: translateY(0) rotate(-.4deg); }
    100% { transform: translateY(-12px) rotate(.5deg); }
}

/* Halo derrière la figure */
.rv-hero-figure::before {
    content: '';
    position: absolute; inset: 10% 4%;
    background: radial-gradient(circle at 60% 40%, rgba(31,209,163,.20), transparent 60%);
    filter: blur(30px);
    z-index: 0;
}

/* —— 13.2 Anneau de score (jauge conique) —— */
.rv-score-ring {
    --val: 87;
    position: relative;
    width: 132px; height: 132px;
    border-radius: 50%;
    background:
        conic-gradient(var(--rv-teal-glow) calc(var(--val) * 1%), rgba(255,255,255,.10) 0);
    display: flex; align-items: center; justify-content: center;
    transition: --val 1.2s var(--rv-ease-out);
}
.rv-score-ring::before {
    content: '';
    position: absolute; inset: 10px;
    border-radius: 50%;
    background: rgba(10, 30, 63, .92);
    box-shadow: inset 0 1px 0 rgba(255,255,255,.08);
}
.rv-score-ring .rv-score-ring-val {
    position: relative; z-index: 1;
    font-family: var(--rv-font-mono);
    font-size: 1.9rem; font-weight: 500; color: #fff; line-height: 1;
}
.rv-score-ring .rv-score-ring-val small { display: block; font-size: .62rem; color: rgba(255,255,255,.55); font-weight: 400; letter-spacing: .12em; text-transform: uppercase; margin-top: .25rem; }

/* —— 13.3 Point éditorial (sans boîte) — pour la section Problème —— */
.rv-point { display: flex; gap: 1rem; align-items: flex-start; padding: 1rem 0; }
.rv-point + .rv-point { border-top: 1px solid var(--rv-slate-100); }
.rv-point .rv-point-ic {
    flex: 0 0 44px; width: 44px; height: 44px; border-radius: 12px;
    display: inline-flex; align-items: center; justify-content: center;
    font-size: 1.15rem; background: var(--rv-blue-50); color: var(--rv-blue-900);
}
.rv-point .rv-point-ic.teal { background: var(--rv-teal-50); color: var(--rv-teal-700); }
.rv-point .rv-point-ic.amber { background: #FEF3C7; color: #B45309; }
.rv-point h4 { font-size: 1.0625rem; margin-bottom: .15rem; }
.rv-point p { font-size: .9375rem; color: var(--rv-slate-500); margin: 0; line-height: 1.55; }

/* —— 13.4 Bandeau « gros chiffre » (réassurance) —— */
.rv-figure-band {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
    border: 1px solid var(--rv-slate-200);
    border-radius: var(--rv-radius-lg);
    overflow: hidden;
    background: var(--rv-white);
}
.rv-figure-cell { padding: 2.25rem 1.5rem; text-align: center; border-right: 1px solid var(--rv-slate-200); }
.rv-figure-cell:last-child { border-right: none; }
.rv-figure-cell .n {
    font-family: var(--rv-font-mono); font-weight: 500;
    font-size: clamp(2rem, 4vw, 3rem); color: var(--rv-blue-900); line-height: 1; letter-spacing: -.02em;
}
.rv-figure-cell .n .accent { color: var(--rv-teal-600); }
.rv-figure-cell .l { font-size: .875rem; color: var(--rv-slate-500); margin-top: .6rem; }

/* —— 13.5 Témoignage vedette (large, sur fond clair) —— */
.rv-testimonial-feature {
    background: linear-gradient(135deg, var(--rv-blue-50), var(--rv-white) 70%);
    border: 1px solid var(--rv-blue-100);
    border-radius: var(--rv-radius-xl);
    padding: 3rem;
    position: relative;
    overflow: hidden;
}
.rv-testimonial-feature::before {
    content: '\201C';
    position: absolute; top: -1rem; left: 1.5rem;
    font-family: Georgia, serif; font-size: 8rem; color: var(--rv-teal-100); line-height: 1;
}
.rv-testimonial-feature blockquote {
    position: relative; font-size: 1.5rem; line-height: 1.45; color: var(--rv-slate-900);
    font-weight: 500; margin: 0 0 1.5rem; letter-spacing: -.01em;
}
.rv-testimonial-feature .who { display: flex; align-items: center; gap: .85rem; }

/* —— 13.6 Responsive figures —— */
@media (max-width: 991.98px) {
    .rv-hero-figure { min-height: 360px; margin-top: 2rem; }
    .rv-float-chip.pos-tl { left: 0; }
    .rv-float-chip.pos-br { right: 0; }
    .rv-float-chip.pos-bl { left: 0; }
}
@media (max-width: 767.98px) {
    .rv-figure-band { grid-template-columns: 1fr; }
    .rv-figure-cell { border-right: none; border-bottom: 1px solid var(--rv-slate-200); }
    .rv-figure-cell:last-child { border-bottom: none; }
    .rv-testimonial-feature { padding: 2rem 1.5rem; }
    .rv-testimonial-feature blockquote { font-size: 1.2rem; }
    .rv-float-chip { display: none; }   /* évite l'encombrement sur petit écran */
}

@media (prefers-reduced-motion: reduce) {
    .rv-float-chip { animation: none !important; }
}
