:root {
    --primary: #FF553E;
    --primary-dark: #e64838;
    --primary-light: #ff8066;
    --text-primary: #1a1a1a;
    --text-secondary: #666666;
    --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.05), 0 1px 3px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.08), 0 2px 4px -2px rgba(0, 0, 0, 0.05);
    --shadow-lg: 0 10px 15px -3px rgba(255, 85, 62, 0.1), 0 4px 6px -4px rgba(255, 85, 62, 0.05), 0 25px 50px -12px rgba(255, 85, 62, 0.15);
}

.hero {
    background: #ffffff;
    padding: 80px 0 40px;
    position: relative;
    overflow: hidden;
}

.hero .container {
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 2rem;
    position: relative;
    z-index: 2;
}

.hero-content {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.hero-header {
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
    padding-top: 2rem;
}

.hero-title {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    line-height: 1.1;
    font-weight: 900;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, var(--text-primary) 0%, #334155 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    letter-spacing: -0.02em;
}

.hero-description {
    font-size: clamp(1rem, 1.5vw, 1.125rem);
    color: var(--text-secondary);
    line-height: 1.5;
    margin: 0;
}

.preview-section {
    width: 90vw;
    margin-left: calc((90vw - 100%) / -2);
    margin-right: calc((90vw - 100%) / -2);
}

.bar-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.75rem 1rem;
    background: #f8fafc;
    border-bottom: 1px solid #e2e8f0;
}

.browser-dots {
    display: flex;
    gap: 0.5rem;
}

.browser-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
}

.dot-red { background: #ef4444; }
.dot-yellow { background: #f59e0b; }
.dot-green { background: #10b981; }

.browser-address {
    flex-grow: 1;
    padding: 0.5rem 0.75rem;
    background: white;
    border-radius: 6px;
    font-size: 0.875rem;
    color: #64748b;
    border: 1px solid #e2e8f0;
    max-width: 300px;
    margin-left: 0.5rem;
}

.bar-content {
    padding: 1rem;
    height: 140px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f8fafc;
    width: 100%;
}

.preview-image {
    width: 100%;
    height: 100%;
    object-fit: fill; /* Changé de 'cover' à 'fill' */
}

.features-list {
    display: flex;
    justify-content: center;
    gap: 4rem;
    margin-top: 2rem;
}

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

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

.cta-section {
    text-align: center;
    margin-top: 2rem;
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2.5rem;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: white;
    border-radius: 2rem;
    font-weight: 600;
    font-size: 1.125rem;
    text-decoration: none;
    transition: all 0.3s ease;
    border: none;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(249, 115, 22, 0.2);
    color: white;
}

.testimonial-card {
    background: white;
    padding: 1.25rem 1.5rem;
    border-radius: 12px;
    border: 1px solid #e2e8f0;
    max-width: 500px;
    margin: 2rem auto 0;
}

.testimonial-rating {
    color: var(--primary);
    margin-bottom: 0.75rem;
    display: flex;
    gap: 0.25rem;
    justify-content: center;
}

.testimonial-text {
    font-size: 0.9375rem;
    color: var(--text-primary);
    margin: 0 0 1rem 0;
    line-height: 1.5;
    font-style: italic;
    text-align: center;
}

.testimonial-author {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
}

.author-avatar {
    width: 32px;
    height: 32px;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 0.75rem;
    font-weight: 500;
}

.author-name {
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--text-primary);
}

@media (max-width: 1200px) {
    .preview-section {
        width: 90%;
    }
}

@media (max-width: 768px) {
    .hero {
        padding: 60px 0 30px;
    }

    .hero .container {
        padding: 0 1.5rem;
    }

    .preview-section {
        width: 100%;
    }

    .browser-address {
        display: none;
    }

    .bar-content {
        height: 100px;
    }

    .features-list {
        flex-direction: column;
        gap: 1rem;
        align-items: flex-start;
        padding: 0 1rem;
    }

    .btn-primary {
        width: 100%;
        justify-content: center;
    }
}

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

    .hero-title {
        font-size: 2rem;
    }

    .bar-content {
        height: 80px;
    }
}