/* ===========================
   ABOUT PAGE
=========================== */

.about-hero{

    padding:160px 20px 100px;

    text-align:center;

    background:
    radial-gradient(circle at top,#8B5CF620,transparent 45%),
    #09090B;

}

.about-badge{

    display:inline-block;

    background:rgba(139,92,246,.15);

    color:#8B5CF6;

    padding:10px 22px;

    border-radius:40px;

    font-weight:600;

    margin-bottom:25px;

}

.about-hero h1{

    font-size:60px;

    font-weight:800;

    max-width:900px;

    margin:auto;

    line-height:1.2;

}

.about-hero p{

    max-width:760px;

    margin:30px auto 0;

    color:#cfcfcf;

    font-size:18px;

    line-height:1.9;

}

/* Common */

.our-story,
.mission,
.vision,
.why-us,
.about-stats,
.about-cta{

    padding:90px 20px;

}

.our-story p,
.mission p,
.vision p{

    max-width:850px;

    margin:auto;

    text-align:center;

    color:#cfcfcf;

    line-height:2;

}

/* Why Choose */

.why-grid{

    display:grid;

    grid-template-columns:repeat(3,1fr);

    gap:30px;

    margin-top:50px;

}

.why-card{

    background:rgba(255,255,255,.05);

    border:1px solid rgba(255,255,255,.08);

    border-radius:22px;

    padding:35px;

    text-align:center;

    transition:.35s;

}

.why-card:hover{

    transform:translateY(-10px);

    border-color:#8B5CF6;

    box-shadow:0 20px 45px rgba(139,92,246,.18);

}

.why-card i{

    font-size:42px;

    color:#8B5CF6;

    margin-bottom:20px;

}

.why-card h3{

    margin-bottom:15px;

}

/* Stats */

.about-stats-grid{

    display:grid;

    grid-template-columns:repeat(4,1fr);

    gap:25px;

    margin-top:50px;

}

.about-stat{

    background:rgba(255,255,255,.05);

    border-radius:18px;

    border:1px solid rgba(255,255,255,.08);

    text-align:center;

    padding:30px;

}

.about-stat h3{

    color:#8B5CF6;

    font-size:38px;

    margin-bottom:10px;

}

/* CTA */

.about-cta{

    text-align:center;

}

.about-cta p{

    max-width:650px;

    margin:25px auto 35px;

}

/* Responsive */

@media(max-width:900px){

.about-hero h1{

font-size:42px;

}

.why-grid{

grid-template-columns:1fr;

}

.about-stats-grid{

grid-template-columns:repeat(2,1fr);

}

}

@media(max-width:600px){

.about-stats-grid{

grid-template-columns:1fr;

}

.about-hero{

padding-top:130px;

}

.about-hero h1{

font-size:32px;

}

}