/* ============================================
   RESET & VARIABLES - STYLE ORANGE LEBONCOIN
   ============================================ */
:root {
    --primary-color: #ff8c00;
    --primary-dark: #e67e00;
    --primary-light: #ffa233;
    --secondary-color: #ff6b00;
    --dark-color: #1a1a2e;
    --light-color: #f9f9f9;
    --gray-color: #666666;
    --gray-light: #e8e8e8;
    --success-color: #10b981;
    --warning-color: #f59e0b;
    --danger-color: #ef4444;
    --gradient: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    --gradient-hover: linear-gradient(135deg, #e67e00, #ff5500);
    --shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 10px 30px rgba(0, 0, 0, 0.12);
    --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.1);
    --transition: all 0.25s ease;
    --border-radius: 12px;
    --border-radius-sm: 8px;
    --border-radius-md: 16px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.5;
    color: var(--dark-color);
    overflow-x: hidden;
    background: #ffffff;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* ============================================
   TYPOGRAPHY
   ============================================ */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.3;
}

a {
    text-decoration: none;
    color: inherit;
}

img {
    max-width: 100%;
    height: auto;
}

/* ============================================
   LOGO IMAGE STYLES - PROPORTIONNEL
   ============================================ */
.logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    transition: var(--transition);
}

.logo-img {
    width: auto;
    height: auto;
    max-height: 50px;
    max-width: 200px;
    display: block;
    transition: var(--transition);
}

.logo:hover {
    opacity: 0.9;
}

.logo:hover .logo-img {
    transform: scale(1.02);
}

/* ============================================
   NAVIGATION - STYLE ORANGE LEBONCOIN
   ============================================ */
.header {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    background: white;
    box-shadow: var(--shadow);
    transition: var(--transition);
    border-bottom: 1px solid var(--gray-light);
}

.header.scrolled {
    background: white;
    box-shadow: var(--shadow-md);
}

.navbar {
    padding: 0.8rem 0;
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Menu principal */
.nav-menu {
    display: flex;
    gap: 2rem;
    list-style: none;
    align-items: center;
}

.nav-menu li a {
    text-decoration: none;
    color: var(--dark-color);
    font-weight: 500;
    transition: var(--transition);
    font-size: 0.95rem;
}

.nav-menu li a:hover {
    color: var(--primary-color);
}

.nav-menu li a.active {
    color: var(--primary-color);
    font-weight: 600;
}

/* Style pour le bouton "Demander un prêt" */
.nav-menu li:last-child a {
    background: var(--primary-color);
    color: white !important;
    padding: 0.6rem 1.5rem !important;
    border-radius: 50px;
    transition: var(--transition);
    font-weight: 600;
}

.nav-menu li:last-child a:hover {
    background: var(--primary-dark);
    transform: translateY(-1px);
}

/* Dropdown style Leboncoin */
.dropdown {
    position: relative;
}

.dropdown > a {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.dropdown > a i {
    font-size: 0.7rem;
    transition: transform 0.2s ease;
}

.dropdown:hover > a i {
    transform: rotate(180deg);
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: white;
    min-width: 220px;
    padding: 0.5rem 0;
    border-radius: var(--border-radius-sm);
    box-shadow: var(--shadow-lg);
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    list-style: none;
    z-index: 100;
    border: 1px solid var(--gray-light);
    transform: translateY(10px);
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(5px);
}

.dropdown-menu li a {
    display: block;
    padding: 0.6rem 1.2rem;
    font-size: 0.85rem;
    color: var(--gray-color);
}

.dropdown-menu li a:hover {
    background: #f5f5f5;
    color: var(--primary-color);
}

/* Menu Toggle Mobile */
.menu-toggle {
    display: none;
    width: 40px;
    height: 40px;
    background: var(--primary-color);
    border-radius: 50%;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
    color: white;
    font-size: 1.2rem;
}

.menu-toggle:hover {
    background: var(--primary-dark);
}

/* ============================================
   BUTTONS - STYLE ORANGE
   ============================================ */
.btn-primary, .btn-secondary {
    display: inline-block;
    padding: 0.75rem 1.8rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
    border: none;
    cursor: pointer;
    font-size: 0.95rem;
    text-align: center;
}

.btn-primary {
    background: var(--primary-color);
    color: white;
    box-shadow: 0 2px 8px rgba(255, 140, 0, 0.2);
}

.btn-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(255, 140, 0, 0.3);
}

.btn-secondary {
    background: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.btn-secondary:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-1px);
}

.btn-large {
    padding: 0.9rem 2rem;
    font-size: 1rem;
}

.btn-block {
    width: 100%;
}

.btn-link {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: var(--transition);
}

.btn-link:hover {
    gap: 0.8rem;
    color: var(--primary-dark);
}

.btn-primary-small {
    background: var(--primary-color);
    color: white;
    padding: 0.6rem 1.2rem;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    font-weight: 600;
    transition: var(--transition);
}

.btn-primary-small:hover {
    background: var(--primary-dark);
}

/* ============================================
   HERO SECTION - ORANGE
   ============================================ */
.hero {
    min-height: auto;
    background: linear-gradient(135deg, #fff5eb 0%, #ffe6d5 100%);
    display: flex;
    align-items: center;
    padding: 110px 0 60px;
    position: relative;
}

.hero .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.hero-content h1 {
    font-size: 2.8rem;
    font-weight: 800;
    color: var(--dark-color);
    margin-bottom: 1rem;
    line-height: 1.2;
}

.hero-content .highlight {
    color: var(--primary-color);
}

.hero-content p {
    font-size: 1rem;
    color: var(--gray-color);
    margin-bottom: 1.8rem;
    line-height: 1.6;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.hero-stats {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.stat {
    text-align: center;
}

.stat-number {
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--primary-color);
}

.stat-label {
    font-size: 0.8rem;
    color: var(--gray-color);
}

/* Slider */
.hero-slider {
    width: 100%;
    max-width: 500px;
    margin: 0 auto;
    position: relative;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.slider-container {
    position: relative;
    width: 100%;
    height: 300px;
    overflow: hidden;
}

.slider-slides {
    display: flex;
    transition: transform 0.5s ease;
    height: 100%;
}

.slide {
    min-width: 100%;
    height: 100%;
    position: relative;
}

.slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.slide-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0,0,0,0.7));
    color: white;
    padding: 1rem;
    text-align: center;
}

.slide-caption h3 {
    font-size: 1rem;
    margin-bottom: 0.2rem;
}

.slide-caption p {
    font-size: 0.75rem;
    opacity: 0.9;
}

.slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 32px;
    height: 32px;
    background: rgba(255,255,255,0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
    z-index: 10;
    color: var(--dark-color);
    font-size: 0.9rem;
    box-shadow: var(--shadow);
}

.slider-btn:hover {
    background: var(--primary-color);
    color: white;
}

.slider-btn.prev { left: 12px; }
.slider-btn.next { right: 12px; }

.slider-dots {
    position: absolute;
    bottom: 12px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
    z-index: 10;
}

.dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255,255,255,0.5);
    cursor: pointer;
    transition: var(--transition);
}

.dot.active {
    background: var(--primary-color);
    width: 24px;
    border-radius: 10px;
}

/* ============================================
   SECTIONS COMMUNES
   ============================================ */
section {
    padding: 5rem 0;
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-header h2 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 0.8rem;
    color: var(--dark-color);
}

.section-header p {
    color: var(--gray-color);
    font-size: 1rem;
    max-width: 700px;
    margin: 0 auto;
}

/* ============================================
   FEATURES - STYLE ORANGE
   ============================================ */
.features {
    background: #ffffff;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 1.8rem;
}

.feature-card {
    background: white;
    padding: 1.8rem;
    border-radius: var(--border-radius);
    transition: var(--transition);
    box-shadow: var(--shadow);
    border: 1px solid var(--gray-light);
}

.feature-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-light);
}

.feature-icon {
    width: 70px;
    height: 70px;
    background: #fff5eb;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.2rem;
}

.feature-icon i {
    font-size: 1.8rem;
    color: var(--primary-color);
}

.feature-card h3 {
    font-size: 1.3rem;
    margin-bottom: 0.8rem;
    color: var(--dark-color);
}

.feature-description {
    color: var(--gray-color);
    margin-bottom: 1rem;
    line-height: 1.5;
    font-size: 0.9rem;
}

.feature-details {
    list-style: none;
    margin: 1rem 0;
    padding: 0;
}

.feature-details li {
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.85rem;
    color: var(--gray-color);
}

.feature-details li i {
    color: var(--primary-color);
    width: 18px;
    font-size: 0.8rem;
}

.feature-rate {
    margin: 1rem 0;
    font-weight: 700;
    color: var(--primary-color);
    font-size: 0.9rem;
    background: #fff5eb;
    display: inline-block;
    padding: 0.3rem 1rem;
    border-radius: 50px;
}

.feature-card .btn-link {
    margin-top: auto;
    display: inline-flex;
}

/* Info Banner */
.info-banner {
    background: #fff5eb;
    padding: 2.5rem;
    border-radius: var(--border-radius);
    margin-top: 3rem;
    text-align: center;
    border: 1px solid #ffe0c4;
}

.info-banner h3 {
    font-size: 1.5rem;
    margin-bottom: 0.8rem;
    color: var(--dark-color);
}

.info-banner p {
    margin-bottom: 1.2rem;
    color: var(--gray-color);
}

/* ============================================
   HOW IT WORKS
   ============================================ */
.how-it-works {
    background: #ffffff;
}

.steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 2rem;
}

.step {
    text-align: center;
    padding: 1.5rem;
    background: white;
    border-radius: var(--border-radius);
    border: 1px solid var(--gray-light);
    transition: var(--transition);
}

.step:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow);
    border-color: var(--primary-light);
}

.step-number {
    width: 48px;
    height: 48px;
    background: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    font-weight: bold;
    margin: 0 auto 1rem;
}

.step-icon {
    font-size: 1.8rem;
    color: var(--primary-color);
    margin-bottom: 0.8rem;
}

.step h3 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

.step p {
    font-size: 0.85rem;
    color: var(--gray-color);
}

/* ============================================
   TESTIMONIALS
   ============================================ */
.testimonials-preview {
    background: #fafafa;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.8rem;
    margin-bottom: 2rem;
}

.testimonial-card {
    background: white;
    padding: 1.8rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    border: 1px solid var(--gray-light);
    transition: var(--transition);
}

.testimonial-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}

.testimonial-rating {
    color: #ffc107;
    margin-bottom: 0.8rem;
    font-size: 1rem;
}

.testimonial-card p {
    font-style: italic;
    margin-bottom: 1.2rem;
    color: var(--gray-color);
    font-size: 0.9rem;
    line-height: 1.5;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.testimonial-author img {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    object-fit: cover;
}

.testimonial-author strong {
    display: block;
    font-size: 0.85rem;
}

.testimonial-author span {
    font-size: 0.75rem;
    color: var(--gray-color);
}

/* ============================================
   NEWSLETTER
   ============================================ */
.newsletter {
    background: var(--primary-color);
    color: white;
}

.newsletter-content {
    text-align: center;
    max-width: 550px;
    margin: 0 auto;
}

.newsletter-content h2 {
    font-size: 1.8rem;
    margin-bottom: 0.8rem;
}

.newsletter-form {
    display: flex;
    gap: 0.8rem;
    margin-top: 1.5rem;
}

.newsletter-form input {
    flex: 1;
    padding: 0.9rem;
    border: none;
    border-radius: 50px;
    font-size: 0.9rem;
}

.newsletter-form input:focus {
    outline: none;
    box-shadow: 0 0 0 2px rgba(255,255,255,0.3);
}

/* ============================================
   FOOTER - STYLE ORANGE
   ============================================ */
.footer {
    background: #1a1a2e;
    color: #aaa;
    padding: 3rem 0 2rem;
}

.footer-grid {
    display: flex;
    justify-content: space-between;
    gap: 2rem;
    margin-bottom: 2.5rem;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    padding-bottom: 2.5rem;
    flex-wrap: wrap;
}

.footer-section {
    flex: 1;
    min-width: 180px;
}

.footer-section h3 {
    color: white;
    font-size: 1.1rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.footer-section p {
    color: #aaa;
    line-height: 1.5;
    margin-bottom: 1rem;
    font-size: 0.85rem;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.6rem;
}

.footer-section ul li a {
    color: #aaa;
    text-decoration: none;
    transition: var(--transition);
    font-size: 0.85rem;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.footer-section ul li a i {
    width: 18px;
    font-size: 0.8rem;
}

.footer-section ul li a:hover {
    color: var(--primary-color);
    transform: translateX(3px);
}

.contact-info li {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    color: #aaa;
    font-size: 0.85rem;
    margin-bottom: 0.6rem;
}

.contact-info li i {
    width: 20px;
    color: var(--primary-color);
}

.social-links {
    display: flex;
    gap: 0.8rem;
    margin-top: 1rem;
}

.social-links a {
    width: 34px;
    height: 34px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    color: white;
    font-size: 0.9rem;
}

.social-links a:hover {
    background: var(--primary-color);
    transform: translateY(-2px);
}

/* Footer Newsletter */
.footer-newsletter {
    text-align: center;
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: rgba(255,255,255,0.05);
    border-radius: var(--border-radius);
}

.footer-newsletter h4 {
    color: white;
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

.footer-newsletter p {
    color: #aaa;
    margin-bottom: 1rem;
    font-size: 0.85rem;
}

.footer-newsletter-form {
    display: flex;
    gap: 0.8rem;
    max-width: 450px;
    margin: 0 auto;
}

.footer-newsletter-form input {
    flex: 1;
    padding: 0.7rem 1rem;
    border: none;
    border-radius: 50px;
    background: rgba(255,255,255,0.1);
    color: white;
    font-size: 0.85rem;
}

.footer-newsletter-form input::placeholder {
    color: #888;
}

.footer-newsletter-form input:focus {
    outline: none;
    background: rgba(255,255,255,0.15);
}

/* Footer Bottom */
.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 1.5rem;
}

.footer-bottom-content {
    text-align: center;
}

.footer-bottom p {
    color: #888;
    font-size: 0.75rem;
    margin-bottom: 0.8rem;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.footer-links a {
    color: #888;
    text-decoration: none;
    font-size: 0.75rem;
    transition: color 0.2s ease;
}

.footer-links a:hover {
    color: var(--primary-color);
}

/* ============================================
   RESPONSIVE DESIGN - OPTIMISÉ
   ============================================ */

/* Tablette (max-width: 992px) */
@media (max-width: 992px) {
    .container {
        padding: 0 1.5rem;
    }
    
    .hero-content h1 {
        font-size: 2.2rem;
    }
    
    .section-header h2 {
        font-size: 1.8rem;
    }
    
    .features-grid {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 1.5rem;
    }
}

/* Mobile (max-width: 768px) */
@media (max-width: 768px) {
    /* Container */
    .container {
        padding: 0 1rem;
    }
    
    /* Header & Navigation */
    .menu-toggle {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 0;
        flex-direction: column;
        background: white;
        width: 80%;
        max-width: 300px;
        height: 100vh;
        text-align: left;
        transition: 0.3s ease;
        padding: 5rem 1.5rem 2rem;
        gap: 1rem;
        box-shadow: var(--shadow-lg);
        z-index: 999;
        border-right: 1px solid var(--gray-light);
        overflow-y: auto;
    }

    .nav-menu.active {
        left: 0;
    }
    
    .nav-menu li a {
        display: block;
        padding: 0.6rem 0;
        font-size: 1rem;
    }
    
    .nav-menu li:last-child a {
        display: inline-block;
        margin-top: 0.5rem;
        text-align: center;
    }
    
    /* Dropdown mobile */
    .dropdown-menu {
        position: static;
        background: transparent;
        box-shadow: none;
        padding-left: 1rem;
        opacity: 1;
        visibility: visible;
        transform: none;
        display: none;
        border: none;
    }
    
    .dropdown.active .dropdown-menu {
        display: block;
    }
    
    .dropdown > a i {
        transition: transform 0.2s ease;
    }
    
    .dropdown.active > a i {
        transform: rotate(180deg);
    }
    
    /* Hero section */
    .hero {
        padding: 100px 0 40px;
    }
    
    .hero .container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }

    .hero-content h1 {
        font-size: 1.8rem;
    }
    
    .hero-content p {
        font-size: 0.95rem;
    }
    
    .hero-buttons {
        justify-content: center;
        flex-direction: column;
        align-items: center;
        gap: 0.8rem;
    }
    
    .hero-buttons .btn-primary,
    .hero-buttons .btn-secondary {
        width: 100%;
        max-width: 250px;
    }
    
    .hero-stats {
        justify-content: center;
        gap: 1.5rem;
    }
    
    .stat-number {
        font-size: 1.4rem;
    }
    
    .stat-label {
        font-size: 0.75rem;
    }
    
    /* Slider */
    .slider-container {
        height: 240px;
    }
    
    .hero-slider {
        max-width: 100%;
        margin-top: 1rem;
    }
    
    .slide-caption h3 {
        font-size: 0.9rem;
    }
    
    .slide-caption p {
        font-size: 0.7rem;
    }
    
    /* Sections */
    section {
        padding: 3rem 0;
    }
    
    .section-header {
        margin-bottom: 2rem;
    }
    
    .section-header h2 {
        font-size: 1.6rem;
    }
    
    .section-header p {
        font-size: 0.9rem;
        padding: 0 1rem;
    }
    
    /* Features */
    .features-grid {
        grid-template-columns: 1fr;
        gap: 1.2rem;
    }
    
    .feature-card {
        padding: 1.2rem;
    }
    
    .feature-icon {
        width: 55px;
        height: 55px;
    }
    
    .feature-icon i {
        font-size: 1.5rem;
    }
    
    .feature-card h3 {
        font-size: 1.2rem;
    }
    
    .feature-description {
        font-size: 0.85rem;
    }
    
    /* Steps */
    .steps {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .step {
        padding: 1.2rem;
    }
    
    /* Testimonials */
    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 1.2rem;
    }
    
    .testimonial-card {
        padding: 1.2rem;
    }
    
    /* Newsletter */
    .newsletter-content h2 {
        font-size: 1.5rem;
    }
    
    .newsletter-content p {
        font-size: 0.85rem;
    }
    
    .newsletter-form {
        flex-direction: column;
        gap: 0.8rem;
    }
    
    .newsletter-form input,
    .newsletter-form button {
        width: 100%;
    }
    
    /* Footer */
    .footer-grid {
        flex-direction: column;
        text-align: center;
        gap: 1.5rem;
    }
    
    .footer-section {
        min-width: auto;
    }
    
    .social-links {
        justify-content: center;
    }
    
    .contact-info li {
        justify-content: center;
    }
    
    .footer-newsletter-form {
        flex-direction: column;
        gap: 0.8rem;
        padding: 0 1rem;
    }
    
    .footer-newsletter-form input,
    .footer-newsletter-form button {
        width: 100%;
    }
    
    .footer-links {
        flex-direction: column;
        gap: 0.5rem;
        align-items: center;
    }
    
    /* Logo responsive tablette */
    .logo-img {
        max-height: 45px;
        max-width: 180px;
    }
}

/* Petit mobile (max-width: 480px) */
@media (max-width: 480px) {
    .container {
        padding: 0 0.8rem;
    }
    
    .hero-content h1 {
        font-size: 1.5rem;
    }
    
    .hero-content p {
        font-size: 0.85rem;
    }
    
    .slider-container {
        height: 200px;
    }
    
    .stat-number {
        font-size: 1.2rem;
    }
    
    .stat-label {
        font-size: 0.7rem;
    }
    
    .section-header h2 {
        font-size: 1.4rem;
    }
    
    .info-banner {
        padding: 1.5rem;
    }
    
    .info-banner h3 {
        font-size: 1.2rem;
    }
    
    .info-banner p {
        font-size: 0.85rem;
    }
    
    /* Logo responsive mobile */
    .logo-img {
        max-height: 40px;
        max-width: 160px;
    }
}

/* Très petit mobile (max-width: 360px) */
@media (max-width: 360px) {
    .hero-content h1 {
        font-size: 1.3rem;
    }
    
    .btn-primary, .btn-secondary {
        padding: 0.6rem 1.2rem;
        font-size: 0.85rem;
    }
    
    .logo-img {
        max-height: 35px;
        max-width: 140px;
    }
}

/* Support pour écrans haute résolution */
@media (min-width: 1920px) {
    .container {
        max-width: 1400px;
    }
    
    .hero-content h1 {
        font-size: 3.2rem;
    }
}

/* Support pour mode sombre (optionnel) */
@media (prefers-color-scheme: dark) {
    /* Cette section est optionnelle - décommentez si besoin */
    /*
    body:not(.light-mode) {
        background: #121212;
        color: #ffffff;
    }
    
    body:not(.light-mode) .feature-card,
    body:not(.light-mode) .testimonial-card,
    body:not(.light-mode) .step {
        background: #1e1e1e;
        border-color: #333;
    }
    */
}