/* Additional styles for About page sections */

/* ============================================================
   OUR COMPANY — Open layout, no glass box
   ============================================================ */
.our-company {
    padding: 4.5rem 2rem;
    text-align: center;
    color: #EBEBEB;
    border-top: 1px solid rgba(255, 255, 255, 0.07);
    background: linear-gradient(
        135deg,
        rgba(123, 68, 193, 0.22) 0%,
        rgba(80, 40, 150, 0.18) 50%,
        rgba(30, 150, 252, 0.12) 100%
    );
    border-top: 1px solid rgba(123, 68, 193, 0.25);
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    border-radius: 0;
    box-shadow: none;
    margin-bottom: 0;
}

.our-company h2 {
    font-size: 2.5rem;
    margin-bottom: 0.75rem;
    color: #EBEBEB;
    text-shadow: 1px 2px 6px rgba(0, 0, 0, 0.6);
}

.our-company > p {
    font-size: 1.1rem;
    color: rgba(235, 235, 235, 0.7);
    margin-bottom: 2.5rem;
    max-width: 640px;
    margin-left: auto;
    margin-right: auto;
}

.company-links {
    text-align: left;
    max-width: 720px;
    margin: 0 auto;
}

.company-links p {
    font-size: 1.05rem;
    margin-bottom: 0;
    color: rgba(235, 235, 235, 0.9);
    padding: 1rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    line-height: 1.6;
}

.company-links p:last-child {
    border-bottom: none;
}

.company-links a {
    color: #9AD5CA;
    text-decoration: none;
    font-weight: 600;
}

.company-links a:hover {
    color: #EBEBEB;
    text-decoration: underline;
}

/* ============================================================
   AI COWORKERS — Team section matching who section style
   ============================================================ */
.ai-coworkers {
    border-top: solid 1px #32303180;
    color: white;
    text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.7);
    padding: 4rem 2rem;
    text-align: center;
    background: rgba(30, 150, 252, 0.502);
}

.ai-coworkers h2 {
    font-size: 2.5rem;
    color: #EBEBEB;
    text-shadow: 1px 2px 6px rgba(0, 0, 0, 0.6);
    margin-bottom: 1rem;
    padding: 0 1.75rem .75rem .75rem;
}

.ai-coworkers .people-card img {
    width: 100%;
    border-radius: 0.5rem;
}

.ai-intro {
    font-size: 1.15rem;
    color: rgba(235, 235, 235, 0.9);
    max-width: 720px;
    margin: 0 auto 3rem;
    line-height: 1.6;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
}

.ai-coworkers-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}

/* ============================================================
   JOIN US — Full-width CTA band
   ============================================================ */
.join-us {
    padding: 5rem 2rem;
    text-align: center;
    color: #EBEBEB;
    background: linear-gradient(
        135deg,
        rgba(123, 68, 193, 0.22) 0%,
        rgba(30, 150, 252, 0.14) 50%,
        rgba(123, 68, 193, 0.22) 100%
    );
    border-top: 1px solid rgba(255, 255, 255, 0.07);
    border-radius: 0;
    box-shadow: none;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    margin: 0;
}

.join-us h2 {
    font-size: 2.5rem;
    color: #EBEBEB;
    text-shadow: 1px 2px 6px rgba(0, 0, 0, 0.5);
    margin-bottom: 1rem;
}

.join-us p {
    font-size: 1.15rem;
    color: rgba(235, 235, 235, 0.82);
    max-width: 520px;
    margin: 0 auto 2.5rem;
    text-shadow: none;
    line-height: 1.75;
}

/* ============================================================
   CTAs (shared hero + join us)
   ============================================================ */
.join-ctas, .hero-ctas {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
    margin-top: 2rem;
}

.join-ctas .btn, .hero-ctas .btn {
    padding: 0.85rem 2rem;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 0.5rem;
    text-decoration: none;
    transition: all 0.25s ease;
    text-shadow: none;
    letter-spacing: 0.01em;
}

.btn-brand-primary {
    background: linear-gradient(135deg, #1e96fc 0%, #7b44c1 100%);
    color: white;
    border: none;
}

.btn-brand-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(123, 68, 193, 0.45);
    color: white;
    text-decoration: none;
}

.btn-outline-light {
    background: transparent;
    color: rgba(235, 235, 235, 0.88);
    border: 1.5px solid rgba(235, 235, 235, 0.3);
}

.btn-outline-light:hover {
    background: rgba(235, 235, 235, 0.07);
    border-color: #9AD5CA;
    color: #9AD5CA;
    transform: translateY(-2px);
    text-decoration: none;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 768px) {
    .our-company, .join-us {
        padding: 3rem 1.5rem;
    }

    .our-company h2, .join-us h2 {
        font-size: 2rem;
    }

    .join-ctas, .hero-ctas {
        flex-direction: column;
        align-items: center;
    }

    .join-ctas .btn, .hero-ctas .btn {
        width: 100%;
        max-width: 260px;
    }

    .company-links {
        text-align: center;
    }

    .company-links p {
        text-align: left;
    }
}
