/* ════════════════════════════════════════════════════════════
   Домашняя бухгалтерия · Elevina AI Studio
   Чистый CSS, mobile-first. Акцент: #4C6FFF
   Шрифты: Manrope (заголовки) + Inter (текст) — Google Fonts
   ════════════════════════════════════════════════════════════ */

:root {
  --bg: #F6F7FB;
  --surface: #FFFFFF;
  --ink: #141927;
  --ink-soft: #333B52;
  --muted: #5A6377;
  --line: #E5E9F4;
  --accent: #4C6FFF;
  --accent-deep: #3B57E0;
  --accent-soft: #EDF1FF;
  --accent-line: #C9D5FF;
  --dark: #12182B;
  /* Острые углы: радиусы отключены по всему сайту */
  --r-card: 0;
  --r-btn: 0;
  --shadow-soft: 0 16px 34px rgba(18, 24, 43, .08);
  --shadow-accent: 0 12px 28px rgba(76, 111, 255, .30);
  --font-display: "Manrope", "Segoe UI", sans-serif;
  --font-body: "Inter", "Segoe UI", sans-serif;
}

/* ── База ─────────────────────────────────────────────────── */

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

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
}

/* Многослойный фоновый ambient: мягкие синие ореолы + точечная сетка */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -2;
  background:
    radial-gradient(880px 480px at 88% -6%, rgba(76, 111, 255, .10), transparent 62%),
    radial-gradient(640px 420px at -8% 26%, rgba(76, 111, 255, .06), transparent 58%),
    radial-gradient(720px 480px at 70% 96%, rgba(76, 111, 255, .05), transparent 60%);
}
body::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background-image: radial-gradient(rgba(18, 24, 43, .05) 1px, transparent 1.4px);
  background-size: 26px 26px;
  -webkit-mask-image: linear-gradient(to bottom, #000 0, transparent 640px);
          mask-image: linear-gradient(to bottom, #000 0, transparent 640px);
}

::selection { background: var(--accent-soft); color: var(--accent-deep); }

img { max-width: 100%; height: auto; display: block; }

a { color: var(--accent); }

h1, h2, h3 {
  font-family: var(--font-display);
  margin: 0;
  line-height: 1.12;
  letter-spacing: -0.02em;
  text-wrap: balance;
}

p { margin: 0; }

:focus-visible {
  outline: 3px solid rgba(76, 111, 255, .45);
  outline-offset: 2px;
}

.container {
  width: 100%;
  max-width: 1120px;
  margin-inline: auto;
  padding-inline: 20px;
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  background: var(--accent);
  color: #fff;
  padding: .6rem 1rem;
  z-index: 100;
  font-weight: 600;
  text-decoration: none;
}
.skip-link:focus { left: 0; }

/* ── Кнопки ───────────────────────────────────────────────── */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 1rem;
  text-decoration: none;
  border-radius: var(--r-btn);
  padding: .78rem 1.35rem;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform .18s ease, box-shadow .18s ease, background-color .18s ease, border-color .18s ease, color .18s ease;
  white-space: nowrap;
}
.btn:active { transform: translateY(1px) scale(.99); }

.btn-primary {
  background: var(--accent);
  color: #fff;
  box-shadow: var(--shadow-accent);
}
.btn-primary:hover {
  background: var(--accent-deep);
  transform: translateY(-2px);
  box-shadow: 0 18px 36px rgba(76, 111, 255, .38);
}

.btn-ghost {
  background: var(--surface);
  border-color: var(--line);
  color: var(--ink);
}
.btn-ghost:hover {
  border-color: var(--accent);
  color: var(--accent-deep);
  transform: translateY(-2px);
  box-shadow: var(--shadow-soft);
}

.btn-ghost-light {
  background: transparent;
  border-color: rgba(255, 255, 255, .28);
  color: #fff;
}
.btn-ghost-light:hover {
  background: rgba(255, 255, 255, .10);
  border-color: rgba(255, 255, 255, .5);
  transform: translateY(-2px);
}

.btn-sm { font-size: .92rem; padding: .55rem 1.05rem; }
.btn-lg { font-size: 1.05rem; padding: .95rem 1.6rem; }

/* ── Шапка ────────────────────────────────────────────────── */

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, .88);
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 64px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: .6rem;
  text-decoration: none;
  color: var(--ink);
}
.brand-mark { width: 30px; height: 30px; flex: none; transition: transform .25s ease; }
.brand:hover .brand-mark { transform: rotate(-6deg) scale(1.06); }
.brand-text {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.02rem;
  letter-spacing: -0.01em;
}
.brand-text b { font-weight: 800; }

.site-nav {
  display: none;
  align-items: center;
  gap: 1.6rem;
}
.site-nav a {
  color: var(--muted);
  text-decoration: none;
  font-size: .94rem;
  font-weight: 500;
  position: relative;
  transition: color .18s ease;
}
.site-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 100%;
  height: 2px;
  border-radius: 2px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .22s ease;
}
.site-nav a:hover { color: var(--ink); }
.site-nav a:hover::after { transform: scaleX(1); }

/* ── Hero ─────────────────────────────────────────────────── */

.hero { padding-block: 3.2rem 3.6rem; }

.hero-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.6rem;
  align-items: center;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: .55rem;
  background: var(--surface);
  border: 1px solid var(--line);
  padding: .42rem .95rem;
  font-size: .85rem;
  font-weight: 500;
  color: var(--ink-soft);
  box-shadow: 0 4px 14px rgba(18, 24, 43, .05);
}

.pulse-dot {
  width: 9px;
  height: 9px;
  background: var(--accent);
  position: relative;
  flex: none;
}
.pulse-dot::after {
  content: "";
  position: absolute;
  inset: -4px;
  border: 2px solid rgba(76, 111, 255, .5);
  animation: pulse 2s ease-out infinite;
}
@keyframes pulse {
  0%   { transform: scale(.5); opacity: 1; }
  80%  { transform: scale(1.5); opacity: 0; }
  100% { transform: scale(1.5); opacity: 0; }
}

.hero h1 {
  margin-top: 1.1rem;
  font-size: clamp(2.35rem, 6.2vw, 3.9rem);
  font-weight: 800;
}
.accent-mark {
  background: linear-gradient(transparent 64%, rgba(76, 111, 255, .24) 64%);
  padding-inline: .06em;
}

.hero-sub {
  margin-top: 1.15rem;
  max-width: 34rem;
  font-size: clamp(1.06rem, 2.4vw, 1.28rem);
  line-height: 1.55;
  color: var(--muted);
}

.hero-actions {
  margin-top: 1.8rem;
  display: flex;
  flex-wrap: wrap;
  gap: .8rem;
}

.hero-meta {
  margin: 1.5rem 0 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: .4rem 0;
  color: var(--muted);
  font-size: .9rem;
}
.hero-meta li { display: flex; align-items: center; }
.hero-meta li::before {
  content: "·";
  margin-inline: .65rem;
  color: var(--accent);
  font-weight: 700;
}
.hero-meta li:first-child::before { content: none; }

/* Скриншот в «окне приложения» */
.hero-shot { position: relative; }

.shot-frame {
  margin: 0;
  background: var(--surface);
  border: 1px solid var(--line);
  overflow: hidden;
  box-shadow: 0 30px 70px rgba(18, 24, 43, .12), 0 4px 16px rgba(18, 24, 43, .06);
  animation: floaty 7s ease-in-out infinite;
}
@keyframes floaty {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(-9px); }
}

.shot-bar {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: .65rem .95rem;
  border-bottom: 1px solid var(--line);
  background: #FBFCFE;
}
.shot-dot { width: 10px; height: 10px; background: var(--line); }
.shot-dot:first-child { background: #FFC7C0; }
.shot-dot:nth-child(2) { background: #FFE2A6; }
.shot-dot:nth-child(3) { background: #BDEBC9; }
.shot-title {
  margin-left: .6rem;
  font-size: .78rem;
  color: var(--muted);
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.shot-frame img { width: 100%; }

/* Плавающие чипы вокруг скриншота */
.float-chip {
  position: absolute;
  display: flex;
  align-items: center;
  gap: .6rem;
  background: var(--surface);
  border: 1px solid var(--line);
  padding: .6rem .85rem;
  box-shadow: var(--shadow-soft);
  font-size: .86rem;
  font-weight: 600;
  color: var(--ink);
  animation: floaty 6s ease-in-out infinite;
  display: none;
}
.float-chip small {
  display: block;
  font-weight: 400;
  font-size: .74rem;
  color: var(--muted);
}
.chip-ico { font-size: 1.25rem; line-height: 1; }
.chip-a { top: -16px; right: -14px; animation-delay: -1.6s; }
.chip-b { bottom: 34px; left: -26px; animation-delay: -3.4s; }

/* ── Бегущая строка ───────────────────────────────────────── */

.ticker {
  overflow: hidden;
  border-block: 1px solid var(--line);
  background: var(--surface);
}
.ticker-track {
  display: flex;
  width: max-content;
  animation: marquee 34s linear infinite;
}
.ticker:hover .ticker-track { animation-play-state: paused; }
.ticker-group {
  display: flex;
  align-items: center;
  gap: 2rem;
  padding: .8rem 1rem .8rem 1rem;
}
.tick { font-size: .9rem; font-weight: 500; color: var(--ink-soft); white-space: nowrap; }
.tick-sep { color: var(--accent-line); font-size: .6rem; }
@keyframes marquee { to { transform: translateX(-50%); } }

/* ── Секции ───────────────────────────────────────────────── */

.section { padding-block: 3.8rem; }
.section-alt { background: linear-gradient(180deg, rgba(255,255,255,.65), rgba(255,255,255,0) 42%); }

.section-head { margin-bottom: 2.2rem; max-width: 42rem; }

.eyebrow {
  display: flex;
  align-items: center;
  gap: .7rem;
  margin: 0 0 .75rem;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: .78rem;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--accent);
}
.eyebrow::before {
  content: "";
  width: 26px;
  height: 2px;
  border-radius: 2px;
  background: var(--accent);
  flex: none;
}
.eyebrow-light { color: #A9BCFF; }
.eyebrow-light::before { background: #A9BCFF; }

.section h2 {
  font-size: clamp(1.7rem, 4vw, 2.5rem);
  font-weight: 800;
}

/* ── Карточки ─────────────────────────────────────────────── */

.card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r-card);
  transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
}
.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-soft);
  border-color: var(--accent-line);
}

.card-ico {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  font-size: 1.45rem;
  background: var(--accent-soft);
  transition: transform .25s ease;
}
.card:hover .card-ico { transform: scale(1.08) rotate(-4deg); }

/* Почему это удобно */
.why-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.1rem;
}
.why-card { padding: 1.7rem 1.6rem 1.8rem; }
.why-card h3 { margin-top: 1.1rem; font-size: 1.28rem; font-weight: 700; }
.why-card p { margin-top: .55rem; color: var(--muted); font-size: .98rem; }

/* Возможности */
.features-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}
.feat { padding: 1.35rem 1.3rem 1.45rem; }
.feat h3 { margin-top: .9rem; font-size: 1.04rem; font-weight: 700; }
.feat p { margin-top: .4rem; color: var(--muted); font-size: .92rem; line-height: 1.55; }

.features-note {
  margin-top: 1.4rem;
  padding: 1rem 1.25rem;
  border: 1px dashed var(--accent-line);
  background: rgba(255, 255, 255, .7);
  color: var(--ink-soft);
  font-size: .95rem;
}

/* ── Скриншоты: карусель ──────────────────────────────────── */

.shots-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 1.8rem;
}
.shots-head .section-head { margin-bottom: 0; }

.car-controls { display: flex; align-items: center; gap: .6rem; }

.car-count {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: .85rem;
  letter-spacing: .08em;
  color: var(--muted);
  min-width: 4.2em;
  text-align: center;
  font-variant-numeric: tabular-nums;
}

.car-btn {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  background: var(--surface);
  border: 1px solid var(--line);
  color: var(--ink);
  cursor: pointer;
  transition: background-color .18s ease, color .18s ease, border-color .18s ease, transform .18s ease;
}
.car-btn svg { width: 20px; height: 20px; }
.car-btn:hover {
  background: var(--accent);
  border-color: var(--accent);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: var(--shadow-accent);
}
.car-btn:active { transform: translateY(0) scale(.96); }

.carousel-track {
  display: flex;
  gap: 1.25rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  padding-bottom: .4rem;
  scrollbar-width: none;
  -ms-overflow-style: none;
  -webkit-mask-image: linear-gradient(to right, transparent 0, #000 28px, #000 calc(100% - 28px), transparent 100%);
          mask-image: linear-gradient(to right, transparent 0, #000 28px, #000 calc(100% - 28px), transparent 100%);
}
.carousel-track::-webkit-scrollbar { display: none; }

.slide {
  flex: 0 0 min(86vw, 680px);
  scroll-snap-align: start;
  margin: 0;
  background: var(--surface);
  border: 1px solid var(--line);
  overflow: hidden;
  transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
}
.slide:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-soft);
  border-color: var(--accent-line);
}
.slide img { width: 100%; }
.slide figcaption {
  display: flex;
  align-items: center;
  gap: .55rem;
  padding: .85rem 1.1rem;
  border-top: 1px solid var(--line);
  font-size: .9rem;
  font-weight: 500;
  color: var(--muted);
}

.car-progress {
  margin-top: 1.3rem;
  height: 3px;
  background: var(--line);
  overflow: hidden;
}
.car-progress-bar {
  height: 100%;
  width: 10%;
  background: var(--accent);
  transition: width .15s linear;
}

.shots-hint {
  margin-top: .8rem;
  font-size: .84rem;
  color: var(--muted);
}

/* ── Приватность ──────────────────────────────────────────── */

.priv-panel {
  display: grid;
  grid-template-columns: 1fr;
  background: var(--surface);
  border: 1px solid var(--line);
  overflow: hidden;
}
.priv-text { padding: 2rem 1.6rem; }
.priv-text h2 { font-size: clamp(1.5rem, 3.4vw, 2.1rem); margin-bottom: .9rem; }
.priv-text p:not(.eyebrow) { color: var(--muted); max-width: 36rem; }

.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  margin-top: 1.3rem;
  font-weight: 600;
  text-decoration: none;
  color: var(--accent-deep);
  transition: gap .2s ease;
}
.link-arrow:hover { gap: .75rem; }

.priv-list {
  list-style: none;
  margin: 0;
  padding: 1.8rem 1.6rem;
  background: var(--accent-soft);
  display: grid;
  gap: 1rem;
  align-content: center;
}
.priv-list li {
  display: flex;
  align-items: flex-start;
  gap: .75rem;
  font-weight: 600;
  font-size: .97rem;
  color: var(--ink-soft);
}
.check {
  flex: none;
  width: 24px;
  height: 24px;
  display: grid;
  place-items: center;
  background: var(--accent);
  color: #fff;
  font-size: .8rem;
  font-weight: 700;
  margin-top: .1rem;
}

/* ── Скачивание (CTA) ─────────────────────────────────────── */

.cta-card {
  position: relative;
  overflow: hidden;
  background: var(--dark);
  color: #F2F5FF;
  padding: 2.6rem 1.6rem;
  text-align: center;
}
.cta-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(560px 300px at 82% -12%, rgba(76, 111, 255, .5), transparent 62%),
    radial-gradient(460px 260px at 8% 112%, rgba(76, 111, 255, .28), transparent 60%);
  pointer-events: none;
}
.cta-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(255, 255, 255, .12) 1px, transparent 1.4px);
  background-size: 24px 24px;
  -webkit-mask-image: radial-gradient(600px 320px at 50% 0%, #000, transparent 75%);
          mask-image: radial-gradient(600px 320px at 50% 0%, #000, transparent 75%);
  pointer-events: none;
}
.cta-card > * { position: relative; z-index: 1; }
.cta-card .eyebrow { justify-content: center; }
.cta-card h2 { font-size: clamp(1.65rem, 4vw, 2.5rem); max-width: 22ch; margin-inline: auto; }
.cta-sub { margin: .9rem auto 0; max-width: 34rem; color: rgba(242, 245, 255, .72); }
.cta-actions {
  margin-top: 1.8rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: .8rem;
}
.cta-note {
  margin-top: 1.3rem;
  font-size: .86rem;
  color: rgba(242, 245, 255, .58);
  letter-spacing: .02em;
}

/* ── FAQ ──────────────────────────────────────────────────── */

.faq-list { max-width: 780px; }

.faq-item {
  background: var(--surface);
  border: 1px solid var(--line);
  margin-bottom: .75rem;
  transition: border-color .2s ease, box-shadow .2s ease;
}
.faq-item[open] { border-color: var(--accent-line); box-shadow: var(--shadow-soft); }

.faq-item summary {
  list-style: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.05rem 1.25rem;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.02rem;
  color: var(--ink);
  transition: color .18s ease;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+";
  flex: none;
  font-size: 1.4rem;
  font-weight: 500;
  line-height: 1;
  color: var(--accent);
  transition: transform .25s ease;
}
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item summary:hover { color: var(--accent-deep); }

.faq-a {
  padding: 0 1.25rem 1.15rem;
  color: var(--muted);
  line-height: 1.65;
  max-width: 62ch;
}
.faq-item[open] .faq-a { animation: faq-in .3s ease; }
@keyframes faq-in {
  from { opacity: 0; transform: translateY(-5px); }
  to   { opacity: 1; transform: none; }
}

/* ── Футер ────────────────────────────────────────────────── */

.site-footer {
  margin-top: 2.5rem;
  border-top: 1px solid var(--line);
  background: var(--surface);
  padding-block: 1.8rem 2rem;
}
.footer-inner {
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
}
.footer-copy { font-weight: 600; font-size: .93rem; }
.footer-tech { margin-top: .25rem; color: var(--muted); font-size: .84rem; }
.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: .5rem 1.5rem;
}
.footer-nav a {
  color: var(--muted);
  font-size: .93rem;
  text-decoration: none;
  transition: color .18s ease;
}
.footer-nav a:hover { color: var(--accent-deep); text-decoration: underline; }

/* ── privacy.html: строгий текст ──────────────────────────── */

.page-head { padding-block: 3rem 1.6rem; }
.page-head h1 { font-size: clamp(1.9rem, 4.6vw, 2.7rem); font-weight: 800; }
.page-lead { margin-top: .9rem; color: var(--muted); max-width: 40rem; }
.back-link {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  margin-bottom: 1.4rem;
  font-weight: 600;
  font-size: .94rem;
  text-decoration: none;
  color: var(--accent-deep);
  transition: gap .2s ease;
}
.back-link:hover { gap: .7rem; }

.prose { max-width: 760px; padding-bottom: 3.5rem; }
.prose section {
  padding: 1.7rem 0;
  border-top: 1px solid var(--line);
}
.prose section:first-of-type { border-top: 0; padding-top: .6rem; }
.prose h2 { font-size: 1.3rem; font-weight: 700; margin-bottom: .7rem; }
.prose p { color: var(--ink-soft); line-height: 1.75; }
.prose p + p { margin-top: .8rem; }
.prose .muted { color: var(--muted); font-size: .92rem; }

.mail-chip {
  display: inline-block;
  margin-top: .9rem;
  padding: .65rem 1rem;
  background: var(--accent-soft);
  border: 1px dashed var(--accent-line);
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--accent-deep);
  word-break: break-all;
}

/* ── Scroll-reveal (CSS scroll-driven, прогрессивное улучшение) ── */

@supports (animation-timeline: view()) {
  @media (prefers-reduced-motion: no-preference) {
    .reveal {
      animation: rise linear both;
      animation-timeline: view();
      animation-range: entry 0% entry 32%;
    }
    @keyframes rise {
      from { opacity: 0; transform: translateY(30px); }
      to   { opacity: 1; transform: none; }
    }
  }
}

/* ── Адаптив ──────────────────────────────────────────────── */

@media (min-width: 560px) {
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .cta-card { padding: 3.2rem 2.4rem; }
}

@media (min-width: 760px) {
  .container { padding-inline: 28px; }
  .section { padding-block: 4.6rem; }
  .hero { padding-block: 4rem 4.4rem; }
  .why-grid { grid-template-columns: repeat(3, 1fr); gap: 1.25rem; }
  .priv-panel { grid-template-columns: 1.15fr .85fr; }
  .priv-text { padding: 2.6rem 2.4rem; }
  .priv-list { padding: 2.6rem 2.2rem; }
  .footer-inner { flex-direction: row; align-items: center; justify-content: space-between; }
}

@media (min-width: 900px) {
  .site-nav { display: flex; }
}

@media (min-width: 980px) {
  .hero { padding-block: 4.6rem 5.2rem; }
  .hero-grid { grid-template-columns: 1.02fr .98fr; gap: 3.4rem; }
  .float-chip { display: flex; }
}

@media (min-width: 1024px) {
  .features-grid { grid-template-columns: repeat(4, 1fr); }
}

/* ── Уважение к reduced motion ────────────────────────────── */

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .ticker-track { animation: none; }
  .shot-frame, .float-chip { animation: none; }
  .pulse-dot::after { animation: none; opacity: 0; }
  .faq-item[open] .faq-a { animation: none; }
  .carousel-track { scroll-behavior: auto; }
  .card, .slide, .btn, .car-btn { transition: none; }
}
