/* ================================ */
/*  ABOUT PAGE — DEDICATED STYLES   */
/* ================================ */

/* ── HERO ─────────────────────────────────────────── */
.abt-hero {
    min-height: 85vh;
    display: flex;
    align-items: center;
    padding: 160px 8% 100px;
    background: var(--primary);
    position: relative;
    overflow: hidden;
}

/* Giant ghost background text */
.abt-hero__bg-text {
    position: absolute;
    font-family: 'Outfit', sans-serif;
    font-size: clamp(12rem, 30vw, 22rem);
    font-weight: 800;
    color: rgba(0, 242, 255, 0.03);
    right: -2%;
    top: 50%;
    transform: translateY(-50%);
    line-height: 1;
    pointer-events: none;
    user-select: none;
    letter-spacing: -10px;
}

.abt-hero__orb {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
}

.abt-hero__orb--1 {
    width: 500px; height: 500px;
    top: -100px; right: 15%;
    background: radial-gradient(circle, rgba(0, 242, 255, 0.06) 0%, transparent 65%);
}

.abt-hero__orb--2 {
    width: 250px; height: 250px;
    bottom: 50px; left: 5%;
    background: radial-gradient(circle, rgba(0, 242, 255, 0.04) 0%, transparent 65%);
}

.abt-hero__content {
    position: relative;
    z-index: 2;
    max-width: 700px;
}

.abt-hero h1 {
    font-size: clamp(3.5rem, 9vw, 7rem);
    line-height: 0.95;
    margin: 1.5rem 0 2rem;
}

.abt-hero p {
    font-size: 1.15rem;
    color: var(--text-muted);
    max-width: 520px;
    line-height: 1.85;
}

/* ── MISSION STRIP ─────────────────────────────────── */
.abt-mission-strip {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 0;
    background: var(--secondary);
    border-top: 1px solid var(--glass-border);
    border-bottom: 1px solid var(--glass-border);
    padding: 0 8%;
}

.abt-mission-strip__item {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 2.5rem 4rem;
    gap: 6px;
}

.abt-mission-strip__value {
    font-family: 'Outfit', sans-serif;
    font-size: 3rem;
    font-weight: 800;
    line-height: 1;
}

.abt-mission-strip__value span {
    font-size: 1.8rem;
}

.abt-mission-strip__label {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--text-muted);
    text-align: center;
}

.abt-mission-strip__divider {
    width: 1px;
    height: 60px;
    background: var(--glass-border);
}

/* Counter glow — active while counting up */
@keyframes countGlow {
    0%, 100% { filter: drop-shadow(0 0 8px rgba(0, 242, 255, 0.4)); }
    50%       { filter: drop-shadow(0 0 22px rgba(0, 242, 255, 0.85)); }
}

.abt-mission-strip__value.counting {
    animation: countGlow 0.6s ease-in-out infinite;
}

/* The inner number span */
.abt-count {
    display: inline;
}

/* ── OUR STORY ─────────────────────────────────────── */
.abt-story {
    padding: 120px 8%;
    background: var(--primary);
}

.abt-story__label {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 50px;
}

.abt-story__line {
    width: 40px;
    height: 2px;
    background: var(--accent);
    box-shadow: 0 0 8px var(--accent-glow);
}

.abt-story__label span {
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 4px;
    color: var(--accent);
}

.abt-story__body {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
}

.abt-story__text h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    line-height: 1.1;
    margin-bottom: 2rem;
}

.abt-story__text p {
    color: var(--text-muted);
    font-size: 1rem;
    line-height: 1.85;
    margin-bottom: 1.5rem;
}

.abt-story__cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.abt-story__card {
    background: #010a1a;
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    padding: 2rem 1.5rem;
    transition: var(--transition);
}

.abt-story__card:hover {
    border-color: var(--accent);
    transform: translateY(-6px);
    box-shadow: 0 16px 40px rgba(0, 242, 255, 0.06);
}

.abt-story__card i {
    font-size: 1.5rem;
    color: var(--accent);
    margin-bottom: 1rem;
    display: block;
    filter: drop-shadow(0 0 8px var(--accent-glow));
}

.abt-story__card h4 {
    font-size: 1rem;
    margin-bottom: 0.5rem;
    color: #fff;
}

.abt-story__card p {
    font-size: 0.85rem;
    color: var(--text-muted);
    line-height: 1.6;
}

/* ── MISSION & VISION ──────────────────────────────── */
.abt-mv {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
}

.abt-mv__card {
    padding: 100px 8%;
    position: relative;
    overflow: hidden;
}

.abt-mv__card--mission {
    background: #010a1a;
    border-right: 1px solid var(--glass-border);
}

.abt-mv__card--vision {
    background: var(--primary);
}

.abt-mv__icon {
    font-size: 2.5rem;
    color: var(--accent);
    margin-bottom: 2rem;
    filter: drop-shadow(0 0 12px var(--accent-glow));
    display: inline-block;
}

.abt-mv__card h3 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
}

.abt-mv__card p {
    color: var(--text-muted);
    font-size: 1.05rem;
    line-height: 1.85;
    max-width: 480px;
}

.abt-mv__glow {
    position: absolute;
    bottom: -60px; right: -60px;
    width: 250px; height: 250px;
    background: radial-gradient(circle, rgba(0, 242, 255, 0.04) 0%, transparent 65%);
    border-radius: 50%;
    pointer-events: none;
}

/* ── CORE VALUES ───────────────────────────────────── */
.abt-values {
    padding: 120px 8%;
    background: #01040a;
    border-top: 1px solid var(--glass-border);
}

.abt-values__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 24px;
    margin-top: 20px;
}

.abt-value-item {
    background: #010a1a;
    border: 1px solid var(--glass-border);
    border-radius: 24px;
    padding: 3rem 2.5rem;
    position: relative;
    overflow: hidden;
    transition: var(--transition);
}

.abt-value-item:hover {
    border-color: var(--accent);
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(0, 242, 255, 0.06);
}

.abt-value-item__num {
    position: absolute;
    top: -5px; right: 16px;
    font-family: 'Outfit', sans-serif;
    font-size: 5.5rem;
    font-weight: 800;
    color: rgba(0, 242, 255, 0.04);
    line-height: 1;
    pointer-events: none;
    transition: var(--transition);
}

.abt-value-item:hover .abt-value-item__num {
    color: rgba(0, 242, 255, 0.09);
}

.abt-value-item__icon {
    font-size: 2rem;
    color: var(--accent);
    margin-bottom: 1.5rem;
    filter: drop-shadow(0 0 10px var(--accent-glow));
    display: inline-block;
}

.abt-value-item h4 {
    font-size: 1.2rem;
    margin-bottom: 0.8rem;
    color: #fff;
}

.abt-value-item p {
    font-size: 0.93rem;
    color: var(--text-muted);
    line-height: 1.75;
}

/* ── WHY CHOOSE US ─────────────────────────────────── */
.abt-why {
    padding: 120px 8%;
    background: var(--primary);
    border-top: 1px solid var(--glass-border);
}

.abt-why__inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 100px;
    align-items: center;
}

.abt-why__left h2 {
    font-size: clamp(2rem, 4vw, 2.8rem);
    line-height: 1.2;
    margin: 1.5rem 0 1.5rem;
}

.abt-why__left p {
    color: var(--text-muted);
    font-size: 1rem;
    line-height: 1.85;
    margin-bottom: 2.5rem;
}

.abt-why__right {
    display: flex;
    flex-direction: column;
    gap: 28px;
}

.abt-why__feature {
    display: flex;
    gap: 18px;
    align-items: flex-start;
    padding: 1.5rem;
    background: #010a1a;
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    transition: var(--transition);
}

.abt-why__feature:hover {
    border-color: rgba(0, 242, 255, 0.2);
    background: #010e1c;
}

.abt-why__feature-icon {
    font-size: 1.3rem;
    color: var(--accent);
    filter: drop-shadow(0 0 6px var(--accent-glow));
    flex-shrink: 0;
    margin-top: 2px;
}

.abt-why__feature h5 {
    font-size: 1rem;
    margin-bottom: 0.4rem;
    color: #fff;
}

.abt-why__feature p {
    font-size: 0.88rem;
    color: var(--text-muted);
    line-height: 1.6;
}

/* ── RESPONSIVE ─────────────────────────────────────── */
@media (max-width: 900px) {
    .abt-story__body { grid-template-columns: 1fr; gap: 50px; }
    .abt-mv { grid-template-columns: 1fr; }
    .abt-mv__card--mission { border-right: none; border-bottom: 1px solid var(--glass-border); }
    .abt-why__inner { grid-template-columns: 1fr; gap: 50px; }
    .abt-mission-strip { gap: 0; }
    .abt-mission-strip__item { padding: 2rem; }
    .abt-mission-strip__divider { display: none; }
    .abt-story__cards { grid-template-columns: 1fr; }
}
