/* -------------------------------------------------------------------------- */
/* Hero Section                                                               */
/* -------------------------------------------------------------------------- */
.hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    background-color: var(--color-bg-primary);
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    z-index: 1;
}



.hero-container {
    position: relative;
    z-index: 2;
    width: 100%;
}

.hero-content {
    width: 50%;
    max-width: 600px;
    padding-top: 4rem;
}

/* Overline */
.hero-overline {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    color: var(--color-secondary);
    text-transform: uppercase;
    margin-bottom: 1.5rem;
}

.hero-title {
    font-size: clamp(2rem, 5vw, 3.5rem);
    line-height: 1.1;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--color-primary);
    font-family: var(--font-heading);
}

.hero-subtitle {
    font-size: 1rem;
    color: var(--color-text-muted);
    margin-bottom: 2rem;
    max-width: 90%;
    line-height: 1.6;
}

/* Actions */
.hero-actions {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 3rem;
}

/* Trust Badges */
.hero-trust-badges {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

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

.badge-icon {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background-color: var(--color-accent-light);
    display: flex;
    align-items: center;
    justify-content: center;
}

.badge span {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--color-text-muted);
}

/* Responsive Layout */
@media (max-width: 992px) {
    .hero-bg {
        width: 100%;
        opacity: 0.3;
    }
    
    .hero-content {
        width: 100%;
        max-width: 100%;
        padding-top: 2rem;
        padding-bottom: 3rem;
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    
    .hero-overline {
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .hero-actions {
        flex-direction: column;
        width: 100%;
        max-width: 300px;
    }
    
    .btn {
        width: 100%;
    }

    .hero-trust-badges {
        flex-wrap: wrap;
        gap: 1rem;
        justify-content: center;
    }
}