body {
    font-family: 'Inter', sans-serif;
    background-color: #0a0a0a;
    color: #e5e5e5;
}
.hero-gradient {
    background: radial-gradient(ellipse at top, rgba(29, 78, 212, 0.15), transparent 70%),
    radial-gradient(ellipse at bottom, rgba(79, 70, 229, 0.15), transparent 70%);
}
.section-gradient {
    background: radial-gradient(circle at 50% 50%, rgba(255, 255, 255, 0.02), transparent 70%);
}
.card-hover {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
}
.card-hover:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.2), 0 10px 10px -5px rgba(0, 0, 0, 0.1);
    border-color: rgba(99, 102, 241, 0.7);
}
.testimonial-card {
    background-color: rgba(31, 41, 55, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
}
.process-line {
    content: '';
    position: absolute;
    left: 50%;
    top: 4rem;
    bottom: 4rem;
    width: 2px;
    background-image: linear-gradient(to bottom, #003399 0%, #FF4234 100%);
    transform: translateX(-50%);
}
@media (max-width: 768px) {
    .process-line {
        left: 1rem;
        transform: none;
    }
}