


/* --- HERO: ASYMMETRICAL DESIGN --- */


.munan-capital {
    background: linear-gradient(45deg, #f1f4ff, #ffdddd38);
    padding: 100px 0;
    height: auto;
    height: 650px;
}

.hero-img-portal {
    position: relative;
    width: 100%;
    height: 500px;
    background: #f8fafc;
    border-radius: 100px 100px 100px 0;
    overflow: hidden;
    box-shadow: 40px 40px 80px rgba(0,0,0,0.05);
}

    .hero-img-portal img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        filter: grayscale(20%);
    }


/* --- CHALLENGES: THE "FRICTION" STRIP --- */
.challenge-strip {
    background: #fdf2f0;
    border-radius: 50px;
    padding: 60px;
    position: relative;
}

.challenge-item-new {
    border-left: 1px solid rgba(255, 107, 0, 0.2);
    padding-left: 30px;
    margin-bottom: 40px;
}

    .challenge-item-new h3 {
        font-size: 1.2rem;
        font-weight: 800;
        margin-bottom: 10px;
    }

.challenge-icon-box {
    font-size: 1.5rem;
    color: #ff6b00;
    margin-bottom: 15px;
}

/* --- TAKSH SUPPORT: THE INTERFACE GRID --- */
/* --- KEY ADVANTAGES: STAGGERED LAYOUT --- */


.adv-pill {
    background: #f1f5f9;
    padding: 30px;
    border-radius: 20px;
    flex: 1 1 300px;
    border: 1px solid transparent;
    transition: 0.3s;
    height: 100%;
}

    .adv-pill i {
        color: #f26622;
        font-size: 30px;
    }

    .adv-pill h4 {
        font-size: 20px;
    }

    .adv-pill p {
        margin-bottom: 0;
    }

    .adv-pill:hover {
        border-color: #ff6b00;
        background: #fff;
        transform: translateY(-5px);
    }

    .adv-pill h3 {
        font-size: 20px;
        font-weight: 700;
    }

/* --- OUTCOMES: THE VISUAL STATS --- */



/* --- DASHBOARD TILES DESIGN --- */


.tile {
    background: #ffffff;
    border: 1px solid #f1f5f9;
    padding: 40px;
    border-radius: 30px;
    transition: 0.3s;
}

    .tile:hover {
        box-shadow: 0 25px 50px rgba(0,0,0,0.05);
        border-color: #ff6b00;
    }

.tile-icon {
    width: 50px;
    height: 50px;
    background: #fff4ed;
    color: #ff6b00;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    font-size: 1.4rem;
    margin-bottom: 25px;
}

/* --- EXAMPLE BOXES --- */




/* --- OUTCOME CIRCLES --- */
.outcome-flex-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
}

.outcome-circle-card {
    background: #ffffff;
    border: 2px dashed #e2e8f0;
    padding: 30px;
    border-radius: 50%;
    width: 250px;
    height: 251px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    transition: 0.4s;
    cursor: pointer;
}

    .outcome-circle-card:hover {
        border-style: solid;
        border-color: #ff6b00;
        transform: rotate(5deg);
    }

    .outcome-circle-card i {
        font-size: 30px;
        color: #f26622;
    }

    .outcome-circle-card p {
        margin-bottom: 0;
        margin-top: 15px;
        line-height: 20px;
    }

.light-box {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    background: #f8fafc;
    padding: 25px;
    border-radius: 20px;
    margin-top: 30px;
}

    .light-box i {
        color: #ff6b00;
        font-size: 1.5rem;
    }

/* --- FAQ: ACCORDION-LESS MINIMALISM --- */
.faq-minimal {
    border-bottom: 1px solid #e2e8f0;
    padding: 30px 0;
    transition: 0.3s;
    padding-bottom: 15px;
    border: 0;
}

    .faq-minimal:hover {
        padding-left: 20px;
    }

    .faq-minimal .q-text {
        font-size: 1.3rem;
        font-weight: 700;
        margin-bottom: 10px;
        display: block;
    }

    .faq-minimal .a-text {
        line-height: 1.6;
        margin-bottom: 0;
    }

/* --- EXAMPLE BOX --- */
.lightbulb-box {
    display: flex;
    background: #fff9f0;
    padding: 25px;
    border-radius: 20px;
    border: 1px solid #ffe4bc;
    align-items: flex-start;
    gap: 15px;
}

    .lightbulb-box i {
        color: #ff6b00;
        font-size: 1.5rem;
        margin-top: 5px;
    }

/* --- BUTTONS --- */


/* --- MOBILE --- */
@media (max-width: 991px) {


    .interface-grid {
        grid-template-columns: 1fr;
    }

    .hero-img-portal {
        height: 300px;
        margin-top: 30px;
    }

    .outcome-visual {
        padding: 40px 20px;
    }
}
