body {
    font-family: 'Space Grotesk', sans-serif;
}
.glass-card {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}
.glass-card:hover {
    border-color: rgba(242, 13, 51, 0.3);
    background: rgba(255, 255, 255, 0.05);
    transform: translateY(-5px);
}
.nav-link-hover:hover {
    color: #f20d33;
    transition: color 0.3s ease;
}
.logo-float {
    filter: grayscale(100%) brightness(200%);
    opacity: 0.6;
    transition: all 0.3s ease;
}
.logo-float:hover {
    filter: grayscale(0%) brightness(100%);
    opacity: 1;
}
.map-container {
    filter: grayscale(100%) invert(90%) contrast(120%);
}
::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-track {
    background: #0a0808;
}
::-webkit-scrollbar-thumb {
    background: #333;
    border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
    background: #f20d33;
}
.timeline-line {
    background: linear-gradient(to bottom, rgba(242,13,51,0) 0%, rgba(242,13,51,0.5) 15%, rgba(242,13,51,0.5) 85%, rgba(242,13,51,0) 100%);
}
.glow-point {
    box-shadow: 0 0 15px rgba(242, 13, 51, 0.6);
}
.service-card {
    transition: all 0.4s ease;
    border: 1px solid rgba(255, 255, 255, 0.05);
}
.service-card:hover {
    transform: translateY(-5px);
    border-color: rgba(242, 13, 51, 0.3);
    box-shadow: 0 10px 40px -10px rgba(242, 13, 51, 0.25);
}
.service-card:hover .icon-wrapper {
    background-color: rgba(242, 13, 51, 0.15);
    color: #f20d33;
}
.process-step {
    position: relative;
}
.process-step::after {
    content: '';
    position: absolute;
    top: 2rem;
    left: 50%;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    z-index: 0;
    display: none;
}
@media (min-width: 1024px) {
    .process-step::after {
        display: block;
    }
    .process-step:last-child::after {
        display: none;
    }
}
