.services-hero {
    padding: 11rem 0 5rem;
}

.services-hero-copy {
    max-width: 700px;
}

.services-hero-copy h1 {
    font-size: clamp(2.8rem, 6vw, 5rem);
    line-height: 0.96;
    margin-bottom: 1.5rem;
    color: #111111;
}

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

.service-alt {
    background: rgba(17, 17, 17, 0.03);
}

.service-detail-card {
    background: rgba(255, 255, 255, 0.92);
    border: 1px solid rgba(17, 17, 17, 0.08);
    border-radius: 32px;
    padding: clamp(2rem, 4vw, 3.5rem);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.04);
}

.service-detail-header {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.service-icon-wrap {
    width: 52px;
    height: 52px;
    min-width: 52px;
    background: #111111;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 0.25rem;
}

.service-icon-wrap i {
    color: #ffffff;
    font-size: 1.2rem;
}

.service-detail-header h2 {
    font-size: clamp(1.8rem, 3vw, 2.5rem);
    color: #111111;
    line-height: 1.05;
    margin-top: 0.2rem;
}

.service-lead {
    font-size: 1.08rem;
    color: #4b5563;
    line-height: 1.6;
    max-width: 72ch;
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid rgba(17, 17, 17, 0.08);
}

.service-items-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem 2rem;
    margin-bottom: 2.5rem;
}

.service-item {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    font-size: 0.95rem;
    color: #27272a;
    line-height: 1.4;
}

.service-item i {
    color: #111111;
    font-size: 0.7rem;
    margin-top: 0.35rem;
    flex-shrink: 0;
}

/* Service Subsections */
.service-subsection {
    padding: 2.5rem 0;
}

.service-subsection + .service-subsection {
    border-top: 1px solid rgba(17, 17, 17, 0.07);
}

.service-subsection-header {
    display: flex;
    align-items: baseline;
    gap: 1rem;
    margin-bottom: 0.75rem;
}

.service-subsection-num {
    font-size: 0.75rem;
    font-weight: 700;
    color: rgba(17, 17, 17, 0.3);
    letter-spacing: 0.08em;
    font-family: 'Outfit', sans-serif;
    flex-shrink: 0;
}

.service-subsection-header h3 {
    font-size: clamp(1.05rem, 2vw, 1.25rem);
    color: #111111;
    line-height: 1.2;
}

.service-subsection-desc {
    font-size: 0.95rem;
    color: #52525b;
    margin-bottom: 1rem;
}

/* Operational Table */
.service-op-table {
    border: 1px solid rgba(17, 17, 17, 0.09);
    border-radius: 14px;
    overflow: hidden;
    margin-top: 0.5rem;
}

.service-op-row {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 1rem;
    padding: 0.85rem 1.25rem;
    font-size: 0.9rem;
    color: #27272a;
    border-bottom: 1px solid rgba(17, 17, 17, 0.07);
}

.service-op-row:last-child {
    border-bottom: none;
}

.service-op-row.service-op-head {
    background: rgba(17, 17, 17, 0.04);
    font-weight: 600;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: #52525b;
}

.service-op-row > span:first-child {
    font-weight: 500;
    color: #111111;
}

/* Critical Block */
.service-critical-block {
    background: rgba(17, 17, 17, 0.04);
    border: 1px solid rgba(17, 17, 17, 0.09);
    border-radius: 18px;
    padding: 1.5rem;
    margin-top: 2rem;
    margin-bottom: 2.5rem;
}

.service-critical-title {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    margin-bottom: 1.25rem;
    font-weight: 700;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: #111111;
}

.service-critical-title i {
    font-size: 0.9rem;
}

@media (max-width: 768px) {
    .services-hero {
        padding: 8rem 0 3rem;
    }

    .service-items-grid {
        grid-template-columns: 1fr;
    }

    .service-detail-card {
        border-radius: 24px;
    }

    .service-detail-header {
        align-items: center;
    }

    .service-op-row {
        grid-template-columns: 1fr;
        gap: 0.25rem;
    }

    .service-op-row.service-op-head {
        display: none;
    }

    .service-op-row > span:first-child {
        font-size: 0.82rem;
        text-transform: uppercase;
        letter-spacing: 0.04em;
        color: #52525b;
    }
}
