/* Force tous les titres à utiliser The Seasons */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-seasons) !important;
}


/* Hero Section - Style moderne */
.hero {
    background: linear-gradient(135deg, #DC2626 0%, #991B1B 50%, #7F1D1D 100%);
    color: white;
    padding: 120px 0 80px;
    position: relative;
    overflow: hidden;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="guide-pattern" width="20" height="20" patternUnits="userSpaceOnUse"><path d="M0,10 L10,0 L20,10 L10,20 Z" fill="rgba(255,255,255,0.03)"/></pattern></defs><rect width="100" height="100" fill="url(%23guide-pattern)"/></svg>');
    opacity: 0.4;
}

.hero-content {
    position: relative;
    z-index: 2;
    width: 100%;
}

.hero-content .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.2);
    padding: 8px 16px;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 25px;
    backdrop-filter: blur(10px);
    animation: fadeInUp 0.6s ease-out;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 25px;
    font-family: 'Tektur', sans-serif;
}

.title-line {
    display: block;
    animation: fadeInUp 0.8s ease-out forwards;
    opacity: 0;
}

.title-line:nth-child(1) { animation-delay: 0.2s; }
.title-line:nth-child(2) { animation-delay: 0.4s; }

.title-line.highlight {
    background: linear-gradient(135deg, #FFD700, #FFA500);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.3rem;
    line-height: 1.6;
    opacity: 0.9;
    margin-bottom: 30px;
    max-width: 500px;
    animation: fadeInUp 0.8s ease-out 0.6s forwards;
    opacity: 0;
}

/* Hero Stats */
.hero-stats {
    display: flex;
    gap: 30px;
    margin-bottom: 30px;
    animation: fadeInUp 0.8s ease-out 0.8s forwards;
    opacity: 0;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 900;
    color: #FFD700;
    font-family: 'Tektur', sans-serif;
    line-height: 1;
    margin-bottom: 5px;
}

.stat-label {
    font-size: 0.85rem;
    opacity: 0.8;
    font-weight: 500;
}

.hero-actions {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    margin-bottom: 30px;
    animation: fadeInUp 0.8s ease-out 1s forwards;
    opacity: 0;
}

.btn-large {
    padding: 18px 35px;
    font-size: 1.1rem;
    font-weight: 700;
}

/* Hero Trust Badges */
.hero-trust {
    animation: fadeInUp 0.8s ease-out 1.2s forwards;
    opacity: 0;
}

.trust-badges {
    display: flex;
    gap: 25px;
    flex-wrap: wrap;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
    font-weight: 600;
    opacity: 0.9;
}

.trust-item i {
    color: #22C55E;
    font-size: 1.1rem;
}

/* Hero Visual Card */
.hero-visual {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    animation: fadeInRight 1s ease-out 0.4s forwards;
    opacity: 0;
}

.visual-card {
    background: white;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    overflow: hidden;
    transform: perspective(1000px) rotateY(15deg) rotateX(5deg);
    transition: all 0.3s ease;
    max-width: 450px;
    width: 100%;
}

.visual-card:hover {
    transform: perspective(1000px) rotateY(10deg) rotateX(2deg);
}

.card-header {
    background: linear-gradient(135deg, #1F2937, #374151);
    padding: 20px;
    display: flex;
    align-items: center;
    gap: 12px;
    color: white;
    font-weight: 600;
}

.card-header i {
    font-size: 1.5rem;
    color: #FFD700;
}

.card-content {
    padding: 30px;
    background: white;
    color: #1F2937;
}

.feature-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 25px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 500;
}

.feature-item i {
    color: #22C55E;
    font-size: 1.2rem;
}

.card-badge {
    background: linear-gradient(135deg, #DC2626, #991B1B);
    color: white;
    padding: 12px 20px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-weight: 700;
}

.card-badge i {
    color: #FFD700;
}

.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    animation: bounce 2s infinite;
}

.scroll-arrow {
    width: 40px;
    height: 40px;
    border: 2px solid rgba(255, 255, 255, 0.5);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.7);
    font-size: 20px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.scroll-arrow:hover {
    border-color: #FFD700;
    color: #FFD700;
    transform: translateY(5px);
}

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

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

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

/* Guides Section */
.guides-section {
    padding: 100px 0;
    background: #f9fafb;
}

.guides-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
    gap: 40px;
}

.guide-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
    display: flex;
    flex-direction: column;
}

.guide-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.guide-icon {
    background: linear-gradient(135deg, #DC2626, #B91C1C);
    color: white;
    padding: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3.5rem;
}

.guide-content {
    padding: 35px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.guide-title {
    font-size: 1.6rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: #000;
}

.guide-description {
    color: #6B7280;
    line-height: 1.8;
    margin-bottom: 25px;
    flex: 1;
}

.guide-features {
    list-style: none;
    padding: 0;
    margin-bottom: 25px;
}

.guide-features li {
    padding: 10px 0;
    display: flex;
    align-items: center;
    gap: 12px;
    color: #374151;
}

.guide-features i {
    color: #DC2626;
    font-size: 0.85rem;
}

.btn-guide {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 16px 25px;
    background: linear-gradient(135deg, #DC2626, #B91C1C);
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(220, 38, 38, 0.3);
}

.btn-guide:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(220, 38, 38, 0.4);
}

/* Guide Premium */
.guide-card.premium {
    position: relative;
    background: linear-gradient(135deg, #1E293B 0%, #0F172A 100%);
    border: 2px solid #FFD700;
    box-shadow: 0 20px 60px rgba(255, 215, 0, 0.2);
}

.guide-card.premium .guide-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: linear-gradient(135deg, #FFD700, #FFA500);
    color: #000;
    padding: 8px 16px;
    border-radius: 20px;
    font-weight: 700;
    font-size: 0.85rem;
    display: flex;
    align-items: center;
    gap: 6px;
    z-index: 10;
    box-shadow: 0 5px 15px rgba(255, 215, 0, 0.4);
}

.guide-card.premium .guide-icon {
    background: linear-gradient(135deg, #FFD700, #FFA500);
    color: #000;
}

.guide-card.premium .guide-content {
    background: #1E293B;
}

.guide-card.premium .guide-title {
    color: #FFD700;
    font-size: 1.8rem;
}

.guide-card.premium .guide-description {
    color: #CBD5E1;
}

.guide-card.premium .guide-features li {
    color: #E2E8F0;
}

.guide-card.premium .guide-features i {
    color: #FFD700;
}

.guide-price {
    text-align: center;
    margin: 20px 0;
}

.guide-price .price {
    font-size: 2.5rem;
    font-weight: 900;
    color: #FFD700;
    text-shadow: 0 2px 10px rgba(255, 215, 0, 0.3);
}

.btn-premium {
    background: linear-gradient(135deg, #FFD700, #FFA500) !important;
    color: #000 !important;
    font-weight: 700;
    box-shadow: 0 10px 30px rgba(255, 215, 0, 0.4) !important;
    border: none;
    cursor: pointer;
}

.btn-premium:hover {
    transform: translateY(-3px) !important;
    box-shadow: 0 15px 40px rgba(255, 215, 0, 0.6) !important;
}

/* Newsletter Section */
.newsletter-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #000 0%, #1F2937 100%);
    color: white;
}

.newsletter-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 50px;
}

.newsletter-text {
    flex: 1;
}

.newsletter-title {
    font-size: 2.5rem;
    font-weight: 900;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.newsletter-title i {
    color: #DC2626;
}

.newsletter-description {
    font-size: 1.2rem;
    opacity: 0.9;
    line-height: 1.8;
}

.newsletter-form {
    flex: 1;
    display: flex;
    gap: 15px;
}

.newsletter-input {
    flex: 1;
    padding: 18px 25px;
    border: 2px solid rgba(255, 255, 255, 0.2);
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50px;
    color: white;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.newsletter-input::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

.newsletter-input:focus {
    outline: none;
    border-color: #DC2626;
    background: rgba(255, 255, 255, 0.15);
}

.btn-newsletter {
    padding: 18px 35px;
    background: linear-gradient(135deg, #DC2626, #B91C1C);
    color: white;
    border: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(220, 38, 38, 0.3);
}

.btn-newsletter:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(220, 38, 38, 0.4);
}

/* Resources Section */
.resources-section {
    padding: 100px 0;
    background: white;
}

.section-title {
    font-size: 3rem;
    font-weight: 900;
    text-align: center;
    margin-bottom: 60px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.resources-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-top: 50px;
}

.resource-card {
    background: #f9fafb;
    padding: 40px;
    border-radius: 20px;
    text-align: center;
    transition: all 0.3s ease;
}

.resource-card:hover {
    background: white;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transform: translateY(-5px);
}

.resource-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #DC2626, #B91C1C);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    font-size: 2rem;
    color: white;
}

.resource-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: #000;
}

.resource-card p {
    color: #6B7280;
    margin-bottom: 20px;
    line-height: 1.6;
}

.resource-link {
    color: #DC2626;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: gap 0.3s ease;
}

.resource-link:hover {
    gap: 12px;
}

/* Responsive */
@media (max-width: 768px) {
    .hero {
        padding: 80px 0 60px;
    }

    .hero-content .container {
        grid-template-columns: 1fr;
        gap: 40px;
    }

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

    .hero-subtitle {
        font-size: 1.1rem;
        max-width: 100%;
    }

    .hero-stats {
        gap: 20px;
        justify-content: space-around;
    }

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

    .stat-label {
        font-size: 0.75rem;
    }

    .hero-actions {
        flex-direction: column;
        width: 100%;
    }

    .hero-actions a {
        width: 100%;
        justify-content: center;
    }

    .trust-badges {
        justify-content: center;
    }

    .visual-card {
        transform: perspective(1000px) rotateY(0deg) rotateX(0deg);
    }

    .visual-card:hover {
        transform: perspective(1000px) rotateY(0deg) rotateX(0deg);
    }

    .hero-guides .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-guides .title-main {
        font-size: 2.5rem;
    }
    
    .guides-grid {
        grid-template-columns: 1fr;
    }
    
    .newsletter-content {
        flex-direction: column;
        text-align: center;
    }
    
    .newsletter-title {
        justify-content: center;
    }
    
    .newsletter-form {
        flex-direction: column;
        width: 100%;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .resources-grid {
        grid-template-columns: 1fr;
    }
}

