/* ========================================================================== */
/* ABOUT US PAGE                                                    */
/* ========================================================================== */

.about-us-wrapper {
    margin: 0;
    padding: 0;
}

/*  section 1: hero */

.about-hero {
    position: relative;
    width: 100%;
    min-height: 100vh;
    margin-left: 0;
    overflow: hidden;
    color: white;
    display: flex;
    align-items: center;
}

    .about-hero::before {
        content: "";
        position: absolute;
        inset: 0;
        background: linear-gradient( 135deg, rgba(2, 42, 70, 0.9), rgba(3, 47, 79, 0.75) );
        z-index: 2;
    }

    .about-hero::after {
        content: "";
        position: absolute;
        bottom: -1px;
        left: 0;
        width: 100%;
        height: 48px;
        background: white;
        border-top-left-radius: 48px;
        border-top-right-radius: 48px;
        z-index: 4;
    }

.about-hero-video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

.about-hero .about-hero-content {
    position: relative;
    z-index: 3;
    max-width: 900px;
    margin: 0 auto;
    padding: 0 40px;
    text-align: center;
}

.about-eyebrow {
    text-transform: uppercase;
    letter-spacing: 0.14rem;
    font-size: 0.85rem;
    font-weight: 600;
    opacity: 0.8;
    margin-bottom: 10px;
}

.about-hero h1 {
    font-size: 2.6rem;
    font-weight: 700;
    line-height: 1.25;
    margin-bottom: 16px;
}

.about-hero .about-hero-text {
    font-size: 1.05rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
    margin-bottom: 28px;
}

/* Actions (exists in HTML but is missing in CSS) */
/* .about-hero-actions { } */

/* Buttons (used in  hero + CTA) */
.about-btn-primary,
.about-btn-ghost {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 24px;
    font-size: 16px;
    border-radius: 999px;
    border: none;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.2s ease;
}

.about-btn-primary {
    background: #f0f4ff;
    color: black;
    font-weight: 600;
}

    .about-btn-primary:hover {
        transform: translateY(-1px);
        box-shadow: 0 10px 35px rgba(0, 0, 0, 0.3);
    }

.about-btn-ghost {
    background: rgba(255,255,255,0.14);
    color: white;
    border: 1px solid rgba(255,255,255,0.25);
}

    .about-btn-ghost:hover {
        transform: translateY(-1px);
        box-shadow: 0 10px 35px rgba(0, 0, 0, 0.3);
    }

/* section: about (two column) */

.about-section {
    max-width: 1100px;
    margin: 120px auto;
}

.about-two-column {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
}

.about-section-title {
    font-size: 1.9rem;
    font-weight: 650;
    color: #032f4f;
    margin-bottom: 18px;
}

.about-section-text {
    font-size: 1.05rem;
    line-height: 1.65;
    color: #48687f;
}

.about-subtitle {
    font-size: 20px;
    font-weight: 600;
    margin-top: 12px;
    margin-bottom: 6px;
    color: #074773;
}

/* section : values (card) */

.about-values-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px;
    margin-top: 24px;
}

.about-value-card {
    background: white;
    padding: 22px;
    border-radius: 10px;
    border: 1px solid rgba(0, 0, 0, 0.08);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.07);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

    .about-value-card:hover {
        transform: translateY(-4px);
        box-shadow: 0 10px 26px rgba(0, 0, 0, 0.12);
    }

.about-values-grid,
.about-value-card {
    position: relative;
    z-index: 10;
}

    .about-value-card h3 {
        font-size: 1.05rem;
        font-weight: 650;
        color: #032f4f;
        margin-bottom: 6px;
    }

    .about-value-card p {
        font-size: 0.9rem;
        line-height: 1.5;
        color: #48687f;
    }


/*  section: technology */

.about-technology-section {
    margin-top: 120px;
}

.about-tech {
    align-items: center;
}

.about-list {
    margin-top: 20px;
    padding-left: 0;
    list-style: none;
}

    .about-list li {
        position: relative;
        padding-left: 24px;
        margin-bottom: 10px;
        font-size: 16px;
        color: #032f4f;
        line-height: 1.6;
    }

        .about-list li::before {
            content: "";
            position: absolute;
            left: 0;
            top: 10px;
            width: 12px;
            height: 2px;
            background: #074773;
            border-radius: 2px;
            opacity: 0.7;
        }

.how-platform-works {
    margin-top: 70px;
}

.vision-board {
    max-width: 420px; 
    width: 100%;
    height: auto;
    display: block;
    margin: 0 auto;
    margin-top: 65px;
}

/*  section: CTA (CURRENTLY NOY BEING USED) */

/* .about-cta {
    width: 100vw;
    margin: 130px auto 0 auto;
    padding: 80px;
    background: linear-gradient(135deg, #032f4f, #0a4b79);
    text-align: center;
    color: white;
    z-index: 10;
    position: relative;
}

.about-cta-content h2 {
    font-size: 32px;
    margin-bottom: 12px;
}

.about-cta-content p {
    font-size: 18px;
    opacity: 0.9;
    margin-bottom: 20px;
}*/

/* CTA actions (exists in HTML bus is missing CSS) */
/* .about-cta-actions { } */

@media (max-width: 991.98px) {
    .about-section {
        margin: 60px 24px;
    }

    .about-two-column {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .about-values-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
}

@media (max-width: 575.98px) {
    .about-values-grid {
        grid-template-columns: 1fr;
    }
    
    .about-hero .about-hero-content {
        padding: 0 24px;
    }
    
    .about-hero h1 {
        font-size: 2rem;
    }
}

