/* Premium About page — v2 layout */
.about-page {
    --ab-font: "Plus Jakarta Sans", "Inter", system-ui, sans-serif;
    --ab-ink: #0c1222;
    --ab-muted: #5c6578;
    --ab-bg: #f4f6fb;
    --ab-surface: #ffffff;
    --ab-border: rgba(15, 23, 42, 0.08);
    --ab-primary: #4f46e5;
    --ab-primary-dark: #3730a3;
    --ab-indigo-soft: #eef2ff;
    --ab-green: #059669;
    --ab-radius: 20px;
    --ab-radius-sm: 16px;
    --ab-shadow: 0 4px 24px rgba(15, 23, 42, 0.08);
    --ab-shadow-lg: 0 24px 56px rgba(15, 23, 42, 0.14);

    font-family: var(--ab-font);
    background: linear-gradient(180deg, #eef2f9 0%, #f8fafc 38%, #ffffff 100%);
    color: var(--ab-ink);
    -webkit-font-smoothing: antialiased;
}

.about-container {
    max-width: 1180px;
}

@media (min-width: 1400px) {
    .about-container {
        max-width: 1280px;
    }
}

.about-page .mb-lg-6 {
    margin-bottom: 3.5rem !important;
}

@media (min-width: 992px) {
    .about-page .mb-lg-6 {
        margin-bottom: 5rem !important;
    }
}

/* ——— Hero split ——— */
.about-hero-split__eyebrow {
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--ab-primary);
    margin: 0 0 0.85rem;
}

.about-hero-split__title {
    font-size: clamp(2.15rem, 4vw, 3.15rem);
    font-weight: 800;
    letter-spacing: -0.038em;
    line-height: 1.1;
    margin: 0 0 1.25rem;
    color: var(--ab-ink);
}

.about-hero-split__text {
    font-size: 1.0625rem;
    line-height: 1.75;
    color: var(--ab-muted);
    margin: 0 0 1.75rem;
    max-width: 34rem;
}

.about-hero-split__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.about-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.8rem 1.5rem;
    border-radius: 14px;
    font-weight: 800;
    font-size: 0.9375rem;
    text-decoration: none;
    transition: transform 0.2s ease, box-shadow 0.25s ease, filter 0.2s ease, background 0.2s ease, border-color 0.2s ease;
    border: 2px solid transparent;
}

.about-btn--primary {
    background: linear-gradient(135deg, var(--ab-primary) 0%, var(--ab-primary-dark) 100%);
    color: #fff;
    box-shadow: 0 8px 28px rgba(79, 70, 229, 0.38);
}

.about-btn--primary:hover {
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 12px 32px rgba(79, 70, 229, 0.45);
    filter: brightness(1.03);
}

.about-btn--outline {
    background: #fff;
    border-color: #e2e8f0;
    color: #334155;
}

.about-btn--outline:hover {
    border-color: #c7d2fe;
    background: var(--ab-indigo-soft);
    color: var(--ab-primary-dark);
}

.about-hero-split__figure {
    margin: 0;
    border-radius: var(--ab-radius);
    overflow: hidden;
    box-shadow: var(--ab-shadow-lg);
    border: 1px solid var(--ab-border);
    background: #e2e8f0;
}

.about-hero-split__img {
    width: 100%;
    display: block;
    aspect-ratio: 5 / 4;
    object-fit: cover;
    transition: transform 0.55s cubic-bezier(0.22, 1, 0.36, 1);
}

.about-hero-split__figure:hover .about-hero-split__img {
    transform: scale(1.03);
}

/* ——— Stats ——— */
.about-stat-card {
    height: 100%;
    background: var(--ab-surface);
    border: 1px solid var(--ab-border);
    border-radius: var(--ab-radius-sm);
    padding: 1.35rem 1.15rem;
    text-align: center;
    box-shadow: var(--ab-shadow);
    transition: transform 0.28s ease, box-shadow 0.28s ease;
}

.about-stat-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--ab-shadow-lg);
}

.about-stat-card__num {
    font-size: 1.85rem;
    font-weight: 800;
    letter-spacing: -0.03em;
    margin: 0 0 0.35rem;
    color: var(--ab-primary-dark);
    line-height: 1.1;
}

.about-stat-card__label {
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--ab-muted);
    margin: 0;
    line-height: 1.45;
}

.about-stat-card--sub .about-stat-card__label {
    font-size: 1.02rem;
    font-weight: 800;
    color: #334155;
}

/* ——— Journey ——— */
.about-journey {
    max-width: 52rem;
    margin-left: auto;
    margin-right: auto;
    padding: 2.25rem 1.5rem;
    background: var(--ab-surface);
    border: 1px solid var(--ab-border);
    border-radius: var(--ab-radius);
    box-shadow: var(--ab-shadow);
}

@media (min-width: 768px) {
    .about-journey {
        padding: 2.75rem 3rem;
    }
}

.about-journey__title {
    font-size: clamp(1.5rem, 2.5vw, 2rem);
    font-weight: 800;
    letter-spacing: -0.03em;
    margin: 0 0 1.25rem;
    color: var(--ab-ink);
}

.about-journey__body {
    font-size: 1.0625rem;
    line-height: 1.85;
    color: var(--ab-muted);
    margin: 0;
}

/* ——— Mission / Vision ——— */
.about-mv-card {
    height: 100%;
    background: var(--ab-surface);
    border: 1px solid var(--ab-border);
    border-radius: var(--ab-radius-sm);
    box-shadow: var(--ab-shadow);
    overflow: hidden;
    transition: transform 0.28s ease, box-shadow 0.28s ease;
}

.about-mv-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--ab-shadow-lg);
}

.about-mv-card__head {
    padding: 1rem 1.25rem;
    display: flex;
    align-items: center;
    gap: 0.65rem;
    font-size: 1.05rem;
    font-weight: 800;
    letter-spacing: -0.02em;
    color: #fff;
    margin: 0;
}

.about-mv-card__head i {
    opacity: 0.95;
}

.about-mv-card__head--mission {
    background: linear-gradient(135deg, var(--ab-primary) 0%, var(--ab-primary-dark) 100%);
}

.about-mv-card__head--vision {
    background: linear-gradient(135deg, #059669 0%, #047857 100%);
}

.about-mv-card__body {
    padding: 1.35rem 1.35rem 1.5rem;
    font-size: 1.0625rem;
    line-height: 1.75;
    color: var(--ab-muted);
    margin: 0;
}

/* ——— Why choose ——— */
.about-features__title {
    font-size: clamp(1.35rem, 2.5vw, 1.85rem);
    font-weight: 800;
    letter-spacing: -0.03em;
    text-align: center;
    margin: 0 0 0.5rem;
}

.about-features__underline {
    width: 3.5rem;
    height: 3px;
    margin: 0 auto 2rem;
    border-radius: 999px;
    background: linear-gradient(90deg, var(--ab-primary), #a5b4fc, #34d399);
}

.about-feature-card {
    background: var(--ab-surface);
    border: 1px solid var(--ab-border);
    border-radius: var(--ab-radius-sm);
    padding: 1.5rem 1.35rem;
    box-shadow: var(--ab-shadow);
    transition: transform 0.28s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.28s ease, border-color 0.2s ease;
}

.about-feature-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--ab-shadow-lg);
    border-color: rgba(99, 102, 241, 0.22);
}

.about-feature-card__icon {
    width: 3rem;
    height: 3rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 14px;
    background: linear-gradient(145deg, var(--ab-indigo-soft) 0%, #e0e7ff 100%);
    color: var(--ab-primary);
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.about-feature-card__title {
    font-size: 1.05rem;
    font-weight: 800;
    letter-spacing: -0.02em;
    margin: 0 0 0.5rem;
    color: var(--ab-ink);
}

.about-feature-card__text {
    font-size: 0.9375rem;
    line-height: 1.6;
    color: var(--ab-muted);
    margin: 0;
}

/* ——— CTA banner ——— */
.about-cta-banner {
    text-align: center;
    padding: 2.75rem 1.5rem;
    border-radius: var(--ab-radius);
    background: linear-gradient(135deg, #312e81 0%, var(--ab-primary) 42%, #6366f1 100%);
    color: #fff;
    box-shadow: 0 20px 50px rgba(79, 70, 229, 0.35);
    border: 1px solid rgba(255, 255, 255, 0.12);
}

@media (min-width: 768px) {
    .about-cta-banner {
        padding: 3.25rem 2.5rem;
    }
}

.about-cta-banner__title {
    font-size: clamp(1.4rem, 2.8vw, 2rem);
    font-weight: 800;
    letter-spacing: -0.02em;
    margin: 0 0 0.65rem;
    line-height: 1.25;
}

.about-cta-banner__sub {
    font-size: 1.0625rem;
    line-height: 1.6;
    opacity: 0.92;
    margin: 0 auto 1.75rem;
    max-width: 36rem;
    font-weight: 500;
}

.about-cta-banner__actions {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 0.75rem;
    justify-content: center;
    max-width: 26rem;
    margin: 0 auto;
}

@media (min-width: 576px) {
    .about-cta-banner__actions {
        flex-direction: row;
        flex-wrap: wrap;
        max-width: none;
    }
}

.about-btn--light {
    background: #fff;
    color: var(--ab-primary-dark);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.about-btn--light:hover {
    color: var(--ab-primary-dark);
    transform: translateY(-2px);
    filter: brightness(1.05);
}

.about-btn--ghost-light {
    background: rgba(255, 255, 255, 0.12);
    border: 2px solid rgba(255, 255, 255, 0.45);
    color: #fff;
}

.about-btn--ghost-light:hover {
    background: rgba(255, 255, 255, 0.22);
    color: #fff;
}
