.about-page .container {
    max-width: 1200px;
}

.about-page .about-container-narrow {
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.about-page section {
    padding: 80px 0;
}

.about-page .page-hero-section {
    background: linear-gradient(180deg, #ffffff 0%, #f6f9ff 100%);
    padding-top: 110px;
}

.about-page .page-hero-content {
    text-align: center;
}

.about-page .page-hero-title {
    margin: 0 0 12px;
    font-size: 52px;
    line-height: 1.15;
    text-align: center;
    background: linear-gradient(135deg, var(--color-text) 0%, var(--color-primary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.about-page .page-hero-subtitle {
    margin: 0 auto;
    font-size: 20px;
    line-height: 1.75;
    color: var(--color-text-light);
}

.about-page .mission-vision-section {
    background: #ffffff;
}

.about-page .mission-vision-content .glass-card,
.about-page .about-column {
    box-shadow: 0 12px 28px rgba(15, 23, 42, 0.08);
    border-radius: 16px;
    text-align: center;
}

.about-page .about-what-we-build-section {
    background: linear-gradient(180deg, #f8fbff 0%, #ffffff 100%);
}

.about-page .about-pillars-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
}

.about-page .about-pillar {
    height: 100%;
    transition: transform 0.28s ease, box-shadow 0.28s ease;
    text-align: center;
}

.about-page .about-pillar:hover {
    transform: translateY(-4px);
    box-shadow: 0 18px 34px rgba(15, 23, 42, 0.12);
}

.about-page .about-pillar h3 {
    margin: 0 0 10px;
    font-size: 24px;
    line-height: 1.35;
}

.about-page .about-pillar p {
    margin: 0;
    font-size: 18px;
    line-height: 1.75;
}

.about-page .why-section {
    background: #ffffff;
}

.about-page .about-two-column {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px;
}

.about-page .about-column h2 {
    margin: 0 0 10px;
    text-align: center;
}

.about-page .about-column p {
    margin: 0;
    font-size: 18px;
    line-height: 1.75;
}

@media (max-width: 1024px) {
    .about-page .about-pillars-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .about-page section {
        padding: 50px 0;
    }

    .about-page .page-hero-section {
        padding-top: 80px;
    }

    .about-page .page-hero-title {
        font-size: 40px;
    }

    .about-page .page-hero-subtitle {
        font-size: 18px;
    }

    .about-page .about-pillars-grid,
    .about-page .about-two-column {
        grid-template-columns: 1fr;
    }
}
