/* Service Card Styles */
.service-card {
    background-color: var(--slate-100);
    border-radius: 0.5rem;
    padding: 2rem;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1),
        0 2px 4px -1px rgba(0, 0, 0, 0.06);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1),
        0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

.service-title {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
}

.service-description {
    color: var(--slate-700);
    margin-bottom: 1.25rem;
    flex-grow: 1;
}

.service-features {
    list-style-type: none;
    margin-bottom: 1.5rem;
}

.service-features li {
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: 0.5rem;
    font-size: 0.875rem;
    color: var(--slate-600);
}

.service-features li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.5rem;
    width: 0.5rem;
    height: 0.5rem;
    border-radius: 50%;
    background-color: var(--blue-500);
}

.service-btn {
    margin-top: auto;
    align-self: flex-start;
}

/* Process Step Styles */
.process-step {
    text-align: center;
    padding: 1.5rem;
    position: relative;
}

.process-number {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 3rem;
    height: 3rem;
    margin: 0 auto 1rem;
    border-radius: 50%;
    background-color: var(--blue-500);
    color: var(--white);
    font-weight: 700;
    font-size: 1.25rem;
}

.process-title {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.process-description {
    font-size: 0.875rem;
    color: var(--slate-600);
}

@media (min-width: 768px) {
    .process-step::after {
        content: "";
        position: absolute;
        top: 3rem;
        right: -1rem;
        width: 2rem;
        height: 0.125rem;
        background-color: var(--slate-200);
        z-index: 1;
    }

    .process-step:last-child::after {
        display: none;
    }
}

/* Industry Badge Styles */
.industry-badge {
    display: inline-block;
    background-color: var(--slate-100);
    color: var(--slate-700);
    font-size: 1rem;
    font-weight: 500;
    padding: 0.25rem 0.5rem;
    border-radius: 0.25rem;
    margin-right: 0.5rem;
    margin-bottom: 0.5rem;
}

/* Feature Box Styles */
.feature-box {
    background-color: var(--white);
    border-radius: 0.5rem;
    padding: 1.5rem;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1),
        0 2px 4px -1px rgba(0, 0, 0, 0.06);
    height: 100%;
}

.feature-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 2.5rem;
    height: 2.5rem;
    margin-bottom: 1rem;
    border-radius: 50%;
    background-color: var(--blue-100);
    color: var(--blue-600);
}

.feature-title {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.feature-description {
    font-size: 0.875rem;
    color: var(--slate-600);
}
