/* =========================================================
   ERP landing — стили
   Фирменный зелёный из ERP (#126321), шрифт Manrope, скругления
   12–24px. Анимации: появление с направлением, пословный заголовок,
   перспектива и тилт скриншота, прогресс вкладок, прорисовка линий.
   ========================================================= */

/* ---------- Tokens ---------- */
:root {
  color-scheme: light;

  --green: #126321;
  --green-hover: #18812b;
  --green-light: #1fa34f;
  --green-deep: #0a3612;
  --green-deep-2: #126321;
  --green-soft: #e7f2e9;
  --green-tint: rgba(18, 99, 33, 0.10);
  --green-glow: rgba(18, 99, 33, 0.16);
  --green-on-dark: #8fdca3;

  --ink: #152318;
  --muted: #5c6b60;
  --surface: #f4f8f5;
  --hairline: rgba(21, 35, 24, 0.10);
  --hairline-strong: rgba(21, 35, 24, 0.20);

  --r-btn: 12px;
  --r-card: 20px;
  --r-lg: 24px;
  --r-shot: 16px;

  --shadow-soft: 0 1px 2px rgba(20, 50, 30, 0.04), 0 10px 28px rgba(20, 50, 30, 0.06);
  --shadow-lift: 0 2px 6px rgba(20, 50, 30, 0.05), 0 28px 64px rgba(20, 50, 30, 0.12);

  --font: "Manrope", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;

  --ease: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-io: cubic-bezier(0.65, 0, 0.35, 1);

  --header-h: 64px;
  --container: 1240px;
  --gutter: 20px;
}
@media (min-width: 640px)  { :root { --gutter: 32px; } }
@media (min-width: 1024px) { :root { --gutter: 40px; --header-h: 72px; } }

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-h) + 16px);
}
body {
  margin: 0;
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.55;
  color: var(--ink);
  background: #fff;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: clip; /* clip, а не hidden — hidden ломает sticky-шапку */
  min-width: 320px;
}
body.is-locked { overflow: hidden; }
h1, h2, h3, h4, p, ul, ol, figure { margin: 0; }
ul, ol { padding: 0; list-style: none; }
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; background: none; border: 0; padding: 0; cursor: pointer; }
input, textarea { font: inherit; }
i { font-style: normal; display: block; }

:focus-visible { outline: 2px solid var(--green); outline-offset: 3px; border-radius: 6px; }

.skip-link {
  position: absolute; left: 12px; top: -60px;
  padding: 10px 16px; border-radius: var(--r-btn);
  background: var(--ink); color: #fff; font-size: 14px; z-index: 200;
  transition: top .2s ease-out;
}
.skip-link:focus { top: 12px; }

/* ---------- Typography ---------- */
.t-display {
  font-size: clamp(2.375rem, 7.4vw, 4.75rem);
  line-height: 1.02;
  letter-spacing: -0.04em;
  font-weight: 800;
  text-wrap: balance;
}
.t-h2 {
  font-size: clamp(1.875rem, 4.8vw, 3.25rem);
  line-height: 1.06;
  letter-spacing: -0.035em;
  font-weight: 800;
  text-wrap: balance;
}
.t-h3 {
  font-size: clamp(1.5rem, 3vw, 2.125rem);
  line-height: 1.12;
  letter-spacing: -0.028em;
  font-weight: 700;
  text-wrap: balance;
}
.t-lead {
  font-size: clamp(1.0625rem, 1.8vw, 1.25rem);
  line-height: 1.5;
  letter-spacing: -0.005em;
  color: var(--muted);
  text-wrap: pretty;
}
.t-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  line-height: 1.2;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--green);
}
.t-eyebrow::before {
  content: "";
  width: 22px; height: 2px;
  background: var(--green);
  border-radius: 2px;
  transform-origin: left;
  transform: scaleX(0);
  transition: transform .7s var(--ease) .1s;
}
[data-visible="true"] .t-eyebrow::before, .t-eyebrow[data-visible="true"]::before { transform: scaleX(1); }

/* ---------- Layout ---------- */
.container {
  margin: 0 auto;
  width: 100%;
  max-width: var(--container);
  padding-left: var(--gutter);
  padding-right: var(--gutter);
}
.container--wide { max-width: 1400px; }

.section { padding: 88px 0; scroll-margin-top: var(--header-h); position: relative; }
@media (min-width: 640px)  { .section { padding: 120px 0; } }
@media (min-width: 1024px) { .section { padding: 150px 0; } }
.section--surface { background: var(--surface); }

/* Заголовок секции: слева, с номером */
.section-head { display: grid; gap: 18px; max-width: 760px; }
.section-head__row { display: flex; align-items: center; gap: 16px; }
.section-head__num {
  font-size: 13px; font-weight: 700; color: var(--muted);
  letter-spacing: 0.06em; font-variant-numeric: tabular-nums;
}
.section-head .t-h2 { max-width: 18ch; }
.section-head--center { margin: 0 auto; text-align: center; justify-items: center; }
.section-head--center .section-head__row { justify-content: center; }
.section-head .t-lead { max-width: 58ch; }
@media (min-width: 900px) {
  .section-head--split { max-width: none; grid-template-columns: minmax(0, 1fr) minmax(0, 420px); align-items: end; column-gap: 48px; }
  .section-head--split .section-head__row { grid-column: 1; grid-row: 1; }
  .section-head--split .t-h2 { grid-column: 1; grid-row: 2; }
  .section-head--split .t-lead { grid-column: 2; grid-row: 2; margin-bottom: 6px; }
}

/* ---------- Buttons ---------- */
.btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border-radius: var(--r-btn);
  font-weight: 700;
  white-space: nowrap;
  border: 1px solid transparent;
  transition: background-color .25s ease-out, color .25s ease-out, transform .25s var(--ease),
              box-shadow .25s ease-out, border-color .25s ease-out;
  -webkit-tap-highlight-color: transparent;
}
.btn:active { transform: scale(0.97); }
.btn--md { height: 44px; padding: 0 18px; font-size: 15px; }
.btn--lg { height: 54px; padding: 0 24px; font-size: 16px; }
@media (max-width: 479.98px) { .btn--lg { padding: 0 16px; font-size: 15px; } .btn--lg .btn__arrow { width: 16px; height: 16px; } }
.btn__arrow { width: 18px; height: 18px; flex-shrink: 0; transition: transform .35s var(--ease); }
.btn:hover .btn__arrow { transform: translateX(4px); }

.btn--primary { background: var(--green); color: #fff; box-shadow: 0 6px 18px rgba(18, 99, 33, 0.22); }
.btn--primary:hover { background: var(--green-hover); box-shadow: 0 10px 26px rgba(18, 99, 33, 0.3); transform: translateY(-1px); }
.btn--primary:active { transform: scale(0.97); }

.btn--secondary { background: #fff; color: var(--ink); border-color: var(--hairline-strong); }
.btn--secondary:hover { border-color: var(--green); color: var(--green); }

.btn--light { background: #fff; color: var(--green-deep); }
.btn--light:hover { background: var(--green-soft); }

/* ---------- Reveal system ---------- */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .8s var(--ease), transform .8s var(--ease);
  transition-delay: var(--d, 0ms);
}
.reveal--left  { transform: translateX(-20px); }
.reveal--right { transform: translateX(20px); }
@media (min-width: 1024px) { .reveal--left { transform: translateX(-32px); } .reveal--right { transform: translateX(32px); } }
.reveal--scale { transform: scale(0.94); }
.reveal--clip  { transform: none; opacity: 1; clip-path: inset(8% 5% 8% 5% round var(--r-shot)); transition: clip-path .9s var(--ease); }
.reveal[data-visible="true"] { opacity: 1; transform: none; }
.reveal--clip[data-visible="true"] { clip-path: inset(0 0 0 0 round var(--r-shot)); }

/* ---------- Header ---------- */
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.86);
  -webkit-backdrop-filter: saturate(160%) blur(16px);
  backdrop-filter: saturate(160%) blur(16px);
  border-bottom: 1px solid transparent;
  transition: border-color .3s ease-out, transform .45s var(--ease), background-color .3s ease-out;
}
.header.is-scrolled { border-bottom-color: var(--hairline); }
.header.is-hidden { transform: translateY(-100%); }
.header__inner { height: var(--header-h); display: flex; align-items: center; gap: 16px; }

.logo { display: inline-flex; align-items: center; gap: 10px; color: var(--ink); }
.logo__mark { width: 36px; height: 36px; flex-shrink: 0; }
.logo__text { font-weight: 800; font-size: 18px; letter-spacing: -0.02em; line-height: 1.1; }
.logo__text small { display: block; font-weight: 600; font-size: 10.5px; letter-spacing: 0.06em; color: var(--muted); text-transform: uppercase; margin-top: 2px; }

.nav { margin-left: auto; display: none; align-items: center; gap: 32px; }
.nav__list { display: flex; gap: 6px; }
.nav__link {
  position: relative;
  display: inline-block;
  font-size: 15px;
  font-weight: 600;
  color: var(--muted);
  padding: 8px 12px;
  border-radius: 10px;
  transition: color .2s ease-out, background-color .2s ease-out;
}
.nav__link:hover { color: var(--ink); background: var(--surface); }
.nav__link.is-active { color: var(--green); }
.nav__actions { display: none; }
.header__cta { margin-left: auto; display: none; }

.burger {
  margin-left: auto;
  width: 44px; height: 44px;
  display: inline-flex; flex-direction: column; align-items: center; justify-content: center; gap: 6px;
  border-radius: 10px;
}
.burger__line { display: block; width: 20px; height: 2px; background: var(--ink); border-radius: 2px; transition: transform .35s var(--ease); }
.burger[aria-expanded="true"] .burger__line:first-child { transform: translateY(4px) rotate(45deg); }
.burger[aria-expanded="true"] .burger__line:last-child { transform: translateY(-4px) rotate(-45deg); }

@media (max-width: 1023.98px) {
  .nav {
    position: fixed; left: 0; right: 0; top: var(--header-h);
    display: flex; flex-direction: column; align-items: stretch; gap: 0;
    padding: 8px var(--gutter) 24px;
    background: #fff;
    border-bottom: 1px solid var(--hairline);
    max-height: calc(100svh - var(--header-h));
    overflow-y: auto; overscroll-behavior: contain;
    opacity: 0; transform: translateY(-10px); pointer-events: none;
    transition: opacity .3s var(--ease), transform .35s var(--ease);
  }
  .nav.is-open { opacity: 1; transform: none; pointer-events: auto; }
  .nav__list { flex-direction: column; gap: 0; }
  .nav__list li { border-bottom: 1px solid var(--hairline); opacity: 0; transform: translateX(-12px); transition: opacity .4s var(--ease), transform .4s var(--ease); }
  .nav.is-open .nav__list li { opacity: 1; transform: none; }
  .nav.is-open .nav__list li:nth-child(1) { transition-delay: 60ms; }
  .nav.is-open .nav__list li:nth-child(2) { transition-delay: 110ms; }
  .nav.is-open .nav__list li:nth-child(3) { transition-delay: 160ms; }
  .nav.is-open .nav__list li:nth-child(4) { transition-delay: 210ms; }
  .nav__link { display: block; font-size: 18px; padding: 16px 0; color: var(--ink); border-radius: 0; }
  .nav__link:hover { background: none; }
  .nav__actions { display: block; padding-top: 20px; }
  .nav__actions .btn { width: 100%; height: 54px; font-size: 16px; }
}
@media (min-width: 640px) and (max-width: 1023.98px) { .header__cta { display: inline-flex; } .burger { margin-left: 4px; } }
@media (min-width: 1024px) { .nav { display: flex; } .nav__actions { display: block; } .burger { display: none; } }

/* ---------- Hero ---------- */
.hero { position: relative; padding-top: 56px; padding-bottom: 72px; overflow: hidden; }
@media (min-width: 640px)  { .hero { padding-top: 80px; padding-bottom: 96px; } }
@media (min-width: 1024px) { .hero { padding-top: 104px; padding-bottom: 120px; } }

/* мягкое зелёное свечение за скриншотом */
.hero::before {
  content: "";
  position: absolute;
  left: 50%; top: 52%;
  width: min(1100px, 120vw); height: 560px;
  transform: translateX(-50%);
  background: radial-gradient(ellipse at center, var(--green-glow) 0%, rgba(18, 99, 33, 0.05) 40%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}
.hero > * { position: relative; z-index: 1; }

.hero__grid { display: grid; gap: 24px; }
@media (min-width: 900px) {
  .hero__grid { grid-template-columns: minmax(0, 7fr) minmax(0, 5fr); gap: 48px; align-items: end; }
}
.hero__title { max-width: 13ch; }
.hero__aside { display: grid; gap: 22px; }
.hero__aside .t-lead { max-width: 44ch; }
.hero__actions { display: flex; flex-wrap: wrap; gap: 12px; }
@media (max-width: 479.98px) { .hero__actions { flex-direction: column; } .hero__actions .btn { width: 100%; } }

/* пословное появление заголовка */
.split .w { display: inline-block; overflow: hidden; vertical-align: bottom; padding-bottom: 0.1em; margin-bottom: -0.1em; }
.split .w > span { display: inline-block; transform: translateY(110%); transition: transform .9s var(--ease); transition-delay: calc(var(--i) * 70ms + 80ms); }
.split[data-visible="true"] .w > span { transform: none; }
.split .accent { color: var(--green); }

.hero__shot-wrap { margin-top: 56px; perspective: 1600px; }
@media (min-width: 640px)  { .hero__shot-wrap { margin-top: 72px; } }
@media (min-width: 1024px) { .hero__shot-wrap { margin-top: 88px; } }

/* перспективный вход + наклон за мышью (JS задаёт --rx/--ry/--py) */
.shot--hero {
  transform-style: preserve-3d;
  transform: perspective(1600px) rotateX(10deg) translateY(40px);
  opacity: 0;
  transition: transform 1.2s var(--ease) .25s, opacity 1s var(--ease) .25s;
}
.shot--hero[data-visible="true"] {
  opacity: 1;
  transform: perspective(1600px) rotateX(var(--rx, 0deg)) rotateY(var(--ry, 0deg)) translateY(var(--py, 0px));
}
.shot--hero.is-tracking { transition: transform .12s ease-out; }

/* лента модулей под скриншотом */
.hero__strip { margin-top: 40px; display: flex; flex-wrap: wrap; gap: 8px; justify-content: center; }
@media (min-width: 640px) { .hero__strip { margin-top: 56px; gap: 10px; } }
.chip {
  display: inline-flex; align-items: center; gap: 8px;
  height: 36px; padding: 0 14px 0 10px;
  border-radius: 10px;
  border: 1px solid var(--hairline);
  background: #fff;
  font-size: 13.5px; font-weight: 600; color: var(--ink);
  opacity: 0; transform: translateY(12px) scale(0.96);
  transition: opacity .6s var(--ease), transform .6s var(--ease), border-color .25s, background-color .25s;
  transition-delay: calc(var(--i) * 55ms + 500ms);
}
.hero__strip[data-visible="true"] .chip { opacity: 1; transform: none; }
.chip:hover { border-color: var(--green); background: var(--green-soft); }
.chip svg { width: 16px; height: 16px; color: var(--green); }

/* ---------- Screenshot frame ---------- */
.shot { width: 100%; min-width: 0; max-width: 100%; }
/* контейнеры скриншотов не должны раздуваться под натуральную ширину картинки */
.feature > *, .gallery__panel, .gallery__panels, .showcase__stage, .hero__shot-wrap > .container { min-width: 0; }
.shot__frame {
  border-radius: var(--r-shot);
  border: 1px solid var(--hairline);
  background: #fff;
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  transition: box-shadow .4s ease-out, border-color .4s ease-out, transform .5s var(--ease);
}
.shot--lift .shot__frame { box-shadow: var(--shadow-lift); }
.shot:hover .shot__frame { border-color: var(--hairline-strong); }

.shot__chrome {
  height: 40px;
  display: flex; align-items: center; gap: 6px;
  padding: 0 14px;
  background: #fafbfa;
  border-bottom: 1px solid var(--hairline);
}
.shot__dot { width: 9px; height: 9px; border-radius: 50%; background: rgba(21, 35, 24, 0.12); flex-shrink: 0; }
.shot__url {
  margin-left: 10px; flex: 1; min-width: 0; height: 24px;
  display: flex; align-items: center; justify-content: center; padding: 0 12px;
  border-radius: 8px; background: #fff; border: 1px solid var(--hairline);
  font-size: 11.5px; font-weight: 600; color: var(--muted);
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis; max-width: 360px;
}

.shot__body { position: relative; aspect-ratio: 2 / 1; background: var(--surface); overflow: hidden; }
.shot__img {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; object-position: top left;
  opacity: 0; transition: opacity .6s ease-out;
}
.shot.is-loaded .shot__img { opacity: 1; }
.shot.is-loaded .shot__ph { opacity: 0; }
/* снимок всегда сжимается целиком под рамку */
.shot.is-loaded .shot__img { object-fit: contain; object-position: center; }

/* ---- Заглушка-мокап (сайдбар как в ERP, активный пункт зелёный) ---- */
.shot__ph {
  position: absolute; inset: 0;
  display: grid; grid-template-columns: 19% 1fr;
  transition: opacity .4s ease-out;
  --ph-line: rgba(21, 35, 24, 0.08);
  --ph-line-strong: rgba(21, 35, 24, 0.14);
}
.ph-side { background: #fff; border-right: 1px solid var(--hairline); padding: 5% 10%; display: grid; align-content: start; gap: 8%; }
.ph-side__logo { width: 70%; height: 7%; min-height: 8px; border-radius: 6px; background: var(--green-soft); position: relative; }
.ph-side__logo::before { content: ""; position: absolute; left: 6%; top: 25%; width: 14%; height: 50%; border-radius: 3px; background: var(--green); }
.ph-side__item { width: 100%; height: 6%; min-height: 7px; border-radius: 6px; background: var(--ph-line); }
.ph-side__item.is-active { background: var(--green); opacity: .9; }

.ph-main { padding: 4% 4.5%; display: grid; align-content: start; gap: 4%; min-width: 0; }
.ph-head { display: flex; align-items: center; justify-content: space-between; }
.ph-title { width: 32%; height: 12px; border-radius: 6px; background: var(--ph-line-strong); }
.ph-btn { width: 14%; height: 14px; border-radius: 6px; background: var(--green); opacity: .9; }
.ph-kpis { display: grid; grid-template-columns: repeat(4, 1fr); gap: 3%; }
.ph-kpis i { aspect-ratio: 2.4 / 1; border-radius: 10px; background: #fff; border: 1px solid var(--hairline); position: relative; }
.ph-kpis i::before { content: ""; position: absolute; left: 12%; top: 22%; width: 40%; height: 10%; border-radius: 4px; background: var(--ph-line); }
.ph-kpis i::after  { content: ""; position: absolute; left: 12%; bottom: 22%; width: 56%; height: 16%; border-radius: 4px; background: var(--ph-line-strong); }
.ph-kpis i:first-child::after { background: var(--green); opacity: .7; }
.ph-filters { display: flex; gap: 2.5%; }
.ph-filters i { width: 16%; height: 12px; border-radius: 6px; background: #fff; border: 1px solid var(--hairline); }
.ph-filters i:first-child { background: var(--green-soft); border-color: transparent; }
.ph-fields { display: grid; grid-template-columns: 1fr 1fr; gap: 3.5% 3%; }
.ph-fields i { height: 18px; border-radius: 8px; background: #fff; border: 1px solid var(--hairline); position: relative; }
.ph-fields i::before { content: ""; position: absolute; left: 4%; top: 32%; width: 36%; height: 36%; border-radius: 4px; background: var(--ph-line); }
.ph-table { display: grid; gap: 1px; background: var(--hairline); border: 1px solid var(--hairline); border-radius: 10px; overflow: hidden; }
.ph-row { height: 20px; background: #fff; position: relative; overflow: hidden; }
.ph-row--head { background: #fafbfa; }
.ph-row::before, .ph-row::after { content: ""; position: absolute; top: 40%; height: 22%; border-radius: 4px; background: var(--ph-line); }
.ph-row::before { left: 3%; width: 26%; }
.ph-row::after  { left: 40%; width: 50%; }
.ph-row:nth-child(3n)::after { width: 34%; }
.ph-row:nth-child(4n)::before { width: 18%; }
.ph-row:nth-child(5)::after, .ph-row:nth-child(7)::after { background: var(--green-tint); }

/* шиммер по скелетону — читается как загрузка */
.shot__ph::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(105deg, transparent 40%, rgba(255, 255, 255, 0.55) 50%, transparent 60%);
  transform: translateX(-100%);
  animation: shimmer 3.2s var(--ease-io) infinite;
  pointer-events: none;
}
@keyframes shimmer { to { transform: translateX(100%); } }

.shot__label {
  position: absolute; left: 50%; top: 50%; transform: translate(-50%, -50%);
  padding: 8px 14px; border-radius: 10px;
  background: rgba(10, 54, 18, 0.88); color: #fff;
  font-size: 12px; font-weight: 600; letter-spacing: 0.02em; white-space: nowrap;
  max-width: calc(100% - 24px); overflow: hidden; text-overflow: ellipsis;
  z-index: 1;
}
@media (max-width: 479.98px) {
  .shot__chrome { height: 30px; padding: 0 10px; }
  .shot__dot { width: 7px; height: 7px; }
  .shot__url { height: 18px; font-size: 10px; }
  .ph-row { height: 12px; }
  .ph-title { height: 8px; }
  .ph-btn { height: 9px; }
  .ph-fields i { height: 11px; }
  .ph-filters i { height: 8px; }
  .shot__label { font-size: 10px; padding: 6px 10px; }
}

/* ---------- «Всё под контролем» ---------- */
.features { margin-top: 56px; display: grid; gap: 72px; }
@media (min-width: 640px)  { .features { margin-top: 80px; gap: 104px; } }
@media (min-width: 1024px) { .features { gap: 140px; } }

.feature { display: grid; gap: 28px; align-items: center; }
.feature__text { display: grid; gap: 14px; max-width: 520px; }
.feature__index { font-size: 13px; font-weight: 700; color: var(--green); letter-spacing: 0.08em; font-variant-numeric: tabular-nums; text-transform: uppercase; }
.feature__desc { font-size: 17px; line-height: 1.55; color: var(--muted); text-wrap: pretty; }
@media (min-width: 640px) { .feature__desc { font-size: 18px; } }

.checks { display: grid; gap: 10px; margin-top: 8px; }
.checks li { display: flex; gap: 12px; align-items: flex-start; font-size: 15px; line-height: 1.4; font-weight: 500; color: rgba(21, 35, 24, 0.88); }
.checks li::before {
  content: "";
  flex-shrink: 0;
  width: 20px; height: 20px;
  border-radius: 6px;
  background: var(--green-soft) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23126321' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m6 12 4 4 8-8'/%3E%3C/svg%3E") center / 12px no-repeat;
  transform: scale(0);
  transition: transform .5s var(--ease);
  transition-delay: calc(var(--i, 0) * 90ms + 400ms);
}
[data-visible="true"] .checks li::before { transform: scale(1); }

@media (min-width: 1024px) {
  .feature { grid-template-columns: minmax(0, 5fr) minmax(0, 7fr); gap: 72px; }
  .feature--reverse { grid-template-columns: minmax(0, 7fr) minmax(0, 5fr); }
  .feature--reverse .feature__text { order: 2; }
  .feature--reverse .shot { order: 1; }
}
.feature .shot:hover .shot__frame { transform: translateY(-6px); box-shadow: var(--shadow-lift); }

/* ---------- Возможности: 6 групп ---------- */
.groups { margin-top: 56px; display: grid; gap: 16px; }
@media (min-width: 640px)  { .groups { margin-top: 80px; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 20px; } }
@media (min-width: 1024px) { .groups { grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 24px; } }
.group {
  position: relative;
  border-radius: var(--r-lg);
  border: 1px solid var(--hairline);
  background: var(--surface);
  padding: 28px 24px;
  display: grid; gap: 12px; align-content: start;
  transition: border-color .3s, box-shadow .4s ease-out, transform .5s var(--ease), background-color .3s;
}
.group:hover { background: #fff; border-color: rgba(18, 99, 33, 0.35); box-shadow: var(--shadow-lift); transform: translateY(-4px); }
@media (min-width: 640px) { .group { padding: 32px 28px; } }
@media (min-width: 1024px) { .group { padding: 36px 32px; min-height: 300px; } }
.group__icon {
  width: 48px; height: 48px; border-radius: 14px;
  background: #fff; border: 1px solid var(--hairline); color: var(--green);
  display: inline-flex; align-items: center; justify-content: center; margin-bottom: 8px;
  transition: background-color .3s, color .3s, border-color .3s, transform .5s var(--ease);
}
.group__icon svg { width: 24px; height: 24px; }
.group:hover .group__icon { background: var(--green); color: #fff; border-color: var(--green); transform: rotate(-6deg); }
.group h3 { font-size: 22px; line-height: 1.2; font-weight: 700; letter-spacing: -0.02em; }
.group p { font-size: 15.5px; line-height: 1.5; color: var(--muted); text-wrap: pretty; }
.tags { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 10px; }
.tags li {
  display: inline-flex; align-items: center; gap: 7px;
  padding: 7px 12px; border-radius: 10px;
  background: #fff; border: 1px solid var(--hairline);
  font-size: 13.5px; font-weight: 600; color: var(--ink);
  opacity: 0; transform: translateY(8px);
  transition: opacity .5s var(--ease), transform .5s var(--ease), border-color .25s, background-color .25s;
  transition-delay: calc(var(--i) * 60ms + 250ms);
}
.tags li::before { content: ""; width: 6px; height: 6px; border-radius: 50%; background: var(--green); }
.group[data-visible="true"] .tags li { opacity: 1; transform: none; }
.group:hover .tags li { background: var(--green-soft); border-color: transparent; }

/* ---------- Галерея ---------- */
.gallery { margin-top: 56px; }
@media (min-width: 640px) { .gallery { margin-top: 80px; } }

.gallery__tabs-wrap { margin: 0 calc(-1 * var(--gutter)); padding: 0 var(--gutter); overflow-x: auto; scrollbar-width: none; -webkit-overflow-scrolling: touch; }
.gallery__tabs-wrap::-webkit-scrollbar { display: none; }
.gallery__tabs { display: inline-flex; gap: 6px; padding: 6px; border-radius: 16px; background: #fff; border: 1px solid var(--hairline); white-space: nowrap; }
@media (min-width: 900px) { .gallery__tabs-wrap { display: flex; overflow: visible; margin: 0; padding: 0; } }

.tab {
  position: relative;
  height: 42px; padding: 0 18px;
  border-radius: 10px;
  font-size: 15px; font-weight: 600;
  color: var(--muted);
  overflow: hidden;
  transition: background-color .3s ease-out, color .3s ease-out;
}
.tab:hover { color: var(--ink); background: var(--surface); }
.tab.is-active { background: var(--green); color: #fff; }
.tab__progress {
  position: absolute; left: 0; bottom: 0;
  height: 3px; width: 100%;
  background: rgba(255, 255, 255, 0.5);
  transform: scaleX(0); transform-origin: left;
}
.gallery.is-auto .tab.is-active .tab__progress { animation: tab-progress 6s linear forwards; }
.gallery.is-auto.is-paused .tab.is-active .tab__progress { animation-play-state: paused; }
@keyframes tab-progress { from { transform: scaleX(0); } to { transform: scaleX(1); } }

.gallery__panels { margin-top: 28px; }
@media (min-width: 640px) { .gallery__panels { margin-top: 40px; } }
.gallery__panel { display: none; }
.gallery__panel.is-active { display: block; animation: panel-in .7s var(--ease) both; }
@keyframes panel-in {
  from { opacity: 0; transform: translateY(18px) scale(0.985); }
  to   { opacity: 1; transform: none; }
}
.gallery__caption { margin: 20px auto 0; text-align: center; font-size: 15px; line-height: 1.5; color: var(--muted); max-width: 62ch; text-wrap: pretty; }

/* ---------- Для какого бизнеса ---------- */
.audience { margin-top: 56px; display: grid; gap: 16px; }
@media (min-width: 640px)  { .audience { margin-top: 80px; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 20px; } }
.tilt { transform-style: preserve-3d; transition: transform .5s var(--ease), box-shadow .4s ease-out, border-color .3s; }
.tilt.is-tracking { transition: transform .1s ease-out, box-shadow .4s ease-out; }
.audience__card {
  position: relative;
  border-radius: var(--r-lg);
  border: 1px solid var(--hairline);
  background: #fff;
  padding: 28px 24px;
  display: grid; gap: 14px; align-content: start;
  overflow: hidden;
}
.audience__card::before {
  content: "";
  position: absolute; inset: 0;
  background: radial-gradient(600px circle at var(--mx, 50%) var(--my, 0%), var(--green-tint), transparent 45%);
  opacity: 0; transition: opacity .4s ease-out;
  pointer-events: none;
}
.audience__card:hover { border-color: rgba(18, 99, 33, 0.35); box-shadow: var(--shadow-lift); }
.audience__card:hover::before { opacity: 1; }
@media (min-width: 640px)  { .audience__card { padding: 36px 32px; } }
@media (min-width: 1024px) { .audience__card { padding: 44px 40px; min-height: 280px; } }
.audience__icon {
  width: 52px; height: 52px; border-radius: 14px;
  background: var(--green-soft); color: var(--green);
  display: inline-flex; align-items: center; justify-content: center; margin-bottom: 4px;
  transition: transform .5s var(--ease), background-color .3s, color .3s;
}
.audience__icon svg { width: 26px; height: 26px; }
.audience__card:hover .audience__icon { background: var(--green); color: #fff; transform: rotate(-6deg) scale(1.05); }
.audience__card h3 { font-size: 22px; line-height: 1.2; font-weight: 700; letter-spacing: -0.02em; text-wrap: balance; }
.audience__card p { font-size: 16px; line-height: 1.55; color: var(--muted); text-wrap: pretty; }
@media (min-width: 640px) { .audience__card h3 { font-size: 24px; } .audience__card p { font-size: 17px; } }

/* ---------- Что меняется ---------- */
.swap { margin: 56px auto 0; max-width: 980px; border-top: 1px solid var(--hairline); }
@media (min-width: 640px) { .swap { margin-top: 80px; } }
@media (min-width: 768px) { .swap__row { grid-template-columns: minmax(0, 4fr) minmax(0, 6fr); } }
.swap__row { display: grid; gap: 12px; padding: 28px 0; border-bottom: 1px solid var(--hairline); }
@media (min-width: 768px) { .swap__row { grid-template-columns: minmax(0, 5fr) minmax(0, 7fr); gap: 48px; padding: 40px 0; align-items: start; } }
.swap__before { font-size: 20px; line-height: 1.25; font-weight: 700; letter-spacing: -0.02em; color: var(--muted); text-wrap: balance; }
.swap__tag { display: block; font-size: 12px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--green); margin-bottom: 8px; }
.swap__strike { position: relative; display: inline; }
.swap__strike::after {
  content: "";
  position: absolute; left: 0; top: 55%;
  height: 2px; width: 100%;
  background: currentColor; opacity: .6;
  transform: scaleX(0); transform-origin: left;
  transition: transform .8s var(--ease) .35s;
}
[data-visible="true"] .swap__strike::after { transform: scaleX(1); }
.swap__after { display: grid; gap: 8px; }
.swap__after h3 { display: flex; align-items: center; gap: 12px; font-size: 21px; line-height: 1.2; font-weight: 700; letter-spacing: -0.02em; text-wrap: balance; }
.swap__after h3::before {
  content: "";
  width: 28px; height: 28px; flex-shrink: 0; border-radius: 8px;
  background: var(--green) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23fff' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M5 12h14M13 6l6 6-6 6'/%3E%3C/svg%3E") center / 14px no-repeat;
  transform: translateX(-10px) scale(0.6); opacity: 0;
  transition: transform .6s var(--ease) .5s, opacity .6s var(--ease) .5s;
}
[data-visible="true"] .swap__after h3::before { transform: none; opacity: 1; }
.swap__after p { font-size: 16px; line-height: 1.55; color: var(--muted); max-width: 52ch; text-wrap: pretty; }
@media (min-width: 640px) { .swap__before { font-size: 24px; } .swap__after h3 { font-size: 26px; } .swap__after p { font-size: 17px; } }

/* ---------- Как это работает ---------- */
.steps { margin-top: 56px; display: grid; position: relative; }
@media (min-width: 640px) { .steps { margin-top: 80px; } }
.step { position: relative; padding: 0 0 36px 60px; display: grid; gap: 8px; align-content: start; }
.step::before {
  content: "";
  position: absolute; left: 21px; top: 48px; bottom: 0; width: 2px;
  background: var(--green-tint);
  transform-origin: top; transform: scaleY(0);
  transition: transform .8s var(--ease);
  transition-delay: calc(var(--i) * 200ms + 300ms);
}
.step:last-child::before { display: none; }
.steps[data-visible="true"] .step::before { transform: scaleY(1); }
.step__num {
  position: absolute; left: 0; top: 0;
  width: 44px; height: 44px; border-radius: 12px;
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 15px; font-weight: 800;
  background: #fff; color: var(--green);
  border: 1.5px solid rgba(18, 99, 33, 0.3);
  transition: background-color .45s ease-out, color .45s ease-out, border-color .45s ease-out, transform .6s var(--ease);
  transition-delay: calc(var(--i) * 200ms + 150ms);
  font-variant-numeric: tabular-nums;
  transform: scale(0.8);
}
.steps[data-visible="true"] .step__num { background: var(--green); color: #fff; border-color: var(--green); transform: none; }
.step h3 { font-size: 19px; line-height: 1.25; font-weight: 700; letter-spacing: -0.018em; text-wrap: balance; }
.step p { font-size: 15px; line-height: 1.55; color: var(--muted); text-wrap: pretty; }
@media (min-width: 900px) {
  .steps { grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 32px; }
  .step { padding: 68px 0 0; }
  .step::before { left: 52px; right: -32px; top: 21px; bottom: auto; height: 2px; width: auto; transform-origin: left; transform: scaleX(0); }
  .steps[data-visible="true"] .step::before { transform: scaleX(1); }
  .step h3 { font-size: 21px; }
  .step p { font-size: 16px; }
}

/* ---------- Преимущества: bento ---------- */
.benefits { margin-top: 56px; display: grid; gap: 16px; }
@media (min-width: 640px)  { .benefits { margin-top: 80px; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 20px; } }
@media (min-width: 1024px) { .benefits { grid-template-columns: repeat(6, minmax(0, 1fr)); } }
.benefit {
  position: relative;
  border-radius: var(--r-lg);
  border: 1px solid var(--hairline);
  background: #fff;
  padding: 28px 24px;
  display: grid; gap: 10px; align-content: start;
  overflow: hidden;
  transition: border-color .3s, box-shadow .4s ease-out, transform .5s var(--ease);
}
.benefit:hover { border-color: rgba(18, 99, 33, 0.35); box-shadow: var(--shadow-soft); transform: translateY(-4px); }
@media (min-width: 640px)  { .benefit { padding: 32px; } }
@media (min-width: 1024px) { .benefit { grid-column: span 2; min-height: 230px; padding: 40px; } .benefit--wide { grid-column: span 3; } }
.benefit__icon { width: 44px; height: 44px; border-radius: 12px; background: var(--green-soft); color: var(--green); display: inline-flex; align-items: center; justify-content: center; margin-bottom: 8px; }
.benefit__icon svg { width: 22px; height: 22px; }
.benefit h3 { font-size: 21px; line-height: 1.2; font-weight: 700; letter-spacing: -0.02em; text-wrap: balance; }
.benefit p { font-size: 16px; line-height: 1.55; color: var(--muted); text-wrap: pretty; }
@media (min-width: 640px) { .benefit h3 { font-size: 24px; } .benefit p { font-size: 17px; } }
.benefit--dark { background: var(--green-deep); border-color: transparent; color: #fff; }
.benefit--dark:hover { border-color: transparent; }
.benefit--dark p { color: rgba(255, 255, 255, 0.72); }
.benefit--dark .benefit__icon { background: rgba(255, 255, 255, 0.12); color: var(--green-on-dark); }
.benefit--dark::after {
  content: "";
  position: absolute; right: -80px; bottom: -80px;
  width: 260px; height: 260px; border-radius: 50%;
  background: radial-gradient(circle, rgba(143, 220, 163, 0.35), transparent 70%);
  transition: transform .8s var(--ease);
}
.benefit--dark:hover::after { transform: scale(1.3); }

/* ---------- Showcase ---------- */
.showcase { overflow: hidden; }
.showcase__stage { margin-top: 56px; position: relative; display: grid; gap: 20px; }
@media (min-width: 640px)  { .showcase__stage { margin-top: 80px; } }
@media (min-width: 1024px) { .showcase__stage { --pad: 184px; padding: 0 var(--pad); } }
@media (min-width: 1280px) { .showcase__stage { --pad: 210px; } }
.showcase__shot { position: relative; z-index: 1; }

.callouts { display: flex; flex-wrap: wrap; gap: 8px; justify-content: center; }
.callout {
  display: inline-flex; align-items: center; gap: 10px;
  height: 38px; padding: 0 14px;
  border-radius: 10px;
  background: #fff; border: 1px solid var(--hairline);
  font-size: 14px; font-weight: 600; color: var(--ink);
  box-shadow: var(--shadow-soft);
  opacity: 0; transform: translateY(12px) scale(0.95);
  transition: opacity .6s var(--ease), transform .6s var(--ease), border-color .3s;
  transition-delay: calc(var(--i) * 110ms + 400ms);
}
.callout:hover { border-color: var(--green); }
.callout__dot { position: relative; width: 8px; height: 8px; border-radius: 50%; background: var(--green); flex-shrink: 0; }
.callout__dot::after { content: ""; position: absolute; inset: -6px; border-radius: 50%; border: 1.5px solid var(--green); opacity: 0; }
.showcase__stage[data-visible="true"] .callout { opacity: 1; transform: none; }
.showcase__stage[data-visible="true"] .callout__dot::after { animation: ping 1.6s var(--ease) 2; animation-delay: calc(var(--i) * 110ms + 900ms); }
@keyframes ping { 0% { transform: scale(0.4); opacity: .9; } 100% { transform: scale(1.4); opacity: 0; } }

@media (min-width: 1024px) {
  .callouts { display: contents; }
  .callout {
    --line: 28px;
    position: absolute; left: auto;
    right: calc(100% - var(--pad) + var(--line));
    top: var(--y); z-index: 2;
    height: 42px; padding: 0 16px; font-size: 15px; white-space: nowrap;
  }
  .callout::after { content: ""; position: absolute; top: 50%; left: 100%; width: var(--line); height: 1px; background: var(--hairline-strong); }
  .callout--right { right: auto; left: calc(100% - var(--pad) + var(--line)); flex-direction: row-reverse; }
  .callout--right::after { left: auto; right: 100%; }
}

/* ---------- CTA + форма ---------- */
.cta { padding-top: 0; }
.cta__card {
  position: relative;
  background: linear-gradient(135deg, var(--green-deep) 0%, var(--green-deep-2) 100%);
  color: #fff;
  border-radius: var(--r-lg);
  padding: 40px 24px;
  display: grid; gap: 40px;
  grid-template-columns: minmax(0, 1fr);
  overflow: hidden;
}
.cta__card::before {
  content: "";
  position: absolute; right: -15%; top: -40%;
  width: 60%; aspect-ratio: 1; border-radius: 50%;
  background: radial-gradient(circle, rgba(143, 220, 163, 0.26), transparent 65%);
  pointer-events: none;
}
.cta__card > * { position: relative; }
@media (min-width: 640px)  { .cta__card { padding: 56px 48px; } }
@media (min-width: 1024px) { .cta__card { grid-template-columns: minmax(0, 1fr) minmax(0, 480px); gap: 80px; padding: 80px 72px; align-items: start; } }
.cta__copy { display: grid; gap: 18px; }
.cta__copy .t-h2 { max-width: 14ch; }
.cta__eyebrow { color: var(--green-on-dark); }
.cta__eyebrow::before { background: var(--green-on-dark); }
.cta__lead { color: rgba(255, 255, 255, 0.72); max-width: 46ch; }
.cta__list { display: grid; gap: 12px; margin-top: 10px; }
.cta__list li { display: flex; gap: 12px; align-items: flex-start; font-size: 15px; line-height: 1.45; font-weight: 500; color: rgba(255, 255, 255, 0.88); }
.cta__list li::before {
  content: ""; flex-shrink: 0; width: 20px; height: 20px; margin-top: 1px; border-radius: 6px;
  background: rgba(255, 255, 255, 0.12) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%238fdca3' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m6 12 4 4 8-8'/%3E%3C/svg%3E") center / 12px no-repeat;
}

.form {
  position: relative;
  min-width: 0;
  display: grid; gap: 16px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--r-card);
  padding: 20px;
}
@media (min-width: 640px) { .form { padding: 28px; } }
.form__field { display: grid; gap: 6px; }
.form__label { font-size: 13px; font-weight: 600; color: rgba(255, 255, 255, 0.65); letter-spacing: 0.02em; }
.form__input {
  width: 100%; height: 50px; padding: 0 16px;
  border-radius: var(--r-btn);
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.07);
  color: #fff; font-size: 16px; /* не меньше 16px — иначе iOS зумит */
  transition: border-color .2s ease-out, background-color .2s ease-out, box-shadow .2s;
  -webkit-appearance: none; appearance: none;
}
.form__input::placeholder { color: rgba(255, 255, 255, 0.35); }
.form__input:hover { border-color: rgba(255, 255, 255, 0.26); }
.form__input:focus { outline: none; border-color: var(--green-on-dark); background: rgba(255, 255, 255, 0.1); box-shadow: 0 0 0 3px rgba(143, 220, 163, 0.18); }
.form__input--area { height: auto; padding: 14px 16px; resize: vertical; min-height: 92px; line-height: 1.45; }
.form__field.is-invalid .form__input { border-color: #ff8a80; }
.form__error { font-size: 13px; color: #ffab9f; display: none; }
.phone { display: grid; grid-template-columns: auto minmax(0, 1fr); gap: 8px; }
@media (max-width: 479.98px) { .phone { grid-template-columns: minmax(0, 1fr); } .phone__code { width: 100%; } }
.phone__code {
  width: auto; min-width: 104px; padding: 0 34px 0 14px;
  font-weight: 600; font-variant-numeric: tabular-nums;
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='rgba(255,255,255,0.7)' stroke-width='2.2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 12px center; background-size: 16px;
}
.phone__code option { color: var(--ink); background: #fff; }
.form__optional { font-weight: 500; color: rgba(255, 255, 255, 0.45); }
.form__field.is-invalid .form__error { display: block; }
.form__error--form { text-align: center; }
.form__error--form.is-visible { display: block; }
.form__hp { position: absolute; left: -10000px; top: auto; width: 1px; height: 1px; overflow: hidden; }
.form__submit { width: 100%; margin-top: 4px; white-space: normal; height: auto; min-height: 54px; padding: 12px 20px; text-align: center; }
.form__submit.is-busy { pointer-events: none; opacity: .7; }
.form__note { font-size: 12.5px; line-height: 1.5; color: rgba(255, 255, 255, 0.45); text-align: center; }

.form__success {
  position: absolute; inset: 0; border-radius: inherit;
  background: var(--green-deep);
  display: grid; align-content: center; justify-items: center; text-align: center; gap: 12px; padding: 24px;
  animation: panel-in .6s var(--ease) both;
}
.form__success[hidden] { display: none; }
.form__success-icon { width: 64px; height: 64px; border-radius: 18px; background: rgba(143, 220, 163, 0.16); color: var(--green-on-dark); display: inline-flex; align-items: center; justify-content: center; margin-bottom: 8px; }
.form__success-icon svg { width: 30px; height: 30px; }
.form__success-icon path { stroke-dasharray: 30; stroke-dashoffset: 30; animation: draw .7s var(--ease) .3s forwards; }
@keyframes draw { to { stroke-dashoffset: 0; } }
.form__success h3 { font-size: 24px; letter-spacing: -0.02em; font-weight: 700; }
.form__success p { font-size: 15px; line-height: 1.5; color: rgba(255, 255, 255, 0.65); max-width: 34ch; }

/* ---------- Footer ---------- */
.footer { padding: 48px 0 32px; border-top: 1px solid var(--hairline); }
@media (min-width: 640px) { .footer { padding: 64px 0 40px; } }
.footer__top { display: grid; gap: 32px; }
@media (min-width: 768px) { .footer__top { grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr) auto; gap: 40px; align-items: start; } }
.footer__brand { display: grid; gap: 14px; }
.footer__tagline { font-size: 15px; line-height: 1.55; color: var(--muted); max-width: 38ch; }
.footer__contacts { display: grid; gap: 8px; justify-items: start; }
.footer__heading { font-size: 12px; font-weight: 700; color: var(--muted); letter-spacing: 0.08em; text-transform: uppercase; margin-bottom: 4px; }
.footer__link { font-size: 15px; font-weight: 500; color: var(--ink); transition: color .2s ease-out; }
.footer__link:hover { color: var(--green); }
.footer__tg { display: inline-flex; align-items: center; gap: 8px; font-weight: 600; }
.footer__tg svg { width: 18px; height: 18px; color: var(--green); }
.footer__hint { font-size: 13px; color: var(--muted); }
.footer__cta .btn { width: 100%; }
@media (min-width: 768px) { .footer__cta .btn { width: auto; } }
.footer__bottom { margin-top: 40px; padding-top: 24px; border-top: 1px solid var(--hairline); display: flex; flex-wrap: wrap; gap: 8px 24px; justify-content: space-between; font-size: 13px; color: var(--muted); }
.footer__bottom .footer__link { font-size: 13px; color: var(--muted); }

/* ---------- Reduced motion ---------- */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal, .shot--hero, .split .w > span, .chip, .callout, .step__num, .step::before, .swap__strike::after,
  .swap__after h3::before, .checks li::before, .t-eyebrow::before { opacity: 1 !important; transform: none !important; transition: none !important; clip-path: none !important; }
  .shot__ph::after { animation: none; }
  *, *::before, *::after { animation-duration: .001ms !important; animation-iteration-count: 1 !important; transition-duration: .001ms !important; }
}
