html {
    scroll-behavior: smooth;
}

.hero-gradient {
    background: linear-gradient(135deg, #0078D4 0%, #106EBE 50%, #005A9E 100%);
}

.card-hover {
    transition: all 0.2s ease;
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
}

.card-hover:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 32px rgba(0, 120, 212, 0.15);
    background: rgba(255, 255, 255, 0.9);
}

.product-icon {
    transition: all 0.2s ease;
}

.card-hover:hover .product-icon {
    transform: scale(1.05);
}

.win-glass {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.win-glass-dark {
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

.float-animation {
    animation: float 3s ease-in-out infinite;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in-up {
    animation: fadeInUp 0.6s ease forwards;
}

.nav-link {
    position: relative;
    padding: 8px 16px;
    border-radius: 6px;
    transition: background 0.2s ease;
    font-weight: 500;
}

.nav-link:hover {
    background: rgba(0, 120, 212, 0.1);
    color: #0078D4;
}

.nav-link::after {
    display: none;
}

.win-btn {
    background: #0078D4;
    color: white;
    border-radius: 6px;
    padding: 8px 16px;
    font-weight: 500;
    transition: background 0.2s ease;
}

.win-btn:hover {
    background: #106EBE;
}

.win-btn-accent {
    background: #005A9E;
}

.win-btn-accent:hover {
    background: #004578;
}

.win-card {
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 12px;
    border: 1px solid rgba(0, 0, 0, 0.05);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.win-nav {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(30px) saturate(180%);
    -webkit-backdrop-filter: blur(30px) saturate(180%);
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}

.hero-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 64px;
}

.section-padding {
    padding-top: 20px;
    padding-bottom: 20px;
}

@media (min-width: 1024px) {
    .section-padding {
        padding-top: 40px;
        padding-bottom: 40px;
    }
}

.service-card {
    transition: all 0.3s ease;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 120, 212, 0.12);
}

@keyframes modalIn {
    from {
        opacity: 0;
        transform: scale(0.95) translateY(20px);
    }
    to {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

.animate-modal {
    animation: modalIn 0.3s ease forwards;
}
