/* ===== AI EMPLOYEES SECTION ===== */
.ai-employees-section {
    padding: 100px 0;
    background: #0a0a0a;
    position: relative;
}

.ai-employees-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(0, 217, 213, 0.3), transparent);
}

/* Header */
.ai-employees-header {
    text-align: center;
    max-width: 1100px;
    margin: 0 auto 70px;
}

.section-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(0, 217, 213, 0.08);
    border: 1px solid rgba(0, 217, 213, 0.25);
    color: #00D9D5;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 2.5px;
    padding: 6px 16px;
    border-radius: 100px;
    margin-bottom: 1.5rem;
}

.section-badge::before {
    content: '';
    width: 6px;
    height: 6px;
    background: #00D9D5;
    border-radius: 50%;
    box-shadow: 0 0 6px #00D9D5;
}

.ai-employees-title {
    font-size: clamp(2rem, 3.2vw, 3.8rem);
    font-weight: 900;
    color: #ffffff;
    line-height: 1.15;
    letter-spacing: -1px;
    margin-bottom: 1.2rem;
}

.ai-employees-title .highlight {
    display: inline;
    color: #00D9D5;
}

.ai-employees-description {
    font-size: 1.05rem;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.7;
    max-width: 560px;
    margin: 0 auto;
}

/* Grid — 4 columns */
.ai-employees-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

/* Card — full anchor tag */
.employee-card {
    display: flex;
    flex-direction: column;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    overflow: hidden;
    text-decoration: none;
    cursor: pointer;
    transition: border-color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
}

.employee-card:hover {
    border-color: rgba(0, 217, 213, 0.35);
    transform: translateY(-6px);
    box-shadow: 0 20px 50px rgba(0, 217, 213, 0.1);
}

/* Image area */
.employee-card-image {
    position: relative;
    width: 100%;
    aspect-ratio: 3/3.2;
    overflow: hidden;
}

.employee-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top;
    display: block;
    transition: transform 0.5s ease;
}

.employee-card:hover .employee-card-image img {
    transform: scale(1.05);
}

/* Gradient overlay on image bottom */
.employee-card-image::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 60%;
    background: linear-gradient(to top, rgba(10,10,10,0.9), transparent);
    pointer-events: none;
}

/* Role tag on image */
.employee-role-tag {
    position: absolute;
    top: 14px;
    left: 14px;
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    padding: 4px 12px;
    border-radius: 100px;
    text-transform: uppercase;
    z-index: 2;
}

.employee-role-tag.sales       { background: rgba(59,130,246,0.85);  color: #fff; }
.employee-role-tag.support     { background: rgba(168,85,247,0.85);  color: #fff; }
.employee-role-tag.social      { background: rgba(236,72,153,0.85);  color: #fff; }
.employee-role-tag.hr          { background: rgba(20,184,166,0.85);  color: #fff; }
.employee-role-tag.operations  { background: rgba(234,179,8,0.85);   color: #000; }
.employee-role-tag.frontdesk   { background: rgba(0,217,213,0.85);   color: #000; }

/* Card body */
.employee-card-body {
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    flex: 1;
}

.employee-card-title {
    font-size: 1rem;
    font-weight: 700;
    color: #ffffff;
    line-height: 1.3;
}

.employee-card-desc {
    font-size: 0.82rem;
    color: rgba(255, 255, 255, 0.5);
    line-height: 1.6;
    flex: 1;
}

.employee-card-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-size: 0.82rem;
    font-weight: 600;
    color: #00D9D5;
    border: 1px solid rgba(0, 217, 213, 0.5);
    border-radius: 100px;
    padding: 8px 18px;
    margin-top: 6px;
    transition: background 0.2s ease, gap 0.2s ease;
}

.employee-card:hover .employee-card-btn {
    background: rgba(0, 217, 213, 0.1);
    gap: 10px;
}

/* Responsive */
@media (max-width: 1024px) {
    .ai-employees-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 640px) {
    .ai-employees-section {
        padding: 70px 0;
    }

    .ai-employees-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 14px;
    }

    .ai-employees-title {
        font-size: 1.8rem;
    }

    .employee-card-body {
        padding: 14px;
    }

    .employee-card-title {
        font-size: 0.9rem;
    }

    .employee-card-desc {
        font-size: 0.75rem;
    }
}
