/* ============ Section: Services ============ */
.services {
    width: 100%;
    min-height: 100vh;
    background:
        radial-gradient(700px 360px at 100% 0%, rgba(26, 86, 219, 0.06), transparent 70%),
        linear-gradient(180deg, #ffffff 0%, #fbfcfe 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 60px 80px;
    position: relative;
    overflow: hidden;
}

.about-services {
    min-height: 0;
    background: transparent;
    padding: 0;
    margin: 0 auto 56px;
    max-width: 1240px;
}

.about-services::before,
.about-services::after {
    display: none;
}

.services::before {
    content: '';
    position: absolute;
    right: -140px;
    top: -140px;
    width: 420px;
    height: 420px;
    border-radius: 50%;
    border: 1px solid rgba(26, 86, 219, 0.08);
    background: transparent;
    opacity: 0.55;
}

.services::after {
    content: '';
    position: absolute;
    left: -120px;
    bottom: -120px;
    width: 380px;
    height: 380px;
    border-radius: 50%;
    border: 1px solid rgba(26, 86, 219, 0.06);
    background: transparent;
    opacity: 0.55;
    pointer-events: none;
}

.services .services-inner {
    display: flex;
    align-items: center;
    gap: 48px;
    max-width: 1240px;
    width: 100%;
    position: relative;
    z-index: 1;
}

.services .services-inner::before {
    content: 'SERVICES';
    position: absolute;
    right: -40px;
    bottom: -70px;
    font-size: 120px;
    font-weight: 800;
    letter-spacing: 8px;
    color: rgba(26, 86, 219, 0.055);
    pointer-events: none;
    z-index: 0;
}

.services .services-left {
    flex: 0 0 290px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.services .services-left .svc-desc {
    font-size: 14px;
    color: #888;
    line-height: 1.8;
}

.services .services-left .svc-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 16px;
}

.services .services-left .svc-badges span {
    font-size: 12px;
    color: var(--color1);
    border: 1px solid rgba(26, 86, 219, 0.22);
    background: rgba(26, 86, 219, 0.05);
    padding: 4px 12px;
    border-radius: 999px;
    letter-spacing: 1px;
}

.services .services-left .svc-stats {
    display: flex;
    gap: 26px;
    margin-top: 24px;
    padding-top: 22px;
    border-top: 1px solid #eef1f5;
}

.services .services-left .svc-stats .svc-stat .stat-num {
    font-size: 26px;
    font-weight: 700;
    color: var(--color1);
    line-height: 1;
}

.services .services-left .svc-stats .svc-stat .stat-num span {
    font-size: 16px;
}

.services .services-left .svc-stats .svc-stat .stat-label {
    font-size: 12px;
    color: #999;
    margin-top: 6px;
}

.services .services-left .svc-flow {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 20px;
}

.services .services-left .svc-flow .flow-item {
    display: flex;
    flex-direction: column;
    gap: 3px;
    white-space: nowrap;
}

.services .services-left .svc-flow .flow-step {
    font-size: 16px;
    font-weight: 700;
    color: var(--color1);
    line-height: 1;
}

.services .services-left .svc-flow .flow-name {
    font-size: 12px;
    color: #666;
}

.services .services-left .svc-flow .flow-arrow {
    flex: 1;
    height: 1px;
    background: linear-gradient(90deg, rgba(26, 86, 219, 0.6), rgba(26, 86, 219, 0.15));
    position: relative;
    min-width: 20px;
}

.services .services-left .svc-flow .flow-arrow::after {
    content: '';
    position: absolute;
    right: 0;
    top: -3px;
    width: 0;
    height: 0;
    border-top: 3px solid transparent;
    border-bottom: 3px solid transparent;
    border-left: 5px solid var(--color1);
}

.services .service-grid {
    flex: 1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr 1fr;
    gap: 18px;
}

.services .service-item {
    position: relative;
    background: #fff;
    border: 1px solid #e8edf5;
    border-radius: 8px;
    padding: 24px 22px;
    transition: all 0.35s ease;
    box-shadow: 0 8px 24px rgba(31, 41, 55, 0.045);
    overflow: hidden;
}

.services .service-item .svc-num {
    position: absolute;
    right: 16px;
    top: 8px;
    font-size: 44px;
    font-weight: 800;
    color: rgba(26, 86, 219, 0.06);
    line-height: 1;
    pointer-events: none;
    font-family: Arial, sans-serif;
}

.services .service-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 14px 30px rgba(26, 86, 219, 0.1);
    border-color: rgba(26, 86, 219, 0.25);
}

.services .service-item .svc-icon {
    width: 64px;
    height: 64px;
    margin-bottom: 16px;
    border-radius: 8px;
    overflow: hidden;
    border: 2px solid #fff;
    outline: 1px solid rgba(26, 86, 219, 0.15);
    box-shadow: 0 4px 14px rgba(26, 86, 219, 0.12);
}

.services .service-item .svc-icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.45s ease;
}

.services .service-item:hover .svc-icon img {
    transform: scale(1.12);
}

.services .service-item .svc-name {
    font-size: 16px;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 8px;
}

.services .service-item .svc-desc {
    font-size: 13px;
    color: #999;
    line-height: 1.65;
}

.services .service-item .svc-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 12px;
}

.services .service-item .svc-tags span {
    font-size: 11px;
    color: var(--color1);
    background: rgba(26, 86, 219, 0.08);
    padding: 3px 10px;
    border-radius: 4px;
    letter-spacing: 1px;
}

.services .service-item::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, var(--color1), transparent);
    opacity: 0;
    transition: opacity 0.35s ease;
}

.services .service-item:hover::after {
    opacity: 1;
}

.services .service-item .svc-points {
    margin-top: 12px;
    padding-top: 12px;
    border-top: 1px dashed #eef1f5;
    list-style: none;
}

.services .service-item .svc-points li {
    font-size: 12px;
    color: #999;
    line-height: 1.7;
    padding-left: 14px;
    position: relative;
}

.services .service-item .svc-points li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 8px;
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: var(--color1);
    opacity: 0.5;
}

.services .services-left .svc-more {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 26px;
    color: var(--color1);
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    text-decoration: none;
}

.services .services-left .svc-more:hover {
    gap: 14px;
}


@media (max-width: 900px) {

    .services {
        padding: 40px 20px;
    }

    .about-services {
        padding: 0;
        margin-bottom: 36px;
    }

    .about-services .services-left {
        margin-bottom: 0;
    }

    .services .services-inner {
        flex-direction: column;
        gap: 28px;
    }

    .services .service-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }
}
