/* Основные стили */
:root {
    /* Тёмная цветовая палитра с неоновыми акцентами */
    --primary-color: #8a2be2; /* Неоновый фиолетовый */
    --primary-glow: rgba(138, 43, 226, 0.5);
    --secondary-color: #00ffff; /* Неоновый голубой */
    --secondary-glow: rgba(0, 255, 255, 0.5);
    --accent-color: #ff00ff; /* Неоновый розовый */
    --accent-glow: rgba(255, 0, 255, 0.5);
    
    /* Фон */
    --bg-dark: #0a0a0a;
    --bg-darker: #050505;
    --bg-card: rgba(20, 20, 30, 0.7);
    --bg-glass: rgba(255, 255, 255, 0.05);
    --bg-glass-dark: rgba(0, 0, 0, 0.3);
    
    /* Текст */
    --text-primary: #ffffff;
    --text-secondary: #b0b0b0;
    --text-muted: #888888;
    
    /* Границы и тени */
    --border-glow: 0 0 15px var(--primary-glow);
    --border-accent: 0 0 10px var(--accent-glow);
    --shadow-neon: 0 0 20px rgba(138, 43, 226, 0.3);
    --shadow-neon-blue: 0 0 20px rgba(0, 255, 255, 0.3);
    
    /* Скругления */
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --radius-xl: 32px;
    --radius-circle: 50%;
    
    /* Переходы */
    --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-normal: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-bounce: 0.6s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

/* Сброс и базовые стили */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    background: var(--bg-darker);
}

body {
    font-family: 'Montserrat', sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-primary);
    background: linear-gradient(135deg, var(--bg-darker) 0%, #111122 100%);
    overflow-x: hidden;
    min-height: 100vh;
    position: relative;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 30%, var(--primary-glow) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, var(--secondary-glow) 0%, transparent 50%),
        radial-gradient(circle at 40% 80%, var(--accent-glow) 0%, transparent 50%);
    opacity: 0.1;
    z-index: -1;
    pointer-events: none;
}

/* Частицы */
.particles {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: -1;
}

.particle {
    position: absolute;
    background: var(--secondary-color);
    border-radius: 50%;
    animation: float 20s infinite linear;
    opacity: 0.1;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Типография */
h1, h2, h3, h4 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    letter-spacing: -0.5px;
}

h1 {
    font-size: 4rem;
    background: linear-gradient(135deg, var(--text-primary) 0%, var(--secondary-color) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 0 30px rgba(0, 255, 255, 0.2);
}

h2 {
    font-size: 3rem;
    background: linear-gradient(135deg, var(--text-primary) 0%, var(--accent-color) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

h3 {
    font-size: 2rem;
    color: var(--text-primary);
}

h4 {
    font-size: 1.5rem;
    color: var(--text-primary);
}

p {
    margin-bottom: 1.5rem;
    color: var(--text-secondary);
    line-height: 1.8;
}

a {
    text-decoration: none;
    color: var(--secondary-color);
    transition: all var(--transition-normal);
    position: relative;
}

a:hover {
    color: var(--accent-color);
    text-shadow: 0 0 10px var(--accent-glow);
}

/* Кнопки */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 16px 32px;
    border: none;
    border-radius: var(--radius-lg);
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all var(--transition-bounce);
    gap: 12px;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    opacity: 0;
    transition: opacity var(--transition-normal);
    z-index: -1;
}

.btn:hover::before {
    opacity: 1;
}

.btn-primary {
    background: var(--bg-glass);
    color: var(--text-primary);
    border: 2px solid var(--primary-color);
    box-shadow: var(--border-glow), inset 0 0 20px rgba(138, 43, 226, 0.1);
    backdrop-filter: blur(10px);
}

.btn-primary:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: var(--border-glow), 0 10px 30px rgba(138, 43, 226, 0.3), inset 0 0 30px rgba(138, 43, 226, 0.2);
    border-color: var(--accent-color);
}

.btn-secondary {
    background: transparent;
    color: var(--secondary-color);
    border: 2px solid var(--secondary-color);
    box-shadow: var(--shadow-neon-blue);
    backdrop-filter: blur(10px);
}

.btn-secondary:hover {
    background: rgba(0, 255, 255, 0.1);
    transform: translateY(-5px) scale(1.05);
    box-shadow: var(--shadow-neon-blue), 0 10px 30px rgba(0, 255, 255, 0.3);
    color: white;
}

/* Шапка */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: var(--bg-glass);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding: 20px 0;
    transition: all var(--transition-normal);
}

.header.scrolled {
    padding: 15px 0;
    background: rgba(10, 10, 10, 0.9);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 1.5rem;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    padding: 10px 20px;
    border-radius: var(--radius-lg);
    background: var(--bg-glass);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all var(--transition-normal);
}

.logo:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-neon);
    border-color: var(--primary-color);
}

.logo i {
    font-size: 1.8rem;
    color: var(--secondary-color);
}

.nav-links {
    display: flex;
    gap: 40px;
}

.nav-link {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    position: relative;
    padding: 8px 0;
    color: var(--text-secondary);
}

.nav-link:hover {
    color: var(--text-primary);
}

.nav-link::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
    transition: width var(--transition-normal);
}

.nav-link:hover::before {
    width: 100%;
}

.menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.8rem;
    color: var(--text-primary);
    cursor: pointer;
    padding: 10px;
    border-radius: var(--radius-sm);
    background: var(--bg-glass);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all var(--transition-normal);
}

.menu-toggle:hover {
    background: rgba(138, 43, 226, 0.2);
    transform: rotate(90deg);
}

/* Герой-секция */
.hero {
    position: relative;
    height: 100vh;
    min-height: 700px;
    display: flex;
    align-items: center;
    overflow: hidden;
    padding-top: 100px;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 50% 0%, var(--primary-glow) 0%, transparent 50%),
        radial-gradient(circle at 100% 50%, var(--accent-glow) 0%, transparent 50%),
        radial-gradient(circle at 0% 100%, var(--secondary-glow) 0%, transparent 50%);
    opacity: 0.3;
    z-index: 1;
    animation: pulse 8s infinite alternate;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, 
        rgba(10, 10, 10, 0.9) 0%, 
        rgba(20, 20, 40, 0.8) 50%, 
        rgba(10, 10, 30, 0.9) 100%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 10;
    max-width: 800px;
    text-align: center;
    margin: 0 auto;
}

.hero-title {
    font-size: 4.5rem;
    margin-bottom: 30px;
    animation: float 6s ease-in-out infinite;
    position: relative;
}

.hero-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 200px;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--accent-color), transparent);
    animation: shimmer 3s infinite;
}

.hero-subtitle {
    font-size: 1.4rem;
    margin-bottom: 50px;
    color: var(--text-secondary);
    animation: fadeInUp 1s ease 0.3s both;
    position: relative;
    padding: 0 20px;
}

.hero-subtitle::before,
.hero-subtitle::after {
    content: '✦';
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    color: var(--accent-color);
    font-size: 1.5rem;
    animation: spin 4s linear infinite;
}

.hero-subtitle::before {
    left: 0;
}

.hero-subtitle::after {
    right: 0;
}

.hero-buttons {
    display: flex;
    gap: 25px;
    justify-content: center;
    animation: fadeInUp 1s ease 0.6s both;
}

/* Секция отзывов */
.reviews-section {
    padding: 120px 0;
    position: relative;
    overflow: hidden;
}

.reviews-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 50% 50%, rgba(138, 43, 226, 0.05) 0%, transparent 70%);
    pointer-events: none;
}

.section-header {
    text-align: center;
    margin-bottom: 80px;
    position: relative;
}

.section-title {
    position: relative;
    display: inline-block;
    margin-bottom: 25px;
    padding-bottom: 20px;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
    border-radius: 2px;
    animation: widthPulse 3s infinite alternate;
}

.section-subtitle {
    color: var(--text-secondary);
    font-size: 1.2rem;
    max-width: 600px;
    margin: 0 auto;
    position: relative;
    padding: 15px 30px;
    background: var(--bg-glass);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
}

/* Слайдер */
.reviews-slider {
    position: relative;
    overflow: visible;
    padding: 20px 0;
}

.slider-container {
    display: flex;
    transition: transform var(--transition-slow);
    margin-bottom: 60px;
    perspective: 1000px;
}

.review-slide {
    flex: 0 0 100%;
    padding: 50px;
    background: var(--bg-card);
    border-radius: var(--radius-xl);
    text-align: center;
    position: relative;
    min-height: 350px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    box-shadow: 
        0 20px 40px rgba(0, 0, 0, 0.5),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    transform-style: preserve-3d;
    transition: all var(--transition-normal);
}

.review-slide::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, var(--primary-color), var(--accent-color), var(--secondary-color));
    border-radius: var(--radius-xl);
    z-index: -1;
    opacity: 0;
    transition: opacity var(--transition-normal);
}

.review-slide:hover::before {
    opacity: 0.5;
}

.review-slide:hover {
    box-shadow: 
        0 30px 60px rgba(0, 0, 0, 0.7),
        inset 0 1px 0 rgba(255, 255, 255, 0.2),
        0 0 30px var(--primary-glow);
}

.review-position {
    display: inline-block;
    padding: 12px 25px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    color: white;
    border-radius: var(--radius-lg);
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 1rem;
    margin-bottom: 35px;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.review-position::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s;
    z-index: -1;
}

.review-position:hover::before {
    left: 100%;
}

.review-text {
    font-size: 1.3rem;
    line-height: 1.9;
    color: var(--text-primary);
    font-style: italic;
    position: relative;
    padding: 0 30px;
    font-weight: 300;
}

.review-text::before,
.review-text::after {
    content: '❝';
    font-size: 4rem;
    color: var(--accent-color);
    position: absolute;
    font-family: serif;
    opacity: 0.5;
    text-shadow: 0 0 20px var(--accent-glow);
}

.review-text::before {
    top: -30px;
    left: 0;
}

.review-text::after {
    bottom: -50px;
    right: 0;
    transform: rotate(180deg);
}

.slider-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
    position: relative;
}

.slider-controls::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
}

.slider-btn {
    width: 60px;
    height: 60px;
    border-radius: var(--radius-circle);
    background: var(--bg-glass);
    border: 2px solid var(--primary-color);
    color: var(--text-primary);
    cursor: pointer;
    transition: all var(--transition-bounce);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.slider-btn::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    opacity: 0;
    transition: opacity var(--transition-normal);
    z-index: -1;
}

.slider-btn:hover {
    transform: translateY(-5px) scale(1.1);
    box-shadow: var(--border-glow), 0 10px 30px rgba(138, 43, 226, 0.4);
}

.slider-btn:hover::before {
    opacity: 1;
}

.slider-dots {
    display: flex;
    gap: 15px;
}

.slider-dot {
    width: 16px;
    height: 16px;
    border-radius: var(--radius-circle);
    background: var(--bg-glass);
    border: 2px solid var(--text-secondary);
    cursor: pointer;
    transition: all var(--transition-bounce);
    position: relative;
    overflow: hidden;
}

.slider-dot::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0);
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--secondary-color);
    transition: transform var(--transition-bounce);
}

.slider-dot.active {
    border-color: var(--secondary-color);
    transform: scale(1.2);
    box-shadow: 0 0 15px var(--secondary-glow);
}

.slider-dot.active::before {
    transform: translate(-50%, -50%) scale(1);
}

.slider-dot:hover {
    border-color: var(--accent-color);
    transform: scale(1.3);
}

/* Футер */
.footer {
    padding: 80px 0 40px;
    background: linear-gradient(to top, var(--bg-darker) 0%, transparent 100%);
    color: white;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--accent-color), var(--primary-color), var(--secondary-color), transparent);
    animation: shimmer 3s infinite;
}

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
    position: relative;
    z-index: 1;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 1.5rem;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    padding: 10px 20px;
    border-radius: var(--radius-lg);
    background: var(--bg-glass);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all var(--transition-normal);
}

.footer-logo:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-neon);
    border-color: var(--primary-color);
}

.footer-logo i {
    font-size: 2.2rem;
    color: var(--secondary-color);
    animation: pulse 2s infinite;
}

.footer-text {
    max-width: 600px;
    color: var(--text-secondary);
    margin-bottom: 20px;
    font-size: 1.1rem;
    line-height: 1.8;
    padding: 20px;
    background: var(--bg-glass);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-copyright {
    color: var(--text-muted);
    font-size: 0.9rem;
    position: relative;
    padding-top: 20px;
}

.footer-copyright::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--text-muted), transparent);
}

/* Попапы */
.popup {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.popup.active {
    display: flex;
}

.popup-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(20px);
    animation: fadeIn var(--transition-normal);
}

.popup-content {
    position: relative;
    z-index: 10;
    width: 100%;
    max-width: 700px;
    background: var(--bg-card);
    border-radius: var(--radius-xl);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 
        0 25px 50px rgba(0, 0, 0, 0.5),
        0 0 50px var(--primary-glow);
    overflow: hidden;
    animation: popupIn 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(30px);
}

.popup-content::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, var(--primary-color), var(--accent-color), transparent);
    z-index: -1;
    border-radius: var(--radius-xl);
    opacity: 0.5;
}

.popup-close {
    position: absolute;
    top: 25px;
    right: 25px;
    width: 45px;
    height: 45px;
    border-radius: var(--radius-circle);
    background: var(--bg-glass);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: var(--text-primary);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--transition-bounce);
    z-index: 20;
    font-size: 1.2rem;
}

.popup-close:hover {
    background: var(--accent-color);
    color: white;
    transform: rotate(180deg) scale(1.1);
    box-shadow: 0 0 20px var(--accent-glow);
}

.popup-header {
    padding: 50px 40px 30px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.popup-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, 
        rgba(138, 43, 226, 0.2) 0%, 
        rgba(255, 0, 255, 0.1) 50%, 
        rgba(0, 255, 255, 0.05) 100%);
}

.popup-icon {
    font-size: 4rem;
    margin-bottom: 20px;
    color: var(--secondary-color);
    filter: drop-shadow(0 0 10px var(--secondary-glow));
    animation: float 3s ease-in-out infinite;
}

.popup-title {
    color: var(--text-primary);
    font-size: 2.5rem;
    background: linear-gradient(135deg, var(--text-primary), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.popup-body {
    padding: 40px;
    max-height: 70vh;
    overflow-y: auto;
}

/* Стилизация скроллбара */
.popup-body::-webkit-scrollbar {
    width: 6px;
}

.popup-body::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 3px;
}

.popup-body::-webkit-scrollbar-thumb {
    background: linear-gradient(var(--primary-color), var(--accent-color));
    border-radius: 3px;
}

.popup-body::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(var(--accent-color), var(--secondary-color));
}

/* Вакансии */
.vacancy {
    padding: 30px;
    border-radius: var(--radius-lg);
    background: var(--bg-glass);
    margin-bottom: 25px;
    border-left: 4px solid var(--primary-color);
    transition: all var(--transition-normal);
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
}

.vacancy:hover {
    transform: translateX(10px);
    border-left-color: var(--accent-color);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.vacancy::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transition: left 0.5s;
}

.vacancy:hover::before {
    left: 100%;
}

.vacancy-title {
    color: var(--text-primary);
    margin-bottom: 15px;
    font-size: 1.4rem;
}

.vacancy-description {
    color: var(--text-secondary);
    margin-bottom: 20px;
    line-height: 1.7;
}

.vacancy-tags {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.vacancy-tag {
    padding: 8px 16px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    border-radius: var(--radius-sm);
    font-size: 0.9rem;
    font-weight: 600;
    color: white;
    transition: all var(--transition-normal);
}

.vacancy-tag:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(138, 43, 226, 0.4);
}

/* Контакты */
.contact-info {
    display: flex;
    flex-direction: column;
    gap: 30px;
    margin-bottom: 40px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 25px;
    padding: 20px;
    border-radius: var(--radius-lg);
    background: var(--bg-glass);
    transition: all var(--transition-normal);
    border: 1px solid transparent;
}

.contact-item:hover {
    transform: translateX(10px);
    border-color: var(--primary-color);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.contact-icon {
    width: 60px;
    height: 60px;
    border-radius: var(--radius-circle);
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: white;
    flex-shrink: 0;
    transition: all var(--transition-normal);
}

.contact-item:hover .contact-icon {
    transform: scale(1.1) rotate(10deg);
}

.contact-details {
    flex: 1;
}

.contact-title {
    font-size: 1rem;
    color: var(--text-secondary);
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.contact-value {
    font-size: 1.3rem;
    color: var(--text-primary);
    font-weight: 600;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 30px;
}

.social-link {
    width: 55px;
    height: 55px;
    border-radius: var(--radius-circle);
    background: var(--bg-glass);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    color: var(--text-primary);
    transition: all var(--transition-bounce);
    border: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    overflow: hidden;
}

.social-link::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    opacity: 0;
    transition: opacity var(--transition-normal);
    z-index: -1;
}

.social-link:hover {
    transform: translateY(-8px) scale(1.1);
    color: white;
    box-shadow: 0 10px 25px rgba(138, 43, 226, 0.3);
}

.social-link:hover::before {
    opacity: 1;
}

.popup-note {
    padding: 20px;
    background: var(--bg-glass);
    border-radius: var(--radius-lg);
    text-align: center;
    font-size: 1rem;
    color: var(--text-secondary);
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
}

.popup-note strong {
    color: var(--accent-color);
    font-weight: 600;
}

/* Анимации */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes popupIn {
    0% {
        opacity: 0;
        transform: translateY(-100px) scale(0.8) rotateX(45deg);
    }
    100% {
        opacity: 1;
        transform: translateY(0) scale(1) rotateX(0);
    }
}

@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-20px);
    }
}

@keyframes pulse {
    0%, 100% {
        opacity: 0.3;
    }
    50% {
        opacity: 0.5;
    }
}

@keyframes shimmer {
    0%, 100% {
        background-position: -200px 0;
    }
    50% {
        background-position: 200px 0;
    }
}

@keyframes spin {
    from {
        transform: translateY(-50%) rotate(0deg);
    }
    to {
        transform: translateY(-50%) rotate(360deg);
    }
}

@keyframes widthPulse {
    0%, 100% {
        width: 100px;
    }
    50% {
        width: 150px;
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

/* Анимация для частиц */
@keyframes float {
    0% {
        transform: translateY(0) translateX(0);
    }
    25% {
        transform: translateY(-20px) translateX(10px);
    }
    50% {
        transform: translateY(0) translateX(20px);
    }
    75% {
        transform: translateY(20px) translateX(10px);
    }
    100% {
        transform: translateY(0) translateX(0);
    }
}

/* Адаптивность */
@media (max-width: 1200px) {
    h1 {
        font-size: 3.5rem;
    }
    
    h2 {
        font-size: 2.8rem;
    }
    
    .hero-title {
        font-size: 3.5rem;
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: var(--bg-glass);
        backdrop-filter: blur(20px);
        padding: 20px;
        flex-direction: column;
        gap: 15px;
        border-radius: 0 0 var(--radius-lg) var(--radius-lg);
        border: 1px solid rgba(255, 255, 255, 0.1);
        border-top: none;
        box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
    }
    
    .nav-links.active {
        display: flex;
    }
    
    .nav-link {
        padding: 15px;
        border-radius: var(--radius-md);
        background: rgba(255, 255, 255, 0.05);
        text-align: center;
    }
    
    .nav-link:hover {
        background: rgba(138, 43, 226, 0.2);
    }
    
    .menu-toggle {
        display: block;
    }
    
    h1 {
        font-size: 2.8rem;
    }
    
    h2 {
        font-size: 2.2rem;
    }
    
    .hero-title {
        font-size: 2.8rem;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
        padding: 0 30px;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }
    
    .btn {
        width: 100%;
        max-width: 300px;
    }
    
    .review-slide {
        padding: 30px 20px;
    }
    
    .review-text {
        font-size: 1.2rem;
        padding: 0 15px;
    }
    
    .slider-controls {
        gap: 20px;
    }
    
    .slider-btn {
        width: 50px;
        height: 50px;
    }
    
    .popup-body {
        padding: 25px;
    }
    
    .popup-header {
        padding: 40px 25px 25px;
    }
    
    .contact-item {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
    
    .contact-details {
        text-align: center;
    }
}

@media (max-width: 576px) {
    h1 {
        font-size: 2.5rem;
    }
    
    h2 {
        font-size: 2rem;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .review-slide {
        min-height: 400px;
        padding: 25px 15px;
    }
    
    .review-text {
        font-size: 1.1rem;
        padding: 0 10px;
    }
    
    .review-text::before,
    .review-text::after {
        font-size: 3rem;
    }
    
    .slider-controls {
        gap: 15px;
    }
    
    .slider-btn {
        width: 45px;
        height: 45px;
        font-size: 1.2rem;
    }
    
    .slider-dots {
        gap: 8px;
    }
    
    .slider-dot {
        width: 12px;
        height: 12px;
    }
    
    .popup-content {
        margin: 10px;
    }
    
    .popup-header {
        padding: 30px 20px 20px;
    }
    
    .popup-title {
        font-size: 1.8rem;
    }
    
    .vacancy {
        padding: 20px;
    }
    
    .vacancy-title {
        font-size: 1.2rem;
    }
    
    .social-link {
        width: 45px;
        height: 45px;
        font-size: 1.2rem;
    }
}
/* ====================== СЛАЙДЕР ОТЗЫВОВ ====================== */
.slider-container {
    display: flex;
    transition: transform 0.7s cubic-bezier(0.25, 0.1, 0.25, 1);
    gap: 24px;                    /* расстояние между карточками */
    padding: 10px 0;
}

.review-slide {
    flex: 0 0 calc(33.333% - 16px);   /* 3 слайда на ПК */
    background: var(--bg-card);
    border-radius: var(--radius-xl);
    padding: 40px 32px;
    min-height: 380px;
    box-shadow: 
        0 20px 40px rgba(0, 0, 0, 0.5),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.4s ease;
    backdrop-filter: blur(20px);
}

/* Адаптивность слайдера */
@media (max-width: 992px) {
    .review-slide {
        flex: 0 0 calc(50% - 12px);   /* 2 слайда на планшете */
    }
}

@media (max-width: 576px) {
    .review-slide {
        flex: 0 0 100%;               /* 1 слайд на телефоне */
        padding: 32px 24px;
        min-height: 360px;
    }
}

/* ====================== ЛОГО (чтобы всегда было видно) ====================== */
.logo {
    display: flex;
    align-items: center;
    gap: 14px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 1.65rem;
    color: white;
    text-decoration: none;
    padding: 14px 26px;
    border-radius: 18px;
    background: rgba(15, 15, 25, 0.85);
    backdrop-filter: blur(16px);
    border: 1px solid rgba(138, 43, 226, 0.4);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    transition: all 0.4s ease;
    z-index: 100;
}

.logo:hover {
    transform: translateY(-4px);
    box-shadow: 0 15px 40px rgba(138, 43, 226, 0.4);
    border-color: var(--primary-color);
}

.logo i {
    font-size: 2.2rem;
    color: var(--secondary-color);
    filter: drop-shadow(0 0 10px var(--secondary-glow));
}

.logo span {
    background: linear-gradient(90deg, #ffffff, var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* ====================== ПОПАП КОНТАКТОВ (только Telegram и WhatsApp) ====================== */
.social-links {
    display: flex;
    justify-content: center;
    gap: 25px;
    margin: 35px 0 25px;
}

.social-link {
    width: 62px;
    height: 62px;
    border-radius: 50%;
    background: var(--bg-glass);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: var(--text-primary);
    transition: all var(--transition-bounce);
    border: 1px solid rgba(255, 255, 255, 0.15);
    position: relative;
    overflow: hidden;
}

.social-link::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    opacity: 0;
    transition: opacity var(--transition-normal);
    z-index: -1;
}

.social-link:hover {
    transform: translateY(-6px) scale(1.12);
    color: white;
    box-shadow: 0 12px 30px rgba(138, 43, 226, 0.4);
}

.social-link:hover::before {
    opacity: 1;
}

/* Убираем ненужные иконки (оставляем только Telegram и WhatsApp) */
.social-link i.fab.fa-vk,
.social-link i.fab.fa-instagram {
    display: none;
}
/* ====================== ПОПАП КОНТАКТОВ ====================== */

/* Основной блок контактов */
.contact-info {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 40px;
}

/* Стиль для обычных контактных блоков (email, телефон, адрес) */
.contact-item {
    display: flex;
    align-items: center;
    gap: 25px;
    padding: 22px 25px;
    border-radius: var(--radius-lg);
    background: var(--bg-glass);
    transition: all var(--transition-normal);
    border: 1px solid transparent;
}

.contact-item:hover {
    transform: translateX(8px);
    border-color: var(--primary-color);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.25);
}

.contact-icon {
    width: 58px;
    height: 58px;
    border-radius: var(--radius-circle);
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.55rem;
    color: white;
    flex-shrink: 0;
}

.contact-details {
    flex: 1;
}

.contact-title {
    font-size: 1rem;
    color: var(--text-secondary);
    margin-bottom: 6px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.contact-value {
    font-size: 1.32rem;
    color: var(--text-primary);
    font-weight: 600;
}

/* ====================== КНОПКИ ТГ И WHATSAPP ====================== */
/* Специальный стиль только для мессенджеров */
.messenger-buttons {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin: 30px 0 20px;
}

.messenger-btn {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 22px 25px;
    border-radius: var(--radius-lg);
    background: var(--bg-glass);
    border: 1px solid rgba(255, 255, 255, 0.12);
    transition: all var(--transition-normal);
    text-decoration: none;
    color: var(--text-primary);
    font-size: 1.32rem;
    font-weight: 600;
    backdrop-filter: blur(10px);
}

.messenger-btn:hover {
    transform: translateX(10px);
    border-color: var(--secondary-color);
    box-shadow: 0 12px 30px rgba(0, 255, 255, 0.15);
    background: rgba(0, 255, 255, 0.08);
}

.messenger-btn .messenger-icon {
    width: 58px;
    height: 58px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: white;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.messenger-btn.telegram .messenger-icon {
    background: linear-gradient(135deg, #229ED9, #1E96C8);
}

.messenger-btn.whatsapp .messenger-icon {
    background: linear-gradient(135deg, #25D366, #20C65A);
}

.messenger-btn:hover .messenger-icon {
    transform: scale(1.08);
}

.messenger-btn .messenger-text {
    flex: 1;
}

.messenger-btn .messenger-name {
    font-size: 1.1rem;
    color: var(--text-secondary);
    margin-bottom: 4px;
}

/* ====================== СОЦИАЛЬНЫЕ ССЫЛКИ (если где-то ещё остались) ====================== */
.social-links {
    display: none; /* полностью скрываем старый блок */
}
/* Popup отзывов */
.review-popup {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.85);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 10000;
}

.review-popup.active {
    display: flex;
}

.review-popup-content {
    background: var(--bg-card);
    color: var(--text-primary);
    padding: 40px 35px;
    width: 100%;
    max-width: 480px;
    border-radius: var(--radius-xl);
    border: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.6);
}

.close-popup {
    position: absolute;
    top: 15px;
    right: 25px;
    font-size: 32px;
    color: #888;
    cursor: pointer;
}

.close-popup:hover {
    color: #fff;
}

.review-popup-content label {
    display: block;
    margin: 20px 0 10px;
    font-weight: 500;
}

.review-popup-content select,
.review-popup-content textarea {
    width: 100%;
    padding: 14px 16px;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(255, 255, 255, 0.2);
    background: rgba(255,255,255,0.05);
    color: var(--text-primary);
    font-size: 1.05rem;
}

.review-popup-content textarea {
    resize: vertical;
    min-height: 140px;
}

/* Звёзды в форме */
.rating-stars {
    display: flex;
    gap: 12px;
    font-size: 42px;
    margin: 12px 0 25px;
    cursor: pointer;
}

.rating-stars .star {
    color: #555;
    transition: all 0.2s;
}

.rating-stars .star.active,
.rating-stars .star.hover {
    color: #ffd700;
    text-shadow: 0 0 15px #ffd700;
}
option {
    color: #000;
}