/* ============================================================
   ABOUT PAGE — about.css
   ============================================================ */

/* ── Shared ──────────────────────────────────────────────── */
.crumbs {
    display: flex;
    align-items: center;
    gap: .5rem;
    font-size: .85rem;
    color: var(--muted);
    margin-bottom: .75rem;
    flex-wrap: wrap
}

    .crumbs a, .crumbs span {
        color: var(--muted)
    }

        .crumbs a:hover {
            color: var(--violet)
        }

    .crumbs b {
        color: var(--violet);
        font-weight: 600
    }

.sec-tag {
    display: inline-block;
    background: #EDE9FF;
    color: var(--violet);
    font-size: .72rem;
    font-weight: 700;
    letter-spacing: .14em;
    text-transform: uppercase;
    padding: .35rem .9rem;
    border-radius: 999px;
    margin-bottom: .9rem
}

.sec-underline {
    width: 48px;
    height: 3px;
    background: var(--violet);
    border-radius: 2px;
    margin-top: .5rem
}

/* ── HERO ────────────────────────────────────────────────── */
.about-hero {
    background: linear-gradient(135deg,#F0ECFF 0%,#EBF1FF 60%,#F5F3FE 100%);
    border-bottom: 1px solid #E0D8FF;
    padding-block: clamp(24px,4vw,52px);
    overflow: hidden;
}

.about-hero-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
}

.about-hero-text {
    flex: 1;
    min-width: 0
}

    .about-hero-text h1 {
        font-size: clamp(2rem,4.5vw,3rem);
        font-weight: 800;
        color: var(--navy);
        margin-bottom: .4rem;
        line-height: 1.15;
    }

.hero-violet {
    color: var(--violet)
}

.hero-pulse-line {
    margin: .5rem 0 .8rem
}

.about-hero-text p {
    color: var(--muted);
    font-size: clamp(.92rem,1.6vw,1.05rem);
    max-width: 380px;
    line-height: 1.7;
    margin: 0
}

.about-hero-img {
    flex: none;
    width: clamp(200px,30vw,380px);
    display: flex;
    align-items: center;
    justify-content: flex-end
}

.about-hero-aed {
    width: 100%;
    filter: drop-shadow(0 12px 40px rgba(124,82,244,.2))
}

    .about-hero-aed svg {
        width: 100%;
        height: auto
    }

@media(max-width:700px) {
    .about-hero-img {
        display: none
    }
}

/* ── WHO WE ARE ──────────────────────────────────────────── */
.about-who {
    background: #fff
}

.about-who-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(28px,5vw,64px);
    align-items: start;
}

@media(max-width:900px) {
    .about-who-grid {
        grid-template-columns: 1fr
    }
}

.about-copy .sec-tag {
    margin-bottom: .9rem
}

.about-copy h2 {
    font-size: clamp(1.5rem,3vw,2rem);
    font-weight: 800;
    color: var(--navy);
    margin-bottom: .9rem;
    line-height: 1.25
}

.about-highlight {
    font-size: 1.02rem;
    font-weight: 600;
    color: var(--violet);
    border-inline-start: 3px solid var(--violet);
    padding-inline-start: 1rem;
    margin: 0 0 1rem;
    line-height: 1.65
}

.about-desc {
    color: var(--muted);
    margin: 0 0 1.6rem;
    line-height: 1.8;
    font-size: .95rem
}

.about-empty {
    text-align: center;
    color: var(--muted);
    padding-block: 3rem
}

/* Stat cards 2×3 grid */
.about-stat-grid {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 14px;
}

@media(max-width:600px) {
    .about-stat-grid {
        grid-template-columns: repeat(2,1fr)
    }
}

.about-stat-card {
    background: #fff;
    border: 1px solid #E9E5FF;
    border-radius: 16px;
    padding: 20px 16px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 6px;
    transition: box-shadow .18s,transform .18s;
}

    .about-stat-card:hover {
        box-shadow: 0 6px 20px rgba(124,82,244,.1);
        transform: translateY(-3px)
    }

.asc-ic {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    background: #F1EBFF;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 4px;
    line-height: 0;
}

    .asc-ic svg {
        display: block;
        width: 26px;
        height: 26px
    }

.about-stat-card b {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--violet);
    line-height: 1.1
}

.about-stat-card span {
    font-size: .75rem;
    color: var(--muted);
    font-weight: 500;
    line-height: 1.4
}

/* ── MVC CARDS ───────────────────────────────────────────── */
.sec-head {
    text-align: center;
    margin-bottom: 2.2rem
}

    .sec-head h2 {
        font-size: clamp(1.5rem,3vw,2rem);
        font-weight: 800;
        color: var(--navy);
        margin-bottom: .4rem
    }

    .sec-head .sec-underline {
        margin-inline: auto
    }

.mvc-grid {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 22px;
    margin-top: 2rem
}

@media(max-width:900px) {
    .mvc-grid {
        grid-template-columns: 1fr
    }
}

.mvc-card {
    background: #fff;
    border: 1px solid #E9E5FF;
    border-radius: 16px;
    padding: 28px 24px;
    border-inline-start-width: 4px;
    transition: transform .18s,box-shadow .18s;
}

    .mvc-card:hover {
        transform: translateY(-4px);
        box-shadow: 0 10px 32px rgba(124,82,244,.1)
    }

.mvc-card-violet {
    border-inline-start-color: var(--violet)
}

.mvc-card-blue {
    border-inline-start-color: #4D8DF8
}

.mvc-card-green {
    border-inline-start-color: #22C55E
}

.mvc-ic {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    background: #F8F7FF;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    line-height: 0;
}

    .mvc-ic svg {
        display: block;
        width: 28px;
        height: 28px
    }

.mvc-card h3 {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: .55rem
}

.mvc-card p {
    font-size: .87rem;
    color: var(--muted);
    margin: 0;
    line-height: 1.75
}

/* ── PARTNERS ────────────────────────────────────────────── */
.about-partners-head {
    text-align: center;
    margin-bottom: 1.8rem
}

    .about-partners-head h2 {
        font-size: clamp(1.5rem,3vw,2rem);
        font-weight: 800;
        color: var(--navy);
        margin: .4rem 0 .5rem
    }

    .about-partners-head .sec-underline {
        margin-inline: auto
    }

.about-page .partner-logo {
    min-height: 120px;
    padding: 22px 20px
}

    .about-page .partner-logo img {
        max-height: 70px
    }

/* ── STATS BAND ──────────────────────────────────────────── */
.about-page.stats-band {
    background: linear-gradient(135deg,#7C52F4 0%,#4D8DF8 100%);
    padding-block: clamp(40px,5vw,60px);
}

.about-page .stats-row {
    display: grid;
    grid-template-columns: repeat(4,1fr);
    gap: 0;
    margin-top: 0;
}

.about-page .stat {
    padding: 1.2rem 1rem;
    border-inline-start: 1px solid rgba(255,255,255,.2);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: .5rem;
}

    .about-page .stat:first-child {
        border-inline-start: none
    }

.about-page .stat-icon {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    background: rgba(255,255,255,.15);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    line-height: 0;
}

    .about-page .stat-icon svg {
        display: block;
        width: 26px;
        height: 26px
    }

.about-page .stat-value {
    font-size: clamp(2rem,4vw,3rem);
    font-weight: 800;
    line-height: 1;
    color: #fff
}

.about-page .stat-label {
    font-size: .85rem;
    opacity: .88;
    font-weight: 500;
    color: #fff;
    text-align: center
}

@media(max-width:820px) {
    .about-page .stats-row {
        grid-template-columns: repeat(2,1fr)
    }

    .about-page .stat:nth-child(3) {
        border-inline-start: none
    }

    .about-page .stat:nth-child(3), .about-page .stat:nth-child(4) {
        border-top: 1px solid rgba(255,255,255,.2)
    }
}

/* ── BOTTOM CTA ──────────────────────────────────────────── */
.about-cta-section {
    background: #fff;
    padding-block: clamp(32px,5vw,56px)
}

.about-cta-card {
    display: flex;
    align-items: center;
    gap: 2rem;
    background: #F8F7FF;
    border: 1px solid #E9E5FF;
    border-radius: 20px;
    padding: clamp(24px,4vw,40px);
    position: relative;
    overflow: hidden;
}

.about-cta-text {
    flex: 1;
    min-width: 0
}

    .about-cta-text h3 {
        font-size: clamp(1.2rem,2.5vw,1.6rem);
        font-weight: 800;
        color: var(--navy);
        margin: 0 0 .4rem
    }

    .about-cta-text p {
        color: var(--muted);
        margin: 0;
        line-height: 1.6;
        font-size: .95rem
    }

.about-cta-illo {
    flex: none;
    position: absolute;
    inset-inline-end: 220px;
    top: 50%;
    transform: translateY(-50%)
}

.about-cta-btn {
    white-space: nowrap;
    flex: none;
    padding: .85rem 1.8rem;
    font-size: .95rem
}

@media(max-width:700px) {
    .about-cta-card {
        flex-direction: column;
        text-align: center
    }

    .about-cta-illo {
        display: none
    }

    .about-cta-btn {
        width: 100%;
        justify-content: center
    }
}
