* {
    font-family: 'Inter', sans-serif;
}

body {
    background-color: #f8fafc;
    overflow-x: hidden;
}

html {
    scroll-behavior: smooth;
}

.navbar-glass {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.02);
}

.hero-gradient {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 120px 0 100px;
    margin-top: -1px;
}

.feature-card {
    border: none;
    border-radius: 24px;
    background: white;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

.icon-circle {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, #667eea15 0%, #764ba215 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #667eea;
    font-size: 28px;
    margin-bottom: 20px;
}

.btn-primary-custom {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border: none;
    color: white;
    padding: 12px 32px;
    border-radius: 40px;
    font-weight: 600;
    transition: all 0.3s;
    box-shadow: 0 8px 20px rgba(102, 126, 234, 0.3);
}

.btn-primary-custom:hover {
    transform: scale(1.05);
    box-shadow: 0 12px 28px rgba(102, 126, 234, 0.45);
    color: white;
}

.btn-outline-custom {
    border: 2px solid rgba(255, 255, 255, 0.3);
    background: transparent;
    color: white;
    padding: 12px 32px;
    border-radius: 40px;
    font-weight: 600;
    transition: all 0.3s;
}

.btn-outline-custom:hover {
    border-color: white;
    background: rgba(255, 255, 255, 0.1);
    color: white;
}

.section-padding {
    padding: 100px 0;
}

.section-title {
    font-weight: 700;
    font-size: 2.5rem;
    letter-spacing: -0.02em;
    margin-bottom: 1rem;
    color: #1e293b;
}

.section-subtitle {
    font-size: 1.2rem;
    color: #64748b;
    max-width: 700px;
    margin: 0 auto 60px;
}

.fade-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-up.appeared {
    opacity: 1;
    transform: translateY(0);
}

.delay-1 {
    transition-delay: 0.1s;
}

.delay-2 {
    transition-delay: 0.2s;
}

.delay-3 {
    transition-delay: 0.3s;
}

.delay-4 {
    transition-delay: 0.4s;
}

.footer {
    background: #1e293b;
    color: #94a3b8;
    padding: 60px 0 30px;
}

.footer a {
    color: #cbd5e1;
    text-decoration: none;
    transition: color 0.2s;
}

.footer a:hover {
    color: white;
}

.stat-number {
    font-size: 2.8rem;
    font-weight: 700;
    color: #667eea;
    line-height: 1.2;
}

.stat-label {
    color: #475569;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-size: 0.9rem;
}

.bg-soft-primary {
    background-color: #e9ecfe;
}

.hero-gradient {
    padding-top: 120px;
}

@media (max-width: 992px) {
    .hero-gradient {
        padding-top: 100px;
    }

    .section-padding {
        padding: 60px 0;
    }
}