@import url("about_hero.css");
@import url("about_story.css");
@import url("about_values.css");
@import url("about_cta.css");

/* BASE PAGE */
.about-page {
    padding: 64px 0;
}

/* =========================================================
   🔥 BASE
========================================================= */

.about-page {
    padding: 64px 0;
}

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

.about-hero__title {
    font-size: 42px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 16px;
}

.about-hero__text {
    font-size: 16px;
    color: #4B4F58;
}

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

.about-story {
    max-width: 720px;
    margin: 0 auto 80px;
}

.about-title {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 16px;
}

.about-text {
    font-size: 16px;
    color: #4B4F58;
    margin-bottom: 12px;
}

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

.about-values__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-bottom: 80px;
}

.about-value {
    padding: 24px;
    background: #FFFFFF;
    border-radius: 16px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
}

.about-value h3 {
    margin-bottom: 8px;
}

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

.about-cta {
    text-align: center;
}

.about-cta__btn {
    display: inline-block;
    margin-top: 16px;
    padding: 12px 24px;

    background: #FF4B33;
    color: white;
    border-radius: 12px;
    text-decoration: none;
}

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

@media (max-width: 768px) {
    .about-hero__title {
        font-size: 28px;
    }

    .about-hero__text {
        font-size: 14px;
    }

    /* 🔥 STORY */
    .about-story {
        margin-bottom: 48px;
    }

    /* 🔥 VALUES */
    .about-values__grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .about-value {
        padding: 16px;
    }

}
