/* ==================== About Page Styles ==================== */

.about-hero {
    background: linear-gradient(135deg, var(--primary-color, #4F46E5), #7C3AED);
    padding: 4rem 0 3rem;
    text-align: center;
    color: #fff;
}

.about-hero-inner {
    max-width: 700px;
    margin: 0 auto;
}

.about-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, .15);
    backdrop-filter: blur(10px);
    padding: 6px 16px;
    border-radius: 50px;
    font-size: .8rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.about-hero h1 {
    font-size: 2.2rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 1rem;
}

.about-hero p {
    font-size: 1rem;
    opacity: .9;
    line-height: 1.6;
}

.text-gradient {
    background: linear-gradient(90deg, #FBBF24, #F59E0B);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.about-mission {
    padding: 4rem 0;
    background: var(--light-bg, #F9FAFB);
}

.mission-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.mission-card {
    background: #fff;
    border: 1px solid #E5E7EB;
    border-radius: 16px;
    padding: 2rem;
    text-align: center;
    transition: transform .2s, box-shadow .2s;
}

.mission-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, .08);
}

.mission-icon {
    width: 56px;
    height: 56px;
    border-radius: 14px;
    background: rgba(79, 70, 229, .1);
    color: var(--primary-color, #4F46E5);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    margin: 0 auto 1rem;
}

.mission-card h3 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: .5rem;
}

.mission-card p {
    font-size: .88rem;
    color: #6B7280;
    line-height: 1.6;
}

.about-what {
    padding: 4rem 0;
}

.section-header-center {
    text-align: center;
    margin-bottom: 2.5rem;
}

.section-header-center h2 {
    font-size: 1.8rem;
    font-weight: 800;
    margin-bottom: .5rem;
}

.section-header-center p {
    color: #6B7280;
    font-size: .95rem;
}

.offer-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.offer-card {
    background: var(--light-bg, #F9FAFB);
    border: 1px solid #E5E7EB;
    border-radius: 16px;
    padding: 1.5rem;
    transition: transform .2s, box-shadow .2s;
}

.offer-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, .06);
}

.offer-icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: var(--primary-color, #4F46E5);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    margin-bottom: 1rem;
}

.offer-card h4 {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: .5rem;
}

.offer-card p {
    font-size: .85rem;
    color: #6B7280;
    line-height: 1.6;
    margin-bottom: .75rem;
}

.offer-link {
    font-size: .82rem;
    font-weight: 600;
    color: var(--primary-color, #4F46E5);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: gap .2s;
}

.offer-link:hover {
    gap: 10px;
}

.about-story {
    padding: 4rem 0;
    background: var(--light-bg, #F9FAFB);
}

.story-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 3rem;
    align-items: center;
}

.section-badge-inline {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(79, 70, 229, .1);
    color: var(--primary-color, #4F46E5);
    padding: 4px 12px;
    border-radius: 50px;
    font-size: .75rem;
    font-weight: 600;
    margin-bottom: .75rem;
}

.story-content h2 {
    font-size: 1.6rem;
    font-weight: 800;
    margin-bottom: 1rem;
}

.story-content p {
    font-size: .9rem;
    color: #6B7280;
    line-height: 1.7;
    margin-bottom: .75rem;
}

.story-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.stat-card {
    background: #fff;
    border: 1px solid #E5E7EB;
    border-radius: 14px;
    padding: 1.25rem;
    text-align: center;
}

.stat-number {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--primary-color, #4F46E5);
}

.stat-label {
    font-size: .78rem;
    color: #6B7280;
    font-weight: 500;
    margin-top: 2px;
}

.about-cta {
    padding: 4rem 0;
}

.cta-box {
    background: linear-gradient(135deg, var(--primary-color, #4F46E5), #7C3AED);
    border-radius: 20px;
    padding: 3rem;
    text-align: center;
    color: #fff;
}

.cta-box h2 {
    font-size: 1.6rem;
    font-weight: 800;
    margin-bottom: .75rem;
}

.cta-box p {
    font-size: .92rem;
    opacity: .9;
    max-width: 600px;
    margin: 0 auto 1.5rem;
    line-height: 1.6;
}

.cta-buttons {
    display: flex;
    gap: 12px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn {
    padding: 12px 24px;
    border-radius: 12px;
    font-weight: 600;
    font-size: .88rem;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all .2s;
    cursor: pointer;
    border: none;
}

.btn-primary {
    background: #fff;
    color: var(--primary-color, #4F46E5);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, .2);
}

.btn-outline {
    background: transparent;
    color: #fff;
    border: 2px solid rgba(255, 255, 255, .4);
}

.btn-outline:hover {
    border-color: #fff;
    background: rgba(255, 255, 255, .1);
}

[data-theme="dark"] .mission-card,
[data-theme="dark"] .offer-card,
[data-theme="dark"] .stat-card {
    background: #1E293B;
    border-color: #334155;
}

[data-theme="dark"] .mission-card p,
[data-theme="dark"] .offer-card p,
[data-theme="dark"] .story-content p {
    color: #94A3B8;
}

[data-theme="dark"] .section-header-center p {
    color: #94A3B8;
}

@media (max-width: 991px) {
    .mission-grid {
        grid-template-columns: 1fr;
    }
    .offer-grid {
        grid-template-columns: 1fr;
    }
    .story-grid {
        grid-template-columns: 1fr;
    }
    .about-hero h1 {
        font-size: 1.6rem;
    }
}