/* Pré-cache des cards diff pour éviter le flash au chargement */
.section-dark .diff-card {
    opacity: 0;
    transform: translate3d(0, 24px, 0);
}

.section-dark .diff-card.is-visible {
    opacity: 1;
    transform: translate3d(0, 0, 0);
    transition: opacity 1.4s cubic-bezier(0.16, 1, 0.3, 1), transform 1.4s cubic-bezier(0.16, 1, 0.3, 1) !important;
}

@media (prefers-reduced-motion: reduce) {
    .section-dark .diff-card {
        opacity: 1;
        transform: none;
    }
}

/* =================================
   CREDENCIO - DESIGN SYSTEM
   ================================= */

:root {
    /* Couleurs principales */
    --ink: #0E1117;
    --robe: #1E3A5F;
    --gold: #B8915C;
    --ivory: #FAF7F2;
    --anthracite: #3D3D3D;

    /* Couleurs sémantiques */
    --validation: #3D7A5C;
    --attention: #C5894F;
    --urgence: #9B3A3A;

    /* Palette grise */
    --grey-light: #E5E2DC;
    --grey-mid: #7A7A7A;
    --grey-border: #C5C2BC;

    /* Typographie */
    --font-display: 'Cormorant Garamond', Georgia, serif;
    --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;

    /* Espacements */
    --space-xs: 4px;
    --space-sm: 8px;
    --space-md: 16px;
    --space-lg: 24px;
    --space-xl: 32px;
    --space-2xl: 48px;
    --space-3xl: 64px;
    --space-4xl: 96px;

    /* Layout */
    --container-max: 1200px;
    --header-height: 72px;

    /* Transitions */
    --ease-out: cubic-bezier(0.25, 0.1, 0.25, 1);
    --transition-fast: 0.15s var(--ease-out);
    --transition-mid: 0.3s var(--ease-out);
}

/* =================================
   RESET & BASE
   ================================= */

*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
}

body {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.6;
    color: var(--anthracite);
    background-color: var(--ivory);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

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

button {
    font-family: inherit;
    cursor: pointer;
    border: none;
    background: none;
}

img,
svg {
    max-width: 100%;
    height: auto;
    display: block;
}

ul {
    list-style: none;
}

/* Skip link pour accessibilité */
:focus-visible {
    outline: 2px solid var(--gold);
    outline-offset: 2px;
}

/* =================================
   FILET OR SIGNATURE
   ================================= */

.signature-stripe {
    position: fixed;
    top: 0;
    left: 0;
    width: 4px;
    height: 100vh;
    background-color: var(--gold);
    z-index: 100;
}

@media (max-width: 768px) {
    .signature-stripe {
        width: 3px;
    }
}

/* =================================
   CONTAINER
   ================================= */

.container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 var(--space-lg);
}

@media (min-width: 768px) {
    .container {
        padding: 0 var(--space-xl);
    }
}

/* =================================
   TYPOGRAPHIE GÉNÉRIQUE
   ================================= */

.eyebrow {
    font-family: var(--font-body);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: var(--space-md);
}

.section-title {
    font-family: var(--font-display);
    font-size: 36px;
    line-height: 1.15;
    font-weight: 600;
    color: var(--ink);
    margin-bottom: var(--space-lg);
    letter-spacing: -0.01em;
}

.section-lead {
    font-family: var(--font-body);
    font-size: 17px;
    line-height: 1.65;
    color: var(--anthracite);
    max-width: 720px;
    margin-bottom: var(--space-3xl);
}

@media (min-width: 768px) {
    .section-title {
        font-size: 48px;
    }
}

@media (min-width: 1024px) {
    .section-title {
        font-size: 56px;
    }
}

/* =================================
   BOUTONS
   ================================= */

.btn {
    display: inline-flex;
    align-items: center;
    gap: var(--space-sm);
    padding: 14px 24px;
    font-family: var(--font-body);
    font-size: 15px;
    font-weight: 600;
    line-height: 1;
    border-radius: 4px;
    transition: all var(--transition-mid);
    text-align: center;
    justify-content: center;
    white-space: nowrap;
}

.btn-primary {
    background-color: var(--robe);
    color: var(--ivory);
}

.btn-primary:hover {
    background-color: var(--ink);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(14, 17, 23, 0.15);
}

.btn-secondary {
    background-color: transparent;
    color: var(--robe);
    border: 1.5px solid var(--robe);
}

.btn-secondary:hover {
    background-color: var(--robe);
    color: var(--ivory);
}

.btn-large {
    padding: 18px 32px;
    font-size: 16px;
}

.btn-full {
    width: 100%;
}

.btn-arrow {
    display: inline-block;
    transition: transform var(--transition-fast);
}

.btn:hover .btn-arrow {
    transform: translateX(4px);
}

.btn-header {
    padding: 10px 18px;
    font-size: 14px;
}

@media (max-width: 768px) {
    .btn-header {
        display: none;
    }
}

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

.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    background-color: rgba(250, 247, 242, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--grey-light);
    transition: box-shadow var(--transition-mid);
}

.site-header.scrolled {
    box-shadow: 0 1px 8px rgba(14, 17, 23, 0.05);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: var(--header-height);
}

.logo {
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-display);
    font-size: 24px;
    font-weight: 600;
    color: var(--ink);
    letter-spacing: 0.02em;
}

.logo-dot {
    width: 8px;
    height: 8px;
    background-color: var(--gold);
    border-radius: 50%;
    display: inline-block;
}

.main-nav {
    display: none;
    align-items: center;
    gap: var(--space-xl);
}

@media (min-width: 1024px) {
    .main-nav {
        display: flex;
    }
}

.nav-link {
    font-size: 14px;
    font-weight: 500;
    color: var(--anthracite);
    transition: color var(--transition-fast);
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 1px;
    background-color: var(--gold);
    transition: width var(--transition-mid);
}

.nav-link:hover {
    color: var(--ink);
}

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

.menu-toggle {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 28px;
    height: 20px;
    padding: 0;
}

.menu-toggle span {
    display: block;
    width: 100%;
    height: 2px;
    background-color: var(--ink);
    transition: all var(--transition-mid);
    border-radius: 1px;
}

.menu-toggle[aria-expanded="true"] span:nth-child(1) {
    transform: translateY(9px) rotate(45deg);
}

.menu-toggle[aria-expanded="true"] span:nth-child(2) {
    opacity: 0;
}

.menu-toggle[aria-expanded="true"] span:nth-child(3) {
    transform: translateY(-9px) rotate(-45deg);
}

@media (min-width: 1024px) {
    .menu-toggle {
        display: none;
    }
}

/* Menu mobile */
.mobile-nav {
    display: none;
    flex-direction: column;
    padding: var(--space-lg) var(--space-lg) var(--space-xl);
    background-color: var(--ivory);
    border-top: 1px solid var(--grey-light);
}

.mobile-nav.active {
    display: flex;
}

.mobile-nav-link {
    padding: var(--space-md) 0;
    font-size: 16px;
    font-weight: 500;
    color: var(--ink);
    border-bottom: 1px solid var(--grey-light);
}

.mobile-cta {
    margin-top: var(--space-lg);
}

@media (min-width: 1024px) {
    .mobile-nav,
    .mobile-nav.active {
        display: none;
    }
}

/* =================================
   HERO
   ================================= */

.hero {
    padding: var(--space-3xl) 0 var(--space-4xl);
    position: relative;
}

.hero .eyebrow {
    margin-bottom: var(--space-md);
}

.hero-title {
    font-family: var(--font-display);
    font-size: 40px;
    line-height: 1.1;
    font-weight: 600;
    color: var(--ink);
    margin-bottom: var(--space-lg);
    letter-spacing: -0.015em;
    max-width: 900px;
}

.hero-title-italic {
    font-style: italic;
    font-weight: 500;
    color: var(--robe);
}

.hero-lead {
    font-family: var(--font-body);
    font-size: 18px;
    line-height: 1.6;
    color: var(--anthracite);
    max-width: 620px;
    margin-bottom: var(--space-2xl);
}

.hero-ctas {
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
    margin-bottom: var(--space-3xl);
    align-items: flex-start;
}

@media (min-width: 640px) {
    .hero-ctas {
        flex-direction: row;
    }
}

@media (min-width: 768px) {
    .hero {
        padding: var(--space-4xl) 0;
    }

    .hero-title {
        font-size: 56px;
    }
}

@media (min-width: 1024px) {
    .hero-title {
        font-size: 72px;
    }
}

.hero-trust {
    display: flex;
    align-items: center;
    gap: var(--space-lg);
    padding-top: var(--space-xl);
    border-top: 1px solid var(--grey-light);
    flex-wrap: wrap;
}

.trust-item {
    display: flex;
    flex-direction: column;
}

.trust-number {
    font-family: var(--font-display);
    font-size: 32px;
    font-weight: 600;
    color: var(--gold);
    line-height: 1;
    margin-bottom: var(--space-xs);
}

.trust-label {
    font-size: 12px;
    line-height: 1.4;
    color: var(--grey-mid);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-weight: 500;
}

.trust-divider {
    width: 1px;
    height: 40px;
    background-color: var(--grey-border);
}

/* =================================
   SECTIONS GÉNÉRIQUES
   ================================= */

.section {
    padding: var(--space-4xl) 0;
    position: relative;
}

.section + .section {
    border-top: 1px solid var(--grey-light);
}

@media (max-width: 768px) {
    .section {
        padding: var(--space-3xl) 0;
    }
}

/* =================================
   DIFFÉRENCIATEURS
   ================================= */

.diff-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-xl);
    margin-top: var(--space-2xl);
}

@media (min-width: 768px) {
    .diff-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: var(--space-2xl);
    }
}

.diff-card {
    padding: var(--space-xl) 0;
    border-top: 1px solid var(--grey-border);
    position: relative;
}

.diff-number {
    font-family: var(--font-display);
    font-size: 28px;
    font-weight: 600;
    color: var(--gold);
    margin-bottom: var(--space-md);
    line-height: 1;
}

.diff-title {
    font-family: var(--font-display);
    font-size: 24px;
    font-weight: 600;
    color: var(--ink);
    margin-bottom: var(--space-md);
    line-height: 1.25;
}

.diff-text {
    font-size: 15px;
    line-height: 1.65;
    color: var(--anthracite);
}

/* =================================
   MÉTHODE
   ================================= */

.methode {
    background-color: white;
}

.methode-steps {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-xl);
    margin-top: var(--space-2xl);
}

@media (min-width: 1024px) {
    .methode-steps {
        grid-template-columns: repeat(3, 1fr);
        gap: var(--space-xl);
    }
}

.methode-step {
    background-color: var(--ivory);
    padding: var(--space-2xl);
    border-left: 3px solid var(--gold);
    position: relative;
}

.step-header {
    display: flex;
    align-items: baseline;
    gap: var(--space-md);
    margin-bottom: var(--space-md);
}

.step-number {
    font-family: var(--font-display);
    font-size: 36px;
    font-weight: 600;
    color: var(--gold);
    line-height: 1;
}

.step-tag {
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--robe);
    padding: 4px 10px;
    background-color: rgba(30, 58, 95, 0.08);
    border-radius: 3px;
}

.step-title {
    font-family: var(--font-display);
    font-size: 24px;
    font-weight: 600;
    color: var(--ink);
    line-height: 1.3;
    margin-bottom: var(--space-md);
}

.step-text {
    font-size: 14.5px;
    line-height: 1.65;
    color: var(--anthracite);
    margin-bottom: var(--space-md);
}

.step-result {
    font-size: 14px;
    line-height: 1.5;
    color: var(--robe);
    padding-top: var(--space-md);
    border-top: 1px solid var(--grey-light);
}

.step-result strong {
    color: var(--gold);
}

/* =================================
   SIMULATEUR
   ================================= */

.simulator-card {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0;
    margin-top: var(--space-2xl);
    background-color: white;
    border: 1px solid var(--grey-border);
    border-radius: 4px;
    overflow: hidden;
}

@media (min-width: 1024px) {
    .simulator-card {
        grid-template-columns: 1fr 1fr;
    }
}

.simulator-form {
    padding: var(--space-2xl);
    background-color: var(--ivory);
}

.form-group {
    margin-bottom: var(--space-lg);
}

.form-group label {
    display: block;
    font-size: 13px;
    font-weight: 600;
    color: var(--ink);
    margin-bottom: var(--space-sm);
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.input-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    border: 1.5px solid var(--grey-border);
    border-radius: 4px;
    background-color: white;
    transition: border-color var(--transition-fast);
}

.input-wrapper:focus-within {
    border-color: var(--robe);
}

.input-wrapper input,
.input-wrapper select {
    flex: 1;
    padding: 14px 16px;
    border: none;
    background: transparent;
    font-family: var(--font-body);
    font-size: 16px;
    color: var(--ink);
    width: 100%;
    appearance: none;
    -webkit-appearance: none;
}

.input-wrapper select {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%231E3A5F' d='M6 8L0 0h12z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    padding-right: 40px;
}

.input-wrapper input:focus,
.input-wrapper select:focus {
    outline: none;
}

.input-suffix {
    padding: 0 16px;
    font-size: 16px;
    color: var(--grey-mid);
    font-weight: 500;
}

.simulator-results {
    padding: var(--space-2xl);
    background-color: var(--ink);
    color: var(--ivory);
}

.results-title {
    font-family: var(--font-display);
    font-size: 20px;
    font-weight: 600;
    color: var(--gold);
    margin-bottom: var(--space-lg);
    text-transform: uppercase;
    letter-spacing: 0.06em;
    font-size: 13px;
}

.result-line {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: var(--space-md) 0;
    border-bottom: 1px solid rgba(184, 145, 92, 0.15);
}

.result-label {
    font-size: 14px;
    color: rgba(250, 247, 242, 0.8);
    line-height: 1.4;
    flex: 1;
    padding-right: var(--space-md);
}

.result-value {
    font-family: var(--font-display);
    font-size: 18px;
    font-weight: 600;
    color: var(--ivory);
    white-space: nowrap;
}

.result-total {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    padding: var(--space-lg) 0;
    margin: var(--space-md) 0 var(--space-xl);
    border-top: 2px solid var(--gold);
    border-bottom: 2px solid var(--gold);
}

.result-total-label {
    font-family: var(--font-display);
    font-size: 18px;
    font-weight: 500;
    color: var(--ivory);
}

.result-total-value {
    font-family: var(--font-display);
    font-size: 32px;
    font-weight: 700;
    color: var(--gold);
}

.results-note {
    font-size: 12px;
    color: rgba(250, 247, 242, 0.6);
    margin-top: var(--space-md);
    text-align: center;
    line-height: 1.5;
    font-style: italic;
}

/* =================================
   TARIFS
   ================================= */

.tarifs {
    background-color: white;
}

.tarifs-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-xl);
    margin-top: var(--space-2xl);
    margin-bottom: var(--space-3xl);
}

@media (min-width: 768px) {
    .tarifs-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.tarif-card {
    padding: var(--space-2xl);
    border: 1px solid var(--grey-border);
    border-radius: 4px;
    background-color: var(--ivory);
    transition: all var(--transition-mid);
}

.tarif-card:hover {
    border-color: var(--gold);
    transform: translateY(-2px);
}

.tarif-card-highlight {
    background-color: var(--ink);
    color: var(--ivory);
    border-color: var(--ink);
}

.tarif-card-highlight:hover {
    border-color: var(--gold);
}

.tarif-percent {
    font-family: var(--font-display);
    font-size: 64px;
    font-weight: 700;
    color: var(--gold);
    line-height: 1;
    margin-bottom: var(--space-lg);
}

.tarif-title {
    font-family: var(--font-display);
    font-size: 22px;
    font-weight: 600;
    margin-bottom: var(--space-md);
    color: inherit;
}

.tarif-text {
    font-size: 14.5px;
    line-height: 1.65;
    margin-bottom: var(--space-lg);
}

.tarif-card-highlight .tarif-text {
    color: rgba(250, 247, 242, 0.85);
}

.tarif-detail {
    padding-top: var(--space-md);
    border-top: 1px solid var(--grey-light);
    font-size: 13px;
    line-height: 1.5;
    font-style: italic;
}

.tarif-card-highlight .tarif-detail {
    border-top-color: rgba(184, 145, 92, 0.3);
    color: rgba(250, 247, 242, 0.7);
}

.tarif-card-highlight .tarif-detail strong {
    color: var(--gold);
}

.tarifs-included {
    padding: var(--space-2xl);
    background-color: var(--ivory);
    border-left: 3px solid var(--gold);
    margin-top: var(--space-xl);
}

.included-title {
    font-family: var(--font-body);
    font-size: 12px;
    font-weight: 600;
    color: var(--gold);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: var(--space-md);
}

.included-list {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-sm);
}

@media (min-width: 768px) {
    .included-list {
        grid-template-columns: repeat(2, 1fr);
    }
}

.included-list li {
    display: flex;
    align-items: flex-start;
    gap: var(--space-sm);
    font-size: 14.5px;
    line-height: 1.5;
    color: var(--anthracite);
    padding: var(--space-xs) 0;
}

.check {
    color: var(--validation);
    font-weight: 700;
    flex-shrink: 0;
}

/* =================================
   TÉMOIGNAGES
   ================================= */

.temoignages-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-xl);
    margin-top: var(--space-2xl);
}

@media (min-width: 1024px) {
    .temoignages-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.temoignage-card {
    padding: var(--space-2xl);
    background-color: white;
    border: 1px solid var(--grey-border);
    border-radius: 4px;
    position: relative;
    transition: all var(--transition-mid);
}

.temoignage-card:hover {
    border-color: var(--gold);
    box-shadow: 0 4px 16px rgba(14, 17, 23, 0.05);
    transform: translateY(-2px);
}

.temoignage-card::before {
    content: '"';
    position: absolute;
    top: 12px;
    left: 16px;
    font-family: var(--font-display);
    font-size: 56px;
    color: var(--gold);
    line-height: 1;
    opacity: 0.4;
}

.temoignage-quote {
    font-family: var(--font-display);
    font-size: 18px;
    line-height: 1.5;
    font-style: italic;
    color: var(--ink);
    margin-bottom: var(--space-lg);
    margin-top: var(--space-md);
    position: relative;
    z-index: 1;
}

.temoignage-author {
    padding-top: var(--space-md);
    border-top: 1px solid var(--grey-light);
}

.author-info {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.author-name {
    font-size: 14px;
    font-weight: 600;
    color: var(--ink);
}

.author-role {
    font-size: 13px;
    color: var(--grey-mid);
    font-style: italic;
}

/* =================================
   CTA FINAL
   ================================= */

.cta-final {
    background-color: var(--ink);
    color: var(--ivory);
    text-align: center;
}

.cta-final .container {
    max-width: 720px;
}

.cta-title {
    font-family: var(--font-display);
    font-size: 40px;
    font-weight: 600;
    color: var(--ivory);
    margin-bottom: var(--space-md);
    line-height: 1.15;
    letter-spacing: -0.01em;
}

@media (min-width: 768px) {
    .cta-title {
        font-size: 56px;
    }
}

.cta-text {
    font-size: 17px;
    line-height: 1.6;
    color: rgba(250, 247, 242, 0.85);
    margin-bottom: var(--space-2xl);
}

.calendar-mockup {
    background-color: var(--ivory);
    color: var(--ink);
    padding: var(--space-2xl);
    border-radius: 4px;
    text-align: left;
    border: 1px solid var(--gold);
    margin-top: var(--space-xl);
}

.calendar-header {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    margin-bottom: var(--space-lg);
    padding-bottom: var(--space-md);
    border-bottom: 1px solid var(--grey-light);
}

.calendar-header h3 {
    font-family: var(--font-display);
    font-size: 22px;
    font-weight: 600;
    color: var(--ink);
}

.calendar-month {
    font-size: 13px;
    color: var(--gold);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.calendar-days {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: var(--space-sm);
    margin-bottom: var(--space-xl);
}

.calendar-day {
    padding: var(--space-md) var(--space-sm);
    border: 1px solid var(--grey-border);
    border-radius: 4px;
    text-align: center;
    cursor: pointer;
    transition: all var(--transition-fast);
    background-color: white;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.calendar-day:hover {
    border-color: var(--robe);
}

.calendar-day-active {
    background-color: var(--robe);
    border-color: var(--robe);
    color: var(--ivory);
}

.calendar-day-active .day-name,
.calendar-day-active .day-num {
    color: var(--ivory);
}

.day-name {
    font-size: 11px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--grey-mid);
}

.day-num {
    font-family: var(--font-display);
    font-size: 22px;
    font-weight: 600;
    color: var(--ink);
}

.calendar-slots {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: var(--space-sm);
    margin-bottom: var(--space-xl);
}

@media (max-width: 640px) {
    .calendar-slots {
        grid-template-columns: repeat(3, 1fr);
    }
}

.time-slot {
    padding: var(--space-md);
    border: 1px solid var(--grey-border);
    border-radius: 4px;
    background-color: white;
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 500;
    color: var(--ink);
    cursor: pointer;
    transition: all var(--transition-fast);
}

.time-slot:hover {
    border-color: var(--gold);
}

.time-slot-active {
    background-color: var(--gold);
    border-color: var(--gold);
    color: var(--ivory);
    font-weight: 600;
}

.calendar-reassure {
    text-align: center;
    font-size: 13px;
    color: var(--grey-mid);
    margin-top: var(--space-md);
    font-style: italic;
}

/* =================================
   FOOTER
   ================================= */

.site-footer {
    background-color: var(--ink);
    color: var(--ivory);
    padding: var(--space-4xl) 0 var(--space-xl);
    border-top: 1px solid var(--gold);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-2xl);
    margin-bottom: var(--space-3xl);
}

@media (min-width: 768px) {
    .footer-grid {
        grid-template-columns: 1.5fr 1fr 1fr 1fr;
    }
}

.footer-col-brand {
    max-width: 320px;
}

.logo-footer {
    color: var(--ivory);
    margin-bottom: var(--space-lg);
}

.logo-footer .logo-text {
    color: var(--ivory);
}

.footer-baseline {
    font-family: var(--font-display);
    font-style: italic;
    font-size: 17px;
    line-height: 1.4;
    color: rgba(250, 247, 242, 0.7);
}

.footer-title {
    font-family: var(--font-body);
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--gold);
    margin-bottom: var(--space-md);
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
}

.footer-links li,
.footer-links a {
    font-size: 14px;
    line-height: 1.5;
    color: rgba(250, 247, 242, 0.8);
    transition: color var(--transition-fast);
}

.footer-links a:hover {
    color: var(--gold);
}

.footer-bottom {
    padding-top: var(--space-lg);
    border-top: 1px solid rgba(184, 145, 92, 0.2);
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
}

@media (min-width: 768px) {
    .footer-bottom {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
    }
}

.footer-legal,
.footer-copyright {
    font-size: 12px;
    line-height: 1.5;
    color: rgba(250, 247, 242, 0.5);
}

.footer-legal {
    max-width: 600px;
}

/* =================================
   ANIMATIONS AU SCROLL
   ================================= */

/* Les éléments sont visibles par défaut.
   L'animation au scroll ne fait que renforcer un effet d'apparition,
   sans jamais cacher complètement le contenu (accessibilité + screenshots). */
@media (prefers-reduced-motion: no-preference) {
    .fade-in {
        opacity: 1;
        transform: translateY(0);
    }

    .fade-in.js-pre-animate {
        opacity: 0;
        transform: translateY(20px);
        transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out);
    }

    .fade-in.js-pre-animate.visible {
        opacity: 1;
        transform: translateY(0);
    }
}

/* =================================
   ACCESSIBILITÉ
   ================================= */

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
}

/* Tailles tactiles minimum 44x44 */
@media (max-width: 768px) {
    .btn,
    .nav-link,
    .calendar-day,
    .time-slot {
        min-height: 44px;
    }
}

/* =================================
   HERO V2 (refonte 2026-05)
   ================================= */

/* Padding adapté pour version dashboard */
.hero-v2 {
    padding: var(--space-2xl) 0 var(--space-3xl);
}

@media (min-width: 1024px) {
    .hero-v2 {
        padding: var(--space-3xl) 0 var(--space-4xl);
    }
}

/* Trust bar */
.trust-bar {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: var(--space-md) var(--space-xl);
    padding-bottom: var(--space-xl);
    margin-bottom: var(--space-2xl);
    border-bottom: 1px solid var(--grey-light);
}

.trust-bar-item {
    display: inline-flex;
    align-items: center;
    gap: var(--space-sm);
    font-family: var(--font-body);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--anthracite);
    line-height: 1.4;
}

.trust-bar-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background-color: var(--gold);
    flex-shrink: 0;
}

@media (max-width: 768px) {
    .trust-bar {
        gap: var(--space-sm) var(--space-md);
    }
    .trust-bar-item {
        font-size: 11px;
    }
}

/* Grille hero 2 colonnes */
.hero-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-3xl);
    align-items: center;
}

@media (min-width: 1024px) {
    .hero-grid {
        grid-template-columns: 1.05fr 1fr;
        gap: var(--space-4xl);
    }
}

.hero-content {
    min-width: 0;
}

/* Override taille hero-title V2 (plus petit que V1) */
.hero-title-v2 {
    font-size: 36px;
    letter-spacing: -0.015em;
    max-width: 640px;
}

@media (min-width: 768px) {
    .hero-title-v2 {
        font-size: 44px;
    }
}

@media (min-width: 1024px) {
    .hero-title-v2 {
        font-size: 52px;
    }
}

@media (min-width: 1280px) {
    .hero-title-v2 {
        font-size: 56px;
    }
}

/* Hero-trust compact pour V2 */
.hero-v2 .hero-trust {
    gap: var(--space-md);
    padding-top: var(--space-lg);
}

.hero-v2 .trust-number {
    font-size: 28px;
    display: inline-flex;
    align-items: baseline;
}

.trust-unit {
    font-size: 0.7em;
    font-weight: 500;
    color: var(--gold);
    opacity: 0.8;
    margin-left: 1px;
}

/* Visuel : conteneur du dashboard */
.hero-visual {
    position: relative;
    width: 100%;
    max-width: 520px;
    margin: 0 auto;
}

@media (min-width: 1024px) {
    .hero-visual {
        max-width: none;
        margin: 0;
    }
}

/* =================================
   DASHBOARD CARD
   ================================= */

.dashboard-card {
    position: relative;
    background-color: #FFFFFF;
    border: 1px solid var(--grey-border);
    border-radius: 4px;
    padding: 0;
    box-shadow:
        0 1px 0 rgba(14, 17, 23, 0.04),
        0 8px 24px -8px rgba(14, 17, 23, 0.12),
        0 24px 48px -24px rgba(30, 58, 95, 0.18);
    overflow: visible;
}

.dashboard-card::before {
    content: '';
    position: absolute;
    left: 0;
    top: 32px;
    bottom: 0;
    width: 3px;
    background-color: var(--gold);
}

/* Barre titre fenêtre */
.dashboard-titlebar {
    display: flex;
    align-items: center;
    padding: 12px 16px;
    border-bottom: 1px solid var(--grey-light);
    background-color: #FBFAF7;
    border-radius: 4px 4px 0 0;
    position: relative;
}

.dashboard-dots {
    display: inline-flex;
    gap: 6px;
    flex-shrink: 0;
}

.dashboard-dots span {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    display: inline-block;
}

.dashboard-dots span:nth-child(1) {
    background-color: #E0B062;
}

.dashboard-dots span:nth-child(2) {
    background-color: #E8C97A;
}

.dashboard-dots span:nth-child(3) {
    background-color: #A8C4A2;
}

.dashboard-url {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    font-family: var(--font-body);
    font-size: 11px;
    color: var(--grey-mid);
    letter-spacing: 0.02em;
    pointer-events: none;
}

@media (max-width: 480px) {
    .dashboard-url {
        font-size: 10px;
    }
}

/* Header dossier */
.dashboard-header {
    padding: var(--space-xl) var(--space-xl) var(--space-md);
}

.dashboard-eyebrow {
    font-family: var(--font-body);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: var(--space-xs);
}

.dashboard-title {
    font-family: var(--font-display);
    font-size: 22px;
    font-weight: 600;
    line-height: 1.2;
    color: var(--ink);
    margin-bottom: var(--space-md);
    letter-spacing: -0.005em;
}

.dashboard-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--space-md);
    flex-wrap: wrap;
}

.dashboard-amount {
    font-family: var(--font-display);
    font-size: 18px;
    font-weight: 600;
    color: var(--robe);
    letter-spacing: 0.005em;
}

.dashboard-status {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-family: var(--font-body);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: #2F6B4A;
    padding: 4px 10px;
    background-color: rgba(61, 122, 92, 0.10);
    border-radius: 999px;
}

.dashboard-status .status-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background-color: #3D7A5C;
    position: relative;
}

.dashboard-status .status-dot::before {
    content: '';
    position: absolute;
    inset: -3px;
    border-radius: 50%;
    background-color: rgba(61, 122, 92, 0.5);
    animation: pulse-dot 2s ease-out infinite;
}

@keyframes pulse-dot {
    0% {
        transform: scale(0.8);
        opacity: 0.7;
    }
    70% {
        transform: scale(1.6);
        opacity: 0;
    }
    100% {
        transform: scale(1.6);
        opacity: 0;
    }
}

/* Timeline */
.dashboard-timeline {
    list-style: none;
    margin: 0;
    padding: var(--space-md) var(--space-xl) var(--space-md);
    border-top: 1px solid var(--grey-light);
    border-bottom: 1px solid var(--grey-light);
}

.timeline-step {
    position: relative;
    display: flex;
    align-items: center;
    gap: var(--space-md);
    padding: 10px 0;
}

.timeline-step::after {
    content: '';
    position: absolute;
    left: 5px;
    top: 26px;
    bottom: -10px;
    width: 1px;
    background-color: var(--grey-border);
}

.timeline-step:last-child::after {
    display: none;
}

.timeline-dot {
    width: 11px;
    height: 11px;
    border-radius: 50%;
    background-color: #FFFFFF;
    border: 1.5px solid var(--grey-border);
    flex-shrink: 0;
    position: relative;
    z-index: 1;
}

.timeline-step-done .timeline-dot {
    background-color: var(--gold);
    border-color: var(--gold);
}

.timeline-step-current .timeline-dot {
    background-color: var(--robe);
    border-color: var(--robe);
    box-shadow: 0 0 0 4px rgba(30, 58, 95, 0.15);
}

.timeline-content {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    flex: 1;
    gap: var(--space-md);
    min-width: 0;
}

.timeline-label {
    font-family: var(--font-body);
    font-size: 13px;
    font-weight: 500;
    color: var(--ink);
    line-height: 1.3;
}

.timeline-step:not(.timeline-step-done):not(.timeline-step-current) .timeline-label {
    color: var(--grey-mid);
}

.timeline-step-current .timeline-label {
    font-weight: 600;
    color: var(--robe);
}

.timeline-date {
    font-family: var(--font-body);
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: var(--grey-mid);
    flex-shrink: 0;
}

.timeline-step-current .timeline-date {
    color: var(--gold);
}

/* Mini graphique */
.dashboard-chart {
    padding: var(--space-md) var(--space-xl) var(--space-md);
}

.chart-header {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: var(--space-md);
    margin-bottom: var(--space-sm);
}

.chart-title {
    font-family: var(--font-body);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.04em;
    color: var(--ink);
    text-transform: uppercase;
}

.chart-period {
    font-family: var(--font-body);
    font-size: 11px;
    color: var(--grey-mid);
    letter-spacing: 0.02em;
}

.chart-svg {
    width: 100%;
    height: 70px;
    display: block;
    margin-bottom: var(--space-sm);
}

.chart-footer {
    display: flex;
    align-items: baseline;
    gap: var(--space-sm);
}

.chart-value {
    font-family: var(--font-display);
    font-size: 22px;
    font-weight: 600;
    color: var(--gold);
    line-height: 1;
}

.chart-trend {
    font-family: var(--font-body);
    font-size: 12px;
    color: var(--grey-mid);
}

/* Pied : sceau */
.dashboard-footer {
    display: flex;
    align-items: center;
    gap: var(--space-md);
    padding: var(--space-md) var(--space-xl);
    background-color: var(--ivory);
    border-top: 1px solid var(--grey-light);
    border-radius: 0 0 4px 4px;
}

.dashboard-seal {
    width: 32px;
    height: 32px;
    flex-shrink: 0;
}

.dashboard-seal-text {
    display: flex;
    flex-direction: column;
    gap: 2px;
    min-width: 0;
}

.seal-label {
    font-family: var(--font-body);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--ink);
}

.seal-detail {
    font-family: var(--font-body);
    font-size: 11px;
    color: var(--grey-mid);
    line-height: 1.3;
}

/* Notification flottante */
.dashboard-notification {
    position: absolute;
    bottom: -16px;
    right: -12px;
    display: inline-flex;
    align-items: center;
    gap: var(--space-sm);
    background-color: var(--ink);
    color: var(--ivory);
    padding: 12px 16px;
    border-radius: 4px;
    border-left: 3px solid var(--gold);
    box-shadow: 0 12px 32px -8px rgba(14, 17, 23, 0.35);
    animation: notification-float 5s ease-in-out infinite;
    max-width: 240px;
}

.notification-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: var(--gold);
    flex-shrink: 0;
    box-shadow: 0 0 0 3px rgba(184, 145, 92, 0.25);
}

.notification-content {
    display: flex;
    flex-direction: column;
    gap: 2px;
    line-height: 1.3;
}

.notification-title {
    font-family: var(--font-body);
    font-size: 12px;
    font-weight: 600;
    color: var(--ivory);
}

.notification-detail {
    font-family: var(--font-body);
    font-size: 11px;
    color: var(--gold);
    letter-spacing: 0.02em;
}

@keyframes notification-float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-4px);
    }
}

@media (max-width: 768px) {
    .dashboard-notification {
        right: 8px;
        bottom: -12px;
        padding: 10px 14px;
        max-width: 220px;
    }
    .notification-title {
        font-size: 11px;
    }
    .notification-detail {
        font-size: 10px;
    }
    .dashboard-header,
    .dashboard-timeline,
    .dashboard-chart,
    .dashboard-footer {
        padding-left: var(--space-lg);
        padding-right: var(--space-lg);
    }
}

/* =================================
   BAND DE RÉASSURANCE
   ================================= */

.reassurance-strip {
    background-color: var(--ivory);
    border-top: 1px solid var(--grey-light);
    border-bottom: 1px solid var(--grey-light);
    padding: 28px 0;
}

.reassurance-strip .container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-md);
}

@media (min-width: 1024px) {
    .reassurance-strip .container {
        flex-direction: row;
        justify-content: center;
        gap: var(--space-2xl);
    }
}

.reassurance-eyebrow {
    font-family: var(--font-body);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--gold);
    margin: 0;
    text-align: center;
}

.reassurance-sectors {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: var(--space-sm) var(--space-lg);
    margin: 0;
    padding: 0;
    list-style: none;
}

.reassurance-sectors li {
    font-family: var(--font-display);
    font-size: 16px;
    font-weight: 500;
    color: var(--ink);
    position: relative;
    padding-right: var(--space-lg);
}

.reassurance-sectors li::after {
    content: '·';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translate(50%, -55%);
    color: var(--gold);
    font-weight: 700;
    font-size: 18px;
    line-height: 1;
}

.reassurance-sectors li:last-child {
    padding-right: 0;
}

.reassurance-sectors li:last-child::after {
    display: none;
}

@media (max-width: 768px) {
    .reassurance-sectors {
        flex-direction: column;
        gap: var(--space-sm);
    }
    .reassurance-sectors li {
        padding-right: 0;
    }
    .reassurance-sectors li::after {
        display: none;
    }
}

/* =================================
   ICÔNES DIFFÉRENCIATEURS
   ================================= */

.diff-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    background-color: rgba(30, 58, 95, 0.05);
    border: 1px solid rgba(30, 58, 95, 0.12);
    border-radius: 4px;
    color: var(--robe);
    margin-bottom: var(--space-md);
}

.diff-icon svg {
    display: block;
}

/* =================================
   SECTION DISPOSITIF
   ================================= */

.dispositif {
    background-color: #FFFFFF;
    border-top: 1px solid var(--grey-light);
    border-bottom: 1px solid var(--grey-light);
}

.dispositif-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-2xl);
    margin-top: var(--space-2xl);
}

@media (min-width: 1024px) {
    .dispositif-grid {
        grid-template-columns: 1.4fr 1fr;
        gap: var(--space-3xl);
        align-items: start;
    }
}

/* Features 2x2 */
.dispositif-features {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-xl) var(--space-2xl);
}

@media (min-width: 768px) {
    .dispositif-features {
        grid-template-columns: 1fr 1fr;
    }
}

.feature-item {
    border-left: 3px solid var(--gold);
    padding-left: var(--space-lg);
}

.feature-marker {
    display: inline-block;
    font-family: var(--font-display);
    font-size: 24px;
    font-weight: 600;
    color: var(--gold);
    line-height: 1;
    margin-bottom: var(--space-sm);
}

.feature-title {
    font-family: var(--font-display);
    font-size: 20px;
    font-weight: 600;
    line-height: 1.25;
    color: var(--ink);
    margin-bottom: var(--space-sm);
}

.feature-text {
    font-family: var(--font-body);
    font-size: 14.5px;
    line-height: 1.6;
    color: var(--anthracite);
}

/* Sidebar garanties R124 */
.dispositif-sidebar {
    position: relative;
}

@media (min-width: 1024px) {
    .dispositif-sidebar {
        position: sticky;
        top: calc(var(--header-height) + var(--space-lg));
    }
}

.sidebar-card {
    position: relative;
    background-color: var(--ink);
    color: var(--ivory);
    padding: var(--space-2xl);
    border-left: 4px solid var(--gold);
    border-radius: 4px;
    overflow: hidden;
}

.sidebar-card::before {
    content: '';
    position: absolute;
    top: -40%;
    right: -30%;
    width: 320px;
    height: 320px;
    background: radial-gradient(circle, rgba(184, 145, 92, 0.18) 0%, rgba(184, 145, 92, 0) 70%);
    pointer-events: none;
}

.sidebar-eyebrow {
    position: relative;
    font-family: var(--font-body);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: var(--space-md);
}

.sidebar-title {
    position: relative;
    font-family: var(--font-display);
    font-size: 28px;
    font-weight: 500;
    line-height: 1.2;
    color: var(--ivory);
    margin-bottom: var(--space-xl);
    letter-spacing: -0.005em;
}

.sidebar-list {
    position: relative;
    list-style: none;
    margin: 0;
    padding: 0;
}

.sidebar-list li {
    padding: var(--space-md) 0;
    border-bottom: 1px solid rgba(250, 247, 242, 0.10);
    font-family: var(--font-body);
    font-size: 13.5px;
    line-height: 1.55;
    color: var(--grey-light);
}

.sidebar-list li:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.sidebar-list li strong {
    display: block;
    font-family: var(--font-display);
    font-size: 17px;
    font-weight: 600;
    color: var(--gold);
    margin-bottom: 4px;
    letter-spacing: 0.005em;
}

@media (max-width: 768px) {
    .sidebar-card {
        padding: var(--space-xl);
    }
    .sidebar-title {
        font-size: 24px;
    }
}

/* =================================
   AUTHOR CONTEXT (témoignages)
   ================================= */

.author-context {
    display: block;
    margin-top: 4px;
    font-family: var(--font-body);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--gold);
}

/* =================================
   AJUSTEMENTS DYNAMIQUES (2026-05)
   ================================= */

/* Filet décoratif hero */
.hero-rule {
    width: 48px;
    height: 2px;
    background: var(--gold);
    margin-bottom: 20px;
}

/* Section Garanties */
.garanties {
    background: #FFFFFF;
    border-top: none;
    border-bottom: 1px solid var(--grey-light);
}
.garanties-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 32px;
    margin-top: 64px;
}
@media (min-width: 768px) {
    .garanties-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 24px;
    }
}
.garantie-card {
    padding: 36px 28px;
    background: var(--ivory);
    border: 1px solid var(--grey-light);
    border-top: 3px solid var(--gold);
    border-radius: 4px;
    transition: all 0.4s cubic-bezier(0.25, 0.1, 0.25, 1);
}
.garantie-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 40px -12px rgba(14, 17, 23, 0.12);
    border-top-width: 5px;
}
.garantie-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    margin-bottom: 24px;
    color: var(--gold);
    background: rgba(184, 145, 92, 0.08);
    border-radius: 50%;
}
.garantie-title {
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 22px;
    line-height: 1.2;
    color: var(--ink);
    margin-bottom: 12px;
    letter-spacing: -0.01em;
}
.garantie-text {
    font-size: 14px;
    line-height: 1.6;
    color: var(--anthracite);
    margin: 0;
}

/* Animations au scroll */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.7s cubic-bezier(0.25, 0.1, 0.25, 1), transform 0.7s cubic-bezier(0.25, 0.1, 0.25, 1);
}
.animate-on-scroll.is-visible {
    opacity: 1;
    transform: translateY(0);
}
@media (prefers-reduced-motion: reduce) {
    .animate-on-scroll {
        opacity: 1;
        transform: none;
        transition: none;
    }
}

/* Texture papier discrète */
body::before {
    content: "";
    position: fixed;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='180' height='180' viewBox='0 0 180 180'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/%3E%3CfeColorMatrix values='0 0 0 0 0.06 0 0 0 0 0.067 0 0 0 0 0.09 0 0 0 0.025 0'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
    pointer-events: none;
    z-index: 9999;
    opacity: 0.7;
    mix-blend-mode: multiply;
}

/* Hover states plus expressifs */
.diff-card,
.tarif-card,
.temoignage-card,
.feature-item,
.methode-step {
    transition: all 0.4s cubic-bezier(0.25, 0.1, 0.25, 1);
}
.tarif-card:hover,
.temoignage-card:hover,
.methode-step:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 40px -12px rgba(14, 17, 23, 0.1);
}

/* =================================
   TYPO HERO : SOURCE SERIF 4 (2026-05)
   ================================= */

.hero-title-v2 {
    font-family: 'Source Serif 4', 'Cormorant Garamond', Georgia, serif !important;
    font-weight: 500 !important;
    letter-spacing: -0.022em !important;
    line-height: 1.04 !important;
    color: var(--ink);
    max-width: none !important;
    margin-bottom: 28px !important;
    font-size: 44px;
    font-variation-settings: "opsz" 60;
}

@media (min-width: 768px) {
    .hero-title-v2 {
        font-size: 54px !important;
    }
}

@media (min-width: 1024px) {
    .hero-title-v2 {
        font-size: 60px !important;
    }
}

@media (min-width: 1280px) {
    .hero-title-v2 {
        font-size: 68px !important;
    }
}

.hero-title-italic {
    font-family: 'Source Serif 4', 'Cormorant Garamond', Georgia, serif !important;
    font-style: italic !important;
    font-weight: 500 !important;
    color: var(--robe) !important;
    display: block;
    font-variation-settings: "opsz" 60;
}

.hero-v2 .eyebrow {
    font-size: 12px !important;
    letter-spacing: 0.16em !important;
    margin-bottom: 24px !important;
    color: var(--gold) !important;
    font-weight: 600 !important;
}

.hero-v2 .hero-rule {
    width: 56px;
    height: 1.5px;
    background: var(--gold);
    margin-bottom: 20px;
}

/* =================================
   RECOMPOSITION H1 HERO (2026-05)
   ================================= */

.hero-title-v2 {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
}

.hero-title-line-1 {
    font-family: 'Source Serif 4', 'Cormorant Garamond', Georgia, serif;
    font-weight: 500;
    font-size: 44px;
    line-height: 1.05;
    letter-spacing: -0.022em;
    color: var(--ink);
    font-variation-settings: "opsz" 60;
    display: block;
}

.hero-title-divider {
    display: block;
    width: 32px;
    height: 1.5px;
    background: var(--gold);
    margin: 20px 0 18px 0;
    opacity: 0.7;
}

.hero-title-line-2 {
    font-family: 'Source Serif 4', 'Cormorant Garamond', Georgia, serif;
    font-style: italic !important;
    font-weight: 400 !important;
    font-size: 36px !important;
    line-height: 1.1 !important;
    letter-spacing: -0.018em !important;
    color: var(--robe) !important;
    opacity: 0.92;
    font-variation-settings: "opsz" 60;
    display: block;
    max-width: 640px;
}

@media (min-width: 768px) {
    .hero-title-line-1 {
        font-size: 54px;
    }
    .hero-title-line-2 {
        font-size: 42px !important;
    }
}

@media (min-width: 1024px) {
    .hero-title-line-1 {
        font-size: 60px;
    }
    .hero-title-line-2 {
        font-size: 46px !important;
    }
    .hero-title-divider {
        margin: 24px 0 22px 0;
    }
}

@media (min-width: 1280px) {
    .hero-title-line-1 {
        font-size: 68px;
    }
    .hero-title-line-2 {
        font-size: 52px !important;
    }
}

/* =================================
   SOURCE SERIF 4 SUR LES CHIFFRES
   ================================= */

.trust-number,
.tarif-percent,
.results-total-value,
.result-value,
.dashboard-amount,
.chart-value,
.compare-amount,
.compare-total,
.differential-amount {
    font-family: 'Source Serif 4', 'Cormorant Garamond', Georgia, serif !important;
    font-weight: 500 !important;
    font-variation-settings: "opsz" 60;
    letter-spacing: -0.015em;
}

/* =================================
   SIMULATEUR V2 (comparatif)
   ================================= */

.simulator-v2 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 32px;
    background: #FFFFFF;
    border: 1px solid var(--grey-light);
    border-radius: 6px;
    padding: 40px;
    box-shadow: 0 4px 24px -8px rgba(14, 17, 23, 0.06);
}

@media (min-width: 1024px) {
    .simulator-v2 {
        grid-template-columns: 320px 1fr;
        gap: 48px;
    }
}

.simulator-form-title {
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 18px;
    color: var(--ink);
    margin: 0 0 24px;
    padding-bottom: 16px;
    border-bottom: 1px solid var(--grey-light);
    letter-spacing: -0.01em;
}

.age-timeline {
    position: relative;
    height: 6px;
    margin: 16px 0 8px;
}
.age-timeline-track {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, #6B9B7A 0%, #C9A96E 50%, #B8623F 100%);
    border-radius: 3px;
    opacity: 0.25;
}
.age-timeline-fill {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    background: linear-gradient(90deg, #6B9B7A 0%, #C9A96E 50%, #B8623F 100%);
    border-radius: 3px;
    transition: width 0.4s cubic-bezier(0.25, 0.1, 0.25, 1);
}
.age-timeline-marker {
    position: absolute;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 14px;
    height: 14px;
    background: #FFFFFF;
    border: 2px solid var(--ink);
    border-radius: 50%;
    transition: left 0.4s cubic-bezier(0.25, 0.1, 0.25, 1);
    box-shadow: 0 2px 6px rgba(14, 17, 23, 0.15);
}
.age-timeline-labels {
    display: flex;
    justify-content: space-between;
    font-size: 10px;
    color: var(--grey-mid);
    text-transform: uppercase;
    letter-spacing: 0.06em;
    margin-top: 8px;
}

.simulator-compare {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

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

@media (min-width: 768px) {
    .compare-grid {
        grid-template-columns: 1fr 1fr;
    }
}

.compare-col {
    padding: 28px 24px;
    border-radius: 4px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.compare-without {
    background: linear-gradient(180deg, #F5F1EA 0%, #EFEAE2 100%);
    border: 1px solid var(--grey-light);
}

.compare-with {
    background: linear-gradient(180deg, #1A2B47 0%, #0E1117 100%);
    border: 1px solid rgba(184, 145, 92, 0.3);
    position: relative;
    overflow: hidden;
}

.compare-with::before {
    content: "";
    position: absolute;
    top: -60px;
    right: -60px;
    width: 180px;
    height: 180px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(184, 145, 92, 0.15) 0%, transparent 70%);
    pointer-events: none;
}

.compare-eyebrow {
    font-size: 10px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    margin: 0;
}

.compare-eyebrow-without {
    color: #B8623F;
}

.compare-eyebrow-with {
    color: var(--gold);
}

.compare-title {
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 22px;
    color: var(--ink);
    margin: 0 0 8px;
    line-height: 1.2;
    letter-spacing: -0.01em;
}

.compare-title-with {
    color: var(--ivory);
}

.compare-line {
    padding: 12px 0;
    border-bottom: 1px solid var(--grey-light);
}

.compare-line:last-of-type {
    border-bottom: none;
}

.compare-line-dark {
    border-bottom-color: rgba(250, 247, 242, 0.08);
}

.compare-line-header {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    gap: 12px;
    margin-bottom: 4px;
}

.compare-line-label {
    font-size: 13px;
    color: var(--anthracite);
    font-weight: 500;
}

.compare-line-dark .compare-line-label {
    color: rgba(250, 247, 242, 0.85);
}

.compare-line-hint {
    font-size: 11px;
    color: var(--grey-mid);
    margin: 0;
    font-style: italic;
    line-height: 1.4;
}

.compare-line-dark .compare-line-hint {
    color: rgba(250, 247, 242, 0.5);
}

.compare-amount {
    font-size: 18px;
    color: var(--ink);
    transition: all 0.4s cubic-bezier(0.25, 0.1, 0.25, 1);
}

.compare-line-dark .compare-amount {
    color: var(--ivory);
}

.compare-amount-without {
    color: var(--ink);
}

.compare-amount-loss {
    color: #B8623F;
}

.compare-amount-gain {
    color: var(--ivory);
}

.compare-amount-fee {
    color: rgba(250, 247, 242, 0.7);
}

.compare-amount-zero {
    color: var(--gold);
    font-weight: 600;
}

.compare-total-block {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    padding-top: 16px;
    margin-top: 8px;
    border-top: 2px solid;
}

.compare-total-without {
    border-top-color: var(--grey-mid);
}

.compare-total-with {
    border-top-color: var(--gold);
}

.compare-total-label {
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 16px;
    color: var(--ink);
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.compare-total-with .compare-total-label {
    color: var(--ivory);
}

.compare-total {
    font-size: 28px;
    color: var(--ink);
}

.compare-total-gold {
    color: var(--gold);
}

.differential-block {
    background: var(--ivory);
    border: 1px solid var(--gold);
    border-left-width: 4px;
    border-radius: 4px;
    padding: 32px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.differential-block::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 600px;
    height: 600px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(184, 145, 92, 0.04) 0%, transparent 70%);
    pointer-events: none;
}

.differential-content {
    position: relative;
    z-index: 1;
    margin-bottom: 24px;
}

.differential-eyebrow {
    font-size: 11px;
    font-weight: 600;
    color: var(--gold);
    text-transform: uppercase;
    letter-spacing: 0.16em;
    margin: 0 0 12px;
}

.differential-amount {
    font-size: 56px;
    color: var(--gold);
    margin: 0 0 12px;
    line-height: 1;
    animation: differential-pulse 4s ease-in-out infinite;
}

@keyframes differential-pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.015); }
}

.differential-detail {
    font-size: 15px;
    color: var(--anthracite);
    margin: 0 0 20px;
    font-style: italic;
}

.differential-progress {
    height: 4px;
    background: rgba(184, 145, 92, 0.15);
    border-radius: 2px;
    overflow: hidden;
    max-width: 320px;
    margin: 0 auto;
}

.differential-progress-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--gold) 0%, #D4AE74 100%);
    border-radius: 2px;
    width: 0;
    transition: width 0.8s cubic-bezier(0.25, 0.1, 0.25, 1);
}

.differential-cta {
    position: relative;
    z-index: 1;
    margin: 0 auto;
}

.differential-note {
    position: relative;
    z-index: 1;
    font-size: 12px;
    color: var(--grey-mid);
    margin: 16px 0 0;
    font-style: italic;
}

@media (min-width: 768px) {
    .differential-amount {
        font-size: 72px;
    }
}

/* =================================
   COMPACTAGE HERO (2026-05)
   ================================= */

.hero-title-line-1 {
    font-size: 38px !important;
}

.hero-title-line-2 {
    font-size: 30px !important;
    max-width: 720px !important;
}

@media (min-width: 768px) {
    .hero-title-line-1 {
        font-size: 46px !important;
    }
    .hero-title-line-2 {
        font-size: 36px !important;
    }
}

@media (min-width: 1024px) {
    .hero-title-line-1 {
        font-size: 50px !important;
    }
    .hero-title-line-2 {
        font-size: 38px !important;
    }
}

@media (min-width: 1280px) {
    .hero-title-line-1 {
        font-size: 56px !important;
    }
    .hero-title-line-2 {
        font-size: 42px !important;
    }
}

.hero-title-divider {
    margin: 14px 0 12px 0 !important;
}

@media (min-width: 1024px) {
    .hero-title-divider {
        margin: 16px 0 14px 0 !important;
    }
}

.hero-title-v2 {
    margin-bottom: 20px !important;
}

.hero-v2 {
    padding-top: 48px !important;
    padding-bottom: 48px !important;
}

@media (min-width: 1024px) {
    .hero-v2 {
        padding-top: 56px !important;
        padding-bottom: 56px !important;
    }
}

.hero-v2 .eyebrow {
    margin-bottom: 16px !important;
}

.hero-v2 .hero-rule {
    margin-bottom: 14px !important;
}

.hero-v2 .hero-lead {
    font-size: 15px !important;
    line-height: 1.55 !important;
    margin-bottom: 24px !important;
    max-width: 540px;
}

.hero-v2 .hero-ctas {
    margin-bottom: 24px !important;
    gap: 12px !important;
}

.hero-v2 .hero-trust {
    margin-top: 20px !important;
    padding-top: 24px !important;
}

.hero-v2 .trust-number {
    font-size: 26px !important;
}

.hero-v2 .trust-label {
    font-size: 11px !important;
    line-height: 1.35 !important;
}

/* =================================
   COMPACTAGE SIMULATEUR
   ================================= */

.simulator-v2 {
    padding: 28px !important;
    gap: 28px !important;
}

@media (min-width: 1024px) {
    .simulator-v2 {
        padding: 32px !important;
        gap: 32px !important;
        grid-template-columns: 280px 1fr !important;
    }
}

.simulator-form-title {
    font-size: 16px !important;
    margin-bottom: 18px !important;
    padding-bottom: 12px !important;
}

.simulator-form .form-group {
    margin-bottom: 18px !important;
}

.simulator-form label {
    font-size: 11px !important;
    margin-bottom: 8px !important;
}

.simulator-compare {
    gap: 16px !important;
}

.compare-grid {
    gap: 12px !important;
}

.compare-col {
    padding: 22px 20px !important;
    gap: 14px !important;
}

.compare-eyebrow {
    font-size: 9px !important;
    letter-spacing: 0.14em !important;
}

.compare-title {
    font-size: 18px !important;
    margin-bottom: 4px !important;
}

.compare-line {
    padding: 8px 0 !important;
}

.compare-line-header {
    margin-bottom: 2px !important;
}

.compare-line-label {
    font-size: 12px !important;
}

.compare-line-hint {
    font-size: 10px !important;
}

.compare-amount {
    font-size: 16px !important;
}

.compare-total-block {
    padding-top: 12px !important;
    margin-top: 4px !important;
}

.compare-total-label {
    font-size: 13px !important;
}

.compare-total {
    font-size: 22px !important;
}

.differential-block {
    padding: 24px !important;
}

.differential-content {
    margin-bottom: 16px !important;
}

.differential-eyebrow {
    font-size: 10px !important;
    margin-bottom: 8px !important;
}

.differential-amount {
    font-size: 40px !important;
    margin-bottom: 8px !important;
}

@media (min-width: 768px) {
    .differential-amount {
        font-size: 52px !important;
    }
}

.differential-detail {
    font-size: 13px !important;
    margin-bottom: 14px !important;
}

.differential-note {
    font-size: 11px !important;
    margin-top: 12px !important;
}

/* =================================
   SLIDER ANCIENNETÉ INTERACTIF
   ================================= */

.form-group-slider {
    margin-bottom: 18px;
}

.slider-header {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    margin-bottom: 14px;
}

.slider-header label {
    margin-bottom: 0 !important;
}

.slider-value {
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 14px;
    color: var(--robe);
    letter-spacing: -0.005em;
}

.age-slider-wrapper {
    position: relative;
    height: 28px;
    display: flex;
    align-items: center;
    margin-bottom: 8px;
}

.age-slider-track {
    position: absolute;
    left: 0;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    height: 6px;
    background: linear-gradient(90deg, #6B9B7A 0%, #C9A96E 50%, #B8623F 100%);
    border-radius: 3px;
    pointer-events: none;
    z-index: 1;
}

.age-slider {
    position: relative;
    width: 100%;
    height: 28px;
    appearance: none;
    -webkit-appearance: none;
    background: transparent;
    margin: 0;
    padding: 0;
    cursor: pointer;
    z-index: 2;
}

.age-slider::-webkit-slider-runnable-track {
    height: 28px;
    background: transparent;
    cursor: pointer;
}

.age-slider::-moz-range-track {
    height: 28px;
    background: transparent;
    cursor: pointer;
}

.age-slider::-webkit-slider-thumb {
    appearance: none;
    -webkit-appearance: none;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: #FFFFFF;
    border: 2px solid var(--ink);
    box-shadow: 0 2px 8px rgba(14, 17, 23, 0.2);
    cursor: grab;
    transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
    margin-top: 0;
    position: relative;
    z-index: 3;
}

.age-slider::-moz-range-thumb {
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: #FFFFFF;
    border: 2px solid var(--ink);
    box-shadow: 0 2px 8px rgba(14, 17, 23, 0.2);
    cursor: grab;
    transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.age-slider:hover::-webkit-slider-thumb {
    transform: scale(1.1);
    border-color: var(--robe);
    box-shadow: 0 4px 12px rgba(30, 58, 95, 0.3);
}

.age-slider:hover::-moz-range-thumb {
    transform: scale(1.1);
    border-color: var(--robe);
    box-shadow: 0 4px 12px rgba(30, 58, 95, 0.3);
}

.age-slider:active::-webkit-slider-thumb {
    cursor: grabbing;
    transform: scale(1.15);
    border-color: var(--gold);
}

.age-slider:active::-moz-range-thumb {
    cursor: grabbing;
    transform: scale(1.15);
    border-color: var(--gold);
}

.age-slider:focus {
    outline: none;
}

.age-slider:focus-visible::-webkit-slider-thumb {
    border-color: var(--gold);
    box-shadow: 0 0 0 4px rgba(184, 145, 92, 0.25);
}

.age-timeline-labels {
    display: flex;
    justify-content: space-between;
    font-size: 10px;
    color: var(--grey-mid);
    text-transform: uppercase;
    letter-spacing: 0.06em;
    margin-top: 4px;
}

/* =================================
   NOTE MÉTHODOLOGIQUE SIMULATEUR
   ================================= */

.simulator-methodology {
    max-width: 720px;
    margin: 24px auto 0;
    padding: 16px 20px;
    font-size: 12px;
    line-height: 1.6;
    color: var(--grey-mid);
    text-align: center;
    font-style: italic;
    border-top: 1px solid var(--grey-light);
}

.simulator-methodology .methodology-label {
    font-weight: 600;
    color: var(--anthracite);
    font-style: normal;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    font-size: 11px;
}

/* =================================
   SIMULATEUR V3 : 3 MODULES DÉDIÉS
   ================================= */

.simulator-v3 {
    display: flex;
    flex-direction: column;
    gap: 0;
    background: transparent;
    border: none;
    padding: 0;
    box-shadow: none;
}

.sim-module {
    background: #FFFFFF;
    border: 1px solid var(--grey-light);
    border-radius: 6px;
    padding: 32px 28px;
    box-shadow: 0 4px 24px -8px rgba(14, 17, 23, 0.06);
}

.sim-module + .sim-module {
    margin-top: 16px;
}

@media (min-width: 1024px) {
    .sim-module {
        padding: 40px 36px;
    }
}

.sim-module-header {
    margin-bottom: 28px;
    text-align: center;
    max-width: 720px;
    margin-left: auto;
    margin-right: auto;
}

.sim-module-eyebrow {
    font-size: 11px;
    font-weight: 600;
    color: var(--gold);
    text-transform: uppercase;
    letter-spacing: 0.14em;
    margin: 0 0 12px;
}

.sim-module-title {
    font-family: 'Source Serif 4', 'Cormorant Garamond', Georgia, serif;
    font-weight: 500;
    font-size: 26px;
    line-height: 1.2;
    color: var(--ink);
    margin: 0 0 12px;
    letter-spacing: -0.018em;
    font-variation-settings: "opsz" 60;
}

@media (min-width: 768px) {
    .sim-module-title {
        font-size: 32px;
    }
}

.sim-title-italic {
    font-style: italic;
    font-weight: 400;
    color: var(--robe);
    opacity: 0.92;
}

.sim-module-lead {
    font-size: 14px;
    line-height: 1.6;
    color: var(--anthracite);
    margin: 0;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Module 1 : Slider d'ancienneté */
.sim-module-age {
    background: linear-gradient(180deg, #FFFFFF 0%, #FBF9F5 100%);
    border-color: rgba(184, 145, 92, 0.25);
}

.age-slider-block {
    max-width: 760px;
    margin: 0 auto 32px;
    padding: 0 12px;
}

.age-slider-wrapper {
    position: relative;
    height: 44px;
    width: 100%;
    margin-bottom: 16px;
}

.age-slider-track-bg {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 8px;
    transform: translateY(-50%);
    background: linear-gradient(90deg, #6B9B7A 0%, #C9A96E 50%, #B8623F 100%);
    border-radius: 4px;
    opacity: 0.3;
    pointer-events: none;
    z-index: 1;
}

.age-slider-track-fill {
    position: absolute;
    top: 50%;
    left: 0;
    height: 8px;
    transform: translateY(-50%);
    background: linear-gradient(90deg, #6B9B7A 0%, #C9A96E 50%, #B8623F 100%);
    border-radius: 4px;
    pointer-events: none;
    z-index: 2;
    transition: width 0.3s cubic-bezier(0.25, 0.1, 0.25, 1);
}

.age-slider-ticks {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 16px;
    transform: translateY(-50%);
    display: flex;
    justify-content: space-between;
    pointer-events: none;
    z-index: 3;
    padding: 0 2px;
}

.tick {
    width: 2px;
    height: 16px;
    background: rgba(14, 17, 23, 0.3);
    border-radius: 1px;
}

.age-slider {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 44px;
    appearance: none;
    -webkit-appearance: none;
    background: transparent;
    margin: 0;
    padding: 0;
    cursor: grab;
    z-index: 5;
    outline: none;
}

.age-slider:active {
    cursor: grabbing;
}

.age-slider::-webkit-slider-runnable-track {
    height: 44px;
    background: transparent;
    cursor: grab;
    border: none;
}

.age-slider::-moz-range-track {
    height: 44px;
    background: transparent;
    cursor: grab;
    border: none;
}

.age-slider::-webkit-slider-thumb {
    appearance: none;
    -webkit-appearance: none;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: #FFFFFF;
    border: 4px solid var(--ink);
    box-shadow: 0 4px 16px rgba(14, 17, 23, 0.3);
    cursor: grab;
    transition: transform 0.18s ease, border-color 0.18s ease, box-shadow 0.25s ease;
    margin-top: 6px;
    position: relative;
    z-index: 6;
}

.age-slider::-moz-range-thumb {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: #FFFFFF;
    border: 4px solid var(--ink);
    box-shadow: 0 4px 16px rgba(14, 17, 23, 0.3);
    cursor: grab;
    transition: transform 0.18s ease, border-color 0.18s ease, box-shadow 0.25s ease;
}

.age-slider:hover::-webkit-slider-thumb {
    transform: scale(1.12);
    border-color: var(--robe);
    box-shadow: 0 6px 20px rgba(30, 58, 95, 0.4), 0 0 0 8px rgba(30, 58, 95, 0.1);
}

.age-slider:hover::-moz-range-thumb {
    transform: scale(1.12);
    border-color: var(--robe);
    box-shadow: 0 6px 20px rgba(30, 58, 95, 0.4), 0 0 0 8px rgba(30, 58, 95, 0.1);
}

.age-slider:active::-webkit-slider-thumb {
    cursor: grabbing;
    transform: scale(1.18);
    border-color: var(--gold);
    box-shadow: 0 8px 24px rgba(184, 145, 92, 0.5), 0 0 0 10px rgba(184, 145, 92, 0.18);
}

.age-slider:active::-moz-range-thumb {
    cursor: grabbing;
    transform: scale(1.18);
    border-color: var(--gold);
    box-shadow: 0 8px 24px rgba(184, 145, 92, 0.5), 0 0 0 10px rgba(184, 145, 92, 0.18);
}

.age-slider:focus-visible::-webkit-slider-thumb {
    border-color: var(--gold);
    box-shadow: 0 0 0 8px rgba(184, 145, 92, 0.3);
}

.age-slider:focus-visible::-moz-range-thumb {
    border-color: var(--gold);
    box-shadow: 0 0 0 8px rgba(184, 145, 92, 0.3);
}

.age-slider-stops {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 8px;
    margin-top: 8px;
}

.age-stop {
    background: transparent;
    border: 1px solid transparent;
    border-radius: 4px;
    padding: 10px 8px;
    cursor: pointer;
    transition: all 0.25s ease;
    display: flex;
    flex-direction: column;
    gap: 4px;
    text-align: center;
    font-family: inherit;
}

.age-stop:hover {
    background: rgba(184, 145, 92, 0.05);
    border-color: rgba(184, 145, 92, 0.2);
}

.age-stop.is-active {
    background: rgba(184, 145, 92, 0.08);
    border-color: var(--gold);
}

.age-stop-label {
    font-family: 'Source Serif 4', 'Cormorant Garamond', Georgia, serif;
    font-weight: 600;
    font-size: 13px;
    color: var(--ink);
    letter-spacing: -0.005em;
}

.age-stop.is-active .age-stop-label {
    color: var(--robe);
}

.age-stop-status {
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--grey-mid);
    font-weight: 500;
}

.age-stop.is-active .age-stop-status {
    color: var(--gold);
}

@media (max-width: 768px) {
    .age-slider-stops {
        grid-template-columns: 1fr 1fr;
    }
}

/* Affichage des taux dynamiques */
.age-rates-display {
    display: grid;
    grid-template-columns: 1fr auto 1fr 1fr;
    gap: 16px;
    align-items: center;
    max-width: 760px;
    margin: 0 auto;
    padding: 24px;
    background: var(--ivory);
    border: 1px solid rgba(184, 145, 92, 0.2);
    border-radius: 4px;
}

@media (max-width: 768px) {
    .age-rates-display {
        grid-template-columns: 1fr;
        gap: 12px;
    }
    .age-rate-divider {
        display: none;
    }
}

.age-rate-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 4px;
}

.age-rate-eyebrow {
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--grey-mid);
    font-weight: 600;
}

.age-rate-value {
    font-family: 'Source Serif 4', 'Cormorant Garamond', Georgia, serif;
    font-weight: 600;
    font-size: 28px;
    line-height: 1;
    color: var(--ink);
    letter-spacing: -0.015em;
    transition: color 0.3s ease;
    font-variation-settings: "opsz" 60;
}

.age-rate-internal .age-rate-value {
    color: var(--anthracite);
    opacity: 0.7;
}

.age-rate-credencio .age-rate-value {
    color: var(--robe);
}

.age-rate-differential .age-rate-value {
    color: var(--gold);
}

.age-rate-detail {
    font-size: 11px;
    color: var(--grey-mid);
    font-style: italic;
}

.age-rate-divider {
    font-family: var(--font-display);
    font-size: 24px;
    color: var(--gold);
    opacity: 0.5;
    line-height: 1;
}

/* Module 2 : Inputs + comparatif */
.sim-compare-layout {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
}

@media (min-width: 1024px) {
    .sim-compare-layout {
        grid-template-columns: 280px 1fr;
        gap: 32px;
    }
}

.sim-inputs {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.sim-inputs .form-group {
    margin-bottom: 0;
}

.sim-inputs-info {
    display: flex;
    gap: 10px;
    align-items: flex-start;
    padding: 14px 16px;
    background: rgba(30, 58, 95, 0.04);
    border-left: 3px solid var(--robe);
    border-radius: 0 4px 4px 0;
    margin-top: 8px;
}

.sim-inputs-info-icon {
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: var(--robe);
    color: var(--ivory);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Source Serif 4', Georgia, serif;
    font-style: italic;
    font-weight: 600;
    font-size: 12px;
    flex-shrink: 0;
    margin-top: 1px;
}

.sim-inputs-info p {
    font-size: 12px;
    line-height: 1.5;
    color: var(--anthracite);
    margin: 0;
}

/* Module 3 : Différentiel */
.sim-module-diff {
    background: linear-gradient(180deg, var(--ivory) 0%, #F5F0E6 100%);
    border-color: var(--gold);
    border-left-width: 4px;
    text-align: center;
}

.sim-module-diff .differential-block {
    border: none;
    background: transparent;
    padding: 0;
}

.sim-module-diff .differential-block::before {
    width: 800px;
    height: 800px;
}

/* =================================
   CTAs INTERMÉDIAIRES (3 PICS)
   ================================= */

/* ===== CTA 1 : DANS LA SECTION DIFFÉRENCIATEURS NOIRE ===== */
.section-cta-dark {
    margin-top: 56px;
    padding-top: 32px;
    border-top: 1px solid rgba(184, 145, 92, 0.2);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    text-align: center;
    position: relative;
    z-index: 1;
}

@media (min-width: 768px) {
    .section-cta-dark {
        flex-direction: row;
        justify-content: center;
        gap: 32px;
    }
}

.section-cta-text {
    font-family: 'Source Serif 4', 'Cormorant Garamond', Georgia, serif;
    font-weight: 500;
    font-size: 20px;
    line-height: 1.4;
    color: var(--ivory);
    margin: 0;
    letter-spacing: -0.01em;
    font-variation-settings: "opsz" 60;
}

.section-cta-italic {
    font-style: italic;
    color: var(--gold);
}

.section-cta-btn {
    background: var(--gold) !important;
    color: var(--ink) !important;
    border-color: var(--gold) !important;
    flex-shrink: 0;
}

.section-cta-btn:hover {
    background: #D4AE74 !important;
    border-color: #D4AE74 !important;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(184, 145, 92, 0.3);
}

/* ===== CTA 2 : BANDEAU ENTRE MÉTHODE ET DISPOSITIF ===== */
.cta-band {
    padding: 56px 0;
    background: var(--ivory);
    border-top: 1px solid var(--grey-light);
    border-bottom: 1px solid var(--grey-light);
    position: relative;
}

.cta-band::before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 4px;
    height: 80px;
    background: var(--gold);
}

.cta-band-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
}

@media (min-width: 768px) {
    .cta-band-content {
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
        gap: 40px;
    }
}

.cta-band-text {
    flex: 1;
}

.cta-band-eyebrow {
    font-size: 11px;
    font-weight: 600;
    color: var(--gold);
    text-transform: uppercase;
    letter-spacing: 0.14em;
    margin: 0 0 10px;
}

.cta-band-title {
    font-family: 'Source Serif 4', 'Cormorant Garamond', Georgia, serif;
    font-weight: 500;
    font-size: 22px;
    line-height: 1.3;
    color: var(--ink);
    margin: 0;
    letter-spacing: -0.015em;
    font-variation-settings: "opsz" 60;
    max-width: 720px;
}

@media (min-width: 768px) {
    .cta-band-title {
        font-size: 26px;
    }
}

.cta-band-italic {
    font-style: italic;
    color: var(--robe);
    font-weight: 400;
}

.cta-band-btn {
    flex-shrink: 0;
}

/* ===== CTA 3 : BLOC VALIDATION APRÈS TÉMOIGNAGES ===== */
.cta-validation {
    padding: 80px 0;
    background: linear-gradient(180deg, var(--ivory) 0%, #F5F0E6 100%);
    position: relative;
    overflow: hidden;
}

.cta-validation::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 800px;
    height: 800px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(184, 145, 92, 0.06) 0%, transparent 60%);
    pointer-events: none;
}

.cta-validation-content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 720px;
    margin: 0 auto;
}

.cta-validation-eyebrow {
    font-size: 12px;
    font-weight: 600;
    color: var(--gold);
    text-transform: uppercase;
    letter-spacing: 0.16em;
    margin: 0 0 16px;
}

.cta-validation-title {
    font-family: 'Source Serif 4', 'Cormorant Garamond', Georgia, serif;
    font-weight: 500;
    font-size: clamp(26px, 4vw, 38px);
    line-height: 1.2;
    color: var(--ink);
    margin: 0 0 32px;
    letter-spacing: -0.018em;
    font-variation-settings: "opsz" 60;
}

.cta-validation-italic {
    font-style: italic;
    color: var(--robe);
    font-weight: 400;
    display: block;
    margin-top: 4px;
}

.cta-validation-btn {
    margin: 0 auto;
}

.cta-validation-note {
    font-size: 13px;
    color: var(--grey-mid);
    margin: 20px 0 0;
    font-style: italic;
}

/* CTA dans la section sombre (texte + filet) */
.section-cta-dark {
    border-top-color: rgba(184, 145, 92, 0.25) !important;
}

.section-cta-text {
    color: var(--ivory) !important;
}

/* =================================
   SECTION DARK : DÉFINITION FINALE UNIQUE
   (transition franche, filet or 1px, aucun dégradé blanchâtre)
   ================================= */

.section-dark {
    background: linear-gradient(180deg, #1A2B47 0%, #142136 100%) !important;
    color: var(--ivory);
    position: relative;
    overflow: hidden;
    border-top: 1px solid var(--gold) !important;
    border-bottom: 1px solid var(--gold) !important;
    box-shadow:
        inset 0 1px 0 rgba(184, 145, 92, 0.4),
        inset 0 -1px 0 rgba(184, 145, 92, 0.4);
}

.section-dark::before {
    content: "" !important;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 1000px;
    height: 1000px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(184, 145, 92, 0.08) 0%, transparent 60%) !important;
    pointer-events: none;
    z-index: 0;
}

.section-dark::after {
    content: none !important;
    display: none !important;
    background: none !important;
}

.section-dark .container {
    position: relative;
    z-index: 1;
}

/* =================================
   CARDS DIFFÉRENCIATEURS : IVOIRE PERMANENT, HALO BLEU INTÉRIEUR AU HOVER
   (définition unique, fond inchangé au hover, inner glow bleu en 1s)
   ================================= */

.section-dark .diff-card {
    background: linear-gradient(180deg, #FAF7F2 0%, #F5F0E6 100%) !important;
    border: 1px solid rgba(250, 247, 242, 0.15) !important;
    border-radius: 14px !important;
    backdrop-filter: none !important;
    box-shadow:
        0 12px 40px -8px rgba(14, 17, 23, 0.5),
        0 4px 16px -4px rgba(14, 17, 23, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.6),
        inset 0 0 0 0 rgba(30, 58, 95, 0) !important;
    transition:
        transform 1s cubic-bezier(0.25, 0.1, 0.25, 1),
        border-color 1s cubic-bezier(0.25, 0.1, 0.25, 1),
        box-shadow 1s cubic-bezier(0.25, 0.1, 0.25, 1) !important;
    position: relative;
    overflow: hidden;
    padding: 36px 32px !important;
    display: flex !important;
    flex-direction: column !important;
    justify-content: center !important;
    align-items: flex-start !important;
    gap: 14px !important;
    min-height: 280px;
}

.section-dark .diff-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent 0%, var(--gold) 50%, transparent 100%);
    opacity: 0.4;
    transition: opacity 1s ease, height 1s ease;
    z-index: 1;
    border-top-left-radius: 14px;
    border-top-right-radius: 14px;
}

.section-dark .diff-card:hover {
    background: linear-gradient(180deg, #FAF7F2 0%, #F5F0E6 100%) !important;
    border-color: var(--gold) !important;
    transform: translateY(-6px) !important;
    box-shadow:
        0 24px 56px -12px rgba(14, 17, 23, 0.55),
        0 12px 28px -8px rgba(14, 17, 23, 0.45),
        inset 0 1px 0 rgba(255, 255, 255, 0.6),
        inset 0 0 60px 0 rgba(30, 58, 95, 0.5),
        inset 0 0 0 1px rgba(184, 145, 92, 0.4) !important;
}

.section-dark .diff-card:hover::before {
    opacity: 1;
    height: 4px;
}

.section-dark .diff-icon {
    background: rgba(184, 145, 92, 0.1) !important;
    border: 1px solid rgba(184, 145, 92, 0.3) !important;
    color: var(--gold) !important;
    box-shadow:
        0 2px 8px -2px rgba(184, 145, 92, 0.15),
        inset 0 1px 0 rgba(255, 255, 255, 0.5) !important;
    transition: all 1s cubic-bezier(0.25, 0.1, 0.25, 1) !important;
    border-radius: 10px !important;
    margin-bottom: 0 !important;
}

.section-dark .diff-card:hover .diff-icon {
    transform: scale(1.08);
    background: rgba(184, 145, 92, 0.2) !important;
    border-color: var(--gold) !important;
    box-shadow:
        0 6px 20px -2px rgba(184, 145, 92, 0.4),
        0 0 0 4px rgba(184, 145, 92, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.6) !important;
}

.section-dark .diff-number {
    color: var(--gold) !important;
    font-size: 26px !important;
    margin: 0 !important;
    opacity: 0.9;
    line-height: 1;
}

.section-dark .diff-title {
    color: var(--ink) !important;
    font-size: 22px !important;
    margin: 0 !important;
    line-height: 1.25 !important;
    letter-spacing: -0.012em;
}

.section-dark .diff-text {
    color: var(--anthracite) !important;
    line-height: 1.65 !important;
    margin: 0 !important;
}

.section-dark .section-title {
    color: var(--ivory) !important;
}

.section-dark .eyebrow {
    color: var(--gold) !important;
}

/* =================================
   AUDIT UX/COPYWRITING : 4 AJUSTEMENTS CSS
   ================================= */

/* B4 — Trust numbers du hero plus présents */
.hero-v2 .trust-number {
    font-size: 36px !important;
    color: var(--gold) !important;
    font-weight: 600 !important;
    letter-spacing: -0.02em !important;
}

.hero-v2 .trust-label {
    font-size: 11px !important;
    letter-spacing: 0.1em !important;
    margin-top: 6px;
    color: var(--anthracite) !important;
}

@media (min-width: 1280px) {
    .hero-v2 .trust-number {
        font-size: 40px !important;
    }
}

/* B7 — Synthèse 92% en bas de section méthode */
.methode-synthese {
    margin-top: 64px;
    padding: 32px;
    background: linear-gradient(180deg, rgba(184, 145, 92, 0.08) 0%, rgba(184, 145, 92, 0.03) 100%);
    border-left: 4px solid var(--gold);
    border-radius: 4px;
    text-align: center;
    max-width: 720px;
    margin-left: auto;
    margin-right: auto;
}

.methode-synthese-label {
    font-size: 11px;
    font-weight: 600;
    color: var(--gold);
    text-transform: uppercase;
    letter-spacing: 0.14em;
    margin: 0 0 8px;
}

.methode-synthese-text {
    font-family: 'Source Serif 4', 'Cormorant Garamond', Georgia, serif;
    font-weight: 500;
    font-size: 22px;
    line-height: 1.4;
    color: var(--ink);
    margin: 0;
    letter-spacing: -0.01em;
    font-variation-settings: "opsz" 60;
}

.methode-synthese-text strong {
    color: var(--gold);
    font-weight: 600;
    font-size: 28px;
}

/* C1 — Italique or dans cta-title final */
.cta-title .italic {
    font-style: italic;
    color: var(--gold);
    font-weight: 400;
}

/* C3 — Différentiel simulateur renforcé */
.differential-amount {
    color: var(--gold) !important;
    text-shadow: 0 2px 12px rgba(184, 145, 92, 0.2);
}

.differential-block {
    background: linear-gradient(180deg, var(--ivory) 0%, #F5EFE3 100%) !important;
    border: 1px solid var(--gold) !important;
    border-left-width: 4px !important;
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.6),
        0 8px 24px -8px rgba(184, 145, 92, 0.2) !important;
}

