/* =============== HR SOLUTION PAGE STYLES =============== */
/* Using common .page-hero styles from style.css */
/* Only HR-specific overrides and unique components below */

.hr-hero__overlay {
    background: rgb(35 35 35 / 70%);
}

/* HR Introduction */
.hr-intro {
    background: white;
    padding: var(--spacing-3xl) 0;
}

.hr-intro__content {
    max-width: 900px;
    margin: 0 auto;
}

.hr-intro__text {
    font-size: var(--fs-lg);
    line-height: 2;
    color: var(--text-secondary);
    margin-bottom: var(--spacing-lg);
}

.hr-intro__text:last-child {
    margin-bottom: 0;
}

.hr-intro__highlight {
    color: #666666;
    font-weight: 600;
    background: linear-gradient(135deg, #666666 0%, #888888 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* HR-specific overrides (if needed) */

/* HR Recruitment Section */
.hr-recruitment {
    background: white;
    padding: var(--spacing-3xl) 0;
}

.hr-recruitment__approach {
    margin-bottom: var(--spacing-4xl);
}

.hr-approach-box {
    max-width: 900px;
    margin: 0 auto;
    padding: var(--spacing-2xl);
    background: linear-gradient(135deg, #f5f6f7 0%, #e8ebed 100%);
    border-radius: var(--radius-lg);
    border: 2px solid #d0d5da;
}

.hr-approach-box__header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: var(--spacing-md);
}

.hr-approach-box__header i {
    font-size: 2rem;
    color: #666666;
}

.hr-approach-box__header h3 {
    font-size: var(--fs-xl);
    font-weight: 600;
    color: var(--text-primary);
}

.hr-approach-box h4 {
    font-size: var(--fs-lg);
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: var(--spacing-md);
}

.hr-approach-box p {
    font-size: var(--fs-base);
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: var(--spacing-md);
}

.hr-approach-box ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-bottom: var(--spacing-md);
}

.hr-approach-box ul li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    font-size: var(--fs-base);
    color: var(--text-secondary);
    line-height: 1.8;
}

.hr-approach-box ul i {
    color: #666666;
    margin-top: 0.3rem;
    flex-shrink: 0;
}

.hr-recruitment__flow-title {
    font-size: var(--fs-2xl);
    font-weight: 600;
    color: var(--text-primary);
    text-align: center;
    margin-bottom: var(--spacing-2xl);
}

.hr-flow {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-lg);
    max-width: 800px;
    margin: 0 auto;
}

.hr-flow-step {
    display: grid;
    grid-template-columns: 80px 1fr;
    gap: var(--spacing-lg);
    padding: var(--spacing-lg);
    background: #fafafa;
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-color);
    transition: all var(--transition-base);
}

.hr-flow-step:hover {
    border-color: #666666;
    background: white;
    box-shadow: 0 5px 20px rgba(2, 132, 199, 0.1);
}

.hr-flow-step__number {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #666666 0%, #888888 100%);
    border-radius: 50%;
    color: white;
    font-size: var(--fs-xl);
    font-weight: 700;
    font-family: var(--font-secondary);
    box-shadow: 0 3px 15px rgba(2, 132, 199, 0.3);
}

.hr-flow-step__content h4 {
    font-size: var(--fs-lg);
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.hr-flow-step__content h4 i {
    color: #666666;
}

.hr-flow-step__content p {
    font-size: var(--fs-sm);
    color: var(--text-secondary);
    line-height: 1.7;
}

/* HR SES Section */
.hr-ses {
    background: #fafafa;
    padding: var(--spacing-3xl) 0;
}

.hr-ses__approach {
    margin-bottom: var(--spacing-4xl);
}

.hr-ses__tech {
    max-width: 1100px;
    margin: 0 auto var(--spacing-4xl);
}

.hr-ses__tech-title {
    font-size: var(--fs-2xl);
    font-weight: 600;
    color: var(--text-primary);
    text-align: center;
    margin-bottom: var(--spacing-md);
}

.hr-ses__tech-desc {
    font-size: var(--fs-lg);
    color: var(--text-secondary);
    text-align: center;
    margin-bottom: var(--spacing-2xl);
}

.hr-tech-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--spacing-lg);
    margin-bottom: var(--spacing-xl);
}

.hr-tech-card {
    background: white;
    padding: var(--spacing-xl);
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-color);
    text-align: center;
    transition: all var(--transition-base);
}

.hr-tech-card:hover {
    border-color: #666666;
    box-shadow: 0 10px 30px rgba(2, 132, 199, 0.15);
    transform: translateY(-2px);
}

.hr-tech-card__icon {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #666666 0%, #888888 100%);
    border-radius: 50%;
    margin: 0 auto var(--spacing-md);
    color: white;
    font-size: 1.75rem;
    box-shadow: 0 3px 15px rgba(2, 132, 199, 0.3);
}

.hr-tech-card h4 {
    font-size: var(--fs-lg);
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: var(--spacing-md);
}

.hr-tech-card ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.hr-tech-card ul li {
    font-size: var(--fs-sm);
    color: var(--text-secondary);
    line-height: 1.6;
}

.hr-ses__tech-note {
    font-size: var(--fs-sm);
    color: var(--text-light);
    text-align: center;
    line-height: 1.7;
    max-width: 800px;
    margin: 0 auto;
}

.hr-ses__types {
    max-width: 1000px;
    margin: 0 auto;
}

.hr-ses__types-title {
    font-size: var(--fs-2xl);
    font-weight: 600;
    color: var(--text-primary);
    text-align: center;
    margin-bottom: var(--spacing-2xl);
}

.hr-types-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: var(--spacing-xl);
}

.hr-type-card {
    background: white;
    padding: var(--spacing-xl);
    border-radius: var(--radius-lg);
    border: 2px solid var(--border-color);
    text-align: center;
    transition: all var(--transition-base);
}

.hr-type-card:hover {
    border-color: #666666;
    box-shadow: 0 10px 30px rgba(2, 132, 199, 0.15);
    transform: translateY(-2px);
}

.hr-type-card__icon {
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #666666 0%, #888888 100%);
    border-radius: 50%;
    margin: 0 auto var(--spacing-md);
    color: white;
    font-size: 2rem;
    box-shadow: 0 2px 8px rgba(86, 101, 115, 0.15);
}

.hr-type-card h4 {
    font-size: var(--fs-xl);
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: var(--spacing-sm);
}

.hr-type-card p {
    font-size: var(--fs-base);
    color: var(--text-secondary);
    line-height: 1.7;
}

/* HR CTA Section */
.hr-cta {
    background: white;
    padding: var(--spacing-3xl) 0;
}

.hr-cta__content {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
    padding: var(--spacing-3xl);
    background: linear-gradient(135deg, #f5f6f7 0%, #e8ebed 100%);
    border-radius: var(--radius-lg);
    border: 2px solid #d0d5da;
}

.hr-cta__title {
    font-size: clamp(1.5rem, 3vw, 1.75rem);
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: var(--spacing-md);
}

.hr-cta__text {
    font-size: var(--fs-lg);
    color: var(--text-secondary);
    margin-bottom: var(--spacing-xl);
    line-height: 1.8;
}

.hr-cta__button {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2.5rem;
    background: linear-gradient(135deg, #666666 0%, #888888 100%);
    color: white;
    font-size: var(--fs-lg);
    font-weight: 600;
    border-radius: 50px;
    text-decoration: none;
    transition: all var(--transition-base);
    box-shadow: 0 2px 8px rgba(86, 101, 115, 0.15);
}

.hr-cta__button:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(2, 132, 199, 0.4);
}

.hr-cta__button i {
    font-size: 1.2rem;
}

/* Responsive Design */
@media screen and (max-width: 968px) {
    .hr-hero {
        min-height: 70vh;
        padding: var(--spacing-3xl) 0;
    }
    
    .hr-hero__features {
        gap: var(--spacing-md);
    }
    
    .hr-overview__grid {
        grid-template-columns: 1fr;
    }
    
    .hr-flow-step {
        grid-template-columns: 1fr;
        gap: var(--spacing-md);
    }
    
    .hr-flow-step__number {
        margin: 0 auto;
    }
    
    .hr-tech-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    }
    
    .hr-types-grid {
        grid-template-columns: 1fr;
    }
}

@media screen and (max-width: 576px) {
    .hr-hero__title {
        font-size: 2rem;
    }
    
    .hr-hero__subtitle {
        font-size: 1rem;
    }
    
    .hr-hero__features {
        flex-direction: column;
        align-items: center;
    }
    
    .hr-section-header__title {
        font-size: 1.75rem;
    }
    
    .hr-approach-box {
        padding: var(--spacing-lg);
    }
    
    .hr-cta__content {
        padding: var(--spacing-xl);
    }
}
