:root {
    /* Акцентные голубые цвета */
    --accent-blue: #0ea5e9;
    --accent-blue-dark: #0284c7;
    --accent-blue-light: #38bdf8;
    
    /* Темная палитра */
    --bg-dark: #1a1a1a;
    --bg-darker: #0f0f0f;
    --bg-card: #252525;
    --bg-card-hover: #2a2a2a;
    
    /* Цвета текста */
    --text-primary: #ffffff;
    --text-secondary: #e5e5e5;
    --text-muted: #a3a3a3;
    
    /* Границы */
    --border-color: #333333;
    --border-accent: rgba(14, 165, 233, 0.3);
    
    /* Тени */
    --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 1px 3px rgba(0, 0, 0, 0.15);
    --shadow-lg: 0 2px 4px rgba(0, 0, 0, 0.15);
    --shadow-xl: 0 4px 6px rgba(0, 0, 0, 0.2);
    
    /* Градиенты из голубого */
    --gradient-accent: linear-gradient(135deg, #0ea5e9 0%, #0284c7 100%);
    
    /* Glassmorphism эффекты */
    --glass-bg: rgba(37, 37, 37, 0.25);
    --glass-bg-hover: rgba(37, 37, 37, 0.4);
    --glass-bg-light: rgba(255, 255, 255, 0.05);
    --glass-bg-button: rgba(14, 165, 233, 0.2);
    --glass-bg-button-hover: rgba(14, 165, 233, 0.35);
    --glass-border: rgba(255, 255, 255, 0.15);
    --glass-border-accent: rgba(14, 165, 233, 0.3);
    --glass-border-hover: rgba(14, 165, 233, 0.5);
    --glass-backdrop: blur(20px);
    --glass-backdrop-strong: blur(30px);
    --glass-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
    --glass-shadow-hover: 0 6px 24px rgba(14, 165, 233, 0.2);
    
    /* Neomorphism эффекты */
    --neomorphic-shadow-light: 8px 8px 16px rgba(0, 0, 0, 0.5), -8px -8px 16px rgba(255, 255, 255, 0.03);
    --neomorphic-shadow-inset: inset 4px 4px 8px rgba(0, 0, 0, 0.5), inset -4px -4px 8px rgba(255, 255, 255, 0.03);
    
    /* Для обратной совместимости */
    --primary-color: var(--accent-blue);
    --primary-dark: var(--accent-blue-dark);
    --secondary-color: var(--accent-blue);
    --text-dark: var(--text-primary);
    --text-light: var(--text-muted);
    --bg-light: var(--bg-card);
    --bg-white: var(--bg-card);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: var(--text-primary);
    background-color: transparent;
    overflow-x: hidden;
    padding-bottom: 70px;
    padding-top: 100px;
}

@media (max-width: 768px) {
    body {
        padding-top: 80px;
    }
}

@media (min-width: 769px) {
    body {
        padding-bottom: 0;
    }
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
}

/* Навигация */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 1.5rem 1.5rem 0;
    pointer-events: none;
    transition: padding 0.3s ease;
}

@media (max-width: 768px) {
    .navbar {
        padding: 1rem 1rem 0;
    }
}

.navbar.scrolled {
    padding: 0.5rem 1.5rem 0;
}

@media (max-width: 768px) {
    .navbar.scrolled {
        padding: 0.5rem 1rem 0;
    }
}

.navbar-wrapper {
    background: var(--glass-bg);
    backdrop-filter: var(--glass-backdrop-strong);
    -webkit-backdrop-filter: var(--glass-backdrop-strong);
    border: 1px solid var(--glass-border);
    border-radius: 50px;
    box-shadow: var(--glass-shadow), 
                0 0 0 1px rgba(255, 255, 255, 0.05) inset;
    pointer-events: all;
    transition: all 0.3s ease;
}

@media (max-width: 768px) {
    .navbar-wrapper {
        border-radius: 30px;
    }
}

.navbar.scrolled .navbar-wrapper {
    border-radius: 35px;
    background: var(--glass-bg-hover);
    border: 1px solid var(--glass-border-accent);
    box-shadow: var(--glass-shadow-hover),
                0 0 0 1px rgba(14, 165, 233, 0.2) inset;
}

@media (max-width: 768px) {
    .navbar.scrolled .navbar-wrapper {
        border-radius: 25px;
    }
}

.nav-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 1.5rem;
    transition: padding 0.3s ease;
}

.navbar.scrolled .nav-content {
    padding: 0.5rem 1.5rem;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-family: 'Inter', sans-serif;
    font-size: 1.5rem;
    font-weight: 600;
    text-decoration: none;
    position: relative;
    transition: all 0.3s ease;
}

.logo-icon {
    font-size: 1.75rem;
    filter: drop-shadow(0 0 8px rgba(14, 165, 233, 0.6));
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
        filter: drop-shadow(0 0 8px rgba(14, 165, 233, 0.6));
    }
    50% {
        transform: scale(1.1);
        filter: drop-shadow(0 0 12px rgba(14, 165, 233, 0.8));
    }
}

.logo-text {
    font-weight: 600;
    letter-spacing: 0.03em;
    background: linear-gradient(90deg, 
        #ffffff 0%, 
        #ffffff 15%, 
        #0ea5e9 25%, 
        #0ea5e9 75%, 
        #ffffff 85%, 
        #ffffff 100%);
    background-size: 300% 100%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradientShift 10s ease-in-out infinite;
    filter: drop-shadow(0 0 20px rgba(14, 165, 233, 0.6)) drop-shadow(0 0 40px rgba(14, 165, 233, 0.4));
}

@keyframes gradientShift {
    0% {
        background-position: 300% 0;
    }
    100% {
        background-position: -100% 0;
    }
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.desktop-nav {
    display: flex;
}

@media (max-width: 768px) {
    .desktop-nav {
        display: none;
    }
}

.nav-link {
    text-decoration: none;
    color: var(--text-secondary);
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
    padding: 0.5rem 0;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.nav-link::before {
    display: none;
}

.nav-link::after {
    content: '';
    position: absolute;
    left: -12px;
    top: 50%;
    transform: translateY(-50%);
    width: 6px;
    height: 6px;
    background: var(--accent-blue);
    border-radius: 50%;
    opacity: 0;
    transition: all 0.3s ease;
    box-shadow: 0 0 10px rgba(14, 165, 233, 0.8);
}

.nav-link:hover {
    color: var(--accent-blue);
    transform: translateY(-2px);
}

.nav-link.active {
    color: var(--accent-blue);
    transform: translateY(-2px);
}

.nav-link.active::after {
    opacity: 1;
    left: -16px;
    animation: glow 2s ease-in-out infinite;
}

@keyframes glow {
    0%, 100% {
        box-shadow: 0 0 10px rgba(14, 165, 233, 0.8);
        transform: translateY(-50%) scale(1);
    }
    50% {
        box-shadow: 0 0 20px rgba(14, 165, 233, 1);
        transform: translateY(-50%) scale(1.2);
    }
}

.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.menu-toggle span {
    width: 25px;
    height: 3px;
    background: var(--text-primary);
    border-radius: 3px;
    transition: all 0.3s ease;
}

@media (max-width: 768px) {
    .menu-toggle {
        display: flex;
        z-index: 10;
    }

    .nav-menu {
        position: fixed;
        top: calc(100% + 1rem);
        left: 1rem;
        right: 1rem;
        transform: translateY(-100%) scale(0.95);
        opacity: 0;
        visibility: hidden;
        flex-direction: column;
        background: var(--glass-bg-hover);
        backdrop-filter: var(--glass-backdrop-strong);
        -webkit-backdrop-filter: var(--glass-backdrop-strong);
        border: 1px solid var(--glass-border-accent);
        border-radius: 25px;
        width: calc(100% - 2rem);
        padding: 1.5rem;
        box-shadow: var(--glass-shadow);
        transition: all 0.3s ease;
        gap: 0.5rem;
        pointer-events: none;
    }

    .nav-menu.active {
        transform: translateY(0) scale(1);
        opacity: 1;
        visibility: visible;
        pointer-events: all;
    }
    
    .nav-menu li {
        width: 100%;
    }
    
    .nav-menu .nav-link {
        width: 100%;
        padding: 1rem;
        border-radius: 12px;
        transition: all 0.3s ease;
    }
    
    .nav-menu .nav-link:hover {
        background: rgba(14, 165, 233, 0.1);
        transform: translateX(5px);
    }
    
    .nav-menu .nav-link::after {
        display: none;
    }
}

/* Главный экран */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    padding: 60px 0 80px;
    background: transparent;
    overflow: hidden;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 1400px;
    display: flex;
    gap: 4rem;
    align-items: flex-start;
    justify-content: space-between;
}

.hero-main {
    flex: 1;
    max-width: 800px;
}

/* Главный акцент "Стой!" */
.hero-stop {
    font-family: 'Orbitron', 'Space Grotesk', sans-serif;
    font-size: 6rem;
    font-weight: 900;
    line-height: 1;
    margin-bottom: 1rem;
    color: var(--accent-blue);
    text-align: left;
    position: relative;
    display: inline-block;
    animation: heroStopAppear 0.8s ease-out, heroStopPulse 2s ease-in-out 1s infinite;
    text-shadow: 0 0 20px rgba(14, 165, 233, 0.5),
                 0 0 40px rgba(14, 165, 233, 0.3),
                 0 0 60px rgba(14, 165, 233, 0.2);
}

.hero-stop::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 100%;
    height: 6px;
    background: var(--accent-blue);
    box-shadow: 0 0 15px rgba(14, 165, 233, 0.8),
                0 0 30px rgba(14, 165, 233, 0.5),
                0 0 45px rgba(14, 165, 233, 0.3);
    animation: underlineGlow 2s ease-in-out infinite;
}

@keyframes heroStopAppear {
    0% {
        opacity: 0;
        transform: translateX(-50px);
    }
    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes heroStopPulse {
    0%, 100% {
        transform: scale(1);
        text-shadow: 0 0 20px rgba(14, 165, 233, 0.5),
                     0 0 40px rgba(14, 165, 233, 0.3),
                     0 0 60px rgba(14, 165, 233, 0.2);
    }
    50% {
        transform: scale(1.02);
        text-shadow: 0 0 30px rgba(14, 165, 233, 0.7),
                     0 0 50px rgba(14, 165, 233, 0.5),
                     0 0 70px rgba(14, 165, 233, 0.3);
    }
}

@keyframes underlineGlow {
    0%, 100% {
        box-shadow: 0 0 15px rgba(14, 165, 233, 0.8),
                    0 0 30px rgba(14, 165, 233, 0.5),
                    0 0 45px rgba(14, 165, 233, 0.3);
        opacity: 1;
    }
    50% {
        box-shadow: 0 0 25px rgba(14, 165, 233, 1),
                    0 0 40px rgba(14, 165, 233, 0.7),
                    0 0 55px rgba(14, 165, 233, 0.5);
        opacity: 1;
    }
}

.hero-title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 2.5rem;
    color: var(--text-primary);
}

.highlight {
    color: var(--accent-blue);
}

/* Голубые акценты для ключевых слов */
.text-highlight {
    color: var(--accent-blue);
    font-weight: 600;
    position: relative;
    text-shadow: 0 0 10px rgba(14, 165, 233, 0.4);
    transition: all 0.3s ease;
}

.text-highlight:hover {
    text-shadow: 0 0 15px rgba(14, 165, 233, 0.6),
                 0 0 25px rgba(14, 165, 233, 0.4);
}

/* Стили для чисел каналов */
.channel-5 {
    color: #f5f5f5;
    font-weight: 600;
    font-size: 1.25rem;
    display: inline-block;
}

.channel-10 {
    color: #f97316;
    font-weight: 700;
    font-size: 1.5rem;
    display: inline-block;
    text-shadow: 0 0 10px rgba(249, 115, 22, 0.4);
}

.channel-20 {
    color: #dc2626;
    font-weight: 700;
    font-size: 1.75rem;
    display: inline-block;
    text-shadow: 0 0 10px rgba(220, 38, 38, 0.4);
}

/* Стили для "40+" */
.hours-40 {
    color: var(--accent-blue);
    font-weight: 700;
    text-shadow: 0 0 10px rgba(14, 165, 233, 0.4);
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.hero-subtitle:last-of-type {
    margin-bottom: 3rem;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    margin-bottom: 4rem;
    flex-wrap: wrap;
}

.btn {
    padding: 0.875rem 2rem;
    border-radius: 12px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
    border: none;
    cursor: pointer;
    font-size: 1rem;
    backdrop-filter: var(--glass-backdrop);
    -webkit-backdrop-filter: var(--glass-backdrop);
}

.btn-primary {
    background: var(--glass-bg-button);
    color: white;
    border: 1px solid var(--glass-border-accent);
    box-shadow: var(--glass-shadow);
}

.btn-primary:hover {
    background: var(--glass-bg-button-hover);
    border-color: var(--glass-border-hover);
    box-shadow: var(--glass-shadow-hover);
    transform: translateY(-2px);
}

.btn-secondary {
    background: var(--glass-bg);
    color: var(--accent-blue);
    border: 1px solid var(--glass-border-accent);
    backdrop-filter: var(--glass-backdrop);
    -webkit-backdrop-filter: var(--glass-backdrop);
}

.btn-secondary:hover {
    background: var(--glass-bg-button);
    color: white;
    border-color: var(--glass-border-hover);
    box-shadow: var(--glass-shadow-hover);
}

.btn-block {
    width: 100%;
    text-align: center;
}

.hero-stats {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    flex-shrink: 0;
    min-width: 280px;
    margin-top: 0;
}

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

/* Liquid glass эффект для виджетов статистики */
.stat-glass {
    position: relative;
    background: var(--glass-bg);
    backdrop-filter: var(--glass-backdrop-strong);
    -webkit-backdrop-filter: var(--glass-backdrop-strong);
    border: 1px solid var(--glass-border-accent);
    border-radius: 20px;
    padding: 2rem 2.5rem;
    box-shadow: var(--glass-shadow),
                0 0 0 1px rgba(14, 165, 233, 0.1) inset;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    width: 100%;
    overflow: hidden;
}

.stat-glass:hover {
    background: var(--glass-bg-hover);
    border-color: var(--glass-border-hover);
    box-shadow: var(--glass-shadow-hover),
                0 0 0 1px rgba(14, 165, 233, 0.2) inset,
                0 0 20px rgba(14, 165, 233, 0.15);
    transform: translateY(-5px);
}

.stat-glass::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(14, 165, 233, 0.1), transparent);
    transition: left 0.5s ease;
    border-radius: 20px;
}

.stat-glass:hover::before {
    left: 100%;
}

.stat-number {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 3rem;
    font-weight: 700;
    color: var(--accent-blue);
    text-shadow: 0 0 15px rgba(14, 165, 233, 0.4);
    line-height: 1;
    margin-bottom: 0.5rem;
}

.stat-glass:hover .stat-number {
    text-shadow: 0 0 20px rgba(14, 165, 233, 0.6);
}

.stat-label {
    color: var(--text-secondary);
    font-size: 0.875rem;
    margin-top: 0.5rem;
    line-height: 1.4;
}

/* Секции */
section {
    padding: 80px 0;
}

.section-title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 3rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
    position: relative;
    display: inline-block;
    width: 100%;
    line-height: 1.2;
    
    /* Градиентный текст с голубым акцентом */
    background: linear-gradient(135deg, 
        #ffffff 0%, 
        #ffffff 30%, 
        #0ea5e9 50%, 
        #ffffff 70%, 
        #ffffff 100%);
    background-size: 200% 100%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradientShift 8s ease-in-out infinite;
    
    /* Эффект свечения */
    text-shadow: 0 0 30px rgba(14, 165, 233, 0.3),
                 0 0 60px rgba(14, 165, 233, 0.15);
    filter: drop-shadow(0 0 20px rgba(14, 165, 233, 0.2));
}

@keyframes gradientShift {
    0%, 100% {
        background-position: 0% 0;
    }
    50% {
        background-position: 100% 0;
    }
}

/* Декоративное подчеркивание для заголовков */
.section-title::after {
    content: '';
    position: absolute;
    bottom: -12px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 4px;
    background: linear-gradient(90deg, 
        transparent, 
        var(--accent-blue), 
        transparent);
    border-radius: 2px;
    box-shadow: 0 0 15px rgba(14, 165, 233, 0.6),
                0 0 30px rgba(14, 165, 233, 0.3);
    animation: underlineExpand 1s ease-out 0.5s forwards;
    transition: width 0.3s ease, box-shadow 0.3s ease;
}

@keyframes underlineExpand {
    0% {
        width: 0;
        opacity: 0;
    }
    100% {
        width: 80px;
        opacity: 1;
    }
}


.section-subtitle {
    text-align: center;
    color: var(--text-secondary);
    font-size: 1.25rem;
    margin-bottom: 3rem;
    line-height: 1.7;
    letter-spacing: 0.01em;
    font-weight: 400;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    opacity: 0.9;
    transition: all 0.3s ease;
}

.section-subtitle:hover {
    color: var(--text-primary);
    opacity: 1;
    transform: translateY(-2px);
}

/* Hover эффекты для заголовков секций */
.section-title:hover {
    filter: drop-shadow(0 0 30px rgba(14, 165, 233, 0.4));
}

.section-title:hover::after {
    width: 100px;
    box-shadow: 0 0 20px rgba(14, 165, 233, 0.8),
                0 0 40px rgba(14, 165, 233, 0.4);
    transition: all 0.3s ease;
}

@media (max-width: 1024px) {
    .hero-content {
        flex-direction: column;
        gap: 3rem;
    }
    
    .hero-stats {
        width: 100%;
        flex-direction: row;
        flex-wrap: wrap;
        min-width: auto;
    }
    
    .stat-glass {
        flex: 1 1 calc(33.333% - 1rem);
        min-width: 200px;
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1.125rem;
    }

    .hero-stats {
        flex-direction: column;
    }
    
    .stat-glass {
        width: 100%;
        padding: 1.5rem 2rem;
    }
    
    .stat-number {
        font-size: 2.5rem;
    }

    .section-title {
        font-size: 2rem;
    }
    
    
    .section-title::after {
        width: 60px;
    }
}

/* Плавная прокрутка */
html {
    scroll-behavior: smooth;
}

/* FAQ Section */
.faq {
    background: transparent;
    padding: 100px 0;
}

.faq-list {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.faq-item {
    background: var(--glass-bg);
    backdrop-filter: var(--glass-backdrop);
    -webkit-backdrop-filter: var(--glass-backdrop);
    border-radius: 12px;
    box-shadow: var(--glass-shadow);
    border: 1px solid var(--glass-border);
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    background: var(--glass-bg-hover);
    border-color: var(--glass-border-accent);
    box-shadow: var(--glass-shadow-hover);
}

.faq-item.active {
    background: var(--glass-bg-hover);
    border-color: var(--glass-border-accent);
    box-shadow: var(--glass-shadow-hover);
}

.faq-question {
    width: 100%;
    padding: 2rem;
    background: none;
    border: none;
    text-align: left;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-primary);
    transition: all 0.3s ease;
}

.faq-question:hover {
    color: var(--accent-blue);
}

.faq-item.active .faq-question {
    color: var(--accent-blue);
}

.faq-question span {
    flex: 1;
}

.faq-icon {
    width: 24px;
    height: 24px;
    color: var(--accent-blue);
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.faq-item.active .faq-icon {
    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 2rem 2rem;
    color: var(--text-secondary);
    line-height: 1.8;
    font-size: 1.125rem;
}

/* Footer */
.footer {
    background: var(--glass-bg);
    backdrop-filter: var(--glass-backdrop);
    -webkit-backdrop-filter: var(--glass-backdrop);
    color: var(--text-primary);
    padding: 2rem 0;
    border-top: 1px solid var(--glass-border);
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

/* Мобильная навигация внизу */
.mobile-nav {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--glass-bg);
    backdrop-filter: var(--glass-backdrop-strong);
    -webkit-backdrop-filter: var(--glass-backdrop-strong);
    border-top: 1px solid var(--glass-border);
    padding: 0.75rem 0;
    z-index: 999;
    box-shadow: 0 -2px 12px rgba(0, 0, 0, 0.15);
}

.mobile-nav-items {
    display: flex;
    justify-content: space-around;
    align-items: center;
    max-width: 600px;
    margin: 0 auto;
    padding: 0 1rem;
}

.mobile-nav-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.25rem;
    text-decoration: none;
    color: var(--text-secondary);
    transition: color 0.3s ease;
    font-size: 0.75rem;
}

.mobile-nav-item:hover,
.mobile-nav-item.active {
    color: var(--accent-blue);
}

.mobile-nav-icon {
    width: 24px;
    height: 24px;
    color: currentColor;
}

@media (max-width: 768px) {
    .mobile-nav {
        display: block;
    }
}

/* Dynamic Background */
.dynamic-background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    z-index: -1;
    overflow: hidden;
    background: var(--bg-dark);
}

.stars-layer {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    transition: opacity 0.3s ease, filter 0.3s ease; /* Плавные переходы для звезд */
    pointer-events: none;
}

.gradient-layer {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.gradient-layer-1 {
    transition: none; /* Градиенты интерполируются в JS */
    z-index: 1;
}

.gradient-layer-2 {
    transition: none; /* Градиенты интерполируются в JS */
    z-index: 2;
}

.star {
    position: absolute;
    background: radial-gradient(circle, currentColor 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
    animation: starFloat var(--duration, 30s) linear infinite, 
               starTwinkle var(--twinkle-duration, 4s) ease-in-out infinite;
    animation-delay: var(--delay, 0s), var(--twinkle-delay, 0s);
}

/* Размеры звезд */
.star.tiny {
    width: 1px;
    height: 1px;
}

.star.small {
    width: 2px;
    height: 2px;
}

.star.medium {
    width: 3px;
    height: 3px;
}

.star.large {
    width: 4px;
    height: 4px;
}

/* Цвета звезд */
.star.blue {
    color: rgba(14, 165, 233, 0.8);
}

.star.blue-light {
    color: rgba(56, 189, 248, 0.6);
}

.star.blue-dark {
    color: rgba(2, 132, 199, 0.9);
}

.star.white {
    color: rgba(255, 255, 255, 0.7);
}

/* Анимации звезд */
@keyframes starFloat {
    0% {
        transform: translate(0, 0) rotate(0deg);
    }
    25% {
        transform: translate(var(--x-move, 20px), var(--y-move, 30px)) rotate(90deg);
    }
    50% {
        transform: translate(var(--x-move-2, -15px), var(--y-move-2, 60px)) rotate(180deg);
    }
    75% {
        transform: translate(var(--x-move-3, 25px), var(--y-move-3, 40px)) rotate(270deg);
    }
    100% {
        transform: translate(0, 0) rotate(360deg);
    }
}

@keyframes starTwinkle {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.3;
    }
}

/* Features Section */
.features {
    background: transparent;
    padding: 100px 0;
    position: relative;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
}

.feature-card {
    padding: 2.5rem;
    border-radius: 16px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

/* Glassmorphism эффект */
.glass-card {
    background: var(--glass-bg);
    backdrop-filter: var(--glass-backdrop);
    -webkit-backdrop-filter: var(--glass-backdrop);
    border: 1px solid var(--glass-border);
    box-shadow: var(--glass-shadow);
}

.glass-card:hover {
    background: var(--glass-bg-hover);
    border-color: var(--glass-border-accent);
    box-shadow: var(--glass-shadow-hover);
    transform: translateY(-8px);
}

.feature-icon {
    width: 64px;
    height: 64px;
    margin-bottom: 1.5rem;
    color: var(--accent-blue);
    transition: all 0.3s ease;
}

.glass-card:hover .feature-icon {
    transform: scale(1.1) rotate(5deg);
    color: var(--accent-blue-light);
}

.feature-card h3 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.feature-card p {
    color: var(--text-secondary);
    line-height: 1.8;
    font-size: 1rem;
}

/* 3D Tilt эффект */
.tilt-card {
    transform-style: preserve-3d;
    perspective: 1000px;
}

/* How It Works Section */
.how-it-works {
    background: transparent;
    padding: 100px 0;
    position: relative;
}

.workflow-diagram {
    max-width: 1000px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
    position: relative;
    z-index: 1;
}

.workflow-step {
    display: flex;
    align-items: center;
    gap: 2rem;
    width: 100%;
    position: relative;
    opacity: 0;
    transform: translateX(-50px);
    transition: all 0.6s ease;
}

.workflow-step.visible {
    opacity: 1;
    transform: translateX(0);
}

.step-circle {
    width: 75px;
    height: 75px;
    border-radius: 50%;
    background: var(--glass-bg);
    backdrop-filter: var(--glass-backdrop);
    -webkit-backdrop-filter: var(--glass-backdrop);
    border: 1.5px solid var(--glass-border-accent);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    flex-shrink: 0;
    box-shadow: 0 2px 12px rgba(14, 165, 233, 0.15), 0 0 0 1px rgba(14, 165, 233, 0.1) inset;
    transition: all 0.4s ease;
    z-index: 2;
}

.workflow-step:hover .step-circle {
    transform: scale(1.05);
    box-shadow: 0 4px 16px rgba(14, 165, 233, 0.25), 0 0 0 1px rgba(14, 165, 233, 0.2) inset;
    border-color: var(--glass-border-hover);
}

.step-icon {
    width: 36px;
    height: 36px;
    color: var(--accent-blue);
    opacity: 0.8;
    transition: all 0.3s ease;
}

.workflow-step:hover .step-icon {
    opacity: 1;
    transform: scale(1.1);
}

.step-content-box {
    flex: 1;
    background: var(--glass-bg);
    backdrop-filter: var(--glass-backdrop);
    -webkit-backdrop-filter: var(--glass-backdrop);
    padding: 1.5rem;
    border-radius: 12px;
    border: 1px solid var(--glass-border);
    box-shadow: var(--glass-shadow);
    transition: all 0.3s ease;
}

.workflow-step:hover .step-content-box {
    background: var(--glass-bg-hover);
    border-color: var(--glass-border-accent);
    box-shadow: var(--glass-shadow-hover);
}

.step-content-box h3 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.5rem;
    margin-bottom: 0.75rem;
    color: var(--text-primary);
}

.step-content-box p {
    color: var(--text-secondary);
    line-height: 1.8;
    font-size: 1rem;
}

.workflow-arrow {
    width: 40px;
    height: 40px;
    color: var(--accent-blue);
    opacity: 0.4;
    transform: rotate(90deg);
    margin: -0.5rem 0;
}

.workflow-arrow svg path {
    stroke-width: 5;
}

/* Pricing Section */
.pricing {
    background: transparent;
    padding: 100px 0;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
    max-width: 1100px;
    margin: 0 auto;
    margin-top: 4rem;
}

/* Glassmorphism для карточек тарифов */
.neomorphic-card {
    background: var(--glass-bg);
    backdrop-filter: var(--glass-backdrop);
    -webkit-backdrop-filter: var(--glass-backdrop);
    border-radius: 20px;
    padding: 2.5rem;
    box-shadow: var(--glass-shadow);
    border: 1px solid var(--glass-border);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
}

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

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

.neomorphic-card:hover {
    background: var(--glass-bg-hover);
    transform: translateY(-10px);
    box-shadow: var(--glass-shadow-hover);
    border-color: var(--glass-border-hover);
}

.pricing-card.featured-plan {
    background: var(--glass-bg-hover);
    border: 2px solid var(--glass-border-accent);
    box-shadow: 0 0 20px rgba(14, 165, 233, 0.2), var(--glass-shadow);
    transform: scale(1.05);
}

.pricing-card.featured-plan:hover {
    transform: scale(1.08) translateY(-10px);
    box-shadow: 0 0 30px rgba(14, 165, 233, 0.3), var(--glass-shadow-hover);
    border-color: var(--glass-border-hover);
}

.pricing-badge {
    position: absolute;
    top: -12px;
    right: 20px;
    background: var(--gradient-accent);
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 600;
    box-shadow: 0 2px 8px rgba(14, 165, 233, 0.25);
}

.pricing-header {
    text-align: center;
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid var(--glass-border);
}

.pricing-header h3 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.75rem;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.pricing-price {
    margin-bottom: 1rem;
}

.price-amount {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 3rem;
    font-weight: 700;
    color: var(--accent-blue);
}

.price-period {
    color: var(--text-muted);
    font-size: 1rem;
    margin-left: 0.5rem;
}

.pricing-description {
    color: var(--text-secondary);
    font-size: 0.875rem;
}

.pricing-features {
    list-style: none;
    margin-bottom: 2rem;
    min-height: 300px;
}

.pricing-features li {
    padding: 0.75rem 0;
    color: var(--text-secondary);
    position: relative;
    padding-left: 1.5rem;
    font-size: 1rem;
}

.pricing-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--accent-blue);
    font-weight: 700;
}

.pricing-card .btn-block {
    margin-top: 2rem;
    padding: 0.625rem 1.5rem;
    font-size: 0.875rem;
    opacity: 0.7;
    font-weight: 500;
}

.pricing-card .btn-block:hover {
    opacity: 1;
}

/* Final CTA Section */
.final-cta {
    background: transparent;
    padding: 120px 0;
    position: relative;
    overflow: hidden;
}

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

.cta-title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    letter-spacing: -0.02em;
    position: relative;
    
    /* Градиентный текст с красным акцентом */
    background: linear-gradient(135deg, 
        #ffffff 0%, 
        #ffffff 30%, 
        #0ea5e9 50%, 
        #ffffff 70%, 
        #ffffff 100%);
    background-size: 200% 100%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradientShift 8s ease-in-out infinite;
    
    /* Эффект свечения */
    filter: drop-shadow(0 0 20px rgba(14, 165, 233, 0.3));
}

.cta-subtitle {
    font-size: 1.25rem;
    color: var(--text-secondary);
    margin-bottom: 3rem;
    line-height: 1.8;
}

.cta-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 4rem;
}

.btn-large {
    padding: 1.125rem 2.5rem;
    font-size: 1.125rem;
}

.cta-stats {
    display: flex;
    justify-content: center;
    gap: 4rem;
    flex-wrap: wrap;
    padding-top: 3rem;
    border-top: 1px solid var(--glass-border);
}

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

.cta-stat strong {
    display: block;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 2rem;
    color: var(--accent-blue);
    margin-bottom: 0.5rem;
}

/* Footer updates */
.footer-info {
    flex: 1;
}

.footer-info p {
    color: var(--text-secondary);
    margin-top: 0.5rem;
    font-size: 0.875rem;
}

.footer-links {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.footer-link {
    color: var(--text-secondary);
    text-decoration: none;
    transition: color 0.3s ease;
    font-size: 0.875rem;
}

.footer-link:hover {
    color: var(--accent-blue);
}

.footer-bottom {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid var(--glass-border);
    text-align: center;
    color: var(--text-muted);
    font-size: 0.875rem;
}

/* Адаптивность для новых секций */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .workflow-step {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
    
    .workflow-diagram {
        gap: 1rem;
    }
    
    .step-circle {
        width: 60px;
        height: 60px;
    }
    
    .step-icon {
        width: 28px;
        height: 28px;
    }
    
    .step-content-box {
        padding: 1.25rem;
    }
    
    .step-content-box h3 {
        font-size: 1.25rem;
        margin-bottom: 0.5rem;
    }
    
    .step-content-box p {
        font-size: 0.9rem;
        line-height: 1.6;
    }
    
    .workflow-arrow {
        display: none;
    }
    
    .pricing-grid {
        grid-template-columns: 1fr;
    }
    
    .pricing-card.featured-plan {
        transform: scale(1);
    }
    
    .pricing-card.featured-plan:hover {
        transform: translateY(-10px);
    }
    
    .cta-title {
        font-size: 2rem;
    }
    
    .section-subtitle {
        font-size: 1.125rem;
    }
    
    .cta-buttons {
        flex-direction: column;
    }
    
    .btn-large {
        width: 100%;
    }
    
    .cta-stats {
        flex-direction: column;
        gap: 2rem;
    }
    
    .footer-links {
        flex-direction: column;
        gap: 1rem;
    }
    
    .workflow-step {
        opacity: 1;
        transform: none;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 1.75rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .stat-glass {
        padding: 1.25rem 1.5rem;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .stat-label {
        font-size: 0.8rem;
    }

    .cta-title {
        font-size: 1.75rem;
    }
    
    .pricing-card {
        padding: 2rem 1.5rem;
    }
    
    .workflow-diagram {
        gap: 0.75rem;
    }
    
    .workflow-step {
        gap: 0.75rem;
    }
    
    .step-circle {
        width: 55px;
        height: 55px;
    }
    
    .step-icon {
        width: 24px;
        height: 24px;
    }
    
    .step-content-box {
        padding: 1rem;
    }
    
    .step-content-box h3 {
        font-size: 1.125rem;
    }
    
    .step-content-box p {
        font-size: 0.875rem;
    }
    
    .workflow-arrow {
        display: none;
    }
}

/* Плавное появление элементов при скролле */
.fade-in-up {
    opacity: 0;
    transform: translateY(30px) scale(0.95);
    transition: opacity 0.8s cubic-bezier(0.175, 0.885, 0.32, 1.275), 
                transform 0.8s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.fade-in-up.visible {
    opacity: 1;
    transform: translateY(0) scale(1);
}

/* Улучшенная анимация для заголовков секций */
.section-title.fade-in-up {
    transform: translateY(40px) scale(0.9);
    opacity: 0;
}

.section-title.fade-in-up.visible {
    transform: translateY(0) scale(1);
    opacity: 1;
}

/* Дополнительный эффект пульсации для заголовков */
.section-title.visible {
    animation: titlePulse 3s ease-in-out infinite 2s;
}

@keyframes titlePulse {
    0%, 100% {
        filter: drop-shadow(0 0 20px rgba(14, 165, 233, 0.2));
    }
    50% {
        filter: drop-shadow(0 0 30px rgba(14, 165, 233, 0.4));
    }
}

/* Gradient border animation для акцентов */
@keyframes gradient-border {
    0% {
        border-color: rgba(14, 165, 233, 0.3);
    }
    50% {
        border-color: rgba(14, 165, 233, 0.6);
    }
    100% {
        border-color: rgba(14, 165, 233, 0.3);
    }
}

.neomorphic-card.featured-plan {
    animation: gradient-border 3s ease infinite;
}

/* Курс обмена */
.exchange-rate-info {
    text-align: center;
    margin-bottom: 2rem;
}

.exchange-rate-text {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    background: var(--glass-bg);
    backdrop-filter: var(--glass-backdrop);
    -webkit-backdrop-filter: var(--glass-backdrop);
    border: 1px solid var(--glass-border-accent);
    border-radius: 12px;
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--accent-blue);
    box-shadow: var(--glass-shadow);
}

/* Pricing credits */
.pricing-credits {
    margin-bottom: 1rem;
    text-align: center;
}

.credits-amount {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.125rem;
    font-weight: 500;
    color: var(--text-secondary);
    display: block;
}

.credits-period {
    color: var(--text-muted);
    font-size: 0.75rem;
    display: block;
    margin-top: 0.25rem;
}

.pricing-note {
    font-size: 0.875rem;
    color: var(--text-muted);
    margin-top: 1rem;
    text-align: center;
    line-height: 1.5;
}

/* Pricing Add-ons */
.pricing-addons {
    margin-top: 4rem;
    padding-top: 3rem;
    border-top: 1px solid var(--glass-border);
}

.pricing-addons-title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.5rem;
    margin-bottom: 2rem;
    text-align: center;
    color: var(--text-primary);
}

.pricing-addons-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    max-width: 600px;
    margin: 0 auto 1.5rem;
}

.pricing-addon-card {
    text-align: center;
    padding: 1.5rem 1.25rem;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.pricing-addon-card:hover {
    transform: translateY(-5px);
}

.pricing-addon-card .addon-icon {
    width: 48px;
    height: 48px;
    margin: 0 auto 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--glass-bg-button);
    border: 1px solid var(--glass-border-accent);
    border-radius: 12px;
    color: var(--accent-blue);
    transition: all 0.3s ease;
}

.pricing-addon-card:hover .addon-icon {
    background: var(--glass-bg-button-hover);
    border-color: var(--glass-border-hover);
    transform: scale(1.1);
    box-shadow: 0 0 15px rgba(14, 165, 233, 0.3);
}

.pricing-addon-card .addon-icon svg {
    width: 24px;
    height: 24px;
}

.pricing-addon-card .addon-name {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
}

.pricing-addon-card .addon-price {
    font-size: 0.875rem;
    color: var(--accent-blue);
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.pricing-addon-card .addon-duration {
    font-size: 0.75rem;
    color: var(--text-muted);
    margin-bottom: 1rem;
}

.pricing-addon-card .btn-block {
    margin-top: auto;
    padding: 0.5rem 1rem;
    font-size: 0.8125rem;
    opacity: 0.7;
    font-weight: 500;
}

.pricing-addon-card .btn-block:hover {
    opacity: 1;
}

.pricing-addon-note {
    font-size: 0.8125rem;
    color: var(--text-muted);
    text-align: center;
    line-height: 1.5;
    max-width: 600px;
    margin: 0 auto;
}

/* Action costs */
.action-costs {
    margin-top: 3rem;
    padding: 2.5rem;
    background: var(--glass-bg);
    backdrop-filter: var(--glass-backdrop);
    -webkit-backdrop-filter: var(--glass-backdrop);
    border: 1px solid var(--glass-border-accent);
    border-radius: 20px;
    box-shadow: var(--glass-shadow);
    position: relative;
    overflow: hidden;
}

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

.action-costs:hover::before {
    left: 100%;
}

.action-costs-title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.75rem;
    margin-bottom: 2rem;
    text-align: center;
    color: var(--text-primary);
    position: relative;
}

.action-costs-list {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.action-cost-item {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 1.5rem;
    background: var(--glass-bg-light);
    border: 1px solid var(--glass-border);
    border-radius: 12px;
    transition: all 0.3s ease;
    position: relative;
}

.action-cost-item:hover {
    background: var(--glass-bg-hover);
    border-color: var(--glass-border-accent);
    transform: translateX(5px);
    box-shadow: var(--glass-shadow);
}

.action-icon {
    width: 48px;
    height: 48px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--glass-bg-button);
    border: 1px solid var(--glass-border-accent);
    border-radius: 12px;
    color: var(--accent-blue);
    transition: all 0.3s ease;
}

.action-cost-item:hover .action-icon {
    background: var(--glass-bg-button-hover);
    border-color: var(--glass-border-hover);
    transform: scale(1.1);
    box-shadow: 0 0 15px rgba(14, 165, 233, 0.3);
}

.action-icon svg {
    width: 24px;
    height: 24px;
}

.action-content {
    flex: 1;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.action-name {
    color: var(--text-primary);
    font-size: 1.125rem;
    font-weight: 500;
}

.action-price {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.price-credits {
    color: var(--accent-blue);
    font-weight: 700;
    font-size: 1.125rem;
    font-family: 'Space Grotesk', sans-serif;
}

.price-rubles {
    color: var(--text-muted);
    font-size: 0.9375rem;
    font-weight: 400;
}

/* Balance Top-up Section */
.balance-topup {
    background: transparent;
    padding: 100px 0;
}

.topup-packages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto 2rem;
}

.topup-package-card {
    text-align: center;
    padding: 2rem 1.5rem;
    transition: all 0.3s ease;
}

.topup-package-card:hover {
    transform: translateY(-5px);
}

.package-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 1.5rem;
    color: var(--accent-blue);
}

.package-info {
    margin-bottom: 1.5rem;
}

.package-credits {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.package-price {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--accent-blue);
    margin-bottom: 0.75rem;
}

.package-badge {
    display: inline-block;
    padding: 0.375rem 0.75rem;
    border-radius: 12px;
    font-size: 0.75rem;
    font-weight: 600;
    margin-top: 0.5rem;
}

.package-badge.basic {
    background: var(--glass-bg-button);
    color: var(--text-primary);
    border: 1px solid var(--glass-border-accent);
}

.package-badge.discount {
    background: rgba(16, 185, 129, 0.2);
    color: #10b981;
    border: 1px solid rgba(16, 185, 129, 0.3);
}

.topup-notes {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.topup-note {
    font-size: 0.875rem;
    color: var(--text-muted);
    margin: 0.5rem 0;
    line-height: 1.6;
}

/* Add-ons Section */
.addons {
    background: transparent;
    padding: 100px 0;
}

.addons-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    max-width: 800px;
    margin: 0 auto 2rem;
}

.addon-card {
    text-align: center;
    padding: 2.5rem 2rem;
    transition: all 0.3s ease;
}

.addon-card:hover {
    transform: translateY(-5px);
}

.addon-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 1.5rem;
    color: var(--accent-blue);
}

.addon-name {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.addon-price {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--accent-blue);
    margin-bottom: 0.5rem;
}

.addon-duration {
    font-size: 0.875rem;
    color: var(--text-muted);
    margin-bottom: 1.5rem;
}

.addon-note {
    text-align: center;
    font-size: 0.875rem;
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Credits Info Section */
.credits-info {
    background: transparent;
    padding: 100px 0;
}

.credits-types-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.credit-type-card {
    text-align: center;
    padding: 2.5rem 2rem;
    transition: all 0.3s ease;
}

.credit-type-card:hover {
    transform: translateY(-5px);
}

.credit-type-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 1.5rem;
    color: var(--accent-blue);
}

.credit-type-name {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
}

.credit-type-desc {
    font-size: 0.875rem;
    color: var(--text-muted);
    margin-bottom: 1.5rem;
    font-style: italic;
}

.credit-type-feature {
    font-size: 0.9375rem;
    color: var(--text-secondary);
    margin: 0.75rem 0;
    line-height: 1.5;
}

/* Адаптивность для новых секций */
@media (max-width: 768px) {
    .exchange-rate-text {
        font-size: 1rem;
        padding: 0.5rem 1rem;
    }

    .credits-amount {
        font-size: 1rem;
    }

    .credits-period {
        font-size: 0.6875rem;
    }

    .action-costs {
        padding: 1.5rem;
    }

    .action-cost-item {
        flex-direction: row;
        gap: 1rem;
        padding: 1.25rem;
    }

    .action-icon {
        width: 40px;
        height: 40px;
    }

    .action-icon svg {
        width: 20px;
        height: 20px;
    }

    .action-content {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }

    .action-name {
        font-size: 1rem;
    }

    .price-credits {
        font-size: 1rem;
    }

    .price-rubles {
        font-size: 0.875rem;
    }

    .topup-packages-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .pricing-addons {
        margin-top: 3rem;
        padding-top: 2rem;
    }

    .pricing-addons-title {
        font-size: 1.25rem;
        margin-bottom: 1.5rem;
    }

    .pricing-addons-grid {
        grid-template-columns: 1fr;
        gap: 1.25rem;
    }

    .pricing-addon-card {
        padding: 1.25rem 1rem;
    }

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

    .credits-types-grid {
        grid-template-columns: 1fr;
    }

    .topup-package-card,
    .addon-card,
    .credit-type-card {
        padding: 2rem 1.5rem;
    }
}

