/* Services overview page styles */

.services-header {
    padding-top: 140px;
    padding-bottom: 32px;
}

.services-intro {
    max-width: 560px;
    margin-bottom: 48px;
    line-height: 1.8;
}

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

.service-card {
    display: flex;
    flex-direction: column;
    background: var(--bg-primary);
    border: 1px solid var(--border-light);
    border-radius: 14px;
    padding: 36px;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    text-decoration: none;
    color: inherit;
    cursor: pointer;
    text-align: left;
}

.service-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 32px rgba(30, 30, 40, 0.08);
    border-color: var(--plutonium-yellow);
}

.service-card.technical-card:hover {
    border-color: var(--steam);
}

.service-card .icon {
    width: 44px;
    height: 44px;
    margin-bottom: 20px;
    opacity: 0.65;
}

.service-card h3 {
    margin-bottom: 10px;
}

.service-card p {
    color: var(--text-secondary);
    margin-bottom: 20px;
    line-height: 1.7;
    max-width: none;
}

.service-card .learn-more {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--text-primary);
    text-decoration: none;
    letter-spacing: 0.5px;
    margin-top: auto;
    transition: color 0.2s ease;
}

.service-card:hover .learn-more {
    color: var(--plutonium-yellow);
}

.service-card.technical-card:hover .learn-more {
    color: var(--steam);
}

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