:root {
    --bg: #F8FAFC;
    --card: #FFFFFF;
    --text: #0F172A;
    --muted: #64748B;
    
    /* Brand Colors — charte MySEM : bleu marine + orange */
    --brand-blue: #1E3A8A;
    --brand-blue-light: #2563EB;
    --brand-blue-soft: #EFF6FF;
    --brand-green: #F59E0B;
    --brand-green-light: #FBBF24;
    --brand-green-soft: #FEF3C7;

    --primary: var(--brand-blue);
    --primary-light: var(--brand-blue-light);
    --accent: var(--brand-green);
    --accent-light: var(--brand-green-light);
    --accent-soft: var(--brand-green-soft);
    
    --border: #E2E8F0;
    --success: #10B981;
    --success-soft: #D1FAE5;
    --error: #EF4444;
    --warning: #F59E0B;

    /* Animation timings */
    --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);
    --ease-out-back: cubic-bezier(0.34, 1.56, 0.64, 1);
    --ease-smooth: cubic-bezier(0.4, 0, 0.2, 1);
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    background: var(--bg);
    color: var(--text);
    font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    overflow-x: hidden;
}

/* ================================
   ANIMATIONS KEYFRAMES
   ================================ */

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* ================================
   HEADER & NAVIGATION
   ================================ */

.site-header {
    width: 100%;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1000;
    transition: all 0.4s var(--ease-smooth);
    border-bottom: 1px solid transparent;
}

.header-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: all 0.4s var(--ease-smooth);
}

.site-header.scrolled {
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(226, 232, 240, 0.8);
    box-shadow: 0 4px 20px -5px rgba(0, 0, 0, 0.05);
}

.site-header.scrolled .header-container {
    padding: 12px 24px;
}

.brand {
    display: inline-flex;
    align-items: center;
    transition: transform 0.3s var(--ease-out-back);
}

.brand:hover {
    transform: scale(1.02);
}

.brand img {
    display: block;
    height: 38px;
    width: auto;
    transition: height 0.4s var(--ease-smooth);
}

.brand-logo-wrapper {
    background: #ffffff;
    padding: 6px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    border: 1px solid var(--border);
}

.site-header.scrolled .brand img {
    height: 32px;
}

/* Desktop Nav */
.nav-desktop {
    display: flex;
    align-items: center;
    gap: 4px;
}

.nav-desktop a {
    color: var(--muted);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.92rem;
    padding: 8px 16px;
    border-radius: 10px;
    transition: all 0.25s ease;
    position: relative;
}

.nav-desktop a:not(.button):hover {
    color: var(--text);
    background: rgba(15, 23, 42, 0.05);
}

.nav-desktop a:not(.button).active {
    color: var(--brand-blue);
    background: var(--brand-blue-soft);
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    width: 40px;
    height: 40px;
    padding: 0;
    background: transparent;
    border: none;
    box-shadow: none;
    cursor: pointer;
    position: relative;
    z-index: 1001;
}

.mobile-menu-toggle:hover {
    background: rgba(15, 23, 42, 0.05);
    transform: none;
}

.hamburger {
    display: block;
    width: 20px;
    height: 2px;
    background: var(--text);
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    transition: all 0.3s ease;
}

.hamburger::before,
.hamburger::after {
    content: '';
    display: block;
    width: 20px;
    height: 2px;
    background: var(--text);
    position: absolute;
    transition: all 0.3s ease;
}

.hamburger::before { top: -6px; }
.hamburger::after { top: 6px; }

.mobile-menu-toggle.active .hamburger {
    background: transparent;
}

.mobile-menu-toggle.active .hamburger::before {
    top: 0;
    transform: rotate(45deg);
}

.mobile-menu-toggle.active .hamburger::after {
    top: 0;
    transform: rotate(-45deg);
}

/* Mobile Nav Overlay */
.nav-mobile {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: #ffffff;
    z-index: 1000;
    padding: 100px 24px 40px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.4s var(--ease-out-expo);
}

.nav-mobile.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.nav-mobile-content {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.nav-mobile-content a {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text);
    text-decoration: none;
    padding: 12px 0;
    border-bottom: 1px solid var(--border);
    transition: color 0.2s ease;
}

.nav-mobile-content a:last-child {
    border-bottom: none;
}

.nav-mobile-content .button {
    margin-top: 12px;
    padding: 16px;
    justify-content: center;
}

.full-width {
    width: 100%;
}

.mobile-inline-form {
    display: block;
    width: 100%;
}

/* ================================
   BUTTONS
   ================================ */

.button,
button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    border: 0;
    border-radius: 8px;
    background: var(--primary);
    color: #fff;
    cursor: pointer;
    font-weight: 500;
    font-size: 0.95rem;
    padding: 12px 20px;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
    transition: all 0.2s ease;
    text-decoration: none;
}

.button:hover,
button:hover {
    background: var(--primary-light);
    transform: translateY(-1px);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.button:active,
button:active {
    transform: translateY(0);
}

.button.secondary {
    background: #ffffff;
    color: var(--text);
    border: 1px solid var(--border);
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
}

.button.secondary:hover {
    background: #f8fafc;
    border-color: #cbd5e1;
}

.button.small {
    padding: 8px 16px;
    font-size: 0.9rem;
}

.button.large {
    padding: 14px 28px;
    font-size: 1.05rem;
}

.link-button {
    background: transparent;
    color: var(--muted);
    padding: 8px 16px;
    box-shadow: none;
    border-radius: 8px;
}

.link-button:hover {
    background: rgba(15, 23, 42, 0.04);
    color: var(--text);
    transform: none;
    box-shadow: none;
}

.inline-form {
    display: inline;
}

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

main {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    padding-top: 120px;
}

.hero {
    display: grid;
    grid-template-columns: minmax(0, 1.2fr) minmax(300px, 0.8fr);
    gap: 64px;
    align-items: center;
    padding: 60px 0 100px;
}

.hero-content {
    animation: fadeInUp 0.8s var(--ease-out-expo) forwards;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #ffffff;
    border: 1px solid var(--border);
    border-radius: 50px;
    padding: 6px 14px;
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--muted);
    margin-bottom: 24px;
}

.hero h1 {
    margin: 0 0 24px 0;
    font-size: clamp(2.5rem, 5vw, 4rem);
    line-height: 1.1;
    font-weight: 700;
    letter-spacing: -0.03em;
    color: var(--primary);
}

.lead {
    color: var(--muted);
    font-size: 1.2rem;
    line-height: 1.7;
    margin-bottom: 36px;
    max-width: 540px;
}

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

.hero-stats {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
    animation: slideInRight 0.8s var(--ease-out-expo) 0.2s both;
}

.hero-card {
    background: #ffffff;
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 24px;
    display: flex;
    flex-direction: column;
    gap: 4px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.02);
    transition: box-shadow 0.2s ease;
}

.hero-card:hover {
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
}

.hero-card span {
    color: var(--muted);
    font-size: 0.9rem;
    font-weight: 500;
}

.hero-card strong {
    color: var(--primary);
    font-size: 2.2rem;
    font-weight: 700;
    line-height: 1;
    display: block;
    margin: 4px 0;
}

/* ================================
   SOCIAL PROOF
   ================================ */

.social-proof {
    padding: 40px 0;
    text-align: center;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    margin-bottom: 80px;
}

.social-proof p {
    color: var(--muted);
    font-size: 0.85rem;
    font-weight: 500;
    margin-bottom: 24px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.logos-grid {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 48px;
    flex-wrap: wrap;
    opacity: 0.6;
}

.logo-placeholder {
    font-size: 1.2rem;
    color: var(--muted);
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
}

.logo-placeholder svg {
    width: 24px;
    height: 24px;
}

/* ================================
   SECTIONS
   ================================ */

.section {
    padding: 60px 0;
}

.section-header {
    text-align: center;
    max-width: 640px;
    margin: 0 auto 56px;
}

.section-header.left {
    text-align: left;
    margin-left: 0;
}

.eyebrow {
    display: inline-block;
    color: var(--brand-blue);
    background: var(--brand-blue-soft);
    padding: 4px 12px;
    border-radius: 20px;
    font-weight: 700;
    font-size: 0.75rem;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    margin-bottom: 16px;
}

.section h2 {
    font-size: clamp(1.8rem, 4vw, 2.4rem);
    margin: 0 0 16px 0;
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -0.02em;
}

.section-subtitle {
    color: var(--muted);
    font-size: 1.15rem;
    line-height: 1.6;
    max-width: 600px;
    margin: 0 auto;
}

/* ================================
   CARDS & FEATURES
   ================================ */

.cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
}

.card {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 32px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.02);
    transition: all 0.2s ease;
}

.card:hover {
    box-shadow: 0 12px 32px rgba(0,0,0,0.06);
    transform: translateY(-2px);
}

.card-icon {
    width: 48px;
    height: 48px;
    background: #f1f5f9;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    color: var(--primary);
}

.card-icon svg {
    width: 24px;
    height: 24px;
}

.card h3 {
    margin: 0 0 12px 0;
    font-size: 1.2rem;
    font-weight: 600;
}

.card p {
    color: var(--muted);
    line-height: 1.6;
    margin: 0;
}

/* ================================
   FEATURES GRID
   ================================ */

.features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}

.feature-item {
    display: flex;
    gap: 20px;
    padding: 24px;
    background: transparent;
    border: 1px solid transparent;
    border-radius: 12px;
    transition: all 0.2s ease;
}

.feature-item:hover {
    background: var(--card);
    border-color: var(--border);
    box-shadow: 0 4px 12px rgba(0,0,0,0.03);
}

.feature-icon {
    width: 40px;
    height: 40px;
    background: #f8fafc;
    border: 1px solid var(--border);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    flex-shrink: 0;
}

.feature-icon svg {
    width: 20px;
    height: 20px;
}

.feature-content h4 {
    margin: 0 0 6px 0;
    font-size: 1.05rem;
    font-weight: 600;
}

.feature-content p {
    color: var(--muted);
    font-size: 0.95rem;
    line-height: 1.5;
    margin: 0;
}

/* ================================
   CHECK LIST
   ================================ */

.check-list {
    display: grid;
    gap: 12px;
    min-width: 300px;
    padding: 0;
    list-style: none;
}

.check-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 500;
    color: var(--text);
}

.check-list li svg {
    width: 20px;
    height: 20px;
    color: var(--accent);
    flex-shrink: 0;
}

/* ================================
   SPLIT SECTION
   ================================ */

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

.split-content h2 {
    font-size: clamp(1.8rem, 3vw, 2.2rem);
    margin-bottom: 20px;
}

.split-content p {
    color: var(--muted);
    font-size: 1.1rem;
    line-height: 1.7;
}

.visual-card {
    background: #ffffff;
    border-radius: 16px;
    padding: 40px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.04);
    border: 1px solid var(--border);
}

.visual-card .metric {
    display: flex;
    align-items: baseline;
    gap: 8px;
    margin-bottom: 24px;
}

.visual-card .metric-value {
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary);
    line-height: 1;
    letter-spacing: -0.02em;
}

.visual-card .metric-label {
    color: var(--muted);
    font-size: 1rem;
}

/* ================================
   CTA SECTION
   ================================ */

.cta-section {
    padding: 80px 0;
}

.cta-box {
    background: var(--primary);
    background: linear-gradient(135deg, var(--brand-blue) 0%, #162D6B 100%);
    border-radius: 32px;
    padding: 80px 40px;
    text-align: center;
    color: white;
    position: relative;
    overflow: hidden;
    box-shadow: 0 20px 50px -10px rgba(30, 58, 138, 0.4);
}

.cta-box::after {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
    border-radius: 50%;
}

.cta-box h2 {
    font-size: clamp(1.8rem, 4vw, 2.4rem);
    margin: 0 0 16px 0;
    color: white;
}

.cta-box p {
    font-size: 1.1rem;
    color: #94a3b8;
    margin-bottom: 32px;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.cta-box .button {
    background: white;
    color: var(--primary);
}

.cta-box .button:hover {
    background: #f8fafc;
}

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

.footer {
    margin-top: 100px;
    padding: 80px 0 40px;
    background: #ffffff;
    border-top: 1px solid var(--border);
}

.footer-container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr repeat(3, 1fr);
    gap: 48px;
    margin-bottom: 48px;
}

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

.footer-brand img {
    height: 32px;
    margin-bottom: 16px;
}

.footer-brand p {
    color: var(--muted);
    line-height: 1.6;
    font-size: 0.9rem;
}

.footer-column h4 {
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin: 0 0 20px 0;
    color: var(--text);
}

.footer-column ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: 12px;
}

.footer-column a {
    color: var(--muted);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.2s ease;
}

.footer-column a:hover {
    color: var(--primary);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 24px;
    border-top: 1px solid var(--border);
    font-size: 0.85rem;
    color: var(--muted);
}

.footer-bottom a {
    color: var(--muted);
    text-decoration: none;
    transition: color 0.2s ease;
}

.footer-bottom a:hover {
    color: var(--primary);
}

/* ================================
   REVEAL ANIMATIONS (SCROLL)
   ================================ */

.reveal {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.6s var(--ease-out-expo);
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ================================
   FLASH MESSAGES
   ================================ */

.flash {
    width: min(1120px, calc(100% - 32px));
    margin: 100px auto 16px;
    border-radius: 8px;
    padding: 12px 16px;
    font-weight: 500;
    font-size: 0.95rem;
    animation: fadeInUp 0.4s var(--ease-out-expo);
}

.flash.success {
    background: #f0fdf4;
    color: #166534;
    border: 1px solid #bbf7d0;
}

.flash.error {
    background: #fef2f2;
    color: #991b1b;
    border: 1px solid #fecaca;
}

/* ================================
   DASHBOARD STYLES (existing)
   ================================ */

.panel,
.stat {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 16px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.02);
    padding: 24px;
}

.page-heading h1,
.article h1 {
    margin: 0;
    font-size: clamp(2rem, 4vw, 2.5rem);
    line-height: 1.1;
    letter-spacing: -0.02em;
}

.page-heading,
.article,
.dashboard-heading {
    padding: 40px 0;
}

.blog-list {
    padding-bottom: 48px;
}

.date {
    color: var(--muted);
    font-size: 0.9rem;
}

.article {
    max-width: 760px;
}

.auth-card,
.setup-card {
    max-width: 480px;
    margin: 100px auto 80px;
    padding: 40px;
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 16px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.05);
}

.setup-logo {
    display: block;
    height: 48px;
    width: auto;
    margin-bottom: 24px;
}

.setup-body main {
    min-height: 100vh;
    display: grid;
    place-items: center;
}

.form-grid {
    display: grid;
    gap: 20px;
}

label {
    display: grid;
    gap: 8px;
    color: var(--text);
    font-weight: 500;
    font-size: 0.9rem;
}

input,
select,
textarea {
    width: 100%;
    border: 1px solid var(--border);
    border-radius: 8px;
    color: var(--text);
    font: inherit;
    padding: 12px 16px;
    background: white;
    transition: all 0.2s ease;
}

input:focus,
select:focus,
textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 1px var(--primary);
}

.setup-status {
    margin-top: 24px;
    display: grid;
    gap: 12px;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
}

.stat span {
    color: var(--muted);
    font-size: 0.9rem;
    font-weight: 500;
}

.stat strong {
    display: block;
    margin-top: 8px;
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary);
}

.dashboard-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 24px;
    padding: 32px 0 56px;
}

.row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    border-top: 1px solid var(--border);
    padding: 16px 0;
}

.row span {
    color: var(--muted);
    display: block;
    font-size: 0.9rem;
}

/* ================================
   RESPONSIVE
   ================================ */

@media (max-width: 1024px) {
    .nav-desktop a:not(.button) {
        padding: 8px 12px;
    }
}

@media (max-width: 768px) {
    .site-header .header-container {
        padding: 16px 20px;
    }

    .nav-desktop {
        display: none;
    }

    .mobile-menu-toggle {
        display: block;
    }

    .brand img {
        height: 32px;
    }

    main {
        padding: 0 20px;
        padding-top: 80px;
    }

    .hero {
        padding: 40px 0 60px;
    }

    .hero-card strong {
        font-size: 2rem;
    }

    .cards {
        grid-template-columns: 1fr;
    }

    .cta-box {
        padding: 40px 24px;
    }

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

    .footer-bottom {
        flex-direction: column;
        gap: 16px;
        text-align: center;
    }

    .logos-grid {
        gap: 24px;
    }
}

@media (max-width: 480px) {
    .hero-actions {
        flex-direction: column;
        width: 100%;
    }

    .hero-actions .button {
        width: 100%;
    }
}

/* ========================================
   REFONTE PREMIUM - NOUVEAUX STYLES
   ======================================== */

/* Hero Premium */
.hero-premium {
    padding: 100px 0 80px;
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
}

.hero-bg-decoration {
    position: absolute;
    top: -100px;
    right: -100px;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, var(--brand-blue-soft) 0%, rgba(255,255,255,0) 70%);
    z-index: -1;
    opacity: 0.6;
    filter: blur(60px);
}

.hero-bg-grid {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(var(--border) 1px, transparent 1px);
    background-size: 40px 40px;
    z-index: -2;
    mask-image: linear-gradient(to bottom, black, transparent);
    -webkit-mask-image: linear-gradient(to bottom, black, transparent);
    opacity: 0.4;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 50px;
    padding: 6px 16px;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--brand-blue);
    margin-bottom: 24px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.03);
}

.badge-dot {
    width: 8px;
    height: 8px;
    background: var(--brand-blue);
    border-radius: 50%;
    box-shadow: 0 0 0 3px var(--brand-blue-soft);
}

.hero h1 {
    font-size: clamp(3rem, 7vw, 4.2rem);
    line-height: 1.02;
    font-weight: 800;
    letter-spacing: -0.05em;
    margin-bottom: 24px;
    color: var(--primary);
}

.hero h1 span {
    display: block;
    color: var(--primary);
}

.hero .lead {
    font-size: 1.25rem;
    line-height: 1.6;
    color: var(--muted);
    margin-bottom: 40px;
    max-width: 580px;
}

.hero-actions {
    display: flex;
    gap: 16px;
    margin-bottom: 48px;
}

.button.primary {
    background: var(--accent);
    color: white;
    font-weight: 600;
    box-shadow: 0 10px 25px -5px rgba(245, 158, 11, 0.4);
}

.button.primary:hover {
    background: var(--accent-light);
    transform: translateY(-3px);
    box-shadow: 0 15px 30px -5px rgba(245, 158, 11, 0.5);
}

.button-arrow {
    margin-left: 6px;
    transition: transform 0.2s ease;
}

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

.hero-trust {
    display: flex;
    align-items: center;
    gap: 16px;
}

.trust-avatars {
    display: flex;
}

.avatar {
    width: 36px;
    height: 36px;
    background: linear-gradient(135deg, #e2e8f0, #cbd5e1);
    border-radius: 50%;
    border: 2px solid #fff;
    margin-left: -10px;
    background-size: cover;
    background-position: center;
}

.avatar:first-child { margin-left: 0; }

.trust-text {
    font-size: 0.95rem;
    color: var(--muted);
}

.trust-text strong {
    color: var(--text);
    font-weight: 700;
}

/* Dashboard Mockup Enhanced */
.hero-visual {
    position: relative;
    perspective: 1000px;
}

.dashboard-mockup {
    background: #fff;
    border-radius: 24px;
    border: 1px solid var(--border);
    box-shadow: 0 30px 70px -15px rgb(0 0 0 / 0.15), 
                0 10px 30px -10px rgb(0 0 0 / 0.1);
    overflow: hidden;
    transform: rotateY(-5deg) rotateX(5deg);
    transition: transform 0.5s var(--ease-out-expo);
}

.dashboard-mockup:hover {
    transform: rotateY(0) rotateX(0);
}

.mockup-header {
    background: #fcfdfe;
    padding: 16px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid var(--border);
}

.mockup-dots {
    display: flex;
    gap: 8px;
}

.mockup-dots span {
    width: 12px;
    height: 12px;
    background: #e2e8f0;
    border-radius: 50%;
}

.mockup-dots span:nth-child(1) { background: #ff5f56; }
.mockup-dots span:nth-child(2) { background: #ffbd2e; }
.mockup-dots span:nth-child(3) { background: #27c93f; }

.mockup-title {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--muted);
    letter-spacing: 0.02em;
}

.mockup-body {
    display: flex;
    height: 320px;
}

.mockup-sidebar {
    width: 60px;
    background: #f8fafc;
    border-right: 1px solid var(--border);
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 20px 0;
    gap: 20px;
}

.sidebar-item {
    width: 32px;
    height: 32px;
    background: #e2e8f0;
    border-radius: 8px;
    opacity: 0.5;
}

.sidebar-item.active {
    background: var(--accent-soft);
    opacity: 1;
}

.mockup-main {
    flex: 1;
    padding: 24px;
    position: relative;
    overflow: hidden;
}

.mockup-view {
    position: absolute;
    top: 24px;
    left: 24px;
    right: 24px;
    bottom: 24px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.6s var(--ease-out-expo);
    pointer-events: none;
}

.mockup-view.active {
    opacity: 1;
    transform: translateY(0);
    pointer-events: all;
}

/* View 2: Form Skeleton */
.mockup-form-header h4 {
    font-size: 1rem;
    margin: 0 0 4px;
}

.mockup-form-header p {
    font-size: 0.75rem;
    color: var(--muted);
    margin: 0;
}

.mockup-form {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.form-skeleton {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.skeleton-label {
    font-size: 0.65rem;
    font-weight: 700;
    color: var(--muted);
    text-transform: uppercase;
}

.skeleton-input {
    height: 34px;
    background: #f8fafc;
    border: 1px solid var(--border);
    border-radius: 6px;
    padding: 0 12px;
    display: flex;
    align-items: center;
    font-size: 0.8rem;
    color: var(--text);
}

.form-skeleton-row {
    display: flex;
    align-items: center;
    gap: 10px;
}

.skeleton-checkbox {
    width: 16px;
    height: 16px;
    border: 1px solid var(--border);
    border-radius: 4px;
}

.skeleton-checkbox.active {
    background: var(--accent);
    border-color: var(--accent);
    position: relative;
}

.skeleton-checkbox.active::after {
    content: '✓';
    color: white;
    font-size: 10px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.skeleton-text {
    font-size: 0.75rem;
    color: var(--text);
}

.skeleton-button {
    margin-top: 10px;
    height: 38px;
    background: var(--accent);
    color: white;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.85rem;
    font-weight: 700;
}

.skeleton-button.secondary {
    background: #f1f5f9;
    color: var(--text);
    border: 1px solid var(--border);
}

/* View 3: Report Success */
.report-success {
    text-align: center;
    padding: 10px 0;
}

.success-icon {
    width: 56px;
    height: 56px;
    background: var(--success-soft);
    color: var(--success);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
}

.report-success h4 {
    font-size: 1.1rem;
    margin: 0 0 8px;
}

.report-success p {
    font-size: 0.8rem;
    color: var(--muted);
    margin: 0 0 20px;
}

.report-preview-card {
    background: #f8fafc;
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 16px;
    margin-bottom: 20px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.preview-line {
    height: 6px;
    background: #e2e8f0;
    border-radius: 3px;
    width: 100%;
}

.preview-line.short {
    width: 60%;
}

.preview-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    margin-top: 8px;
}

.preview-box {
    height: 30px;
    background: #e2e8f0;
    border-radius: 6px;
}

.mockup-metrics {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

.metric-card {
    background: #fff;
    padding: 16px;
    border: 1px solid var(--border);
    border-radius: 12px;
}

.metric-label {
    font-size: 0.7rem;
    font-weight: 600;
    color: var(--muted);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 8px;
}

.metric-value {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--text);
    line-height: 1;
}

.metric-trend {
    font-size: 0.75rem;
    margin-top: 8px;
    display: flex;
    align-items: center;
    gap: 4px;
    font-weight: 600;
}

.metric-trend.positive { color: var(--success); }

.mockup-chart {
    flex: 1;
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 20px;
    display: flex;
    flex-direction: column;
}

.chart-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.chart-title {
    font-size: 0.85rem;
    font-weight: 700;
}

.chart-badge {
    background: var(--success-soft);
    color: var(--success);
    padding: 4px 10px;
    border-radius: 20px;
    font-size: 0.7rem;
    font-weight: 800;
}

.chart-bars {
    display: flex;
    align-items: flex-end;
    gap: 10px;
    height: 100px;
    margin-top: auto;
}

.bar {
    flex: 1;
    background: linear-gradient(to top, var(--accent), var(--accent-light));
    border-radius: 4px 4px 0 0;
    min-height: 10px;
}

/* Floating Elements */
.floating-card {
    position: absolute;
    background: #fff;
    border-radius: 16px;
    padding: 16px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
    border: 1px solid var(--border);
    display: flex;
    align-items: center;
    gap: 12px;
    z-index: 10;
    animation: float 6s ease-in-out infinite;
}

.floating-card.one {
    top: -20px;
    right: -30px;
    animation-delay: 0s;
}

.floating-card.two {
    bottom: 40px;
    left: -40px;
    animation-delay: -3s;
}

.floating-icon {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
}

.floating-icon.blue { background: var(--brand-blue); }
.floating-icon.green { background: var(--brand-green); }

.floating-info span {
    display: block;
    font-size: 0.75rem;
    color: var(--muted);
    font-weight: 500;
}

.floating-info strong {
    display: block;
    font-size: 1.1rem;
    font-weight: 800;
}

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

/* Trust Bar */
.trust-bar {
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    padding: 50px 0;
    margin-bottom: 80px;
    background: #fff;
}

.trust-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.trust-label {
    text-align: center;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--muted);
    margin-bottom: 20px;
    font-weight: 600;
}

.logos-grid {
    display: flex;
    justify-content: center;
    gap: 64px;
    flex-wrap: wrap;
    opacity: 0.75;
}

.logo-item {
    font-weight: 700;
    font-size: 1.1rem;
    color: var(--text);
    display: flex;
    align-items: center;
    transition: all 0.3s ease;
    filter: grayscale(1);
    opacity: 0.6;
}

.logo-item:hover {
    filter: grayscale(0);
    opacity: 1;
    transform: translateY(-2px);
}

.logo-item svg {
    color: var(--brand-blue);
}

/* Steps / Comment ça marche */
.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
}

.step-card {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 24px;
    padding: 40px 32px;
    transition: all 0.4s var(--ease-out-expo);
    position: relative;
    overflow: hidden;
}

.step-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 30px 60px -12px rgba(0, 0, 0, 0.1);
    border-color: var(--brand-blue-soft);
}

.step-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--brand-blue);
    transform: scaleX(0);
    transition: transform 0.4s var(--ease-out-expo);
    transform-origin: left;
}

.step-card:hover::after {
    transform: scaleX(1);
}

.step-number {
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 0.1em;
    color: var(--brand-blue);
    margin-bottom: 16px;
}

.step-icon {
    width: 56px;
    height: 56px;
    background: var(--brand-blue-soft);
    color: var(--brand-blue);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
}

.step-card h3 {
    font-size: 1.25rem;
    margin: 0 0 12px;
    font-weight: 700;
}

.step-card p {
    color: var(--muted);
    line-height: 1.65;
    margin: 0;
}

/* Benefits Grid */
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 24px;
}

.benefit-card {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 24px;
    padding: 40px;
    transition: all 0.4s ease;
}

.benefit-card:hover {
    border-color: var(--brand-blue-soft);
    box-shadow: 0 20px 40px -12px rgba(0, 0, 0, 0.08);
    transform: translateY(-4px);
}

.benefit-icon {
    width: 56px;
    height: 56px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
}

.benefit-icon.blue { background: var(--brand-blue-soft); color: var(--brand-blue); }
.benefit-icon.green { background: #D1FAE5; color: #10B981; }
.benefit-icon.purple { background: #f3e8ff; color: #7c3aed; }
.benefit-icon.orange { background: var(--brand-green-soft); color: var(--brand-green); }

.benefit-card h3 {
    font-size: 1.2rem;
    margin: 0 0 12px;
    font-weight: 700;
}

.benefit-card p {
    color: var(--muted);
    line-height: 1.7;
    margin: 0;
}

/* Features Enhanced */
.features-enhanced {
    background: #f8fafc;
    border-radius: 24px;
    padding: 60px 48px;
}

.features-grid-enhanced {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 20px;
}

.feature-enhanced {
    display: flex;
    gap: 18px;
    padding: 24px;
    background: #fff;
    border-radius: 20px;
    border: 1px solid var(--border);
    transition: all 0.3s var(--ease-out-expo);
}

.feature-enhanced:hover {
    box-shadow: 0 20px 40px -10px rgb(0 0 0 / 0.1);
    transform: translateY(-4px);
    border-color: var(--brand-blue-soft);
}

.feature-enhanced-icon {
    width: 42px;
    height: 42px;
    background: #f1f5f9;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: var(--accent);
}

/* Check list */
.check-list {
    list-style: none;
    padding: 0;
    margin: 32px 0 0;
}

.check-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 0;
    font-size: 1.05rem;
    font-weight: 500;
}

.check-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    background: var(--brand-green);
    color: white;
    border-radius: 50%;
    font-size: 0.8rem;
    font-weight: 800;
    flex-shrink: 0;
    box-shadow: 0 4px 10px rgba(245, 158, 11, 0.3);
}

/* Testimonials */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
}

.testimonial-card {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 24px;
    padding: 40px;
    transition: all 0.4s var(--ease-out-expo);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.testimonial-card:hover {
    box-shadow: 0 30px 60px -12px rgba(0, 0, 0, 0.1);
    transform: translateY(-8px);
    border-color: var(--brand-blue-soft);
}

.testimonial-content {
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--text);
    margin-bottom: 32px;
    font-style: italic;
    position: relative;
}

.testimonial-content::before {
    content: '“';
    position: absolute;
    top: -20px;
    left: -10px;
    font-size: 4rem;
    color: var(--brand-blue-soft);
    font-family: serif;
    z-index: -1;
}

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

.author-avatar {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, #e2e8f0, #cbd5e1);
    border-radius: 50%;
    background-size: cover;
    background-position: center;
    border: 2px solid #fff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.author-name {
    font-weight: 700;
    font-size: 0.98rem;
}

.author-role {
    font-size: 0.85rem;
    color: var(--muted);
}

/* Visual Card in Split */
.visual-card {
    background: #fff;
    border-radius: 24px;
    border: 1px solid var(--border);
    padding: 40px;
    box-shadow: 0 30px 60px -12px rgba(0, 0, 0, 0.12);
    position: relative;
    overflow: hidden;
}

.visual-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(to right, var(--brand-blue), var(--brand-green));
}

.visual-header {
    margin-bottom: 16px;
}

.visual-badge {
    background: var(--accent-soft);
    color: var(--accent);
    padding: 4px 14px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
}

.big-metric {
    margin: 24px 0;
}

.big-number {
    display: block;
    font-size: 3.2rem;
    font-weight: 800;
    line-height: 1;
    color: var(--accent);
}

.big-label {
    color: var(--muted);
    font-size: 1rem;
    margin-top: 8px;
}

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

.mini-stat {
    background: #f8fafc;
    padding: 16px;
    border-radius: 12px;
    text-align: center;
}

.mini-stat.accent {
    background: var(--accent-soft);
}

.mini-value {
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--text);
}

.mini-label {
    font-size: 0.8rem;
    color: var(--muted);
    margin-top: 4px;
}

/* CTA Final */
.cta-actions {
    margin-top: 24px;
}

.cta-note {
    margin-top: 16px;
    font-size: 0.9rem;
    color: var(--muted);
}

/* Responsive adjustments for new sections */
@media (max-width: 900px) {
    .hero-premium {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .hero-visual {
        order: -1;
    }
    
    .dashboard-mockup {
        max-width: 100%;
    }
}

/* ================================
   HOMEPAGE — NOUVELLES SECTIONS
   ================================ */

.section-wide {
    width: min(1360px, calc(100vw - 48px));
    margin-left: calc(50% - min(680px, calc(50vw - 24px)));
}

.buying-cases {
    padding-top: 0;
}

.buying-cases .section-header {
    max-width: 980px;
}

.buying-cases .section-header .section-subtitle {
    max-width: 900px;
}

.cases-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
}

.case-card {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 22px;
    padding: 30px;
    box-shadow: 0 10px 30px -20px rgba(15, 23, 42, 0.2);
    transition: all 0.35s var(--ease-out-expo);
}

.case-card:hover {
    transform: translateY(-6px);
    border-color: #c7d8ff;
    box-shadow: 0 24px 48px -24px rgba(30, 58, 138, 0.3);
}

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

.case-type {
    display: inline-flex;
    padding: 5px 12px;
    border-radius: 999px;
    background: var(--brand-blue-soft);
    color: var(--brand-blue);
    font-weight: 700;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.case-metric {
    color: var(--brand-green);
    font-size: 1.05rem;
    font-weight: 800;
    letter-spacing: -0.02em;
}

.case-card h3 {
    margin: 0 0 10px;
    font-size: 1.2rem;
    line-height: 1.35;
    letter-spacing: -0.01em;
}

.case-card p {
    margin: 0 0 18px;
    color: var(--muted);
    line-height: 1.65;
    font-size: 0.96rem;
}

.case-points {
    margin: 0;
    padding: 0;
    list-style: none;
    display: grid;
    gap: 10px;
}

.case-points li {
    padding: 10px 12px;
    border-radius: 10px;
    background: #f8fafc;
    font-size: 0.9rem;
    line-height: 1.45;
}

.case-points li span {
    font-weight: 700;
    color: var(--brand-blue);
    margin-right: 6px;
}

.before-after {
    padding-top: 0;
}

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

.ba-panel {
    border-radius: 22px;
    border: 1px solid var(--border);
    padding: 34px 30px;
    background: #fff;
}

.ba-panel h3 {
    margin: 0 0 18px;
    font-size: 1.25rem;
    letter-spacing: -0.02em;
}

.ba-panel ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    gap: 12px;
}

.ba-panel li {
    font-size: 0.97rem;
    color: var(--muted);
    line-height: 1.55;
    padding-left: 16px;
    position: relative;
}

.ba-panel li::before {
    content: '';
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #94a3b8;
    position: absolute;
    left: 0;
    top: 0.58em;
}

.ba-panel.active {
    background: linear-gradient(135deg, #f8fbff 0%, #fff7ea 100%);
    border-color: #c7d8ff;
}

.ba-panel.active li {
    color: #334155;
}

.ba-panel.active li::before {
    background: var(--brand-green);
}

.proof-section {
    padding-top: 18px;
}

.proof-layout {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 28px;
    align-items: stretch;
}

.proof-content {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 24px;
    padding: 38px;
}

.proof-content h2 {
    margin: 0 0 14px;
    font-size: clamp(1.75rem, 3vw, 2.3rem);
    line-height: 1.2;
    letter-spacing: -0.02em;
}

.proof-content > p {
    margin: 0 0 22px;
    color: var(--muted);
    line-height: 1.7;
    font-size: 1.02rem;
}

.proof-answers {
    display: grid;
    gap: 14px;
}

.answer-item {
    padding: 16px 18px;
    border: 1px solid var(--border);
    border-radius: 14px;
    background: #f8fafc;
    display: grid;
    gap: 6px;
}

.answer-item strong {
    font-size: 0.95rem;
    color: var(--text);
}

.answer-item span {
    font-size: 0.9rem;
    color: var(--muted);
    line-height: 1.55;
}

.proof-card {
    background: #0f172a;
    color: #fff;
    border-radius: 24px;
    padding: 32px;
    display: grid;
    gap: 24px;
    box-shadow: 0 30px 55px -30px rgba(15, 23, 42, 0.8);
}

.proof-card-head {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
    font-size: 0.84rem;
    color: #cbd5e1;
}

.proof-card-head strong {
    color: var(--brand-green);
    font-size: 0.86rem;
}

.proof-kpis {
    display: grid;
    gap: 12px;
}

.proof-kpis div {
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 12px;
    padding: 14px 16px;
    background: rgba(255, 255, 255, 0.03);
}

.proof-kpis small {
    display: block;
    color: #cbd5e1;
    font-size: 0.74rem;
    margin-bottom: 6px;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.proof-kpis strong {
    color: #fff;
    font-size: 1.35rem;
    letter-spacing: -0.02em;
}

.proof-next-step {
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    padding-top: 16px;
}

.proof-next-step span {
    display: inline-flex;
    margin-bottom: 8px;
    padding: 4px 10px;
    border-radius: 999px;
    background: rgba(245, 158, 11, 0.2);
    color: #fcd34d;
    font-weight: 700;
    font-size: 0.74rem;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.proof-next-step p {
    margin: 0;
    color: #e2e8f0;
    line-height: 1.6;
    font-size: 0.92rem;
}

/* Results strip */
.home-results {
    padding-top: 6px;
}

.results-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
}

.result-item {
    border: 1px solid var(--border);
    border-radius: 20px;
    background: #fff;
    padding: 28px;
    display: grid;
    gap: 10px;
}

.result-item strong {
    font-size: clamp(1.9rem, 3.4vw, 2.5rem);
    letter-spacing: -0.03em;
    color: var(--brand-blue);
    line-height: 1;
}

.result-item span {
    color: var(--muted);
    line-height: 1.5;
    font-size: 0.95rem;
}

/* FAQ */
.faq-section {
    padding-top: 30px;
}

.faq-list {
    display: grid;
    gap: 14px;
    max-width: 980px;
    margin: 0 auto;
}

.faq-item {
    border: 1px solid var(--border);
    border-radius: 16px;
    background: #fff;
    padding: 0 22px;
}

.faq-item summary {
    list-style: none;
    cursor: pointer;
    font-size: 1rem;
    font-weight: 700;
    padding: 18px 0;
    position: relative;
    padding-right: 28px;
}

.faq-item summary::-webkit-details-marker {
    display: none;
}

.faq-item summary::after {
    content: '+';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    color: var(--brand-blue);
    font-size: 1.2rem;
    font-weight: 700;
}

.faq-item[open] summary::after {
    content: '−';
}

.faq-item p {
    margin: 0;
    padding: 0 0 18px;
    color: var(--muted);
    line-height: 1.65;
    font-size: 0.96rem;
}

/* ================================
   HOMEPAGE — sections sous héros (refonte)
   ================================ */

.home-below-hero {
    display: block;
}

.home-section {
    padding-top: 72px;
    padding-bottom: 72px;
}

/* Bandeau confiance */
.home-strip-trust {
    text-align: center;
    padding: 48px 24px;
    margin-top: -40px;
    margin-bottom: 40px;
    border-radius: 32px;
    background: #ffffff;
    border: 1px solid var(--border);
    box-shadow: 0 20px 50px -20px rgba(15, 23, 42, 0.12);
    position: relative;
    z-index: 10;
}

.home-strip-label {
    margin: 0 0 28px;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--muted);
    opacity: 0.8;
}

.home-trust-logos {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 16px;
}

.home-trust-pill {
    display: inline-flex;
    align-items: center;
    padding: 12px 24px;
    border-radius: 16px;
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--text);
    background: var(--bg);
    border: 1px solid var(--border);
    transition: all 0.3s var(--ease-out-expo);
}

.home-trust-pill:hover {
    transform: translateY(-4px) scale(1.02);
    border-color: var(--brand-blue);
    background: #fff;
    box-shadow: 0 12px 24px -10px rgba(30, 58, 138, 0.15);
}

/* Bento valeur */
.home-bento-section {
    background: radial-gradient(circle at top right, var(--brand-blue-soft), transparent 40%);
}

.home-bento-section .section-header.left {
    max-width: 700px;
    margin-bottom: 60px;
}

.home-bento {
    display: grid;
    grid-template-columns: repeat(6, minmax(0, 1fr));
    gap: 24px;
}

.home-bento-hero {
    grid-column: 1 / 5;
    grid-row: 1 / 3;
    padding: 48px;
    border-radius: 32px;
    background: linear-gradient(135deg, var(--brand-blue) 0%, #0f172a 100%);
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 40px 80px -20px rgba(15, 23, 42, 0.4);
    position: relative;
    overflow: hidden;
}

.home-bento-hero::before {
    content: '';
    position: absolute;
    top: -20%;
    right: -10%;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(37, 99, 235, 0.2) 0%, transparent 70%);
    pointer-events: none;
}

.home-bento-hero h3 {
    margin: 0 0 16px;
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 800;
    letter-spacing: -0.03em;
    line-height: 1.2;
    color: #fff;
}

.home-bento-hero p {
    margin: 0;
    font-size: 1.1rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.8);
    max-width: 480px;
}

.home-bento-icon {
    width: 64px;
    height: 64px;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 32px;
    color: var(--accent-light);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.home-bento-cell {
    padding: 32px;
    border-radius: 24px;
    background: #fff;
    border: 1px solid var(--border);
    display: flex;
    flex-direction: column;
    gap: 12px;
    transition: all 0.4s var(--ease-out-expo);
}

.home-bento-cell:hover {
    transform: translateY(-6px);
    border-color: var(--brand-blue-light);
    box-shadow: 0 24px 48px -12px rgba(15, 23, 42, 0.1);
}

.home-bento-cell strong {
    font-size: 1.2rem;
    font-weight: 700;
    letter-spacing: -0.02em;
    color: var(--text);
}

.home-bento-cell p {
    margin: 0;
    font-size: 1rem;
    line-height: 1.6;
    color: var(--muted);
}

.home-bento-tag {
    font-size: 0.7rem;
    font-weight: 800;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--brand-blue-light);
    background: var(--brand-blue-soft);
    padding: 4px 10px;
    border-radius: 6px;
    align-self: flex-start;
}

.home-bento > .home-bento-cell:nth-child(2) {
    grid-column: 5 / 7;
    grid-row: 1;
}

.home-bento > .home-bento-cell:nth-child(3) {
    grid-column: 5 / 7;
    grid-row: 2;
}

.home-bento > .home-bento-cell:nth-child(4) {
    grid-column: 1 / -1;
    grid-row: 3;
    background: linear-gradient(135deg, var(--accent-soft) 0%, #ffffff 55%);
    border-color: rgba(245, 158, 11, 0.2);
    display: grid;
    grid-template-columns: auto 1fr 2fr;
    align-items: center;
    gap: 32px;
}

/* Démo */
.home-demo-section {
    background-color: #fff;
    padding-top: 80px;
    padding-bottom: 80px;
}

.home-demo-shell {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 60px;
    align-items: center;
    padding: 60px;
    border-radius: 40px;
    background: #f8fafc;
    border: 1px solid var(--border);
    box-shadow: inset 0 0 40px rgba(0, 0, 0, 0.02);
}

.home-demo-copy h2 {
    font-size: clamp(2rem, 4vw, 2.5rem);
    margin: 0 0 20px;
    letter-spacing: -0.04em;
    line-height: 1.1;
    font-weight: 800;
}

.home-demo-lead {
    margin: 0 0 32px;
    font-size: 1.15rem;
    line-height: 1.7;
    color: var(--muted);
}

.home-demo-list {
    list-style: none;
    margin: 0 0 40px;
    padding: 0;
    display: grid;
    gap: 18px;
}

.home-demo-list li {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    font-size: 1.05rem;
    font-weight: 600;
    line-height: 1.5;
    color: var(--text);
}

.home-demo-check {
    flex-shrink: 0;
    width: 32px;
    height: 32px;
    border-radius: 10px;
    background: var(--brand-blue);
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-top: -2px;
    box-shadow: 0 4px 12px rgba(30, 58, 138, 0.2);
}

.home-demo-visual {
    border-radius: 24px;
    padding: 40px;
    background: #0f172a;
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 50px 100px -20px rgba(0, 0, 0, 0.5);
    display: flex;
    flex-direction: column;
    gap: 32px;
    position: relative;
}

.home-demo-visual::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 24px;
    background: linear-gradient(180deg, rgba(255,255,255,0.05) 0%, transparent 100%);
    pointer-events: none;
}

.home-demo-visual-head {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.9rem;
    color: #94a3b8;
    font-weight: 600;
}

.home-demo-visual-head strong {
    color: var(--accent-light);
    font-weight: 800;
    background: rgba(245, 158, 11, 0.1);
    padding: 4px 12px;
    border-radius: 20px;
}

.home-demo-kpis {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

.home-demo-kpis > div {
    padding: 24px 16px;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    text-align: center;
    transition: transform 0.3s ease;
}

.home-demo-kpis > div:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.05);
}

.home-demo-kpis small {
    display: block;
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: #94a3b8;
    margin-bottom: 10px;
    font-weight: 700;
}

.home-demo-kpis span {
    font-size: 1.75rem;
    font-weight: 800;
    letter-spacing: -0.03em;
    color: #fff;
}

.home-demo-reco {
    padding: 24px;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.home-demo-reco span {
    display: inline-block;
    margin-bottom: 12px;
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #fbbf24;
}

.home-demo-reco p {
    margin: 0;
    font-size: 1rem;
    line-height: 1.6;
    color: #cbd5e1;
}

/* Personas */
.home-personas {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
}

.home-persona {
    padding: 40px;
    border-radius: 32px;
    background: #fff;
    border: 1px solid var(--border);
    transition: all 0.4s var(--ease-out-expo);
    display: flex;
    flex-direction: column;
}

.home-persona:hover {
    transform: translateY(-8px);
    border-color: var(--brand-blue-light);
    box-shadow: 0 30px 60px -15px rgba(15, 23, 42, 0.1);
}

.home-persona-badge {
    display: inline-block;
    margin-bottom: 20px;
    padding: 6px 14px;
    border-radius: 10px;
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    background: var(--brand-blue-soft);
    color: var(--brand-blue);
    align-self: flex-start;
}

.home-persona h3 {
    margin: 0 0 16px;
    font-size: 1.35rem;
    font-weight: 800;
    letter-spacing: -0.02em;
    line-height: 1.25;
}

.home-persona p {
    margin: 0;
    font-size: 1.05rem;
    line-height: 1.65;
    color: var(--muted);
}

/* Timeline parcours */
.home-flow-section {
    background: #fff;
    border-radius: 40px;
    border: 1px solid var(--border);
    padding: 80px 60px;
    margin-top: 20px;
    margin-bottom: 20px;
    box-shadow: 0 20px 50px -20px rgba(0, 0, 0, 0.05);
}

.home-flow {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    position: relative;
}

.home-flow::before {
    content: '';
    position: absolute;
    top: 40px;
    left: 15%;
    right: 15%;
    height: 2px;
    background: linear-gradient(90deg, var(--brand-blue-soft), var(--accent), var(--brand-blue-soft));
    opacity: 0.4;
}

.home-flow-step {
    position: relative;
    padding: 0;
    text-align: center;
}

.home-flow-num {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 80px;
    height: 80px;
    margin: 0 auto 28px;
    border-radius: 24px;
    font-size: 1.75rem;
    font-weight: 800;
    color: #fff;
    background: linear-gradient(135deg, var(--brand-blue) 0%, #1e40af 100%);
    border: 6px solid #fff;
    box-shadow: 0 15px 30px rgba(30, 58, 138, 0.25);
    position: relative;
    z-index: 1;
    transition: transform 0.3s var(--ease-out-back);
}

.home-flow-step:hover .home-flow-num {
    transform: scale(1.1) rotate(5deg);
}

.home-flow-step h3 {
    margin: 0 0 12px;
    font-size: 1.25rem;
    font-weight: 800;
    letter-spacing: -0.02em;
}

.home-flow-step p {
    margin: 0;
    font-size: 1rem;
    line-height: 1.6;
    color: var(--muted);
    max-width: 280px;
    margin-left: auto;
    margin-right: auto;
}

/* Métriques bandeau */
.home-metrics-band {
    margin: 40px 0;
    border-radius: 40px;
    overflow: hidden;
    background: #0f172a;
    position: relative;
}

.home-metrics-band::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(rgba(255,255,255,0.05) 1px, transparent 1px);
    background-size: 32px 32px;
}

.home-metrics-inner {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    padding: 80px 60px;
    position: relative;
    z-index: 1;
}

.home-metric {
    text-align: center;
    padding: 0 20px;
}

.home-metric strong {
    display: block;
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 800;
    letter-spacing: -0.04em;
    color: #fff;
    margin-bottom: 12px;
    line-height: 1;
}

.home-metric span {
    font-size: 1.1rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.6);
    font-weight: 500;
}

/* Témoignages */
.home-quotes-section {
    background: radial-gradient(circle at bottom left, var(--brand-blue-soft), transparent 30%);
}

.home-quotes {
    display: grid;
    gap: 24px;
}

.home-quote {
    margin: 0;
    padding: 40px;
    border-radius: 32px;
    background: #fff;
    border: 1px solid var(--border);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.02);
}

.home-quote blockquote {
    margin: 0 0 32px;
    font-size: 1.15rem;
    line-height: 1.7;
    color: var(--text);
    font-weight: 500;
}

.home-quote-featured {
    padding: 60px;
    background: #fff;
    border: 1px solid var(--brand-blue-soft);
    box-shadow: 0 30px 60px -20px rgba(30, 58, 138, 0.1);
    position: relative;
}

.home-quote-featured::after {
    content: '“';
    position: absolute;
    top: 20px;
    right: 40px;
    font-size: 12rem;
    color: var(--brand-blue-soft);
    font-family: serif;
    line-height: 1;
    opacity: 0.5;
    pointer-events: none;
}

.home-quote-featured blockquote {
    font-size: clamp(1.25rem, 2.5vw, 1.5rem);
    font-weight: 700;
    letter-spacing: -0.02em;
    line-height: 1.5;
    position: relative;
    z-index: 1;
}

.home-quote figcaption,
.home-quote-featured figcaption {
    display: flex;
    align-items: center;
    gap: 14px;
}

.author-avatar {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    border: 3px solid #fff;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.author-name {
    font-weight: 800;
    font-size: 1.1rem;
    color: var(--text);
}

.author-role {
    font-size: 0.9rem;
    color: var(--muted);
    font-weight: 600;
}

.home-quote-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

/* FAQ refonte */
.home-faq-section {
    background-color: #fff;
    padding-top: 100px;
    padding-bottom: 100px;
}

.home-faq-head {
    max-width: 600px;
    margin-bottom: 60px;
}

.home-faq-head h2 {
    margin: 16px 0 0;
    font-size: clamp(2rem, 4vw, 2.5rem);
    line-height: 1.1;
    font-weight: 800;
    letter-spacing: -0.04em;
}

.home-faq-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    align-items: start;
}

.home-faq-item {
    border: 1px solid var(--border);
    border-radius: 20px;
    background: #f8fafc;
    padding: 0 24px;
    transition: all 0.3s ease;
}

.home-faq-item:hover {
    border-color: var(--brand-blue-light);
    background: #fff;
}

.home-faq-item summary {
    list-style: none;
    cursor: pointer;
    font-size: 1.05rem;
    font-weight: 700;
    padding: 24px 40px 24px 0;
    position: relative;
    line-height: 1.4;
    color: var(--text);
}

.home-faq-item summary::-webkit-details-marker {
    display: none;
}

.home-faq-item summary::after {
    content: '+';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    color: var(--brand-blue);
    font-size: 1.5rem;
    font-weight: 400;
    transition: transform 0.3s ease;
}

.home-faq-item[open] summary::after {
    content: '−';
    transform: rotate(180deg);
}

.home-faq-item p {
    margin: 0;
    padding: 0 0 24px;
    font-size: 1rem;
    line-height: 1.7;
    color: var(--muted);
}

/* CTA final */
.home-cta-final {
    padding-top: 40px;
    padding-bottom: 120px;
}

.home-cta-panel {
    position: relative;
    display: grid;
    grid-template-columns: 1fr 0.4fr;
    gap: 0;
    border-radius: 48px;
    overflow: hidden;
    background: #fff;
    border: 1px solid var(--border);
    box-shadow: 0 40px 100px -30px rgba(15, 23, 42, 0.15);
}

.home-cta-copy {
    padding: 80px;
}

.home-cta-copy h2 {
    margin: 0 0 20px;
    font-size: clamp(2rem, 5vw, 2.75rem);
    letter-spacing: -0.05em;
    line-height: 1;
    font-weight: 800;
    color: var(--text);
}

.home-cta-copy > p {
    margin: 0 0 40px;
    font-size: 1.2rem;
    line-height: 1.7;
    color: var(--muted);
    max-width: 560px;
}

.home-cta-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin-bottom: 40px;
}

.home-cta-points {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 12px 32px;
    font-size: 0.95rem;
    color: var(--text);
    font-weight: 700;
}

.home-cta-points li {
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.home-cta-points li::before {
    content: '✓';
    color: var(--success);
    font-weight: 900;
}

.home-cta-accent {
    min-height: 100%;
    background: linear-gradient(160deg, var(--brand-blue) 0%, #1e40af 50%, var(--accent) 100%);
    position: relative;
    overflow: hidden;
}

.home-cta-accent::after {
    content: '';
    position: absolute;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.1'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

@media (max-width: 1024px) {
    .home-bento {
        grid-template-columns: 1fr;
    }

    .home-bento-hero {
        grid-column: 1 / -1;
        grid-row: auto;
    }

    .home-bento > .home-bento-cell:nth-child(2),
    .home-bento > .home-bento-cell:nth-child(3),
    .home-bento > .home-bento-cell:nth-child(4) {
        grid-column: 1 / -1;
        grid-row: auto;
    }

    .home-bento > .home-bento-cell:nth-child(4) {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .home-demo-shell {
        grid-template-columns: 1fr;
        padding: 40px;
    }

    .home-personas {
        grid-template-columns: 1fr;
    }

    .home-flow {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .home-flow::before {
        display: none;
    }

    .home-metrics-inner {
        grid-template-columns: 1fr;
        text-align: left;
        gap: 32px;
        padding: 60px 40px;
    }

    .home-metric {
        text-align: left;
        padding: 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        padding-bottom: 24px;
    }

    .home-metric:last-child {
        border-bottom: 0;
        padding-bottom: 0;
    }

    .home-quote-grid {
        grid-template-columns: 1fr;
    }

    .home-faq-grid {
        grid-template-columns: 1fr;
    }

    .home-cta-panel {
        grid-template-columns: 1fr;
    }

    .home-cta-accent {
        min-height: 160px;
        order: -1;
    }

    .home-cta-copy {
        padding: 40px;
    }
}

@media (max-width: 600px) {
    .home-demo-kpis {
        grid-template-columns: 1fr;
    }

    .home-strip-trust {
        padding: 32px 20px;
        margin-top: -20px;
    }

    .home-flow-section {
        padding: 40px 24px;
    }

    .home-demo-shell {
        padding: 32px 20px;
        border-radius: 24px;
    }

    .home-cta-actions {
        flex-direction: column;
    }

    .home-cta-actions .button {
        width: 100%;
        justify-content: center;
    }

    .home-section {
        padding-top: 60px;
        padding-bottom: 60px;
    }
}

/* Responsive — nouvelles sections */
@media (max-width: 1100px) {
    .buying-cases .section-header,
    .buying-cases .section-header .section-subtitle {
        max-width: 100%;
    }

    .cases-grid {
        grid-template-columns: 1fr;
    }

    .proof-layout {
        grid-template-columns: 1fr;
    }

    .results-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 900px) {
    .section-wide {
        width: calc(100vw - 32px);
    }

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

@media (max-width: 640px) {
    .section-wide {
        width: calc(100vw - 24px);
    }

    .case-card,
    .ba-panel,
    .proof-content,
    .proof-card {
        padding: 24px;
        border-radius: 18px;
    }
}
