/* homepage-genai.css – Styles complémentaires pour la homepage GenAI SEO Audit */

.gradient-bg {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    background-size: 400% 400%;
    animation: gradient-shift 15s ease infinite;
    position: relative;
    overflow: hidden;
}
@keyframes gradient-shift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.btn-primary {
    background: linear-gradient(90deg, #10b981, #14b8a6, #0891b2, #10b981);
    color: #fff;
    border: none;
    border-radius: 1rem;
    font-weight: 700;
    box-shadow: 0 4px 14px 0 rgba(16, 185, 129, 0.39);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}
.btn-primary:hover {
    transform: translateY(-2px) scale(1.04);
    box-shadow: 0 6px 20px 0 rgba(16, 185, 129, 0.5);
}

.phase-card {
    background: #fff;
    border-radius: 1.5rem;
    padding: 2rem 1.5rem;
    box-shadow: 0 4px 12px rgba(16, 185, 129, 0.07);
    border-left: 5px solid #10b981;
    transition: box-shadow 0.3s, transform 0.3s;
    min-height: 320px;
}
.phase-card:hover {
    box-shadow: 0 12px 32px rgba(16, 185, 129, 0.13);
    transform: translateY(-6px) scale(1.03);
}
.phase-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 1.7rem;
    margin-bottom: 1rem;
    box-shadow: 0 2px 8px rgba(16, 185, 129, 0.08);
}
.phase-list {
    margin: 0;
    padding-left: 1.2rem;
    list-style: disc;
    color: #059669;
    font-size: 1rem;
}

.benefit-card {
    background: #fff;
    border-radius: 1.5rem;
    padding: 2rem 1.5rem;
    box-shadow: 0 4px 12px rgba(59, 130, 246, 0.07);
    border-left: 5px solid #14b8a6;
    transition: box-shadow 0.3s, transform 0.3s;
    min-height: 220px;
}
.benefit-card:hover {
    box-shadow: 0 12px 32px rgba(59, 130, 246, 0.13);
    transform: translateY(-6px) scale(1.03);
}

.mockup-pdf {
    border: 2px solid #e5e7eb;
    min-height: 400px;
    position: relative;
}
.score-circle {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: linear-gradient(135deg, #10b981 60%, #3b82f6 100%);
    color: #fff;
    font-size: 2.2rem;
    font-weight: 800;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin-bottom: 0.5rem;
    box-shadow: 0 4px 16px rgba(16, 185, 129, 0.18);
    padding: 0.25rem;
    overflow: visible;
}
.score-value {
    line-height: 1;
    font-size: 2.2rem;
}
.score-label {
    font-size: 0.65rem;
    font-weight: 500;
    color: #e0f2fe;
    line-height: 1.1;
    text-align: center;
    margin-top: 0.125rem;
    white-space: normal;
    word-wrap: break-word;
    padding: 0 0.125rem;
}

.section-card {
    background: #fff;
    border-radius: 1.5rem;
    padding: 2rem 1.5rem;
    box-shadow: 0 4px 12px rgba(16, 185, 129, 0.07);
    border-left: 5px solid #0891b2;
    transition: box-shadow 0.3s, transform 0.3s;
    min-height: 260px;
}
.section-card:hover {
    box-shadow: 0 12px 32px rgba(8, 145, 178, 0.13);
    transform: translateY(-6px) scale(1.03);
}
.section-list {
    margin: 0;
    padding-left: 1.2rem;
    list-style: disc;
    color: #0891b2;
    font-size: 1rem;
}

.quickwin-card {
    background: #fff;
    border-radius: 1.5rem;
    padding: 2rem 1.5rem;
    box-shadow: 0 4px 12px rgba(245, 158, 11, 0.07);
    border-left: 5px solid #f59e0b;
    transition: box-shadow 0.3s, transform 0.3s;
    min-height: 200px;
}
.quickwin-card:hover {
    box-shadow: 0 12px 32px rgba(245, 158, 11, 0.13);
    transform: translateY(-6px) scale(1.03);
}
.quickwin-list {
    margin: 0;
    padding-left: 1.2rem;
    list-style: disc;
    color: #f59e0b;
    font-size: 1rem;
}

.tech-card {
    background: #fff;
    border-radius: 1.5rem;
    padding: 1.5rem 1.2rem;
    box-shadow: 0 4px 12px rgba(16, 185, 129, 0.07);
    min-width: 180px;
    min-height: 120px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

@media (max-width: 768px) {
    .phase-card, .benefit-card, .section-card, .quickwin-card, .tech-card {
        padding: 1.2rem 0.8rem;
        min-height: unset;
    }
    .mockup-pdf {
        min-height: auto;
        padding: 1rem;
    }
    .score-circle {
        width: 70px;
        height: 70px;
        padding: 0.2rem;
    }
    .score-value {
        font-size: 1.5rem;
        line-height: 1;
    }
    .score-label {
        font-size: 0.5rem;
        line-height: 1;
        margin-top: 0.1rem;
    }
}
