.service-hero {
    background: #eef3f7;
    padding: 140px 0 60px;
}

.service-hero h1 {
    font-size: 2.6rem;
    color: var(--secondary);
    margin-bottom: 10px;
}

.service-divider {
    height: 2px;
    width: 100%;
    background: #cdd6e0;
    margin: 16px 0 32px;
}

.service-body {
    display: grid;
    gap: 30px;
}

.service-img {
    width: 100%;
    height: 240px;
    object-fit: cover;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.service-text {
    max-width: 980px;
}

.service-text p {
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 14px;
}

.service-list {
    list-style: none;
    margin: 10px 0 0;
    padding: 0;
    display: grid;
    gap: 12px;
}

.service-list li {
    position: relative;
    padding-left: 26px;
    color: var(--text-light);
    line-height: 1.7;
}

.service-list li::before {
    content: '';
    width: 10px;
    height: 10px;
    background: var(--primary);
    border-radius: 50%;
    position: absolute;
    left: 0;
    top: 7px;
    box-shadow: 0 0 0 4px rgba(0, 161, 241, 0.15);
}

.service-clients {
    background: var(--bg-alt);
    padding: 60px 0 80px;
    border-top: 1px solid #e2e6ea;
}

.service-section-divider {
    height: 2px;
    width: 100%;
    background: #cdd6e0;
    margin-bottom: 40px;
}

.service-clients h2 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 40px;
    color: var(--secondary);
}

.client-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    max-width: 800px;
    margin: 0 auto;
}

.client-card {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
}

.client-pill {
    width: 220px;
    height: 100px;
    border-radius: 999px;
    border: 2px solid #cfd9e4;
    background: rgba(255, 255, 255, 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 18px rgba(0,0,0,0.06);
    transition: all 0.3s;
    padding: 20px;
}

.client-pill img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    opacity: 0.85;
}

.client-card span {
    font-weight: 600;
    color: var(--text-light);
}

.client-card:hover .client-pill {
    transform: translateY(-4px);
    box-shadow: 0 14px 28px rgba(0,0,0,0.1);
    border-color: var(--primary-light);
}

@media (max-width: 768px) {
    .service-hero {
        padding-top: 110px;
    }

    .client-grid {
        grid-template-columns: 1fr;
    }
}
