/* ===== RESET & BASE STYLES ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary: #4361ee;
    --primary-dark: #3a0ca3;
    --primary-light: #4895ef;
    --secondary: #7209b7;
    --secondary-dark: #560bad;
    --accent: #f72585;
    --accent-light: #ff7eb3;
    --success: #4cc9f0;
    --success-dark: #3a86ff;
    --warning: #f9c74f;
    --warning-dark: #f8961e;
    --danger: #ef233c;
    --danger-dark: #d90429;

    --dark: #1a1a2e;
    --darker: #0f0f1e;
    --light: #f8f9fa;
    --gray: #6c757d;
    --light-gray: #adb5bd;

    --glass: rgba(255, 255, 255, 0.1);
    --glass-dark: rgba(0, 0, 0, 0.2);
    --glass-border: rgba(255, 255, 255, 0.2);
    --glass-border-dark: rgba(0, 0, 0, 0.3);

    --glow: 0 0 20px rgba(67, 97, 238, 0.5);
    --glow-accent: 0 0 20px rgba(247, 37, 133, 0.5);

    --radius-xl: 32px;
    --radius-lg: 24px;
    --radius-md: 16px;
    --radius-sm: 8px;

    --transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    --transition-fast: all 0.2s ease;

    --shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    --shadow-light: 0 5px 15px rgba(0, 0, 0, 0.1);
    --shadow-dark: 0 20px 40px rgba(0, 0, 0, 0.5);

    /* Добавляем новые переменные для улучшения доступности */
    --focus-outline: 2px solid var(--accent);
    --focus-outline-offset: 2px;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', 'Montserrat', sans-serif;
    color: var(--light);
    background: linear-gradient(135deg, var(--darker) 0%, var(--dark) 100%);
    min-height: 100vh;
    overflow-x: hidden;
    position: relative;
    line-height: 1.6;
}

/* Улучшаем доступность */
*:focus {
    outline: var(--focus-outline);
    outline-offset: var(--focus-outline-offset);
}

/* Скрываем фокус для пользователей мыши (но сохраняем для клавиатурной навигации) */
.js-focus-visible :focus:not(.focus-visible) {
    outline: none;
}
.js-focus-visible .focus-visible {
    outline: var(--focus-outline);
    outline-offset: var(--focus-outline-offset);
}

/* Улучшенные стили фокуса для интерактивных элементов */
a:focus,
button:focus,
input:focus,
select:focus,
textarea:focus,
[tabindex]:focus {
    outline: 2px solid var(--accent-light);
    outline-offset: 3px;
    border-radius: var(--radius-sm);
}

/* Улучшенные стили фокуса для навигационных элементов */
.nav-menu a:focus {
    background: rgba(255, 255, 255, 0.2);
    color: white;
    outline: 2px solid var(--accent-light);
    outline-offset: 2px;
}

/* Улучшенные стили фокуса для кнопок */
.btn-base:focus,
.btn-3d:focus,
.btn-glass:focus,
.btn-gradient:focus,
.btn-pulse:focus,
.btn-outline:focus {
    outline: 2px solid var(--accent-light);
    outline-offset: 3px;
    box-shadow: 0 0 0 3px rgba(247, 37, 133, 0.4);
}

/* Улучшенные стили фокуса для карточек */
.glass-card:focus,
.competency-card:focus,
.feature-card:focus {
    outline: 2px solid var(--accent-light);
    outline-offset: 3px;
    box-shadow: var(--shadow-dark);
}

.container {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ===== 3D BACKGROUND ===== */
.bg-3d {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    pointer-events: none;
    overflow: hidden;
}

.cube, .sphere, .pyramid {
    position: absolute;
    width: 200px; /* Уменьшаем размер для уменьшения визуального шума */
    height: 200px;
    opacity: 0.02; /* Уменьшаем непрозрачность */
    filter: blur(40px); /* Уменьшаем размытие */
    animation-duration: 30s; /* Увеличиваем длительность анимации */
    animation-iteration-count: infinite;
    animation-timing-function: ease-in-out;
}

/* Оптимизация для мобильных устройств */
@media (max-width: 768px) {
    .cube, .sphere, .pyramid {
        display: none;
    }

    .particles {
        display: none;
    }

    /* Упрощаем анимации для экономии ресурсов */
    .text-3d-layer {
        animation: none;
    }

    .card-3d {
        animation: none;
    }

    .card-3d:hover .card-content {
        transform: translateZ(20px);
    }
}

/* Оптимизация для устройств с низкой производительностью */
@media (prefers-reduced-motion: reduce) {
    .cube, .sphere, .pyramid {
        animation: none;
    }

    .particles {
        animation: none;
    }

    .text-3d-layer {
        animation: none;
    }

    .card-3d {
        animation: none;
    }

    .glass-card, .competency-card, .feature-card {
        transition: none;
    }

    .btn-base, .btn-3d, .btn-glass {
        transition: none;
    }
    
    /* Дополнительные оптимизации для анимаций */
    .hero-3d,
    .features-grid,
    .timeline-item,
    .partner-card,
    .competency-card,
    .about-card,
    .member-card,
    .document-card,
    .contact-method-card,
    .faq-item,
    .notes-card {
        animation: none !important;
        transition: none !important;
    }
}

/* Оптимизация производительности для анимаций */
@media (prefers-reduced-motion: no-preference) {
    .cube, .sphere, .pyramid {
        will-change: transform;
    }

    .glass-card,
    .competency-card,
    .feature-card,
    .btn-base,
    .btn-3d,
    .btn-glass {
        will-change: transform, box-shadow;
    }
}

/* Улучшение производительности с помощью GPU */
.gpu-accelerate {
    transform: translateZ(0);
    will-change: transform;
}

.cube {
    top: 10%;
    right: 10%;
    background: linear-gradient(45deg, var(--primary), var(--success));
    animation-name: floatCube;
}

.sphere {
    bottom: 20%;
    left: 5%;
    border-radius: 50%;
    background: radial-gradient(circle at center, var(--accent), transparent 70%);
    animation-name: floatSphere;
    animation-delay: 5s;
}

.pyramid {
    top: 40%;
    left: 20%;
    clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
    background: linear-gradient(45deg, var(--warning), var(--accent-light));
    animation-name: floatPyramid;
    animation-delay: 10s;
}

@keyframes floatCube {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    33% { transform: translate(30px, -50px) rotate(120deg); }
    66% { transform: translate(-20px, 20px) rotate(240deg); }
}

@keyframes floatSphere {
    0%, 100% { transform: translate(0, 0) scale(1); }
    33% { transform: translate(-30px, 30px) scale(1.2); }
    66% { transform: translate(40px, -20px) scale(0.8); }
}

@keyframes floatPyramid {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    33% { transform: translate(20px, -30px) rotate(180deg); }
    66% { transform: translate(-40px, 10px) rotate(360deg); }
}

.particles {
    position: absolute;
    width: 100%;
    height: 100%;
    background-image:
        radial-gradient(1px 1px at 30px 40px, rgba(255, 255, 255, 0.15), transparent),
        radial-gradient(1px 1px at 90px 60px, rgba(255, 255, 255, 0.15), transparent),
        radial-gradient(1px 1px at 120px 100px, rgba(255, 255, 255, 0.15), transparent);
    background-size: 200px 200px;
    animation: particles 90s linear infinite; /* Уменьшаем частоту анимации */
}

@keyframes particles {
    from { background-position: 0 0; }
    to { background-position: 150px 150px; }
}

.gradient-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 80%, rgba(67, 97, 238, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(247, 37, 133, 0.15) 0%, transparent 50%);
    z-index: 1;
}

/* ===== TYPOGRAPHY ===== */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    word-wrap: break-word;
    overflow-wrap: break-word;
}

h1 {
    font-size: 3.5rem;
    letter-spacing: -0.02em;
}
h2 {
    font-size: 2.5rem;
    letter-spacing: -0.01em;
}
h3 {
    font-size: 2rem;
    letter-spacing: 0;
}
h4 {
    font-size: 1.5rem;
    letter-spacing: 0.01em;
}
h5 {
    font-size: 1.25rem;
    letter-spacing: 0.02em;
}
h6 {
    font-size: 1rem;
    letter-spacing: 0.03em;
}

@media (max-width: 768px) {
    h1 { font-size: 2.5rem; }
    h2 { font-size: 2rem; }
    h3 { font-size: 1.75rem; }
    h4 { font-size: 1.25rem; }

    /* Улучшаем читаемость на мобильных устройствах */
    h1, h2, h3, h4 {
        line-height: 1.3;
    }
}

/* Улучшаем читаемость обычного текста */
p {
    margin-bottom: 1rem;
    line-height: 1.7;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
    word-wrap: break-word;
    hyphens: auto;
}

/* Улучшаем контрастность ссылок */
a {
    color: var(--accent-light);
    text-decoration: none;
    transition: var(--transition);
    position: relative;
}

a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent);
    transition: width 0.3s ease;
}

a:hover::after {
    width: 100%;
}

a:hover {
    color: var(--accent);
}

/* Улучшенный контраст для доступности */
a {
    color: var(--accent-light);
}

a:hover,
a:focus {
    color: white;
    text-decoration: underline;
}

/* Улучшенные стили для ссылок с достаточным контрастом */
.high-contrast-link {
    color: white;
    text-decoration: underline;
}

.high-contrast-link:hover,
.high-contrast-link:focus {
    color: var(--accent-light);
}

p {
    margin-bottom: 1rem;
}

a {
    color: var(--accent-light);
    text-decoration: none;
    transition: var(--transition);
}

a:hover {
    color: var(--accent);
}

.text-center { text-align: center; }
.text-right { text-align: right; }
.text-left { text-align: left; }

/* ===== GLASS CARD ===== */
.glass-card {
    background: var(--glass);
    backdrop-filter: blur(15px); /* Уменьшаем размытие */
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid var(--glass-border); /* Уменьшаем толщину границы */
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-light); /* Используем более легкую тень */
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

/* Улучшенный контраст для карточек */
.glass-card:focus-within {
    outline: 2px solid var(--accent-light);
    outline-offset: 2px;
}

/* Убираем сложный hover-эффект для упрощения дизайна */
.glass-card:hover {
    transform: translateY(-5px);
    border-color: rgba(255, 255, 255, 0.4);
    box-shadow: var(--shadow); /* Используем стандартную тень */
}

/* Унифицированные стили для карточек */
.card-base {
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: var(--transition);
}

.card-hover-effect:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-dark);
}

/* Улучшенные стили для карточек компетенций */
.competency-card {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.competency-header {
    padding: 25px;
    text-align: center;
    color: white;
    transition: var(--transition);
}

.competency-header h3 {
    margin: 10px 0 15px;
    font-size: 1.8rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    word-wrap: break-word;
    overflow-wrap: break-word;
    max-width: 100%;
}

.competency-ages {
    display: flex;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
}

.age-tag {
    background: rgba(255, 255, 255, 0.2);
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.9rem;
    backdrop-filter: blur(5px);
}

.competency-body {
    padding: 25px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.competency-experts ul, .competency-skills .skills-tags {
    padding-left: 0;
    list-style: none;
}

.skills-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 10px;
}

.skill-tag {
    background: rgba(255, 255, 255, 0.1);
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.9rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.competency-choose {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: linear-gradient(135deg, var(--accent), var(--accent-light));
    color: white;
    padding: 15px;
    border-radius: var(--radius-md);
    text-decoration: none;
    font-weight: 600;
    margin-top: 20px;
    transition: var(--transition);
    border: none;
}

.competency-choose:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(247, 37, 133, 0.3);
}

/* ===== HEADER ===== */
.header-spacer {
    height: 100px;
}

.glass-header {
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: 95%;
    max-width: 1200px;
    z-index: 1000;
    background: var(--glass);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-lg);
    padding: 15px 30px;
    box-shadow: var(--shadow);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Logo */
.logo-3d {
    display: flex;
    align-items: center;
    gap: 15px;
    text-decoration: none;
    perspective: 1000px;
}

.logo-shape {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    transform-style: preserve-3d;
    transform: rotateX(15deg) rotateY(15deg);
    box-shadow: 
        -5px -5px 15px rgba(255, 255, 255, 0.1),
        5px 5px 15px rgba(0, 0, 0, 0.3),
        inset -2px -2px 5px rgba(255, 255, 255, 0.1),
        inset 2px 2px 5px rgba(0, 0, 0, 0.3);
    transition: var(--transition);
}

.logo-3d:hover .logo-shape {
    transform: rotateX(0) rotateY(0);
}

.logo-shape i {
    font-size: 24px;
    color: white;
    text-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
}

.logo-text {
    display: flex;
    flex-direction: column;
}

.logo-main {
    font-size: 22px;
    font-weight: 800;
    background: linear-gradient(135deg, #fff, var(--accent-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    letter-spacing: 1px;
}

.logo-sub {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.7);
    letter-spacing: 2px;
    text-transform: uppercase;
}

.logo-3d.small .logo-shape {
    width: 40px;
    height: 40px;
}

.logo-3d.small .logo-shape i {
    font-size: 20px;
}

.logo-3d.small .logo-main {
    font-size: 18px;
}

.logo-3d.small .logo-sub {
    font-size: 10px;
}

/* Navigation Menu */
.nav-menu {
    display: flex;
    list-style: none;
    gap: 20px;
    align-items: center;
    margin: 0;
    padding: 0;
}

.nav-menu a {
    text-decoration: none;
    color: rgba(255, 255, 255, 0.9); /* Улучшен контраст */
    font-weight: 500;
    font-size: 15px;
    padding: 10px 20px;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    gap: 10px;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

/* Улучшенный контраст для навигационных ссылок */
.nav-menu a:focus {
    background: rgba(255, 255, 255, 0.2);
    color: white;
    outline: 2px solid var(--accent-light);
    outline-offset: 2px;
}

.nav-menu a span {
    position: relative;
    z-index: 2;
}

.nav-menu a::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.6s ease;
}

.nav-menu a:hover::before {
    left: 100%;
}

.nav-menu a:hover {
    color: var(--light);
    background: rgba(255, 255, 255, 0.05);
    transform: translateY(-2px);
}

.nav-menu a.active {
    color: var(--accent-light);
    background: rgba(247, 37, 133, 0.1);
    box-shadow: 0 5px 15px rgba(247, 37, 133, 0.2);
}

/* Neon Button */
.btn-neon {
    background: linear-gradient(135deg, var(--accent), var(--accent-light));
    color: white !important;
    padding: 12px 28px !important;
    border-radius: var(--radius-md);
    box-shadow:
        0 5px 15px rgba(247, 37, 133, 0.4),
        0 0 20px rgba(247, 37, 133, 0.3);
    position: relative;
    overflow: hidden;
    border: none;
    transition: var(--transition);
}

.btn-neon::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -60%;
    width: 20%;
    height: 200%;
    background: rgba(255, 255, 255, 0.3);
    transform: rotate(30deg);
    transition: left 0.6s ease;
}

.btn-neon:hover::after {
    left: 120%;
}

.btn-neon:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow:
        0 8px 25px rgba(247, 37, 133, 0.6),
        0 0 30px rgba(247, 37, 133, 0.4);
}

/* Унифицированные стили для кнопок */
.btn-base {
    border-radius: var(--radius-md);
    padding: 15px 30px;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    border: none;
    cursor: pointer;
    font-size: 16px;
    position: relative;
    overflow: hidden;
}

/* Упрощаем hover-эффект для кнопок */
.btn-base:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary), var(--accent));
    color: white;
}

.btn-primary:hover {
    transform: translateY(-3px) scale(1.03);
    box-shadow: 0 10px 20px rgba(67, 97, 238, 0.3);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-3px) scale(1.03);
}

/* Улучшенные стили для кнопок с градиентом */
.btn-gradient {
    background: linear-gradient(135deg, var(--primary), var(--accent));
    color: white;
    padding: 15px 30px;
    border-radius: var(--radius-md);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-weight: 600;
    transition: var(--transition);
    border: none;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(67, 97, 238, 0.4);
}

.btn-gradient::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(255, 255, 255, 0.2),
        transparent
    );
    transition: left 0.6s ease;
}

.btn-gradient:hover::before {
    left: 100%;
}

.btn-gradient:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 8px 25px rgba(67, 97, 238, 0.6);
}

/* Menu Toggle */
.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
    padding: 12px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: var(--radius-md);
    transition: var(--transition);
    z-index: 1001;
}

.menu-toggle:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: scale(1.05);
}

.menu-toggle .bar {
    width: 28px;
    height: 4px;
    background: white;
    border-radius: 2px;
    transition: var(--transition);
    position: relative;
}

/* Добавляем анимацию для бургер-иконки */
.menu-toggle .bar::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background: var(--accent);
    border-radius: inherit;
    transform-origin: right;
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.menu-toggle:hover .bar::after {
    transform: scaleX(0.6);
}

.menu-toggle.active .bar:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.menu-toggle.active .bar:nth-child(2) {
    opacity: 0;
}

.menu-toggle.active .bar:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

/* Улучшаем мобильное меню */
@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        height: 100vh;
        width: 80%;
        max-width: 300px;
        background: rgba(15, 15, 30, 0.95);
        backdrop-filter: blur(20px);
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        padding: 100px 20px 20px;
        transition: right 0.4s ease;
        z-index: 1000;
    }

    .nav-menu.active {
        right: 0;
    }

    .nav-menu a {
        width: 100%;
        padding: 15px;
        margin: 5px 0;
        border-radius: var(--radius-sm);
        justify-content: center;
        font-size: 18px;
    }

    .menu-toggle {
        display: flex;
    }
}

/* ===== FLOATING NOTIFICATION ===== */
.floating-notification {
    position: fixed;
    top: 30px;
    right: 30px;
    background: linear-gradient(135deg, var(--accent), var(--accent-light));
    color: white;
    padding: 15px 20px;
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    gap: 15px;
    z-index: 1001;
    box-shadow: 0 10px 30px rgba(247, 37, 133, 0.3);
    animation: slideIn 0.5s ease;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

@keyframes slideIn {
    from {
        transform: translateX(100%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

.floating-notification i {
    font-size: 20px;
    animation: bellRing 2s infinite;
}

@keyframes bellRing {
    0%, 100% { transform: rotate(0); }
    10%, 30%, 50%, 70%, 90% { transform: rotate(-10deg); }
    20%, 40%, 60%, 80% { transform: rotate(10deg); }
}

.notification-btn {
    background: white;
    color: var(--accent);
    padding: 8px 16px;
    border-radius: var(--radius-md);
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
}

.notification-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 5px 15px rgba(255, 255, 255, 0.3);
}

.close-notification {
    background: none;
    border: none;
    color: white;
    font-size: 24px;
    cursor: pointer;
    padding: 0;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: var(--transition);
}

.close-notification:hover {
    background: rgba(255, 255, 255, 0.2);
}

/* Extended Notification Styles */
.floating-notification {
    max-width: 450px;
    padding: 20px;
    flex-direction: column;
    align-items: flex-start;
}

.notification-icon {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: white;
    animation: trophyShine 2s infinite;
}

.notification-content h4 {
    font-size: 1.1rem;
    margin-bottom: 8px;
    font-weight: 700;
}

.notification-content p {
    font-size: 0.9rem;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 12px;
}

.notification-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.2);
    color: white;
    padding: 8px 16px;
    border-radius: var(--radius-md);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.85rem;
    transition: var(--transition);
}

.notification-link:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: translateY(-2px);
}

.close-notification {
    position: absolute;
    top: 10px;
    right: 10px;
}

/* ===== FORM STYLES ===== */
.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.9);
    display: flex;
    align-items: center;
    gap: 10px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 15px;
    border-radius: var(--radius-md);
    border: 1px solid rgba(255, 255, 255, 0.3); /* Увеличен контраст границы */
    background: rgba(0, 0, 0, 0.3); /* Улучшен контраст фона */
    color: white;
    font-size: 16px;
    transition: var(--transition);
    backdrop-filter: blur(10px);
}

/* Улучшенный контраст для элементов формы */
.form-group input,
.form-group select,
.form-group textarea {
    border: 2px solid rgba(255, 255, 255, 0.4);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent);
    box-shadow: 0 0 0 3px rgba(247, 37, 133, 0.4); /* Улучшен контраст тени фокуса */
}

/* Улучшаем видимость текста в выпадающих списках */
.form-group select {
    appearance: none;
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='white'%3e%3cpath d='M7 10l5 5 5-5z'/%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 15px center;
    background-size: 15px;
    padding-right: 40px;
    cursor: pointer;
}

.form-group select option {
    background: var(--dark);
    color: white;
    padding: 10px;
}

/* Улучшенное оформление выпадающих списков */
.form-group select {
    position: relative;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: var(--radius-md);
    transition: all 0.3s ease;
}

.form-group select:hover {
    border-color: var(--accent-light);
}

.form-group select:focus {
    border-color: var(--accent);
    box-shadow: 0 0 0 3px rgba(247, 37, 133, 0.4);
    outline: none;
}

/* Стили для disabled состояния */
.form-group select:disabled {
    background: rgba(108, 117, 125, 0.3);
    cursor: not-allowed;
    opacity: 0.6;
}

/* Стили для readonly состояния */
.form-group select[readonly] {
    background: rgba(255, 255, 255, 0.05);
    cursor: default;
}

/* Улучшенный контраст для выпадающих списков */
.form-group select {
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='white'%3e%3cpath d='M7 10l5 5 5-5z'/%3e%3c/svg%3e");
}

/* Улучшаем видимость текста в выпадающих списках на светлом фоне */
select:-moz-focusring {
    color: transparent;
    text-shadow: 0 0 0 white;
}

select::-ms-expand {
    display: none;
}

/* Универсальные стили для центрирования сеток карточек */
.grid-center {
    justify-content: center !important;
}

/* Универсальные стили для всех выпадающих списков */
select {
    background-color: rgba(0, 0, 0, 0.2) !important;
    color: white !important;
}

select option {
    background-color: var(--dark) !important;
    color: white !important;
}

select option:hover,
select option:focus,
select option:checked {
    background-color: var(--primary) !important;
    color: white !important;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent);
    box-shadow: 0 0 0 3px rgba(247, 37, 133, 0.4);
}

/* Улучшенные состояния для полей формы */
.form-group input:valid,
.form-group select:valid,
.form-group textarea:valid {
    border-color: var(--success);
}

.form-group input:invalid,
.form-group select:invalid,
.form-group textarea:invalid {
    border-color: var(--danger);
}

.form-group input:required,
.form-group select:required,
.form-group textarea:required {
    box-shadow: inset 0 0 0 2px rgba(247, 37, 133, 0.3);
}

.form-group input:required:valid {
    box-shadow: inset 0 0 0 2px rgba(76, 201, 240, 0.3);
}

.form-group input:required:invalid {
    box-shadow: inset 0 0 0 2px rgba(239, 35, 60, 0.3);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.form-hint {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
    margin-top: 5px;
}

.full-width {
    grid-column: 1 / -1;
}

.form-actions {
    display: flex;
    gap: 15px;
    justify-content: space-between;
    margin-top: 30px;
    flex-wrap: wrap;
}

/* Улучшенные стили для доступности */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* Улучшение контрастности для доступности */
.high-contrast {
    border: 2px solid var(--accent) !important;
    box-shadow: 0 0 5px var(--accent) !important;
}

/* Режим высокой контрастности */
.high-contrast-mode {
    --glass: rgba(0, 0, 0, 0.8);
    --glass-dark: rgba(0, 0, 0, 0.9);
    --glass-border: rgba(255, 255, 255, 0.8);
    --glass-border-dark: rgba(255, 255, 255, 0.9);
    --dark: #000;
    --darker: #000;
    --light: #fff;
    --primary: #fff;
    --accent: #fff;
    --accent-light: #fff;
}

.high-contrast-mode * {
    border-color: #fff !important;
    color: #fff !important;
}

.high-contrast-mode .btn-3d,
.high-contrast-mode .btn-glass,
.high-contrast-mode .btn-gradient,
.high-contrast-mode .btn-primary,
.high-contrast-mode .btn-secondary {
    background: #fff !important;
    color: #000 !important;
    border: 2px solid #fff !important;
}

/* Стили для навигации с клавиатуры */
.keyboard-navigation a:focus,
.keyboard-navigation button:focus,
.keyboard-navigation input:focus,
.keyboard-navigation select:focus,
.keyboard-navigation textarea:focus,
.keyboard-navigation [tabindex]:focus {
    outline: 2px solid var(--accent-light);
    outline-offset: 3px;
    border-radius: var(--radius-sm);
    box-shadow: 0 0 0 3px rgba(247, 37, 133, 0.4);
}

/* ===== HERO SECTION ===== */
.hero-3d {
    padding: 180px 0 100px;
    position: relative;
    overflow: hidden;
}

.hero-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 80px;
    position: relative;
    z-index: 2;
}

.hero-tag {
    display: inline-block;
    background: linear-gradient(90deg, var(--primary), var(--success));
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 2px;
    margin-bottom: 30px;
    text-transform: uppercase;
    box-shadow: var(--glow);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { 
        box-shadow: 0 0 20px rgba(67, 97, 238, 0.5);
        transform: scale(1);
    }
    50% { 
        box-shadow: 0 0 30px rgba(67, 97, 238, 0.7);
        transform: scale(1.05);
    }
}

.text-3d {
    font-size: 4.5rem;
    font-weight: 900;
    margin-bottom: 30px;
    perspective: 500px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.text-3d-layer {
    display: block;
    transform-style: preserve-3d;
    animation: textFloat 6s infinite ease-in-out;
}

.text-3d-layer.accent {
    color: var(--accent-light);
    text-shadow: 
        0 0 20px var(--accent),
        0 0 40px var(--accent);
    animation-delay: 2s;
}

@keyframes textFloat {
    0%, 100% { transform: translateZ(0) rotateX(0); }
    33% { transform: translateZ(20px) rotateX(5deg); }
    66% { transform: translateZ(-20px) rotateX(-5deg); }
}

.hero-subtitle {
    font-size: 1.3rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 50px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

/* Hero Stats */
.hero-stats {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin: 40px 0;
    flex-wrap: wrap;
}

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

.stat-number {
    font-size: 3rem;
    font-weight: 900;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 1;
}

.stat-label {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    margin-top: 8px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Hero Buttons */
.hero-buttons {
    display: flex;
    gap: 25px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-3d {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: white;
    padding: 18px 40px;
    font-size: 18px;
    font-weight: 600;
    text-decoration: none;
    border-radius: var(--radius-md);
    border: none;
    cursor: pointer;
    position: relative;
    transform-style: preserve-3d;
    transform: perspective(500px) rotateX(15deg);
    transition: var(--transition);
    overflow: hidden;
    box-shadow:
        0 10px 30px rgba(67, 97, 238, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

.btn-3d:hover {
    transform: perspective(500px) rotateX(0) translateY(-5px) scale(1.05);
    box-shadow:
        0 20px 40px rgba(67, 97, 238, 0.6),
        0 0 30px rgba(67, 97, 238, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

.btn-reflection {
    position: absolute;
    top: -50%;
    left: -60%;
    width: 20%;
    height: 200%;
    background: linear-gradient(
        to right,
        transparent,
        rgba(255, 255, 255, 0.4),
        transparent
    );
    transform: rotate(30deg);
    animation: reflection 3s infinite linear;
}

@keyframes reflection {
    0% { left: -100%; }
    100% { left: 100%; }
}

.btn-glass {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: var(--glass);
    backdrop-filter: blur(10px);
    color: white;
    padding: 18px 40px;
    font-size: 18px;
    font-weight: 600;
    text-decoration: none;
    border-radius: var(--radius-md);
    border: 1px solid var(--glass-border);
    transition: var(--transition);
}

.btn-glass:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

/* Обновляем стили кнопок с использованием унифицированных классов */

/* Hero Illustration */
.hero-illustration {
    position: relative;
    height: 300px;
}

.floating-cards {
    display: flex;
    justify-content: center;
    gap: 40px;
    position: relative;
    flex-wrap: wrap;
}

.card-3d {
    width: 200px;
    height: 250px;
    position: relative;
    transform-style: preserve-3d;
    animation: floatCard 6s infinite ease-in-out;
}

.card-3d:nth-child(2) {
    margin-top: 50px;
    animation-delay: 2s;
}

.card-3d:nth-child(3) {
    animation-delay: 4s;
}

.card-3d:nth-child(4) {
    margin-top: 50px;
    animation-delay: 6s;
}

@keyframes floatCard {
    0%, 100% { 
        transform: translateY(0) rotateY(0); 
    }
    25% { 
        transform: translateY(-20px) rotateY(10deg); 
    }
    50% { 
        transform: translateY(-40px) rotateY(0); 
    }
    75% { 
        transform: translateY(-20px) rotateY(-10deg); 
    }
}

.card-content {
    position: absolute;
    width: 100%;
    height: 100%;
    background: var(--glass);
    backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-lg);
    padding: 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 20px;
    transform: translateZ(20px);
    transition: var(--transition);
    overflow: hidden;
}

.card-content h4 {
    font-size: 22px;
    font-weight: 700;
    text-align: center;
    color: white;
    word-wrap: break-word;
    overflow-wrap: break-word;
    max-width: 100%;
}

.card-content p {
    color: rgba(255, 255, 255, 0.7);
    text-align: center;
    font-size: 14px;
    word-wrap: break-word;
    overflow-wrap: break-word;
    max-width: 100%;
}

.card-3d:hover .card-content {
    transform: translateZ(40px) rotateY(15deg);
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.15), rgba(255, 255, 255, 0.05));
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.card-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--accent), var(--accent-light));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 36px;
    box-shadow: 0 10px 20px rgba(247, 37, 133, 0.3);
}

.card-content h4 {
    font-size: 22px;
    font-weight: 700;
    text-align: center;
    color: white;
}

.card-content p {
    color: rgba(255, 255, 255, 0.7);
    text-align: center;
    font-size: 14px;
}

.card-badge {
    background: rgba(255, 255, 255, 0.1);
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 12px;
    margin-top: 10px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.card-shadow {
    position: absolute;
    width: 90%;
    height: 30px;
    background: rgba(0, 0, 0, 0.5);
    border-radius: 50%;
    bottom: -15px;
    left: 5%;
    filter: blur(10px);
    transform: rotateX(90deg) translateZ(-10px);
}

/* ===== MODAL ===== */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(10px);
    z-index: 2000;
    overflow-y: auto;
}

.modal-content {
    position: relative;
    margin: 50px auto;
    max-width: 800px;
    animation: modalFadeIn 0.3s ease;
}

@keyframes modalFadeIn {
    from {
        opacity: 0;
        transform: translateY(-50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.close-modal {
    position: absolute;
    top: 20px;
    right: 20px;
    background: none;
    border: none;
    color: white;
    font-size: 30px;
    cursor: pointer;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: var(--transition);
    z-index: 10;
}

.close-modal:hover {
    background: rgba(255, 255, 255, 0.2);
}

.video-container {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
}

.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

/* ===== SECTION HEADER ===== */
/* Улучшенные стили для заголовков секций */
.section-header {
    text-align: center;
    margin-bottom: 60px;
    position: relative;
    max-width: 100%;
}

.section-header::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary), var(--accent));
    border-radius: 2px;
}

.section-title-3d {
    position: relative;
    display: inline-block;
    margin-bottom: 20px;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.section-title-3d {
    font-size: 3rem;
    font-weight: 900;
    margin-bottom: 20px;
    position: relative;
    perspective: 1000px;
    text-transform: uppercase;
    letter-spacing: 1px;
    line-height: 1.1;
}

.section-subtitle {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.7);
    margin-top: 25px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.5;
}

/* ===== FEATURES SECTION ===== */
.features-section {
    padding: 100px 0;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    justify-content: center;
    align-items: stretch; /* Выравнивание карточек по высоте */
}

.feature-card {
    padding: 40px 30px;
    text-align: center;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.feature-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 25px;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    color: white;
    box-shadow: 0 10px 20px rgba(67, 97, 238, 0.3);
}

.feature-card h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: white;
    word-wrap: break-word;
    overflow-wrap: break-word;
    max-width: 100%;
}

.feature-card p {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
    word-wrap: break-word;
    overflow-wrap: break-word;
    max-width: 100%;
}

/* ===== TIMELINE SECTION ===== */
.timeline-section {
    padding: 100px 0;
}

.timeline {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    padding-left: 10px; /* Добавляем отступ для лучшего выравнивания */
}

.timeline::before {
    content: '';
    position: absolute;
    left: 30px;
    top: 0;
    bottom: 0;
    width: 4px;
    background: linear-gradient(to bottom, var(--primary), var(--accent));
    border-radius: 2px;
}

.timeline-item {
    position: relative;
    margin-bottom: 40px;
    padding-left: 70px;
    transition: var(--transition);
}

.timeline-item:hover {
    transform: translateX(10px);
}

.timeline-marker {
    position: absolute;
    left: 0;
    top: 0;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 900;
    color: white;
    box-shadow: 0 0 20px rgba(67, 97, 238, 0.4);
    z-index: 2;
}

.timeline-content {
    padding: 30px;
}

.timeline-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    flex-wrap: wrap;
    gap: 15px;
}

.timeline-header h3 {
    font-size: 1.5rem;
    color: white;
    display: flex;
    align-items: center;
    gap: 10px;
    word-wrap: break-word;
    overflow-wrap: break-word;
    max-width: 100%;
}

.timeline-date {
    background: linear-gradient(135deg, var(--primary), var(--accent));
    padding: 8px 16px;
    border-radius: var(--radius-md);
    font-weight: 600;
    font-size: 14px;
    color: white;
}

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

.timeline-list li {
    padding: 8px 0;
    display: flex;
    align-items: center;
    gap: 10px;
    color: rgba(255, 255, 255, 0.8);
}

.timeline-list li i {
    color: var(--success);
}

.timeline-note {
    margin-top: 20px;
    padding: 15px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: var(--radius-md);
    border-left: 4px solid var(--warning);
    display: flex;
    align-items: center;
    gap: 10px;
    color: rgba(255, 255, 255, 0.8);
}

/* ===== PARTNERS SECTION ===== */
.partners-section {
    padding: 100px 0;
}

.partners-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto;
    justify-content: center;
}

.partner-card {
    text-align: center;
    padding: 40px 30px;
    transition: var(--transition);
}

.partner-card:hover {
    transform: translateY(-10px) scale(1.05);
}

.partner-logo {
    width: 80px;
    height: 80px;
    margin: 0 auto 25px;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    color: white;
    box-shadow: 0 10px 20px rgba(67, 97, 238, 0.3);
}

.partner-card h4 {
    font-size: 1.2rem;
    margin-bottom: 10px;
    color: white;
}

.partner-card p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 14px;
}

/* ===== CTA SECTION ===== */
.cta-section {
    padding: 100px 0;
}

.cta-card {
    padding: 80px 40px;
    text-align: center;
}

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

.cta-card h2 {
    font-size: 3rem;
    margin-bottom: 20px;
}

.cta-card p {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Countdown */
.countdown {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin: 40px 0;
    flex-wrap: wrap;
}

.countdown-item {
    text-align: center;
    min-width: 80px;
}

.countdown-number {
    font-size: 3rem;
    font-weight: 900;
    background: linear-gradient(135deg, var(--accent), var(--accent-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 1;
    text-shadow: 0 0 20px rgba(247, 37, 133, 0.3);
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.countdown-label {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    margin-top: 8px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* CTA Buttons */
.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-pulse {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    background: linear-gradient(135deg, var(--accent), var(--accent-light));
    color: white;
    padding: 20px 50px;
    font-size: 18px;
    font-weight: 700;
    text-decoration: none;
    border-radius: var(--radius-lg);
    border: none;
    cursor: pointer;
    position: relative;
    z-index: 2;
    overflow: hidden;
    transition: var(--transition);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.pulse-effect {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    animation: pulseEffect 2s infinite;
}

@keyframes pulseEffect {
    0% {
        width: 0;
        height: 0;
        opacity: 1;
    }
    100% {
        width: 200px;
        height: 200px;
        opacity: 0;
    }
}

.btn-pulse:hover {
    transform: scale(1.05);
    box-shadow:
        0 20px 40px rgba(247, 37, 133, 0.4),
        0 0 50px rgba(247, 37, 133, 0.3);
}

.btn-outline {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: transparent;
    color: white;
    padding: 18px 40px;
    font-size: 18px;
    font-weight: 600;
    text-decoration: none;
    border-radius: var(--radius-lg);
    border: 2px solid rgba(255, 255, 255, 0.3);
    transition: var(--transition);
}

/* Применяем унифицированные стили */

.btn-outline:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: white;
    transform: translateY(-3px);
}

/* ===== AWARDING SECTION ===== */
.awarding-section {
    padding: 100px 0;
}

.awarding-card {
    padding: 60px 40px;
    overflow: hidden;
}

.awarding-header {
    text-align: center;
    margin-bottom: 40px;
}

.awarding-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, var(--warning), var(--accent));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 36px;
    color: white;
    box-shadow: 0 10px 30px rgba(249, 199, 79, 0.4);
    animation: trophyShine 3s infinite;
}

@keyframes trophyShine {
    0%, 100% {
        box-shadow: 0 10px 30px rgba(249, 199, 79, 0.4);
    }
    50% {
        box-shadow: 0 10px 50px rgba(249, 199, 79, 0.7);
    }
}

.awarding-header h2 {
    font-size: 2.5rem;
    margin-bottom: 10px;
}

.awarding-content {
    max-width: 900px;
    margin: 0 auto;
}

.awarding-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.info-block {
    display: flex;
    gap: 20px;
    align-items: flex-start;
    background: rgba(255, 255, 255, 0.05);
    padding: 25px;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.info-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: white;
    flex-shrink: 0;
}

.info-text h4 {
    font-size: 1.1rem;
    margin-bottom: 8px;
    color: var(--accent-light);
}

.info-text p {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.85);
    margin: 0;
    line-height: 1.6;
}

.awarding-text {
    margin-bottom: 40px;
}

.awarding-text p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 20px;
    text-align: center;
}

.awarding-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

/* ===== RESULTS SECTION ===== */
.results-section {
    padding: 100px 0;
    background: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.3) 100%);
}

.results-single {
    max-width: 800px;
    margin: 0 auto 40px;
}

.results-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.result-card {
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.result-header {
    padding: 30px;
    text-align: center;
    position: relative;
}

.result-icon {
    width: 70px;
    height: 70px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    color: white;
    margin: 0 auto 15px;
    backdrop-filter: blur(10px);
}

.result-header h3 {
    font-size: 1.8rem;
    margin: 0;
    color: white;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.result-body {
    padding: 30px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.result-info p {
    font-size: 1.05rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 15px;
}

.result-info p:last-child {
    margin-bottom: 0;
}

.result-competencies h4,
.result-experts h4,
.result-ages h4,
.result-files h4 {
    font-size: 1rem;
    color: var(--accent-light);
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.competency-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 15px;
}

.competency-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 15px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: var(--radius-md);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: var(--transition);
}

.competency-item i {
    font-size: 20px;
}

.competency-item span {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
}

.competency-item:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateX(5px);
}

.result-experts ul {
    list-style: none;
    padding-left: 0;
}

.result-experts li {
    padding: 8px 0;
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.95rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.result-experts li:last-child {
    border-bottom: none;
}

.age-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.age-tag {
    background: rgba(255, 255, 255, 0.15);
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 0.9rem;
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: var(--transition);
}

.age-tag:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: translateY(-2px);
}

.file-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.file-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 15px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: var(--radius-md);
    border: 1px solid rgba(255, 255, 255, 0.1);
    text-decoration: none;
    color: white;
    transition: var(--transition);
}

.file-item i:first-child {
    font-size: 20px;
    color: var(--danger);
}

.file-item span {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.9);
    flex-grow: 1;
}

.file-item i:last-child {
    font-size: 16px;
    color: var(--success);
    opacity: 0;
    transition: var(--transition);
}

.file-item:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--accent);
    transform: translateX(5px);
}

.file-item:hover i:last-child {
    opacity: 1;
}

.file-item.main-file {
    background: linear-gradient(135deg, rgba(247, 37, 133, 0.2), rgba(67, 97, 238, 0.2));
    border-color: var(--accent);
}

.file-item.main-file:hover {
    background: linear-gradient(135deg, rgba(247, 37, 133, 0.3), rgba(67, 97, 238, 0.3));
    box-shadow: 0 5px 20px rgba(247, 37, 133, 0.3);
}

.results-actions {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

/* ===== RESPONSIVE STYLES ===== */
@media (max-width: 768px) {
    .floating-notification {
        top: auto;
        bottom: 20px;
        right: 10px;
        left: 10px;
        max-width: none;
    }

    .notification-icon {
        width: 40px;
        height: 40px;
        font-size: 20px;
    }

    .notification-content h4 {
        font-size: 1rem;
    }

    .notification-content p {
        font-size: 0.85rem;
    }

    .notification-link {
        font-size: 0.8rem;
        padding: 6px 12px;
    }

    /* Awarding Section Mobile */
    .awarding-section,
    .results-section {
        padding: 40px 0;
    }

    .awarding-card {
        padding: 30px 20px;
    }

    .awarding-header h2 {
        font-size: 1.5rem;
        line-height: 1.3;
    }

    .awarding-icon {
        width: 60px;
        height: 60px;
        font-size: 28px;
        margin-bottom: 15px;
    }

    .awarding-info {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .info-block {
        padding: 15px;
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .info-icon {
        width: 45px;
        height: 45px;
        font-size: 18px;
        margin-bottom: 10px;
    }

    .info-text h4 {
        font-size: 1rem;
        margin-bottom: 5px;
    }

    .info-text p {
        font-size: 0.9rem;
    }

    .awarding-text p {
        font-size: 0.95rem;
        text-align: left;
        line-height: 1.6;
    }

    .awarding-buttons .btn-gradient {
        padding: 15px 25px;
        font-size: 14px;
        width: 100%;
        justify-content: center;
    }

    /* Results Section Mobile */
    .results-single {
        max-width: 100%;
    }

    .results-grid {
        grid-template-columns: 1fr;
    }

    .result-header {
        padding: 20px 15px;
    }

    .result-icon {
        width: 55px;
        height: 55px;
        font-size: 22px;
        margin-bottom: 10px;
    }

    .result-header h3 {
        font-size: 1.3rem;
    }

    .result-body {
        padding: 20px 15px;
        gap: 20px;
    }

    .result-info p {
        font-size: 0.95rem;
    }

    .result-competencies h4,
    .result-files h4 {
        font-size: 0.95rem;
    }

    .competency-list {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .competency-item {
        padding: 12px;
    }

    .competency-item i {
        font-size: 18px;
    }

    .competency-item span {
        font-size: 0.9rem;
    }

    .file-list {
        gap: 10px;
    }

    .file-item {
        padding: 12px;
        flex-wrap: wrap;
    }

    .file-item i:first-child {
        font-size: 18px;
    }

    .file-item span {
        font-size: 0.9rem;
    }

    .file-item i:last-child {
        display: none;
    }

    .section-header {
        margin-bottom: 25px;
    }

    .section-title-3d {
        font-size: 1.6rem;
        line-height: 1.3;
    }

    .section-subtitle {
        font-size: 0.9rem;
    }

    .results-actions {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }

    .results-actions .btn-outline {
        width: 100%;
        max-width: 300px;
        justify-content: center;
        padding: 15px 20px;
        font-size: 14px;
    }
}

/* Small Mobile Devices */
@media (max-width: 480px) {
    .awarding-card {
        padding: 25px 15px;
    }

    .awarding-header h2 {
        font-size: 1.3rem;
    }

    .result-body {
        padding: 15px;
    }

    .btn-gradient,
    .btn-outline {
        padding: 14px 18px;
        font-size: 13px;
    }
}

/* ===== FOOTER ===== */
.glass-footer {
    background: var(--glass);
    backdrop-filter: blur(20px);
    border-top: 1px solid var(--glass-border);
    padding: 60px 0 30px;
    position: relative;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
    align-items: start; /* Выравнивание элементов по верхнему краю */
}

.footer-brand {
    max-width: 300px;
}

.footer-description {
    color: rgba(255, 255, 255, 0.85);
    margin: 20px 0;
    line-height: 1.6;
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.social-link {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: var(--transition);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.social-link:hover {
    background: var(--accent);
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(247, 37, 133, 0.3);
}

.footer-links h4,
.footer-contact h4 {
    font-size: 18px;
    margin-bottom: 20px;
    color: var(--light);
}

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

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-links a:hover {
    color: var(--accent-light);
    padding-left: 5px;
}

.footer-contact .contact-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 20px;
}

.footer-contact .contact-item i {
    color: var(--accent-light);
    margin-top: 5px;
    width: 20px;
}

.footer-contact .contact-item div {
    flex: 1;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.footer-contact .contact-item strong {
    display: block;
    margin-bottom: 5px;
    color: white;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.footer-contact .contact-item span {
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
}

.footer-bottom p {
    margin-bottom: 10px;
}

/* ===== SCROLL TOP BUTTON ===== */
.scroll-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.3s ease;
    z-index: 1000;
    box-shadow: 0 5px 20px rgba(67, 97, 238, 0.3);
    border: 2px solid rgba(255, 255, 255, 0.2);
    text-align: center;
    line-height: 1;
    font-size: 18px;
}

.scroll-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.scroll-top:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(67, 97, 238, 0.4);
}

/* ===== ANIMATIONS ===== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in {
    animation: fadeInUp 0.8s ease forwards;
    opacity: 0;
}

.delay-1 { animation-delay: 0.2s; }
.delay-2 { animation-delay: 0.4s; }
.delay-3 { animation-delay: 0.6s; }

/* ===== ABOUT PAGE STYLES ===== */
.about-content {
    padding: 100px 0;
}

.about-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    justify-content: center;
}

.about-card {
    padding: 40px 30px;
    height: 100%;
}

.about-icon {
    width: 80px;
    height: 80px;
    margin-bottom: 25px;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    color: white;
    box-shadow: 0 10px 20px rgba(67, 97, 238, 0.3);
}

.about-card h3 {
    font-size: 1.5rem;
    color: white;
    margin-bottom: 15px;
}

.about-card p {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
}

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

.about-list li {
    padding: 8px 0;
    color: rgba(255, 255, 255, 0.8);
    position: relative;
    padding-left: 25px;
}

.about-list li:before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--success);
    font-weight: bold;
}

.age-categories {
    display: flex;
    gap: 10px;
    margin-top: 20px;
    flex-wrap: wrap;
}

.age-badge {
    background: rgba(255, 255, 255, 0.1);
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 14px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

/* Detailed Timeline */
.detailed-timeline {
    padding: 100px 0;
    background: linear-gradient(rgba(26, 26, 46, 0.5), rgba(26, 26, 46, 0.5));
}

.timeline-detailed {
    max-width: 900px;
    margin: 0 auto;
}

.timeline-phase {
    margin-bottom: 40px;
    padding: 0;
    overflow: hidden;
}

.phase-header {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 30px;
    background: linear-gradient(135deg, rgba(67, 97, 238, 0.1), rgba(247, 37, 133, 0.1));
    border-bottom: 1px solid var(--glass-border);
}

.phase-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    font-weight: 900;
    color: white;
    box-shadow: 0 10px 20px rgba(67, 97, 238, 0.3);
}

.phase-title {
    flex: 1;
}

.phase-title h3 {
    margin: 0;
    color: white;
    font-size: 1.5rem;
}

.phase-date {
    color: var(--accent-light);
    font-weight: 600;
    margin-top: 5px;
    font-size: 14px;
}

.phase-content {
    padding: 30px;
}

.phase-item {
    margin-bottom: 25px;
}

.phase-item:last-child {
    margin-bottom: 0;
}

.phase-item h4 {
    font-size: 1.2rem;
    color: white;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.phase-item p {
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
    padding-left: 35px;
}

.phase-note {
    margin-top: 30px;
    padding: 15px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: var(--radius-md);
    border-left: 4px solid var(--warning);
    display: flex;
    align-items: center;
    gap: 10px;
    color: rgba(255, 255, 255, 0.8);
}

/* Committee Section */
.committee-section {
    padding: 100px 0;
}

.committee-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto;
    justify-content: center;
}

.member-card {
    text-align: center;
    padding: 40px 30px;
}

.member-avatar {
    width: 100px;
    height: 100px;
    margin: 0 auto 25px;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 40px;
    color: white;
    box-shadow: 0 10px 20px rgba(67, 97, 238, 0.3);
}

.member-card h4 {
    font-size: 1.2rem;
    color: white;
    margin-bottom: 5px;
}

.member-position {
    color: rgba(255, 255, 255, 0.85);
    font-size: 14px;
}

/* ===== COMPETENCIES PAGE STYLES ===== */
.competencies-grid-section {
    padding: 100px 0;
}

.competencies-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    justify-content: center;
    width: 100%;
    place-items: center; /* Центрируем все элементы в сетке */
    align-items: stretch; /* Растягиваем элементы по высоте */
}

.competencies-grid .competency-card {
    width: 100%;
    max-width: 350px; /* Ограничиваем ширину карточки */
    margin: 0 auto; /* Дополнительно центрируем каждую карточку */
    display: flex;
    flex-direction: column;
    height: 100%;
}

.competencies-grid .competency-card.center-card {
    justify-self: center;
    align-self: center;
}

.competency-card {
    overflow: hidden;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.competency-header {
    padding: 40px 30px;
    text-align: center;
}

.competency-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 25px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    color: white;
}

.competency-header h3 {
    font-size: 1.5rem;
    color: white;
    margin-bottom: 15px;
}

.competency-ages {
    display: flex;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
}

.age-tag {
    background: rgba(255, 255, 255, 0.2);
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 12px;
    color: white;
}

.competency-body {
    padding: 30px;
}

.competency-experts h4,
.competency-description h4,
.competency-skills h4 {
    font-size: 1.1rem;
    color: white;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.competency-experts ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.competency-experts li {
    padding: 5px 0;
    color: rgba(255, 255, 255, 0.8);
    padding-left: 25px;
    position: relative;
}

.competency-experts li:before {
    content: '•';
    position: absolute;
    left: 10px;
    color: var(--success);
}

.competency-description p {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
}

.skills-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.skill-tag {
    background: rgba(255, 255, 255, 0.1);
    color: var(--accent-light);
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 14px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.competency-choose {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    color: white;
    padding: 12px 24px;
    border-radius: var(--radius-md);
    text-decoration: none;
    font-weight: 600;
    margin-top: 20px;
    transition: var(--transition);
}

.competency-choose:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(67, 97, 238, 0.3);
}

/* Competency Results and Tasks */
.competency-results-tasks {
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.competency-results-tasks h4 {
    font-size: 1.1rem;
    color: white;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.tasks-info,
.results-info {
    margin-bottom: 15px;
}

.task-stage,
.result-stage {
    margin-bottom: 15px;
    padding: 10px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.task-stage:last-child,
.result-stage:last-child {
    border-bottom: none;
}

.task-stage h5,
.result-stage h5 {
    font-size: 1rem;
    color: var(--accent-light);
    margin-bottom: 5px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.task-stage p,
.result-stage p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
    margin: 0;
    line-height: 1.5;
}

/* Detailed Competencies */
.detailed-competencies {
    padding: 100px 0;
    background: linear-gradient(rgba(26, 26, 46, 0.5), rgba(26, 26, 46, 0.5));
}

.competency-details {
    max-width: 900px;
    margin: 0 auto;
}

.competency-detail-card {
    margin-bottom: 30px;
}

.detail-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 30px;
    border-bottom: 1px solid var(--glass-border);
    border-left: 4px solid var(--primary);
}

.detail-header h3 {
    margin: 0;
    color: white;
    font-size: 1.5rem;
}

.detail-badge {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: white;
}

.detail-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    padding: 30px;
}

.detail-column h4 {
    font-size: 1.2rem;
    color: white;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

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

.detail-list li {
    padding: 10px 0;
    color: rgba(255, 255, 255, 0.8);
    display: flex;
    align-items: center;
    gap: 10px;
}

.detail-list li i {
    color: var(--success);
    font-size: 14px;
}

/* ===== DOCUMENTS PAGE STYLES ===== */
.documents-nav {
    padding: 50px 0;
    background: linear-gradient(rgba(26, 26, 46, 0.5), rgba(26, 26, 46, 0.5));
}

.nav-tabs {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.nav-tab {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    background: var(--glass);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-lg);
    padding: 20px 30px;
    color: rgba(255, 255, 255, 0.7);
    cursor: pointer;
    transition: var(--transition);
    min-width: 150px;
}

.nav-tab i {
    font-size: 32px;
    margin-bottom: 10px;
}

.nav-tab span {
    font-weight: 600;
    font-size: 16px;
}

.nav-tab:hover {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    transform: translateY(-5px);
}

.nav-tab.active {
    background: linear-gradient(135deg, var(--primary), var(--accent));
    color: white;
    border-color: var(--accent);
    box-shadow: 0 10px 20px rgba(67, 97, 238, 0.3);
}

/* Documents Sections */
.documents-sections {
    padding: 100px 0;
}

.documents-section {
    display: none;
}

.documents-section.active {
    display: block;
    animation: fadeInUp 0.5s ease;
}

.section-title {
    font-size: 2.5rem;
    color: white;
    margin-bottom: 15px;
    text-align: center;
}

.documents-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-top: 40px;
    justify-content: center;
}

.document-card {
    padding: 30px;
}

.document-header {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 25px;
}

.document-icon {
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: var(--accent-light);
    flex-shrink: 0;
}

.document-info h3 {
    font-size: 1.3rem;
    color: white;
    margin-bottom: 10px;
}

.document-info p {
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
    font-size: 14px;
    line-height: 1.5;
}

.document-meta {
    display: flex;
    gap: 20px;
    margin-top: 15px;
    color: rgba(255, 255, 255, 0.6);
    font-size: 13px;
}

.document-meta span {
    display: flex;
    align-items: center;
    gap: 5px;
}

.document-actions {
    display: flex;
    gap: 15px;
}

.btn-preview,
.btn-download {
    flex: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 12px;
    border-radius: var(--radius-md);
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
    border: none;
    cursor: pointer;
    font-size: 14px;
}

.btn-preview {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.btn-download {
    background: linear-gradient(135deg, var(--primary), var(--accent));
    color: white;
}

.btn-preview:hover,
.btn-download:hover {
    transform: translateY(-3px);
}

.btn-preview:hover {
    background: rgba(255, 255, 255, 0.2);
}

.btn-download:hover {
    box-shadow: 0 10px 20px rgba(67, 97, 238, 0.3);
}

/* Применяем унифицированные стили к кнопкам документов */


/* Important Notes */
.important-notes {
    padding: 100px 0;
}

.notes-card {
    padding: 40px;
}

.notes-header {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 30px;
}

.notes-header i {
    font-size: 32px;
    color: var(--warning);
}

.notes-header h3 {
    font-size: 1.8rem;
    color: white;
    margin: 0;
}

.notes-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.note-item {
    padding: 20px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: var(--radius-md);
    border-left: 4px solid var(--success);
}

.note-item h4 {
    font-size: 1.1rem;
    color: white;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.note-item p {
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
    font-size: 14px;
    line-height: 1.5;
}

/* Preview Modal */
.preview-placeholder {
    text-align: center;
    padding: 60px 30px;
}

.preview-placeholder i {
    font-size: 64px;
    color: var(--primary);
    margin-bottom: 20px;
}

.preview-placeholder p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 10px;
}

.preview-placeholder .small {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
}

.modal-header {
    padding: 30px 30px 20px;
    border-bottom: 1px solid var(--glass-border);
}

.modal-header h3 {
    margin: 0;
    color: white;
}

.modal-body {
    padding: 30px;
    min-height: 400px;
}

.modal-footer {
    padding: 20px 30px;
    border-top: 1px solid var(--glass-border);
    text-align: center;
}

/* ===== APPLICATION PAGE STYLES ===== */
.application-section {
    padding: 100px 0;
}

/* Application Steps */
.application-steps {
    display: flex;
    justify-content: space-between;
    margin-bottom: 50px;
    position: relative;
}

.application-steps::before {
    content: '';
    position: absolute;
    top: 25px;
    left: 0;
    right: 0;
    height: 2px;
    background: rgba(255, 255, 255, 0.1);
    z-index: 1;
}

.step {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    z-index: 2;
    flex: 1;
}

.step-number {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 10px;
    transition: var(--transition);
}

.step.active .step-number {
    background: linear-gradient(135deg, var(--primary), var(--accent));
    color: white;
    box-shadow: 0 5px 15px rgba(67, 97, 238, 0.3);
}

.step-label {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.5);
    text-align: center;
    transition: var(--transition);
}

.step.active .step-label {
    color: white;
    font-weight: 600;
}

/* Application Form */
.application-form {
    padding: 50px;
    margin-bottom: 40px;
}

.form-section {
    display: none;
}

.form-section.active {
    display: block;
    animation: fadeInUp 0.5s ease;
}

.form-title {
    font-size: 2rem;
    color: white;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.form-subtitle {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 40px;
    font-size: 1.1rem;
}

.form-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-bottom: 30px;
}

.form-group {
    margin-bottom: 25px;
}

.form-group.full-width {
    grid-column: 1 / -1;
}

.form-group label {
    display: block;
    margin-bottom: 10px;
    font-weight: 600;
    color: white;
    font-size: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 15px 20px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--radius-md);
    color: white;
    font-family: inherit;
    font-size: 16px;
    transition: var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent-light);
    background: rgba(255, 255, 255, 0.15);
    box-shadow: 0 0 0 3px rgba(247, 37, 133, 0.1);
}

.form-group textarea {
    min-height: 150px;
    resize: vertical;
}

.form-hint {
    color: rgba(255, 255, 255, 0.75);
    font-size: 13px;
    margin-top: 8px;
}

.form-group.error input,
.form-group.error select,
.form-group.error textarea {
    border-color: var(--danger);
    background: rgba(239, 35, 60, 0.1);
}

.error-message {
    color: var(--danger);
    font-size: 13px;
    margin-top: 8px;
}

/* Upload Instructions */
.upload-instructions {
    background: rgba(255, 255, 255, 0.05);
    border-radius: var(--radius-md);
    padding: 20px;
    margin-bottom: 30px;
}

.instruction-item {
    display: flex;
    gap: 20px;
}

.instruction-item i {
    color: var(--warning);
    font-size: 24px;
    margin-top: 5px;
}

.instruction-item h4 {
    font-size: 1.1rem;
    color: white;
    margin-bottom: 10px;
}

.instruction-item ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.instruction-item li {
    padding: 5px 0;
    color: rgba(255, 255, 255, 0.7);
    position: relative;
    padding-left: 20px;
}

.instruction-item li:before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--success);
}

/* File Upload */
.file-upload-area {
    margin-bottom: 30px;
}

.file-upload-box {
    border: 2px dashed rgba(255, 255, 255, 0.3);
    border-radius: var(--radius-lg);
    padding: 60px 30px;
    text-align: center;
    cursor: pointer;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.file-upload-box:hover {
    border-color: var(--accent-light);
    background: rgba(255, 255, 255, 0.05);
}

.file-upload-box.highlight {
    border-color: var(--success);
    background: rgba(76, 201, 240, 0.1);
}

.file-upload-box i {
    font-size: 48px;
    color: var(--accent-light);
    margin-bottom: 20px;
}

.file-upload-box h4 {
    font-size: 1.3rem;
    color: white;
    margin-bottom: 10px;
}

.file-upload-box p {
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
}

.file-input {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    opacity: 0;
    cursor: pointer;
}

.file-list {
    margin-top: 20px;
}

.file-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(255, 255, 255, 0.05);
    border-radius: var(--radius-md);
    padding: 15px;
    margin-bottom: 10px;
}

.file-info {
    display: flex;
    align-items: center;
    gap: 15px;
}

.file-info i {
    font-size: 24px;
    color: var(--success);
}

.file-name {
    color: white;
    font-weight: 500;
}

.file-size {
    color: rgba(255, 255, 255, 0.75);
    font-size: 13px;
    margin-top: 2px;
}

.remove-file {
    background: none;
    border: none;
    color: var(--danger);
    font-size: 20px;
    cursor: pointer;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: var(--transition);
}

.remove-file:hover {
    background: rgba(239, 35, 60, 0.1);
}

/* Required Documents */
.required-docs {
    background: rgba(255, 255, 255, 0.05);
    border-radius: var(--radius-md);
    padding: 20px;
    margin-bottom: 30px;
}

.required-docs h4 {
    font-size: 1.1rem;
    color: white;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.required-docs ul {
    list-style: none;
    margin: 0;
    padding: 0;
    margin-bottom: 15px;
}

.required-docs li {
    padding: 8px 0;
    color: rgba(255, 255, 255, 0.7);
    position: relative;
    padding-left: 25px;
}

.required-docs li:before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--success);
    font-weight: bold;
}

.required-docs .small {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.5);
}

/* Review Data */
.review-data {
    margin-bottom: 30px;
}

.review-section {
    margin-bottom: 30px;
    padding-bottom: 30px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.review-section:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.review-section h4 {
    font-size: 1.1rem;
    color: white;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.review-item {
    display: flex;
    margin-bottom: 15px;
}

.review-label {
    min-width: 200px;
    color: rgba(255, 255, 255, 0.6);
    font-weight: 500;
}

.review-value {
    flex: 1;
    color: rgba(255, 255, 255, 0.95);
    word-break: break-word;
}

.review-files {
    background: rgba(255, 255, 255, 0.05);
    border-radius: var(--radius-md);
    padding: 20px;
}

.review-file-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.review-file-item:last-child {
    border-bottom: none;
}

.review-file-item i {
    color: var(--success);
}

.no-files {
    color: rgba(255, 255, 255, 0.5);
    text-align: center;
    padding: 20px;
    margin: 0;
}

/* Agreement Check */
.agreement-check {
    display: flex;
    gap: 15px;
    margin-bottom: 30px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: var(--radius-md);
}

.agreement-check input {
    margin-top: 5px;
    width: 20px;
    height: 20px;
}

.agreement-check label {
    color: rgba(255, 255, 255, 0.95);
    line-height: 1.6;
    flex: 1;
}

.agreement-check a {
    color: var(--accent-light);
    text-decoration: underline;
}

.agreement-check a:hover {
    color: var(--accent);
}

/* Form Actions */
.form-actions {
    display: flex;
    justify-content: space-between;
    margin-top: 40px;
}

.btn-prev,
.btn-next,
.btn-submit {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 30px;
    border-radius: var(--radius-md);
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
    transition: var(--transition);
    border: none;
}

.btn-prev {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.btn-next,
.btn-submit {
    background: linear-gradient(135deg, var(--primary), var(--accent));
    color: white;
}

.btn-prev:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-3px);
}

.btn-next:hover,
.btn-submit:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(67, 97, 238, 0.3);
}

.btn-submit:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    transform: none !important;
    box-shadow: none !important;
}

/* Применяем унифицированные стили к кнопкам формы */


/* Form Progress */
.form-progress {
    margin-top: 40px;
}

.progress-bar {
    height: 6px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 3px;
    overflow: hidden;
    margin-bottom: 15px;
}

.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--primary), var(--accent));
    border-radius: 3px;
    width: 25%;
    transition: width 0.5s ease;
}

.progress-text {
    text-align: center;
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
}

/* Success Modal */
.success-icon {
    text-align: center;
    font-size: 64px;
    color: var(--success);
    margin-bottom: 30px;
}

.success-details {
    background: rgba(255, 255, 255, 0.05);
    border-radius: var(--radius-md);
    padding: 20px;
    margin: 30px 0;
}

.success-details p {
    margin: 10px 0;
    display: flex;
    justify-content: space-between;
}

.success-details strong {
    color: white;
}

.success-details span {
    color: var(--accent-light);
}

.modal-actions {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-top: 30px;
}

.btn-modal {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 30px;
    border-radius: var(--radius-md);
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition);
    border: 2px solid rgba(255, 255, 255, 0.2);
    background: transparent;
    color: white;
    cursor: pointer;
    font-size: 16px;
}

.btn-modal.primary {
    background: linear-gradient(135deg, var(--primary), var(--accent));
    border: none;
}

.btn-modal:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.btn-modal.primary:hover {
    box-shadow: 0 10px 20px rgba(67, 97, 238, 0.3);
}

/* ===== CONTACTS PAGE STYLES ===== */
.contact-methods-section {
    padding: 100px 0;
}

.contact-methods-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    justify-content: center;
}

.contact-method-card {
    padding: 40px 30px;
    text-align: center;
    height: 100%;
}

.method-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 25px;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    color: white;
    box-shadow: 0 10px 20px rgba(67, 97, 238, 0.3);
}

.contact-method-card h3 {
    font-size: 1.5rem;
    color: white;
    margin-bottom: 15px;
}

.contact-method-card p {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 25px;
    line-height: 1.6;
}

.method-contacts {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 25px;
}

.contact-link {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--accent-light);
    text-decoration: none;
    transition: var(--transition);
    justify-content: center;
}

.contact-link:hover {
    color: var(--accent);
    transform: translateX(5px);
}

.method-hours {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    color: rgba(255, 255, 255, 0.6);
    font-size: 14px;
}

.method-address {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 25px;
    text-align: left;
}

.method-address i {
    font-size: 24px;
    color: var(--accent-light);
    margin-top: 5px;
}

.method-address strong {
    display: block;
    color: white;
    margin-bottom: 5px;
}

.method-address p {
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
    font-size: 14px;
}

.btn-map {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.1);
    color: white;
    padding: 12px 24px;
    border-radius: var(--radius-md);
    text-decoration: none;
    transition: var(--transition);
}

.btn-map:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-3px);
}

/* FAQ Section */
.faq-section {
    padding: 100px 0;
    background: linear-gradient(rgba(26, 26, 46, 0.5), rgba(26, 26, 46, 0.5));
}

.faq-grid {
    max-width: 900px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 20px;
    justify-content: center;
}

.faq-item {
    overflow: hidden;
}

.faq-question {
    padding: 25px 30px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: var(--transition);
}

.faq-question:hover {
    background: rgba(255, 255, 255, 0.05);
}

.faq-question h3 {
    margin: 0;
    font-size: 1.1rem;
    color: white;
    font-weight: 600;
}

.faq-question i {
    color: var(--accent-light);
    transition: var(--transition);
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 500px;
}

.faq-answer p {
    padding: 0 30px 25px;
    margin: 0;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
}

.faq-answer a {
    color: var(--accent-light);
    text-decoration: underline;
}

.faq-answer a:hover {
    color: var(--accent);
}

/* Contact Form Section */
.contact-form-section {
    padding: 100px 0;
}

.contact-form-wrapper {
    padding: 50px;
    max-width: 800px;
    margin: 0 auto;
}

.form-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-bottom: 30px;
}

/* Map Section */
.map-section {
    padding: 100px 0;
    background: linear-gradient(rgba(26, 26, 46, 0.5), rgba(26, 26, 46, 0.5));
}

.map-wrapper {
    overflow: hidden;
    max-width: 1200px;
    margin: 0 auto;
}

.map-container {
    height: 400px;
    background: rgba(0, 0, 0, 0.2);
    position: relative;
    overflow: hidden;
}

.map-placeholder {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 40px;
}

.map-placeholder i {
    font-size: 64px;
    color: var(--primary);
    margin-bottom: 20px;
}

.map-placeholder h3 {
    color: white;
    margin-bottom: 10px;
    font-size: 1.5rem;
}

.map-placeholder p {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 20px;
}

.map-coordinates {
    background: rgba(255, 255, 255, 0.1);
    padding: 10px 20px;
    border-radius: var(--radius-md);
}

.map-coordinates span {
    color: rgba(255, 255, 255, 0.8);
    display: flex;
    align-items: center;
    gap: 10px;
}

.map-info {
    padding: 30px;
    background: rgba(0, 0, 0, 0.2);
}

.map-info h4 {
    font-size: 1.3rem;
    color: white;
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.transport-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
    margin-bottom: 30px;
}

.transport-option {
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.transport-option i {
    font-size: 24px;
    color: var(--accent-light);
    margin-top: 5px;
}

.transport-option strong {
    display: block;
    color: white;
    margin-bottom: 5px;
    font-size: 15px;
}

.transport-option p {
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
    font-size: 14px;
    line-height: 1.5;
}

.parking-info {
    background: rgba(255, 255, 255, 0.05);
    padding: 20px;
    border-radius: var(--radius-md);
}

.parking-info h4 {
    margin-bottom: 15px;
    font-size: 1.1rem;
}

.parking-info p {
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
    font-size: 14px;
    line-height: 1.6;
}

/* Notification */
.notification {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    color: white;
    padding: 15px 20px;
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    gap: 15px;
    z-index: 2000;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    transform: translateY(20px);
    opacity: 0;
    transition: all 0.3s ease;
    max-width: 400px;
}

.notification.show {
    transform: translateY(0);
    opacity: 1;
}

.notification.success {
    background: linear-gradient(135deg, var(--success), var(--success-dark));
}

.notification i {
    font-size: 20px;
}

.notification .close-notification {
    background: none;
    border: none;
    color: white;
    font-size: 20px;
    cursor: pointer;
    padding: 0;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: var(--transition);
    margin-left: auto;
}

.notification .close-notification:hover {
    background: rgba(255, 255, 255, 0.2);
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 1200px) {
    .container {
        max-width: 1000px;
    }

    .text-3d {
        font-size: 3.5rem;
    }
}

/* Tablet responsive styles */
@media (max-width: 1024px) and (min-width: 769px) {
    .container {
        max-width: 900px;
        padding: 0 15px;
    }

    .text-3d {
        font-size: 3rem;
    }

    .hero-stats {
        gap: 25px;
    }

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

    .hero-buttons {
        gap: 20px;
    }

    .btn-3d, .btn-glass {
        padding: 16px 30px;
        font-size: 16px;
    }

    .features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }

    .partners-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }

    .competencies-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }

    .floating-cards {
        gap: 30px;
    }

    .card-3d {
        width: 180px;
        height: 220px;
    }

    .card-content {
        padding: 20px;
    }

    .card-icon {
        width: 60px;
        height: 60px;
        font-size: 28px;
    }

    .card-content h4 {
        font-size: 18px;
    }

    .card-content p {
        font-size: 12px;
    }

    .section-title-3d {
        font-size: 2.5rem;
    }

    .timeline {
        max-width: 700px;
    }

    .timeline-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }

    .timeline-date {
        font-size: 12px;
        padding: 6px 12px;
    }

    .countdown {
        gap: 20px;
    }

    .countdown-number {
        font-size: 2.5rem;
        height: 60px;
    }

    .countdown-item {
        min-width: 70px;
    }

    .cta-card {
        padding: 60px 30px;
    }

    .footer-content {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }

    .footer-brand {
        max-width: 100%;
    }

    .application-form {
        padding: 40px;
    }

    .form-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .form-actions {
        flex-direction: column;
        gap: 15px;
    }

    .btn-prev, .btn-next, .btn-submit {
        width: 100%;
        justify-content: center;
    }

    .contact-methods-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .faq-grid {
        grid-template-columns: 1fr;
    }

    .results-tasks-grid,
    .materials-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 992px) {
    .container {
        max-width: 800px;
    }

    .menu-toggle {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        top: 100px;
        left: 20px;
        right: 20px;
        background: var(--glass);
        backdrop-filter: blur(20px);
        border: 1px solid var(--glass-border);
        border-radius: var(--radius-lg);
        flex-direction: column;
        padding: 30px;
        display: none;
        z-index: 1000;
        box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    }

    .nav-menu.active {
        display: flex;
    }

    .text-3d {
        font-size: 2.8rem;
    }

    .hero-3d {
        padding: 150px 0 80px;
    }

    .floating-cards {
        flex-direction: column;
        align-items: center;
        gap: 20px;
    }

    .card-3d {
        width: 250px;
        margin-top: 0 !important;
    }

    .timeline::before {
        left: 25px;
    }

    .timeline-item {
        padding-left: 60px;
    }

    .timeline-marker {
        width: 50px;
        height: 50px;
        font-size: 20px;
    }

    .faq-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 15px;
    }
    
    .glass-header {
        padding: 15px 20px;
        width: 90%;
    }
    
    .text-3d {
        font-size: 2.2rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .btn-3d,
    .btn-glass {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }
    
    .section-title-3d {
        font-size: 2.2rem;
    }
    
    .application-form,
    .contact-form-wrapper {
        padding: 30px 20px;
    }
    
    .form-grid,
    .documents-grid,
    .competencies-grid,
    .contact-methods-grid {
        grid-template-columns: 1fr;
    }
    
    .cta-buttons {
        flex-direction: column;
    }
    
    .btn-pulse,
    .btn-outline {
        width: 100%;
        justify-content: center;
    }
    
    .floating-notification {
        left: 20px;
        right: 20px;
        top: 20px;
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }
    
    .notification-btn {
        width: 100%;
    }
    
    .timeline::before {
        left: 20px;
    }
    
    .timeline-item {
        padding-left: 50px;
    }
    
    .timeline-marker {
        width: 40px;
        height: 40px;
        font-size: 18px;
    }
    
    .timeline-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }
    
    .form-actions {
        flex-direction: column;
        gap: 15px;
    }
    
    .btn-prev,
    .btn-next,
    .btn-submit {
        width: 100%;
        justify-content: center;
    }
    
    .application-steps {
        flex-direction: column;
        gap: 30px;
        align-items: center;
    }
    
    .application-steps::before {
        display: none;
    }
    
    .step {
        flex-direction: row;
        gap: 15px;
        width: 100%;
        max-width: 300px;
    }
    
    .step-label {
        text-align: left;
        flex: 1;
    }
    
    .nav-tabs {
        flex-direction: column;
        align-items: stretch;
    }
    
    .nav-tab {
        flex-direction: row;
        justify-content: flex-start;
        min-width: auto;
        padding: 15px 20px;
    }
    
    .detail-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

@media (max-width: 480px) {
    .text-3d {
        font-size: 1.8rem;
    }
    
    .hero-tag {
        font-size: 12px;
        padding: 6px 15px;
    }
    
    .stat-number {
        font-size: 2.5rem;
    }
    
    .section-title-3d {
        font-size: 1.8rem;
    }
    
    .cta-card h2 {
        font-size: 2.2rem;
    }
    
    .countdown {
        gap: 15px;
    }
    
    .countdown-item {
        min-width: 70px;
    }
    
    .countdown-number {
        font-size: 2.5rem;
        height: 60px;
    }
    
    .form-title {
        font-size: 1.5rem;
    }
    
    .document-actions {
        flex-direction: column;
    }
    
    .modal-content {
        margin: 20px;
    }
    
    .transport-options {
        grid-template-columns: 1fr;
    }
    
    .about-grid,
    .committee-grid,
    .partners-grid {
        grid-template-columns: 1fr;
    }
}

/* ===== UTILITY CLASSES ===== */
.mt-0 { margin-top: 0 !important; }
.mt-10 { margin-top: 10px !important; }
.mt-20 { margin-top: 20px !important; }
.mt-30 { margin-top: 30px !important; }
.mt-40 { margin-top: 40px !important; }
.mt-50 { margin-top: 50px !important; }

.mb-0 { margin-bottom: 0 !important; }
.mb-10 { margin-bottom: 10px !important; }
.mb-20 { margin-bottom: 20px !important; }
.mb-30 { margin-bottom: 30px !important; }
.mb-40 { margin-bottom: 40px !important; }
.mb-50 { margin-bottom: 50px !important; }

.pt-0 { padding-top: 0 !important; }
.pt-10 { padding-top: 10px !important; }
.pt-20 { padding-top: 20px !important; }
.pt-30 { padding-top: 30px !important; }
.pt-40 { padding-top: 40px !important; }
.pt-50 { padding-top: 50px !important; }

.pb-0 { padding-bottom: 0 !important; }
.pb-10 { padding-bottom: 10px !important; }
.pb-20 { padding-bottom: 20px !important; }
.pb-30 { padding-bottom: 30px !important; }
.pb-40 { padding-bottom: 40px !important; }
.pb-50 { padding-bottom: 50px !important; }

.hidden { display: none !important; }
.visible { display: block !important; }

.text-small { font-size: 14px !important; }
.text-large { font-size: 18px !important; }

.opacity-50 { opacity: 0.5 !important; }
.opacity-75 { opacity: 0.75 !important; }

.cursor-pointer { cursor: pointer !important; }

/* ===== RESULTS AND TASKS STYLES ===== */
.results-tasks-section {
    padding: 100px 0;
}

.results-tasks-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto;
    justify-content: center;
}

.results-card {
    padding: 30px;
    transition: var(--transition);
}

.results-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 1px solid var(--glass-border);
}

.results-header h3 {
    font-size: 1.5rem;
    color: white;
    display: flex;
    align-items: center;
    gap: 10px;
}

.results-date {
    background: linear-gradient(135deg, var(--primary), var(--accent));
    padding: 6px 12px;
    border-radius: var(--radius-md);
    font-weight: 600;
    font-size: 14px;
    color: white;
}

.results-content h4 {
    font-size: 1.2rem;
    color: white;
    margin: 25px 0 10px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.results-content p {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
}

.results-actions {
    display: flex;
    gap: 15px;
    margin-top: 25px;
    flex-wrap: wrap;
}

/* Competition Materials Section */
.competition-materials {
    padding: 100px 0;
    background: linear-gradient(rgba(26, 26, 46, 0.5), rgba(26, 26, 46, 0.5));
}

.materials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
    justify-content: center;
}

.material-card {
    padding: 30px;
    transition: var(--transition);
}

.material-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 1px solid var(--glass-border);
}

.material-header h3 {
    font-size: 1.5rem;
    color: white;
    display: flex;
    align-items: center;
    gap: 10px;
}

.material-date {
    background: linear-gradient(135deg, var(--success), var(--accent));
    padding: 6px 12px;
    border-radius: var(--radius-md);
    font-weight: 600;
    font-size: 14px;
    color: white;
}

.material-content h4 {
    font-size: 1.2rem;
    color: white;
    margin: 25px 0 10px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.material-content p {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
}

.material-actions {
    margin-top: 25px;
}

/* File preview info */
.file-preview-info {
    text-align: center;
    padding: 40px 20px;
}

.file-preview-info i {
    margin-bottom: 20px;
    display: block;
}

.file-preview-info h4 {
    margin-bottom: 15px;
    color: white;
}

.file-preview-info p {
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
}

/* Remote stage materials */
.remote-materials {
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.remote-materials h4 {
    color: white;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.materials-links {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.material-link a {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 15px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: var(--radius-md);
    color: var(--accent-light);
    text-decoration: none;
    transition: var(--transition);
}

.material-link a:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateX(5px);
}

/* Task and Result Stage Info */
.task-stage h6,
.result-stage h6 {
    margin: 10px 0 5px;
    color: var(--accent-light);
    font-size: 0.9em;
    display: flex;
    align-items: center;
    gap: 8px;
}

.material-link {
    margin-top: 5px;
}

.material-link a {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 12px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: var(--radius-sm);
    color: var(--accent-light);
    text-decoration: none;
    transition: var(--transition);
    font-size: 0.9em;
}

.material-link a:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateX(3px);
}

.material-link i {
    font-size: 0.9em;
}

/* Responsive adjustments for new sections */
@media (max-width: 768px) {
    .results-tasks-grid,
    .materials-grid {
        grid-template-columns: 1fr;
    }

    .results-header,
    .material-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }

    .results-actions {
        flex-direction: column;
    }

    .btn-outline {
        width: 100%;
        justify-content: center;
    }
}

/* ===== PRINT STYLES ===== */
@media print {
    .bg-3d,
    .glass-header,
    .floating-notification,
    .scroll-top,
    .glass-footer,
    .btn-neon,
    .btn-3d,
    .btn-glass,
    .btn-pulse,
    .btn-outline {
        display: none !important;
    }

    body {
        background: white !important;
        color: black !important;
    }

    .container {
        max-width: 100% !important;
        padding: 0 !important;
    }

    .glass-card {
        background: var(--light) !important;
        border: 1px solid var(--light-gray) !important;
        box-shadow: none !important;
        backdrop-filter: none !important;
    }

    .text-3d-layer {
        color: var(--dark) !important;
        text-shadow: none !important;
    }

    a {
        color: var(--primary) !important;
        text-decoration: underline !important;
    }
}