.hero {
    background: linear-gradient(135deg, #E3F2FD 0%, #BBDEFB 30%, #90CAF9 70%, #64B5F6 100%);
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(25, 118, 210, 0.05);
    backdrop-filter: blur(1px);
}

.hero .container {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    z-index: 2;
}

.hero-content {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.8s ease forwards;
    text-align: center;
    max-width: 800px;
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.logo {
    margin-bottom: 1.5rem;
    transition: transform 0.3s ease;
}

.logo:hover {
    transform: scale(1.05);
}

.logo-img {
    height: auto;
    width: 200px;
    max-width: 200px;
}

.hero h1 {
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 700;
    margin-bottom: 1rem;
    color: #333;
    text-shadow: 0 2px 4px rgba(255, 255, 255, 0.5);
}

.hero-subtitle {
    font-size: 1.25rem;
    color: #333;
    margin-bottom: 2.5rem;
    font-weight: 400;
}

.features-list {
    list-style: none;
    margin-bottom: 2.5rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.features-list li {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
    opacity: 0;
    animation: fadeInLeft 0.6s ease forwards;
    color: #333;
    font-weight: 500;
}

.features-list li:nth-child(1) { animation-delay: 0.3s; }
.features-list li:nth-child(2) { animation-delay: 0.5s; }
.features-list li:nth-child(3) { animation-delay: 0.7s; }
.features-list li:nth-child(4) { animation-delay: 0.9s; }

@keyframes fadeInLeft {
    to {
        opacity: 1;
    }
}

.features-list i {
    color: #1565C0;
    margin-right: 1.2rem;
    font-size: 1.3rem;
    min-width: 20px;
    text-align: center;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: center;
}

.hero-visual {
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    animation: fadeInRight 1s ease 0.5s forwards;
}

@keyframes fadeInRight {
    to {
        opacity: 1;
    }
}

.money-stack {
    position: relative;
    transition: transform 0.3s ease;
}

.money-stack:hover {
    transform: scale(1.05);
}

.money-img {
    width: 100%;
    height: auto;
    max-width: 350px;
    border-radius: 15px;
    box-shadow: 0 20px 40px rgba(21, 101, 192, 0.4);
}

@media (max-width: 768px) {
    .hero .container {
        text-align: center;
    }
    
    .hero h1 {
        font-size: 2rem;
    }
    
    .cta-buttons {
        justify-content: center;
        flex-direction: column;
        align-items: center;
    }
}