/* ====================== Tokens ====================== */
:root {
  --red: #E2231A;
  --red-d: #C0150D;
  --navy: #14306B;
  --navy-d: #0E2350;
  --ink: #131722;
  --muted: #5C6B82;
  --bg: #FFFFFF;
  --soft: #F2F6FC;
  --soft-2: #E9F0FA;
  --line: #E2E9F3;
  --gold: #F5A623;
  --green: #1F9D55;
  --shadow-sm: 0 4px 14px rgba(20,48,107,.06);
  --shadow-md: 0 16px 40px rgba(20,48,107,.10);
  --shadow-lg: 0 28px 64px rgba(14,35,80,.16);
  --radius: 18px;
  --radius-sm: 12px;
  --maxw: 1200px;
  --font-head: 'Montserrat', system-ui, sans-serif;
  --font-body: 'Inter', system-ui, sans-serif;
}

/* ====================== Reset ====================== */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; scroll-padding-top: 120px; }
body { font-family: var(--font-body); color: var(--ink); background: var(--bg); line-height: 1.6; -webkit-font-smoothing: antialiased; overflow-x: hidden; }
img { max-width: 100%; display: block; height: auto; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; }
h1, h2, h3 { font-family: var(--font-head); line-height: 1.12; letter-spacing: -.02em; }

.container { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 20px; }
.container--narrow { max-width: 820px; }

.skip-link { position: absolute; left: -999px; top: 0; z-index: 300; background: var(--navy); color: #fff; padding: 10px 16px; }
.skip-link:focus { left: 0; }

/* ====================== Buttons ====================== */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .5em;
  font-family: var(--font-head); font-weight: 800; letter-spacing: .01em;
  padding: 14px 26px; border: 0; border-radius: 12px;
  background: var(--red); color: #fff; line-height: 1; white-space: nowrap;
  transition: transform .15s ease, box-shadow .2s ease, background .2s ease;
}
.btn--primary { box-shadow: 0 10px 22px rgba(226,35,26,.28); }
.btn--primary:hover { background: var(--red-d); transform: translateY(-2px); box-shadow: 0 14px 28px rgba(226,35,26,.38); }
.btn--outline { background: #fff; color: var(--navy); box-shadow: inset 0 0 0 2px var(--soft-2); }
.btn--outline:hover { box-shadow: inset 0 0 0 2px var(--navy); transform: translateY(-2px); }
.btn--white { background: #fff; color: var(--red); box-shadow: var(--shadow-md); }
.btn--white:hover { transform: translateY(-2px); color: var(--red-d); }
.btn--sm { padding: 11px 18px; font-size: .9rem; }
.btn--lg { padding: 17px 30px; font-size: 1.04rem; }
.btn--block { width: 100%; }

/* ====================== Top bar ====================== */
.topbar { background: var(--navy-d); color: rgba(255,255,255,.82); font-size: .86rem; }
.topbar__inner { display: flex; align-items: center; justify-content: space-between; gap: 16px; height: 40px; }
.topbar__right { display: flex; align-items: center; gap: 22px; }
.topbar__item--accent { display: inline-flex; align-items: center; gap: 9px; color: #fff; font-weight: 600; }
.pulse { width: 9px; height: 9px; border-radius: 50%; background: #4ade80; box-shadow: 0 0 0 0 rgba(74,222,128,.6); animation: pulse 2s infinite; }
@keyframes pulse { 0%{box-shadow:0 0 0 0 rgba(74,222,128,.55)} 70%{box-shadow:0 0 0 8px rgba(74,222,128,0)} 100%{box-shadow:0 0 0 0 rgba(74,222,128,0)} }
.topbar__phone { font-family: var(--font-head); font-weight: 800; color: #fff; }
.topbar__phone:hover { color: #ffd9d6; }

/* ====================== Header ====================== */
.site-header { position: sticky; top: 0; z-index: 100; background: rgba(255,255,255,.92); backdrop-filter: saturate(180%) blur(12px); border-bottom: 1px solid var(--line); }
.header-inner { display: flex; align-items: center; gap: 24px; height: 78px; }
.brand-logo { height: 48px; width: auto; }
.main-nav { display: flex; gap: 26px; margin-left: auto; }
.main-nav a { font-weight: 600; font-size: .95rem; position: relative; padding: 4px 0; }
.main-nav a::after { content: ''; position: absolute; left: 0; bottom: -2px; width: 0; height: 2px; background: var(--red); transition: width .2s ease; }
.main-nav a:hover { color: var(--navy); }
.main-nav a:hover::after { width: 100%; }
.header-cta { display: flex; align-items: center; gap: 16px; }
.header-phone { display: flex; flex-direction: column; align-items: flex-end; line-height: 1.1; }
.header-phone__num { font-family: var(--font-head); font-weight: 900; font-size: 1.2rem; color: var(--navy); letter-spacing: .02em; }
.header-phone__sub { font-size: .72rem; color: var(--muted); }
.header-phone:hover .header-phone__num { color: var(--red); }
.nav-toggle { display: none; flex-direction: column; gap: 5px; background: none; border: 0; padding: 8px; }
.nav-toggle span { width: 26px; height: 3px; background: var(--navy); border-radius: 2px; transition: .25s; }
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

/* ====================== Hero ====================== */
.hero { position: relative; padding: 56px 0 64px; overflow: hidden; isolation: isolate; }
.hero::before { content: ''; position: absolute; inset: 0; z-index: -2; background: radial-gradient(120% 80% at 15% 0%, var(--soft) 0%, #fff 55%); }
.hero::after { content: ''; position: absolute; top: 4%; right: -60px; width: 360px; height: 360px; z-index: -1; background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23E2231A' d='M12 1.6l3 6.9 7.4.6-5.6 4.9 1.7 7.3L12 18.5 5.5 21.3l1.7-7.3L1.6 9.1 9 8.5z'/%3E%3C/svg%3E") center/contain no-repeat; opacity: .05; transform: rotate(-8deg); }
.hero__inner { display: grid; grid-template-columns: 1.05fr .95fr; gap: 44px; align-items: center; }
.hero__eyebrow { display: inline-block; font-family: var(--font-head); font-weight: 800; font-size: .82rem; letter-spacing: .1em; text-transform: uppercase; color: var(--red); background: rgba(226,35,26,.08); padding: 8px 14px; border-radius: 999px; margin-bottom: 18px; }
.hero__title { font-size: clamp(2.1rem, 4.6vw, 3.5rem); font-weight: 900; color: var(--ink); }
.hero__title .accent { color: var(--red); }
.hero__lead { font-size: clamp(1rem, 1.4vw, 1.16rem); color: var(--muted); max-width: 40ch; margin: 18px 0 22px; }
.hero__lead strong { color: var(--ink); }
.hero__price { display: inline-flex; align-items: center; gap: 14px; flex-wrap: wrap; background: #fff; border: 1px solid var(--line); border-radius: 14px; padding: 14px 20px; box-shadow: var(--shadow-sm); margin-bottom: 22px; }
.hero__price-label { font-weight: 600; color: var(--muted); font-size: .92rem; }
.hero__price-value { font-family: var(--font-head); font-weight: 700; color: var(--ink); font-size: 1.05rem; }
.hero__price-value b { font-size: 1.7rem; font-weight: 900; color: var(--navy); }
.hero__price-note { font-size: .82rem; color: var(--green); font-weight: 700; background: rgba(31,157,85,.1); padding: 5px 10px; border-radius: 999px; }
.hero__bullets { list-style: none; padding: 0; margin: 0 0 26px; display: grid; gap: 10px; }
.hero__bullets li { position: relative; padding-left: 30px; color: #2b3344; }
.hero__bullets li::before { content: '✓'; position: absolute; left: 0; top: 0; width: 21px; height: 21px; background: var(--green); color: #fff; border-radius: 50%; display: grid; place-items: center; font-size: .72rem; font-weight: 800; }
.hero__actions { display: flex; flex-wrap: wrap; gap: 14px; }

.hero__card { background: #fff; border: 1px solid var(--line); border-radius: 22px; box-shadow: var(--shadow-lg); overflow: hidden; }
.hero__card-photo { position: relative; height: 230px; overflow: hidden; }
.hero__card-photo img { width: 100%; height: 100%; object-fit: cover; object-position: 50% 58%; }
.hero__card-badge { position: absolute; left: 16px; bottom: 14px; background: var(--red); color: #fff; font-family: var(--font-head); font-weight: 800; font-size: .82rem; padding: 7px 14px; border-radius: 999px; box-shadow: 0 8px 18px rgba(226,35,26,.4); }
.hero__form { padding: 24px 26px 26px; }
.hero__form-title { font-size: 1.32rem; font-weight: 800; }
.hero__form-sub { color: var(--muted); font-size: .92rem; margin: 6px 0 16px; }

/* form fields (shared) */
.field { display: flex; flex-direction: column; gap: 7px; margin-bottom: 12px; }
.field label { font-size: .86rem; font-weight: 600; color: var(--muted); }
.field input, .field select { font: inherit; padding: 13px 15px; border: 1.5px solid var(--line); border-radius: 11px; background: #fff; color: var(--ink); transition: border-color .2s ease, box-shadow .2s ease; }
.field input:focus, .field select:focus { outline: none; border-color: var(--navy); box-shadow: 0 0 0 4px rgba(20,48,107,.12); }
.field input.is-error { border-color: var(--red); box-shadow: 0 0 0 4px rgba(226,35,26,.1); }
.form-hint { font-size: .78rem; color: var(--muted); text-align: center; margin-top: 10px; }
.form-success { background: #e8f8ed; color: #1c7a3d; border: 1px solid #b6e6c5; padding: 13px 15px; border-radius: 11px; font-size: .9rem; text-align: center; font-weight: 600; margin-top: 12px; }

/* ====================== Stats ====================== */
.stats { background: linear-gradient(135deg, var(--navy) 0%, var(--navy-d) 100%); color: #fff; }
.stats__grid { display: grid; grid-template-columns: repeat(4, 1fr); }
.stat { padding: 30px 18px; text-align: center; position: relative; }
.stat + .stat::before { content: ''; position: absolute; left: 0; top: 22%; height: 56%; width: 1px; background: rgba(255,255,255,.16); }
.stat__num { font-family: var(--font-head); font-weight: 900; font-size: clamp(1.7rem, 3vw, 2.4rem); line-height: 1; }
.stat__num span { color: #ff7b73; }
.stat__label { font-size: .9rem; color: rgba(255,255,255,.78); margin-top: 8px; }

/* ====================== Sections ====================== */
.section { padding: 78px 0; }
.section--tight { padding: 64px 0; }
.section--soft { background: var(--soft); }
.section__head { text-align: center; max-width: 720px; margin: 0 auto 46px; }
.section__eyebrow { display: inline-block; font-family: var(--font-head); font-weight: 800; font-size: .8rem; letter-spacing: .12em; text-transform: uppercase; color: var(--red); margin-bottom: 12px; }
.section__title { font-size: clamp(1.7rem, 3.2vw, 2.5rem); font-weight: 800; }
.section__sub { color: var(--muted); font-size: 1.06rem; margin-top: 14px; }
.section__note { text-align: center; color: var(--muted); margin-top: 28px; font-size: .94rem; }
.section__note a { color: var(--navy); font-weight: 700; }

/* reveal */
.section__head, .promo__card, .cat, .tariff, .adv, .step, .member, .gallery__item, .review, .faq__item { opacity: 0; transform: translateY(20px); transition: opacity .55s ease, transform .55s ease; }
.is-visible { opacity: 1 !important; transform: none !important; }

/* ====================== Promo ====================== */
.promo { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.promo__card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 26px 22px; box-shadow: var(--shadow-sm); transition: transform .2s ease, box-shadow .2s ease; }
.promo__card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }
.promo__big { font-family: var(--font-head); font-weight: 900; font-size: 2.2rem; color: var(--navy); line-height: 1; margin-bottom: 12px; }
.promo__card h3 { font-size: 1.15rem; font-weight: 800; margin-bottom: 7px; }
.promo__card p { color: var(--muted); font-size: .94rem; }
.promo__card--red { background: linear-gradient(160deg, var(--red), var(--red-d)); border-color: transparent; color: #fff; }
.promo__card--red .promo__big, .promo__card--red p { color: #fff; }
.promo__card--red p { opacity: .92; }
.promo__card--navy { background: linear-gradient(160deg, var(--navy), var(--navy-d)); border-color: transparent; color: #fff; }
.promo__card--navy .promo__big, .promo__card--navy p { color: #fff; }
.promo__card--navy p { opacity: .9; }

/* ====================== Categories ====================== */
.cats { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; }
.cat { display: flex; align-items: center; gap: 20px; background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 22px 24px; box-shadow: var(--shadow-sm); transition: transform .2s ease, box-shadow .2s ease; }
.cat:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.cat__letter { flex: 0 0 64px; width: 64px; height: 64px; display: grid; place-items: center; font-family: var(--font-head); font-weight: 900; font-size: 1.7rem; color: #fff; background: linear-gradient(135deg, var(--red), var(--red-d)); border-radius: 16px; box-shadow: 0 8px 18px rgba(226,35,26,.28); }
.cat__body { flex: 1; }
.cat__body h3 { font-size: 1.2rem; font-weight: 800; }
.cat__body p { color: var(--muted); font-size: .92rem; margin: 4px 0 8px; }
.cat__price { font-family: var(--font-head); font-weight: 800; color: var(--navy); }
.cat .btn { flex: 0 0 auto; }

/* ====================== Tariffs ====================== */
.tariffs { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; align-items: stretch; }
.tariff { position: relative; background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 32px 28px; box-shadow: var(--shadow-sm); display: flex; flex-direction: column; }
.tariff--featured { border: 2px solid var(--red); box-shadow: var(--shadow-md); transform: translateY(-6px); }
.tariff__flag { position: absolute; top: -14px; left: 50%; transform: translateX(-50%); background: var(--red); color: #fff; font-family: var(--font-head); font-weight: 800; font-size: .76rem; text-transform: uppercase; letter-spacing: .06em; padding: 6px 16px; border-radius: 999px; box-shadow: 0 8px 16px rgba(226,35,26,.35); }
.tariff__name { font-size: 1.5rem; font-weight: 900; color: var(--navy); }
.tariff__desc { color: var(--muted); font-size: .92rem; margin: 6px 0 16px; min-height: 2.6em; }
.tariff__price { font-family: var(--font-head); color: var(--ink); font-size: 1.1rem; padding-bottom: 18px; border-bottom: 1px solid var(--line); margin-bottom: 18px; }
.tariff__price b { font-size: 2.4rem; font-weight: 900; }
.tariff__list { list-style: none; padding: 0; margin: 0 0 24px; display: grid; gap: 12px; flex: 1; }
.tariff__list li { position: relative; padding-left: 30px; font-size: .95rem; }
.tariff__list li::before { position: absolute; left: 0; top: 1px; width: 21px; height: 21px; border-radius: 50%; display: grid; place-items: center; font-size: .72rem; font-weight: 800; }
.tariff__list li.yes { color: #2b3344; }
.tariff__list li.yes::before { content: '✓'; background: rgba(31,157,85,.14); color: var(--green); }
.tariff__list li.no { color: #aab3c2; }
.tariff__list li.no::before { content: '×'; background: #eef1f6; color: #aab3c2; }

/* ====================== Advantages ====================== */
.adv-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.adv { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 28px 26px; box-shadow: var(--shadow-sm); transition: transform .2s ease, box-shadow .2s ease; }
.adv:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }
.adv__ic { width: 56px; height: 56px; display: grid; place-items: center; font-size: 1.6rem; background: linear-gradient(135deg, rgba(20,48,107,.1), rgba(226,35,26,.1)); border-radius: 14px; margin-bottom: 16px; }
.adv h3 { font-size: 1.18rem; font-weight: 800; margin-bottom: 8px; }
.adv p { color: var(--muted); font-size: .94rem; }

/* ====================== Steps ====================== */
.steps { list-style: none; padding: 0; display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.step { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 30px 24px 26px; position: relative; box-shadow: var(--shadow-sm); }
.step__num { position: absolute; top: -18px; left: 24px; width: 46px; height: 46px; display: grid; place-items: center; font-family: var(--font-head); font-weight: 900; font-size: 1.2rem; color: #fff; background: linear-gradient(135deg, var(--navy), #2a4b9c); border-radius: 12px; box-shadow: var(--shadow-sm); }
.step h3 { font-size: 1.1rem; font-weight: 800; margin: 16px 0 8px; }
.step p { color: var(--muted); font-size: .93rem; }

/* ====================== Team ====================== */
.team { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.member { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 28px 22px; text-align: center; box-shadow: var(--shadow-sm); transition: transform .2s ease, box-shadow .2s ease; }
.member:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }
.member__ava { width: 88px; height: 88px; margin: 0 auto 16px; display: grid; place-items: center; border-radius: 50%; font-family: var(--font-head); font-weight: 900; font-size: 1.7rem; color: #fff; }
.member__ava[data-c="1"] { background: linear-gradient(135deg, var(--red), var(--red-d)); }
.member__ava[data-c="2"] { background: linear-gradient(135deg, var(--navy), #2a4b9c); }
.member__ava[data-c="3"] { background: linear-gradient(135deg, #c0150d, #7a0c07); }
.member__ava[data-c="4"] { background: linear-gradient(135deg, #1d3f86, #0e2350); }
.member h3 { font-size: 1.12rem; font-weight: 800; }
.member__role { color: var(--navy); font-weight: 600; font-size: .9rem; margin-top: 4px; }
.member__exp { color: var(--muted); font-size: .86rem; margin-top: 4px; }

/* ====================== Gallery ====================== */
.gallery { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 16px; }
.gallery__item { margin: 0; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-sm); }
.gallery__item img { width: 100%; height: 360px; object-fit: cover; object-position: 50% 55%; transition: transform .5s ease; }
.gallery__item:hover img { transform: scale(1.05); }

/* ====================== Tax banner ====================== */
.taxbanner { background: linear-gradient(135deg, var(--red) 0%, var(--red-d) 100%); color: #fff; }
.taxbanner__inner { display: flex; align-items: center; justify-content: space-between; gap: 30px; padding: 48px 20px; }
.taxbanner__text { max-width: 60ch; }
.taxbanner h2 { font-size: clamp(1.6rem, 3vw, 2.2rem); font-weight: 900; }
.taxbanner p { margin-top: 10px; opacity: .94; font-size: 1.02rem; }

/* ====================== Reviews ====================== */
.reviews { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.review { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 28px 26px; box-shadow: var(--shadow-sm); display: flex; flex-direction: column; gap: 14px; }
.review__stars { color: var(--gold); font-size: 1.15rem; letter-spacing: 2px; }
.review p { color: #2a3140; }
.review footer { display: flex; align-items: center; gap: 12px; font-weight: 700; color: var(--navy); margin-top: auto; }
.review__ava { width: 42px; height: 42px; display: grid; place-items: center; border-radius: 50%; background: linear-gradient(135deg, var(--red), var(--navy)); color: #fff; font-family: var(--font-head); font-weight: 800; }

/* ====================== FAQ ====================== */
.faq { display: grid; gap: 14px; }
.faq__item { background: #fff; border: 1px solid var(--line); border-radius: var(--radius-sm); box-shadow: var(--shadow-sm); overflow: hidden; }
.faq__item summary { list-style: none; cursor: pointer; padding: 20px 56px 20px 22px; position: relative; font-family: var(--font-head); font-weight: 700; font-size: 1.04rem; }
.faq__item summary::-webkit-details-marker { display: none; }
.faq__item summary::after { content: '+'; position: absolute; right: 22px; top: 50%; transform: translateY(-50%); font-size: 1.5rem; color: var(--red); font-weight: 700; transition: transform .25s ease; }
.faq__item[open] summary::after { transform: translateY(-50%) rotate(45deg); }
.faq__body { padding: 0 22px 20px; color: var(--muted); }

/* ====================== Contacts ====================== */
.contacts { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; align-items: stretch; }
.contacts__info { background: linear-gradient(160deg, var(--navy) 0%, var(--navy-d) 100%); color: #fff; border-radius: var(--radius); padding: 36px 32px; display: flex; flex-direction: column; gap: 18px; }
.cline { display: flex; gap: 16px; align-items: center; color: #fff; }
.cline__ic { width: 48px; height: 48px; flex: 0 0 48px; display: grid; place-items: center; font-size: 1.3rem; background: rgba(255,255,255,.1); border-radius: 12px; }
.cline__label { display: block; font-size: .8rem; text-transform: uppercase; letter-spacing: .06em; color: rgba(255,255,255,.65); }
.cline__val { display: block; font-family: var(--font-head); font-weight: 700; font-size: 1.12rem; }
.cline--phone:hover .cline__val { color: #ffd9d6; }
.contacts__info .btn { margin-top: auto; }
.lead { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 34px 30px; box-shadow: var(--shadow-md); }
.lead__title { font-size: 1.4rem; font-weight: 800; margin-bottom: 18px; }

/* ====================== Footer ====================== */
.site-footer { background: var(--navy-d); color: rgba(255,255,255,.78); }
.footer__inner { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 36px; padding: 54px 20px 38px; }
.footer__logo { height: 46px; width: auto; margin-bottom: 16px; }
.footer__tagline { font-size: .95rem; max-width: 32ch; }
.footer__nav { display: flex; flex-direction: column; gap: 12px; }
.footer__nav a { font-weight: 500; transition: color .2s; }
.footer__nav a:hover { color: #fff; }
.footer__phone { font-family: var(--font-head); font-weight: 900; font-size: 1.6rem; color: #fff; }
.footer__phone:hover { color: #ffd9d6; }
.footer__contact p { margin-top: 8px; font-size: .92rem; }
.footer__bottom { border-top: 1px solid rgba(255,255,255,.1); padding: 18px 0; }
.footer__bottom p { font-size: .85rem; color: rgba(255,255,255,.55); text-align: center; }

/* ====================== Mobile sticky call ====================== */
.mobile-call { position: fixed; left: 16px; right: 16px; bottom: 16px; z-index: 90; display: none; align-items: center; justify-content: center; gap: 10px; background: var(--red); color: #fff; font-family: var(--font-head); font-weight: 800; padding: 15px; border-radius: 14px; box-shadow: 0 12px 28px rgba(226,35,26,.45); }

/* ====================== Responsive ====================== */
@media (max-width: 1000px) {
  .promo, .team { grid-template-columns: repeat(2, 1fr); }
  .adv-grid, .steps, .reviews { grid-template-columns: repeat(2, 1fr); }
  .hero__inner { grid-template-columns: 1fr; gap: 32px; }
  .hero__card { max-width: 460px; }
  .stats__grid { grid-template-columns: repeat(2, 1fr); }
  .stat:nth-child(3)::before, .stat:nth-child(2)::before { content: none; }
}
@media (max-width: 760px) {
  html { scroll-padding-top: 84px; }
  .topbar__item:not(.topbar__item--accent), .topbar__right .topbar__item { display: none; }
  .topbar__inner { justify-content: space-between; }
  .header-inner { height: 64px; gap: 12px; }
  .brand-logo { height: 38px; }
  .header-phone, .header-cta .btn { display: none; }
  .nav-toggle { display: flex; margin-left: auto; }
  .main-nav { position: fixed; inset: 104px 0 auto 0; flex-direction: column; gap: 0; background: #fff; border-bottom: 1px solid var(--line); padding: 8px 20px 18px; transform: translateY(-130%); transition: transform .3s ease; box-shadow: var(--shadow-md); margin-left: 0; }
  .main-nav.is-open { transform: translateY(0); }
  .main-nav a { padding: 14px 0; border-bottom: 1px solid var(--line); font-size: 1.05rem; }
  .main-nav a::after { display: none; }

  .section, .section--tight { padding: 54px 0; }
  .promo, .cats, .tariffs, .adv-grid, .steps, .team, .reviews, .contacts, .gallery { grid-template-columns: 1fr; }
  .tariff--featured { transform: none; }
  .gallery__item img { height: 280px; }
  .cat { flex-wrap: wrap; }
  .cat .btn { width: 100%; }
  .taxbanner__inner { flex-direction: column; text-align: center; }
  .footer__inner { grid-template-columns: 1fr; gap: 26px; }
  body { padding-bottom: 74px; }
  .mobile-call { display: flex; }
}
@media (max-width: 400px) {
  .stats__grid { grid-template-columns: 1fr; }
  .stat + .stat::before { content: none; }
  .hero__price { width: 100%; }
}
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  * { transition: none !important; animation: none !important; }
  .section__head, .promo__card, .cat, .tariff, .adv, .step, .member, .gallery__item, .review, .faq__item { opacity: 1; transform: none; }
}
