/* =====================================================
   РаботаСама — единый стиль для лендинга и юр-страниц.
   Тема: тёмная, акцент — фирменный синий.
   Inline SVG-иконки от Heroicons (MIT).
   ===================================================== */

:root {
    --bg: #090c12;
    --bg-card: #151a24;
    --bg-card-hover: #191f2b;
    --bg-soft: #0e121a;
    --bg-panel: #111722;
    --fg: #f1f4f8;
    --fg-muted: #a7b2c4;
    --fg-dim: #6f7a8e;
    --accent: #4b95f7;
    --accent-hover: #69aaff;
    --accent-soft: rgba(75, 149, 247, 0.13);
    --success: #42d69a;
    --warning: #f4bd63;
    --border: #283044;
    --border-soft: #202738;
    --radius: 12px;
    --radius-sm: 8px;
    --shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', system-ui, sans-serif;
    background:
        radial-gradient(circle at 18% 0%, rgba(75, 149, 247, 0.12), transparent 34rem),
        radial-gradient(circle at 82% 10%, rgba(66, 214, 154, 0.08), transparent 30rem),
        linear-gradient(180deg, #090c12 0%, #0b0f16 48%, #090c12 100%);
    color: var(--fg);
    line-height: 1.6;
    min-height: 100vh;
    font-feature-settings: 'cv11', 'ss01', 'ss03';
    -webkit-font-smoothing: antialiased;
}

a { color: var(--accent); text-decoration: none; transition: color 0.15s; }
a:hover { color: var(--accent-hover); }

img, svg { display: block; max-width: 100%; }

.container { max-width: 1100px; margin: 0 auto; padding: 0 24px; }
.container-narrow { max-width: 760px; margin: 0 auto; padding: 0 24px; }

/* ============ Навбар ============ */
.navbar {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(9, 12, 18, 0.82);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border-soft);
}
.navbar-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 24px;
    max-width: 1100px;
    margin: 0 auto;
}
.brand {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 700;
    font-size: 18px;
    color: var(--fg);
}
.brand-mark {
    width: 32px;
    height: 32px;
    /* Сплошной акцентный синий — синхронизировано с AccentBrush #4B95F7
       в WPF-клиенте и фавиконками. Никаких градиентов. */
    background: var(--accent);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 800;
    font-size: 16px;
}
.nav-links {
    display: flex;
    gap: 24px;
    list-style: none;
}
.nav-links a {
    color: var(--fg-muted);
    font-size: 14px;
    font-weight: 500;
}
.nav-links a:hover { color: var(--fg); }

/* ============ Кнопки ============ */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 22px;
    border-radius: var(--radius-sm);
    font-weight: 600;
    font-size: 15px;
    cursor: pointer;
    border: none;
    transition: transform 0.15s, background 0.15s, border-color 0.15s, color 0.15s, box-shadow 0.15s;
    text-decoration: none;
    white-space: nowrap;
}
.btn-primary {
    background: linear-gradient(180deg, var(--accent-hover), var(--accent));
    color: white;
    box-shadow: 0 12px 30px rgba(75, 149, 247, 0.22);
}
.btn-primary:hover {
    background: linear-gradient(180deg, #7ab6ff, #559df8);
    transform: translateY(-1px);
    color: white;
}
.btn-secondary {
    background: rgba(255, 255, 255, 0.035);
    color: var(--fg);
    border: 1px solid var(--border);
}
.btn-secondary:hover {
    background: var(--bg-card-hover);
    border-color: var(--accent);
    color: var(--fg);
}
.btn-lg {
    padding: 16px 32px;
    font-size: 16px;
}

/* ============ Hero ============ */
.hero {
    padding: 70px 0 56px;
    position: relative;
    overflow: hidden;
}
.hero::before {
    content: '';
    position: absolute;
    top: -260px;
    left: 50%;
    transform: translateX(-50%);
    width: 920px;
    height: 920px;
    background: radial-gradient(circle, rgba(75, 149, 247, 0.12) 0%, transparent 68%);
    pointer-events: none;
    z-index: 0;
}
.hero > * { position: relative; z-index: 1; }
.hero-layout {
    display: grid;
    grid-template-columns: minmax(0, 1.02fr) minmax(360px, 0.88fr);
    gap: 52px;
    align-items: center;
}
.hero-copy {
    max-width: 650px;
}
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 14px;
    background: var(--accent-soft);
    border: 1px solid rgba(75, 149, 247, 0.28);
    border-radius: 100px;
    font-size: 13px;
    color: var(--accent);
    font-weight: 500;
    margin-bottom: 24px;
}
h1 {
    font-size: 60px;
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: 0;
    margin-bottom: 24px;
    background: linear-gradient(135deg, #fff 0%, #d7deea 48%, #aeb9cb 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.hero-sub {
    font-size: 19px;
    color: var(--fg-muted);
    max-width: 640px;
    margin: 0 0 34px;
}
.hero-cta {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}
.hero-meta {
    margin-top: 24px;
    color: var(--fg-dim);
    font-size: 13px;
}
.hero-product {
    position: relative;
    min-height: 338px;
}
.hero-product::before {
    content: '';
    position: absolute;
    inset: 44px -10px -14px 28px;
    background: linear-gradient(135deg, rgba(75, 149, 247, 0.20), rgba(66, 214, 154, 0.12));
    border-radius: 26px;
    filter: blur(10px);
}
.product-window {
    position: relative;
    overflow: hidden;
    min-height: 318px;
    border: 1px solid rgba(126, 167, 224, 0.26);
    border-radius: 18px;
    background:
        linear-gradient(145deg, rgba(255, 255, 255, 0.06), transparent 38%),
        var(--bg-card);
    box-shadow: 0 28px 80px rgba(0, 0, 0, 0.42);
}
.product-topbar {
    display: flex;
    gap: 7px;
    padding: 15px 18px;
    border-bottom: 1px solid var(--border-soft);
    background: rgba(255, 255, 255, 0.025);
}
.product-topbar span {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--fg-dim);
}
.product-topbar span:first-child { background: #ff6b6b; }
.product-topbar span:nth-child(2) { background: var(--warning); }
.product-topbar span:nth-child(3) { background: var(--success); }
.product-body {
    display: grid;
    grid-template-columns: 84px 1fr;
    gap: 16px;
    padding: 18px;
}
.product-sidebar {
    display: grid;
    gap: 12px;
    align-content: start;
    padding: 12px;
    min-height: 246px;
    border-radius: 14px;
    background: var(--bg-soft);
}
.product-sidebar span {
    height: 34px;
    border-radius: 10px;
    background: var(--border);
}
.product-sidebar span:first-child { background: var(--accent); }
.product-content {
    display: grid;
    gap: 16px;
    align-content: start;
}
.product-line,
.product-stats span,
.product-list span {
    display: block;
    border-radius: 10px;
    background: var(--border);
}
.product-line.wide {
    height: 46px;
    background: linear-gradient(90deg, rgba(75, 149, 247, 0.18), rgba(66, 214, 154, 0.14));
}
.product-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
}
.product-stats span { height: 78px; }
.product-stats span:first-child { background: rgba(79, 158, 255, 0.2); }
.product-stats span:nth-child(2) { background: rgba(52, 201, 140, 0.16); }
.product-stats span:nth-child(3) { background: rgba(243, 182, 91, 0.16); }
.product-list {
    display: grid;
    gap: 10px;
}
.product-list span {
    height: 32px;
}

/* ============ Секции ============ */
section { padding: 62px 0; }
.section-title {
    font-size: 38px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 16px;
    letter-spacing: 0;
}
.section-sub {
    text-align: center;
    color: var(--fg-muted);
    font-size: 17px;
    max-width: 600px;
    margin: 0 auto 36px;
}

/* ============ Сетка фич ============ */
.features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 16px;
}
.feature {
    background: linear-gradient(180deg, rgba(21, 26, 36, 0.96), rgba(17, 23, 34, 0.96));
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    padding: 24px;
    transition: all 0.2s;
}
.feature:hover {
    border-color: rgba(75, 149, 247, 0.55);
    background: var(--bg-card-hover);
    transform: translateY(-2px);
}
.feature-icon {
    width: 48px;
    height: 48px;
    background: rgba(75, 149, 247, 0.12);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
    color: var(--accent);
}
.feature-icon svg { width: 24px; height: 24px; }
.feature-title {
    font-size: 17px;
    font-weight: 600;
    margin-bottom: 8px;
}
.feature-desc {
    color: var(--fg-muted);
    font-size: 14px;
    line-height: 1.6;
}

/* ============ Шаги (Как работает) ============ */
.steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 16px;
    counter-reset: step;
}
.step {
    background: linear-gradient(180deg, rgba(21, 26, 36, 0.96), rgba(17, 23, 34, 0.96));
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    padding: 28px 24px 24px;
    position: relative;
}
.step-num {
    counter-increment: step;
    position: absolute;
    top: -16px;
    left: 28px;
    background: linear-gradient(180deg, var(--accent-hover), var(--accent));
    color: white;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 14px;
}
.step-num::before { content: counter(step); }
.step-title {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 8px;
    margin-top: 12px;
}
.step-desc {
    color: var(--fg-muted);
    font-size: 14px;
}

/* ============ Тарифы ============ */
.pricing-wrap {
    display: grid;
    grid-template-columns: minmax(0, 1.75fr) minmax(280px, 0.82fr);
    gap: 22px;
    align-items: start;
}
.pricing-trust {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 8px;
    margin: -20px auto 34px;
}
.pricing-trust span {
    display: inline-flex;
    align-items: center;
    min-height: 32px;
    padding: 6px 12px;
    color: var(--fg-muted);
    font-size: 13px;
    font-weight: 600;
    background: rgba(255, 255, 255, 0.028);
    border: 1px solid var(--border-soft);
    border-radius: 100px;
}
.pricing-trust span::before {
    content: '';
    width: 6px;
    height: 6px;
    margin-right: 8px;
    border-radius: 50%;
    background: var(--success);
    box-shadow: 0 0 0 4px rgba(66, 214, 154, 0.10);
}
@media (max-width: 860px) {
    .pricing-wrap { grid-template-columns: 1fr; }
}
.price-card {
    background: linear-gradient(180deg, rgba(21, 26, 36, 0.98), rgba(17, 23, 34, 0.98));
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    padding: 30px;
    position: relative;
}
.price-card.featured {
    border-color: rgba(75, 149, 247, 0.85);
    box-shadow: 0 0 0 3px rgba(75, 149, 247, 0.10), 0 24px 70px rgba(0, 0, 0, 0.22);
}
.price-card.featured::before {
    content: '';
    position: absolute;
    inset: 0 0 auto 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(105, 170, 255, 0.85), transparent);
}
.price-badge {
    position: absolute;
    top: -10px;
    right: 24px;
    background: linear-gradient(180deg, var(--accent-hover), var(--accent));
    color: white;
    padding: 4px 12px;
    border-radius: 100px;
    font-size: 12px;
    font-weight: 600;
}
.price-name {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 6px;
}
.price-tag {
    font-size: 34px;
    font-weight: 800;
    color: var(--fg);
    letter-spacing: 0;
}
.price-period {
    color: var(--fg-muted);
    font-size: 15px;
    margin-bottom: 18px;
}
.price-features {
    list-style: none;
    margin-top: 14px;
}
.price-features li {
    padding: 7px 0;
    color: var(--fg-muted);
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 14px;
    border-top: 1px solid var(--border-soft);
}
.price-features li:first-child { border-top: none; }
.price-features svg {
    color: var(--success);
    flex-shrink: 0;
    margin-top: 3px;
    width: 18px;
    height: 18px;
}

.price-includes-title,
.price-options-title {
    color: var(--fg-muted);
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: 600;
    margin: 22px 0 10px;
}
.price-options {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0 18px;
    border-top: 1px solid var(--border-soft);
    border-bottom: 1px solid var(--border-soft);
}
.price-options li {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
    min-height: 44px;
    padding: 10px 0;
    color: var(--fg-muted);
    font-size: 14px;
    background: transparent;
    border-top: 1px solid var(--border-soft);
}
.price-options li:nth-child(1),
.price-options li:nth-child(2) {
    border-top: none;
}
.price-options .opt-price {
    color: var(--accent);
    font-weight: 600;
    white-space: nowrap;
    flex-shrink: 0;
}
.price-note {
    color: var(--fg-muted);
    font-size: 12px;
    line-height: 1.55;
    margin-top: 16px;
    padding-top: 16px;
    border-top: 1px solid var(--border-soft);
}

.option-line {
    display: flex;
    justify-content: space-between;
    padding: 8px 0;
    border-top: 1px solid var(--border-soft);
    font-size: 14px;
    color: var(--fg-muted);
}
.option-line:first-child { border-top: none; }
.option-line strong { color: var(--fg); font-weight: 500; }
.option-add { color: var(--accent); font-weight: 600; }

.discount-row {
    display: flex;
    justify-content: space-between;
    margin-top: 12px;
    padding: 10px 14px;
    background: rgba(52, 201, 140, 0.08);
    border: 1px solid rgba(52, 201, 140, 0.2);
    border-radius: 8px;
    font-size: 13px;
    color: var(--success);
}

/* ===== Переключатель периода (CSS-only, скользящий индикатор) =====
   Радиокнопки полностью убраны из рендера через display:none.
   :checked-стейт при этом сохраняется, sibling-селекторы работают. */
.price-card input[name="period"] {
    display: none;
}

.period-tabs {
    position: relative;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    padding: 4px;
    background: rgba(9, 12, 18, 0.72);
    border: 1px solid var(--border);
    border-radius: 100px;
    margin-top: 18px;
    margin-bottom: 4px;
}

/* Скользящий индикатор за активной кнопкой. */
.period-tabs::before {
    content: '';
    position: absolute;
    top: 4px;
    bottom: 4px;
    left: 4px;
    width: calc((100% - 8px) / 3);
    background: linear-gradient(180deg, var(--accent-hover), var(--accent));
    border-radius: 100px;
    box-shadow: 0 2px 12px rgba(75, 149, 247, 0.34);
    transition: transform 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    pointer-events: none;
    z-index: 0;
}
#period-14:checked ~ .period-tabs::before { transform: translateX(100%); }
#period-30:checked ~ .period-tabs::before { transform: translateX(200%); }

.period-tabs label {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    min-height: 42px;
    padding: 8px 8px;
    font-size: 12px;
    font-weight: 500;
    color: var(--fg-muted);
    cursor: pointer;
    user-select: none;
    transition: color 0.2s;
    border-radius: 100px;
}
.period-tabs label:hover { color: var(--fg); }

#period-7:checked  ~ .period-tabs label[for="period-7"],
#period-14:checked ~ .period-tabs label[for="period-14"],
#period-30:checked ~ .period-tabs label[for="period-30"] {
    color: white;
}

.period-tabs .discount-tag {
    font-size: 11px;
    padding: 1px 7px;
    border-radius: 100px;
    background: rgba(52, 201, 140, 0.18);
    color: var(--success);
    font-weight: 600;
    transition: all 0.2s;
}
#period-14:checked ~ .period-tabs label[for="period-14"] .discount-tag,
#period-30:checked ~ .period-tabs label[for="period-30"] .discount-tag {
    background: rgba(255, 255, 255, 0.25);
    color: white;
}

/* Цены под табы — показываем нужную, скрываем остальные. */
.period-price-block { display: none; }
#period-7:checked  ~ .period-prices .period-7-price,
#period-14:checked ~ .period-prices .period-14-price,
#period-30:checked ~ .period-prices .period-30-price {
    display: block;
}

/* AI-pack варианты */
.ai-pack {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 14px;
    border: 1px solid var(--border-soft);
    border-radius: var(--radius-sm);
    margin-bottom: 10px;
    background: rgba(255, 255, 255, 0.032);
}
.ai-pack-title { font-weight: 500; }
.ai-pack-price { font-weight: 700; color: var(--accent); }

/* ============ FAQ ============ */
.faq-list { max-width: 760px; margin: 0 auto; }
.faq-item {
    border-bottom: 1px solid var(--border);
    padding: 20px 0;
}
.faq-q {
    cursor: pointer;
    list-style: none;
    font-weight: 600;
    font-size: 16px;
    color: var(--fg);
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-right: 12px;
}
.faq-q::after {
    content: '+';
    font-size: 22px;
    color: var(--fg-muted);
    transition: transform 0.2s;
    font-weight: 400;
}
.faq-q::-webkit-details-marker { display: none; }
.faq-item[open] .faq-q::after { transform: rotate(45deg); }
.faq-a {
    padding: 14px 0 0;
    color: var(--fg-muted);
    font-size: 15px;
    line-height: 1.7;
}

/* ============ CTA-блок внизу ============ */
.cta-block {
    background: linear-gradient(135deg, rgba(21, 26, 36, 0.98) 0%, rgba(14, 18, 26, 0.98) 100%);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    padding: 44px 32px;
    text-align: center;
    margin: 40px 0;
}
.cta-block h2 {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 12px;
}
.cta-block p {
    color: var(--fg-muted);
    margin-bottom: 24px;
}

/* ============ Футер ============ */
footer {
    background: rgba(14, 18, 26, 0.9);
    border-top: 1px solid var(--border);
    padding: 48px 0 32px;
    margin-top: 56px;
}
.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 48px;
    margin-bottom: 32px;
}
@media (max-width: 700px) {
    .footer-grid { grid-template-columns: 1fr; gap: 28px; }
}
.footer-col h4 {
    font-size: 13px;
    font-weight: 600;
    color: var(--fg);
    margin-bottom: 14px;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}
.footer-col ul { list-style: none; }
.footer-col li { padding: 4px 0; }
.footer-col a { color: var(--fg-muted); font-size: 14px; }
.footer-col a:hover { color: var(--fg); }
.footer-about {
    color: var(--fg-muted);
    font-size: 14px;
    line-height: 1.6;
    max-width: 360px;
}
.footer-bottom {
    padding-top: 24px;
    border-top: 1px solid var(--border-soft);
    color: var(--fg-dim);
    font-size: 13px;
    text-align: center;
}

/* ============ Юридические страницы ============ */
.legal {
    padding: 80px 0;
}
.back-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--fg-muted);
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 24px;
    transition: color 0.15s, transform 0.15s;
}
.back-link:hover {
    color: var(--accent);
    transform: translateX(-2px);
}
.back-link svg {
    width: 18px;
    height: 18px;
}
.legal h1 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 8px;
    background: none;
    -webkit-text-fill-color: var(--fg);
    color: var(--fg);
    text-align: left;
}
.legal .doc-meta {
    color: var(--fg-muted);
    font-size: 14px;
    margin-bottom: 40px;
}
.legal h2 {
    font-size: 22px;
    font-weight: 700;
    margin: 40px 0 16px;
    color: var(--fg);
}
.legal h3 {
    font-size: 17px;
    font-weight: 600;
    margin: 24px 0 12px;
    color: var(--fg);
}
.legal p, .legal li {
    color: var(--fg-muted);
    font-size: 15px;
    line-height: 1.7;
    margin-bottom: 12px;
}
.legal ul, .legal ol { padding-left: 24px; margin-bottom: 16px; }
.legal li { margin-bottom: 6px; }
.legal strong { color: var(--fg); font-weight: 600; }
.legal table {
    width: 100%;
    border-collapse: collapse;
    margin: 16px 0;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    overflow: hidden;
}
.legal th, .legal td {
    padding: 12px 16px;
    text-align: left;
    border-bottom: 1px solid var(--border-soft);
    color: var(--fg-muted);
    font-size: 14px;
}
.legal th {
    background: var(--bg-soft);
    color: var(--fg);
    font-weight: 600;
}
.legal td:last-child, .legal th:last-child { text-align: right; }

/* ============ Контакты ============ */
.contacts-grid {
    display: grid;
    gap: 16px;
    margin: 32px 0;
}
.contact-row {
    display: flex;
    gap: 16px;
    padding: 16px 20px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
}
.contact-row svg {
    color: var(--accent);
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    margin-top: 2px;
}
.contact-key {
    color: var(--fg-muted);
    font-size: 13px;
    margin-bottom: 2px;
}
.contact-val {
    color: var(--fg);
    font-weight: 500;
    font-size: 15px;
    word-break: break-all;
}

@media (max-width: 980px) {
    .hero-layout {
        grid-template-columns: 1fr;
        gap: 36px;
    }
    .hero {
        text-align: center;
        padding-top: 62px;
    }
    h1 {
        font-size: 52px;
    }
    .hero-copy {
        max-width: 720px;
        margin: 0 auto;
    }
    .hero-sub {
        margin-left: auto;
        margin-right: auto;
    }
    .hero-cta {
        justify-content: center;
    }
    .hero-product {
        min-height: 300px;
        max-width: 560px;
        margin: 0 auto;
        width: 100%;
    }
    .product-window { min-height: 300px; }
    .price-options {
        grid-template-columns: 1fr;
    }
    .price-options li:nth-child(2) {
        border-top: 1px solid var(--border-soft);
    }
}

@media (max-width: 700px) {
    .navbar-inner {
        padding: 14px 18px;
    }
    .nav-links {
        display: none;
    }
    .container,
    .container-narrow {
        padding: 0 18px;
    }
    .hero {
        padding: 48px 0 42px;
    }
    h1 {
        font-size: 40px;
    }
    .hero-sub {
        font-size: 17px;
    }
    .hero-product {
        display: none;
    }
    section {
        padding: 54px 0;
    }
    .section-title {
        font-size: 30px;
    }
    .section-sub {
        margin-bottom: 30px;
    }
    .pricing-trust {
        justify-content: flex-start;
        margin-top: -12px;
        margin-bottom: 24px;
    }
    .btn,
    .btn-lg {
        width: 100%;
        justify-content: center;
        white-space: normal;
        text-align: center;
    }
    .price-card {
        padding: 24px 18px;
    }
    .price-badge {
        position: static;
        display: inline-flex;
        margin-bottom: 12px;
    }
    .period-tabs {
        border-radius: var(--radius-sm);
    }
    .period-tabs::before,
    .period-tabs label {
        border-radius: 7px;
    }
    .period-tabs label {
        flex-direction: column;
        gap: 2px;
        min-height: 52px;
        line-height: 1.2;
    }
    .price-options li {
        align-items: flex-start;
    }
    .cta-block {
        padding: 34px 20px;
    }
}


/* SmartScreen FAQ — нумерованные шаги со скриншотами. */
.smartscreen-steps {
    list-style: decimal;
    padding-left: 24px;
    margin: 12px 0;
}
.smartscreen-steps li {
    margin: 16px 0;
    padding-left: 4px;
}
.smartscreen-steps img {
    display: block;
    max-width: 420px;
    width: 100%;
    margin-top: 10px;
    border-radius: 6px;
    border: 1px solid var(--border);
    background: var(--bg-card);
}
.faq-a p { margin: 8px 0; }
.faq-a p:first-child { margin-top: 0; }
.faq-a p:last-child  { margin-bottom: 0; }