/* CAREERS PAGE STYLES */

/* Hero Stats - specific to careers page */
.hero-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 600px;
    margin: 0 auto;
    margin-top: 3rem;
}

.stat-item {
    text-align: center;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.stat-number {
    font-size: 1.625rem;            /* 26px - balanced hierarchy */
    font-weight: 700;
    color: var(--white);
    margin-bottom: 0.5rem;
    display: block;
}

.stat-label {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 500;
}

/* Culture Section */
.culture {
    padding: var(--space-6) 0;      /* 48px - research maximum */
    background: var(--white);
}

.culture .section-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 4rem;
}

.culture .section-title {
    font-size: 1.625rem;            /* 26px - balanced hierarchy */
    font-weight: 700;
    color: var(--slate-grey);
    margin-bottom: 1rem;
}

.culture .section-subtitle {
    font-size: 1.1rem;
    color: var(--charcoal-grey);
    line-height: 1.6;
}

.culture-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.culture-card {
    background: var(--white);
    padding: var(--space-3);        /* 24px - comfortable card padding */
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid var(--mist-grey);
    transition: all 0.3s ease;
    text-align: center;
}

.culture-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.culture-icon {
    width: 32px;                    /* Research-validated icon size */
    height: 32px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.culture-icon svg {
    width: 28px;
    height: 28px;
    color: var(--white);
    stroke-width: 1.5px;
}

.culture-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--slate-grey);
    margin-bottom: 1rem;
}

.culture-description {
    color: var(--charcoal-grey);
    line-height: 1.6;
    font-size: 1rem;
}

/* Benefits Section */
.benefits {
    padding: var(--space-6) 0;      /* 48px - research maximum */
    background: var(--light-grey);
}

.benefits .section-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 4rem;
}

.benefits .section-title {
    font-size: 1.625rem;            /* 26px - balanced hierarchy */
    font-weight: 700;
    color: var(--slate-grey);
    margin-bottom: 1rem;
}

.benefits .section-subtitle {
    font-size: 1.1rem;
    color: var(--charcoal-grey);
    line-height: 1.6;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.benefit-category {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid var(--mist-grey);
}

.category-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--slate-grey);
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid var(--light-grey);
}

.benefit-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.benefit-list li {
    padding: 0.75rem 0;
    color: var(--charcoal-grey);
    position: relative;
    padding-left: 1.5rem;
    line-height: 1.5;
}

.benefit-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    top: 0.75rem;
    color: #667eea;
    font-weight: 600;
}

/* Positions Section */
.positions {
    padding: var(--space-6) 0;      /* 48px - research maximum */
    background: var(--white);
}

.positions .section-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 4rem;
}

.positions .section-title {
    font-size: 1.625rem;            /* 26px - balanced hierarchy */
    font-weight: 700;
    color: var(--slate-grey);
    margin-bottom: 1rem;
}

.positions .section-subtitle {
    font-size: 1.1rem;
    color: var(--charcoal-grey);
    line-height: 1.6;
}

.positions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.position-card {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid var(--mist-grey);
    transition: all 0.3s ease;
}

.position-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.position-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1.5rem;
    gap: 1rem;
}

.position-info {
    flex: 1;
}

.position-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--slate-grey);
    margin-bottom: 0.75rem;
}

.position-meta {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 0.5rem;
}

.position-type,
.position-location,
.position-level {
    font-size: 0.9rem;
    color: var(--charcoal-grey);
    background: var(--light-grey);
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
}

.position-salary {
    font-size: 1.25rem;
    font-weight: 600;
    color: #667eea;
    white-space: nowrap;
}

.position-description {
    color: var(--charcoal-grey);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.position-skills {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 2rem;
}

.skill-tag {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: var(--white);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 500;
}

.position-actions {
    display: flex;
    gap: 1rem;
}

.positions-cta {
    text-align: center;
    padding: 3rem;
    background: var(--light-grey);
    border-radius: 16px;
    margin-top: 3rem;
}

.positions-cta p {
    font-size: 1.1rem;
    color: var(--charcoal-grey);
    margin-bottom: 1.5rem;
}

/* Process Section */
.process {
    padding: var(--space-6) 0;      /* 48px - research maximum */
    background: var(--light-grey);
}

.process .section-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 4rem;
}

.process .section-title {
    font-size: 1.625rem;            /* 26px - balanced hierarchy */
    font-weight: 700;
    color: var(--slate-grey);
    margin-bottom: 1rem;
}

.process .section-subtitle {
    font-size: 1.1rem;
    color: var(--charcoal-grey);
    line-height: 1.6;
}

.process-timeline {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
}

.process-timeline::before {
    content: '';
    position: absolute;
    left: 2rem;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(180deg, #667eea 0%, #764ba2 100%);
}

.process-step {
    position: relative;
    padding: 2rem 0 2rem 5rem;
    margin-bottom: 2rem;
}

.process-step:last-child {
    margin-bottom: 0;
}

.step-number {
    position: absolute;
    left: 0;
    top: 2rem;
    width: 4rem;
    height: 4rem;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.1rem;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
}

.step-content {
    background: var(--white);
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid var(--mist-grey);
}

.step-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--slate-grey);
    margin-bottom: 1rem;
}

.step-description {
    color: var(--charcoal-grey);
    line-height: 1.6;
    margin-bottom: 1rem;
}

.step-duration {
    font-size: 0.9rem;
    color: #667eea;
    font-weight: 600;
    background: rgba(102, 126, 234, 0.1);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    display: inline-block;
}

/* Testimonials Section */
.testimonials {
    padding: var(--space-6) 0;      /* 48px - research maximum */
    background: var(--white);
}

.testimonials .section-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 4rem;
}

.testimonials .section-title {
    font-size: 1.625rem;            /* 26px - balanced hierarchy */
    font-weight: 700;
    color: var(--slate-grey);
    margin-bottom: 1rem;
}

.testimonials .section-subtitle {
    font-size: 1.1rem;
    color: var(--charcoal-grey);
    line-height: 1.6;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.testimonial-card {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid var(--mist-grey);
    position: relative;
}

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: -1rem;
    left: 2rem;
    font-size: 4rem;
    color: #667eea;
    font-weight: 700;
    line-height: 1;
}

.testimonial-content blockquote {
    font-size: 1.1rem;
    line-height: 1.6;
    color: var(--charcoal-grey);
    margin: 0 0 2rem 0;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.testimonial-author img {
    width: 32px;                    /* Research-validated icon size */
    height: 32px;
    border-radius: 50%;
    object-fit: cover;
}

.author-info {
    flex: 1;
}

.author-name {
    font-weight: 600;
    color: var(--slate-grey);
    margin-bottom: 0.25rem;
}

.author-role {
    font-size: 0.9rem;
    color: var(--charcoal-grey);
}



/* Responsive Design */
@media (max-width: 768px) {
    .hero-stats {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .culture,
    .benefits,
    .positions,
    .process,
    .testimonials,

    
    .culture-grid,
    .benefits-grid,
    .positions-grid,
    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .position-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }
    
    .position-meta {
        flex-direction: column;
        gap: 0.5rem;
        align-items: flex-start;
    }
    
    .position-actions {
        flex-direction: column;
        gap: 0.75rem;
    }
    
    .process-timeline::before {
        left: 1.5rem;
    }
    
    .process-step {
        padding-left: 4rem;
    }
    
    .step-number {
        width: 3rem;
        height: 3rem;
        font-size: 1rem;
    }
    

}

@media (max-width: 480px) {
    
    .culture-card,
    .benefit-category,
    .position-card,
    .step-content,
    .testimonial-card {
        padding: 1.5rem;
    }
    
    .position-card {
        min-width: auto;
    }
    
    .positions-grid {
        grid-template-columns: 1fr;
    }
    
    .position-skills {
        gap: 0.25rem;
    }
    
    .skill-tag {
        font-size: 0.8rem;
        padding: 0.4rem 0.8rem;
    }
} 