/* .svc-section {
    background: #fafafd;
    padding: 80px 20px;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
} */

.svc-section {
    position: relative;
    background-color: #fafafd;
    background-image:
        linear-gradient(to right, rgba(0, 0, 0, 0.05) 1px, transparent 1px),
        linear-gradient(to bottom, rgba(0, 0, 0, 0.05) 1px, transparent 1px);
    background-size: 40px 40px;
    padding: 80px 20px;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

/* optional: fade the grid out at the edges so it doesn't look harsh */
.svc-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at center, transparent 40%, #fafafd 90%);
    pointer-events: none;
    z-index: 0;
}

.svc-section>* {
    position: relative;
    z-index: 1;
}

.svc-container {
    max-width: 1240px;
    margin: 0 auto;
}

/* Header */
.svc-header {
    text-align: center;
    margin-bottom: 50px;
}

.svc-tag {
    display: inline-block;
    color: #7c3aed;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 14px;
}

.svc-title {
    font-size: 36px;
    font-weight: 800;
    color: #14142b;
    line-height: 1.3;
    margin: 0;
}

.svc-title-highlight {
    background: linear-gradient(90deg, #7c3aed, #4f46e5);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

/* Grid */
.svc-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-bottom: 40px;
}

.svc-card {
    position: relative;
    background: #ffffff;
    border: 1px solid #ececf3;
    border-radius: 16px;
    padding: 28px;
    transition: box-shadow 0.25s ease, transform 0.25s ease;
}

.svc-card:hover {
    box-shadow: 0 12px 30px rgba(20, 20, 43, 0.08);
    transform: translateY(-3px);
}

.svc-badge {
    position: absolute;
    top: 22px;
    right: 22px;
    background: #ede9fe;
    color: #7c3aed;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.5px;
    padding: 4px 10px;
    border-radius: 20px;
}

.svc-icon {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
}

.svc-icon svg {
    width: 24px;
    height: 24px;
}

.svc-icon--purple {
    background: #ede9fe;
    color: #7c3aed;
}

.svc-icon--orange {
    background: #fde9d7;
    color: #ea580c;
}

.svc-icon--green {
    background: #dbf3e6;
    color: #16a34a;
}

.svc-icon--blue {
    background: #dbe6fd;
    color: #2563eb;
}

.svc-icon--yellow {
    background: #fdf1cf;
    color: #ca8a04;
}

.svc-icon--pink {
    background: #fde2ea;
    color: #db2777;
}

.svc-card-title {
    font-size: 19px;
    font-weight: 700;
    color: #14142b;
    margin: 0 0 10px 0;
}

.svc-card-text {
    font-size: 14.5px;
    color: #6b7280;
    line-height: 1.6;
    margin: 0 0 18px 0;
}

.svc-link {
    font-size: 14px;
    font-weight: 600;
    color: #7c3aed;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.svc-arrow {
    transition: transform 0.2s ease;
}

.svc-link:hover .svc-arrow {
    transform: translateX(4px);
}

/* Stats bar */
.svc-stats {
    background: #ffffff;
    border: 1px solid #ececf3;
    border-radius: 16px;
    padding: 30px 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.svc-stat {
    display: flex;
    align-items: center;
    gap: 16px;
    flex: 1;
}

.svc-stat-icon {
    width: 58px;
    height: 58px;
    min-width: 58px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
}

.svc-stat-icon svg {
    width: 35px;
    height: 35px;
}

.svc-stat-icon--purple {
    background: #7c3aed;
}

.svc-stat-icon--blue {
    background: #2563eb;
}

.svc-stat-icon--green {
    background: #16a34a;
}

.svc-stat-icon--orange {
    background: #ea580c;
}

.svc-stat-number {
    font-size: 34px;
    font-weight: 800;
    color: #14142b;
    line-height: 1.2;
}

.svc-stat-label {
    font-size: 17px;
    color: #6b7280;
}

.svc-divider {
    width: 1px;
    height: 40px;
    background: #ececf3;
    margin: 0 24px;
}

/* Responsive */
@media (max-width: 900px) {
    .svc-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .svc-stats {
        flex-wrap: wrap;
        gap: 24px;
    }

    .svc-divider {
        display: none;
    }
}

@media (max-width: 600px) {
    .svc-title {
        font-size: 26px;
    }

    .svc-grid {
        grid-template-columns: 1fr;
    }

    .svc-stats {
        flex-direction: column;
        align-items: flex-start;
    }

    .svc-stat {
        width: 100%;
    }
}