/**
 * Hero Block Styles
 *
 * @package NeoFinances
 */

.neo-hero {
    position: relative;
    overflow: hidden;
    background: var(--neo-gradient-hero);
    padding: 5rem 0 8rem;
}

/* Background decoration */
.neo-hero-bg-decor {
    position: absolute;
    inset: 0;
    opacity: 0.1;
    pointer-events: none;
}

.neo-hero-bg-circle {
    position: absolute;
    border-radius: 50%;
    filter: blur(60px);
}

.neo-hero-bg-circle-1 {
    top: 0;
    right: 0;
    width: 24rem;
    height: 24rem;
    background-color: var(--neo-secondary);
}

.neo-hero-bg-circle-2 {
    bottom: 0;
    left: 0;
    width: 24rem;
    height: 24rem;
    background-color: var(--neo-accent);
}

/* Inner container */
.neo-hero-inner {
    position: relative;
    z-index: 10;
}

/* Grid layout */
.neo-hero-grid {
    display: grid;
    gap: 3rem;
    align-items: center;
}

@media (min-width: 1024px) {
    .neo-hero-grid {
        grid-template-columns: 1fr 1fr;
        gap: 4rem;
    }
}

/* Content column */
.neo-hero-content {
    color: var(--neo-white);
}

.neo-hero-headline {
    font-size: 2.25rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 2rem;
    color: var(--neo-white);
}

@media (min-width: 768px) {
    .neo-hero-headline {
        font-size: 3rem;
    }
}

@media (min-width: 1024px) {
    .neo-hero-headline {
        font-size: 2.75rem;
    }
}

/* CTA */
.neo-hero-cta {
    margin-bottom: 1.5rem;
}

.neo-hero-cta .neo-btn {
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

.neo-hero-cta .neo-btn:hover {
    box-shadow: 0 25px 50px -12px rgba(242, 100, 25, 0.5);
}

/* Disclaimer */
.neo-hero-disclaimer {
    font-size: 0.875rem;
    font-style: italic;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 1.5rem;
}

/* Trust badges */
.neo-hero-trust {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    padding-top: 1rem;
}

.neo-trust-badge {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.neo-trust-badge-icon {
    width: 3rem;
    height: 3rem;
    background-color: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(4px);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow: var(--neo-shadow-md);
}

.neo-trust-badge-icon .neo-icon {
    width: 1.5rem;
    height: 1.5rem;
    color: var(--neo-accent);
}

.neo-trust-badge-title {
    font-size: 0.875rem;
    font-weight: 700;
    color: var(--neo-white);
}

.neo-trust-badge-text {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.8);
}

/* Image column */
.neo-hero-image-col {
    position: relative;
}

.neo-hero-image-card {
    position: relative;
    background-color: var(--neo-white);
    border-radius: 1.5rem;
    padding: 0;
    box-shadow: var(--neo-shadow-2xl);
    border: 4px solid rgba(188, 239, 245, 0.2);
    transition: transform var(--neo-transition-slow);
}

.neo-hero-image-card:hover {
    transform: scale(1.02);
}

.neo-hero-image {
    width: 100%;
    height: auto;
    border-radius: var(--neo-radius-xl);
    display: block;
}

/* Floating stats */
.neo-hero-stat {
    position: absolute;
    background-color: var(--neo-white);
    border-radius: 1rem;
    padding: 1rem;
    box-shadow: var(--neo-shadow-2xl);
}

.neo-hero-stat-cashback {
    bottom: -1.5rem;
    left: -1.5rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    border: 4px solid var(--neo-accent);
}

.neo-hero-stat-cashback .neo-hero-stat-icon {
    width: 3.5rem;
    height: 3.5rem;
    background: var(--neo-gradient-gold);
    border-radius: var(--neo-radius-xl);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--neo-white);
    font-weight: 700;
    font-size: 1.5rem;
    box-shadow: var(--neo-shadow-lg);
}

.neo-hero-stat-cashback .neo-hero-stat-value {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--neo-primary-dark);
}

.neo-hero-stat-cashback .neo-hero-stat-label {
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--neo-primary);
}

.neo-hero-stat-clients {
    top: -1.5rem;
    right: -1.5rem;
    background: var(--neo-gradient-blue);
    text-align: center;
    color: var(--neo-white);
}

.neo-hero-stat-clients .neo-hero-stat-value {
    font-size: 1.875rem;
    font-weight: 700;
}

.neo-hero-stat-clients .neo-hero-stat-label {
    font-size: 0.75rem;
    font-weight: 600;
}

/* Floating accent */
.neo-hero-float-accent {
    display: none;
    position: absolute;
    top: 50%;
    left: -2rem;
    background-color: var(--neo-accent);
    border-radius: 50%;
    padding: 1rem;
    box-shadow: var(--neo-shadow-xl);
}

.neo-hero-float-accent .neo-icon {
    width: 2rem;
    height: 2rem;
    color: var(--neo-white);
}

@media (min-width: 1024px) {
    .neo-hero-float-accent {
        display: block;
    }
}

/* Mobile adjustments */
@media (max-width: 767px) {
    .neo-hero {
        padding: 3rem 0 5rem;
    }

    .neo-hero-stat-cashback,
    .neo-hero-stat-clients {
        display: none;
    }

    .neo-hero-image-card {
        padding: 0;
    }
}
