/* Лендинг «Ясный учёт». Тёмная тема, жёлтый акцент. */
:root {
  --bg: #1e1e1f;
  --card: #29292b;
  --card-line: rgba(255, 255, 255, .07);
  --ink: #ffffff;
  --soft: #bbbbbb;
  --dim: #8a8a8a;
  --foot: #7d7d7d;
  --line-2: #454545;
  --acc: #ffc933;          /* жёлтый акцент */
  --acc-deep: #e8ad00;     /* жёлтый на белом фоне (кольца, рамки в форме) */
  --acc-ink: #1d1814;      /* текст на жёлтом */
  --acc-soft: rgba(255, 201, 51, .12);
  --acc-glow: rgba(255, 201, 51, .22);
  --font: "Onest", Arial, sans-serif;
  --gut: clamp(20px, 11vw, 44px);
  --r: 28px;
}

*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font: 400 16px/1.4 var(--font);
  -webkit-font-smoothing: antialiased;
}
main { overflow-x: hidden; overflow-x: clip; }
body.is-locked { overflow: hidden; }
img, svg { display: block; max-width: none; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; cursor: pointer; background: none; border: 0; padding: 0; }
p, h1, h2, ol, ul, fieldset { margin: 0; padding: 0; }
ol, ul { list-style: none; }
em { font-style: normal; color: var(--acc); }
[hidden] { display: none !important; }
.nowrap { white-space: nowrap; }

.wrap { width: min(1160px, 100% - 2 * var(--gut)); margin-inline: auto; }

/* ---------- Шапка ---------- */
.top { display: flex; justify-content: space-between; align-items: center; padding-top: 45px; }
.logo { display: inline-flex; align-items: center; gap: 13px; }
.logo__mark {
  width: 46px; height: 46px; border-radius: 14px;
  background: var(--acc); color: var(--acc-ink);
  display: grid; place-items: center;
  font: 700 17px/1 var(--font); letter-spacing: -.03em;
}
.logo__name { font: 600 13px/1.1 var(--font); }
.contacts { display: flex; flex-direction: column; align-items: flex-end; text-align: right; }
.contacts__phone { font-size: 16px; line-height: 1.55; }
.contacts__mail { font-size: 14px; line-height: 1.55; color: #adadad; }
.contacts a:hover { color: var(--acc); }

/* ---------- Заголовки ---------- */
.h1 { font: 700 45px/54px var(--font); max-width: 625px; letter-spacing: -.01em; }
.h2 { font: 600 42px/50px var(--font); letter-spacing: -.01em; }
.lead { font: 500 25px/35px var(--font); max-width: 600px; margin-top: 24px; }
.eyebrow {
  display: flex; align-items: center; gap: 10px; margin-bottom: 16px;
  font: 600 13px/1 var(--font); letter-spacing: .12em; text-transform: uppercase; color: var(--acc);
}
.eyebrow::before { content: ""; width: 24px; height: 2px; border-radius: 2px; background: var(--acc); }

/* ---------- Первый экран ---------- */
.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 640px) minmax(0, 1fr);
  padding-top: 97px;
}
.hero::before {
  content: ""; position: absolute; right: -220px; top: -40px; width: 760px; height: 760px; border-radius: 50%;
  background: radial-gradient(closest-side, rgba(255, 201, 51, .10), rgba(255, 201, 51, 0));
  pointer-events: none;
}
.hero__text { position: relative; z-index: 2; }
.steps { display: grid; grid-template-columns: repeat(2, max-content); column-gap: 64px; row-gap: 20px; margin-top: 26px; }
.steps__n { display: block; margin-bottom: 4px; font: 600 14px/22px var(--font); color: var(--acc); }
.steps p { font-size: 16px; line-height: 19px; }
.steps b { font-weight: 600; }

/* ---------- Кнопка записи с ценой ---------- */
.cta { position: relative; display: flex; align-items: center; width: max-content; margin-top: 64px; }
.btn {
  display: inline-grid; place-items: center;
  width: 260px; height: 75px; border-radius: 100px;
  background: var(--acc); color: var(--acc-ink);
  font: 600 20px/1 var(--font);
  box-shadow: 0 22px 40px var(--acc-glow);
  transition: transform .2s, box-shadow .2s, background-color .2s;
}
.btn:not(.btn--sm) {
  display: inline-flex; align-items: center; justify-content: space-between;
  padding: 0 12px 0 40px;
}
.btn:not(.btn--sm)::after {
  content: ""; width: 51px; height: 51px; border-radius: 50%; flex: none;
  background: var(--acc-ink) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'%3E%3Cpath d='M4 10h11M11 5l5 5-5 5' fill='none' stroke='%23ffc933' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") center / 20px no-repeat;
  transition: transform .2s;
}
.btn:hover { background: #ffd65c; box-shadow: 0 16px 44px rgba(255, 201, 51, .35); }
.btn:hover::after { transform: translateX(3px); }
.btn:active { transform: translateY(1px); }
.btn:focus-visible { outline: 2px solid #fff; outline-offset: 3px; }
.btn--flat { box-shadow: none; }
.cta__price {
  display: grid; place-items: center;
  width: 168px; height: 75px; margin-left: 8px;
  border: 1px solid var(--line-2); border-radius: 100px;
  font: 500 20px/28px var(--font); color: #cfcfcf;
}
.cta__price s { text-decoration-thickness: 2px; text-decoration-color: var(--acc); }
.cta__sticker {
  position: absolute; left: 350px; top: -24px;
  height: 40px; padding: 0 16px; border-radius: 10px;
  background: #fff; color: var(--acc-ink);
  font: 600 18px/40px var(--font); white-space: nowrap;
  transform: rotate(-7deg);
  box-shadow: 0 10px 24px rgba(0, 0, 0, .35);
  pointer-events: none;
}
.cta__free {
  display: grid; place-items: center;
  height: 75px; padding: 0 30px; margin-left: 8px; border-radius: 100px;
  background: #fff; color: var(--acc-ink);
  font: 600 22px/1 var(--font);
}

.note { display: flex; align-items: center; gap: 15px; margin-top: 31px; font-size: 16px; line-height: 19px; }
.note__i { width: 27px; height: 27px; flex: none; }

/* ---------- Таймер (показывается, только если задан deadline) ---------- */
.timer__label { display: flex; align-items: center; gap: 15px; margin-top: 31px; font-size: 18px; line-height: 23px; }
.timer__label svg { width: 16px; height: 16px; flex: none; }
.timer__row { display: flex; align-items: flex-start; gap: 9px; margin-top: 19px; }
.timer__g { display: flex; flex-direction: column; align-items: center; gap: 6px; }
.timer__tiles { display: flex; gap: 3px; }
.timer__d {
  width: 38px; height: 50px; border-radius: 10px;
  background: var(--card); color: var(--acc); border: 1px solid var(--card-line);
  display: grid; place-items: center;
  font: 600 28px/1 var(--font);
}
.timer__g small { font-size: 12px; line-height: 1; color: var(--dim); }
.timer__sep { align-self: flex-start; padding-top: 14px; font: 500 20px/1 var(--font); color: #5a5a5a; }

/* ---------- Иллюстрация первого экрана (координаты в em: 1em = 10px на десктопе) ---------- */
.hero__visual {
  position: relative;
  font-size: min(10px, (100vw - 700px) / 62);
  width: 62em; height: 66em;
  margin: -9px 0 0 8px;
  pointer-events: none;
}
.hero__visual > * { position: absolute; }
.hv-strip { width: 51.8em; height: 11.4em; }
.hv-strip--top { left: 1.1em; top: 4.9em; transform: rotate(-15deg); z-index: 1; }
.hv-strip--bottom { left: 3.7em; top: 48.6em; z-index: 5; }
.hv-checks {
  left: 40.6em; top: 10.5em; width: 11.5em; height: 18.2em;
  border-radius: 1.8em; background: rgba(149, 149, 149, .16);
  padding: 1.8em; display: flex; flex-direction: column; gap: 1.1em;
  z-index: 2;
}
.hv-checks span {
  width: 2.8em; height: 2.8em; border-radius: .8em; background: var(--acc);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 28 28'%3E%3Cpath d='M7.5 14.5l4.2 4.2 8.8-9.4' fill='none' stroke='%231d1814' stroke-width='2.6' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-size: 100% 100%;
}
.hv-glow {
  left: 10.3em; top: 15.5em; width: 36.5em; height: 36.5em; border-radius: 50%;
  background: radial-gradient(closest-side, rgba(255, 236, 170, .75), rgba(255, 220, 120, .25) 55%, rgba(255, 201, 51, 0));
  opacity: .35; z-index: 2;
}
.rep {
  left: 12.5em; top: 11.5em; width: 27em;
  padding: 2.2em 2.2em 2em;
  border-radius: 2.4em;
  background: #fbfbfa; color: #1d1814;
  box-shadow: 0 3em 6em rgba(0, 0, 0, .45);
  transform: rotate(-5deg);
  z-index: 3;
}
.rep__head { display: flex; align-items: center; gap: .8em; font-size: 1.5em; line-height: 1.2; margin-bottom: 1em; }
.rep__head i { width: .7em; height: .7em; border-radius: 50%; background: var(--acc); flex: none; }
.rep__head b { font-weight: 700; }
.rep__head span { margin-left: auto; color: #8d8d8d; font-size: .85em; }
.rep__kpi {
  display: grid; grid-template-columns: 1fr auto; align-items: baseline;
  column-gap: 1em; padding: 1.15em 0; border-top: 1px solid #ececec;
}
.rep__kpi p { grid-column: 1 / -1; font-size: 1.25em; color: #8d8d8d; margin-bottom: .3em; }
.rep__kpi b { font-size: 2.6em; line-height: 1.05; font-weight: 700; letter-spacing: -.02em; }
.rep__kpi i { font-style: normal; font-size: 1.3em; font-weight: 600; padding: .25em .6em; border-radius: 1em; }
.rep__kpi .up { background: #fff1c2; color: #7a5b00; }
.rep__kpi .dn { background: #f1f1f1; color: #6b6b6b; }
.rep__chart { width: 100%; height: 8em; margin-top: 1em; }
.hero-photo { left: 2.2em; top: 3.6em; width: 59.3em; height: 60.2em; object-fit: contain; object-position: center bottom; z-index: 4; }
.has-photo .rep { display: none; }

/* ---------- Результаты клиентов ---------- */
.cases { margin-top: 72px; }
.cases__head { display: flex; align-items: center; gap: 32px; }
.cases__big { flex: none; font: 700 150px/.85 var(--font); letter-spacing: -.05em; color: var(--acc); }
.cases__head .h2 { max-width: 600px; }
.cases__dots {
  flex: none; width: 140px; height: 140px; margin-left: auto;
  background: radial-gradient(circle, var(--acc) 3px, transparent 3.6px) 0 0 / 14px 14px;
  -webkit-mask: linear-gradient(135deg, #000 30%, rgba(0, 0, 0, .25));
  mask: linear-gradient(135deg, #000 30%, rgba(0, 0, 0, .25));
}
.cases__grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 20px; margin-top: 40px; }
.case {
  position: relative; overflow: hidden;
  display: flex; flex-direction: column;
  padding: 26px 26px 30px; border-radius: var(--r);
  background: linear-gradient(160deg, #2e2e30 0%, var(--card) 45%);
  border: 1px solid var(--card-line);
  transition: border-color .25s, transform .25s;
}
.case::before {
  content: ""; position: absolute; right: -80px; top: -80px; width: 220px; height: 220px; border-radius: 50%;
  background: radial-gradient(closest-side, rgba(255, 201, 51, .14), rgba(255, 201, 51, 0));
  pointer-events: none;
}
.case:hover { border-color: rgba(255, 201, 51, .45); transform: translateY(-3px); }
.case__top { display: flex; align-items: center; gap: 12px; }
.case__ic {
  width: 44px; height: 44px; border-radius: 14px; flex: none;
  display: grid; place-items: center; background: var(--acc); color: var(--acc-ink);
}
.case__ic svg { width: 24px; height: 24px; fill: none; stroke: currentColor; stroke-width: 1.7; stroke-linecap: round; stroke-linejoin: round; }
.case__tag { font: 600 16px/1.2 var(--font); }

.case__chart {
  position: relative; display: flex; justify-content: space-between; align-items: stretch;
  height: 150px; margin-top: 22px; padding: 16px 18px 12px;
  border-radius: 18px; background-color: #1f1f21;
  background-image: repeating-linear-gradient(0deg, rgba(255, 255, 255, .05) 0 1px, transparent 1px 28px);
  background-position: 0 -12px;
}
.case__bars { display: flex; align-items: flex-end; gap: 12px; padding-bottom: 18px; }
.bar { position: relative; width: 34px; border-radius: 8px 8px 4px 4px; }
.bar--was { height: var(--was); background: #4a4a4d; }
.bar--now { height: var(--now); background: linear-gradient(180deg, #ffd766, var(--acc)); box-shadow: 0 0 24px rgba(255, 201, 51, .35); }
.case__chart--down .bar--was { background: #6a6a6e; }
.bar i {
  position: absolute; left: 50%; bottom: -19px; transform: translateX(-50%);
  font: 500 11px/1 var(--font); font-style: normal; color: var(--dim); white-space: nowrap;
}
.case__num { display: flex; flex-direction: column; align-items: flex-end; justify-content: flex-start; gap: 8px; }
.case__num b { font: 700 58px/1 var(--font); letter-spacing: -.03em; color: var(--acc); white-space: nowrap; }
.case__kpi {
  display: inline-flex; align-items: center; gap: 5px; padding: 6px 11px 6px 9px; border-radius: 100px;
  background: var(--acc-soft); color: var(--acc); font: 600 13px/1 var(--font);
}
.case__kpi svg { width: 12px; height: 12px; fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }

.case__title { margin-top: 22px; font: 600 21px/1.3 var(--font); }
.case__done { display: flex; flex-direction: column; gap: 10px; margin-top: 16px; }
.case__done li {
  position: relative; padding-left: 28px;
  font-size: 15px; line-height: 1.45; color: #c4c4c4;
}
.case__done li::before {
  content: ""; position: absolute; left: 0; top: 2px; width: 18px; height: 18px; border-radius: 6px;
  background: var(--acc-soft) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 18 18'%3E%3Cpath d='M5 9.3l2.6 2.6L13 6.5' fill='none' stroke='%23ffc933' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") center / 18px no-repeat;
}

/* ---------- Что даёт встреча: три ситуации ---------- */
.deal { margin-top: 110px; }
.deal__head { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 470px); gap: 40px; align-items: end; }
.deal__lead { font-size: 18px; line-height: 1.5; color: #cfcfcf; }
.deal__lead b { color: #fff; font-weight: 600; }
.deal__list { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 20px; margin-top: 32px; }
.deal__card {
  position: relative; overflow: hidden;
  display: flex; flex-direction: column;
  padding: 26px 26px 0; border-radius: var(--r);
  background: linear-gradient(160deg, #2e2e30 0%, var(--card) 45%);
  border: 1px solid var(--card-line);
  transition: border-color .25s, transform .25s;
}
.deal__card::before {
  content: ""; position: absolute; left: -90px; top: -90px; width: 240px; height: 240px; border-radius: 50%;
  background: radial-gradient(closest-side, rgba(255, 201, 51, .12), rgba(255, 201, 51, 0));
  pointer-events: none;
}
.deal__card:hover { border-color: rgba(255, 201, 51, .45); transform: translateY(-3px); }
.deal__top { display: flex; align-items: center; gap: 14px; }
.deal__n {
  flex: none; width: 44px; height: 44px; border-radius: 14px;
  display: grid; place-items: center; background: var(--acc); color: var(--acc-ink);
  font: 700 16px/1 var(--font);
}
.deal__if { font: 600 19px/1.25 var(--font); }
.deal__text { margin: 20px 0 22px; font-size: 16px; line-height: 1.5; color: #cfcfcf; }
.deal__text b { color: #fff; font-weight: 600; }
.deal__out {
  display: flex; flex-wrap: wrap; align-items: center; column-gap: 8px; row-gap: 6px;
  margin: auto -26px 0; padding: 18px 26px 22px;
  border-top: 1px dashed rgba(255, 255, 255, .12); background: rgba(255, 201, 51, .05);
  font: 600 15px/1.3 var(--font); color: var(--acc);
}
.deal__out span { flex: 1 1 100%; font: 500 11px/1 var(--font); letter-spacing: .1em; text-transform: uppercase; color: var(--dim); }
.deal__out svg { width: 16px; height: 16px; flex: none; fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }

/* мини-иллюстрации в карточках */
.deal__viz {
  position: relative; height: 138px; margin-top: 20px; padding: 14px 16px;
  border-radius: 18px; background-color: #1f1f21;
  background-image: repeating-linear-gradient(0deg, rgba(255, 255, 255, .045) 0 1px, transparent 1px 26px);
}
.viz-audit { display: flex; flex-direction: column; justify-content: center; gap: 6px; }
.viz-audit__row {
  display: flex; align-items: center; gap: 10px;
  height: 28px; padding: 0 8px 0 12px; border-radius: 9px; background: rgba(255, 255, 255, .04);
  font-size: 13px; color: var(--soft);
}
.viz-audit__row span { flex: 1; }
.viz-audit__row b { font-weight: 600; color: #fff; white-space: nowrap; }
.viz-audit__row s { margin-right: 4px; color: var(--dim); font-weight: 400; }
.viz-audit__row i {
  flex: none; width: 16px; height: 16px; border-radius: 50%;
  display: grid; place-items: center; font: 700 10px/1 var(--font); font-style: normal;
}
.viz-audit__row i.ok { background: rgba(255, 255, 255, .08) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath d='M4.5 8.2l2.2 2.2L11.5 5.6' fill='none' stroke='%23a0a0a0' stroke-width='1.6' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") center / 16px no-repeat; }
.viz-audit__row i.bad { background: var(--acc); color: var(--acc-ink); }
.viz-audit__row--bad { background: var(--acc-soft); box-shadow: inset 0 0 0 1px rgba(255, 201, 51, .55); }
.viz-audit__row--bad b { color: var(--acc); }
.viz-audit__tag {
  position: absolute; right: 12px; top: -11px;
  padding: 5px 9px; border-radius: 8px; background: var(--acc); color: var(--acc-ink);
  font: 600 11px/1 var(--font); transform: rotate(3deg);
  box-shadow: 0 6px 16px rgba(0, 0, 0, .35);
}

.viz-plan { display: flex; flex-direction: column; justify-content: center; gap: 16px; }
.viz-plan__steps { position: relative; display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); }
.viz-plan__steps::before {
  content: ""; position: absolute; left: 12.5%; right: 12.5%; top: 15px; height: 2px;
  background: linear-gradient(90deg, var(--acc) 0 33.3%, rgba(255, 255, 255, .14) 33.3%);
}
.viz-plan__steps li { position: relative; display: flex; flex-direction: column; align-items: center; gap: 8px; }
.viz-plan__steps i {
  width: 32px; height: 32px; border-radius: 50%;
  display: grid; place-items: center; font: 700 13px/1 var(--font); font-style: normal;
  background: #1f1f21; color: var(--soft); box-shadow: inset 0 0 0 2px rgba(255, 255, 255, .18);
}
.viz-plan__steps .is-done i { background: var(--acc); color: var(--acc-ink); box-shadow: 0 0 18px rgba(255, 201, 51, .35); }
.viz-plan__steps b { font: 600 12px/1 var(--font); color: var(--soft); white-space: nowrap; }
.viz-plan__steps .is-done b { color: #fff; }
.viz-plan__hint { align-self: center; padding: 6px 10px; border-radius: 100px; background: rgba(255, 255, 255, .05); font-size: 11px; line-height: 1.2; color: var(--dim); text-align: center; }

.viz-cash { padding: 14px 0 0; overflow: hidden; }
.viz-cash__svg { display: block; width: 100%; height: 88px; }
.viz-cash__svg path { fill: none; vector-effect: non-scaling-stroke; }
.viz-cash__zero { stroke: rgba(255, 255, 255, .22); stroke-width: 1; stroke-dasharray: 4 4; }
.viz-cash__was { stroke: #8a8a8e; stroke-width: 2; }
.viz-cash__now { stroke: var(--acc); stroke-width: 3; filter: drop-shadow(0 0 6px rgba(255, 201, 51, .5)); }
.viz-cash__gap {
  position: absolute; left: 50%; top: 86px;
  padding: 4px 8px; border-radius: 7px; background: #3a3a3d; color: #e6e6e6;
  font: 600 11px/1 var(--font); white-space: nowrap;
}
.viz-cash__legend {
  position: absolute; left: 14px; bottom: 11px;
  display: flex; align-items: center; gap: 6px; font-size: 11px; line-height: 1; color: var(--dim);
}
.viz-cash__legend i { width: 12px; height: 3px; border-radius: 2px; }
.viz-cash__legend i.was { background: #8a8a8e; }
.viz-cash__legend i.now { margin-left: 6px; background: var(--acc); }

/* ---------- Стоимость: чек ---------- */
.price {
  display: grid; grid-template-columns: minmax(0, 1fr) 520px; gap: 60px; align-items: center;
  margin-top: 110px;
}
.free { margin-top: 24px; font: 400 30px/1.3 var(--font); color: #e6e6e6; }
.free u { text-decoration-color: var(--acc); text-decoration-thickness: 3px; text-underline-offset: 7px; color: #fff; font-weight: 600; }
.price__note { margin-top: 14px; font-size: 16px; line-height: 1.5; color: var(--dim); max-width: 460px; }
.bill {
  position: relative; padding: 30px 36px 32px; border-radius: var(--r);
  background: var(--card); border: 1px solid var(--card-line);
}
.bill__title { margin-bottom: 10px; font: 600 13px/1 var(--font); letter-spacing: .1em; text-transform: uppercase; color: var(--dim); }
.bill__row { display: flex; align-items: baseline; gap: 10px; padding: 12px 0; font-size: 18px; line-height: 1.35; }
.bill__row i { flex: 1; min-width: 20px; border-bottom: 2px dotted #4d4d4d; transform: translateY(-5px); }
.bill__row b { font-weight: 600; white-space: nowrap; }
.bill__total {
  position: relative; display: flex; align-items: baseline; gap: 16px;
  margin-top: 18px; padding-top: 24px; border-top: 2px dashed #4d4d4d;
}
.bill__total::before, .bill__total::after {
  content: ""; position: absolute; top: -13px; width: 24px; height: 24px; border-radius: 50%; background: var(--bg);
}
.bill__total::before { left: -49px; }
.bill__total::after { right: -49px; }
.bill__total span { font: 600 22px/1 var(--font); }
.bill__total s { margin-left: auto; font-size: 20px; color: var(--dim); text-decoration-thickness: 2px; }
.bill__total b { font: 700 40px/1 var(--font); color: var(--acc); }

/* ---------- Формат встречи: ноутбук слева, текст справа ---------- */
.meet {
  position: relative; margin-top: 140px;
  display: grid; grid-template-columns: minmax(0, 1fr) 470px; column-gap: 56px;
  grid-template-areas: "vis rows" "vis cta"; align-items: start;
}
.meet__rows { grid-area: rows; display: flex; flex-direction: column; gap: 24px; position: relative; z-index: 2; }
.meet__rows li { display: flex; align-items: center; gap: 22px; }
.meet__rows p { font: 400 22px/34px var(--font); }
.meet__ic { width: 60px; height: 60px; border-radius: 18px; background: var(--acc-soft); display: grid; place-items: center; flex: none; }
.meet__ic svg { width: 34px; height: 34px; }
.meet__visual {
  grid-area: vis; position: relative; z-index: 1;
  width: calc(100% + 76px); margin: 20px 0 0 -76px;
  aspect-ratio: 710 / 278; overflow: hidden;
}
.meet__visual::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: 0; height: 53%;
  background: linear-gradient(0deg, var(--bg) 0%, rgba(30, 30, 31, 0) 100%);
}
.meet__laptop { display: block; width: 100%; height: auto; }
.meet__donut { position: absolute; z-index: 0; left: -110px; top: -150px; width: 269px; height: 272px; }
.meet .cta { grid-area: cta; z-index: 2; margin-top: 80px; }

/* ---------- Подарки ---------- */
.bonus { margin-top: 110px; }
.bonus__box {
  position: relative;
  display: grid; grid-template-columns: 397px minmax(0, 1fr);
  margin-top: 26px; min-height: 195px; padding: 30px 32px 34px;
  border-radius: var(--r); background: var(--card); border: 1px solid var(--card-line);
}
.bonus__lead { font: 400 22px/30px var(--font); max-width: 330px; }
.bonus__coin {
  position: absolute; left: -42px; bottom: -38px; width: 104px; height: 104px;
  filter: drop-shadow(0 14px 18px rgba(0, 0, 0, .45));
  animation: coin 6s ease-in-out infinite;
}
@keyframes coin {
  0% { transform: perspective(500px) translateY(0) rotate(0) rotateY(0); }
  30% { transform: perspective(500px) translateY(-10px) rotate(-6deg) rotateY(0); }
  45% { transform: perspective(500px) translateY(-16px) rotate(-6deg) rotateY(180deg); }
  60% { transform: perspective(500px) translateY(-10px) rotate(-3deg) rotateY(360deg); }
  100% { transform: perspective(500px) translateY(0) rotate(0) rotateY(360deg); }
}
@media (prefers-reduced-motion: reduce) {
  .bonus__coin { animation: none; }
}
.bonus__list {
  display: grid; grid-auto-flow: column; grid-template-rows: auto auto;
  grid-template-columns: 331px minmax(0, 1fr); row-gap: 28px;
}
.bonus__list li { display: flex; gap: 14px; font-size: 18px; line-height: 24px; }
.bonus__list span {
  flex: none; width: 32px; height: 32px; margin-top: -4px; border-radius: 10px;
  background: var(--acc-soft); color: var(--acc);
  display: grid; place-items: center; font: 600 13px/1 var(--font);
}
.bonus__list b { font-weight: 700; }
.bonus__list i { font-style: normal; color: var(--dim); }

/* ---------- Финал и подвал ---------- */
.final { margin-top: 90px; }
.final .cta { margin-top: 0; }
.foot {
  display: flex; align-items: center; justify-content: space-between; gap: 24px;
  margin-top: 63px; padding: 28px 0 56px; border-top: 1px solid var(--card-line);
}
.foot__links { display: flex; gap: 24px; margin-left: 209px; margin-right: auto; }
.foot__links a, .foot__copy { font-size: 12px; line-height: 19px; }
.foot__links a { color: var(--foot); }
.foot__links a:hover { color: #fff; }
.foot__copy { color: #fff; }

/* ---------- Окно записи ---------- */
.modal { position: fixed; inset: 0; z-index: 100; display: grid; place-items: center; padding: 24px 16px; overflow-y: auto; }
.modal__back { position: fixed; inset: 0; background: rgba(0, 0, 0, .8); }
.modal__x { position: fixed; top: 19px; right: 20px; width: 23px; height: 23px; z-index: 2; }
.modal__x svg { width: 100%; height: 100%; stroke: #fff; stroke-width: 1.5; }
.modal__box {
  position: relative; z-index: 1;
  width: min(560px, 100%); padding: 40px 45px 45px; border-radius: 24px;
  background: #fff; color: var(--acc-ink);
  animation: pop .25s ease-out;
}
@keyframes pop { from { opacity: 0; transform: translateY(12px); } to { opacity: 1; transform: none; } }
.form__title { font: 700 34px/1.2 var(--font); }
.form__descr { margin-top: 18px; font-size: 16px; line-height: 1.55; color: #4a4a4a; }
.q { display: block; border: 0; margin-top: 28px; }
.q legend, .q__t { display: block; padding: 0; margin-bottom: 10px; font: 600 18px/1.35 var(--font); }
.r { display: flex; align-items: center; gap: 10px; min-height: 30px; font-size: 15px; cursor: pointer; }
.r input, .agree input { position: absolute; opacity: 0; pointer-events: none; }
.r i { width: 20px; height: 20px; border-radius: 50%; border: 2px solid var(--acc-deep); flex: none; display: grid; place-items: center; }
.r input:checked + i::after { content: ""; width: 10px; height: 10px; border-radius: 50%; background: var(--acc-deep); }
.r input:focus-visible + i, .agree input:focus-visible + i { outline: 2px solid var(--acc-ink); outline-offset: 2px; }
.sel { position: relative; display: block; }
.sel::after {
  content: ""; position: absolute; right: 22px; top: 50%; margin-top: -3px;
  border: 6px solid transparent; border-top-color: var(--acc-deep); border-bottom: 0;
  pointer-events: none;
}
.sel select, .f input {
  width: 100%; height: 58px; padding: 0 20px;
  border: 1px solid #e0e0e0; border-radius: 14px; background: #fafafa;
  font: 400 16px/1 var(--font); color: var(--acc-ink);
  -webkit-appearance: none; appearance: none;
}
.sel select:focus, .f input:focus { outline: none; background: #fff; border-color: var(--acc-deep); box-shadow: 0 0 0 3px rgba(255, 201, 51, .35); }
.f { display: block; margin-top: 18px; }
.f span { display: block; margin-bottom: 6px; font-size: 14px; color: #6b6b6b; }
.f input.is-bad { border-color: #d24b3a; }
.agree { display: flex; gap: 10px; margin-top: 20px; font-size: 13px; line-height: 1.4; color: #555; cursor: pointer; }
.agree i { width: 18px; height: 18px; border: 2px solid var(--acc-deep); border-radius: 5px; flex: none; margin-top: 1px; display: grid; place-items: center; }
.agree input:checked + i { background: var(--acc); border-color: var(--acc); }
.agree input:checked + i::after { content: ""; width: 5px; height: 9px; border: solid var(--acc-ink); border-width: 0 2px 2px 0; transform: rotate(45deg) translate(-1px, -1px); }
.agree a { text-decoration: underline; }
.form__err { margin-top: 14px; font-size: 14px; color: #c0392b; }
.form__warn { margin-top: 16px; padding: 12px 14px; border-radius: 12px; background: #fff4d1; font-size: 14px; line-height: 1.45; }
.form__nav { display: flex; align-items: center; justify-content: flex-end; gap: 22px; margin-top: 26px; }
.form__count { display: inline-flex; align-items: center; gap: 10px; font-size: 12px; color: #9a9a9a; }
.ring {
  width: 22px; height: 22px; border-radius: 50%;
  background: conic-gradient(var(--acc-deep) calc(var(--p) * 360deg), #eaeaea 0);
  -webkit-mask: radial-gradient(closest-side, transparent 72%, #000 74%);
  mask: radial-gradient(closest-side, transparent 72%, #000 74%);
}
.btn--sm { width: auto; height: 48px; padding: 0 28px; font-size: 15px; font-weight: 700; box-shadow: none; }
.btn--sm[disabled] { opacity: .6; cursor: default; }
.form__back { margin-right: auto; font-size: 14px; color: #6b6b6b; }
.form__back:hover { color: var(--acc-ink); }
.form__done .btn { margin-top: 26px; }

/* ================= Планшет ================= */
@media (max-width: 1179px) {
  .hero { grid-template-columns: minmax(0, 1fr); }
  .hero__visual { font-size: min(10px, 100vw / 66); margin: 40px auto 0; }
  .cases__big { font-size: 120px; }
  .cases__dots { display: none; }
  .deal__head { grid-template-columns: minmax(0, 1fr); gap: 16px; }
  .deal__card { padding: 22px 22px 0; }
  .deal__out { margin: auto -22px 0; padding: 16px 22px 20px; }
  .price { grid-template-columns: minmax(0, 1fr); gap: 32px; }
  .bill { max-width: 620px; }
  .meet { margin-top: 100px; grid-template-columns: minmax(0, 1fr); grid-template-areas: "rows" "vis" "cta"; }
  .meet__visual { width: 100%; max-width: 710px; margin: 40px 0 0; }
  .meet__donut { left: 500px; top: 34px; width: 200px; height: auto; }
  .meet .cta { margin-top: 40px; }
  .bonus__box { grid-template-columns: minmax(0, 1fr); row-gap: 28px; }
  .bonus__coin { left: auto; right: -26px; bottom: -34px; width: 88px; height: 88px; }
  .bonus__list { grid-template-columns: repeat(2, minmax(0, 1fr)); column-gap: 30px; }
  .foot { flex-wrap: wrap; }
  .foot__links { margin-left: 0; }
}

@media (max-width: 999px) {
  .meet__donut { display: none; }
  .cases__grid { grid-template-columns: minmax(0, 1fr); max-width: 560px; }
  .deal__list { grid-template-columns: minmax(0, 1fr); max-width: 560px; }
}

/* ================= Телефон ================= */
@media (max-width: 640px) {
  :root { --r: 22px; }
  .top { padding-top: 31px; }
  .logo__mark { width: 42px; height: 42px; border-radius: 12px; font-size: 15px; }
  .contacts__phone { font-size: 14px; }
  .contacts__mail { display: none; }

  .hero { padding-top: 29px; }
  .hero::before { right: -300px; top: 500px; }
  .h1 { font-size: 28px; line-height: 30px; }
  .lead { font-size: 20px; line-height: 23px; margin-top: 33px; }
  .steps { grid-template-columns: minmax(0, 1fr); row-gap: 16px; margin-top: 30px; }
  .steps__n { margin-bottom: 2px; }
  .steps p { font-size: 14px; line-height: 17px; }
  .steps p br { display: none; }

  .cta { margin-top: 56px; width: 100%; max-width: 302px; }
  .btn { width: 197px; height: 54px; font-size: 17px; }
  .cta .btn { width: auto; flex: 1 1 auto; min-width: 0; padding: 0 8px 0 24px; }
  .btn:not(.btn--sm)::after { width: 38px; height: 38px; background-size: 16px; }
  .cta__price { width: 96px; height: 54px; margin-left: 6px; font-size: 16px; flex: none; }
  .cta__sticker { left: auto; right: -6px; top: -16px; height: 24px; padding: 0 9px; border-radius: 7px; font-size: 11px; line-height: 24px; }
  .cta__free { height: 54px; padding: 0 16px; margin-left: 6px; font-size: 14px; flex: none; }
  .note { gap: 8px; margin-top: 19px; font-size: 12px; line-height: 14px; }
  .note__i { width: 13px; height: 13px; }

  .timer__label { font-size: 16px; line-height: 20px; margin-top: 40px; }
  .timer__row { margin-top: 18px; }

  .hero__visual { font-size: calc(100vw * .01815); margin: -15px 0 0 calc(11px - var(--gut)); }

  .cases { margin-top: 40px; }
  .cases__head { flex-direction: column; align-items: flex-start; gap: 6px; }
  .cases__big { font-size: 88px; }
  .cases__grid { gap: 12px; margin-top: 24px; }
  .case { padding: 20px 20px 24px; }
  .case__chart { height: 130px; margin-top: 18px; }
  .case__num b { font-size: 46px; }
  .case__title { margin-top: 18px; font-size: 19px; }
  .case__done li { font-size: 14px; }

  .h2 { font-size: 28px; line-height: 34px; }
  .eyebrow { margin-bottom: 12px; font-size: 12px; }

  .deal { margin-top: 70px; }
  .deal__head { gap: 12px; }
  .deal__lead { font-size: 15px; }
  .deal__list { gap: 12px; margin-top: 20px; }
  .deal__card { padding: 20px 20px 0; }
  .deal__n { width: 38px; height: 38px; border-radius: 12px; font-size: 14px; }
  .deal__if { font-size: 17px; }
  .deal__viz { height: 124px; margin-top: 16px; }
  .deal__text { margin: 16px 0 18px; font-size: 14px; }
  .deal__out { margin: auto -20px 0; padding: 14px 20px 18px; font-size: 14px; }

  .price { margin-top: 70px; gap: 24px; }
  .free { margin-top: 16px; font-size: 20px; }
  .free u { text-underline-offset: 4px; text-decoration-thickness: 2px; }
  .price__note { font-size: 14px; }
  .bill { padding: 22px 22px 24px; }
  .bill__row { font-size: 15px; padding: 10px 0; }
  .bill__row i { transform: translateY(-4px); }
  .bill__total { gap: 12px; padding-top: 20px; }
  .bill__total::before { left: -35px; }
  .bill__total::after { right: -35px; }
  .bill__total span { font-size: 18px; }
  .bill__total s { font-size: 16px; }
  .bill__total b { font-size: 30px; }

  .meet { margin-top: 56px; }
  .meet__rows { gap: 16px; }
  .meet__rows li { gap: 14px; }
  .meet__rows p { font-size: 15px; line-height: 23px; }
  .meet__visual, .meet__donut { display: none; }
  .meet .cta { margin-top: 40px; }

  .bonus { margin-top: 70px; }
  .bonus__box { margin-top: 20px; padding: 22px 22px 26px; row-gap: 26px; }
  .bonus__lead { font-size: 20px; line-height: 27px; }
  .bonus__coin { display: none; }
  .bonus__list { grid-auto-flow: row; grid-template-columns: minmax(0, 1fr); row-gap: 16px; }
  .bonus__list li { font-size: 16px; line-height: 22px; gap: 14px; }

  .final { margin-top: 70px; }
  .foot { flex-direction: column; align-items: flex-start; gap: 20px; margin-top: 60px; padding-bottom: 40px; }
  .foot__links { flex-direction: column; gap: 4px; }

  .modal { padding: 0; place-items: stretch; }
  .modal__box { width: 100%; min-height: 100%; padding: 56px 22px 32px; border-radius: 0; }
  .modal__x { top: 16px; right: 16px; }
  .modal__x svg { stroke: var(--acc-ink); }
  .form__title { font-size: 26px; }
  .form__descr { margin-top: 12px; font-size: 14px; }
  .q { margin-top: 24px; }
  .q legend, .q__t { font-size: 17px; }
  .form__nav { flex-wrap: wrap; gap: 14px; }
  .form__nav .btn { flex: 1 1 100%; }
  .form__back { order: -2; }
  .form__count { order: -1; margin-left: auto; }
}
