/* Reset et variables CSS */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #6366f1;
    --primary-dark: #4f46e5;
    --secondary-color: #f59e0b;
    --accent-color: #10b981;
    --dark-color: #1f2937;
    --light-color: #f8fafc;
    --text-dark: #374151;
    --text-light: #6b7280;
    --shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    --shadow-hover: 0 20px 40px rgba(0, 0, 0, 0.15);
    --gradient-primary: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    --gradient-secondary: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    --gradient-accent: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background: var(--light-color);
    overflow-x: hidden;
}

/* Typographie améliorée */
h1, h2, h3 {
    font-weight: 700;
    line-height: 1.2;
}

h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
}

h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    color: var(--dark-color);
    margin-bottom: 2rem;
    position: relative;
}

h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: var(--gradient-secondary);
    border-radius: 2px;
}

h3 {
    font-size: 1.5rem;
    color: var(--dark-color);
    margin-bottom: 1rem;
}

p {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 1.5rem;
}

/* Header et Hero - COMPLÈTEMENT RETRAVAILLÉ */
.hero {
    min-height: 100vh; /* Retour à 100vh car le contenu est maintenant optimisé */
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    padding-top: 90px; /* Ajusté de 80px à 90px pour la nouvelle hauteur de navigation */
}

/* Motif de fond animé */
.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 80%, rgba(120, 119, 198, 0.3) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(255, 119, 198, 0.3) 0%, transparent 50%),
        radial-gradient(circle at 40% 40%, rgba(120, 219, 255, 0.2) 0%, transparent 50%);
    animation: backgroundShift 20s ease-in-out infinite;
}

@keyframes backgroundShift {
    0%, 100% { transform: scale(1) rotate(0deg); }
    50% { transform: scale(1.1) rotate(1deg); }
}

/* Navigation flottante */
.hero-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 1rem 2rem;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
    height: 90px; /* Augmenté de 80px à 90px pour le logo plus grand */
}

.hero-nav:hover {
    background: rgba(255, 255, 255, 0.15);
}

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

.nav-logo-img {
    height: 200px; /* Augmenté de 40px à 50px */
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3)) brightness(1.1) contrast(1.2); /* Amélioré la visibilité */
    transition: all 0.3s ease; /* Animation au hover */
}

.nav-logo-img:hover {
    transform: scale(1.05); /* Légèrement agrandi au hover */
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.4)) brightness(1.2) contrast(1.3);
}

.nav-logo-text {
    color: white;
    font-weight: 700;
    font-size: 1.2rem;
}

.nav-actions {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.nav-link {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    padding: 0.5rem 1rem;
    border-radius: 25px;
}

.nav-link:hover {
    color: white;
    background: rgba(255, 255, 255, 0.1);
}

.nav-cta {
    background: var(--gradient-secondary);
    color: white;
    text-decoration: none;
    padding: 0.75rem 1.5rem;
    border-radius: 25px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.nav-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

/* Container principal du hero */
.hero-container {
    flex: 1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem; /* Réduit de 4rem à 3rem */
    align-items: center;
    padding: 1rem 2rem 3rem; /* Réduit le padding-top et bottom */
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
    min-height: calc(100vh - 90px); /* Ajusté de 80px à 90px */
}

/* Contenu textuel du hero */
.hero-content {
    max-width: 600px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    padding: 0.5rem 1.2rem; /* Réduit de 0.75rem à 0.5rem */
    border-radius: 50px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    margin-bottom: 1.5rem; /* Réduit de 2rem à 1.5rem */
    animation: slideInLeft 1s ease-out;
}

.badge-icon {
    font-size: 1.2rem;
}

.badge-text {
    color: white;
    font-weight: 600;
    font-size: 0.9rem;
}

/* Titre du hero */
.hero-title {
    font-size: clamp(2.5rem, 5vw, 4rem); /* Réduit de 4.5rem à 4rem */
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1rem; /* Réduit de 1.5rem à 1rem */
    color: white;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.title-line {
    display: block;
    animation: slideInLeft 1s ease-out;
}

.title-highlight {
    display: block;
    background: var(--gradient-secondary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: slideInLeft 1s ease-out 0.2s both;
    text-shadow: none;
}

.hero-description {
    font-size: 1.2rem; /* Réduit de 1.3rem à 1.2rem */
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem; /* Réduit de 2.5rem à 2rem */
    line-height: 1.5; /* Réduit de 1.6 à 1.5 */
    animation: slideInLeft 1s ease-out 0.4s both;
}

.hero-description strong {
    color: var(--secondary-color);
}

/* Groupe de boutons CTA */
.hero-cta-group {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem; /* Réduit de 3rem à 2rem */
    flex-wrap: wrap;
    animation: slideInLeft 1s ease-out 0.6s both;
}

.hero-cta-primary {
    background: var(--gradient-secondary);
    color: white;
    text-decoration: none;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
    position: relative;
    overflow: hidden;
}

.hero-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 ease;
}

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

.hero-cta-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4);
}

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

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

.hero-cta-secondary {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    text-decoration: none;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.hero-cta-secondary:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

/* Éléments de confiance */
.hero-trust {
    display: flex;
    gap: 1.2rem; /* Réduit de 1.5rem à 1.2rem */
    flex-wrap: wrap;
    animation: slideInLeft 1s ease-out 0.8s both;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.9rem;
}

.trust-icon {
    font-size: 1.1rem;
}

/* Section visuelle du hero */
.hero-visual {
    position: relative;
    height: 400px; /* Réduit de 500px à 400px */
    display: flex;
    align-items: center;
    justify-content: center;
    animation: slideInRight 1s ease-out 0.4s both;
}

.hero-image-container {
    position: relative;
    width: 100%;
    height: 100%;
}

.hero-image-placeholder {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    border-radius: 20px;
    padding: 1.5rem; /* Réduit de 2rem à 1.5rem */
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
    position: relative;
    z-index: 2;
}

.placeholder-content {
    text-align: center;
}

.google-review-mockup {
    background: white;
    border-radius: 15px;
    padding: 1.2rem; /* Réduit de 1.5rem à 1.2rem */
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    max-width: 280px; /* Réduit de 300px à 280px */
    margin: 0 auto;
}

.review-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.review-stars {
    color: #fbbf24;
    font-size: 1.2rem;
}

.review-rating {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--dark-color);
}

.review-text {
    color: var(--text-dark);
    font-style: italic;
    margin-bottom: 1rem;
    line-height: 1.5;
}

.review-author {
    color: var(--text-light);
    font-size: 0.9rem;
    font-weight: 500;
}

/* Éléments flottants */
.floating-elements {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
}

.floating-card {
    position: absolute;
    background: white;
    padding: 1rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    animation: float 6s ease-in-out infinite;
}

.floating-card.card-1 {
    top: 10%;
    left: -20%;
    animation-delay: 0s;
}

.floating-card.card-2 {
    top: 60%;
    right: -20%;
    animation-delay: 2s;
}

.floating-card.card-3 {
    bottom: 20%;
    left: 10%;
    animation-delay: 4s;
}

.card-icon {
    font-size: 1.5rem;
}

.card-text {
    font-weight: 600;
    color: var(--dark-color);
    font-size: 0.9rem;
}

/* Statistiques du hero */
.hero-stats {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding: 2rem 0;
    position: relative;
    z-index: 2;
}

.stats-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.stat-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    text-align: center;
    justify-content: center;
}

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

.stat-content {
    display: flex;
    flex-direction: column;
}

.stat-number {
    font-size: 2rem;
    font-weight: 800;
    color: var(--secondary-color);
    line-height: 1;
}

.stat-label {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 500;
}

/* Indicateur de scroll */
.scroll-indicator {
    text-align: center;
    padding: 2rem 0; /* Réduit de 4rem à 2rem */
    color: rgba(255, 255, 255, 0.7);
    animation: fadeInUp 1s ease-out 1s both;
}

.scroll-text {
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.scroll-arrow {
    font-size: 1.5rem;
    animation: bounce 2s infinite;
}

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

/* Animations */
@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

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

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

/* Responsive */
@media (max-width: 1024px) {
    .hero-container {
        grid-template-columns: 1fr;
        gap: 2rem; /* Réduit de 3rem à 2rem */
        text-align: center;
        padding: 1rem 2rem 2rem; /* Ajusté pour tablette */
    }
    
    .hero-visual {
        height: 350px; /* Réduit de 400px à 350px */
        order: -1;
    }
    
    .floating-card {
        display: none;
    }
    
    .hero-trust {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .hero {
        padding-top: 80px; /* Ajusté pour mobile */
        min-height: 100vh; /* Retour à 100vh */
    }
    
    .hero-nav {
        padding: 1rem;
        height: 80px; /* Hauteur réduite sur mobile */
    }
    
    .nav-logo-img {
        height: 40px; /* Taille réduite sur mobile */
    }
    
    .nav-logo-text {
        display: none;
    }
    
    .nav-actions {
        gap: 0.5rem;
    }
    
    .nav-link {
        display: none;
    }
    
    .hero-container {
        padding: 1rem 1rem 2rem; /* Ajusté pour mobile */
        min-height: calc(100vh - 80px); /* Ajusté pour mobile */
    }
    
    .scroll-indicator {
        padding: 1.5rem 0; /* Réduit sur mobile */
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-cta-group {
        flex-direction: column;
        align-items: center;
    }
    
    .hero-cta-primary,
    .hero-cta-secondary {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }
    
    .hero-trust {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }
    
    .stats-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
        padding: 0 1rem;
    }
    
    .stat-item {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .stat-number {
        font-size: 1.5rem;
    }
}

/* Sections */
.offres, .carte, .articles, .contact {
    padding: 5rem 2rem;
    text-align: center;
    position: relative;
}

.offres {
    background: white;
}

.carte {
    background: var(--light-color);
}

.articles {
    background: white;
}

.contact {
    background: var(--gradient-primary);
    color: white;
}

.contact h2 {
    color: white;
}

.contact h2::after {
    background: var(--gradient-secondary);
}

.contact p {
    color: rgba(255, 255, 255, 0.9);
}

/* Cards des offres */
.cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem 0;
}

.card {
    padding: 2.5rem;
    border-radius: 20px;
    text-align: left;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow);
}

.card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-primary);
}

.card.light {
    background: white;
    border: 1px solid #e5e7eb;
}

.card.dark {
    background: var(--dark-color);
    color: white;
    transform: scale(1.05);
}

.card.dark::before {
    background: var(--gradient-secondary);
}

.card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
}

.card.light:hover {
    border-color: var(--primary-color);
}

.card h3 {
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}

.card.dark h3 {
    color: var(--secondary-color);
}

.card ul {
    list-style: none;
    margin-bottom: 2rem;
}

.card li {
    padding: 0.5rem 0;
    position: relative;
    padding-left: 1.5rem;
}

.card li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-weight: bold;
}

.card strong {
    font-size: 1.5rem;
    color: var(--primary-color);
    display: block;
    text-align: center;
    padding: 1rem;
    background: var(--light-color);
    border-radius: 10px;
    margin-top: 1rem;
}

.card.dark strong {
    color: var(--secondary-color);
    background: rgba(255, 255, 255, 0.1);
}

/* Section carte */
.carte ul {
    list-style: none;
    max-width: 600px;
    margin: 0 auto;
    text-align: left;
}

.carte li {
    padding: 1rem;
    margin: 1rem 0;
    background: white;
    border-radius: 15px;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
    padding: 5px;
}

.carte li:hover {
    transform: translateX(10px);
    box-shadow: var(--shadow-hover);
}

/* Section articles */
.articles ul {
    list-style: none;
    max-width: 800px;
    margin: 0 auto;
    text-align: left;
}

.articles li {
    padding: 1.5rem;
    margin: 1rem 0;
    background: var(--light-color);
    border-radius: 15px;
    transition: all 0.3s ease;
}

.articles a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.articles a:hover {
    color: var(--primary-dark);
    text-decoration: underline;
}

/* Formulaire de contact */
.contact form {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    margin-top: 2rem;
    margin-left: auto;
    margin-right: auto;
}

.contact input, .contact textarea {
    width: 100%;
    padding: 1rem;
    border-radius: 10px;
    border: none;
    background: rgba(255, 255, 255, 0.1);
    color: white;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.contact input::placeholder, .contact textarea::placeholder {
    color: rgba(255, 255, 255, 0.7);
}

.contact input:focus, .contact textarea:focus {
    outline: none;
    background: rgba(255, 255, 255, 0.2);
    transform: scale(1.02);
}

.contact button {
    background: var(--gradient-secondary);
    color: white;
    padding: 1rem 2rem;
    border: none;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: var(--shadow);
}

.contact button:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-hover);
    background: linear-gradient(135deg, #f5576c 0%, #f093fb 100%);
}

/* Footer */
footer {
    background: var(--dark-color);
    color: white;
    padding: 2rem;
    text-align: center;
}

/* Footer amélioré */
.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    text-align: left;
}

.footer-section h4 {
    color: var(--secondary-color);
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.footer-section p {
    margin-bottom: 0.5rem;
    color: rgba(255, 255, 255, 0.8);
}

.footer-link {
    color: var(--secondary-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-link:hover {
    color: var(--accent-color);
}

/* Sous-titres des sections */
.section-subtitle {
    font-size: 1.2rem;
    color: var(--text-light);
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Statistiques du hero */
.hero-stats {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-top: 3rem;
    flex-wrap: wrap;
}

.stat-item {
    text-align: center;
    background: rgba(255, 255, 255, 0.1);
    padding: 1.5rem;
    border-radius: 15px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.stat-item:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.2);
}

.stat-number {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
}

/* En-têtes des cartes */
.card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
}

.card-badge {
    background: var(--gradient-accent);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
}

.card-badge.premium {
    background: var(--gradient-secondary);
}

/* Prix des cartes */
.card-price {
    text-align: center;
    margin: 2rem 0;
}

.price-note {
    display: block;
    font-size: 0.9rem;
    color: var(--text-light);
    margin-top: 0.5rem;
    font-weight: 400;
}

/* Boutons CTA des cartes */
.card-cta {
    width: 100%;
    background: var(--gradient-primary);
    color: white;
    border: none;
    padding: 1rem;
    border-radius: 10px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: var(--shadow);
}

.card-cta:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-hover);
    background: linear-gradient(135deg, #764ba2 0%, #667eea 100%);
}

/* Icônes et contenu des options */
.option-icon {
    font-size: 2rem;
    margin-right: 1rem;
}

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

.option-price {
    background: var(--gradient-accent);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.9rem;
}

/* Icônes et contenu des articles */
.article-icon {
    font-size: 2rem;
    margin-right: 1rem;
}

.article-content {
    flex: 1;
}

.article-content a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: color 0.3s ease;
    display: block;
    margin-bottom: 0.5rem;
}

.article-content a:hover {
    color: var(--primary-dark);
}

.article-content p {
    margin: 0;
    font-size: 0.9rem;
    color: var(--text-light);
}

/* Styles de base pour les formulaires (anciens) */
.form-group {
    width: 100%;
    padding: 10px  ;
    transition: all 0.3s ease;
}

/* Bouton submit pour les anciens formulaires */
.submit-btn {
    background: var(--gradient-secondary);
    color: white;
    padding: 1rem 2rem;
    border: none;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: var(--shadow);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin: 0 auto;
}

.submit-btn:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-hover);
    background: linear-gradient(135deg, #f5576c 0%, #f093fb 100%);
}

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

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

/* Responsive pour les nouvelles sections */
@media (max-width: 768px) {
    .hero-stats {
        gap: 1rem;
    }
    
    .stat-item {
        padding: 1rem;
    }
    
    .stat-number {
        font-size: 1.5rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .option-content {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .option-price {
        align-self: flex-end;
    }
}

/* Animations */
@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
}

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

/* Responsive */
@media (max-width: 768px) {
    .hero {
        padding: 1rem;
    }
    
    /* .cards et .card supprimés - remplacés par pricing table */
    
    .offres, .carte, .articles, .contact {
        padding: 3rem 1rem;
    }
    
    h1 {
        font-size: 2.5rem;
    }
    
    h2 {
        font-size: 2rem;
    }
}

/* Effets de scroll */
.option-card, .article-card, .statistics-section .stat-item, .pricing-table, .form-section {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.option-card.visible, .article-card.visible, .statistics-section .stat-item.visible, .pricing-table.visible, .form-section.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Scrollbar personnalisée */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--light-color);
}

::-webkit-scrollbar-thumb {
    background: var(--gradient-primary);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--gradient-secondary);
}

/* Statistiques du hero */
.hero-stats {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding: 2rem 0;
    position: relative;
    z-index: 2;
}

.stats-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.stat-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    text-align: center;
    justify-content: center;
}

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

.stat-content {
    display: flex;
    flex-direction: column;
}

.stat-number {
    font-size: 2rem;
    font-weight: 800;
    color: var(--secondary-color);
    line-height: 1;
}

.stat-label {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 500;
}

/* Section Statistiques - NOUVELLE SECTION */
.statistics-section {
    background: white;
    padding: 5rem 2rem;
    position: relative;
    overflow: hidden;
}

.statistics-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    z-index: 1;
}

.stats-header {
    text-align: center;
    margin-bottom: 3rem;
    position: relative;
    z-index: 2;
}

.stats-header h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    color: var(--dark-color);
    margin-bottom: 1rem;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.statistics-section .stats-container {
    position: relative;
    z-index: 2;
    background: white;
    border-radius: 20px;
    padding: 3rem 2rem;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    border: 1px solid #e2e8f0;
}

.statistics-section .stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    text-align: center;
    padding: 1.5rem;
    transition: all 0.3s ease;
    border-radius: 15px;
}

.statistics-section .stat-item:hover {
    transform: translateY(-5px);
    background: var(--light-color);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.statistics-section .stat-icon {
    font-size: 3rem;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.1));
    transition: all 0.3s ease;
}

.statistics-section .stat-item:hover .stat-icon {
    transform: scale(1.1);
}

.statistics-section .stat-content {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.statistics-section .stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
}

.statistics-section .stat-label {
    font-size: 1rem;
    color: var(--text-dark);
    font-weight: 600;
    max-width: 150px;
}

/* Section des offres avec tableau comparatif */
.offres {
    background: white;
    padding: 5rem 2rem;
    text-align: center;
    position: relative;
}

/* Container du tableau de prix */
.pricing-table-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem 0;
}

/* Tableau de prix */
.pricing-table {
    width: 100%;
    border-collapse: collapse;
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    border: 1px solid #e2e8f0;
    margin-bottom: 3rem;
}

/* En-têtes du tableau */
.pricing-table th {
    padding: 2rem 1.5rem;
    text-align: center;
    font-weight: 700;
    font-size: 1.1rem;
}

.feature-header {
    background: var(--light-color);
    color: var(--dark-color);
    text-align: left;
    padding-left: 2rem;
}

.pack-header {
    position: relative;
    color: white;
}

.pack-header.starter {
    background: var(--gradient-primary);
}

.pack-header.genius {
    background: var(--gradient-secondary);
}

.pack-title {
    font-size: 1.3rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.pack-price {
    font-size: 2rem;
    font-weight: 900;
    margin-bottom: 0.5rem;
}

.pack-note {
    font-size: 0.9rem;
    opacity: 0.9;
    font-weight: 400;
}

/* Corps du tableau */
.pricing-table td {
    padding: 1.5rem 1.5rem;
    border-bottom: 1px solid #f1f5f9;
    vertical-align: middle;
}

.feature-name {
    text-align: left;
    font-weight: 600;
    color: var(--dark-color);
    font-size: 1rem;
}

.feature-included {
    text-align: center;
    color: var(--accent-color);
    font-size: 1.5rem;
    font-weight: bold;
}

.feature-not-included {
    text-align: center;
    color: #94a3b8;
    font-size: 1.5rem;
    font-weight: bold;
}

/* Lignes alternées pour la lisibilité */
.feature-row:nth-child(even) {
    background: #f8fafc;
}

.feature-row:hover {
    background: #f1f5f9;
    transition: background 0.3s ease;
}

/* Pied de tableau avec tarifs */
.pricing-row {
    background: var(--light-color);
    font-weight: 700;
}

.pricing-label {
    text-align: left;
    color: var(--dark-color);
    font-size: 1.2rem;
}

.pricing-amount {
    text-align: center;
    font-size: 1.5rem;
    font-weight: 800;
}

.pricing-amount.starter {
    color: var(--primary-color);
}

.pricing-amount.genius {
    color: var(--secondary-color);
}

/* Boutons CTA */
.pricing-cta {
    display: flex;
    gap: 2rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 2rem;
}

.cta-starter,
.cta-genius {
    padding: 1rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.cta-starter {
    background: var(--gradient-primary);
    color: white;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.cta-starter:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
}

.cta-genius {
    background: var(--gradient-secondary);
    color: white;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.cta-genius:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
}

/* Responsive pour le tableau */
@media (max-width: 768px) {
    .pricing-table {
        font-size: 0.9rem;
    }
    
    .pricing-table th,
    .pricing-table td {
        padding: 1rem 0.75rem;
    }
    
    .pack-title {
        font-size: 1.1rem;
    }
    
    .pack-price {
        font-size: 1.5rem;
    }
    
    .feature-name {
        font-size: 0.9rem;
    }
    
    .pricing-cta {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }
    
    .cta-starter,
    .cta-genius {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .pricing-table {
        font-size: 0.8rem;
    }
    
    .pricing-table th,
    .pricing-table td {
        padding: 0.75rem 0.5rem;
    }
    
    .pack-title {
        font-size: 1rem;
    }
    
    .pack-price {
        font-size: 1.3rem;
    }
    
    .feature-name {
        font-size: 0.8rem;
    }
}

/* Section carte avec nouvelles options */
.carte {
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    padding: 5rem 2rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.carte::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 80%, rgba(99, 102, 241, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(245, 158, 11, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

/* Grille des options */
.options-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 2.5rem;
    max-width: 1400px;
    margin: 0 auto;
    padding: 2rem 0;
    position: relative;
    z-index: 2;
}

/* Cartes d'options améliorées */
.option-card {
    background: linear-gradient(145deg, #ffffff 0%, #fafbfc 100%);
    border-radius: 25px;
    padding: 2.5rem;
    box-shadow: 
        0 25px 50px rgba(0, 0, 0, 0.06),
        0 10px 20px rgba(0, 0, 0, 0.04),
        inset 0 1px 0 rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(226, 232, 240, 0.8);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
    min-height: 520px;
    display: flex;
    flex-direction: column;
}

.option-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 6px;
    background: linear-gradient(90deg, var(--gradient-primary), var(--gradient-secondary));
    transition: all 0.4s ease;
}

.option-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transition: left 0.6s ease;
}

.option-card:hover::after {
    left: 100%;
}

.option-card:hover {
    transform: translateY(-12px);
    box-shadow: 
        0 35px 70px rgba(0, 0, 0, 0.1),
        0 15px 30px rgba(0, 0, 0, 0.06),
        inset 0 1px 0 rgba(255, 255, 255, 0.95);
    border-color: rgba(99, 102, 241, 0.2);
}

.option-card:hover::before {
    background: linear-gradient(90deg, var(--gradient-secondary), var(--gradient-accent));
    height: 8px;
}

/* En-tête de l'option - titre toujours visible */
.option-header {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 2rem;
    position: relative;
}

.option-number {
    background: linear-gradient(135deg, var(--gradient-primary), var(--gradient-accent));
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 1.3rem;
    flex-shrink: 0;
    box-shadow: 
        0 8px 20px rgba(99, 102, 241, 0.25),
        inset 0 1px 0 rgba(255, 255, 255, 0.4);
    transition: all 0.3s ease;
}

.option-card:hover .option-number {
    transform: scale(1.08);
    box-shadow: 
        0 12px 30px rgba(99, 102, 241, 0.35),
        inset 0 1px 0 rgba(255, 255, 255, 0.5);
}

.option-header h3 {
    font-size: 1.4rem;
    color: var(--dark-color);
    margin: 0;
    line-height: 1.3;
    flex: 1;
    font-weight: 700;
    letter-spacing: -0.02em;
}

/* Description de l'option - toujours visible */
.option-description {
    color: var(--text-dark);
    font-size: 1.05rem;
    line-height: 1.6;
    margin-bottom: 2rem;
    font-style: italic;
    padding: 1.2rem;
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.04), rgba(245, 158, 11, 0.04));
    border-radius: 16px;
    flex-shrink: 0;
    border: none;
    position: relative;
}

.option-description::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.02), rgba(245, 158, 11, 0.02));
    border-radius: 16px;
    z-index: -1;
}

/* Liste des fonctionnalités - toujours visibles */
.option-features {
    list-style: none;
    margin: 0 0 2rem 0;
    padding: 0;
    flex-shrink: 0;
}

.option-features li {
    padding: 0.75rem 0;
    color: var(--text-dark);
    font-size: 1rem;
    position: relative;
    padding-left: 2rem;
    transition: all 0.3s ease;
    font-weight: 500;
}

.option-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: bold;
    font-size: 1.3rem;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: drop-shadow(0 1px 2px rgba(99, 102, 241, 0.2));
}

.option-features li:hover {
    transform: translateX(3px);
    color: var(--primary-color);
}

/* Prix de l'option - toujours visible */
.option-price {
    font-size: 2rem;
    font-weight: 900;
    color: var(--primary-color);
    margin-bottom: 2rem;
    text-align: center;
    padding: 1.2rem;
    border-radius: 18px;
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.08), rgba(245, 158, 11, 0.08));
    flex-shrink: 0;
    position: relative;
    overflow: hidden;
}

.option-price::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.05), rgba(245, 158, 11, 0.05));
    border-radius: 18px;
    z-index: -1;
}

.option-note {
    font-size: 0.9rem;
    color: var(--text-light);
    font-weight: 500;
    display: block;
    margin-top: 0.75rem;
    font-style: italic;
    opacity: 0.8;
}

/* Bouton CTA de l'option - toujours visible et fonctionnel */
.option-cta {
    background: linear-gradient(135deg, var(--gradient-primary), var(--gradient-secondary));
    text-decoration: none;
    padding: 1.2rem 2.5rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.05rem;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    display: inline-block;
    box-shadow: 
        0 10px 30px rgba(99, 102, 241, 0.25),
        0 5px 15px rgba(0, 0, 0, 0.08);
    width: 100%;
    text-align: center;
    position: relative;
    overflow: hidden;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    margin-top: auto;
    flex-shrink: 0;
}

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

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

.option-cta:hover {
    transform: translateY(-4px) scale(1.02);
    box-shadow: 
        0 20px 40px rgba(99, 102, 241, 0.35),
        0 10px 25px rgba(0, 0, 0, 0.12);
    background: linear-gradient(135deg, var(--gradient-secondary), var(--gradient-accent));
    color: white;
}

/* Responsive pour les options amélioré */
@media (max-width: 768px) {
    .options-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 1rem 0;
    }
    
    .option-card {
        padding: 1.5rem;
        min-height: auto;
    }
    
    .option-header h3 {
        font-size: 1.2rem;
    }
    
    .option-price {
        font-size: 1.6rem;
    }
    
    .option-cta {
        padding: 0.875rem 1.5rem;
        font-size: 0.95rem;
    }
}

@media (max-width: 480px) {
    .carte {
        padding: 3rem 1rem;
    }
    
    .option-card {
        padding: 1.25rem;
        min-height: auto;
    }
    
    .option-header {
        flex-direction: column;
        text-align: center;
        gap: 0.75rem;
    }
    
    .option-header h3 {
        font-size: 1.1rem;
    }
    
    .option-price {
        font-size: 1.4rem;
    }
    
    .option-number {
        width: 40px;
        height: 40px;
        font-size: 1.1rem;
    }
    
    .options-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

/* Section Articles avec nouvelles cartes */
.articles {
    background: white;
    padding: 5rem 2rem;
    text-align: center;
    position: relative;
}

/* Grille des articles */
.articles-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
    gap: 3rem;
    max-width: 1400px;
    margin: 0 auto;
    padding: 2rem 0;
}

/* Cartes d'articles */
.article-card {
    background: linear-gradient(145deg, #ffffff 0%, #fafbfc 100%);
    border-radius: 25px;
    padding: 2.5rem;
    box-shadow: 
        0 20px 40px rgba(0, 0, 0, 0.06),
        0 8px 16px rgba(0, 0, 0, 0.04),
        inset 0 1px 0 rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(226, 232, 240, 0.8);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
    text-align: left;
}

.article-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 6px;
    background: linear-gradient(90deg, var(--gradient-primary), var(--gradient-secondary));
    transition: all 0.4s ease;
}

.article-card:hover {
    transform: translateY(-8px);
    box-shadow: 
        0 30px 60px rgba(0, 0, 0, 0.1),
        0 15px 30px rgba(0, 0, 0, 0.06),
        inset 0 1px 0 rgba(255, 255, 255, 0.95);
    border-color: rgba(99, 102, 241, 0.2);
}

.article-card:hover::before {
    background: linear-gradient(90deg, var(--gradient-secondary), var(--gradient-accent));
    height: 8px;
}

/* En-tête de l'article */
.article-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid rgba(99, 102, 241, 0.1);
}

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

.article-header h3 {
    font-size: 1.4rem;
    color: var(--dark-color);
    margin: 0;
    line-height: 1.3;
    font-weight: 700;
    flex: 1;
}

/* Contenu de l'article */
.article-content {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.article-description {
    font-size: 1.1rem;
    color: var(--primary-color);
    font-weight: 600;
    line-height: 1.5;
    margin: 0;
    padding: 1rem;
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.05), rgba(245, 158, 11, 0.05));
    border-radius: 12px;
    border-left: 4px solid var(--primary-color);
}

.article-details {
    font-size: 1rem;
    color: var(--text-dark);
    line-height: 1.6;
    margin: 0;
    text-align: justify;
}

/* Lien de l'article */
.article-link {
    background: linear-gradient(135deg, var(--gradient-primary), var(--gradient-secondary));
    color: white;
    text-decoration: none;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    display: inline-block;
    box-shadow: 
        0 8px 25px rgba(99, 102, 241, 0.25),
        0 4px 15px rgba(0, 0, 0, 0.08);
    text-align: center;
    align-self: flex-start;
    position: relative;
    overflow: hidden;
}

.article-link::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.6s ease;
}

.article-link:hover::before {
    left: 100%;
}

.article-link:hover {
    transform: translateY(-3px);
    box-shadow: 
        0 15px 35px rgba(99, 102, 241, 0.35),
        0 8px 20px rgba(0, 0, 0, 0.12);
    background: linear-gradient(135deg, var(--gradient-secondary), var(--gradient-accent));
}

/* Responsive pour les articles */
@media (max-width: 768px) {
    .articles-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 1rem 0;
    }
    
    .article-card {
        padding: 2rem;
    }
    
    .article-header h3 {
        font-size: 1.3rem;
    }
    
    .article-description {
        font-size: 1rem;
        padding: 0.875rem;
    }
    
    .article-details {
        font-size: 0.95rem;
    }
    
    .article-link {
        padding: 0.875rem 1.5rem;
        font-size: 0.95rem;
        align-self: center;
        width: 100%;
        max-width: 300px;
    }
}

@media (max-width: 480px) {
    .articles {
        padding: 3rem 1rem;
    }
    
    .article-card {
        padding: 1.5rem;
    }
    
    .article-header {
        flex-direction: column;
        text-align: center;
        gap: 0.75rem;
    }
    
    .article-header h3 {
        font-size: 1.2rem;
    }
    
    .article-description {
        font-size: 0.95rem;
        padding: 0.75rem;
    }
    
    .article-details {
        font-size: 0.9rem;
    }
    
    .article-link {
        padding: 0.75rem 1.25rem;
        font-size: 0.9rem;
    }
}

/* ===== FORMULAIRE DE CONTACT ULTRA-MODERNE ===== */

/* Container principal du formulaire */
.contact-form {
    margin: 0 auto;
    width: 80%;
    background: linear-gradient(135deg, 
        rgba(255, 255, 255, 0.12) 0%, 
        rgba(255, 255, 255, 0.06) 100%);
    backdrop-filter: blur(30px);
    border-radius: 40px;
    padding: 5rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 
        0 35px 70px rgba(0, 0, 0, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.15);
    position: relative;
    overflow: hidden;
}

.contact-form::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, 
        transparent 0%, 
        rgba(255, 255, 255, 0.3) 50%, 
        transparent 100%);
}

/* Sections du formulaire */
.form-section {
    margin-bottom: 4rem;
    width: 100%;
    padding: 4rem;
    background: linear-gradient(135deg, 
        rgba(255, 255, 255, 0.08) 0%, 
        rgba(255, 255, 255, 0.04) 100%);
    border-radius: 30px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    position: relative;
    transition: all 0.4s ease;
}

.form-section:hover {
    background: linear-gradient(135deg, 
        rgba(255, 255, 255, 0.08) 0%, 
        rgba(255, 255, 255, 0.04) 100%);
    border-color: rgba(255, 255, 255, 0.15);
    transform: translateY(-2px);
}

.form-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, 
        var(--gradient-secondary) 0%, 
        var(--gradient-accent) 100%);
    border-radius: 25px 25px 0 0;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.form-section:hover::before {
    opacity: 1;
}

/* Titres des sections */
.form-section-title {
    color: white;
    font-size: 1.8rem;
    font-weight: 800;
    margin-bottom: 3rem;
    text-align: center;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.4);
    position: relative;
    padding-bottom: 2rem;
}

.form-section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 2px;
    background: linear-gradient(90deg, 
        var(--gradient-secondary) 0%, 
        var(--gradient-accent) 100%);
    border-radius: 1px;
}

/* Rangs de formulaire */
.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    margin-bottom: 3rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    position: relative;
}

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

/* Labels */
.form-group label {
    color: rgba(255, 255, 255, 0.95);
    font-weight: 700;
    font-size: 1.2rem;
    letter-spacing: 0.5px;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}

/* Champs de saisie */
.form-group input,
.form-group select,
.form-group textarea {
    padding: 2rem;
    border: 2px solid rgba(255, 255, 255, 0.15);
    border-radius: 20px;
    background: linear-gradient(135deg, 
        rgba(255, 255, 255, 0.1) 0%, 
        rgba(255, 255, 255, 0.05) 100%);
    color: white;
    font-size: 1.2rem;
    font-weight: 500;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(15px);
    position: relative;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(255, 255, 255, 0.5);
    font-weight: 400;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--secondary-color);
    background: linear-gradient(135deg, 
        rgba(255, 255, 255, 0.12) 0%, 
        rgba(255, 255, 255, 0.08) 100%);
    transform: translateY(-3px) scale(1.02);
    box-shadow: 
        0 15px 35px rgba(0, 0, 0, 0.3),
        0 0 0 4px rgba(99, 102, 241, 0.1);
}

/* Effet de brillance au focus */
.form-group input:focus::before,
.form-group select:focus::before,
.form-group textarea:focus::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, 
        transparent 0%, 
        rgba(255, 255, 255, 0.1) 50%, 
        transparent 100%);
    animation: shine 0.6s ease;
}

@keyframes shine {
    0% { left: -100%; }
    100% { left: 100%; }
}

/* Groupes de checkboxes */
.checkbox-group {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
    margin: 2rem;
}

.checkbox-item {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 1.5rem 2rem;
    background: linear-gradient(135deg, 
        rgba(255, 255, 255, 0.08) 0%, 
        rgba(255, 255, 255, 0.04) 100%);
    border-radius: 18px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    color: rgba(255, 255, 255, 0.9);
    position: relative;
    overflow: hidden;
}

.checkbox-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, 
        transparent 0%, 
        rgba(255, 255, 255, 0.05) 50%, 
        transparent 100%);
    transition: left 0.6s ease;
}

.checkbox-item:hover {
    background: linear-gradient(135deg, 
        rgba(255, 255, 255, 0.1) 0%, 
        rgba(255, 255, 255, 0.06) 100%);
    border-color: var(--secondary-color);
    transform: translateX(8px) translateY(-2px);
    box-shadow: 
        0 10px 25px rgba(0, 0, 0, 0.2),
        0 0 0 1px rgba(99, 102, 241, 0.2);
}

.checkbox-item:hover::before {
    left: 100%;
}

.checkbox-item input[type="checkbox"] {
    display: none;
}

/* Checkmark personnalisé */
.checkmark {
    width: 28px;
    height: 28px;
    border: 2px solid rgba(255, 255, 255, 0.25);
    border-radius: 8px;
    position: relative;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    flex-shrink: 0;
    background: rgba(255, 255, 255, 0.05);
}

.checkbox-item input[type="checkbox"]:checked + .checkmark {
    background: var(--gradient-secondary);
    border-color: transparent;
    transform: scale(1.1);
    box-shadow: 0 0 20px rgba(99, 102, 241, 0.4);
}

.checkbox-item input[type="checkbox"]:checked + .checkmark::after {
    content: '✓';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    font-weight: bold;
    font-size: 0.9rem;
    animation: checkmarkPop 0.3s ease;
}

@keyframes checkmarkPop {
    0% { transform: translate(-50%, -50%) scale(0); }
    50% { transform: translate(-50%, -50%) scale(1.2); }
    100% { transform: translate(-50%, -50%) scale(1); }
}

/* Bouton d'envoi */
.form-submit {
    text-align: center;
    margin-top: 5rem;
    position: relative;
}

.submit-btn {
    background: linear-gradient(135deg, 
        var(--gradient-secondary) 0%, 
        var(--gradient-accent) 100%);
    color: white;
    padding: 2rem 6rem;
    border: none;
    border-radius: 70px;
    font-size: 1.4rem;
    font-weight: 800;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 
        0 20px 50px rgba(0, 0, 0, 0.3),
        0 0 0 1px rgba(255, 255, 255, 0.1);
    display: inline-flex;
    align-items: center;
    gap: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    overflow: hidden;
}

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

.submit-btn:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 
        0 25px 60px rgba(0, 0, 0, 0.4),
        0 0 0 2px rgba(255, 255, 255, 0.2);
    background: linear-gradient(135deg, 
        var(--gradient-accent) 0%, 
        var(--gradient-secondary) 100%);
}

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

.btn-arrow {
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    font-size: 1.1rem;
}

.submit-btn:hover .btn-arrow {
    transform: translateX(8px) scale(1.2);
}

/* Note du formulaire */
.form-note {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1.1rem;
    margin-top: 2.5rem;
    font-style: italic;
    text-align: center;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.06);
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

/* Responsive pour le formulaire */
@media (max-width: 768px) {
    .contact-form {
        padding: 4rem;
        margin: 0 2rem;
        border-radius: 30px;
    }
    
    .form-section {
        padding: 3rem;
        margin-bottom: 3.5rem;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
    
    .checkbox-group {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .checkbox-item {
        padding: 1.25rem;
    }
    
    .submit-btn {
        padding: 1.75rem 4rem;
        font-size: 1.3rem;
        width: 100%;
        justify-content: center;
    }
    
    .form-section-title {
        font-size: 1.6rem;
    }
}

@media (max-width: 480px) {
    .contact-form {
        padding: 3rem;
        border-radius: 25px;
        margin: 0 1.5rem;
    }
    
    .form-section {
        padding: 2.5rem;
        border-radius: 25px;
        margin-bottom: 3rem;
    }
    
    .form-section-title {
        font-size: 1.5rem;
        margin-bottom: 2.5rem;
    }
    
    .form-group input,
    .form-group select,
    .form-group textarea {
        padding: 1.5rem;
        font-size: 1.1rem;
        border-radius: 16px;
    }
    
    .checkbox-item {
        font-size: 1rem;
        padding: 1.25rem;
    }
    
    .checkmark {
        width: 24px;
        height: 24px;
    }
    
    .submit-btn {
        padding: 1.5rem 3rem;
        font-size: 1.2rem;
        border-radius: 60px;
    }
}

/* ===== AMÉLIORATIONS UX/UI ===== */

/* États de chargement du bouton */
.btn-loading {
    display: none;
    align-items: center;
    gap: 0.75rem;
}

.spinner {
    width: 20px;
    height: 20px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-top: 2px solid white;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Messages d'erreur */
.error-message {
    display: none;
    color: #ef4444;
    font-size: 0.9rem;
    margin-top: 0.5rem;
    padding: 0.5rem;
    background: rgba(239, 68, 68, 0.1);
    border-radius: 8px;
    border-left: 3px solid #ef4444;
}

/* Champs en erreur */
.form-group input.error,
.form-group select.error,
.form-group textarea.error {
    border-color: #ef4444;
    background: rgba(239, 68, 68, 0.05);
}

.form-group input.error:focus,
.form-group select.error:focus,
.form-group textarea.error:focus {
    border-color: #ef4444;
    box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.1);
}

/* Notifications */
.notification {
    position: fixed;
    top: 2rem;
    right: 2rem;
    padding: 1rem 1.5rem;
    border-radius: 12px;
    color: white;
    font-weight: 600;
    z-index: 1000;
    transform: translateX(100%);
    transition: transform 0.3s ease;
    max-width: 400px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.notification.show {
    transform: translateX(0);
}

.notification-success {
    background: linear-gradient(135deg, #10b981, #059669);
}

.notification-error {
    background: linear-gradient(135deg, #ef4444, #dc2626);
}

/* Amélioration de l'accessibilité */
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--secondary-color);
    background: linear-gradient(135deg, 
        rgba(255, 255, 255, 0.12) 0%, 
        rgba(255, 255, 255, 0.08) 100%);
    transform: translateY(-3px) scale(1.02);
    box-shadow: 
        0 15px 35px rgba(0, 0, 0, 0.3),
        0 0 0 4px rgba(99, 102, 241, 0.1);
}

/* Focus visible pour l'accessibilité */
.form-group input:focus-visible,
.form-group select:focus-visible,
.form-group textarea:focus-visible {
    outline: 2px solid var(--secondary-color);
    outline-offset: 2px;
}

/* Amélioration des checkboxes pour l'accessibilité */
.checkbox-item:focus-within {
    outline: 2px solid var(--secondary-color);
    outline-offset: 2px;
    border-color: var(--secondary-color);
}

/* États désactivés */
.submit-btn:disabled {
    opacity: 0.7;
    cursor: not-allowed;
    transform: none !important;
}

.submit-btn:disabled:hover {
    transform: none !important;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

/* Amélioration des animations */
@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

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

/* Animation des éléments au scroll - Conteneur principal retiré */
.option-card,
.article-card,
.statistics-section .stat-item,
.pricing-table {
    animation: fadeInUp 0.8s ease forwards;
}

/* Amélioration des transitions */
.option-card,
.article-card {
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Hover effects améliorés */
.option-card:hover,
.article-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 
        0 25px 60px rgba(0, 0, 0, 0.2),
        0 0 0 1px rgba(255, 255, 255, 0.1);
}

/* Amélioration de la lisibilité */
.form-section-title {
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
}

.form-group label {
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.4);
}

/* Responsive amélioré */
@media (max-width: 768px) {
    .notification {
        top: 1rem;
        right: 1rem;
        left: 1rem;
        max-width: none;
        transform: translateY(-100%);
    }
    
    .notification.show {
        transform: translateY(0);
    }
    
    .error-message {
        font-size: 0.85rem;
        padding: 0.4rem;
    }
}

@media (max-width: 480px) {
    .notification {
        top: 0.5rem;
        right: 0.5rem;
        left: 0.5rem;
        padding: 0.75rem 1rem;
        font-size: 0.9rem;
    }
    
    .error-message {
        font-size: 0.8rem;
        padding: 0.3rem;
    }
}
