﻿

:root {
    --primary: #1e40af;
    --primary-light: #3b82f6;
    --primary-dark: #1e3a8a;
    --accent: #0891b2;
    --success: #059669;
    --text-dark: #0f172a;
    --text-light: #64748b;
    --bg-white: #ffffff;
    --bg-light: #f8fafc;
    --border: #e2e8f0;
}

.hero {
    position: relative;
    width: 100%;
    min-height: 800px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: linear-gradient(135deg, #ffffff 0%, #f1f5f9 50%, #e0e7ff 100%);
    padding: 2rem 2rem;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.hero-gradient {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 80% 20%, rgba(59, 130, 246, 0.08) 0%, transparent 40%),
        radial-gradient(circle at 20% 80%, rgba(8, 145, 178, 0.06) 0%, transparent 40%);
    animation: gradientShift 15s ease-in-out infinite forwards;
}

.hero-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle at 25% 25%, rgba(59, 130, 246, 0.03) 2%, transparent 0%),
        radial-gradient(circle at 75% 75%, rgba(59, 130, 246, 0.03) 2%, transparent 0%);
    background-size: 120px 120px;
    animation: patternMove 40s linear infinite forwards;
}

@keyframes gradientShift {
    0%, 100% { opacity: 0.6; }
    50% { opacity: 0.9; }
}

@keyframes patternMove {
    0% { background-position: 0 0; }
    100% { background-position: 120px 120px; }
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    width: 100%;
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 1rem;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    background: rgba(255, 255, 255, 0.8);
    border: 2px solid rgba(30, 64, 175, 0.1);
    border-radius: 50px;
    padding: 0.8rem 1.5rem;
    margin-bottom: 2rem;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--primary);
    backdrop-filter: blur(10px);
    /* Animation désactivée pour LCP */
    box-shadow: 0 4px 15px rgba(30, 64, 175, 0.08);
}

.badge-item {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    white-space: nowrap;
}

.badge-separator {
    color: rgba(255, 255, 255, 0.3);
    font-weight: 300;
}

@media (max-width: 480px) {
    .badge-separator {
        display: none;
    }
}

.hero-title {
    font-size: clamp(2.8rem, 6vw, 3.8rem);
    font-weight: 900;
    color: var(--text-dark);
    line-height: 1.15;
    margin-bottom: 1.5rem;
    letter-spacing: -0.5px;
    /* Animation désactivée pour LCP */
}

.hero-title br {
    display: none;
}

@media (min-width: 768px) {
    .hero-title br {
        display: block;
    }
}

.hero-subtitle {
    font-size: clamp(1rem, 2vw, 1.15rem);
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 3rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    /* Animation désactivée pour LCP */
}

.hero-subtitle strong {
    color: var(--primary);
    font-weight: 700;
}

.hero-search {
    background: white;
    border-radius: 14px;
    padding: 1.5rem;
    margin: 0 auto 3rem;
    max-width: 950px;
    box-shadow: 0 10px 40px rgba(30, 64, 175, 0.12);
    /* Animation désactivée pour LCP */
}

.search-form {
    display: grid;
    grid-template-columns: 1fr 1fr auto;
    gap: 1rem;
    align-items: center;
}

.search-input-group {
    position: relative;
    display: flex;
    align-items: center;
}

.search-icon {
    position: absolute;
    left: 1.5rem;
    color: var(--primary);
    pointer-events: none;
    font-size: 1rem;
}

.search-input {
    width: 100%;
    padding: 1rem 1rem 1rem 3rem;
    border: 2px solid var(--border);
    border-radius: 10px;
    font-size: 1rem;
    color: var(--text-dark);
    background: white;
    transition: all 0.3s ease;
}

.search-input:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 4px rgba(30, 64, 175, 0.1);
}

.btn-search {
    padding: 1rem 2rem;
    background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
    color: white;
    border: none;
    border-radius: 10px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.btn-search:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 40px rgba(30, 64, 175, 0.3);
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.2rem;
    max-width: 950px;
    margin: 0 auto 2rem;
    padding: 0 1rem;
}

.stat-item {
    display: flex;
    align-items: center;
    gap: 1.2rem;
    padding: 1.5rem 1.8rem;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.98) 0%, rgba(255, 255, 255, 0.95) 100%);
    border-radius: 16px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 20px rgba(30, 64, 175, 0.08), 0 2px 8px rgba(0, 0, 0, 0.04);
    border: 1px solid rgba(30, 64, 175, 0.08);
    position: relative;
    overflow: hidden;
}

.stat-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(135deg, #1e40af 0%, #0891b2 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.stat-item:hover {
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 12px 40px rgba(30, 64, 175, 0.15), 0 4px 16px rgba(8, 145, 178, 0.1);
    border-color: rgba(30, 64, 175, 0.15);
}

.stat-item:hover::before {
    opacity: 1;
}

.stat-icon {
    width: 56px;
    height: 56px;
    min-width: 56px;
    border-radius: 14px;
    background: linear-gradient(135deg, #1e40af 0%, #0891b2 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    box-shadow: 0 8px 24px rgba(30, 64, 175, 0.25), inset 0 -2px 8px rgba(0, 0, 0, 0.15);
    position: relative;
}

.stat-icon::after {
    content: '';
    position: absolute;
    top: 4px;
    left: 50%;
    transform: translateX(-50%);
    width: 60%;
    height: 35%;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.3), transparent);
    border-radius: 50%;
    filter: blur(2px);
}

.stat-icon i {
    position: relative;
    z-index: 1;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
}

.stat-content {
    flex: 1;
    text-align: left;
}

.stat-number {
    font-size: 2rem;
    font-weight: 800;
    color: #1e293b;
    line-height: 1;
    margin-bottom: 0.25rem;
    background: linear-gradient(135deg, #1e40af 0%, #0891b2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-label {
    font-size: 0.875rem;
    color: #64748b;
    font-weight: 500;
    line-height: 1.2;
}

.hero-live-counter {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 1.8rem;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 50px;
    /* Animation désactivée pour LCP */
    box-shadow: 0 4px 20px rgba(30, 64, 175, 0.08);
}

.live-indicator {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.4rem 0.8rem;
    background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%);
    border-radius: 50px;
}

.live-indicator .pulse {
    background: white;
}

.live-indicator .live-text {
    color: white !important;
    font-size: 0.75rem !important;
}

.live-indicator {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.pulse {
    width: 8px;
    height: 8px;
    background: #10b981;
    border-radius: 50%;
    animation: pulseAnimation 2s infinite;
}

@keyframes pulseAnimation {
    0%, 100% { opacity: 1; box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.7); }
    100% { box-shadow: 0 0 0 8px rgba(16, 185, 129, 0); }
}

.live-text {
    font-weight: 700;
    color: var(--primary);
    font-size: 0.85rem;
}

.counter-text {
    font-size: 0.8rem;
    color: var(--text-light);
}

.gradient-text {
    background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.ai-cta-section {
    padding: 1rem 2rem;
    background: white;
}

.ai-cta-content {
    max-width: 1100px;
    margin: 0 auto;
    text-align: center;
}

.ai-cta-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.7rem;
    padding: 0.7rem 1.5rem;
    background: linear-gradient(135deg, rgba(30, 64, 175, 0.1) 0%, rgba(8, 145, 178, 0.1) 100%);
    border: 1px solid rgba(30, 64, 175, 0.2);
    border-radius: 50px;
    color: var(--primary);
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
}

.ai-cta-title {
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.ai-cta-subtitle {
    font-size: 1.1rem;
    color: var(--text-light);
    max-width: 700px;
    margin: 0 auto 2.5rem;
    line-height: 1.6;
}

.ai-cta-button {
    display: inline-flex;
    align-items: center;
    gap: 0.7rem;
    padding: 1rem 2.5rem;
    background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
    color: white;
    text-decoration: none;
    border-radius: 10px;
    font-weight: 700;
    transition: all 0.3s ease;
    margin-bottom: 1rem;
    cursor: pointer;
    border: none;
    font-size: 1rem;
}

.ai-cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 40px rgba(30, 64, 175, 0.3);
}

.ai-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.ai-feature {
    padding: 2rem;
    background: var(--bg-light);
    border-radius: 12px;
    border: 1px solid var(--border);
    transition: all 0.3s ease;
}

.ai-feature:hover {
    border-color: var(--primary);
    transform: translateY(-4px);
    box-shadow: 0 10px 30px rgba(30, 64, 175, 0.1);
}

.ai-feature-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.ai-feature-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.ai-feature-desc {
    font-size: 0.9rem;
    color: var(--text-light);
    line-height: 1.5;
}

/* ==========================================
   SECTION GRATUITÉ
   =========================================== */

.free-section {
    padding: 6rem 2rem;
    background: var(--bg-white);
}

@media (max-width: 768px) {
    .free-section {
        padding: 4rem 1.5rem;
    }
}

@media (max-width: 480px) {
    .free-section {
        padding: 3rem 1rem;
    }
}

.container {
    max-width: 1200px;
    margin: 0 auto;
}

.free-banner {
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 50%, #e0e7ff 100%);
    border-radius: 20px;
    padding: 4rem 2rem;
    text-align: center;
    border: 2px solid rgba(30, 64, 175, 0.08);
    display: flex;
    flex-direction: column;
    align-items: center;
}

.free-icon-main {
    font-size: 4rem;
    color: var(--primary);
    margin-bottom: 1.5rem;
    animation: slideUp 0.8s ease-out forwards;
    opacity: 0;
}

.free-content {
    animation: slideUp 0.8s ease-out 0.1s forwards;
    opacity: 0;
    width: 100%;
}

.free-title {
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.free-subtitle {
    font-size: 1.05rem;
    color: var(--text-light);
    margin-bottom: 2rem;
    line-height: 1.6;
}

/* Masquer le texte descriptif long en mobile */
.free-subtitle:last-of-type {
    /* Visible par défaut sur desktop */
}

@media (max-width: 480px) {
    .free-subtitle:last-of-type {
        display: none;
    }
}

.free-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.free-feature {
    display: flex;
    gap: 1.5rem;
    padding: 2rem;
    background: white;
    border-radius: 14px;
    border: 2px solid var(--border);
    transition: all 0.3s ease;
    animation: slideUp 0.8s ease-out 0.2s forwards;
    opacity: 0;
}

.free-feature:hover {
    border-color: var(--primary);
    box-shadow: 0 10px 30px rgba(30, 64, 175, 0.15);
    transform: translateY(-4px);
}

.free-feature-icon {
    width: 50px;
    height: 50px;
    min-width: 50px;
    border-radius: 10px;
    background: linear-gradient(135deg, rgba(30, 64, 175, 0.15) 0%, rgba(8, 145, 178, 0.15) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 1.5rem;
}

.free-feature-content {
    text-align: left;
}

.free-feature-content h3 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.free-feature-content p {
    font-size: 0.95rem;
    color: var(--text-light);
    line-height: 1.5;
}

.stats-showcase {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    padding: 4rem 2rem;
    background: white;
    max-width: 1200px;
    margin: 0 auto;
}

.stats-showcase-item {
    text-align: center;
    padding: 2rem;
    background: linear-gradient(135deg, var(--bg-light) 0%, white 100%);
    border-radius: 12px;
    border: 1px solid var(--border);
    transition: all 0.3s ease;
    animation: slideUp 0.8s ease-out forwards;
    opacity: 0;
}

.stats-showcase-item:nth-child(1) { animation-delay: 0s; }
.stats-showcase-item:nth-child(2) { animation-delay: 0.1s; }
.stats-showcase-item:nth-child(3) { animation-delay: 0.2s; }
.stats-showcase-item:nth-child(4) { animation-delay: 0.3s; }

.stats-showcase-item:hover {
    transform: translateY(-4px);
    border-color: var(--primary);
    box-shadow: 0 10px 30px rgba(30, 64, 175, 0.1);
}

.stats-showcase-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #1e40af 0%, #0891b2 100%);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    font-size: 1.5rem;
    color: white;
    box-shadow: 0 8px 20px rgba(30, 64, 175, 0.25);
}

.stats-showcase-number {
    font-size: 2.8rem;
    font-weight: 900;
    color: var(--primary);
    margin-bottom: 0.8rem;
}

.counter {
    font-family: 'Inter', sans-serif;
    font-weight: 800;
}

.stats-showcase-label {
    font-size: 0.95rem;
    color: var(--text-light);
    font-weight: 600;
}

@media (max-width: 768px) {
    .hero {
        min-height: 650px;
        padding: 3rem 1.5rem;
    }
    
    .hero-badge {
        flex-wrap: wrap;
        gap: 0.5rem;
        padding: 0.6rem 1rem;
        font-size: 0.85rem;
    }
    
    .badge-item {
        display: flex;
        align-items: center;
        gap: 0.3rem;
    }
    
    .badge-separator {
        display: inline;
    }
    
    .search-form {
        grid-template-columns: 1fr;
    }
    
    .btn-search {
        width: 100%;
    }
    
    .hero-stats {
        grid-template-columns: 1fr;
        gap: 1rem;
        padding: 0 1.5rem;
        max-width: 500px;
        margin: 0 auto 2rem;
    }
    
    .stat-item {
        width: 100%;
        justify-content: flex-start;
    }
    
    .ai-cta-title {
        font-size: 1.8rem;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .free-features {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .free-banner {
        flex-direction: column;
        gap: 2rem;
    }
    
    .free-icon-main {
        font-size: 2.5rem;
    }
    
    .free-feature {
        padding: 1.5rem;
        gap: 1rem;
    }
}

@media (max-width: 480px) {
    .hero {
        min-height: 550px;
        padding: 2.5rem 1rem;
    }
    
    .hero-badge {
        display: flex;
        flex-wrap: nowrap;
        gap: 0.3rem;
        width: auto;
        max-width: 100%;
        padding: 0.5rem 0.8rem;
        border-radius: 30px;
        font-size: 0.75rem;
        overflow-x: auto;
        white-space: nowrap;
    }
    
    .badge-item {
        display: flex;
        flex-direction: row;
        align-items: center;
        justify-content: center;
        gap: 0.2rem;
        padding: 0;
        flex-shrink: 0;
    }
    
    .badge-item i {
        font-size: 0.85rem;
    }
    
    .badge-separator {
        display: inline;
        margin: 0 0.15rem;
        font-size: 0.65rem;
    }
    
    .hero-title {
        font-size: 1.4rem;
        margin-bottom: 1rem;
    }
    
    .hero-subtitle {
        font-size: 0.85rem;
        margin-bottom: 2rem;
    }
    
    .hero-stats {
        grid-template-columns: 1fr;
        gap: 0.85rem;
        padding: 0 1rem;
        margin: 0 auto 1.5rem;
        max-width: 100%;
    }
    
    .stat-item {
        padding: 1.1rem 1.3rem;
        width: 100%;
        gap: 1rem;
    }
    
    .stat-icon {
        width: 48px;
        height: 48px;
        min-width: 48px;
        font-size: 1.3rem;
        border-radius: 12px;
    }
    
    .stat-content {
        text-align: left;
    }
    
    .stat-number {
        font-size: 1.75rem;
    }
    
    .stat-label {
        font-size: 0.8rem;
    }
    
    .hero-live-counter {
        flex-direction: column;
        gap: 0.5rem;
        padding: 0.8rem 1.2rem;
        font-size: 0.85rem;
    }
    
    .counter-text {
        font-size: 0.8rem;
        text-align: center;
    }
    
    .search-form {
        grid-template-columns: 1fr;
        gap: 0.8rem;
    }
    
    .btn-search {
        width: 100%;
        padding: 0.8rem;
        font-size: 0.95rem;
    }
    
    .ai-features {
        grid-template-columns: 1fr;
    }
    
    .stats-showcase {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .free-features {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .free-banner {
        flex-direction: column;
        gap: 1.5rem;
        padding: 1.5rem 1rem;
    }
    
    .free-icon-main {
        font-size: 2rem;
        margin: 0 auto;
    }
    
    .free-title {
        font-size: 1.4rem;
    }
    
    .free-subtitle {
        font-size: 0.9rem !important;
    }
    
    .free-feature {
        padding: 1.2rem;
        gap: 0.8rem;
    }
    
    .free-feature-icon {
        width: 40px;
        height: 40px;
        min-width: 40px;
        font-size: 1.2rem;
    }
    
    .free-feature-content h3 {
        font-size: 1rem;
    }
    
    .free-feature-content p {
        font-size: 0.85rem;
    }
}

/* ==========================================
   COMMITMENT SECTION (Nouvelle section engagement)
   =========================================== */

.commitment-section {
    padding: 2rem 0;
    background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 50%, #f0fdf4 100%);
}

.commitment-banner {
    background: white;
    border-radius: 24px;
    padding: 2rem;
    box-shadow: 0 10px 40px rgba(30, 64, 175, 0.08);
}

.commitment-header {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 2.5rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid #e2e8f0;
}

.commitment-icon-main {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #1e40af 0%, #0891b2 100%);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    color: white;
    flex-shrink: 0;
    box-shadow: 0 8px 25px rgba(30, 64, 175, 0.3);
}

.commitment-title-wrap {
    flex: 1;
}

.commitment-title {
    font-size: 1.75rem;
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 0.5rem;
}

.commitment-tagline {
    font-size: 1.1rem;
    color: #1e40af;
    font-weight: 600;
}

.commitment-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.commitment-card {
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
    border-radius: 16px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

.commitment-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(30, 64, 175, 0.1);
    border-color: #3b82f6;
}

.commitment-card-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #1e40af 0%, #3b82f6 100%);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: white;
    margin: 0 auto 1rem;
}

.commitment-card h3 {
    font-size: 1.1rem;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 0.75rem;
}

.commitment-card p {
    font-size: 0.95rem;
    color: #64748b;
    line-height: 1.6;
}

.commitment-trust {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
    padding-top: 1.5rem;
    border-top: 1px solid #e2e8f0;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    font-weight: 600;
    color: #059669;
}

.trust-item i {
    font-size: 1rem;
}

@media (max-width: 768px) {
    .commitment-banner {
        padding: 2rem 1.5rem;
    }
    
    .commitment-header {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .commitment-icon-main {
        width: 70px;
        height: 70px;
        font-size: 2rem;
    }
    
    .commitment-title {
        font-size: 1.4rem;
    }
    
    .commitment-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .commitment-card {
        padding: 1.5rem;
    }
    
    .commitment-trust {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }
}

.testimonials-section {
    padding: 5rem 0;
    background: white;
}

.testimonials-header {
    text-align: center;
    margin-bottom: 3rem;
}

.testimonials-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: linear-gradient(135deg, rgba(251, 191, 36, 0.1) 0%, rgba(245, 158, 11, 0.1) 100%);
    border-radius: 50px;
    margin-bottom: 1rem;
}

.testimonials-badge i {
    color: #f59e0b;
}

.testimonials-badge span {
    font-size: 0.85rem;
    font-weight: 700;
    color: #b45309;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.testimonial-card {
    background: #f8fafc;
    border-radius: 20px;
    padding: 2rem;
    position: relative;
    transition: all 0.3s ease;
    border: 1px solid #e2e8f0;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
    border-color: #3b82f6;
}

.testimonial-quote {
    font-size: 3rem;
    color: #3b82f6;
    opacity: 0.3;
    position: absolute;
    top: 1rem;
    left: 1.5rem;
    font-family: Georgia, serif;
}

.testimonial-content {
    padding-top: 1.5rem;
    font-size: 1rem;
    color: #475569;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding-top: 1rem;
    border-top: 1px solid #e2e8f0;
}

.testimonial-avatar {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #1e40af 0%, #0891b2 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    color: white;
    font-weight: 700;
}

.testimonial-info h4 {
    font-size: 1rem;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 0.25rem;
}

.testimonial-info span {
    font-size: 0.85rem;
    color: #64748b;
}

.testimonial-stars {
    color: #fbbf24;
    margin-bottom: 0.5rem;
}

@media (max-width: 992px) {
    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .testimonials-section {
        padding: 3rem 0;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .testimonial-card {
        padding: 1.5rem;
    }
}

/* ==========================================
   FAQ SECTION (Mini)
   =========================================== */

.faq-mini-section {
    padding: 4rem 0;
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
}

.faq-mini-header {
    text-align: center;
    margin-bottom: 2.5rem;
}

.faq-mini-header h2 {
    font-size: 1.75rem;
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 0.5rem;
}

.faq-mini-header p {
    font-size: 1rem;
    color: #64748b;
}

.faq-mini-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    max-width: 1000px;
    margin: 0 auto 2rem;
}

.faq-mini-item {
    background: white;
    border-radius: 16px;
    padding: 1.5rem;
    border: 1px solid #e2e8f0;
    transition: all 0.3s ease;
}

.faq-mini-item:hover {
    box-shadow: 0 8px 25px rgba(30, 64, 175, 0.08);
    border-color: #3b82f6;
}

.faq-mini-question {
    font-size: 1rem;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 0.75rem;
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
}

.faq-mini-question i {
    color: #1e40af;
    font-size: 1.1rem;
    margin-top: 0.15rem;
}

.faq-mini-answer {
    font-size: 0.95rem;
    color: #64748b;
    line-height: 1.6;
    padding-left: 1.85rem;
}

.faq-mini-cta {
    text-align: center;
}

.faq-mini-cta a {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: #1e40af;
    font-weight: 600;
    text-decoration: none;
    padding: 0.75rem 1.5rem;
    border: 2px solid #1e40af;
    border-radius: 50px;
    transition: all 0.3s ease;
}

.faq-mini-cta a:hover {
    background: #1e40af;
    color: white;
}

@media (max-width: 768px) {
    .faq-mini-grid {
        grid-template-columns: 1fr;
    }
    
    .faq-mini-header h2 {
        font-size: 1.4rem;
    }
}

/* ==========================================
   HERO AUTOCOMPLETE - GÉOLOCALISATION
   =========================================== */

.hero-search .geo-input-wrapper {
    position: relative;
}

.hero-search .geo-suggestions {
    position: absolute;
    top: calc(100% + 4px);
    left: 0;
    right: 0;
    background: white;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    z-index: 1000;
    max-height: 350px;
    overflow-y: auto;
    border: 1px solid var(--border);
    display: none;
}

.hero-search .geo-suggestions.open {
    display: block;
    animation: dropdownFadeIn 0.2s ease-out;
}

@keyframes dropdownFadeIn {
    from {
        opacity: 0;
        transform: translateY(-8px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-search .geo-suggestion-item {
    padding: 0.9rem 1.2rem;
    cursor: pointer;
    transition: all 0.2s ease;
    border-bottom: 1px solid var(--border);
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.hero-search .geo-suggestion-item:last-child {
    border-bottom: none;
}

.hero-search .geo-suggestion-item:hover,
.hero-search .geo-suggestion-item.selected {
    background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
}

.hero-search .geo-suggestion-item i {
    color: var(--primary);
    font-size: 1rem;
    width: 20px;
    text-align: center;
}

.hero-search .geo-suggestion-name {
    font-weight: 600;
    color: var(--text-dark);
}

.hero-search .geo-suggestion-type {
    font-size: 0.8rem;
    color: var(--text-light);
    margin-left: auto;
    background: #f1f5f9;
    padding: 0.2rem 0.6rem;
    border-radius: 20px;
}

.hero-search .geo-suggestion-hierarchy {
    font-size: 0.8rem;
    color: var(--text-light);
    display: block;
    margin-top: 0.2rem;
}

/* Amélioration du dropdown scroll */
.hero-search .geo-suggestions::-webkit-scrollbar {
    width: 6px;
}

.hero-search .geo-suggestions::-webkit-scrollbar-track {
    background: #f1f5f9;
    border-radius: 0 12px 12px 0;
}

.hero-search .geo-suggestions::-webkit-scrollbar-thumb {
    background: var(--primary);
    border-radius: 6px;
}

/* Section Populaire */
.hero-search .geo-popular-header {
    padding: 0.6rem 1.2rem;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--text-light);
    background: #f8fafc;
    border-bottom: 1px solid var(--border);
}

/* Responsive Hero Autocomplete */
@media (max-width: 768px) {
    .hero-search .geo-suggestions {
        max-height: 280px;
    }
    
    .hero-search .geo-suggestion-item {
        padding: 0.75rem 1rem;
    }
}
