/* ==============================================
   ABOUT PAGE
   ============================================== */

/* Hero */
.abt-hero {
    background: linear-gradient(135deg, #4B2FBB 0%, #5B3EEE 60%, #6D52F0 100%);
    padding: 5rem 1.5rem 4rem;
    text-align: center;
    color: #fff;
    margin: -40px -40px 0;
}

.abt-hero-inner {
    max-width: 720px;
    margin: 0 auto;
}

.abt-eyebrow {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.7);
    margin-bottom: 0.75rem;
}

.abt-hero h1 {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    letter-spacing: -0.02em;
    margin: 0 0 1rem;
    color: #fff;
}

.abt-hero-sub {
    font-size: 1.1rem;
    color: rgba(255,255,255,0.85);
    margin: 0;
    line-height: 1.65;
}

/* Stats row */
.abt-stats {
    background: #fff;
    border-bottom: 1px solid #e5e7eb;
}

.abt-stats-inner {
    max-width: 900px;
    margin: 0 auto;
    padding: 3rem 1.5rem;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    text-align: center;
}

.abt-stat-number {
    font-size: clamp(2rem, 4vw, 2.75rem);
    font-weight: 800;
    color: #5B3EEE;
    line-height: 1;
    margin-bottom: 0.5rem;
}

.abt-stat-label {
    font-size: 0.9rem;
    color: #666;
    line-height: 1.4;
}

/* Sections */
.abt-section {
    padding: 4rem 1.5rem;
}

.abt-section-grey {
    background: #f8f9fc;
}

.abt-container {
    max-width: 760px;
    margin: 0 auto;
}

.abt-section-eyebrow {
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #5B3EEE;
    margin-bottom: 0.5rem;
}

.abt-section h2 {
    font-size: clamp(1.4rem, 3vw, 1.9rem);
    font-weight: 700;
    color: #1a1a2e;
    margin: 0 0 1.25rem;
    letter-spacing: -0.01em;
}

.abt-section p {
    color: #444;
    line-height: 1.75;
    margin: 0 0 1rem;
}

.abt-section p:last-child {
    margin-bottom: 0;
}

.abt-section a {
    color: #5B3EEE;
    text-decoration: none;
}

.abt-section a:hover {
    text-decoration: underline;
}

/* Tagline / closing */
.abt-tagline {
    background: linear-gradient(135deg, #4B2FBB 0%, #5B3EEE 100%);
    padding: 4rem 1.5rem;
    text-align: center;
    margin: 0 -40px -40px;
}

.abt-tagline-inner {
    max-width: 680px;
    margin: 0 auto;
}

.abt-tagline h2 {
    font-size: clamp(1.4rem, 3vw, 1.9rem);
    font-weight: 700;
    color: #fff;
    margin: 0 0 0.75rem;
    letter-spacing: -0.01em;
}

.abt-tagline p {
    font-size: 1.1rem;
    color: rgba(255,255,255,0.85);
    margin: 0 0 2rem;
    line-height: 1.6;
}

.abt-tagline-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.8rem 2rem;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    background: #F28C28;
    color: #fff;
    transition: background 0.2s, transform 0.1s;
}

.abt-tagline-btn:hover {
    background: #d97820;
    color: #fff;
    text-decoration: none;
    transform: translateY(-1px);
}

/* Mobile */
@media (max-width: 600px) {
    .abt-hero {
        margin: -16px -16px 0;
        padding: 4rem 2rem 3rem;
    }

    .abt-stats-inner {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        padding: 2.5rem 1.5rem;
    }

    .abt-stat-number {
        font-size: 2.25rem;
    }

    .abt-tagline {
        margin: 0 -16px -16px;
    }

    .abt-section p,
    .abt-hero-sub,
    .abt-tagline p {
        font-size: 1.05rem;
    }
}
