/* ============================================================
   Services / Platform & Process Page
============================================================ */

.services-what {
    padding: 5.5rem 1.5rem;
    background: var(--bg-surface);
    border-bottom: 1px solid var(--divider);
}

.services-inner {
    max-width: 1100px;
    margin: 0 auto;
}

.services-intro {
    max-width: 640px;
    margin-bottom: 3.5rem;
}

.services-heading {
    font-size: clamp(1.6rem, 2.8vw, 2.2rem);
    font-weight: 700;
    letter-spacing: -0.025em;
    line-height: 1.2;
    color: var(--text-color);
    margin-bottom: 0.75rem;
}

.services-sub {
    font-size: 0.925rem;
    color: var(--text-muted);
    line-height: 1.75;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
    border: 1px solid var(--divider);
    border-radius: var(--radius-md);
    overflow: hidden;
    background: var(--bg-surface);
    box-shadow: var(--shadow-sm);
}

.service-item {
    padding: 2rem;
    border-right: 1px solid var(--divider);
    border-bottom: 1px solid var(--divider);
    transition: background var(--ease);
}

.service-item:hover {
    background: var(--bg-page);
}

.service-item:nth-child(3n) {
    border-right: none;
}

.service-item:nth-child(4),
.service-item:nth-child(5),
.service-item:nth-child(6) {
    border-bottom: none;
}

.service-icon {
    margin-bottom: 1rem;
}

.service-icon svg {
    width: 22px;
    height: 22px;
    stroke: var(--magenta);
    stroke-width: 1.5;
    fill: none;
}

.service-item h3 {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text-color);
    margin-bottom: 0.4rem;
}

.service-item p {
    font-size: 0.875rem;
    color: var(--text-muted);
    line-height: 1.6;
}

.services-process {
    padding: 5.5rem 1.5rem;
    background: var(--bg-page);
    border-bottom: 1px solid var(--divider);
}

.process-steps {
    display: flex;
    flex-direction: column;
    gap: 0;
    border: 1px solid var(--divider);
    border-radius: var(--radius-md);
    overflow: hidden;
    background: var(--bg-surface);
    box-shadow: var(--shadow-sm);
}

.process-step {
    display: flex;
    align-items: flex-start;
    gap: 0;
    border-bottom: 1px solid var(--divider);
    transition: background var(--ease);
}

.process-step:last-child {
    border-bottom: none;
}

.process-step:hover {
    background: var(--bg-page);
}

.step-left {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem 1.75rem;
    flex-shrink: 0;
    width: 140px;
    border-right: 1px solid var(--divider);
}

.step-num {
    font-size: 0.72rem;
    font-weight: 700;
    color: var(--magenta);
    letter-spacing: 0.5px;
}

.step-icon svg {
    width: 18px;
    height: 18px;
    stroke: var(--text-faint);
    stroke-width: 1.5;
    fill: none;
}

.step-body {
    padding: 1.5rem 1.75rem;
}

.step-body h3 {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text-color);
    margin-bottom: 0.35rem;
}

.step-body p {
    font-size: 0.875rem;
    color: var(--text-muted);
    line-height: 1.7;
}

.services-cta {
    padding: 6rem 1.5rem;
    text-align: center;
    background: linear-gradient(180deg, var(--bg-page) 0%, rgba(181, 19, 91, 0.04) 100%);
    border-top: 1px solid var(--divider);
}

.services-cta-inner {
    max-width: 560px;
    margin: 0 auto;
}

.services-cta h2 {
    font-size: clamp(1.6rem, 3vw, 2.2rem);
    font-weight: 700;
    letter-spacing: -0.025em;
    color: var(--text-color);
    margin-bottom: 0.75rem;
}

.services-cta p {
    font-size: 0.95rem;
    color: var(--text-muted);
    margin-bottom: 2rem;
    line-height: 1.6;
}

@media (max-width: 900px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .service-item:nth-child(3n) {
        border-right: 1px solid var(--divider);
    }

    .service-item:nth-child(2n) {
        border-right: none;
    }

    .service-item:nth-child(4),
    .service-item:nth-child(5),
    .service-item:nth-child(6) {
        border-bottom: 1px solid var(--divider);
    }

    .service-item:nth-child(5),
    .service-item:nth-child(6) {
        border-bottom: none;
    }

    .step-left {
        width: 110px;
        padding: 1.25rem;
    }
}

@media (max-width: 600px) {
    .services-grid {
        grid-template-columns: 1fr;
    }

    .service-item {
        border-right: none !important;
        border-bottom: 1px solid var(--divider) !important;
    }

    .service-item:last-child {
        border-bottom: none !important;
    }

    .step-left {
        width: 90px;
        padding: 1rem;
        flex-direction: column;
        align-items: flex-start;
        gap: 0.25rem;
    }

    .step-body {
        padding: 1rem 1.25rem;
    }
}