/* ========================================
   Variables CSS
   ======================================== */
:root {
    /* Nouveau système de couleurs */
    --primary-orange: #ff6a4a;
    --primary-orange-dark: #e54f35;
    --primary-orange-light: #ff8570;
    --primary-blue: #2b325e;
    --primary-blue-dark: #1f2444;
    --primary-blue-light: #3d4573;
    --accent-blue: #2563eb;
    --accent-blue-light: #60a5fa;
    
    /* Couleurs d'accent - Jaune & Vert Menthe */
    --accent-yellow: #ffe744;
    --accent-yellow-light: #fff4b3;
    --accent-mint: #cbffea;
    --accent-mint-dark: #5ed4a5;
    --accent-cyan: #0891b2;
    --accent-cyan-light: #67e8f9;
    
    /* Couleurs principales (compatibilité) */
    --primary-color: #2b325e;
    --primary-dark: #1f2444;
    --primary-light: #3d4573;
    --secondary-color: #ff6a4a;
    --secondary-dark: #e55a00;
    
    /* Couleurs neutres améliorées */
    --text-dark: #1a1a1a;
    --text-gray: #4a5568;
    --text-light: #718096;
    --bg-light: #f7fafc;
    --bg-gray: #edf2f7;
    --bg-white: #ffffff;
    --border-color: #e2e8f0;
    
    /* Ombres */
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
    
    /* Espacements */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 1.5rem;
    --spacing-lg: 2rem;
    --spacing-xl: 3rem;
    --spacing-2xl: 4rem;
    
    /* Typographie */
    --font-primary: 'Inter', sans-serif;
    --font-heading: 'Plus Jakarta Sans', sans-serif;
    
    /* Transitions */
    --transition: all 0.3s ease;
}

/* ========================================
   Reset et Base
   ======================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-primary);
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--bg-white);
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: var(--spacing-sm);
}

h1 { font-size: 2.5rem; }
h2 { font-size: 2rem; }
h3 { font-size: 1.5rem; }
h4 { font-size: 1.25rem; }

@media (max-width: 768px) {
    h1 { font-size: 2rem; }
    h2 { font-size: 1.75rem; }
    h3 { font-size: 1.25rem; }
}

p {
    margin-bottom: var(--spacing-sm);
}

a {
    color: var(--primary-color);
    text-decoration: none;
    transition: var(--transition);
}

a:hover {
    color: var(--primary-dark);
}

ul {
    list-style: none;
}

/* ========================================
   Container
   ======================================== */
.container {
    max-width: 1600px; /* Élargi pour plus d'espace */
    margin: 0 auto;
    padding: 0 var(--spacing-xl); /* Plus de padding sur les côtés */
}

/* ========================================
   Boutons
   ======================================== */
.btn {
    display: inline-flex;
    align-items: center;
    gap: var(--spacing-xs);
    padding: 0.75rem 1.5rem;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    border: 3px solid transparent;
    border-radius: 25px 28px 26px 29px; /* Coins irréguliers */
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    text-decoration: none;
    box-shadow: 3px 3px 0px rgba(0, 0, 0, 0.15); /* Ombre cartoon */
}

.btn-lg {
    padding: 1rem 2rem;
    font-size: 1.125rem;
}

.btn-primary {
    background: var(--primary-orange);
    color: white;
    border-color: var(--primary-orange-dark);
    box-shadow: 4px 4px 0px rgba(255, 106, 74, 0.3);
}

.btn-primary:hover {
    background: var(--primary-orange-dark);
    color: white;
    transform: translateY(-3px);
    box-shadow: 6px 6px 0px rgba(255, 106, 74, 0.4); /* Ombre cartoon plus grande */
}

/* Section CTAs */
.section-cta {
    text-align: center;
    margin-top: 3rem;
    margin-bottom: 3rem;
    padding-top: 1rem;
}

.section-cta .btn {
    font-size: 1.1rem;
    padding: 1rem 2.5rem;
}

.method .section-cta .btn-primary {
    background: var(--primary-blue);
    color: white;
    border-color: var(--primary-blue);
    box-shadow: 4px 4px 0px rgba(43, 51, 94, 0.3);
}

.method .section-cta .btn-primary:hover {
    background: #1e3a8a;
    border-color: #1e3a8a;
    transform: translateY(-3px);
    box-shadow: 6px 6px 0px rgba(43, 51, 94, 0.4);
}

/* Orange CTA Buttons (Contact/Form) */
.btn-orange {
    background: var(--primary-orange);
    color: white;
    font-weight: 600;
    border-color: var(--primary-orange-dark);
    box-shadow: 4px 4px 0px rgba(255, 106, 74, 0.3);
}

.btn-orange:hover {
    background: var(--primary-orange-dark);
    color: white;
    transform: translateY(-3px);
    box-shadow: 6px 6px 0px rgba(255, 106, 74, 0.4);
}

/* Form Submit Button - Orange */
.btn-form-submit {
    background: #ff6a4a;
    color: white;
    padding: 1rem 2.5rem;
    border: none;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
    margin-top: 1.5rem;
}

.btn-form-submit:hover {
    background: #e55a00;
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(255, 106, 74, 0.3);
}

.btn-secondary {
    background: var(--primary-blue);
    color: white;
    border-color: var(--primary-blue-dark);
    box-shadow: 4px 4px 0px rgba(43, 51, 94, 0.3);
}

.btn-secondary:hover {
    background: var(--primary-blue-dark);
    color: white;
    transform: translateY(-3px);
    box-shadow: 6px 6px 0px rgba(43, 51, 94, 0.4);
}

.btn-block {
    display: flex;
    justify-content: center;
    width: 100%;
}

/* ========================================
   Navigation
   ======================================== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: #ffffffa6; /* Fond blanc semi-transparent (65%) */
    backdrop-filter: blur(10px); /* Effet de flou derrière la navbar */
    -webkit-backdrop-filter: blur(10px); /* Compatibilité Safari */
    box-shadow: var(--shadow-sm);
    z-index: 1000;
    padding: var(--spacing-lg) 0;
    transition: all 0.3s ease;
}

/* Navbar spéciale pour pages BDC et VAE */
.navbar.navbar-hero {
    background: white;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
}

.navbar.navbar-scrolled {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.navbar.navbar-scrolled .nav-menu a:not(.nav-cta) {
    color: white;
}

.navbar.navbar-scrolled .nav-menu a:not(.nav-cta):hover {
    color: var(--primary-orange);
}

.navbar.navbar-scrolled .dropdown-toggle {
    color: white;
}

.navbar.navbar-scrolled .logo-groupe-text {
    color: white;
}

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

.logo {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.logo-wrapper {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
}

.logo-groupe-text {
    display: none !important;
}

.logo-svg {
    width: 105px;
    height: auto;
    transition: transform 0.3s ease;
}

.logo:hover .logo-svg {
    transform: scale(1.05);
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: var(--spacing-lg);
}

.nav-menu a {
    /* color: var(--text-dark); Texte foncé sur fond bleu pastel */
    color: #000000;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 500;
    padding: var(--spacing-xs) var(--spacing-sm);
    transition: var(--transition);
}

.nav-menu a:hover {
    color: var(--primary-blue); /* Bleu foncé au hover */
}

/* Dropdown Menu Styles */
.dropdown {
    position: relative;
}

.dropdown-toggle {
    position: relative;
    padding-right: 20px !important;
    cursor: pointer;
    /* Mêmes styles que .nav-menu a */
    color: #000000;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 500;
    padding: var(--spacing-xs) var(--spacing-sm);
    text-decoration: none;
    transition: color 0.3s ease;
}

.dropdown-toggle:hover {
    color: var(--primary-blue);
}

.dropdown-toggle::after {
    content: '▼';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    font-size: 0.7em;
    transition: transform 0.3s ease;
}

.dropdown:hover .dropdown-toggle::after {
    transform: translateY(-50%) rotate(180deg);
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: white;
    min-width: 250px; /* Élargi pour que "Bilan de compétences" tienne sur une ligne */
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    margin-top: 10px;
    padding: 0.5rem 0;
    list-style: none;
    white-space: nowrap; /* Empêche le retour à la ligne */
    overflow: hidden;
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu li {
    list-style: none;
}

.dropdown-menu a {
    display: block;
    padding: 0.75rem 1rem;
    margin: 0.25rem 0.5rem;
    color: var(--text-dark);
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 0.95rem;
    border-radius: 6px;
}

.dropdown-menu a:hover {
    background: #f3f4f6;
    color: var(--primary-color);
}

.nav-cta {
    background: var(--primary-orange);
    color: white !important;
    padding: var(--spacing-xs) var(--spacing-md) !important;
    border-radius: 50px;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.nav-cta i {
    font-size: 0.85rem;
}

.nav-cta:hover {
    background: #e55a3a;
    color: white !important;
    transform: scale(1.05);
    box-shadow: 0 5px 20px rgba(255, 56, 13, 0.4);
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 4px;
    background: none;
    border: none;
    cursor: pointer;
    padding: var(--spacing-xs);
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: var(--text-dark);
    transition: var(--transition);
}

/* ========================================
   Hero Image Section (Deprecated - Image now in circle)
   ======================================== */
/* .hero-image-section {
    width: 100%;
    height: 700px;
    overflow: hidden;
    position: relative;
    margin-top: 0;
}

.hero-image-container {
    width: 100%;
    height: 100%;
    position: relative;
}

.hero-image-container::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.4);
    z-index: 1;
}

.hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
}

@media (max-width: 768px) {
    .hero-image-section {
        height: 420px;
        margin-top: 0;
    }
} */

/* ========================================
   Hero Section
   ======================================== */
.hero {
    padding: calc(150px + var(--spacing-2xl)) 0 var(--spacing-md);
    /* background: linear-gradient(135deg, 
        rgba(43, 51, 94, 0.03) 0%, 
        rgba(255, 106, 74, 0.05) 50%, 
        rgba(43, 51, 94, 0.08) 100%); */
    position: relative;
    overflow: hidden;
}

/* ========================================
   Hero avec Vidéo Background
   ======================================== */
.hero-video-bg {
    min-height: 70vh;
    display: flex;
    align-items: stretch;
    padding-bottom: 3rem;
}

.hero-video-bg > .container {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.hero-video-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

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

.hero-video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* Overlay sombre avec dégradé pour lisibilité */
    background: linear-gradient(
        135deg,
        rgba(43, 51, 94, 0.75) 0%,
        rgba(43, 51, 94, 0.6) 50%,
        rgba(255, 106, 74, 0.4) 100%
    );
}

.hero-wrapper.hero-centered {
    justify-content: flex-start; /* Aligne tout à gauche */
}

.hero-centered .hero-content {
    text-align: left;
    max-width: 70%; /* 70% de la largeur de l'écran */
    margin: 0;
}

.hero-video-bg .hero-title {
    color: #ffffff;
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
    font-size: 3.5rem;
    line-height: 1.15;
}

.hero-video-bg .hero-subtitle {
    color: rgba(255, 255, 255, 0.95);
    text-shadow: 0 1px 10px rgba(0, 0, 0, 0.2);
    font-size: 1.25rem;
    margin-top: 1.5rem;
}

.hero-video-bg .hero-cta {
    justify-content: flex-start;
    margin-top: 2.5rem;
    gap: 1.5rem;
}

/* Boutons plus grands dans le hero vidéo */
.hero-video-bg .btn-lg {
    padding: 1.2rem 2.5rem;
    font-size: 1.1rem;
    font-weight: 600;
}

.hero-video-bg .btn-secondary {
    background: rgba(255, 255, 255, 0.95);
    border: 2px solid #ffffff;
    color: var(--primary-blue);
    box-shadow: 4px 4px 0px rgba(255, 255, 255, 0.35);
}

.hero-video-bg .btn-secondary:hover {
    background: #ffffff;
    color: var(--primary-blue);
    border-color: #ffffff;
    box-shadow: 5px 5px 0px rgba(255, 255, 255, 0.45);
}

/* Cartes de réassurance dans le hero */
.hero-reassurance {
    display: flex;
    justify-content: flex-start;
    gap: 0.75rem;
    margin-top: 2rem;
    flex-wrap: nowrap;
}

.hero-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(5px);
    padding: 0.75rem 1rem;
    border-radius: 3px;
    border: none;
    box-shadow: none;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
    flex-shrink: 0;
    white-space: nowrap;
}

.hero-card:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: #ffffff;
    transform: translateY(-2px);
}

.hero-card i {
    font-size: 1.1rem;
    color: var(--primary-orange);
}

.hero-card p {
    margin: 0;
    font-size: 0.8rem;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 500;
    color: #ffffff;
    line-height: 1.2;
}

@media (max-width: 768px) {
    .hero-video-bg {
        min-height: 70vh;
    }
    
    .hero-centered .hero-content {
        padding: 0 1rem;
        text-align: center;
        max-width: 100%;
    }
    
    .hero-video-bg .hero-title {
        font-size: 2rem;
    }
    
    .hero-video-bg .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .hero-video-bg .hero-cta {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }
    
    .hero-video-bg .btn-lg {
        padding: 1rem 2rem;
        width: 100%;
        max-width: 320px;
    }
    
    .hero-reassurance {
        position: relative;
        bottom: auto;
        left: auto;
        transform: none;
        flex-direction: column;
        align-items: center;
        gap: 0.75rem;
        margin-top: 2rem;
        padding: 0 1rem;
    }
    
    .hero-card {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }
    
    .hero-video-bg {
        padding-bottom: 2rem;
    }
}

.hero-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 3rem;
}

.hero-content {
    flex: 1;
    text-align: left;
    max-width: 600px;
}

.hero-image-circle {
    width: 750px;
    height: 500px;
    border-radius: 30px;
    overflow: hidden;
    position: relative;
    /* box-shadow: 0 30px 80px rgba(0, 0, 0, 0.15); */
    flex-shrink: 0;
    transform: rotate(3deg);
    transition: transform 0.3s ease;
}

.hero-image-circle {
    border-radius: 30% 70% 70% 30% / 30% 60% 40% 70%;
    /* animation: morphBlob 8s ease-in-out infinite;  */
}
  
  @keyframes morphBlob {
    0%, 100% { border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%; }
    25% { border-radius: 58% 42% 75% 25% / 76% 46% 54% 24%; }
    50% { border-radius: 50% 50% 33% 67% / 55% 27% 73% 45%; }
    75% { border-radius: 33% 67% 58% 42% / 63% 68% 32% 37%; }
}

.hero-image-circle:hover {
    transform: rotate(0deg) scale(1.02);
}

.hero-image-circle img {
    width: 100%; 
    height: 100%;
    object-fit: cover;
    object-position: 70% 20%; /* Position équilibrée horizontalement et remontée verticalement */
    border-radius: 30px;
}

@media (max-width: 1200px) {
    .hero-image-circle {
        width: 480px;
        height: 400px;
    }
}

@media (max-width: 1024px) {
    .hero-image-circle {
        width: 420px;
        height: 350px;
    }
}

@media (max-width: 768px) {
    .hero-wrapper {
        flex-direction: column;
        text-align: center;
    }
    
    .hero-content {
        text-align: center;
        max-width: 100%;
    }
    
    .hero-image-circle {
        width: 300px;
        height: 270px;
        margin: 0 auto;
        transform: rotate(0deg);
    }
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    /* background: radial-gradient(circle at 30% 50%, rgba(37, 99, 235, 0.3) 0%, transparent 50%),
                radial-gradient(circle at 70% 80%, rgba(16, 185, 129, 0.2) 0%, transparent 50%); */
    pointer-events: none;
}

.hero-content {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.hero-title {
    font-size: 3.5rem;
    margin-bottom: var(--spacing-md);
    animation: fadeInUp 0.8s ease;
    line-height: 1.1;
    font-weight: 800;
    color: var(--text-dark);
}

.hero-subtitle {
    font-size: 1.35rem;
    margin-bottom: var(--spacing-lg);
    opacity: 1;
    animation: fadeInUp 0.8s ease 0.2s both;
    color: var(--text-gray);
    line-height: 1.6;
    font-weight: 400;
}

.hero-cta {
    display: flex;
    gap: 1rem;
    justify-content: flex-start;
    margin-bottom: var(--spacing-xl);
    flex-wrap: nowrap; /* Force les boutons sur la même ligne */
    animation: fadeInUp 0.8s ease 0.4s both;
}

.hero-cta .btn {
    padding: 0.75rem 1.5rem;
    font-size: 1rem;
    white-space: nowrap; /* Empêche le texte de se couper */
}

.hero-trust {
    display: flex;
    justify-content: center;
    align-items: stretch;
    gap: var(--spacing-md);
    margin-top: -2rem; /* Espace négatif pour rapprocher du hero */
    margin-bottom: var(--spacing-xl);
    animation: fadeInUp 0.8s ease 0.6s both;
    flex-wrap: nowrap;
}

.what-we-do .hero-trust {
    margin-top: -3rem; /* Rapproche les cartes du hero au-dessus */
    margin-bottom: calc(var(--spacing-2xl) * 2);
    animation: none;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    padding: var(--spacing-sm);
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.05) 0%, rgba(16, 185, 129, 0.05) 100%);
    border-radius: 8px;
    border: 1px solid var(--border-color);
    transition: var(--transition);
    flex: 1;
    min-width: 0;
}

.trust-item:hover {
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.1) 0%, rgba(16, 185, 129, 0.1) 100%);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.trust-item i {
    font-size: 1.5rem;
    color: var(--secondary-color);
}

.trust-item span {
    text-align: left;
    font-size: 0.875rem;
    color: var(--text-dark);
}

/* ========================================
   Sections communes
   ======================================== */
.section-title {
    text-align: center;
    margin-bottom: 0.75rem; /* Réduit l'espace avec le sous-titre */
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-blue);
}

.section-subtitle {
    text-align: center;
    color: var(--text-gray);
    font-size: 1.125rem;
    margin-bottom: calc(var(--spacing-xl) * 1.5);
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
    opacity: 0.9;
    font-weight: 400;
    letter-spacing: 0.2px;
    position: relative;
    padding-bottom: 1.5rem;
}

.section-subtitle::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 5px;
    background: var(--primary-orange);
    border-radius: 3px;
}

.section-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto var(--spacing-xl);
}

/* ========================================
   Ce que fait concrètement Formation Compétences
   ======================================== */
.what-we-do {
    margin-top: -2rem; /* Rapproche de la section précédente */
    padding: var(--spacing-sm) 0 var(--spacing-lg) 0;
    background: white;
    position: relative;
}

.what-we-do::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 70%;
    background: linear-gradient(180deg, #ffe74435 0%, #ffe74425 40%, #ffe74415 60%, transparent 100%);
    z-index: 0;
}

.what-we-do .container {
    position: relative;
    z-index: 1;
}

.wave-middle {
    display: none;
}

/* Wave dividers styles */
.wave-divider {
    line-height: 0;
    margin-top: -1px;
}

.wave-divider svg {
    width: 100%;
    height: 80px;
    display: block;
}

.wave-financing {
    fill: #cbffea;
}

.wave-contact {
    fill: #f8fafc;
}

.wave-footer {
    fill: #2b325e;
}

.wave-what-we-do {
    fill: white;
}

.intro-text {
    margin-bottom: var(--spacing-xl);
}


.process-steps {
    display: grid;
    gap: var(--spacing-xl);
    margin-top: var(--spacing-xl);
}

.process-step {
    background: var(--bg-light);
    background: #d2ffed8f; 
    padding: var(--spacing-lg);
    border-radius: 12px;
    position: relative;
    transition: var(--transition);
}

.process-step:hover {
    transform: translateX(10px);
    box-shadow: var(--shadow-lg);
}

.step-number {
    position: absolute;
    top: var(--spacing-lg);
    left: -20px;
    width: 60px;
    height: 60px;
    background: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: bold;
    box-shadow: var(--shadow-lg);
    z-index: 10;
}

.process-step h3 {
    margin-left: 50px;
    margin-bottom: var(--spacing-md);
    color: var(--text-dark);
}

.step-intro {
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: var(--spacing-sm);
}

.step-list {
    margin-left: var(--spacing-md);
    margin-bottom: var(--spacing-md);
}

.step-list li {
    position: relative;
    padding-left: var(--spacing-md);
    margin-bottom: var(--spacing-xs);
    color: var(--text-gray);
}

.step-list li:before {
    content: "•";
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: bold;
}

.step-result {
    display: flex;
    align-items: flex-start;
    gap: var(--spacing-sm);
    padding: 0;
    background: transparent;
    border-left: none;
    border-radius: 0;
    margin-top: var(--spacing-md);
}

.step-result i {
    color: var(--secondary-color);
    font-size: 1.25rem;
    margin-top: 2px;
}

/* ========================================
   Quote Banner
   ======================================== */
.quote-banner {
    display: none; /* Masqué */
    padding: var(--spacing-xl) 0;
    background: linear-gradient(135deg, 
        rgba(255, 106, 74, 0.95) 0%, 
        rgba(43, 51, 94, 0.95) 100%);
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(43, 51, 94, 0.15);
}

.quote-banner blockquote {
    margin: 0;
    padding: 0;
    text-align: center;
}

.quote-banner blockquote p {
    color: white;
    font-size: 1.5rem;
    font-weight: 600;
    line-height: 1.4;
    margin: 0.5rem 0;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.quote-banner blockquote p:first-child {
    font-size: 1.3rem;
    opacity: 0.95;
}

.quote-banner blockquote p:last-child {
    font-size: 1.75rem;
}

.quote-banner-content {
    max-width: 700px;
    margin: 0 auto;
    padding: var(--spacing-md) 0;
    position: relative;
    text-align: center;
}

.quote-line {
    font-size: 1.25rem;
    font-weight: 600;
    font-family: var(--font-heading);
    color: white;
    line-height: 1.6;
    margin-bottom: 0.25rem;
    font-style: normal;
}

.quote-line:last-child {
    margin-bottom: 0;
}

@media (max-width: 768px) {
    .quote-banner {
        padding: var(--spacing-sm) 0;
    }
    
    .quote-line {
        font-size: 0.9rem;
    }
}

/* ========================================
   Wrapper pour transition fluide
   ======================================== */
.method-approach-wrapper {
    background: white;
    position: relative;
    overflow: hidden;
}

/* ========================================
   Méthode en 3 temps
   ======================================== */
.method {
    padding: var(--spacing-lg) 0 var(--spacing-xl) 0;
    margin-bottom: 0;
    background: #ffffff;
    /* background: radial-gradient(circle at 30% 30%, rgba(37, 99, 235, 0.15) 0%, transparent 50%),
                radial-gradient(circle at 70% 60%, rgba(16, 185, 129, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 50% 90%, rgba(37, 99, 235, 0.1) 0%, transparent 40%); */
    position: relative;
}

.method-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-bottom: var(--spacing-2xl);
    position: relative;
}

.method-card {
    background: linear-gradient(135deg, #2b335e 0%, #1e2847 100%);
    padding: 2rem;
    border-radius: 28px 32px 30px 34px; /* Coins irréguliers effet sketched */
    border: 2px solid rgba(94, 221, 193, 0.3);
    box-shadow: 5px 5px 0px rgba(94, 221, 193, 0.2); /* Ombre cartoon */
    transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55); /* Bounce effect */
    position: relative;
    overflow: visible;
    font-family: 'Plus Jakarta Sans', sans-serif;
    transform: rotate(-1deg); /* Rotation légère */
    color: white;
}

/* Rotations alternées pour effet plus fun */
#method-card-1 {
    transform: rotate(-1deg);
}

#method-card-2 {
    transform: rotate(1deg);
    border-color: rgba(96, 165, 250, 0.4);
    box-shadow: 5px 5px 0px rgba(96, 165, 250, 0.2);
}

#method-card-3 {
    transform: rotate(-0.5deg);
    border-color: rgba(251, 191, 36, 0.4);
    box-shadow: 5px 5px 0px rgba(251, 191, 36, 0.2);
}

.method-card::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(135deg, var(--primary-orange), var(--primary-blue));
    border-radius: 20px;
    opacity: 0;
    z-index: -1;
    transition: opacity 0.4s ease;
}

.method-card:hover {
    transform: translateY(-8px) rotate(0deg) scale(1.05); /* Redresse et agrandit */
    box-shadow: 7px 7px 0px rgba(94, 221, 193, 0.35); /* Ombre cartoon plus grande */
}

#method-card-2:hover {
    box-shadow: 7px 7px 0px rgba(96, 165, 250, 0.35);
}

#method-card-3:hover {
    box-shadow: 7px 7px 0px rgba(251, 191, 36, 0.35);
}

.card-icon {
    width: 50px;
    height: 50px;
    background: transparent;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 0 1rem 0;
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-blue);
    font-family: var(--font-heading);
    box-shadow: none;
    transform: none;
    transition: all 0.3s ease;
}

.method-card:hover .card-icon {
    transform: rotate(0deg) scale(1.1);
    box-shadow: 0 12px 35px rgba(94, 221, 193, 0.4);
}

.method-card h3 {
    margin-bottom: 1.5rem;
    color: white;
    text-align: center;
    font-size: 1.3rem;
    font-weight: 700;
    letter-spacing: -0.5px;
}

.method-card ul {
    margin: var(--spacing-md) 0;
}

.method-card li {
    position: relative;
    padding-left: var(--spacing-md);
    margin-bottom: var(--spacing-sm);
    color: var(--text-gray);
}

.method-card li:before {
    content: "▸";
    position: absolute;
    left: 0;
    color: var(--accent-mint-dark);
    font-weight: bold;
    font-size: 1.2rem;
}

.card-footer {
    display: flex;
    align-items: flex-start;
    gap: var(--spacing-sm);
    padding: 1rem;
    background: linear-gradient(135deg, rgba(255, 106, 74, 0.05), rgba(43, 51, 94, 0.03));
    border-radius: 12px;
    margin-top: 1.5rem;
    border-left: 3px solid var(--primary-orange);
    position: relative;
    overflow: hidden;
}

.card-footer i {
    color: var(--secondary-color);
    margin-top: 2px;
}

.method-note {
    text-align: center;
    padding: var(--spacing-md) var(--spacing-lg);
    background: linear-gradient(135deg, rgba(43, 51, 94, 0.05), rgba(255, 106, 74, 0.03));
    border-radius: 12px;
    border-left: 3px solid var(--primary-orange);
    color: var(--text-gray);
    font-size: 0.95rem;
    margin-top: var(--spacing-lg);
    position: relative;
}

.method-note::before {
    content: 'ℹ';
    position: absolute;
    left: -1px;
    top: 50%;
    transform: translateY(-50%);
    width: 24px;
    height: 24px;
    background: var(--primary-orange);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: bold;
}

.method-note strong {
    color: var(--primary-blue);
    font-weight: 500;
}

.method-note i {
    color: var(--primary-orange);
    margin-right: var(--spacing-xs);
}

/* ========================================
   Approche différente
   ======================================== */
.approach {
    padding: 0 0 var(--spacing-2xl) 0;
    background: radial-gradient(circle at 70% 20%, rgba(37, 99, 235, 0.15) 0%, transparent 50%),
                radial-gradient(circle at 30% 60%, rgba(16, 185, 129, 0.1) 0%, transparent 50%);
    position: relative;
    margin-top: -30px;
}

.approach-tagline {
    font-size: 1.125rem;
    color: var(--text-gray);
    margin-bottom: var(--spacing-xl);
    font-weight: 400;
}

.approach-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--spacing-lg);
    margin-bottom: var(--spacing-xl);
}

.feature {
    text-align: center;
    padding: var(--spacing-lg);
    transition: var(--transition);
}

.feature:hover {
    transform: scale(1.05);
}

.feature-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto var(--spacing-md);
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.feature-icon i {
    font-size: 2rem;
    color: white;
}

.feature h3 {
    margin-bottom: var(--spacing-md);
    color: var(--text-dark);
}

.feature ul {
    text-align: left;
    max-width: 400px;
    margin: 0 auto;
}

.feature li {
    position: relative;
    padding-left: var(--spacing-md);
    margin-bottom: var(--spacing-sm);
    color: #4b5563;
}

.feature li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--secondary-color);
    font-weight: bold;
}

.approach-conclusion {
    text-align: center;
    padding: var(--spacing-lg);
    background: #ffffff;
    border-radius: 12px;
}

.approach-conclusion p {
    font-size: 1.125rem;
    margin: 0;
}

.approach-conclusion i {
    color: var(--primary-color);
    font-size: 2rem;
    margin-bottom: var(--spacing-md);
}

#title-approche {
    margin-bottom: -0.5rem;
}

/* ========================================
   Hero Banner (Banderole)
   ======================================== */
.hero-banner {
    position: relative;
    height: 500px;
    background: url('/assets/images/hero.png') center 25% / cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-banner-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(43, 50, 94, 0.6);
}

.hero-banner-content {
    position: relative;
    z-index: 1;
    text-align: center;
    padding: 0 var(--spacing-lg);
}

.hero-banner-content p {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: white;
    margin: 0;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-banner-content .text-orange {
    color: var(--primary-orange);
}

.banner-wave-top,
.banner-wave-bottom {
    position: absolute;
    left: 0;
    width: 100%;
    height: 60px;
    z-index: 2;
}

.banner-wave-top {
    top: 0;
}

.banner-wave-bottom {
    bottom: 0;
}

/* ========================================
   Témoignages
   ======================================== */
.testimonials {
    padding: var(--spacing-xl) 0 calc(var(--spacing-2xl) * 1.5) 0;
    margin-top: 0;
    background: #ffffff;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: var(--spacing-lg);
}

.testimonial-card {
    background: white;
    padding: var(--spacing-lg);
    border-radius: 20px;
    border: none;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    position: relative;
    font-family: 'Plus Jakarta Sans', sans-serif;
}

/* Variantes de couleurs pour les cartes de témoignages */
.testimonial-card.card-color-mauve {
    background: white;
    border: none;
    box-shadow: 0 4px 20px rgba(121, 134, 203, 0.12);
}

.testimonial-card.card-color-yellow {
    background: white;
    border: none;
    box-shadow: 0 4px 20px rgba(212, 175, 55, 0.12);
}

.testimonial-card.card-color-mint {
    background: white;
    border: none;
    box-shadow: 0 4px 20px rgba(102, 178, 165, 0.12);
}

.testimonial-card.card-color-blue {
    background: white;
    border: none;
    box-shadow: 0 4px 20px rgba(92, 124, 186, 0.12);
}

/* Hover states pour les variantes de couleur */
.testimonial-card.card-color-mauve:hover {
    box-shadow: 0 8px 30px rgba(121, 134, 203, 0.2);
    transform: translateY(-5px);
}

.testimonial-card.card-color-yellow:hover {
    box-shadow: 0 8px 30px rgba(212, 175, 55, 0.2);
    transform: translateY(-5px);
}

.testimonial-card.card-color-mint:hover {
    box-shadow: 0 8px 30px rgba(102, 178, 165, 0.2);
    transform: translateY(-5px);
}

.testimonial-card.card-color-blue:hover {
    box-shadow: 0 8px 30px rgba(92, 124, 186, 0.2);
    transform: translateY(-5px);
}

.testimonial-card::after {
    content: '"';
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 3rem;
    color: var(--primary-orange);
    opacity: 0.2;
    font-family: Georgia, serif;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.testimonial-header {
    display: flex;
    align-items: center;
    gap: var(--spacing-md);
    margin-bottom: var(--spacing-md);
}

.testimonial-avatar {
    width: 60px;
    height: 60px;
    min-width: 60px;
    min-height: 60px;
    background: linear-gradient(135deg, var(--accent-mint-dark) 0%, #3bb78f 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: white;
    font-weight: 600;
    font-size: 1.2rem;
    box-shadow: 0 4px 12px rgba(43, 51, 94, 0.2);
}

.testimonial-avatar i {
    font-size: 1.5rem;
    color: white;
}

.testimonial-info h4 {
    margin-bottom: 0.25rem;
    color: var(--text-dark);
}

.testimonial-info p {
    font-size: 0.875rem;
    color: var(--text-gray);
    margin: 0;
}

.testimonial-content {
    margin-bottom: var(--spacing-md);
    font-style: italic;
    /* color: rgb(41, 41, 41); */
    color: #1f2937;
    font-weight: 500;
    /* color: var(--text-gray); */
    line-height: 1.8;
}

.testimonial-rating {
    display: flex;
    gap: 0.25rem;
}

.testimonial-rating i {
    color: #fbbf24;
    font-size: 1rem;
}

/* ========================================
   Financements
   ======================================== */
.funding {
    padding: var(--spacing-2xl) 0;
    background: white;
}

.funding-content {
    max-width: 800px;
    margin: 0 auto;
}

.funding-intro {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: var(--spacing-md);
    color: var(--text-dark);
}

.funding-list {
    margin-bottom: var(--spacing-lg);
}

.funding-list li {
    position: relative;
    padding-left: var(--spacing-lg);
    margin-bottom: var(--spacing-md);
    color: var(--text-gray);
    line-height: 1.8;
}

.funding-list li:before {
    content: "€";
    position: absolute;
    left: 0;
    color: var(--secondary-color);
    font-weight: bold;
    font-size: 1.25rem;
}

.funding-objective {
    display: flex;
    align-items: flex-start;
    gap: var(--spacing-md);
    padding: var(--spacing-lg);
    background: var(--bg-light);
    border-left: 4px solid var(--primary-color);
    border-radius: 4px;
}

.funding-objective i {
    color: var(--primary-color);
    font-size: 2rem;
    margin-top: 4px;
}

/* ========================================
   CTA Final et Formulaire
   ======================================== */
/* Wrapper pour le dégradé continu */
.bottom-gradient-wrapper {
    background: linear-gradient(to bottom, 
        white 0%, 
        white 15%, 
        rgba(239, 246, 255, 1) 30%,
        rgba(219, 234, 254, 1) 45%,
        rgba(191, 219, 254, 1) 60%,
        rgba(147, 197, 253, 1) 70%,
        rgba(96, 165, 250, 1) 80%,
        rgba(59, 130, 246, 1) 88%,
        #2b325e 100%);
    position: relative;
}

.final-cta {
    padding: var(--spacing-2xl) 0 var(--spacing-2xl) 0;
    background: transparent;
    color: var(--text-dark);
    position: relative;
}

.cta-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-2xl);
    align-items: start;
    margin-bottom: var(--spacing-xl);
}

@media (max-width: 968px) {
    .cta-content {
        grid-template-columns: 1fr;
    }
}

.cta-content .section-title {
    color: var(--text-dark);
}

.benefits {
    display: grid;
    gap: var(--spacing-md);
    max-width: 700px;
    margin: var(--spacing-lg) auto;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    padding: var(--spacing-sm);
    background: white;
    border-radius: 8px;
    box-shadow: var(--shadow-sm);
    color: var(--text-dark);
}

.benefit-item i {
    font-size: 1.25rem;
    color: var(--secondary-color);
}

.contact-form-wrapper {
    max-width: 600px;
    margin: 0 auto;
    background: #fff5f3; /* Rouge clair / rosé */
    padding: var(--spacing-xl);
    border-radius: 35px 30px 33px 28px; /* Coins irréguliers effet sketched */
    border: 3px solid var(--primary-orange);
    box-shadow: 6px 6px 0px rgba(255, 106, 74, 0.3); /* Ombre cartoon */
    position: relative;
    z-index: 2;
    font-family: 'Plus Jakarta Sans', sans-serif;
    transform: rotate(-0.5deg); /* Rotation légère fun */
    transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.contact-form-wrapper:hover {
    transform: rotate(0deg) scale(1.02);
    box-shadow: 8px 8px 0px rgba(255, 106, 74, 0.35);
}

.contact-form-wrapper h3 {
    color: var(--primary-blue);
    margin-bottom: var(--spacing-sm);
    font-size: 1.75rem;
    text-align: center;
}

.contact-form-wrapper > p {
    color: var(--text-gray);
    margin-bottom: var(--spacing-lg);
    text-align: center;
    font-size: 1.05rem;
}

.contact-form {
    display: grid;
    gap: var(--spacing-md);
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-md);
}

.form-group label {
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: var(--spacing-xs);
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 0.875rem 1.25rem;
    border: 2px solid rgba(43, 51, 94, 0.15);
    border-radius: 18px 16px 17px 19px; /* Coins légèrement irréguliers */
    font-size: 1rem;
    font-family: 'Plus Jakarta Sans', sans-serif;
    background-color: white;
    box-sizing: border-box;
    width: 100%;
    transition: all 0.3s ease;
}

.form-group textarea::placeholder {
    font-family: var(--font-primary);
    color: #9ca3af;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-orange);
    border-width: 3px;
    background-color: white;
    box-shadow: 3px 3px 0px rgba(255, 106, 74, 0.25); /* Ombre cartoon au focus */
    transform: translateY(-2px);
}

.checkbox-group {
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    margin-top: var(--spacing-sm);
}

.checkbox-group label {
    display: flex;
    align-items: flex-start;
    gap: var(--spacing-xs);
    font-weight: normal;
    font-size: 0.875rem;
    line-height: 1.5;
    cursor: pointer;
    margin: 0;
}

.checkbox-group input[type="checkbox"] {
    margin-top: 2px;
    flex-shrink: 0;
    width: 16px;
    height: 16px;
}

.checkbox-group span {
    flex: 1;
}

.form-success {
    text-align: center;
    padding: var(--spacing-lg);
    background: var(--secondary-color);
    color: white;
    border-radius: 8px;
    margin-top: var(--spacing-md);
}

.form-success i {
    font-size: 2rem;
    margin-bottom: var(--spacing-sm);
}

/* ========================================
   Footer
   ======================================== */
.footer {
    padding: var(--spacing-xl) 0 var(--spacing-lg);
    background: #2e3b63;
    color: white;
    position: relative;
    border-radius: 0;
    font-family: 'Plus Jakarta Sans', sans-serif;
    margin-top: -5px; /* Colle le footer à la wave */
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 50%, rgba(255, 255, 255, 0.05) 0%, transparent 50%),
                radial-gradient(circle at 70% 80%, rgba(16, 185, 129, 0.08) 0%, transparent 50%);
    pointer-events: none;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: var(--spacing-xl);
    margin-bottom: var(--spacing-xl);
    position: relative;
    z-index: 1;
}

.footer-brand h4 {
    color: white;
    margin-bottom: var(--spacing-sm);
    font-size: 1.5rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
    font-weight: 600;
}

.footer-brand p {
    color: rgba(255, 255, 255, 0.95);
    font-size: 0.95rem;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.footer-offers h5,
.footer-links h5,
.footer-legal h5 {
    color: white;
    margin-bottom: 0.5rem;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.4);
}

.footer-offers ul,
.footer-links ul,
.footer-legal ul {
    list-style: none;
}

.footer-offers a,
.footer-links a,
.footer-legal a {
    color: rgba(255, 255, 255, 0.9);
    line-height: 2;
    transition: var(--transition);
    font-size: 0.95rem;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

.footer-offers a:hover,
.footer-links a:hover,
.footer-legal a:hover {
    color: white;
    font-weight: 600;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.5);
}

/* Footer Contact Info */
.footer-contact-info {
    margin-top: var(--spacing-md);
    margin-bottom: var(--spacing-md);
}

.footer-contact-info p {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.95rem;
}

.footer-contact-info i {
    color: white;
    font-size: 1.1rem;
    width: 20px;
}

.footer-contact-info a {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-contact-info a:hover {
    color: white;
}

/* Footer Social Links */
.footer-social {
    margin-top: var(--spacing-md);
    display: flex;
    gap: 0.75rem;
}

.social-link {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: white;
    color: var(--primary-blue);
    font-size: 1.25rem;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.social-link:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
}

.social-link.linkedin:hover {
    background: #0077b5;
    color: white;
}

/* Footer Certification Qualiopi */
.footer-certification h5 {
    color: white;
    margin-bottom: 0.5rem;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.qualiopi-link {
    display: inline-block;
    background: white;
    padding: 12px;
    border-radius: 8px;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.qualiopi-link:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25);
}

.qualiopi-logo {
    display: block;
    width: 100%;
    max-width: 150px;
    height: auto;
    transition: opacity 0.3s ease;
}

.qualiopi-link:hover .qualiopi-logo {
    opacity: 0.9;
}

/* Footer Avis Vérifiés */
.footer-avis-verifies h5 {
    color: white;
    margin-bottom: 0.5rem;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.avis-verifies-badge {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2px;
    background: #2d3748;
    color: white;
    padding: 10px 12px;
    border-radius: 12px;
    min-width: 100px;
    text-decoration: none;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    border: 2px solid rgba(255,255,255,0.2);
}

.avis-verifies-badge:hover {
    transform: scale(1.05);
    box-shadow: 0 4px 16px rgba(0,0,0,0.3);
}

.avis-verifies-badge .avis-rating {
    font-size: 1.1rem;
    font-weight: 700;
}

.avis-verifies-badge .avis-stars {
    color: #f59e0b;
    font-size: 0.7rem;
}

.avis-verifies-badge .avis-count,
.avis-verifies-badge .avis-label {
    font-size: 0.6rem;
    opacity: 0.95;
}

.avis-verifies-badge .avis-cta {
    font-size: 0.55rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-top: 2px;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: var(--spacing-md);
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.875rem;
    position: relative;
    z-index: 1;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.footer-linkedin {
    color: white;
    font-size: 1.2rem;
    transition: color 0.3s ease, transform 0.3s ease;
}

.footer-linkedin:hover {
    color: white;
    transform: scale(1.1);
    opacity: 0.8;
}

/* ========================================
   Animations
   ======================================== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ========================================
   Responsive Design
   ======================================== */
@media (max-width: 1024px) {
    .hero-trust {
        /* margin-top: 5rem; */
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: var(--spacing-md);
    }
    
    .trust-item {
        flex: unset;
    }
    
    .trust-item span {
        font-size: 0.8rem;
    }
}

@media (max-width: 768px) {
    .mobile-menu-toggle {
        display: flex;
    }
    
    .nav-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: white;
        flex-direction: column;
        padding: var(--spacing-md);
        box-shadow: var(--shadow-lg);
    }
    
    .nav-menu.active {
        display: flex;
    }
    
    .logo-groupe-text {
        font-size: 0.7rem !important;
        letter-spacing: 0.5px !important;
        margin-left: 2px !important;
        margin-top: -3px !important;
    }
    
    .logo-svg {
        width: 90px;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-cta {
        flex-direction: row;
        justify-content: center;
        gap: 0.5rem;
        flex-wrap: nowrap; /* Force sur la même ligne même sur mobile */
    }
    
    .hero-cta .btn {
        padding: 0.5rem 0.75rem;
        font-size: 0.85rem;
        min-width: 0; /* Permet aux boutons de rétrécir si nécessaire */
    }
    
    .hero-cta .btn i {
        display: none; /* Cache les icônes sur mobile pour gagner de la place */
    }
    
    .hero-trust {
        display: flex;
        flex-direction: column;
        gap: var(--spacing-sm);
    }
    
    .trust-item {
        width: 100%;
        justify-content: center;
    }
    
    .process-step {
        padding-left: var(--spacing-md);
    }
    
    .step-number {
        position: static;
        margin: 0 auto var(--spacing-md);
    }
    
    .process-step h3 {
        margin-left: 0;
        text-align: center;
    }
    
    .method-cards {
        grid-template-columns: 1fr;
    }
    
    .approach-features {
        grid-template-columns: 1fr;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: var(--spacing-lg);
    }
    
    .footer-links a:hover,
    .footer-legal a:hover {
        transform: none;
    }
}

@media (max-width: 480px) {
    .logo-groupe-text {
        font-size: 0.6rem !important;
        letter-spacing: 0.3px !important;
        margin-left: 2px !important;
        margin-top: -3px !important;
    }
    
    .logo-svg {
        width: 75px;
    }
    
    .hero-title {
        font-size: 1.75rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .section-title {
        font-size: 1.5rem;
    }
}

/* ========================================
   Footer Logo Styles
   ======================================== */
.footer-logo-container {
    margin-bottom: var(--spacing-md);
}

.footer-logo-wrapper {
    display: inline-flex;
    flex-direction: column;
    align-items: flex-start;
}

/* Logo footer en blanc */
.footer-logo-wrapper .logo-groupe-text {
    color: white !important;
}

.footer-logo-wrapper .logo-svg {
    width: 140px;
    height: 60px;
    filter: brightness(1.1);
}

.footer-tagline .tagline-main {
    color: white;
    font-weight: 600;
    font-size: 1.1rem;
    font-family: 'Plus Jakarta Sans', sans-serif;
}

.footer-tagline .tagline-sub {
    color: white;
    font-size: 0.9rem;
}

.footer-tagline .tagline-item {
    text-decoration: underline;
    text-underline-offset: 3px;
}

.footer-tagline .bullet {
    color: white;
    text-decoration: none;
}

.footer-offers h5:not(:first-child) {
    margin-top: 1.5rem;
}

@media (max-width: 768px) {
    .footer-logo-wrapper {
        padding: 10px 14px;
    }
    
    .footer-logo-wrapper .logo-groupe-text {
        font-size: 1.0rem !important;
    }
    
    .footer-logo-wrapper .logo-svg {
        width: 90px;
        height: 40px;
    }
}

/* ========================================
   Carrousel de témoignages
   ======================================== */
.testimonials-carousel {
    position: relative;
    width: 100%; /* Pleine largeur de l'écran */
    max-width: none; /* Pas de limite */
    overflow: hidden;
    padding: 2rem 5rem; /* Plus de padding sur les côtés pour les flèches */
}

.testimonials-track {
    display: flex;
    gap: 2rem;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.testimonials-track .testimonial-card,
.testimonials-track .vae-testimonial {
    min-width: 350px;
    max-width: 400px;
    flex-shrink: 0;
    width: calc((100% - 4rem) / 3);
}

.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(255, 107, 74, 0.1);
    border: 2px solid rgba(255, 107, 74, 0.3);
    color: var(--primary-orange);
    font-size: 1.25rem;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 107, 74, 0.1);
    z-index: 10;
    backdrop-filter: blur(10px);
}

.carousel-btn:hover {
    background: rgba(255, 107, 74, 0.2);
    border-color: rgba(255, 107, 74, 0.5);
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 6px 20px rgba(255, 107, 74, 0.2);
}

.carousel-btn-prev {
    left: 1rem; /* À l'intérieur du padding */
}

.carousel-btn-next {
    right: 1rem; /* À l'intérieur du padding */
}

/* Sur tablette/petit écran */
@media (max-width: 1024px) {
    .testimonials-carousel {
        padding: 2rem 3.5rem;
    }
    
    .testimonials-track .testimonial-card {
        width: calc((100% - 2rem) / 2);
        min-width: 300px;
    }
    
    .carousel-btn-prev {
        left: 0.5rem;
    }
    
    .carousel-btn-next {
        right: 0.5rem;
    }
}

@media (max-width: 768px) {
    .testimonials-carousel {
        padding: 2rem 3rem;
    }
    
    .testimonials-track .testimonial-card {
        width: calc(100% - 2rem);
        min-width: 280px;
    }
}

.carousel-dots {
    display: flex;
    justify-content: center;
    gap: 0.75rem;
    margin-top: 2rem;
}

.carousel-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(43, 51, 94, 0.2);
    border: 2px solid var(--primary-blue);
    cursor: pointer;
    transition: all 0.3s ease;
}

.carousel-dot.active {
    background: var(--primary-orange);
    border-color: var(--primary-orange);
    transform: scale(1.3);
}

.carousel-dot:hover {
    background: var(--primary-orange);
    transform: scale(1.2);
}

/* ========================================
   Badges/Tags colorés
   ======================================== */
.section-badge {
    display: inline-block;
    padding: 0.5rem 1.25rem;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 1rem;
    font-family: 'Plus Jakarta Sans', sans-serif;
}

.badge-orange {
    background: linear-gradient(135deg, var(--primary-orange), var(--primary-orange-light));
    color: white;
    box-shadow: 0 4px 12px rgba(255, 106, 74, 0.25);
}

.badge-blue {
    background: linear-gradient(135deg, #4a90e2, #357abd);
    color: white;
    box-shadow: 0 4px 12px rgba(74, 144, 226, 0.25);
}

.badge-purple {
    background: linear-gradient(135deg, #9333ea, #7e22ce);
    color: white;
    box-shadow: 0 4px 12px rgba(147, 51, 234, 0.25);
}

.badge-green {
    background: linear-gradient(135deg, #10b981, #059669);
    color: white;
    box-shadow: 0 4px 12px rgba(16, 185, 129, 0.25);
}

/* ========================================
   CTA Benefits Section
   ======================================== */
.cta-benefits {
    background: white;
    padding: var(--spacing-xl);
    border-radius: 24px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border: 3px solid var(--primary-blue);
    margin-bottom: var(--spacing-xl);
    font-family: 'Plus Jakarta Sans', sans-serif;
}

.cta-benefits h3 {
    color: var(--primary-blue);
    font-size: 1.5rem;
    margin-bottom: var(--spacing-lg);
    font-weight: 700;
    text-align: center;
}

.cta-benefits ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.cta-benefits li {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: var(--spacing-sm) 0;
    color: var(--text-dark);
    font-size: 1rem;
    line-height: 1.5;
}

.cta-benefits li::before {
    content: '✓';
    flex-shrink: 0;
    width: 1.75rem;
    height: 1.75rem;
    background: var(--accent-mint-dark);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 0.9rem;
}

.cta-benefits li strong {
    color: var(--primary-blue);
    font-weight: 600;
    white-space: nowrap;
}

/* ========================================
   Section Financements
   ======================================== */
.financing {
    padding: var(--spacing-2xl) 0;
    background: #cbffea;
}

.financing-content {
    max-width: 800px;
    margin: 0 auto;
    background: white;
    padding: var(--spacing-xl);
    border-radius: 32px 28px 34px 30px; /* Coins irréguliers effet sketched */
    box-shadow: 5px 5px 0px rgba(43, 51, 94, 0.2); /* Ombre cartoon */
    border: 3px solid var(--primary-blue);
    font-family: 'Plus Jakarta Sans', sans-serif;
    transform: rotate(0.5deg);
    transition: all 0.3s ease;
}

.financing-content:hover {
    transform: rotate(0deg) scale(1.02);
    box-shadow: 7px 7px 0px rgba(43, 51, 94, 0.25);
}

.financing-content ul {
    list-style: none;
    padding: 0;
    margin: var(--spacing-md) 0;
}

.financing-content li {
    position: relative;
    padding-left: 2rem;
    margin-bottom: var(--spacing-sm);
    color: var(--text-dark);
}

.financing-content li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-orange);
    font-weight: bold;
    font-size: 1.2rem;
}

.financing-objective {
    background: linear-gradient(135deg, rgba(255, 106, 74, 0.08), rgba(43, 51, 94, 0.05));
    padding: var(--spacing-md);
    border-radius: 12px;
    border-left: 4px solid var(--primary-orange);
    margin-top: var(--spacing-lg);
}

/* ========================================
   Section Financements - Design Moderne
   ======================================== */
.financing-modern {
    padding: var(--spacing-2xl) 0;
    background: linear-gradient(180deg, #cbffea 0%, #e8fff5 100%);
    position: relative;
    font-family: 'Plus Jakarta Sans', sans-serif;
}

.financing-hero {
    text-align: center;
    margin-bottom: var(--spacing-xl);
}

.financing-label {
    display: inline-block;
    background: white;
    padding: 0.5rem 1.25rem;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--primary-blue);
    margin-bottom: 1.5rem;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
}

.financing-hero h2 {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary-blue);
    margin-bottom: 0.75rem;
    line-height: 1.2;
}

.text-gradient {
    background: linear-gradient(135deg, var(--primary-orange) 0%, #ff8a65 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.financing-tagline {
    font-size: 1.2rem;
    color: var(--text-muted);
    font-weight: 500;
}

.financing-options-row {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: var(--spacing-xl);
}

.financing-pill {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    background: white;
    padding: 1rem 1.5rem;
    border-radius: 60px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    cursor: default;
    position: relative;
}

.financing-pill:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.12);
}

.pill-icon {
    font-size: 1.5rem;
}

.pill-text {
    font-weight: 600;
    color: var(--primary-blue);
    font-size: 1rem;
}

.pill-badge {
    position: absolute;
    top: -8px;
    right: -5px;
    background: var(--primary-orange);
    color: white;
    font-size: 0.65rem;
    font-weight: 700;
    padding: 0.25rem 0.5rem;
    border-radius: 20px;
    text-transform: uppercase;
}

.financing-pill {
    cursor: pointer;
}

.financing-pill.active {
    background: var(--primary-blue);
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(43, 50, 94, 0.25);
}

.financing-pill.active .pill-text {
    color: white;
}

.financing-details-panel {
    max-width: 1000px;
    margin: 0 auto var(--spacing-lg);
    min-height: 0;
    overflow: hidden;
}

.financing-detail {
    display: none;
    background: white;
    padding: 2.5rem 3rem;
    border-radius: 20px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    animation: slideDown 0.3s ease;
    text-align: center;
}

.financing-detail.active {
    display: block;
}

.financing-detail h4 {
    color: var(--primary-blue);
    font-size: 1.3rem;
    margin-bottom: 1.25rem;
}

.financing-detail p {
    color: var(--text-dark);
    line-height: 1.8;
    margin-bottom: 1.5rem;
    font-size: 1rem;
}

.detail-tag {
    display: inline-block;
    background: var(--accent-mint-dark);
    color: white;
    padding: 0.4rem 0.85rem;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.85rem;
    font-weight: 600;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.financing-promise {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    background: white;
    max-width: 700px;
    margin: 0 auto var(--spacing-xl);
    padding: 1.5rem 2rem;
    border-radius: 20px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

.financing-promise-inline {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 2px solid #cbffea;
    font-family: 'Plus Jakarta Sans', sans-serif;
}

.financing-promise-inline .promise-text {
    text-align: left;
}

.promise-icon {
    width: 50px;
    height: 50px;
    min-width: 50px;
    background: var(--accent-mint-dark);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: bold;
}

.promise-text {
    color: var(--text-dark);
    font-size: 1rem;
    line-height: 1.5;
}

.promise-text strong {
    color: var(--primary-blue);
}

/* ========================================
   Cartes de Réassurance (Styles additionnels)
   ======================================== */
.reassurance-cards {
    padding: var(--spacing-xl) 0;
    margin-top: var(--spacing-lg);
    position: relative;
    z-index: 10;
}

.cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--spacing-md);
}

.reassurance-card {
    background: white;
    padding: 1.25rem 1.5rem;
    border-radius: 30px 25px 28px 26px; /* Coins irréguliers pour effet sketched */
    border: 3px solid var(--primary-blue); /* Bordure bleue en standard */
    box-shadow: 4px 4px 0px rgba(255, 106, 74, 0.25); /* Ombre ORANGE cartoon */
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 0.75rem;
    transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55); /* Bounce effect */
    position: relative;
    transform: rotate(-1deg); /* Rotation légère pour effet décontracté */
}

/* Rotation alternée pour effet plus fun */
.reassurance-card:nth-child(2) {
    transform: rotate(1deg);
}

.reassurance-card:nth-child(3) {
    transform: rotate(-0.5deg);
}

.reassurance-card:nth-child(4) {
    transform: rotate(1.5deg);
}

.reassurance-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 3px;
    height: 100%;
    background: linear-gradient(180deg, var(--primary-orange), var(--primary-blue));
    transform: scaleY(0);
    transition: transform 0.3s ease;
    transform-origin: bottom;
}

.reassurance-card:hover {
    transform: translateY(-8px) rotate(0deg) scale(1.05); /* Redresse et agrandit au hover */
    box-shadow: 6px 6px 0px rgba(255, 106, 74, 0.35);
    background: linear-gradient(135deg, #fff5f0, white);
    border-color: var(--primary-orange); /* Devient orange au hover */
}

.reassurance-card i {
    font-size: 2.5rem; /* Plus grande icône */
    color: var(--primary-orange);
    margin-bottom: 0.5rem;
    transform: rotate(-5deg); /* Icône légèrement inclinée */
    transition: transform 0.3s ease;
}

.reassurance-card:hover i {
    transform: rotate(0deg) scale(1.1); /* Se redresse au hover */
}

.reassurance-card p {
    margin: 0;
    font-size: 1rem;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 500;
    color: var(--text-dark);
    line-height: 1.4;
}

/* ========================================
   Section Description du besoin
   ======================================== */
.need-description {
    padding: 0 0 var(--spacing-md) 0;
    background: #ffffff;
}

.need-title {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-blue);
    text-align: center;
    margin-bottom: var(--spacing-xl);
}

.need-content {
    max-width: 1100px;
    margin: 0 auto;
    text-align: center;
    font-family: 'Plus Jakarta Sans', sans-serif;
}

.need-content p {
    font-size: 1.2rem;
    line-height: 1.8;
    color: var(--text-dark);
    margin-bottom: var(--spacing-md);
}

.need-content strong {
    color: var(--primary-orange);
}

.need-highlight {
    background: transparent;
    padding: 0;
    border-radius: 0;
    border-left: none;
    margin-top: var(--spacing-sm);
    color: var(--primary-blue) !important;
    font-weight: 700;
}

.need-highlight strong {
    color: var(--primary-blue) !important;
}

/* Trust badges */
.trust-badges {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: var(--spacing-md);
    margin-top: var(--spacing-xl);
}

.trust-badge {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 231, 68, 0.15);
    padding: 0.6rem 1rem;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--primary-blue);
    border: 1px solid rgba(255, 231, 68, 0.3);
    transition: all 0.3s ease;
}

.trust-badge:hover {
    background: rgba(203, 255, 234, 0.5);
    transform: translateY(-2px);
    border-color: var(--accent-mint-dark);
}

.trust-badge i {
    color: var(--accent-mint-dark);
    font-size: 1rem;
}

/* Homepage trust logos (Qualiopi + Avis Vérifiés) */
.home-trust-logos {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 2.5rem;
    margin-top: 2.5rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(23, 6, 130, 0.08);
}

.home-logo-link {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
    color: var(--primary-blue);
    transition: transform 0.25s ease, opacity 0.25s ease;
}

.home-logo-link:hover {
    transform: translateY(-3px);
    opacity: 0.9;
}

.home-logo-qualiopi img {
    height: 56px;
    width: auto;
    object-fit: contain;
    display: block;
}

.home-logo-qualiopi span {
    font-size: 0.8rem;
    font-weight: 600;
}

.home-logo-avis {
    background: #2d3748;
    color: white;
    padding: 12px 20px;
    border-radius: 12px;
    min-width: 120px;
}

.home-logo-avis:hover {
    color: white;
}

.home-logo-avis .home-avis-rating {
    font-size: 1.25rem;
    font-weight: 700;
}

.home-logo-avis .home-avis-stars {
    color: #f59e0b;
    font-size: 0.75rem;
}

.home-logo-avis .home-avis-label {
    font-size: 0.7rem;
    opacity: 0.95;
}

.home-logo-avis .home-avis-cta {
    font-size: 0.65rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

@media (max-width: 768px) {
    .trust-badges {
        gap: var(--spacing-sm);
    }
    
    .trust-badge {
        font-size: 0.8rem;
        padding: 0.5rem 0.8rem;
    }
    
    .need-title {
        font-size: 1.8rem;
    }
    
    .need-content p {
        font-size: 1.05rem;
    }
    
    .home-trust-logos {
        gap: 1.5rem;
        margin-top: 1.5rem;
        padding-top: 1.5rem;
    }
    
    .home-logo-qualiopi img {
        height: 44px;
    }
}

/* ========================================
   Styles additionnels pour sections
   ======================================== */
/* Supprimé - dupliqué plus haut */

.section-header {
    text-align: center;
    margin-bottom: var(--spacing-md);
    display: flex;
    flex-direction: column;
    align-items: center;
}

.section-intro {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.section-intro .highlight {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: var(--spacing-md);
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--spacing-lg);
    margin-top: var(--spacing-2xl);
    margin-bottom: var(--spacing-2xl);
}

.step-card {
    border-radius: 30px 34px 32px 28px; /* Coins irréguliers effet sketched */
    padding: var(--spacing-lg);
    padding-top: calc(var(--spacing-lg) + 30px); /* Espace pour le chiffre au-dessus */
    position: relative;
    transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    box-shadow: 5px 5px 0px rgba(0, 0, 0, 0.15); /* Ombre cartoon */
    border: 3px solid transparent;
    font-family: 'Plus Jakarta Sans', sans-serif;
    transform: rotate(-0.5deg); /* Rotation légère */
    display: flex;
    flex-direction: column;
}

/* Première carte - Bleu doux */
#step-card-1 {
    background: #ffffff;
    border-color: #2b325e;
    transform: rotate(-1deg);
    color: #2b325e;
}

#step-card-1:hover {
    background: #fafafa;
    box-shadow: 6px 6px 0px rgba(43, 50, 94, 0.35);
    transform: translateY(-8px) rotate(0deg) scale(1.03);
}

#step-card-1 .step-title,
#step-card-1 li {
    color: #2b325e;
}

#step-card-1 .step-result {
    color: var(--primary-blue);
}

#step-card-1 li:before {
    color: #2b325e;
}

#step-card-1 .step-number {
    background: var(--primary-orange);
    color: white;
}

/* Deuxième carte - Vert menthe */
#step-card-2 {
    background: #ffffff;
    border-color: #2b325e;
    transform: rotate(1deg);
    color: #2b325e;
}

#step-card-2:hover {
    background: #fafafa;
    box-shadow: 6px 6px 0px rgba(43, 50, 94, 0.35);
    transform: translateY(-8px) rotate(0deg) scale(1.03);
}

#step-card-2 .step-title,
#step-card-2 li {
    color: #2b325e;
}

#step-card-2 .step-result {
    color: var(--primary-blue);
}

#step-card-2 li:before {
    color: #2b325e;
}

#step-card-2 .step-number {
    background: var(--primary-orange);
    color: white;
}

/* Troisième carte - Corail doux */
#step-card-3 {
    background: #ffffff;
    border-color: #2b325e;
    transform: rotate(-0.75deg);
    color: #2b325e;
}

#step-card-3:hover {
    background: #fafafa;
    box-shadow: 6px 6px 0px rgba(43, 50, 94, 0.35);
    transform: translateY(-8px) rotate(0deg) scale(1.03);
}

#step-card-3 .step-title,
#step-card-3 li {
    color: #2b325e;
}

#step-card-3 .step-result {
    color: var(--primary-blue);
}

#step-card-3 li:before {
    color: #2b325e;
}

#step-card-3 .step-number {
    background: var(--primary-orange);
    color: white;
}

.step-number {
    position: absolute;
    top: -25px; /* Plus haut que le titre */
    left: 50%;
    transform: translateX(-50%); /* Centré horizontalement */
    background: var(--primary-orange); /* Rouge du site */
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.5rem;
    /* Ombre supprimée */
}

.step-image {
    width: calc(100% + 2 * var(--spacing-lg));
    height: 280px;
    border-radius: 27px 31px 0 0;
    overflow: hidden;
    margin-bottom: 1.5rem;
    margin-left: calc(-1 * var(--spacing-lg));
    margin-right: calc(-1 * var(--spacing-lg));
    margin-top: calc(-1 * var(--spacing-lg) - 30px);
}

.step-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top;
    transition: transform 0.3s ease;
}

.step-card:hover .step-image img {
    transform: scale(1.05);
}

.step-card h3 {
    margin-top: var(--spacing-md);
    margin-bottom: var(--spacing-sm);
    color: var(--text-dark);
    text-align: center; /* Centre le titre */
}

.step-card p {
    font-family: 'Plus Jakarta Sans', sans-serif;
}

.step-card ul {
    list-style: none;
    margin: var(--spacing-sm) 0;
}

.step-card li {
    padding: var(--spacing-xs) 0;
    padding-left: 1.5rem;
    position: relative;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 1.1rem;
    font-weight: 500;
    line-height: 1.7;
}

.step-card li:before {
    content: "→";
    position: absolute;
    left: 0;
    color: var(--primary-color);
}

.step-result {
    margin-top: auto;
    padding: var(--spacing-md);
    background: linear-gradient(135deg, rgba(94, 212, 165, 0.15) 0%, rgba(203, 255, 234, 0.25) 100%);
    border-radius: 12px;
    border: none;
    font-style: normal;
    font-weight: 400;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 1rem;
    line-height: 1.6;
    text-align: center;
    color: var(--primary-blue);
}

.step-result strong {
    background: transparent;
    color: var(--primary-blue);
    font-weight: 500;
}

.step-result-label {
    display: block;
    width: fit-content;
    margin: 0 auto 0.75rem auto;
    background: var(--primary-orange);
    color: white;
    text-transform: uppercase;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
}

.step-result-objectif {
    background: var(--accent-mint-dark);
}

.step-result-resultat {
    background: var(--accent-mint-dark);
}

/* Fond des vignettes selon le type */
.step-result-bg-objectif {
    background: linear-gradient(135deg, rgba(94, 212, 165, 0.15) 0%, rgba(203, 255, 234, 0.25) 100%) !important;
}

.step-result-bg-resultat {
    background: linear-gradient(135deg, rgba(94, 212, 165, 0.15) 0%, rgba(203, 255, 234, 0.25) 100%) !important;
}

/* ========================================
   PAGES INTERNES (Bilan, VAE, Legal)
   ======================================== */

/* Hero pour pages internes */
.hero-page {
    min-height: 50vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    background: linear-gradient(135deg, var(--primary-blue) 0%, #1a1f4e 100%);
}

.hero-title-orange {
    color: var(--primary-orange) !important;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

/* Titre blanc pour les pages BDC et VAE */
.hero-page .hero-title {
    color: white;
}


.hero-page-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(23, 6, 130, 0.3);
}

.hero-page-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: var(--spacing-xl) 0;
}

.hero-page .hero-cta {
    justify-content: center;
}

.hero-page-subtitle {
    font-size: 1.4rem;
    color: rgba(255, 255, 255, 0.9);
    max-width: 700px;
    margin: var(--spacing-md) auto;
    font-weight: 400;
}

/* Introduction de page */
.page-intro {
    padding: var(--spacing-xl) 0;
    background: white;
}

.intro-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.intro-content h2 {
    font-size: 2.2rem;
    color: var(--primary-blue);
    margin-bottom: var(--spacing-md);
}

.intro-highlight {
    font-size: 1.3rem;
    color: var(--text-dark);
    line-height: 1.7;
    margin-bottom: var(--spacing-md);
}

/* Comparison content (ce que vous avez vu ailleurs) */
.comparison-content {
    max-width: 800px;
    margin: 0 auto;
}

.elsewhere-list {
    list-style: none;
    padding: 0;
    margin: var(--spacing-md) 0;
}

.elsewhere-list li {
    padding: var(--spacing-sm) 0;
    padding-left: 2rem;
    position: relative;
    color: var(--text-dark);
}

.elsewhere-list li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: var(--primary-orange);
    font-size: 1.5rem;
}

.highlight-box {
    background: linear-gradient(135deg, var(--primary-orange) 0%, #ff6b4a 100%);
    color: white;
    padding: var(--spacing-lg);
    border-radius: var(--border-radius);
    margin-top: var(--spacing-lg);
    text-align: center;
}

.highlight-box p {
    margin: 0;
    font-size: 1.2rem;
}

.highlight-box p + p {
    margin-top: var(--spacing-sm);
}

/* Benefits grid */
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--spacing-lg);
    margin-top: var(--spacing-lg);
}

.benefit-card {
    background: white;
    padding: var(--spacing-lg);
    border-radius: var(--border-radius);
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.benefit-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.benefit-card .benefit-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary-orange) 0%, #ff6b4a 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto var(--spacing-md);
}

.benefit-card .benefit-icon i {
    font-size: 1.8rem;
    color: white;
}

.benefit-card h3 {
    color: var(--primary-blue);
    margin-bottom: var(--spacing-sm);
}

/* Promise section */
.promise-section {
    padding: var(--spacing-xl) 0;
    background: white;
}

.promise-intro {
    text-align: center;
    font-size: 1.3rem;
    color: var(--text-dark);
    max-width: 700px;
    margin: 0 auto var(--spacing-xl);
}

.promise-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: var(--spacing-lg);
}

.promise-item {
    text-align: center;
    padding: var(--spacing-lg);
}

.promise-item i {
    font-size: 2.5rem;
    color: var(--primary-orange);
    margin-bottom: var(--spacing-md);
}

.promise-item h4 {
    color: var(--primary-blue);
    margin-bottom: var(--spacing-sm);
}

/* Étape cards */
.etape-card {
    background: white;
    padding: var(--spacing-xl);
    border-radius: var(--border-radius);
    margin-bottom: var(--spacing-lg);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.etape-header {
    display: flex;
    align-items: center;
    gap: var(--spacing-md);
    margin-bottom: var(--spacing-md);
}

.etape-number {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-orange) 0%, #ff6b4a 100%);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    flex-shrink: 0;
}

.etape-header h3 {
    color: var(--primary-blue);
    margin: 0;
}

.etape-card ul {
    margin: var(--spacing-md) 0;
    padding-left: 1.5rem;
}

.etape-card li {
    margin-bottom: var(--spacing-xs);
    color: var(--text-dark);
}

.etape-result {
    background: rgba(43, 50, 94, 0.06);
    padding: var(--spacing-md);
    border-left: 4px solid var(--primary-orange);
    margin-top: var(--spacing-md);
    border-radius: 0 var(--border-radius) var(--border-radius) 0;
}

/* Criteria grid */
.criteria-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: var(--spacing-sm);
    margin: var(--spacing-md) 0;
}

.criteria-item {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    padding: var(--spacing-sm);
    background: rgba(255, 107, 74, 0.1);
    border-radius: var(--border-radius);
}

.criteria-item span {
    width: 30px;
    height: 30px;
    background: var(--primary-orange);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    flex-shrink: 0;
}

/* What includes */
.what-includes {
    padding: var(--spacing-xl) 0;
    background: white;
}

.includes-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: var(--spacing-lg);
    margin: var(--spacing-xl) 0;
}

.include-item {
    text-align: center;
    padding: var(--spacing-md);
}

.include-item i {
    font-size: 2.5rem;
    color: var(--primary-blue);
    margin-bottom: var(--spacing-sm);
}

.include-item p {
    color: var(--text-dark);
    font-weight: 500;
}

.includes-note {
    text-align: center;
    font-size: 1.1rem;
    color: var(--primary-blue);
    padding: var(--spacing-md);
    background: rgba(255, 107, 74, 0.1);
    border-radius: var(--border-radius);
}

/* Target audience */
.target-audience {
    padding: var(--spacing-xl) 0;
    background: white;
}

.audience-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--spacing-lg);
    margin-top: var(--spacing-lg);
}

.audience-item {
    text-align: center;
    padding: var(--spacing-lg);
    background: var(--bg-light);
    border-radius: var(--border-radius);
    transition: transform 0.3s ease;
}

.audience-item:hover {
    transform: translateY(-5px);
}

.audience-item i {
    font-size: 2.5rem;
    color: var(--primary-orange);
    margin-bottom: var(--spacing-md);
}

.audience-item p {
    color: var(--text-dark);
    font-size: 1.05rem;
}

/* Financing section */
.financing-section {
    padding: var(--spacing-xl) 0;
    background: var(--bg-light);
}

/* VAE specific styles */
.vae-steps {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-lg);
}

.vae-step-card {
    background: white;
    padding: var(--spacing-xl);
    border-radius: var(--border-radius);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.vae-step-header {
    display: flex;
    align-items: flex-start;
    gap: var(--spacing-md);
    margin-bottom: var(--spacing-md);
}

.vae-step-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-orange) 0%, #ff6b4a 100%);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    font-weight: 700;
    flex-shrink: 0;
}

.vae-step-titles h3 {
    color: var(--primary-blue);
    margin: 0 0 var(--spacing-xs);
}

.vae-step-subtitle {
    color: var(--text-light);
    font-style: italic;
}

.vae-step-content {
    margin: var(--spacing-md) 0;
    padding-left: 1.5rem;
}

.vae-step-content li {
    margin-bottom: var(--spacing-sm);
    color: var(--text-dark);
}

.vae-step-result {
    background: rgba(43, 50, 94, 0.06);
    padding: var(--spacing-md);
    border-left: 4px solid var(--primary-orange);
    border-radius: 0 var(--border-radius) var(--border-radius) 0;
    color: var(--primary-blue);
}

/* VAE services */
.vae-services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--spacing-lg);
}

.vae-service-card {
    background: white;
    padding: var(--spacing-xl);
    border-radius: var(--border-radius);
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease;
}

.vae-service-card:hover {
    transform: translateY(-5px);
}

.service-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-blue) 0%, #1a1f4e 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto var(--spacing-md);
}

.service-icon i {
    font-size: 2rem;
    color: white;
}

.vae-service-card h3 {
    color: var(--primary-blue);
    margin-bottom: var(--spacing-sm);
}

/* Engagements */
.engagements-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--spacing-lg);
}

.engagement-card {
    background: white;
    padding: var(--spacing-xl);
    border-radius: var(--border-radius);
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.engagement-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary-orange) 0%, #ff6b4a 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto var(--spacing-md);
}

.engagement-icon i {
    font-size: 1.8rem;
    color: white;
}

.engagement-card h3 {
    color: var(--primary-blue);
    margin-bottom: var(--spacing-sm);
}

/* Important note */
.important-note {
    padding: var(--spacing-lg) 0;
}

.note-box {
    background: rgba(23, 6, 130, 0.05);
    border-left: 4px solid var(--primary-blue);
    padding: var(--spacing-lg);
    border-radius: 0 var(--border-radius) var(--border-radius) 0;
    display: flex;
    align-items: flex-start;
    gap: var(--spacing-md);
}

.note-box i {
    font-size: 1.5rem;
    color: var(--primary-blue);
    flex-shrink: 0;
}

.note-box p {
    margin: 0;
    color: var(--text-dark);
}

/* ========================================
   PAGES LÉGALES
   ======================================== */

.legal-page {
    background: white;
}

.hero-legal {
    min-height: 30vh;
}

.legal-content {
    padding: var(--spacing-xl) 0;
    max-width: 900px;
    margin: 0 auto;
}

.legal-intro {
    font-size: 1.1rem;
    color: var(--text-dark);
    line-height: 1.8;
    margin-bottom: var(--spacing-xl);
    padding-bottom: var(--spacing-lg);
    border-bottom: 1px solid var(--border-color);
}

.legal-section {
    margin-bottom: var(--spacing-xl);
}

.legal-section h2 {
    color: var(--primary-blue);
    font-size: 1.5rem;
    margin-bottom: var(--spacing-md);
    padding-bottom: var(--spacing-sm);
    border-bottom: 2px solid var(--primary-orange);
}

.legal-section h3 {
    color: var(--primary-blue);
    font-size: 1.2rem;
    margin: var(--spacing-md) 0 var(--spacing-sm);
}

.legal-section p {
    color: var(--text-dark);
    line-height: 1.8;
    margin-bottom: var(--spacing-sm);
}

.legal-section ul {
    margin: var(--spacing-sm) 0;
    padding-left: 1.5rem;
}

.legal-section li {
    color: var(--text-dark);
    line-height: 1.8;
    margin-bottom: var(--spacing-xs);
}

.legal-section a {
    color: var(--primary-blue);
    text-decoration: none;
    transition: color 0.3s ease;
}

.legal-section a:hover {
    text-decoration: underline;
}

.legal-update {
    text-align: center;
    color: var(--text-light);
    padding-top: var(--spacing-xl);
    border-top: 1px solid var(--border-color);
}

/* ========================================
   ANIMATIONS AVANCÉES
   ======================================== */

/* Animation bounce-in */
@keyframes bounceIn {
    0% {
        opacity: 0;
        transform: scale(0.3);
    }
    50% {
        opacity: 1;
        transform: scale(1.05);
    }
    70% {
        transform: scale(0.9);
    }
    100% {
        transform: scale(1);
    }
}

.bounce-in {
    opacity: 0;
}

.bounce-in.visible {
    animation: bounceIn 0.6s ease forwards;
}

/* Animation pulse pour les boutons */
@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(255, 56, 13, 0.4);
    }
    70% {
        box-shadow: 0 0 0 15px rgba(255, 56, 13, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(255, 56, 13, 0);
    }
}

.pulse-hover:hover {
    animation: pulse 1.5s infinite;
}

/* Icônes flottantes dans le hero */
.floating-icons {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    pointer-events: none;
    z-index: 1;
}

.float-icon {
    position: absolute;
    font-size: 2rem;
    color: rgba(255, 255, 255, 0.1);
    animation: float 6s ease-in-out infinite;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
    }
    50% {
        transform: translateY(-20px) rotate(10deg);
    }
}

.float-1 { top: 15%; left: 10%; animation-delay: 0s; font-size: 2.5rem; }
.float-2 { top: 25%; right: 15%; animation-delay: 1s; font-size: 2rem; }
.float-3 { top: 60%; left: 5%; animation-delay: 2s; font-size: 1.8rem; }
.float-4 { top: 70%; right: 10%; animation-delay: 0.5s; font-size: 2.2rem; }
.float-5 { top: 40%; left: 20%; animation-delay: 1.5s; font-size: 1.5rem; }

/* Hero badge */
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    margin-bottom: var(--spacing-md);
    color: white;
    font-size: 0.9rem;
    font-weight: 500;
}

.hero-badge i {
    color: var(--primary-orange);
}

/* Boutons avec icônes */
.btn i {
    margin-right: 0.5rem;
}

/* Section icon décoratif */
.section-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-orange) 0%, #ff6b4a 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto var(--spacing-md);
    box-shadow: 0 10px 30px rgba(255, 56, 13, 0.3);
}

.section-icon i {
    font-size: 2rem;
    color: white;
}

/* Intro grid avec image */
.intro-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-xl);
    align-items: center;
}

.intro-icon-badge {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-blue) 0%, #1a1f4e 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: var(--spacing-md);
}

.intro-icon-badge i {
    font-size: 1.5rem;
    color: white;
}

.intro-stats {
    display: flex;
    gap: var(--spacing-lg);
    margin-top: var(--spacing-lg);
    padding-top: var(--spacing-lg);
    border-top: 1px solid var(--border-color);
}

.stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: var(--spacing-md);
    background: rgba(255, 231, 68, 0.08);
    border-radius: 12px;
}

.stat-item i {
    font-size: 1.5rem;
    color: var(--accent-mint-dark);
    margin-bottom: 0.5rem;
}

.stat-number {
    font-size: 2rem;
    font-weight: 700;
    color: var(--accent-mint-dark);
}

.stat-label {
    font-size: 0.9rem;
    color: var(--text-light);
}

.intro-image {
    position: relative;
}

.intro-image img {
    width: 100%;
    border-radius: var(--border-radius);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.image-decoration {
    position: absolute;
    bottom: -20px;
    right: -20px;
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-orange) 0%, #ff6b4a 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 30px rgba(255, 56, 13, 0.3);
}

.image-decoration i {
    font-size: 2rem;
    color: white;
}

/* Intro warning box */
.intro-warning {
    display: flex;
    align-items: flex-start;
    gap: var(--spacing-md);
    background: rgba(255, 56, 13, 0.1);
    padding: var(--spacing-md);
    border-radius: var(--border-radius);
    border-left: 4px solid var(--primary-orange);
    margin: var(--spacing-md) 0;
}

.intro-warning i {
    color: var(--primary-orange);
    font-size: 1.5rem;
    flex-shrink: 0;
}

.intro-warning p {
    margin: 0;
}

/* Comparison grid */
.comparison-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-xl);
    align-items: start;
}

.elsewhere-list {
    list-style: none;
    padding: 0;
}

.elsewhere-list li {
    display: flex;
    align-items: flex-start;
    gap: var(--spacing-md);
    padding: var(--spacing-md) 0;
    border-bottom: 1px solid var(--border-color);
}

.elsewhere-list li i {
    color: var(--text-light);
    font-size: 1.2rem;
    flex-shrink: 0;
    margin-top: 0.2rem;
}

.elsewhere-note {
    font-style: italic;
    color: var(--text-light);
    margin-top: var(--spacing-md);
}

/* Highlight box amélioré */
.highlight-box {
    background: linear-gradient(135deg, var(--primary-orange) 0%, #ff6b4a 100%);
    color: white;
    padding: var(--spacing-xl);
    border-radius: var(--border-radius);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.highlight-icon {
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto var(--spacing-md);
}

.highlight-icon i {
    font-size: 1.8rem;
}

.highlight-arrow {
    position: absolute;
    bottom: 10px;
    right: 15px;
    opacity: 0.3;
    font-size: 2rem;
}

/* Promise section améliorée */
.promise-header {
    text-align: center;
    margin-bottom: var(--spacing-xl);
}

.promise-icon-main {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, var(--primary-blue) 0%, #1a1f4e 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto var(--spacing-lg);
    box-shadow: 0 15px 40px rgba(23, 6, 130, 0.3);
}

.promise-icon-main i {
    font-size: 2.5rem;
    color: white;
}

.promise-item {
    background: white;
    padding: var(--spacing-xl);
    border-radius: var(--border-radius);
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.promise-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.12);
}

.promise-item-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary-orange) 0%, #ff6b4a 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto var(--spacing-md);
}

.promise-item-icon i {
    font-size: 1.8rem;
    color: white;
}

/* Étapes timeline */
.etapes-timeline {
    position: relative;
    padding-left: 30px;
}

.timeline-line {
    position: absolute;
    left: 25px;
    top: 0;
    bottom: 0;
    width: 3px;
    background: linear-gradient(to bottom, var(--primary-orange), var(--primary-blue));
    border-radius: 3px;
}

.etape-card {
    position: relative;
    background: white;
    padding: var(--spacing-xl);
    border-radius: var(--border-radius);
    margin-bottom: var(--spacing-lg);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    margin-left: 30px;
}

.etape-card::before {
    content: '';
    position: absolute;
    left: -42px;
    top: 30px;
    width: 20px;
    height: 20px;
    background: var(--primary-orange);
    border-radius: 50%;
    border: 4px solid white;
    box-shadow: 0 0 0 4px var(--primary-orange);
}

.etape-header {
    display: flex;
    align-items: flex-start;
    gap: var(--spacing-md);
    margin-bottom: var(--spacing-md);
}

.etape-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-orange) 0%, #ff6b4a 100%);
    color: white;
    border-radius: var(--border-radius);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    flex-shrink: 0;
}

.etape-number i {
    font-size: 1rem;
    margin-bottom: 2px;
}

.etape-title-wrapper {
    flex: 1;
}

.etape-title-wrapper h3 {
    margin: 0 0 var(--spacing-xs);
    color: var(--primary-blue);
}

.etape-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    font-size: 0.8rem;
    color: var(--text-light);
    background: var(--bg-light);
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
}

.etape-list {
    list-style: none;
    padding: 0;
    margin: var(--spacing-md) 0;
}

.etape-list li {
    display: flex;
    align-items: flex-start;
    gap: var(--spacing-sm);
    padding: var(--spacing-xs) 0;
}

.etape-list li i {
    color: var(--primary-orange);
    margin-top: 0.2rem;
}

.etape-result {
    display: flex;
    align-items: flex-start;
    gap: var(--spacing-md);
    background: rgba(43, 50, 94, 0.06);
    padding: var(--spacing-md);
    border-left: 4px solid var(--primary-orange);
    border-radius: 0 var(--border-radius) var(--border-radius) 0;
}

.etape-result i {
    font-size: 1.5rem;
    color: var(--primary-orange);
    flex-shrink: 0;
}

/* Include grid amélioré */
.include-icon-wrapper {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary-blue) 0%, #1a1f4e 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto var(--spacing-md);
    transition: transform 0.3s ease;
}

.include-item:hover .include-icon-wrapper {
    transform: scale(1.1) rotate(5deg);
}

.include-icon-wrapper i {
    font-size: 1.8rem;
    color: white;
}

.includes-note {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--spacing-sm);
    text-align: center;
    font-size: 1.1rem;
    color: var(--primary-blue);
    padding: var(--spacing-md);
    background: rgba(255, 107, 74, 0.1);
    border-radius: var(--border-radius);
}

.includes-note i {
    color: var(--primary-orange);
    font-size: 1.3rem;
}

/* Audience section améliorée */
.audience-header {
    text-align: center;
    margin-bottom: var(--spacing-xl);
}

.audience-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-xl);
    align-items: center;
}

.audience-item {
    position: relative;
    text-align: center;
    padding: var(--spacing-lg);
    background: var(--bg-light);
    border-radius: var(--border-radius);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.audience-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.audience-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary-orange) 0%, #ff6b4a 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto var(--spacing-md);
}

.audience-icon i {
    font-size: 1.8rem;
    color: white;
}

.audience-check {
    position: absolute;
    top: -10px;
    right: -10px;
    width: 30px;
    height: 30px;
    background: #22c55e;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 0.8rem;
}

.audience-image {
    position: relative;
}

.audience-image img {
    width: 100%;
    border-radius: var(--border-radius);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.audience-image-badge {
    position: absolute;
    bottom: 20px;
    left: 20px;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: white;
    padding: 0.8rem 1.2rem;
    border-radius: 50px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
}

.audience-image-badge i {
    color: var(--primary-orange);
}

.audience-image-badge.vae-badge i {
    color: var(--primary-blue);
}

/* Financing section améliorée */
.financing-wrapper {
    text-align: center;
}

.financing-icon-main {
    width: 90px;
    height: 90px;
    background: linear-gradient(135deg, var(--primary-orange) 0%, #ff6b4a 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto var(--spacing-lg);
    box-shadow: 0 15px 40px rgba(255, 56, 13, 0.3);
}

.financing-icon-main i {
    font-size: 2.2rem;
    color: white;
}

/* Financing Flip Cards */
.financing-cards {
    display: flex;
    justify-content: center;
    gap: var(--spacing-lg);
    margin: var(--spacing-xl) 0;
    flex-wrap: wrap;
}

.financing-card {
    width: 180px;
    height: 200px;
    perspective: 1000px;
    cursor: pointer;
}

.financing-card-inner {
    position: relative;
    width: 100%;
    height: 100%;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    transform-style: preserve-3d;
}

.financing-card:hover .financing-card-inner,
.financing-card.flipped .financing-card-inner {
    transform: rotateY(180deg);
}

.financing-card-front,
.financing-card-back {
    position: absolute;
    width: 100%;
    height: 100%;
    backface-visibility: hidden;
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: var(--spacing-md);
    text-align: center;
}

.financing-card-front {
    background: linear-gradient(145deg, #ffffff 0%, var(--accent-mint) 100%);
    border: 2px solid var(--accent-mint-dark);
    box-shadow: 0 8px 25px rgba(94, 212, 165, 0.25);
}

.financing-card-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--accent-mint-dark) 0%, #3bb78f 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    box-shadow: 0 6px 20px rgba(94, 212, 165, 0.4);
}

.financing-card-icon i {
    font-size: 1.8rem;
    color: white;
}

.financing-card-title {
    font-weight: 700;
    font-size: 1rem;
    color: var(--primary-blue);
    margin-bottom: 0.5rem;
}

.financing-card-hint {
    font-size: 0.75rem;
    color: var(--text-light);
    opacity: 0.7;
}

.financing-card-hint i {
    margin-right: 0.25rem;
    animation: pulse 1.5s ease-in-out infinite;
}

.financing-card-back {
    background: linear-gradient(145deg, var(--accent-mint-dark) 0%, #3bb78f 100%);
    transform: rotateY(180deg);
    color: white;
    gap: 0.5rem;
}

.financing-card-back h4 {
    font-size: 0.95rem;
    font-weight: 700;
    margin-bottom: 0.25rem;
}

.financing-card-back p {
    font-size: 0.8rem;
    line-height: 1.4;
    opacity: 0.95;
}

.financing-card-tag {
    margin-top: auto;
    background: rgba(255, 255, 255, 0.2);
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-size: 0.7rem;
    font-weight: 600;
}

.financing-card-tag i {
    margin-right: 0.3rem;
}

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

@media (max-width: 768px) {
    .financing-cards {
        gap: var(--spacing-md);
    }
    
    .financing-card {
        width: 150px;
        height: 180px;
    }
    
    .financing-card-icon {
        width: 55px;
        height: 55px;
    }
    
    .financing-card-icon i {
        font-size: 1.4rem;
    }
}

.financing-list {
    list-style: none;
    padding: 0;
    display: inline-block;
    text-align: left;
}

.financing-list li {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    padding: var(--spacing-xs) 0;
}

.financing-list li i {
    color: #22c55e;
}

/* CTA section améliorée */
.cta-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-orange) 0%, #ff6b4a 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: var(--spacing-md);
    box-shadow: 0 10px 30px rgba(255, 56, 13, 0.3);
}

.cta-icon i {
    font-size: 2rem;
    color: white;
}


.cta-reassurance {
    display: flex;
    gap: var(--spacing-lg);
    margin-top: var(--spacing-lg);
    padding-top: var(--spacing-lg);
    border-top: 1px solid var(--border-color);
    justify-content: flex-end;
}

.reassurance-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-light);
}

.reassurance-item i {
    color: var(--primary-orange);
}

/* Form header */
.form-header {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    margin-bottom: var(--spacing-sm);
}

.form-header i {
    font-size: 1.5rem;
    color: var(--primary-orange);
}

/* Input avec icônes */
.input-icon {
    position: relative;
}

.input-icon i {
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--text-light);
    font-size: 1rem;
}

.input-icon.textarea-icon i {
    top: 20px;
    transform: none;
}

.input-icon input,
.input-icon select,
.input-icon textarea {
    padding-left: 45px !important;
}

/* Submit button */
.btn-submit {
    width: 100%;
    padding: 1rem !important;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

/* VAE services cards améliorées */
.vae-service-card {
    position: relative;
    overflow: hidden;
}

.service-number {
    position: absolute;
    top: 15px;
    right: 15px;
    font-size: 3rem;
    font-weight: 700;
    color: rgba(23, 6, 130, 0.05);
}

.service-decoration {
    position: absolute;
    bottom: 15px;
    right: 15px;
    width: 40px;
    height: 40px;
    background: var(--bg-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-orange);
    transition: all 0.3s ease;
}

.vae-service-card:hover .service-decoration {
    background: var(--primary-orange);
    color: white;
}

/* VAE steps connector */
.vae-step-card {
    position: relative;
}

.vae-step-connector {
    position: absolute;
    left: -30px;
    top: 0;
    bottom: 0;
    width: 20px;
}

.connector-line {
    position: absolute;
    left: 8px;
    top: 40px;
    bottom: -30px;
    width: 3px;
    background: linear-gradient(to bottom, var(--primary-orange), var(--primary-blue));
}

.vae-step-connector.last .connector-line {
    display: none;
}

.connector-dot {
    position: absolute;
    left: 0;
    top: 30px;
    width: 20px;
    height: 20px;
    background: var(--primary-orange);
    border-radius: 50%;
    border: 4px solid white;
    box-shadow: 0 0 0 3px var(--primary-orange);
}

/* Engagement card badge */
.engagement-card {
    position: relative;
    overflow: visible;
}

.engagement-badge {
    position: absolute;
    top: -15px;
    right: -15px;
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #ffd700 0%, #ffb700 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    box-shadow: 0 5px 15px rgba(255, 183, 0, 0.3);
}

/* Note box améliorée */
.note-box {
    display: flex;
    align-items: center;
    gap: var(--spacing-md);
    background: rgba(23, 6, 130, 0.05);
    border-left: 4px solid var(--primary-blue);
    padding: var(--spacing-lg);
    border-radius: 0 var(--border-radius) var(--border-radius) 0;
}

.note-icon {
    width: 50px;
    height: 50px;
    background: var(--primary-blue);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.note-icon i {
    font-size: 1.5rem;
    color: white;
}

.note-content {
    flex: 1;
}

.note-decoration {
    opacity: 0.3;
    font-size: 1.5rem;
    color: var(--primary-blue);
}

/* Banner quote icons */
.banner-quote-icon {
    font-size: 1.5rem;
    opacity: 0.5;
    margin: 0 var(--spacing-sm);
    vertical-align: middle;
}

/* ========================================
   HOMEPAGE SPECIFIC ENHANCEMENTS
   ======================================== */

/* Need section icon */
.need-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-orange) 0%, #ff6b4a 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto var(--spacing-md);
    box-shadow: 0 10px 30px rgba(255, 56, 13, 0.3);
}

.need-icon i {
    font-size: 2rem;
    color: white;
}

/* Need highlight box */
.need-highlight-box {
    display: flex;
    align-items: flex-start;
    gap: var(--spacing-md);
    background: linear-gradient(135deg, rgba(255, 56, 13, 0.1) 0%, rgba(255, 107, 74, 0.05) 100%);
    padding: var(--spacing-lg);
    border-radius: var(--border-radius);
    border-left: 4px solid var(--primary-orange);
    margin-top: var(--spacing-md);
}

.need-highlight-box i {
    font-size: 1.5rem;
    color: var(--primary-orange);
    flex-shrink: 0;
    margin-top: 0.2rem;
}

.need-highlight-box .need-highlight {
    margin: 0;
}

/* Method card enhancements */
.method-card {
    position: relative;
    overflow: hidden;
}

.method-number {
    position: absolute;
    top: 10px;
    right: 15px;
    font-size: 4rem;
    font-weight: 800;
    color: rgba(255, 255, 255, 0.4);
    font-family: 'Plus Jakarta Sans', sans-serif;
}

.method-icon {
    margin-bottom: 1rem;
}

.method-icon i {
    font-size: 1.8rem;
    color: #5EDDC1;
}

.method-arrow {
    position: absolute;
    bottom: 15px;
    right: 15px;
    width: 40px;
    height: 40px;
    background: #4a5568;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transform: translateX(-10px);
    transition: all 0.3s ease;
    color: white;
    box-shadow: 0 4px 12px rgba(74, 85, 104, 0.3);
}

.method-card:hover .method-arrow {
    opacity: 1;
    transform: translateX(0);
}

/* Financing enhancements for homepage */
.financing-objective-box {
    display: flex;
    align-items: flex-start;
    gap: var(--spacing-md);
    background: rgba(23, 6, 130, 0.05);
    padding: var(--spacing-md);
    border-radius: var(--border-radius);
    border-left: 4px solid var(--primary-blue);
    margin-top: var(--spacing-md);
}

.financing-objective-box i {
    font-size: 1.5rem;
    color: var(--primary-blue);
    flex-shrink: 0;
}

.financing-objective-box .financing-objective {
    margin: 0;
}

/* Testimonial enhancements */
.testimonial-card {
    position: relative;
    overflow: visible;
}

.testimonial-quote-icon {
    position: absolute;
    top: -15px;
    left: 20px;
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--primary-orange) 0%, #ff6b4a 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 0.9rem;
    box-shadow: 0 5px 15px rgba(255, 56, 13, 0.3);
}

.testimonial-rating {
    display: flex;
    gap: 0.25rem;
    margin-bottom: var(--spacing-md);
}

.testimonial-rating i {
    color: #ffd700;
    font-size: 1rem;
}

.testimonial-card blockquote {
    margin-bottom: var(--spacing-lg);
    padding-bottom: var(--spacing-md);
    border-bottom: 1px solid var(--border-color);
}

/* Form header for homepage */
.contact-form-wrapper .form-header {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    margin-bottom: var(--spacing-sm);
}

.contact-form-wrapper .form-header i {
    font-size: 1.5rem;
    color: var(--primary-orange);
}

.contact-form-wrapper .form-header h3 {
    margin: 0;
}

/* Benefit card arrow */
.benefit-arrow {
    position: absolute;
    bottom: 15px;
    right: 15px;
    width: 35px;
    height: 35px;
    background: var(--bg-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transform: translateX(-10px);
    transition: all 0.3s ease;
}

.benefit-card {
    position: relative;
    overflow: hidden;
}

.benefit-card:hover .benefit-arrow {
    opacity: 1;
    transform: translateX(0);
}

.benefit-icon-orange {
    background: linear-gradient(135deg, var(--primary-orange) 0%, #ff6b4a 100%);
}

.benefit-icon-blue {
    background: linear-gradient(135deg, var(--primary-blue) 0%, #1a1f4e 100%);
}

/* VAE step result */
.vae-step-result {
    display: flex;
    align-items: flex-start;
    gap: var(--spacing-md);
    background: rgba(43, 50, 94, 0.06);
    padding: var(--spacing-md);
    border-left: 4px solid var(--primary-orange);
    border-radius: 0 var(--border-radius) var(--border-radius) 0;
    margin-top: var(--spacing-md);
}

.vae-step-result i {
    font-size: 1.3rem;
    color: var(--primary-orange);
    flex-shrink: 0;
    margin-top: 0.2rem;
}

.vae-step-content {
    list-style: none;
    padding: 0;
    margin: var(--spacing-md) 0;
}

.vae-step-content li {
    display: flex;
    align-items: flex-start;
    gap: var(--spacing-sm);
    padding: var(--spacing-xs) 0;
}

.vae-step-content li i {
    color: var(--primary-orange);
    margin-top: 0.2rem;
}

/* Responsive adjustments for internal pages */
@media (max-width: 768px) {
    .hero-page {
        min-height: 35vh;
    }
    
    .hero-page-subtitle {
        font-size: 1.1rem;
    }
    
    .intro-content h2 {
        font-size: 1.8rem;
    }
    
    .intro-highlight {
        font-size: 1.1rem;
    }
    
    .intro-grid,
    .comparison-grid,
    .audience-content {
        grid-template-columns: 1fr;
    }
    
    .intro-image {
        order: -1;
    }
    
    .etape-header,
    .vae-step-header {
        flex-direction: column;
        text-align: center;
    }
    
    .note-box {
        flex-direction: column;
        text-align: center;
    }
    
    .legal-content {
        padding: var(--spacing-lg);
    }
    
    .floating-icons {
        display: none;
    }
    
    .intro-stats {
        flex-direction: column;
        align-items: center;
    }
    
    .financing-options {
        flex-direction: column;
        align-items: center;
    }
    
    .cta-reassurance {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .etapes-timeline {
        padding-left: 0;
    }
    
    .timeline-line {
        display: none;
    }
    
    .etape-card {
        margin-left: 0;
    }
    
    .etape-card::before {
        display: none;
    }
    
    .vae-step-connector {
        display: none;
    }
}

/* ========================================
   Pages Légales
   ======================================== */
.legal-hero {
    background: var(--primary-blue);
    color: white;
    padding: var(--spacing-2xl) 0;
    text-align: center;
}

.legal-hero h1 {
    font-size: 2.5rem;
    margin-bottom: var(--spacing-sm);
    color: white;
}

.legal-subtitle {
    font-size: 1.1rem;
    opacity: 0.9;
}

.legal-content {
    padding: var(--spacing-2xl) 0;
    background: white;
}

.legal-section {
    margin-bottom: var(--spacing-2xl);
}

.legal-section h2 {
    color: var(--primary-blue);
    font-size: 1.8rem;
    margin-bottom: var(--spacing-md);
    padding-bottom: var(--spacing-sm);
    border-bottom: 3px solid var(--accent-mint-dark);
}

.legal-section p {
    margin-bottom: var(--spacing-md);
    line-height: 1.8;
    color: var(--text-dark);
}

.legal-info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--spacing-md);
    margin-bottom: var(--spacing-lg);
}

.info-item {
    padding: var(--spacing-sm);
    background: #f8fafc;
    border-radius: 8px;
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.info-item strong {
    color: var(--primary-blue);
    font-size: 0.9rem;
}

.info-item span {
    color: var(--text-dark);
}

.info-item a {
    color: var(--primary-blue);
    text-decoration: none;
}

.info-item a:hover {
    text-decoration: underline;
}

.data-info {
    background: #f0f9ff;
    padding: var(--spacing-md);
    border-left: 4px solid var(--primary-blue);
    margin: var(--spacing-md) 0;
}

.data-info p {
    margin-bottom: 0.5rem;
}

.cookies-list {
    list-style: none;
    padding-left: 0;
    margin: var(--spacing-md) 0;
}

.cookies-list li {
    padding-left: 2rem;
    position: relative;
    margin-bottom: 0.5rem;
}

.cookies-list li::before {
    content: '•';
    position: absolute;
    left: 0;
    font-size: 1.2rem;
    color: #555;
}

.legal-footer {
    margin-top: var(--spacing-2xl);
    padding-top: var(--spacing-lg);
    border-top: 1px solid var(--border-color);
    text-align: center;
    color: #64748b;
}

@media (max-width: 768px) {
    .legal-hero h1 {
        font-size: 2rem;
    }
    
    .legal-info-grid {
        grid-template-columns: 1fr;
    }
}
