.hero-gradient {
    background: linear-gradient(135deg, rgba(0, 75, 135, 0.1) 0%, rgba(255, 140, 0, 0.1) 100%);
}

.hero-title {
    letter-spacing: -0.02em;
    line-height: 1.2;
}

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

.hero-stats-item {
    position: relative;
    transition: transform 0.3s ease;
}

.hero-stats-item:hover {
    transform: translateY(-5px);
}

.hero-stats-number {
    background: linear-gradient(135deg, #004B87 0%, #FF8C00 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

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

.cta-button {
    position: relative;
    overflow: hidden;
}

.cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(255, 255, 255, 0.2),
        transparent
    );
    transition: 0.5s;
}

.cta-button:hover::before {
    left: 100%;
}

.call-button {
    position: relative;
    padding: 0.875rem 2rem;
    border-radius: 0.75rem;
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

.call-button:hover {
    border-color: #004B87;
}
