.hero-divider {
    margin-block: 5.5rem;
}

.services {
    max-width: 1180px;
    margin: 0 auto;
    padding: 5rem clamp(1.5rem, 6vw, 6rem) 6rem;
}

.services-eyebrow {
    margin-bottom: 1rem;
    color: #00e5ff;
    font-size: 0.65rem;
    font-weight: 500;
    letter-spacing: 0.28em;
    text-align: center;
    text-transform: uppercase;
    opacity: 0.75;
}

.services-heading {
    margin-bottom: 3rem;
    color: #f0f9ff;
    font-size: clamp(1.8rem, 4.5vw, 2.8rem);
    font-weight: 700;
    letter-spacing: -0.02em;
    text-align: center;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1.25rem;
}

.service-card {
    padding: 1.5rem 1.6rem;
    border: 1px solid rgba(0, 229, 255, 0.14);
    border-radius: 6px;
    background: rgba(6, 10, 22, 0.6);
    transition: border-color 0.25s, background 0.25s;
}

.service-card:hover {
    border-color: rgba(0, 229, 255, 0.4);
    background: rgba(6, 10, 22, 0.8);
}

.service-card h3 {
    margin-bottom: 0.5rem;
    color: #67e8f9;
    font-size: 1rem;
    font-weight: 600;
}

.service-card p {
    color: #94a3b8;
    font-size: 0.85rem;
    line-height: 1.6;
}
