/*==============================================================
ABOUT HERO
==============================================================*/

.page-hero{

    padding:120px 0 100px;

    background:#f8f9fb;

}

.page-hero .section-label{

    margin-bottom:20px;

}

.page-hero h1{

    max-width:780px;

    margin-bottom:30px;

}

.page-hero p{

    max-width:720px;

    font-size:1.18rem;

    line-height:1.9;

    color:#60697b;

}


/*==============================================================
OUR STORY
==============================================================*/

.about-story{

    padding:100px 0;

}

.two-column{

    display:grid;

    grid-template-columns:repeat(2,1fr);

    gap:90px;

    align-items:center;

}

.about-image img{

    width:100%;

    height:500px;

    object-fit:cover;

    border-radius:28px;

    display:block;

    box-shadow:0 25px 70px rgba(0,0,0,.08);

}


/*==============================================================
VISION & MISSION
==============================================================*/

.vision-mission{

    padding:110px 0;

    background:#f8f9fb;

}

.vm-grid{

    margin-top:60px;

    display:grid;

    grid-template-columns:repeat(2,1fr);

    gap:35px;

}

.vm-card{

    background:#fff;

    padding:55px;

    border-radius:24px;

    box-shadow:0 18px 50px rgba(0,0,0,.05);

    transition:.35s;

}

.vm-card:hover{

    transform:translateY(-8px);

}

.vm-card i{

    width:72px;

    height:72px;

    border-radius:20px;

    background:#d4af37;

    color:#fff;

    display:flex;

    align-items:center;

    justify-content:center;

    font-size:1.7rem;

    margin-bottom:28px;

}

.vm-card h3{

    margin-bottom:18px;

}

.vm-card p{

    line-height:1.9;

    color:#5d6678;

}

/*==============================================================
MARKETPLACE DNA
==============================================================*/

.marketplace-dna{

    padding:120px 0;

}

.marketplace-image img{

    width:100%;

    height:700px;

    object-fit:cover;

    border-radius:28px;

    display:block;

    box-shadow:0 25px 70px rgba(0,0,0,.08);

}

.marketplace-dna blockquote{

    margin-top:40px;

    padding:35px;

    background:#f8f9fb;

    border-left:6px solid var(--ast-global-color-0);

    border-radius:18px;

    font-size:1.25rem;

    font-style:italic;

    color:#16254c;

}

.marketplace-dna blockquote span{

    display:block;

    margin-top:20px;

    font-style:normal;

    font-weight:700;

    color:#d4af37;

}


/*==============================================================
STATEMENT OF FAITH
==============================================================*/

.belief-summary{

    padding:120px 0;

    background:#f8f9fb;

}

.belief-intro{

    max-width:850px;

    margin:35px auto 60px;

    text-align:center;

}

.belief-grid{

    display:grid;

    grid-template-columns:repeat(2,1fr);

    gap:25px;

    margin-bottom:60px;

}

.belief-grid div{

    background:#fff;

    padding:28px;

    border-radius:18px;

    font-weight:600;

    box-shadow:0 10px 35px rgba(0,0,0,.05);

}

/*==============================================================
CORE VALUES
==============================================================*/

.core-values{

    padding:120px 0;

}

.values-grid{

    margin-top:70px;

    display:grid;

    grid-template-columns:repeat(3,1fr);

    gap:35px;

}

.value-card{

    background:#ffffff;

    padding:45px 35px;

    border-radius:24px;

    box-shadow:0 20px 55px rgba(0,0,0,.06);

    transition:all .35s ease;

    text-align:left;

    position:relative;

    overflow:hidden;

}

.value-card:hover{

    transform:translateY(-10px);

    box-shadow:0 30px 70px rgba(0,0,0,.10);

}

.value-card::before{

    content:"";

    position:absolute;

    top:0;

    left:0;

    width:100%;

    height:5px;

    background:#d4af37;

}

.value-card i{

    width:70px;

    height:70px;

    background:#f8f5ea;

    color:#d4af37;

    display:flex;

    align-items:center;

    justify-content:center;

    border-radius:20px;

    font-size:1.6rem;

    margin-bottom:25px;

}

.value-card h3{

    margin-bottom:18px;

    color:#16254c;

}

.value-card p{

    color:#616b7f;

    line-height:1.9;

    margin:0;

}


@media(max-width:992px){

    .values-grid{

        grid-template-columns:repeat(2,1fr);

    }

}

@media(max-width:768px){

    .values-grid{

        grid-template-columns:1fr;

    }

}


/*==============================================================
JOIN THE JOURNEY
==============================================================*/

.about-cta{

    padding:120px 0;

    background:linear-gradient(135deg,#16254c,#1f376f);

    color:#fff;

    text-align:center;

}

.about-cta .section-label{

    color:#d4af37;

}

.about-cta h2{

    color:#fff;

    margin:25px 0;

}

.about-cta p{

    max-width:760px;

    margin:0 auto 45px;

    color:rgba(255,255,255,.85);

    font-size:1.15rem;

    line-height:1.9;

}

.cta-buttons{

    display:flex;

    justify-content:center;

    gap:20px;

    flex-wrap:wrap;

}

.about-cta .btn-primary{

    background:#d4af37;

    color:#fff;

}

.about-cta .btn-primary:hover{

    background:#be9728;

}

.about-cta .btn-outline{

    border:2px solid rgba(255,255,255,.4);

    color:#fff;

    background:transparent;

}

.about-cta .btn-outline:hover{

    background:#fff;

    color:#16254c;

}