/* Палитра Gumroad + моноширинный шрифт JetBrains Mono (с кириллицей) на всём сайте.
   Все заголовки разделов одного стиля. Прошлые версии: style-manrope.css, style-lime.css */
/* Цифры: у JetBrains Mono ноль с точкой внутри, поэтому цифры берём из шрифтов магазина нот.
   В тексте — Manrope (подменяются только цифры, буквы остаются JetBrains Mono), крупные числа — Bebas Neue */
@font-face {
  font-family: 'Digits';
  font-style: normal;
  font-weight: 400 800;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/manrope/v20/xn7gYHE41ni1AdIRggexSg.woff2) format('woff2');
  unicode-range: U+0030-0039;
}
@font-face {
  font-family: 'Digits Display';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/bebasneue/v16/JTUSjIg69CK48gW7PXoo9Wlhyw.woff2) format('woff2');
  unicode-range: U+0000-00FF, U+20AC;
}

:root {
  --bg: #f4f4f0;
  --ink: #000000;
  --surface: #ffffff;
  --pink: #ff90e8;
  --yellow: #ffc900;
  --purple: #90a8ed;
  --green: #23a094;
  --orange: #ff7051;
  --muted: #3d3d3d;
  --line: rgba(0, 0, 0, .22);
  --border: 1.5px solid var(--ink);
  --shadow: 4px 4px 0 var(--ink);
  --shadow-sm: 2px 2px 0 var(--ink);
  --mono: 'Digits', 'JetBrains Mono', ui-monospace, 'SFMono-Regular', Consolas, monospace;
  --display: 'Digits Display', 'Digits', 'JetBrains Mono', sans-serif;
}

* { box-sizing: border-box; }
[hidden] { display: none !important; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--mono);
  font-size: 14px;
  font-weight: 400;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
button { font-family: var(--mono); }
a { color: inherit; text-decoration: none; }
p { margin: 0; }
ul, ol { margin: 0; padding: 0; list-style: none; }
h1, h2, h3 { margin: 0; font-weight: 700; letter-spacing: 0; }

.wrap { max-width: 440px; margin: 0 auto; padding: 20px 20px 40px; }
.wrap--links { min-height: 100vh; display: flex; flex-direction: column; padding-top: 48px; }
.has-sticky { padding-bottom: 110px; }

/* ---------- Главная ---------- */
.profile { text-align: center; margin-bottom: 28px; }
.avatar {
  width: 88px; height: 88px; margin: 0 auto 16px;
  display: grid; place-items: center;
  background: var(--yellow); color: var(--ink);
  border: var(--border); border-radius: 50%; box-shadow: var(--shadow);
  font-weight: 700; font-size: 26px;
}
.profile__name { font-size: 22px; line-height: 1.25; }
.profile__bio { margin-top: 8px; color: var(--muted); }
.links { display: flex; flex-direction: column; gap: 16px; }
.links .btn:nth-of-type(2) .icon { background: var(--yellow); }
.links .btn:nth-of-type(3) .icon { background: var(--purple); }

/* ---------- Кнопки ---------- */
.btn {
  display: flex; align-items: center; justify-content: space-between; gap: 14px;
  min-height: 60px; padding: 12px 12px 12px 18px;
  background: var(--surface); color: var(--ink);
  border: var(--border); border-radius: 4px; box-shadow: var(--shadow);
  transition: transform .12s ease-out, box-shadow .12s ease-out;
  -webkit-tap-highlight-color: transparent;
}
button.btn { -webkit-appearance: none; appearance: none; cursor: pointer; }
.btn:active { transform: translate(2px, 2px); box-shadow: var(--shadow-sm); }
/* на телефоне :hover «залипает» после касания, поэтому наведение — только там, где есть мышь */
@media (hover: hover) { .btn:hover { transform: translate(2px, 2px); box-shadow: var(--shadow-sm); } }
.btn:focus-visible { outline: 3px solid var(--ink); outline-offset: 3px; }
.btn--accent { background: var(--pink); color: var(--ink); }
.btn--center { justify-content: center; text-align: center; padding: 14px 16px; font-weight: 700; font-size: 14px; }
.btn__text { display: flex; flex-direction: column; }
.btn__title { display: block; font-weight: 700; font-size: 14px; line-height: 1.35; }
.btn__sub { display: block; margin-top: 2px; font-size: 12px; color: var(--muted); }
.icon {
  flex: none; width: 40px; height: 40px;
  display: grid; place-items: center;
  background: var(--pink); color: var(--ink);
  border: var(--border); border-radius: 4px; box-shadow: var(--shadow-sm);
}
.btn--accent .icon { background: var(--surface); }

.foot { margin-top: auto; padding-top: 40px; text-align: center; font-size: 12px; color: var(--muted); }

/* ---------- Первый экран ---------- */
.topbar { padding: 4px 0 22px; }
.back { display: inline-flex; align-items: center; gap: 8px; font-weight: 700; }
.hero { padding: 4px 0 0; }
.eyebrow {
  display: inline-block; margin-bottom: 14px; padding: 2px 10px;
  background: var(--yellow); border: var(--border); border-radius: 999px;
  font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: .04em;
}
.h1 { font-size: 26px; line-height: 1.2; }
.lead { margin-top: 12px; color: var(--muted); }

/* ---------- Заголовки: один стиль для всех разделов ---------- */
.section { margin-top: 40px; }
.h2 { margin-bottom: 14px; font-size: 18px; line-height: 1.3; font-weight: 700; }
.h3 { margin: 20px 0 10px; font-size: 15px; line-height: 1.35; font-weight: 700; }
.card { background: var(--surface); border: var(--border); border-radius: 4px; box-shadow: var(--shadow); }
.num { font-family: var(--display); font-size: 40px; font-weight: 400; line-height: 1; letter-spacing: .01em; }
.per { font-size: 12px; color: rgba(0, 0, 0, .7); }
.muted { margin-top: 12px; font-size: 12px; color: var(--muted); }
.faq a { color: var(--ink); text-decoration: underline; text-decoration-thickness: 1.5px; }

.chips { display: flex; flex-wrap: wrap; gap: 8px; }
.rules + .chips { margin-top: 14px; }
.chip { padding: 5px 12px; background: var(--surface); border: var(--border); border-radius: 999px; font-size: 12px; font-weight: 600; }

.tag {
  position: absolute; top: -12px; left: 10px;
  padding: 2px 8px;
  background: var(--yellow); color: var(--ink);
  border: var(--border); border-radius: 999px;
  font-size: 10px; font-weight: 700; text-transform: uppercase; letter-spacing: .02em;
  white-space: nowrap;
}

/* ---------- Навыки: каждая плитка своим цветом ---------- */
.skills { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.skill { padding: 14px 12px; border: var(--border); border-radius: 4px; box-shadow: var(--shadow); }
.skills .skill:nth-child(1) { background: var(--pink); }
.skills .skill:nth-child(2) { background: var(--yellow); }
.skills .skill:nth-child(3) { background: var(--purple); }
.skills .skill:nth-child(4) { background: var(--green); }
.skill__top { display: flex; align-items: center; justify-content: space-between; margin-bottom: 14px; }
.skill__num { font-family: var(--display); font-size: 34px; font-weight: 400; line-height: 1; }
.skill .icon { width: 34px; height: 34px; background: var(--surface); }
.skill h3 { font-size: 15px; line-height: 1.3; }
.skill p { margin-top: 4px; font-size: 12px; line-height: 1.45; color: rgba(0, 0, 0, .78); }
@media (max-width: 350px) { .skills { grid-template-columns: 1fr; } }

/* Карточка навыка целиком нажимается: кнопка в заголовке растянута на всю карточку */
.skill { position: relative; transition: transform .08s ease, box-shadow .08s ease; }
.skill__open {
  padding: 0; margin: 0; background: none; border: 0;
  font: inherit; color: inherit; text-align: left; cursor: pointer;
  -webkit-tap-highlight-color: transparent;
}
.skill__open::after { content: ''; position: absolute; inset: 0; border-radius: 4px; }
.skill__open:focus-visible { outline: none; }
.skill__open:focus-visible::after { outline: 3px solid var(--ink); outline-offset: 3px; }
.skill:active { transform: translate(2px, 2px); box-shadow: var(--shadow-sm); }
@media (hover: hover) { .skill:hover { transform: translate(2px, 2px); box-shadow: var(--shadow-sm); } }

/* ---------- Окно навыка: снизу на телефоне, по центру на компьютере ---------- */
/* Появление и закрытие — плавные переходы по классу .is-visible: так анимация одинаково работает на iPhone и Android */
html.is-locked { overflow: hidden; scrollbar-gutter: stable; }
.sheet {
  inset: 0; width: 100%; height: 100%; max-width: none; max-height: none;
  margin: 0; padding: 0; border: 0; overflow: hidden;
  background: rgba(0, 0, 0, 0); color: var(--ink);
  transition: background-color .3s ease;
}
.sheet[open] { display: flex; flex-direction: column; justify-content: flex-end; }
.sheet::backdrop { background: transparent; }
.sheet.is-visible { background: rgba(0, 0, 0, .45); }
.sheet__panel {
  display: flex; flex-direction: column; flex: 0 1 auto;
  width: 100%; max-width: 480px; max-height: 88vh; max-height: 88dvh; margin: 0 auto;
  background: var(--bg); border: var(--border); border-bottom: 0; border-radius: 12px 12px 0 0;
  overflow: hidden;
  transform: translateY(100%);
  transition: transform .34s cubic-bezier(.2, .8, .2, 1);
}
.sheet.is-visible .sheet__panel { transform: none; }
.sheet__head {
  flex: none; display: flex; align-items: center; gap: 12px;
  padding: 12px 12px 12px 16px;
  background: var(--sheet-color, var(--pink)); border-bottom: var(--border);
  transition: background-color .25s ease;
}
.sheet__num { font-family: var(--display); font-size: 32px; font-weight: 400; line-height: 1; }
.sheet__title { flex: 1; min-width: 0; font-size: 17px; line-height: 1.25; outline: none; }
.sheet__close {
  flex: none; width: 40px; height: 40px; display: grid; place-items: center;
  background: var(--surface); color: var(--ink);
  border: var(--border); border-radius: 4px; box-shadow: var(--shadow-sm);
  cursor: pointer; -webkit-tap-highlight-color: transparent;
}
.sheet__close:active { transform: translate(2px, 2px); box-shadow: none; }
.sheet__close:focus-visible { outline: 3px solid var(--ink); outline-offset: 2px; }
.sheet__body {
  flex: 1 1 auto; min-height: 0; overflow-y: auto; overscroll-behavior: contain;
  -webkit-overflow-scrolling: touch; padding: 18px 16px 22px;
}
.sheet__page:not([hidden]) { animation: rise .3s ease backwards; }
.sheet__lead { font-size: 15px; line-height: 1.5; font-weight: 700; }
.sheet__label { margin: 20px 0 10px; font-size: 11px; font-weight: 800; letter-spacing: .06em; text-transform: uppercase; }
/* «В итоге» — главный вывод: цветная карточка с тенью */
.sheet__result {
  margin-top: 20px; padding: 14px;
  background: var(--sheet-color, var(--yellow)); border: var(--border); border-radius: 4px; box-shadow: var(--shadow);
  font-size: 14px; font-weight: 700; line-height: 1.45;
}
.sheet__result b { display: block; margin-bottom: 4px; font-size: 11px; font-weight: 800; letter-spacing: .06em; text-transform: uppercase; }
/* «Следующий навык» — тихая строка со стрелкой */
.sheet__next {
  display: flex; align-items: center; justify-content: space-between; gap: 12px;
  width: 100%; margin-top: 26px; padding: 14px 2px 4px;
  background: none; border: 0; border-top: 1px solid var(--line);
  color: var(--muted); font: inherit; font-size: 13px; text-align: left;
  cursor: pointer; -webkit-tap-highlight-color: transparent;
}
.sheet__next b { color: var(--ink); }
.sheet__next svg { flex: none; transition: transform .2s ease; }
.sheet__next:active svg { transform: translateX(4px); }
@media (hover: hover) { .sheet__next:hover svg { transform: translateX(4px); } }
.sheet__next:focus-visible { outline: 3px solid var(--ink); outline-offset: 3px; }
.sheet__foot { flex: none; padding: 12px 16px calc(12px + env(safe-area-inset-bottom)); background: var(--bg); border-top: var(--border); }
.sheet__foot .btn { width: 100%; min-height: 52px; }

@media (min-width: 600px) {
  .sheet[open] { justify-content: center; padding: 24px; }
  .sheet__panel {
    border-bottom: var(--border); border-radius: 4px; box-shadow: var(--shadow);
    opacity: 0; transform: translateY(16px) scale(.98);
    transition: transform .3s cubic-bezier(.2, .8, .2, 1), opacity .22s ease;
  }
  .sheet.is-visible .sheet__panel { opacity: 1; transform: none; }
}


/* ---------- Шаги ---------- */
.steps { display: grid; gap: 14px; }
.step { display: flex; gap: 14px; align-items: flex-start; }
.step__n {
  flex: none; width: 36px; height: 36px;
  display: grid; place-items: center;
  border: var(--border); border-radius: 50%; box-shadow: var(--shadow-sm);
  font-family: var(--display); font-size: 22px; font-weight: 400; line-height: 1;
}
.steps .step:nth-child(1) .step__n { background: var(--yellow); }
.steps .step:nth-child(2) .step__n { background: var(--pink); }
.steps .step:nth-child(3) .step__n { background: var(--purple); }
.step h3 { font-size: 15px; line-height: 1.35; padding-top: 4px; }
.step p { margin-top: 2px; font-size: 13px; color: var(--muted); }

/* ---------- Форматы ---------- */
.section__intro { margin: -4px 0 16px; color: var(--muted); }
.offer { padding: 16px 14px; background: var(--yellow); }
.offer__head { display: flex; align-items: baseline; justify-content: space-between; gap: 8px 12px; flex-wrap: wrap; }
.offer__name { font-size: 15px; }
.offer__list { margin-top: 10px; }
.offer + .offer { margin-top: 12px; }
.offer--self { background: var(--pink); }
.about { display: grid; gap: 8px; margin-top: 16px; padding: 14px; background: var(--surface); border: var(--border); border-radius: 4px; font-size: 13px; }
.compare { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; padding-top: 12px; }
.tier { position: relative; padding: 20px 12px 14px; }
.compare .tier:nth-child(1) { background: var(--pink); }
.compare .tier:nth-child(2) { background: var(--purple); }
.tier__name { font-size: 15px; }
.tier__price { margin-top: 6px; display: flex; align-items: baseline; flex-wrap: wrap; gap: 2px 4px; }
.offer__head .tier__price { margin-top: 0; }
.tier__meta { margin-top: 8px; font-size: 12px; font-weight: 600; line-height: 1.4; }

/* ---------- FAQ ---------- */
.faq { display: grid; gap: 10px; }
.faq details { background: var(--surface); border: var(--border); border-radius: 4px; }
.faq summary {
  list-style: none; cursor: pointer;
  display: flex; justify-content: space-between; align-items: center; gap: 12px;
  padding: 14px; font-weight: 700; font-size: 14px; line-height: 1.4;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "+"; flex: none; width: 26px; height: 26px;
  display: grid; place-items: center;
  background: var(--pink); color: var(--ink);
  border: var(--border); border-radius: 50%;
  font-weight: 700; font-size: 16px; line-height: 1;
}
.faq details:nth-child(3n+2) summary::after { background: var(--yellow); }
.faq details:nth-child(3n) summary::after { background: var(--purple); }
.faq details[open]:not(.is-closing) summary::after { content: "−"; }
.faq details p { padding: 0 14px 14px; font-size: 13px; color: var(--muted); }

/* ---------- Оплата и отмена ---------- */
.rules-block { margin-top: 48px; padding: 18px 16px; background: var(--surface); border: var(--border); border-radius: 4px; }
.rules-block .h3:first-of-type { margin-top: 0; }
.rules { display: grid; gap: 8px; }
.rules li { position: relative; padding-left: 18px; font-size: 13px; }
.rules li::before {
  content: ""; position: absolute; left: 0; top: .55em;
  width: 9px; height: 9px;
  background: var(--pink); border: 1px solid var(--ink); border-radius: 50%;
}
.rules-block .rules:last-of-type li::before { background: var(--orange); }

/* ---------- Кнопка записи ---------- */
.booking {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 10;
  padding: 12px 20px calc(12px + env(safe-area-inset-bottom));
  background: var(--bg); border-top: var(--border);
}
.booking__toggle { max-width: 400px; margin-left: auto; margin-right: auto; }
.booking__toggle { width: 100%; min-height: 52px; }

/* ---------- Страница записи: шаги ---------- */
.stepper { display: flex; justify-content: space-between; gap: 8px; margin: 26px 0 30px; }
.stepper__item { display: flex; align-items: center; gap: 8px; min-width: 0; font-size: 12px; font-weight: 700; color: var(--muted); }
.stepper__n {
  flex: none; width: 28px; height: 28px;
  display: grid; place-items: center;
  background: var(--surface); border: var(--border); border-radius: 50%;
  font-family: var(--display); font-size: 18px; font-weight: 400; line-height: 1;
}
.stepper__item[aria-current="step"] { color: var(--ink); }
.stepper__item[aria-current="step"] .stepper__n { background: var(--pink); box-shadow: var(--shadow-sm); }
.stepper__item.is-done .stepper__n { background: var(--ink); color: var(--surface); }

.zapis__step .h2:focus { outline: none; }
.zapis__status { padding: 8px 0; color: var(--muted); }
.zapis__label { margin: 18px 0 10px; font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: .04em; }

.days { display: flex; gap: 8px; overflow-x: auto; margin: 0 -20px; padding: 2px 20px 8px; scrollbar-width: none; }
.days::-webkit-scrollbar { display: none; }
.day, .time {
  font-family: var(--mono); color: var(--ink); cursor: pointer;
  background: var(--surface); border: var(--border); border-radius: 4px; box-shadow: var(--shadow-sm);
  -webkit-tap-highlight-color: transparent;
}
.day { flex: none; display: grid; gap: 2px; min-width: 72px; padding: 10px 6px; text-align: center; font-size: 12px; }
.day b { font-size: 14px; }
.times { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 10px; }
@media (min-width: 400px) { .times { grid-template-columns: repeat(4, minmax(0, 1fr)); } }
.time { min-height: 48px; font-size: 15px; font-weight: 700; }
.day[aria-pressed="true"], .time[aria-pressed="true"] { background: var(--pink); }
@media (hover: hover) {
  .day:hover, .time:hover { background: var(--yellow); }
  .day[aria-pressed="true"]:hover, .time[aria-pressed="true"]:hover { background: var(--pink); }
}
.zapis__bar {
  position: sticky; bottom: 0; z-index: 5;
  margin: 22px -20px 0; padding: 12px 20px calc(12px + env(safe-area-inset-bottom));
  background: var(--bg); border-top: var(--border);
}
.zapis__bar .btn { width: 100%; min-height: 52px; }

.zapis__chosen { margin-bottom: 18px; padding: 10px 12px; background: var(--yellow); border: var(--border); border-radius: 4px; font-weight: 700; }
.zapis__form { display: grid; gap: 16px; }
.field { display: grid; gap: 6px; font-size: 13px; font-weight: 700; }
.field em { font-style: normal; font-weight: 400; color: var(--muted); }
/* 16px в полях — иначе iPhone приближает страницу при вводе */
.field > input, .field > textarea {
  width: 100%; padding: 12px; font: 16px/1.4 var(--mono); color: var(--ink);
  background: var(--surface); border: var(--border); border-radius: 4px; resize: vertical;
  -webkit-appearance: none; appearance: none;
}
.field > input:focus, .field > textarea:focus { outline: 3px solid var(--purple); outline-offset: 1px; }
.seg { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.seg label { display: flex; align-items: center; justify-content: center; gap: 8px; min-height: 48px; padding: 10px; background: var(--surface); border: var(--border); border-radius: 4px; font-size: 14px; font-weight: 700; cursor: pointer; }
.seg input { margin: 0; accent-color: #000; }
.seg label:has(input:checked) { background: var(--purple); }
.hp { position: absolute; left: -9999px; width: 1px; height: 1px; opacity: 0; }
.zapis__error { min-height: 1.2em; font-size: 13px; font-weight: 700; color: #b93815; }
.zapis__actions { display: grid; grid-template-columns: 1fr 2fr; gap: 10px; }
.zapis__actions .btn, .zapis__home { min-height: 52px; }
button.btn:disabled { opacity: .5; cursor: default; transform: none; box-shadow: var(--shadow); }
.zapis__done { padding: 14px; background: var(--green); border: var(--border); border-radius: 4px; box-shadow: var(--shadow); }
.zapis__home { margin-top: 22px; }
.zapis__direct { margin-top: 36px; font-size: 13px; color: var(--muted); }
.zapis__direct a { color: var(--ink); text-decoration: underline; text-decoration-thickness: 1.5px; }

/* ---------- Плавные появления ---------- */
/* Класс .motion ставит скрипт в <head>, а motion.js показывает блоки, когда они попадают на экран.
   Список блоков должен совпадать с REVEAL в motion.js */
html.motion :is(.profile > *, .links > *, .hero > *, .section > .h2, .section__intro, .skill, .step, .offer, .faq details, .stepper, .zapis__direct, .foot):not(.is-in) { opacity: 0; }
html.motion .is-in { animation: reveal .6s cubic-bezier(.2, .8, .2, 1) backwards; animation-delay: var(--reveal-delay, 0ms); }
@keyframes reveal { from { opacity: 0; transform: translateY(16px); } }
@keyframes rise { from { opacity: 0; transform: translateY(8px); } }
@keyframes motion-fade { from { opacity: 0; } }
@keyframes booking-in { from { transform: translateY(100%); } }

/* нижняя кнопка записи выезжает чуть позже первого экрана */
html.motion .booking { animation: booking-in .5s .35s cubic-bezier(.2, .8, .2, 1) backwards; }
/* ответ в частых вопросах */
html.motion .faq details[open] > :not(summary) { animation: rise .3s cubic-bezier(.2, .8, .2, 1) backwards; }
/* запись: шаги, выбор времени, дни и слоты */
html.motion .zapis__step:not([hidden]), html.motion #picker:not([hidden]) { animation: rise .35s cubic-bezier(.2, .8, .2, 1) backwards; }
html.motion .days > *, html.motion .times > * { animation: motion-fade .3s ease backwards; }



/* ---------- Защита от зума ---------- */
/* Двойное нажатие не увеличивает страницу; щипок для увеличения остаётся */
* { touch-action: manipulation; }
/* поля не меньше 16px — иначе iPhone сам увеличивает страницу при вводе */
.field > input, .field > textarea { font-size: 16px; }

/* ---------- Окно навыка: свайп вниз ---------- */
.sheet__head { position: relative; padding-top: 22px; touch-action: none; }
.sheet__grab {
  position: absolute; top: 8px; left: 50%;
  width: 40px; height: 4px; margin-left: -20px;
  background: rgba(0, 0, 0, .35); border-radius: 999px;
}
@media (min-width: 600px) {
  .sheet__head { padding-top: 12px; }
  .sheet__grab { display: none; }
}

/* ---------- Форматы: пункты самостоятельного обучения зелёные ---------- */
.offer--self .rules li::before { background: var(--green); }

/* ---------- Частые вопросы: цветной акцент в ответе ---------- */
.faq .accent {
  display: inline-block; padding: 0 7px;
  background: var(--pink); color: var(--ink);
  border: 1px solid var(--ink); border-radius: 999px;
  font-weight: 800; line-height: 1.45;
}

/* ---------- Нотная лавка: заглушка ---------- */
.stub { margin-top: 28px; }

/* ---------- Цифры в записи: время и даты ровными столбиками ---------- */
.time, .day b { font-variant-numeric: tabular-nums; }

/* ---------- Пробный урок: 20€ идут в счёт следующих уроков ---------- */
.offer--trial { position: relative; margin-top: 18px; background: var(--purple); }
.offer__text { margin-top: 8px; font-size: 13px; }
.deposit {
  display: flex; align-items: center; gap: 10px;
  margin-top: 12px; padding: 10px 12px;
  background: var(--surface); border: var(--border); border-radius: 4px;
  font-size: 12px; line-height: 1.45;
}
.deposit b { font-weight: 800; }
.deposit__icon {
  flex: none; width: 30px; height: 30px; display: grid; place-items: center;
  background: var(--green); border: var(--border); border-radius: 50%;
}
.hero .deposit { margin-top: 14px; }

/* ---------- Телефон: без рамок фокуса после касаний ---------- */
@media (hover: none) {
  .skill__open:focus-visible::after, .sheet__close:focus-visible { outline: none; }
}

/* ---------- Частые вопросы: способы оплаты ---------- */
.faq .chips { padding: 0 14px 14px; margin-top: -4px; }
.faq .chip:nth-child(1) { background: var(--yellow); }
.faq .chip:nth-child(2) { background: var(--purple); }
.faq .chip:nth-child(3) { background: var(--green); }
