/* =============================================
   RESET & VARIABLES - STYLE FINTECH PROFESSIONNEL
   ============================================= */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Couleurs fintech/banque privée */
    --primary: #1A2B4A;        /* Bleu marine professionnel */
    --primary-light: #2D3E5F;  /* Bleu marine clair */
    --accent: #4CAF50;         /* Vert discret pour validations */
    --text-dark: #1A1A1A;      /* Noir professionnel */
    --text-gray: #4A4A4A;      /* Gris foncé */
    --text-light: #757575;     /* Gris clair */
    --bg-white: #FAFAFA;       /* Blanc cassé */
    --bg-light: #F5F5F5;       /* Gris très clair */
    --border: #E0E0E0;         /* Bordure grise fine */
    --shadow-xs: 0 1px 2px rgba(0, 0, 0, 0.05);
    --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.08);
    --shadow-md: 0 4px 8px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 8px 16px rgba(0, 0, 0, 0.12);
    --radius: 8px;
    --radius-sm: 6px;
    --transition: all 0.3s ease;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-dark);
    background: var(--bg-white);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

img {
    max-width: 100%;
    display: block;
}

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

strong {
    font-weight: 600;
    color: var(--text-dark);
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    color: var(--text-dark);
    letter-spacing: -0.02em;
}

/* =============================================
   CONTAINERS
   ============================================= */
.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 32px;
}

.container-small {
    max-width: 960px;
    margin: 0 auto;
    padding: 0 32px;
}

/* =============================================
   FLOATING ALERT
   ============================================= */
.floating-alert {
    position: fixed;
    bottom: 32px;
    left: 32px;
    background: white;
    padding: 16px 24px;
    border-radius: var(--radius);
    box-shadow: var(--shadow-lg);
    z-index: 9999;
    animation: slideInLeft 0.5s ease, fadeOut 0.5s ease 6.5s forwards;
    border: 1px solid var(--border);
}

.alert-content {
    display: flex;
    align-items: center;
    gap: 12px;
}

.alert-icon {
    font-size: 16px;
}

.alert-text {
    font-size: 13px;
    color: var(--text-dark);
    font-weight: 500;
}

@keyframes slideInLeft {
    from {
        transform: translateX(-120%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes fadeOut {
    to {
        opacity: 0;
        transform: translateX(-120%);
    }
}

/* =============================================
   HEADER
   ============================================= */
.header {
    background: white;
    border-bottom: 1px solid var(--border);
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: var(--shadow-xs);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.header-left {
    display: flex;
    align-items: center;
    gap: 48px;
}

.header-right {
    display: flex;
    align-items: center;
    gap: 24px;
}

.logo-img {
    height: 50px;
    width: auto;
}

.header-nav {
    display: flex;
    align-items: center;
    gap: 32px;
}

.nav-link {
    font-size: 14px;
    font-weight: 500;
    color: var(--text-gray);
    transition: var(--transition);
    position: relative;
    padding: 8px 0;
}

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

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary);
    transition: var(--transition);
}

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

.nav-link.active {
    color: var(--primary);
}

.header-rating {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 8px 16px;
    background: var(--bg-light);
    border-radius: 50px;
    border: 1px solid var(--border);
}

.header-stars {
    font-size: 14px;
}

.header-rating-text {
    font-size: 14px;
    font-weight: 700;
    color: var(--text-dark);
}

.header-rating-count {
    font-size: 13px;
    color: var(--text-light);
}

.btn-header {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--primary);
    color: white;
    padding: 12px 24px;
    border-radius: var(--radius-sm);
    font-weight: 600;
    font-size: 14px;
    transition: var(--transition);
    border: none;
}

.btn-header:hover {
    background: var(--primary-light);
}

.btn-arrow {
    font-size: 16px;
}

/* Header responsive */
@media (max-width: 900px) {
    .header-nav {
        display: none;
    }
    
    .header-rating {
        display: none;
    }
    
    .header-left {
        gap: 0;
    }
}

/* =============================================
   HERO SECTION
   ============================================= */
.hero {
    padding: 120px 0 80px;
    text-align: center;
    background: white;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--bg-light);
    padding: 10px 16px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 32px;
    border: 1px solid var(--border);
}

.badge-pulse {
    width: 6px;
    height: 6px;
    background: var(--accent);
    border-radius: 50%;
}

.hero-title {
    font-size: 56px;
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 24px;
    color: var(--text-dark);
    letter-spacing: -0.03em;
}

.gradient-text {
    color: var(--primary);
}

.hero-subtitle {
    font-size: 18px;
    color: var(--text-gray);
    margin-bottom: 56px;
    line-height: 1.8;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    font-weight: 400;
}

.hero-stats {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0;
    margin: 64px 0;
    flex-wrap: wrap;
}

.stat-item {
    text-align: center;
    padding: 0 40px;
}

.stat-number {
    font-size: 40px;
    font-weight: 600;
    color: var(--text-dark);
    line-height: 1;
    margin-bottom: 8px;
}

.stat-label {
    font-size: 14px;
    color: var(--text-light);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.stat-divider {
    width: 1px;
    height: 60px;
    background: var(--border);
}

.hero-cta {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin: 56px 0;
    flex-wrap: wrap;
}

.btn-primary-large {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: white;
    color: var(--primary);
    padding: 16px 36px;
    border-radius: var(--radius-sm);
    font-weight: 600;
    font-size: 15px;
    border: 1px solid var(--border);
    transition: var(--transition);
}

.btn-primary-large:hover {
    background: var(--bg-light);
    border-color: var(--primary);
}

.btn-secondary-large {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--primary);
    color: white;
    padding: 16px 36px;
    border-radius: var(--radius-sm);
    font-weight: 600;
    font-size: 15px;
    border: none;
    transition: var(--transition);
}

.btn-secondary-large:hover {
    background: var(--primary-light);
}

.btn-icon {
    font-size: 16px;
}

/* Hero Navigation Buttons */
.hero-nav-sections {
    margin-top: 48px;
    text-align: center;
}

.hero-nav-label {
    font-size: 13px;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 16px;
}

.hero-nav-buttons {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
}

.hero-nav-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 20px;
    background: white;
    border: 1px solid var(--border);
    border-radius: 50px;
    font-size: 14px;
    font-weight: 500;
    color: var(--text-gray);
    transition: var(--transition);
    box-shadow: var(--shadow-xs);
}

.hero-nav-btn:hover {
    background: var(--primary);
    color: white;
    border-color: var(--primary);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.hero-nav-btn:hover .nav-btn-icon {
    transform: scale(1.1);
}

.nav-btn-icon {
    font-size: 16px;
    transition: var(--transition);
}

.hero-trust {
    margin-top: 56px;
}

.trust-badges {
    display: flex;
    justify-content: center;
    gap: 24px;
    flex-wrap: wrap;
}

.trust-badge {
    display: flex;
    align-items: center;
    gap: 8px;
    background: white;
    padding: 10px 16px;
    border-radius: 50px;
    border: 1px solid var(--border);
    font-size: 13px;
    font-weight: 500;
    color: var(--text-dark);
}

.badge-icon {
    font-size: 16px;
}

/* =============================================
   INTRO SECTION
   ============================================= */
.intro-section {
    padding: 100px 0;
    background: white;
}

.intro-section h2 {
    font-size: 36px;
    font-weight: 600;
    text-align: center;
    margin-bottom: 40px;
    color: var(--text-dark);
}

.intro-text {
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-gray);
    margin-bottom: 24px;
    font-weight: 400;
}

/* Verification Box */
.verification-box {
    background: white;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 48px;
    margin-top: 56px;
}

.verification-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 24px;
}

.verification-icon {
    font-size: 32px;
}

.verification-header h3 {
    font-size: 22px;
    font-weight: 600;
    color: var(--text-dark);
}

.verification-text {
    font-size: 15px;
    line-height: 1.8;
    color: var(--text-gray);
    margin-bottom: 32px;
    font-weight: 400;
}

.verification-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
    margin-bottom: 32px;
}

.verification-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 14px;
    font-weight: 500;
    color: var(--text-dark);
}

.check-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 20px;
    height: 20px;
    background: var(--accent);
    color: white;
    border-radius: 50%;
    font-size: 12px;
    flex-shrink: 0;
}

.verification-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.btn-verification {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--primary);
    color: white;
    padding: 14px 32px;
    border-radius: var(--radius-sm);
    font-weight: 600;
    font-size: 14px;
    border: none;
    transition: var(--transition);
}

.btn-verification:hover {
    background: var(--primary-light);
}

.btn-verify-lei {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, #059669 0%, #047857 100%);
    color: white;
    padding: 14px 32px;
    border-radius: var(--radius-sm);
    font-weight: 600;
    font-size: 14px;
    border: none;
    transition: var(--transition);
    box-shadow: 0 4px 12px rgba(5, 150, 105, 0.3);
}

.btn-verify-lei:hover {
    background: linear-gradient(135deg, #047857 0%, #065f46 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(5, 150, 105, 0.4);
}

.btn-icon-doc {
    font-size: 16px;
}

.btn-arrow-right {
    font-size: 16px;
}

/* =============================================
   TESTIMONIALS SECTION
   ============================================= */
.testimonials {
    padding: 120px 0;
    background: linear-gradient(180deg, #fafffe 0%, #f0fdf4 50%, #fafffe 100%);
}

.section-header {
    text-align: center;
    margin-bottom: 64px;
}

/* Trust indicators */
.trust-indicators {
    display: flex;
    justify-content: center;
    gap: 24px;
    margin-bottom: 24px;
}

.trust-indicator {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: white;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 500;
    color: var(--text-gray);
    border: 1px solid var(--border);
    box-shadow: var(--shadow-xs);
}

.indicator-icon {
    font-size: 14px;
}

.section-badge {
    display: inline-block;
    background: var(--bg-light);
    color: var(--text-dark);
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 20px;
    border: 1px solid var(--border);
}

.section-badge.badge-green {
    background: linear-gradient(135deg, #dcfce7 0%, #bbf7d0 100%);
    border-color: #86efac;
    color: #166534;
}

/* Rating Summary */
.rating-summary {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 32px;
    margin-top: 32px;
    padding: 24px 32px;
    background: white;
    border-radius: 16px;
    border: 1px solid var(--border);
    box-shadow: var(--shadow-sm);
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.rating-stars-big {
    font-size: 28px;
    letter-spacing: 4px;
}

.rating-info {
    display: flex;
    align-items: baseline;
    gap: 4px;
}

.rating-score {
    font-size: 48px;
    font-weight: 800;
    color: var(--text-dark);
    line-height: 1;
}

.rating-max {
    font-size: 24px;
    font-weight: 600;
    color: var(--text-light);
}

.rating-reviews {
    font-size: 13px;
    color: var(--text-light);
    margin-left: 8px;
}

.rating-bars {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.rating-bar-item {
    display: flex;
    align-items: center;
    gap: 8px;
}

.bar-label {
    font-size: 12px;
    color: var(--text-gray);
    width: 28px;
}

.bar-track {
    width: 100px;
    height: 8px;
    background: var(--bg-light);
    border-radius: 4px;
    overflow: hidden;
}

.bar-fill {
    height: 100%;
    background: linear-gradient(90deg, #fbbf24 0%, #f59e0b 100%);
    border-radius: 4px;
    transition: width 1s ease;
}

.bar-percent {
    font-size: 11px;
    color: var(--text-light);
    width: 32px;
    text-align: right;
}

.section-title {
    font-size: 44px;
    font-weight: 600;
    margin-bottom: 16px;
    color: var(--text-dark);
    line-height: 1.2;
}

.section-subtitle {
    font-size: 16px;
    color: var(--text-gray);
    max-width: 700px;
    margin: 0 auto;
    font-weight: 400;
}

.testimonials-carousel-wrapper {
    position: relative;
    margin-bottom: 48px;
}

.carousel-container {
    position: relative;
    display: flex;
    align-items: center;
    gap: 24px;
}

.carousel-viewport {
    flex: 1;
    overflow: hidden;
    border-radius: var(--radius);
}

.carousel-track {
    display: flex;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    --index: 0;
    transform: translateX(calc(var(--index) * -100%));
}

.carousel-slide {
    flex: 0 0 100%;
    min-width: 100%;
}

.carousel-btn {
    width: 48px;
    height: 48px;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    background: white;
    color: var(--primary);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    flex-shrink: 0;
}

.carousel-btn:hover {
    background: var(--bg-light);
    border-color: var(--primary);
    transform: scale(1.05);
}

.carousel-btn:active {
    transform: scale(0.95);
}

.carousel-btn-prev {
    order: -1;
}

.carousel-indicators {
    display: flex;
    gap: 10px;
    justify-content: center;
    margin-top: 32px;
    flex-wrap: wrap;
}

.indicator {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--border);
    cursor: pointer;
    transition: var(--transition);
}

.indicator.active {
    background: var(--primary);
    width: 28px;
    border-radius: 5px;
}

.indicator:hover {
    background: var(--primary-light);
}

.testimonial-card {
    background: white;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 32px;
    transition: var(--transition);
}

.testimonial-card:hover {
    border-color: var(--primary);
    box-shadow: var(--shadow-md);
}

.testimonial-card.featured {
    border: 2px solid var(--primary);
}

.testimonial-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 24px;
}

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

.author-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--primary);
}

.author-name {
    font-size: 15px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 2px;
}

.author-role {
    font-size: 13px;
    color: var(--text-light);
    font-weight: 400;
}

.testimonial-rating {
    font-size: 14px;
}

.testimonial-title {
    font-size: 16px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 12px;
    line-height: 1.4;
}

.testimonial-text {
    font-size: 14px;
    line-height: 1.8;
    color: var(--text-gray);
    font-weight: 400;
}

.testimonial-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid var(--border);
}

.testimonial-result {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.result-label {
    font-size: 11px;
    color: var(--text-light);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.result-value {
    font-size: 16px;
    font-weight: 600;
    color: var(--text-dark);
}

.result-value.positive {
    color: var(--accent);
}

.testimonial-date {
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: 12px;
    color: var(--text-light);
    font-weight: 400;
}

.date-icon {
    font-size: 12px;
}

/* =============================================
   LOAD MORE SECTION
   ============================================= */
.load-more-section {
    text-align: center;
    margin-top: 56px;
}

.load-more-text {
    font-size: 14px;
    color: var(--text-light);
    margin-bottom: 24px;
    font-weight: 400;
}

.btn-load-more {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--primary);
    color: white;
    padding: 14px 32px;
    border-radius: var(--radius-sm);
    font-weight: 600;
    font-size: 14px;
    border: none;
    transition: var(--transition);
}

.btn-load-more:hover {
    background: var(--primary-light);
}

/* =============================================
   PAGE AVIS - ALL TESTIMONIALS PAGE
   ============================================= */
.page-hero {
    padding: 140px 0 80px;
    background: white;
}

.page-hero-content {
    text-align: center;
    max-width: 650px;
    margin: 0 auto;
}

.hero-badge-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #F3F4F6;
    padding: 8px 20px;
    border-radius: 50px;
    margin-bottom: 28px;
}

.hero-badge-pill svg {
    flex-shrink: 0;
}

.hero-badge-pill span {
    font-size: 13px;
    color: #374151;
    font-weight: 500;
}

.page-hero-title-serif {
    font-family: 'Playfair Display', serif;
    font-size: 45px;
    font-weight: 600;
    margin-bottom: 20px;
    color: #000000;
    line-height: 1.2;
    letter-spacing: -0.01em;
}

.page-hero-subtitle-new {
    font-size: 16px;
    color: #6B7280;
    margin-bottom: 32px;
    font-weight: 400;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

.hero-stars {
    font-size: 28px;
    margin-bottom: 40px;
    letter-spacing: 4px;
}

.hero-stats-card {
    display: flex;
    align-items: center;
    justify-content: center;
    background: white;
    border: 1px solid #E5E7EB;
    border-radius: 12px;
    padding: 32px 48px;
    gap: 48px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}

.stat-col {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.stat-number-serif {
    font-family: 'Playfair Display', serif;
    font-size: 36px;
    font-weight: 600;
    color: #000000;
    line-height: 1;
}

.stat-label-caps {
    font-size: 11px;
    font-weight: 600;
    color: #6B7280;
    text-transform: uppercase;
    letter-spacing: 0.8px;
}

.stat-separator {
    width: 1px;
    height: 48px;
    background: #E5E7EB;
}

.all-testimonials {
    padding: 80px 0;
    background: white;
}

.testimonials-filter {
    display: flex;
    justify-content: flex-end;
    margin-bottom: 40px;
    padding-bottom: 24px;
    border-bottom: 1px solid var(--border);
}

.filter-group {
    display: flex;
    align-items: center;
    gap: 12px;
}

.filter-group label {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-dark);
}

.filter-select {
    padding: 10px 16px;
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    font-size: 14px;
    font-weight: 400;
    color: var(--text-dark);
    background: white;
    cursor: pointer;
    transition: var(--transition);
}

.filter-select:hover {
    border-color: var(--primary);
}

.filter-select:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(26, 43, 74, 0.1);
}

.testimonials-list {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(360px, 1fr));
    gap: 32px;
}

.nav-links a.active {
    color: var(--primary);
    font-weight: 600;
}

/* =============================================
   FAQ SECTION
   ============================================= */
.faq {
    padding: 120px 0;
    background: var(--bg-light);
}

.faq-list {
    margin-top: 48px;
}

.faq-item {
    background: white;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 24px;
    margin-bottom: 12px;
    cursor: pointer;
    transition: var(--transition);
}

.faq-item:hover {
    border-color: var(--primary);
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}

.faq-question h3 {
    font-size: 16px;
    font-weight: 600;
    color: var(--text-dark);
}

.faq-icon {
    font-size: 20px;
    font-weight: 300;
    color: var(--text-light);
    flex-shrink: 0;
    transition: var(--transition);
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
    color: var(--primary);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 600px;
    margin-top: 16px;
}

.faq-answer p {
    font-size: 14px;
    line-height: 1.8;
    color: var(--text-gray);
    font-weight: 400;
}

/* =============================================
   FINAL CTA SECTION
   ============================================= */
.final-cta {
    padding: 100px 0;
    background: white;
}

.cta-box {
    background: var(--primary);
    border-radius: var(--radius);
    padding: 80px 48px;
    text-align: center;
    color: white;
}

.cta-content {
    position: relative;
    z-index: 2;
}

.cta-title {
    font-size: 44px;
    font-weight: 600;
    margin-bottom: 20px;
    line-height: 1.3;
}

.gradient-text-white {
    color: white;
}

.cta-text {
    font-size: 18px;
    margin-bottom: 48px;
    opacity: 0.95;
    font-weight: 400;
}

.cta-stats-mini {
    display: flex;
    justify-content: center;
    gap: 56px;
    margin-bottom: 48px;
    flex-wrap: wrap;
}

.mini-stat {
    text-align: center;
}

.mini-stat-value {
    display: block;
    font-size: 32px;
    font-weight: 600;
    margin-bottom: 6px;
}

.mini-stat-label {
    font-size: 13px;
    opacity: 0.9;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn-cta-large {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: white;
    color: var(--primary);
    padding: 16px 40px;
    border-radius: var(--radius-sm);
    font-weight: 600;
    font-size: 15px;
    border: none;
    transition: var(--transition);
}

.btn-cta-large:hover {
    background: var(--bg-light);
}

.btn-arrow-large {
    font-size: 16px;
}

.cta-trust {
    margin-top: 32px;
    font-size: 13px;
    opacity: 0.9;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    flex-wrap: wrap;
}

.trust-icon-small {
    font-size: 14px;
}

.trust-divider {
    opacity: 0.5;
}

/* =============================================
   FOOTER
   ============================================= */
.footer {
    background: var(--text-dark);
    color: white;
    padding: 60px 0 32px;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 80px;
    margin-bottom: 48px;
}

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

.footer-logo-img {
    height: 32px;
    width: auto;
    margin-bottom: 20px;
    filter: brightness(0) invert(1);
}

.footer-description {
    font-size: 13px;
    line-height: 1.8;
    opacity: 0.8;
    font-weight: 400;
}

.footer-links {
    display: flex;
    gap: 60px;
}

.footer-column h4 {
    font-size: 12px;
    font-weight: 600;
    margin-bottom: 20px;
    opacity: 0.6;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.footer-column ul {
    list-style: none;
}

.footer-column ul li {
    margin-bottom: 12px;
}

.footer-column ul li a {
    font-size: 13px;
    opacity: 0.8;
    transition: var(--transition);
    font-weight: 400;
}

.footer-column ul li a:hover {
    opacity: 1;
}

.footer-bottom {
    padding-top: 32px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
}

.footer-bottom p {
    font-size: 12px;
    opacity: 0.6;
    font-weight: 400;
}

/* =============================================
   RESPONSIVE DESIGN
   ============================================= */
@media (max-width: 1024px) {
    .hero-title {
        font-size: 44px;
    }
    
    .section-title {
        font-size: 36px;
    }
    
    .carousel-container {
        gap: 16px;
    }
    
    .carousel-btn {
        width: 40px;
        height: 40px;
    }
    
    .carousel-indicators {
        gap: 8px;
    }
    
    .indicator {
        width: 8px;
        height: 8px;
    }
    
    .indicator.active {
        width: 24px;
    }
    
    .verification-features {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .container,
    .container-small {
        padding: 0 24px;
    }
    
    .page-hero {
        padding: 100px 0 60px;
    }
    
    .page-hero-title-serif {
        font-size: 36px;
    }
    
    .page-hero-subtitle-new {
        font-size: 15px;
    }
    
    .hero-stars {
        font-size: 24px;
    }
    
    .hero-stats-card {
        flex-direction: column;
        gap: 24px;
        padding: 28px 32px;
    }
    
    .stat-separator {
        width: 80%;
        height: 1px;
    }
    
    .stat-number-serif {
        font-size: 32px;
    }
    
    .testimonials-list {
        grid-template-columns: 1fr;
    }
    
    .testimonials-filter {
        justify-content: center;
    }
    
    /* Rating section responsive */
    .trust-indicators {
        flex-wrap: wrap;
        gap: 8px;
    }
    
    .trust-indicator {
        padding: 6px 12px;
        font-size: 12px;
    }
    
    .rating-summary {
        flex-direction: column;
        gap: 20px;
        padding: 20px;
    }
    
    .rating-stars-big {
        font-size: 22px;
    }
    
    .rating-score {
        font-size: 36px;
    }
    
    .bar-track {
        width: 80px;
    }
    
    .hero {
        padding: 80px 0 60px;
    }
    
    .hero-title {
        font-size: 32px;
    }
    
    .hero-subtitle {
        font-size: 16px;
    }
    
    .hero-stats {
        gap: 0;
        margin: 48px 0;
    }
    
    .stat-item {
        padding: 0 24px;
    }
    
    .stat-number {
        font-size: 32px;
    }
    
    .hero-cta {
        flex-direction: column;
    }
    
    .btn-primary-large,
    .btn-secondary-large {
        width: 100%;
        justify-content: center;
    }
    
    .hero-nav-sections {
        margin-top: 32px;
    }
    
    .hero-nav-buttons {
        gap: 8px;
    }
    
    .hero-nav-btn {
        padding: 10px 16px;
        font-size: 13px;
    }
    
    .nav-btn-icon {
        font-size: 14px;
    }
    
    .verification-box {
        padding: 32px 24px;
    }
    
    .verification-header h3 {
        font-size: 18px;
    }
    
    .verification-buttons {
        flex-direction: column;
    }
    
    .btn-verification,
    .btn-verify-lei {
        width: 100%;
        justify-content: center;
    }
    
    .section-title {
        font-size: 28px;
    }
    
    .testimonial-card {
        padding: 24px;
    }
    
    .cta-box {
        padding: 60px 32px;
    }
    
    .cta-title {
        font-size: 32px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .floating-alert {
        left: 16px;
        right: 16px;
        bottom: 16px;
    }
}

@media (max-width: 480px) {
    .page-hero {
        padding: 80px 0 40px;
    }
    
    .page-hero-title-serif {
        font-size: 28px;
    }
    
    .page-hero-subtitle-new {
        font-size: 14px;
    }
    
    .hero-badge-pill {
        padding: 6px 16px;
    }
    
    .hero-badge-pill span {
        font-size: 12px;
    }
    
    .hero-stars {
        font-size: 20px;
        letter-spacing: 2px;
    }
    
    .hero-stats-card {
        padding: 24px 20px;
        gap: 20px;
    }
    
    .stat-number-serif {
        font-size: 28px;
    }
    
    .stat-label-caps {
        font-size: 10px;
    }
    
    .hero {
        padding: 60px 0 40px;
    }
    
    .hero-title {
        font-size: 24px;
    }
    
    .hero-badge {
        font-size: 12px;
        padding: 8px 12px;
    }
    
    .hero-stats {
        gap: 0;
    }
    
    .stat-item {
        padding: 0 16px;
    }
    
    .stat-number {
        font-size: 24px;
    }
    
    .section-title {
        font-size: 22px;
    }
    
    .intro-section h2 {
        font-size: 24px;
    }
    
    .verification-box {
        padding: 24px 16px;
    }
    
    .carousel-btn {
        width: 32px;
        height: 32px;
    }
    
    .carousel-btn svg {
        width: 18px;
        height: 18px;
    }
    
    .testimonial-card {
        padding: 20px;
    }
    
    .testimonial-footer {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }
    
    .cta-title {
        font-size: 24px;
    }
}
/* =============================================
   SECTION AVANTAGES
   ============================================= */
.advantages {
    padding: 100px 0;
    background: var(--bg-light);
}

.advantages-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 48px;
}

.advantage-card {
    background: white;
    padding: 32px;
    border-radius: var(--radius);
    border: 1px solid var(--border);
    transition: var(--transition);
}

.advantage-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary);
}

.advantage-icon {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.advantage-icon svg {
    stroke: white;
}

.advantage-title {
    font-size: 18px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 12px;
}

.advantage-text {
    font-size: 14px;
    color: var(--text-gray);
    line-height: 1.6;
}

/* Carte Rendement mise en avant */
.advantage-card.highlight-card {
    background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%);
    border: 2px solid #22c55e;
    position: relative;
    overflow: hidden;
}

.advantage-card.highlight-card::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, transparent 50%, rgba(34, 197, 94, 0.1) 50%);
}

.highlight-badge {
    position: absolute;
    top: 16px;
    right: 16px;
    background: linear-gradient(135deg, #22c55e 0%, #16a34a 100%);
    color: white;
    padding: 6px 12px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 600;
    box-shadow: 0 2px 8px rgba(34, 197, 94, 0.3);
}

.highlight-icon {
    background: linear-gradient(135deg, #22c55e 0%, #16a34a 100%) !important;
}

.advantage-card.highlight-card .advantage-title {
    color: #166534;
}

.highlight-stats {
    display: flex;
    gap: 16px;
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid rgba(34, 197, 94, 0.2);
}

.highlight-stat {
    flex: 1;
    text-align: center;
}

.highlight-value {
    display: block;
    font-size: 24px;
    font-weight: 800;
    color: #22c55e;
    line-height: 1;
    margin-bottom: 4px;
}

.highlight-label {
    font-size: 11px;
    color: #166534;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.advantage-card.highlight-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 32px rgba(34, 197, 94, 0.25);
    border-color: #16a34a;
}

/* =============================================
   SECTION CHIFFRES CLÉS
   ============================================= */
.key-numbers {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--primary) 0%, #1e3a5f 50%, var(--primary-light) 100%);
    position: relative;
    overflow: hidden;
}

.key-numbers::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 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.03'%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");
    opacity: 0.5;
}

.numbers-header {
    text-align: center;
    margin-bottom: 64px;
    position: relative;
    z-index: 1;
}

.numbers-title {
    font-size: 36px;
    font-weight: 700;
    color: white;
    margin-bottom: 12px;
}

.numbers-subtitle {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.8);
}

.numbers-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
    text-align: center;
    position: relative;
    z-index: 1;
}

.number-item {
    color: white;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 32px 24px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    transition: var(--transition);
}

.number-item:hover {
    transform: translateY(-8px);
    background: rgba(255, 255, 255, 0.15);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.number-icon-wrapper {
    width: 56px;
    height: 56px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.number-icon {
    width: 28px;
    height: 28px;
    stroke: white;
}

.number-content {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 0;
}

.number-value {
    font-size: 48px;
    font-weight: 800;
    line-height: 1;
    margin-bottom: 8px;
}

.number-suffix {
    font-size: 28px;
    font-weight: 600;
}

.number-suffix-inline {
    display: inline;
    font-size: 28px;
    font-weight: 600;
    color: white;
}

.number-label {
    font-size: 13px;
    font-weight: 500;
    opacity: 0.9;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 16px;
}

.number-graph {
    margin-top: 16px;
    padding-top: 16px;
    border-top: 1px solid rgba(255, 255, 255, 0.15);
}

/* Mini bar graph */
.mini-bar-graph {
    display: flex;
    align-items: flex-end;
    justify-content: center;
    gap: 6px;
    height: 40px;
    margin-bottom: 8px;
}

.mini-bar {
    width: 12px;
    background: linear-gradient(180deg, #22c55e 0%, #16a34a 100%);
    border-radius: 4px 4px 0 0;
    transition: height 0.5s ease;
}

/* Stars visual */
.stars-visual {
    margin-bottom: 8px;
}

.star-fill-track {
    width: 100%;
    height: 8px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 4px;
    overflow: hidden;
}

.star-fill-progress {
    height: 100%;
    background: linear-gradient(90deg, #fbbf24 0%, #f59e0b 100%);
    border-radius: 4px;
}

/* Circular progress */
.circular-progress {
    width: 50px;
    height: 50px;
    margin: 0 auto 8px;
}

.circular-progress svg {
    width: 100%;
    height: 100%;
    transform: rotate(-90deg);
}

.circle-bg {
    fill: none;
    stroke: rgba(255, 255, 255, 0.2);
    stroke-width: 3;
}

.circle-progress {
    fill: none;
    stroke: #22c55e;
    stroke-width: 3;
    stroke-linecap: round;
    transition: stroke-dasharray 1s ease;
}

/* Availability dots */
.availability-dots {
    display: flex;
    justify-content: center;
    gap: 6px;
    margin-bottom: 8px;
}

.availability-dots .dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
}

.availability-dots .dot.active {
    background: #22c55e;
    animation: pulse-dot 2s infinite;
}

.availability-dots .dot:nth-child(2) { animation-delay: 0.1s; }
.availability-dots .dot:nth-child(3) { animation-delay: 0.2s; }
.availability-dots .dot:nth-child(4) { animation-delay: 0.3s; }
.availability-dots .dot:nth-child(5) { animation-delay: 0.4s; }
.availability-dots .dot:nth-child(6) { animation-delay: 0.5s; }
.availability-dots .dot:nth-child(7) { animation-delay: 0.6s; }

@keyframes pulse-dot {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

.graph-trend {
    font-size: 12px;
    color: #22c55e;
    font-weight: 600;
}

/* =============================================
   SECTION PROCESSUS
   ============================================= */
.process-section {
    padding: 100px 0;
    background: white;
}

.process-steps {
    display: flex;
    justify-content: center;
    gap: 0;
    margin-top: 64px;
    position: relative;
}

.process-step {
    flex: 1;
    max-width: 320px;
    text-align: center;
    position: relative;
    padding: 0 24px;
}

.step-number {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    color: white;
    font-size: 24px;
    font-weight: 700;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    position: relative;
    z-index: 2;
}

.step-line {
    position: absolute;
    top: 32px;
    left: calc(50% + 40px);
    width: calc(100% - 32px);
    height: 2px;
    background: var(--border);
    z-index: 1;
}

.process-step:last-child .step-line {
    display: none;
}

.step-content {
    position: relative;
    z-index: 2;
}

.step-title {
    font-size: 18px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 12px;
}

.step-text {
    font-size: 14px;
    color: var(--text-gray);
    line-height: 1.6;
}

.process-cta {
    text-align: center;
    margin-top: 48px;
}

/* =============================================
   SECTION CONFIANCE
   ============================================= */
.trust-section {
    padding: 100px 0;
    background: var(--bg-light);
}

.trust-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.trust-badge {
    display: inline-block;
    background: white;
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 20px;
    border: 1px solid var(--border);
}

.trust-title {
    font-size: 36px;
    font-weight: 700;
    color: var(--text-dark);
    line-height: 1.2;
    margin-bottom: 20px;
}

.trust-description {
    font-size: 16px;
    color: var(--text-gray);
    line-height: 1.7;
    margin-bottom: 32px;
}

.trust-list {
    list-style: none;
    padding: 0;
    margin: 0 0 32px 0;
}

.trust-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 0;
    font-size: 15px;
    color: var(--text-dark);
    border-bottom: 1px solid var(--border);
}

.trust-list li:last-child {
    border-bottom: none;
}

.trust-check {
    width: 24px;
    height: 24px;
    background: var(--accent);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    flex-shrink: 0;
}

.btn-outline {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    border: 2px solid var(--primary);
    color: var(--primary);
    font-weight: 600;
    font-size: 14px;
    border-radius: var(--radius-sm);
    transition: var(--transition);
}

.btn-outline:hover {
    background: var(--primary);
    color: white;
}

.trust-visual {
    display: flex;
    justify-content: center;
}

.trust-card-stack {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.trust-mini-card {
    background: white;
    padding: 20px 28px;
    border-radius: var(--radius);
    border: 1px solid var(--border);
    display: flex;
    align-items: center;
    gap: 16px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.trust-mini-card:hover {
    transform: translateX(8px);
    box-shadow: var(--shadow-md);
}

.mini-card-icon {
    font-size: 28px;
}

.mini-card-text {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.mini-card-text strong {
    font-size: 15px;
    color: var(--text-dark);
}

.mini-card-text span {
    font-size: 13px;
    color: var(--text-light);
}

/* =============================================
   RESPONSIVE NOUVELLES SECTIONS
   ============================================= */
@media (max-width: 1024px) {
    .advantages-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .numbers-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }
    
    .numbers-title {
        font-size: 28px;
    }
    
    .trust-content {
        grid-template-columns: 1fr;
        gap: 48px;
    }
}

@media (max-width: 768px) {
    .advantages {
        padding: 60px 0;
    }
    
    .advantages-grid {
        grid-template-columns: 1fr;
    }
    
    .key-numbers {
        padding: 60px 0;
    }
    
    .numbers-header {
        margin-bottom: 40px;
    }
    
    .numbers-title {
        font-size: 24px;
    }
    
    .numbers-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }
    
    .number-item {
        padding: 24px 16px;
    }
    
    .number-value {
        font-size: 32px;
    }
    
    .number-suffix,
    .number-suffix-inline {
        font-size: 20px;
    }
    
    .number-icon-wrapper {
        width: 44px;
        height: 44px;
        margin-bottom: 12px;
    }
    
    .number-icon {
        width: 22px;
        height: 22px;
    }
    
    .process-section {
        padding: 60px 0;
    }
    
    .process-steps {
        flex-direction: column;
        gap: 32px;
    }
    
    .process-step {
        max-width: 100%;
    }
    
    .step-line {
        display: none;
    }
    
    .trust-section {
        padding: 60px 0;
    }
    
    .trust-title {
        font-size: 28px;
    }
}

@media (max-width: 480px) {
    .number-value {
        font-size: 32px;
    }
    
    .number-suffix {
        font-size: 20px;
    }
    
    .advantage-card {
        padding: 24px;
    }
}