/*
Theme Name: IT RETAIL
Theme URI: https://it-retail.org/
Author: IT RETAIL
Description: Светлая зелёная тема для центра автоматизации торговли: онлайн-кассы, ЕГАИС, маркировка и сервис ККТ. Каталог на WooCommerce, SEO-разметка Schema.org, соответствие 152-ФЗ, качественная мобильная версия.
Version: 1.0.0
Requires at least: 6.2
Tested up to: 6.6
Requires PHP: 7.4
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: it-retail
Tags: business, e-commerce, custom-logo, custom-menu, featured-images, translation-ready, block-styles, wide-blocks
*/

/* ==========================================================================
   1. Tokens
   ========================================================================== */
:root {
	--ink: #16261a;
	--ink-2: #415243;
	--ink-3: #57685a;
	--paper: #f3f8f1;
	--surface: #fff;
	--line: #dcead8;
	--green: #039800;
	--green-ink: #027a00;
	--green-dark: #0c2e12;
	--green-soft: #eaf9e6;
	--accent: #7ede63;
	--r-sm: 12px;
	--r-md: 20px;
	--r-lg: 28px;
	--sans: Manrope, system-ui, -apple-system, "Segoe UI", sans-serif;
	--mono: "IBM Plex Mono", ui-monospace, SFMono-Regular, monospace;
	--shadow: 0 30px 60px -40px rgb(10 45 14 / 0.5);
	--wrap: 1240px;
}

/* ==========================================================================
   2. Base
   ========================================================================== */
*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; scroll-padding-top: 84px; }

body {
	margin: 0;
	background: var(--paper);
	color: var(--ink);
	font: 400 16.5px/1.6 var(--sans);
	-webkit-font-smoothing: antialiased;
	overflow-x: hidden;
}

img, svg, video, iframe { max-width: 100%; height: auto; display: block; }
h1, h2, h3, h4 { margin: 0; font-weight: 800; letter-spacing: -0.02em; line-height: 1.12; text-wrap: balance; }
p { margin: 0 0 1em; text-wrap: pretty; }
a { color: var(--green-ink); text-decoration: none; }
a:hover { color: #015c00; }
ul, ol { margin: 0; padding: 0; list-style: none; }
button, input, select, textarea { font: inherit; color: inherit; }
:focus-visible { outline: 2px solid var(--green); outline-offset: 3px; border-radius: 6px; }

.mono { font-family: var(--mono); font-size: 12px; color: var(--ink-3); }
.wrap { width: 100%; max-width: var(--wrap); margin: 0 auto; padding: 0 20px; }
.wrap--narrow { max-width: 820px; }
.wrap--narrow-plus { max-width: 1080px; }

.skip {
	position: absolute; left: -9999px; top: 0; z-index: 200;
	background: var(--green); color: #fff; padding: 12px 18px; border-radius: 0 0 12px 0; font-weight: 700;
}
.skip:focus { left: 0; color: #fff; }
.screen-reader-text { position: absolute !important; width: 1px; height: 1px; overflow: hidden; clip: rect(1px,1px,1px,1px); }
.hp { position: absolute !important; left: -9999px; opacity: 0; }

/* ==========================================================================
   3. Buttons, chips, links
   ========================================================================== */
.btn {
	display: inline-flex; align-items: center; justify-content: center; gap: 8px;
	min-height: 48px; padding: 13px 22px; border: 1px solid transparent; border-radius: 99px;
	font-weight: 700; font-size: 15px; cursor: pointer; text-align: center;
	transition: transform 0.18s ease, background 0.18s ease, border-color 0.18s ease, box-shadow 0.18s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn:disabled { cursor: not-allowed; transform: none; opacity: 1; }
.btn--sm { min-height: 42px; padding: 10px 18px; font-size: 14px; }
.btn--lg { min-height: 56px; padding: 17px 28px; font-size: 16.5px; }
.btn--block { width: 100%; }
.btn--primary { background: var(--green); color: #fff; box-shadow: 0 12px 26px -14px rgb(3 152 0 / 0.9); }
.btn--primary:hover { color: #fff; }
.btn--primary:disabled { background: #c7d6c4; box-shadow: none; color: #3d4e40; }
.btn--ghost { background: var(--surface); border-color: var(--line); color: var(--ink); }
.btn--ghost:hover { border-color: var(--green); color: var(--ink); }
.btn--accent { background: var(--accent); color: var(--green-dark); }
.btn--accent:hover { color: var(--green-dark); }
.btn--outline { background: transparent; border-color: rgba(255,255,255,0.3); color: #fff; }
.btn--outline:hover { border-color: #fff; color: #fff; }

.chips { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 22px; }
.chip {
	display: inline-flex; align-items: center; gap: 7px; min-height: 44px; padding: 10px 17px;
	border: 1px solid var(--line); border-radius: 99px; background: var(--surface);
	color: var(--ink); font-weight: 600; font-size: 14px; transition: border-color 0.16s ease, transform 0.16s ease;
}
.chip:hover { border-color: var(--green); transform: translateY(-2px); color: var(--ink); }
.chip--on { background: var(--green); border-color: var(--green); color: #fff; }
.chip--on:hover { color: #fff; }
.chip__count { font-family: var(--mono); font-size: 11px; opacity: 0.6; }

.link { font-weight: 700; font-size: 14px; }
.link-arrow { font-weight: 700; font-size: 15px; white-space: nowrap; }
.eyebrow { margin: 0 0 10px; font-family: var(--mono); font-size: 11.5px; letter-spacing: 0.09em; text-transform: uppercase; color: #1f7a13; }
.eyebrow--light { color: rgba(255,255,255,0.72); }
.eyebrow--accent { color: var(--accent); }

/* ==========================================================================
   4. Header, drawer, mobile bar
   ========================================================================== */
.site-head {
	position: sticky; top: 0; z-index: 60;
	background: rgba(244,247,242,0.9); backdrop-filter: blur(14px);
	border-bottom: 1px solid var(--line);
	transition: box-shadow 0.2s ease;
}
.site-head.is-stuck { box-shadow: 0 12px 30px -24px rgb(10 45 14 / 0.6); }
.site-head__inner { display: flex; align-items: center; flex-wrap: nowrap; gap: 16px; padding-top: 11px; padding-bottom: 11px; }

.brand { display: flex; align-items: center; gap: 10px; color: var(--ink); }
.brand:hover { color: var(--ink); }
.brand__mark { display: grid; place-items: center; width: 36px; height: 36px; flex: 0 0 auto; border-radius: 10px; background: var(--green); color: #fff; font-weight: 800; font-size: 14px; }
.brand__mark--light { background: var(--accent); color: var(--green-dark); }
.brand__logo { width: 38px; height: 38px; flex: 0 0 auto; display: block; }
.brand__text strong { color: var(--green); letter-spacing: 0.03em; }
.brand--foot strong { color: #fff; letter-spacing: 0.03em; }
.brand__text { display: flex; flex-direction: column; line-height: 1.1; }
.brand__text strong { font-size: 16px; letter-spacing: 0.03em; white-space: nowrap; }
.brand__text small { font-family: var(--mono); font-size: 10px; color: var(--ink-3); white-space: nowrap; }
.brand { flex: 0 0 auto; }
.custom-logo { max-height: 44px; width: auto; }

.nav--desktop { display: none; }
.nav__list { display: flex; flex-wrap: nowrap; gap: 17px; font-weight: 600; font-size: 14.5px; }
.nav__list a { white-space: nowrap; }
.nav--desktop { min-width: 0; }
.nav__list a { color: var(--ink-2); }
.nav__list a:hover, .nav__list .current-menu-item > a { color: var(--green-ink); }

.site-head__cta { display: flex; align-items: center; gap: 12px; margin-left: auto; flex: 0 0 auto; }
.site-head__cta .btn { white-space: nowrap; }
.phone { display: none; flex-direction: column; line-height: 1.15; text-align: right; color: var(--ink); white-space: nowrap; }
.phone strong { font-size: 15.5px; white-space: nowrap; }
.phone small { font-family: var(--mono); font-size: 10px; color: var(--ink-3); }
.site-head__cta .btn { display: none; }
.cart-link { display: inline-flex; align-items: center; gap: 6px; min-height: 44px; padding: 0 12px; border: 1px solid var(--line); border-radius: 99px; background: var(--surface); font-family: var(--mono); font-size: 11.5px; color: var(--ink); }
.cart-link__count { display: grid; place-items: center; min-width: 20px; height: 20px; border-radius: 99px; background: var(--green); color: #fff; font-size: 11px; }

.burger { display: grid; gap: 5px; width: 46px; height: 46px; padding: 12px; border: 1px solid var(--line); border-radius: 12px; background: var(--surface); cursor: pointer; order: 3; margin-left: auto; }
.burger span { display: block; height: 2px; background: var(--ink); border-radius: 2px; }

.drawer { position: fixed; inset: 0; z-index: 90; background: rgb(12 46 18 / 0.45); }
.drawer__panel {
	position: absolute; inset: 0 0 0 auto; width: min(88vw, 380px);
	background: var(--paper); padding: 18px 20px 24px; display: flex; flex-direction: column; gap: 18px;
	box-shadow: -20px 0 60px -30px rgb(8 34 12 / 0.7);
	animation: itr-slide 0.28s cubic-bezier(0.2,0.7,0.2,1);
	overflow-y: auto;
}
@keyframes itr-slide { from { transform: translateX(24px); } to { transform: none; } }
.drawer__top { display: flex; align-items: center; justify-content: space-between; }
.drawer__close { width: 44px; height: 44px; border: 1px solid var(--line); border-radius: 12px; background: var(--surface); font-size: 16px; cursor: pointer; }
.drawer__list { display: flex; flex-direction: column; }
.drawer__list li + li { border-top: 1px solid var(--line); }
.drawer__list a { display: block; padding: 15px 2px; font-weight: 700; font-size: 17px; color: var(--ink); }
.drawer__foot { margin-top: auto; display: grid; gap: 9px; }
.drawer__note { margin: 6px 0 0; font-size: 13px; line-height: 1.5; color: var(--ink-3); }

.mobile-bar {
	position: fixed; left: 10px; right: 10px; bottom: 10px; z-index: 70;
	display: grid; grid-auto-flow: column; gap: 8px;
	padding: 8px; border-radius: 99px; background: rgba(255,255,255,0.95);
	border: 1px solid var(--line); box-shadow: 0 18px 40px -22px rgb(10 45 14 / 0.7);
	backdrop-filter: blur(10px);
}
.mobile-bar__item { display: grid; place-items: center; min-height: 46px; border-radius: 99px; font-weight: 700; font-size: 14px; color: var(--ink); }
.mobile-bar__item--primary { background: var(--green); color: #fff; }
.mobile-bar__item--primary:hover { color: #fff; }

/* ==========================================================================
   5. Sections, cards, placeholders
   ========================================================================== */
.section { padding: 54px 0; }
.section--flush { padding-top: 8px; }
.section__head { display: flex; flex-direction: column; gap: 16px; margin-bottom: 26px; }
.section__title { font-size: clamp(26px, 6vw, 44px); }
.section__title--sm { font-size: clamp(22px, 4vw, 30px); margin-bottom: 18px; }
.section__title--light { color: #fff; }
.section__lede { margin: 12px 0 0; font-size: 16.5px; color: var(--ink-2); max-width: 560px; }
.page-head { padding: 26px 0 30px; }
.page-title { font-size: clamp(28px, 6vw, 44px); margin-bottom: 12px; }
.page-lede { font-size: 17px; color: var(--ink-2); max-width: 680px; }

.grid { display: grid; gap: 14px; grid-template-columns: 1fr; }

.card { background: var(--surface); border: 1px solid var(--line); border-radius: var(--r-md); display: flex; flex-direction: column; overflow: hidden; transition: transform 0.2s cubic-bezier(0.2,0.7,0.2,1), border-color 0.2s ease, box-shadow 0.2s ease; }
.card:hover { transform: translateY(-5px); border-color: #6cbf5c; box-shadow: var(--shadow); }
.card--service, .card--step { padding: 22px; gap: 9px; }
.card__tag { display: grid; place-items: center; width: 42px; height: 42px; border-radius: 12px; background: var(--green-soft); color: #046b00; font-family: var(--mono); font-weight: 700; font-size: 13px; }
.card__title { font-size: 18px; line-height: 1.28; }
.card__title a { color: inherit; }
.card__text { margin: 0; font-size: 14.5px; line-height: 1.5; color: var(--ink-2); }
.card__foot { margin-top: auto; padding-top: 12px; display: flex; align-items: center; justify-content: space-between; gap: 10px; }
.card__foot--dashed { border-top: 1px dashed var(--line); }
.card__num { font-size: 42px; font-weight: 800; letter-spacing: -0.04em; color: #cfeec7; line-height: 1; }
.card__time { color: #1f7a13; }
.card__media { display: block; position: relative; }
.card__img { width: 100%; height: auto; aspect-ratio: 16 / 9; object-fit: cover; display: block; }
.card--product .card__img { aspect-ratio: 4 / 3; }
.shot__img { width: 100%; height: auto; border-radius: 16px; display: block; }
.card__body { padding: 18px; display: flex; flex-direction: column; gap: 8px; flex: 1; }
.card__meta { margin: 0; }
.card__spec { margin: 0; font-size: 13.5px; color: var(--ink-3); line-height: 1.45; }
.card__price { font-weight: 800; font-size: 19px; letter-spacing: -0.03em; }
.card__more { margin-top: auto; padding-top: 10px; color: var(--green-ink); }

.badge { position: absolute; left: 12px; top: 12px; padding: 5px 10px; border-radius: 99px; background: var(--green-soft); color: #046b00; font-family: var(--mono); font-size: 10.5px; }
.badge--sale { background: var(--green); color: #fff; }
.badge--muted { background: #eaf1e8; color: var(--ink-3); }

.ph { position: relative; width: 100%; display: grid; place-items: center; overflow: hidden; border-radius: var(--r-sm); background: repeating-linear-gradient(135deg, #f2f9f0 0 10px, #e3f2df 10px 20px); }
.ph__label { font-family: var(--mono); font-size: 11px; color: #48594b; background: rgba(255,255,255,0.86); padding: 6px 10px; border-radius: 7px; text-align: center; max-width: 84%; }
.ph--scan::before { content: ""; position: absolute; left: 0; right: 0; height: 32%; background: linear-gradient(to bottom, rgb(3 152 0 / 0.2), transparent); animation: itr-scan 4.4s cubic-bezier(0.6,0,0.4,1) infinite; }
.ph--map { min-height: 300px; }
@keyframes itr-scan { from { transform: translateY(-40%); } to { transform: translateY(340%); } }

.notice { background: var(--surface); border: 1px solid var(--line); border-left: none; border-radius: var(--r-md); padding: 22px; font-size: 15px; color: var(--ink-2); }
.empty { font-size: 17px; color: var(--ink-2); }

/* ==========================================================================
   6. Hero
   ========================================================================== */
.hero { position: relative; padding: 34px 0 18px; }
.hero__blob { position: absolute; left: -30%; top: -14%; width: 120%; max-width: 760px; aspect-ratio: 1; background: radial-gradient(closest-side, rgb(196 240 186 / 0.85), transparent); pointer-events: none; animation: itr-blob 20s ease-in-out infinite; }
@keyframes itr-blob { 0%, 100% { transform: translate(0,0) scale(1); } 33% { transform: translate(4%,-5%) scale(1.06); } 66% { transform: translate(-4%,4%) scale(0.96); } }
.hero__slider { position: relative; overflow: hidden; }
.hero__track { display: flex; transition: transform 0.6s cubic-bezier(0.3, 0.75, 0.25, 1); }
.hero__slide { flex: 0 0 100%; display: grid; gap: 34px; align-items: center; }
.hero__nav { display: flex; align-items: center; gap: 14px; margin-top: 24px; }
.hero__dots { display: flex; gap: 8px; }
.hero__dot { width: 8px; height: 8px; padding: 0; border: none; border-radius: 99px; background: #c7d6c4; cursor: pointer; transition: width 0.3s ease, background 0.3s ease; }
.hero__dot--on { width: 30px; background: var(--green); }
.hero__arrows { display: flex; gap: 8px; margin-left: auto; }
.hero__arrow { width: 44px; height: 44px; border: 1px solid var(--line); border-radius: 99px; background: var(--surface); color: var(--ink); font-size: 15px; cursor: pointer; transition: border-color 0.16s ease; }
.hero__arrow:hover { border-color: var(--green); }
.hero__grid { position: relative; display: grid; gap: 34px; }
.hero__title { font-size: clamp(34px, 9vw, 62px); line-height: 1.03; }
.hero__accent { display: block; color: #039800; }
.hero__lede { margin: 16px 0 24px; font-size: 17px; line-height: 1.55; color: var(--ink-2); max-width: 520px; }
.hero__actions { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 28px; }
.hero__actions .btn { flex: 1 1 220px; }

.pill { display: inline-flex; align-items: center; gap: 9px; margin: 0 0 18px; padding: 7px 14px; border-radius: 99px; background: var(--green-soft); border: 1px solid #c6e8bd; font-family: var(--mono); font-size: 11px; line-height: 1.4; color: #1f7a13; }
.pill__dot { position: relative; width: 7px; height: 7px; flex: 0 0 auto; border-radius: 99px; background: var(--green); }
.pill__dot::after { content: ""; position: absolute; inset: 0; border-radius: 99px; background: var(--green); animation: itr-pulse 2.4s ease-out infinite; }
@keyframes itr-pulse { 0% { opacity: 0.5; transform: scale(1); } 75%, 100% { opacity: 0; transform: scale(2.4); } }

.stats { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; margin: 30px 0 0; padding-top: 22px; border-top: 1px solid var(--line); }
.stats__num { font-size: clamp(26px, 7vw, 34px); font-weight: 800; letter-spacing: -0.04em; color: #039800; font-variant-numeric: tabular-nums; }
.stats__label { margin: 2px 0 0; font-size: 12.5px; line-height: 1.35; color: var(--ink-3); }

.hero__visual { position: relative; }
.shot { background: var(--surface); border: 1px solid var(--line); border-radius: var(--r-lg); padding: 12px; box-shadow: var(--shadow); }
.shot--float { animation: itr-float 9s ease-in-out infinite; }
@keyframes itr-float { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-14px); } }
.shot__media .ph { border-radius: 16px; }
.shot__foot { display: flex; align-items: center; gap: 12px; padding: 14px 6px 4px; }
.shot__mark { display: grid; place-items: center; width: 38px; height: 38px; flex: 0 0 auto; border-radius: 11px; background: var(--green-soft); font-family: var(--mono); font-weight: 700; font-size: 12px; color: var(--green-ink); }
.shot__foot strong { display: block; font-size: 14.5px; }
.shot__foot small { display: block; font-size: 12.5px; color: var(--ink-3); }

.chip-float { position: absolute; padding: 12px 15px; border-radius: 16px; background: var(--surface); border: 1px solid var(--line); box-shadow: 0 22px 44px -28px rgb(10 45 14 / 0.5); animation: itr-float 7s ease-in-out infinite; }
.chip-float small { display: block; font-family: var(--mono); font-size: 10.5px; color: var(--ink-3); margin-bottom: 3px; }
.chip-float strong { display: flex; align-items: center; gap: 7px; font-size: 14px; }
.chip-float { position: static; display: inline-flex; flex-direction: column; margin-top: 16px; animation: none; }
.chip-float--left { left: -6px; bottom: -14px; }
.chip-float--right { right: -6px; top: 14px; background: var(--green-dark); color: #fff; border-color: transparent; animation-delay: 0.8s; }
.chip-float--right small { color: rgba(255,255,255,0.7); }
.dot { width: 8px; height: 8px; border-radius: 99px; background: var(--green); }

.marquee { overflow: hidden; padding: 12px 0; background: var(--surface); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.marquee__track { display: flex; width: max-content; gap: 40px; white-space: nowrap; font-family: var(--mono); font-size: 12px; color: var(--ink-3); animation: itr-marquee 30s linear infinite; }
@keyframes itr-marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ==========================================================================
   7. Panels: quiz + lead
   ========================================================================== */
.panel { position: relative; overflow: hidden; border-radius: var(--r-lg); padding: 26px 20px; }
.panel--dark { background: var(--green-dark); color: #fff; }
.panel--light { background: var(--surface); border: 1px solid var(--line); box-shadow: var(--shadow); }
.panel__grid { position: relative; display: grid; gap: 28px; }
.panel__blob { position: absolute; right: -20%; top: -40%; width: 460px; aspect-ratio: 1; background: radial-gradient(closest-side, rgb(3 152 0 / 0.45), transparent); animation: itr-blob 18s ease-in-out infinite; pointer-events: none; }
.panel__blob--soft { right: auto; left: -25%; top: auto; bottom: -50%; background: radial-gradient(closest-side, rgb(200 242 190 / 0.8), transparent); }
.panel__lede { font-size: 16px; line-height: 1.55; color: rgba(255,255,255,0.8); max-width: 420px; }
.ticks { display: grid; gap: 9px; font-size: 14.5px; color: rgba(255,255,255,0.86); }
.ticks li { display: flex; gap: 10px; align-items: baseline; }
.ticks li::before { content: ""; width: 6px; height: 6px; flex: 0 0 auto; border-radius: 99px; background: var(--accent); transform: translateY(-2px); }

.quiz { background: rgba(255,255,255,0.07); border: 1px solid rgba(255,255,255,0.15); border-radius: var(--r-md); padding: 20px; }
.quiz__progress { display: flex; align-items: center; gap: 10px; margin-bottom: 16px; }
.quiz__bar { flex: 1; height: 5px; border-radius: 99px; background: rgba(255,255,255,0.18); overflow: hidden; }
.quiz__bar span { display: block; height: 100%; border-radius: 99px; background: var(--accent); transition: width 0.4s cubic-bezier(0.2,0.7,0.2,1); }
.quiz__progress .mono { color: rgba(255,255,255,0.75); }
.quiz__q { font-weight: 700; font-size: 18px; margin: 0 0 14px; }
.quiz__opts { display: grid; gap: 9px; }
.quiz__opt { display: flex; align-items: center; justify-content: space-between; gap: 12px; min-height: 52px; padding: 13px 15px; border: 1px solid rgba(255,255,255,0.18); border-radius: 14px; background: rgba(255,255,255,0.05); color: #fff; font-weight: 600; font-size: 15px; text-align: left; cursor: pointer; transition: transform 0.16s ease, background 0.16s ease, border-color 0.16s ease; }
.quiz__opt:hover { transform: translateX(4px); background: rgba(255,255,255,0.13); border-color: var(--accent); }
.quiz__hint { color: rgba(255,255,255,0.6); }
.quiz__back { margin-top: 14px; padding: 8px 0; border: none; background: none; color: rgba(255,255,255,0.65); font-size: 13.5px; cursor: pointer; }
.quiz__title { font-size: 22px; margin-bottom: 8px; }
.quiz__text { font-size: 15px; line-height: 1.5; color: rgba(255,255,255,0.82); }
.quiz__price { display: flex; align-items: baseline; gap: 10px; margin-bottom: 18px; }
.quiz__price strong { font-size: 30px; font-weight: 800; letter-spacing: -0.04em; color: var(--accent); }
.quiz__price small { font-size: 13px; color: rgba(255,255,255,0.68); }
.quiz__actions { display: flex; flex-wrap: wrap; gap: 10px; }
.quiz__actions .btn { flex: 1 1 180px; }

/* ==========================================================================
   8. Forms
   ========================================================================== */
.form { display: grid; gap: 12px; background: #f4fcf2; border: 1px solid var(--line); border-radius: var(--r-md); padding: 20px; }
.form__row { display: grid; gap: 12px; }
.field { display: grid; gap: 6px; }
.field__label { font-size: 12.5px; font-weight: 600; color: var(--ink-2); }
.field__input { width: 100%; min-height: 50px; padding: 13px 15px; border: 1px solid var(--line); border-radius: 13px; background: var(--surface); font-size: 16px; outline: none; transition: border-color 0.16s ease; }
textarea.field__input { min-height: 96px; resize: vertical; }
.field__input:focus { border-color: var(--green); }
.check { display: flex; gap: 11px; align-items: flex-start; font-size: 12.5px; line-height: 1.5; color: var(--ink-2); cursor: pointer; }
.check input { width: 20px; height: 20px; margin-top: 1px; flex: 0 0 auto; accent-color: var(--green); cursor: pointer; }
.check--muted { color: var(--ink-3); }
.check a { text-decoration: underline; text-underline-offset: 2px; }
.req { color: #c0392b; }
.form__status:empty { display: none; }
.form__status { margin: 0; font-size: 14px; font-weight: 700; color: var(--green-ink); }
.form__note { margin: 0; font-size: 11.5px; line-height: 1.45; color: var(--ink-3); }
.form--sent .field__input { opacity: 0.7; }
.searchform { display: flex; gap: 8px; flex-wrap: wrap; margin-top: 14px; }
.searchform .field__input { flex: 1 1 240px; }

.contact-lines { display: grid; gap: 13px; }
.contact-line { display: flex; align-items: center; gap: 12px; margin: 0; color: var(--ink); }
.contact-line:hover { color: var(--ink); }
.contact-line__mark { display: grid; place-items: center; width: 42px; height: 42px; flex: 0 0 auto; border-radius: 12px; background: var(--green-soft); font-family: var(--mono); font-size: 12px; color: #046b00; }
.contact-line strong { display: block; font-size: 16px; }
.contact-line small { display: block; font-size: 12.5px; color: var(--ink-3); }

/* ==========================================================================
   9. Plans, facts, about, faq, contacts
   ========================================================================== */
.switch { display: inline-flex; gap: 4px; padding: 5px; border: 1px solid var(--line); border-radius: 99px; background: var(--surface); }
.switch__btn { min-height: 42px; padding: 10px 16px; border: none; border-radius: 99px; background: transparent; font-weight: 700; font-size: 13.5px; color: var(--ink-2); cursor: pointer; }
.switch__btn--on { background: var(--green); color: #fff; }

.plan { display: flex; flex-direction: column; gap: 11px; padding: 24px; border: 1px solid var(--line); border-radius: 24px; background: var(--surface); transition: transform 0.2s cubic-bezier(0.2,0.7,0.2,1), box-shadow 0.2s ease; }
.plan:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.plan--featured { background: var(--green-dark); border-color: var(--green-dark); color: #fff; }
.plan__head { display: flex; align-items: center; gap: 10px; flex-wrap: wrap; }
.plan__name { font-size: 20px; }
.plan__tag { padding: 4px 9px; border-radius: 99px; background: var(--green-soft); color: #046b00; font-family: var(--mono); font-size: 10.5px; }
.plan--featured .plan__tag { background: var(--accent); color: var(--green-dark); }
.plan__price { display: flex; align-items: baseline; gap: 8px; margin: 0; }
.plan__price strong { font-size: 32px; font-weight: 800; letter-spacing: -0.04em; }
.plan__price small { font-size: 13px; opacity: 0.7; }
.plan__text { margin: 0; font-size: 14.5px; line-height: 1.5; opacity: 0.85; }
.plan__features { display: grid; gap: 8px; margin: 4px 0; font-size: 14.5px; }
.plan__features li { display: flex; gap: 9px; align-items: baseline; line-height: 1.4; }
.plan__features li::before { content: ""; width: 6px; height: 6px; flex: 0 0 auto; border-radius: 99px; background: currentColor; opacity: 0.5; transform: translateY(-2px); }
.plan .btn { margin-top: auto; }

.about { display: grid; gap: 32px; }
.about__text { font-size: 16.5px; line-height: 1.6; color: var(--ink-2); }
.facts { display: flex; flex-wrap: wrap; gap: 10px; }
.facts__item { padding: 12px 16px; border: 1px solid var(--line); border-radius: 14px; background: var(--surface); }
.facts__item strong { display: block; font-size: 18px; letter-spacing: -0.03em; color: #037a00; }
.facts__item span { font-size: 12.5px; color: var(--ink-3); }
.about__media { display: grid; gap: 12px; }
.about__stack { display: grid; gap: 12px; }
.about__stat { display: flex; flex-direction: column; justify-content: flex-end; gap: 4px; min-height: 150px; padding: 20px; border-radius: var(--r-md); background: var(--green-dark); color: #fff; }
.about__stat strong { font-size: 30px; font-weight: 800; letter-spacing: -0.04em; color: var(--accent); }
.about__stat span { font-size: 13.5px; line-height: 1.4; opacity: 0.82; }
.ph--float { animation: itr-float 9.5s ease-in-out infinite; }
.about__img { width: 100%; height: auto; border-radius: var(--r-md); border: 1px solid var(--line); object-fit: cover; }

.faq { display: grid; gap: 10px; }
.faq__item { background: var(--surface); border: 1px solid var(--line); border-radius: var(--r-md); padding: 4px 18px; }
.faq__q { display: flex; align-items: center; gap: 12px; min-height: 56px; padding: 12px 0; font-weight: 700; font-size: 16.5px; cursor: pointer; list-style: none; }
.faq__q::-webkit-details-marker { display: none; }
.faq__q::after { content: "+"; margin-left: auto; font-family: var(--mono); font-size: 20px; color: var(--green-ink); }
.faq__item[open] .faq__q::after { content: "–"; }
.faq__a { margin: 0 0 14px; font-size: 15px; line-height: 1.6; color: var(--ink-2); }

.contacts { display: grid; gap: 14px; }
.offices { display: grid; gap: 10px; }
.office { display: flex; align-items: center; gap: 13px; padding: 14px 16px; border: 1px solid var(--line); border-radius: 16px; background: var(--surface); transition: border-color 0.16s ease, transform 0.16s ease; }
.office[data-office] { cursor: pointer; }
.office:hover { border-color: #6cbf5c; transform: translateX(3px); }
.office--on { border-color: #6cbf5c; background: var(--green-soft); }
.office__call { white-space: nowrap; }
.office__code { display: grid; place-items: center; width: 36px; height: 36px; flex: 0 0 auto; border-radius: 10px; background: var(--green-soft); font-family: var(--mono); font-size: 11px; color: #046b00; }
.office__body strong { display: block; font-size: 15.5px; }
.office__body small { display: block; font-size: 13px; color: var(--ink-3); }
.office__call { margin-left: auto; white-space: nowrap; }
.map { border-radius: var(--r-md); overflow: hidden; min-height: 340px; }
.map:has(iframe) { border: 1px solid var(--line); }
branch-map { display: block; height: 100%; min-height: 340px; }
.map iframe { width: 100%; min-height: 300px; border: 0; }

.seo-text__grid { display: grid; gap: 26px; }
.seo-text p { font-size: 16px; line-height: 1.65; color: var(--ink-2); }
.seo-text a { text-decoration: underline; text-underline-offset: 2px; }
.seo-text__sub { font-size: 19px; margin-bottom: 12px; }
.seo-text__list { display: grid; gap: 9px; font-size: 15.5px; line-height: 1.5; color: var(--ink-2); }
.seo-text__list li { display: flex; gap: 10px; align-items: baseline; }
.seo-text__list li::before { content: ""; width: 6px; height: 6px; flex: 0 0 auto; border-radius: 99px; background: var(--green); transform: translateY(-2px); }
.seo-text__note { margin-top: 16px; padding: 14px 16px; border-radius: var(--r-sm); background: var(--green-soft); font-size: 15px; }

/* ==========================================================================
   10. Entry content, breadcrumbs, pagination
   ========================================================================== */
.crumbs { display: flex; flex-wrap: wrap; gap: 8px; padding: 18px 0 0; font-size: 13px; color: var(--ink-3); }
.crumbs a { color: var(--green-ink); }

.entry { padding: 8px 0 40px; }
.entry__head { padding: 20px 0 18px; }
.entry__meta { margin: 0 0 12px; }
.entry__title { font-size: clamp(28px, 6vw, 42px); }
.entry__lede { margin: 14px 0 0; font-size: 18px; line-height: 1.55; color: var(--ink-2); }
.entry__media { margin: 0 0 24px; border-radius: var(--r-md); overflow: hidden; }
.entry__content { font-size: 17px; line-height: 1.7; }
.entry__content h2 { margin: 32px 0 12px; font-size: 26px; }
.entry__content h3 { margin: 26px 0 10px; font-size: 21px; }
.entry__content ul, .entry__content ol { margin: 0 0 18px; padding-left: 22px; list-style: disc; }
.entry__content ol { list-style: decimal; }
.entry__content li { margin-bottom: 8px; }
.entry__content a { text-decoration: underline; text-underline-offset: 2px; }
.entry__content blockquote { margin: 22px 0; padding: 18px 22px; border-radius: var(--r-md); background: var(--green-soft); font-size: 17px; }
.entry__content img, .entry__content figure { border-radius: var(--r-md); }
.entry__content table { width: 100%; border-collapse: collapse; font-size: 15px; }
.entry__content th, .entry__content td { padding: 10px 12px; border-bottom: 1px solid var(--line); text-align: left; }
.entry__content--legal { font-size: 15.5px; line-height: 1.65; }
.entry__content--legal h2 { font-size: 21px; margin-top: 28px; }
.legal__foot { margin-top: 30px; padding: 22px; border: 1px solid var(--line); border-radius: var(--r-md); background: var(--surface); font-size: 14.5px; color: var(--ink-2); }
.entry__tags { margin-top: 22px; font-size: 13px; }

.cta-strip { display: grid; gap: 16px; padding: 24px; border-radius: var(--r-lg); background: var(--green-dark); color: #fff; margin-bottom: 34px; }
.cta-strip__title { font-size: 22px; margin-bottom: 8px; }
.cta-strip__text { margin: 0; font-size: 15px; line-height: 1.55; opacity: 0.82; }
.cta-strip__actions { display: flex; flex-wrap: wrap; gap: 10px; }
.cta-strip__actions .btn { flex: 1 1 200px; }

.pagination { display: flex; justify-content: center; padding: 26px 0 10px; }
.nav-links { display: flex; flex-wrap: wrap; gap: 8px; }
.page-numbers { display: grid; place-items: center; min-width: 46px; min-height: 46px; padding: 0 14px; border: 1px solid var(--line); border-radius: 99px; background: var(--surface); font-weight: 700; font-size: 14.5px; color: var(--ink); }
.page-numbers.current { background: var(--green); border-color: var(--green); color: #fff; }

.results { display: grid; gap: 12px; }
.result { padding: 18px; border: 1px solid var(--line); border-radius: var(--r-md); background: var(--surface); }
.result__title { font-size: 19px; margin-bottom: 6px; }
.result__text { margin: 0; font-size: 14.5px; color: var(--ink-2); }
.error404 { padding-bottom: 60px; }

/* ==========================================================================
   11. Footer + cookie
   ========================================================================== */
.site-foot { margin-top: 40px; padding-bottom: 84px; background: #0a2610; color: #fff; }
.site-foot__grid { display: grid; gap: 28px; padding-top: 44px; padding-bottom: 24px; }
.brand--foot { color: #fff; margin-bottom: 12px; }
.brand--foot strong { font-size: 16px; }
.site-foot__about { font-size: 14px; line-height: 1.55; color: rgba(255,255,255,0.7); max-width: 320px; }
.site-foot__title { font-family: var(--mono); font-size: 11px; font-weight: 500; letter-spacing: 0.1em; text-transform: uppercase; color: rgba(255,255,255,0.55); margin-bottom: 12px; }
.site-foot__list, .site-foot ul { display: grid; gap: 9px; font-size: 14.5px; }
.site-foot a { color: rgba(255,255,255,0.82); }
.site-foot a:hover { color: #fff; }
.site-foot__phone { display: inline-block; font-weight: 700; font-size: 18px; color: #fff; margin-bottom: 8px; }
.site-foot__mail { display: inline-block; margin-bottom: 8px; font-weight: 700; font-size: 15px; color: rgba(255,255,255,0.85); }
.site-foot__addr { font-size: 14px; line-height: 1.5; color: rgba(255,255,255,0.7); }
.socials { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 16px; }
.social { display: inline-flex; align-items: center; gap: 8px; min-height: 44px; padding: 10px 16px; border: 1px solid rgba(255,255,255,0.2); border-radius: 99px; font-weight: 700; font-size: 13.5px; }
.social:hover { border-color: var(--accent); background: rgba(255,255,255,0.07); }
.social span { font-family: var(--mono); font-size: 12px; opacity: 0.75; }
.site-foot__bar { display: flex; flex-wrap: wrap; gap: 12px; padding-top: 16px; padding-bottom: 26px; border-top: 1px solid rgba(255,255,255,0.12); font-size: 12.5px; color: rgba(255,255,255,0.6); }
.site-foot__legal { display: flex; flex-wrap: wrap; gap: 14px; }
.site-foot__author { margin-left: auto; }

.cookie { position: fixed; left: 12px; right: 12px; bottom: 74px; z-index: 80; max-width: 720px; margin: 0 auto; display: flex; flex-wrap: wrap; gap: 12px; align-items: center; padding: 16px 18px; border: 1px solid var(--line); border-radius: var(--r-md); background: var(--surface); box-shadow: 0 26px 60px -30px rgb(10 45 14 / 0.55); }
.cookie__text { flex: 1 1 240px; margin: 0; font-size: 13px; line-height: 1.5; color: var(--ink-2); }
.cookie__text a { text-decoration: underline; text-underline-offset: 2px; }
.cookie__actions { display: flex; gap: 8px; margin-left: auto; }

/* ==========================================================================
   12. WooCommerce
   ========================================================================== */
.woocommerce ul.products, ul.products { display: grid; gap: 14px; grid-template-columns: 1fr; margin: 0 0 30px; }
.woocommerce ul.products li.product { width: auto !important; margin: 0 !important; float: none !important; }
.price-from { font-family: var(--mono); font-size: 11px; color: var(--ink-3); }
.woocommerce div.product { display: grid; gap: 28px; padding: 12px 0 40px; }
.woocommerce div.product .product_title { font-size: clamp(26px, 5vw, 36px); margin-bottom: 12px; }
.woocommerce div.product p.price, .woocommerce div.product span.price { font-size: 28px; font-weight: 800; color: var(--ink); letter-spacing: -0.03em; margin-bottom: 16px; }
.woocommerce div.product .woocommerce-product-details__short-description { font-size: 16px; line-height: 1.6; color: var(--ink-2); }
.woocommerce div.product form.cart { display: flex; flex-wrap: wrap; gap: 10px; margin: 18px 0; }
.woocommerce .quantity .qty { min-height: 50px; width: 92px; padding: 12px; border: 1px solid var(--line); border-radius: 13px; background: var(--surface); }
.woocommerce #respond input#submit, .woocommerce a.button, .woocommerce button.button, .woocommerce input.button,
.woocommerce #respond input#submit.alt, .woocommerce a.button.alt, .woocommerce button.button.alt, .woocommerce input.button.alt {
	min-height: 50px; padding: 14px 24px; border: none; border-radius: 99px;
	background: var(--green); color: #fff; font-weight: 700; font-size: 15px; line-height: 1.2;
	transition: transform 0.18s ease;
}
.woocommerce a.button:hover, .woocommerce button.button:hover, .woocommerce input.button:hover, .woocommerce a.button.alt:hover, .woocommerce button.button.alt:hover { background: #028800; color: #fff; transform: translateY(-2px); }
.woocommerce .woocommerce-tabs ul.tabs { display: flex; flex-wrap: wrap; gap: 8px; padding: 0; margin: 0 0 18px; border: none; }
.woocommerce .woocommerce-tabs ul.tabs::before { display: none; }
.woocommerce .woocommerce-tabs ul.tabs li { margin: 0; padding: 0; border: 1px solid var(--line); border-radius: 99px; background: var(--surface); }
.woocommerce .woocommerce-tabs ul.tabs li::before, .woocommerce .woocommerce-tabs ul.tabs li::after { display: none; }
.woocommerce .woocommerce-tabs ul.tabs li a { padding: 11px 18px; font-weight: 700; font-size: 14.5px; color: var(--ink); }
.woocommerce .woocommerce-tabs ul.tabs li.active { background: var(--green); border-color: var(--green); }
.woocommerce .woocommerce-tabs ul.tabs li.active a { color: #fff; }
.woocommerce table.shop_attributes th, .woocommerce table.shop_attributes td { padding: 11px 12px; border-bottom: 1px solid var(--line); font-size: 15px; }
.woocommerce .woocommerce-message, .woocommerce .woocommerce-info, .woocommerce .woocommerce-error { border-top: none; border-radius: var(--r-md); background: var(--green-soft); color: #264a2b; padding: 16px 20px; font-size: 15px; }
.woocommerce .woocommerce-message::before, .woocommerce .woocommerce-info::before { display: none; }
.woocommerce nav.woocommerce-pagination ul { border: none; display: flex; gap: 8px; }
.woocommerce nav.woocommerce-pagination ul li { border: none; }
.woocommerce-result-count, .woocommerce-ordering { font-size: 14px; color: var(--ink-3); }
.woocommerce .woocommerce-ordering select { min-height: 46px; padding: 10px 14px; border: 1px solid var(--line); border-radius: 99px; background: var(--surface); }
.trust { display: grid; gap: 8px; margin: 18px 0; font-size: 14.5px; }
.trust__item { display: flex; gap: 9px; align-items: baseline; color: var(--ink-2); }
.trust__item::before { content: ""; width: 6px; height: 6px; flex: 0 0 auto; border-radius: 99px; background: var(--green); transform: translateY(-2px); }
.single-help { font-size: 14.5px; color: var(--ink-2); }
.single-help a { text-decoration: underline; text-underline-offset: 2px; }

/* ==========================================================================
   13. Reveal (progressive enhancement — content is visible without JS)
   ========================================================================== */
.reveal--armed { opacity: 0; transform: translateY(18px); }
.reveal--armed.reveal--in { opacity: 1; transform: none; transition: opacity 0.7s cubic-bezier(0.2,0.7,0.2,1), transform 0.7s cubic-bezier(0.2,0.7,0.2,1); }

@media (prefers-reduced-motion: reduce) {
	* { animation: none !important; transition-duration: 0.01ms !important; }
	html { scroll-behavior: auto; }
	.reveal--armed { opacity: 1; transform: none; }
}

/* ==========================================================================
   14. Breakpoints
   ========================================================================== */
@media (min-width: 560px) {
	.wrap { padding: 0 24px; }
	.form__row { grid-template-columns: 1fr 1fr; }
	.grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
	.woocommerce ul.products, ul.products { grid-template-columns: repeat(2, minmax(0, 1fr)); }
	.stats { grid-template-columns: repeat(4, 1fr); }
	.about__media { grid-template-columns: 1fr 1fr; }
	.cookie { left: 16px; right: 16px; }
}

@media (min-width: 860px) {
	.section { padding: 68px 0; }
	.panel { padding: 34px 30px; }
	.panel__grid { grid-template-columns: 1fr 1fr; align-items: start; }
	.hero { padding: 56px 0 30px; }
	.hero__grid, .hero__slide { grid-template-columns: 1.05fr 0.95fr; align-items: center; gap: 44px; }
	.hero__actions .btn { flex: 0 0 auto; }
	.section__head { flex-direction: row; align-items: flex-end; justify-content: space-between; gap: 24px; }
	.section__head--stack { flex-direction: column; align-items: flex-start; }
	.grid--3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
	.grid--4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
	.grid--news { grid-template-columns: repeat(2, minmax(0, 1fr)); }
	.about { grid-template-columns: 1fr 1fr; align-items: center; gap: 44px; }
	.seo-text__grid { grid-template-columns: 1.15fr 0.85fr; gap: 40px; }
	.contacts { grid-template-columns: 1fr 1fr; align-items: start; }
	.cta-strip { grid-template-columns: 1.4fr 1fr; align-items: center; }
	.cta-strip__actions { justify-content: flex-end; }
	.site-foot__grid { grid-template-columns: 1.3fr 1fr 1fr 1.1fr; }
	.woocommerce div.product { grid-template-columns: 1fr 1fr; align-items: start; }
	.woocommerce div.product .woocommerce-tabs, .woocommerce div.product .related, .woocommerce div.product .up-sells { grid-column: 1 / -1; }
	.woocommerce ul.products, ul.products { grid-template-columns: repeat(3, minmax(0, 1fr)); }
	.mobile-bar { display: none; }
	.site-foot { padding-bottom: 0; }
	.cookie { bottom: 16px; }
	.phone { display: flex; }
	.site-head__cta .btn { display: inline-flex; }
}

@media (min-width: 1180px) {
	.burger { display: none; }
	.nav--desktop { display: block; }
}

@media (min-width: 1100px) {
	.grid--news { grid-template-columns: repeat(4, minmax(0, 1fr)); }
	.woocommerce ul.products, ul.products { grid-template-columns: repeat(4, minmax(0, 1fr)); }
	.section__title { font-size: 44px; }
}

/* ==========================================================================
   15. Print
   ========================================================================== */
@media print {
	.site-head, .site-foot, .mobile-bar, .cookie, .drawer, .marquee, .hero__blob, .panel__blob { display: none !important; }
	body { background: #fff; font-size: 12pt; }
	.wrap { max-width: none; padding: 0; }
	a { text-decoration: underline; }
}
