/* Documan landing v2. Язык маркетингового веба Apple, mobile-first, карточные блоки. */

:root {
  --font-ui: -apple-system, BlinkMacSystemFont, "SF Pro Text", "Inter", "Helvetica Neue", sans-serif;
  --font-brand: "Quicksand", var(--font-ui);
  --font-mono: "SF Mono", ui-monospace, Menlo, monospace;
  --tracking-body: -0.022em;
  --tracking-title: -0.03em;

  --bg: #F5F5F7;
  --surface: #FFFFFF;
  --label: #1D1D1F;
  --label-2: #6E6E73;
  --label-3: rgba(60, 60, 67, 0.30);
  --separator: rgba(60, 60, 67, 0.22);
  --fill-3: rgba(118, 118, 128, 0.12);
  --fill-4: rgba(116, 116, 128, 0.08);

  --accent: #1D1D1F;
  --link: #0066CC;
  --positive: #34C759;
  --warning: #FF9500;
  --destructive: #FF3B30;

  --r-card: 22px;
  --r-tile: 26px;
  --r-big: 32px;
  --btn-h: 50px;
  --margin: 18px;
  --wrap: 1040px;

  --dur-fast: 150ms;
  --dur-base: 300ms;
  --ease-out-ios: cubic-bezier(0.32, 0.72, 0, 1);

  --nav-h: 56px;
  --dock-h: 84px;
}

/* ---------- база ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
}
body {
  margin: 0;
  background: var(--surface);
  color: var(--label);
  font-family: var(--font-ui);
  font-size: 17px;
  line-height: 1.47;
  letter-spacing: var(--tracking-body);
  font-optical-sizing: auto;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  padding-bottom: calc(var(--dock-h) + env(safe-area-inset-bottom));
}
img { max-width: 100%; height: auto; display: block; }
[hidden] { display: none !important; }
a { color: var(--link); text-decoration: none; }
b, strong { font-weight: 600; }
ul, ol, dl, p, h1, h2, h3, figure, fieldset { margin: 0; padding: 0; }
ul, ol { list-style: none; }
fieldset { border: 0; min-width: 0; }
button { font: inherit; color: inherit; letter-spacing: inherit; }

.wrap { width: 100%; max-width: var(--wrap); margin: 0 auto; padding: 0 var(--margin); }
.wrap--form { max-width: 640px; }
.center { display: flex; justify-content: center; margin-top: 28px; }
.center--left { justify-content: flex-start; }

/* ---------- типографика ---------- */
.eyebrow {
  font-size: 12px; line-height: 1.33; font-weight: 600; letter-spacing: 0.08em;
  text-transform: uppercase; color: var(--label-2); margin-bottom: 12px;
}
.eyebrow--warn { color: var(--warning); }
.section--dark .eyebrow { color: rgba(235, 235, 245, 0.6); }

.hero__title {
  font-size: clamp(38px, 10.5vw, 76px); line-height: 1.0; font-weight: 700;
  letter-spacing: var(--tracking-title); margin: 18px 0 18px; text-wrap: balance;
}
.h2 {
  font-size: clamp(30px, 7.5vw, 50px); line-height: 1.04; font-weight: 700;
  letter-spacing: var(--tracking-title); margin-bottom: 14px; max-width: 18ch; text-wrap: balance;
}
.h3 { font-size: 22px; line-height: 1.15; font-weight: 700; letter-spacing: -0.02em; margin: 40px 0 12px; }
.intro { font-size: 18px; line-height: 1.4; letter-spacing: -0.01em; color: var(--label-2); max-width: 58ch; margin-bottom: 26px; }
.lead { font-size: 18px; line-height: 1.4; letter-spacing: -0.01em; color: var(--label); max-width: 50ch; margin-bottom: 24px; }
.body { max-width: 58ch; }
.after { color: var(--label-2); max-width: 58ch; margin-top: 26px; font-size: 16px; line-height: 1.45; }
.section--dark .intro { color: rgba(235, 235, 245, 0.72); }
.section--dark .body { color: #fff; }
.link { color: var(--link); }

/* ---------- кнопки ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  height: var(--btn-h); padding: 0 22px; border-radius: 999px; border: 0;
  background: var(--fill-3); color: var(--label); font-size: 16px; font-weight: 600;
  letter-spacing: -0.01em; cursor: pointer; text-decoration: none;
  transition: transform 100ms var(--ease-out-ios), background var(--dur-fast);
  -webkit-tap-highlight-color: transparent; user-select: none; white-space: nowrap;
}
.btn:active { transform: scale(0.96); }
.btn--primary { background: var(--accent); color: #fff; }
.btn--primary:hover { background: #2c2c2e; }
.btn--tinted { background: var(--fill-3); color: var(--label); }
.btn--tinted:hover { background: rgba(118, 118, 128, 0.18); }
.btn--light { background: #fff; color: var(--label); }
.btn--light:hover { background: #ededf0; }
.btn--lg { height: 56px; padding: 0 22px; font-size: 16px; }
@media (max-width: 400px) { .btn--lg { font-size: 15px; padding: 0 16px; gap: 8px; } .btn--lg .ico-tg { width: 18px; height: 18px; } }
.btn--sm { height: 38px; padding: 0 16px; font-size: 15px; gap: 8px; }
.btn[disabled] { opacity: 0.5; pointer-events: none; }
.ico-tg { width: 20px; height: 20px; fill: currentColor; flex: none; }
.btn--sm .ico-tg { width: 18px; height: 18px; }

/* ---------- шапка (стекло) ---------- */
.nav {
  position: sticky; top: 0; z-index: 30; height: var(--nav-h);
  background: rgba(255, 255, 255, 0.72);
  -webkit-backdrop-filter: blur(24px) saturate(180%);
  backdrop-filter: blur(24px) saturate(180%);
  box-shadow: inset 0 0.5px 0 rgba(255, 255, 255, 0.65), 0 0 0 0.5px rgba(0, 0, 0, 0.06);
}
@media (prefers-reduced-transparency: reduce) { .nav { background: #fff; } }
.nav__in { height: 100%; display: flex; align-items: center; justify-content: space-between; gap: 12px; }
.brand { display: inline-flex; align-items: center; gap: 10px; color: var(--label); }
.brand__mark { width: 22px; height: 32px; }
.brand__word {
  font-family: var(--font-brand); font-weight: 700; font-size: 22px; letter-spacing: -0.01em; line-height: 1;
  display: inline-flex; flex-direction: column;
}
.brand__word sup { font-size: 9px; font-weight: 600; margin-left: 2px; position: relative; top: -8px; }
.brand__word small { font-weight: 600; font-size: 11px; letter-spacing: 0.02em; color: var(--label-2); margin-top: 2px; }
.brand--footer .brand__mark { width: 28px; height: 40px; }
.brand--footer .brand__word { font-size: 26px; }

/* ---------- секции ---------- */
.section { padding: 64px 0; }
.section--gray { background: var(--bg); }
.section--dark { background: #000; color: #fff; }
.section--dark .h2 { color: #fff; }

/* ---------- hero ---------- */
.hero { padding: 28px 0 40px; background: var(--surface); }
.hero__grid { display: grid; gap: 28px; }
.hero__grid > * { min-width: 0; }
.pill {
  display: inline-flex; align-items: center; gap: 8px; min-height: 32px; padding: 6px 14px 6px 10px;
  border-radius: 999px; background: var(--fill-4); font-size: 13px; font-weight: 500; color: var(--label-2);
  letter-spacing: -0.005em; line-height: 1.25;
}
.pill__dot { flex: none; }
.pill__dot { width: 8px; height: 8px; border-radius: 50%; background: var(--positive); box-shadow: 0 0 0 3px rgba(52, 199, 89, 0.18); }
.chips { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 22px; }
.chips li {
  height: 34px; padding: 0 14px; border-radius: 999px; display: inline-flex; align-items: center;
  background: var(--label); color: #fff; font-size: 14px; font-weight: 600; letter-spacing: -0.01em;
}
.chips li:nth-child(even) { background: var(--fill-3); color: var(--label); }
.hero__actions { display: flex; flex-direction: column; gap: 12px; }
.hero__actions .btn { width: 100%; }
.hero__note { font-size: 14px; line-height: 1.4; color: var(--label-2); margin-top: 14px; max-width: 44ch; }
.hero__art {
  position: relative; margin: 6px 0 0; border-radius: var(--r-big); background: var(--bg);
  aspect-ratio: 1 / 0.86; display: flex; align-items: center; justify-content: center; overflow: hidden;
}
.hero__art img { width: 86%; height: auto; }

.stats {
  margin-top: 26px; display: flex; gap: 10px; overflow-x: auto; scroll-snap-type: x mandatory;
  padding: 2px 0 6px; scrollbar-width: none;
}
.stats::-webkit-scrollbar { display: none; }
.stats li {
  flex: 0 0 150px; scroll-snap-align: start; padding: 14px 16px; border-radius: 18px; background: var(--bg);
}
.stats b { display: block; font-size: 21px; line-height: 1.1; font-weight: 700; letter-spacing: -0.02em; }
.stats span { display: block; font-size: 13px; line-height: 1.3; color: var(--label-2); margin-top: 5px; }

/* ---------- плитки «С чего начнём» ---------- */
.tiles { display: grid; gap: 12px; }
.tile {
  display: grid; grid-template-columns: 84px 1fr; grid-template-rows: auto auto; column-gap: 16px; row-gap: 3px;
  align-items: center; text-align: left; width: 100%;
  padding: 16px 18px 16px 14px; border: 0; border-radius: var(--r-tile); background: var(--bg); cursor: pointer;
  transition: transform 100ms var(--ease-out-ios), background var(--dur-fast);
  -webkit-tap-highlight-color: transparent;
}
.tile:active { transform: scale(0.98); }
.tile:hover { background: #ededf0; }
.tile__art { grid-row: 1 / 3; width: 84px; height: 84px; object-fit: contain; }
.tile__t { font-size: 17px; font-weight: 700; line-height: 1.2; letter-spacing: -0.015em; }
.tile__d { font-size: 14px; line-height: 1.35; color: var(--label-2); }

/* ---------- проблема: список с иконками ---------- */
.issues { display: grid; gap: 10px; }
.issues li {
  display: grid; grid-template-columns: 52px 1fr; gap: 14px; align-items: center;
  padding: 14px 16px; border-radius: 20px; background: var(--surface);
}
.issues img { width: 52px; height: 52px; object-fit: contain; }
.issues p { font-size: 15px; line-height: 1.4; }

/* ---------- поворот ---------- */
.turn { display: grid; gap: 22px; }
.turn__art { width: 120px; height: 120px; object-fit: contain; }

/* ---------- списки ---------- */
.list li { padding: 12px 0 12px 20px; position: relative; max-width: 60ch; font-size: 16px; line-height: 1.45; border-top: 0.5px solid var(--separator); }
.list li:first-child { border-top: 0; }
.list li::before { content: ""; position: absolute; left: 3px; top: 21px; width: 6px; height: 6px; border-radius: 50%; background: var(--label); }

/* segmented */
.seg { display: inline-flex; gap: 2px; padding: 3px; border-radius: 999px; background: var(--fill-3); max-width: 100%; margin-bottom: 20px; }
.seg__btn {
  flex: 1 1 0; min-width: 0; height: 38px; padding: 0 16px; border: 0; border-radius: 999px; background: transparent;
  font-size: 14px; font-weight: 600; color: var(--label); cursor: pointer; white-space: nowrap;
  transition: background var(--dur-fast), box-shadow var(--dur-fast);
  -webkit-tap-highlight-color: transparent; display: inline-flex; align-items: center; justify-content: center;
}
.seg__btn.is-on, .seg__btn:has(input:checked) { background: #fff; box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 0 0 0.5px rgba(0, 0, 0, 0.04); }
.seg--form { display: flex; margin-bottom: 0; }
.seg--form .seg__btn { padding: 0 6px; font-size: 13px; letter-spacing: -0.01em; }
@media (min-width: 700px) { .seg--form .seg__btn { padding: 0 14px; font-size: 14px; } }
.seg__btn input { position: absolute; opacity: 0; width: 0; height: 0; }

.panes { position: relative; }
.pane { transition: opacity var(--dur-base) var(--ease-out-ios); }
.pane.is-fading { opacity: 0; }

/* карточки шагов */
.cards { display: grid; gap: 10px; }
.card {
  display: grid; grid-template-columns: 60px 1fr; gap: 14px; align-items: start;
  padding: 16px; border-radius: var(--r-card); background: var(--bg);
}
.card img { width: 60px; height: 60px; object-fit: contain; margin-top: 2px; }
.card i { display: block; font-style: normal; font-family: var(--font-mono); font-size: 12px; font-weight: 600; color: var(--label-3); letter-spacing: 0.04em; margin-bottom: 4px; }
.card b { display: block; font-size: 17px; line-height: 1.22; font-weight: 700; letter-spacing: -0.015em; margin-bottom: 5px; }
.card p { font-size: 15px; line-height: 1.42; color: var(--label-2); }

/* сравнение «сами / с Documan» */
.cmp { border-radius: var(--r-card); background: var(--surface); padding: 6px 16px 8px; overflow: hidden; }
.cmp__head, .cmp__row { display: grid; grid-template-columns: 72px 1fr 1fr; gap: 10px; align-items: start; }
.cmp__head { padding: 12px 0 10px; border-bottom: 0.5px solid var(--separator); align-items: center; }
.cmp__self { font-size: 12px; font-weight: 600; letter-spacing: 0.06em; text-transform: uppercase; color: var(--label-2); }
.cmp__us {
  justify-self: start; display: inline-flex; align-items: center; height: 26px; padding: 0 10px; border-radius: 999px;
  background: var(--label); color: #fff; font-size: 12px; font-weight: 600; letter-spacing: 0.02em; white-space: nowrap;
}
.cmp__row { padding: 12px 0; border-top: 0.5px solid var(--separator); font-size: 14px; line-height: 1.35; }
.cmp__row:first-of-type { border-top: 0; }
.cmp__l { font-weight: 700; letter-spacing: -0.01em; }
.cmp__a { color: var(--label-2); padding-left: 16px; position: relative; }
.cmp__b { color: var(--label); padding-left: 18px; position: relative; font-weight: 500; }
.cmp__a::before { content: "✕"; position: absolute; left: 0; top: 0; font-size: 11px; color: var(--label-3); }
.cmp__b::before { content: "✓"; position: absolute; left: 0; top: 0; font-size: 12px; font-weight: 700; color: var(--positive); }
.cmp--law .cmp__us { background: var(--warning); }
.cmp--law .cmp__a::before { content: "•"; font-size: 14px; top: -1px; }
.cmp--law .cmp__b::before { content: "→"; color: var(--warning); }
.cmp--law .cmp__head, .cmp--law .cmp__row { grid-template-columns: 92px 1fr 1fr; }

/* таймлайн «как работаем» */
.timeline { position: relative; display: grid; gap: 6px; }
.timeline li { display: grid; grid-template-columns: 56px 1fr; gap: 14px; align-items: start; position: relative; padding-bottom: 14px; }
.timeline li::before { content: ""; position: absolute; left: 27px; top: 60px; bottom: -4px; width: 0.5px; background: var(--separator); }
.timeline li:last-child::before { display: none; }
.timeline img { width: 56px; height: 56px; object-fit: contain; border-radius: 18px; background: var(--bg); padding: 6px; }
.timeline b { display: block; font-size: 17px; line-height: 1.22; font-weight: 700; letter-spacing: -0.015em; margin: 8px 0 5px; }
.timeline p { font-size: 15px; line-height: 1.42; color: var(--label-2); max-width: 52ch; }

/* 1 ноября */
.law { position: relative; }
.law__art { width: 76px; height: 76px; object-fit: contain; margin-bottom: 14px; }

/* команда, кейс, офис */
.team { display: grid; gap: 8px; margin-bottom: 14px; }
.team li { display: flex; flex-direction: column; padding: 12px 16px; border-radius: 18px; background: var(--bg); }
.team b { font-size: 16px; font-weight: 700; letter-spacing: -0.01em; }
.team span { font-size: 14px; color: var(--label-2); margin-top: 2px; }
.case { display: grid; grid-template-columns: 56px 1fr; gap: 14px; align-items: start; margin-top: 10px; padding: 18px 16px; border-radius: var(--r-card); background: var(--bg); }
.case img { width: 56px; height: 56px; object-fit: contain; }
.case .eyebrow { margin-bottom: 6px; }
.case p:last-child { font-size: 15px; line-height: 1.45; }
.office { display: grid; grid-template-columns: 56px 1fr; gap: 14px; align-items: center; margin-top: 10px; padding: 14px 16px; border-radius: 18px; background: var(--bg); }
.office img { width: 56px; height: 56px; object-fit: contain; }
.office b { display: block; font-size: 16px; font-weight: 700; letter-spacing: -0.01em; }
.office span { display: block; font-size: 14px; color: var(--label-2); margin-top: 2px; }

/* faq */
.faq { border-radius: var(--r-card); background: var(--surface); padding: 4px 16px; }
.faq details { border-top: 0.5px solid var(--separator); }
.faq details:first-child { border-top: 0; }
.faq summary {
  list-style: none; cursor: pointer; padding: 15px 34px 15px 0; font-size: 16px; font-weight: 600; line-height: 1.3;
  letter-spacing: -0.01em; position: relative; -webkit-tap-highlight-color: transparent;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: ""; position: absolute; right: 6px; top: 20px; width: 8px; height: 8px;
  border-right: 1.5px solid var(--label-2); border-bottom: 1.5px solid var(--label-2);
  transform: rotate(45deg); transition: transform var(--dur-fast) var(--ease-out-ios);
}
.faq details[open] summary::after { transform: rotate(-135deg); top: 24px; }
.faq details p { padding: 0 0 16px; color: var(--label-2); font-size: 15px; line-height: 1.45; max-width: 58ch; }

/* telegram-блок */
.tgcta { display: grid; gap: 18px; }
.tgcta__art { width: 110px; height: 110px; object-fit: contain; }
.tgcta .btn { width: 100%; margin-top: 4px; }
.tgcta__note { font-size: 14px; color: rgba(235, 235, 245, 0.6); margin-top: 14px; }

/* ---------- форма ---------- */
.card--form { border-radius: var(--r-card); background: var(--surface); padding: 20px 16px; }
.form { display: flex; flex-direction: column; gap: 16px; }
.field { display: block; }
.field__l { display: block; font-size: 13px; font-weight: 600; color: var(--label-2); margin-bottom: 8px; letter-spacing: 0; }
.input {
  width: 100%; height: 52px; padding: 0 18px; border-radius: 999px; border: 0.5px solid rgba(60, 60, 67, 0.18);
  background: var(--bg); color: var(--label); font: inherit; font-size: 17px; letter-spacing: var(--tracking-body);
  outline: none; transition: box-shadow var(--dur-fast), border-color var(--dur-fast), background var(--dur-fast);
  -webkit-appearance: none; appearance: none;
}
.input::placeholder { color: var(--label-3); }
.input:focus { border-color: var(--label); background: #fff; box-shadow: 0 0 0 4px rgba(29, 29, 31, 0.08); }
.input--area { height: auto; min-height: 96px; padding: 14px 18px; border-radius: 18px; resize: vertical; line-height: 1.4; }
.input.is-bad { border-color: var(--destructive); animation: shake 0.4s var(--ease-out-ios); }
@keyframes shake { 20%, 60% { transform: translateX(-4px); } 40%, 80% { transform: translateX(4px); } }

.fchips { display: flex; flex-wrap: wrap; gap: 8px; }
.fchip { position: relative; }
.fchip input { position: absolute; opacity: 0; width: 0; height: 0; }
.fchip span {
  display: inline-flex; align-items: center; height: 40px; padding: 0 16px; border-radius: 999px;
  background: var(--fill-3); color: var(--label); font-size: 15px; font-weight: 500; cursor: pointer;
  transition: background var(--dur-fast), color var(--dur-fast), transform 100ms var(--ease-out-ios);
  -webkit-tap-highlight-color: transparent; user-select: none;
}
.fchip span:active { transform: scale(0.96); }
.fchip input:checked + span { background: var(--label); color: #fff; }
.fchip input:focus-visible + span { box-shadow: 0 0 0 4px rgba(29, 29, 31, 0.12); }

.hp { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }
.form__err { color: var(--destructive); font-size: 15px; }
.form .btn { width: 100%; margin-top: 4px; }
.form__note { font-size: 13px; line-height: 1.4; color: var(--label-2); }
.form__ok img { width: 64px; height: 64px; object-fit: contain; margin-bottom: 12px; }
.form__ok-t { font-size: 24px; font-weight: 700; letter-spacing: -0.02em; margin-bottom: 8px; }
.form__ok p:last-child { color: var(--label-2); font-size: 15px; line-height: 1.45; }

/* ---------- подвал ---------- */
.footer { padding: 40px 0 32px; background: var(--surface); color: var(--label-2); font-size: 15px; line-height: 1.45; border-top: 0.5px solid var(--separator); }
.footer__in { display: flex; flex-direction: column; gap: 14px; }
.footer__fine { font-size: 12px; line-height: 1.4; max-width: 62ch; }

/* ---------- плавающая кнопка ---------- */
.dock {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 25;
  padding: 12px var(--margin) calc(12px + env(safe-area-inset-bottom));
  background: rgba(255, 255, 255, 0.72);
  -webkit-backdrop-filter: blur(24px) saturate(180%);
  backdrop-filter: blur(24px) saturate(180%);
  box-shadow: inset 0 0.5px 0 rgba(255, 255, 255, 0.65), 0 0 0 0.5px rgba(0, 0, 0, 0.06);
  transition: transform var(--dur-base) var(--ease-out-ios), opacity var(--dur-base);
}
@media (prefers-reduced-transparency: reduce) { .dock { background: #fff; } }
.dock .btn { width: 100%; }
.dock.is-hidden { transform: translateY(110%); opacity: 0; pointer-events: none; }

/* ---------- планшет ---------- */
@media (min-width: 700px) {
  :root { --margin: 24px; }
  .hero__actions { flex-direction: row; align-items: center; }
  .hero__actions .btn { width: auto; }
  .tiles { grid-template-columns: 1fr 1fr; }
  .stats { overflow: visible; }
  .stats li { flex: 1 1 0; }
  .issues { grid-template-columns: 1fr 1fr; }
  .cards { grid-template-columns: 1fr 1fr; }
  .cmp__head, .cmp__row { grid-template-columns: 110px 1fr 1fr; }
  .cmp--law .cmp__head, .cmp--law .cmp__row { grid-template-columns: 130px 1fr 1fr; }
  .team { grid-template-columns: repeat(3, 1fr); }
  .tgcta { grid-template-columns: 140px 1fr; align-items: center; gap: 32px; }
  .tgcta .btn { width: auto; }
  .turn { grid-template-columns: 140px 1fr; align-items: start; gap: 32px; }
  .turn__art { width: 140px; height: 140px; }
}

/* ---------- десктоп ---------- */
@media (min-width: 960px) {
  body { padding-bottom: 0; }
  .dock { display: none; }
  .section { padding: 96px 0; }
  .hero { padding: 64px 0 56px; }
  .hero__grid { grid-template-columns: 1.1fr 0.9fr; align-items: center; gap: 48px; }
  .hero__title { margin: 22px 0 22px; max-width: 12ch; }
  .hero__art { margin: 0; aspect-ratio: 1 / 1; max-width: 520px; justify-self: end; width: 100%; }
  .hero__art img { width: 82%; }
  .tiles { grid-template-columns: repeat(4, 1fr); gap: 16px; }
  .tile { grid-template-columns: 1fr; grid-template-rows: auto auto auto; row-gap: 6px; padding: 22px; align-content: start; }
  .tile__art { grid-row: auto; width: 110px; height: 110px; margin-bottom: 10px; }
  .tile__t { font-size: 19px; }
  .issues { grid-template-columns: repeat(3, 1fr); }
  .issues li { grid-template-columns: 1fr; align-content: start; padding: 20px; }
  .issues img { width: 64px; height: 64px; margin-bottom: 10px; }
  .cards { grid-template-columns: repeat(2, 1fr); gap: 14px; }
  .card { padding: 22px; }
  .cmp, .faq, .timeline, .law, .list { max-width: 760px; }
  .cmp { padding: 8px 24px 10px; }
  .cmp__row { font-size: 15px; }
  .timeline li { grid-template-columns: 64px 1fr; gap: 18px; }
  .timeline img { width: 64px; height: 64px; }
  .timeline li::before { left: 31px; top: 68px; }
  .case, .office { max-width: 760px; }
  .card--form { padding: 28px; }
}
