/* Основные стили */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #ffffff;
    --secondary-color: #ffffff;
    --accent-color: #ffffff;
    --bg-primary: #000000;
    --bg-secondary: #111111;
    --bg-glass: rgba(255, 255, 255, 0.05);
    --bg-glass-hover: rgba(255, 255, 255, 0.1);
    --text-primary: #ffffff;
    --text-secondary: #a0a0a0;
    --text-muted: #666666;
    --border-color: rgba(255, 255, 255, 0.1);
    --shadow-primary: 0 20px 40px rgba(0, 0, 0, 0.3);
    --shadow-glass: 0 8px 32px rgba(0, 0, 0, 0.3);
    --gradient-primary: linear-gradient(135deg, #ffffff 0%, #e0e0e0 100%);
    --gradient-secondary: linear-gradient(135deg, #ffffff 0%, #f0f0f0 100%);
}

body {
    font-family: 'Inter', sans-serif;
    background: var(--bg-primary);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
}

body::before {
    content: '';
    position: fixed;
    top: -200%;
    left: -200%;
    width: 500%;
    height: 500%;
    background: 
        radial-gradient(circle at 20% 50%, rgba(255, 255, 255, 0.03) 0%, transparent 95%),
        radial-gradient(circle at 80% 20%, rgba(255, 255, 255, 0.02) 0%, transparent 95%),
        radial-gradient(circle at 40% 80%, rgba(255, 255, 255, 0.025) 0%, transparent 95%),
        radial-gradient(circle at 90% 90%, rgba(255, 255, 255, 0.015) 0%, transparent 95%);
    animation: backgroundFlow 20s ease-in-out infinite;
    z-index: -2;
}

body::after {
    content: '';
    position: fixed;
    top: -200%;
    left: -200%;
    width: 500%;
    height: 500%;
    background: 
        radial-gradient(circle at 60% 30%, rgba(255, 255, 255, 0.02) 0%, transparent 98%),
        radial-gradient(circle at 10% 70%, rgba(255, 255, 255, 0.025) 0%, transparent 98%),
        radial-gradient(circle at 70% 70%, rgba(255, 255, 255, 0.015) 0%, transparent 98%);
    animation: backgroundFlow2 25s ease-in-out infinite reverse;
    z-index: -1;
}

@keyframes backgroundFlow {
    0%, 100% {
        transform: translate(0, 0) scale(1);
        opacity: 0.7;
    }
    25% {
        transform: translate(10px, -15px) scale(1.05);
        opacity: 1;
    }
    50% {
        transform: translate(-8px, 10px) scale(0.95);
        opacity: 0.8;
    }
    75% {
        transform: translate(15px, 5px) scale(1.02);
        opacity: 0.9;
    }
}

@keyframes backgroundFlow2 {
    0%, 100% {
        transform: translate(0, 0) scale(1) rotate(0deg);
        opacity: 0.6;
    }
    33% {
        transform: translate(-12px, 8px) scale(1.1) rotate(120deg);
        opacity: 0.8;
    }
    66% {
        transform: translate(10px, -10px) scale(0.9) rotate(240deg);
        opacity: 0.7;
    }
}

@keyframes sectionFlow {
    0%, 100% {
        transform: translate(0, 0) scale(1);
        opacity: 0.8;
    }
    50% {
        transform: translate(15px, -10px) scale(1.05);
        opacity: 1;
    }
}

@keyframes sectionFlow2 {
    0%, 100% {
        transform: translate(0, 0) scale(1) rotate(0deg);
        opacity: 0.7;
    }
    50% {
        transform: translate(-10px, 12px) scale(1.02) rotate(180deg);
        opacity: 0.9;
    }
}

@keyframes heroFlow {
    0%, 100% {
        transform: translate(0, 0) scale(1);
        opacity: 0.8;
    }
    33% {
        transform: translate(8px, -5px) scale(1.02);
        opacity: 1;
    }
    66% {
        transform: translate(-5px, 10px) scale(0.98);
        opacity: 0.9;
    }
}

/* Liquid Glass эффект */
.glass-card {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(30px);
    -webkit-backdrop-filter: blur(30px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    box-shadow: 
        0 8px 32px rgba(0, 0, 0, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.1),
        inset 0 -1px 0 rgba(255, 255, 255, 0.03);
    transition: all 0.3s ease;
}

.glass-card:hover {
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(255, 255, 255, 0.12);
    transform: translateY(-5px);
    box-shadow: 
        0 20px 40px rgba(0, 0, 0, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.15),
        inset 0 -1px 0 rgba(255, 255, 255, 0.05);
}

/* Градиентный текст */
.gradient-text {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Кнопки */
.btn-primary, .btn-secondary {
    padding: 12px 24px;
    border: none;
    border-radius: 12px;
    font-weight: 500;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    position: relative;
    overflow: hidden;
}

.btn-primary:link, .btn-primary:visited, .btn-secondary:link, .btn-secondary:visited {
    color: inherit;
    text-decoration: none;
}

.btn-primary {
    background: rgba(255, 255, 255, 0.08);
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(25px);
    box-shadow: 
        0 4px 20px rgba(0, 0, 0, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.2),
        inset 0 -1px 0 rgba(255, 255, 255, 0.05);
}

.btn-primary:hover {
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
    box-shadow: 
        0 8px 30px rgba(0, 0, 0, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.25),
        inset 0 -1px 0 rgba(255, 255, 255, 0.08);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.03);
    color: var(--text-primary);
    border: 1px solid rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(25px);
    box-shadow: 
        0 4px 20px rgba(0, 0, 0, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.1),
        inset 0 -1px 0 rgba(255, 255, 255, 0.03);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(255, 255, 255, 0.12);
    transform: translateY(-2px);
    box-shadow: 
        0 8px 25px rgba(0, 0, 0, 0.15),
        inset 0 1px 0 rgba(255, 255, 255, 0.15),
        inset 0 -1px 0 rgba(255, 255, 255, 0.05);
}

.btn-large {
    padding: 14px 28px;
    font-size: 16px;
}

/* Навигация */
.navbar {
    position: fixed;
    top: 20px;
    left: 20px;
    right: 20px;
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(40px);
    -webkit-backdrop-filter: blur(40px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    z-index: 1000;
    transition: all 0.3s ease;
    box-shadow: 
        0 8px 32px rgba(0, 0, 0, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.15),
        inset 0 -1px 0 rgba(255, 255, 255, 0.05),
        0 0 0 1px rgba(255, 255, 255, 0.05);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 64px;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 24px;
    font-weight: 700;
    color: var(--text-primary);
}

.nav-logo i {
    color: #ffffff;
    font-size: 28px;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 8px;
    background: rgba(255, 255, 255, 0.02);
    padding: 8px;
    border-radius: 16px;
    backdrop-filter: blur(25px);
    border: 1px solid rgba(255, 255, 255, 0.06);
    box-shadow: 
        inset 0 1px 0 rgba(255, 255, 255, 0.08),
        inset 0 -1px 0 rgba(255, 255, 255, 0.03);
}

.nav-menu a {
    color: var(--text-secondary);
    text-decoration: none;
    font-weight: 500;
    padding: 12px 20px;
    border-radius: 12px;
    transition: all 0.3s ease;
    position: relative;
    font-size: 15px;
}

.nav-menu a:hover {
    color: #ffffff;
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-1px);
}

.nav-menu a.active {
    background: var(--gradient-primary);
    color: #000000;
    box-shadow: 0 4px 20px rgba(255, 255, 255, 0.3);
}

.nav-buttons {
    display: flex;
    gap: 12px;
}

.nav-buttons .btn-secondary {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.06);
    padding: 10px 20px;
    font-size: 14px;
    backdrop-filter: blur(20px);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.nav-buttons .btn-primary {
    padding: 10px 20px;
    font-size: 14px;
}


/* Главная секция */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 120px;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -100%;
    left: -100%;
    width: 300%;
    height: 300%;
    background: 
        radial-gradient(ellipse at center, rgba(255, 255, 255, 0.04) 0%, transparent 95%),
        radial-gradient(circle at 25% 25%, rgba(255, 255, 255, 0.02) 0%, transparent 95%),
        radial-gradient(circle at 75% 75%, rgba(255, 255, 255, 0.03) 0%, transparent 95%);
    animation: heroFlow 12s ease-in-out infinite;
    z-index: 0;
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 24px;
}

.hero-description-container {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 24px;
    padding: 32px;
    margin-bottom: 40px;
    max-width: 700px;
    box-shadow: 
        0 8px 32px rgba(0, 0, 0, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.2),
        inset 0 -1px 0 rgba(255, 255, 255, 0.1);
    position: relative;
    overflow: hidden;
}

.hero-description-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
}

.hero-description {
    font-size: 1.1rem;
    color: var(--text-secondary);
    margin-bottom: 20px;
    line-height: 1.8;
    display: block;
}

.hero-description-tech {
    font-size: 1rem;
    color: var(--text-secondary);
    line-height: 1.6;
    margin: 0;
}

.description-title {
    display: block;
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 8px;
}

.description-subtitle {
    display: block;
    font-size: 1.1rem;
    color: var(--text-secondary);
    margin-bottom: 8px;
}

.description-highlight {
    display: block;
    font-size: 1.1rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.9);
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.3);
}

.tech-highlight {
    font-weight: 600;
    color: var(--text-primary);
    text-shadow: 0 0 8px rgba(255, 255, 255, 0.4);
}

.hero-buttons {
    display: flex;
    gap: 20px;
    margin-bottom: 60px;
}

.hero-stats {
    display: flex;
    gap: 40px;
}

.stat {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    color: #ffffff;
}

.stat-label {
    font-size: 0.9rem;
    color: var(--text-secondary);
}

/* Телефон с VPN анимацией */
.phone-container {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.phone {
    width: 320px;
    height: 640px;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(30px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 40px;
    padding: 20px;
    box-shadow: 
        0 0 0 8px rgba(255, 255, 255, 0.05),
        0 20px 40px rgba(0, 0, 0, 0.4),
        inset 0 0 0 1px rgba(255, 255, 255, 0.08),
        inset 0 1px 0 rgba(255, 255, 255, 0.1),
        inset 0 -1px 0 rgba(255, 255, 255, 0.03);
    position: relative;
    animation: phoneFloat 6s ease-in-out infinite;
    margin-left: 340px;
}

@keyframes phoneFloat {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(2deg); }
}

.phone-screen {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #111111 0%, #0a0a0a 100%);
    border-radius: 30px;
    padding: 30px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.phone-screen::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 20%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 70% 80%, rgba(255, 255, 255, 0.05) 0%, transparent 50%);
    animation: backgroundGlow 8s ease-in-out infinite alternate;
}

@keyframes backgroundGlow {
    0% {
        opacity: 0.3;
    }
    100% {
        opacity: 0.7;
    }
}

.phone-screen::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.15), transparent);
    animation: shimmer 4s ease-in-out infinite;
}

@keyframes shimmer {
    0% { 
        left: -100%;
        opacity: 0;
    }
    50% {
        opacity: 1;
    }
    100% { 
        left: 100%;
        opacity: 0;
    }
}

.vps-indicator {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    margin-bottom: 40px;
}

.vps-status {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.vps-icon {
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(25px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    color: #ffffff;
    animation: pulse 2s ease-in-out infinite;
    box-shadow: 
        0 0 30px rgba(255, 255, 255, 0.3),
        0 8px 25px rgba(0, 0, 0, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.3),
        inset 0 -1px 0 rgba(255, 255, 255, 0.1);
}

@keyframes pulse {
    0% { 
        transform: scale(1); 
        box-shadow: 0 0 20px rgba(255, 255, 255, 0.4);
    }
    50% { 
        transform: scale(1.05); 
        box-shadow: 0 0 35px rgba(255, 255, 255, 0.7);
    }
    100% { 
        transform: scale(1); 
        box-shadow: 0 0 20px rgba(255, 255, 255, 0.4);
    }
}

.vps-text {
    font-size: 24px;
    font-weight: 700;
    color: #ffffff;
}

.vps-animation {
    position: relative;
    width: 120px;
    height: 120px;
}

.signal-wave {
    position: absolute;
    border: 2px solid #ffffff;
    border-radius: 50%;
    animation: wave 2s ease-out infinite;
}

.wave-1 {
    width: 40px;
    height: 40px;
    top: 40px;
    left: 40px;
    animation-delay: 0s;
}

.wave-2 {
    width: 60px;
    height: 60px;
    top: 30px;
    left: 30px;
    animation-delay: 0.5s;
}

.wave-3 {
    width: 80px;
    height: 80px;
    top: 20px;
    left: 20px;
    animation-delay: 1s;
}

@keyframes wave {
    0% {
        transform: scale(0.5);
        opacity: 0.8;
    }
    70% {
        opacity: 0.3;
    }
    100% {
        transform: scale(2.5);
        opacity: 0;
    }
}

.connection-status {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
}

.status-dot {
    width: 12px;
    height: 12px;
    background: #00ff88;
    border-radius: 50%;
    animation: blink 1.5s ease-in-out infinite;
}

@keyframes blink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

.server-location {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--text-secondary);
    font-size: 14px;
}

/* Секции */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.section-header {
    text-align: center;
    margin-bottom: 80px;
}

.section-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 16px;
}

.section-header p {
    font-size: 1.2rem;
    color: var(--text-secondary);
}

/* Возможности */
.features {
    padding: 120px 0;
    background: var(--bg-secondary);
    position: relative;
    overflow: hidden;
}

.features::before {
    content: '';
    position: absolute;
    top: -100%;
    left: -100%;
    width: 300%;
    height: 300%;
    background: 
        radial-gradient(circle at 30% 40%, rgba(255, 255, 255, 0.02) 0%, transparent 95%),
        radial-gradient(circle at 70% 60%, rgba(255, 255, 255, 0.015) 0%, transparent 95%);
    animation: sectionFlow 15s ease-in-out infinite;
    z-index: 0;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    position: relative;
    z-index: 1;
}

.feature-card {
    padding: 40px;
    text-align: center;
    transition: all 0.3s ease;
}

.feature-icon {
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(25px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    font-size: 32px;
    color: #ffffff;
    box-shadow: 
        0 8px 25px rgba(0, 0, 0, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.2),
        inset 0 -1px 0 rgba(255, 255, 255, 0.05);
}

.feature-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 16px;
}

.feature-card p {
    color: var(--text-secondary);
    line-height: 1.6;
}

/* Скачать */
.download {
    padding: 120px 0;
    background: var(--bg-primary);
    position: relative;
    overflow: hidden;
}

.download::before {
    content: '';
    position: absolute;
    top: -100%;
    left: -100%;
    width: 300%;
    height: 300%;
    background: 
        radial-gradient(circle at 40% 30%, rgba(255, 255, 255, 0.02) 0%, transparent 95%),
        radial-gradient(circle at 60% 70%, rgba(255, 255, 255, 0.015) 0%, transparent 95%);
    animation: sectionFlow 20s ease-in-out infinite;
    z-index: 0;
}

.download-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
    position: relative;
    z-index: 1;
}

.download-card {
    padding: 40px 24px;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

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

.download-card:hover::before {
    left: 100%;
}

.download-card:hover {
    transform: translateY(-8px) scale(1.02);
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.2);
    box-shadow: 
        0 20px 50px rgba(0, 0, 0, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.2),
        inset 0 -1px 0 rgba(255, 255, 255, 0.1);
}

.download-icon {
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(25px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    font-size: 32px;
    color: #ffffff;
    box-shadow: 
        0 8px 25px rgba(0, 0, 0, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.2),
        inset 0 -1px 0 rgba(255, 255, 255, 0.05);
    transition: all 0.3s ease;
}

.download-card:hover .download-icon {
    transform: scale(1.1) rotate(5deg);
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(255, 255, 255, 0.25);
    box-shadow: 
        0 12px 35px rgba(0, 0, 0, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.3),
        inset 0 -1px 0 rgba(255, 255, 255, 0.1);
}

.download-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 12px;
    color: #ffffff;
}

.download-card p {
    color: var(--text-secondary);
    margin-bottom: 24px;
    font-size: 0.9rem;
    line-height: 1.4;
}

.download-card .btn-primary {
    width: 100%;
    justify-content: center;
    padding: 12px 20px;
    font-size: 14px;
    font-weight: 500;
}

.download-card .btn-primary:hover {
    transform: translateY(-2px) scale(1.05);
    box-shadow: 
        0 12px 35px rgba(0, 0, 0, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.3),
        inset 0 -1px 0 rgba(255, 255, 255, 0.1);
}

/* Тарифы */
.pricing {
    padding: 120px 0;
    position: relative;
    overflow: hidden;
}

.pricing::before {
    content: '';
    position: absolute;
    top: -100%;
    left: -100%;
    width: 300%;
    height: 300%;
    background: 
        radial-gradient(circle at 60% 20%, rgba(255, 255, 255, 0.018) 0%, transparent 95%),
        radial-gradient(circle at 20% 80%, rgba(255, 255, 255, 0.022) 0%, transparent 95%);
    animation: sectionFlow2 18s ease-in-out infinite;
    z-index: 0;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    position: relative;
    z-index: 1;
}

.pricing-card {
    padding: 40px;
    text-align: center;
    position: relative;
    transition: all 0.3s ease;
}

.pricing-card.featured {
    border: 2px solid rgba(255, 255, 255, 0.2);
    transform: scale(1.05);
    background: rgba(255, 255, 255, 0.05);
    box-shadow: 
        0 12px 40px rgba(0, 0, 0, 0.25),
        inset 0 1px 0 rgba(255, 255, 255, 0.15),
        inset 0 -1px 0 rgba(255, 255, 255, 0.05),
        0 0 0 1px rgba(255, 255, 255, 0.1);
}

.pricing-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #ffffff;
    padding: 8px 24px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
    box-shadow: 
        0 4px 15px rgba(0, 0, 0, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.2),
        inset 0 -1px 0 rgba(255, 255, 255, 0.05);
}

.pricing-header h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 20px;
}

.price {
    margin-bottom: 30px;
}

.currency {
    font-size: 1.2rem;
    color: var(--text-secondary);
}

.amount {
    font-size: 3rem;
    font-weight: 700;
    color: #ffffff;
}

.period {
    font-size: 1rem;
    color: var(--text-secondary);
}

.pricing-features {
    list-style: none;
    margin-bottom: 30px;
}

.pricing-features li {
    padding: 8px 0;
    display: flex;
    align-items: center;
    gap: 12px;
}

.pricing-features i {
    color: #ffffff;
}



/* Футер */
.footer {
    background: var(--bg-primary);
    padding: 80px 0 20px;
    border-top: 1px solid var(--border-color);
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 16px;
}

.footer-logo i {
    color: #ffffff;
}

.footer-section p {
    color: var(--text-secondary);
    margin-bottom: 20px;
}

.footer-section h4 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 20px;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 8px;
}

.footer-section ul li a {
    color: var(--text-secondary);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: #ffffff;
}

.social-links {
    display: flex;
    gap: 16px;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-secondary);
    transition: all 0.3s ease;
    box-shadow: 
        0 4px 15px rgba(0, 0, 0, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.1),
        inset 0 -1px 0 rgba(255, 255, 255, 0.03);
}

.social-links a:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.2);
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 
        0 8px 25px rgba(0, 0, 0, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.2),
        inset 0 -1px 0 rgba(255, 255, 255, 0.08);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 20px;
    border-top: 1px solid var(--border-color);
    color: var(--text-muted);
}

.footer-links {
    display: flex;
    gap: 24px;
}

.footer-links a {
    color: var(--text-muted);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #ffffff;
}

/* Серверный виджет контейнер */
.server-widget-container {
    position: fixed;
    top: 140px;
    left: 40px;
    z-index: 100;
    width: 240px;
    transition: all 0.3s ease;
    transform: translateY(0);
    opacity: 1;
}

.server-widget-container.hidden {
    transform: translateY(-100px);
    opacity: 0;
    pointer-events: none;
}

/* Серверный виджет */
.server-widget {
    width: 100%;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(30px);
    -webkit-backdrop-filter: blur(30px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 16px;
    padding: 16px;
    box-shadow: 
        0 6px 24px rgba(0, 0, 0, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.2),
        inset 0 -1px 0 rgba(255, 255, 255, 0.1);
    animation: serverWidgetFloat 8s ease-in-out infinite;
    transition: all 0.3s ease;
}

@keyframes serverWidgetFloat {
    0%, 100% { 
        transform: translateY(0px) rotate(0deg); 
        opacity: 0.9;
    }
    25% { 
        transform: translateY(-8px) rotate(1deg); 
        opacity: 1;
    }
    50% { 
        transform: translateY(-12px) rotate(0deg); 
        opacity: 0.95;
    }
    75% { 
        transform: translateY(-6px) rotate(-1deg); 
        opacity: 1;
    }
}

.server-widget:hover {
    transform: translateY(-5px) scale(1.02);
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(255, 255, 255, 0.2);
    box-shadow: 
        0 20px 50px rgba(0, 0, 0, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.25),
        inset 0 -1px 0 rgba(255, 255, 255, 0.15);
}

.server-widget-header {
    margin-bottom: 16px;
    text-align: center;
}

.server-widget-header h3 {
    font-size: 0.9rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 4px;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.3);
}

.server-widget-header p {
    font-size: 0.7rem;
    color: var(--text-secondary);
    line-height: 1.2;
    margin: 0;
}

.server-list {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.server-item {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 10px;
    padding: 10px;
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

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

.server-item:hover::before {
    left: 100%;
}

.server-item:hover {
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(255, 255, 255, 0.15);
    transform: translateY(-2px);
    box-shadow: 
        0 8px 25px rgba(0, 0, 0, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.15),
        inset 0 -1px 0 rgba(255, 255, 255, 0.05);
}

.server-item.active {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.2);
    box-shadow: 
        0 8px 25px rgba(0, 0, 0, 0.25),
        inset 0 1px 0 rgba(255, 255, 255, 0.2),
        inset 0 -1px 0 rgba(255, 255, 255, 0.1);
}

.server-item.active::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.6), transparent);
    animation: activeGlow 2s ease-in-out infinite;
}

@keyframes activeGlow {
    0%, 100% { opacity: 0.5; }
    50% { opacity: 1; }
}

.server-flag {
    font-size: 16px;
    margin-bottom: 4px;
    text-align: center;
    animation: flagWave 3s ease-in-out infinite;
}

@keyframes flagWave {
    0%, 100% { transform: rotate(0deg); }
    25% { transform: rotate(2deg); }
    75% { transform: rotate(-2deg); }
}

.server-info {
    text-align: center;
    margin-bottom: 6px;
}

.server-country {
    font-size: 0.8rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 2px;
}

.server-cities {
    font-size: 0.65rem;
    color: var(--text-secondary);
    line-height: 1.1;
}

.server-metrics {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4px;
    margin-bottom: 4px;
    grid-template-rows: auto auto;
}

.metric {
    text-align: center;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 5px;
    padding: 3px 4px;
    transition: all 0.3s ease;
}

.metric:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.12);
    transform: scale(1.05);
}

.metric-value {
    display: block;
    font-size: 0.7rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 1px;
}

.metric-label {
    font-size: 0.55rem;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 0.2px;
}

.server-status {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
    font-size: 0.6rem;
    font-weight: 500;
    padding: 2px 4px;
    border-radius: 4px;
    margin-top: 2px;
    grid-column: 1 / -1;
}

.server-status.online {
    background: rgba(0, 255, 136, 0.1);
    color: #00ff88;
    border: 1px solid rgba(0, 255, 136, 0.2);
}

.server-status .status-dot {
    width: 6px;
    height: 6px;
    background: #00ff88;
    border-radius: 50%;
    animation: statusBlink 1.5s ease-in-out infinite;
}

@keyframes statusBlink {
    0%, 100% { 
        opacity: 1;
        transform: scale(1);
    }
    50% { 
        opacity: 0.3;
        transform: scale(0.8);
    }
}

/* Адаптивность для серверного виджета */
@media (max-width: 1024px) {
    .server-widget-container {
        position: relative;
        top: auto;
        left: auto;
        width: 100%;
        max-width: 260px;
        margin: 20px auto 0;
    }
}

/* Скрытие серверного виджета на мобильных устройствах */
@media (max-width: 768px) {
    .server-widget-container {
        display: none !important;
    }
}

@media (max-width: 768px) {
    .server-widget-container {
        position: relative;
        top: auto;
        left: auto;
        width: 100%;
        max-width: 100%;
        margin: 20px 0;
    }
    
    .server-widget {
        width: 100%;
        max-width: 100%;
        padding: 14px;
    }
    
    .server-widget-header h3 {
        font-size: 0.9rem;
    }
    
    .server-widget-header p {
        font-size: 0.7rem;
    }
    
    .server-item {
        padding: 10px;
    }
    
    .server-flag {
        font-size: 16px;
    }
    
    .server-country {
        font-size: 0.8rem;
    }
    
    .server-cities {
        font-size: 0.65rem;
    }
    
    .metric {
        padding: 3px 5px;
    }
    
    .metric-value {
        font-size: 0.7rem;
    }
    
    .metric-label {
        font-size: 0.55rem;
    }
}

@media (max-width: 480px) {
    .server-widget-container {
        position: relative;
        top: auto;
        left: auto;
        width: 100%;
        margin: 16px 0;
    }
    
    .server-widget {
        padding: 12px;
    }
    
    .server-widget-header h3 {
        font-size: 0.85rem;
    }
    
    .server-widget-header p {
        font-size: 0.65rem;
    }
    
    .server-item {
        padding: 8px;
    }
    
    .server-flag {
        font-size: 14px;
    }
    
    .server-country {
        font-size: 0.75rem;
    }
    
    .server-cities {
        font-size: 0.6rem;
    }
    
    .metric {
        padding: 2px 4px;
    }
    
    .metric-value {
        font-size: 0.65rem;
    }
    
    .metric-label {
        font-size: 0.5rem;
    }
    
    .server-status {
        font-size: 0.65rem;
        padding: 2px 4px;
    }
}

/* Уведомление о скидке */
.discount-notification {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.8);
    z-index: 10000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    pointer-events: none;
}

.discount-notification.show {
    opacity: 1;
    visibility: visible;
    transform: translate(-50%, -50%) scale(1);
    pointer-events: all;
}

.discount-content {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(30px);
    -webkit-backdrop-filter: blur(30px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 24px;
    padding: 32px;
    max-width: 400px;
    width: 90vw;
    box-shadow: 
        0 20px 60px rgba(0, 0, 0, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.2),
        inset 0 -1px 0 rgba(255, 255, 255, 0.1);
    position: relative;
    overflow: hidden;
    animation: discountFloat 6s ease-in-out infinite;
}

@keyframes discountFloat {
    0%, 100% { 
        transform: translateY(0px) rotate(0deg); 
    }
    25% { 
        transform: translateY(-8px) rotate(1deg); 
    }
    50% { 
        transform: translateY(-12px) rotate(0deg); 
    }
    75% { 
        transform: translateY(-6px) rotate(-1deg); 
    }
}

.discount-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
}

.discount-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 24px;
}

.discount-icon {
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(25px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: #ffffff;
    animation: iconPulse 2s ease-in-out infinite;
    box-shadow: 
        0 8px 25px rgba(0, 0, 0, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.2),
        inset 0 -1px 0 rgba(255, 255, 255, 0.05);
}

@keyframes iconPulse {
    0% { 
        transform: scale(1); 
        box-shadow: 0 0 20px rgba(255, 255, 255, 0.4);
    }
    50% { 
        transform: scale(1.05); 
        box-shadow: 0 0 35px rgba(255, 255, 255, 0.7);
    }
    100% { 
        transform: scale(1); 
        box-shadow: 0 0 20px rgba(255, 255, 255, 0.4);
    }
}

.discount-close {
    width: 32px;
    height: 32px;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-secondary);
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 14px;
}

.discount-close:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.2);
    color: #ffffff;
    transform: scale(1.1);
}

.discount-body h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 12px;
    text-align: center;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.3);
}

.discount-body p {
    color: var(--text-secondary);
    text-align: center;
    margin-bottom: 24px;
    font-size: 1rem;
    line-height: 1.5;
}

.discount-code {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 20px;
    margin-bottom: 24px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.discount-code::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    animation: shimmer 3s ease-in-out infinite;
}

.code-label {
    display: block;
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin-bottom: 8px;
}

.code-value-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-top: 8px;
}

.code-value {
    font-size: 1.5rem;
    font-weight: 700;
    color: #ffffff;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.3);
    letter-spacing: 2px;
    font-family: 'Courier New', monospace;
    user-select: all;
    cursor: pointer;
    transition: all 0.3s ease;
}

.code-value:hover {
    transform: scale(1.05);
    text-shadow: 0 0 15px rgba(255, 255, 255, 0.5);
}

.copy-btn {
    width: 36px;
    height: 36px;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-secondary);
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 14px;
    position: relative;
    overflow: hidden;
}

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

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

.copy-btn:hover {
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(255, 255, 255, 0.2);
    color: #ffffff;
    transform: scale(1.1);
    box-shadow: 
        0 4px 15px rgba(0, 0, 0, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.2),
        inset 0 -1px 0 rgba(255, 255, 255, 0.05);
}

.copy-btn.copied {
    background: rgba(0, 255, 136, 0.1);
    border-color: rgba(0, 255, 136, 0.3);
    color: #00ff88;
    transform: scale(1.1);
}

.copy-btn.copied i {
    animation: checkmark 0.6s ease-in-out;
}

@keyframes checkmark {
    0% { transform: scale(1) rotate(0deg); }
    50% { transform: scale(1.2) rotate(10deg); }
    100% { transform: scale(1) rotate(0deg); }
}

.discount-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    padding: 14px 24px;
    background: rgba(255, 255, 255, 0.08);
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 12px;
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    transition: all 0.3s ease;
    backdrop-filter: blur(25px);
    box-shadow: 
        0 4px 20px rgba(0, 0, 0, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.2),
        inset 0 -1px 0 rgba(255, 255, 255, 0.05);
    position: relative;
    overflow: hidden;
}

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

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

.discount-btn:hover {
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
    box-shadow: 
        0 8px 30px rgba(0, 0, 0, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.25),
        inset 0 -1px 0 rgba(255, 255, 255, 0.08);
}

.discount-btn i {
    font-size: 16px;
}

/* Адаптивность для уведомления */
@media (max-width: 768px) {
    .discount-content {
        padding: 24px;
        max-width: 350px;
        width: 90vw;
    }
    
    .discount-icon {
        width: 50px;
        height: 50px;
        font-size: 20px;
    }
    
    .discount-body h3 {
        font-size: 1.3rem;
    }
    
    .discount-body p {
        font-size: 0.9rem;
    }
    
    .discount-code {
        padding: 16px;
    }
    
    .code-value {
        font-size: 1.3rem;
    }
    
    .copy-btn {
        width: 32px;
        height: 32px;
        font-size: 12px;
    }
    
    .discount-btn {
        padding: 12px 20px;
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .discount-content {
        padding: 20px;
        max-width: 320px;
        width: 95vw;
    }
    
    .discount-icon {
        width: 45px;
        height: 45px;
        font-size: 18px;
    }
    
    .discount-body h3 {
        font-size: 1.2rem;
    }
    
    .discount-body p {
        font-size: 0.85rem;
    }
    
    .discount-code {
        padding: 14px;
    }
    
    .code-value {
        font-size: 1.2rem;
    }
    
    .copy-btn {
        width: 30px;
        height: 30px;
        font-size: 11px;
    }
    
    .discount-btn {
        padding: 10px 16px;
        font-size: 0.85rem;
    }
}

/* Адаптивность */
@media (max-width: 1024px) {
    .hero-container {
        gap: 60px;
    }
    
    .hero-title {
        font-size: 3rem;
    }
    
    .phone {
        width: 300px;
        height: 600px;
    }
    
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }
    
    .pricing-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 15px;
    }
}

@media (max-width: 900px) {
    .hero-container {
        gap: 50px;
    }
    
    .hero-title {
        font-size: 2.75rem;
    }
    
    .phone {
        width: 280px;
        height: 560px;
        margin-left: 320px;
    }
    
    .pricing-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
}

@media (max-width: 768px) {
    .navbar {
        top: 16px;
        left: 16px;
        right: 16px;
        border-radius: 16px;
        background: rgba(255, 255, 255, 0.02);
        backdrop-filter: blur(35px);
        border: 1px solid rgba(255, 255, 255, 0.06);
    }
    
    .nav-container {
        height: 56px;
        padding: 0 16px;
        justify-content: center;
    }
    
    .nav-logo {
        font-size: 20px;
        gap: 8px;
    }
    
    .nav-logo i {
        font-size: 24px;
    }
    
    .nav-menu {
        display: none !important;
    }
    
    .nav-buttons {
        display: none !important;
    }
    
    .hero {
        padding-top: 100px;
    }
    
    .hero-container {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
        padding: 0 16px;
        margin-left: 0;
    }
    
    .hero-title {
        font-size: 2.5rem;
        line-height: 1.1;
    }
    
    .hero-description-container {
        padding: 24px;
        margin-bottom: 32px;
        max-width: 100%;
    }
    
    .description-title {
        font-size: 1.2rem;
    }
    
    .hero-description {
        font-size: 1rem;
        margin-bottom: 16px;
    }
    
    .hero-description-tech {
        font-size: 0.95rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
        gap: 16px;
        margin-bottom: 40px;
        width: 100%;
    }
    
    .hero-buttons .btn-primary,
    .hero-buttons .btn-secondary {
        width: 100%;
        max-width: 260px;
        justify-content: center;
        margin: 0 auto;
        padding: 12px 24px;
        font-size: 15px;
    }
    
    .hero-stats {
        justify-content: center;
        gap: 24px;
    }
    
    .stat-number {
        font-size: 1.5rem;
    }
    
    .phone {
        width: 260px;
        height: 520px;
        padding: 16px;
        margin-left: 0;
    }
    
    .phone-screen {
        padding: 24px;
    }
    
    .vps-icon {
        width: 60px;
        height: 60px;
        font-size: 24px;
    }
    
    .vps-text {
        font-size: 20px;
    }
    
    .vps-animation {
        width: 100px;
        height: 100px;
    }
    
    .features {
        padding: 80px 0;
    }
    
    .section-header {
        margin-bottom: 60px;
        padding: 0 16px;
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
    
    .section-header p {
        font-size: 1rem;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 0 16px;
        width: 100%;
    }
    
    .feature-card {
        padding: 24px;
        width: 100%;
        box-sizing: border-box;
    }
    
    .feature-icon {
        width: 60px;
        height: 60px;
        font-size: 24px;
        margin-bottom: 16px;
    }
    
    .feature-card h3 {
        font-size: 1.25rem;
        margin-bottom: 12px;
    }
    
    .pricing {
        padding: 80px 0;
    }
    
    .pricing-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
        padding: 0 16px;
        width: 100%;
    }
    
    .download {
        padding: 80px 0;
    }
    
    .download-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
        padding: 0 16px;
        width: 100%;
    }
    
    .download-card {
        padding: 24px 16px;
    }
    
    .download-icon {
        width: 60px;
        height: 60px;
        font-size: 24px;
        margin-bottom: 16px;
    }
    
    .download-card h3 {
        font-size: 1.25rem;
        margin-bottom: 8px;
    }
    
    .download-card p {
        font-size: 0.85rem;
        margin-bottom: 16px;
    }
    
    .download-card .btn-primary {
        padding: 10px 16px;
        font-size: 13px;
    }
    
    .pricing-card {
        padding: 24px;
        width: 100%;
        box-sizing: border-box;
    }
    
    .pricing-card.featured {
        transform: none;
    }
    
    .price .amount {
        font-size: 2.5rem;
    }
    
    .pricing-features {
        margin-bottom: 24px;
    }
    
    .pricing-features li {
        padding: 6px 0;
        font-size: 14px;
    }
    
    .footer {
        padding: 60px 0 20px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 32px;
        text-align: center;
        padding: 0 16px;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 16px;
        padding: 0 16px;
    }
    
    .footer-links {
        flex-direction: column;
        gap: 12px;
    }
}

@media (max-width: 480px) {
    .navbar {
        top: 12px;
        left: 12px;
        right: 12px;
        border-radius: 12px;
        background: rgba(255, 255, 255, 0.02);
        backdrop-filter: blur(30px);
        border: 1px solid rgba(255, 255, 255, 0.06);
    }
    
    .nav-container {
        height: 48px;
        padding: 0 12px;
        justify-content: center;
    }
    
    .nav-logo {
        font-size: 18px;
        gap: 6px;
    }
    
    .nav-logo i {
        font-size: 20px;
    }
    
    .nav-menu {
        display: none !important;
    }
    
    .nav-buttons {
        display: none !important;
    }
    
    .hero {
        padding-top: 80px;
    }
    
    .hero-container {
        padding: 0 12px;
        gap: 32px;
    }
    
    .hero-title {
        font-size: 2rem;
        line-height: 1.2;
    }
    
    .hero-description-container {
        padding: 20px;
        margin-bottom: 28px;
        border-radius: 20px;
    }
    
    .description-title {
        font-size: 1.1rem;
    }
    
    .hero-description {
        font-size: 0.95rem;
        margin-bottom: 14px;
    }
    
    .hero-description-tech {
        font-size: 0.9rem;
    }
    
    .hero-buttons {
        margin-bottom: 32px;
    }
    
    .hero-buttons .btn-primary,
    .hero-buttons .btn-secondary {
        max-width: 240px;
        padding: 12px 20px;
        font-size: 15px;
    }
    
    .hero-stats {
        gap: 16px;
    }
    
    .stat-number {
        font-size: 1.25rem;
    }
    
    .stat-label {
        font-size: 0.8rem;
    }
    
    .phone {
        width: 220px;
        height: 440px;
        padding: 12px;
        margin-left: 0;
    }
    
    .phone-screen {
        padding: 20px;
    }
    
    .vps-icon {
        width: 50px;
        height: 50px;
        font-size: 20px;
    }
    
    .vps-text {
        font-size: 18px;
    }
    
    .vps-animation {
        width: 80px;
        height: 80px;
    }
    
    .wave-1 {
        width: 30px;
        height: 30px;
        top: 25px;
        left: 25px;
    }
    
    .wave-2 {
        width: 45px;
        height: 45px;
        top: 17.5px;
        left: 17.5px;
    }
    
    .wave-3 {
        width: 60px;
        height: 60px;
        top: 10px;
        left: 10px;
    }
    
    .features {
        padding: 60px 0;
    }
    
    .section-header {
        margin-bottom: 40px;
        padding: 0 12px;
    }
    
    .section-header h2 {
        font-size: 1.75rem;
        margin-bottom: 12px;
    }
    
    .section-header p {
        font-size: 0.9rem;
    }
    
    .features-grid {
        padding: 0 12px;
        gap: 16px;
    }
    
    .feature-card {
        padding: 20px;
    }
    
    .feature-icon {
        width: 50px;
        height: 50px;
        font-size: 20px;
        margin-bottom: 12px;
    }
    
    .feature-card h3 {
        font-size: 1.1rem;
        margin-bottom: 10px;
    }
    
    .feature-card p {
        font-size: 0.9rem;
    }
    
    .pricing {
        padding: 60px 0;
    }
    
    .pricing-grid {
        grid-template-columns: 1fr;
        padding: 0 12px;
        gap: 16px;
    }
    
    .download {
        padding: 60px 0;
    }
    
    .download-grid {
        grid-template-columns: 1fr;
        padding: 0 12px;
        gap: 16px;
    }
    
    .download-card {
        padding: 20px;
    }
    
    .download-icon {
        width: 50px;
        height: 50px;
        font-size: 20px;
        margin-bottom: 12px;
    }
    
    .download-card h3 {
        font-size: 1.1rem;
        margin-bottom: 6px;
    }
    
    .download-card p {
        font-size: 0.8rem;
        margin-bottom: 12px;
    }
    
    .download-card .btn-primary {
        padding: 8px 12px;
        font-size: 12px;
    }
    
    .pricing-card {
        padding: 20px;
    }
    
    .pricing-header h3 {
        font-size: 1.25rem;
    }
    
    .price .amount {
        font-size: 2rem;
    }
    
    .pricing-features {
        margin-bottom: 20px;
    }
    
    .pricing-features li {
        padding: 4px 0;
        font-size: 0.85rem;
    }
    
    .pricing-badge {
        font-size: 12px;
        padding: 6px 16px;
    }
    
    .footer {
        padding: 40px 0 16px;
    }
    
    .footer-content {
        gap: 24px;
        padding: 0 12px;
    }
    
    .footer-section h4 {
        font-size: 1.1rem;
        margin-bottom: 16px;
    }
    
    .footer-section ul li {
        margin-bottom: 6px;
    }
    
    .footer-section ul li a {
        font-size: 0.9rem;
    }
    
    .footer-bottom {
        padding: 0 12px;
        gap: 12px;
    }
    
    .footer-bottom p {
        font-size: 0.85rem;
    }
    
    .footer-links {
        gap: 8px;
    }
    
    .footer-links a {
        font-size: 0.85rem;
    }
}
