/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Variables CSS pour mobile */
:root {
    --vh: 1vh;
}

/* Performance optimizations */
html {
    scroll-behavior: smooth;
}

/* Optimize font rendering */
body {
    font-display: swap;
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* GPU acceleration for animations */
.hero::before,
.multi-step-form-hero:hover,
.process-step:hover,
.cta-primary:hover {
    will-change: transform;
    transform: translateZ(0);
}

/* Header */
.main-header {
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(37, 99, 235, 0.1);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 12px 0;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
}

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

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

.phone-number {
    display: flex;
    align-items: center;
    justify-content: center;
}

.phone-cta-button {
    background: linear-gradient(135deg, #10b981, #059669);
    color: white;
    border: none;
    padding: 12px 20px;
    border-radius: 25px;
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 15px rgba(16, 185, 129, 0.3);
    display: inline-flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    letter-spacing: 0.025em;
    position: relative;
    overflow: hidden;
    animation: pulse-glow 3s infinite;
}

.phone-cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.5s;
}

.phone-cta-button:hover::before {
    left: 100%;
}

.phone-cta-button:hover {
    transform: translateY(-2px) scale(1.05);
    box-shadow: 0 8px 25px rgba(16, 185, 129, 0.4);
    background: linear-gradient(135deg, #059669, #047857);
}

.phone-cta-button:active {
    transform: translateY(0) scale(1.02);
    transition: transform 0.1s ease;
}

.phone-icon {
    font-size: 16px;
    animation: ring 2s infinite;
}

.phone-text {
    font-size: 12px;
    font-weight: 600;
    margin-left: 4px;
}

@keyframes pulse-glow {
    0%, 100% {
        box-shadow: 0 4px 15px rgba(16, 185, 129, 0.3);
    }
    50% {
        box-shadow: 0 6px 20px rgba(16, 185, 129, 0.5);
    }
}

@keyframes ring {
    0%, 100% {
        transform: rotate(0deg);
    }
    10%, 30% {
        transform: rotate(-10deg);
    }
    20% {
        transform: rotate(10deg);
    }
}

    .main-nav {
        display: flex;
        gap: 15px;
        align-items: center;
        margin-right: 25px;
    }

    .nav-link {
        color: #666;
        text-decoration: none;
        font-size: 14px;
        font-weight: 600;
        padding: 8px 15px;
        border-radius: 20px;
        transition: all 0.3s ease;
        border: 1px solid transparent;
    }

    .nav-link:hover {
        color: #2563eb;
        background: rgba(37, 99, 235, 0.1);
        border-color: rgba(37, 99, 235, 0.2);
        transform: translateY(-1px);
    }

.logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.logo a {
    display: flex;
    align-items: center;
    text-decoration: none;
    transition: transform 0.2s ease;
}

.logo a:hover {
    transform: scale(1.02);
}

.logo-img {
    height: 40px;
    width: auto;
    max-width: 120px;
    object-fit: contain;
    background: transparent;
    padding: 0;
    border-radius: 0;
    box-shadow: none;
    border: none;
    display: block;
    image-rendering: auto;
    image-rendering: -webkit-optimize-contrast;
    image-rendering: crisp-edges;
    filter: none;
    vertical-align: middle;
}



.cta-express {
    background: linear-gradient(135deg, #10b981, #059669);
    color: white;
    border: none;
    padding: 12px 25px;
    border-radius: 25px;
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 15px rgba(16, 185, 129, 0.3);
    display: inline-flex;
    align-items: center;
    gap: 8px;
    text-transform: none;
    letter-spacing: 0.025em;
    position: relative;
    overflow: hidden;
}

.cta-express::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.5s;
}

.cta-express:hover::before {
    left: 100%;
}

.cta-express:hover {
    transform: translateY(-2px) scale(1.05);
    box-shadow: 0 8px 25px rgba(16, 185, 129, 0.4);
    background: linear-gradient(135deg, #059669, #047857);
}

.cta-express:active {
    transform: translateY(0) scale(1.02);
    transition: transform 0.1s ease;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: #1a202c;
    background: #ffffff;
    overflow-x: hidden;
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Hero Section - Design moderne et professionnel */
.hero {
    background: linear-gradient(135deg, #2563eb 0%, #1e40af 100%);
    color: white;
    padding: 120px 0 100px;
    position: relative;
    overflow: hidden;
    min-height: 70vh;
    display: flex;
    align-items: center;
    margin-top: 70px;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="50" cy="50" r="1" fill="rgba(255,255,255,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.1;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 420px;
    gap: 50px;
    align-items: center;
    position: relative;
    z-index: 2;
    min-height: 500px;
}

.urgency-badge {
    background: #ff4757;
    color: white;
    padding: 8px 16px;
    border-radius: 25px;
    font-size: 14px;
    font-weight: 600;
    display: inline-block;
    margin-bottom: 20px;
    animation: pulse 2s infinite;
}

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

.hero h1 {
    font-size: 2.8rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
}

.highlight {
    color: #feca57;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.hero-subtitle {
    font-size: 1.2rem;
    margin-bottom: 30px;
    opacity: 0.95;
}

.trust-indicators {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
    flex-wrap: wrap;
    align-items: center;
}

.hero-phone-highlight {
    background: rgba(255, 255, 255, 0.15);
    padding: 12px 20px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
    text-align: center;
    font-size: 15px;
    width: 100%;
    margin: 10px 0;
}

.hero-phone-number {
    color: #feca57;
    font-size: 1.3rem;
    font-weight: 700;
    text-decoration: none;
    margin: 0 8px;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
    transition: all 0.3s ease;
    letter-spacing: 1px;
}

.hero-phone-number:hover {
    color: #ff9ff3;
    transform: scale(1.05);
}

.phone-hours {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.9);
    font-style: italic;
    display: block;
    margin-top: 3px;
}

.rating, .security {
    font-size: 14px;
}

.stars {
    color: #feca57;
    margin-right: 5px;
}

.certifications {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.certification-badge {
    background: rgba(255,255,255,0.25);
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255,255,255,0.3);
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: all 0.3s ease;
}

.certification-badge:hover {
    background: rgba(255,255,255,0.35);
    transform: translateY(-1px);
}

.cta-primary {
    background: linear-gradient(135deg, #f59e0b, #d97706);
    color: white;
    border: none;
    padding: 20px 40px;
    font-size: 1.1rem;
    font-weight: 700;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 10px 25px rgba(245, 158, 11, 0.3);
    display: inline-flex;
    align-items: center;
    gap: 12px;
    text-transform: none;
    letter-spacing: 0.025em;
    position: relative;
    overflow: hidden;
}

.cta-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.5s;
}

.cta-primary:hover::before {
    left: 100%;
}

.cta-primary:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 20px 40px rgba(245, 158, 11, 0.4);
    background: linear-gradient(135deg, #d97706, #b45309);
}

.cta-primary:active {
    transform: translateY(0);
    transition: transform 0.1s ease;
}

.cta-arrow {
    transition: transform 0.3s ease;
}

.cta-primary:hover .cta-arrow {
    transform: translateX(5px);
}

.hero-form-container {
    position: relative;
    width: 100%;
    max-width: 420px;
    margin: 0 auto;
}

.form-header-hero {
    text-align: center;
    margin-bottom: 25px;
}

.form-header-hero h2 {
    font-size: 1.4rem;
    color: white;
    margin-bottom: 8px;
    font-weight: 700;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

.form-header-hero p {
    color: rgba(255,255,255,0.95);
    margin-bottom: 15px;
    font-size: 0.9rem;
    line-height: 1.4;
}

.multi-step-form-hero {
        background: linear-gradient(145deg, rgba(255, 255, 255, 0.98), rgba(248, 250, 252, 0.95));
        border-radius: 24px;
        box-shadow: 
            0 32px 80px rgba(0,0,0,0.15),
            0 8px 32px rgba(59, 130, 246, 0.1),
            inset 0 1px 0 rgba(255,255,255,0.9);
        border: 2px solid transparent;
        background-clip: padding-box;
        padding: 35px 32px;
        backdrop-filter: blur(30px);
        position: relative;
        width: 100%;
        transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        will-change: transform, box-shadow;
        transform: translateZ(0);
        overflow: hidden;
    }

    .multi-step-form-hero::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: linear-gradient(135deg, 
            rgba(59, 130, 246, 0.05) 0%, 
            rgba(16, 185, 129, 0.05) 50%, 
            rgba(245, 158, 11, 0.05) 100%);
        border-radius: 24px;
        z-index: -1;
        opacity: 0;
        transition: opacity 0.3s ease;
    }

    .multi-step-form-hero:hover::before {
        opacity: 1;
    }

    .multi-step-form-hero:hover {
        transform: translateY(-8px) scale(1.01);
        box-shadow: 
            0 40px 100px rgba(0,0,0,0.2),
            0 16px 40px rgba(59, 130, 246, 0.15),
            inset 0 1px 0 rgba(255,255,255,1);
        border-color: rgba(59, 130, 246, 0.2);
    }

    .multi-step-form-hero .form-step {
        display: none;
        opacity: 0;
        transform: translateX(20px);
        animation: slideInFade 0.6s cubic-bezier(0.4, 0, 0.2, 1) forwards;
    }

    .multi-step-form-hero .form-step.active {
        display: block;
        opacity: 1;
        transform: translateX(0);
    }

    .multi-step-form-hero h3 {
        font-size: 1.3rem;
        margin-bottom: 28px;
        background: linear-gradient(135deg, #1f2937, #3b82f6);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
        text-align: center;
        font-weight: 700;
        line-height: 1.3;
        position: relative;
    }

    .multi-step-form-hero h3::after {
        content: '';
        position: absolute;
        bottom: -8px;
        left: 50%;
        transform: translateX(-50%);
        width: 40px;
        height: 3px;
        background: linear-gradient(90deg, #3b82f6, #10b981);
        border-radius: 2px;
        animation: expandLine 0.5s ease-out 0.3s both;
    }

    @keyframes slideInFade {
        0% {
            opacity: 0;
            transform: translateX(30px) translateY(10px);
        }
        100% {
            opacity: 1;
            transform: translateX(0) translateY(0);
        }
    }

    @keyframes expandLine {
        0% {
            width: 0;
        }
        100% {
            width: 40px;
        }
    }

    .multi-step-form-hero .form-grid {
        display: grid;
        grid-template-columns: 1fr;
        gap: 18px;
        margin-bottom: 25px;
    }

    .multi-step-form-hero .form-group {
        position: relative;
    }

    .multi-step-form-hero .form-group label {
        display: block;
        margin-bottom: 6px;
        font-weight: 600;
        color: #374151;
        font-size: 14px;
    }

    .multi-step-form-hero .form-group input,
    .multi-step-form-hero .form-group select {
        width: 100%;
        padding: 16px 20px;
        border: 2px solid #e2e8f0;
        border-radius: 14px;
        font-size: 15px;
        font-weight: 500;
        transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        background: linear-gradient(145deg, #fafbff, #ffffff);
        color: #1f2937;
        box-sizing: border-box;
        -webkit-appearance: none;
        appearance: none;
        position: relative;
        box-shadow: 
            inset 0 1px 3px rgba(0, 0, 0, 0.04),
            0 1px 3px rgba(0, 0, 0, 0.06);
    }

    .multi-step-form-hero .form-group input:focus,
    .multi-step-form-hero .form-group select:focus {
        outline: none;
        border-color: #3b82f6;
        background: linear-gradient(145deg, #ffffff, #f8fafc);
        box-shadow: 
            0 0 0 4px rgba(59, 130, 246, 0.12),
            0 4px 20px rgba(59, 130, 246, 0.1),
            inset 0 1px 3px rgba(0, 0, 0, 0.02);
        transform: translateY(-3px) scale(1.01);
    }

    .multi-step-form-hero .form-group input:hover,
    .multi-step-form-hero .form-group select:hover {
        border-color: #cbd5e1;
        background: linear-gradient(145deg, #ffffff, #f9fafb);
        box-shadow: 
            0 2px 8px rgba(0, 0, 0, 0.08),
            inset 0 1px 3px rgba(0, 0, 0, 0.02);
        transform: translateY(-2px);
    }

    .multi-step-form-hero .btn-next,
    .multi-step-form-hero .btn-back,
    .multi-step-form-hero .btn-submit {
        padding: 18px 28px;
        border: none;
        border-radius: 16px;
        font-size: 16px;
        font-weight: 700;
        cursor: pointer;
        transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        width: 100%;
        position: relative;
        overflow: hidden;
        -webkit-tap-highlight-color: transparent;
        min-height: 56px;
        display: flex;
        align-items: center;
        justify-content: center;
        letter-spacing: 0.5px;
        text-transform: none;
    }

    .multi-step-form-hero .btn-next,
    .multi-step-form-hero .btn-submit {
        background: linear-gradient(135deg, #3b82f6 0%, #1d4ed8 50%, #1e40af 100%);
        color: white;
        box-shadow: 
            0 8px 20px rgba(59, 130, 246, 0.3),
            inset 0 1px 0 rgba(255, 255, 255, 0.2);
        border: 1px solid rgba(255, 255, 255, 0.1);
    }

    .multi-step-form-hero .btn-next::before,
    .multi-step-form-hero .btn-submit::before {
        content: '';
        position: absolute;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100%;
        background: linear-gradient(90deg, 
            transparent, 
            rgba(255,255,255,0.25), 
            transparent);
        transition: left 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    }

    .multi-step-form-hero .btn-next::after,
    .multi-step-form-hero .btn-submit::after {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: linear-gradient(135deg, 
            rgba(255, 255, 255, 0.1) 0%, 
            transparent 50%, 
            rgba(0, 0, 0, 0.05) 100%);
        border-radius: 16px;
        opacity: 0;
        transition: opacity 0.3s ease;
    }

    .multi-step-form-hero .btn-next:hover::before,
    .multi-step-form-hero .btn-submit:hover::before {
        left: 100%;
    }

    .multi-step-form-hero .btn-next:hover::after,
    .multi-step-form-hero .btn-submit:hover::after {
        opacity: 1;
    }

    .multi-step-form-hero .btn-next:hover,
    .multi-step-form-hero .btn-submit:hover {
        background: linear-gradient(135deg, #1d4ed8 0%, #1e40af 50%, #1e3a8a 100%);
        transform: translateY(-4px) scale(1.02);
        box-shadow: 
            0 16px 32px rgba(59, 130, 246, 0.4),
            0 8px 20px rgba(29, 78, 216, 0.3),
            inset 0 1px 0 rgba(255, 255, 255, 0.3);
    }

    .multi-step-form-hero .btn-next:active,
    .multi-step-form-hero .btn-submit:active {
        transform: translateY(-2px) scale(1.01);
        transition: transform 0.1s ease;
    }

    .multi-step-form-hero .btn-back {
        background: transparent;
        color: #6b7280;
        border: 2px solid #e5e7eb;
        margin-bottom: 12px;
    }

    .multi-step-form-hero .btn-back:hover {
        border-color: #3b82f6;
        color: #3b82f6;
        background: rgba(59, 130, 246, 0.05);
        transform: translateY(-2px);
    }

    .multi-step-form-hero .radio-group {
        display: flex;
        flex-direction: column;
        gap: 10px;
    }

    .multi-step-form-hero .radio-option {
        display: flex;
        align-items: center;
        padding: 16px 20px;
        border: 2px solid #e2e8f0;
        border-radius: 14px;
        cursor: pointer;
        transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        font-size: 15px;
        background: linear-gradient(145deg, #fafbff, #ffffff);
        position: relative;
        -webkit-tap-highlight-color: transparent;
        min-height: 52px;
        box-shadow: 
            inset 0 1px 3px rgba(0, 0, 0, 0.04),
            0 1px 3px rgba(0, 0, 0, 0.06);
        overflow: hidden;
    }

    .multi-step-form-hero .radio-option::before {
        content: '';
        position: absolute;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100%;
        background: linear-gradient(90deg, 
            transparent, 
            rgba(59, 130, 246, 0.05), 
            transparent);
        transition: left 0.6s ease;
    }

    .multi-step-form-hero .radio-option:hover::before {
        left: 100%;
    }

    .multi-step-form-hero .radio-option:hover {
        border-color: #3b82f6;
        background: linear-gradient(145deg, rgba(59, 130, 246, 0.05), rgba(99, 102, 241, 0.03));
        transform: translateY(-2px) scale(1.01);
        box-shadow: 
            0 4px 20px rgba(59, 130, 246, 0.1),
            inset 0 1px 3px rgba(0, 0, 0, 0.02);
    }

    .multi-step-form-hero .radio-option input[type="radio"] {
        margin-right: 15px;
        accent-color: #3b82f6;
        width: 20px;
        height: 20px;
        min-width: 20px;
        position: relative;
    }

    .multi-step-form-hero .radio-option.selected {
        border: 2px solid #3b82f6;
        background: linear-gradient(145deg, 
            rgba(59, 130, 246, 0.08), 
            rgba(99, 102, 241, 0.06));
        transform: scale(1.02);
        box-shadow: 
            0 8px 25px rgba(59, 130, 246, 0.15),
            inset 0 1px 0 rgba(255, 255, 255, 0.5);
        animation: selectedPulse 0.4s ease-out;
    }

    .multi-step-form-hero .radio-option.selected span {
        font-weight: 600;
        color: #1e40af;
    }

    .multi-step-form-hero .radio-option.selected::after {
        content: '✓';
        position: absolute;
        top: 10px;
        right: 15px;
        background: linear-gradient(135deg, #10b981, #059669);
        color: white;
        border-radius: 50%;
        width: 24px;
        height: 24px;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 12px;
        font-weight: bold;
        box-shadow: 0 2px 8px rgba(16, 185, 129, 0.3);
        animation: checkmarkAppear 0.3s ease-out 0.1s both;
    }

    .multi-step-form-hero .radio-option:has(input[type="radio"]:checked) {
        border-color: #3b82f6;
        background: linear-gradient(145deg, 
            rgba(59, 130, 246, 0.08), 
            rgba(99, 102, 241, 0.06));
    }

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

    @keyframes checkmarkAppear {
        0% {
            transform: scale(0) rotate(-180deg);
            opacity: 0;
        }
        50% {
            transform: scale(1.2) rotate(-90deg);
            opacity: 0.8;
        }
        100% {
            transform: scale(1) rotate(0deg);
            opacity: 1;
        }
    }

    .multi-step-form-hero .engagement-filter {
        margin: 20px 0;
        padding: 18px;
        background: linear-gradient(135deg, #f0f9ff, #e0f2fe);
        border-radius: 12px;
        border-left: 4px solid #10b981;
        border: 1px solid rgba(16, 185, 129, 0.2);
    }

    .multi-step-form-hero .checkbox-wrapper {
        font-size: 14px;
        font-weight: 600;
        color: #374151;
        display: flex;
        align-items: center;
        cursor: pointer;
        transition: color 0.3s ease;
        -webkit-tap-highlight-color: transparent;
        min-height: 44px;
    }

    .multi-step-form-hero .checkbox-wrapper:hover {
        color: #10b981;
    }

    .multi-step-form-hero .checkbox-wrapper input[type="checkbox"] {
        margin-right: 12px;
        accent-color: #10b981;
        width: 18px;
        height: 18px;
        min-width: 18px;
    }

.form-section-secondary {
    display: none;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
    40% { transform: translateY(-10px); }
    60% { transform: translateY(-5px); }
}

/* Partners Section */
.partners {
    background: #f8f9fa;
    padding: 40px 0;
    text-align: center;
}

.partners-text {
    color: #666;
    margin-bottom: 20px;
    font-size: 14px;
}

.partners-logos {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
    align-items: center;
}

.partner-logo {
    padding: 15px 20px;
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.partner-logo:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 20px rgba(0,0,0,0.15);
}

.partner-logo img {
    max-height: 50px;
    max-width: 120px;
    object-fit: contain;
    filter: brightness(0.8);
    transition: filter 0.3s ease;
    will-change: filter;
    transform: translateZ(0); /* Force GPU acceleration */
}

.partner-logo:hover img {
    filter: brightness(1);
}

/* Form Section */
.form-section {
    padding: 80px 0;
    background: white;
}

.form-header {
    text-align: center;
    margin-bottom: 50px;
}

.form-header h2 {
    font-size: 2.2rem;
    color: #333;
    margin-bottom: 10px;
}

.progress-bar {
    width: 100%;
    max-width: 400px;
    height: 8px;
    background: #e9ecef;
    border-radius: 4px;
    margin: 30px auto 15px;
    overflow: hidden;
}

.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, #667eea, #764ba2);
    border-radius: 4px;
    width: 33.33%;
    transition: width 0.5s ease;
}

.step-indicator {
    color: #666;
    font-size: 14px;
}

.multi-step-form {
    max-width: 650px;
    margin: 0 auto;
    background: white;
    border-radius: 24px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.08);
    border: 1px solid rgba(37, 99, 235, 0.1);
    padding: 50px 45px;
    position: relative;
    backdrop-filter: blur(20px);
}

.form-step {
    display: none;
}

.form-step.active {
    display: block;
}

.form-step h3 {
    font-size: 1.5rem;
    margin-bottom: 30px;
    color: #333;
    text-align: center;
}

.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 30px;
}

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

.form-group.full-width {
    grid-column: 1 / -1;
}

.form-group label {
    font-weight: 600;
    margin-bottom: 8px;
    color: #333;
}

.form-group input,
.form-group select {
    padding: 18px 20px;
    border: 2px solid #e2e8f0;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 500;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    background: #fafbff;
    color: #1a202c;
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: #2563eb;
    background: white;
    box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.1);
    transform: translateY(-1px);
}

.radio-group {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.radio-option {
    display: flex;
    align-items: center;
    padding: 15px;
    border: 2px solid #e9ecef;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.radio-option:hover {
    border-color: #667eea;
    background: rgba(102, 126, 234, 0.05);
}

.radio-option input[type="radio"] {
    margin-right: 10px;
    accent-color: #667eea;
}

.radio-option input[type="radio"]:checked + span {
    font-weight: 600;
    color: #667eea;
}

.nav-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
}

.btn-next,
.btn-back,
.btn-submit {
    padding: 15px 30px;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-next,
.btn-submit {
    background: #667eea;
    color: white;
}

.btn-next:hover,
.btn-submit:hover {
    background: #5a6fd8;
    transform: translateY(-2px);
}

.btn-back {
    background: transparent;
    color: #666;
    border: 2px solid #e9ecef;
}

.btn-back:hover {
    border-color: #667eea;
    color: #667eea;
}

.final-step-header {
    text-align: center;
    margin-bottom: 30px;
}

.final-step-header h3 {
    color: #2ed573;
    margin-bottom: 10px;
}

.engagement-filter {
    margin: 20px 0;
    padding: 20px;
    background: #f8f9fa;
    border-radius: 8px;
    border-left: 4px solid #2ed573;
}

.checkbox-wrapper {
    display: flex;
    align-items: center;
    cursor: pointer;
    font-weight: 600;
    color: #333;
}

.checkbox-wrapper input[type="checkbox"] {
    margin-right: 10px;
    accent-color: #2ed573;
    transform: scale(1.2);
}

.loading {
    margin-left: 10px;
}

/* Process Section */
.process {
    background: #f8f9fa;
    padding: 80px 0;
}

.process h2 {
    text-align: center;
    margin-bottom: 60px;
    font-size: 2.2rem;
    color: #333;
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
    max-width: 1000px;
    margin: 0 auto;
}

.process-step {
    background: white;
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    border: 1px solid rgba(37, 99, 235, 0.1);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    backdrop-filter: blur(10px);
}

.process-step:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 20px 40px rgba(37, 99, 235, 0.15);
    border-color: rgba(37, 99, 235, 0.2);
}

.step-number {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: white;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 14px;
}

.step-icon {
    font-size: 3rem;
    margin-bottom: 20px;
}

.process-step h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: #333;
}

.process-step p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 25px;
}

.step-cta {
    background: #667eea;
    color: white;
    border: none;
    padding: 12px 25px;
    border-radius: 25px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.step-cta:hover {
    background: #5a6fd8;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(102, 126, 234, 0.3);
}

/* Cancellation Reasons Section */
.cancellation-reasons {
    background: #f8f9fa;
    padding: 60px 0;
}

.cancellation-reasons h2 {
    text-align: center;
    margin-bottom: 40px;
    font-size: 2rem;
    color: #333;
    font-weight: 700;
}

.reasons-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    max-width: 1000px;
    margin: 0 auto 40px;
}

.reason-item {
    background: white;
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
    border: 1px solid #e9ecef;
    text-align: center;
    transition: all 0.3s ease;
}

.reason-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.reason-icon {
    font-size: 2rem;
    margin-bottom: 10px;
    display: block;
}

.reason-item h3 {
    font-size: 1rem;
    margin-bottom: 10px;
    color: #333;
    font-weight: 600;
}

.reason-item p {
    color: #666;
    line-height: 1.5;
    margin: 0;
    font-size: 14px;
}

.cancellation-cta {
    text-align: center;
    padding: 30px 25px;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.08), rgba(118, 75, 162, 0.08));
    border-radius: 12px;
    max-width: 600px;
    margin: 0 auto;
    border: 1px solid rgba(102, 126, 234, 0.15);
}

.reassurance-text {
    font-size: 1.1rem;
    margin-bottom: 20px;
    color: #333;
    font-weight: 600;
    line-height: 1.4;
}

/* Mobile Responsive for new sections */
@media (max-width: 768px) {
    .process-steps {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .process-step {
        padding: 25px 20px;
    }

    .step-icon {
        font-size: 2rem;
    }

    .reasons-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .reason-item {
        padding: 18px 15px;
    }

    .reason-icon {
        font-size: 1.8rem;
    }

    .cancellation-cta {
        padding: 25px 18px;
        margin: 0 15px;
    }

    .reassurance-text {
        font-size: 1rem;
    }

    .cancellation-reasons {
        padding: 40px 0;
    }

    .cancellation-reasons h2 {
        font-size: 1.8rem;
        margin-bottom: 30px;
    }
}

@media (max-width: 480px) {
    .process {
        padding: 40px 0;
    }

    .process h2 {
        font-size: 1.8rem;
        margin-bottom: 30px;
    }

    .reason-item {
        padding: 15px 12px;
    }

    .reason-item h3 {
        font-size: 0.95rem;
    }

    .reason-item p {
        font-size: 13px;
    }

    .reassurance-text {
        font-size: 0.95rem;
    }
}

/* French Law Section */
.french-law {
    background: white;
    padding: 60px 0;
    border-top: 1px solid #e9ecef;
}

.law-header {
    text-align: center;
    margin-bottom: 40px;
}

.french-law h2 {
    font-size: 2rem;
    color: #333;
    font-weight: 700;
    margin-bottom: 15px;
}

.law-intro {
    font-size: 1rem;
    color: #666;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
}

.law-content {
    max-width: 1000px;
    margin: 0 auto 40px;
}

.law-category {
    margin-bottom: 30px;
    background: #f8f9fa;
    border-radius: 12px;
    padding: 25px 20px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    border: 1px solid #e9ecef;
}

.category-title {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1.2rem;
    color: #333;
    font-weight: 700;
    margin-bottom: 20px;
    padding-bottom: 12px;
    border-bottom: 2px solid #667eea;
}

.category-icon {
    font-size: 1.5rem;
    background: linear-gradient(135deg, #667eea, #764ba2);
    padding: 8px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 40px;
    height: 40px;
}

.law-items-group {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 15px;
}

.law-item {
    background: white;
    padding: 20px;
    border-radius: 10px;
    border-left: 4px solid #667eea;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

.law-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(102, 126, 234, 0.15);
    border-left-color: #5a6fd8;
}

.law-icon {
    font-size: 1.5rem;
    margin-bottom: 10px;
    opacity: 0.8;
    display: block;
}

.law-content-item h4 {
    font-size: 1rem;
    margin-bottom: 8px;
    color: #333;
    font-weight: 600;
    line-height: 1.4;
}

.law-content-item p {
    color: #555;
    line-height: 1.5;
    margin-bottom: 8px;
    font-size: 14px;
}

.law-reference {
    display: inline-block;
    background: rgba(102, 126, 234, 0.1);
    color: #667eea;
    padding: 3px 6px;
    border-radius: 4px;
    font-size: 11px;
    font-weight: 600;
    margin-top: 5px;
}

.law-compliance-badge {
    max-width: 600px;
    margin: 0 auto 30px;
    background: linear-gradient(135deg, #10b981, #059669);
    border-radius: 12px;
    padding: 20px 25px;
    color: white;
    box-shadow: 0 6px 20px rgba(16, 185, 129, 0.2);
}

.compliance-content {
    display: flex;
    align-items: center;
    gap: 15px;
}

.compliance-icon {
    font-size: 2rem;
    flex-shrink: 0;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.compliance-text h4 {
    font-size: 1.1rem;
    margin-bottom: 5px;
    font-weight: 700;
}

.compliance-text p {
    margin: 0;
    opacity: 0.95;
    line-height: 1.4;
    font-size: 14px;
}

.law-conclusion {
    text-align: center;
    padding: 30px 25px;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.08), rgba(118, 75, 162, 0.08));
    border-radius: 12px;
    max-width: 600px;
    margin: 0 auto;
    border: 1px solid rgba(102, 126, 234, 0.15);
}

.conclusion-text {
    font-size: 1.1rem;
    margin-bottom: 20px;
    color: #333;
    font-weight: 600;
    line-height: 1.4;
}

.law-cta {
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: white;
    border: none;
    padding: 12px 25px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    position: relative;
    overflow: hidden;
}

.law-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.5s;
}

.law-cta:hover::before {
    left: 100%;
}

.law-cta:hover {
    background: linear-gradient(135deg, #5a6fd8, #6a5bb0);
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(102, 126, 234, 0.3);
}

.law-cta .cta-arrow {
    transition: transform 0.3s ease;
}

.law-cta:hover .cta-arrow {
    transform: translateX(3px);
}

/* Mobile Responsive for law section */
@media (max-width: 768px) {
    .french-law {
        padding: 40px 0;
    }

    .french-law h2 {
        font-size: 1.8rem;
        margin-bottom: 12px;
    }

    .law-intro {
        font-size: 0.95rem;
        margin-bottom: 30px;
        padding: 0 15px;
    }

    .law-content {
        padding: 0 15px;
    }

    .law-category {
        padding: 20px 15px;
        margin-bottom: 25px;
    }

    .category-title {
        font-size: 1.1rem;
        gap: 10px;
    }

    .category-icon {
        font-size: 1.3rem;
        width: 35px;
        height: 35px;
        padding: 6px;
    }

    .law-items-group {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .law-item {
        padding: 18px 15px;
    }

    .law-content-item h4 {
        font-size: 0.95rem;
    }

    .law-content-item p {
        font-size: 13px;
    }

    .law-reference {
        font-size: 10px;
        padding: 2px 5px;
    }

    .law-compliance-badge {
        margin: 0 15px 25px;
        padding: 18px 20px;
    }

    .compliance-content {
        text-align: center;
        gap: 12px;
    }

    .compliance-icon {
        width: 45px;
        height: 45px;
        font-size: 1.8rem;
    }

    .compliance-text h4 {
        font-size: 1rem;
    }

    .compliance-text p {
        font-size: 13px;
    }

    .law-conclusion {
        padding: 25px 18px;
        margin: 0 15px;
    }

    .conclusion-text {
        font-size: 1rem;
        margin-bottom: 18px;
    }

    .law-cta {
        padding: 11px 20px;
        font-size: 13px;
    }
}

@media (max-width: 480px) {
    .law-category {
        padding: 18px 12px;
    }

    .law-item {
        padding: 15px 12px;
    }

    .law-content-item h4 {
        font-size: 0.9rem;
    }

    .law-content-item p {
        font-size: 12px;
    }

    .law-reference {
        font-size: 10px;
        padding: 2px 5px;
    }

    .conclusion-text {
        font-size: 0.95rem;
    }

    .compliance-text h4 {
        font-size: 0.95rem;
    }

    .compliance-text p {
        font-size: 12px;
    }
}

/* Pricing Examples Section */
.pricing-examples {
    background: white;
    padding: 80px 0;
    border-top: 1px solid #e9ecef;
}

.pricing-examples h2 {
    text-align: center;
    margin-bottom: 15px;
    font-size: 2rem;
    color: #333;
    font-weight: 700;
}

.pricing-subtitle {
    text-align: center;
    margin-bottom: 50px;
    font-size: 1.1rem;
    color: #666;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.5;
}

.pricing-table-wrapper {
    overflow-x: auto;
    margin-bottom: 30px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    border: 1px solid rgba(37, 99, 235, 0.1);
}

.pricing-table {
    width: 100%;
    border-collapse: collapse;
    background: white;
    font-size: 15px;
    min-width: 700px;
}

.pricing-table thead {
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: white;
}

.pricing-table th {
    padding: 20px 15px;
    text-align: left;
    font-weight: 600;
    font-size: 14px;
    letter-spacing: 0.5px;
    white-space: nowrap;
}

.pricing-table th:last-child {
    text-align: center;
}

.table-icon {
    margin-right: 8px;
    font-size: 16px;
}

.pricing-table td {
    padding: 18px 15px;
    border-bottom: 1px solid #f1f3f4;
    color: #333;
    font-weight: 500;
    transition: background-color 0.2s ease;
}

.pricing-table tr:hover td {
    background-color: rgba(102, 126, 234, 0.05);
}

.pricing-table .alternate-row {
    background-color: #f8f9fa;
}

.pricing-table .alternate-row:hover {
    background-color: rgba(102, 126, 234, 0.08);
}

.pricing-table .price {
    text-align: center;
    color: #10b981;
    font-size: 16px;
    white-space: nowrap;
}

.pricing-table .price strong {
    font-weight: 700;
}

.pricing-disclaimer {
    text-align: center;
    margin-bottom: 40px;
}

.pricing-disclaimer p {
    font-size: 13px;
    color: #666;
    font-style: italic;
}

.pricing-cta {
    text-align: center;
    padding: 40px 30px;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.08), rgba(118, 75, 162, 0.08));
    border-radius: 15px;
    max-width: 600px;
    margin: 0 auto;
    border: 1px solid rgba(102, 126, 234, 0.15);
}

.pricing-cta-text {
    font-size: 1.2rem;
    margin-bottom: 25px;
    color: #333;
    font-weight: 600;
    line-height: 1.4;
}

/* Mobile Responsive for pricing section */
@media (max-width: 768px) {
    .pricing-examples {
        padding: 60px 0;
    }

    .pricing-examples h2 {
        font-size: 1.8rem;
        margin-bottom: 12px;
    }

    .pricing-subtitle {
        font-size: 1rem;
        margin-bottom: 40px;
        padding: 0 15px;
    }

    .pricing-table-wrapper {
        margin: 0 -20px 30px;
        border-radius: 0;
        box-shadow: none;
        border-left: none;
        border-right: none;
    }

    .pricing-table {
        min-width: 600px;
        font-size: 14px;
    }

    .pricing-table th {
        padding: 15px 10px;
        font-size: 13px;
    }

    .pricing-table td {
        padding: 15px 10px;
    }

    .table-icon {
        font-size: 14px;
        margin-right: 6px;
    }

    .pricing-table .price {
        font-size: 15px;
    }

    .pricing-cta {
        padding: 30px 20px;
        margin: 0 15px;
    }

    .pricing-cta-text {
        font-size: 1.1rem;
        margin-bottom: 20px;
    }
}

@media (max-width: 480px) {
    .pricing-table {
        min-width: 550px;
        font-size: 13px;
    }

    .pricing-table th {
        padding: 12px 8px;
        font-size: 12px;
    }

    .pricing-table td {
        padding: 12px 8px;
    }

    .pricing-table .price {
        font-size: 14px;
    }

    .table-icon {
        font-size: 13px;
        margin-right: 4px;
    }

    .pricing-disclaimer p {
        font-size: 12px;
    }

    .pricing-cta-text {
        font-size: 1rem;
    }
}

/* FAQ Section */
.faq {
    background: white;
    padding: 60px 0;
}

.faq h2 {
    text-align: center;
    margin-bottom: 40px;
    font-size: 2rem;
    color: #333;
    font-weight: 700;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    max-width: 1000px;
    margin: 0 auto;
}

.faq-item {
    background: white;
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
    border: 1px solid #e9ecef;
    transition: all 0.3s ease;
}

.faq-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.faq-item h3 {
    color: #333;
    margin-bottom: 10px;
    font-size: 1rem;
    font-weight: 600;
}

.faq-item p {
    color: #666;
    line-height: 1.5;
    margin: 0;
    font-size: 14px;
}

@media (max-width: 768px) {
    .faq {
        padding: 40px 0;
    }

    .faq h2 {
        font-size: 1.8rem;
        margin-bottom: 30px;
    }

    .faq-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .faq-item {
        padding: 18px 15px;
    }

    .faq-item h3 {
        font-size: 0.95rem;
    }

    .faq-item p {
        font-size: 13px;
    }
}

/* Testimonials */
.testimonials {
    background: #f8f9fa;
    padding: 60px 0;
}

.testimonials h2 {
    text-align: center;
    margin-bottom: 40px;
    font-size: 2rem;
    color: #333;
    font-weight: 700;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto 40px;
}

.testimonial.google-style {
    background: white;
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    border: 1px solid #e8eaed;
    text-align: left;
    transition: all 0.3s ease;
    position: relative;
}

.testimonial.google-style:hover {
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    transform: translateY(-2px);
}

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

.profile-info {
    display: flex;
    align-items: center;
    gap: 10px;
}

.profile-avatar {
    width: 35px;
    height: 35px;
    background: linear-gradient(135deg, #4285f4, #34a853);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 600;
    font-size: 13px;
    flex-shrink: 0;
}

.profile-details {
    display: flex;
    flex-direction: column;
}

.reviewer-name {
    font-weight: 600;
    color: #1f2937;
    font-size: 14px;
    margin-bottom: 2px;
}

.review-meta {
    font-size: 12px;
    color: #6b7280;
}

.testimonial.google-style .stars {
    color: #fbbc04;
    font-size: 13px;
    margin-top: 2px;
}

.testimonial.google-style p {
    font-style: normal;
    margin-bottom: 12px;
    color: #3c4043;
    font-size: 14px;
    line-height: 1.4;
    font-weight: 400;
}

.review-actions {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 12px;
    padding-top: 12px;
    border-top: 1px solid #f1f3f4;
    font-size: 11px;
}

.helpful {
    color: #1a73e8;
    cursor: pointer;
    transition: color 0.2s ease;
}

.helpful:hover {
    color: #1557b0;
}

.location {
    color: #5f6368;
}

.reviews-summary {
    max-width: 600px;
    margin: 30px auto 0;
    background: white;
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    border: 1px solid #e8eaed;
}

.rating-overview {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 25px;
    align-items: center;
}

.overall-rating {
    text-align: center;
}

.rating-number {
    font-size: 2.5rem;
    font-weight: 600;
    color: #1f2937;
    display: block;
    margin-bottom: 6px;
}

.stars-large {
    font-size: 16px;
    margin-bottom: 6px;
    color: #fbbc04;
}

.reviews-count {
    font-size: 12px;
    color: #6b7280;
}

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

.rating-bar {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 12px;
    color: #6b7280;
}

.rating-bar span:first-child {
    width: 55px;
    text-align: left;
}

.rating-bar span:last-child {
    width: 25px;
    text-align: right;
}

.bar {
    flex: 1;
    height: 6px;
    background: #f1f3f4;
    border-radius: 3px;
    overflow: hidden;
}

.bar .fill {
    height: 100%;
    background: #fbbc04;
    border-radius: 3px;
    transition: width 0.3s ease;
}

@media (max-width: 768px) {
    .testimonials {
        padding: 40px 0;
    }

    .testimonials h2 {
        font-size: 1.8rem;
        margin-bottom: 30px;
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .testimonial.google-style {
        padding: 18px 15px;
    }

    .testimonial.google-style p {
        font-size: 13px;
    }

    .rating-overview {
        grid-template-columns: 1fr;
        gap: 20px;
        text-align: center;
    }

    .reviews-summary {
        margin: 25px 15px 0;
        padding: 20px;
    }

    .rating-number {
        font-size: 2rem;
    }

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

/* Preuves sociales en temps réel */
.social-proof-live {
    background: linear-gradient(135deg, #10b981, #059669);
    color: white;
    padding: 20px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.social-proof-live::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 20"><circle cx="10" cy="10" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="30" cy="10" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="50" cy="10" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="70" cy="10" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="90" cy="10" r="1" fill="rgba(255,255,255,0.1)"/></svg>');
    animation: slide 20s linear infinite;
}

@keyframes slide {
    0% { transform: translateX(0); }
    100% { transform: translateX(-100px); }
}

.social-proof-content {
    position: relative;
    z-index: 2;
    font-weight: 600;
    font-size: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
}

.live-indicator {
    width: 8px;
    height: 8px;
    background: #fbbf24;
    border-radius: 50%;
    animation: pulse 2s infinite;
}

.live-counter {
    color: #fbbf24;
    font-weight: 700;
}

/* RGPD */
.rgpd {
    background: #1f2937;
    color: white;
    padding: 40px 0;
    text-align: center;
}

.rgpd p {
    font-size: 14px;
    opacity: 0.9;
    line-height: 1.6;
}

.legal-links {
    margin-top: 15px;
    font-size: 12px;
}

.legal-links a {
    color: #feca57;
    text-decoration: none;
}

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

.compliance-info {
    margin-top: 15px;
    padding-top: 15px;
    border-top: 1px solid rgba(255,255,255,0.2);
}

/* Optimisations pour les captures d'écran Facebook */
@media (max-width: 600px) {
    .hero h1 {
        font-size: 1.9rem;
        line-height: 1.3;
    }

    .trust-indicators {
        justify-content: center;
        text-align: center;
    }

    .certification-badge {
        font-size: 11px;
        padding: 3px 6px;
    }
}

/* Mobile CTA flottant moderne */
.mobile-cta {
    position: fixed;
    bottom: 20px;
    left: 15px;
    right: 15px;
    background: linear-gradient(135deg, #2563eb, #1e40af);
    padding: 0;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(37, 99, 235, 0.4);
    z-index: 1000;
    display: none;
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255,255,255,0.2);
    animation: slideUp 0.3s ease-out;
}

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

.mobile-cta button {
    width: 100%;
    background: transparent;
    color: white;
    border: none;
    padding: 18px 20px;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition: all 0.2s ease;
    -webkit-tap-highlight-color: transparent;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.mobile-cta button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.5s;
}

.mobile-cta button:active::before {
    left: 100%;
}

.mobile-cta button:active {
    transform: scale(0.98);
}

/* Touch improvements */
.mobile-touch-improve {
    -webkit-tap-highlight-color: transparent;
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    user-select: none;
}

/* Améliorer la zone de touch pour les liens de téléphone */
.phone-cta-button,
.phone-cta-large,
.hero-phone-number {
    min-height: 44px;
    min-width: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    -webkit-tap-highlight-color: transparent;
}

/* Scrolling fluide sur iOS */
.hero,
.partners,
.process,
.personal-assistance {
    -webkit-overflow-scrolling: touch;
}

/* Éviter le zoom sur les inputs sur iOS */
@media screen and (max-width: 768px) {
    input[type="text"],
    input[type="email"],
    input[type="tel"],
    select,
    textarea {
        font-size: 16px !important;
    }
}

/* Styles pour la barre de consentement aux cookies */
.cookie-consent-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
    backdrop-filter: blur(20px);
    box-shadow: 0 -4px 30px rgba(0, 0, 0, 0.1);
    border-top: 3px solid #3b82f6;
    z-index: 10000;
    transform: translateY(100%);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    font-size: 14px;
    line-height: 1.5;
    max-height: 40vh;
    overflow-y: auto;
}

.cookie-consent-bar.show {
    transform: translateY(0);
}

.cookie-consent-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 25px 30px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-items: flex-start;
}

.cookie-message {
    color: #374151;
    line-height: 1.6;
    font-size: 15px;
    flex: 1;
    margin-bottom: 10px;
}

.cookie-message strong {
    color: #1f2937;
    font-weight: 600;
}

.cookie-message a {
    color: #3b82f6;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s ease;
}

.cookie-message a:hover {
    color: #1d4ed8;
    text-decoration: underline;
}

.cookie-buttons {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    align-items: center;
    width: 100%;
    justify-content: flex-start;
}

.cookie-btn {
    padding: 12px 20px;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 600;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    min-height: 44px;
    white-space: nowrap;
    -webkit-tap-highlight-color: transparent;
    position: relative;
    overflow: hidden;
}

.cookie-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    transition: left 0.5s;
}

.cookie-btn:hover::before {
    left: 100%;
}

.cookie-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.cookie-btn:active {
    transform: translateY(0);
    transition: transform 0.1s ease;
}

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

.btn-accept:hover {
    background: linear-gradient(135deg, #059669, #047857);
    box-shadow: 0 8px 25px rgba(16, 185, 129, 0.4);
}

.btn-reject {
    background: #f1f3f4;
    color: #5f6368;
    border: 2px solid #dadce0;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.btn-reject:hover {
    background: #e8eaed;
    border-color: #bdc1c6;
    color: #3c4043;
}

.btn-customize {
    background: linear-gradient(135deg, #3b82f6, #1d4ed8);
    color: white;
    box-shadow: 0 4px 15px rgba(59, 130, 246, 0.3);
}

.btn-customize:hover {
    background: linear-gradient(135deg, #1d4ed8, #1e40af);
    box-shadow: 0 8px 25px rgba(59, 130, 246, 0.4);
}

/* Modal de personnalisation */
.cookie-modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(5px);
    z-index: 10001;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px;
    opacity: 0;
    transition: all 0.3s ease;
}

.cookie-modal.show {
    display: flex;
    opacity: 1;
}

.cookie-modal-content {
    background: white;
    border-radius: 16px;
    padding: 30px;
    max-width: 600px;
    width: 100%;
    max-height: 80vh;
    overflow-y: auto;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    border: 1px solid #e5e7eb;
    transform: scale(0.9);
    transition: transform 0.3s ease;
}

.cookie-modal.show .cookie-modal-content {
    transform: scale(1);
}

.cookie-modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 2px solid #f3f4f6;
}

.cookie-modal-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: #1f2937;
    margin: 0;
}

.cookie-modal-close {
    background: #f3f4f6;
    border: none;
    border-radius: 50%;
    width: 35px;
    height: 35px;
    cursor: pointer;
    font-size: 18px;
    color: #6b7280;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
}

.cookie-modal-close:hover {
    background: #e5e7eb;
    color: #374151;
}

.cookie-category {
    margin-bottom: 20px;
    padding: 20px;
    background: #f8fafc;
    border-radius: 12px;
    border: 1px solid #e2e8f0;
}

.cookie-category-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
}

.cookie-category-title {
    font-weight: 600;
    color: #1f2937;
    font-size: 15px;
}

.cookie-toggle {
    position: relative;
    width: 50px;
    height: 25px;
    background: #d1d5db;
    border-radius: 25px;
    cursor: pointer;
    transition: background 0.3s ease;
}

.cookie-toggle.active {
    background: #10b981;
}

.cookie-toggle.disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.cookie-toggle-slider {
    position: absolute;
    top: 2px;
    left: 2px;
    width: 21px;
    height: 21px;
    background: white;
    border-radius: 50%;
    transition: transform 0.3s ease;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.cookie-toggle.active .cookie-toggle-slider {
    transform: translateX(25px);
}

.cookie-category-description {
    color: #6b7280;
    font-size: 13px;
    line-height: 1.5;
    margin-bottom: 8px;
}

.cookie-category-examples {
    color: #9ca3af;
    font-size: 12px;
    font-style: italic;
}

.cookie-modal-actions {
    display: flex;
    gap: 12px;
    justify-content: flex-end;
    margin-top: 25px;
    padding-top: 20px;
    border-top: 1px solid #e5e7eb;
    flex-wrap: wrap;
}

/* Bouton de gestion des préférences */
.cookie-manage-btn {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: linear-gradient(135deg, #3b82f6, #1d4ed8);
    color: white;
    border: none;
    border-radius: 50px;
    padding: 12px 20px;
    cursor: pointer;
    font-size: 13px;
    font-weight: 600;
    box-shadow: 0 4px 15px rgba(59, 130, 246, 0.3);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1000;
    display: none;
    -webkit-tap-highlight-color: transparent;
}

.cookie-manage-btn:hover {
    background: linear-gradient(135deg, #1d4ed8, #1e40af);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(59, 130, 246, 0.4);
}

.cookie-manage-btn.show {
    display: block;
    animation: slideInFromBottom 0.3s ease-out;
}

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

/* Responsive design */
@media (max-width: 768px) {
    .cookie-consent-content {
        padding: 20px 15px;
        gap: 15px;
    }

    .cookie-message {
        font-size: 14px;
        margin-bottom: 5px;
    }

    .cookie-buttons {
        flex-direction: column;
        gap: 10px;
        width: 100%;
    }

    .cookie-btn {
        width: 100%;
        justify-content: center;
        padding: 14px 20px;
        font-size: 14px;
    }

    .cookie-modal {
        padding: 10px;
    }

    .cookie-modal-content {
        padding: 20px;
        max-height: 90vh;
    }

    .cookie-modal-title {
        font-size: 1.1rem;
    }

    .cookie-modal-actions {
        flex-direction: column;
    }

    .cookie-manage-btn {
        bottom: 15px;
        right: 15px;
        padding: 10px 16px;
        font-size: 12px;
    }

    .cookie-category {
        padding: 15px;
    }

    .cookie-category-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }

    .cookie-toggle {
        align-self: flex-end;
    }
}

@media (max-width: 480px) {
    .cookie-consent-content {
        padding: 15px 10px;
    }

    .cookie-message {
        font-size: 13px;
    }

    .cookie-btn {
        padding: 12px 16px;
        font-size: 13px;
        min-height: 40px;
    }

    .cookie-modal-content {
        padding: 15px;
        border-radius: 12px;
    }

    .cookie-category {
        padding: 12px;
        margin-bottom: 15px;
    }

    .cookie-category-title {
        font-size: 14px;
    }

    .cookie-manage-btn {
        bottom: 10px;
        right: 10px;
        padding: 8px 12px;
        font-size: 11px;
    }
}

/* Personal Assistance Section */
.personal-assistance {
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    padding: 80px 0;
    border-top: 1px solid #e2e8f0;
    position: relative;
    overflow: hidden;
}

.personal-assistance::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="dots" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="10" cy="10" r="1" fill="rgba(59,130,246,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23dots)"/></svg>');
    opacity: 0.3;
}

.assistance-content {
    display: grid;
    grid-template-columns: 320px 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
}

.assistance-image {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.assistant-photo-container {
    position: relative;
    display: inline-block;
}

.assistant-photo {
    width: 280px;
    height: 280px;
    border-radius: 50%;
    object-fit: cover;
    border: 6px solid white;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
    display: block;
}

.assistant-photo:hover {
    transform: scale(1.05);
    box-shadow: 0 25px 70px rgba(0, 0, 0, 0.2);
}

.availability-badge {
    position: absolute;
    bottom: 15px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #10b981, #059669);
    color: white;
    padding: 8px 16px;
    border-radius: 25px;
    font-size: 12px;
    font-weight: 700;
    box-shadow: 0 8px 25px rgba(16, 185, 129, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    border: 2px solid white;
    animation: pulse-available 3s infinite;
    z-index: 15;
    white-space: nowrap;
    min-width: fit-content;
    max-width: calc(100% - 60px);
    width: max-content;
    backdrop-filter: blur(10px);
    letter-spacing: 0.2px;
}

.status-dot {
    width: 6px;
    height: 6px;
    background: #fbbf24;
    border-radius: 50%;
    animation: blink 2s infinite;
}

@keyframes pulse-available {
    0%, 100% {
        box-shadow: 0 8px 25px rgba(16, 185, 129, 0.3);
    }
    50% {
        box-shadow: 0 12px 35px rgba(16, 185, 129, 0.5);
    }
}

@keyframes blink {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.3;
    }
}

.assistance-text {
    padding: 0;
}

.assistance-text h2 {
    font-size: 2.2rem;
    color: #1f2937;
    margin-bottom: 15px;
    font-weight: 700;
    line-height: 1.2;
}

.assistance-subtitle {
    font-size: 1.1rem;
    color: #4b5563;
    line-height: 1.6;
    margin-bottom: 35px;
}

.assistance-benefits {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 15px;
    margin-bottom: 40px;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 15px 20px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(59, 130, 246, 0.1);
    transition: all 0.3s ease;
    font-size: 15px;
    font-weight: 500;
    color: #374151;
}

.benefit-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(59, 130, 246, 0.15);
    border-color: rgba(59, 130, 246, 0.2);
}

.benefit-icon {
    font-size: 20px;
    flex-shrink: 0;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.1), rgba(99, 102, 241, 0.1));
    padding: 8px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
}

.phone-cta-section {
    background: white;
    padding: 30px;
    border-radius: 16px;
    border: 1px solid rgba(59, 130, 246, 0.15);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
    position: relative;
    overflow: hidden;
}

.phone-cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #3b82f6, #8b5cf6, #10b981);
}

.phone-cta-large {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 25px;
    background: linear-gradient(135deg, #3b82f6, #1d4ed8);
    border-radius: 12px;
    color: white;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 8px 25px rgba(59, 130, 246, 0.3);
    margin-bottom: 20px;
    position: relative;
    overflow: hidden;
}

.phone-cta-large::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.5s;
}

.phone-cta-large:hover::before {
    left: 100%;
}

.phone-cta-large:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 15px 40px rgba(59, 130, 246, 0.4);
    background: linear-gradient(135deg, #1d4ed8, #1e40af);
}

.phone-cta-large:active {
    transform: translateY(-1px) scale(1.01);
    transition: transform 0.1s ease;
}

.phone-cta-content {
    display: flex;
    align-items: center;
    gap: 15px;
}

.phone-icon-large {
    font-size: 24px;
    background: rgba(255, 255, 255, 0.2);
    padding: 12px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    animation: ring-large 3s infinite;
}

@keyframes ring-large {
    0%, 100% {
        transform: rotate(0deg);
    }
    10%, 30% {
        transform: rotate(-15deg);
    }
    20% {
        transform: rotate(15deg);
    }
}

.phone-details {
    display: flex;
    flex-direction: column;
    text-align: left;
}

.phone-number-large {
    font-size: 1.5rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 3px;
    letter-spacing: 1px;
}

.phone-subtitle {
    font-size: 13px;
    opacity: 0.95;
    font-weight: 500;
}

.phone-cta-large .cta-arrow {
    font-size: 20px;
    transition: transform 0.3s ease;
    margin-left: 10px;
}

.phone-cta-large:hover .cta-arrow {
    transform: translateX(5px);
}

.assistance-note {
    font-size: 14px;
    color: #6b7280;
    line-height: 1.5;
    margin: 0;
    text-align: center;
    font-style: italic;
}

.assistance-note strong {
    color: #374151;
    font-weight: 600;
}

/* Mobile Responsive pour la section assistance */
@media (max-width: 768px) {
    .personal-assistance {
        padding: 50px 0;
        background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    }

    .assistance-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
        padding: 0 20px;
        max-width: 600px;
        margin: 0 auto;
    }

    .assistance-image {
        order: 1;
        margin-bottom: 10px;
    }

    .assistance-text {
        order: 2;
        padding: 0;
    }

    .assistant-photo-container {
        display: inline-block;
    }

    .assistant-photo {
        width: 200px;
        height: 200px;
        border-width: 4px;
        box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
        display: block;
    }

    .availability-badge {
        bottom: 12px;
        font-size: 11px;
        padding: 6px 12px;
        border-radius: 20px;
        border-width: 2px;
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
        z-index: 15;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 4px;
        white-space: nowrap;
        min-width: fit-content;
        max-width: calc(100% - 30px);
        width: max-content;
        box-shadow: 0 6px 20px rgba(16, 185, 129, 0.5);
        backdrop-filter: blur(8px);
        letter-spacing: 0.1px;
    }

    .status-dot {
        width: 10px;
        height: 10px;
    }

    .assistance-text h2 {
        font-size: 1.8rem;
        margin-bottom: 15px;
        line-height: 1.2;
        color: #1f2937;
        font-weight: 700;
    }

    .assistance-subtitle {
        font-size: 1rem;
        margin-bottom: 30px;
        line-height: 1.6;
        padding: 0 10px;
        color: #4b5563;
    }

    .assistance-benefits {
        grid-template-columns: 1fr;
        gap: 15px;
        margin-bottom: 35px;
        padding: 0 10px;
    }

    .benefit-item {
        padding: 15px 20px;
        font-size: 14px;
        border-radius: 12px;
        text-align: left;
        background: white;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
        border: 1px solid rgba(59, 130, 246, 0.15);
        transition: all 0.3s ease;
        display: flex;
        align-items: center;
        gap: 15px;
    }

    .benefit-item:hover {
        transform: translateY(-2px);
        box-shadow: 0 8px 25px rgba(59, 130, 246, 0.2);
    }

    .benefit-icon {
        font-size: 18px;
        width: 40px;
        height: 40px;
        padding: 8px;
        background: linear-gradient(135deg, rgba(59, 130, 246, 0.1), rgba(99, 102, 241, 0.1));
        border-radius: 10px;
        display: flex;
        align-items: center;
        justify-content: center;
        flex-shrink: 0;
    }

    .phone-cta-section {
        padding: 25px 20px;
        margin: 0 10px;
        border-radius: 16px;
        background: white;
        box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
        border: 1px solid rgba(59, 130, 246, 0.2);
    }

    .phone-cta-large {
        padding: 20px 25px;
        flex-direction: row;
        gap: 15px;
        text-align: left;
        border-radius: 12px;
        min-height: 70px;
        margin-bottom: 20px;
        align-items: center;
    }

    .phone-cta-content {
        gap: 15px;
        flex: 1;
        align-items: center;
    }

    .phone-icon-large {
        width: 50px;
        height: 50px;
        font-size: 20px;
        padding: 10px;
        flex-shrink: 0;
        background: rgba(255, 255, 255, 0.25);
        border-radius: 50%;
    }

    .phone-details {
        flex: 1;
        text-align: left;
    }

    .phone-number-large {
        font-size: 1.4rem;
        letter-spacing: 0.5px;
        font-weight: 700;
        line-height: 1.2;
        margin-bottom: 4px;
    }

    .phone-subtitle {
        font-size: 12px;
        opacity: 0.95;
        font-weight: 500;
    }

    .phone-cta-large .cta-arrow {
        margin-left: 10px;
        font-size: 18px;
        flex-shrink: 0;
    }

    .assistance-note {
        font-size: 13px;
        margin-top: 15px;
        line-height: 1.5;
        color: #6b7280;
        padding: 0 5px;
    }

    .assistance-note strong {
        color: #374151;
        font-weight: 600;
    }
}

@media (max-width: 480px) {
    .personal-assistance {
        padding: 40px 0;
    }

    .assistance-content {
        padding: 0 15px;
        gap: 30px;
    }

    .assistant-photo-container {
        display: inline-block;
    }

    .assistant-photo {
        width: 180px;
        height: 180px;
        border-width: 3px;
    }

    .availability-badge {
        bottom: 10px;
        font-size: 10px;
        padding: 5px 10px;
        border-radius: 18px;
        border-width: 2px;
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
        z-index: 15;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 3px;
        white-space: nowrap;
        min-width: fit-content;
        max-width: calc(100% - 20px);
        width: max-content;
        box-shadow: 0 6px 20px rgba(16, 185, 129, 0.6);
        backdrop-filter: blur(5px);
        font-weight: 700;
        letter-spacing: 0.05px;
    }

    .status-dot {
        width: 8px;
        height: 8px;
    }

    .assistance-text h2 {
        font-size: 1.6rem;
        margin-bottom: 12px;
    }

    .assistance-subtitle {
        font-size: 0.95rem;
        margin-bottom: 25px;
        padding: 0 5px;
    }

    .assistance-benefits {
        gap: 12px;
        margin-bottom: 30px;
        padding: 0 5px;
    }

    .benefit-item {
        padding: 12px 15px;
        font-size: ```text
13px;
        gap: 12px;
    }

    .benefit-icon {
        font-size: 16px;
        width: 35px;
        height: 35px;
        padding: 6px;
    }

    .phone-cta-section {
        padding: 20px 15px;
        margin: 0 5px;
        border-radius: 12px;
    }

    .phone-cta-large {
        padding: 18px 20px;
        gap: 12px;
        min-height: 65px;
        margin-bottom: 18px;
    }

    .phone-cta-content {
        gap: 12px;
    }

    .phone-icon-large {
        width: 45px;
        height: 45px;
        font-size: 18px;
        padding: 8px;
    }

    .phone-number-large {
        font-size: 1.3rem;
        letter-spacing: 0.3px;
    }

    .phone-subtitle {
        font-size: 11px;
    }

    .phone-cta-large .cta-arrow {
        margin-left: 8px;
        font-size: 16px;
    }

    .assistance-note {
        font-size: 12px;
        margin-top: 12px;
        padding: 0;
    }
}

/* Main Content Wrapper */
.main-content-wrapper {
    background: white;
}

/* Legal Info Wrapper */
.legal-info-wrapper {
    background: #f8f9fa;
}

/* Social Proof Wrapper */
.social-proof-wrapper {
    background: white;
}

/* Section spacing adjustments */
.process {
    padding: 60px 0;
}

.pricing-examples {
    padding: 60px 0;
    background: #f8f9fa;
}

.faq {
    padding: 60px 0;
    background: white;
}

.french-law {
    padding: 60px 0;
    background: white;
}

.cancellation-reasons {
    padding: 60px 0;
    background: #f8f9fa;
}

.testimonials {
    padding: 60px 0;
}

/* Improved section headers */
.process h2,
.pricing-examples h2,
.faq h2,
.french-law h2,
.cancellation-reasons h2,
.testimonials h2 {
    text-align: center;
    margin-bottom: 40px;
    font-size: 2rem;
    color: #333;
    font-weight: 700;
}

/* Compact pricing table for better mobile display */
.pricing-table th,
.pricing-table td {
    padding: 12px 8px;
    font-size: 14px;
}

/* Improved testimonials grid */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    margin-bottom: 40px;
}

/* Compact testimonial cards */
.testimonial.google-style {
    padding: 20px;
}

.testimonial.google-style p {
    font-size: 14px;
    line-height: 1.4;
    margin-bottom: 12px;
}

/* Improved FAQ layout */
.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    max-width: 1000px;
    margin: 0 auto;
}

.faq-item {
    background: white;
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    border: 1px solid #e9ecef;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.faq-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.faq-item h3 {
    font-size: 1rem;
    margin-bottom: 10px;
    color: #333;
}

.faq-item p {
    font-size: 14px;
    line-height: 1.5;
    color: #666;
    margin: 0;
}

/* Improved law section */
.laws-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    margin-bottom: 40px;
}

.law-item {
    background: white;
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    border-left: 4px solid #667eea;
    transition: all 0.3s ease;
}

.law-item h3 {
    font-size: 1rem;
    margin-bottom: 10px;
    color: #333;
}

.law-item p {
    font-size: 14px;
    color: #666;
    line-height: 1.5;
    margin: 0;
}

/* Improved cancellation reasons */
.reasons-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-bottom: 40px;
}

.reason-item {
    background: white;
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
    text-align: center;
    transition: all 0.3s ease;
}

.reason-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.reason-item h3 {
    font-size: 1rem;
    margin-bottom: 10px;
    color: #333;
}

.reason-item p {
    font-size: 14px;
    color: #666;
    line-height: 1.5;
    margin: 0;
}

.reason-icon {
    font-size: 2rem;
    margin-bottom: 10px;
    display: block;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .main-header {
        padding: 8px 0;
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        z-index: 1001;
    }

    .container {
        padding: 0 15px;
    }

    .header-content {
        flex-wrap: wrap;
        gap: 10px;
    }

    .logo-img {
        height: 35px;
        max-width: 100px;
        filter: none;
    }

    .header-right {
        gap: 10px;
        flex-shrink: 0;
    }

    .main-nav {
        display: none;
    }

    .phone-cta-button {
        padding: 8px 12px;
        font-size: 12px;
        border-radius: 20px;
        white-space: nowrap;
    }

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

    .phone-text {
        display: none;
    }

    .cta-express {
        display: none;
    }

    .hero-phone-highlight {
        margin: 15px 0;
        padding: 15px;
        font-size: 14px;
    }

    .hero-phone-number {
        font-size: 1.2rem;
        display: block;
        margin: 5px 0;
    }

    .hero {
        margin-top: 80px;
        padding: 40px 0 60px;
        min-height: auto;
    }

    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 25px;
        min-height: auto;
    }

    .hero h1 {
        font-size: 1.8rem;
        line-height: 1.3;
        margin-bottom: 15px;
    }

    .hero-subtitle {
        font-size: 1rem;
        margin-bottom: 20px;
    }

    .hero-form-container {
        max-width: 100%;
        margin: 0 auto;
        padding: 0 10px;
        order: -1;
    }

    .multi-step-form-hero {
        padding: 20px 15px;
        border-radius: 12px;
        box-shadow: 0 10px 30px rgba(0,0,0,0.15);
        margin: 0 5px;
    }

    .form-header-hero h2 {
        font-size: 1.1rem;
        margin-bottom: 5px;
    }

    .form-header-hero p {
        font-size: 0.8rem;
        margin-bottom: 10px;
    }

    .multi-step-form-hero h3 {
        font-size: 1rem;
        margin-bottom: 15px;
        line-height: 1.4;
    }

    .multi-step-form-hero .form-grid {
        gap: 12px;
        margin-bottom: 15px;
    }

    .multi-step-form-hero .form-group input,
    .multi-step-form-hero .form-group select {
        padding: 14px 12px;
        font-size: 16px;
        border-radius: 8px;
        -webkit-appearance: none;
        appearance: none;
    }

    .multi-step-form-hero .btn-next,
    .multi-step-form-hero .btn-back,
    .multi-step-form-hero .btn-submit {
        padding: 16px 20px;
        font-size: 16px;
        border-radius: 8px;
        -webkit-tap-highlight-color: transparent;
    }

    .multi-step-form-hero .radio-option {
        padding: 12px 15px;
        font-size: 14px;
        border-radius: 8px;
        -webkit-tap-highlight-color: transparent;
    }

    .multi-step-form-hero .engagement-filter {
        padding: 12px;
        margin: 12px 0;
        border-radius: 8px;
    }

    .multi-step-form-hero .checkbox-wrapper {
        font-size: 14px;
        -webkit-tap-highlight-color: transparent;
    }

    .form-section-secondary {
        display: block;
    }

    .hero h1 {
        font-size: 2.2rem;
    }

    .trust-indicators {
        justify-content: center;
        gap: 20px;
    }

    .partners-logos {
        gap: 15px;
    }

    .partner-logo {
        padding: 12px 15px;
        height: 70px;
    }

    .partner-logo img {
        max-height: 40px;
        max-width: 100px;
    }

    .form-grid {
        grid-template-columns: 1fr;
    }

    .multi-step-form {
        margin: 0 10px;
        padding: 30px 20px;
    }

    .nav-buttons {
        flex-direction: column;
    }

    .btn-next,
    .btn-back,
    .btn-submit {
        width: 100%;
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .rating-overview {
        grid-template-columns: 1fr;
        gap: 20px;
        text-align: center;
    }

    .review-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }

    .profile-info {
        align-self: flex-start;
    }

    .testimonial.google-style .stars {
        align-self: flex-start;
    }

    .mobile-cta {
        display: block;
    }

    .form-section {
        padding-bottom: 100px;
    }

    .savings-bubble {
        position: static;
        margin-top: 20px;
    }

    /* Mobile adjustments for new layout */
    .process,
    .pricing-examples,
    .faq,
    .french-law,
    .cancellation-reasons,
    .testimonials {
        padding: 40px 0;
    }

    .process h2,
    .pricing-examples h2,
    .faq h2,
    .french-law h2,
    .cancellation-reasons h2,
    .testimonials h2 {
        font-size: 1.8rem;
        margin-bottom: 30px;
    }

    .faq-grid,
    .laws-grid,
    .reasons-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .faq-item,
    .law-item,
    .reason-item {
        padding: 18px;
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .testimonial.google-style {
        padding: 18px;
    }

    .pricing-table-wrapper {
        margin: 0 -15px;
    }

    .pricing-table {
        font-size: 13px;
    }

    .pricing-table th,
    .pricing-table td {
        padding: 10px 6px;
    }

    .law-intro,
    .pricing-subtitle {
        font-size: 0.95rem;
        padding: 0 10px;
    }
}

@media (max-width: 480px) {
    .hero {
        padding: 40px 0;
    }

    .hero h1 {
        font-size: 1.8rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .cta-primary {
        padding: 15px 25px;
        font-size: 1rem;
    }

    .driver-photo {
        width: 150px;
        height: 150px;
    }

    .driver-avatar {
        width: 80px;
        height: 80px;
        font-size: 2.5rem;
    }
}

/* Animation for form transitions */
.form-step {
    animation: fadeIn 0.5s ease-in-out;
}

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

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

/* Form validation states */
.multi-step-form-hero .form-group input.error,
.multi-step-form-hero .form-group select.error {
    border-color: #ef4444;
    background: rgba(239, 68, 68, 0.05);
}

.multi-step-form-hero .form-group.error {
    position: relative;
}

.multi-step-form-hero .form-group.error::after {
    content: '⚠️ Ce champ est requis';
    position: absolute;
    bottom: -20px;
    left: 0;
    color: #ef4444;
    font-size: 12px;
    font-weight: 500;
}

/* Progress bar enhancement */
.progress-bar {
    position: relative;
    overflow: hidden;
    background: linear-gradient(90deg, rgba(226, 232, 240, 0.8), rgba(248, 250, 252, 0.6));
    border-radius: 12px;
    height: 8px;
    box-shadow: 
        inset 0 2px 4px rgba(0, 0, 0, 0.06),
        0 1px 2px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(226, 232, 240, 0.5);
}

.progress-fill {
    background: linear-gradient(90deg, 
        #3b82f6 0%, 
        #10b981 35%, 
        #f59e0b 70%, 
        #ef4444 100%);
    height: 100%;
    border-radius: 12px;
    transition: width 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    box-shadow: 
        0 2px 8px rgba(59, 130, 246, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.4);
    overflow: hidden;
}

.progress-fill::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(90deg, 
        rgba(255, 255, 255, 0.4) 0%, 
        rgba(255, 255, 255, 0.1) 50%, 
        rgba(255, 255, 255, 0.4) 100%);
    border-radius: 12px;
}

.progress-fill::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(90deg, 
        transparent 0%, 
        rgba(255,255,255,0.6) 50%, 
        transparent 100%);
    animation: shimmerEnhanced 2.5s infinite;
    border-radius: 12px;
}

@keyframes shimmerEnhanced {
    0% {
        transform: translateX(-120%);
        opacity: 0;
    }
    50% {
        opacity: 1;
    }
    100% {
        transform: translateX(120%);
        opacity: 0;
    }
}