@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600&amp;family=Space+Grotesk:wght@500;600&amp;display=swap');
    
:root {
    --neon-blue: #00f5ff;
    --neon-purple: #c026d3;
}

body {
    font-family: 'Inter', system-ui, sans-serif;
}

.title-font {
    font-family: 'Space Grotesk', sans-serif;
}

.hero-bg {
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a2e 100%);
}

.service-card {
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(45deg, transparent, rgba(0, 245, 255, 0.1), transparent);
    transform: translateX(-100%);
    transition: transform 0.6s;
}

.service-card:hover::before {
    transform: translateX(300%);
}

.service-card:hover {
    transform: translateY(-12px) scale(1.03);
    box-shadow: 0 0 40px -10px var(--neon-blue);
}

.service-bg {
    background-size: cover;
    background-position: center;
    transition: transform 0.8s ease;
}

.service-card:hover .service-bg {
    transform: scale(1.12);
}

.overlay {
    background: linear-gradient(to bottom, rgba(10,10,20,0.4), rgba(10,10,20,0.95));
}

.timeline-item {
    position: relative;
}

.timeline-line {
    position: absolute;
    left: 31px;
    top: 0;
    bottom: 0;
    width: 3px;
    background: linear-gradient(to bottom, #00f5ff, #c026d3);
    opacity: 0.3;
}

.timeline-dot {
    width: 18px;
    height: 18px;
    background: #0a0a0a;
    border: 3px solid var(--neon-blue);
    box-shadow: 0 0 15px #727DDB;
    transition: all 0.4s ease;
}

.timeline-item:hover .timeline-dot {
    transform: scale(1.3);
    box-shadow: 0 0 25px #3B82F6;
}

.glass {
    background: rgba(255, 255, 255, 0.06);
    backdrop-filter: blur(16px);
    border: 1px solid rgba(255,255,255,0.1);
}

.neon-text {
    text-shadow: 0 0 10px #3D83F5,
                0 0 20px #3D83F5;
    /* text-shadow: 0 0 10px var(--neon-blue),
                0 0 20px var(--neon-blue); */
}

h2, h3 {
    color: white;
    text-shadow: 1px 1px 1px #474747;
}

/* Хедер страницы */
.page-header {
    /* font-family: 'Space Grotesk', sans-serif; */
    padding: 120px 0 80px;
    text-align: center;
    position: relative;
    overflow: hidden;
    
    font-size: 4.5rem;
    font-weight: 700;
    color: white;
    text-shadow: 1px 1px 1px #474747;
}

.subtitle {
  font-size: 1.35rem;
  color: white;
  max-width: 620px;
  margin: 0 auto;
}

.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--primary), transparent);
}

@media (max-width: 968px) {
  .page-header {
    font-size: 3.2rem;
  }
}

.back-metal {
    background: linear-gradient( 135deg, #c0c0c2 0%, #a6a9ac 20%, #8c9093 40%, #a6a9ac 60%, #b9bcbf 80%, #cccccc 90%, #adaeb2 100% );
}