/* Force Dark Hero */
.hero {
    background-color: #1A2A44 !important;
    background-image: linear-gradient(180deg, #1A2A44 0%, #0B1120 100%) !important;
    padding-top: 140px !important;
    /* Increased margin top */
    padding-bottom: 80px !important;
    /* Increased margin bottom */
}

/* Fix Image Size - Prevent it from becoming "huge" */
.hero__image-img {
    max-width: 100%;
    width: auto;
    /* Let it shrink */
    height: auto;
    max-height: 500px;
    /* Cap the height */
    margin: 0 auto;
    display: block;
    transform: none !important;
    /* Reset 3D transform */
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2) !important;
    /* Simple shadow */
    border-radius: 12px !important;
}

/* Ensure text is visible and high contrast */
.hero__title {
    color: #FFFFFF !important;
    margin-bottom: 1.5rem !important;
}

.hero__description {
    color: #E2E8F0 !important;
    /* Gray-200 */
    margin-bottom: 2rem !important;
}

.hero__description strong {
    color: #FFFFFF !important;
}

/* Ensure Grid Layout works correctly */
.hero__inner {
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 2rem !important;
    align-items: center !important;
}

@media (min-width: 900px) {

    /* Increased breakpoint for better tablet handling */
    .hero__inner {
        grid-template-columns: 1fr 1fr !important;
        gap: 4rem !important;
    }

    .hero__image-img {
        margin: 0;
        /* aligned left in grid */
    }
}

/* Fix Trust text color */
.hero__trust {
    color: #CBD5E1 !important;
    /* Gray-300 */
}

/* Dark Mode Payment Badges in Hero */
.hero .payment-badge {
    background-color: rgba(255, 255, 255, 0.1) !important;
    /* Glassy dark */
    color: #FFFFFF !important;
    border: 1px solid rgba(255, 255, 255, 0.2) !important;
    /* Subtle border */
    padding: 10px 20px !important;
    /* Increased padding/height */
    height: 48px !important;
    /* Force height */
    display: inline-flex !important;
    align-items: center !important;
    border-radius: 99px !important;
    /* Pill shape */
    backdrop-filter: blur(8px);
}

.hero .payment-badge img {
    filter: brightness(1.2);
    /* Make icons pop slightly against dark */
}

/* Gradient Blob behind Phones */
.hero__phones-container::before {
    content: '';
    position: absolute;
    width: 120%;
    /* Make it wider than container */
    height: 120%;
    background: radial-gradient(circle, rgba(37, 211, 102, 0.4) 0%, rgba(59, 130, 246, 0.3) 30%, rgba(0, 0, 0, 0) 70%);
    /* Much stronger opacity 0.4/0.3 */
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 0;
    /* Behind phones */
    pointer-events: none;
    border-radius: 50%;
    filter: blur(40px);
    /* Soften the edges */
}