/* ═══════════════════════════════════════════
   About Us — Public Page
   ═══════════════════════════════════════════ */

/* ── Header ──────────────────────────────── */
.about-header {
    background: linear-gradient(135deg, #1a1040 0%, #2d1b69 60%, #4c1d95 100%);
    color: #fff;
    padding: 72px 0 60px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.about-header::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 70% 50%, rgba(102,16,242,.25) 0%, transparent 70%);
    pointer-events: none;
}

.about-header-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 18px;
    border-radius: 100px;
    background: rgba(255,255,255,.12);
    border: 1px solid rgba(255,255,255,.2);
    font-size: .82rem;
    font-weight: 700;
    color: #d8b4fe;
    margin-bottom: 1.25rem;
    letter-spacing: .02em;
}

.about-header-title {
    font-size: clamp(1.8rem, 4vw, 2.75rem);
    font-weight: 800;
    line-height: 1.25;
    margin-bottom: .75rem;
    color: #fff;
}

.about-header-sub {
    font-size: 1.05rem;
    color: rgba(255,255,255,.72);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.7;
}

/* ── Body ────────────────────────────────── */
.about-body {
    padding: 64px 0 80px;
    background: #f8fafc;
}

/* ── Content card ────────────────────────── */
.about-content-section { margin-bottom: 48px; }

.about-content-card {
    background: #fff;
    border-radius: 20px;
    padding: 2.5rem 2.75rem;
    box-shadow: 0 4px 28px rgba(0,0,0,.06);
    border: 1.5px solid rgba(102,16,242,.1);
    line-height: 2;
    font-size: 1rem;
    color: #374151;
}

.about-content-card p {
    margin-bottom: 1.2rem;
}

.about-content-card p:last-child { margin-bottom: 0; }

/* ── Mission / Vision ────────────────────── */
.about-mv-section { margin-bottom: 56px; }

.about-mv-card {
    background: #fff;
    border-radius: 20px;
    padding: 2rem 2rem 2rem;
    height: 100%;
    border: 2px solid transparent;
    box-shadow: 0 4px 24px rgba(0,0,0,.06);
    position: relative;
    overflow: hidden;
    transition: transform .22s, box-shadow .22s;
}

.about-mv-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 14px 36px rgba(99,102,241,.14);
}

.about-mv-mission {
    background:
        linear-gradient(#fff, #f8f5ff) padding-box,
        linear-gradient(135deg, #818cf8, #c084fc) border-box;
}

.about-mv-vision {
    background:
        linear-gradient(#fff, #f0fdf8) padding-box,
        linear-gradient(135deg, #34d399, #06b6d4) border-box;
}

.about-mv-icon {
    width: 52px;
    height: 52px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    margin-bottom: 1.1rem;
}

.about-mv-mission .about-mv-icon { background: #f0ebff; color: #6610f2; }
.about-mv-vision .about-mv-icon  { background: #ecfdf5; color: #059669; }

.about-mv-card h3 {
    font-size: 1.1rem;
    font-weight: 800;
    color: #1a1040;
    margin-bottom: .65rem;
}

.about-mv-card p {
    font-size: .93rem;
    color: #4b5563;
    line-height: 1.85;
    margin: 0;
}

/* ── CTA ─────────────────────────────────── */
.about-cta {
    text-align: center;
    padding: 3rem 2rem;
    background: linear-gradient(135deg, #1a1040, #2d1b69);
    border-radius: 24px;
    color: #fff;
    box-shadow: 0 12px 40px rgba(26,16,64,.35);
}

.about-cta h4 {
    font-size: 1.5rem;
    font-weight: 800;
    margin-bottom: .5rem;
}

.about-cta p {
    color: rgba(255,255,255,.7);
    font-size: .95rem;
    margin-bottom: 1.75rem;
}

.about-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: .4rem;
    padding: .75rem 1.75rem;
    border-radius: 12px;
    font-size: .95rem;
    font-weight: 700;
    text-decoration: none;
    transition: transform .18s, opacity .18s;
}

.about-cta-btn:hover { transform: translateY(-2px); opacity: .9; }

.about-cta-primary {
    background: linear-gradient(135deg, #6610f2, #a855f7);
    color: #fff;
}

.about-cta-outline {
    background: rgba(255,255,255,.1);
    color: #fff;
    border: 1.5px solid rgba(255,255,255,.25);
}

/* ── Responsive ──────────────────────────── */
@media (max-width: 768px) {
    .about-header { padding: 48px 0 40px; }
    .about-content-card { padding: 1.5rem 1.25rem; }
    .about-body { padding: 40px 0 56px; }
}
