/* Pages d’intention SEO / propositions */

.seo-hero {
    padding: calc(var(--header-h, 88px) + 48px) 0 40px;
    background:
        radial-gradient(ellipse 80% 60% at 10% 0%, rgba(253, 192, 42, 0.18), transparent 55%),
        linear-gradient(180deg, #fff 0%, var(--bg, #F6F7F9) 100%);
    border-bottom: 1px solid var(--border, #E4E6EB);
}

.seo-hero h1 {
    max-width: 18ch;
    font-size: clamp(1.75rem, 4vw, 2.75rem);
    margin: 10px 0 16px;
}

.seo-lead {
    max-width: 58ch;
    color: var(--text-muted, #5A606C);
    font-size: 1.05rem;
    margin-bottom: 24px;
}

.seo-hero .btn-group {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.seo-benefits {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    gap: 12px;
}

@media (min-width: 720px) {
    .seo-benefits {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

.seo-benefits li {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    padding: 16px 18px;
    background: #fff;
    border: 1px solid var(--border, #E4E6EB);
    border-radius: 12px;
}

.seo-benefits i {
    color: var(--secondary-green, #008000);
    font-size: 1.25rem;
    flex-shrink: 0;
    margin-top: 2px;
}

.seo-steps-section {
    background: var(--bg-elevated, #fff);
}

.seo-steps {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    gap: 16px;
}

@media (min-width: 900px) {
    .seo-steps {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }
}

.seo-steps li {
    display: flex;
    flex-direction: column;
    gap: 12px;
    padding: 20px;
    border: 1px solid var(--border, #E4E6EB);
    border-radius: 12px;
    background: var(--bg, #F6F7F9);
}

.seo-step-num {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--primary, #FDC02A);
    color: #12141A;
    font-family: var(--font-display, Syne, sans-serif);
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.seo-steps h3 {
    font-size: 1.05rem;
    margin: 0 0 6px;
}

.seo-steps p {
    margin: 0;
    color: var(--text-muted, #5A606C);
    font-size: 0.95rem;
}

.seo-faq {
    display: grid;
    gap: 10px;
    max-width: 820px;
}

.seo-faq details {
    border: 1px solid var(--border, #E4E6EB);
    border-radius: 12px;
    background: #fff;
    padding: 4px 16px;
}

.seo-faq summary {
    cursor: pointer;
    font-family: var(--font-display, Syne, sans-serif);
    font-weight: 700;
    padding: 14px 0;
    list-style: none;
}

.seo-faq summary::-webkit-details-marker {
    display: none;
}

.seo-faq details[open] summary {
    color: #12141A;
}

.seo-faq p {
    margin: 0 0 16px;
    color: var(--text-muted, #5A606C);
    line-height: 1.6;
}

.seo-cta-band {
    position: relative;
    overflow: hidden;
    background-color: #12141A;
    background-image: url("../images/background.webp");
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    color: #fff;
    text-align: center;
}

.seo-cta-band::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(18, 20, 26, 0.72);
    z-index: 0;
}

.seo-cta-band .container {
    position: relative;
    z-index: 1;
}

.seo-cta-band h2 {
    color: #fff;
    margin-bottom: 10px;
}

.seo-cta-band p {
    color: rgba(255, 255, 255, 0.78);
    max-width: 48ch;
    margin: 0 auto 22px;
}

.seo-hub-grid {
    display: grid;
    gap: 16px;
}

@media (min-width: 720px) {
    .seo-hub-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (min-width: 1100px) {
    .seo-hub-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

.seo-hub-card {
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding: 22px;
    background: #fff;
    border: 1px solid var(--border, #E4E6EB);
    border-radius: 14px;
    transition: border-color 0.2s, box-shadow 0.2s;
}

.seo-hub-card:hover {
    border-color: var(--primary, #FDC02A);
    box-shadow: 0 10px 28px rgba(18, 20, 26, 0.06);
}

.seo-hub-card i {
    font-size: 1.6rem;
    color: var(--primary-hover, #e0a820);
}

.seo-hub-card h2 {
    font-size: 1.15rem;
    margin: 0;
}

.seo-hub-card p {
    margin: 0;
    color: var(--text-muted, #5A606C);
    font-size: 0.95rem;
    flex: 1;
}

.seo-hub-card span {
    font-weight: 600;
    font-size: 0.9rem;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}
