/* ================================================================
   LOMCOS — Team Page (Corporate Elite Light)
   Leadership & Founders
   ================================================================ */

:root {
    --team-bg: #FFFFFF;
    --team-soft: #F8FAFC;
    --member-radius: 24px;
    --member-shadow: 0 10px 40px rgba(15, 23, 42, 0.04);
    --member-hover: 0 30px 60px rgba(15, 23, 42, 0.1);
}

/* ----------------------------------------------------------------
   1. TEAM HERO
   ---------------------------------------------------------------- */
.team-hero {
    padding: 160px 0 100px;
    background: #FFFFFF;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.team-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 50% -20%, rgba(37, 99, 235, 0.05) 0%, transparent 70%);
    pointer-events: none;
}

.team-hero .section-pill {
    margin-bottom: 24px;
}

.team-hero h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 800;
    color: #0F172A;
    margin-bottom: 24px;
    letter-spacing: -0.03em;
}

.team-hero p {
    font-size: 1.15rem;
    color: #64748B;
    max-width: 650px;
    margin: 0 auto;
    line-height: 1.7;
}

/* ----------------------------------------------------------------
   2. FOUNDERS SECTION
   ---------------------------------------------------------------- */
.founders-section {
    padding: 120px 0;
    background: #FFFFFF;
    position: relative;
}

.founder-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 48px;
    max-width: 1000px;
    margin: 60px auto 0;
}

.founder-card {
    position: relative;
    border-radius: 40px;
    overflow: hidden;
    aspect-ratio: 4 / 5;
    background: #F1F5F9;
    transition: all 0.6s cubic-bezier(0.19, 1, 0.22, 1);
    border: 1px solid rgba(15, 23, 42, 0.05);
}

.founder-card:hover {
    transform: translateY(-20px);
    box-shadow: 0 50px 100px rgba(15, 23, 42, 0.1);
}

.founder-img-wrap {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

.founder-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s ease;
}

.founder-card:hover .founder-img-wrap img {
    transform: scale(1.1);
}

.card-plus {
    position: absolute;
    top: 24px;
    right: 24px;
    width: 40px;
    height: 40px;
    background: rgba(15, 23, 42, 0.2);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.2rem;
    z-index: 10;
}

.founder-badge {
    position: absolute;
    bottom: 32px;
    left: 32px;
    right: 32px;
    background: #FFFFFF;
    border-radius: 24px;
    padding: 24px 32px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    box-shadow: 0 20px 40px rgba(15, 23, 42, 0.1);
    z-index: 5;
}

.badge-text h4 {
    font-size: 1.25rem;
    font-weight: 800;
    color: #0F172A;
    margin-bottom: 4px;
}

.badge-text span {
    font-size: 0.9rem;
    font-weight: 600;
    color: #64748B;
}

.badge-icon {
    width: 44px;
    height: 44px;
    background: #0F172A;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.1rem;
}

.fs-link {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: #F8FAFC;
    border: 1px solid #E2E8F0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #64748B;
    transition: all 0.3s ease;
}

.fs-link:hover {
    background: #2563EB;
    color: #FFFFFF;
    border-color: #2563EB;
    transform: translateY(-3px);
}

/* ----------------------------------------------------------------
   4. CULTURE / JOIN US
   ---------------------------------------------------------------- */
.team-culture {
    padding: 120px 0;
    background: #FFFFFF;
    text-align: center;
}

.culture-inner {
    max-width: 800px;
    margin: 0 auto;
}

.culture-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: #0F172A;
    margin-bottom: 20px;
}

.culture-desc {
    font-size: 1.1rem;
    color: #64748B;
    margin-bottom: 40px;
}

.culture-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 60px;
}

.culture-item {
    background: #F8FAFC;
    padding: 32px;
    border-radius: 20px;
    border: 1px solid #E2E8F0;
    text-align: left;
}

.culture-item i {
    font-size: 1.5rem;
    color: #2563EB;
    margin-bottom: 20px;
    display: block;
}

.culture-item h5 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 12px;
}

.culture-item p {
    font-size: 0.9rem;
    color: #64748B;
    margin: 0;
}

/* ----------------------------------------------------------------
   RESPONSIVE
   ---------------------------------------------------------------- */
@media (max-width: 1024px) {
    .founder-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .founder-card {
        padding: 40px;
    }

    .founder-info h3 {
        font-size: 1.8rem;
    }

    .culture-grid {
        grid-template-columns: 1fr;
    }
}