        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        :root {
            --gold: #FFD700;
            --gold-dark: #FFA500;
            --gold-darker: #FF8C00;
            --bg-dark: #0a0a0a;
            --bg-darker: #000000;
            --text-light: #ffffff;
            --text-gray: #aaaaaa;
            --text-dark: #666666;
            --success: #51cf66;
            --danger: #ff6b6b;
        }
        
        body {
            font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
            background: var(--bg-dark);
            color: var(--text-light);
            overflow-x: hidden;
            line-height: 1.6;
        }
        
        /* Навигация */
        .navbar {
            position: fixed;
            top: 0;
            width: 100%;
            background: rgba(10, 10, 10, 0.95);
            backdrop-filter: blur(10px);
            z-index: 1000;
            padding: 20px 0;
            transition: all 0.3s ease;
        }
        
        .navbar.scrolled {
            padding: 15px 0;
            box-shadow: 0 5px 20px rgba(255, 215, 0, 0.1);
        }
        
        .nav-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        
        .logo {
            font-size: 1.8rem;
            font-weight: bold;
            background: linear-gradient(135deg, var(--gold), var(--gold-dark));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            text-decoration: none;
        }
        
        .nav-links {
            display: flex;
            list-style: none;
            gap: 30px;
        }
        
        .nav-links a {
            color: var(--text-light);
            text-decoration: none;
            transition: color 0.3s ease;
            font-weight: 500;
        }
        
        .nav-links a:hover,
        .nav-links a.active {
            color: var(--gold);
        }
        
        .nav-button {
            background: linear-gradient(135deg, var(--gold), var(--gold-dark));
            color: var(--bg-dark);
            padding: 10px 25px;
            border-radius: 25px;
            text-decoration: none;
            font-weight: bold;
            transition: all 0.3s ease;
        }
        
        .nav-button:hover {
            transform: translateY(-2px);
            box-shadow: 0 10px 30px rgba(255, 215, 0, 0.3);
        }
        
        /* Герой секция */
        .career-hero {
            min-height: 60vh;
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
            padding: 150px 20px 80px;
            background: radial-gradient(ellipse at top center, rgba(255, 215, 0, 0.15) 0%, transparent 60%);
        }
        
        .career-hero-content {
            max-width: 900px;
            text-align: center;
            position: relative;
            z-index: 2;
        }
        
        .career-hero-title {
            font-size: clamp(3rem, 7vw, 5rem);
            font-weight: bold;
            margin-bottom: 20px;
            background: linear-gradient(135deg, var(--gold), var(--gold-dark));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            animation: glow 3s ease-in-out infinite alternate;
        }
        
        @keyframes glow {
            from { filter: drop-shadow(0 0 30px rgba(255, 215, 0, 0.5)); }
            to { filter: drop-shadow(0 0 50px rgba(255, 215, 0, 0.8)); }
        }
        
        .career-hero-subtitle {
            font-size: clamp(1.1rem, 2.5vw, 1.5rem);
            color: var(--text-gray);
            max-width: 700px;
            margin: 0 auto 40px;
            line-height: 1.8;
        }
        
        .career-stats {
            display: flex;
            justify-content: center;
            gap: 60px;
            flex-wrap: wrap;
        }
        
        .career-stat {
            text-align: center;
        }
        
        .stat-value {
            font-size: 2.5rem;
            font-weight: bold;
            color: var(--gold);
            display: block;
        }
        
        .stat-label {
            color: var(--text-gray);
            font-size: 1rem;
        }
        
        /* Floating particles */
        .particles {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            overflow: hidden;
            z-index: 1;
        }
        
        .particle {
            position: absolute;
            width: 4px;
            height: 4px;
            background: var(--gold);
            border-radius: 50%;
            opacity: 0.3;
            animation: float 20s infinite linear;
        }
        
        @keyframes float {
            from {
                transform: translateY(100vh) rotate(0deg);
                opacity: 0;
            }
            10% {
                opacity: 0.3;
            }
            90% {
                opacity: 0.3;
            }
            to {
                transform: translateY(-100vh) rotate(360deg);
                opacity: 0;
            }
        }
        
        /* Секции */
        .section {
            padding: 30px 20px;
            max-width: 1200px;
            margin: 0 auto;
        }
        
        .section-title {
            font-size: 3rem;
            text-align: center;
            margin-bottom: 20px;
            background: linear-gradient(135deg, var(--gold), var(--gold-dark));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }
        
        .section-subtitle {
            text-align: center;
            color: var(--text-gray);
            font-size: 1.2rem;
            margin-bottom: 60px;
            max-width: 800px;
            margin-left: auto;
            margin-right: auto;
        }
        
        /* Почему ARUM */
        .why-arum {
            background: linear-gradient(135deg, rgba(255, 215, 0, 0.05), rgba(255, 165, 0, 0.02));
            border-radius: 30px;
            padding: 80px 60px;
            margin-bottom: 100px;
            border: 1px solid rgba(255, 215, 0, 0.2);
        }
        
        .benefits-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 40px;
            margin-top: 50px;
        }
        
        .benefit-card {
            text-align: center;
            padding: 30px;
            background: rgba(255, 255, 255, 0.02);
            border-radius: 20px;
            transition: all 0.3s ease;
        }
        
        .benefit-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 20px 50px rgba(255, 215, 0, 0.2);
        }
        
        .benefit-icon {
            font-size: 3rem;
            margin-bottom: 20px;
            display: block;
            filter: drop-shadow(0 0 20px rgba(255, 215, 0, 0.5));
        }
        
        .benefit-title {
            font-size: 1.3rem;
            color: var(--gold);
            margin-bottom: 15px;
        }
        
        .benefit-text {
            color: var(--text-gray);
            line-height: 1.8;
        }
        
        /* Фильтры вакансий */
        .filters-container {
            display: flex;
            justify-content: center;
            gap: 20px;
            margin-bottom: 50px;
            flex-wrap: wrap;
        }
        
        .filter-btn {
            background: rgba(255, 255, 255, 0.05);
            border: 1px solid rgba(255, 215, 0, 0.3);
            color: var(--text-light);
            padding: 12px 25px;
            border-radius: 25px;
            cursor: pointer;
            transition: all 0.3s ease;
            font-size: 1rem;
            font-weight: 500;
        }
        
        .filter-btn:hover {
            border-color: var(--gold);
            transform: translateY(-2px);
        }
        
        .filter-btn.active {
            background: linear-gradient(135deg, var(--gold), var(--gold-dark));
            color: var(--bg-dark);
            border-color: transparent;
        }
        
        /* Вакансии */
        .vacancies-grid {
            display: grid;
            gap: 30px;
        }
        
        .vacancy-card {
            background: rgba(255, 255, 255, 0.03);
            border: 1px solid rgba(255, 215, 0, 0.2);
            border-radius: 20px;
            padding: 40px;
            transition: all 0.3s ease;
            cursor: pointer;
            position: relative;
            overflow: hidden;
        }
        
        .vacancy-card:hover {
            transform: translateY(-5px);
            border-color: var(--gold);
            box-shadow: 0 20px 50px rgba(255, 215, 0, 0.2);
        }
        
        .vacancy-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255, 215, 0, 0.1), transparent);
            transition: left 0.5s ease;
        }
        
        .vacancy-card:hover::before {
            left: 100%;
        }
        
        .vacancy-header {
            display: flex;
            justify-content: space-between;
            align-items: start;
            margin-bottom: 20px;
            flex-wrap: wrap;
            gap: 20px;
        }
        
        .vacancy-title {
            font-size: 1.8rem;
            color: var(--gold);
            margin-bottom: 5px;
        }
        
        .vacancy-department {
            color: var(--text-gray);
            font-size: 1rem;
        }
        
        .vacancy-tags {
            display: flex;
            gap: 10px;
            flex-wrap: wrap;
        }
        
        .tag {
            background: rgba(255, 215, 0, 0.1);
            color: var(--gold);
            padding: 5px 15px;
            border-radius: 15px;
            font-size: 0.85rem;
            border: 1px solid rgba(255, 215, 0, 0.3);
        }
        
        .vacancy-details {
            margin-bottom: 25px;
        }
        
        .vacancy-info {
            display: flex;
            gap: 30px;
            margin-bottom: 20px;
            flex-wrap: wrap;
        }
        
        .info-item {
            color: var(--text-gray);
            font-size: 0.95rem;
        }
        
        .info-item strong {
            color: var(--text-light);
        }
        
        .vacancy-description {
            color: var(--text-gray);
            line-height: 1.8;
            margin-bottom: 25px;
        }
        
        .requirements-list {
            list-style: none;
            margin-bottom: 25px;
        }
        
        .requirements-list li {
            position: relative;
            padding-left: 25px;
            margin-bottom: 10px;
            color: var(--text-gray);
        }
        
        .requirements-list li::before {
            content: '✓';
            position: absolute;
            left: 0;
            color: var(--success);
            font-weight: bold;
        }
        
        .vacancy-footer {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding-top: 25px;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
        }
        
        .salary-range {
            font-size: 1.3rem;
            color: var(--gold);
            font-weight: 600;
        }
        
        .apply-btn {
            background: linear-gradient(135deg, var(--gold), var(--gold-dark));
            color: var(--bg-dark);
            padding: 12px 30px;
            border-radius: 25px;
            text-decoration: none;
            font-weight: bold;
            transition: all 0.3s ease;
            display: inline-block;
        }
        
        .apply-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 10px 30px rgba(255, 215, 0, 0.4);
        }
        
        /* Процесс найма */
        .hiring-process {
            background: rgba(255, 255, 255, 0.02);
            border-radius: 30px;
            padding: 80px 60px;
            margin: 100px 0;
        }
        
        .process-steps {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 40px;
            margin-top: 50px;
            position: relative;
        }
        
        .process-step {
            text-align: center;
            position: relative;
        }
        
        .step-number {
            width: 60px;
            height: 60px;
            background: linear-gradient(135deg, var(--gold), var(--gold-dark));
            color: var(--bg-dark);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5rem;
            font-weight: bold;
            margin: 0 auto 20px;
            position: relative;
            z-index: 2;
        }
        
        .step-title {
            font-size: 1.2rem;
            color: var(--gold);
            margin-bottom: 10px;
        }
        
        .step-description {
            color: var(--text-gray);
            font-size: 0.95rem;
        }
        
        /* Connecting lines */
        .process-step:not(:last-child)::after {
            content: '';
            position: absolute;
            top: 30px;
            left: 50%;
            width: 100%;
            height: 2px;
            background: linear-gradient(90deg, var(--gold), transparent);
            z-index: 1;
        }
        
        /* CTA секция */
        .cta {
            background: linear-gradient(135deg, rgba(255, 215, 0, 0.1), rgba(255, 165, 0, 0.05));
            border-radius: 30px;
            padding: 80px 40px;
            text-align: center;
            margin: 100px auto;
            max-width: 1000px;
            border: 2px solid rgba(255, 215, 0, 0.3);
        }
        
        .cta-title {
            font-size: 3rem;
            margin-bottom: 20px;
            background: linear-gradient(135deg, var(--gold), var(--gold-dark));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }
        
        .cta-text {
            font-size: 1.3rem;
            color: var(--text-gray);
            margin-bottom: 40px;
        }
        
        .cta-email {
            font-size: 1.5rem;
            color: var(--gold);
            text-decoration: none;
            transition: all 0.3s ease;
        }
        
        .cta-email:hover {
            text-decoration: underline;
            filter: brightness(1.2);
        }
        
        /* Футер */
        .footer {
            background: var(--bg-darker);
            padding: 60px 20px 30px;
            margin-top: 100px;
        }
        
        .footer-content {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 40px;
            margin-bottom: 40px;
        }
        
        .footer-section h4 {
            color: var(--gold);
            margin-bottom: 20px;
            font-size: 1.2rem;
        }
        
        .footer-links {
            list-style: none;
        }
        
        .footer-links li {
            margin-bottom: 10px;
        }
        
        .footer-links a {
            color: var(--text-gray);
            text-decoration: none;
            transition: color 0.3s ease;
        }
        
        .footer-links a:hover {
            color: var(--gold);
        }
        
        .footer-social {
            display: flex;
            gap: 15px;
            margin-top: 20px;
        }
        
        .social-link {
            width: 40px;
            height: 40px;
            background: rgba(255, 215, 0, 0.1);
            border: 1px solid rgba(255, 215, 0, 0.3);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            text-decoration: none;
            color: var(--gold);
            transition: all 0.3s ease;
        }
        
        .social-link:hover {
            background: var(--gold);
            color: var(--bg-dark);
            transform: translateY(-3px);
        }
        
        .footer-bottom {
            text-align: center;
            padding-top: 30px;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            color: var(--text-gray);
        }
        
        /* Мобильная адаптация */
        .mobile-menu {
            display: none;
            background: none;
            border: none;
            color: var(--gold);
            font-size: 1.5rem;
            cursor: pointer;
        }
        
        @media (max-width: 768px) {
            .nav-links {
                display: none;
            }
            
            .mobile-menu {
                display: block;
            }
            
            .career-hero-title {
                font-size: 2.5rem;
            }
            
            .career-stats {
                gap: 30px;
            }
            
            .vacancy-header {
                flex-direction: column;
            }
            
            .process-step:not(:last-child)::after {
                display: none;
            }
        }