/* ===== GLOBAL STYLES & VARIABLES ===== */
:root {
    /* Цветовая палитра */
    --black-void: #000000;
    --black-deep: #0a0a0a;
    --black-dark: #111111;
    --black-card: #151515;
    --black-border: #222222;
    --black-light: #1a1a1a;
    
    --orange-primary: #ff7b00;
    --orange-secondary: #ff9500;
    --orange-dark: #ff5500;
    --orange-glow: rgba(255, 123, 0, 0.3);
    --orange-gradient: linear-gradient(135deg, #ff7b00, #ff5500);
    
    --gray-text: #f0f0f0;
    --gray-light: #cccccc;
    --gray-medium: #888888;
    --gray-dark: #444444;
    
    --success: #00ff88;
    --error: #ff5555;
    --warning: #ffaa00;
    --info: #00aaff;
    
    /* Эффекты */
    --glow-shadow: 0 0 20px var(--orange-glow);
    --card-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    --hover-shadow: 0 12px 40px rgba(255, 123, 0, 0.2);
    
    /* Анимации */
    --transition-fast: 0.2s ease;
    --transition-medium: 0.3s ease;
    --transition-slow: 0.5s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--black-void);
    color: var(--gray-text);
    line-height: 1.7;
    overflow-x: hidden;
    position: relative;
    min-height: 100vh;
}

/* Фоновые эффекты */
.bg-grid {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(rgba(255, 123, 0, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 123, 0, 0.03) 1px, transparent 1px);
    background-size: 50px 50px;
    z-index: -2;
    pointer-events: none;
}

.bg-glows {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    pointer-events: none;
}

.glow-1, .glow-2, .glow-3 {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    opacity: 0.1;
}

.glow-1 {
    width: 600px;
    height: 600px;
    background: var(--orange-primary);
    top: -300px;
    right: -300px;
    animation: float 20s infinite alternate;
}

.glow-2 {
    width: 400px;
    height: 400px;
    background: var(--orange-dark);
    bottom: -200px;
    left: -200px;
    animation: float 25s infinite alternate-reverse;
}

.glow-3 {
    width: 300px;
    height: 300px;
    background: var(--orange-secondary);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation: pulse 15s infinite;
}

@keyframes float {
    0% { transform: translateY(0) rotate(0deg); }
    100% { transform: translateY(100px) rotate(10deg); }
}

@keyframes pulse {
    0%, 100% { opacity: 0.05; transform: translate(-50%, -50%) scale(1); }
    50% { opacity: 0.15; transform: translate(-50%, -50%) scale(1.2); }
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ===== HEADER (ОСТАВЛЯЕМ КАК БЫЛО) ===== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--black-border);
    z-index: 1000;
    padding: 15px 0;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.5);
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.header-left {
    flex: 1;
}

.logo-link {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: var(--gray-text);
    transition: all var(--transition-medium);
}

.logo-link:hover {
    transform: translateY(-2px);
}

.logo-icon {
    color: var(--orange-primary);
    font-size: 24px;
    margin-right: 12px;
    text-shadow: 0 0 10px var(--orange-glow);
    animation: flame 2s infinite alternate;
}

@keyframes flame {
    0% { opacity: 0.8; transform: scale(1); }
    100% { opacity: 1; transform: scale(1.1); }
}

.logo-text {
    font-size: 22px;
    font-weight: 800;
    letter-spacing: -0.5px;
    background: var(--orange-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.header-center {
    flex: 1;
    display: flex;
    justify-content: center;
}

.status-container {
    position: relative;
}

.status-selector {
    display: flex;
    align-items: center;
    background: rgba(26, 26, 26, 0.8);
    border: 1px solid var(--black-border);
    border-radius: 25px;
    padding: 8px 20px;
    cursor: pointer;
    transition: all var(--transition-medium);
    min-width: 200px;
    justify-content: space-between;
    backdrop-filter: blur(10px);
}

.status-selector:hover {
    border-color: var(--orange-primary);
    box-shadow: var(--glow-shadow);
    background: rgba(34, 34, 34, 0.9);
}

.current-status {
    display: flex;
    align-items: center;
    gap: 8px;
}

.status-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    display: inline-block;
    transition: all var(--transition-fast);
}

.status-dot.active {
    background-color: var(--success);
    box-shadow: 0 0 10px var(--success);
    animation: pulse-dot 2s infinite;
}

@keyframes pulse-dot {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

.status-dot.dnd {
    background-color: var(--error);
    box-shadow: 0 0 10px var(--error);
}

.status-dot.hidden {
    background-color: var(--gray-medium);
    box-shadow: 0 0 10px var(--gray-medium);
}

.status-text {
    font-size: 14px;
    font-weight: 600;
}

.status-separator {
    margin: 0 12px;
    color: var(--gray-dark);
    font-weight: 300;
}

.user-role {
    background: var(--orange-gradient);
    color: var(--black-void);
    padding: 4px 12px;
    border-radius: 12px;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.status-arrow {
    font-size: 12px;
    margin-left: 8px;
    color: var(--gray-medium);
    transition: transform var(--transition-medium);
}

.status-dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: rgba(26, 26, 26, 0.95);
    backdrop-filter: blur(20px);
    border: 1px solid var(--black-border);
    border-radius: 12px;
    margin-top: 8px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all var(--transition-medium);
    z-index: 100;
    overflow: hidden;
}

.status-dropdown.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.status-option {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    cursor: pointer;
    transition: background-color var(--transition-fast);
}

.status-option:hover {
    background: rgba(255, 123, 0, 0.1);
}

.status-option:not(:last-child) {
    border-bottom: 1px solid var(--black-border);
}

.header-right {
    flex: 1;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 20px;
}

.user-profile {
    display: flex;
    align-items: center;
    gap: 12px;
    cursor: pointer;
    padding: 6px 12px;
    border-radius: 25px;
    transition: all var(--transition-medium);
    background: rgba(26, 26, 26, 0.8);
    backdrop-filter: blur(10px);
}

.user-profile:hover {
    background: rgba(34, 34, 34, 0.9);
    box-shadow: var(--glow-shadow);
}

.user-avatar {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    overflow: hidden;
    border: 2px solid var(--orange-primary);
    transition: transform var(--transition-medium);
}

.user-profile:hover .user-avatar {
    transform: scale(1.1);
}

.avatar-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.username {
    font-weight: 600;
    font-size: 14px;
}

.user-arrow {
    font-size: 12px;
    color: var(--gray-medium);
}

.user-dropdown {
    position: absolute;
    top: 100%;
    right: 20px;
    background: rgba(26, 26, 26, 0.95);
    backdrop-filter: blur(20px);
    border: 1px solid var(--black-border);
    border-radius: 12px;
    min-width: 200px;
    margin-top: 10px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all var(--transition-medium);
    z-index: 100;
    overflow: hidden;
}

.user-dropdown.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 16px;
    color: var(--gray-text);
    text-decoration: none;
    transition: all var(--transition-fast);
}

.dropdown-item:hover {
    background: rgba(255, 123, 0, 0.1);
    padding-left: 20px;
}

.dropdown-item i {
    width: 20px;
    text-align: center;
    color: var(--orange-primary);
}

.dropdown-item.logout {
    color: var(--error);
}

.dropdown-item.logout i {
    color: var(--error);
}

.dropdown-divider {
    height: 1px;
    background: var(--black-border);
    margin: 8px 0;
}

.apps-container {
    position: relative;
}

.apps-trigger {
    background: rgba(26, 26, 26, 0.8);
    backdrop-filter: blur(10px);
    border: 1px solid var(--black-border);
    color: var(--gray-text);
    font-size: 20px;
    cursor: pointer;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--transition-medium);
}

.apps-trigger:hover {
    background: rgba(255, 123, 0, 0.1);
    border-color: var(--orange-primary);
    box-shadow: var(--glow-shadow);
    transform: rotate(90deg);
}

.apps-dropdown {
    position: absolute;
    top: 100%;
    right: 0;
    background: rgba(26, 26, 26, 0.95);
    backdrop-filter: blur(20px);
    border: 1px solid var(--black-border);
    border-radius: 16px;
    padding: 20px;
    margin-top: 10px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all var(--transition-medium);
    z-index: 100;
    min-width: 320px;
}

.apps-dropdown.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.apps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
}

.app-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    color: var(--gray-text);
    padding: 20px 12px;
    border-radius: 12px;
    transition: all var(--transition-medium);
    background: rgba(34, 34, 34, 0.6);
    border: 1px solid transparent;
}

.app-item:hover {
    background: rgba(255, 123, 0, 0.1);
    border-color: var(--orange-primary);
    transform: translateY(-5px) scale(1.05);
    box-shadow: var(--hover-shadow);
}

.app-icon {
    width: 48px;
    height: 48px;
    background: var(--orange-gradient);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 12px;
    font-size: 22px;
    color: var(--black-void);
}

.app-name {
    font-size: 13px;
    font-weight: 600;
    text-align: center;
}

/* ===== MAIN CONTENT ===== */
.main-content {
    margin-top: 80px;
}

/* Секция: Статистика онлайн */
.online-stats-section {
    padding: 40px 0;
    background: linear-gradient(180deg, 
        rgba(10, 10, 10, 0.9) 0%,
        rgba(17, 17, 17, 0.7) 100%);
    border-bottom: 1px solid var(--black-border);
}

.stats-wrapper {
    display: grid;
    grid-template-columns: 2fr 3fr;
    gap: 40px;
    background: rgba(21, 21, 21, 0.8);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 30px;
    border: 1px solid var(--black-border);
    box-shadow: var(--card-shadow);
}

.stats-main {
    display: flex;
    align-items: center;
    gap: 20px;
}

.stats-icon {
    font-size: 48px;
    color: var(--orange-primary);
    filter: drop-shadow(0 0 10px var(--orange-glow));
}

.stats-info {
    flex: 1;
}

.stats-title {
    font-size: 14px;
    color: var(--gray-medium);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 8px;
}

.stats-count {
    font-size: 48px;
    font-weight: 900;
    background: var(--orange-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    line-height: 1;
    margin-bottom: 8px;
}

.stats-change {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--success);
    font-size: 14px;
    font-weight: 600;
}

.stats-change i {
    font-size: 12px;
}

.stats-details {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.stat-item {
    text-align: center;
    padding: 20px;
    background: rgba(34, 34, 34, 0.6);
    border-radius: 12px;
    border: 1px solid var(--black-border);
    transition: all var(--transition-medium);
}

.stat-item:hover {
    transform: translateY(-5px);
    border-color: var(--orange-primary);
    box-shadow: var(--hover-shadow);
}

.stat-number {
    font-size: 32px;
    font-weight: 800;
    color: var(--orange-primary);
    margin-bottom: 8px;
}

.stat-label {
    font-size: 13px;
    color: var(--gray-medium);
    line-height: 1.4;
}

/* Секция: Герой */
.hero-section {
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.hero-section .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero-content {
    position: relative;
    z-index: 1;
}

.hero-title {
    margin-bottom: 24px;
}

.hero-title-main {
    display: block;
    font-size: 72px;
    font-weight: 900;
    background: var(--orange-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    line-height: 1;
    margin-bottom: 8px;
    text-shadow: 0 10px 30px rgba(255, 123, 0, 0.3);
    letter-spacing: -2px;
}

.hero-title-sub {
    display: block;
    font-size: 24px;
    color: var(--gray-light);
    font-weight: 400;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.hero-tagline {
    font-size: 20px;
    color: var(--orange-secondary);
    margin-bottom: 24px;
    font-weight: 600;
}

.hero-description {
    font-size: 16px;
    color: var(--gray-light);
    margin-bottom: 32px;
    line-height: 1.8;
}

.hero-features {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 40px;
}

.hero-feature {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 15px;
    color: var(--gray-light);
}

.hero-feature i {
    color: var(--orange-primary);
    font-size: 18px;
}

.hero-buttons {
    display: flex;
    gap: 20px;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 16px 32px;
    border-radius: 50px;
    font-weight: 700;
    text-decoration: none;
    transition: all var(--transition-medium);
    border: 2px solid transparent;
    cursor: pointer;
    font-size: 16px;
    text-align: center;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left var(--transition-medium);
    z-index: -1;
}

.btn:hover::before {
    left: 100%;
}

.btn-primary {
    background: var(--orange-gradient);
    color: var(--black-void);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(255, 123, 0, 0.4);
}

.btn-secondary {
    background: transparent;
    color: var(--orange-primary);
    border-color: var(--orange-primary);
}

.btn-secondary:hover {
    background: rgba(255, 123, 0, 0.1);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(255, 123, 0, 0.2);
}

.btn-hero {
    padding: 18px 40px;
    font-size: 17px;
}

.hero-visual {
    position: relative;
    height: 400px;
}

.visual-card {
    position: absolute;
    width: 120px;
    height: 120px;
    background: rgba(26, 26, 26, 0.9);
    border: 2px solid var(--black-border);
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
    color: var(--gray-text);
    font-weight: 600;
    font-size: 14px;
    transition: all var(--transition-medium);
    box-shadow: var(--card-shadow);
    animation: float-card 6s ease-in-out infinite;
}

.visual-card i {
    font-size: 32px;
    color: var(--orange-primary);
}

.visual-card:hover {
    border-color: var(--orange-primary);
    transform: scale(1.1);
    box-shadow: var(--hover-shadow);
    z-index: 10;
}

.card-1 {
    top: 20px;
    left: 20px;
    animation-delay: 0s;
}

.card-2 {
    top: 20px;
    right: 20px;
    animation-delay: 1s;
}

.card-3 {
    bottom: 20px;
    left: 20px;
    animation-delay: 2s;
}

.card-4 {
    bottom: 20px;
    right: 20px;
    animation-delay: 3s;
}

.card-5 {
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 140px;
    height: 140px;
    animation-delay: 4s;
}

@keyframes float-card {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-20px); }
}

/* Общие стили заголовков секций */
.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-title {
    font-size: 48px;
    font-weight: 900;
    background: var(--orange-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    margin-bottom: 16px;
    line-height: 1.2;
}

.section-subtitle {
    font-size: 18px;
    color: var(--gray-light);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Секция: Ключевое преимущество */
.key-benefit-section {
    padding: 100px 0;
    background: linear-gradient(180deg, 
        rgba(17, 17, 17, 0.7) 0%,
        rgba(10, 10, 10, 0.9) 100%);
    position: relative;
    overflow: hidden;
}

.benefit-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 60px;
    align-items: start;
}

.benefit-card {
    background: rgba(21, 21, 21, 0.9);
    backdrop-filter: blur(10px);
    border-radius: 24px;
    padding: 40px;
    border: 1px solid var(--black-border);
    box-shadow: var(--card-shadow);
    transition: all var(--transition-medium);
}

.benefit-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--hover-shadow);
    border-color: var(--orange-primary);
}

.benefit-icon {
    width: 80px;
    height: 80px;
    background: var(--orange-gradient);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 30px;
    font-size: 36px;
    color: var(--black-void);
}

.benefit-card h3 {
    font-size: 32px;
    margin-bottom: 20px;
    color: var(--gray-text);
}

.benefit-card p {
    font-size: 17px;
    color: var(--gray-light);
    margin-bottom: 30px;
    line-height: 1.8;
}

.benefit-list {
    list-style: none;
}

.benefit-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
    font-size: 16px;
    color: var(--gray-light);
}

.benefit-list li i {
    color: var(--success);
    font-size: 18px;
}

.benefit-stats {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.stat-box {
    background: rgba(21, 21, 21, 0.9);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 30px;
    text-align: center;
    border: 1px solid var(--black-border);
    transition: all var(--transition-medium);
}

.stat-box:hover {
    transform: translateY(-5px);
    border-color: var(--orange-primary);
    box-shadow: var(--hover-shadow);
}

.stat-value {
    font-size: 48px;
    font-weight: 900;
    background: var(--orange-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    line-height: 1;
    margin-bottom: 8px;
}

.stat-label {
    font-size: 14px;
    color: var(--gray-medium);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Секция: Подробные планы */
.detailed-plans-section {
    padding: 100px 0;
    background: linear-gradient(180deg, 
        rgba(10, 10, 10, 0.9) 0%,
        rgba(17, 17, 17, 0.7) 100%);
}

.plans-comparison {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 60px;
}

.plan-column {
    background: rgba(21, 21, 21, 0.9);
    backdrop-filter: blur(10px);
    border-radius: 24px;
    padding: 40px;
    border: 1px solid var(--black-border);
    position: relative;
    transition: all var(--transition-medium);
    display: flex;
    flex-direction: column;
}

.plan-column:hover {
    transform: translateY(-10px);
    box-shadow: var(--hover-shadow);
}

.plan-column.popular {
    border-color: var(--orange-primary);
    box-shadow: var(--glow-shadow);
    transform: scale(1.05);
}

.plan-column.popular:hover {
    transform: scale(1.05) translateY(-10px);
}

.plan-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--orange-gradient);
    color: var(--black-void);
    padding: 8px 24px;
    border-radius: 25px;
    font-size: 13px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    z-index: 2;
}

.plan-header {
    text-align: center;
    margin-bottom: 40px;
    padding-bottom: 30px;
    border-bottom: 1px solid var(--black-border);
}

.plan-name {
    font-size: 28px;
    color: var(--gray-text);
    margin-bottom: 16px;
    font-weight: 700;
}

.plan-price {
    font-size: 56px;
    font-weight: 900;
    background: var(--orange-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    line-height: 1;
    margin-bottom: 8px;
}

.price-period {
    font-size: 18px;
    color: var(--gray-medium);
    font-weight: 400;
}

.plan-period {
    font-size: 14px;
    color: var(--gray-medium);
    font-style: italic;
}

.plan-features {
    flex: 1;
    margin-bottom: 40px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
    font-size: 15px;
    padding: 8px 0;
}

.feature-item.included {
    color: var(--gray-light);
}

.feature-item.not-included {
    color: var(--gray-dark);
    text-decoration: line-through;
}

.feature-item i {
    font-size: 18px;
    width: 24px;
}

.feature-item.included i {
    color: var(--success);
}

.feature-item.not-included i {
    color: var(--error);
}

.plan-btn {
    width: 100%;
    padding: 18px;
    font-size: 17px;
    font-weight: 700;
    margin-top: auto;
}

.btn-outline {
    background: transparent;
    color: var(--gray-text);
    border-color: var(--black-border);
}

.btn-outline:hover {
    border-color: var(--orange-primary);
    color: var(--orange-primary);
    background: rgba(255, 123, 0, 0.1);
}

/* Секция: Преимущества в виде слайдера */
.advantages-slider-section {
    padding: 100px 0;
    background: linear-gradient(180deg, 
        rgba(17, 17, 17, 0.7) 0%,
        rgba(10, 10, 10, 0.9) 100%);
}

.slider-container {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
}

.slider-track {
    position: relative;
    height: 500px;
    overflow: hidden;
    border-radius: 24px;
    background: rgba(21, 21, 21, 0.9);
    backdrop-filter: blur(10px);
    border: 1px solid var(--black-border);
}

.slider-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    padding: 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    opacity: 0;
    transform: translateX(100%);
    transition: all var(--transition-slow);
}

.slider-slide.active {
    opacity: 1;
    transform: translateX(0);
}

.slide-number {
    font-size: 120px;
    font-weight: 900;
    background: var(--orange-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    line-height: 1;
    margin-bottom: 20px;
    opacity: 0.2;
    position: absolute;
    top: 40px;
    right: 60px;
}

.slide-title {
    font-size: 36px;
    color: var(--gray-text);
    margin-bottom: 24px;
    font-weight: 700;
    position: relative;
    z-index: 1;
}

.slide-text {
    font-size: 18px;
    color: var(--gray-light);
    margin-bottom: 40px;
    line-height: 1.8;
    max-width: 600px;
}

.slide-stats {
    display: flex;
    gap: 40px;
}

.slide-stat {
    text-align: center;
}

.slide-stat .stat-value {
    font-size: 40px;
    margin-bottom: 8px;
}

.slider-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
    margin-top: 40px;
}

.slider-prev,
.slider-next {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: rgba(21, 21, 21, 0.9);
    border: 1px solid var(--black-border);
    color: var(--orange-primary);
    font-size: 20px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--transition-medium);
}

.slider-prev:hover,
.slider-next:hover {
    background: rgba(255, 123, 0, 0.1);
    border-color: var(--orange-primary);
    transform: scale(1.1);
}

.slider-dots {
    display: flex;
    gap: 15px;
}

.slider-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--gray-dark);
    border: none;
    cursor: pointer;
    transition: all var(--transition-medium);
    padding: 0;
}

.slider-dot.active,
.slider-dot:hover {
    background: var(--orange-primary);
    transform: scale(1.2);
}

/* Секция: Чем мы занимаемся */
.what-we-do-section {
    padding: 100px 0;
    background: linear-gradient(180deg, 
        rgba(10, 10, 10, 0.9) 0%,
        rgba(17, 17, 17, 0.7) 100%);
}

.activities-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.activity-card {
    background: rgba(21, 21, 21, 0.9);
    backdrop-filter: blur(10px);
    border-radius: 24px;
    padding: 40px;
    border: 1px solid var(--black-border);
    transition: all var(--transition-medium);
}

.activity-card:hover {
    transform: translateY(-10px);
    border-color: var(--orange-primary);
    box-shadow: var(--hover-shadow);
}

.activity-icon {
    width: 70px;
    height: 70px;
    background: var(--orange-gradient);
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 30px;
    font-size: 32px;
    color: var(--black-void);
}

.activity-card h3 {
    font-size: 24px;
    color: var(--gray-text);
    margin-bottom: 20px;
    font-weight: 700;
}

.activity-card p {
    font-size: 16px;
    color: var(--gray-light);
    margin-bottom: 30px;
    line-height: 1.7;
}

.activity-list {
    list-style: none;
}

.activity-list li {
    position: relative;
    padding-left: 24px;
    margin-bottom: 12px;
    font-size: 15px;
    color: var(--gray-light);
    line-height: 1.6;
}

.activity-list li::before {
    content: '▸';
    position: absolute;
    left: 0;
    color: var(--orange-primary);
    font-weight: bold;
}

/* Секция: Поддержка */
.support-section {
    padding: 100px 0;
    background: linear-gradient(180deg, 
        rgba(17, 17, 17, 0.7) 0%,
        rgba(10, 10, 10, 0.9) 100%);
}

.support-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 60px;
    align-items: start;
}

.support-info h3 {
    font-size: 32px;
    color: var(--gray-text);
    margin-bottom: 24px;
    font-weight: 700;
}

.support-info > p {
    font-size: 17px;
    color: var(--gray-light);
    margin-bottom: 40px;
    line-height: 1.8;
}

.support-levels {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 40px;
}

.support-level {
    background: rgba(21, 21, 21, 0.9);
    border-radius: 20px;
    padding: 30px;
    border: 1px solid var(--black-border);
    transition: all var(--transition-medium);
}

.support-level:hover {
    border-color: var(--orange-primary);
    transform: translateY(-5px);
}

.support-level h4 {
    font-size: 18px;
    color: var(--orange-primary);
    margin-bottom: 12px;
    font-weight: 700;
}

.support-level > p {
    font-size: 14px;
    color: var(--gray-medium);
    margin-bottom: 20px;
    line-height: 1.6;
}

.support-level ul {
    list-style: none;
}

.support-level li {
    position: relative;
    padding-left: 20px;
    margin-bottom: 10px;
    font-size: 14px;
    color: var(--gray-light);
    line-height: 1.5;
}

.support-level li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--orange-primary);
}

.support-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.support-stat {
    background: rgba(21, 21, 21, 0.9);
    border-radius: 20px;
    padding: 30px;
    text-align: center;
    border: 1px solid var(--black-border);
    transition: all var(--transition-medium);
}

.support-stat:hover {
    border-color: var(--orange-primary);
    transform: translateY(-5px);
}

.support-stat .stat-number {
    font-size: 40px;
    margin-bottom: 8px;
}

/* Секция: Технические детали */
.tech-details-section {
    padding: 100px 0;
    background: linear-gradient(180deg, 
        rgba(10, 10, 10, 0.9) 0%,
        rgba(17, 17, 17, 0.7) 100%);
}

.tech-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.tech-card {
    background: rgba(21, 21, 21, 0.9);
    backdrop-filter: blur(10px);
    border-radius: 24px;
    padding: 40px;
    border: 1px solid var(--black-border);
    transition: all var(--transition-medium);
}

.tech-card:hover {
    transform: translateY(-10px);
    border-color: var(--orange-primary);
    box-shadow: var(--hover-shadow);
}

.tech-card h3 {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 22px;
    color: var(--gray-text);
    margin-bottom: 30px;
    font-weight: 700;
}

.tech-card h3 i {
    color: var(--orange-primary);
    font-size: 24px;
}

.tech-card ul {
    list-style: none;
}

.tech-card li {
    position: relative;
    padding-left: 24px;
    margin-bottom: 16px;
    font-size: 15px;
    color: var(--gray-light);
    line-height: 1.6;
}

.tech-card li::before {
    content: '▸';
    position: absolute;
    left: 0;
    color: var(--orange-primary);
    font-weight: bold;
}

/* Секция: Дорожная карта */
.roadmap-section {
    padding: 100px 0;
    background: linear-gradient(180deg, 
        rgba(17, 17, 17, 0.7) 0%,
        rgba(10, 10, 10, 0.9) 100%);
}

.roadmap-timeline {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}

.roadmap-timeline::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 2px;
    background: var(--orange-gradient);
    opacity: 0.3;
}

.timeline-item {
    position: relative;
    padding-left: 60px;
    margin-bottom: 60px;
}

.timeline-item::before {
    content: '';
    position: absolute;
    left: -4px;
    top: 0;
    width: 10px;
    height: 10px;
    background: var(--orange-primary);
    border-radius: 50%;
    box-shadow: 0 0 20px var(--orange-glow);
}

.timeline-date {
    font-size: 18px;
    font-weight: 700;
    color: var(--orange-primary);
    margin-bottom: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.timeline-item h3 {
    font-size: 24px;
    color: var(--gray-text);
    margin-bottom: 16px;
    font-weight: 700;
}

.timeline-item p {
    font-size: 16px;
    color: var(--gray-light);
    line-height: 1.8;
}

/* Секция: Расширенный FAQ */
.extended-faq-section {
    padding: 100px 0;
    background: linear-gradient(180deg, 
        rgba(10, 10, 10, 0.9) 0%,
        rgba(17, 17, 17, 0.7) 100%);
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}

.faq-column {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.faq-item {
    background: rgba(21, 21, 21, 0.9);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    border: 1px solid var(--black-border);
    overflow: hidden;
    transition: all var(--transition-medium);
}

.faq-item:hover {
    border-color: var(--orange-primary);
    box-shadow: var(--hover-shadow);
}

.faq-question {
    padding: 24px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: background-color var(--transition-fast);
}

.faq-question:hover {
    background: rgba(255, 123, 0, 0.05);
}

.faq-question h4 {
    font-size: 18px;
    color: var(--gray-text);
    font-weight: 600;
    flex: 1;
    margin-right: 20px;
}

.faq-question i {
    color: var(--orange-primary);
    font-size: 18px;
    transition: transform var(--transition-medium);
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    padding: 0 30px;
    max-height: 0;
    overflow: hidden;
    transition: all var(--transition-medium);
}

.faq-item.active .faq-answer {
    padding: 0 30px 30px;
    max-height: 500px;
}

.faq-answer p {
    font-size: 16px;
    color: var(--gray-light);
    line-height: 1.7;
}

/* Секция: CTA */
.final-cta-section {
    padding: 120px 0;
    background: linear-gradient(135deg, 
        rgba(255, 123, 0, 0.1) 0%,
        rgba(10, 10, 10, 0.9) 100%);
    position: relative;
    overflow: hidden;
}

.cta-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 1;
}

.cta-title {
    font-size: 56px;
    font-weight: 900;
    color: var(--gray-text);
    margin-bottom: 24px;
    line-height: 1.2;
}

.cta-subtitle {
    font-size: 20px;
    color: var(--gray-light);
    margin-bottom: 40px;
    line-height: 1.6;
}

.cta-features {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 50px;
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
}

.cta-feature {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 17px;
    color: var(--gray-light);
    text-align: left;
}

.cta-feature i {
    color: var(--success);
    font-size: 20px;
}

.cta-buttons {
    display: flex;
    gap: 30px;
    justify-content: center;
    margin-bottom: 40px;
}

.btn-xl {
    padding: 22px 50px;
    font-size: 18px;
}

.cta-note {
    font-size: 14px;
    color: var(--gray-medium);
    font-style: italic;
}

/* ===== FOOTER ===== */
.footer {
    background: var(--black-deep);
    border-top: 1px solid var(--black-border);
    padding: 80px 0 30px;
}

.footer-main {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 60px;
    margin-bottom: 60px;
}

.footer-brand {
    display: flex;
    flex-direction: column;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 28px;
    font-weight: 900;
    color: var(--gray-text);
    margin-bottom: 20px;
}

.footer-logo i {
    color: var(--orange-primary);
    font-size: 32px;
}

.footer-tagline {
    font-size: 15px;
    color: var(--gray-light);
    margin-bottom: 30px;
    line-height: 1.6;
}

.footer-social {
    display: flex;
    gap: 20px;
}

.footer-social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    background: rgba(34, 34, 34, 0.8);
    border-radius: 50%;
    color: var(--gray-medium);
    font-size: 20px;
    transition: all var(--transition-medium);
    text-decoration: none;
}

.footer-social a:hover {
    background: var(--orange-primary);
    color: var(--black-void);
    transform: translateY(-3px);
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
}

.footer-column h4 {
    font-size: 18px;
    color: var(--gray-text);
    margin-bottom: 25px;
    font-weight: 700;
}

.footer-column a {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--gray-light);
    text-decoration: none;
    font-size: 15px;
    margin-bottom: 16px;
    transition: all var(--transition-fast);
}

.footer-column a:hover {
    color: var(--orange-primary);
    transform: translateX(5px);
}

.footer-column a i {
    font-size: 12px;
    color: var(--orange-primary);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 30px;
    border-top: 1px solid var(--black-border);
}

.footer-info p {
    font-size: 14px;
    color: var(--gray-medium);
    margin-bottom: 8px;
}

.footer-stats {
    display: flex;
    gap: 30px;
}

.footer-stat {
    text-align: center;
}

.footer-stat .stat-number {
    font-size: 24px;
    margin-bottom: 4px;
}

.footer-stat .stat-label {
    font-size: 12px;
}

/* ===== АДАПТИВНОСТЬ ===== */
@media (max-width: 1200px) {
    .container {
        max-width: 100%;
        padding: 0 40px;
    }
    
    .hero-title-main {
        font-size: 60px;
    }
    
    .section-title {
        font-size: 42px;
    }
}

@media (max-width: 992px) {
    .hero-section .container {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .hero-visual {
        height: 300px;
    }
    
    .benefit-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .plans-comparison {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin-left: auto;
        margin-right: auto;
    }
    
    .plan-column.popular {
        transform: none;
    }
    
    .plan-column.popular:hover {
        transform: translateY(-10px);
    }
    
    .activities-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .support-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .tech-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .faq-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-main {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .footer-links {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .header-container {
        flex-direction: column;
        gap: 15px;
    }
    
    .main-content {
        margin-top: 140px;
    }
    
    .stats-wrapper {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .hero-title-main {
        font-size: 48px;
    }
    
    .hero-buttons {
        flex-direction: column;
        gap: 15px;
    }
    
    .btn-hero, .btn-xl {
        width: 100%;
    }
    
    .activities-grid {
        grid-template-columns: 1fr;
    }
    
    .tech-grid {
        grid-template-columns: 1fr;
    }
    
    .cta-buttons {
        flex-direction: column;
        gap: 15px;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 30px;
        text-align: center;
    }
    
    .footer-stats {
        justify-content: center;
    }
}

@media (max-width: 576px) {
    .container {
        padding: 0 20px;
    }
    
    .header-container {
        padding: 0 15px;
    }
    
    .hero-title-main {
        font-size: 36px;
    }
    
    .section-title {
        font-size: 32px;
    }
    
    .stats-details {
        grid-template-columns: 1fr;
    }
    
    .support-levels {
        grid-template-columns: 1fr;
    }
    
    .support-stats {
        grid-template-columns: 1fr;
    }
    
    .footer-links {
        grid-template-columns: 1fr;
    }
}
/* ===== Секция: Тарифные планы ===== */
.pricing-section {
    padding: 100px 0;
    background: linear-gradient(180deg, 
        rgba(10, 10, 10, 0.9) 0%,
        rgba(17, 17, 17, 0.7) 100%);
}

.pricing-switch {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-bottom: 60px;
}

.pricing-period {
    font-size: 18px;
    font-weight: 600;
    color: var(--gray-medium);
    transition: color 0.3s;
    position: relative;
}

.pricing-period.active {
    color: var(--orange-primary);
}

.discount-badge {
    position: absolute;
    top: -20px;
    right: -40px;
    background: var(--orange-gradient);
    color: var(--black-void);
    padding: 4px 10px;
    border-radius: 12px;
    font-size: 12px;
    font-weight: 800;
}

.switch {
    position: relative;
    width: 60px;
    height: 30px;
}

.toggle-input {
    display: none;
}

.toggle-label {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--black-card);
    border: 2px solid var(--orange-primary);
    border-radius: 30px;
    cursor: pointer;
    transition: all 0.3s;
}

.toggle-handle {
    position: absolute;
    top: 3px;
    left: 3px;
    width: 20px;
    height: 20px;
    background: var(--orange-primary);
    border-radius: 50%;
    transition: transform 0.3s;
}

.toggle-input:checked + .toggle-label .toggle-handle {
    transform: translateX(30px);
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 80px;
}

.pricing-card {
    background: rgba(21, 21, 21, 0.9);
    backdrop-filter: blur(10px);
    border-radius: 24px;
    padding: 40px;
    border: 2px solid var(--black-border);
    transition: all 0.3s;
    position: relative;
    display: flex;
    flex-direction: column;
}

.pricing-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--hover-shadow);
}

.pricing-card.featured {
    border-color: var(--orange-primary);
    box-shadow: var(--glow-shadow);
    transform: scale(1.05);
}

.pricing-card.featured:hover {
    transform: scale(1.05) translateY(-10px);
}

.featured-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--orange-gradient);
    color: var(--black-void);
    padding: 8px 24px;
    border-radius: 25px;
    font-size: 13px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    z-index: 2;
}

.pricing-header {
    text-align: center;
    margin-bottom: 40px;
    padding-bottom: 30px;
    border-bottom: 1px solid var(--black-border);
}

.plan-name {
    font-size: 28px;
    color: var(--gray-text);
    margin-bottom: 16px;
    font-weight: 700;
}

.plan-price {
    margin-bottom: 12px;
}

.price-amount {
    display: block;
    font-size: 56px;
    font-weight: 900;
    background: var(--orange-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    line-height: 1;
    margin-bottom: 4px;
}

.price-save {
    display: block;
    font-size: 14px;
    color: var(--success);
    font-weight: 600;
    margin-top: 4px;
}

.price-period {
    font-size: 16px;
    color: var(--gray-medium);
}

.yearly-price,
.yearly-price + .price-period {
    display: none;
}

.toggle-input:checked ~ .pricing-period.monthly {
    color: var(--gray-medium);
}

.toggle-input:checked ~ .pricing-period.yearly {
    color: var(--orange-primary);
}

.toggle-input:checked ~ .pricing-grid .monthly-price,
.toggle-input:checked ~ .pricing-grid .monthly-price + .price-period {
    display: none;
}

.toggle-input:checked ~ .pricing-grid .yearly-price,
.toggle-input:checked ~ .pricing-grid .yearly-price + .price-period {
    display: block;
}

.plan-description {
    font-size: 14px;
    color: var(--gray-medium);
    margin-top: 12px;
    line-height: 1.6;
}

.plan-features {
    flex: 1;
    margin-bottom: 40px;
}

.feature {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
    font-size: 15px;
    padding: 8px 0;
    color: var(--gray-light);
}

.feature.not-included {
    color: var(--gray-dark);
    text-decoration: line-through;
}

.feature i {
    font-size: 18px;
    width: 24px;
}

.feature:not(.not-included) i {
    color: var(--success);
}

.feature.not-included i {
    color: var(--error);
}

.btn-block {
    width: 100%;
    padding: 18px;
    font-size: 17px;
    font-weight: 700;
    margin-bottom: 25px;
}

.plan-popularity {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-size: 14px;
    color: var(--gray-medium);
    padding: 15px 0;
    border-top: 1px solid var(--black-border);
}

.plan-popularity i {
    color: var(--orange-primary);
}

.plan-trial {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-size: 14px;
    color: var(--success);
    padding: 15px;
    background: rgba(0, 255, 136, 0.1);
    border-radius: 12px;
    margin-top: 15px;
}

.plan-trial i {
    font-size: 16px;
}

.pricing-comparison {
    background: rgba(21, 21, 21, 0.9);
    backdrop-filter: blur(10px);
    border-radius: 24px;
    padding: 40px;
    border: 1px solid var(--black-border);
}

.pricing-comparison h3 {
    font-size: 24px;
    color: var(--gray-text);
    margin-bottom: 30px;
    text-align: center;
    font-weight: 700;
}

.comparison-table {
    overflow-x: auto;
}

.comparison-row {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 20px;
    padding: 20px 0;
    border-bottom: 1px solid var(--black-border);
    align-items: center;
}

.comparison-row.header {
    font-weight: 700;
    color: var(--orange-primary);
    border-bottom: 2px solid var(--orange-primary);
}

.comparison-feature {
    font-size: 15px;
    color: var(--gray-light);
}

.comparison-plan {
    text-align: center;
    font-size: 14px;
    color: var(--gray-light);
}

.comparison-plan i {
    font-size: 18px;
}

.comparison-plan .fa-check {
    color: var(--success);
}

.comparison-plan .fa-times {
    color: var(--error);
}

/* Секция: CTA */
.cta-section {
    padding: 100px 0;
    background: linear-gradient(135deg, 
        rgba(255, 123, 0, 0.1) 0%,
        rgba(10, 10, 10, 0.9) 100%);
}

.cta-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.cta-title {
    font-size: 48px;
    font-weight: 900;
    color: var(--gray-text);
    margin-bottom: 20px;
    line-height: 1.2;
}

.cta-subtitle {
    font-size: 18px;
    color: var(--gray-light);
    margin-bottom: 40px;
    line-height: 1.6;
}

.cta-buttons {
    display: flex;
    gap: 30px;
    justify-content: center;
}

/* Адаптивность для тарифов */
@media (max-width: 992px) {
    .pricing-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin-left: auto;
        margin-right: auto;
    }
    
    .pricing-card.featured {
        transform: none;
    }
    
    .pricing-card.featured:hover {
        transform: translateY(-10px);
    }
    
    .comparison-row {
        grid-template-columns: repeat(4, 200px);
        min-width: 800px;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .btn-xl {
        width: 100%;
        max-width: 300px;
    }
}

@media (max-width: 768px) {
    .pricing-switch {
        flex-direction: column;
        gap: 15px;
    }
    
    .discount-badge {
        position: static;
        display: inline-block;
        margin-left: 10px;
    }
    
    .cta-title {
        font-size: 36px;
    }
}
/* Кнопка "Наверх" */
.scroll-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--orange-gradient);
    color: var(--black-void);
    border: none;
    border-radius: 50%;
    font-size: 20px;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition-medium);
    z-index: 999;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(255, 123, 0, 0.3);
}

.scroll-to-top:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 25px rgba(255, 123, 0, 0.4);
}

/* Анимация для появления элементов */
.animate-in {
    animation: fadeInUp 0.6s ease forwards;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
/* ===== Секция: Тарифные планы ===== */
.pricing-section {
    padding: 80px 0;
    background: linear-gradient(180deg, 
        rgba(10, 10, 10, 0.9) 0%,
        rgba(17, 17, 17, 0.7) 100%);
}

.pricing-switch {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-bottom: 50px;
    background: rgba(21, 21, 21, 0.8);
    border-radius: 50px;
    padding: 8px;
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
}

.pricing-period {
    font-size: 14px;
    font-weight: 600;
    color: var(--gray-medium);
    transition: color 0.3s;
    padding: 8px 20px;
    border-radius: 30px;
    cursor: pointer;
    text-align: center;
    flex: 1;
}

.pricing-period.active {
    color: var(--black-void);
    background: var(--orange-gradient);
}

.discount-badge {
    background: var(--success);
    color: var(--black-void);
    padding: 2px 8px;
    border-radius: 10px;
    font-size: 11px;
    font-weight: 800;
    margin-left: 5px;
}

.switch {
    position: relative;
    width: 50px;
    height: 24px;
    flex-shrink: 0;
}

.toggle-input {
    display: none;
}

.toggle-label {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--black-border);
    border: none;
    border-radius: 30px;
    cursor: pointer;
    transition: all 0.3s;
}

.toggle-handle {
    position: absolute;
    top: 2px;
    left: 2px;
    width: 20px;
    height: 20px;
    background: var(--gray-medium);
    border-radius: 50%;
    transition: transform 0.3s;
}

.toggle-input:checked + .toggle-label .toggle-handle {
    transform: translateX(26px);
    background: var(--orange-primary);
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    margin-bottom: 40px;
    align-items: stretch; /* Выравниваем по высоте */
}

.pricing-card {
    background: rgba(21, 21, 21, 0.9);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 30px;
    border: 1px solid var(--black-border);
    transition: all 0.3s;
    position: relative;
    display: flex;
    flex-direction: column;
    height: 100%; /* Фиксируем высоту */
    min-height: 520px; /* Минимальная высота для всех карточек */
}

.pricing-card.basic {
    border-top: 4px solid var(--gray-medium);
}

.pricing-card.pro {
    border-top: 4px solid var(--orange-primary);
}

.pricing-card.enterprise {
    border-top: 4px solid var(--info);
}

.pricing-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
    border-color: var(--orange-primary);
}

.pricing-card.featured {
    border: 2px solid var(--orange-primary);
    box-shadow: 0 0 30px rgba(255, 123, 0, 0.2);
    transform: scale(1.02);
}

.pricing-card.featured:hover {
    transform: scale(1.02) translateY(-5px);
}

.pricing-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--black-card);
    color: var(--gray-light);
    padding: 6px 20px;
    border-radius: 15px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: 1px solid var(--black-border);
}

.pricing-card.basic .pricing-badge {
    background: var(--gray-dark);
    color: var(--gray-light);
}

.pricing-card.pro .pricing-badge {
    background: var(--orange-gradient);
    color: var(--black-void);
    border-color: var(--orange-primary);
}

.pricing-card.enterprise .pricing-badge {
    background: var(--info);
    color: var(--black-void);
    border-color: var(--info);
}

.pricing-header {
    text-align: center;
    margin-bottom: 30px;
    padding-bottom: 25px;
    border-bottom: 1px solid var(--black-border);
}

.plan-name {
    font-size: 24px;
    color: var(--gray-text);
    margin-bottom: 15px;
    font-weight: 700;
}

.plan-price {
    margin-bottom: 10px;
}

.price-amount {
    display: block;
    font-size: 42px;
    font-weight: 900;
    background: var(--orange-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    line-height: 1;
    margin-bottom: 5px;
}

.pricing-card.basic .price-amount {
    background: var(--gray-medium);
    -webkit-background-clip: text;
    background-clip: text;
}

.pricing-card.enterprise .price-amount {
    font-size: 32px;
    background: var(--info);
    -webkit-background-clip: text;
    background-clip: text;
}

.price-save {
    font-size: 12px;
    color: var(--success);
    font-weight: 600;
    margin-top: 5px;
    display: block;
}

.price-period {
    font-size: 14px;
    color: var(--gray-medium);
    display: block;
}

.yearly-price,
.yearly-price + .price-period,
.yearly-price + .price-period + .price-save {
    display: none;
}

.toggle-input:checked ~ .pricing-grid .monthly-price,
.toggle-input:checked ~ .pricing-grid .monthly-price + .price-period {
    display: none;
}

.toggle-input:checked ~ .pricing-grid .yearly-price,
.toggle-input:checked ~ .pricing-grid .yearly-price + .price-period,
.toggle-input:checked ~ .pricing-grid .yearly-price + .price-period + .price-save {
    display: block;
}

.plan-features {
    flex: 1;
    margin-bottom: 30px;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.feature {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 14px;
    color: var(--gray-light);
    padding: 8px 0;
}

.feature.not-included {
    color: var(--gray-dark);
    text-decoration: line-through;
}

.feature i {
    font-size: 16px;
    width: 20px;
    text-align: center;
}

.feature:not(.not-included) i {
    color: var(--success);
}

.feature.not-included i {
    color: var(--error);
}

.btn-block {
    width: 100%;
    padding: 15px;
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.plan-trial {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-size: 13px;
    color: var(--success);
    padding: 12px;
    background: rgba(0, 255, 136, 0.1);
    border-radius: 10px;
    margin-top: 10px;
    text-align: center;
}

.plan-trial i {
    font-size: 14px;
}

.pricing-note {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    background: rgba(21, 21, 21, 0.9);
    border-radius: 15px;
    padding: 20px;
    border: 1px solid var(--black-border);
    max-width: 800px;
    margin: 0 auto;
}

.pricing-note i {
    color: var(--orange-primary);
    font-size: 20px;
    margin-top: 2px;
    flex-shrink: 0;
}

.pricing-note p {
    font-size: 14px;
    color: var(--gray-light);
    line-height: 1.6;
    margin: 0;
}

/* Адаптивность для тарифов */
@media (max-width: 992px) {
    .pricing-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin-left: auto;
        margin-right: auto;
        gap: 30px;
    }
    
    .pricing-card {
        min-height: auto;
        height: auto;
    }
    
    .pricing-card.featured {
        transform: none;
    }
    
    .pricing-card.featured:hover {
        transform: translateY(-5px);
    }
}

@media (max-width: 768px) {
    .pricing-switch {
        flex-direction: column;
        gap: 15px;
        background: transparent;
        padding: 0;
    }
    
    .pricing-period {
        width: 100%;
        max-width: 250px;
    }
    
    .pricing-note {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 576px) {
    .pricing-card {
        padding: 25px 20px;
    }
    
    .price-amount {
        font-size: 36px;
    }
    
    .plan-name {
        font-size: 22px;
    }
}
/* ===== Секция: Возможности экосистемы ===== */
.features-section {
    padding: 100px 0;
    background: linear-gradient(180deg, 
        rgba(17, 17, 17, 0.7) 0%,
        rgba(10, 10, 10, 0.9) 100%);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.feature-card {
    background: rgba(21, 21, 21, 0.9);
    backdrop-filter: blur(10px);
    border-radius: 24px;
    padding: 40px;
    border: 1px solid var(--black-border);
    transition: all var(--transition-medium);
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--orange-gradient);
    opacity: 0;
    transition: opacity var(--transition-medium);
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--hover-shadow);
    border-color: var(--orange-primary);
}

.feature-card:hover::before {
    opacity: 1;
}

.feature-icon {
    width: 70px;
    height: 70px;
    background: var(--orange-gradient);
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    font-size: 32px;
    color: var(--black-void);
}

.feature-card h3 {
    font-size: 24px;
    color: var(--gray-text);
    margin-bottom: 15px;
    font-weight: 700;
}

.feature-card p {
    font-size: 16px;
    color: var(--gray-light);
    margin-bottom: 25px;
    line-height: 1.7;
}

.feature-list {
    list-style: none;
}

.feature-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
    font-size: 15px;
    color: var(--gray-light);
}

.feature-list li i {
    color: var(--success);
    font-size: 16px;
}

/* ===== Секция: Проекты экосистемы ===== */
.projects-section {
    padding: 100px 0;
    background: linear-gradient(180deg, 
        rgba(10, 10, 10, 0.9) 0%,
        rgba(17, 17, 17, 0.7) 100%);
}

.projects-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.project-card {
    background: rgba(21, 21, 21, 0.9);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 30px;
    border: 1px solid var(--black-border);
    transition: all var(--transition-medium);
    position: relative;
    overflow: hidden;
}

.project-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--hover-shadow);
    border-color: var(--orange-primary);
}

.project-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.project-icon {
    width: 50px;
    height: 50px;
    background: var(--orange-gradient);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: var(--black-void);
    flex-shrink: 0;
}

.project-header h3 {
    font-size: 20px;
    color: var(--gray-text);
    font-weight: 700;
    flex: 1;
}

.project-tag {
    background: rgba(255, 123, 0, 0.1);
    color: var(--orange-primary);
    padding: 6px 12px;
    border-radius: 12px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.project-content p {
    font-size: 15px;
    color: var(--gray-light);
    margin-bottom: 25px;
    line-height: 1.6;
}

.project-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    padding-top: 20px;
    border-top: 1px solid var(--black-border);
}

.project-stat {
    text-align: center;
}

.stat-value {
    display: block;
    font-size: 24px;
    font-weight: 800;
    background: var(--orange-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    line-height: 1;
    margin-bottom: 4px;
}

.stat-label {
    font-size: 12px;
    color: var(--gray-medium);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* ===== Секция: Технологии ===== */
.tech-section {
    padding: 100px 0;
    background: linear-gradient(180deg, 
        rgba(17, 17, 17, 0.7) 0%,
        rgba(10, 10, 10, 0.9) 100%);
}

.tech-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 60px;
}

.tech-stats {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}

.tech-stat {
    background: rgba(21, 21, 21, 0.9);
    border-radius: 20px;
    padding: 25px;
    border: 1px solid var(--black-border);
    display: flex;
    align-items: center;
    gap: 20px;
    transition: all var(--transition-medium);
}

.tech-stat:hover {
    border-color: var(--orange-primary);
    transform: translateY(-5px);
}

.tech-stat-icon {
    width: 50px;
    height: 50px;
    background: var(--orange-gradient);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: var(--black-void);
    flex-shrink: 0;
}

.tech-stat-value {
    font-size: 28px;
    font-weight: 900;
    background: var(--orange-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    line-height: 1;
    margin-bottom: 4px;
}

.tech-stat-label {
    font-size: 14px;
    color: var(--gray-medium);
}

.tech-features {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.tech-feature {
    background: rgba(21, 21, 21, 0.9);
    border-radius: 20px;
    padding: 30px;
    border: 1px solid var(--black-border);
    display: flex;
    align-items: flex-start;
    gap: 20px;
    transition: all var(--transition-medium);
}

.tech-feature:hover {
    border-color: var(--orange-primary);
    transform: translateY(-5px);
}

.tech-feature-icon {
    width: 50px;
    height: 50px;
    background: var(--orange-gradient);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: var(--black-void);
    flex-shrink: 0;
    margin-top: 5px;
}

.tech-feature-content h4 {
    font-size: 20px;
    color: var(--gray-text);
    margin-bottom: 10px;
    font-weight: 700;
}

.tech-feature-content p {
    font-size: 15px;
    color: var(--gray-light);
    line-height: 1.6;
}

/* ===== Секция: CTA ===== */
.cta-section {
    padding: 120px 0;
    background: linear-gradient(135deg, 
        rgba(255, 123, 0, 0.15) 0%,
        rgba(10, 10, 10, 0.95) 100%);
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100" preserveAspectRatio="none"><path fill="%23ff7b00" opacity="0.03" d="M0,0 L100,0 L100,100 Z"/></svg>');
    background-size: cover;
    pointer-events: none;
}

.cta-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 1;
}

.cta-title {
    font-size: 48px;
    font-weight: 900;
    color: var(--gray-text);
    margin-bottom: 20px;
    line-height: 1.2;
}

.cta-subtitle {
    font-size: 18px;
    color: var(--gray-light);
    margin-bottom: 50px;
    line-height: 1.6;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-stats {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-bottom: 50px;
}

.cta-stat {
    text-align: center;
}

.cta-stat-value {
    font-size: 36px;
    font-weight: 900;
    background: var(--orange-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    line-height: 1;
    margin-bottom: 8px;
}

.cta-stat-label {
    font-size: 14px;
    color: var(--gray-medium);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.cta-buttons {
    display: flex;
    gap: 30px;
    justify-content: center;
    margin-bottom: 30px;
}

.btn-xl {
    padding: 20px 45px;
    font-size: 18px;
    font-weight: 700;
}

.cta-note {
    font-size: 14px;
    color: var(--gray-medium);
    font-style: italic;
}

/* ===== АДАПТИВНОСТЬ ДЛЯ НОВЫХ СЕКЦИЙ ===== */
@media (max-width: 1200px) {
    .features-grid,
    .projects-grid {
        gap: 25px;
    }
    
    .tech-content {
        gap: 40px;
    }
}

@media (max-width: 992px) {
    .features-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin-left: auto;
        margin-right: auto;
    }
    
    .projects-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .tech-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .cta-stats {
        flex-wrap: wrap;
        gap: 30px;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .btn-xl {
        width: 100%;
        max-width: 300px;
    }
}

@media (max-width: 768px) {
    .projects-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin-left: auto;
        margin-right: auto;
    }
    
    .cta-title {
        font-size: 36px;
    }
    
    .cta-subtitle {
        font-size: 16px;
        padding: 0 20px;
    }
    
    .cta-stats {
        flex-direction: column;
        align-items: center;
        gap: 25px;
    }
    
    .tech-feature {
        flex-direction: column;
        text-align: center;
    }
    
    .tech-feature-icon {
        margin: 0 auto 20px;
    }
}

@media (max-width: 576px) {
    .feature-card,
    .project-card,
    .tech-feature {
        padding: 25px 20px;
    }
    
    .cta-title {
        font-size: 32px;
    }
    
    .cta-stat-value {
        font-size: 28px;
    }
}/* ===== Секция: Возможности экосистемы ===== */
.features-section {
    padding: 100px 0;
    background: linear-gradient(180deg, 
        rgba(17, 17, 17, 0.7) 0%,
        rgba(10, 10, 10, 0.9) 100%);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.feature-card {
    background: rgba(21, 21, 21, 0.9);
    backdrop-filter: blur(10px);
    border-radius: 24px;
    padding: 40px;
    border: 1px solid var(--black-border);
    transition: all var(--transition-medium);
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--orange-gradient);
    opacity: 0;
    transition: opacity var(--transition-medium);
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--hover-shadow);
    border-color: var(--orange-primary);
}

.feature-card:hover::before {
    opacity: 1;
}

.feature-icon {
    width: 70px;
    height: 70px;
    background: var(--orange-gradient);
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    font-size: 32px;
    color: var(--black-void);
}

.feature-card h3 {
    font-size: 24px;
    color: var(--gray-text);
    margin-bottom: 15px;
    font-weight: 700;
}

.feature-card p {
    font-size: 16px;
    color: var(--gray-light);
    margin-bottom: 25px;
    line-height: 1.7;
}

.feature-list {
    list-style: none;
}

.feature-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
    font-size: 15px;
    color: var(--gray-light);
}

.feature-list li i {
    color: var(--success);
    font-size: 16px;
}

/* ===== Секция: Проекты экосистемы ===== */
.projects-section {
    padding: 100px 0;
    background: linear-gradient(180deg, 
        rgba(10, 10, 10, 0.9) 0%,
        rgba(17, 17, 17, 0.7) 100%);
}

.projects-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.project-card {
    background: rgba(21, 21, 21, 0.9);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 30px;
    border: 1px solid var(--black-border);
    transition: all var(--transition-medium);
    position: relative;
    overflow: hidden;
}

.project-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--hover-shadow);
    border-color: var(--orange-primary);
}

.project-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.project-icon {
    width: 50px;
    height: 50px;
    background: var(--orange-gradient);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: var(--black-void);
    flex-shrink: 0;
}

.project-header h3 {
    font-size: 20px;
    color: var(--gray-text);
    font-weight: 700;
    flex: 1;
}

.project-tag {
    background: rgba(255, 123, 0, 0.1);
    color: var(--orange-primary);
    padding: 6px 12px;
    border-radius: 12px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.project-content p {
    font-size: 15px;
    color: var(--gray-light);
    margin-bottom: 25px;
    line-height: 1.6;
}

.project-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    padding-top: 20px;
    border-top: 1px solid var(--black-border);
}

.project-stat {
    text-align: center;
}

.stat-value {
    display: block;
    font-size: 24px;
    font-weight: 800;
    background: var(--orange-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    line-height: 1;
    margin-bottom: 4px;
}

.stat-label {
    font-size: 12px;
    color: var(--gray-medium);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* ===== Секция: Технологии ===== */
.tech-section {
    padding: 100px 0;
    background: linear-gradient(180deg, 
        rgba(17, 17, 17, 0.7) 0%,
        rgba(10, 10, 10, 0.9) 100%);
}

.tech-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 60px;
}

.tech-stats {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}

.tech-stat {
    background: rgba(21, 21, 21, 0.9);
    border-radius: 20px;
    padding: 25px;
    border: 1px solid var(--black-border);
    display: flex;
    align-items: center;
    gap: 20px;
    transition: all var(--transition-medium);
}

.tech-stat:hover {
    border-color: var(--orange-primary);
    transform: translateY(-5px);
}

.tech-stat-icon {
    width: 50px;
    height: 50px;
    background: var(--orange-gradient);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: var(--black-void);
    flex-shrink: 0;
}

.tech-stat-value {
    font-size: 28px;
    font-weight: 900;
    background: var(--orange-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    line-height: 1;
    margin-bottom: 4px;
}

.tech-stat-label {
    font-size: 14px;
    color: var(--gray-medium);
}

.tech-features {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.tech-feature {
    background: rgba(21, 21, 21, 0.9);
    border-radius: 20px;
    padding: 30px;
    border: 1px solid var(--black-border);
    display: flex;
    align-items: flex-start;
    gap: 20px;
    transition: all var(--transition-medium);
}

.tech-feature:hover {
    border-color: var(--orange-primary);
    transform: translateY(-5px);
}

.tech-feature-icon {
    width: 50px;
    height: 50px;
    background: var(--orange-gradient);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: var(--black-void);
    flex-shrink: 0;
    margin-top: 5px;
}

.tech-feature-content h4 {
    font-size: 20px;
    color: var(--gray-text);
    margin-bottom: 10px;
    font-weight: 700;
}

.tech-feature-content p {
    font-size: 15px;
    color: var(--gray-light);
    line-height: 1.6;
}

/* ===== Секция: CTA ===== */
.cta-section {
    padding: 120px 0;
    background: linear-gradient(135deg, 
        rgba(255, 123, 0, 0.15) 0%,
        rgba(10, 10, 10, 0.95) 100%);
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100" preserveAspectRatio="none"><path fill="%23ff7b00" opacity="0.03" d="M0,0 L100,0 L100,100 Z"/></svg>');
    background-size: cover;
    pointer-events: none;
}

.cta-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 1;
}

.cta-title {
    font-size: 48px;
    font-weight: 900;
    color: var(--gray-text);
    margin-bottom: 20px;
    line-height: 1.2;
}

.cta-subtitle {
    font-size: 18px;
    color: var(--gray-light);
    margin-bottom: 50px;
    line-height: 1.6;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-stats {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-bottom: 50px;
}

.cta-stat {
    text-align: center;
}

.cta-stat-value {
    font-size: 36px;
    font-weight: 900;
    background: var(--orange-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    line-height: 1;
    margin-bottom: 8px;
}

.cta-stat-label {
    font-size: 14px;
    color: var(--gray-medium);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.cta-buttons {
    display: flex;
    gap: 30px;
    justify-content: center;
    margin-bottom: 30px;
}

.btn-xl {
    padding: 20px 45px;
    font-size: 18px;
    font-weight: 700;
}

.cta-note {
    font-size: 14px;
    color: var(--gray-medium);
    font-style: italic;
}

/* ===== АДАПТИВНОСТЬ ДЛЯ НОВЫХ СЕКЦИЙ ===== */
@media (max-width: 1200px) {
    .features-grid,
    .projects-grid {
        gap: 25px;
    }
    
    .tech-content {
        gap: 40px;
    }
}

@media (max-width: 992px) {
    .features-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin-left: auto;
        margin-right: auto;
    }
    
    .projects-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .tech-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .cta-stats {
        flex-wrap: wrap;
        gap: 30px;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .btn-xl {
        width: 100%;
        max-width: 300px;
    }
}

@media (max-width: 768px) {
    .projects-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin-left: auto;
        margin-right: auto;
    }
    
    .cta-title {
        font-size: 36px;
    }
    
    .cta-subtitle {
        font-size: 16px;
        padding: 0 20px;
    }
    
    .cta-stats {
        flex-direction: column;
        align-items: center;
        gap: 25px;
    }
    
    .tech-feature {
        flex-direction: column;
        text-align: center;
    }
    
    .tech-feature-icon {
        margin: 0 auto 20px;
    }
}

@media (max-width: 576px) {
    .feature-card,
    .project-card,
    .tech-feature {
        padding: 25px 20px;
    }
    
    .cta-title {
        font-size: 32px;
    }
    
    .cta-stat-value {
        font-size: 28px;
    }
}
/* ===== Секция: Почему выбирают нас ===== */
.why-choose-section {
    padding: 100px 0;
    background: linear-gradient(180deg, 
        rgba(10, 10, 10, 0.9) 0%,
        rgba(17, 17, 17, 0.7) 100%);
}

.reasons-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.reason-card {
    background: rgba(21, 21, 21, 0.9);
    backdrop-filter: blur(10px);
    border-radius: 24px;
    padding: 40px;
    border: 1px solid var(--black-border);
    transition: all var(--transition-medium);
    text-align: center;
}

.reason-card:hover {
    transform: translateY(-10px);
    border-color: var(--orange-primary);
    box-shadow: var(--hover-shadow);
}

.reason-icon {
    width: 70px;
    height: 70px;
    background: var(--orange-gradient);
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    font-size: 32px;
    color: var(--black-void);
}

.reason-card h3 {
    font-size: 22px;
    color: var(--gray-text);
    margin-bottom: 15px;
    font-weight: 700;
}

.reason-card p {
    font-size: 15px;
    color: var(--gray-light);
    line-height: 1.6;
}

/* ===== Секция: Проекты ===== */
.projects-section {
    padding: 100px 0;
    background: linear-gradient(180deg, 
        rgba(17, 17, 17, 0.7) 0%,
        rgba(10, 10, 10, 0.9) 100%);
}

.projects-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.project-card {
    background: rgba(21, 21, 21, 0.9);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 30px;
    border: 1px solid var(--black-border);
    transition: all var(--transition-medium);
    position: relative;
    overflow: hidden;
}

.project-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--hover-shadow);
    border-color: var(--orange-primary);
}

.project-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.project-icon {
    width: 50px;
    height: 50px;
    background: var(--orange-gradient);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: var(--black-void);
    flex-shrink: 0;
}

.project-header h3 {
    font-size: 20px;
    color: var(--gray-text);
    font-weight: 700;
    flex: 1;
}

.project-tag {
    background: rgba(255, 123, 0, 0.1);
    color: var(--orange-primary);
    padding: 6px 12px;
    border-radius: 12px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.project-content p {
    font-size: 15px;
    color: var(--gray-light);
    margin-bottom: 25px;
    line-height: 1.6;
}

.project-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    padding-top: 20px;
    border-top: 1px solid var(--black-border);
}

.project-stat {
    text-align: center;
}

.stat-value {
    display: block;
    font-size: 24px;
    font-weight: 800;
    background: var(--orange-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    line-height: 1;
    margin-bottom: 4px;
}

.stat-label {
    font-size: 12px;
    color: var(--gray-medium);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* ===== Секция: Отзывы ===== */
.testimonials-section {
    padding: 100px 0;
    background: linear-gradient(180deg, 
        rgba(10, 10, 10, 0.9) 0%,
        rgba(17, 17, 17, 0.7) 100%);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.testimonial-card {
    background: rgba(21, 21, 21, 0.9);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 30px;
    border: 1px solid var(--black-border);
    transition: all var(--transition-medium);
    display: flex;
    flex-direction: column;
    height: 100%;
}

.testimonial-card:hover {
    transform: translateY(-8px);
    border-color: var(--orange-primary);
    box-shadow: var(--hover-shadow);
}

.testimonial-content {
    flex: 1;
    margin-bottom: 25px;
}

.testimonial-content p {
    font-size: 16px;
    color: var(--gray-light);
    line-height: 1.7;
    font-style: italic;
    position: relative;
    padding-left: 20px;
}

.testimonial-content p::before {
    content: '"';
    position: absolute;
    left: 0;
    top: 0;
    color: var(--orange-primary);
    font-size: 32px;
    line-height: 1;
    font-family: Georgia, serif;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
    padding-top: 20px;
    border-top: 1px solid var(--black-border);
}

.author-avatar {
    width: 50px;
    height: 50px;
    background: rgba(255, 123, 0, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: var(--orange-primary);
    flex-shrink: 0;
}

.author-info h4 {
    font-size: 16px;
    color: var(--gray-text);
    margin-bottom: 4px;
    font-weight: 600;
}

.author-info p {
    font-size: 13px;
    color: var(--gray-medium);
}

/* ===== Секция: Поддержка ===== */
.support-section {
    padding: 100px 0;
    background: linear-gradient(180deg, 
        rgba(17, 17, 17, 0.7) 0%,
        rgba(10, 10, 10, 0.9) 100%);
}

.support-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.support-card {
    background: rgba(21, 21, 21, 0.9);
    backdrop-filter: blur(10px);
    border-radius: 24px;
    padding: 40px 30px;
    border: 2px solid var(--black-border);
    transition: all var(--transition-medium);
    position: relative;
    text-align: center;
}

.support-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--hover-shadow);
}

.support-card.featured {
    border-color: var(--orange-primary);
    transform: scale(1.05);
}

.support-card.featured:hover {
    transform: scale(1.05) translateY(-10px);
}

.support-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--orange-gradient);
    color: var(--black-void);
    padding: 6px 20px;
    border-radius: 15px;
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    z-index: 2;
}

.support-header {
    margin-bottom: 30px;
}

.support-icon {
    width: 70px;
    height: 70px;
    background: var(--orange-gradient);
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 32px;
    color: var(--black-void);
}

.support-card:nth-child(1) .support-icon {
    background: var(--gray-medium);
}

.support-card:nth-child(3) .support-icon {
    background: linear-gradient(135deg, #ff3366, #ff3366);
}

.support-card h3 {
    font-size: 24px;
    color: var(--gray-text);
    margin-bottom: 15px;
    font-weight: 700;
}

.support-price {
    margin-bottom: 10px;
}

.price-amount {
    display: block;
    font-size: 42px;
    font-weight: 900;
    background: var(--orange-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    line-height: 1;
    margin-bottom: 5px;
}

.support-card:nth-child(1) .price-amount {
    background: var(--gray-medium);
    -webkit-background-clip: text;
    background-clip: text;
}

.support-card:nth-child(3) .price-amount {
    font-size: 36px;
    background: linear-gradient(135deg, #ff3366, #ff3366);
    -webkit-background-clip: text;
    background-clip: text;
}

.price-period {
    font-size: 14px;
    color: var(--gray-medium);
    display: block;
}

.support-features {
    margin-bottom: 30px;
}

.support-features .feature {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
    font-size: 14px;
    color: var(--gray-light);
    text-align: left;
    padding: 8px 0;
}

.support-features .feature i {
    color: var(--success);
    font-size: 16px;
    width: 20px;
    flex-shrink: 0;
}

.btn-block {
    width: 100%;
    padding: 15px;
    font-size: 16px;
    font-weight: 600;
}

/* ===== Секция: Дорожная карта ===== */
.roadmap-section {
    padding: 100px 0;
    background: linear-gradient(180deg, 
        rgba(10, 10, 10, 0.9) 0%,
        rgba(17, 17, 17, 0.7) 100%);
}

.roadmap-timeline {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}

.roadmap-timeline::before {
    content: '';
    position: absolute;
    left: 30px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: var(--orange-gradient);
    opacity: 0.3;
}

.timeline-item {
    position: relative;
    padding-left: 80px;
    margin-bottom: 50px;
}

.timeline-item::before {
    content: '';
    position: absolute;
    left: 24px;
    top: 0;
    width: 14px;
    height: 14px;
    background: var(--orange-primary);
    border-radius: 50%;
    box-shadow: 0 0 20px var(--orange-glow);
    z-index: 2;
}

.timeline-date {
    font-size: 18px;
    font-weight: 700;
    color: var(--orange-primary);
    margin-bottom: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.timeline-content h3 {
    font-size: 22px;
    color: var(--gray-text);
    margin-bottom: 15px;
    font-weight: 700;
}

.timeline-content ul {
    list-style: none;
}

.timeline-content li {
    position: relative;
    padding-left: 24px;
    margin-bottom: 10px;
    font-size: 15px;
    color: var(--gray-light);
    line-height: 1.6;
}

.timeline-content li::before {
    content: '▸';
    position: absolute;
    left: 0;
    color: var(--orange-primary);
    font-weight: bold;
}

/* ===== Секция: Присоединяйтесь ===== */
.join-section {
    padding: 100px 0;
    background: linear-gradient(180deg, 
        rgba(17, 17, 17, 0.7) 0%,
        rgba(10, 10, 10, 0.9) 100%);
}

.join-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    margin-bottom: 60px;
}

.join-form {
    background: rgba(21, 21, 21, 0.9);
    backdrop-filter: blur(10px);
    border-radius: 24px;
    padding: 40px;
    border: 1px solid var(--black-border);
}

.join-form h3 {
    font-size: 24px;
    color: var(--gray-text);
    margin-bottom: 15px;
    font-weight: 700;
}

.join-form p {
    font-size: 15px;
    color: var(--gray-light);
    margin-bottom: 30px;
    line-height: 1.6;
}

.form-group {
    display: flex;
    gap: 15px;
}

.form-group input {
    flex: 1;
    background: rgba(34, 34, 34, 0.8);
    border: 1px solid var(--black-border);
    border-radius: 12px;
    padding: 15px 20px;
    color: var(--gray-text);
    font-size: 15px;
    transition: all var(--transition-medium);
}

.form-group input:focus {
    outline: none;
    border-color: var(--orange-primary);
    box-shadow: 0 0 0 2px rgba(255, 123, 0, 0.2);
}

.form-group input::placeholder {
    color: var(--gray-medium);
}

.join-help h3 {
    font-size: 24px;
    color: var(--gray-text);
    margin-bottom: 25px;
    font-weight: 700;
}

.help-options {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}

.help-option {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 20px;
    background: rgba(21, 21, 21, 0.9);
    border-radius: 16px;
    border: 1px solid var(--black-border);
    transition: all var(--transition-medium);
}

.help-option:hover {
    border-color: var(--orange-primary);
    transform: translateY(-5px);
}

.help-icon {
    width: 50px;
    height: 50px;
    background: var(--orange-gradient);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    color: var(--black-void);
    flex-shrink: 0;
}

.help-content h4 {
    font-size: 17px;
    color: var(--gray-text);
    margin-bottom: 5px;
    font-weight: 600;
}

.help-content p {
    font-size: 14px;
    color: var(--gray-light);
    line-height: 1.5;
}

.join-social {
    background: rgba(21, 21, 21, 0.9);
    backdrop-filter: blur(10px);
    border-radius: 24px;
    padding: 40px;
    border: 1px solid var(--black-border);
    text-align: center;
}

.join-social h3 {
    font-size: 24px;
    color: var(--gray-text);
    margin-bottom: 30px;
    font-weight: 700;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.social-link {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 15px 25px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    transition: all var(--transition-medium);
    min-width: 150px;
    justify-content: center;
}

.social-link.telegram {
    background: linear-gradient(135deg, #0088cc, #0088cc);
    color: white;
}

.social-link.vk {
    background: linear-gradient(135deg, #4c75a3, #4c75a3);
    color: white;
}

.social-link.discord {
    background: linear-gradient(135deg, #5865f2, #5865f2);
    color: white;
}

.social-link:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}

/* ===== Обновления футера ===== */
.footer-idea {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 20px;
    padding: 15px;
    background: rgba(255, 123, 0, 0.1);
    border-radius: 12px;
    border: 1px solid rgba(255, 123, 0, 0.2);
}

.footer-idea i {
    color: var(--orange-primary);
    font-size: 20px;
    flex-shrink: 0;
}

.footer-idea span {
    font-size: 14px;
    color: var(--gray-light);
    line-height: 1.5;
}

.footer-bottom p:last-child {
    font-size: 14px;
    color: var(--gray-medium);
    margin-top: 8px;
}

/* ===== АДАПТИВНОСТЬ ===== */
@media (max-width: 1200px) {
    .reasons-grid,
    .testimonials-grid,
    .support-grid {
        gap: 25px;
    }
}

@media (max-width: 992px) {
    .reasons-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin: 0 auto;
    }
    
    .projects-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin: 0 auto;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin: 0 auto;
    }
    
    .support-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin: 0 auto;
    }
    
    .support-card.featured {
        transform: none;
    }
    
    .support-card.featured:hover {
        transform: translateY(-10px);
    }
    
    .join-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .social-links {
        flex-direction: column;
        align-items: center;
    }
    
    .social-link {
        width: 100%;
        max-width: 250px;
    }
}

@media (max-width: 768px) {
    .timeline-item {
        padding-left: 60px;
    }
    
    .roadmap-timeline::before {
        left: 20px;
    }
    
    .timeline-item::before {
        left: 14px;
    }
    
    .form-group {
        flex-direction: column;
    }
    
    .help-option {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 576px) {
    .reason-card,
    .project-card,
    .testimonial-card,
    .support-card,
    .join-form,
    .join-social {
        padding: 25px 20px;
    }
    
    .timeline-item {
        padding-left: 50px;
    }
    
    .roadmap-timeline::before {
        left: 15px;
    }
    
    .timeline-item::before {
        left: 9px;
    }
}
/* МОДАЛЬНОЕ ОКНО ОПЛАТЫ */
.payment-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(10px);
    z-index: 9999;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.payment-modal.active {
    display: flex;
    animation: fadeIn 0.3s ease;
}

.payment-content {
    background: rgba(21, 21, 21, 0.95);
    border: 1px solid #333;
    border-radius: 16px;
    width: 100%;
    max-width: 600px;
    max-height: 90vh;
    overflow-y: auto;
    animation: slideUp 0.4s ease;
}

.payment-header {
    padding: 20px 30px;
    border-bottom: 1px solid #333;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.payment-header h2 {
    color: #ff9900;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.5rem;
    margin: 0;
}

.payment-close {
    background: none;
    border: none;
    color: #888;
    font-size: 2rem;
    cursor: pointer;
    line-height: 1;
    transition: color 0.3s;
}

.payment-close:hover {
    color: #ff6600;
}

.payment-body {
    padding: 30px;
}

.plan-selection {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 30px;
}

.plan {
    background: rgba(255, 255, 255, 0.03);
    border: 2px solid #333;
    border-radius: 12px;
    padding: 20px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.plan:hover {
    border-color: #ff6600;
    background: rgba(255, 102, 0, 0.05);
}

.plan.active {
    border-color: #ff9900;
    background: rgba(255, 153, 0, 0.1);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(255, 153, 0, 0.2);
}

.plan-header {
    margin-bottom: 15px;
}

.plan-header h3 {
    color: #f0f0f0;
    margin-bottom: 10px;
    font-size: 1.2rem;
}

.plan-price {
    display: flex;
    align-items: baseline;
    gap: 5px;
}

.plan-price .price {
    font-size: 2rem;
    font-weight: bold;
    color: #ff9900;
}

.plan-price .period {
    color: #888;
    font-size: 0.9rem;
}

.plan-save {
    display: inline-block;
    background: #00cc66;
    color: white;
    padding: 4px 10px;
    border-radius: 20px;
    font-size: 0.8rem;
    margin-top: 5px;
    font-weight: bold;
}

.plan-features {
    list-style: none;
    padding: 0;
    margin: 0;
}

.plan-features li {
    color: #ccc;
    margin-bottom: 8px;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

.plan-features li i {
    color: #00cc66;
    font-size: 0.8rem;
}

.payment-methods {
    margin-bottom: 30px;
}

.payment-methods h3 {
    color: #f0f0f0;
    margin-bottom: 15px;
    font-size: 1.2rem;
}

.methods-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
    margin-bottom: 20px;
}

.method {
    background: rgba(255, 255, 255, 0.03);
    border: 2px solid #333;
    border-radius: 8px;
    padding: 15px;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.method:hover {
    border-color: #ff6600;
}

.method.active {
    border-color: #ff9900;
    background: rgba(255, 153, 0, 0.1);
}

.method i {
    font-size: 1.5rem;
    color: #ff9900;
    margin-bottom: 8px;
    display: block;
}

.method span {
    color: #ccc;
    font-size: 0.9rem;
}

.card-form {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid #333;
    border-radius: 10px;
    padding: 20px;
    margin-top: 20px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    color: #ff9900;
    font-weight: 600;
    font-size: 0.9rem;
}

.form-group input {
    width: 100%;
    padding: 12px 15px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid #333;
    border-radius: 8px;
    color: #f0f0f0;
    font-size: 1rem;
    transition: all 0.3s;
}

.form-group input:focus {
    outline: none;
    border-color: #ff6600;
    box-shadow: 0 0 0 2px rgba(255, 102, 0, 0.1);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

.payment-summary {
    background: rgba(255, 102, 0, 0.05);
    border: 1px solid #333;
    border-radius: 10px;
    padding: 20px;
    margin-bottom: 25px;
}

.summary-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.summary-item:last-child {
    border-bottom: none;
}

.summary-item span:first-child {
    color: #ccc;
}

.summary-item span:last-child {
    color: #f0f0f0;
    font-weight: 600;
}

.summary-item.total {
    font-size: 1.2rem;
    margin-top: 10px;
    padding-top: 15px;
    border-top: 2px solid #ff9900;
}

.summary-item.total span:last-child {
    color: #ff9900;
    font-size: 1.5rem;
}

.payment-actions {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
}

.payment-actions .btn {
    flex: 1;
    padding: 15px;
    font-size: 1.1rem;
    font-weight: 600;
}

.payment-confirm {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.payment-security {
    text-align: center;
    color: #888;
    font-size: 0.9rem;
}

.payment-security i {
    color: #00cc66;
    margin-right: 5px;
}

.payment-security .small {
    font-size: 0.8rem;
    margin-top: 5px;
    color: #666;
}

/* ПРЕВЬЮ ПРОЕКТОВ */
.project-preview {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(10px);
    z-index: 9998;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.project-preview.active {
    display: flex;
}

.preview-content {
    background: rgba(21, 21, 21, 0.95);
    border: 1px solid #333;
    border-radius: 16px;
    width: 100%;
    max-width: 900px;
    max-height: 90vh;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.preview-header {
    padding: 20px 30px;
    border-bottom: 1px solid #333;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.preview-header h2 {
    color: #ff9900;
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 0;
}

.preview-body {
    flex: 1;
    overflow-y: auto;
    padding: 30px;
}

.demo-container {
    background: rgba(0, 0, 0, 0.3);
    border-radius: 10px;
    padding: 20px;
    margin-bottom: 30px;
}

.demo-screen {
    background: #1a1a1a;
    border: 2px solid #333;
    border-radius: 8px;
    height: 300px;
    position: relative;
    overflow: hidden;
}

.demo-screen::before {
    content: '';
    position: absolute;
    top: 10px;
    left: 10px;
    right: 10px;
    bottom: 10px;
    background: linear-gradient(45deg, #2a2a2a, #1a1a1a);
    border-radius: 4px;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-top: 30px;
}

.feature-item {
    background: rgba(255, 102, 0, 0.05);
    border: 1px solid #333;
    border-radius: 10px;
    padding: 20px;
}

.feature-item i {
    font-size: 2rem;
    color: #ff6600;
    margin-bottom: 15px;
}

.feature-item h4 {
    color: #f0f0f0;
    margin-bottom: 10px;
}

.feature-item p {
    color: #ccc;
    font-size: 0.9rem;
    line-height: 1.5;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 768px) {
    .plan-selection {
        grid-template-columns: 1fr;
    }
    
    .methods-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
}
/* Увеличенные модальные окна для настроек */
.modal-large {
    width: 800px;
    max-width: 95vw;
    max-height: 90vh;
    overflow-y: auto;
}

.modal-content {
    background: rgba(18, 18, 18, 0.95);
    backdrop-filter: blur(20px);
    border: 1px solid #333;
    border-radius: 16px;
    box-shadow: 0 25px 80px rgba(0, 0, 0, 0.7);
    animation: modalAppear 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.modal-header {
    padding: 25px 30px;
    border-bottom: 1px solid #333;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: rgba(255, 102, 0, 0.05);
    border-radius: 16px 16px 0 0;
}

.modal-header h2 {
    color: #f0f0f0;
    font-size: 1.8rem;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 12px;
}

.modal-body {
    padding: 30px;
    color: #ccc;
}

/* Скроллбар для модальных окон */
.modal-large::-webkit-scrollbar {
    width: 8px;
}

.modal-large::-webkit-scrollbar-track {
    background: rgba(21, 21, 21, 0.5);
    border-radius: 4px;
}

.modal-large::-webkit-scrollbar-thumb {
    background: linear-gradient(135deg, #ff6600, #ff9900);
    border-radius: 4px;
}

.modal-large::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(135deg, #ff5500, #ff8800);
}
/* ==================== СТИЛИ ДЛЯ НАСТРОЕК ==================== */

/* Контейнер модального окна */
.modal-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(10px);
    z-index: 9999;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

/* Модальное окно */
.modal {
    display: none;
    animation: modalFadeIn 0.3s ease;
}

.modal-content {
    background: #1a1a1a;
    border: 1px solid #333;
    border-radius: 16px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    overflow: hidden;
    max-height: 90vh;
    display: flex;
    flex-direction: column;
}

.modal-medium {
    width: 600px;
    max-width: 95vw;
}

.modal-large {
    width: 800px;
    max-width: 95vw;
}

.modal-header {
    padding: 20px 30px;
    border-bottom: 1px solid #333;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: rgba(255, 102, 0, 0.05);
}

.modal-header h2 {
    color: #f0f0f0;
    font-size: 1.5rem;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 10px;
}

.modal-header h2 i {
    color: #ff6600;
}

.modal-close {
    background: none;
    border: none;
    color: #888;
    font-size: 1.2rem;
    cursor: pointer;
    padding: 8px;
    border-radius: 8px;
    transition: all 0.3s ease;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-close:hover {
    background: rgba(255, 102, 0, 0.1);
    color: #ff6600;
    transform: rotate(90deg);
}

.modal-body {
    padding: 30px;
    overflow-y: auto;
    flex: 1;
}

/* Профиль */
.profile-modal {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.profile-header {
    display: flex;
    align-items: center;
    gap: 25px;
    padding-bottom: 20px;
    border-bottom: 1px solid #333;
}

.profile-avatar {
    position: relative;
    width: 100px;
    height: 100px;
    flex-shrink: 0;
}

.profile-avatar img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    border: 3px solid #ff6600;
    object-fit: cover;
}

.btn-change-avatar {
    position: absolute;
    bottom: 0;
    right: 0;
    background: #ff6600;
    color: white;
    border: none;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    transition: all 0.3s ease;
    border: 2px solid #1a1a1a;
}

.btn-change-avatar:hover {
    background: #ff5500;
    transform: scale(1.1);
}

.profile-info {
    flex: 1;
}

.profile-info h3 {
    color: #f0f0f0;
    margin: 0 0 8px 0;
    font-size: 1.8rem;
    font-weight: 600;
}

.profile-info p {
    color: #888;
    margin: 0 0 12px 0;
    font-size: 0.95rem;
}

.profile-status {
    display: flex;
    align-items: center;
    gap: 8px;
}

.profile-details {
    display: flex;
    flex-direction: column;
    gap: 12px;
    background: rgba(255, 255, 255, 0.02);
    padding: 20px;
    border-radius: 12px;
    border: 1px solid #333;
}

.detail-item {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: 10px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.detail-item:last-child {
    border-bottom: none;
}

.detail-label {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #f0f0f0;
    font-size: 0.95rem;
    font-weight: 500;
}

.detail-label i {
    color: #ff6600;
    width: 16px;
}

.detail-value {
    color: #888;
    font-size: 0.95rem;
    text-align: right;
    max-width: 250px;
    word-break: break-word;
}

.role-badge {
    background: rgba(255, 102, 0, 0.2);
    color: #ff6600;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
}

.profile-actions {
    display: flex;
    justify-content: center;
    margin-top: 10px;
}

/* Настройки */
.settings-modal {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.settings-tabs {
    display: flex;
    gap: 2px;
    border-bottom: 1px solid #333;
    padding-bottom: 0;
    margin-bottom: 25px;
    flex-wrap: wrap;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 12px 12px 0 0;
    padding: 5px;
}

.settings-tab {
    background: none;
    border: none;
    color: #888;
    padding: 12px 18px;
    cursor: pointer;
    border-radius: 8px;
    transition: all 0.3s ease;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 500;
}

.settings-tab i {
    font-size: 1rem;
}

.settings-tab:hover {
    background: rgba(255, 102, 0, 0.1);
    color: #ff6600;
}

.settings-tab.active {
    background: rgba(255, 102, 0, 0.15);
    color: #ff6600;
    box-shadow: 0 2px 8px rgba(255, 102, 0, 0.2);
}

.settings-panel {
    display: none;
    flex-direction: column;
    gap: 20px;
}

.settings-panel.active {
    display: flex;
}

.settings-panel h3 {
    color: #f0f0f0;
    font-size: 1.2rem;
    margin: 0 0 5px 0;
    font-weight: 600;
    border-left: 4px solid #ff6600;
    padding-left: 15px;
}

.settings-panel h4 {
    color: #f0f0f0;
    font-size: 1rem;
    margin: 0 0 15px 0;
    font-weight: 500;
}

/* Формы */
.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group {
    margin-bottom: 15px;
}

.form-group label {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 8px;
    color: #ff9900;
    font-weight: 500;
    font-size: 0.9rem;
}

.form-group label i {
    color: #ff6600;
    font-size: 0.9rem;
}

.settings-input,
.settings-select,
.settings-textarea {
    width: 100%;
    padding: 12px 16px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid #333;
    border-radius: 10px;
    color: #f0f0f0;
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

.settings-input:focus,
.settings-select:focus,
.settings-textarea:focus {
    outline: none;
    border-color: #ff6600;
    background: rgba(255, 102, 0, 0.05);
    box-shadow: 0 0 0 3px rgba(255, 102, 0, 0.1);
}

.settings-input:hover,
.settings-select:hover,
.settings-textarea:hover {
    border-color: #ff6600;
}

.settings-textarea {
    resize: vertical;
    min-height: 100px;
}

.form-group small {
    display: block;
    margin-top: 6px;
    color: #888;
    font-size: 0.8rem;
}

/* Чекбоксы */
.checkbox-wrapper {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.checkbox-label {
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    color: #f0f0f0;
}

.checkbox-label input[type="checkbox"] {
    display: none;
}

.checkbox-custom {
    width: 20px;
    height: 20px;
    border: 2px solid #333;
    border-radius: 6px;
    background: rgba(255, 255, 255, 0.05);
    position: relative;
    transition: all 0.2s ease;
}

.checkbox-label input[type="checkbox"]:checked + .checkbox-custom {
    background: #ff6600;
    border-color: #ff6600;
}

.checkbox-label input[type="checkbox"]:checked + .checkbox-custom::after {
    content: '\f00c';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    font-size: 12px;
}

.checkbox-text {
    color: #f0f0f0;
}

/* Privacy options */
.privacy-option,
.notification-option {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 0;
    border-bottom: 1px solid #333;
}

.privacy-option:last-child,
.notification-option:last-child {
    border-bottom: none;
}

.privacy-info,
.notification-info {
    flex: 1;
}

.privacy-info h4,
.notification-info h4 {
    color: #f0f0f0;
    margin: 0 0 5px 0;
    font-size: 1rem;
}

.privacy-info p,
.notification-info p {
    color: #888;
    margin: 0;
    font-size: 0.85rem;
}

.privacy-select {
    width: 200px;
    padding: 8px 12px;
}

/* Switch toggle */
.switch {
    position: relative;
    display: inline-block;
    width: 52px;
    height: 26px;
    flex-shrink: 0;
}

.switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #333;
    transition: .3s;
    border-radius: 34px;
}

.slider:before {
    position: absolute;
    content: "";
    height: 20px;
    width: 20px;
    left: 3px;
    bottom: 3px;
    background-color: white;
    transition: .3s;
    border-radius: 50%;
}

input:checked + .slider {
    background-color: #ff6600;
}

input:checked + .slider:before {
    transform: translateX(26px);
}

/* Themes */
.theme-section,
.appearance-section,
.security-section {
    background: rgba(255, 255, 255, 0.02);
    border-radius: 12px;
    padding: 20px;
    margin-bottom: 20px;
    border: 1px solid #333;
}

.theme-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-top: 15px;
}

.theme-option {
    padding: 20px;
    border: 2px solid #333;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    background: rgba(255, 255, 255, 0.02);
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.theme-option:hover {
    border-color: #ff6600;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(255, 102, 0, 0.2);
}

.theme-option.selected {
    border-color: #ff6600;
    background: rgba(255, 102, 0, 0.1);
    box-shadow: 0 0 0 2px rgba(255, 102, 0, 0.3);
}

.theme-preview {
    height: 80px;
    border-radius: 8px;
    position: relative;
    overflow: hidden;
}

.theme-preview.dark {
    background: #121212;
}

.theme-preview.light {
    background: #f5f5f5;
}

.preview-header {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 20px;
    background: #ff6600;
}

.preview-content {
    position: absolute;
    top: 30px;
    left: 15px;
    right: 15px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.preview-line {
    height: 8px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 4px;
}

.theme-preview.light .preview-line {
    background: rgba(0, 0, 0, 0.1);
}

.preview-line.short {
    width: 60%;
}

.theme-info {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.theme-name {
    color: #f0f0f0;
    font-weight: 600;
    font-size: 1.1rem;
}

.theme-desc {
    color: #888;
    font-size: 0.85rem;
}

/* Font size options */
.font-size-options {
    display: flex;
    gap: 20px;
    margin-top: 15px;
    flex-wrap: wrap;
}

.font-option {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    padding: 15px;
    border-radius: 12px;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    min-width: 100px;
}

.font-option:hover {
    background: rgba(255, 102, 0, 0.05);
    border-color: #ff6600;
}

.font-option input[type="radio"] {
    display: none;
}

.font-option input[type="radio"]:checked + .font-preview {
    border-color: #ff6600;
    background: rgba(255, 102, 0, 0.1);
}

.font-preview {
    font-weight: 600;
    border: 2px solid #333;
    padding: 10px;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.font-preview.small {
    font-size: 14px;
}

.font-preview.medium {
    font-size: 16px;
}

.font-preview.large {
    font-size: 18px;
}

.font-label {
    color: #f0f0f0;
    font-size: 0.9rem;
}

/* Settings actions */
.settings-actions {
    display: flex;
    justify-content: flex-end;
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid #333;
}

/* Buttons */
.btn {
    padding: 12px 24px;
    border-radius: 10px;
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.btn-primary {
    background: linear-gradient(135deg, #ff6600, #ff9900);
    color: white;
}

.btn-primary:hover {
    background: linear-gradient(135deg, #ff5500, #ff8800);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 102, 0, 0.4);
}

.btn-outline {
    background: transparent;
    border: 1px solid #ff6600;
    color: #ff6600;
}

.btn-outline:hover {
    background: rgba(255, 102, 0, 0.1);
    transform: translateY(-2px);
}

.btn-block {
    width: 100%;
}

/* Animations */
@keyframes modalFadeIn {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideIn {
    from {
        transform: translateX(100%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes slideOut {
    from {
        transform: translateX(0);
        opacity: 1;
    }
    to {
        transform: translateX(100%);
        opacity: 0;
    }
}

/* Scrollbar */
.modal-body::-webkit-scrollbar {
    width: 8px;
}

.modal-body::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 4px;
}

.modal-body::-webkit-scrollbar-thumb {
    background: #333;
    border-radius: 4px;
}

.modal-body::-webkit-scrollbar-thumb:hover {
    background: #ff6600;
}

/* Responsive */
@media (max-width: 768px) {
    .modal-header {
        padding: 15px 20px;
    }
    
    .modal-body {
        padding: 20px;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }
    
    .profile-header {
        flex-direction: column;
        text-align: center;
    }
    
    .profile-status {
        justify-content: center;
    }
    
    .detail-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }
    
    .detail-value {
        text-align: left;
    }
    
    .privacy-option,
    .notification-option {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }
    
    .privacy-select {
        width: 100%;
    }
    
    .settings-tabs {
        justify-content: center;
    }
    
    .settings-tab {
        padding: 8px 12px;
        font-size: 0.85rem;
    }
    
    .settings-tab i {
        margin-right: 0;
    }
    
    .settings-tab span {
        display: none;
    }
    
    .theme-options {
        grid-template-columns: 1fr;
    }
}

/* Light theme */
[data-theme="light"] .modal-content {
    background: #ffffff;
    border-color: #e0e0e0;
}

[data-theme="light"] .modal-header {
    background: rgba(255, 102, 0, 0.03);
    border-bottom-color: #e0e0e0;
}

[data-theme="light"] .modal-header h2 {
    color: #333;
}

[data-theme="light"] .profile-info h3,
[data-theme="light"] .settings-panel h3,
[data-theme="light"] .detail-label,
[data-theme="light"] .theme-name,
[data-theme="light"] .privacy-info h4,
[data-theme="light"] .notification-info h4 {
    color: #333;
}

[data-theme="light"] .profile-info p,
[data-theme="light"] .detail-value,
[data-theme="light"] .theme-desc,
[data-theme="light"] .privacy-info p,
[data-theme="light"] .notification-info p,
[data-theme="light"] .form-group small {
    color: #666;
}

[data-theme="light"] .profile-details,
[data-theme="light"] .theme-section,
[data-theme="light"] .appearance-section,
[data-theme="light"] .security-section {
    background: rgba(0, 0, 0, 0.02);
    border-color: #e0e0e0;
}

[data-theme="light"] .settings-input,
[data-theme="light"] .settings-select,
[data-theme="light"] .settings-textarea {
    background: #f5f5f5;
    border-color: #ddd;
    color: #333;
}

[data-theme="light"] .checkbox-custom {
    background: #f5f5f5;
    border-color: #ddd;
}

[data-theme="light"] .theme-option {
    background: #f5f5f5;
    border-color: #ddd;
}

[data-theme="light"] .theme-preview.dark {
    background: #333;
}

[data-theme="light"] .theme-preview.light {
    background: #fff;
    border: 1px solid #ddd;
}
/* Индикатор загрузки для аватара */
.avatar-loading {
    position: relative;
}

.avatar-loading::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.avatar-loading::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 30px;
    height: 30px;
    border: 3px solid #fff;
    border-top-color: #ff6600;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    z-index: 1;
}

@keyframes spin {
    to { transform: translate(-50%, -50%) rotate(360deg); }
}/* Индикатор загрузки для аватара */
.avatar-loading {
    position: relative;
}

.avatar-loading::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.avatar-loading::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 30px;
    height: 30px;
    border: 3px solid #fff;
    border-top-color: #ff6600;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    z-index: 1;
}

@keyframes spin {
    to { transform: translate(-50%, -50%) rotate(360deg); }
}
/* Стили для аватара и загрузки */
.user-avatar {
    position: relative;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.3s ease;
}

.user-avatar:hover {
    transform: scale(1.05);
    box-shadow: 0 0 20px rgba(255, 102, 0, 0.3);
}

.avatar-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Индикатор загрузки */
.avatar-loading {
    position: relative;
}

.avatar-loading::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    border-radius: 50%;
    z-index: 1;
}

.avatar-loading::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 20px;
    height: 20px;
    border: 2px solid #fff;
    border-top-color: #ff6600;
    border-radius: 50%;
    animation: avatar-spin 1s linear infinite;
    z-index: 2;
}

@keyframes avatar-spin {
    to { transform: translate(-50%, -50%) rotate(360deg); }
}

/* Кнопка смены аватара */
.avatar-upload-btn {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 35px;
    height: 35px;
    background: #ff6600;
    border: 2px solid #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
}

.avatar-upload-btn:hover {
    transform: scale(1.1);
    background: #ff8533;
}

/* История аватаров */
.avatar-history {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(80px, 1fr));
    gap: 15px;
    margin-top: 20px;
}

.avatar-history-item {
    position: relative;
    width: 80px;
    height: 80px;
    border-radius: 10px;
    overflow: hidden;
    cursor: pointer;
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

.avatar-history-item:hover {
    transform: scale(1.1);
    border-color: #ff6600;
}

.avatar-history-item.current {
    border-color: #ff6600;
    box-shadow: 0 0 20px rgba(255, 102, 0, 0.5);
}

.avatar-history-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.avatar-history-delete {
    position: absolute;
    top: 5px;
    right: 5px;
    width: 20px;
    height: 20px;
    background: rgba(255, 0, 0, 0.8);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 12px;
    cursor: pointer;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.avatar-history-item:hover .avatar-history-delete {
    opacity: 1;
}