/* --- HERO SECTION CONTAINER --- */
.hero-section {
    background-color: #f8fbfd; /* Very subtle blue-grey tint for depth */
    padding: 80px 0;
    overflow: hidden;
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
}

/* --- LEFT COLUMN (TEXT) --- */
.hero-content {
    flex: 1; /* Takes up 50% of the space */
    max-width: 550px;
}

.hero-subtitle {
    display: inline-block;
    color: var(--primary-blue);
    font-weight: 700;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 15px;
}

.hero-title {
    font-size: 48px;
    font-weight: 900;
    color: var(--dark-text);
    line-height: 1.2;
    margin-bottom: 25px;
}

.hero-desc {
    font-size: 18px;
    color: var(--secondary-grey);
    line-height: 1.7;
    margin-bottom: 40px;
}

/* Buttons */
.hero-actions {
    display: flex;
    gap: 20px;
    margin-bottom: 40px;
}

.btn-secondary {
    background-color: transparent;
    color: var(--dark-text);
    padding: 12px 26px;
    border-radius: 4px;
    border: 2px solid #e0e0e0;
    font-weight: 700;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    border-color: var(--primary-blue);
    color: var(--primary-blue);
}

/* Trust Checkmarks */
.hero-trust-indicators {
    display: flex;
    gap: 25px;
    font-size: 14px;
    font-weight: 600;
    color: var(--dark-text);
}

/* --- RIGHT COLUMN (IMAGE & BADGE) --- */
.hero-image-wrapper {
    flex: 1; /* Takes up the other 50% */
    position: relative;
}

.hero-image {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1); /* Soft, expensive-looking shadow */
    display: block;
}

/* Floating "Indinero" Style Badge */
.floating-badge {
    position: absolute;
    bottom: -20px;
    left: -30px;
    background-color: var(--white);
    padding: 20px 30px;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
    display: flex;
    align-items: center;
    gap: 15px;
    border-left: 5px solid var(--primary-blue);
}

.badge-number {
    font-family: var(--font-heading);
    font-size: 32px;
    font-weight: 900;
    color: var(--primary-blue);
}

.badge-text {
    font-size: 14px;
    font-weight: 600;
    color: var(--secondary-grey);
    line-height: 1.3;
}

/* --- MOBILE RESPONSIVENESS --- */
@media (max-width: 992px) {
    .hero-container {
        flex-direction: column; /* Stacks text on top of image */
        text-align: center;
        padding: 50px 24px;
    }

    .hero-content {
        max-width: 100%;
    }

    .hero-actions {
        justify-content: center;
        flex-wrap: wrap; /* Keeps buttons from crushing on small screens */
    }

    .hero-trust-indicators {
        justify-content: center;
        flex-wrap: wrap;
    }

    .floating-badge {
        left: 50%;
        transform: translateX(-50%); /* Centers the badge on mobile */
        bottom: -30px;
        width: 80%;
        justify-content: center;
    }
    
    .hero-title {
        font-size: 36px;
    }
}