/* =====================================================
   WHO ARE WE? PAGE STYLES
   ===================================================== */

.who-are-we-page {
    background: #0A0E27;
}

/* ---- HERO SECTION ---- */
.waw-hero {
    padding: 160px 24px 80px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.waw-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(ellipse 60% 50% at 50% 30%, rgba(83, 234, 253, 0.08), transparent),
        radial-gradient(ellipse 40% 40% at 80% 60%, rgba(142, 81, 255, 0.06), transparent);
    pointer-events: none;
}

.waw-hero-inner {
    max-width: 896px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.waw-badge {
    display: inline-flex;
    align-items: center;
    padding: 8px 16px;
    background: rgba(83, 234, 253, 0.1);
    border: 1px solid rgba(83, 234, 253, 0.2);
    border-radius: 9999px;
    margin-bottom: 32px;
}

.waw-badge span {
    font-family: 'Poppins', sans-serif;
    font-weight: 500;
    font-size: 14px;
    line-height: 20px;
    text-align: center;
    letter-spacing: -0.15px;
    color: #53EAFD;
}

.waw-hero-title {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: 72px;
    line-height: 86px;
    text-align: center;
    color: #FFFFFF;
    margin: 0 0 12px;
}

.waw-hero-gradient {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: 72px;
    line-height: 86px;
    text-align: center;
    background: linear-gradient(180deg, #53EAFD 0%, #8EC5FF 50%, #C4B4FF 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin: 0 0 32px;
}

.waw-hero-desc {
    font-family: 'Poppins', sans-serif;
    font-weight: 400;
    font-size: 20px;
    line-height: 32px;
    text-align: center;
    color: #D1D5DC;
    max-width: 746px;
    margin: 0 auto;
}

/* ---- EXPERTISE CARDS ---- */
.waw-expertise {
    padding: 0 24px 80px;
}

.waw-expertise-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    max-width: 1280px;
    margin: 0 auto;
}

.waw-expertise-card {
    background: rgba(10, 14, 39, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 24px;
    padding: 33px;
    position: relative;
    transition: border-color 0.3s ease, transform 0.3s ease;
}

.waw-expertise-card:hover {
    border-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-4px);
}

.waw-card-icon {
    width: 64px;
    height: 64px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 32px;
}

.waw-card-icon.cyan {
    background: rgba(83, 234, 253, 0.1);
    border: 1px solid rgba(83, 234, 253, 0.2);
}

.waw-card-icon.purple {
    background: rgba(142, 81, 255, 0.1);
    border: 1px solid rgba(142, 81, 255, 0.2);
}

.waw-card-icon.lavender {
    background: rgba(196, 180, 255, 0.1);
    border: 1px solid rgba(196, 180, 255, 0.2);
}

.waw-card-icon svg {
    width: 32px;
    height: 32px;
}

.waw-card-icon.cyan svg {
    color: #53EAFD;
}

.waw-card-icon.purple svg {
    color: #8E51FF;
}

.waw-card-icon.lavender svg {
    color: #C4B4FF;
}

.waw-expertise-card h3 {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: 24px;
    line-height: 32px;
    letter-spacing: 0.07px;
    color: #FFFFFF;
    margin: 0 0 16px;
}

.waw-expertise-card p {
    font-family: 'Poppins', sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 26px;
    letter-spacing: -0.31px;
    color: #99A1AF;
    margin: 0 0 24px;
}

.waw-checklist {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.waw-checklist li {
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: 'Poppins', sans-serif;
    font-weight: 400;
    font-size: 14px;
    line-height: 20px;
    letter-spacing: -0.15px;
    color: rgba(255, 255, 255, 0.8);
}

.waw-checklist li svg {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
}

.waw-checklist.cyan svg {
    color: #53EAFD;
}

.waw-checklist.purple svg {
    color: #8E51FF;
}

.waw-checklist.lavender svg {
    color: #C4B4FF;
}

/* ---- IMPACT SECTION ---- */
.waw-impact {
    padding: 80px 24px 40px;
    text-align: center;
}

.waw-impact-inner {
    max-width: 1232px;
    margin: 0 auto;
}

.waw-impact-title {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: 48px;
    line-height: 58px;
    text-align: center;
    background: linear-gradient(90deg, #53EAFD 0%, #8EC5FF 50%, #C4B4FF 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin: 0 0 24px;
}

.waw-impact-subtitle {
    font-family: 'Poppins', sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    text-align: center;
    letter-spacing: -0.31px;
    color: #99A1AF;
    margin: 0 0 64px;
}

.waw-stats-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 24px;
}

.waw-stat-card {
    background: #0A0E27;
    border-radius: 16px;
    padding: 24px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: border-color 0.3s ease, transform 0.3s ease;
}

.waw-stat-card:hover {
    border-color: rgba(83, 234, 253, 0.2);
    transform: translateY(-4px);
}

.waw-stat-icon {
    width: 56px;
    height: 56px;
    background: rgba(83, 234, 253, 0.1);
    border-radius: 9999px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.waw-stat-icon svg {
    width: 32px;
    height: 32px;
    color: #53EAFD;
}

.waw-stat-number {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: 48px;
    line-height: 48px;
    text-align: center;
    color: #FFFFFF;
}

.waw-stat-label {
    font-family: 'Poppins', sans-serif;
    font-weight: 500;
    font-size: 14px;
    line-height: 20px;
    text-align: center;
    text-transform: uppercase;
    color: #99A1AF;
}

/* ---- PLATFORM SECTION ---- */
.waw-platform {
    padding: 48px 24px 80px;
}

.waw-platform-card {
    max-width: 1232px;
    margin: 0 auto;
    background: linear-gradient(180deg, #0A0E27 0%, #1A1F4E 100%);
    border-radius: 24px;
    padding: 48px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.waw-platform-card::before {
    content: '';
    position: absolute;
    width: 500px;
    height: 500px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(83, 234, 253, 0.1);
    filter: blur(100px);
    border-radius: 9999px;
    pointer-events: none;
}

.waw-platform-content {
    position: relative;
    z-index: 1;
    max-width: 896px;
    margin: 0 auto;
}

.waw-platform-label {
    font-family: 'Poppins', sans-serif;
    font-weight: 500;
    font-size: 20px;
    line-height: 28px;
    text-align: center;
    text-transform: uppercase;
    color: #53EAFD;
    margin: 0 0 16px;
}

.waw-platform-title {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: 48px;
    line-height: 58px;
    text-align: center;
    color: #FFFFFF;
    margin: 0 0 24px;
}

.waw-platform-desc {
    font-family: 'Poppins', sans-serif;
    font-weight: 400;
    font-size: 20px;
    line-height: 32px;
    text-align: center;
    color: #D1D5DC;
    margin: 0 0 48px;
}

.waw-features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.waw-feature-item {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    padding: 24px 16px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    transition: border-color 0.3s ease, transform 0.3s ease;
}

.waw-feature-item:hover {
    border-color: rgba(83, 234, 253, 0.2);
    transform: translateY(-4px);
}

.waw-feature-icon {
    width: 48px;
    height: 48px;
    background: rgba(83, 234, 253, 0.1);
    border-radius: 9999px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.waw-feature-icon svg {
    width: 24px;
    height: 24px;
    color: #53EAFD;
}

.waw-feature-text {
    font-family: 'Poppins', sans-serif;
    font-weight: 500;
    font-size: 16px;
    line-height: 24px;
    text-align: center;
    color: #FFFFFF;
}

/* ---- RESPONSIVE ---- */
@media (max-width: 1024px) {

    .waw-hero-title,
    .waw-hero-gradient {
        font-size: 48px;
        line-height: 58px;
    }

    .waw-expertise-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
    }

    .waw-stats-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .waw-impact-title {
        font-size: 36px;
        line-height: 44px;
    }

    .waw-platform-title {
        font-size: 36px;
        line-height: 44px;
    }

    .waw-features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .waw-hero {
        padding: 120px 24px 60px;
    }

    .waw-hero-title,
    .waw-hero-gradient {
        font-size: 36px;
        line-height: 44px;
    }

    .waw-hero-desc {
        font-size: 16px;
        line-height: 26px;
    }

    .waw-stats-grid {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 24px;
    }

    .waw-stat-card {
        width: calc(50% - 12px);
    }

    .waw-stat-number {
        font-size: 36px;
        line-height: 36px;
    }

    .waw-platform-card {
        padding: 32px 24px;
    }

    .waw-platform-title {
        font-size: 28px;
        line-height: 36px;
    }

    .waw-platform-desc {
        font-size: 16px;
        line-height: 26px;
    }
}

@media (max-width: 480px) {

    .waw-hero-title,
    .waw-hero-gradient {
        font-size: 28px;
        line-height: 36px;
    }

    .waw-stats-grid {
        grid-template-columns: 1fr 1fr;
    }

    .waw-features-grid {
        grid-template-columns: 1fr 1fr;
    }

    .waw-expertise-card h3 {
        font-size: 20px;
    }

    .waw-impact-title {
        font-size: 28px;
        line-height: 36px;
    }

    .waw-platform-title {
        font-size: 24px;
        line-height: 32px;
    }
}