/* ===== ОСНОВНЫЕ ПЕРЕМЕННЫЕ ===== */
:root {
    --bg: #0a0a0f;
    --bg-secondary: #12121a;
    --card-bg: rgba(255, 255, 255, 0.03);
    --card-border: rgba(255, 255, 255, 0.08);
    --text-primary: #ffffff;
    --text-secondary: #a0a0b8;
    --text-muted: #6b6b85;
    --accent-1: #ff3d7f;
    --accent-2: #7c3aed;
    --accent-3: #00d4ff;
    --accent-4: #ff6b35;
    --accent-5: #00ff88;
    --accent-6: #ffd700;
    --gradient-1: linear-gradient(135deg, #ff3d7f, #7c3aed);
    --gradient-2: linear-gradient(135deg, #00d4ff, #7c3aed);
    --gradient-3: linear-gradient(135deg, #ff6b35, #ff3d7f);
    --gradient-4: linear-gradient(135deg, #00ff88, #00d4ff);
    --gradient-5: linear-gradient(135deg, #ffd700, #ff6b35);
    --gradient-6: linear-gradient(135deg, #ff3d7f, #ffd700);
    --glow-pink: 0 0 30px rgba(255, 61, 127, 0.5);
    --glow-purple: 0 0 30px rgba(124, 58, 237, 0.5);
    --glow-cyan: 0 0 30px rgba(0, 212, 255, 0.5);
    --glow-orange: 0 0 30px rgba(255, 107, 53, 0.5);
    --glow-green: 0 0 30px rgba(0, 255, 136, 0.5);
    --glow-gold: 0 0 30px rgba(255, 215, 0, 0.5);
    --radius: 20px;
    --radius-sm: 12px;
}

/* ===== СБРОС И БАЗА ===== */
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    font-family: 'Inter', sans-serif;
    background: var(--bg);
    color: var(--text-primary);
    overflow-x: hidden;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

::-webkit-scrollbar { width: 10px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, var(--accent-1), var(--accent-2));
    border-radius: 10px;
    border: 2px solid var(--bg);
}
::-webkit-scrollbar-thumb:hover { background: linear-gradient(180deg, var(--accent-2), var(--accent-3)); }

#particles-canvas { position: fixed; top: 0; left: 0; width: 100%; height: 100%; z-index: 0; pointer-events: none; }
.noise-overlay {
    position: fixed; top: 0; left: 0; width: 100%; height: 100%;
    z-index: 1; pointer-events: none; opacity: 0.03;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
}
.glow-orb {
    position: fixed; border-radius: 50%; filter: blur(120px);
    z-index: 0; pointer-events: none;
}
.glow-orb-1 { width: 600px; height: 600px; background: rgba(255, 61, 127, 0.15); top: -200px; left: -200px; animation: orbFloat1 20s ease-in-out infinite; }
.glow-orb-2 { width: 500px; height: 500px; background: rgba(124, 58, 237, 0.15); bottom: -150px; right: -150px; animation: orbFloat2 20s ease-in-out infinite; }
.glow-orb-3 { width: 400px; height: 400px; background: rgba(0, 212, 255, 0.08); top: 50%; left: 50%; margin: -200px 0 0 -200px; animation: orbFloat3 20s ease-in-out infinite; }
@keyframes orbFloat1 {
    0%, 100% { transform: translate(0, 0) scale(1); }
    25% { transform: translate(50px, 30px) scale(1.1); }
    50% { transform: translate(-30px, 60px) scale(0.9); }
    75% { transform: translate(40px, -40px) scale(1.05); }
}
@keyframes orbFloat2 {
    0%, 100% { transform: translate(0, 0) scale(1); }
    25% { transform: translate(-40px, -30px) scale(1.1); }
    50% { transform: translate(20px, -50px) scale(0.9); }
    75% { transform: translate(-30px, 30px) scale(1.05); }
}
@keyframes orbFloat3 {
    0%, 100% { transform: translate(-50%, -50%) scale(1); }
    25% { transform: translate(-45%, -55%) scale(1.1); }
    50% { transform: translate(-55%, -45%) scale(0.9); }
    75% { transform: translate(-50%, -50%) scale(1.05); }
}

.container { max-width: 1280px; margin: 0 auto; padding: 0 24px; position: relative; z-index: 2; }

/* ===== ШАПКА (компактная) ===== */
.header {
    position: fixed; top: 0; left: 0; right: 0; z-index: 100;
    padding: 10px 0;          /* уменьшено с 20px до 10px */
    transition: all 0.4s ease; background: transparent;
}
.header.scrolled {
    background: rgba(10, 10, 15, 0.85); backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px); padding: 6px 0; /* ещё меньше при скролле */
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}
.header-inner { display: flex; align-items: center; justify-content: space-between; max-width: 1280px; margin: 0 auto; padding: 0 24px; }

/* ЛОГОТИП ZUNO (компактный) */
.logo {
    display: flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    user-select: none;
}
.lightning {
    width: 30px;
    height: 45px;
    position: relative;
    flex-shrink: 0;
}
.lightning::before {
    content: "";
    position: absolute;
    width: 28px;
    height: 44px;
    left: 1px;
    top: 1px;
    background: linear-gradient(145deg, #ffffff 0%, #ffffff 13%, #ff20d7 42%, #c14cff 68%, #795cff 100%);
    clip-path: polygon(76% 0%, 30% 42%, 57% 42%, 5% 100%, 39% 53%, 2% 53%);
    filter: drop-shadow(0 0 3px rgba(255,255,255,.35)) drop-shadow(0 0 6px rgba(255,32,215,.70)) drop-shadow(0 0 14px rgba(142,76,255,.40));
}
.wordmark {
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.word {
    font-family: "Space Grotesk", Inter, Arial, sans-serif;
    font-size: 1.5rem;
    line-height: 1;
    font-weight: 700;
    letter-spacing: -2px;
    color: #ffffff;
}
.slogan {
    margin-top: 3px;
    color: #85858f;
    font-size: 0.55rem;
    line-height: 1;
    font-weight: 700;
    letter-spacing: 1px;
    white-space: nowrap;
    text-transform: uppercase;
}

.header-nav { display: flex; gap: 32px; align-items: center; }
.header-nav a {
    color: var(--text-secondary); text-decoration: none; font-size: 0.9rem;
    font-weight: 500; transition: all 0.3s ease; position: relative;
}
.header-nav a::after {
    content: ''; position: absolute; bottom: -4px; left: 0; width: 0; height: 2px;
    background: var(--gradient-1); transition: width 0.3s ease; border-radius: 2px;
}
.header-nav a:hover { color: var(--text-primary); }
.header-nav a:hover::after { width: 100%; }

/* Гамбургер */
.hamburger {
    display: none; flex-direction: column; gap: 5px; cursor: pointer;
    background: none; border: none; padding: 10px;
}
.hamburger span {
    display: block; width: 25px; height: 2px; background: var(--text-primary);
    transition: all 0.3s ease;
}
.hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* Мобильное меню */
.mobile-menu {
    position: fixed; top: 0; left: 0; right: 0;
    background: rgba(10, 10, 15, 0.98); backdrop-filter: blur(20px);
    padding: 80px 24px 30px; /* уменьшено с 100px до 80px */
    flex-direction: column; gap: 20px;
    border-bottom: 1px solid rgba(255,255,255,0.06); z-index: 99;
    transform: translateY(-100%); transition: transform 0.3s ease;
    display: flex; visibility: hidden; opacity: 0;
}
.mobile-menu.active { transform: translateY(0); visibility: visible; opacity: 1; }
.mobile-menu a { color: var(--text-secondary); text-decoration: none; font-size: 1.2rem; font-weight: 500; }

/* ===== HERO ===== */
.hero { min-height: 100vh; display: flex; align-items: center; position: relative; padding-top: 60px; } /* уменьшено с 80px до 60px */
.hero-content { max-width: 800px; }
.hero-badge {
    display: inline-flex; align-items: center; gap: 8px;
    background: rgba(124, 58, 237, 0.15); border: 1px solid rgba(124, 58, 237, 0.3);
    padding: 8px 20px; border-radius: 50px; font-size: 0.85rem; font-weight: 600;
    color: #c4b5fd; margin-bottom: 24px; letter-spacing: 0.5px;
    animation: fadeInDown 0.8s ease 0.2s both;
}
.hero-badge svg { width: 18px; height: 18px; }
.hero-title {
    font-family: 'Unbounded', sans-serif; font-weight: 900; font-size: 4.2rem;
    line-height: 1.15; letter-spacing: -2px; margin-bottom: 24px;
    animation: fadeInUp 0.8s ease 0.3s both;
}
.hero-title .highlight {
    background: var(--gradient-1); -webkit-background-clip: text;
    -webkit-text-fill-color: transparent; background-clip: text; position: relative;
}
.hero-title .highlight::after {
    content: ''; position: absolute; bottom: 2px; left: 0; right: 0; height: 6px;
    background: var(--gradient-1); border-radius: 3px; opacity: 0.3; z-index: -1;
    animation: underlineGlow 2s ease-in-out infinite;
}
@keyframes underlineGlow { 0%, 100% { opacity: 0.2; } 50% { opacity: 0.5; } }
.hero-subtitle {
    font-size: 1.25rem; color: var(--text-secondary); max-width: 600px;
    margin-bottom: 40px; font-weight: 300; line-height: 1.8;
    animation: fadeInUp 0.8s ease 0.4s both;
}
.hero-subtitle strong { color: var(--text-primary); font-weight: 600; }
.hero-cta-group { display: flex; gap: 16px; flex-wrap: wrap; animation: fadeInUp 0.8s ease 0.5s both; }
.btn {
    display: inline-flex; align-items: center; gap: 10px; padding: 16px 32px;
    border-radius: 50px; font-weight: 700; font-size: 1rem; text-decoration: none;
    transition: all 0.3s ease; cursor: pointer; border: none; letter-spacing: 0.3px;
    position: relative; overflow: hidden;
}
.btn-primary { background: var(--gradient-1); color: white; box-shadow: 0 10px 40px rgba(255, 61, 127, 0.3); }
.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 15px 50px rgba(255, 61, 127, 0.5); }
.btn-primary::before {
    content: ''; position: absolute; top: 0; left: -100%; width: 100%; height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}
.btn-primary:hover::before { left: 100%; }
.btn-secondary {
    background: rgba(255, 255, 255, 0.05); color: var(--text-primary);
    border: 1px solid rgba(255, 255, 255, 0.15); backdrop-filter: blur(10px);
}
.btn-secondary:hover { background: rgba(255, 255, 255, 0.1); transform: translateY(-3px); border-color: rgba(255, 255, 255, 0.25); }
.hero-stats { display: flex; gap: 40px; margin-top: 60px; animation: fadeInUp 0.8s ease 0.6s both; }
.stat-item { text-align: left; }
.stat-number {
    font-family: 'Unbounded', sans-serif; font-weight: 700; font-size: 2.2rem;
    background: var(--gradient-2); -webkit-background-clip: text;
    -webkit-text-fill-color: transparent; background-clip: text; line-height: 1.2;
    display: inline-block;
}
.stat-label { font-size: 0.85rem; color: var(--text-muted); font-weight: 500; letter-spacing: 0.5px; text-transform: uppercase; }

@keyframes fadeInUp { from { opacity: 0; transform: translateY(30px); } to { opacity: 1; transform: translateY(0); } }
@keyframes fadeInDown { from { opacity: 0; transform: translateY(-20px); } to { opacity: 1; transform: translateY(0); } }

/* ===== ЛИНИИ-РАЗДЕЛИТЕЛИ ===== */
.catalog-section,
.why-we-section,
.faq-section,
.custom-dev-section {
    position: relative;
}
.catalog-section::before,
.why-we-section::before,
.faq-section::before,
.custom-dev-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 120px;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--accent-1), var(--accent-2), transparent);
    background-size: 200% 100%;
    animation: lineAnimation 6s linear infinite;
}
@keyframes lineAnimation {
    0% { background-position: 0% 0%; }
    100% { background-position: 200% 0%; }
}

/* ===== КАТАЛОГ ===== */
.catalog-section { padding: 80px 0; }
.section-header { text-align: center; margin-bottom: 40px; }
.section-label {
    display: inline-block; font-size: 0.8rem; font-weight: 700; letter-spacing: 2px;
    text-transform: uppercase; color: var(--accent-1); margin-bottom: 12px;
    background: rgba(255, 61, 127, 0.1); padding: 6px 16px; border-radius: 50px;
    border: 1px solid rgba(255, 61, 127, 0.2);
}
.section-title {
    font-family: 'Unbounded', sans-serif; font-weight: 700; font-size: 3rem;
    letter-spacing: -1.5px; line-height: 1.2; margin-bottom: 16px;
}
.section-title .gradient-text {
    background: var(--gradient-2); -webkit-background-clip: text;
    -webkit-text-fill-color: transparent; background-clip: text;
}
.section-subtitle { color: var(--text-secondary); font-size: 1.1rem; font-weight: 300; max-width: 600px; margin: 0 auto; }

.catalog-toolbar {
    display: flex; flex-wrap: wrap; gap: 15px; justify-content: center; align-items: center;
    margin-bottom: 40px;
}
.search-input {
    background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.15);
    border-radius: 50px; padding: 12px 24px; color: var(--text-primary);
    font-size: 0.9rem; min-width: 250px; outline: none;
}
.search-input::placeholder { color: var(--text-muted); }

/* Кастомный селект */
.custom-select { position: relative; user-select: none; }
.select-trigger {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 16px;
    border-radius: var(--radius-sm);
    background: rgba(255,255,255,0.05);
    border: none;
    cursor: pointer;
    transition: all 0.3s;
    color: var(--text-primary);
    font-weight: 500;
    position: relative;
    overflow: hidden;
    min-width: 200px;
}
.select-trigger::before {
    content: '';
    position: absolute;
    top: 0; left: 0; width: 100%; height: 2px;
    background: linear-gradient(90deg, transparent, var(--accent-1), transparent);
    animation: lineMove 2s linear infinite;
}
@keyframes lineMove {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}
.select-arrow { transition: transform 0.3s; font-size: 0.8rem; }
.custom-select.open .select-arrow { transform: rotate(180deg); }
.select-options {
    position: absolute;
    top: calc(100% + 5px);
    left: 0;
    right: 0;
    background: var(--bg-secondary);
    border-radius: var(--radius-sm);
    overflow-y: auto;
    max-height: 250px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    z-index: 10;
}
.custom-select.open .select-options { opacity: 1; visibility: visible; }
.select-option { padding: 10px 16px; cursor: pointer; transition: background 0.2s; }
.select-option:hover { background: rgba(255,255,255,0.05); }
.select-option.selected { background: rgba(255,61,127,0.15); color: var(--accent-1); }

/* ===== КАРТОЧКИ ===== */
.cards-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 30px; }
.card {
    background: var(--card-bg); border: 1px solid var(--card-border);
    border-radius: var(--radius); overflow: hidden; transition: all 0.3s;
    position: relative; cursor: pointer; backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    display: flex; flex-direction: column;
    will-change: transform;
}
.card::before {
    content: ''; position: absolute; top: 0; left: 0; right: 0; bottom: 0;
    border-radius: var(--radius); padding: 1px;
    background: linear-gradient(135deg, transparent 40%, rgba(255, 255, 255, 0.1) 50%, transparent 60%);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor; mask-composite: exclude; pointer-events: none; z-index: 1;
}
.card:hover { border-color: rgba(255, 255, 255, 0.2); box-shadow: 0 30px 60px rgba(0, 0, 0, 0.5), 0 0 40px rgba(124, 58, 237, 0.15); }
.card:nth-child(1):hover { box-shadow: 0 30px 60px rgba(0, 0, 0, 0.5), var(--glow-pink); }
.card:nth-child(2):hover { box-shadow: 0 30px 60px rgba(0, 0, 0, 0.5), var(--glow-purple); }
.card:nth-child(3):hover { box-shadow: 0 30px 60px rgba(0, 0, 0, 0.5), var(--glow-cyan); }
.card:nth-child(4):hover { box-shadow: 0 30px 60px rgba(0, 0, 0, 0.5), var(--glow-orange); }
.card:nth-child(5):hover { box-shadow: 0 30px 60px rgba(0, 0, 0, 0.5), var(--glow-green); }
.card:nth-child(6):hover { box-shadow: 0 30px 60px rgba(0, 0, 0, 0.5), var(--glow-gold); }
.card:nth-child(7):hover { box-shadow: 0 30px 60px rgba(0, 0, 0, 0.5), var(--glow-pink); }

.card.sold {
    cursor: not-allowed;
    filter: grayscale(0.6) brightness(0.7);
    opacity: 0.8;
}
.card.sold:hover { transform: none; box-shadow: none; }
.card.sold .card-preview img { filter: grayscale(1); }
.card.sold .btn-card-primary { pointer-events: none; opacity: 0.5; background: #333; }
.card.sold .btn-card-secondary { pointer-events: auto; opacity: 1; }

.card-preview { position: relative; height: 220px; overflow: hidden; display: flex; align-items: center; justify-content: center; }
.card-preview img { width: 100%; height: 100%; object-fit: cover; position: absolute; top: 0; left: 0; transition: transform 0.6s ease; }
.card:hover .card-preview img { transform: scale(1.08); }
.card-preview .preview-bg {
    position: absolute; top: 0; left: 0; right: 0; bottom: 0;
    transition: transform 0.6s ease; display: flex; align-items: center; justify-content: center;
}
.card:hover .preview-bg { transform: scale(1.08); }
.preview-bg-1 { background: var(--gradient-1); opacity: 0.85; }
.preview-bg-2 { background: var(--gradient-2); opacity: 0.85; }
.preview-bg-3 { background: var(--gradient-3); opacity: 0.85; }
.preview-bg-4 { background: var(--gradient-4); opacity: 0.85; }
.preview-bg-5 { background: var(--gradient-5); opacity: 0.85; }
.preview-bg-6 { background: var(--gradient-6); opacity: 0.85; }

.card-preview .preview-overlay { position: absolute; top: 0; left: 0; right: 0; bottom: 0; background: rgba(0, 0, 0, 0.3); z-index: 1; transition: background 0.4s ease; }
.card:hover .preview-overlay { background: rgba(0, 0, 0, 0.15); }
.card-preview .preview-badge { position: absolute; top: 16px; right: 16px; z-index: 3; background: rgba(0, 0, 0, 0.6); backdrop-filter: blur(10px); padding: 6px 14px; border-radius: 50px; font-size: 0.7rem; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; color: #fff; border: 1px solid rgba(255, 255, 255, 0.2); }
.card-preview .preview-availability { position: absolute; bottom: 16px; left: 16px; z-index: 3; display: flex; align-items: center; gap: 6px; font-size: 0.75rem; color: #fff; font-weight: 500; }
.card-preview .availability-dot { width: 8px; height: 8px; border-radius: 50%; background: #00ff88; box-shadow: 0 0 10px rgba(0, 255, 136, 0.8); animation: pulse-dot 2s ease-in-out infinite; }
@keyframes pulse-dot { 0%, 100% { box-shadow: 0 0 0 0 rgba(0, 255, 136, 0.6); } 50% { box-shadow: 0 0 0 8px rgba(0, 255, 136, 0); } }

.card-body { padding: 24px; flex: 1; display: flex; flex-direction: column; }
.card-title { font-family: 'Unbounded', sans-serif; font-weight: 600; font-size: 1.2rem; margin-bottom: 10px; line-height: 1.4; letter-spacing: -0.5px; }
.card-description {
    color: var(--text-secondary);
    font-size: 0.9rem;
    line-height: 1.7;
    margin-bottom: 16px;
    font-weight: 300;
    display: -webkit-box;
    -webkit-line-clamp: 5;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    transition: all 0.3s;
    cursor: pointer;
}
.card-description:hover { background: rgba(255,255,255,0.02); }

.card-tags { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 20px; }
.card-tag { font-size: 0.7rem; font-weight: 600; padding: 4px 12px; border-radius: 50px; letter-spacing: 0.3px; text-transform: uppercase; }
.card-tag:nth-child(1) { background: rgba(255, 61, 127, 0.1); color: #ff7ba0; border: 1px solid rgba(255, 61, 127, 0.25); }
.card-tag:nth-child(2) { background: rgba(124, 58, 237, 0.1); color: #b794ff; border: 1px solid rgba(124, 58, 237, 0.25); }
.card-tag:nth-child(3) { background: rgba(0, 212, 255, 0.1); color: #6be4ff; border: 1px solid rgba(0, 212, 255, 0.25); }

.card-price-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding-top: 18px;
    margin-bottom: 16px;
    margin-top: auto;
}
.card-prices { display: flex; align-items: baseline; gap: 10px; }
.card-price-current { font-family: 'Unbounded', sans-serif; font-weight: 700; font-size: 1.5rem; color: #fff; letter-spacing: -0.5px; }
.card-price-current .currency { font-size: 1rem; font-weight: 400; }
.card-price-old { font-size: 1rem; color: var(--text-muted); text-decoration: line-through; font-weight: 400; }
.card-discount { font-size: 0.7rem; font-weight: 700; background: rgba(0, 255, 136, 0.15); color: #00ff88; padding: 4px 10px; border-radius: 50px; border: 1px solid rgba(0, 255, 136, 0.3); letter-spacing: 0.5px; }

.card-actions { display: flex; gap: 10px; }
.btn-card { flex: 1; display: inline-flex; align-items: center; justify-content: center; gap: 8px; padding: 12px 16px; border-radius: 50px; font-weight: 700; font-size: 0.85rem; text-decoration: none; transition: all 0.3s ease; border: none; cursor: pointer; letter-spacing: 0.3px; }
.btn-card-primary { background: var(--gradient-1); color: white; }
.btn-card-primary:hover { transform: translateY(-2px); box-shadow: 0 10px 30px rgba(255, 61, 127, 0.3); }
.btn-card-secondary { background: rgba(255, 255, 255, 0.05); color: var(--text-primary); border: 1px solid rgba(255, 255, 255, 0.15); }
.btn-card-secondary:hover { background: rgba(255, 255, 255, 0.1); border-color: rgba(255, 255, 255, 0.3); }

.show-more-container { text-align: center; margin-top: 40px; }
.btn-show-more {
    background: linear-gradient(135deg, rgba(255,61,127,0.15), rgba(124,58,237,0.15));
    border: 1px solid rgba(255,255,255,0.2);
    color: var(--text-primary);
    padding: 16px 50px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.4s;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    box-shadow: 0 0 20px rgba(255,61,127,0.2), 0 0 20px rgba(124,58,237,0.2);
}
.btn-show-more:hover {
    background: linear-gradient(135deg, rgba(255,61,127,0.3), rgba(124,58,237,0.3));
    border-color: rgba(255,255,255,0.4);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(255,61,127,0.4), 0 10px 30px rgba(124,58,237,0.4);
}

/* ===== WHY WE ===== */
.why-we-section { padding: 80px 0; }
.why-we-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 25px; margin-top: 50px; }
.why-step {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: var(--radius);
    padding: 30px 25px;
    text-align: center;
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.why-step:hover { transform: translateY(-8px); border-color: rgba(255,255,255,0.2); }
.why-step::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--accent-1), var(--accent-2), var(--accent-3), var(--accent-1));
    background-size: 300% 100%;
    animation: shimmer 4s linear infinite;
}
@keyframes shimmer { 0% { background-position: 0% 50%; } 50% { background-position: 100% 50%; } 100% { background-position: 0% 50%; } }
.why-step-icon {
    width: 70px;
    height: 70px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    transition: all 0.3s;
}
.why-step:hover .why-step-icon {
    background: var(--gradient-1);
    border-color: transparent;
    box-shadow: var(--glow-pink);
}
.why-step-icon svg { width: 35px; height: 35px; }
.why-step-title {
    font-family: 'Unbounded', sans-serif;
    font-weight: 600;
    font-size: 1.2rem;
    margin-bottom: 15px;
    letter-spacing: -0.5px;
}
.why-step-desc {
    color: var(--text-secondary);
    font-size: 0.9rem;
    line-height: 1.6;
    flex: 1;
}

/* ===== FAQ ===== */
.faq-section { padding: 60px 0; }
.faq-container { max-width: 800px; margin: 40px auto 0; }
.faq-item { background: var(--card-bg); border: 1px solid var(--card-border); border-radius: var(--radius-sm); margin-bottom: 12px; overflow: hidden; transition: all 0.3s; }
.faq-item.active { border-color: rgba(255, 61, 127, 0.4); }
.faq-question {
    display: flex; justify-content: space-between; align-items: center;
    padding: 18px 24px; cursor: pointer; font-weight: 600; font-size: 1rem;
    color: var(--text-primary); background: transparent; border: none; width: 100%; text-align: left;
}
.faq-question:hover { color: var(--accent-1); }
.faq-icon { font-size: 1.5rem; transition: transform 0.3s; flex-shrink: 0; margin-left: 15px; }
.faq-item.active .faq-icon { transform: rotate(45deg); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.3s ease; padding: 0 24px; }
.faq-answer-inner { padding-bottom: 20px; color: var(--text-secondary); font-size: 0.9rem; line-height: 1.7; }

/* ===== CUSTOM DEV ===== */
.custom-dev-section { padding: 60px 0; text-align: center; }
.custom-dev-box { background: var(--card-bg); border: 1px solid var(--card-border); border-radius: var(--radius); padding: 50px 40px; max-width: 700px; margin: 0 auto; position: relative; overflow: hidden; }
.custom-dev-box::before { content: ''; position: absolute; top: -50%; left: -50%; width: 200%; height: 200%; background: conic-gradient(from 0deg, transparent, rgba(255,61,127,0.1), transparent, rgba(0,212,255,0.1), transparent); animation: rotate-bg 10s linear infinite; z-index: 0; }
@keyframes rotate-bg { 100% { transform: rotate(360deg); } }
.custom-dev-content { position: relative; z-index: 2; }
.custom-dev-title { font-family: 'Unbounded', sans-serif; font-size: 2rem; font-weight: 700; margin-bottom: 16px; }
.custom-dev-price { font-size: 3rem; font-weight: 900; background: var(--gradient-3); -webkit-background-clip: text; -webkit-text-fill-color: transparent; margin-bottom: 16px; }
.custom-dev-text { color: var(--text-secondary); margin-bottom: 32px; font-size: 1.1rem; }
.custom-dev-note { font-size: 0.9rem; color: var(--text-muted); margin-bottom: 24px; }

/* ===== МОДАЛКИ ===== */
.modal-overlay { position: fixed; top: 0; left: 0; right: 0; bottom: 0; background: rgba(0,0,0,0.7); z-index: 200; display: none; align-items: center; justify-content: center; backdrop-filter: blur(10px); }
.modal-overlay.active { display: flex; }
.modal { background: var(--bg-secondary); border: 1px solid rgba(255,255,255,0.1); border-radius: var(--radius); padding: 40px; max-width: 500px; width: 90%; position: relative; max-height: 90vh; overflow-y: auto; }
.modal-close { position: absolute; top: 15px; right: 20px; background: none; border: none; color: var(--text-muted); font-size: 1.5rem; cursor: pointer; }
.modal-title { font-family: 'Unbounded', sans-serif; font-size: 1.5rem; margin-bottom: 20px; }
.form-group { margin-bottom: 20px; }
.form-group label { display: block; font-size: 0.85rem; color: var(--text-secondary); margin-bottom: 8px; font-weight: 500; }
.form-group input, .form-group textarea { width: 100%; padding: 14px 18px; border-radius: var(--radius-sm); border: 1px solid rgba(255,255,255,0.1); background: rgba(255,255,255,0.03); color: var(--text-primary); font-size: 1rem; transition: border-color 0.3s; outline: none; font-family: 'Inter', sans-serif; }
.form-group input:focus, .form-group textarea:focus { border-color: var(--accent-1); }
.btn-pay { width: 100%; padding: 16px; border-radius: 50px; border: none; font-weight: 700; font-size: 1rem; background: linear-gradient(135deg, #2d7d46, #1e5c30); color: white; cursor: pointer; transition: all 0.3s; display: flex; align-items: center; justify-content: center; gap: 10px; }
.btn-pay:hover { transform: translateY(-2px); box-shadow: 0 10px 30px rgba(0,255,136,0.3); }
.payment-note { font-size: 0.8rem; color: var(--text-muted); margin-top: 12px; text-align: center; }

/* Демо-модалка */
.demo-modal-overlay {
    position: fixed; top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(0,0,0,0.9);
    z-index: 300;
    display: none;
    align-items: center;
    justify-content: center;
}
.demo-modal-overlay.active { display: flex; }
.demo-modal-container {
    width: 95%;
    height: 95%;
    background: #fff;
    border-radius: 15px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 0 50px rgba(0,0,0,0.8);
}
.demo-modal-close {
    position: absolute;
    top: 15px;
    right: 20px;
    background: #ff3d7f;
    border: 2px solid #fff;
    color: #fff;
    font-size: 1.5rem;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    cursor: pointer;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
    box-shadow: 0 0 15px rgba(255,61,127,0.8);
}
.demo-modal-close:hover {
    background: #ff1f5f;
    transform: scale(1.1);
}
.demo-modal-iframe {
    width: 100%;
    height: 100%;
    border: none;
    display: block;
}

/* Модалка документов */
.doc-modal-overlay {
    position: fixed; top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(0,0,0,0.9);
    z-index: 350;
    display: none;
    align-items: center;
    justify-content: center;
}
.doc-modal-overlay.active { display: flex; }
.doc-modal-container {
    width: 80%;
    height: 80%;
    background: #fff;
    border-radius: 15px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 0 50px rgba(0,0,0,0.8);
}
.doc-modal-close {
    position: absolute;
    top: 15px;
    right: 20px;
    background: #ff3d7f;
    border: 2px solid #fff;
    color: #fff;
    font-size: 1.5rem;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    cursor: pointer;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
    box-shadow: 0 0 15px rgba(255,61,127,0.8);
}
.doc-modal-close:hover {
    background: #ff1f5f;
    transform: scale(1.1);
}
.doc-modal-iframe {
    width: 100%;
    height: 100%;
    border: none;
    display: block;
}

/* ===== ФУТЕР ===== */
.footer { padding: 60px 0 30px; border-top: 1px solid rgba(255,255,255,0.06); background: #050508; }
.footer-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 30px; margin-bottom: 40px; }
.footer-col h4 { font-size: 1rem; margin-bottom: 16px; color: var(--text-primary); font-weight: 600; }
.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 16px;
}
.footer-logo .lightning { width: 30px; height: 45px; }
.footer-logo .word { font-size: 1.5rem; letter-spacing: -2px; }
.footer-col p, .footer-col a { color: var(--text-secondary); font-size: 0.85rem; text-decoration: none; display: block; margin-bottom: 8px; transition: color 0.3s; }
.footer-col a:hover { color: var(--accent-1); }
.footer-bottom { text-align: center; color: var(--text-muted); font-size: 0.8rem; padding-top: 20px; border-top: 1px solid rgba(255,255,255,0.04); }
.footer-bottom a { color: var(--text-secondary); text-decoration: none; }

/* ===== ТУЛТИП ===== */
.description-tooltip {
    position: fixed;
    background: var(--bg-secondary);
    border: 1px solid var(--card-border);
    border-radius: 12px;
    padding: 15px;
    z-index: 400;
    max-width: 300px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.7);
    color: var(--text-primary);
    font-size: 0.9rem;
    line-height: 1.5;
    pointer-events: none;
    display: none;
}

/* ===== МОБИЛЬНАЯ ОПТИМИЗАЦИЯ ===== */
@media (max-width: 1024px) {
    .hero-title { font-size: 3rem; }
    .section-title { font-size: 2.5rem; }
}

@media (max-width: 768px) {
    .container { padding: 0 16px; }
    .header-inner { padding: 0 16px; flex-wrap: nowrap; gap: 5px; }
    .header-nav { display: none; }
    .hamburger { display: flex; }
    .hero { padding-top: 80px; }
    .hero-title { font-size: 2.2rem; letter-spacing: -1px; }
    .hero-subtitle { font-size: 1rem; margin-bottom: 30px; }
    .hero-stats { gap: 20px; flex-wrap: wrap; margin-top: 40px; }
    .stat-number { font-size: 1.6rem; }
    .section-title { font-size: 2rem; }
    .catalog-toolbar { flex-direction: column; align-items: stretch; }
    .search-input { width: 100%; min-width: auto; }
    .custom-select { width: 100%; }
    .select-trigger { width: 100%; }
    .cards-grid { grid-template-columns: 1fr; gap: 20px; }
    .card-preview { height: 180px; }
    .card-body { padding: 16px; }
    .card-title { font-size: 1rem; }
    .card-description { font-size: 0.85rem; }
    .why-we-grid { grid-template-columns: 1fr; gap: 20px; }
    .why-step { padding: 20px 15px; }
    .custom-dev-box { padding: 30px 20px; }
    .custom-dev-title { font-size: 1.5rem; }
    .custom-dev-price { font-size: 2.2rem; }
    .custom-dev-text { font-size: 1rem; }
    .footer-grid { grid-template-columns: 1fr; gap: 20px; }
    .modal { padding: 25px; }
    .btn { padding: 14px 24px; font-size: 0.9rem; }
    .btn-card { padding: 10px 12px; font-size: 0.8rem; }
    .btn-show-more { padding: 14px 30px; font-size: 0.9rem; }
    .demo-modal-container, .doc-modal-container { width: 100%; height: 100%; border-radius: 0; }

    /* Отключаем тяжёлые эффекты */
    .glow-orb { display: none; }
    .card, .header.scrolled, .mobile-menu, .modal, .demo-modal-container, .doc-modal-container {
        backdrop-filter: none;
        -webkit-backdrop-filter: none;
    }
    .card:hover { box-shadow: 0 10px 20px rgba(0,0,0,0.5); }
    .card-preview img { transition: none; }
    .select-trigger::before, .lineMove { animation: none; }

    /* Логотип ещё меньше */
    .lightning { width: 25px; height: 38px; }
    .word { font-size: 1.2rem; letter-spacing: -1px; }
    .slogan { font-size: 0.45rem; letter-spacing: 0.5px; margin-top: 2px; }
    .logo { gap: 5px; }

    .footer-logo .lightning { width: 25px; height: 38px; }
    .footer-logo .word { font-size: 1.2rem; letter-spacing: -1px; }
}

@media (max-width: 480px) {
    .hero-title { font-size: 1.8rem; }
    .section-title { font-size: 1.5rem; }
    .stat-number { font-size: 1.4rem; }
    .card-preview { height: 160px; }
    .btn-show-more { padding: 12px 25px; }
    .lightning { width: 20px; height: 30px; }
    .word { font-size: 1rem; letter-spacing: -1px; }
    .slogan { font-size: 0.4rem; letter-spacing: 0.5px; }
    .footer-logo .lightning { width: 20px; height: 30px; }
    .footer-logo .word { font-size: 1rem; letter-spacing: -1px; }
}