.services-page {
    padding-top: 1rem;
}

.services-hero {
    padding: 5rem 0 2.5rem;
}

.services-hero-content {
    max-width: 760px;
    margin: 0 auto;
    text-align: center;
}

.eyebrow {
    display: inline-block;
    font-size: 0.82rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: #60A5FA;
    margin-bottom: 0.9rem;
}

.services-hero h1 {
    font-size: clamp(2rem, 5vw, 3.4rem);
    line-height: 1.12;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.services-hero .hero-text {
    max-width: 620px;
    margin: 0 auto;
    color: var(--text-secondary);
    font-size: 1.05rem;
}

.hero-actions {
    margin-top: 1.75rem;
    display: flex;
    gap: 0.85rem;
    justify-content: center;
    flex-wrap: wrap;
}

.services-catalog {
    padding: 4.2rem 0 3.4rem;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.4rem;
    margin-top: 1.4rem;
}

.service-card {
    background-color: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 1.4rem 1.35rem 1.3rem;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
    transition: transform 0.25s ease, border-color 0.25s ease, background-color 0.25s ease;
    min-height: 255px;
    position: relative;
    overflow: hidden;
}

.service-card:hover {
    transform: translateY(-4px);
    border-color: rgba(96, 165, 250, 0.5);
    background-color: rgba(255, 255, 255, 0.08);
}

.is-reveal {
    opacity: 0;
    transform: translateY(16px);
}

.is-visible {
    opacity: 1;
    transform: translateY(0);
    transition: opacity 0.45s ease, transform 0.45s ease;
}

.desktop-nav a.active,
.mobile-nav a.active {
    color: var(--text-primary);
}

.service-card h3 {
    margin-bottom: 0.65rem;
    margin-top: 0.2rem;
    line-height: 1.35;
    padding-bottom: 0.55rem;
    position: relative;
}

.service-card h3::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    max-width: 140px;
    height: 2px;
    border-radius: 999px;
    background: linear-gradient(90deg, #60A5FA 0%, #3B82F6 100%);
    opacity: 0.9;
}

.service-card p {
    margin-top: 0.35rem;
    margin-bottom: 0.95rem;
    line-height: 1.65;
}

.service-type {
    display: inline-flex;
    margin-bottom: 0.7rem;
    padding: 0.25rem 0.6rem;
    border-radius: 999px;
    font-size: 0.75rem;
    font-weight: 600;
    color: #BFDBFE;
    border: 1px solid rgba(96, 165, 250, 0.45);
    background: rgba(59, 130, 246, 0.14);
}

.service-card ul {
    list-style: none;
    display: grid;
    gap: 0.5rem;
    margin-top: 0.1rem;
}

.service-card ul li {
    color: var(--text-secondary);
    font-size: 0.93rem;
    position: relative;
    padding-left: 1rem;
    line-height: 1.45;
}

.service-card ul li::before {
    content: '';
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #60A5FA;
    position: absolute;
    left: 0;
    top: 0.43rem;
}

.services-catalog .section-title {
    margin-bottom: 2.2rem;
}

.services-catalog .section-title h2 {
    margin-bottom: 0.55rem;
}

.services-cta-block {
    padding: 2.4rem 0 5rem;
}

.cta-panel {
    border: 1px solid var(--card-border);
    border-radius: 14px;
    background: #111111;
    padding: 2.2rem;
    text-align: center;
}

.cta-panel h2 {
    color: var(--text-primary);
    font-size: clamp(1.45rem, 3vw, 2.2rem);
    margin-bottom: 0.65rem;
}

.cta-panel p {
    margin-bottom: 1rem;
}

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

@media (max-width: 768px) {
    .services-hero {
        padding: 4.5rem 0 2rem;
    }

    .hero-actions {
        flex-direction: column;
    }

    .hero-actions .button {
        width: 100%;
        justify-content: center;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .services-catalog {
        padding-top: 2.4rem;
    }

    .services-cta-block {
        padding-bottom: 3.8rem;
    }

    .cta-panel {
        padding: 1.5rem 1.1rem;
    }
}
