/* Общий слой тёмной главной (пробники v3–v5): тона заглушки, секции без привязки к компоновке.
   Скелеты страниц (герой, сетки первого экрана) живут в самих шаблонах. */
:root { --lp-amber: #ffc107; --lp-ink: #e8eaee; --lp-soft: #cfd3da; --lp-dim: #9aa3ae; --lp-ok: #8fe8a0; --lp-warn: #ffe08a; }
body { background: #0e1015; }
.container-fluid { padding: 0 !important; }
footer { background: rgba(11,13,17,0.85) !important; border-color: rgba(255,255,255,0.1) !important; backdrop-filter: blur(6px); position: sticky; bottom: 0; z-index: 100; }
footer a { color: var(--lp-dim) !important; }

.lp {
    padding: 50px 20px 40px; display: flex; flex-direction: column; align-items: center;
    color: var(--lp-soft);
    background-image:
        radial-gradient(1100px 620px at 50% -12%, rgba(255,193,7,.12), transparent 62%),
        linear-gradient(180deg, #14171e 0%, #0b0d11 100%);
}
.lp h2 { color: #fff; font-weight: 700; }
.lp section, .lp .lp-block { width: 100%; }

.lp-glass {
    background: linear-gradient(180deg, rgba(255,255,255,.055) 0%, rgba(255,255,255,.02) 100%);
    border: 1px solid rgba(255,255,255,.09); border-radius: calc(var(--ctr-radius) * 2);
    box-shadow: 0 24px 60px rgba(0,0,0,.45), inset 0 1px 0 rgba(255,255,255,.07);
}

/* ── ретро-заголовок BARCODE1 с бегущим лучом сканера (вместо искры) ── */
.bc1-scan-wrap { position: relative; display: inline-block; padding: 2px 10px; border-radius: 12px; overflow: hidden; }
.bc1-scan-inner {
    font-family: 'Press Start 2P', sans-serif; font-style: normal; font-size: 2.4rem; font-weight: 400;
    letter-spacing: 5px; color: #ffe066;
    text-shadow: 1px 1px 0 #c8960a, 2px 2px 0 #b07800, 3px 3px 0 #9a6600, 4px 4px 0 #845400, 5px 5px 0 #6e4200, 6px 6px 10px rgba(0,0,0,0.6);
    white-space: nowrap; display: flex; align-items: center; justify-content: center; gap: 4px; line-height: 1;
}
.bc1-scan-inner em {
    color: #fff; font-style: normal; font-size: 3.8rem; line-height: 1; display: inline-block; margin-left: 2px; align-self: flex-start;
    text-shadow: 1px 1px 0 #aaa, 2px 2px 0 #888, 3px 3px 0 #666, 4px 4px 0 #444, 5px 5px 8px rgba(0,0,0,0.6);
}
.bc1-scan-beam {
    position: absolute; top: -4px; bottom: -4px; left: -90px; width: 70px; pointer-events: none; z-index: 2;
    background: linear-gradient(90deg, transparent, rgba(255,193,7,.3) 42%, rgba(255,236,160,.75) 50%, rgba(255,193,7,.3) 58%, transparent);
    mix-blend-mode: screen;
    animation: bc1beam 3.4s cubic-bezier(.45,0,.55,1) infinite;
}
@keyframes bc1beam { 0% { left: -90px; } 55%, 100% { left: calc(100% + 20px); } }
@media (prefers-reduced-motion: reduce) { .bc1-scan-beam { animation: none; display: none; } }

/* ── чипы фич и CTA ── */
.hero-chips { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 24px; }
.hero-chips span {
    background: rgba(40,167,69,0.16); border: 1px solid rgba(40,167,69,0.4);
    border-radius: var(--ctr-radius); padding: 3px 10px; font-size: 0.82rem; color: var(--lp-ok);
}
.hero-cta { display: flex; align-items: center; gap: 14px; flex-wrap: wrap; margin-bottom: 4px; }
.hero-oauth { display: flex; align-items: center; gap: 10px; }
.hero-oauth-note { color: var(--lp-dim); font-size: 0.85rem; white-space: nowrap; }
.sl-pulse { animation: slPulse 1.5s ease-in-out infinite; box-shadow: 0 0 20px rgba(40,167,69,0.5); }
@keyframes slPulse {
    0%,100% { box-shadow: 0 0 10px rgba(40,167,69,0.4); transform: scale(1); }
    50% { box-shadow: 0 0 30px rgba(40,167,69,0.8); transform: scale(1.03); }
}
@media (prefers-reduced-motion: reduce) { .sl-pulse { animation: none; } }

/* ── повторная обработка: таблица-демо «сервис помнит ваши КИЗ» ── */
.dup-demo { padding: 16px 18px; text-align: left; }
.dup-head { display: flex; justify-content: space-between; align-items: center; gap: 10px; margin-bottom: 10px; flex-wrap: wrap; }
.dup-head b { color: #fff; font-size: 0.92rem; }
.dup-flag { color: var(--lp-amber); font-size: 0.82rem; font-weight: 600; }
.dup-row {
    display: flex; justify-content: space-between; align-items: center; gap: 10px;
    padding: 6px 8px; border-radius: var(--ctr-radius); font-family: Consolas, monospace; font-size: 12px; font-weight: 700; color: var(--lp-soft);
}
.dup-row + .dup-row { border-top: 1px solid rgba(255,255,255,.06); }
.dup-row.dup-hit { background: rgba(255,193,7,.07); }
.dup-code { overflow: hidden; text-overflow: ellipsis; white-space: nowrap; letter-spacing: .3px; }
.dup-badge { flex-shrink: 0; font-family: system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif; font-weight: 600; font-size: 11px; padding: 2px 9px; border-radius: 999px; }
.dup-badge-old { color: var(--lp-warn); background: rgba(255,193,7,.14); border: 1px solid rgba(255,193,7,.4); }
.dup-badge-new { color: var(--lp-ok); background: rgba(40,167,69,.14); border: 1px solid rgba(40,167,69,.4); }
.dup-note { margin: 10px 0 0; color: var(--lp-dim); font-size: 0.82rem; line-height: 1.45; }

/* ── «Этикетка 2 в 1» — отличительный блок (общий для v3–v5) ── */
.benefits { max-width: 980px; margin: 0 auto 60px; padding: 0 12px; }
.benefits h2 { text-align: center; font-size: 1.5rem; margin-bottom: 8px; }
.benefits-sub { text-align: center; color: var(--lp-soft); font-size: 1rem; margin: 0 auto 28px; max-width: 720px; line-height: 1.55; }
.benefit-row { display: flex; flex-wrap: wrap; gap: 16px; justify-content: center; }
.benefit-card { flex: 1; min-width: 200px; max-width: 240px; padding: 22px 18px; text-align: center; }
.benefit-icon { font-size: 2rem; margin-bottom: 10px; }
.benefit-title { font-weight: 700; font-size: 1rem; color: #fff; margin-bottom: 8px; }
.benefit-text { color: var(--lp-dim); font-size: 0.88rem; line-height: 1.5; }
.benefits-more { text-align: center; margin: 18px 0 0; }
.benefits-more a { color: var(--lp-amber); font-size: 0.92rem; text-decoration: none; border-bottom: 1px dashed var(--lp-amber); }

/* ── «Не только этикетки» ── */
.eco { max-width: 1100px; margin: 0 auto 60px; padding: 0 12px; }
.eco h2 { text-align: center; font-size: 1.5rem; margin-bottom: 8px; }
.eco-sub { text-align: center; color: var(--lp-soft); margin: 0 auto 26px; max-width: 720px; line-height: 1.55; }
.eco-featured { display: flex; align-items: center; gap: 26px; padding: 26px 30px; margin-bottom: 16px; text-decoration: none; transition: border-color .15s, transform .15s; }
.eco-featured:hover { border-color: rgba(255,193,7,.35); transform: translateY(-2px); }
.eco-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 14px; }
.eco-card { display: block; padding: 18px 18px 16px; text-decoration: none; transition: border-color .15s, transform .15s; }
.eco-card:hover { border-color: rgba(255,193,7,.35); transform: translateY(-2px); }
.eco-ic { color: var(--lp-amber); margin-bottom: 10px; }
.eco-ic svg { width: 26px; height: 26px; display: block; }
.eco-title { color: #fff; font-weight: 700; margin-bottom: 6px; font-size: 0.98rem; }
.eco-text { color: var(--lp-dim); font-size: 0.88rem; line-height: 1.5; margin: 0; }
.eco-go { display: inline-block; margin-top: 10px; color: var(--lp-amber); font-size: 0.85rem; }
.eco-featured .eco-title { font-size: 1.15rem; }
.eco-featured .eco-text { font-size: 0.95rem; color: var(--lp-soft); }
.eco-featured .eco-ic svg { width: 44px; height: 44px; }
.eco-tag { display: inline-block; margin-left: 8px; padding: 1px 8px; border-radius: 999px; font-size: 0.72rem; font-weight: 600; background: rgba(40,167,69,0.18); border: 1px solid rgba(40,167,69,0.45); color: var(--lp-ok); vertical-align: 2px; }

/* ── возможности ── */
.feat-card { max-width: 820px; margin: 0 auto 48px; padding: 28px 30px 22px; }
.feat-card h2 { text-align: center; font-size: 1.25rem; margin-bottom: 20px; letter-spacing: 0.3px; }
.feat-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 8px 24px; }
.feat-item { display: flex; align-items: flex-start; gap: 9px; font-size: 0.93rem; line-height: 1.45; color: var(--lp-soft); padding: 4px 6px; border-radius: var(--ctr-radius); transition: background .12s; }
.feat-item:hover { background: rgba(255,255,255,0.05); }
.feat-check {
    flex-shrink: 0; width: 18px; height: 18px; border-radius: 50%; margin-top: 1px; position: relative;
    background: linear-gradient(180deg, #34e85a 0%, #15992f 100%);
    box-shadow: inset 0 0 0 1px #0f7a24, inset 0 1px 0 rgba(255,255,255,0.4), 0 2px 4px rgba(0,0,0,0.35);
}
.feat-check::after { content: ''; position: absolute; left: 5px; top: 2px; width: 5px; height: 9px; border-right: 2px solid #fff; border-bottom: 2px solid #fff; transform: rotate(45deg); }

/* ── стоимость ── */
.price-card { max-width: 560px; margin: 0 auto 48px; padding: 28px 32px; text-align: center; color: #fff; }
.price-card .price-h { font-size: 1.1rem; font-weight: 600; margin-bottom: 16px; color: var(--lp-amber); }
.price-row { display: flex; justify-content: center; gap: 32px; flex-wrap: wrap; margin-bottom: 20px; }
.price-cell b { display: block; font-size: 2rem; font-weight: 800; }
.price-cell span { display: block; font-size: 0.85rem; color: var(--lp-dim); margin-top: 4px; }
.price-sep { width: 1px; background: rgba(255,255,255,0.15); }
.price-link { color: var(--lp-amber); font-size: 0.9rem; text-decoration: none; border-bottom: 1px dashed var(--lp-amber); }

/* ── «для кого», SEO-ссылки, FAQ, блог ── */
.for-whom { max-width: 620px; text-align: center; color: var(--lp-dim); font-size: 0.95rem; line-height: 1.6; margin: 0 auto 34px; padding: 0 12px; }
.seo-links { max-width: 1100px; margin: 0 auto 42px; padding: 0 12px; }
.seo-links h2 { text-align: center; font-size: 1.3rem; margin-bottom: 12px; }
.seo-link-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 10px; }
.seo-link-grid a {
    color: var(--lp-soft); text-decoration: none; border: 1px solid rgba(255,255,255,0.14);
    border-radius: var(--ctr-radius); padding: 10px 14px; background: rgba(255,255,255,0.04);
    transition: background .15s, border-color .15s, transform .15s;
}
.seo-link-grid a:hover { background: rgba(255,193,7,0.08); border-color: rgba(255,193,7,0.35); transform: translateY(-1px); color: #fff; }
.home-faq { max-width: 860px; margin: 0 auto 46px; padding: 0 12px; }
.home-faq h2 { text-align: center; font-size: 1.3rem; margin: 0 0 14px; }
.home-faq-list { display: flex; flex-direction: column; gap: 10px; }
.home-faq-list details { border: 1px solid rgba(255,255,255,0.1); border-radius: var(--ctr-radius); background: rgba(255,255,255,0.04); padding: 13px 16px; }
.home-faq-list details[open] { border-color: rgba(255,193,7,0.3); }
.home-faq-list summary { cursor: pointer; color: #fff; font-weight: 700; list-style: none; }
.home-faq-list summary::-webkit-details-marker { display: none; }
.home-faq-list p { margin: 10px 0 0; color: var(--lp-soft); line-height: 1.55; font-size: 0.92rem; }
.home-faq-list a { color: var(--lp-amber); }
.blog-section { max-width: 1100px; margin: 0 auto 10px; padding: 0 12px; }
.blog-section h2 { text-align: center; font-size: 1.5rem; margin-bottom: 8px; }
.blog-sub { text-align: center; color: var(--lp-soft); font-size: 0.95rem; margin: 0 auto 28px; max-width: 720px; line-height: 1.5; }
.blog-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 14px; margin-bottom: 24px; }
.blog-card { padding: 16px 18px; transition: border-color .15s, transform .15s; display: flex; flex-direction: column; border-radius: var(--ctr-radius); }
.blog-card:hover { border-color: rgba(255,193,7,.3); transform: translateY(-2px); }
.blog-card h3 { font-size: 0.98rem; margin: 0 0 8px; line-height: 1.35; font-weight: 700; }
.blog-card h3 a { color: #fff; text-decoration: none; }
.blog-card h3 a:hover { color: var(--lp-amber); }
.blog-card p { color: var(--lp-dim); font-size: 0.86rem; line-height: 1.5; margin: 0 0 10px; flex: 1; }
.blog-read-more { color: var(--lp-amber); font-size: 0.82rem; text-decoration: none; margin-top: auto; }
.blog-read-more:hover { text-decoration: underline; }
.blog-all-link { text-align: center; margin-top: 18px; }
.blog-all-link a {
    color: var(--lp-amber); font-size: 0.95rem; font-weight: 600; text-decoration: none; padding: 8px 20px;
    border: 1px solid rgba(255,193,7,0.35); border-radius: var(--ctr-radius); display: inline-block; transition: background .15s;
}
.blog-all-link a:hover { background: rgba(255,193,7,0.1); }

/* ── общий мобильный слой ── */
@media (max-width: 900px) { .eco-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 700px) {
    .lp { padding: 24px 14px 30px; }
    .bc1-scan-inner { font-size: 1.6rem; letter-spacing: 3px; }
    .bc1-scan-inner em { font-size: 2.5rem; }
    .hero-chips span { font-size: 0.75rem; padding: 2px 8px; }
    .eco-featured { flex-direction: column; text-align: center; gap: 14px; padding: 20px 16px; }
    .eco-grid { grid-template-columns: 1fr; }
    .benefit-card { min-width: 140px; padding: 16px 14px; }
    .benefit-icon { font-size: 1.5rem; }
    .benefit-title { font-size: 0.88rem; }
    .benefit-text { font-size: 0.8rem; }
    .feat-grid { grid-template-columns: 1fr; }
    .feat-card { padding: 20px 16px; }
    .price-card { padding: 20px 16px; }
    .price-row { gap: 16px; }
    .price-cell b { font-size: 1.5rem; }
    .seo-link-grid { grid-template-columns: 1fr; }
    .blog-grid { grid-template-columns: 1fr; gap: 10px; }
    .blog-card { padding: 14px; }
    .blog-card h3 { font-size: 0.92rem; }
    .blog-card p { font-size: 0.82rem; }
}
