:root {
    --btn-gradient: linear-gradient(
            30deg,
            #2652B9,
            #2652B9,
            #E24012,
            #FE7505
    )
}

.bg-orange-gradient {
    background-image: radial-gradient(62.34% 62.34% at 83.12% 18.18%, #E24012 0%, #FE7505 100%);
}

.btn-gradient {
    background-image: var(--btn-gradient);
    background-size: 500%;
    background-position: right;
    transition: background-position 1s, color 400ms;
    transition-timing-function: ease;
}

.btn-gradient:hover,
.btn-gradient:focus {
    background-position: left;
}

/* Careers Specific Styles */
.careers-hero {
    padding: 120px 0 80px;
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
    position: relative;
    overflow: hidden;
}

.careers-hero-bg {
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    opacity: 0.05;
    background-image: url('https://cdn.prod.website-files.com/67e120a665403177c4a87bf8/67e15f1e05f39b2c9518ce83_Programmer-bro.svg');
    background-size: contain;
    background-position: center right;
    background-repeat: no-repeat;
}

.careers-hero h1 {
    font-size: 3.5rem;
    font-weight: 800;
    background: linear-gradient(90deg, #2652B9 0%, #E24012 50%, #FE7505 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 1.5rem;
}

.careers-hero p {
    font-size: 1.25rem;
    color: #64748b;
    max-width: 800px;
    margin: 0 auto 2rem;
}

.positions-container {
    padding: 80px 0;
    background: #fff;
}

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

.positions-header h2 {
    font-size: 2.5rem;
    color: #1e293b;
    margin-bottom: 1rem;
}

.positions-header p {
    color: #64748b;
    font-size: 1.125rem;
    max-width: 600px;
    margin: 0 auto;
}

.position-card {
    background: white;
    border-radius: 12px;
    border: 1px solid #e2e8f0;
    padding: 2rem;
    margin-bottom: 1.5rem;
    transition: all 0.3s ease;
    box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
    width: 100%;
}

.position-card:hover {
    box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    border-color: #cbd5e1;
}

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

.position-title h3 {
    font-size: 1.5rem;
    color: #1e293b;
    margin: 0 0 0.5rem 0;
    font-weight: 700;
}

.position-company {
    color: #2652B9;
    font-weight: 600;
    font-size: 1.125rem;
}

.position-meta {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
    margin-top: 0.5rem;
}

.meta-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #64748b;
    font-size: 0.95rem;
}

.meta-icon {
    width: 18px;
    height: 18px;
    color: #E24012;
}

.position-badge {
    background: linear-gradient(30deg, #2652B9, #E24012);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 600;
}

.position-tech {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin: 1.5rem 0;
}

.tech-tag {
    background: #f1f5f9;
    color: #475569;
    padding: 0.375rem 0.75rem;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 500;
    border: 1px solid #e2e8f0;
}

.position-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid #e2e8f0;
    flex-wrap: wrap;
    gap: 1rem;
}

.position-apply .btn-apply {
    background: linear-gradient(30deg, #2652B9, #2652B9, #E24012, #FE7505);
    background-size: 400%;
    background-position: right;
    color: white;
    padding: 0.75rem 2rem;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    display: inline-block;
}

.position-apply .btn-apply:hover {
    background-position: left;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(226, 64, 18, 0.2);
}

.position-id {
    color: #94a3b8;
    font-size: 0.875rem;
    font-family: 'Courier New', monospace;
}

.no-positions {
    text-align: center;
    padding: 4rem 2rem;
    background: #f8fafc;
    border-radius: 12px;
    border: 2px dashed #cbd5e1;
}

.no-positions h3 {
    color: #64748b;
    margin-bottom: 1rem;
}

.no-positions p {
    color: #94a3b8;
    max-width: 500px;
    margin: 0 auto;
}

.benefits-section {
    padding: 80px 0;
    background: #f8fafc;
}

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

.benefit-card {
    min-height: 500px;
    background: white;
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid #e2e8f0;
    transition: transform 0.3s ease;
}

.benefit-card:hover {
    transform: translateY(-5px);
    border-color: #2652B9;
}

.benefit-icon {
    width: 48px;
    height: 48px;
    margin-bottom: 1.5rem;
    color: #E24012;
}

.benefit-card h4 {
    color: #1e293b;
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.benefit-card p {
    color: #64748b;
    line-height: 1.6;
}

@media (max-width: 768px) {
    .careers-hero {
        padding: 80px 0 60px;
    }

    .careers-hero h1 {
        font-size: 2.5rem;
    }

    .position-header {
        flex-direction: column;
        align-items: flex-start;
    }

    .position-footer {
        flex-direction: column;
        align-items: stretch;
    }

    .position-apply .btn-apply {
        width: 100%;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .position-card {
        padding: 1.5rem;
    }

    .position-title h3 {
        font-size: 1.25rem;
    }

    .benefits-grid {
        grid-template-columns: 1fr;
    }
}

