@font-face {
  font-family: 'Golos Text';
  font-style: normal;
  font-weight: 400 900;
  font-display: swap;
  src: url('../fonts/golos-text-cyrillic.woff2') format('woff2');
  unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
}
@font-face {
  font-family: 'Golos Text';
  font-style: normal;
  font-weight: 400 900;
  font-display: swap;
  src: url('../fonts/golos-text-latin.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: 'Unbounded';
  font-style: normal;
  font-weight: 200 900;
  font-display: swap;
  src: url('../fonts/unbounded-cyrillic.woff2') format('woff2');
  unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
}
@font-face {
  font-family: 'Unbounded';
  font-style: normal;
  font-weight: 200 900;
  font-display: swap;
  src: url('../fonts/unbounded-latin.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

:root {
  --ink-0: #0b0e10;
  --ink-1: #101417;
  --ink-2: #161b1f;
  --line: rgba(233, 240, 244, 0.10);
  --line-strong: rgba(233, 240, 244, 0.20);
  --text: #eef1f2;
  --muted: #a3adb2;
  --muted-2: #7f8a90;
  --accent: #f58220;
  --accent-ink: #14100b;
  --radius: 14px; --radius-sm: 12px; --radius-lg: 20px; --radius-pill: 99px; --radius-focus: 4px;
  --wrap: 1240px;
  --gut: clamp(20px, 4vw, 44px);
  --sec-y: clamp(76px, 9vw, 148px);
  --fs-meta: 0.96rem; --fs-caption: 0.88rem; --fs-label: 0.78rem; --fs-subtitle: 1.12rem;
  --sans: 'Golos Text', system-ui, -apple-system, 'Segoe UI', sans-serif;
  --display: 'Unbounded', 'Golos Text', system-ui, sans-serif;
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
}

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

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

body {
  margin: 0;
  background: var(--ink-0);
  color: var(--text);
  font-family: var(--sans);
  font-size: 1.0625rem;
  line-height: 1.62;
  font-feature-settings: 'ss01' 1;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

body.is-locked { overflow: hidden; }

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

a { color: inherit; text-decoration-color: var(--line-strong); text-underline-offset: 0.22em; text-decoration-thickness: 1px; }
a:hover { text-decoration-color: var(--accent); }

h1, h2, h3 { font-family: var(--display); font-weight: 700; letter-spacing: -0.035em; line-height: 1.04; margin: 0; }
p { margin: 0; }

::selection { background: var(--accent); color: var(--accent-ink); }
:focus-visible { outline: 2px solid var(--accent); outline-offset: 3px; border-radius: var(--radius-focus); }

html { scrollbar-color: #2b3237 var(--ink-0); scrollbar-width: thin; }
::-webkit-scrollbar { width: 11px; height: 11px; }
::-webkit-scrollbar-track { background: var(--ink-0); }
::-webkit-scrollbar-thumb { background: #262d33; border: 3px solid var(--ink-0); border-radius: var(--radius-pill); }
::-webkit-scrollbar-thumb:hover { background: #333c43; }

.wrap { width: 100%; max-width: var(--wrap); margin-inline: auto; padding-inline: var(--gut); }

.skip {
  position: fixed; top: 10px; left: 10px; z-index: 100;
  transform: translateY(-160%);
  background: var(--accent); color: var(--accent-ink);
  padding: 12px 18px; border-radius: var(--radius-sm); font-weight: 600; text-decoration: none;
  transition: transform 0.25s var(--ease);
}
.skip:focus-visible { transform: translateY(0); }

/* ---------- header ---------- */

.hdr {
  position: sticky; top: 0; z-index: 60;
  background: color-mix(in srgb, var(--ink-0) 82%, transparent);
  backdrop-filter: blur(14px) saturate(140%);
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s var(--ease), background-color 0.3s var(--ease);
}
.hdr.is-stuck { border-bottom-color: var(--line); background: color-mix(in srgb, var(--ink-0) 94%, transparent); }

.hdr__in { display: flex; align-items: center; gap: 28px; min-height: 74px; }
.hdr__brand { display: flex; align-items: center; flex: 0 0 auto; }
.hdr__brand img { height: 34px; width: auto; }

.hdr__nav { display: flex; gap: 26px; margin-inline-start: auto; font-size: var(--fs-meta); color: var(--muted); }
.hdr__nav a { text-decoration: none; padding: 6px 0; position: relative; transition: color 0.2s var(--ease); }
.hdr__nav a::after {
  content: ''; position: absolute; left: 0; right: 100%; bottom: 0; height: 1px;
  background: var(--accent); transition: right 0.35s var(--ease);
}
.hdr__nav a:hover { color: var(--text); }
.hdr__nav a:hover::after { right: 0; }

.hdr__act { display: flex; align-items: center; gap: 18px; }
.tel { font-variant-numeric: tabular-nums; font-weight: 500; text-decoration: none; white-space: nowrap; }
.tel:hover { color: var(--accent); }

/* ---------- buttons ---------- */

.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  font: inherit; font-weight: 600; letter-spacing: -0.01em;
  padding: 15px 26px; border-radius: var(--radius-sm); border: 1px solid transparent;
  background: var(--accent); color: var(--accent-ink);
  cursor: pointer; text-decoration: none; white-space: nowrap;
  box-shadow: 0 8px 22px -14px rgba(245, 130, 32, 0.9);
  transition: background-color 0.2s var(--ease), transform 0.2s var(--ease), box-shadow 0.2s var(--ease);
}
.btn:hover { background: #ff9236; transform: translateY(-1px); box-shadow: 0 14px 26px -16px rgba(245, 130, 32, 0.95); }
.btn:active { transform: translateY(0); }

.btn--ghost {
  background: transparent; color: var(--text); border-color: var(--line-strong); box-shadow: none;
}
.btn--ghost:hover { background: var(--ink-2); border-color: var(--muted-2); transform: translateY(-1px); box-shadow: none; }

.btn--sm { padding: 11px 18px; font-size: var(--fs-meta); border-radius: var(--radius-sm); }

/* ---------- hero ---------- */

.hero { padding-block: clamp(44px, 6vw, 84px) clamp(56px, 7vw, 104px); }
.hero__in { display: grid; grid-template-columns: minmax(0, 1.14fr) minmax(0, 0.86fr); gap: clamp(32px, 5vw, 72px); align-items: stretch; }

.status {
  display: flex; align-items: center; gap: 9px; margin-top: 10px;
  font-size: var(--fs-caption); color: var(--muted-2);
  font-variant-numeric: tabular-nums;
}
.status__dot { width: 8px; height: 8px; border-radius: 50%; background: var(--muted-2); }
.status.is-open .status__dot { background: #58c08a; box-shadow: 0 0 0 4px rgba(88, 192, 138, 0.16); }
.status.is-open { color: #b8d9c7; }

.hero h1 { font-size: clamp(2.35rem, 4.6vw, 3.95rem); text-wrap: balance; }
.hero__sub {
  margin-top: 24px; max-width: 44ch; color: var(--muted);
  font-size: clamp(1.02rem, 1.35vw, 1.2rem);
}
.hero__cta { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 34px; }

.facts {
  display: grid; grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px; margin: 46px 0 0; background: var(--line);
  border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden;
}
.facts__i { background: var(--ink-1); padding: 18px 20px; }
.facts dt { font-size: var(--fs-label); letter-spacing: 0.06em; text-transform: uppercase; color: var(--muted-2); }
.facts dd { margin: 7px 0 0; font-size: var(--fs-meta); color: var(--text); }

.hero__media {
  margin: 0; height: 100%; border-radius: var(--radius-lg); overflow: hidden; position: relative;
  border: 1px solid var(--line); background: var(--ink-1);
  box-shadow: 0 40px 80px -50px rgba(0, 0, 0, 0.95);
}
.hero__media img { display: block; width: 100%; height: 100%; min-height: 460px; object-fit: cover; transform: scale(1.02); }
.hero__media::after {
  content: ''; position: absolute; inset: 0; pointer-events: none;
  background: linear-gradient(180deg, rgba(11, 14, 16, 0) 55%, rgba(11, 14, 16, 0.55) 100%);
}

/* ---------- section shell ---------- */

.sec { padding-block: var(--sec-y); border-top: 1px solid var(--line); }
.sec__head { max-width: 62ch; margin-bottom: clamp(38px, 4.5vw, 62px); }
.sec__head h2 { font-size: clamp(1.85rem, 3.3vw, 2.85rem); text-wrap: balance; }
.sec__head p { margin-top: 18px; color: var(--muted); max-width: 56ch; }

/* ---------- services ---------- */

.srv { list-style: none; margin: 0; padding: 0; border-top: 1px solid var(--line); }
.srv__row {
  display: grid; grid-template-columns: 56px minmax(0, 1fr) auto;
  gap: clamp(18px, 3vw, 40px); align-items: start;
  padding: clamp(24px, 2.6vw, 34px) 0;
  border-bottom: 1px solid var(--line);
  position: relative;
}
.srv__row::before {
  content: ''; position: absolute; left: 0; right: 100%; bottom: -1px; height: 1px;
  background: var(--accent); transition: right 0.5s var(--ease);
}
.srv__row:hover::before { right: 0; }
.srv__ico { color: var(--accent); }
.srv__ico svg { width: 40px; height: 40px; }
.srv__body { display: block; }
.srv__name { display: block; font-family: var(--display); font-weight: 700; font-size: clamp(1.15rem, 1.7vw, 1.45rem); letter-spacing: -0.03em; }
.srv__desc { display: block; margin-top: 10px; color: var(--muted); max-width: 62ch; }
.srv__ask {
  font: inherit; display: inline-flex; align-items: center; justify-content: center;
  width: 44px; height: 44px; color: var(--muted-2);
  background: transparent; border: 1px solid var(--line); border-radius: 50%;
  cursor: pointer;
  transition: border-color 0.2s var(--ease), color 0.2s var(--ease), transform 0.3s var(--ease);
}
.srv__ask svg { width: 18px; height: 18px; }
.srv__row:hover .srv__ask { border-color: var(--accent); color: var(--accent); transform: translateX(4px); }
.srv__ask:hover, .srv__ask:focus-visible { border-color: var(--accent); color: var(--accent); }
.srv__cta { margin-top: clamp(30px, 3.4vw, 44px); }

.also { margin-top: clamp(38px, 4vw, 58px); }
.also__t { font-size: var(--fs-meta); color: var(--muted); }
.also__l { list-style: none; display: flex; flex-wrap: wrap; gap: 10px; margin: 18px 0 0; padding: 0; }
.also__l li {
  border: 1px solid var(--line); border-radius: var(--radius-pill); padding: 9px 16px;
  font-size: var(--fs-meta); color: var(--muted); background: var(--ink-1);
}
.also__n { margin-top: 22px; color: var(--muted-2); font-size: var(--fs-meta); max-width: 64ch; }

/* ---------- why ---------- */

.why {
  display: grid; grid-template-columns: repeat(2, minmax(0, 1fr));
  column-gap: clamp(32px, 5vw, 88px);
}
.why__i { padding: clamp(22px, 2.2vw, 30px) 0 clamp(26px, 2.6vw, 34px); border-top: 1px solid var(--line); }
.why__i h3 { font-size: var(--fs-subtitle); letter-spacing: -0.03em; }
.why__i p { margin-top: 12px; color: var(--muted); font-size: var(--fs-meta); max-width: 46ch; }
.why__i:first-child { grid-column: 1 / -1; border-top: 1px solid var(--line-strong); }
.why__i:first-child h3 {
  font-family: var(--display); font-weight: 600;
  font-size: clamp(1.5rem, 2.8vw, 2.15rem); letter-spacing: -0.035em; line-height: 1.2;
}
.why__i:first-child p { font-size: clamp(1.02rem, 1.3vw, 1.16rem); max-width: 54ch; }

.quote { margin: clamp(40px, 4.5vw, 64px) 0 0; padding: 0; }
.quote blockquote { margin: 0; }
.quote p {
  font-family: var(--display); font-weight: 600; letter-spacing: -0.035em;
  font-size: clamp(1.35rem, 2.6vw, 2.1rem); line-height: 1.22; text-wrap: balance;
  max-width: 22ch;
}
.quote p::before { content: '«'; color: var(--accent); }
.quote p::after { content: '»'; color: var(--accent); }
.quote figcaption { margin-top: 20px; color: var(--muted-2); font-size: var(--fs-caption); }

/* ---------- works ---------- */

.works {
  list-style: none; margin: 0 auto; padding-inline: var(--gut);
  max-width: var(--wrap);
  display: grid; grid-template-columns: minmax(0, 1.55fr) minmax(0, 1fr);
  gap: clamp(16px, 1.8vw, 26px);
}
.works__i { margin: 0; }
.works__i:first-child { grid-row: span 2; display: flex; flex-direction: column; }
.works__i:first-child img { aspect-ratio: auto; flex: 1 1 auto; min-height: 0; }
.works__i:first-child p { font-size: var(--fs-meta); color: var(--muted); }
.works__i img {
  width: 100%; aspect-ratio: 16 / 10; object-fit: cover;
  border-radius: var(--radius); border: 1px solid var(--line); background: var(--ink-1);
}
.works__i p { margin-top: 14px; color: var(--muted-2); font-size: var(--fs-caption); }

/* ---------- reviews ---------- */

.rev { list-style: none; margin: 0; padding: 0; border-top: 1px solid var(--line-strong); }
.rev__i {
  display: grid; grid-template-columns: minmax(0, 1fr) 200px;
  gap: clamp(20px, 3vw, 48px); align-items: baseline;
  padding: clamp(24px, 2.6vw, 34px) 0; border-bottom: 1px solid var(--line);
}
.rev__i p { color: var(--text); font-size: clamp(1.02rem, 1.35vw, 1.16rem); max-width: 62ch; }
.rev__i cite { display: block; font-style: normal; color: var(--muted-2); font-size: var(--fs-caption); }
.rev__all { margin-top: clamp(26px, 3vw, 38px); }
.rev__all a { color: var(--accent); font-weight: 500; }

/* ---------- flow ---------- */

.flow { list-style: none; margin: 0; padding: 0; display: grid; grid-template-columns: repeat(5, minmax(0, 1fr)); gap: clamp(22px, 2.6vw, 40px); }
.flow__i { border-top: 1px solid var(--line-strong); padding-top: 20px; }
.flow__i > * + * { margin-top: 0; }
.flow__n {
  font-family: var(--display); font-weight: 700; font-size: var(--fs-meta);
  color: var(--accent); font-variant-numeric: tabular-nums;
}
.flow__i h3 { margin-top: 22px; font-size: var(--fs-subtitle); line-height: 1.25; letter-spacing: -0.03em; text-wrap: balance; }
.flow__i p { margin-top: 12px; color: var(--muted); font-size: var(--fs-meta); }

/* ---------- contacts ---------- */

.contacts { display: grid; grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr); gap: clamp(32px, 4vw, 64px); align-items: stretch; }
.contacts h2 { font-size: clamp(1.85rem, 3.3vw, 2.85rem); }

.cnt { margin: clamp(28px, 3vw, 40px) 0 0; display: grid; gap: 1px; background: var(--line); border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; }
.cnt__i { background: var(--ink-1); padding: 18px 22px; display: grid; grid-template-columns: 92px minmax(0, 1fr); gap: 18px; align-items: baseline; }
.cnt dt { font-size: var(--fs-label); letter-spacing: 0.06em; text-transform: uppercase; color: var(--muted-2); }
.cnt dd { margin: 0; font-size: var(--fs-meta); }
.cnt dd a { text-decoration: none; font-variant-numeric: tabular-nums; }
.cnt dd a:hover { color: var(--accent); }
.cnt__note { color: var(--muted-2); font-size: var(--fs-caption); }

.cnt__ch { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 22px; }
.ch {
  display: inline-flex; align-items: center; gap: 10px; text-decoration: none;
  border: 1px solid var(--line-strong); border-radius: var(--radius-sm); padding: 12px 18px;
  font-weight: 500; font-size: var(--fs-meta); background: var(--ink-1);
  transition: border-color 0.2s var(--ease), color 0.2s var(--ease), background-color 0.2s var(--ease);
}
.ch svg { width: 20px; height: 20px; }
.ch:hover { border-color: var(--accent); color: var(--accent); background: rgba(245, 130, 32, 0.06); }

.map {
  border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden;
  background: var(--ink-1); min-height: 420px; display: grid;
}
.map__facade { align-self: center; padding: clamp(28px, 3.4vw, 44px); }
.map__addr { font-family: var(--display); font-weight: 700; font-size: clamp(1.3rem, 2.2vw, 1.75rem); letter-spacing: -0.035em; }
.map__hint { margin-top: 12px; color: var(--muted); max-width: 46ch; font-size: var(--fs-meta); }
.map__act { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 22px; }
.map iframe { width: 100%; height: 100%; min-height: 420px; border: 0; display: block; }
.map.is-live { background: var(--ink-1); }
.contacts__map { display: flex; flex-direction: column; }
.contacts__map .map { flex: 1 1 auto; }
.map--live > div { position: relative; display: grid; height: 100%; min-height: 420px; }

/* ---------- footer ---------- */

.ftr { border-top: 1px solid var(--line); padding-block: clamp(52px, 6vw, 84px) 28px; background: var(--ink-1); }
.ftr__in { display: grid; grid-template-columns: 1.4fr repeat(3, 1fr); gap: clamp(28px, 3vw, 48px); }
.ftr__brand img { height: 40px; width: auto; }
.ftr__brand p { margin-top: 18px; color: var(--muted-2); font-size: var(--fs-meta); max-width: 34ch; }
.ftr__t { font-size: var(--fs-label); letter-spacing: 0.07em; text-transform: uppercase; color: var(--muted-2); margin-bottom: 16px; }
.ftr__col p { margin-top: 9px; font-size: var(--fs-meta); color: var(--muted); }
.ftr__pending { color: var(--muted-2); }
.ftr__col a { text-decoration: none; color: var(--text); }
.ftr__col a:hover { color: var(--accent); }
.ftr__col p.ftr__note { font-size: var(--fs-caption); color: var(--muted-2); margin-top: 16px; }
.ftr__btm {
  display: flex; justify-content: space-between; gap: 18px; flex-wrap: wrap;
  margin-top: clamp(38px, 4vw, 60px); padding-top: 24px; border-top: 1px solid var(--line);
  color: var(--muted-2); font-size: var(--fs-caption);
}

/* ---------- mobile action bar ---------- */

.bar {
  position: fixed; z-index: 55; left: 0; right: 0; bottom: 0;
  display: none; gap: 10px; align-items: center;
  padding: 12px var(--gut) calc(12px + env(safe-area-inset-bottom));
  background: color-mix(in srgb, var(--ink-0) 92%, transparent);
  backdrop-filter: blur(14px); border-top: 1px solid var(--line);
  transform: translateY(120%); transition: transform 0.4s var(--ease);
}
.bar.is-on { transform: translateY(0); }
.bar__btn { flex: 1; height: 52px; padding-block: 0; }
.bar__tel {
  display: inline-flex; align-items: center; justify-content: center;
  width: 52px; height: 52px; flex: 0 0 auto;
  border: 1px solid var(--line-strong); border-radius: var(--radius-sm); color: var(--text);
}
.bar__tel svg { width: 21px; height: 21px; }

/* ---------- sheet ---------- */

.sheet { position: fixed; inset: 0; z-index: 90; display: grid; }
.sheet[hidden] { display: none; }
.sheet__scrim { position: absolute; inset: 0; background: rgba(4, 6, 7, 0.72); backdrop-filter: blur(3px); animation: fade 0.25s var(--ease); }
.sheet__panel {
  position: relative; margin: auto; width: min(520px, calc(100% - 2 * var(--gut)));
  background: var(--ink-2); border: 1px solid var(--line-strong); border-radius: var(--radius-lg);
  padding: clamp(24px, 3vw, 34px);
  box-shadow: 0 50px 90px -40px rgba(0, 0, 0, 0.9);
  animation: rise 0.35s var(--ease);
  max-height: calc(100dvh - 48px); overflow-y: auto;
}
.sheet__head { display: flex; align-items: start; justify-content: space-between; gap: 18px; }
.sheet__head h2 { font-size: clamp(1.25rem, 2.4vw, 1.6rem); }
.sheet__x {
  flex: 0 0 auto; width: 38px; height: 38px; display: grid; place-items: center;
  background: transparent; border: 1px solid var(--line); border-radius: var(--radius-sm); color: var(--muted); cursor: pointer;
  transition: color 0.2s var(--ease), border-color 0.2s var(--ease);
}
.sheet__x svg { width: 18px; height: 18px; }
.sheet__x:hover { color: var(--text); border-color: var(--muted-2); }
.sheet__sub { margin-top: 14px; color: var(--muted); font-size: var(--fs-meta); }
.sheet__list { display: grid; gap: 10px; margin-top: 24px; }
.ch--lg { width: 100%; padding: 15px 18px; border-radius: var(--radius-sm); background: var(--ink-1); }
.ch--lg span { display: grid; gap: 3px; }
.ch--lg b { font-weight: 600; font-size: var(--fs-meta); letter-spacing: -0.01em; }
.ch--lg small { color: var(--muted-2); font-size: var(--fs-caption); }
.ch--lg:hover small { color: inherit; }
.sheet__note { margin-top: 22px; color: var(--muted-2); font-size: var(--fs-caption); }

@keyframes fade { from { opacity: 0; } to { opacity: 1; } }
@keyframes rise { from { opacity: 0; transform: translateY(16px) scale(0.985); } to { opacity: 1; transform: none; } }

/* ---------- reveal ---------- */

.reveal { opacity: 1; }
html.js .reveal { opacity: 0; transform: translateY(18px); }
html.js .reveal.is-in { opacity: 1; transform: none; transition: opacity 0.7s var(--ease), transform 0.7s var(--ease); }

/* ---------- responsive ---------- */

@media (max-width: 1080px) {
  .hdr__nav { display: none; }
  .hdr__in { justify-content: space-between; }
  .hdr__act { margin-inline-start: auto; }
  .why { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .flow { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .ftr__in { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 900px) {
  .hero__in { grid-template-columns: minmax(0, 1fr); }
  .hero__media { order: -1; }
  .hero__media { height: auto; }
  .hero__media img { height: auto; min-height: 0; aspect-ratio: 16 / 11; }
  .contacts { grid-template-columns: minmax(0, 1fr); }
  .works { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .works__i:first-child { grid-column: span 2; grid-row: auto; display: block; }
  .works__i:first-child img { aspect-ratio: 16 / 9; flex: none; }
}

@media (max-width: 720px) {
  html { scroll-padding-top: 84px; }
  .hdr__act .tel { display: none; }
  .hdr__in { min-height: 66px; }
  .hero { padding-bottom: 24px; }
  .facts { grid-template-columns: minmax(0, 1fr); }
  .srv__row { grid-template-columns: 40px minmax(0, 1fr); row-gap: 16px; }
  .srv__ico svg { width: 32px; height: 32px; }
  .srv__row { grid-template-columns: 40px minmax(0, 1fr) 44px; }
  .srv__ask { grid-column: 3; grid-row: 1; align-self: center; }
  .why { grid-template-columns: minmax(0, 1fr); }
  .works { grid-template-columns: minmax(0, 1fr); }
  .works__i:first-child { grid-column: auto; grid-row: auto; display: block; }
  .works__i:first-child img { aspect-ratio: 4 / 3; }
  .rev__i { grid-template-columns: minmax(0, 1fr); gap: 12px; }
  .flow { grid-template-columns: minmax(0, 1fr); }
  .cnt__i { grid-template-columns: minmax(0, 1fr); gap: 6px; }
  .ftr__in { grid-template-columns: 1fr; }
  .bar { display: flex; }
  body { padding-bottom: 82px; }
  .sheet__panel { margin-bottom: 0; border-bottom-left-radius: 0; border-bottom-right-radius: 0; width: 100%; align-self: end; }
}

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

