@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800;900&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary: #2563eb;
    --primary-dark: #1e40af;
    --primary-light: #3b82f6;
    --accent: #10b981;
    --text-dark: #0f172a;
    --text-light: #64748b;
    --bg-light: #f8fafc;
    --border: #e2e8f0;
    --gradient-1: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    --gradient-2: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    --gradient-3: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    color: var(--text-dark);
    background: 
        linear-gradient(135deg, rgba(15, 23, 42, 0.65) 0%, rgba(30, 58, 138, 0.60) 100%),
        url('https://images.unsplash.com/photo-1593941707882-a5bba14938c7?q=80&w=2400&auto=format&fit=crop') center/cover fixed;
    min-height: 100vh;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    -webkit-tap-highlight-color: transparent;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ============ NAVBAR ============ */
.navbar {
    background: rgba(51, 65, 85, 0.90);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border-bottom: 1px solid rgba(100, 116, 139, 0.5);
    padding: 1.25rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.3);
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1.5rem;
    font-weight: 900;
    color: white;
    letter-spacing: -0.5px;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.logo-icon {
    filter: drop-shadow(0 2px 8px rgba(16, 185, 129, 0.5));
    transition: transform 0.3s ease;
}

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

.btn-nav {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: white;
    padding: 0.875rem 1.75rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 0.875rem;
    letter-spacing: 0.5px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 14px rgba(16, 185, 129, 0.4);
}

.btn-nav:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(16, 185, 129, 0.6);
}

/* ============ HERO SECTION ============ */
.hero {
    position: relative;
    min-height: 90vh;
    padding: 2rem 0 0 0;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: transparent;
    z-index: -2;
}

@keyframes slowZoom {
    0% { transform: scale(1); }
    100% { transform: scale(1.05); }
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 50%, rgba(6, 182, 212, 0.08) 0%, transparent 40%),
        radial-gradient(circle at 80% 50%, rgba(59, 130, 246, 0.08) 0%, transparent 40%);
    z-index: -1;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-left {
    color: white;
    animation: fadeInUp 0.8s ease-out;
}

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

.hero-badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    padding: 0.5rem 1.25rem;
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    border: 1px solid rgba(255, 255, 255, 0.3);
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

.hero-left h1 {
    font-size: 3.5rem;
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    letter-spacing: -1px;
}

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

.hero-description {
    font-size: 1.125rem;
    line-height: 1.8;
    margin-bottom: 2rem;
    color: rgba(255, 255, 255, 0.95);
    font-weight: 500;
}

.hero-features {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    padding: 0.625rem 1.125rem;
    border-radius: 50px;
    font-size: 0.95rem;
    font-weight: 600;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.feature-icon {
    width: 20px;
    height: 20px;
    background: var(--accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    font-weight: 900;
}

.trust-badges {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-top: 2.5rem;
}

.trust-item {
    text-align: center;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.trust-number {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 2px;
    font-size: 2rem;
    font-weight: 900;
    margin-bottom: 0.25rem;
}

.trust-suffix {
    font-size: 1.2rem;
    font-weight: 700;
}

.trust-label {
    display: block;
    font-size: 0.8rem;
    opacity: 0.9;
    font-weight: 500;
}

/* ============ FORM CARD ============ */
.form-card {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(30px) saturate(180%);
    -webkit-backdrop-filter: blur(30px) saturate(180%);
    padding: 2.5rem;
    border-radius: 24px;
    box-shadow: 
        0 30px 60px rgba(0, 0, 0, 0.4),
        0 0 0 1px rgba(255, 255, 255, 0.3);
    animation: fadeInRight 0.8s ease-out 0.2s backwards;
    position: relative;
    overflow: hidden;
}

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

.form-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #2563eb, #7c3aed, #10b981);
    background-size: 200% 100%;
    animation: gradientSlide 3s ease-in-out infinite;
}

@keyframes gradientSlide {
    0%, 100% { background-position: 0% 0%; }
    50% { background-position: 100% 0%; }
}

.form-header {
    margin-bottom: 1.5rem;
}

.form-card h2 {
    font-size: 1.75rem;
    color: white;
    font-weight: 900;
    margin-bottom: 0.5rem;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.form-subtitle {
    color: rgba(255, 255, 255, 0.95);
    font-size: 0.875rem;
    line-height: 1.6;
    font-weight: 500;
    text-shadow: 0 1px 4px rgba(0, 0, 0, 0.2);
}

form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.input-group {
    position: relative;
}

input, select {
    width: 100%;
    padding: 0.875rem 1rem;
    border: 2px solid rgba(100, 116, 139, 0.5);
    border-radius: 12px;
    font-family: inherit;
    font-size: 0.95rem;
    font-weight: 500;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    background: rgba(51, 65, 85, 0.70);
    color: white;
}

input::placeholder,
select option:first-child {
    color: rgba(255, 255, 255, 0.6);
}

input:focus, select:focus {
    outline: none;
    border-color: #60a5fa;
    background: rgba(51, 65, 85, 0.85);
    box-shadow: 0 0 0 4px rgba(96, 165, 250, 0.15);
    transform: translateY(-2px);
}

select {
    color: white;
}

select option {
    background: rgb(51, 65, 85);
    color: white;
}

.consent-box {
    background: rgba(255, 255, 255, 0.20);
    padding: 1.25rem;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.consent-box label {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    margin-bottom: 0.875rem;
    cursor: pointer;
    font-size: 0.875rem;
    color: white;
    font-weight: 500;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}

.consent-box label:last-child {
    margin-bottom: 0;
}

.consent-box input[type="checkbox"] {
    margin-top: 0.125rem;
    width: 18px;
    height: 18px;
    cursor: pointer;
    accent-color: var(--primary);
}

.consent-box a {
    color: #60a5fa;
    text-decoration: none;
    font-weight: 700;
    transition: color 0.3s;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}

.consent-box a:hover {
    color: #93c5fd;
}

.btn-submit {
    padding: 1.125rem 1.5rem;
    background: linear-gradient(135deg, var(--accent) 0%, #059669 100%);
    color: white;
    border: none;
    border-radius: 12px;
    font-weight: 800;
    font-size: 0.95rem;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 8px 20px rgba(16, 185, 129, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    letter-spacing: 0.5px;
}

.btn-submit:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 28px rgba(16, 185, 129, 0.4);
}

.btn-submit:active {
    transform: translateY(-1px);
}

.btn-submit svg {
    transition: transform 0.3s;
}

.btn-submit:hover svg {
    transform: translateX(5px);
}

.form-guarantee {
    text-align: center;
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.95);
    margin-top: 0.5rem;
    font-weight: 500;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}

/* ============ WHY SECTION ============ */
.why {
    padding: 0.5rem 0 3rem 0;
    background: transparent;
}

.section-header {
    text-align: center;
    margin-bottom: 2rem;
}

.section-header h2 {
    font-size: 3rem;
    font-weight: 900;
    color: white;
    margin-bottom: 1rem;
    letter-spacing: -1px;
    text-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
}

.section-subtitle {
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.95);
    max-width: 600px;
    margin: 0 auto;
    font-weight: 500;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.card {
    background: linear-gradient(135deg, rgba(51, 65, 85, 0.85) 0%, rgba(71, 85, 105, 0.85) 100%);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 2.5rem;
    border-radius: 20px;
    border: 1px solid rgba(100, 116, 139, 0.5);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3);
    text-align: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(37, 99, 235, 0.05), transparent);
    transition: left 0.6s;
}

.card:hover::before {
    left: 100%;
}

.card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 
        0 20px 60px rgba(0, 0, 0, 0.4),
        0 0 0 1px rgba(96, 165, 250, 0.4);
    border-color: rgba(96, 165, 250, 0.5);
    background: linear-gradient(135deg, rgba(71, 85, 105, 0.95) 0%, rgba(100, 116, 139, 0.95) 100%);
}

.card-icon-wrapper {
    margin-bottom: 1.5rem;
    display: inline-flex;
    padding: 1.5rem;
    background: linear-gradient(135deg, #10b981 0%, #34d399 100%);
    border-radius: 20px;
    box-shadow: 
        0 0 30px rgba(16, 185, 129, 0.6),
        0 0 60px rgba(16, 185, 129, 0.4),
        0 4px 20px rgba(0, 0, 0, 0.2);
    animation: iconGlow 2s ease-in-out infinite;
}

.icon {
    font-size: 3rem;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
    display: inline-block;
}

@keyframes iconGlow {
    0%, 100% {
        box-shadow: 
            0 0 30px rgba(16, 185, 129, 0.6),
            0 0 60px rgba(16, 185, 129, 0.4),
            0 4px 20px rgba(0, 0, 0, 0.2);
        transform: scale(1);
    }
    50% {
        box-shadow: 
            0 0 40px rgba(16, 185, 129, 0.8),
            0 0 80px rgba(16, 185, 129, 0.6),
            0 4px 20px rgba(0, 0, 0, 0.2);
        transform: scale(1.05);
    }
}

.card h3 {
    font-size: 1.375rem;
    margin-bottom: 1rem;
    color: white;
    font-weight: 800;
}

.card p {
    color: rgba(255, 255, 255, 0.90);
    line-height: 1.7;
    font-size: 0.95rem;
    margin-bottom: 1rem;
}

.card-link {
    color: #60a5fa;
    font-weight: 700;
    font-size: 0.875rem;
    transition: transform 0.3s;
    display: inline-block;
}

.card:hover .card-link {
    transform: translateX(5px);
}

/* ============ CONTENT SECTION ============ */
.content-section {
    padding: 3rem 0;
    background: transparent;
}

.content-box {
    max-width: 900px;
    margin: 0 auto;
    background: rgba(51, 65, 85, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 3rem;
    border-radius: 24px;
    border: 1px solid rgba(100, 116, 139, 0.5);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3);
}

.content-box h2 {
    font-size: 2.5rem;
    color: #60a5fa;
    margin-bottom: 2rem;
    font-weight: 900;
    text-align: center;
    letter-spacing: -0.5px;
}

.content-box p {
    font-size: 1.0625rem;
    color: white;
    line-height: 1.9;
    margin-bottom: 1.5rem;
    text-align: justify;
}

/* ============ GALLERY SECTION ============ */
.gallery {
    padding: 3rem 0;
    background: transparent;
}

.gallery h2 {
    font-size: 3rem;
    text-align: center;
    margin-bottom: 2rem;
    color: white;
    font-weight: 900;
    text-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.gallery-item {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.gallery-item::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 60%, rgba(0, 0, 0, 0.4) 100%);
    opacity: 0;
    transition: opacity 0.4s;
}

.gallery-item:hover::after {
    opacity: 1;
}

.gallery-item:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.2);
}

.gallery-item img {
    width: 100%;
    height: 320px;
    object-fit: cover;
    display: block;
    transition: transform 0.4s;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

/* ============ STATS SECTION ============ */
.stats {
    padding: 3rem 0;
    position: relative;
    overflow: hidden;
}

.stats-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(15, 23, 42, 0.30);
    z-index: -1;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    text-align: center;
    position: relative;
    z-index: 1;
}

.stat {
    color: white;
    padding: 2rem;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border: 1px solid rgba(255, 255, 255, 0.25);
    box-shadow: 
        0 8px 32px rgba(0, 0, 0, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    transition: all 0.3s;
}

.stat:hover {
    transform: translateY(-8px) scale(1.02);
    background: rgba(255, 255, 255, 0.18);
    border-color: rgba(255, 255, 255, 0.35);
    box-shadow: 
        0 12px 48px rgba(0, 0, 0, 0.25),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

.stat-number {
    font-size: 3.5rem;
    font-weight: 900;
    margin-bottom: 0.5rem;
    letter-spacing: -2px;
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 2px;
}

.stat-suffix {
    font-size: 1.5rem;
    font-weight: 700;
}

.stat-label {
    font-size: 1.0625rem;
    opacity: 0.95;
    font-weight: 600;
    margin-bottom: 1rem;
}

.stat-icon {
    font-size: 2rem;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
}

/* ============ TESTIMONIALS SECTION ============ */
.testimonials {
    padding: 3rem 0;
    background: transparent;
}

.testimonials h2 {
    font-size: 3rem;
    text-align: center;
    margin-bottom: 2rem;
    color: white;
    font-weight: 900;
    text-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
}

.testimonial {
    background: rgba(51, 65, 85, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 2.5rem;
    border-radius: 20px;
    border-left: 5px solid #3b82f6;
    transition: all 0.3s;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3);
}

.testimonial:hover {
    transform: translateY(-5px);
    background: rgba(51, 65, 85, 0.95);
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.4);
}

.testimonial p {
    color: white;
    margin-bottom: 1.5rem;
    font-style: italic;
    line-height: 1.8;
    font-size: 1rem;
    font-weight: 500;
}

.author {
    color: #60a5fa;
    font-weight: 700;
    font-size: 0.9375rem;
}

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

.footer-grid {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
}

.footer h4 {
    display: none;
}

.footer p {
    display: none;
}

.footer-links {
    display: flex;
    gap: 1rem;
    align-items: center;
    flex-shrink: 0;
}

.footer-links a {
    color: white;
    text-decoration: none;
    opacity: 0.85;
    transition: all 0.3s;
    font-weight: 500;
    font-size: 0.6875rem;
    white-space: nowrap;
}

.footer-links a:hover {
    opacity: 1;
    color: #60a5fa;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    flex-shrink: 0;
}

.footer-logo .logo-icon {
    filter: drop-shadow(0 2px 8px rgba(16, 185, 129, 0.5));
    width: 24px;
    height: 24px;
}

.footer-copy {
    opacity: 0.75;
    font-size: 0.6875rem;
    margin: 0;
    white-space: nowrap;
}

/* ============ ANIMATIONS ============ */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.8s ease-out forwards;
}

.animate-on-scroll:nth-child(1) { animation-delay: 0.1s; }
.animate-on-scroll:nth-child(2) { animation-delay: 0.2s; }
.animate-on-scroll:nth-child(3) { animation-delay: 0.3s; }
.animate-on-scroll:nth-child(4) { animation-delay: 0.4s; }

/* ============ RESPONSIVE DESIGN - 2 BREAKPOINTS ============ */

/* TABLETTE : max-width 1024px */
@media (max-width: 1024px) {
    .container {
        padding: 0 1.5rem;
    }
    
    /* Hero en 1 colonne */
    .hero-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    /* Grilles en 1 colonne */
    .why-grid,
    .gallery-grid,
    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
}

/* TABLETTE : max-width 1024px */
@media (max-width: 1024px) {
    .hero-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .why-grid,
    .gallery-grid,
    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* MOBILE : max-width 768px */
@media (max-width: 768px) {
    .container {
        padding: 0 15px;
    }
    
    /* NAVBAR */
    .navbar { padding: 8px 0; }
    .logo { font-size: 11px; gap: 5px; }
    .logo .logo-icon { width: 22px; height: 22px; }
    .btn-nav { padding: 6px 12px; font-size: 9px; }
    
    /* HERO - CENTRÉ */
    .hero { padding: 15px 0; }
    .hero-grid { grid-template-columns: 1fr; gap: 15px; }
    .hero-left { text-align: center; }
    
    h1 { 
        font-size: 12px; 
        line-height: 1.4; 
        margin-bottom: 8px; 
        text-align: center;
        white-space: normal;
    }
    
    .hero-description { 
        font-size: 9px; 
        line-height: 1.5; 
        text-align: center;
    }
    
    /* 3 FEATURES EN LIGNE */
    .hero-features { 
        display: flex;
        flex-direction: row;
        justify-content: center;
        gap: 10px; 
        flex-wrap: nowrap;
    }
    .feature-item { font-size: 8px; }
    .feature-icon { width: 10px; height: 10px; font-size: 7px; }
    
    /* TRUST BADGES CENTRÉS */
    .trust-badges { 
        display: flex;
        justify-content: center;
        gap: 15px; 
        margin-top: 12px; 
    }
    .trust-item { text-align: center; }
    .trust-number { font-size: 12px; }
    .trust-label { font-size: 7px; }
    
    /* FORMULAIRE DÉPORTÉ GAUCHE */
    .hero-right { width: 100%; }
    .form-card { 
        padding: 12px; 
        margin: 0;
        margin-right: auto;
        max-width: 100%;
    }
    .form-card h2 { font-size: 12px; margin-bottom: 4px; text-align: center; }
    .form-subtitle { font-size: 9px; text-align: center; }
    
    form { gap: 8px; }
    .form-row { flex-direction: column; gap: 8px; }
    input, select { padding: 10px 12px; font-size: 14px !important; }
    
    .consent-box { padding: 10px; }
    .consent-box label { font-size: 8px; gap: 6px; }
    .consent-box input[type="checkbox"] { width: 14px; height: 14px; }
    
    .btn-submit { padding: 10px 15px; font-size: 11px; }
    .form-guarantee { font-size: 8px; }
    
    /* SECTIONS */
    .why, .content-section, .gallery, .stats, .testimonials { padding: 20px 0; }
    .section-header { margin-bottom: 15px; }
    .section-header h2 { font-size: 14px; }
    .section-subtitle { font-size: 10px; }
    
    /* GRILLES 2x2 */
    .why-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
    .gallery-grid { grid-template-columns: repeat(2, 1fr); gap: 8px; }
    .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 8px; }
    .testimonials-grid { grid-template-columns: 1fr; gap: 10px; }
    
    /* CARDS */
    .card { padding: 10px; }
    .card-icon-wrapper { padding: 8px; margin-bottom: 6px; }
    .icon { font-size: 16px; }
    .card h3 { font-size: 10px; margin-bottom: 4px; }
    .card p { font-size: 8px; display: -webkit-box; -webkit-line-clamp: 2; line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
    .card-link { display: none; }
    
    /* CONTENT BOX - Plus grand */
    .content-box { padding: 20px 15px; }
    .content-box h2 { font-size: 14px; margin-bottom: 12px; line-height: 1.4; }
    .content-box p { font-size: 11px; margin-bottom: 10px; line-height: 1.6; }
    
    /* GALLERY */
    .gallery h2 { font-size: 14px; margin-bottom: 10px; }
    .gallery-item img { height: 80px; }
    
    /* STATS */
    .stat { padding: 10px 6px; }
    .stat-number { font-size: 16px; }
    .stat-label { font-size: 7px; }
    .stat-icon { font-size: 12px; }
    
    /* TESTIMONIALS */
    .testimonials h2 { font-size: 14px; margin-bottom: 10px; }
    .testimonial { padding: 10px; }
    .testimonial p { font-size: 9px; }
    .author { font-size: 8px; }
    
    /* FOOTER */
    .footer { padding: 10px 0; }
    .footer-grid { flex-direction: row; gap: 8px; align-items: center; justify-content: space-between; }
    .footer-logo .logo-icon { width: 16px; height: 16px; }
    .footer-copy { font-size: 7px; }
    .footer-links { gap: 8px; }
    .footer-links a { font-size: 7px; }
}

/* ============ PERFORMANCE & ACCESSIBILITY ============ */
/* Reduce animation on mobile for better performance */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* ============ COOKIE BANNER ============ */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, #1e293b 0%, #0f172a 100%);
    padding: 1rem 1.5rem;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.3);
    z-index: 9999;
    border-top: 1px solid rgba(16, 185, 129, 0.3);
    animation: slideUp 0.5s ease-out;
}

@keyframes slideUp {
    from {
        transform: translateY(100%);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.cookie-banner-hidden {
    animation: slideDown 0.3s ease-in forwards;
}

@keyframes slideDown {
    from {
        transform: translateY(0);
        opacity: 1;
    }
    to {
        transform: translateY(100%);
        opacity: 0;
    }
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
}

.cookie-text {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex: 1;
}

.cookie-icon {
    font-size: 2rem;
    flex-shrink: 0;
}

.cookie-text p {
    color: #e2e8f0;
    font-size: 0.9rem;
    line-height: 1.5;
    margin: 0;
}

.cookie-text a {
    color: #10b981;
    text-decoration: underline;
    transition: color 0.2s;
}

.cookie-text a:hover {
    color: #34d399;
}

.cookie-buttons {
    display: flex;
    gap: 0.75rem;
    flex-shrink: 0;
}

.cookie-btn {
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    font-size: 0.875rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
    border: none;
}

.cookie-btn-decline {
    background: transparent;
    color: #94a3b8;
    border: 1px solid #475569;
}

.cookie-btn-decline:hover {
    background: #334155;
    color: #e2e8f0;
}

.cookie-btn-accept {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: white;
    box-shadow: 0 2px 10px rgba(16, 185, 129, 0.3);
}

.cookie-btn-accept:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(16, 185, 129, 0.4);
}

/* Cookie Banner Mobile */
@media (max-width: 768px) {
    .cookie-banner {
        padding: 1rem;
    }
    
    .cookie-content {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .cookie-text {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .cookie-icon {
        font-size: 1.5rem;
    }
    
    .cookie-text p {
        font-size: 0.8rem;
    }
    
    .cookie-buttons {
        width: 100%;
    }
    
    .cookie-btn {
        flex: 1;
        padding: 0.6rem 1rem;
        font-size: 0.8rem;
    }
}
