/* Careers Page - Luxury Brand Strategy */

.careers-page {
    background: #020202;
    color: #e5e7eb;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
}

/* Header - Matching Main Site Design */
header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    background: rgba(2, 2, 2, 0.9);
    backdrop-filter: blur(30px);
    border-radius: 0;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15), 0 0 0 1px rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12);
    z-index: 9999;
    transition: all 0.4s ease;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.2rem 3rem;
    height: 65px;
    position: relative;
    z-index: 9999;
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 3rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.nav-logo a {
    text-decoration: none;
    display: block;
}

.nav-logo h1 {
    font-size: 1.6rem;
    font-weight: 400;
    color: #ffffff;
    letter-spacing: 0.15em;
    font-family: 'Montserrat', 'Inter', sans-serif;
    transition: all 0.4s ease;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
    position: relative;
    text-transform: uppercase;
    font-style: normal;
    margin: 0;
    cursor: pointer;
}

.nav-logo h1::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(135deg, #3b82f6, #60a5fa);
    transition: width 0.4s ease;
    border-radius: 1px;
}

.nav-logo a:hover h1::after {
    width: 100%;
}

.nav-logo a:hover h1 {
    color: #3b82f6;
    transform: translateY(-1px);
    text-shadow: 0 2px 6px rgba(0, 0, 0, 0.3);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
    margin: 0;
    padding: 0;
    align-items: center;
}

.nav-link {
    text-decoration: none;
    color: #ffffff;
    font-weight: 500;
    font-size: 0.95rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    transition: all 0.4s ease;
    position: relative;
    padding: 0.75rem 0;
    display: inline-block;
    text-align: center;
    opacity: 1;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.4);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -0.25rem;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: linear-gradient(135deg, #3b82f6, #60a5fa);
    transition: width 0.4s ease;
    border-radius: 1px;
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.nav-link:hover,
.nav-link.active {
    color: #3b82f6;
    transform: translateY(-1px);
    opacity: 1;
}

.hamburger {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    z-index: 10000;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: #ffffff;
    margin: 3px 0;
    transition: 0.3s;
    border-radius: 2px;
}

/* Careers Hero Section - Premium Style */
.careers-hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    overflow: hidden;
    padding-top: 65px;
    padding-bottom: 6rem;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(2, 2, 2, 0.7) 0%, rgba(2, 2, 2, 0.5) 50%, rgba(2, 2, 2, 0.8) 100%);
    z-index: 2;
}

.hero-bg-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.4);
}

.careers-hero-container {
    position: relative;
    z-index: 3;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    width: 100%;
}

.careers-hero-content {
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
    margin-bottom: 2rem;
}

.careers-hero-title {
    font-size: 3.8rem;
    font-weight: 300;
    color: #ffffff;
    margin-bottom: 2rem;
    font-family: 'Space Grotesk', 'Inter', sans-serif;
    letter-spacing: 0.02em;
    line-height: 1.1;
}

.careers-hero-title .title-line {
    display: block;
    margin-bottom: 0.5rem;
    transition: all 0.4s ease;
}

.careers-hero-title .highlight {
    background: linear-gradient(135deg, #3b82f6, #60a5fa, #1d4ed8, #3b82f6);
    background-size: 300% 100%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 200;
    position: relative;
    animation: gradient-shift 3s ease-in-out infinite;
}

@keyframes gradient-shift {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

.careers-hero-title .highlight::after {
    content: '';
    position: absolute;
    bottom: -12px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 3px;
    background: linear-gradient(90deg, #3b82f6, #60a5fa, #1d4ed8);
    border-radius: 2px;
    animation: line-expand 2s ease 1.2s forwards;
    box-shadow: 0 2px 10px rgba(59, 130, 246, 0.3);
}

@keyframes line-expand {
    to { width: 120px; }
}

.careers-hero-subtitle {
    font-size: 1.25rem;
    max-width: 800px;
    margin: 0 auto 3rem;
    line-height: 1.6;
    color: #d1d5db;
    font-family: 'Montserrat', 'Inter', sans-serif;
    font-weight: 400;
    letter-spacing: 0.01em;
}

/* Hero Features - Premium Style */
.hero-features {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
    margin-bottom: 4rem;
}

.feature-badge {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50px;
    padding: 0.75rem 1.5rem;
    font-size: 0.9rem;
    font-weight: 500;
    transition: all 0.3s ease;
    height: 48px;
    box-sizing: border-box;
}

.feature-badge:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.3);
    transform: translateY(-2px);
}

.badge-icon {
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    transition: all 0.3s ease;
}

.badge-icon i {
    font-size: 1rem;
    transition: all 0.3s ease;
}

.hero-cta {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    padding: 1.25rem 2.5rem;
    background: linear-gradient(135deg, #3b82f6, #60a5fa);
    color: #ffffff;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    border-radius: 50px;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid transparent;
    background-clip: padding-box;
    box-shadow: 0 8px 25px rgba(59, 130, 246, 0.4);
    position: relative;
    overflow: hidden;
    z-index: 2;
}

.cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, #60a5fa, #8b5cf6);
    opacity: 0;
    transition: opacity 0.5s ease;
    border-radius: 50px;
    z-index: 1;
}

.cta-button:hover::before {
    opacity: 1;
}

.cta-button:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 15px 40px rgba(59, 130, 246, 0.6),
                0 0 30px rgba(59, 130, 246, 0.3);
}

.cta-button i {
    transition: transform 0.3s ease;
}

.cta-button:hover i {
    transform: translateY(3px);
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Culture Section - Black Background */
.culture-section {
    padding: 4rem 0;
    background: #020202;
    position: relative;
}

.culture-header {
    text-align: center;
    margin-bottom: 5rem;
}

.section-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    font-family: 'Playfair Display', serif;
    color: #ffffff;
}

.section-subtitle {
    font-size: 1.2rem;
    color: #d1d5db;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
    font-weight: 400;
}

.culture-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
    margin-top: 4rem;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    justify-items: center;
}

.culture-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    padding: 3rem 2rem;
    text-align: center;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    width: 100%;
    max-width: 300px;
    box-sizing: border-box;
}

.culture-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.1), rgba(139, 92, 246, 0.1));
    opacity: 0;
    transition: opacity 0.4s ease;
    border-radius: 20px;
}

.culture-card:hover::before {
    opacity: 1;
}

.culture-card:hover {
    transform: translateY(-10px);
    border-color: rgba(59, 130, 246, 0.3);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.culture-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #3b82f6, #60a5fa);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
    font-size: 2rem;
    color: #ffffff;
    position: relative;
    z-index: 2;
}

.culture-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #ffffff;
    position: relative;
    z-index: 2;
}

.culture-card p {
    color: #9ca3af;
    line-height: 1.6;
    position: relative;
    z-index: 2;
}

/* Center the 4th card (second row) */
.culture-card:nth-child(4) {
    grid-column: 2;
    justify-self: center;
}

/* Positions Section - White Background */
.positions-section {
    padding: 4rem 0;
    background: #ffffff;
    position: relative;
}

.positions-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: #e5e7eb;
}

.positions-section .section-title {
    color: #1a1a1a;
}

.positions-section .section-subtitle {
    color: #666666;
}

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

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

.position-card {
    background: rgba(0, 0, 0, 0.02);
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 16px;
    padding: 2.5rem;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.position-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #3b82f6, #60a5fa);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

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

.position-card:hover {
    transform: translateY(-5px);
    border-color: rgba(59, 130, 246, 0.2);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

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

.position-type {
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.position-type.sales {
    background: linear-gradient(135deg, #10b981, #34d399);
    color: #ffffff;
}

.position-type.customer-service {
    background: linear-gradient(135deg, #f59e0b, #fbbf24);
    color: #ffffff;
}

.position-type.engineering {
    background: linear-gradient(135deg, #3b82f6, #60a5fa);
    color: #ffffff;
}

.position-type.design {
    background: linear-gradient(135deg, #8b5cf6, #a78bfa);
    color: #ffffff;
}

.position-location {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #666666;
    font-size: 0.9rem;
}

.position-title {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.position-description {
    color: #666666;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.position-requirements h4 {
    color: #1a1a1a;
    font-size: 1rem;
    margin-bottom: 0.75rem;
}

.position-requirements ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.position-requirements li {
    color: #666666;
    padding: 0.25rem 0;
    position: relative;
    padding-left: 1.5rem;
}

.position-requirements li::before {
    content: '•';
    color: #3b82f6;
    font-weight: bold;
    position: absolute;
    left: 0;
}

.position-status {
    margin-top: 2rem;
    text-align: center;
}

.status-badge {
    padding: 0.75rem 1.5rem;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.status-badge.coming-soon {
    background: linear-gradient(135deg, #6b7280, #9ca3af);
    color: #ffffff;
}

/* Positions CTA */
.positions-cta {
    background: rgba(0, 0, 0, 0.02);
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 16px;
    padding: 4rem;
    text-align: center;
    margin-top: 3rem;
}

.cta-content h3 {
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.cta-content p {
    color: #666666;
    margin-bottom: 2rem;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

.cta-button.secondary {
    background: transparent;
    color: #1a1a1a;
    border: 2px solid rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
}

.cta-button.secondary:hover {
    background: linear-gradient(135deg, #3b82f6, #60a5fa);
    color: #ffffff;
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 15px 40px rgba(59, 130, 246, 0.4),
                0 0 30px rgba(59, 130, 246, 0.2);
}

/* Benefits Section - Black Background */
.benefits-section {
    padding: 4rem 0;
    background: #020202;
    position: relative;
}

.benefits-section .section-title {
    color: #ffffff;
}

.benefits-section .section-subtitle {
    color: #d1d5db;
}

.benefits-header {
    text-align: center;
    margin-bottom: 5rem;
}

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

.benefit-item {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    transition: all 0.3s ease;
}

.benefit-item:hover {
    transform: translateY(-5px);
    border-color: rgba(59, 130, 246, 0.2);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.benefit-item i {
    font-size: 1.5rem;
    color: #3b82f6;
    width: 40px;
    text-align: center;
}

.benefit-item span {
    color: #d1d5db;
    font-weight: 500;
}

/* Footer */
.footer {
    background: #000000;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 4rem 0 2rem;
}

.footer-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 3rem;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 4rem;
    margin-bottom: 3rem;
}

.footer-brand .footer-logo {
    font-size: 1.8rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 1rem;
    font-family: 'Montserrat', sans-serif;
}

.footer-description {
    color: #9ca3af;
    line-height: 1.6;
    margin-bottom: 2rem;
    max-width: 400px;
}

.footer-contact {
    margin-bottom: 2rem;
}

.footer-contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    color: #9ca3af;
    font-size: 0.9rem;
}

.footer-contact-icon {
    color: #3b82f6;
    width: 20px;
}

.footer-social {
    display: flex;
    gap: 1rem;
}

.footer-social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    color: #9ca3af;
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-social a:hover {
    background: #3b82f6;
    color: #ffffff;
    transform: translateY(-2px);
}

.footer-section h4 {
    color: #ffffff;
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    font-weight: 600;
}

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

.footer-links li {
    margin-bottom: 0.75rem;
}

.footer-links a {
    color: #9ca3af;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #3b82f6;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: #6b7280;
    font-size: 0.9rem;
}

.footer-legal {
    display: flex;
    gap: 2rem;
}

.footer-legal a {
    color: #6b7280;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-legal a:hover {
    color: #9ca3af;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero-title {
        font-size: 3rem;
    }
    
    .section-title {
        font-size: 2.5rem;
    }
    
    .culture-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
    
    /* Center the 3rd and 4th cards on tablet */
    .culture-card:nth-child(3),
    .culture-card:nth-child(4) {
        grid-column: auto;
        justify-self: center;
    }
    
    .positions-grid {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    }
}

@media (max-width: 1024px) {
    .careers-hero {
        height: auto;
        padding: 8rem 0 4rem;
        padding-top: 100px;
    }
    
    .navbar {
        padding: 1rem 2rem;
    }
    
    .nav-container {
        padding: 0 2rem;
    }
    
    .nav-menu {
        position: fixed;
        left: 0;
        top: 65px;
        flex-direction: column;
        background-color: rgba(15, 15, 15, 0.95);
        width: 100%;
        height: 100vh;
        text-align: center;
        transition: all 0.3s ease;
        backdrop-filter: blur(20px);
        padding: 2rem 0;
        gap: 2rem;
        transform: translateX(-100%);
        z-index: 9998;
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
    }
    
    .nav-menu.active {
        transform: translateX(0);
        visibility: visible;
    }
    
    /* Ensure nav-menu is properly hidden when not active */
    .nav-menu:not(.active) {
        visibility: hidden;
        pointer-events: none;
    }
    
    /* Make sure nav-menu is visible when active */
    .nav-menu.active {
        visibility: visible;
        pointer-events: auto;
    }
    
    .hamburger {
        display: flex;
        padding: 0.5rem;
        z-index: 10000;
        touch-action: manipulation;
        -webkit-tap-highlight-color: transparent;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .culture-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
    }
    
    /* Reset grid positioning on mobile */
    .culture-card:nth-child(3),
    .culture-card:nth-child(4) {
        grid-column: auto;
        justify-self: center;
    }
    
    .positions-grid {
        grid-template-columns: 1fr;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: repeat(3, 1fr);
        gap: 1.5rem;
        text-align: center;
        grid-template-areas: 
            "brand brand brand"
            "services products company";
    }
    
    .footer-brand {
        grid-area: brand;
        margin-bottom: 2rem;
        text-align: center;
        padding-bottom: 2rem;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }
    
    .footer-section:nth-child(2) {
        grid-area: services;
    }
    
    .footer-section:nth-child(3) {
        grid-area: products;
    }
    
    .footer-section:nth-child(4) {
        grid-area: company;
    }
    
    .footer-description {
        font-size: 0.85rem;
        margin-bottom: 1.5rem;
        line-height: 1.5;
    }
    
    .footer-contact {
        margin-bottom: 1.5rem;
    }
    
    .footer-contact-item {
        font-size: 0.8rem;
        margin-bottom: 0.5rem;
        justify-content: center;
    }
    
    .footer-section h4 {
        font-size: 0.9rem;
        margin-bottom: 0.75rem;
    }
    
    .footer-links a {
        font-size: 0.75rem;
    }
    
    .footer-links li {
        margin-bottom: 0.5rem;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
    
    .footer-legal {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 1rem;
    }
    
    .hero-content {
        padding: 0 1rem;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .cta-button {
        padding: 1rem 2rem;
        font-size: 0.9rem;
    }
    
    .culture-card {
        padding: 2rem 1.5rem;
    }
    
    .position-card {
        padding: 2rem 1.5rem;
    }
    
    .positions-cta {
        padding: 3rem 2rem;
    }
    
    .footer-content {
        gap: 1rem;
        grid-template-columns: repeat(3, 1fr);
        grid-template-areas: 
            "services products company"
            "brand brand brand";
    }
    
    .footer-section h4 {
        font-size: 0.8rem;
        margin-bottom: 0.5rem;
    }
    
    .footer-links a {
        font-size: 0.7rem;
    }
    
    .footer-links li {
        margin-bottom: 0.4rem;
    }
    
    .footer-brand {
        padding-bottom: 1.5rem;
        margin-bottom: 1.5rem;
    }
    
    .footer-description {
        font-size: 0.8rem;
        margin-bottom: 1.25rem;
    }
    
    .footer-contact-item {
        font-size: 0.75rem;
        margin-bottom: 0.4rem;
    }
}

/* Responsive adjustments for hero features - matching contact page */
@media (max-width: 1200px) {
    .hero-features {
        gap: 2rem;
    }
    
    .feature-badge {
        min-width: 160px;
    }
}

@media (max-width: 768px) {
    .hero-features {
        flex-wrap: wrap;
        gap: 1.5rem;
    }
    
    .feature-badge {
        min-width: 140px;
    }
    
    .careers-hero-title {
        font-size: 3rem;
    }
    
    .careers-hero-subtitle {
        font-size: 1.1rem;
    }
}

@media (max-width: 480px) {
    .careers-hero {
        padding: 6rem 0 3rem;
        padding-top: 80px;
    }
    
    .careers-hero-title {
        font-size: 2.5rem;
    }
    
    .careers-hero-subtitle {
        font-size: 1rem;
    }
    
    .hero-features {
        gap: 1rem;
    }
    
    .feature-badge {
        min-width: 120px;
        padding: 0.6rem 1.2rem;
        font-size: 0.8rem;
    }
}
