:root {
    --ink: #0f172a;
    --muted: #6b7280;
    --accent: #ef8025;
    --bg: #f8f9fb;
}

body {
    background: var(--bg);
}

.about-hero {
    background: linear-gradient(135deg, #0f172a 0%, #1d2538 60%, #ef8025 120%);
    color: #fff;
    padding: 120px 0 90px;
    text-align: center;
}
.about-hero .eyebrow {
    letter-spacing: 2px;
    font-weight: 700;
    opacity: 0.8;
}
.about-hero h1 {
    font-family: "Playfair Display", serif;
    font-size: 40px;
    line-height: 1.2;
    margin: 12px auto;
    max-width: 820px;
}
.about-hero .lead {
    max-width: 760px;
    margin: 0 auto 24px;
    color: rgba(255, 255, 255, 0.82);
}
.hero-actions {
    display: inline-flex;
    gap: 12px;
}
.hero-actions .btn {
    border-radius: 999px;
    font-weight: 700;
}
.hero-actions .btn-outline-light {
    border-color: rgba(255,255,255,0.5);
    color: #fff;
}
.hero-actions .btn-outline-light:hover {
    background: rgba(255,255,255,0.1);
}

.about-body {
    margin-top: -50px;
    margin-bottom: 60px;
}

.feature-pills .pill {
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    padding: 30px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.05);
}
.feature-pills i {
    color: var(--accent);
    font-size: 18px;
}

.mission .card-soft,
.what-we-do .card-soft,
.leadership.card-soft {
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 14px;
    padding: 22px;
    box-shadow: 0 14px 40px rgba(15, 23, 42, 0.06);
    height: 100%;
}
.card-soft h3,
.card-soft h4,
.card-soft h5 {
    color: var(--ink);
    margin-bottom: 10px;
}
.card-soft p {
    color: var(--muted);
    margin-bottom: 10px;
}

.eyebrow {
    text-transform: uppercase;
    font-size: 12px;
    letter-spacing: 1.5px;
    color: var(--accent);
    margin-bottom: 6px;
    font-weight: 700;
}

.mission h3 {
    font-size: 28px;
}
.checklist {
    list-style: none;
    padding: 0;
    margin: 12px 0 0;
}
.checklist li {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--ink);
    margin-bottom: 6px;
}
.checklist li::before {
    content: "•";
    color: var(--accent);
    font-weight: 900;
}

.card-stats {
    display: grid;
    gap: 12px;
}
.stat {
    background: #0f172a;
    color: #fff;
    border-radius: 12px;
    padding: 18px;
    box-shadow: 0 10px 24px rgba(0,0,0,0.25);
}
.stat-value {
    display: block;
    font-size: 22px;
    font-weight: 700;
}
.stat-label {
    color: rgba(255,255,255,0.78);
    font-size: 13px;
}

.what-we-do h3 {
    color: var(--ink);
}

.about-story h3 {
    font-size: 30px;
    color: var(--ink);
}
.about-story p {
    color: var(--muted);
}

.leadership h4 {
    margin-bottom: 12px;
}

@media (max-width: 768px) {
    .about-hero { padding: 90px 0 70px; }
    .about-hero h1 { font-size: 30px; }
    .hero-actions { flex-direction: column; }
}
