/* ============================================================
   Flyttfirma Template — Services page
   Alternating service blocks, horizontal process, mistakes list.
   ============================================================ */

/* ---- Service Detail Blocks ---- */

.service-detail {
    padding: 4rem 0;
}

.service-detail--light {
    background: var(--color-background);
}

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

.service-detail-layout {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.service-detail-title {
    margin-bottom: 0.75rem;
}

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

.service-detail-includes h3 {
    font-size: 0.9375rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    color: var(--color-primary);
    margin-bottom: 0.75rem;
}

.service-detail-includes ul {
    display: grid;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.service-detail-includes li {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    font-size: 0.9375rem;
    line-height: 1.5;
}

.service-detail-includes svg {
    flex-shrink: 0;
    color: var(--color-accent);
    margin-top: 3px;
}

.service-detail-image {
    max-width: 480px;
}

.service-detail-image .placeholder-img {
    aspect-ratio: 4/3;
}

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

    .service-detail-layout {
        flex-direction: row;
        align-items: center;
        gap: 3.5rem;
    }

    .service-detail--reversed .service-detail-layout {
        flex-direction: row-reverse;
    }

    .service-detail-content {
        flex: 1 1 55%;
    }

    .service-detail-image {
        flex: 0 0 40%;
        max-width: none;
    }
}

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

/* ---- Process Steps (horizontal on desktop) ---- */

.services-process {
    padding: 4.5rem 0;
    background: var(--color-surface);
}

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

.services-process-steps {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    max-width: 600px;
    margin: 0 auto;
}

.services-process-step {
    text-align: center;
}

.services-process-num {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    background: var(--color-primary);
    color: var(--color-on-dark);
    font-family: var(--font-heading), 'Sora', system-ui, sans-serif;
    font-weight: 800;
    font-size: 1.125rem;
    border-radius: 50%;
    margin-bottom: 0.75rem;
}

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

.services-process-step p {
    font-size: 0.9375rem;
    color: var(--color-text_muted);
    line-height: 1.6;
    max-width: 220px;
    margin: 0 auto;
}

.services-process-connector {
    display: flex;
    justify-content: center;
    color: var(--color-text_muted);
    transform: rotate(90deg);
}

@media (min-width: 768px) {
    .services-process {
        padding: 6rem 0;
    }

    .services-process-steps {
        flex-direction: row;
        align-items: flex-start;
        max-width: none;
        gap: 0;
    }

    .services-process-step {
        flex: 1;
    }

    .services-process-connector {
        flex: 0 0 40px;
        align-items: center;
        padding-top: 20px;
        transform: none;
    }
}

/* ---- Mistakes Section ---- */

.mistakes-section {
    padding: 4.5rem 0;
    background: var(--color-background);
}

.mistakes-inner {
    max-width: 720px;
    margin: 0 auto;
    padding: 0 1.25rem;
}

.mistakes-title {
    margin-bottom: 0.5rem;
}

.mistakes-subtitle {
    font-size: 1.0625rem;
    color: var(--color-text_muted);
    line-height: 1.6;
    margin-bottom: 2.5rem;
}

.mistakes-list {
    display: flex;
    flex-direction: column;
    gap: 1.75rem;
    counter-reset: none;
}

.mistakes-item {
    display: flex;
    gap: 1.25rem;
    align-items: flex-start;
}

.mistakes-num {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    background: color-mix(in srgb, var(--color-accent) 12%, transparent);
    color: var(--color-accent);
    font-family: var(--font-heading), 'Sora', system-ui, sans-serif;
    font-weight: 800;
    font-size: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
}

.mistakes-item-title {
    font-size: 1.0625rem;
    margin-bottom: 0.25rem;
}

.mistakes-item p {
    font-size: 0.9375rem;
    color: var(--color-text_muted);
    line-height: 1.6;
}

@media (min-width: 768px) {
    .mistakes-section {
        padding: 6rem 0;
    }

    .mistakes-inner {
        padding: 0 2rem;
    }
}
