.about-hero {
    background: #f7f8fb;
    padding: 150px 0 90px;
    text-align: center;
}

    .about-hero .container.centered {
        max-width: 980px;
    }

    .about-hero h1 {
        margin: 0 0 18px;
        font-size: clamp(1.8rem, 3.5vw, 2.8rem);
        line-height: 1.1;
        color: var(--gold);
        font-weight: 700;
        letter-spacing: -0.03em;
    }

    .about-hero p {
        margin: 0 auto;
        max-width: 860px;
        font-size: 0.95rem;
        line-height: 1.8;
        color: #7c8596;
        font-weight: 500;
    }

.about-story-section {
    background: #eef0f3;
    padding: 90px 0;
}

.about-story-box {
    max-width: 860px;
    margin: 0 auto;
}

    .about-story-box h2,
    .about-values-section .section-heading h2,
    .about-cta-section h2 {
        margin: 0 0 24px;
        font-size: clamp(1.6rem, 2.8vw, 2.2rem);
        line-height: 1.15;
        color: var(--gold);
        font-weight: 800;
        letter-spacing: -0.03em;
    }

    .about-story-box p {
        margin: 0 0 22px;
        color: #687183;
        font-size: 0.95rem;
        line-height: 1.9;
        font-weight: 500;
    }

        .about-story-box p:last-child {
            margin-bottom: 0;
        }

.about-values-section {
    background: #ffffff;
    padding: 90px 0;
}

.about-values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 28px;
}

.about-value-card {
    background: #f8f8fb;
    border: 1px solid rgba(0, 0, 0, 0.05);
    border-radius: 18px;
    padding: 28px 24px;
    min-height: 190px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.03);
    transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}

    .about-value-card:hover {
        transform: translateY(-4px);
        box-shadow: 0 18px 36px rgba(0,0,0,0.06);
        border-color: rgba(199,154,74,0.2);
    }

.about-value-icon {
    width: 48px;
    height: 48px;
    display: grid;
    place-items: center;
    color: var(--gold);
    font-size: 1.1rem;
    margin-bottom: 14px;
}

.about-value-card h3 {
    margin: 0 0 10px;
    font-size: 1rem;
    line-height: 1.35;
    color: #243041;
    font-weight: 700;
}

.about-value-card p {
    margin: 0;
    color: #7d8595;
    font-size: 0.95rem;
    line-height: 1.8;
    font-weight: 500;
}

.about-stats-section {
    background: #eef0f3;
    padding: 78px 0;
}

.about-stats-row {
    display: flex;
    align-items: stretch;
    justify-content: center;
    flex-wrap: wrap;
    gap: 36px;
    margin-top: 18px;
}

.about-stat-item {
    min-width: 180px;
    text-align: center;
    padding: 10px 16px;
}

    .about-stat-item strong {
        display: block;
        margin-bottom: 8px;
        font-size: clamp(1.8rem, 3.5vw, 2.6rem);
        line-height: 1;
        color: var(--gold);
        font-weight: 800;
    }

    .about-stat-item span {
        display: block;
        color: #6f7788;
        font-size: 0.95rem;
        line-height: 1.5;
        font-weight: 500;
    }

.about-cta-section {
    background: #ffffff;
    padding: 84px 0 96px;
    text-align: center;
}

body.rtl .about-story-box,
body.rtl .about-value-card {
    text-align: right;
}

body.rtl .about-hero p {
    max-width: 900px;
}

body.dark-mode .about-hero {
    background: #09152a;
}

    body.dark-mode .about-hero p {
        color: rgba(230,236,247,0.72);
    }

body.dark-mode .about-story-section {
    background: #0c1730;
}

body.dark-mode .about-story-box h2 {
    color: var(--gold);
}

body.dark-mode .about-story-box p {
    color: rgba(230,236,247,0.72);
}

body.dark-mode .about-values-section {
    background: #09152a;
}

body.dark-mode .about-value-card {
    background: rgba(255,255,255,0.04);
    border-color: rgba(255,255,255,0.06);
    box-shadow: none;
}

    body.dark-mode .about-value-card h3 {
        color: #eef3fb;
    }

    body.dark-mode .about-value-card p {
        color: rgba(230,236,247,0.72);
    }

body.dark-mode .about-stats-section {
    background: #0d1a33;
}

body.dark-mode .about-stat-item span {
    color: rgba(230,236,247,0.72);
}

body.dark-mode .about-cta-section {
    background: #09152a;
}

    body.dark-mode .about-cta-section h2,
    body.dark-mode .about-values-section .section-heading h2 {
        color: var(--gold);
    }

@media (max-width: 991px) {
    .about-hero {
        padding: 130px 0 78px;
    }

    .about-values-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .about-hero {
        padding: 120px 0 70px;
    }

        .about-hero h1 {
            font-size: 2.35rem;
        }

        .about-hero p {
            font-size: 0.96rem;
            line-height: 1.8;
        }

    .about-story-section,
    .about-values-section,
    .about-stats-section,
    .about-cta-section {
        padding: 70px 0;
    }

        .about-story-box h2,
        .about-values-section .section-heading h2,
        .about-cta-section h2 {
            font-size: 1.9rem;
        }

    .about-values-grid {
        grid-template-columns: 1fr;
    }

    .about-stat-item {
        min-width: 140px;
    }
}
