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

/* HERO */
.about-hero {
    padding: 140px 24px 100px;
    background: linear-gradient(135deg, #f8fafc, #eef2ff);
}

.about-hero-inner {
    max-width: 960px;
    margin: 0 auto;
    text-align: center;
}

.about-title {
    font-size: 52px;
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -0.02em;
    margin: 20px 0;
}

.about-subtitle {
    max-width: 640px;
    margin: 0 auto;
    font-size: 18px;
    line-height: 1.7;
    color: #4b5563;
}

/* INTRO */
.about-intro {
    padding: 100px 24px;
}

.about-intro-inner {
    max-width: 1200px;
    margin: 0 auto;

    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 64px;
    align-items: center;
}

.about-text p {
    font-size: 17px;
    line-height: 1.75;
    color: #374151;
    margin-bottom: 16px;
}

.about-image img {
    width: 100%;
    border-radius: 24px;
    object-fit: cover;
    box-shadow: 0 20px 50px rgba(0,0,0,.08);
}

/* VALUES */
.about-values {
    padding: 100px 24px;
    background: #f9fafb;
}

.about-values-inner {
    max-width: 1200px;
    margin: 0 auto;
}

.values-header {
    text-align: center;
    margin-bottom: 56px;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.value-item {
    background: #fff;
    border-radius: 24px;
    padding: 40px 32px;
    text-align: center;

    box-shadow: 0 10px 30px rgba(0,0,0,.05);
    transition: transform .3s ease, box-shadow .3s ease;
}

.value-item:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 40px rgba(0,0,0,.08);
}

.value-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: #eef2ff;
    color: #4f46e5;
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 16px;
}

.value-item h4 {
    font-size: 20px;
    margin-bottom: 8px;
}

.value-item p {
    font-size: 16px;
    line-height: 1.6;
    color: #6b7280;
}

/* COMMON */
.center {
    text-align: center;
}

/* RESPONSIVE */
@media (max-width: 992px) {
    .about-intro-inner {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .about-title {
        font-size: 42px;
    }
}

@media (max-width: 576px) {
    .about-title {
        font-size: 34px;
    }

    .values-grid {
        grid-template-columns: 1fr;
    }
}
