/* ============================================
   ABOUT PAGE — Intro, Stats, Values, Team,
   Page Hero
   Loaded ONLY on the About page
   ============================================ */

/* ───────────────── Shared Section Helpers ───────────────── */
.section-label {
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: #ff6b00;
    margin-bottom: 12px;
    display: block;
}

.section-heading {
    font-size: clamp(1.7rem, 3vw, 2.4rem);
    font-weight: 800;
    line-height: 1.2;
    color: #0d1526;
    letter-spacing: -0.5px;
}

.section-heading span {
    color: #ff6b00;
}

.section-body {
    font-size: 0.97rem;
    line-height: 1.78;
    color: #4a5568;
}

.section-divider {
    width: 48px;
    height: 3px;
    background: #ff6b00;
    border-radius: 2px;
    margin: 20px 0;
}

/* ───────────────── Page Hero ───────────────── */
.page-hero {
    background: linear-gradient(135deg, #1a1a2e, #16213e);
    color: white;
    padding: 80px 0;
    text-align: center;
}

.page-hero-eyebrow {
    font-family: 'Share Tech Mono', monospace;
    font-size: 12px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: #ff6b00;
    margin-bottom: 16px;
}

.page-hero h1 {
    font-size: clamp(36px, 5vw, 60px);
    font-weight: 700;
    color: #ffffff;
    font-family: 'Rajdhani', sans-serif;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

/* ───────────────── Intro ───────────────── */
.about-intro {
    padding: 90px 0;
    background: #fff;
}

.about-intro-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 72px;
    align-items: center;
}

.about-intro-visual {
    height: 420px;
    border-radius: 12px;
    overflow: hidden;
}

.about-intro-visual-bg {
    width: 100%;
    height: 100%;
    background: linear-gradient(145deg, #0d1526, #1a3a6e, #0d2a4a);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.about-intro-visual-bg::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 30% 40%,
            rgba(255, 107, 0, 0.15),
            transparent 60%);
}

.about-gear {
    width: 200px;
    height: 200px;
    opacity: 0.22;
    animation: gearSpin 20s linear infinite;
}

@keyframes gearSpin {
    to {
        transform: rotate(360deg);
    }
}

.about-intro-badge {
    position: absolute;
    bottom: 28px;
    left: 28px;
    background: #ff6b00;
    color: #fff;
    padding: 14px 20px;
    border-radius: 8px;
    font-weight: 700;
    font-size: 0.82rem;
    line-height: 1.4;
    box-shadow: 0 8px 24px rgba(255, 107, 0, 0.4);
}

.about-intro-badge strong {
    display: block;
    font-size: 2.2rem;
    font-weight: 900;
    line-height: 1;
    margin-bottom: 4px;
}

.about-intro-text {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

/* ───────────────── Stats ───────────────── */
.about-stats {
    background: #0d1526;
    padding: 60px 0;
}

.about-stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
}

.about-stat {
    text-align: center;
    padding: 24px 16px;
    border-right: 1px solid rgba(255, 255, 255, 0.08);
}

.about-stat:last-child {
    border-right: none;
}

.about-stat-number {
    font-size: 3.2rem;
    font-weight: 900;
    color: #ff6b00;
    letter-spacing: -2px;
    line-height: 1;
    margin-bottom: 10px;
}

.about-stat-label {
    font-size: 0.72rem;
    color: rgba(255, 255, 255, 0.5);
    text-transform: uppercase;
    letter-spacing: 0.14em;
    font-weight: 600;
}

/* ───────────────── Values ───────────────── */
.about-values {
    padding: 90px 0;
    background: #f8fafc;
}

.about-values-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 72px;
    align-items: start;
}

.about-values-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.about-value-card {
    display: flex;
    gap: 16px;
    align-items: flex-start;
    background: #fff;
    border: 1px solid #e4eaf3;
    border-radius: 10px;
    padding: 20px;
    transition: transform 0.2s, box-shadow 0.2s;
}

.about-value-card:hover {
    transform: translateX(5px);
    box-shadow: 0 6px 24px rgba(0, 0, 0, 0.07);
}

.about-value-icon {
    width: 44px;
    height: 44px;
    min-width: 44px;
    border-radius: 10px;
    background: linear-gradient(135deg, #ff6b00, #ff9040);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
}

.about-value-body h4 {
    font-size: 0.9rem;
    font-weight: 700;
    color: #0d1526;
    margin-bottom: 5px;
}

.about-value-body p {
    font-size: 0.82rem;
    color: #64748b;
    line-height: 1.65;
}

/* ───────────────── Team ───────────────── */
.about-team {
    padding: 90px 0;
    background: #fff;
}

.about-team-header {
    text-align: center;
    margin-bottom: 52px;
}

.about-team-header .section-body {
    max-width: 520px;
    margin: 14px auto 0;
}

.about-team-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.team-card {
    border: 1px solid #e4eaf3;
    border-radius: 12px;
    overflow: hidden;
    text-align: center;
    transition: transform 0.25s, box-shadow 0.25s;
}

.team-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.1);
}

/* ───────────────── Responsive ───────────────── */
@media (max-width: 960px) {

    .about-intro-grid,
    .about-values-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .about-intro-visual {
        height: 280px;
    }

    .about-stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .about-team-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .about-team-grid {
        grid-template-columns: 1fr;
    }
}