/* ==========================================
   SERVICES
========================================== */
.service-card {
    position: relative;
    overflow: hidden;
    background: white;
    border: 1px solid var(--color-border);
    border-radius: 24px;
    padding: 32px;
    transition: all .35s ease;
    height: 100%;
}

.service-card:hover {
    transform: translateY(-8px);
    border-color: var(--color-primary);
    box-shadow: 0 20px 40px rgba(15, 76, 129, .08);
}

.service-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 0;
    background: var(--color-primary);
    transition: height .35s ease;
}

.service-card:hover::before {
    height: 100%;
}

.service-number {
    font-size: 3rem;
    font-weight: 800;
    line-height: 1;
    color: #e2e8f0;
}

.service-icon {
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 18px;
    background: rgba(15, 76, 129, .08);
    color: var(--color-primary);
    font-size: 1.5rem;
    transition: all .35s ease;
}

.service-card:hover .service-icon {
    transform: rotate(-8deg);
    background: var(--color-primary);
    color: white;
}