/* ======================================================
   ABOUT HERO
====================================================== */
.about-hero {
    background: #020617;
    padding: 120px 0 80px;
    text-align: center;
}

.about-hero h1 {
    color: #ffffff;
    font-size: 42px;
    margin-bottom: 12px;
}

.about-hero p {
    color: #cbd5f5;
    font-size: 16px;
}

/* ======================================================
   ABOUT PAGE
====================================================== */
.about-page {
    padding: 100px 0;
    background: #ffffff;
}

.about-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 60px;
    align-items: center;
}

/* TEXT */
.about-text h2 {
    font-size: 28px;
    margin: 30px 0 12px;
}

.about-text p {
    color: #64748b;
    line-height: 1.7;
    margin-bottom: 16px;
}

.about-intro {
    font-size: 16px;
    font-weight: 500;
    color: #334155;
}

/* VALUES */
.about-values {
    list-style: none;
    padding: 0;
    margin: 0;
}

.about-values li {
    margin-bottom: 10px;
    padding-left: 22px;
    position: relative;
    font-weight: 500;
}

.about-values li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--accent);
    font-weight: 700;
}

/* IMAGE */
.about-image {
    height: 420px;
    border-radius: 24px;
    background-size: cover;
    background-position: center;
    position: relative;
    overflow: hidden;
}

.about-image::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom,
            rgba(0, 0, 0, 0.15),
            rgba(0, 0, 0, 0.35));
}

/* ======================================================
   MOBILE
====================================================== */
@media (max-width: 900px) {

    .about-grid {
        grid-template-columns: 1fr;
    }

    .about-hero h1 {
        font-size: 28px;
    }

    .about-hero p {
        font-size: 14px;
    }

    .about-image {
        height: 280px;
    }

}