/* ========== About Page — Dashboard-Inspired Premium Design ========== */
@import url('https://fonts.googleapis.com/css2?family=DM+Sans:wght@400;500;600;700&family=Sora:wght@700;800&display=swap');

:root {
    --ab-primary: #7c3aed;
    --ab-light: #a855f7;
    --ab-pale: #f7f3ff;
    --ab-pale-2: #ede9fe;
    --ab-grad: linear-gradient(135deg, #7c3aed 0%, #a855f7 100%);
    --ab-dark: #1e1035;
    --ab-gray: #64748b;
    --ab-bg: #ffffff;
    --ab-white: #ffffff;
    --ab-shadow: 0 4px 32px rgba(124, 58, 237, 0.05);
    --ab-radius: 20px;
    --ab-text: #1e1035;
}

/* Override global body background for this page */
body {
    background-color: #fff !important;
}


/* ── Reset for this page ───────────────────────────── */
.text-gradient {
    background: var(--ab-grad);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: inline;
}

/* ── Hero — Light Premium Style ───────────────────── */
.hero-section {
    background: #ffffff;
    min-height: calc(75vh - 80px);
    padding: 130px 0 70px;
    position: relative;
    overflow: hidden;
    margin-top: 80px;
}

/* Gradient mesh background removed */
.hero-section::before {
    display: none;
}

/* Dot grid removed */
.hero-section::after {
    display: none;
}

.hero-content {
    position: relative;
    z-index: 2;
}

/* Badge inside light hero */
.hero-content .section-badge {
    background: rgba(124, 58, 237, 0.08);
    color: #7c3aed;
    border: 1px solid rgba(124, 58, 237, 0.15);
    font-size: 0.75rem;
    font-weight: 600;
}

/* Decorative shapes */
.text-shape {
    display: none;
}

.hero-shape {
    display: none;
}

.hero-dots {
    display: none;
}

.hero-title {
    font-family: 'Sora', sans-serif;
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 18px;
    color: var(--ab-text);
}

.hero-description {
    font-size: 1rem;
    color: var(--ab-gray);
    margin-bottom: 36px;
    max-width: 460px;
    line-height: 1.8;
}

.hero-buttons {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
}

.hero-buttons .btn-primary {
    background: var(--ab-grad);
    border: none;
    padding: 13px 28px;
    font-weight: 700;
    border-radius: 12px;
    font-size: 0.93rem;
    box-shadow: 0 4px 18px rgba(124, 58, 237, 0.3);
    transition: all 0.22s ease;
}

.hero-buttons .btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 28px rgba(124, 58, 237, 0.4);
}

.hero-buttons .btn-outline-dark {
    border: 2px solid var(--ab-text);
    color: var(--ab-text);
    background: transparent;
    padding: 13px 28px;
    font-weight: 600;
    border-radius: 12px;
    font-size: 0.93rem;
    transition: all 0.22s ease;
}

.hero-buttons .btn-outline-dark:hover {
    background: var(--ab-text);
    color: #fff;
    border-color: var(--ab-text);
    transform: translateY(-2px);
}

/* Hero image — dashboard screenshot vibe */
.hero-image {
    position: relative;
    z-index: 2;
}

.hero-img-wrapper {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-circle {
    display: none;
}

.main-hero-img {
    position: relative;
    width: 100%;
    max-width: 460px;
    height: auto;
    object-fit: contain;
    border-radius: 20px;
    z-index: 1;
}

/* ── KPI Stats Row ─────────────────────────────────── */
.about-stats-section {
    background: var(--ab-white);
    padding: 0 0 60px;
    /* space below cards */
    margin-top: -30px;
    /* nice overlap with hero section */
    position: relative;
    z-index: 10;
}

.about-kpi-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.about-kpi-item {
    padding: 32px 28px;
    text-align: center;
    background: #fff;
    border-radius: 16px;
    border: 1px solid #f0eafa;
    box-shadow: var(--ab-shadow);
}

.about-kpi-icon {
    width: 48px;
    height: 48px;
    background: var(--ab-pale);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: var(--ab-primary);
    margin: 0 auto 14px;
}

.about-kpi-value {
    font-family: 'Sora', sans-serif;
    font-size: 2rem;
    font-weight: 800;
    color: var(--ab-text);
    line-height: 1;
    margin-bottom: 6px;
}

.about-kpi-label {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--ab-gray);
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

@media (max-width: 768px) {
    .about-kpi-row {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }
}

/* ── Platform Overview ─────────────────────────────── */
.platform-overview-section {
    padding: 80px 0;
    background: var(--ab-white);
}

.platform-overview-section .section-header {
    margin-bottom: 50px;
}

.about-section-wrapper {
    background: #fff;
    border-radius: 24px;
    padding: 40px;
    box-shadow: var(--ab-shadow);
    border: 1px solid #f0eafa;
}

.platform-content {
    background: transparent;
    border: none;
    box-shadow: none;
    padding: 0;
}

.platform-image {
    border-radius: 16px;
    overflow: hidden;
}

.platform-info {
    padding-left: 40px;
}

.platform-info h3 {
    font-family: 'Sora', sans-serif;
    font-size: 1.65rem;
    font-weight: 800;
    color: var(--ab-text);
    margin-bottom: 16px;
    line-height: 1.3;
}

.platform-info p {
    color: var(--ab-gray);
    margin-bottom: 16px;
    line-height: 1.8;
    font-size: 0.95rem;
}

/* ── Section Headers ───────────────────────────────── */
.section-header {
    margin-bottom: 50px;
}

.section-header.text-center {
    text-align: center;
}

.section-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: var(--ab-pale);
    color: var(--ab-primary);
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: 14px;
}

.section-title {
    font-family: 'Sora', sans-serif;
    font-size: clamp(1.6rem, 3.5vw, 2.2rem);
    font-weight: 800;
    color: var(--ab-text);
    margin-bottom: 12px;
    line-height: 1.25;
}

.section-desc {
    color: var(--ab-gray);
    font-size: 0.95rem;
    max-width: 550px;
    margin: 0 auto;
    line-height: 1.7;
}

/* ── Features Section ──────────────────────────────── */
.features-section {
    padding: 80px 0;
    background: var(--ab-white);
}

/* Tab Pills — dashboard style */
.filter-buttons {
    display: flex !important;
    gap: 8px;
    flex-wrap: wrap;
    justify-content: center;
    width: 100%;
    background: var(--ab-pale);
    padding: 6px;
    border-radius: 14px;
    max-width: 520px;
    margin: 0 auto 40px;
}

.filter-btn {
    flex: 1;
    padding: 10px 20px;
    border: none;
    background: transparent;
    border-radius: 10px;
    color: var(--ab-gray);
    font-weight: 600;
    font-size: 0.88rem;
    font-family: 'DM Sans', sans-serif;
    cursor: pointer;
    transition: all 0.22s ease;
    white-space: nowrap;
}

.filter-btn:hover {
    color: var(--ab-primary);
    background: rgba(124, 58, 237, 0.07);
}

.filter-btn.active {
    background: var(--ab-white);
    color: var(--ab-primary);
    font-weight: 700;
    box-shadow: 0 2px 12px rgba(124, 58, 237, 0.12);
}

/* Feature Cards — dashboard widget style */
.feature-card {
    background: var(--ab-white);
    border-radius: 16px;
    padding: 28px;
    height: 100%;
    transition: all 0.22s ease;
    border: 1px solid #f0eafa;
    box-shadow: var(--ab-shadow);
    position: relative;
    overflow: hidden;
    outline: 1px solid transparent;
    outline-offset: 0;
}

.feature-icon {
    width: 52px;
    height: 52px;
    background: var(--ab-pale);
    color: var(--ab-primary);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.35rem;
    margin-bottom: 18px;
    transition: all 0.22s ease;
}

.feature-card:hover .feature-icon {
    background: var(--ab-grad);
    color: #fff;
}

.feature-card h4 {
    font-family: 'Sora', sans-serif;
    font-size: 1rem;
    font-weight: 700;
    color: var(--ab-text);
    margin-bottom: 10px;
}

.feature-card p {
    color: var(--ab-gray);
    line-height: 1.65;
    font-size: 0.88rem;
    margin: 0;
}

/* ── How It Works ──────────────────────────────────── */
.how-it-works-section {
    padding: 80px 0;
    background: var(--ab-white);
}

.process-timeline {
    margin-top: 50px;
}

.process-steps {
    margin-bottom: 0;
}

.process-step {
    position: relative;
    padding: 32px 24px;
    text-align: center;
    background: #fff;
    border-radius: 16px;
    border: 1px solid #f0eafa;
    box-shadow: var(--ab-shadow);
    transition: all 0.25s ease;
    height: 100%;
}

.process-step:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 32px rgba(124, 58, 237, 0.12);
    border-color: #ddd6fe;
}

.step-number {
    width: 48px;
    height: 48px;
    background: var(--ab-grad);
    color: #fff;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Sora', sans-serif;
    font-size: 1.1rem;
    font-weight: 800;
    margin: 0 auto 18px;
    box-shadow: 0 4px 16px rgba(124, 58, 237, 0.25);
    transition: all 0.22s ease;
}

.process-step:hover .step-number {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 8px 24px rgba(124, 58, 237, 0.35);
}

.step-content {
    text-align: center;
    padding: 0 10px;
}

.step-content h3 {
    font-family: 'Sora', sans-serif;
    font-size: 1rem;
    font-weight: 700;
    color: var(--ab-text);
    margin-bottom: 10px;
}

.step-content p {
    color: var(--ab-gray);
    line-height: 1.65;
    font-size: 0.875rem;
}

/* ── Mission & Vision ──────────────────────────────── */
.mission-vision-section {
    padding: 80px 0;
    background: var(--ab-white);
}

.mission-vision-card {
    background: var(--ab-white);
    border-radius: var(--ab-radius);
    padding: 40px;
    height: 100%;
    box-shadow: var(--ab-shadow);
    border: 1px solid #f0eafa;
    transition: all 0.25s ease;
}

.mission-vision-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 16px 48px rgba(124, 58, 237, 0.12);
    border-color: #ddd6fe;
}

.card-icon {
    width: 64px;
    height: 64px;
    background: var(--ab-pale);
    color: var(--ab-primary);
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.7rem;
    margin-bottom: 24px;
    position: relative;
    z-index: 1;
    transition: all 0.22s ease;
}

.mission-vision-card:hover .card-icon {
    background: var(--ab-grad);
    color: #fff;
}

.mission-vision-card h3 {
    font-family: 'Sora', sans-serif;
    font-size: 1.35rem;
    font-weight: 800;
    color: var(--ab-text);
    margin-bottom: 16px;
    position: relative;
    z-index: 1;
}

.mission-vision-card p {
    color: var(--ab-gray);
    margin-bottom: 14px;
    line-height: 1.8;
    font-size: 0.92rem;
    position: relative;
    z-index: 1;
}

/* ── CTA Section ───────────────────────────────────── */
.cta-section {
    padding: 70px 0;
    background: var(--ab-white);
}

.cta-wrapper {
    background: var(--ab-dark);
    border-radius: var(--ab-radius);
    padding: 56px 60px;
    color: #fff;
    position: relative;
    overflow: hidden;
}

.cta-wrapper::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 500px 400px at 80% 50%, rgba(124, 58, 237, 0.5) 0%, transparent 65%),
        radial-gradient(ellipse 300px 300px at 5% 20%, rgba(167, 139, 250, 0.2) 0%, transparent 60%);
    pointer-events: none;
}

.cta-wrapper::after {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px);
    background-size: 28px 28px;
    pointer-events: none;
}

.cta-wrapper h2 {
    font-family: 'Sora', sans-serif;
    font-size: 1.8rem;
    font-weight: 800;
    margin-bottom: 10px;
    position: relative;
    z-index: 1;
}

.cta-wrapper p {
    opacity: 0.8;
    font-size: 0.97rem;
    line-height: 1.7;
    position: relative;
    z-index: 1;
}

.cta-wrapper .btn-light {
    background: #fff;
    color: var(--ab-primary);
    font-weight: 700;
    padding: 13px 28px;
    border-radius: 12px;
    font-size: 0.93rem;
    position: relative;
    z-index: 1;
    transition: all 0.22s ease;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
}

.cta-wrapper .btn-light:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 28px rgba(0, 0, 0, 0.2);
}

/* ── Responsive ────────────────────────────────────── */

/* KPI row: 2 columns at tablet */
@media (max-width: 768px) {
    .about-kpi-row {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }
}

/* Tablet */
@media (max-width: 991px) {
    .hero-section {
        padding: 100px 0 60px;
    }

    .platform-content {
        padding: 32px 24px;
    }

    .platform-info {
        padding-left: 0;
        margin-top: 32px;
    }

    .cta-wrapper {
        padding: 40px 30px;
    }

    .cta-wrapper .text-lg-end {
        text-align: center !important;
        margin-top: 20px;
    }
}

/* Mobile */
@media (max-width: 768px) {
    .about-section-wrapper {
        padding: 24px 16px;
        border-radius: 16px;
    }

    .hero-section {
        padding: 90px 0 50px;
        min-height: auto;
    }

    .hero-title {
        font-size: 1.9rem;
    }

    .main-hero-img {
        max-width: 100%;
    }

    .filter-btn {
        font-size: 0.8rem;
        padding: 9px 14px;
    }

    .cta-wrapper {
        padding: 32px 24px;
    }

    .mission-vision-card {
        padding: 28px 24px;
    }
}

/* Small mobile */
@media (max-width: 576px) {
    .about-section-wrapper {
        padding: 16px 12px;
        border-radius: 12px;
    }

    .hero-section {
        padding: 80px 0 40px;
        min-height: auto;
    }

    .hero-title {
        font-size: 1.6rem;
    }

    .hero-description {
        font-size: 0.88rem;
        max-width: 100%;
    }

    .hero-buttons {
        flex-direction: column;
        gap: 8px;
    }

    .hero-buttons .btn-primary,
    .hero-buttons .btn-outline-dark {
        width: 100%;
        text-align: center;
        justify-content: center;
    }

    /* KPI: single column on very small screens */
    .about-kpi-row {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }

    .about-kpi-item {
        padding: 20px 14px;
    }

    .about-kpi-value {
        font-size: 1.6rem;
    }

    .about-kpi-label {
        font-size: 0.72rem;
    }

    .platform-overview-section,
    .features-section,
    .how-it-works-section,
    .mission-vision-section {
        padding: 50px 0;
    }

    .platform-content {
        padding: 20px 16px;
        border-radius: 16px;
    }

    .platform-info h3 {
        font-size: 1.3rem;
    }

    .platform-info p {
        font-size: 0.9rem;
    }

    .feature-card {
        padding: 20px;
    }

    .feature-icon {
        width: 44px;
        height: 44px;
        font-size: 1.15rem;
        margin-bottom: 14px;
    }

    .feature-card h4 {
        font-size: 0.95rem;
    }

    .process-step {
        padding: 22px 16px;
    }

    .step-number {
        width: 40px;
        height: 40px;
        font-size: 0.95rem;
        margin-bottom: 14px;
    }

    .step-content h3 {
        font-size: 0.95rem;
    }

    .step-content p {
        font-size: 0.82rem;
    }

    .mission-vision-card {
        padding: 22px 18px;
    }

    .mission-vision-card h3 {
        font-size: 1.15rem;
    }

    .card-icon {
        width: 52px;
        height: 52px;
        font-size: 1.4rem;
        margin-bottom: 18px;
    }

    .cta-section {
        padding: 40px 0;
    }

    .cta-wrapper {
        padding: 28px 20px;
        border-radius: 16px;
    }

    .cta-wrapper h2 {
        font-size: 1.4rem;
    }

    .cta-wrapper p {
        font-size: 0.9rem;
    }

    .cta-wrapper .btn-light {
        width: 100%;
        text-align: center;
        justify-content: center;
    }

    /* Tab pills: allow wrapping on very small screens */
    .filter-buttons {
        max-width: 100%;
        border-radius: 10px;
    }

    .filter-btn {
        font-size: 0.78rem;
        padding: 8px 10px;
        white-space: normal;
        text-align: center;
    }
}
.animate-in {
    opacity: 1 !important;
    transform: translateY(0) !important;
}