/* Aryanispe Host - Critical Hero & UI Overrides */
#home {
    position: relative !important;
    overflow-x: hidden !important;
    min-height: 95vh !important;
    display: flex !important;
    flex-direction: column !important;
    justify-content: center !important;
    padding-top: 130px !important;
    padding-bottom: 60px !important;
    background: linear-gradient(135deg, #2563eb 0%, #1e40af 100%) !important;
}

@media (max-width: 767px) {
    #home {
        min-height: auto !important;
        padding-top: 170px !important;
        padding-bottom: 40px !important;
    }
    #home h1 {
        font-size: 28px !important;
        line-height: 1.3 !important;
    }
    #home p.lead {
        font-size: 15px !important;
    }
}

/* EQUAL HEIGHT PRICING CARDS */
.card-plan {
    height: 100% !important;
    display: flex !important;
    flex-direction: column !important;
}

.card-plan__feature {
    flex-grow: 1 !important;
}

/* GLOBAL OVERFLOW FIX */
html, body {
    margin-top: 0 !important;
    padding-top: 0 !important;
    overflow-x: hidden !important;
    width: 100% !important;
}

/* IMAGE RESPONSIVENESS */
img {
    max-width: 100%;
    height: auto;
}

