* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-blue: #4A90E2;
    --secondary-green: #7ED957;
    --accent-cyan: #50C9CE;
    --dark-text: #2C3E50;
    --light-text: #7F8C8D;
    --white: #FFFFFF;
    --light-bg: #F8FAFB;
}

html,
body {
    margin: 0;
    padding: 0;
    width: 100%;
    min-height: 100%;
}

body {
    font-family: 'Manrope', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    line-height: 1.6;
    color: var(--dark-text);
    background: var(--white);
    font-weight: 400;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Outfit', sans-serif;
    letter-spacing: -0.03em;
    font-weight: 700;
}

/* Header */
header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 1rem 0;
    background: linear-gradient(180deg,
            rgba(255, 255, 255, 0.98) 0%,
            rgba(248, 250, 251, 0.95) 100%);
    border-bottom: 1px solid rgba(74, 144, 226, 0.08);
    box-shadow: 0 1px 0 rgba(74, 144, 226, 0.06),
        0 8px 32px rgba(0, 0, 0, 0.04);
}

nav {
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-container {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
    transition: transform 0.3s ease;
}

.logo-container:hover {
    transform: translateY(-2px);
}

.logo-wrapper {
    width: auto;
    height: 80px;
}

.logo {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.brand-name {
    font-family: 'Outfit', sans-serif;
    font-size: 1.4rem;
    font-weight: 700;
    letter-spacing: -0.02em;
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--accent-cyan) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.back-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.7rem 1.5rem;
    background: linear-gradient(135deg, var(--primary-blue), var(--accent-cyan));
    color: var(--white);
    text-decoration: none;
    border-radius: 24px;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 14px rgba(74, 144, 226, 0.35);
}

.back-link:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(74, 144, 226, 0.45);
}

/* Career Hero */
.career-hero {
    padding: 140px 2rem 5rem;
    background: linear-gradient(135deg, var(--primary-blue), var(--accent-cyan));
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.career-hero::before {
    content: '';
    position: absolute;
    top: -20%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    border-radius: 50%;
}

.career-hero-content {
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 1;
}

.career-hero h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    margin-bottom: 1.5rem;
    color: var(--white);
    line-height: 1.1;
}

.career-hero p {
    font-size: 1.3rem;
    opacity: 0.95;
    max-width: 700px;
    margin: 0 auto 2.5rem;
    line-height: 1.6;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 3rem;
    flex-wrap: wrap;
    margin-top: 3rem;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 3rem;
    font-weight: 800;
    font-family: 'Outfit', sans-serif;
    display: block;
    line-height: 1;
}

.stat-label {
    font-size: 0.95rem;
    opacity: 0.9;
    margin-top: 0.5rem;
}

/* Values Section */
.values-section {
    padding: 5rem 2rem;
    background: var(--white);
}

.values-content {
    max-width: 1200px;
    margin: 0 auto;
}

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

.section-title {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, var(--primary-blue), var(--accent-cyan));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-subtitle {
    font-size: 1.15rem;
    color: var(--light-text);
    max-width: 600px;
    margin: 0 auto;
}

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

.value-card {
    text-align: center;
    padding: 2.5rem 2rem;
    background: var(--light-bg);
    border-radius: 24px;
    transition: all 0.3s ease;
    border: 1px solid rgba(74, 144, 226, 0.08);
}

.value-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 45px rgba(74, 144, 226, 0.15);
    border-color: rgba(74, 144, 226, 0.2);
}

.value-icon {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    display: block;
}

.value-card h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: var(--dark-text);
}

.value-card p {
    color: var(--light-text);
    line-height: 1.7;
}

/* Perks Section - Updated */
.perks-section {
    padding: 5.5rem 2rem;
    background: linear-gradient(135deg, #f8fafc 0%, #eef2f7 100%);
    position: relative;
}

.perks-section::before {
    content: '';
    position: absolute;
    bottom: 20%;
    right: -5%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(80, 201, 206, 0.04) 0%, transparent 70%);
    border-radius: 50%;
    filter: blur(60px);
}

.perks-content {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

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

.perk-card {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 28px;
    border: 1px solid rgba(74, 144, 226, 0.08);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.perk-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(135deg, var(--primary-blue), var(--accent-cyan));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
}

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

.perk-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 45px rgba(74, 144, 226, 0.15);
    border-color: rgba(74, 144, 226, 0.2);
}

.perk-icon-wrapper {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, rgba(74, 144, 226, 0.1), rgba(80, 201, 206, 0.1));
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    transition: all 0.3s ease;
}

.perk-card:hover .perk-icon-wrapper {
    background: linear-gradient(135deg, var(--primary-blue), var(--accent-cyan));
    transform: scale(1.05);
}

.perk-icon {
    font-size: 2rem;
    transition: all 0.3s ease;
}

.perk-card:hover .perk-icon {
    filter: brightness(0) invert(1);
}

.perk-card h4 {
    font-size: 1.25rem;
    margin-bottom: 0.8rem;
    color: var(--dark-text);
}

.perk-card p {
    font-size: 0.95rem;
    color: var(--light-text);
    line-height: 1.7;
}

@media (max-width: 768px) {
    .perks-grid {
        grid-template-columns: 1fr;
    }
}


/* Jobs Section */
.jobs-section {
    padding: 5rem 2rem;
    background: var(--white);
}

.jobs-content {
    max-width: 1000px;
    margin: 0 auto;
}

.jobs-empty {
    text-align: center;
    padding: 4rem 2rem;
    background: var(--light-bg);
    border-radius: 28px;
    border: 2px dashed rgba(74, 144, 226, 0.2);
}

.jobs-empty-icon {
    font-size: 4rem;
    margin-bottom: 1.5rem;
    opacity: 0.5;
}

.jobs-empty h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: var(--dark-text);
}

.jobs-empty p {
    font-size: 1.1rem;
    color: var(--light-text);
    margin-bottom: 2rem;
}

.spontaneous-button {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    padding: 1rem 2.5rem;
    background: linear-gradient(135deg, var(--primary-blue), var(--accent-cyan));
    color: var(--white);
    text-decoration: none;
    border-radius: 999px;
    font-weight: 700;
    font-size: 1rem;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(74, 144, 226, 0.35);
}

.spontaneous-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 14px 40px rgba(74, 144, 226, 0.45);
}

/* Job Card (for when there are openings) */
.job-card {
    background: var(--light-bg);
    padding: 2rem;
    border-radius: 24px;
    margin-bottom: 1.5rem;
    border: 1px solid rgba(74, 144, 226, 0.08);
    transition: all 0.3s ease;
}

.job-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(74, 144, 226, 0.12);
    border-color: rgba(74, 144, 226, 0.2);
}

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

.job-title-area h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: var(--dark-text);
}

.job-meta {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.job-tag {
    padding: 0.4rem 1rem;
    background: rgba(74, 144, 226, 0.1);
    color: var(--primary-blue);
    border-radius: 12px;
    font-size: 0.85rem;
    font-weight: 600;
}

.job-description {
    color: var(--light-text);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.job-apply-button {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.8rem 2rem;
    background: linear-gradient(135deg, var(--primary-blue), var(--accent-cyan));
    color: var(--white);
    text-decoration: none;
    border-radius: 999px;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

.job-apply-button:hover {
    transform: translateX(3px);
    box-shadow: 0 6px 20px rgba(74, 144, 226, 0.3);
}

/* CTA Section */
.career-cta {
    padding: 5rem 2rem;
    background: linear-gradient(135deg, var(--primary-blue), var(--accent-cyan));
    color: var(--white);
    text-align: center;
}

.career-cta-content {
    max-width: 700px;
    margin: 0 auto;
}

.career-cta h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--white);
}

.career-cta p {
    font-size: 1.15rem;
    margin-bottom: 2rem;
    opacity: 0.95;
}

.cta-button {
    display: inline-block;
    padding: 1.1rem 2.8rem;
    background: var(--white);
    color: var(--primary-blue);
    text-decoration: none;
    border-radius: 999px;
    font-weight: 700;
    font-size: 1.05rem;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 14px 40px rgba(0, 0, 0, 0.3);
}

/* Footer */
footer {
    background: var(--dark-text);
    color: var(--white);
    padding: 2rem;
    text-align: center;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 1rem;
    flex-wrap: wrap;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.75);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--accent-cyan);
}

.footer-copyright {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.88rem;
}

@media (max-width: 768px) {
    .career-hero h1 {
        font-size: 2.2rem;
    }

    .hero-stats {
        gap: 2rem;
    }

    .stat-number {
        font-size: 2.2rem;
    }

    .values-grid,
    .perks-grid {
        grid-template-columns: 1fr;
    }

    .job-header {
        flex-direction: column;
    }

    .section-title {
        font-size: 2rem;
    }
}