/* VzlomHelp v17 — charcoal + teal + amber (premium recovery) */
:root {
    --bg: #0C0E12;
    --bg-elevated: #12151C;
    --surface: #171B24;
    --surface-hover: #1E2430;
    --text: #F2F3F5;
    --text-muted: #8B93A7;
    --accent: #5EEAD4;
    --accent-dim: rgba(94, 234, 212, 0.12);
    --cta: #E8B84A;
    --cta-text: #0C0E12;
    --cta-hover: #F0C85C;
    --border: rgba(255, 255, 255, 0.08);
    --border-strong: rgba(255, 255, 255, 0.14);
    --font-heading: "Sora", system-ui, sans-serif;
    --font-body: "IBM Plex Sans", system-ui, sans-serif;
    --space-sm: 0.5rem;
    --space-md: 1rem;
    --space-lg: 1.5rem;
    --space-xl: 2rem;
    --space-2xl: 3rem;
    --space-3xl: 4.5rem;
    --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.35);
    --shadow-md: 0 8px 24px rgba(0, 0, 0, 0.35);
    --shadow-lg: 0 20px 50px rgba(0, 0, 0, 0.45);
    --radius: 10px;
    --container: 1100px;
    --header-h: 70px;
}

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

html { scroll-behavior: smooth; color-scheme: dark; }

body {
    font-family: var(--font-body);
    background: var(--bg);
    color: var(--text);
    line-height: 1.65;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; cursor: pointer; }
ul { list-style: none; }
button { font: inherit; cursor: pointer; border: none; background: none; color: inherit; }

.container {
    width: min(100% - 2rem, var(--container));
    margin-inline: auto;
}

.page-bg {
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: -1;
    background:
        radial-gradient(ellipse 70% 45% at 15% -5%, rgba(94, 234, 212, 0.09), transparent 55%),
        radial-gradient(ellipse 50% 40% at 95% 5%, rgba(232, 184, 74, 0.06), transparent 50%),
        radial-gradient(ellipse 80% 50% at 50% 100%, rgba(23, 27, 36, 0.9), transparent 60%),
        var(--bg);
}

.cyber-bg, .hex, .cyber-line, .tech-line, .corner-bracket, .circuit-dot, .hacker-bg, .hero-bg {
    display: none !important;
}

/* Header */
.header {
    position: sticky;
    top: 0;
    z-index: 100;
    height: var(--header-h);
    background: rgba(12, 14, 18, 0.8);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--border);
    transition: border-color 200ms ease;
}

.header.scrolled { border-bottom-color: var(--border-strong); }

.header .container {
    height: 100%;
    display: flex;
    align-items: center;
    gap: var(--space-lg);
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.7rem;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 1.1rem;
    letter-spacing: -0.03em;
}

.logo-icon {
    width: 34px;
    height: 34px;
    color: var(--accent);
}

.logo-icon svg { width: 100%; height: 100%; }

.nav {
    display: flex;
    gap: 1.35rem;
    margin-left: auto;
}

.nav-link {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-muted);
    transition: color 200ms ease;
}

.nav-link:hover,
.nav-link:focus-visible { color: var(--text); }

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.7rem 1.25rem;
    border-radius: 8px;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.9rem;
    letter-spacing: -0.01em;
    transition: background 200ms ease, color 200ms ease, transform 200ms ease, border-color 200ms ease;
}

.btn:focus-visible {
    outline: 2px solid var(--accent);
    outline-offset: 2px;
}

.btn-primary {
    background: var(--cta);
    color: var(--cta-text);
}

.btn-primary:hover {
    background: var(--cta-hover);
    transform: translateY(-1px);
}

.btn-secondary {
    background: transparent;
    color: var(--text);
    border: 1px solid var(--border-strong);
}

.btn-secondary:hover {
    border-color: var(--accent);
    color: var(--accent);
}

.btn-large {
    padding: 0.95rem 1.6rem;
    font-size: 1rem;
}

.btn-telegram-header { flex-shrink: 0; }

.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 5px;
    width: 40px;
    height: 40px;
    align-items: center;
    justify-content: center;
    margin-left: auto;
}

.mobile-menu-btn span {
    display: block;
    width: 20px;
    height: 2px;
    background: var(--text);
    transition: 200ms ease;
}

.mobile-menu-btn.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.mobile-menu-btn.active span:nth-child(2) { opacity: 0; }
.mobile-menu-btn.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-menu {
    position: fixed;
    inset: var(--header-h) 0 0 0;
    background: var(--bg-elevated);
    padding: var(--space-xl);
    transform: translateX(100%);
    transition: transform 250ms ease;
    z-index: 99;
    border-top: 1px solid var(--border);
}

.mobile-menu.active { transform: translateX(0); }

.mobile-nav {
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
}

.mobile-nav-link {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 600;
    padding: 0.45rem 0;
}

/* Hero */
.hero {
    padding: clamp(3.2rem, 9vw, 6rem) 0 clamp(3rem, 6vw, 5rem);
}

.hero-content { max-width: 720px; }

.hero-brand {
    font-family: var(--font-heading);
    font-size: clamp(2.8rem, 9vw, 5rem);
    font-weight: 700;
    letter-spacing: -0.055em;
    line-height: 0.98;
    margin-bottom: var(--space-lg);
    background: linear-gradient(135deg, #fff 20%, var(--accent) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.hero-title {
    font-family: var(--font-heading);
    font-size: clamp(1.45rem, 3.5vw, 2.05rem);
    font-weight: 500;
    letter-spacing: -0.03em;
    line-height: 1.25;
    margin-bottom: var(--space-lg);
    color: var(--text);
}

.hero-subtitle {
    font-size: 1.05rem;
    color: var(--text-muted);
    max-width: 34rem;
    margin-bottom: var(--space-xl);
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-md);
    margin-bottom: var(--space-2xl);
}

.hero-breadcrumb {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-bottom: var(--space-md);
}

.hero-breadcrumb a { color: var(--accent); }
.hero-breadcrumb a:hover { text-decoration: underline; }

.hero-keywords {
    display: flex;
    flex-wrap: wrap;
    gap: 0.45rem;
    margin: var(--space-lg) 0;
}

.hero-keyword {
    padding: 0.3rem 0.75rem;
    border-radius: 6px;
    background: var(--accent-dim);
    color: var(--accent);
    font-size: 0.78rem;
    font-weight: 500;
    letter-spacing: 0.01em;
}

.landing-trust {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-md);
    margin: var(--space-xl) 0;
}

.landing-trust-item {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: var(--space-md);
}

.landing-trust-item strong {
    display: block;
    font-family: var(--font-heading);
    font-size: 1.05rem;
    margin-bottom: 0.2rem;
    color: var(--text);
}

.landing-trust-item span {
    font-size: 0.78rem;
    color: var(--text-muted);
}

.hero-proof {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-xl);
    padding-top: var(--space-xl);
    border-top: 1px solid var(--border);
}

.hero-proof strong {
    display: block;
    font-family: var(--font-heading);
    font-size: 1.45rem;
    letter-spacing: -0.03em;
    color: var(--text);
}

.hero-proof span {
    font-size: 0.82rem;
    color: var(--text-muted);
}

/* Sections */
.section-title {
    font-family: var(--font-heading);
    font-size: clamp(1.55rem, 3vw, 2rem);
    font-weight: 600;
    letter-spacing: -0.035em;
    margin-bottom: var(--space-sm);
}

.section-subtitle {
    color: var(--text-muted);
    max-width: 36rem;
    margin-bottom: var(--space-2xl);
    font-size: 1rem;
}

.platforms-section,
.problem-section,
.reviews-section,
.faq-section,
.landing-steps,
.landing-tariffs,
.how-section,
.cta-section,
.stats-section,
.services-section {
    padding: var(--space-3xl) 0;
}

.problem-section {
    background: var(--bg-elevated);
    border-block: 1px solid var(--border);
}

.problem-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-xl);
}

.problem-item h3 {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    letter-spacing: -0.02em;
    margin-bottom: var(--space-sm);
}

.problem-item p {
    color: var(--text-muted);
    font-size: 0.95rem;
}

.services-grid,
.direction-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: var(--space-md);
}

.service-card,
.glass-card,
.direction-card,
.review-card,
.landing-step,
.landing-tariff {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    transition: border-color 200ms ease, background 200ms ease, transform 200ms ease;
}

.service-card,
.direction-card {
    display: block;
    padding: var(--space-xl);
}

.service-card:hover,
.direction-card:hover {
    background: var(--surface-hover);
    border-color: rgba(94, 234, 212, 0.28);
    transform: translateY(-2px);
}

.service-title,
.direction-card h3 {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    letter-spacing: -0.02em;
    margin-bottom: var(--space-sm);
}

.service-desc,
.direction-card p {
    color: var(--text-muted);
    font-size: 0.92rem;
}

.direction-card .price,
.service-card .price {
    margin-top: var(--space-md);
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--accent);
}

/* Steps */
.landing-steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(170px, 1fr));
    gap: var(--space-md);
}

.landing-step { padding: var(--space-lg); }

.landing-step-num {
    width: 1.85rem;
    height: 1.85rem;
    border-radius: 6px;
    background: var(--accent-dim);
    color: var(--accent);
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.85rem;
    display: grid;
    place-items: center;
    margin-bottom: var(--space-md);
}

.landing-step h3 {
    font-family: var(--font-heading);
    font-size: 1rem;
    margin-bottom: var(--space-sm);
}

.landing-step p {
    font-size: 0.88rem;
    color: var(--text-muted);
}

/* Tariffs */
.landing-tariffs {
    background: var(--bg-elevated);
    border-block: 1px solid var(--border);
}

.landing-tariffs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: var(--space-md);
}

.landing-tariff {
    padding: var(--space-xl);
    display: flex;
    flex-direction: column;
}

.landing-tariff-featured {
    border-color: rgba(94, 234, 212, 0.45);
    box-shadow: 0 0 0 1px rgba(94, 234, 212, 0.12);
}

.landing-tariff h3 {
    font-family: var(--font-heading);
    font-size: 1.05rem;
}

.landing-tariff-price {
    font-family: var(--font-heading);
    font-size: 1.85rem;
    font-weight: 700;
    letter-spacing: -0.04em;
    margin: var(--space-md) 0;
    color: var(--text);
}

.landing-tariff > p {
    color: var(--text-muted);
    font-size: 0.92rem;
    margin-bottom: var(--space-md);
}

.landing-tariff ul {
    margin: 0 0 var(--space-xl);
    flex: 1;
}

.landing-tariff li {
    position: relative;
    padding: 0.35rem 0 0.35rem 1.2rem;
    font-size: 0.88rem;
    color: var(--text-muted);
}

.landing-tariff li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.7rem;
    width: 0.4rem;
    height: 0.4rem;
    border-radius: 1px;
    background: var(--accent);
}

/* How */
.how-content {
    padding: var(--space-2xl);
    max-width: 860px;
}

.how-content h2 {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    letter-spacing: -0.025em;
    margin: 1.75rem 0 0.75rem;
}

.how-content h2:first-child { margin-top: 0; }

.how-content p {
    color: var(--text-muted);
    margin-bottom: 0.85rem;
    line-height: 1.7;
    font-size: 1.02rem;
}

.lead-form-section { padding: var(--space-2xl) 0; }

.lead-form-card {
    max-width: 640px;
    margin: 0 auto;
    padding: var(--space-xl);
    border: 1px solid var(--border);
    border-radius: 16px;
    background: var(--bg-elevated);
}

.lead-form {
    display: grid;
    gap: var(--space-md);
    margin-top: var(--space-lg);
}

.lead-label {
    display: grid;
    gap: 0.4rem;
    font-size: 0.9rem;
    color: var(--text-muted);
}

.lead-form input,
.lead-form textarea {
    width: 100%;
    padding: 0.85rem 1rem;
    border-radius: 10px;
    border: 1px solid var(--border);
    background: var(--bg);
    color: var(--text);
    font: inherit;
}

.lead-form input:focus,
.lead-form textarea:focus {
    outline: 2px solid var(--accent);
    outline-offset: 1px;
}

.lead-form .btn { justify-self: start; }

/* Reviews */
.reviews-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-md);
}

.review-card { padding: var(--space-xl); }

.review-card p {
    font-size: 0.98rem;
    margin-bottom: var(--space-lg);
    color: var(--text);
}

.review-meta {
    font-size: 0.82rem;
    color: var(--text-muted);
}

.review-meta strong {
    display: block;
    color: var(--accent);
    font-family: var(--font-heading);
    margin-bottom: 0.1rem;
}

/* FAQ */
.faq-list {
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
    max-width: 720px;
}

.faq-item { overflow: hidden; }

.faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--space-md);
    padding: 1.1rem 1.25rem;
    text-align: left;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.98rem;
    color: var(--text);
}

.faq-question svg {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
    color: var(--text-muted);
    transition: transform 200ms ease;
}

.faq-item.active .faq-question svg { transform: rotate(180deg); color: var(--accent); }

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 250ms ease;
}

.faq-item.active .faq-answer { max-height: 320px; }

.faq-answer p {
    padding: 0 1.25rem 1.15rem;
    color: var(--text-muted);
}

/* CTA */
.cta-section { padding-bottom: calc(var(--space-3xl) + 0.5rem); }

.cta-card {
    padding: clamp(2.2rem, 5vw, 3.4rem);
    text-align: center;
    background:
        linear-gradient(160deg, rgba(94, 234, 212, 0.1), transparent 45%),
        var(--surface);
    border: 1px solid rgba(94, 234, 212, 0.22);
    border-radius: 14px;
}

.cta-card h2 {
    font-family: var(--font-heading);
    font-size: clamp(1.5rem, 3vw, 2rem);
    letter-spacing: -0.035em;
    margin-bottom: var(--space-sm);
}

.cta-card p {
    color: var(--text-muted);
    margin-bottom: var(--space-xl);
}

/* Footer */
.footer {
    padding: var(--space-2xl) 0 var(--space-xl);
    border-top: 1px solid var(--border);
    background: var(--bg-elevated);
}

.footer-content {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-lg);
    align-items: center;
    justify-content: space-between;
    margin-bottom: var(--space-xl);
}

.footer-logo {
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 1.05rem;
    letter-spacing: -0.03em;
}

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

.footer-links a {
    font-size: 0.88rem;
    color: var(--text-muted);
}

.footer-links a:hover { color: var(--accent); }

.footer-bottom {
    font-size: 0.82rem;
    color: var(--text-muted);
}

/* Motion */
.fade-in {
    opacity: 0;
    transform: translateY(14px);
    transition: opacity 450ms ease, transform 450ms ease;
}

.fade-in.visible {
    opacity: 1;
    transform: none;
}

@media (prefers-reduced-motion: reduce) {
    .fade-in { opacity: 1; transform: none; transition: none; }
    .btn { transition: none; }
}

.gradient-text { color: var(--accent); }
.stats-table { width: 100%; border-collapse: collapse; }
.table-wrapper { padding: var(--space-lg); overflow-x: auto; }
.hero-stats { display: flex; flex-wrap: wrap; gap: var(--space-xl); margin-top: var(--space-xl); }
.stat-number { font-family: var(--font-heading); font-size: 1.5rem; font-weight: 700; display: block; }
.stat-label { font-size: 0.82rem; color: var(--text-muted); }

@media (max-width: 900px) {
    .nav { display: none; }
    .mobile-menu-btn { display: flex; }
    .btn-telegram-header { display: none; }
    .problem-grid,
    .reviews-grid,
    .landing-trust { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 560px) {
    .problem-grid,
    .reviews-grid,
    .landing-trust { grid-template-columns: 1fr; }
    .hero-actions { flex-direction: column; align-items: stretch; }
}
