/* =========================
   HERO
========================= */

.about-hero{

    padding:110px 0 80px;

    text-align:center;

}

.about-hero h1{

    font-size:72px;

    line-height:1.1;

    margin-bottom:28px;

}

.about-hero p{

    max-width:850px;

    margin:auto;

    font-size:24px;

    line-height:1.8;

    color:#6b7280;

}

/* =========================
   STORY
========================= */

.about-section{

    padding:90px 0;

}

.about-card{

    background:#fff;

    border-radius:40px;

    padding:60px;

    box-shadow:0 20px 60px rgba(0,0,0,0.06);

}

.about-card h2{

    font-size:52px;

    margin-bottom:30px;

}

.about-card p{

    font-size:22px;

    line-height:2;

    color:#4b5563;

    margin-bottom:30px;

}

/* =========================
   VALUES
========================= */

.values-grid{

    display:grid;

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

    gap:25px;

    margin-top:50px;

}

.value-card{

    background:#fff;

    border-radius:35px;

    padding:40px;

}

.value-card h3{

    font-size:30px;

    margin-bottom:20px;

}

.value-card p{

    font-size:19px;

    line-height:1.8;

    color:#6b7280;

}

/* =========================
   STATS
========================= */

.stats{

    padding:30px 0 100px;

}

.stats-grid{

    display:grid;

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

    gap:25px;

}

.stat-card{

    background:#fff;

    border-radius:30px;

    padding:35px;

    text-align:center;

}

.stat-card h3{

    font-size:46px;

    margin-bottom:10px;

}

.stat-card p{

    font-size:18px;

    color:#6b7280;

}

/* =========================
   CTA
========================= */

.about-cta{

    text-align:center;

    padding:110px 0;

}

.about-cta h2{

    font-size:64px;

    margin-bottom:25px;

}

.about-cta p{

    font-size:24px;

    color:#6b7280;

    margin-bottom:40px;

}

/* =========================
   MOBILE
========================= */

@media(max-width:992px){

    .values-grid,
    .stats-grid{

        grid-template-columns:1fr;

    }

}

@media(max-width:768px){

    .about-hero{

        padding:70px 0 50px;

    }

    .about-hero h1{

        font-size:44px;

    }

    .about-hero p{

        font-size:18px;

    }

    .about-card{

        padding:35px 24px;

    }

    .about-card h2{

        font-size:36px;

    }

    .about-card p{

        font-size:18px;

    }

    .about-cta h2{

        font-size:40px;

    }

    .about-cta p{

        font-size:18px;

    }

}