:root {
    /* Светлая тема с фиолетовым акцентом */
    --bg: #f8f7fc;
    --bg2: #f0eef8;
    --bg3: #e8e4f5;
    --card: #ffffff;
    --card2: #faf8ff;
    --border: rgba(106, 44, 164, 0.12);
    --border2: rgba(106, 44, 164, 0.22);
    --gold: #6a2ca4;
    --gold2: #8b5cc4;
    --gold-glow: rgba(106, 44, 164, 0.08);
    --green: #2c6a4c;
    --green2: #3d8b63;
    --green-glow: rgba(44, 106, 76, 0.08);
    --red: #d44c5c;
    --text: #1a1328;
    --text2: #4a3a6e;
    --text3: #8a7aa8;
    --accent: #6a2ca4;
    --accent2: #8b5cc4;
    --r: 16px;
    --r2: 24px;
}

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

html { scroll-behavior: smooth; }

body {
    background: var(--bg);
    color: var(--text);
    font-family: 'Outfit', sans-serif;
    font-size: 16px;
    line-height: 1.65;
    overflow-x: hidden;
}

/* ─── NOISE OVERLAY (более мягкий для светлой темы) ─── */
body::before {
    content: '';
    position: fixed;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.02'/%3E%3C/svg%3E");
    background-size: 200px 200px;
    pointer-events: none;
    z-index: 0;
    opacity: 0.4;
}

.container { max-width: 1180px; margin: 0 auto; padding: 0 24px; position: relative; z-index: 1; }

/* ─── TYPOGRAPHY ─── */
h1, h2, h3, h4 { font-family: 'JetBrains Mono', monospace; line-height: 1.1; }
h1 { font-size: clamp(2.4rem, 6vw, 4.8rem); font-weight: 800; }
h2 { font-size: clamp(1.9rem, 4vw, 3rem); font-weight: 700; }
h3 { font-size: 1.25rem; font-weight: 600; }

.gold { color: var(--gold); }
.green { color: var(--green); }

/* ─── NAV (светлая версия) ─── */
nav {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 100;
    padding: 16px 0;
    background: rgba(248, 247, 252, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border);
}
nav .inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}
.logo {
    font-family: 'JetBrains Mono', monospace;
    font-size: 1.3rem;
    font-weight: 800;
    color: var(--text);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 10px;
}
.logo-icon {
    width: 34px; height: 34px;
    background: linear-gradient(135deg, #6a2ca4, #4a1a7a);
    border-radius: 10px;
    display: grid; place-items: center;
    font-size: 18px;
    color: white;
}
.nav-links {
    display: flex;
    align-items: center;
    gap: 8px;
    list-style: none;
}
.nav-links a {
    color: var(--text2);
    text-decoration: none;
    font-size: 0.9rem;
    padding: 6px 14px;
    border-radius: 8px;
    transition: all 0.2s;
}
.nav-links a:hover { color: var(--text); background: var(--card); }
.btn-nav {
    background: linear-gradient(135deg, #6a2ca4, #4a1a7a);
    color: #fff !important;
    font-weight: 600 !important;
    padding: 8px 20px !important;
    border-radius: 10px !important;
}
.btn-nav:hover { opacity: 0.88; transform: translateY(-1px); }
.nav-menu-btn { display: none; background: none; border: none; color: var(--text); font-size: 22px; cursor: pointer; }

/* ─── HERO ─── */
.hero {
    padding: 110px 0 60px;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
}
.hero-bg {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 80% 60% at 50% -10%, rgba(106, 44, 164, 0.08) 0%, transparent 65%),
        radial-gradient(ellipse 60% 50% at 80% 80%, rgba(44, 106, 76, 0.04) 0%, transparent 60%),
        radial-gradient(ellipse 40% 40% at 10% 60%, rgba(106, 44, 164, 0.05) 0%, transparent 50%);
}
.hero-suits {
    position: absolute;
    right: -40px; top: 50%;
    transform: translateY(-50%);
    font-size: 340px;
    color: rgba(106, 44, 164, 0.04);
    font-family: serif;
    user-select: none;
    line-height: 1;
}
.hero-content {
    position: relative;
    z-index: 2;
    max-width: 680px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}
.hero-badge {
    display: flex;
    width: fit-content;
    align-items: center;
    gap: 8px;
    background: rgba(106, 44, 164, 0.08);
    border: 1px solid rgba(106, 44, 164, 0.2);
    color: var(--gold2);
    font-size: 0.82rem;
    font-weight: 500;
    padding: 6px 16px;
    border-radius: 100px;
    margin-bottom: 20px;
    letter-spacing: 0.01em;
    white-space: nowrap;
}
.hero h1 { margin-bottom: 10px; }
.hero-badge span { width: 6px; height: 6px; background: var(--gold); border-radius: 50%; animation: pulse 2s infinite; }
@keyframes pulse { 0%,100%{opacity:1;transform:scale(1)} 50%{opacity:0.5;transform:scale(1.4)} }

.hero h1,
.hero .hero-h1-sub,
.hero .hero-sub,
.hero .hero-actions,
.hero .hero-stats {
    opacity: 1 !important;
    transform: none !important;
}
.hero-h1-sub {
    font-family: 'JetBrains Mono', monospace;
    font-size: clamp(1rem, 2.2vw, 1.45rem);
    font-weight: 500;
    color: var(--gold2);
    margin-bottom: 16px;
    opacity: 0.85;
}
.hero h1 em { font-style: normal; background: linear-gradient(90deg, var(--gold), var(--gold2)); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }

.hero-sub {
    color: var(--text2);
    font-size: 1.1rem;
    margin-bottom: 28px;
    max-width: 520px;
    font-weight: 300;
}
.hero-actions { display: flex; flex-direction: column; gap: 12px; align-items: flex-start; }
.hero-btn-full { width: 100%; max-width: 100%; justify-content: center; }
.hero-actions-row { display: flex; gap: 12px; flex-wrap: wrap; width: 100%; }
.hero-actions-row .btn-secondary { flex: 1; justify-content: center; }
.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, #6a2ca4 0%, #4a1a7a 100%);
    color: #fff;
    font-weight: 700;
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.95rem;
    padding: 15px 30px;
    border-radius: 12px;
    text-decoration: none;
    transition: all 0.25s;
    box-shadow: 0 8px 32px rgba(106, 44, 164, 0.25);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 12px 40px rgba(106, 44, 164, 0.35); }
.btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--card);
    color: var(--text);
    border: 1px solid var(--border2);
    font-weight: 500;
    font-size: 0.88rem;
    padding: 10px 20px;
    border-radius: 12px;
    text-decoration: none;
    transition: all 0.25s;
    white-space: nowrap;
}
.btn-secondary:hover { background: var(--card2); border-color: rgba(106, 44, 164, 0.3); transform: translateY(-2px); }

.hero-stats {
    display: flex;
    gap: 40px;
    margin-top: 36px;
    padding-top: 28px;
    border-top: 1px solid var(--border);
    flex-wrap: wrap;
}
.stat-num {
    font-family: 'JetBrains Mono', monospace;
    font-size: 2rem;
    font-weight: 800;
    color: var(--text);
    line-height: 1;
    margin-bottom: 4px;
}
.stat-num span { color: var(--gold); }
.stat-label { font-size: 0.82rem; color: var(--text3); text-transform: uppercase; letter-spacing: 0.06em; }

/* ─── PLATFORMS ─── */
.platforms {
    padding: 50px 0;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    background: var(--bg2);
}
.platforms-label { text-align: center; color: var(--text3); font-size: 0.78rem; text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 24px; }
.platforms-list {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px 32px;
}
.platform-item {
    font-family: 'JetBrains Mono', monospace;
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--text3);
    padding: 8px 20px;
    border: 1px solid var(--border);
    border-radius: 100px;
    transition: all 0.25s;
    cursor: default;
}
.platform-item:hover { color: var(--gold); border-color: rgba(106, 44, 164, 0.3); background: rgba(106, 44, 164, 0.04); }

/* ─── SECTION HEADER ─── */
.section { padding: 100px 0; position: relative; }
.section-tag {
    display: inline-block;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--gold);
    font-weight: 600;
    margin-bottom: 14px;
}
.section-title { margin-bottom: 16px; }
.section-sub { color: var(--text2); font-size: 1.05rem; max-width: 520px; font-weight: 300; }
.section-header { margin-bottom: 60px; }
.section-header.centered { text-align: center; }
.section-header.centered .section-sub { margin: 0 auto; }

/* ─── FEATURES ─── */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1px;
    background: var(--border);
    border: 1px solid var(--border);
    border-radius: var(--r2);
    overflow: hidden;
}
.feature-card {
    background: white;
    padding: 36px 32px;
    transition: background 0.25s;
}
.feature-card:hover { background: var(--bg2); }
.feature-icon {
    width: 52px; height: 52px;
    background: linear-gradient(135deg, rgba(106, 44, 164, 0.08), rgba(106, 44, 164, 0.02));
    border: 1px solid rgba(106, 44, 164, 0.15);
    border-radius: 12px;
    display: grid; place-items: center;
    font-size: 24px;
    margin-bottom: 20px;
}
.feature-card h3 { margin-bottom: 10px; font-size: 1.05rem; }
.feature-card p { color: var(--text2); font-size: 0.9rem; line-height: 1.7; }

/* ─── PRICING ─── */
#pricing { background: var(--bg2); }

.pricing-note {
    background: rgba(106, 44, 164, 0.04);
    border: 1px solid rgba(106, 44, 164, 0.12);
    border-radius: var(--r);
    padding: 20px 24px;
    margin-bottom: 48px;
    font-size: 0.9rem;
    color: var(--text2);
}
.pricing-note strong { color: var(--gold); }

.pricing-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    margin-bottom: 48px;
}
.pricing-step {
    background: white;
    border: 1px solid var(--border);
    border-radius: var(--r2);
    padding: 28px;
    position: relative;
}
.step-num {
    width: 36px; height: 36px;
    background: linear-gradient(135deg, #6a2ca4, #4a1a7a);
    border-radius: 10px;
    display: grid; place-items: center;
    font-family: 'JetBrains Mono', monospace;
    font-weight: 800;
    font-size: 0.95rem;
    color: #fff;
    margin-bottom: 14px;
}
.pricing-step h4 { font-size: 0.95rem; margin-bottom: 8px; font-family: 'JetBrains Mono', monospace; }
.pricing-step p { font-size: 0.88rem; color: var(--text2); line-height: 1.7; }

.pricing-table-wrap {
    overflow-x: auto;
    border-radius: var(--r2);
    border: 1px solid var(--border);
}
.pricing-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.9rem;
    min-width: 600px;
}
.pricing-table thead tr {
    background: var(--card);
    border-bottom: 2px solid var(--border2);
}
.pricing-table th {
    padding: 16px 20px;
    text-align: left;
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--text3);
}
.pricing-table tbody tr {
    border-bottom: 1px solid var(--border);
    transition: background 0.2s;
}
.pricing-table tbody tr:last-child { border-bottom: none; }
.pricing-table tbody tr:hover { background: var(--card); }
.pricing-table td { padding: 14px 20px; color: var(--text2); }
.pricing-table td:first-child { font-family: 'JetBrains Mono', monospace; font-weight: 700; color: var(--gold); font-size: 0.95rem; }
.td-price {
    font-family: 'JetBrains Mono', monospace;
    font-weight: 700;
    color: var(--green) !important;
    font-size: 1rem;
}

.pricing-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    margin-top: 48px;
}
.price-card {
    background: white;
    border: 1px solid var(--border);
    border-radius: var(--r2);
    padding: 36px 32px;
    position: relative;
    transition: all 0.3s;
}
.price-card:hover { border-color: var(--border2); transform: translateY(-4px); }
.price-card.featured {
    border-color: rgba(106, 44, 164, 0.35);
    background: linear-gradient(145deg, white, rgba(106, 44, 164, 0.03));
    box-shadow: 0 0 60px rgba(106, 44, 164, 0.08);
}
.price-card.featured::before {
    content: '⭐ Most Popular';
    position: absolute;
    top: -14px; left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(90deg, #6a2ca4, #4a1a7a);
    color: #fff;
    font-size: 0.72rem;
    font-weight: 700;
    font-family: 'JetBrains Mono', monospace;
    padding: 4px 16px;
    border-radius: 100px;
    white-space: nowrap;
    letter-spacing: 0.03em;
}
.price-name { font-family: 'JetBrains Mono', monospace; font-weight: 700; font-size: 1.1rem; margin-bottom: 8px; }
.price-desc { color: var(--text3); font-size: 0.85rem; margin-bottom: 24px; }
.price-amount {
    font-family: 'JetBrains Mono', monospace;
    font-size: 2.8rem;
    font-weight: 800;
    line-height: 1;
    margin-bottom: 6px;
}
.price-amount sup { font-size: 1.2rem; color: var(--text2); vertical-align: super; }
.price-period { color: var(--text3); font-size: 0.82rem; margin-bottom: 28px; }
.price-features { list-style: none; margin-bottom: 32px; }
.price-features li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 0.88rem;
    color: var(--text2);
    padding: 7px 0;
    border-bottom: 1px solid var(--border);
}
.price-features li:last-child { border-bottom: none; }
.price-features li::before { content: '✓'; color: var(--green); font-weight: 700; flex-shrink: 0; margin-top: 1px; }
.btn-price {
    display: block;
    text-align: center;
    padding: 13px;
    border-radius: 12px;
    font-family: 'JetBrains Mono', monospace;
    font-weight: 700;
    font-size: 0.9rem;
    text-decoration: none;
    transition: all 0.25s;
}
.btn-price-default {
    background: var(--bg3);
    border: 1px solid var(--border2);
    color: var(--text);
}
.btn-price-default:hover { background: var(--card2); }
.btn-price-featured {
    background: linear-gradient(135deg, #6a2ca4, #4a1a7a);
    color: #fff;
    box-shadow: 0 6px 24px rgba(106, 44, 164, 0.25);
}
.btn-price-featured:hover { transform: translateY(-1px); box-shadow: 0 8px 30px rgba(106, 44, 164, 0.35); }

/* ─── HOW TO INSTALL ─── */
#install { background: var(--bg); }
.install-tabs {
    display: flex;
    gap: 4px;
    background: #ffffff;
    border: 1px solid var(--border);
    border-radius: 14px;
    padding: 5px;
    width: fit-content;
    margin-bottom: 52px;
}
.tab-btn {
    padding: 10px 24px;
    border-radius: 10px;
    border: none;
    background: transparent;
    color: var(--text2);
    font-family: 'JetBrains Mono', monospace;
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.2s;
    display: flex;
    align-items: center;
    gap: 8px;
}
.tab-btn.active { background: linear-gradient(135deg, #6a2ca4, #4a1a7a); color: #fff; }
.tab-btn:not(.active):hover { background: var(--card2); color: var(--text); }
.install-panel { display: none; }
.install-panel.active { display: block; }

.install-steps { display: grid; gap: 16px; }
.install-step {
    display: grid;
    grid-template-columns: 56px 1fr;
    gap: 20px;
    background: white;
    border: 1px solid var(--border);
    border-radius: var(--r2);
    padding: 28px 28px 28px 24px;
    transition: all 0.25s;
    align-items: start;
}
.install-step:hover { border-color: var(--border2); background: var(--bg2); }
.install-step-num {
    width: 48px; height: 48px;
    background: linear-gradient(135deg, rgba(106, 44, 164, 0.08), rgba(106, 44, 164, 0.02));
    border: 2px solid rgba(106, 44, 164, 0.2);
    border-radius: 12px;
    display: grid; place-items: center;
    font-family: 'JetBrains Mono', monospace;
    font-weight: 800;
    font-size: 1.1rem;
    color: var(--gold);
    flex-shrink: 0;
}
.install-step-content h4 {
    font-family: 'JetBrains Mono', monospace;
    font-size: 1.05rem;
    margin-bottom: 8px;
    color: var(--text);
}
.install-step-content p { color: var(--text2); font-size: 0.9rem; line-height: 1.7; }
.install-step-content ul {
    margin-top: 10px;
    padding-left: 0;
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 5px;
}
.install-step-content ul li {
    color: var(--text2);
    font-size: 0.88rem;
    display: flex;
    align-items: flex-start;
    gap: 8px;
}
.install-step-content ul li::before { content: '→'; color: var(--gold); flex-shrink: 0; }

/* ─── BLOG ─── */
#blog { background: var(--bg2); }
.blog-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 24px; }
.blog-card {
    background: white;
    border: 1px solid var(--border);
    border-radius: var(--r2);
    overflow: hidden;
    transition: all 0.3s;
}
.blog-card:hover { border-color: var(--border2); transform: translateY(-4px); box-shadow: 0 20px 60px rgba(0,0,0,0.05); }
.blog-thumb {
    height: 180px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 56px;
    position: relative;
    overflow: hidden;
}
.blog-thumb-1 { background: linear-gradient(135deg, rgba(106, 44, 164, 0.1), rgba(106, 44, 164, 0.03)); }
.blog-thumb-2 { background: linear-gradient(135deg, rgba(79, 141, 255, 0.1), rgba(79, 141, 255, 0.03)); }
.blog-thumb-3 { background: linear-gradient(135deg, rgba(0, 230, 118, 0.1), rgba(0, 230, 118, 0.03)); }
.blog-card-body { padding: 28px; }
.blog-meta {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 14px;
    flex-wrap: wrap;
}
.blog-tag {
    background: rgba(106, 44, 164, 0.08);
    border: 1px solid rgba(106, 44, 164, 0.15);
    color: var(--gold);
    font-size: 0.72rem;
    font-weight: 600;
    padding: 3px 10px;
    border-radius: 100px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}
.blog-date { color: var(--text3); font-size: 0.8rem; }
.blog-card h3 { margin-bottom: 10px; font-size: 1.1rem; line-height: 1.3; }
.blog-card p { color: var(--text2); font-size: 0.88rem; line-height: 1.7; margin-bottom: 20px; }
.blog-card a {
    color: var(--gold);
    text-decoration: none;
    font-size: 0.88rem;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: gap 0.2s;
}
.blog-card a:hover { gap: 10px; }

/* ─── TESTIMONIALS ─── */
.testimonials { padding: 100px 0; background: var(--bg); }
.testimonials-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 20px; }
.testimonial-card {
    background: white;
    border: 1px solid var(--border);
    border-radius: var(--r2);
    padding: 32px;
}
.stars { color: var(--gold); font-size: 0.85rem; margin-bottom: 16px; letter-spacing: 2px; }
.testimonial-text { color: var(--text2); font-size: 0.9rem; line-height: 1.75; margin-bottom: 20px; font-style: italic; }
.testimonial-author { display: flex; align-items: center; gap: 12px; }
.testimonial-avatar {
    width: 42px; height: 42px;
    border-radius: 50%;
    background: linear-gradient(135deg, #6a2ca4, #4a1a7a);
    display: grid; place-items: center;
    font-family: 'JetBrains Mono', monospace;
    font-weight: 800;
    color: #fff;
    font-size: 0.9rem;
}
.testimonial-name { font-family: 'JetBrains Mono', monospace; font-weight: 600; font-size: 0.9rem; }
.testimonial-role { color: var(--text3); font-size: 0.78rem; }

/* ─── CTA ─── */
.cta-section {
    padding: 100px 0;
    background: var(--bg2);
    position: relative;
    overflow: hidden;
}
.cta-bg {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 70% 80% at 50% 50%, rgba(106, 44, 164, 0.05) 0%, transparent 70%);
}
.cta-inner {
    text-align: center;
    position: relative;
    z-index: 1;
    max-width: 680px;
    margin: 0 auto;
}
.cta-inner h2 { margin-bottom: 18px; }
.cta-inner p { color: var(--text2); font-size: 1.05rem; margin-bottom: 40px; max-width: 460px; margin-left: auto; margin-right: auto; font-weight: 300; }
.cta-buttons { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ─── FOOTER ─── */
footer {
    background: var(--bg);
    border-top: 1px solid var(--border);
    padding: 60px 0 32px;
}
.footer-grid {
    display: grid;
    grid-template-columns: 1fr repeat(3, auto);
    gap: 40px 60px;
    margin-bottom: 48px;
}
.footer-brand p { color: var(--text3); font-size: 0.88rem; margin-top: 14px; max-width: 280px; line-height: 1.7; }
.footer-col h5 { font-family: 'JetBrains Mono', monospace; font-size: 0.8rem; text-transform: uppercase; letter-spacing: 0.08em; color: var(--text3); margin-bottom: 16px; }
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-col ul a { color: var(--text2); text-decoration: none; font-size: 0.88rem; transition: color 0.2s; }
.footer-col ul a:hover { color: var(--gold); }
.footer-bottom {
    border-top: 1px solid var(--border);
    padding-top: 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
    font-size: 0.8rem;
    color: var(--text3);
}
.footer-bottom a { color: var(--text3); text-decoration: none; }
.footer-bottom a:hover { color: var(--gold); }

/* ─── FAQ ─── */
.faq-list { display: flex; flex-direction: column; gap: 12px; max-width: 860px; margin: 0 auto; }
.faq-item {
    background: white;
    border: 1px solid var(--border);
    border-radius: var(--r2);
    overflow: hidden;
    transition: border-color 0.25s;
}
.faq-item.open { border-color: rgba(106, 44, 164, 0.35); }
.faq-q {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    padding: 22px 28px;
    background: none;
    border: none;
    color: var(--text);
    font-family: 'JetBrains Mono', monospace;
    font-weight: 600;
    font-size: 1rem;
    text-align: left;
    cursor: pointer;
    transition: color 0.2s;
}
.faq-q:hover { color: var(--gold); }
.faq-arrow {
    color: var(--gold);
    font-size: 1.1rem;
    flex-shrink: 0;
    transition: transform 0.3s;
    display: inline-block;
}
.faq-item.open .faq-arrow { transform: rotate(180deg); }
.faq-a {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.3s;
    padding: 0 28px;
}
.faq-a p { color: var(--text2); font-size: 0.9rem; line-height: 1.8; padding-bottom: 22px; }
.faq-item.open .faq-a { max-height: 400px; }

/* ─── SEO TEXT ─── */
.seo-section {
    padding: 80px 0;
    background: var(--bg);
    border-top: 1px solid var(--border);
}
.seo-inner {
    max-width: 860px;
}
.seo-title {
    font-size: clamp(1.3rem, 2.5vw, 1.9rem);
    font-weight: 700;
    color: var(--text);
    margin-bottom: 32px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--border);
}
.seo-content h3 {
    font-family: 'JetBrains Mono', monospace;
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--gold);
    margin: 32px 0 12px;
}
.seo-content p {
    color: var(--text3);
    font-size: 0.9rem;
    line-height: 1.85;
    margin-bottom: 14px;
}
.seo-content strong { color: var(--text2); }

/* ─── TELEGRAM FLOAT ─── */
.tg-float {
    position: fixed;
    bottom: 28px;
    right: 28px;
    width: 56px; height: 56px;
    background: linear-gradient(135deg, #6a2ca4, #4a1a7a);
    border-radius: 50%;
    display: grid; place-items: center;
    font-size: 26px;
    text-decoration: none;
    z-index: 200;
    box-shadow: 0 8px 24px rgba(106, 44, 164, 0.3);
    transition: transform 0.25s;
}
.tg-float:hover { transform: scale(1.1); }

/* ─── SCROLL ANIMATIONS ─── */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.65s ease, transform 0.65s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* ─── RESPONSIVE ─── */
@media (max-width: 768px) {
    .nav-links { display: none; }
    .nav-links.open { display: flex; flex-direction: column; position: absolute; top: 100%; left: 0; right: 0; background: white; border-bottom: 1px solid var(--border); padding: 16px; gap: 4px; }
    .nav-menu-btn { display: block; }
    nav .inner { position: relative; }
    .hero { padding: 120px 0 70px; min-height: auto; }
    .hero-suits { display: none; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .install-step { grid-template-columns: 1fr; }
    .install-step-num { width: 40px; height: 40px; font-size: 1rem; }
}
@media (max-width: 480px) {
    .footer-grid { grid-template-columns: 1fr; }
    .hero-stats { gap: 24px; }
}
#comments { display: none; }

/* ========== ОСНОВНЫЕ СТИЛИ ДЛЯ МЕНЮ ЯЗЫКОВ ========== */
#primary-menu {
    position: relative;
    list-style: none;
    margin: 0;
    padding: 0;
    margin-left: auto;
}

#primary-menu > .pll-parent-menu-item {
    position: relative;
    list-style: none;
}

#primary-menu > .pll-parent-menu-item > a {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 12px;
    background: rgba(106, 44, 164, 0.08);
    border-radius: 8px;
    color: var(--text);
    text-decoration: none;
    font-weight: 500;
    font-size: 14px;
    transition: all 0.3s ease;
    cursor: pointer;
}

#primary-menu > .pll-parent-menu-item > a:after {
    content: "▼";
    font-size: 10px;
    transition: transform 0.3s ease;
}

#primary-menu > .pll-parent-menu-item:hover > a {
    background: rgba(106, 44, 164, 0.15);
}

#primary-menu .sub-menu {
    position: absolute;
    top: 100%;
    right: 0;
    min-width: 100px;
    background: white;
    backdrop-filter: blur(10px);
    border-radius: 8px;
    padding: 8px 0;
    margin: 5px 0 0;
    list-style: none;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(106, 44, 164, 0.2);
    z-index: 1000;
}

#primary-menu > .pll-parent-menu-item:hover .sub-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

#primary-menu .sub-menu li {
    margin: 0;
    padding: 0;
}

#primary-menu .sub-menu li a {
    display: block;
    padding: 8px 20px;
    color: var(--text);
    text-decoration: none;
    font-size: 14px;
    transition: all 0.2s ease;
    white-space: nowrap;
}

#primary-menu .sub-menu li a:hover {
    background: rgba(106, 44, 164, 0.08);
    color: var(--gold);
}

#primary-menu .sub-menu .current-lang a {
    color: var(--gold);
    background: rgba(106, 44, 164, 0.06);
    position: relative;
}

#primary-menu .sub-menu .current-lang a:before {
    content: "✓";
    position: absolute;
    left: 8px;
    color: var(--gold);
}

@media (max-width: 768px) {
    #primary-menu {
        width: 100%;
        margin-left: 0;
        margin-top: 10px;
    }
    
    #primary-menu > .pll-parent-menu-item {
        width: 100%;
    }
    
    #primary-menu > .pll-parent-menu-item > a {
        justify-content: space-between;
        background: rgba(106, 44, 164, 0.05);
    }
    
    #primary-menu .sub-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        background: rgba(106, 44, 164, 0.03);
        margin-top: 5px;
        margin-bottom: 10px;
        padding: 5px 0;
        border-left: 2px solid rgba(106, 44, 164, 0.3);
        display: none;
    }
    
    #primary-menu > .pll-parent-menu-item.open .sub-menu {
        display: block;
    }
    
    #primary-menu .sub-menu li a {
        padding: 10px 20px 10px 30px;
        white-space: normal;
    }
    
    #primary-menu .sub-menu li a:hover {
        padding-left: 30px;
    }
    
    #primary-menu > .pll-parent-menu-item.open > a:after {
        transform: rotate(180deg);
    }
}

@media (min-width: 769px) and (max-width: 1024px) {
    #primary-menu .sub-menu {
        right: 0;
    }
}

.skip-link {
    display: none;
}