.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 50px;
}

.service-card {
    background: var(--white);
    border: 1px solid rgba(0, 0, 0, 0.06);
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.3s;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
}

.service-img {
    height: 180px;
    background: var(--dark-3);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.service-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.8;
}

.service-img i {
    font-size: 3rem;
    color: var(--orange-light);
    opacity: 0.6;
}

.service-body {
    padding: 28px;
}

.service-body h4 {
    font-family: var(--font-head);
    font-size: 1.25rem;
    color: var(--dark);
    margin-bottom: 12px;
}

.service-body p {
    font-size: 0.9rem;
    color: var(--slate);
    line-height: 1.7;
    margin-bottom: 16px;
}

.service-link {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--orange);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.service-link:hover {
    gap: 10px;
}

.cta-section {
    background: linear-gradient(135deg, var(--dark) 0%, var(--dark-3) 100%);
    padding: 80px 5%;
    text-align: center;
}

.cta-section h2 {
    font-family: var(--font-head);
    font-size: 2.5rem;
    color: var(--white);
    margin-bottom: 16px;
}

.cta-section h2 em {
    color: var(--orange-light);
    font-style: italic;
}

.cta-section p {
    color: var(--silver);
    font-size: 1.05rem;
    max-width: 600px;
    margin: 0 auto 30px;
}

@media (max-width: 900px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .services-grid {
        grid-template-columns: 1fr;
    }
}
