/* ==================================================
   ABOUT PAGE — PRAGIA ONLINE
================================================== */

/* ===============================
HERO
================================ */
.about-hero {
    min-height: 60vh;
    background-image: url("/website/images/pragia-hero.jpg");
    background-size: cover;
    background-position: center right;
    position: relative;
}

.about-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        rgba(12,14,33,0.92),
        rgba(24,22,66,0.75)
    );
    z-index: 1;
}

.about-hero .hero-inner {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-hero h1 {
    font-size: 52px;
    color: #ffffff;
}

.about-hero h1 span {
    color: #6239F7;
}

.about-hero p {
    max-width: 520px;
    color: rgba(255,255,255,0.9);
}

/* ===============================
OUR STORY
================================ */
.about-section {
    padding: 100px 0;
    background: #ffffff;
}

.about-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr;
    gap: 60px;
}

.about-text h2 {
    font-size: 34px;
    margin-bottom: 20px;
}

.about-text p {
    margin-bottom: 16px;
    color: #555;
}

.about-card {
    background: #f9f9ff;
    padding: 36px;
    border-radius: 20px;
}

.about-card h3 {
    margin-bottom: 16px;
}

.about-card ul {
    list-style: none;
    padding: 0;
}

.about-card li {
    margin-bottom: 10px;
    font-weight: 500;
}

/* ===============================
VALUES
================================ */
.about-values {
    padding: 90px 0;
    background: #f9f9ff;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 30px;
}

.value-card {
    background: #ffffff;
    padding: 34px;
    border-radius: 20px;
    text-align: left;
}

.value-card i {
    font-size: 30px;
    color: #6239F7;
    margin-bottom: 12px;
}

/* ===============================
CTA
================================ */
.about-cta {
    padding: 90px 0;
    background: radial-gradient(circle at top, #1a1433, #0b0f1e 70%);
    color: #ffffff;
    text-align: center;
}

.about-cta h2 {
    font-size: 38px;
    margin-bottom: 14px;
}

.about-cta p {
    margin-bottom: 28px;
    opacity: 0.9;
}

.cta-actions {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

/* ===============================
RESPONSIVE
================================ */
@media (max-width: 900px) {

    .about-hero {
        min-height: 52vh;
    }

    .about-hero .hero-inner,
    .about-grid {
        grid-template-columns: 1fr;
        gap: 32px;
        text-align: left;
    }

    .hero-image {
        display: none;
    }

    .about-cta {
        text-align: left;
    }

    .cta-actions {
        justify-content: flex-start;
    }
}
