/* ============================================================
   Services page — Detail rows (alternating), process steps
   ============================================================ */

/* --- Service detail rows — alternating left/right --- */

.services-detail {
    padding: 0;
}

.service-row {
    padding: 3rem 0;
}

.service-row-surface {
    background-color: var(--color-surface);
}

.service-row-inner {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.service-row-image {
    flex-shrink: 0;
}

.service-row-image .placeholder-img {
    aspect-ratio: 16/10;
    border-radius: 12px;
}

.service-row-content h2 {
    font-size: clamp(1.25rem, 2.5vw, 1.625rem);
    margin-bottom: 0.75rem;
}

.service-row-desc {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--color-text_muted);
    margin-bottom: 1rem;
    max-width: 560px;
}

.service-row-includes {
    background: color-mix(in srgb, var(--color-primary) 5%, var(--color-background));
    border-left: 3px solid var(--color-primary);
    padding: 0.875rem 1.25rem;
    border-radius: 0 8px 8px 0;
    margin-bottom: 1rem;
}

.service-row-includes strong {
    display: block;
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    color: var(--color-primary);
    margin-bottom: 0.25rem;
}

.service-row-includes p {
    font-size: 0.9375rem;
    color: var(--color-text_muted);
    line-height: 1.6;
}

.service-row-price {
    font-family: var(--font-heading), system-ui, sans-serif;
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--color-accent);
    margin-bottom: 1.25rem;
}

@media (min-width: 768px) {
    .service-row {
        padding: 4rem 0;
    }

    .service-row-inner {
        flex-direction: row;
        align-items: center;
        gap: 3rem;
    }

    .service-row-image {
        flex: 0 0 42%;
    }

    .service-row-content {
        flex: 1;
    }

    /* Reverse layout for even rows */
    .service-row-reverse .service-row-inner {
        flex-direction: row-reverse;
    }
}

@media (min-width: 1024px) {
    .service-row {
        padding: 5rem 0;
    }

    .service-row-inner {
        gap: 4rem;
    }

    .service-row-image {
        flex: 0 0 40%;
    }
}

/* --- Process steps — numbered timeline --- */

.process-section {
    padding: 3.5rem 0 4rem;
    background-color: var(--color-surface);
}

.process-section .section-label {
    text-align: center;
}

.process-title {
    text-align: center;
    margin-bottom: 2.5rem;
}

.process-steps {
    max-width: 800px;
    margin: 0 auto;
    counter-reset: step;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.process-step {
    display: flex;
    align-items: flex-start;
    gap: 1.25rem;
}

.process-step-number {
    flex-shrink: 0;
    width: 3rem;
    height: 3rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading), system-ui, sans-serif;
    font-size: 1.375rem;
    font-weight: 700;
    color: var(--color-primary);
    border: 2px solid var(--color-primary);
    border-radius: 50%;
    background: var(--color-background);
}

.process-step-content h3 {
    font-size: 1.0625rem;
    margin-bottom: 0.25rem;
    margin-top: 0.125rem;
}

.process-step-content p {
    font-size: 0.9375rem;
    color: var(--color-text_muted);
    line-height: 1.6;
}

@media (min-width: 768px) {
    .process-section {
        padding: 4.5rem 0 5rem;
    }

    .process-steps {
        flex-direction: row;
        gap: 2rem;
        max-width: 100%;
    }

    .process-step {
        flex-direction: column;
        align-items: center;
        text-align: center;
        flex: 1;
        gap: 1rem;
    }

    .process-step-number {
        width: 3.5rem;
        height: 3.5rem;
        font-size: 1.5rem;
    }
}
