/* ───────── Core 30 service pages (handler/servicepage) ─────────
   Only what the shared blocks lack: breadcrumbs, hero trust strip, prose
   and spacing. Cards, the price panel, FAQs and case studies reuse
   service-cards, pricing-table, faq-accordion and portfolio. */

/* Breadcrumbs sit above the hero eyebrow */
.sp-crumbs ol {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 6px;
    margin: 0 0 20px;
    padding: 0;
    list-style: none;
    font-size: 13px;
    color: var(--text-muted);
}

.sp-crumbs li + li::before {
    content: "›";
    margin-right: 6px;
    color: var(--text-muted);
}

.sp-crumbs a {
    color: var(--text-secondary);
    text-decoration: none;
}

.sp-crumbs a:hover {
    color: var(--accent-purple);
}

.sp-crumbs [aria-current="page"] {
    color: var(--text-primary);
}

/* Hero CTAs + trust strip */
.sp-hero-actions {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
    margin-bottom: 28px;
}

.sp-trust {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px 24px;
    margin: 0;
    padding: 0;
    list-style: none;
    font-size: 14px;
    color: var(--text-secondary);
}

.sp-trust strong {
    color: var(--text-primary);
    font-weight: 600;
}

.sp-trust a {
    color: inherit;
    text-decoration: none;
}

.sp-trust a:hover {
    color: var(--text-primary);
}

.sp-stars {
    color: var(--star-gold);
    letter-spacing: 1px;
}

/* Body copy */
.sp-section {
    padding: 72px 0;
}

.sp-section .section-head {
    margin-bottom: 28px;
}

.sp-prose {
    max-width: 72ch;
    color: var(--text-secondary);
    font-size: 1.05rem;
    line-height: 1.75;
}

.sp-prose p {
    margin: 0 0 18px;
    max-width: none;
}

.sp-prose h3 {
    font-family: var(--font-heading);
    font-weight: 600;
    color: var(--text-primary);
    font-size: 1.2rem;
    margin: 28px 0 10px;
}

.sp-prose a {
    color: var(--accent-purple);
    text-decoration: underline;
    text-underline-offset: 3px;
    text-decoration-thickness: 1px;
}

.sp-prose a:hover {
    color: var(--accent-pink);
}

.sp-prose strong {
    color: var(--text-primary);
    font-weight: 500;
}

.sp-prose ul,
.sp-prose ol {
    padding-left: 1.4em;
    margin: 0 0 18px;
}

.sp-prose ul li {
    list-style: disc;
    margin-bottom: 8px;
}

.sp-prose ol li {
    list-style: decimal;
    margin-bottom: 6px;
}

.sp-prose > :last-child {
    margin-bottom: 0;
}

/* Card grids after the copy */
.sp-points,
.sp-cards {
    margin-top: 40px;
}

.sp-related .sp-cards,
.sp-related .services {
    margin-top: 0;
}

/* Price panel section: the copy column needs room for lists */
.sp-section .web-card .sp-prose {
    margin-bottom: 28px;
    font-size: 1rem;
}

.sp-section .from-price .from-unit {
    font-size: 1.2rem;
    font-weight: 500;
    -webkit-text-fill-color: var(--text-secondary);
}

/* Case studies: one or two cards, equal width */
.sp-work .work-grid {
    grid-template-columns: repeat(2, 1fr);
}

.sp-work .work-grid > :only-child {
    max-width: 640px;
}

@media (max-width: 720px) {
    .sp-section {
        padding: 56px 0;
    }

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