/* Modern Careers Page Styles */
.careers-hero {
    background: linear-gradient(135deg, #6fa828 0%, #93c33b 100%);
    color: var(--pure-white);
    padding: 8rem 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.careers-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='80' height='80' viewBox='0 0 80 80' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.1'%3E%3Cpath d='M40 40c0-11.046-8.954-20-20-20s-20 8.954-20 20 8.954 20 20 20 20-8.954 20-20zm-20-16c8.837 0 16 7.163 16 16s-7.163 16-16 16-16-7.163-16-16 7.163-16 16-16z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E") repeat;
    animation: float-careers 25s linear infinite;
}

.hero-careers-badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.2);
    color: var(--pure-white);
    padding: 0.75rem 2rem;
    border-radius: 2rem;
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    margin-bottom: 2rem;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    animation: badge-pulse-careers 3s ease-in-out infinite;
}

.careers-hero-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
    margin: 0 auto;
    padding: 0 1rem;
}

.careers-hero h1 {
    font-size: clamp(3rem, 7vw, 5rem);
    font-weight: 900;
    margin-bottom: 1.5rem;
    color: var(--pure-white);
    line-height: 1.2;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.careers-hero p {
    font-size: 1.4rem !important;
    line-height: 1.7 !important;
    opacity: 0.95;
    margin-bottom: 2rem !important;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.careers-stats {
    display: flex !important;
    gap: 2rem !important;
    justify-content: center !important;
    flex-wrap: wrap !important;
    margin-top: 2.5rem !important;
}

.careers-stat {
    background: rgba(255, 255, 255, 0.15) !important;
    padding: 1rem 1.5rem !important;
    border-radius: 1.5rem !important;
    backdrop-filter: blur(10px) !important;
    border: 1px solid rgba(255, 255, 255, 0.2) !important;
    font-size: 1.1rem !important;
    font-weight: 600 !important;
}

/* Modern Why Join Section */
.why-join {
    padding: 8rem 0;
    background: linear-gradient(135deg, #f8fffe 0%, #ffffff 50%, #f0f7f0 100%);
    position: relative;
}

.why-join::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' stroke='%2393c33b' stroke-width='1' opacity='0.03'%3E%3Cpath d='M50 0v100M0 50h100'/%3E%3C/g%3E%3C/svg%3E") repeat;
}

.why-join-header {
    text-align: center;
    margin-bottom: 4rem;
    position: relative;
    z-index: 2;
}

.why-join-badge {
    display: inline-block;
    background: linear-gradient(135deg, #93c33b, #6fa828);
    color: var(--pure-white);
    padding: 0.75rem 2rem;
    border-radius: 2rem;
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    margin-bottom: 2rem;
    box-shadow: 0 6px 20px rgba(147, 195, 59, 0.3);
}

.section-title {
    font-size: clamp(2.5rem, 6vw, 4rem) !important;
    font-weight: 900 !important;
    background: linear-gradient(135deg, #2d3748, #93c33b);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
    margin-bottom: 1.5rem !important;
    line-height: 1.3;
    text-align: center;
}

.section-subtitle {
    font-size: 1.3rem !important;
    color: var(--slate-grey) !important;
    line-height: 1.8 !important;
    max-width: 700px !important;
    margin: 0 auto 2rem auto !important;
    text-align: center;
}

.values-grid {
    display: grid !important;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)) !important;
    gap: 2.5rem !important;
    margin-top: 3rem;
    position: relative;
    z-index: 2;
}

.value-card {
    background: var(--pure-white);
    padding: 2.5rem;
    border-radius: 2rem;
    text-align: center;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid rgba(147, 195, 59, 0.1);
    position: relative;
    overflow: hidden;
}

.value-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #93c33b, #6fa828);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.5s ease;
}

.value-card:hover::before {
    transform: scaleX(1);
}

.value-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 60px rgba(147, 195, 59, 0.2);
    border-color: var(--primary-green);
}

.value-icon {
    font-size: 3.5rem !important;
    margin-bottom: 1.5rem !important;
    display: block;
    filter: drop-shadow(0 4px 15px rgba(147, 195, 59, 0.3));
}

.value-card h3 {
    font-size: 1.4rem !important;
    font-weight: 800 !important;
    color: var(--charcoal) !important;
    margin-bottom: 1rem !important;
    line-height: 1.4;
}

.value-card p {
    color: var(--slate-grey) !important;
    line-height: 1.7 !important;
    font-size: 1.1rem !important;
}

/* Modern Open Positions Section */
.open-positions {
    padding: 8rem 0;
    background: var(--pure-white);
    position: relative;
}

.positions-section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.positions-badge {
    display: inline-block;
    background: linear-gradient(135deg, #93c33b, #6fa828);
    color: var(--pure-white);
    padding: 0.75rem 2rem;
    border-radius: 2rem;
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    margin-bottom: 2rem;
    box-shadow: 0 6px 20px rgba(147, 195, 59, 0.3);
}

.positions-grid {
    display: grid !important;
    grid-template-columns: repeat(auto-fit, minmax(380px, 1fr)) !important;
    gap: 2.5rem !important;
    margin-top: 3rem;
}

.position-card {
    background: linear-gradient(135deg, #f8fffe 0%, #ffffff 100%);
    padding: 2.5rem;
    border-radius: 2rem;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid rgba(147, 195, 59, 0.1);
    position: relative;
    overflow: hidden;
}

.position-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #93c33b, #6fa828);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.5s ease;
}

.position-card:hover::before {
    transform: scaleX(1);
}

.position-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 60px rgba(147, 195, 59, 0.2);
    border-color: var(--primary-green);
}

.position-title {
    color: var(--charcoal) !important;
    font-size: 1.5rem !important;
    font-weight: 800 !important;
    margin-bottom: 1rem !important;
    line-height: 1.3;
}

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

.meta-tag {
    background: linear-gradient(135deg, #93c33b, #6fa828);
    color: var(--pure-white);
    padding: 0.5rem 1rem;
    border-radius: 1.5rem;
    font-size: 0.9rem;
    font-weight: 600;
    box-shadow: 0 4px 12px rgba(147, 195, 59, 0.3);
}

/* Modern Talent Database Section */
.talent-database {
    padding: 8rem 0;
    background: linear-gradient(135deg, #f8fffe 0%, #ffffff 50%, #f0f7f0 100%);
    position: relative;
}

.talent-database::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' stroke='%2393c33b' stroke-width='1' opacity='0.03'%3E%3Cpath d='M50 0v100M0 50h100'/%3E%3C/g%3E%3C/svg%3E") repeat;
}

.talent-section-header {
    text-align: center;
    margin-bottom: 4rem;
    position: relative;
    z-index: 2;
}

.talent-badge {
    display: inline-block;
    background: linear-gradient(135deg, #93c33b, #6fa828);
    color: var(--pure-white);
    padding: 0.75rem 2rem;
    border-radius: 2rem;
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    margin-bottom: 2rem;
    box-shadow: 0 6px 20px rgba(147, 195, 59, 0.3);
}

/* Talent Areas Grid */
.talent-areas-grid {
    display: grid !important;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)) !important;
    gap: 2rem !important;
    margin: 4rem 0;
    position: relative;
    z-index: 2;
}

.talent-area-card {
    background: var(--pure-white);
    padding: 2rem;
    border-radius: 1.5rem;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid rgba(147, 195, 59, 0.1);
}

.talent-area-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(147, 195, 59, 0.15);
    border-color: var(--primary-green);
}

.talent-area-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.talent-area-card h3 {
    font-size: 1.2rem !important;
    font-weight: 700 !important;
    color: var(--charcoal) !important;
    margin-bottom: 0.75rem !important;
}

.talent-area-card p {
    font-size: 0.95rem !important;
    line-height: 1.6 !important;
    color: var(--slate-grey) !important;
    margin-bottom: 1rem !important;
}

.skill-tags {
    display: flex !important;
    flex-wrap: wrap !important;
    gap: 0.5rem !important;
    justify-content: center !important;
}

.skill-tag {
    background: rgba(147, 195, 59, 0.1) !important;
    color: var(--primary-green) !important;
    padding: 0.3rem 0.7rem !important;
    border-radius: 1rem !important;
    font-size: 0.8rem !important;
    font-weight: 600 !important;
}

/* Talent Form Section */
.talent-form-section {
    background: var(--pure-white);
    border-radius: 2rem;
    padding: 3rem;
    margin-top: 4rem;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
    position: relative;
    z-index: 2;
}

.form-container {
    max-width: 900px;
    margin: 0 auto;
}

.form-header {
    text-align: center;
    margin-bottom: 2.5rem;
}

.form-header h3 {
    font-size: 2rem !important;
    font-weight: 800 !important;
    color: var(--charcoal) !important;
    margin-bottom: 0.75rem !important;
}

.form-header p {
    font-size: 1.1rem !important;
    color: var(--slate-grey) !important;
    line-height: 1.6 !important;
}

.talent-form {
    display: grid;
    gap: 2.5rem;
}

.form-section {
    background: #f8fffe;
    padding: 2rem;
    border-radius: 1.5rem;
    border: 1px solid rgba(147, 195, 59, 0.1);
}

.section-title-small {
    font-size: 1.3rem !important;
    font-weight: 700 !important;
    color: var(--primary-green) !important;
    margin-bottom: 1.5rem !important;
    text-align: center;
}

.form-row {
    display: grid !important;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)) !important;
    gap: 1.5rem !important;
    margin-bottom: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    font-weight: 600 !important;
    color: var(--charcoal) !important;
    margin-bottom: 0.5rem !important;
    font-size: 0.95rem !important;
}

.required {
    color: #e53e3e;
    font-weight: 700;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 0.8rem 1rem !important;
    border: 2px solid #e2e8f0 !important;
    border-radius: 0.75rem !important;
    font-size: 0.95rem !important;
    transition: all 0.3s ease !important;
    background: var(--pure-white) !important;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none !important;
    border-color: var(--primary-green) !important;
    box-shadow: 0 0 0 3px rgba(147, 195, 59, 0.1) !important;
}

.form-error {
    color: #e53e3e !important;
    font-size: 0.85rem !important;
    margin-top: 0.25rem !important;
    font-weight: 500 !important;
}

.radio-group {
    display: flex !important;
    flex-direction: column !important;
    gap: 0.75rem !important;
    margin-top: 0.5rem;
}

.radio-label {
    display: flex !important;
    align-items: center !important;
    cursor: pointer !important;
    font-size: 0.95rem !important;
}

.radio-label input[type="radio"] {
    display: none !important;
}

.radio-custom {
    width: 18px !important;
    height: 18px !important;
    border: 2px solid #e2e8f0 !important;
    border-radius: 50% !important;
    margin-right: 0.75rem !important;
    position: relative !important;
    transition: all 0.3s ease !important;
}

.radio-label input[type="radio"]:checked + .radio-custom {
    border-color: var(--primary-green) !important;
    background: var(--primary-green) !important;
}

.radio-label input[type="radio"]:checked + .radio-custom::after {
    content: '' !important;
    position: absolute !important;
    top: 50% !important;
    left: 50% !important;
    width: 6px !important;
    height: 6px !important;
    background: white !important;
    border-radius: 50% !important;
    transform: translate(-50%, -50%) !important;
}

.file-upload-area {
    border: 2px dashed #cbd5e0 !important;
    border-radius: 0.75rem !important;
    padding: 2rem !important;
    text-align: center !important;
    cursor: pointer !important;
    transition: all 0.3s ease !important;
    background: var(--pure-white) !important;
}

.file-upload-area:hover {
    border-color: var(--primary-green) !important;
    background: rgba(147, 195, 59, 0.02) !important;
}

.file-upload-icon {
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.file-upload-text {
    font-weight: 600 !important;
    color: var(--charcoal) !important;
    margin-bottom: 0.25rem !important;
}

.file-upload-hint {
    font-size: 0.85rem !important;
    color: var(--slate-grey) !important;
}

.file-name-display {
    margin-top: 0.5rem !important;
    padding: 0.5rem !important;
    background: rgba(147, 195, 59, 0.1) !important;
    border-radius: 0.5rem !important;
    color: var(--primary-green) !important;
    font-weight: 600 !important;
    font-size: 0.9rem !important;
}

.checkbox-label {
    display: flex !important;
    align-items: flex-start !important;
    cursor: pointer !important;
    font-size: 0.9rem !important;
    line-height: 1.5 !important;
    margin-bottom: 2rem !important;
}

.checkbox-label input[type="checkbox"] {
    display: none !important;
}

.checkbox-custom {
    width: 18px !important;
    height: 18px !important;
    border: 2px solid #e2e8f0 !important;
    border-radius: 4px !important;
    margin-right: 0.75rem !important;
    margin-top: 2px !important;
    position: relative !important;
    transition: all 0.3s ease !important;
    flex-shrink: 0 !important;
}

.checkbox-label input[type="checkbox"]:checked + .checkbox-custom {
    border-color: var(--primary-green) !important;
    background: var(--primary-green) !important;
}

.checkbox-label input[type="checkbox"]:checked + .checkbox-custom::after {
    content: '✓' !important;
    position: absolute !important;
    top: 50% !important;
    left: 50% !important;
    color: white !important;
    font-size: 12px !important;
    font-weight: 700 !important;
    transform: translate(-50%, -50%) !important;
}

.form-actions {
    text-align: center;
}

.privacy-note {
    margin-bottom: 2rem;
}

/* Alert Styles */
.alert {
    display: flex !important;
    align-items: flex-start !important;
    padding: 1rem 1.5rem !important;
    border-radius: 0.75rem !important;
    margin-bottom: 2rem !important;
    font-size: 0.95rem !important;
}

.alert-success {
    background: rgba(72, 187, 120, 0.1) !important;
    border: 1px solid rgba(72, 187, 120, 0.2) !important;
    color: #2f855a !important;
}

.alert-error {
    background: rgba(229, 62, 62, 0.1) !important;
    border: 1px solid rgba(229, 62, 62, 0.2) !important;
    color: #c53030 !important;
}

.alert-icon {
    margin-right: 0.75rem !important;
    font-size: 1.2rem !important;
}

.alert-content strong {
    font-weight: 700 !important;
    display: block !important;
    margin-bottom: 0.25rem !important;
}

/* Responsive Design for Talent Database */
@media (max-width: 768px) {
    .talent-form-section {
        padding: 2rem 1.5rem;
        margin: 2rem 1rem 0;
    }
    
    .form-row {
        grid-template-columns: 1fr !important;
    }
    
    .talent-areas-grid {
        grid-template-columns: 1fr !important;
        gap: 1.5rem !important;
    }
}

@media (max-width: 480px) {
    .talent-database {
        padding: 4rem 0;
    }
    
    .talent-form-section {
        padding: 1.5rem 1rem;
        border-radius: 1rem;
    }
    
    .form-section {
        padding: 1.5rem;
    }
}

/* Modern Benefits Section */
.benefits {
    padding: 8rem 0;
    background: linear-gradient(135deg, #2d3748 0%, #4a5568 100%);
    color: var(--pure-white);
    position: relative;
    overflow: hidden;
}

.benefits::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='80' height='80' viewBox='0 0 80 80' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M40 40c0-11.046-8.954-20-20-20s-20 8.954-20 20 8.954 20 20 20 20-8.954 20-20zm-20-16c8.837 0 16 7.163 16 16s-7.163 16-16 16-16-7.163-16-16 7.163-16 16-16z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E") repeat;
    animation: float-benefits 30s linear infinite;
}

.benefits-section-header {
    text-align: center;
    margin-bottom: 4rem;
    position: relative;
    z-index: 2;
}

.benefits-badge {
    display: inline-block;
    background: linear-gradient(135deg, #93c33b, #6fa828);
    color: var(--pure-white);
    padding: 0.75rem 2rem;
    border-radius: 2rem;
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    margin-bottom: 2rem;
    box-shadow: 0 6px 20px rgba(147, 195, 59, 0.3);
}

.benefits h2 {
    font-size: clamp(2.5rem, 6vw, 4rem) !important;
    font-weight: 900 !important;
    color: var(--pure-white);
    margin-bottom: 1.5rem !important;
    line-height: 1.3;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.benefits-grid {
    display: grid !important;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)) !important;
    gap: 2.5rem !important;
    margin-top: 3rem;
    position: relative;
    z-index: 2;
}

.benefit-item {
    text-align: center;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 2rem;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.benefit-item:hover {
    transform: translateY(-8px);
    background: rgba(255, 255, 255, 0.15);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.benefit-item .icon {
    font-size: 3rem !important;
    margin-bottom: 1.5rem !important;
    display: block;
}

.benefit-item h3 {
    font-size: 1.3rem !important;
    font-weight: 800 !important;
    margin-bottom: 1rem !important;
    color: var(--pure-white);
}

.benefit-item p {
    font-size: 1.05rem !important;
    line-height: 1.6 !important;
    opacity: 0.9;
}

/* Modern Application Process Section */
.application-process {
    padding: 8rem 0;
    background: linear-gradient(135deg, #f8fffe 0%, #ffffff 50%, #f0f7f0 100%);
    position: relative;
}

.application-process::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' stroke='%2393c33b' stroke-width='1' opacity='0.03'%3E%3Cpath d='M50 0v100M0 50h100'/%3E%3C/g%3E%3C/svg%3E") repeat;
}

.process-section-header {
    text-align: center;
    margin-bottom: 4rem;
    position: relative;
    z-index: 2;
}

.process-badge {
    display: inline-block;
    background: linear-gradient(135deg, #93c33b, #6fa828);
    color: var(--pure-white);
    padding: 0.75rem 2rem;
    border-radius: 2rem;
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    margin-bottom: 2rem;
    box-shadow: 0 6px 20px rgba(147, 195, 59, 0.3);
}

.process-steps {
    display: grid !important;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)) !important;
    gap: 2.5rem !important;
    margin-top: 3rem;
    position: relative;
    z-index: 2;
}

.step-card {
    text-align: center;
    padding: 2.5rem;
    background: var(--pure-white);
    border-radius: 2rem;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid rgba(147, 195, 59, 0.1);
    position: relative;
    overflow: hidden;
}

.step-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #93c33b, #6fa828);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.5s ease;
}

.step-card:hover::before {
    transform: scaleX(1);
}

.step-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 60px rgba(147, 195, 59, 0.2);
    border-color: var(--primary-green);
}

.step-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #93c33b, #6fa828);
    color: var(--pure-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 1.5rem;
    margin: 0 auto 1.5rem;
    box-shadow: 0 8px 25px rgba(147, 195, 59, 0.4);
}

.step-card h3 {
    font-size: 1.3rem !important;
    font-weight: 800 !important;
    color: var(--charcoal) !important;
    margin-bottom: 1rem !important;
    line-height: 1.4;
}

.step-card p {
    color: var(--slate-grey) !important;
    line-height: 1.6 !important;
    font-size: 1.05rem !important;
}

/* Animations */
@keyframes float-careers {
    0% { transform: translateX(-50px); }
    100% { transform: translateX(0px); }
}

@keyframes float-benefits {
    0% { transform: translateX(-30px); }
    100% { transform: translateX(0px); }
}

@keyframes badge-pulse-careers {
    0%, 100% {
        box-shadow: 0 0 20px rgba(255, 255, 255, 0.3);
    }
    50% {
        box-shadow: 0 0 30px rgba(255, 255, 255, 0.5);
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .values-grid,
    .positions-grid,
    .benefits-grid,
    .process-steps {
        grid-template-columns: 1fr !important;
        gap: 1.5rem !important;
    }
    
    .position-meta {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.75rem;
    }
    
    .careers-hero {
        padding: 4rem 0;
    }
    
    .why-join,
    .open-positions,
    .benefits,
    .application-process {
        padding: 4rem 0 !important;
    }
    
    .value-card,
    .position-card,
    .benefit-item,
    .step-card {
        padding: 2rem;
    }
    
    .careers-stats {
        flex-direction: column !important;
        align-items: center !important;
        gap: 1rem !important;
    }
    
    .careers-stat {
        width: 100% !important;
        max-width: 280px !important;
    }
}

@media (max-width: 480px) {
    .hero-careers-badge,
    .why-join-badge,
    .positions-badge,
    .benefits-badge,
    .process-badge {
        padding: 0.6rem 1.5rem;
        font-size: 0.8rem;
    }
    
    .step-number {
        width: 50px;
        height: 50px;
        font-size: 1.3rem;
    }
    
    .careers-stat {
        padding: 0.75rem 1.25rem !important;
        font-size: 1rem !important;
    }
}