/* =========================================================================
   VDPL Talent Ecosystem & Hire Developers
   Premium SaaS aesthetic — Glassmorphism, Inter 700, Animated Depth
   ========================================================================= */

/* ---- HIRE HERO ---- */
.hire-hero {
    position: relative;
    padding: calc(var(--header-height) + 100px) 0 80px;
    background: var(--saas-bg-main);
    overflow: hidden;
    text-align: center;
    border-bottom: 1px solid var(--saas-border-light);
}

.hire-hero__bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hire-hero__gradient {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 50% 10%, rgba(99, 102, 241, 0.05) 0%, transparent 60%);
    pointer-events: none;
}

.hire-hero__mesh {
    position: absolute;
    inset: 0;
    background-image: radial-gradient(rgba(0,0,0,0.02) 1px, transparent 1px);
    background-size: 40px 40px;
    mask-image: radial-gradient(circle at center, black, transparent 80%);
    -webkit-mask-image: radial-gradient(circle at center, black, transparent 80%);
}

.hire-hero__content {
    position: relative;
    z-index: 10;
    max-width: 900px;
    margin: 0 auto;
    padding: 0 24px;
}

.hire-hero__badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 16px;
    background: #FFFFFF;
    border: 1px solid var(--saas-border-premium);
    border-radius: 999px;
    color: var(--color-primary);
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 32px;
    box-shadow: var(--saas-shadow-premium);
}

.hire-hero__title {
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: 600;
    line-height: 1.05;
    color: var(--color-gray-900);
    margin-bottom: 24px;
    letter-spacing: -0.04em;
}

.hire-hero__subtitle {
    font-size: 1.125rem;
    color: var(--color-gray-600);
    max-width: 640px;
    margin: 0 auto 48px;
    line-height: 1.6;
}

/* ---- TRUST MARQUEE ---- */
.hire-marquee-wrap {
    background: #FFFFFF;
    border-top: 1px solid var(--saas-border-light);
    border-bottom: 1px solid var(--saas-border-light);
    padding: 24px 0;
    overflow: hidden;
}

.hire-marquee {
    display: flex;
    white-space: nowrap;
    width: fit-content;
    animation: hireScroll 40s linear infinite;
    gap: 64px;
}

@keyframes hireScroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

.hire-marquee span {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--color-gray-300);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

/* ---- ENGAGEMENT MODELS & TALENT CARDS ---- */
.talent-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    margin-top: 64px;
}

.talent-card {
    background: #FFFFFF;
    border: 1px solid var(--saas-border-premium);
    padding: 40px;
    border-radius: 32px;
    transition: all 0.6s var(--saas-ease);
    position: relative;
    overflow: hidden;
}

.talent-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--saas-shadow-hover);
    border-color: rgba(99, 102, 241, 0.3);
}

.talent-card__icon {
    width: 60px;
    height: 60px;
    background: rgba(99, 102, 241, 0.03);
    border: 1px solid rgba(99, 102, 241, 0.1);
    color: var(--color-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 16px;
    margin-bottom: 32px;
    transition: all 0.4s var(--saas-ease);
}

.talent-card:hover .talent-card__icon {
    transform: scale(1.1) translateY(-4px);
    background: var(--color-primary);
    color: #FFFFFF;
    box-shadow: 0 10px 20px rgba(99, 102, 241, 0.2);
}

.talent-card__title {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--color-gray-900);
    margin-bottom: 16px;
    letter-spacing: -0.01em;
}

.talent-card__desc {
    font-size: 1rem;
    color: var(--color-gray-600);
    line-height: 1.6;
    margin-bottom: 24px;
}

.talent-card__list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.talent-card__list li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.9375rem;
    color: var(--color-gray-700);
    font-weight: 500;
}

.talent-card__list li::before {
    content: '';
    width: 6px;
    height: 6px;
    background: var(--color-primary);
    border-radius: 50%;
    opacity: 0.5;
}

/* ---- PROCESS SECTION ---- */
.hire-process {
    padding: 100px 0;
    background: #FFFFFF;
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    margin-top: 64px;
    position: relative;
}

.process-step {
    text-align: center;
    position: relative;
    z-index: 5;
}

.process-step__number {
    width: 48px;
    height: 48px;
    background: var(--saas-bg-main);
    border: 1px solid var(--saas-border-premium);
    color: var(--color-gray-900);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-weight: 600;
    margin: 0 auto 24px;
    font-family: var(--font-heading);
    transition: all 0.3s var(--saas-ease);
}

.process-step:hover .process-step__number {
    background: var(--color-primary);
    color: #FFFFFF;
    border-color: var(--color-primary);
    transform: scale(1.1);
}

.process-step__title {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--color-gray-900);
    margin-bottom: 12px;
}

.process-step__desc {
    font-size: 0.9375rem;
    color: var(--color-gray-500);
    line-height: 1.6;
}

/* ---- RESPONSIVE ---- */
@media (max-width: 1024px) {
    .talent-grid, .process-steps {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .talent-grid, .process-steps {
        grid-template-columns: 1fr;
    }
    .hire-hero {
        padding-top: calc(var(--header-height) + 60px);
    }
}
