:root {
    --primary: #3b82f6;
    --primary-dark: #2563eb;
    --secondary: #10b981;
    --accent: #8b5cf6;
    --background: #0f172a;
    --surface: #1e293b;
    --surface-light: #334155;
    --text: #f1f5f9;
    --text-light: #94a3b8;
    --border: rgba(148, 163, 184, 0.1);
    --glow: rgba(59, 130, 246, 0.5);
}

body {
    font-family: 'Space Grotesk', sans-serif;
    background-color: var(--background);
    color: var(--text);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Фоновые элементы */
.background-elements {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    overflow: hidden;
}

.gradient-sphere {
    position: absolute;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    background: radial-gradient(circle, var(--primary) 0%, transparent 70%);
    filter: blur(100px);
    opacity: 0.1;
    top: -300px;
    left: -300px;
    animation: float 20s ease-in-out infinite;
}

.gradient-sphere.secondary {
    background: radial-gradient(circle, var(--secondary) 0%, transparent 70%);
    right: -300px;
    left: auto;
    bottom: -300px;
    top: auto;
    animation-delay: -10s;
}

.grid-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: linear-gradient(var(--border) 1px, transparent 1px),
                      linear-gradient(90deg, var(--border) 1px, transparent 1px);
    background-size: 30px 30px;
    opacity: 0.1;
}

@keyframes float {
    0%, 100% { transform: translate(0, 0); }
    25% { transform: translate(100px, 100px); }
    50% { transform: translate(0, 200px); }
    75% { transform: translate(-100px, 100px); }
}

/* Навигация */
.navbar {
    background: rgba(15, 23, 42, 0.8);
    backdrop-filter: blur(8px);
    padding: 1rem 0;
    border-bottom: 1px solid var(--border);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    transition: background-color 0.3s ease, backdrop-filter 0.3s ease;
}

.navbar-brand {
    font-weight: 700;
    color: var(--text);
    padding: 0.5rem;
    border-radius: 12px;
    transition: all 0.3s ease;
    margin-right: 0;
    text-decoration: none;
    cursor: pointer;
}

.navbar-brand:hover {
    transform: scale(1.05);
    filter: brightness(1.1);
}

.navbar-brand:active {
    transform: scale(0.98);
}

.brand-container {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.navbar-brand i {
    font-size: 1.5rem;
    color: var(--primary);
    filter: drop-shadow(0 0 8px rgba(59, 130, 246, 0.3));
    animation: globe-spin 20s linear infinite, globe-pulse 2s ease-in-out infinite;
}

@keyframes globe-spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

@keyframes globe-pulse {
    0%, 100% { 
        transform: scale(1) rotate(0deg);
        filter: drop-shadow(0 0 8px rgba(59, 130, 246, 0.3));
    }
    50% { 
        transform: scale(1.1) rotate(180deg);
        filter: drop-shadow(0 0 12px rgba(59, 130, 246, 0.5));
    }
}

.brand-text {
    font-size: 1.5rem;
    background: linear-gradient(to right, var(--text), var(--text-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.navbar-toggler {
    border: none;
    padding: 0.75rem;
    background: transparent;
    cursor: pointer;
    margin-right: -0.75rem;
}

.burger-icon {
    width: 24px;
    height: 20px;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.burger-icon span {
    width: 100%;
    height: 2px;
    background-color: var(--text);
    border-radius: 2px;
    transition: transform 0.2s ease;
}

.navbar-toggler.active .burger-icon span:nth-child(1) {
    transform: translateY(9px) rotate(45deg);
}

.navbar-toggler.active .burger-icon span:nth-child(2) {
    opacity: 0;
}

.navbar-toggler.active .burger-icon span:nth-child(3) {
    transform: translateY(-9px) rotate(-45deg);
}

.navbar-collapse {
    background: rgba(15, 23, 42, 0.98);
}

.nav-item {
    padding: 0.25rem;
    width: 100%;
}

.nav-button {
    position: relative;
    color: var(--text-light);
    font-weight: 500;
    padding: 0.75rem 1.25rem;
    border-radius: 12px;
    background: rgba(59, 130, 246, 0.1);
    border: 1px solid rgba(59, 130, 246, 0.1);
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    width: 100%;
    min-height: 44px;
    user-select: none;
    -webkit-tap-highlight-color: transparent;
}

.nav-button:hover {
    color: var(--text);
    background: rgba(59, 130, 246, 0.15);
    border-color: rgba(59, 130, 246, 0.2);
}

.nav-button:active {
    background: rgba(59, 130, 246, 0.2);
    transform: translateY(1px);
}

.button-content {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    pointer-events: none;
}

.nav-icon {
    font-size: 1.1rem;
    color: var(--primary);
    pointer-events: none;
}

.nav-button::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(45deg, rgba(59, 130, 246, 0.2), rgba(16, 185, 129, 0.2));
    opacity: 0;
    border-radius: inherit;
    pointer-events: none;
}

.nav-button:hover, .nav-button.active {
    color: var(--text) !important;
    border-color: rgba(59, 130, 246, 0.3);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(59, 130, 246, 0.1);
    text-decoration: none !important;
}

.nav-button.active {
    background: rgba(59, 130, 246, 0.2);
    border-color: rgba(59, 130, 246, 0.4);
    box-shadow: 0 4px 15px rgba(59, 130, 246, 0.15);
}

.nav-button:hover::before {
    opacity: 1;
}

.button-content {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    pointer-events: none;
}

.nav-icon {
    font-size: 1.1rem;
    color: rgba(59, 130, 246, 0.8);
    pointer-events: none;
}

.nav-button:hover .nav-icon {
    color: var(--primary);
}

.nav-button-primary {
    position: relative;
    color: var(--text);
    font-weight: 500;
    padding: 0.75rem 2rem;
    margin: 0 0.25rem;
    border-radius: 12px;
    background: linear-gradient(45deg, #3b82f6, #60a5fa);
    border: none;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(59, 130, 246, 0.3);
    display: inline-flex;
    align-items: center;
    cursor: pointer;
    justify-content: center;
    transition: none;
    white-space: nowrap;
}

.nav-button-primary:hover {
    color: var(--text);
    box-shadow: 0 6px 16px rgba(59, 130, 246, 0.4);
    transform: translateY(-1px);
}

.nav-button-primary:active {
    transform: translateY(0);
    box-shadow: 0 4px 12px rgba(59, 130, 246, 0.3);
}

.nav-button-primary::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: inherit;
    border-radius: inherit;
    filter: blur(8px);
    opacity: 0;
    z-index: -1;
    pointer-events: none;
}

.nav-button-primary:hover {
    transform: translateY(-2px);
    color: var(--text) !important;
    box-shadow: 0 6px 16px rgba(59, 130, 246, 0.4);
    text-decoration: none !important;
}

.nav-button-primary:hover::before {
    opacity: 0.7;
}

.nav-button-primary .nav-icon {
    color: white;
    pointer-events: none;
}

.nav-button-primary:hover .nav-icon {
    color: white;
}

.button-glow {
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: inherit;
    border-radius: inherit;
    filter: blur(8px);
    opacity: 0;
    transition: all 0.3s ease;
    z-index: -1;
}

.nav-button-primary:hover .button-glow {
    opacity: 0.7;
}

/* Кнопки */
.btn {
    padding: 0.75rem 1.5rem;
    border-radius: 0.5rem;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
}

.btn-glow {
    position: relative;
    background: linear-gradient(45deg, var(--primary), var(--accent));
    border: none;
    color: var(--text);
    overflow: hidden;
}

.btn-glow::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, var(--primary), var(--accent));
    opacity: 0.5;
    filter: blur(15px);
    transition: all 0.3s ease;
    z-index: -1;
}

.btn-glow:hover::before {
    opacity: 1;
    transform: scale(1.2);
}

.btn-outline {
    background: transparent;
    border: 2px solid var(--primary);
    color: var(--text);
}

.btn-outline:hover {
    background: var(--primary);
    color: var(--text);
    transform: translateY(-2px);
}

/* Hero секция */
.hero-section {
    padding: 8rem 0 4rem;
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(59, 130, 246, 0.1);
    color: var(--primary);
    padding: 0.75rem 1.25rem;
    border-radius: 2rem;
    margin-bottom: 2rem;
    border: 1px solid rgba(59, 130, 246, 0.2);
}

.hero-badge i {
    color: var(--primary);
    font-size: 1.1rem;
}

.hero-content {
    position: relative;
    z-index: 1;
}

.hero-content h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    background: linear-gradient(to right, var(--text), var(--text-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--text-light);
    margin-bottom: 2.5rem;
    line-height: 1.6;
    max-width: 600px;
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.hero-buttons .btn-primary {
    position: relative;
    background: linear-gradient(45deg, #3b82f6, #60a5fa);
    border: none;
    overflow: hidden;
    transition: all 0.3s ease;
}

.hero-buttons .btn-primary::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, #3b82f6, #60a5fa);
    border-radius: inherit;
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: -2;
    filter: blur(10px);
}

.hero-buttons .btn-primary::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, 
        transparent 0%, 
        rgba(255, 255, 255, 0.2) 50%, 
        transparent 100%
    );
    transform: translateX(-100%);
    transition: transform 0.5s ease;
}

.hero-buttons .btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(59, 130, 246, 0.4);
}

.hero-buttons .btn-primary:hover::before {
    opacity: 0.6;
}

.hero-buttons .btn-primary:hover::after {
    transform: translateX(100%);
}

.hero-buttons .btn-primary:active {
    transform: translateY(1px);
    box-shadow: 0 4px 15px rgba(59, 130, 246, 0.3);
}

.hero-buttons .btn-primary i {
    margin-right: 0.75rem;
    transition: transform 0.3s ease;
}

.hero-buttons .btn-primary:hover i {
    transform: translateX(3px) scale(1.1);
}

.hero-buttons .btn-primary span {
    position: relative;
    z-index: 1;
}

.hero-features {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--text-light);
    font-size: 1.1rem;
}

.feature-item i {
    color: var(--secondary);
    font-size: 1rem;
}

/* Hero анимация */
.hero-animation {
    position: relative;
    height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.circle-animation {
    position: absolute;
    width: 400px;
    height: 400px;
}

.circle {
    position: absolute;
    border: 2px solid var(--primary);
    border-radius: 50%;
    animation: ripple 4s infinite;
    opacity: 0.2;
}

.circle:nth-child(1) { width: 100%; height: 100%; animation-delay: 0s; }
.circle:nth-child(2) { width: 80%; height: 80%; animation-delay: -1s; }
.circle:nth-child(3) { width: 60%; height: 60%; animation-delay: -2s; }

@keyframes ripple {
    0% { transform: scale(0.8); opacity: 0.2; }
    50% { transform: scale(1.1); opacity: 0.1; }
    100% { transform: scale(1.4); opacity: 0; }
}

.shield-icon {
    font-size: 5rem;
    color: var(--primary);
    animation: float-shield 4s ease-in-out infinite;
    position: relative;
    z-index: 1;
}

.shield-icon::after {
    content: '';
    position: absolute;
    inset: -20px;
    background: radial-gradient(circle, var(--primary) 0%, transparent 70%);
    opacity: 0.1;
    filter: blur(20px);
    animation: pulse 4s ease-in-out infinite;
}

@keyframes float-shield {
    0%, 100% { transform: translateY(0) rotate(0); }
    25% { transform: translateY(-15px) rotate(5deg); }
    75% { transform: translateY(15px) rotate(-5deg); }
}

@keyframes pulse {
    0%, 100% { transform: scale(1); opacity: 0.1; }
    50% { transform: scale(1.2); opacity: 0.2; }
}

/* Общие стили для секций */
.section-header {
    text-align: center;
    margin-bottom: 5rem;
    position: relative;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.section-header h2 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    background: linear-gradient(to right, var(--text), var(--text-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 1.2;
}

.section-header p {
    color: var(--text-light);
    font-size: 1.25rem;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}



/* Секция возможностей */
.features-section {
    padding: 10rem 0;
    position: relative;
    background: linear-gradient(to bottom, 
        var(--background-color),
        rgba(15, 23, 42, 0.95)
    );
    border-top: 1px solid rgba(59, 130, 246, 0.1);
    overflow: hidden;
}

.features-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 20%, rgba(59, 130, 246, 0.15) 0%, transparent 40%),
        radial-gradient(circle at 80% 80%, rgba(16, 185, 129, 0.15) 0%, transparent 40%);
    pointer-events: none;
}

.features-section .container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 2rem;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
    position: relative;
    margin: 0 auto;
}

.feature-card {
    background: rgba(30, 41, 59, 0.4);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(59, 130, 246, 0.2);
    border-radius: 1.5rem;
    padding: 2rem;
    transition: all 0.3s ease;
    position: relative;
}

.feature-card:hover {
    transform: translateY(-5px);
    border-color: rgba(59, 130, 246, 0.3);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
}

.feature-icon {
    width: 56px;
    height: 56px;
    background: linear-gradient(45deg, #3b82f6, #60a5fa);
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    position: relative;
    box-shadow: 0 4px 15px rgba(59, 130, 246, 0.3);
}

.feature-icon i {
    font-size: 1.5rem;
    color: white;
}

.feature-card h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: white;
}

.feature-card p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.feature-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.feature-list li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
    margin-bottom: 0.75rem;
}

.feature-list li i {
    color: #10b981;
    font-size: 0.8rem;
}

/* Секция тарифов */
.pricing-section {
    padding: 6rem 0;
    background: var(--surface);
    position: relative;
}

.pricing-card {
    background: var(--surface-light);
    border-radius: 1rem;
    padding: 2rem;
    height: 100%;
    transition: all 0.3s ease;
    border: 1px solid var(--border);
    position: relative;
    overflow: hidden;
}

.pricing-card.featured {
    border-color: var(--primary);
    transform: scale(1.05);
}

.pricing-card.featured::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(to right, var(--primary), var(--accent));
}

.pricing-icon {
    width: 60px;
    height: 60px;
    background: rgba(59, 130, 246, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.pricing-icon i {
    font-size: 1.5rem;
    color: var(--primary);
}

.pricing-header {
    text-align: center;
    margin-bottom: 2rem;
}

.price {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text);
    margin: 1rem 0;
}

.period {
    font-size: 1rem;
    color: var(--text-light);
}

.pricing-features {
    list-style: none;
    padding: 0;
    margin: 0 0 2rem;
}

.pricing-features li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
    color: var(--text-light);
}

.pricing-features i {
    color: var(--secondary);
}

.pricing-card .btn {
    position: relative;
    overflow: hidden;
    transition: transform 0.2s ease;
}

.pricing-card .btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 120%;
    height: 120%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.2) 0%, transparent 50%);
    transform: translate(-50%, -50%) scale(0);
    transition: transform 0.3s ease;
}

.pricing-card .btn:hover {
    transform: translateY(-2px);
}

.pricing-card .btn:hover::before {
    transform: translate(-50%, -50%) scale(2);
}

.pricing-card .btn:active {
    transform: translateY(0);
}

.pricing-card .btn i {
    margin-right: 0.5rem;
    transition: transform 0.2s ease;
}

.pricing-card .btn:hover i {
    transform: translateX(3px);
}

.pricing-card.featured .btn {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(59, 130, 246, 0.4);
    }
    70% {
        box-shadow: 0 0 0 10px rgba(59, 130, 246, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(59, 130, 246, 0);
    }
}

/* О нас секция */
.about-section {
    padding: 6rem 0;
    position: relative;
}

.about-content {
    position: relative;
}

.about-text {
    margin-bottom: 2rem;
    color: var(--text-light);
}

.about-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.stat-item {
    text-align: center;
}

.stat-icon {
    width: 50px;
    height: 50px;
    background: rgba(59, 130, 246, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
}

.stat-icon i {
    font-size: 1.25rem;
    color: var(--primary);
}

.stat-info h4 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 0.5rem;
}

.stat-info p {
    color: var(--text-light);
    margin: 0;
}

.about-animation {
    height: 400px;
    position: relative;
}

.floating-icons {
    position: relative;
    width: 100%;
    height: 100%;
}

.floating-icons i {
    position: absolute;
    font-size: 2rem;
    color: var(--primary);
    animation: float-icon 6s ease-in-out infinite;
}

.floating-icons i:nth-child(1) { top: 20%; left: 20%; animation-delay: 0s; }
.floating-icons i:nth-child(2) { top: 60%; left: 50%; animation-delay: -1s; }
.floating-icons i:nth-child(3) { top: 30%; left: 70%; animation-delay: -2s; }
.floating-icons i:nth-child(4) { top: 70%; left: 30%; animation-delay: -3s; }

@keyframes float-icon {
    0%, 100% { transform: translate(0, 0); }
    25% { transform: translate(-10px, 10px); }
    50% { transform: translate(10px, -10px); }
    75% { transform: translate(10px, 10px); }
}

/* Секция поддержки */
.support-section {
    padding: 8rem 0;
    background: linear-gradient(to bottom, var(--surface), var(--background));
    position: relative;
    overflow: hidden;
}

.support-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 20%, rgba(59, 130, 246, 0.15) 0%, transparent 40%),
        radial-gradient(circle at 80% 80%, rgba(16, 185, 129, 0.15) 0%, transparent 40%);
    pointer-events: none;
}

.support-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 1rem;
}

.support-card {
    background: rgba(30, 41, 59, 0.4);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(59, 130, 246, 0.2);
    border-radius: 1.5rem;
    padding: 2.5rem;
    position: relative;
}

.support-info {
    display: flex;
    gap: 2rem;
    margin-bottom: 2.5rem;
}

.support-icon {
    flex-shrink: 0;
    width: 64px;
    height: 64px;
    background: linear-gradient(45deg, #3b82f6, #60a5fa);
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(59, 130, 246, 0.3);
}

.support-icon i {
    font-size: 1.75rem;
    color: white;
}

.support-text {
    flex-grow: 1;
}

.support-text h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: white;
}

.support-text p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.support-features {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
}

.support-features li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.95rem;
}

.support-features li i {
    color: #10b981;
    font-size: 0.85rem;
}

.support-action {
    text-align: center;
    position: relative;
}

.support-action .btn {
    position: relative;
    overflow: hidden;
    background: linear-gradient(45deg, #3b82f6, #60a5fa);
    border: none;
    transition: all 0.3s ease;
}

.support-action .btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        120deg,
        transparent,
        rgba(255, 255, 255, 0.2),
        transparent
    );
    transition: all 0.5s ease;
}

.support-action .btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(59, 130, 246, 0.4);
}

.support-action .btn:hover::before {
    left: 100%;
}

.support-action .btn:active {
    transform: translateY(1px);
    box-shadow: 0 4px 12px rgba(59, 130, 246, 0.3);
}

.support-action .btn i {
    transition: transform 0.3s ease;
    margin-right: 0.75rem;
}

.support-action .btn:hover i {
    transform: scale(1.2) rotate(10deg);
}

.support-action .btn span {
    position: relative;
    z-index: 1;
}

.btn-lg {
    padding: 1.25rem 2.5rem;
    font-size: 1.1rem;
    border-radius: 1rem;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-5px); }
}

.support-action::after {
    content: '';
    position: absolute;
    bottom: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 200px;
    height: 20px;
    background: radial-gradient(ellipse at center, rgba(59, 130, 246, 0.2) 0%, transparent 70%);
    filter: blur(5px);
    animation: float 3s ease-in-out infinite;
    pointer-events: none;
}

@media (max-width: 767.98px) {
    .support-info {
        flex-direction: column;
        gap: 1.5rem;
        text-align: center;
    }

    .support-icon {
        margin: 0 auto;
    }

    .support-features {
        grid-template-columns: 1fr;
        gap: 0.75rem;
    }

    .support-features li {
        justify-content: center;
    }

    .support-card {
        padding: 2rem 1.5rem;
    }
}

@media (max-width: 575.98px) {
    .support-text h3 {
        font-size: 1.25rem;
    }

    .support-text p {
        font-size: 0.95rem;
    }

    .support-features li {
        font-size: 0.9rem;
    }

    .btn-lg {
        width: 100%;
        padding: 0.875rem 1.5rem;
        font-size: 1rem;
    }
}

/* Подвал */
.footer {
    background: var(--surface);
    padding: 4rem 0 2rem;
    position: relative;
    border-top: 1px solid var(--border);
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, 
        transparent,
        var(--primary),
        var(--accent),
        transparent
    );
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.footer-description {
    color: var(--text-light);
    margin-bottom: 2rem;
}

.footer h4 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 0.75rem;
}

.footer-links a {
    color: var(--text-light);
    text-decoration: none;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.footer-links a:hover {
    color: var(--text);
    transform: translateX(5px);
}

.footer-contacts {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-contacts li {
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.footer-contacts i {
    color: var(--primary);
}

.footer-contacts a {
    color: var(--text-light);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-contacts a:hover {
    color: var(--text);
}

.footer-bottom {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid var(--border);
    text-align: center;
    color: var(--text-light);
}

/* Модальное окно авторизации */
.auth-modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(13, 17, 23, 0.95);
    backdrop-filter: blur(20px);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 1000;
}

.auth-modal.active {
    display: flex;
}

.auth-modal-container {
    width: 100%;
    max-width: 450px;
    margin: 1rem;
}

.auth-modal-content {
    background: #0f172a;
    border-radius: 20px;
    padding: 2rem;
    position: relative;
    border: 1px solid rgba(59, 130, 246, 0.5);
    box-shadow: 0 0 0 1px rgba(59, 130, 246, 0.2),
                0 0 30px rgba(59, 130, 246, 0.15);
}

.auth-close-btn {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 32px;
    height: 32px;
    border: none;
    background: none;
    color: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    transition: color 0.2s ease;
}

.auth-close-btn:hover {
    color: rgba(255, 255, 255, 0.8);
}

.auth-header {
    text-align: center;
    margin-bottom: 1.5rem;
}

.auth-logo {
    margin: 0 auto 1.5rem;
    position: relative;
}

.auth-logo i {
    font-size: 3rem;
    color: var(--primary);
    filter: drop-shadow(0 0 12px rgba(59, 130, 246, 0.4));
    display: inline-block;
    animation: modal-globe-spin 20s linear infinite, modal-globe-float 3s ease-in-out infinite;
}

@keyframes modal-globe-spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

@keyframes modal-globe-float {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
        filter: drop-shadow(0 0 12px rgba(59, 130, 246, 0.4));
    }
    50% {
        transform: translateY(-10px) rotate(180deg);
        filter: drop-shadow(0 0 20px rgba(59, 130, 246, 0.6));
    }
}

.auth-header h2 {
    color: #fff;
    font-size: 1.5rem;
    font-weight: 600;
    margin: 0;
    line-height: 1.2;
}

/* Вкладки авторизации */
.auth-tabs {
    display: flex;
    background: rgba(59, 130, 246, 0.1);
    border-radius: 12px;
    padding: 4px;
    margin-bottom: 1.5rem;
}

.auth-tab {
    flex: 1;
    background: none;
    border: none;
    color: rgba(255, 255, 255, 0.6);
    padding: 12px 16px;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.9rem;
    font-weight: 500;
}

.auth-tab.active {
    background: var(--primary);
    color: white;
    box-shadow: 0 4px 12px rgba(59, 130, 246, 0.3);
}

.auth-tab:hover:not(.active) {
    color: rgba(255, 255, 255, 0.8);
}

.auth-tab i {
    margin-right: 8px;
    font-size: 1rem;
}

/* Контент вкладок */
.auth-tab-content {
    display: none;
}

.auth-tab-content.active {
    display: block;
}

.auth-subtitle {
    color: rgba(255, 255, 255, 0.5);
    text-align: center;
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
}

/* Формы авторизации */
.auth-form {
    margin-bottom: 1.5rem;
}

.form-group {
    margin-bottom: 1rem;
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 14px 16px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    color: white;
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--primary);
    background: rgba(255, 255, 255, 0.08);
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

.form-group input::placeholder {
    color: rgba(255, 255, 255, 0.4);
}

.form-group select {
    cursor: pointer;
}

.form-group select option {
    background: #1e293b;
    color: white;
}

/* Кнопка отправки */
.auth-submit-btn {
    width: 100%;
    padding: 14px 20px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    border: none;
    border-radius: 10px;
    color: white;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.auth-submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(59, 130, 246, 0.4);
}

.auth-submit-btn:active {
    transform: translateY(0);
}

.auth-submit-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
}

/* Индикатор загрузки */
.btn-loading {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

/* Переключение режимов */
.auth-switch {
    text-align: center;
    margin-bottom: 1.5rem;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 10px;
}

.auth-switch span {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
    margin-right: 8px;
}

.auth-switch-btn {
    background: none;
    border: none;
    color: var(--primary);
    cursor: pointer;
    font-size: 0.9rem;
    font-weight: 500;
    text-decoration: underline;
    transition: color 0.2s ease;
}

.auth-switch-btn:hover {
    color: var(--primary-dark);
}

/* Особенности авторизации */
.auth-features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    margin-top: 1.5rem;
}

.auth-feature {
    text-align: center;
    padding: 1rem 0.5rem;
}

.auth-feature i {
    display: block;
    font-size: 1.5rem;
    color: var(--primary);
    margin-bottom: 0.5rem;
}

.auth-feature span {
    display: block;
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.3;
}

/* Telegram кнопка */
.auth-button {
    margin-bottom: 1.5rem;
}

/* Уведомления */
.notification {
    position: fixed;
    top: 20px;
    right: 20px;
    padding: 1rem 1.5rem;
    border-radius: 0.5rem;
    background: var(--surface);
    border: 1px solid var(--border);
    color: var(--text);
    z-index: 1100;
    transform: translateX(120%);
    transition: transform 0.3s ease;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.notification.show {
    transform: translateX(0);
}

.notification-content {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.notification.success i {
    color: var(--accent);
}

.notification.error i {
    color: var(--danger-color);
}

/* Индикатор загрузки для кнопки авторизации */
.auth-button.loading {
    position: relative;
    pointer-events: none;
}

.auth-button.loading::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    border-radius: inherit;
    display: flex;
    align-items: center;
    justify-content: center;
}

.auth-button.loading::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 24px;
    height: 24px;
    border: 2px solid transparent;
    border-top-color: var(--text);
    border-radius: 50%;
    animation: spin 1s linear infinite;
    z-index: 1;
}

@keyframes spin {
    0% { transform: translate(-50%, -50%) rotate(0deg); }
    100% { transform: translate(-50%, -50%) rotate(360deg); }
}

/* Адаптивность */
@media (max-width: 991.98px) {
    .navbar {
        padding: 0.75rem 0;
    }

    .navbar-collapse {
        position: fixed;
        top: 72px;
        left: 0;
        right: 0;
        bottom: 0;
        padding: 1rem;
        transform: translateX(100%);
        transition: transform 0.3s ease;
    }

    .navbar-collapse.show {
        transform: translateX(0);
    }

    .navbar-nav {
        padding: 1rem;
        background: rgba(30, 41, 59, 0.98);
        backdrop-filter: blur(10px);
        border-radius: 16px;
        border: 1px solid var(--border);
        display: flex;
        flex-direction: column;
        gap: 0.5rem;
    }

    .nav-item {
        opacity: 0;
        transform: translateY(20px);
        transition: all 0.3s ease;
    }

    .navbar-collapse.show .nav-item {
        opacity: 1;
        transform: translateY(0);
    }

    .hero-section {
        padding: 6rem 0 3rem;
    }

    .hero-content h1 {
        font-size: 2.5rem;
    }

    .hero-animation {
        height: 300px;
    }

    .circle-animation {
        width: 200px;
        height: 200px;
    }

    .features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }

    .section-header h2 {
        font-size: 2rem;
    }

    .section-header p {
        font-size: 1rem;
    }
}

@media (max-width: 767.98px) {
    .navbar-brand {
        font-size: 1.25rem;
    }

    .logo-animation {
        width: 36px;
        height: 36px;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .hero-buttons .btn {
        width: 100%;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .feature-card {
        padding: 1.5rem;
    }

    .feature-icon {
        width: 48px;
        height: 48px;
    }

    .feature-icon i {
        font-size: 1.25rem;
    }
}

@media (max-width: 575.98px) {
    .navbar {
        padding: 0.5rem 0;
    }

    .hero-features {
        flex-direction: column;
        gap: 1rem;
    }

    .section-header h2 {
        font-size: 1.75rem;
    }

    .feature-card {
        padding: 1.25rem;
    }

    .feature-card h3 {
        font-size: 1.1rem;
    }

    .feature-card p {
        font-size: 0.9rem;
    }

    .feature-list li {
        font-size: 0.85rem;
    }
}

@media (max-width: 480px) {
    .auth-modal-container {
        margin: 0.5rem;
    }
    
    .auth-modal-content {
        padding: 1.5rem;
    }
    
    .auth-tabs {
        margin-bottom: 1rem;
    }
    
    .auth-tab {
        padding: 10px 12px;
        font-size: 0.85rem;
    }
    
    .auth-features {
        grid-template-columns: 1fr;
        gap: 0.5rem;
    }
}
