        * {
            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;
            --linkedin: #0A66C2;
            --twitter: #1DA1F2;
        }
        
        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);
        }
        
        /* Герой секция */
        .team-hero {
            min-height: 70vh;
            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%);
            overflow: hidden;
        }
        
        .team-hero-content {
            max-width: 1000px;
            text-align: center;
            position: relative;
            z-index: 2;
        }
        
        .team-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)); }
        }
        
        .team-hero-subtitle {
            font-size: clamp(1.1rem, 2.5vw, 1.5rem);
            color: var(--text-gray);
            max-width: 800px;
            margin: 0 auto 50px;
            line-height: 1.8;
        }
        
        .team-stats {
            display: flex;
            justify-content: center;
            gap: 80px;
            flex-wrap: wrap;
        }
        
        .team-stat {
            text-align: center;
            position: relative;
        }
        
        .stat-number {
            font-size: 3rem;
            font-weight: bold;
            background: linear-gradient(135deg, var(--gold), var(--gold-dark));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            display: block;
        }
        
        .stat-label {
            color: var(--text-gray);
            font-size: 1.1rem;
            margin-top: 5px;
        }
        
        /* Floating avatars background */
        .floating-avatars {
            position: absolute;
            width: 100%;
            height: 100%;
            overflow: hidden;
            opacity: 0.1;
        }
        
        .floating-avatar {
            position: absolute;
            width: 60px;
            height: 60px;
            background: linear-gradient(135deg, var(--gold), var(--gold-dark));
            border-radius: 50%;
            animation: floatAvatar 30s infinite linear;
        }
        
        @keyframes floatAvatar {
            from {
                transform: translateY(100vh) rotate(0deg);
            }
            to {
                transform: translateY(-100vh) rotate(360deg);
            }
        }
        
        /* Секции */
        .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;
        }
        
        /* Лидерство */
        .leadership-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 50px;
            margin-bottom: 100px;
        }
        
        .leader-card {
            background: linear-gradient(135deg, rgba(255, 215, 0, 0.05), rgba(255, 165, 0, 0.02));
            border: 1px solid rgba(255, 215, 0, 0.2);
            border-radius: 30px;
            padding: 50px;
            display: flex;
            gap: 40px;
            align-items: start;
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }
        
        .leader-card::before {
            content: '';
            position: absolute;
            top: -50%;
            right: -50%;
            width: 100%;
            height: 100%;
            background: radial-gradient(circle, rgba(255, 215, 0, 0.1) 0%, transparent 70%);
            transition: all 0.5s ease;
            opacity: 0;
        }
        
        .leader-card:hover::before {
            opacity: 1;
            top: -25%;
            right: -25%;
        }
        
        .leader-card:hover {
            transform: translateY(-5px);
            border-color: var(--gold);
            box-shadow: 0 20px 60px rgba(255, 215, 0, 0.2);
        }
        
        .leader-photo {
            width: 150px;
            height: 150px;
            background: linear-gradient(135deg, var(--gold), var(--gold-dark));
            border-radius: 20px;
            flex-shrink: 0;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 3rem;
            font-weight: bold;
            color: var(--bg-dark);
            position: relative;
            overflow: hidden;
        }
        
        .leader-photo::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(45deg, transparent 30%, rgba(255, 255, 255, 0.3) 50%, transparent 70%);
            transform: translateX(-100%);
            transition: transform 0.6s ease;
        }
        
        .leader-card:hover .leader-photo::after {
            transform: translateX(100%);
        }
        
        .leader-info {
            flex: 1;
        }
        
        .leader-name {
            font-size: 2rem;
            color: var(--gold);
            margin-bottom: 5px;
        }
        
        .leader-position {
            font-size: 1.2rem;
            color: var(--text-light);
            margin-bottom: 20px;
        }
        
        .leader-bio {
            color: var(--text-gray);
            line-height: 1.8;
            margin-bottom: 20px;
        }
        
        .leader-achievements {
            list-style: none;
            margin-bottom: 25px;
        }
        
        .leader-achievements li {
            position: relative;
            padding-left: 25px;
            margin-bottom: 10px;
            color: var(--text-gray);
            font-size: 0.95rem;
        }
        
        .leader-achievements li::before {
            content: '→';
            position: absolute;
            left: 0;
            color: var(--gold);
            font-weight: bold;
        }
        
        .leader-social {
            display: flex;
            gap: 10px;
        }
        
        .social-icon {
            width: 35px;
            height: 35px;
            background: rgba(255, 255, 255, 0.05);
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            text-decoration: none;
            color: var(--text-gray);
            transition: all 0.3s ease;
            font-size: 0.9rem;
        }
        
        .social-icon:hover {
            background: var(--gold);
            color: var(--bg-dark);
            transform: translateY(-3px);
            border-color: var(--gold);
        }
        
        /* Основная команда */
        .team-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 40px;
            margin-bottom: 100px;
        }
        
        .team-member-card {
            background: rgba(255, 255, 255, 0.03);
            border: 1px solid rgba(255, 215, 0, 0.2);
            border-radius: 25px;
            padding: 40px 30px;
            text-align: center;
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }
        
        .team-member-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;
        }
        
        .team-member-card:hover::before {
            left: 100%;
        }
        
        .team-member-card:hover {
            transform: translateY(-10px) scale(1.02);
            border-color: var(--gold);
            box-shadow: 0 20px 50px rgba(255, 215, 0, 0.2);
        }
        
        .member-avatar {
            width: 120px;
            height: 120px;
            background: linear-gradient(135deg, var(--gold), var(--gold-dark));
            border-radius: 50%;
            margin: 0 auto 25px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 2.5rem;
            font-weight: bold;
            color: var(--bg-dark);
            position: relative;
        }
        
        .member-avatar::after {
            content: '';
            position: absolute;
            inset: -5px;
            background: linear-gradient(135deg, var(--gold), var(--gold-dark));
            border-radius: 50%;
            z-index: -1;
            opacity: 0;
            transition: opacity 0.3s ease;
        }
        
        .team-member-card:hover .member-avatar::after {
            opacity: 0.5;
            animation: pulse 1.5s ease-in-out infinite;
        }
        
        @keyframes pulse {
            0%, 100% { transform: scale(1); opacity: 0.5; }
            50% { transform: scale(1.1); opacity: 0.3; }
        }
        
        .member-name {
            font-size: 1.4rem;
            color: var(--gold);
            margin-bottom: 5px;
        }
        
        .member-position {
            color: var(--text-light);
            margin-bottom: 15px;
            font-weight: 500;
        }
        
        .member-department {
            color: var(--text-gray);
            font-size: 0.9rem;
            margin-bottom: 20px;
        }
        
        .member-skills {
            display: flex;
            flex-wrap: wrap;
            gap: 8px;
            justify-content: center;
            margin-bottom: 20px;
        }
        
        .skill-tag {
            background: rgba(255, 215, 0, 0.1);
            color: var(--gold);
            padding: 4px 12px;
            border-radius: 15px;
            font-size: 0.8rem;
            border: 1px solid rgba(255, 215, 0, 0.2);
        }
        
        .member-social {
            display: flex;
            gap: 10px;
            justify-content: center;
        }
        
        /* Советники */
        .advisors-section {
            background: linear-gradient(135deg, rgba(255, 215, 0, 0.03), rgba(255, 165, 0, 0.01));
            border-radius: 40px;
            padding: 80px 60px;
            margin-bottom: 100px;
        }
        
        .advisors-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 40px;
            margin-top: 50px;
        }
        
        .advisor-card {
            background: rgba(255, 255, 255, 0.02);
            border: 1px solid rgba(255, 215, 0, 0.3);
            border-radius: 20px;
            padding: 35px;
            display: flex;
            gap: 25px;
            align-items: start;
            transition: all 0.3s ease;
        }
        
        .advisor-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 40px rgba(255, 215, 0, 0.2);
            border-color: var(--gold);
        }
        
        .advisor-photo {
            width: 80px;
            height: 80px;
            background: linear-gradient(135deg, var(--gold), var(--gold-dark));
            border-radius: 15px;
            flex-shrink: 0;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.8rem;
            font-weight: bold;
            color: var(--bg-dark);
        }
        
        .advisor-info {
            flex: 1;
        }
        
        .advisor-name {
            font-size: 1.3rem;
            color: var(--gold);
            margin-bottom: 5px;
        }
        
        .advisor-role {
            color: var(--text-light);
            margin-bottom: 10px;
        }
        
        .advisor-expertise {
            color: var(--text-gray);
            font-size: 0.9rem;
            line-height: 1.6;
        }
        
        /* Культура компании */
        .culture-section {
            text-align: center;
            margin-bottom: 100px;
        }
        
        .culture-values {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 30px;
            margin-top: 60px;
        }
        
        .value-card {
            background: rgba(255, 255, 255, 0.02);
            border: 1px solid rgba(255, 215, 0, 0.2);
            border-radius: 20px;
            padding: 40px 30px;
            text-align: center;
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }
        
        .value-card:hover {
            transform: translateY(-5px);
            border-color: var(--gold);
            box-shadow: 0 20px 50px rgba(255, 215, 0, 0.15);
        }
        
        .value-icon {
            font-size: 3rem;
            margin-bottom: 20px;
            display: block;
            filter: drop-shadow(0 0 20px rgba(255, 215, 0, 0.5));
            animation: iconFloat 3s ease-in-out infinite;
        }
        
        @keyframes iconFloat {
            0%, 100% { transform: translateY(0); }
            50% { transform: translateY(-10px); }
        }
        
        .value-title {
            font-size: 1.3rem;
            color: var(--gold);
            margin-bottom: 15px;
        }
        
        .value-description {
            color: var(--text-gray);
            line-height: 1.6;
        }
        
        /* Join Team CTA */
        .join-team-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);
            position: relative;
            overflow: hidden;
        }
        
        .join-team-cta::before {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: radial-gradient(circle, rgba(255, 215, 0, 0.1) 0%, transparent 70%);
            animation: rotate 20s linear infinite;
        }
        
        @keyframes rotate {
            from { transform: rotate(0deg); }
            to { transform: rotate(360deg); }
        }
        
        .cta-content {
            position: relative;
            z-index: 1;
        }
        
        .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-button {
            background: linear-gradient(135deg, var(--gold), var(--gold-dark));
            color: var(--bg-dark);
            padding: 15px 40px;
            border-radius: 30px;
            text-decoration: none;
            font-weight: bold;
            font-size: 1.1rem;
            transition: all 0.3s ease;
            display: inline-block;
        }
        
        .cta-button:hover {
            transform: translateY(-3px);
            box-shadow: 0 15px 40px rgba(255, 215, 0, 0.4);
        }
        
        /* Футер */
        .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;
            }
            
            .team-hero-title {
                font-size: 2.5rem;
            }
            
            .team-stats {
                gap: 40px;
            }
            
            .leadership-grid {
                grid-template-columns: 1fr;
            }
            
            .leader-card {
                flex-direction: column;
                text-align: center;
            }
            
            .leader-social {
                justify-content: center;
            }
            
            .team-grid {
                grid-template-columns: 1fr;
            }
            
            .culture-values {
                grid-template-columns: 1fr;
            }
        }