.hero-section-new {
    background-color: #ffffff;
    overflow: hidden;
    position: relative;
}

.blue-blur-circle {
    position: absolute;
    border-radius: 50%;
    z-index: 0;
    pointer-events: none;
}

.circle-right {
    width: 450px;
    height: 450px;
    background: linear-gradient(to left, rgba(224, 247, 250, 0), #E0F7FA);
    left: 85%;
    top: 50%;
    left: 80%;
    top: auto;
}

.circle-left {
    width: 250px;
    height: 250px;
    background: linear-gradient(to right, rgba(224, 247, 250, 0), #E0F7FA);
    right: 85%;
    top: 60%;
    left: auto;
    bottom: auto;
}

.hero-content {
    position: relative;
    z-index: 10;
    padding-top: 150px;
    padding-bottom: 150px;
    text-align: center;
}

.hero-heading {
    font-weight: 800;
    font-size: 2.5rem;
    line-height: 1.2;
    color: #000;
    margin-bottom: 2rem;
}

.hero-subtext {
    font-size: 1.15rem;
    color: #444;
    max-width: 700px;
    margin: 0 auto 1.5rem auto;
    font-weight: 500;
}

.hero-mobile-new {
    position: relative;
    overflow: hidden;
    background-color: #ffffff;
    padding-bottom: 40px;
    text-align: center;
    margin-top: 3.9rem;
}

.mobile-blue-bg {
    position: absolute;
    top: 30% !important;
    right: 15% !important;
    width: 100% !important;
    height: 100% !important;
    max-width: 550px !important;
    max-height: 550px !important;
    background: linear-gradient(to right, rgba(224, 247, 250, 0), #CBEFFC);
    border-radius: 50%;
    z-index: 0;
    pointer-events: none;
}

.mobile-content {
    position: relative;
    z-index: 2;
    padding-top: 60px;
    padding-left: 20px;
    padding-right: 20px;
}

.mobile-heading {
    font-size: 2rem;
    font-weight: 800;
    line-height: 1.3;
    margin-bottom: 1rem;
    color: #000;
}

.mobile-subtext {
    font-size: 1rem;
    color: #444;
    margin-bottom: 2rem;
}


.compare-icon-sq {
    width: 60px;
    height: 60px;
    background-color: #E0F7FA;
    color: #00AEEF;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    margin-bottom: 15px;
    transition: transform 0.3s;
}

.compare-icon-sq:hover {
    transform: translateY(-5px);
}

.compare-grid-wrapper {
    max-width: 100%;
    margin: 0 auto 60px;
    padding: 20px 0;
}

.compare-grid {
    display: grid;
    grid-template-columns: 1.2fr 1.2fr 1.2fr;
    position: relative;
    align-items: center;
}

.moiboo-col-bg {
    grid-column: 2;
    grid-row: 1 / 6;
    background: #c8c8c800;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.06);
    z-index: 10;
    position: relative;
    height: 100%;
    width: 100%;
    margin: -20px 0;
    padding: 20px 0;
    border: 1px solid rgba(0, 0, 0, 0.02);
}

.grid-row-bg {
    grid-column: 1 / -1;
    background-color: #f8f9fa;
    height: 100%;
    z-index: 5;
    border-radius: 10px;
}

.grid-row-bg.white {
    background-color: transparent;
}

.grid-item {
    position: relative;
    z-index: 20;
    padding: 25px 20px;
    font-size: 1.05rem;
    font-weight: 600;
    color: #333;
    display: flex;
    align-items: center;
}

.grid-item.header {
    font-weight: 800;
    font-size: 1.2rem;
    padding-top: 35px;
    padding-bottom: 35px;
    display: flex;
    align-items: center;
    color: #111;
}

.grid-item.center {
    justify-content: center;
}

.gc-1 {
    grid-column: 1;
}

.gc-2 {
    grid-column: 2;
}

.gc-3 {
    grid-column: 3;
}

.check-icon {
    color: #2ECC71;
    font-size: 2.2rem;
}

.cross-icon {
    color: #E74C3C;
    font-size: 2.2rem;
}

.final-cta-section {
    background: linear-gradient(135deg, #00C6FF 0%, #0072FF 100%);
    padding: 70px 0;
    color: white;
    text-align: center;
    border-radius: 25px;
    margin-bottom: 80px;
    box-shadow: 0 20px 50px rgba(0, 114, 255, 0.2);
}

.final-cta-btn-white {
    background: white !important;
    color: #00AEEF !important;
    padding: 8px 18px !important;
    border-radius: 50px !important;
    text-decoration: none !important;
    font-weight: 700;
    transition: all 0.3s;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: auto;
    min-width: 125px !important;
    margin: 5px;
    white-space: nowrap;
    font-size: 0.85rem !important;
}

.final-cta-btn-white:hover {
    background: #f8f9fa !important;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
    color: #008ecc !important;
}

.final-cta-btn-outline {
    border: 2px solid white;
    color: white;
    padding: 12px 32px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    transition: all 0.3s;
}

.final-cta-btn-outline:hover {
    background: rgba(255, 255, 255, 0.15);
    color: white;
}

@media (max-width: 991px) {
    .hero-heading {
        font-size: 2.5rem;
    }
}

@media (max-width: 768px) {
    .compare-grid {
        grid-template-columns: 1fr 1fr 1fr;
        font-size: 0.85rem;
    }

    .grid-item {
        padding: 15px 5px;
        font-size: 0.85rem;
    }

    .check-icon,
    .cross-icon {
        font-size: 1.6rem;
    }

    .compare-grid-wrapper {
        overflow-x: auto;
    }

    .row.text-start.justify-content-center .col-md-4 {
        text-align: center !important;
    }

    .row.text-start.justify-content-center .col-md-4 .d-flex {
        align-items: center !important;
    }

    .final-cta-section {
        background: linear-gradient(135deg, #00C6FF 0%, #0072FF 100%);
        border-radius: 20px;
        padding: 50px 20px;
        box-shadow: 0 15px 35px rgba(0, 114, 255, 0.2);
        margin-bottom: 40px;
        position: relative;
        overflow: hidden;
    }

    .final-cta-section h2,
    .final-cta-section .cta-title {
        font-size: 1.5rem !important;
        margin-bottom: 10px;
        position: relative;
        z-index: 2;
    }

    .final-cta-section p {
        font-size: 1rem;
        margin-bottom: 25px;
        opacity: 0.95;
        position: relative;
        z-index: 2;
        padding: 0 10px;
    }

    .final-cta-section a {
        background: white !important;
        color: #00AEEF !important;
        border: none !important;
        border-radius: 50px !important;
        padding: 8px 10px !important;
        font-weight: 700 !important;
        font-size: 0.75rem !important;
        display: inline-flex !important;
        align-items: center;
        justify-content: center;
        margin: 0 !important;
        min-width: auto !important;
        width: auto !important;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
        text-decoration: none !important;
        white-space: nowrap !important;
        flex-shrink: 1 !important;
    }

    .final-cta-section a i {
        color: #00AEEF !important;
        margin-left: 4px !important;
        font-size: 0.75rem !important;
    }

    .final-cta-section .d-flex {
        display: flex !important;
        flex-direction: row !important;
        justify-content: center !important;
        flex-wrap: nowrap !important;
        gap: 6px !important;
        position: relative;
        z-index: 2;
        width: 100%;
        overflow-x: hidden !important;
    }

    .final-cta-section .d-flex::-webkit-scrollbar {
        display: none;
    }

    .final-cta-section a:hover {
        transform: translateY(-2px);
        background: #f8f9fa !important;
    }
}