/* ===== HERO SECTION STYLES ===== */
.hero-modern {
    background: var(--gradient);
    color: white;
    padding: 180px 0 100px;
    position: relative;
    overflow: hidden;
}

.hero-modern::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 1000"><polygon fill="rgba(255,255,255,0.05)" points="0,1000 1000,0 1000,1000"/></svg>');
    background-size: cover;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 2;
}

.hero-text h1 {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    text-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.hero-text p {
    font-size: 1.3rem;
    margin-bottom: 2.5rem;
    opacity: 0.9;
    line-height: 1.6;
}

.hero-actions {
    display: flex;
    gap: 1rem;
    margin-bottom: 3rem;
}

.cta-button {
    display: inline-block;
    padding: 18px 40px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.cta-button.primary {
    background: white;
    color: var(--primary);
    box-shadow: 0 10px 30px rgba(255, 255, 255, 0.3);
}

.cta-button.primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(255, 255, 255, 0.4);
}

.cta-button.secondary {
    background: transparent;
    color: white;
    border-color: white;
}

.cta-button.secondary:hover {
    background: white;
    color: var(--primary);
    transform: translateY(-3px);
}

.hero-trust p {
    font-size: 1rem;
    margin-bottom: 1rem;
    opacity: 0.8;
}

.client-logos {
    display: flex;
    gap: 2rem;
    align-items: center;
    flex-wrap: wrap;
}

.client-logo {
    opacity: 0.7;
    transition: opacity 0.3s ease;
    filter: brightness(0) invert(1);
}

.client-logo:hover {
    opacity: 1;
}

.hero-visual {
    position: relative;
}

.data-visualization {
    width: 100%;
    height: 400px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
}

/* Hero Layout Variations */
.hero-content.hero-centered {
    grid-template-columns: 1fr;
    text-align: center;
}

.hero-content.hero-centered .hero-trust {
    justify-content: center;
}

.hero-content.hero-centered .client-logos {
    justify-content: center;
}

.hero-content.hero-image_left {
    grid-template-columns: 1fr 1fr;
    text-align: left;
}

.hero-content.hero-image_left .hero-visual {
    order: 1;
}

.hero-content.hero-image_left .hero-text {
    order: 2;
}

.hero-content.hero-image_right {
    grid-template-columns: 1fr 1fr;
    text-align: left;
}

.hero-content.hero-image_right .hero-visual {
    order: 2;
}

.hero-content.hero-image_right .hero-text {
    order: 1;
}

.hero-image {
    width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.2);
}

.hero-visual.centered-image {
    margin-top: 3rem;
    text-align: center;
}

.hero-visual.centered-image .hero-image {
    max-width: 600px;
    margin: 0 auto;
}

@media (max-width: 1024px) {
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 3rem;
    }
    
    .hero-content.hero-image_left .hero-visual,
    .hero-content.hero-image_right .hero-visual {
        order: 2;
    }
    
    .hero-content.hero-image_left .hero-text,
    .hero-content.hero-image_right .hero-text {
        order: 1;
    }
    
    .client-logos {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .hero-text h1 {
        font-size: 2.5rem;
    }
    
    .hero-text p {
        font-size: 1.1rem;
    }
    
    .hero-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .client-logos {
        gap: 1rem;
    }
    
    .client-logo {
        font-size: 0.8rem;
        padding: 6px 12px;
    }
    
    .hero-visual.centered-image {
        margin-top: 2rem;
    }
}

@media (max-width: 480px) {
    .hero-text h1 {
        font-size: 2rem;
    }
    
    .hero-modern {
        padding: 150px 0 80px;
    }
}