/* Styles spécifiques à la page DEFGEN */
.defgen-hero {
    background: linear-gradient(135deg, #2563eb 0%, #1e40af 100%);
    color: #fff;
    padding: 60px 0 40px 0;
    text-align: center;
}
.defgen-hero-content h1 {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
    letter-spacing: 2px;
}
.defgen-hero-desc {
    font-size: 1.3rem;
    opacity: 0.95;
    margin-bottom: 0;
}
.defgen-domains {
    background: #f8fafc;
    padding: 40px 0 20px 0;
}
.defgen-domains h2 {
    text-align: center;
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}
.defgen-domains-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
    list-style: none;
    padding: 0;
    margin: 0 auto;
    max-width: 900px;
}
.defgen-domains-list li {
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    padding: 0.7rem 1.2rem;
    font-weight: 600;
    color: #1e293b;
    font-size: 1rem;
    box-shadow: 0 2px 8px rgba(0,0,0,0.03);
}
.defgen-features {
    background: #fff;
    padding: 40px 0 20px 0;
}
.defgen-features h2 {
    text-align: center;
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 2.5rem;
}
.defgen-features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}
.feature-card {
    background: #f1f5f9;
    border-radius: 1rem;
    box-shadow: 0 2px 8px rgba(0,0,0,0.04);
    padding: 2rem 1.5rem 1.5rem 1.5rem;
    text-align: center;
    transition: box-shadow 0.2s, transform 0.2s;
}
.feature-card:hover {
    box-shadow: 0 8px 24px rgba(37,99,235,0.10);
    transform: translateY(-4px) scale(1.03);
}
.feature-icon {
    font-size: 2.2rem;
    color: #2563eb;
    background: #e0e7ff;
    border-radius: 50%;
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem auto;
}
.feature-card h3 {
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: #1e293b;
}
.feature-card p {
    color: #334155;
    font-size: 0.98rem;
    line-height: 1.5;
}
.defgen-cta {
    background: linear-gradient(90deg, #2563eb 0%, #1e40af 100%);
    color: #fff;
    padding: 40px 0;
    text-align: center;
}
.cta-content h4 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1rem;
}
.cta-content .btn {
    font-size: 1.1rem;
    padding: 0.8rem 2.2rem;
    border-radius: 8px;
}
@media (max-width: 900px) {
    .defgen-features-grid {
        grid-template-columns: 1fr 1fr;
    }
}
@media (max-width: 600px) {
    .defgen-features-grid {
        grid-template-columns: 1fr;
    }
    .defgen-hero-content h1 {
        font-size: 2rem;
    }
    .defgen-domains-list li {
        font-size: 0.95rem;
        padding: 0.5rem 0.8rem;
    }
}
