/* ==========================================================================
   about.css — Styles for the About Us page (about.html)
   ========================================================================== */

/* ── Page Base ───────────────────────────────────── */
.v2-page {
    background: #0e1628;
    color: #f2eefd;
}

/* ── Hero ────────────────────────────────────────── */
.v2-hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 140px 24px 80px;
    background: linear-gradient(135deg, #0e1628 0%, #1a264a 40%, #2e235d 100%);
    position: relative;
    overflow: hidden;
}

.v2-hero::before {
    content: '';
    position: absolute;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(114,127,222,0.12) 0%, transparent 70%);
    top: -100px;
    right: -100px;
    pointer-events: none;
}

.v2-hero-label {
    font-size: 0.75rem;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: #727fde;
    margin-bottom: 1.5rem;
}

.v2-hero h1 {
    font-size: clamp(2.4rem, 6vw, 5rem);
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    color: #fff;
}

.v2-hero h1 em {
    font-style: italic;
    color: #727fde;
}

.v2-hero p {
    font-size: 1.1rem;
    line-height: 1.9;
    max-width: 620px;
    color: rgba(242,238,251,0.75);
    margin-bottom: 2.5rem;
}

/* ── CTA Button ──────────────────────────────────── */
.v2-cta-btn {
    display: inline-block;
    padding: 16px 48px;
    border-radius: 10px;
    background: linear-gradient(135deg, #2e235d, #12548c);
    color: #fff;
    text-decoration: none;
    font-size: 1rem;
    letter-spacing: 1px;
    box-shadow: 0 6px 24px rgba(114,127,222,0.35);
    transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.v2-cta-btn:hover {
    box-shadow: 0 10px 35px rgba(114,127,222,0.6);
    transform: translateY(-3px);
}

/* ── Stats Bar ───────────────────────────────────── */
.v2-stats {
    background: #1a264a;
    padding: 48px 24px;
    display: flex;
    justify-content: center;
    gap: 0;
    flex-wrap: wrap;
}

.v2-stat {
    flex: 1;
    min-width: 160px;
    max-width: 220px;
    text-align: center;
    padding: 20px;
    border-right: 1px solid rgba(114,127,222,0.2);
}

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

.v2-stat-number {
    font-size: 2.4rem;
    font-weight: 900;
    color: #727fde;
    line-height: 1;
    margin-bottom: 6px;
}

.v2-stat-label {
    font-size: 0.8rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: rgba(242,238,251,0.55);
}

/* ── Our Story ───────────────────────────────────── */
.v2-story {
    padding: 100px 24px;
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.v2-story-image {
    position: relative;
}

.v2-story-image img {
    width: 100%;
    border-radius: 20px;
    display: block;
}

.v2-story-image::after {
    content: '';
    position: absolute;
    inset: -12px -12px 12px 12px;
    border: 2px solid rgba(114,127,222,0.3);
    border-radius: 20px;
    z-index: -1;
}

.v2-story-tag {
    font-size: 0.9rem;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: #727fde;
    margin-bottom: 1rem;
}

.v2-story h2 {
    font-size: clamp(1.6rem, 3vw, 2.4rem);
    font-weight: 700;
    color: #fff;
    margin-bottom: 1.8rem;
    line-height: 1.3;
}

.v2-story p {
    font-size: 1rem;
    line-height: 1.9;
    color: rgba(242,238,251,0.72);
    margin-bottom: 1.2rem;
}

.v2-founders {
    display: flex;
    gap: 24px;
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(114,127,222,0.2);
}

.v2-founder {
    flex: 1;
}

.v2-founder-name {
    font-size: 0.95rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 2px;
}

.v2-founder-role {
    font-size: 0.8rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #727fde;
}

/* ── Mission / Vision ────────────────────────────── */
.v2-mv {
    background: #111827;
    padding: 80px 24px;
}

.v2-mv-inner {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2px;
    border-radius: 20px;
    overflow: hidden;
}

.v2-mv-card {
    padding: 60px 48px;
    position: relative;
}

.v2-mv-card.mission {
    background: linear-gradient(135deg, #1a264a, #2e235d);
}

.v2-mv-card.vision {
    background: linear-gradient(135deg, #12548c, #1a264a);
}

.v2-mv-card-icon {
    font-size: 2rem;
    margin-bottom: 1.2rem;
}

.v2-mv-card h3 {
    font-size: 0.72rem;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: rgba(255,255,255,0.5);
    margin-bottom: 1rem;
}

.v2-mv-card p {
    font-size: 1.15rem;
    line-height: 1.8;
    color: #fff;
    font-weight: 300;
}

/* ── Core Values ─────────────────────────────────── */
.v2-values {
    padding: 100px 24px;
    max-width: 1100px;
    margin: 0 auto;
    text-align: center;
}

.v2-values-tag {
    font-size: 0.72rem;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: #727fde;
    margin-bottom: 1rem;
}

.v2-values h2 {
    font-size: clamp(1.6rem, 3vw, 2.4rem);
    color: #fff;
    margin-bottom: 0.8rem;
}

.v2-values-sub {
    font-size: 1.2rem;
    color: rgba(242,238,251,0.6);
    max-width: 540px;
    margin: 0 auto 3.5rem;
    line-height: 1.8;
}

.v2-values-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    list-style: none;
    padding: 0;
}

.v2-value-card {
    background: #1a264a;
    border: 1px solid rgba(114,127,222,0.15);
    border-radius: 16px;
    padding: 36px 24px;
    transition: border-color 0.3s, transform 0.3s;
}

.v2-value-card:hover {
    border-color: rgba(114,127,222,0.5);
    transform: translateY(-6px);
}

.v2-value-icon {
    font-size: 2rem;
    margin-bottom: 1rem;
    display: block;
}

.v2-value-card h4 {
    font-size: 1.4rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 0.5rem;
}

.v2-value-card p {
    font-size: 1rem;
    color: rgba(247, 245, 250, 0.5);
    line-height: 1.6;
}

/* ── CTA Banner ──────────────────────────────────── */
.v2-cta-banner {
    background: linear-gradient(135deg, #2e235d 0%, #12548c 100%);
    padding: 80px 24px;
    text-align: center;
}

.v2-cta-banner h2 {
    font-size: clamp(1.8rem, 4vw, 3rem);
    color: #fff;
    margin-bottom: 1rem;
}

.v2-cta-banner p {
    font-size: 1.1rem;
    color: rgba(247, 245, 250, 0.5);
    max-width: 500px;
    margin: 0 auto 2.5rem;
    line-height: 1.8;
}

.v2-cta-banner .v2-cta-btn {
    background: #fff;
    color: #2e235d;
    box-shadow: 0 6px 24px rgba(0,0,0,0.2);
}

.v2-cta-banner .v2-cta-btn:hover {
    box-shadow: 0 10px 35px rgba(0,0,0,0.3);
}

/* ── Footer overrides ────────────────────────────── */
.v2-page footer {
    background: #0e1628;
}

.v2-page .copyrightText {
    background: #080e1a;
}

/* ── Responsive ──────────────────────────────────── */
@media (max-width: 900px) {
    .v2-story {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .v2-story-image {
        max-width: 400px;
        margin: 0 auto;
    }

    .v2-mv-inner {
        grid-template-columns: 1fr;
    }

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

@media (max-width: 560px) {
    .v2-stat {
        border-right: none;
        border-bottom: 1px solid rgba(114,127,222,0.2);
    }

    .v2-stat:last-child {
        border-bottom: none;
    }

    .v2-values-grid {
        grid-template-columns: 1fr;
    }

    .v2-mv-card {
        padding: 40px 28px;
    }

    .v2-founders {
        flex-direction: column;
        gap: 14px;
    }
}
