/* ============================================================
   Shared Service-Detail Page Styles
   Used by: facebook-social-media, google-sheets-database,
            seo-services, landbase-agency-process
   ============================================================ */

/* ── Proof strip ──────────────────────────────────────────── */
.sp-proof-strip {
    background: var(--bg-card, #f8f7ff);
    padding: 3rem 0;
    border-top: 1px solid rgba(106, 45, 226, 0.08);
    border-bottom: 1px solid rgba(106, 45, 226, 0.08);
    margin-top: 2.5rem;
}

.sp-proof-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    text-align: center;
}

.sp-proof-card {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
}

.sp-proof-number {
    font-size: clamp(2rem, 4vw, 2.75rem);
    font-weight: 800;
    color: var(--accent, #6a2de2);
    line-height: 1;
}

.sp-proof-label {
    font-size: 0.875rem;
    color: var(--text-muted, #696283);
    font-weight: 500;
    max-width: 160px;
    margin: 0 auto;
}

/* ── Process section ──────────────────────────────────────── */
.sp-process-section {
    padding-top: 4rem;
    padding-bottom: 3rem;
}

.sp-process-title {
    font-size: clamp(1.4rem, 3vw, 1.9rem);
    font-weight: 800;
    color: var(--primary-ink, #231a57);
    margin-bottom: 0.5rem;
    text-align: center;
}

.sp-process-intro {
    color: var(--text-muted, #696283);
    text-align: center;
    margin-bottom: 2.5rem;
    font-size: 1rem;
}

.sp-process-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

.sp-step {
    background: #fff;
    border: 1px solid rgba(106, 45, 226, 0.1);
    border-radius: 12px;
    padding: 1.5rem 1.25rem;
    position: relative;
}

.sp-step-number {
    display: block;
    font-size: 0.7rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    color: var(--accent, #6a2de2);
    text-transform: uppercase;
    margin-bottom: 0.75rem;
    opacity: 0.75;
}

.sp-step h3 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--primary-ink, #231a57);
    margin-bottom: 0.5rem;
}

.sp-step p {
    font-size: 0.875rem;
    color: var(--text-muted, #696283);
    line-height: 1.6;
    margin: 0;
}

/* ── CTA banner ───────────────────────────────────────────── */
.sp-cta-banner {
    margin-top: 4rem;
    background: linear-gradient(135deg, #1a0d3d 0%, #2d1466 45%, #4f1ab8 100%);
    padding: 4rem 0;
}

.sp-cta-inner {
    text-align: center;
    max-width: 680px;
    margin: 0 auto;
}

.sp-cta-inner h2 {
    font-size: clamp(1.3rem, 3vw, 1.85rem);
    font-weight: 800;
    color: #fff;
    margin-bottom: 0.75rem;
    line-height: 1.3;
}

.sp-cta-inner p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 2rem;
    font-size: 1rem;
}

.sp-cta-inner .btn-primary {
    display: inline-block;
    background: var(--accent, #6a2de2);
    color: #fff;
    padding: 0.875rem 2.25rem;
    border-radius: 8px;
    font-weight: 700;
    font-size: 0.95rem;
    text-decoration: none;
    transition: background 0.2s, transform 0.2s;
}

.sp-cta-inner .btn-primary:hover {
    background: #5721c8;
    transform: translateY(-2px);
}

/* ── FAQ section ──────────────────────────────────────────── */
.sp-faq-section {
    padding-top: 4rem;
    padding-bottom: 4rem;
}

.sp-faq-title {
    font-size: clamp(1.4rem, 3vw, 1.9rem);
    font-weight: 800;
    color: var(--primary-ink, #231a57);
    margin-bottom: 2rem;
    text-align: center;
}

.sp-faq-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.sp-faq-card {
    background: #fff;
    border: 1px solid rgba(106, 45, 226, 0.1);
    border-radius: 12px;
    padding: 1.5rem 1.5rem 1.75rem;
}

.sp-faq-card h3 {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--primary-ink, #231a57);
    margin-bottom: 0.5rem;
}

.sp-faq-card p {
    font-size: 0.875rem;
    color: var(--text-muted, #696283);
    line-height: 1.6;
    margin: 0;
}

/* ── Responsive ───────────────────────────────────────────── */
@media (max-width: 1024px) {
    .sp-process-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .sp-proof-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 1rem;
    }

    .sp-faq-grid {
        grid-template-columns: 1fr;
    }

    .sp-process-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .sp-proof-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .sp-proof-strip {
        padding: 2rem 0;
    }

    .sp-cta-banner {
        padding: 3rem 0;
    }
}
