/* =========================================================
   вернём·часы — компоненты страниц
   ========================================================= */

/* ---------- HERO (главная) ---------- */
.hero { padding-top: clamp(40px, 6vw, 80px); padding-bottom: clamp(48px, 7vw, 96px); }
.hero-grid {
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  gap: clamp(32px, 5vw, 72px);
  align-items: center;
}
.hero h1 { margin-bottom: 22px; }
.hero .lead { margin-bottom: 26px; }
.hero .chips { margin-bottom: 30px; }
.hero .chip { background: transparent; border-color: var(--line); }

/* Proof card */
.proof {
  position: relative;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 22px;
  padding: clamp(26px, 3vw, 38px);
  box-shadow: var(--shadow-card);
}
.proof__label {
  display: inline-flex;
  align-items: center;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--muted);
  border: 1px solid var(--line);
  border-radius: var(--r-pill);
  padding: 6px 13px;
}
.proof__metric {
  font-family: var(--ff-display);
  font-weight: 800;
  font-size: clamp(34px, 5vw, 52px);
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin: 20px 0 0;
}
.proof__metric .to { color: var(--accent); }
.proof__metric .arrow {
  display: inline-block;
  color: var(--accent);
  margin: 0 6px;
}
.proof__desc { color: var(--muted); font-size: 15.5px; margin: 16px 0 0; line-height: 1.55; }
.proof__float {
  position: absolute;
  top: -16px; right: 22px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--accent);
  color: #fff;
  font-size: 13px;
  font-weight: 600;
  padding: 9px 15px;
  border-radius: var(--r-pill);
  box-shadow: 0 14px 30px -12px rgba(37, 64, 232, 0.6);
  animation: floaty 3.6s ease-in-out infinite;
}
.proof__float .pulse {
  width: 8px; height: 8px; border-radius: 50%;
  background: #fff;
  box-shadow: 0 0 0 0 rgba(255,255,255,0.7);
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(255,255,255,0.6); }
  70% { box-shadow: 0 0 0 9px rgba(255,255,255,0); }
  100% { box-shadow: 0 0 0 0 rgba(255,255,255,0); }
}
@keyframes floaty {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}
.proof__sign {
  margin-top: 22px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
  font-size: 13.5px;
  color: var(--muted);
  display: flex;
  align-items: center;
  gap: 8px;
}
.proof__sign::before {
  content: "";
  width: 18px; height: 18px;
  border-radius: 5px;
  background: var(--ink);
  flex: none;
}

/* mini bars inside proof */
.proof__bars { margin-top: 22px; display: grid; gap: 12px; }

/* ---------- Proof deck (листаемые карточки) ---------- */
.proof-deck { position: relative; }
.proof-stack {
  position: relative;
  touch-action: pan-y;
  cursor: grab;
}
.proof-stack:active { cursor: grabbing; }
.proof-stack .proof {
  position: absolute;
  top: 0; left: 0; right: 0;
  margin: 0;
  transform-origin: 50% 88%;
  transition: transform .55s var(--ease), opacity .5s var(--ease), box-shadow .5s var(--ease);
  will-change: transform;
  user-select: none;
}
/* first card holds the natural height of the stack before JS runs */
.proof-stack .proof:first-child { position: relative; }
.proof-stack .proof:not(.is-front) { box-shadow: var(--shadow-soft); }
/* badge only on the front card — hidden (not faded) on the others */
.proof-stack .proof:not(.is-front) .proof__float { visibility: hidden; pointer-events: none; }
.proof-stack .proof:not(.is-front) { cursor: pointer; }

.proof-deck__nav {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 22px;
  padding-left: 4px;
}
.proof-deck__dots { display: flex; gap: 9px; }
.proof-deck__dot {
  width: 26px; height: 6px; border-radius: 999px;
  background: var(--line);
  border: 0; padding: 0; cursor: pointer;
  transition: background .35s var(--ease), width .35s var(--ease);
}
.proof-deck__dot.is-active { background: var(--accent); width: 38px; }
.proof-deck__hint {
  font-size: 13px; color: var(--muted);
  margin-left: auto;
  transition: opacity .4s var(--ease);
}
.proof-deck__hint.is-hidden { opacity: 0; }

@media (prefers-reduced-motion: reduce) {
  .proof-stack .proof { transition: none; }
}

/* hero stacks on small screens; deck sits below the copy */
@media (max-width: 860px) {
  .hero-grid { grid-template-columns: 1fr; gap: clamp(34px, 8vw, 52px); }
  .hero-copy { order: 1; }
  .proof-deck { order: 2; }
}
@media (max-width: 600px) {
  .proof { border-radius: 18px; padding: 24px 22px 26px; }
  .proof__metric { font-size: clamp(32px, 11vw, 46px); }
  .proof__float { right: 16px; font-size: 12px; padding: 8px 13px; }
  .proof-deck__nav { margin-top: 18px; }
  .proof-deck__hint { font-size: 12px; }
}

/* ---------- Bars chart ---------- */
.bars { display: grid; gap: 18px; }
.bar__head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  margin-bottom: 8px;
  font-size: 14px;
}
.bar__head b { font-family: var(--ff-text); font-weight: 600; white-space: nowrap; }
.bar__head .val { font-family: var(--ff-display); font-weight: 600; font-size: 15px; }
.bar__track {
  height: 16px;
  background: var(--accent-softer);
  border-radius: var(--r-pill);
  overflow: hidden;
}
.bar__fill {
  height: 100%;
  width: 0;
  border-radius: var(--r-pill);
  transition: width 1.4s var(--ease);
}
.bar__fill--before { background: var(--ink); }
.bar__fill--after { background: var(--accent); }

/* ---------- Day grid (освобождённое время) ---------- */
.daygrid-wrap { display: grid; gap: 16px; }
.daygrid {
  display: grid;
  grid-template-columns: repeat(16, 1fr);
  gap: 6px;
}
.daygrid__cell {
  aspect-ratio: 1;
  border-radius: 4px;
  background: var(--accent-softer);
  border: 1px solid var(--line);
  opacity: 0;
  transform: scale(0.6);
  transition: opacity .4s var(--ease), transform .4s var(--ease), background-color .4s var(--ease);
}
.daygrid.is-in .daygrid__cell { opacity: 1; transform: none; }
.daygrid__cell.is-freed { background: var(--accent); border-color: var(--accent); }
.daygrid-legend { display: flex; flex-wrap: wrap; gap: 18px; font-size: 13.5px; color: var(--muted); }
.daygrid-legend span { display: inline-flex; align-items: center; gap: 8px; }
.daygrid-legend i { width: 13px; height: 13px; border-radius: 4px; display: inline-block; }
.daygrid-legend i.freed { background: var(--accent); }
.daygrid-legend i.kept { background: var(--accent-softer); border: 1px solid var(--line); }

@media (max-width: 560px) {
  .daygrid { grid-template-columns: repeat(12, 1fr); }
}

/* ---------- Pains ---------- */
.pains { display: grid; gap: 0; }
.pain {
  display: flex;
  gap: 18px;
  align-items: flex-start;
  padding: 22px 0;
  border-bottom: 1px solid var(--line);
}
.pain:first-child { border-top: 1px solid var(--line); }
.pain__icon {
  flex: none;
  width: 30px; height: 30px;
  border-radius: 8px;
  background: var(--accent-soft);
  color: var(--accent);
  display: grid;
  place-items: center;
  margin-top: 2px;
}
.pain__icon svg { width: 17px; height: 17px; }
.pain p { margin: 0; font-size: 17px; }
.pain:hover .pain__icon { background: var(--accent); color: #fff; transition: .25s var(--ease); }

/* ---------- Steps (краткие на главной) ---------- */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(16px, 2vw, 24px); }
.step {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--r-card);
  padding: 28px;
  box-shadow: var(--shadow-soft);
  transition: transform .3s var(--ease), box-shadow .3s var(--ease);
}
.step:hover { transform: translateY(-5px); box-shadow: var(--shadow-hover); }
.step__num {
  font-family: var(--ff-display);
  font-weight: 800;
  font-size: 15px;
  color: var(--accent);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px; height: 38px;
  border-radius: 10px;
  background: var(--accent-soft);
  margin-bottom: 18px;
}
.step h3 { font-family: var(--ff-display); font-weight: 600; font-size: 20px; margin: 0 0 8px; }
.step p { margin: 0; color: var(--muted); font-size: 15px; }
.step .tag { display: inline-block; margin-top: 14px; font-size: 13px; font-weight: 600; color: var(--accent); }

@media (max-width: 860px) { .steps { grid-template-columns: 1fr; } }

/* ---------- CTA band ---------- */
.cta-band {
  background: var(--band-bg);
  color: var(--band-fg);
  border: 1px solid var(--line);
  border-radius: clamp(20px, 3vw, 28px);
  padding: clamp(40px, 6vw, 72px);
  position: relative;
  overflow: hidden;
}
.cta-band::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at center, rgba(244,241,234,0.10) 1.1px, transparent 1.2px);
  background-size: 22px 22px;
  -webkit-mask-image: radial-gradient(110% 110% at 90% 10%, #000, transparent 60%);
          mask-image: radial-gradient(110% 110% at 90% 10%, #000, transparent 60%);
  pointer-events: none;
}
.cta-band > * { position: relative; }
.cta-band h2 { color: var(--band-fg); }
.cta-band .lead { color: var(--band-muted); }
.cta-band .btn--ghost { color: var(--band-fg); border-color: var(--band-line); }
.cta-band .btn--ghost:hover { background: var(--band-fg); color: var(--band-bg); }
.cta-band .btn--primary { background: var(--band-fg); color: var(--band-bg); }
.cta-band .btn--primary:hover { background: var(--accent); color: #fff; }

/* ---------- Teaser (главная, короткий кейс) ---------- */
.teaser {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 22px;
  justify-content: space-between;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--r-card);
  padding: clamp(24px, 3vw, 34px);
  box-shadow: var(--shadow-soft);
}
.teaser__result { display: flex; align-items: center; gap: 18px; }
.teaser__metric { font-family: var(--ff-display); font-weight: 800; font-size: clamp(24px, 3vw, 34px); letter-spacing: -0.02em; }
.teaser__metric .accent { color: var(--accent); }
.teaser__txt { color: var(--muted); font-size: 15px; max-width: 42ch; }
.teaser a.link { display: inline-flex; align-items: center; gap: 8px; font-weight: 600; color: var(--accent); white-space: nowrap; }
.teaser a.link svg { width: 18px; height: 18px; transition: transform .25s var(--ease); }
.teaser a.link:hover svg { transform: translateX(4px); }

/* home cases — featured pair + examples strip */
.hcases { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(16px, 2vw, 22px); }
.hcase {
  background: var(--card); border: 1px solid var(--line); border-radius: var(--r-card);
  padding: clamp(22px, 2.6vw, 30px); box-shadow: var(--shadow-soft);
  display: flex; flex-direction: column;
}
.hcase__tag {
  display: inline-flex; align-self: flex-start; align-items: center; gap: 8px;
  font-size: 12px; font-weight: 600; letter-spacing: 0.05em; text-transform: uppercase;
  color: var(--accent); background: var(--accent-soft);
  border-radius: var(--r-pill); padding: 5px 12px; margin-bottom: 16px;
}
.hcase__tag::before { content: ""; width: 6px; height: 6px; border-radius: 50%; background: var(--accent); }
.hcase__metric { font-family: var(--ff-display); font-weight: 800; font-size: clamp(26px, 3.2vw, 38px); letter-spacing: -0.02em; line-height: 1.05; margin: 0; }
.hcase__metric .arrow, .hcase__metric .to { color: var(--accent); }
.hcase__metric .arrow { margin: 0 8px; }
.hcase__txt { color: var(--muted); font-size: 15px; line-height: 1.55; margin: 14px 0 0; }

.hcase-more {
  display: flex; flex-wrap: wrap; align-items: center; gap: 14px;
  margin-top: clamp(16px, 2vw, 22px);
  padding: clamp(18px, 2.2vw, 24px) clamp(20px, 2.6vw, 30px);
  background: var(--accent-softer); border: 1px solid var(--line); border-radius: var(--r-card);
}
.hcase-more__lbl { font-weight: 600; font-size: 14px; color: var(--ink); white-space: nowrap; }
.hcase-more__list { display: flex; flex-wrap: wrap; gap: 10px; flex: 1; }
.hcase-more__item {
  display: inline-flex; align-items: baseline; gap: 8px;
  background: var(--card); border: 1px solid var(--line); border-radius: var(--r-pill);
  padding: 8px 14px; font-size: 13.5px; color: var(--muted);
}
.hcase-more__item b { font-family: var(--ff-display); font-weight: 700; color: var(--ink); font-size: 13.5px; }
.hcase-more__item .ar { color: var(--accent); font-weight: 700; }
@media (max-width: 760px) { .hcases { grid-template-columns: 1fr; } }

/* ---------- Services grid ---------- */
.svc-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(16px, 2vw, 22px); }
.svc {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--r-card);
  padding: 30px;
  box-shadow: var(--shadow-soft);
  transition: transform .3s var(--ease), box-shadow .3s var(--ease), border-color .3s var(--ease);
  display: flex;
  flex-direction: column;
}
.svc:hover { transform: translateY(-6px); box-shadow: var(--shadow-hover); border-color: var(--accent); }
.svc__ico {
  width: 46px; height: 46px;
  border-radius: 12px;
  background: var(--accent-soft);
  color: var(--accent);
  display: grid; place-items: center;
  margin-bottom: 20px;
  transition: background-color .3s var(--ease), color .3s var(--ease);
}
.svc:hover .svc__ico { background: var(--accent); color: #fff; }
.svc__ico svg { width: 23px; height: 23px; }
.svc h3 { font-family: var(--ff-display); font-weight: 600; font-size: 20px; margin: 0 0 10px; line-height: 1.2; }
.svc p { margin: 0; color: var(--muted); font-size: 15px; }
.svc__cuts { margin-top: 16px; padding-top: 16px; border-top: 1px solid var(--line); font-size: 14px; }
.svc__cuts b { color: var(--ink); font-weight: 600; }

@media (max-width: 980px) { .svc-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px) { .svc-grid { grid-template-columns: 1fr; } }

/* integrations row */
.integrations { display: flex; flex-wrap: wrap; gap: 12px; }
.integrations .pill {
  border: 1px solid var(--line);
  background: var(--card);
  border-radius: var(--r-pill);
  padding: 10px 18px;
  font-weight: 500;
  font-size: 15px;
  transition: border-color .25s var(--ease), color .25s var(--ease);
}
.integrations .pill:hover { border-color: var(--accent); color: var(--accent); }

/* ---------- Case (кейсы) ---------- */
.case {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: clamp(18px, 2.5vw, 24px);
  padding: clamp(26px, 4vw, 48px);
  box-shadow: var(--shadow-card);
}
.case__grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(28px, 4vw, 56px); align-items: start; }
.case h2 { margin: 16px 0 0; }
.case .ba { display: grid; gap: 18px; margin-top: 26px; }
.ba-item { display: flex; gap: 16px; }
.ba-item__tag {
  flex: none;
  font-family: var(--ff-display);
  font-weight: 600;
  font-size: 12px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 6px 12px;
  border-radius: var(--r-pill);
  height: fit-content;
}
.ba-item__tag.was { background: rgba(110,102,90,0.12); color: var(--muted); }
.ba-item__tag.now { background: var(--accent-soft); color: var(--accent); }
.ba-item p { margin: 4px 0 0; font-size: 15.5px; }

/* screenshot placeholder */
.shot {
  border-radius: 16px;
  border: 1px solid var(--line);
  background-color: var(--card);
  background-image: repeating-linear-gradient(135deg, var(--placeholder-stripe) 0 10px, transparent 10px 20px);
  aspect-ratio: 4 / 3;
  display: grid;
  place-items: center;
  text-align: center;
  padding: 24px;
}
.shot__inner { font-family: "Onest", monospace; }
.shot__inner code {
  font-family: ui-monospace, "SF Mono", Menlo, monospace;
  font-size: 13px;
  color: var(--muted);
  background: var(--card);
  border: 1px solid var(--line);
  padding: 6px 12px;
  border-radius: 8px;
  display: inline-block;
}
.shot__inner .ico { font-size: 30px; margin-bottom: 12px; color: var(--muted); }
.shot__inner svg { width: 34px; height: 34px; color: var(--muted); margin: 0 auto 12px; }

@media (max-width: 820px) { .case__grid { grid-template-columns: 1fr; } }

/* case "soon" */
.case--soon {
  background: transparent;
  border: 1.5px dashed var(--line);
  box-shadow: none;
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
  justify-content: space-between;
}
.case--soon .soon-badge {
  font-family: var(--ff-display);
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--muted);
  border: 1px solid var(--line);
  border-radius: var(--r-pill);
  padding: 7px 15px;
}

/* more-examples mini case cards */
.mcases { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(16px, 2vw, 22px); margin-top: 32px; }
.mcase {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--r-card);
  padding: clamp(22px, 2.4vw, 28px);
  box-shadow: var(--shadow-soft);
  display: flex;
  flex-direction: column;
}
.mcase__ico {
  width: 42px; height: 42px; border-radius: 12px;
  background: var(--accent-soft); color: var(--accent);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 16px;
}
.mcase__ico svg { width: 21px; height: 21px; }
.mcase__tag { font-size: 12px; font-weight: 600; letter-spacing: 0.05em; text-transform: uppercase; color: var(--muted); }
.mcase__title { font-family: var(--ff-display); font-weight: 600; font-size: 19px; line-height: 1.25; margin: 6px 0 12px; letter-spacing: -0.01em; }
.mcase__metric { font-family: var(--ff-display); font-weight: 700; font-size: 17px; letter-spacing: -0.01em; margin: 0 0 12px; }
.mcase__metric .arrow { color: var(--accent); margin: 0 6px; }
.mcase__metric .to { color: var(--accent); }
.mcase__desc { color: var(--muted); font-size: 14.5px; line-height: 1.55; margin: 0; }
.mcase__foot { margin-top: auto; padding-top: 16px; }
.mcase__chips { display: flex; flex-wrap: wrap; gap: 7px; margin-top: 14px; }
.mcase__chip { font-size: 11.5px; color: var(--muted); border: 1px solid var(--line); border-radius: var(--r-pill); padding: 4px 11px; }
@media (max-width: 880px) { .mcases { grid-template-columns: 1fr 1fr; } }
@media (max-width: 600px) { .mcases { grid-template-columns: 1fr; } }

.offer {
  background: var(--accent);
  color: #fff;
  border-radius: clamp(18px, 2.5vw, 24px);
  padding: clamp(28px, 4vw, 48px);
  position: relative;
  overflow: hidden;
}
.offer::after {
  content: "";
  position: absolute; inset: 0;
  background-image: radial-gradient(circle at center, rgba(255,255,255,0.12) 1.1px, transparent 1.2px);
  background-size: 22px 22px;
  -webkit-mask-image: radial-gradient(110% 110% at 90% 0%, #000, transparent 60%);
          mask-image: radial-gradient(110% 110% at 90% 0%, #000, transparent 60%);
}
.offer > * { position: relative; }
.offer h3 { font-family: var(--ff-display); font-weight: 800; font-size: clamp(24px, 3vw, 34px); margin: 0 0 14px; letter-spacing: -0.02em; }
.offer p { color: rgba(255,255,255,0.85); max-width: 56ch; margin: 0 0 22px; }
.offer .btn--primary { background: #fff; color: var(--accent); }
.offer .btn--primary:hover { background: var(--ink); color: #fff; }

/* ---------- Timeline (как работаем) ---------- */
.timeline { display: grid; gap: 0; position: relative; }
.tl-step {
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 24px;
  padding-bottom: 40px;
  position: relative;
}
.tl-step:last-child { padding-bottom: 0; }
.tl-step::before {
  content: "";
  position: absolute;
  left: 31px; top: 56px; bottom: 0;
  width: 2px;
  background: var(--line);
}
.tl-step:last-child::before { display: none; }
.tl-num {
  width: 64px; height: 64px;
  border-radius: 16px;
  background: var(--ink);
  color: var(--paper);
  font-family: var(--ff-display);
  font-weight: 800;
  font-size: 24px;
  display: grid; place-items: center;
  z-index: 1;
  transition: background-color .3s var(--ease), transform .3s var(--ease);
}
.tl-step:hover .tl-num { background: var(--accent); transform: scale(1.05); }
.tl-body {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--r-card);
  padding: 26px 30px;
  box-shadow: var(--shadow-soft);
}
.tl-body .meta { display: inline-block; font-size: 13px; font-weight: 600; color: var(--accent); background: var(--accent-soft); padding: 5px 12px; border-radius: var(--r-pill); margin-bottom: 12px; }
.tl-body h3 { font-family: var(--ff-display); font-weight: 600; font-size: 22px; margin: 0 0 8px; }
.tl-body p { margin: 0; color: var(--muted); }

@media (max-width: 560px) {
  .tl-step { grid-template-columns: 48px 1fr; gap: 16px; }
  .tl-num { width: 48px; height: 48px; font-size: 19px; border-radius: 13px; }
  .tl-step::before { left: 23px; top: 48px; }
}

/* ---------- Accordion ---------- */
.accordion { display: grid; gap: 12px; }
.acc-item {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 14px;
  overflow: hidden;
  transition: border-color .25s var(--ease), box-shadow .25s var(--ease);
}
.acc-item.is-open { border-color: var(--accent); box-shadow: var(--shadow-soft); }
.acc-q {
  width: 100%;
  text-align: left;
  background: none;
  border: 0;
  cursor: pointer;
  padding: 22px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  font-family: var(--ff-text);
  font-weight: 600;
  font-size: 17px;
  color: var(--ink);
}
.acc-q .plus {
  flex: none;
  width: 26px; height: 26px;
  position: relative;
}
.acc-q .plus::before, .acc-q .plus::after {
  content: "";
  position: absolute;
  background: var(--accent);
  border-radius: 2px;
  transition: transform .3s var(--ease);
}
.acc-q .plus::before { left: 50%; top: 4px; bottom: 4px; width: 2px; transform: translateX(-50%); }
.acc-q .plus::after { top: 50%; left: 4px; right: 4px; height: 2px; transform: translateY(-50%); }
.acc-item.is-open .acc-q .plus::before { transform: translateX(-50%) scaleY(0); }
.acc-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height .4s var(--ease);
}
.acc-a__inner { padding: 0 24px 24px; color: var(--muted); font-size: 16px; line-height: 1.6; }

/* ---------- Pricing ---------- */
.price-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: clamp(16px, 2vw, 22px); }
.price {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--r-card);
  padding: clamp(26px, 3vw, 36px);
  box-shadow: var(--shadow-soft);
  display: flex;
  flex-direction: column;
  transition: transform .3s var(--ease), box-shadow .3s var(--ease);
}
.price:hover { transform: translateY(-5px); box-shadow: var(--shadow-hover); }
.price--feature { background: var(--band-bg); color: var(--band-fg); border-color: var(--band-bg); }
.price--feature .price__name { color: var(--band-fg); }
.price--feature .price__desc { color: var(--band-muted); }
.price--feature .price__amount { color: var(--band-fg); }
.price--feature .price__amount .accent { color: #8aa0ff; }
.price--feature .price__feat-tag { position: absolute; top: 20px; right: 24px; background: var(--accent); color:#fff; font-size:12px; font-weight:600; padding:5px 12px; border-radius: var(--r-pill); }
.price { position: relative; }
.price__name { font-family: var(--ff-display); font-weight: 600; font-size: 21px; margin: 0 0 8px; }
.price__desc { color: var(--muted); font-size: 15px; margin: 0 0 20px; min-height: 44px; }
.price__amount { font-family: var(--ff-display); font-weight: 800; font-size: clamp(28px, 3.4vw, 40px); letter-spacing: -0.02em; line-height: 1; }
.price__amount .accent { color: var(--accent); }
.price__amount small { font-family: var(--ff-text); font-weight: 500; font-size: 15px; color: var(--muted); display: block; margin-top: 8px; letter-spacing: 0; }
.price--feature .price__amount small { color: var(--band-muted); }
.price .btn { margin-top: 24px; }
.price--feature .btn--primary { background: var(--band-fg); color: var(--band-bg); }
.price--feature .btn--primary:hover { background: var(--accent); color: #fff; }

.price-note { display: flex; align-items: flex-start; gap: 12px; margin-top: 26px; color: var(--muted); font-size: 15px; }
.price-note svg { width: 20px; height: 20px; color: var(--accent); flex: none; margin-top: 2px; }

@media (max-width: 720px) { .price-grid { grid-template-columns: 1fr; } }

/* ---------- About ---------- */
.about-grid { display: grid; grid-template-columns: 0.85fr 1.15fr; gap: clamp(32px, 5vw, 64px); align-items: start; }
.portrait {
  border-radius: 20px;
  border: 1px solid var(--line);
  background-color: var(--card);
  background-image: repeating-linear-gradient(135deg, var(--placeholder-stripe) 0 12px, transparent 12px 24px);
  aspect-ratio: 4 / 5;
  display: grid;
  place-items: center;
  text-align: center;
  position: sticky;
  top: 100px;
}
.portrait code {
  font-family: ui-monospace, Menlo, monospace;
  font-size: 13px;
  color: var(--muted);
  background: var(--card);
  border: 1px solid var(--line);
  padding: 6px 12px;
  border-radius: 8px;
}
.prose p { font-size: 17.5px; line-height: 1.7; }
.prose p + p { margin-top: 1.2em; }
.prose h3 { font-family: var(--ff-display); font-weight: 600; font-size: 24px; margin: 1.6em 0 0.5em; }
.about-facts { display: grid; gap: 14px; margin-top: 24px; }
.about-fact { display: flex; gap: 14px; align-items: flex-start; padding: 18px 20px; background: var(--card); border: 1px solid var(--line); border-radius: 14px; }
.about-fact svg { width: 20px; height: 20px; color: var(--accent); flex: none; margin-top: 2px; }
.about-fact b { font-weight: 600; }

@media (max-width: 820px) {
  .about-grid { grid-template-columns: 1fr; }
  .portrait { position: static; max-width: 340px; }
}

/* ---------- SEO-страницы: статьи, блог, related ---------- */
.post-meta {
  margin-top: 14px;
  font-size: 14.5px;
  font-weight: 500;
  color: var(--muted);
  letter-spacing: 0.02em;
}
.prose h2 {
  font-family: var(--ff-display);
  font-weight: 600;
  font-size: clamp(22px, 2.6vw, 28px);
  line-height: 1.25;
  margin: 1.7em 0 0.55em;
}
.prose h2:first-child { margin-top: 0; }
.prose ul, .prose ol {
  margin: 1em 0 1.2em;
  padding-left: 1.3em;
  display: grid;
  gap: 0.55em;
}
.prose li { font-size: 17.5px; line-height: 1.65; }
.prose li::marker { color: var(--accent); font-weight: 600; }
.prose b, .prose strong { font-weight: 600; }
.prose a { color: var(--accent); text-decoration: underline; text-underline-offset: 3px; }
.prose .callout {
  margin: 1.4em 0;
  padding: 20px 24px;
  background: var(--accent-softer);
  border-radius: 14px;
  font-size: 16.5px;
  line-height: 1.6;
}
.prose .callout a { font-weight: 600; }

.rel-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
.rel-card {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 22px 24px;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 16px;
  text-decoration: none;
  color: var(--ink);
  transition: border-color .25s var(--ease), transform .25s var(--ease), box-shadow .25s var(--ease);
}
.rel-card:hover { border-color: var(--accent); transform: translateY(-3px); box-shadow: var(--shadow-soft); }
.rel-card__tag {
  font-size: 12.5px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  color: var(--muted);
}
.rel-card__title { font-weight: 600; font-size: 17px; line-height: 1.4; }
.rel-card__arrow { margin-top: auto; color: var(--accent); display: inline-flex; }

.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.blog-card {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 26px 26px 24px;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 18px;
  text-decoration: none;
  color: var(--ink);
  transition: border-color .25s var(--ease), transform .25s var(--ease), box-shadow .25s var(--ease);
}
.blog-card:hover { border-color: var(--accent); transform: translateY(-3px); box-shadow: var(--shadow-soft); }
.blog-card__meta { font-size: 13.5px; font-weight: 500; color: var(--muted); }
.blog-card__title {
  font-family: var(--ff-display);
  font-weight: 600;
  font-size: 19px;
  line-height: 1.35;
  margin: 0;
}
.blog-card__desc { font-size: 15.5px; line-height: 1.55; color: var(--muted); margin: 0; }
.blog-card__more {
  margin-top: auto;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  font-size: 15px;
  color: var(--accent);
}

@media (max-width: 960px) {
  .rel-grid, .blog-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .rel-grid, .blog-grid { grid-template-columns: 1fr; }
}


/* ---------- Form ---------- */
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(28px, 4vw, 56px); align-items: start; }
.form-card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: clamp(18px, 2.5vw, 24px);
  padding: clamp(26px, 3.5vw, 42px);
  box-shadow: var(--shadow-card);
}
.field { margin-bottom: 20px; }
.field label { display: block; font-weight: 600; font-size: 15px; margin-bottom: 8px; }
.field .req-star { color: var(--accent); }
.field input[type="text"], .field input[type="tel"], .field input[type="email"], .field textarea {
  width: 100%;
  font-family: var(--ff-text);
  font-size: 16px;
  color: var(--ink);
  background: var(--paper);
  border: 1.5px solid var(--line);
  border-radius: var(--r-btn);
  padding: 14px 16px;
  transition: border-color .2s var(--ease), box-shadow .2s var(--ease);
}
.field input::placeholder, .field textarea::placeholder { color: #a8a193; }
.field input:focus, .field textarea:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 4px var(--accent-softer);
}
.field textarea { resize: vertical; min-height: 120px; }
.field.has-error input, .field.has-error textarea { border-color: #c0392b; }
.field.has-error .consent { color: #c0392b; }

.consent { display: flex; gap: 12px; align-items: flex-start; font-size: 14.5px; color: var(--muted); cursor: pointer; }
.consent input { margin-top: 3px; width: 18px; height: 18px; accent-color: var(--accent); flex: none; }
.consent a { color: var(--accent); text-decoration: underline; }

.form-status { margin-top: 16px; font-size: 15px; border-radius: 12px; padding: 0; }
.form-status:not(:empty) { padding: 14px 16px; }
.form-status.is-error { background: rgba(192,57,43,0.08); color: #c0392b; }
.form-status.is-ok { background: var(--accent-soft); color: var(--accent); }
.form-status.is-warn { background: color-mix(in srgb, var(--muted) 16%, transparent); color: var(--ink); }

.dl-cta {
  display: flex;
  align-items: center;
  gap: 14px;
  background: var(--accent);
  color: #fff;
  border-radius: var(--r-card);
  padding: 22px 24px;
  margin-bottom: 22px;
  text-decoration: none;
  transition: transform .25s var(--ease), box-shadow .25s var(--ease);
}
.dl-cta:hover { transform: translateY(-3px); box-shadow: 0 20px 40px -18px rgba(37,64,232,0.6); }
.dl-cta__ico { width: 46px; height: 46px; border-radius: 12px; background: rgba(255,255,255,0.16); display: grid; place-items: center; flex: none; }
.dl-cta__ico svg { width: 24px; height: 24px; }
.dl-cta b { display: block; font-size: 17px; font-weight: 600; }
.dl-cta span { font-size: 14px; color: rgba(255,255,255,0.8); }

.endpoint-note {
  margin-top: 18px;
  font-size: 13.5px;
  color: var(--muted);
  background: var(--paper);
  border: 1px dashed var(--line);
  border-radius: 12px;
  padding: 14px 16px;
}
.endpoint-note code { font-family: ui-monospace, Menlo, monospace; font-size: 12.5px; background: var(--card); padding: 2px 7px; border-radius: 6px; border: 1px solid var(--line); }

.reply-note { display: flex; align-items: center; gap: 10px; margin-top: 18px; font-size: 14.5px; color: var(--muted); }
.reply-note svg { width: 18px; height: 18px; color: var(--accent); }

.contact-list { display: grid; gap: 16px; margin-top: 26px; }
.contact-item { display: flex; gap: 14px; align-items: flex-start; }
.contact-item__ico { width: 42px; height: 42px; border-radius: 11px; background: var(--accent-soft); color: var(--accent); display: grid; place-items: center; flex: none; }
.contact-item__ico svg { width: 20px; height: 20px; }
.contact-item h4 { margin: 0 0 3px; font-size: 15px; font-weight: 600; }
.contact-item p, .contact-item a { margin: 0; color: var(--muted); font-size: 15px; }
.contact-item a:hover { color: var(--accent); }

@media (max-width: 820px) { .form-grid { grid-template-columns: 1fr; } }

/* ---------- Legal / privacy ---------- */
.legal { max-width: 760px; }
.legal h2 { font-family: var(--ff-display); font-weight: 600; font-size: 24px; margin: 2em 0 0.6em; }
.legal h2:first-of-type { margin-top: 1em; }
.legal p, .legal li { color: var(--ink); font-size: 16.5px; line-height: 1.7; }
.legal ul { padding-left: 22px; }
.legal li { margin-bottom: 8px; }
.legal .req-card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 22px 24px;
  font-size: 15px;
  line-height: 1.7;
  margin-top: 12px;
}
.legal .updated { color: var(--muted); font-size: 14px; }


/* ---------- Интерактивные демо (главная) ---------- */
.demo-tabs { display: flex; gap: 10px; flex-wrap: wrap; margin-top: 36px; }
.demo-tab {
  font: inherit; font-weight: 600; font-size: 15px;
  display: inline-flex; align-items: center; gap: 9px;
  padding: 12px 20px; border-radius: var(--r-pill);
  border: 1px solid var(--line); background: var(--card); color: var(--muted);
  cursor: pointer;
  transition: color .22s var(--ease), background-color .22s var(--ease), border-color .22s var(--ease), transform .22s var(--ease);
}
.demo-tab svg { width: 17px; height: 17px; }
.demo-tab:hover { border-color: var(--accent); color: var(--ink); transform: translateY(-2px); }
.demo-tab.is-active { background: var(--ink); color: var(--paper); border-color: var(--ink); }

.demo-pane { display: none; margin-top: 20px; }
.demo-pane.is-active { display: block; animation: demoFade .4s var(--ease); }
@keyframes demoFade { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: none; } }

.demo-shell {
  background: var(--card); border: 1px solid var(--line);
  border-radius: 22px; padding: clamp(20px, 3vw, 32px);
}
.demo-grid { display: grid; grid-template-columns: 320px minmax(0, 1fr); gap: clamp(22px, 3vw, 38px); align-items: start; }
/* бот-демо: чат тянется, правая колонка фиксированная */
.demo-grid--split { grid-template-columns: minmax(0, 1fr) 320px; }

/* — Демо 1: прайсы — */
.demo-files { display: grid; gap: 10px; }
.demo-file {
  display: flex; align-items: center; gap: 12px;
  padding: 12px 14px; border: 1px solid var(--line); border-radius: 13px;
  background: var(--paper);
}
.demo-file__ico {
  width: 36px; height: 36px; flex: none; border-radius: 9px;
  display: grid; place-items: center;
  background: var(--accent-soft); color: var(--accent);
  font-size: 10.5px; font-weight: 700; letter-spacing: 0.04em;
}
.demo-file__name { font-weight: 600; font-size: 14.5px; }
.demo-file__meta { font-size: 12.5px; color: var(--muted); margin-top: 1px; }
.demo-steps { display: grid; gap: 8px; margin-top: 18px; min-height: 122px; }
.demo-step { display: flex; align-items: center; gap: 10px; font-size: 14px; color: var(--muted); opacity: 0.45; transition: opacity .3s var(--ease), color .3s var(--ease); }
.demo-step .ind {
  width: 18px; height: 18px; flex: none; border-radius: 50%;
  border: 2px solid var(--line); display: grid; place-items: center; position: relative;
}
.demo-step.is-run { opacity: 1; color: var(--ink); }
.demo-step.is-run .ind { border-color: var(--accent); border-top-color: transparent; animation: demoSpin .7s linear infinite; }
.demo-step.is-done { opacity: 1; }
.demo-step.is-done .ind { border-color: var(--ok, #1F8A5B); background: var(--ok, #1F8A5B); animation: none; }
.demo-step.is-done .ind::after { content: ""; width: 8px; height: 5px; border-left: 2px solid #fff; border-bottom: 2px solid #fff; transform: rotate(-45deg) translate(0.5px, -0.5px); }
@keyframes demoSpin { to { transform: rotate(360deg); } }

.demo-table-wrap { overflow-x: auto; border: 1px solid var(--line); border-radius: 14px; }
.demo-table { width: 100%; border-collapse: collapse; font-size: 14.5px; min-width: 520px; }
.demo-table th, .demo-table td { padding: 11px 14px; text-align: left; border-bottom: 1px solid var(--line); white-space: nowrap; }
.demo-table tr:last-child td { border-bottom: 0; }
.demo-table th { font-size: 12px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.06em; color: var(--muted); background: var(--paper); }
.demo-table td:first-child { font-weight: 500; }
.demo-table td.num { font-variant-numeric: tabular-nums; color: var(--muted); }
.demo-table td.num span { opacity: 0; display: inline-block; transform: translateY(5px); transition: opacity .3s var(--ease), transform .3s var(--ease); }
.demo-table td.num.is-in span { opacity: 1; transform: none; }
.demo-table td.num.is-best { color: var(--ink); }
.demo-table td.num.is-best span {
  font-weight: 700; color: var(--ok, #1F8A5B);
  background: rgba(31, 138, 91, 0.12); padding: 3px 9px; border-radius: 7px;
}
.demo-result {
  display: none; align-items: center; gap: 10px; margin-top: 16px;
  font-weight: 600; font-size: 15px;
}
.demo-result.is-on { display: flex; animation: demoFade .4s var(--ease); }
.demo-result .pulse { width: 8px; height: 8px; border-radius: 50%; background: var(--ok, #1F8A5B); flex: none; }
.demo-note { font-size: 13.5px; color: var(--muted); margin-top: 14px; line-height: 1.55; }

/* — Демо 2: бот — */
.demo-chat {
  border: 1px solid var(--line); border-radius: 18px; overflow: hidden;
  background: var(--paper); display: flex; flex-direction: column; max-width: 520px;
}
.demo-chat__head {
  display: flex; align-items: center; gap: 11px;
  padding: 13px 16px; background: var(--card); border-bottom: 1px solid var(--line);
}
.demo-chat__ava {
  width: 36px; height: 36px; border-radius: 50%; flex: none;
  background: var(--ink); color: var(--paper);
  display: grid; place-items: center;
}
.demo-chat__ava svg { width: 19px; height: 19px; }
.demo-chat__name { font-weight: 600; font-size: 14.5px; }
.demo-chat__status { font-size: 12.5px; color: var(--ok, #1F8A5B); }
.demo-chat__log { height: 330px; overflow-y: auto; padding: 16px; display: flex; flex-direction: column; gap: 10px; }
.demo-msg {
  max-width: 86%; padding: 10px 14px; border-radius: 14px;
  font-size: 14.5px; line-height: 1.55;
  animation: demoMsg .3s var(--ease);
}
@keyframes demoMsg { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: none; } }
.demo-msg--bot { background: var(--card); border: 1px solid var(--line); border-bottom-left-radius: 5px; align-self: flex-start; }
.demo-msg--user { background: var(--accent); color: #fff; border-bottom-right-radius: 5px; align-self: flex-end; }
.demo-msg b { font-weight: 600; }
.demo-msg .demo-msg__time { display: block; font-size: 11px; opacity: 0.55; margin-top: 5px; text-align: right; }
.demo-typing { display: inline-flex; gap: 4px; padding: 13px 15px; }
.demo-typing i { width: 6px; height: 6px; border-radius: 50%; background: var(--muted); animation: demoTyping 1s infinite; }
.demo-typing i:nth-child(2) { animation-delay: .15s; }
.demo-typing i:nth-child(3) { animation-delay: .3s; }
@keyframes demoTyping { 0%, 60%, 100% { transform: none; opacity: .4; } 30% { transform: translateY(-4px); opacity: 1; } }
.demo-chat__quick { display: flex; gap: 8px; flex-wrap: wrap; padding: 12px 16px 16px; background: var(--card); border-top: 1px solid var(--line); }
.demo-quick {
  font: inherit; font-size: 13.5px; font-weight: 600;
  padding: 9px 14px; border-radius: var(--r-pill);
  border: 1px solid var(--accent); color: var(--accent); background: transparent;
  cursor: pointer; transition: background-color .2s var(--ease), color .2s var(--ease), transform .2s var(--ease);
}
.demo-quick:hover { background: var(--accent); color: #fff; transform: translateY(-1px); }
.demo-quick:disabled { opacity: 0.45; cursor: default; transform: none; }
.demo-quick:disabled:hover { background: transparent; color: var(--accent); }
.demo-side h3 { font-family: var(--ff-display); font-weight: 600; font-size: 21px; margin: 0 0 14px; }
.demo-side ul { list-style: none; margin: 0 0 20px; padding: 0; display: grid; gap: 10px; }
.demo-side li { display: flex; gap: 10px; font-size: 15.5px; line-height: 1.5; color: var(--muted); }
.demo-side li::before { content: "→"; color: var(--accent); font-weight: 700; flex: none; }

/* — Демо 3: калькулятор — */
.demo-calc-controls { display: grid; gap: 26px; }
.demo-ctrl label { display: flex; justify-content: space-between; align-items: baseline; gap: 12px; font-weight: 600; font-size: 15.5px; margin-bottom: 12px; }
.demo-ctrl label output { font-family: var(--ff-display); font-weight: 600; color: var(--accent); font-size: 17px; white-space: nowrap; }
.demo-ctrl input[type="range"] { width: 100%; accent-color: var(--accent); height: 28px; cursor: pointer; }
.demo-burn {
  background: var(--accent-softer); border: 1px solid var(--accent-soft);
  border-radius: 18px; padding: clamp(22px, 2.6vw, 30px);
}
.demo-burn__label { font-size: 13px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.07em; color: var(--muted); }
.demo-burn__big {
  font-family: var(--ff-display); font-weight: 800; letter-spacing: -0.02em;
  font-size: clamp(30px, 4.2vw, 46px); line-height: 1.05; color: var(--ink);
  margin: 10px 0 4px; font-variant-numeric: tabular-nums;
}
.demo-burn__big .neg { color: var(--accent); }
.demo-burn__sub { font-size: 15px; color: var(--muted); }
.demo-burn__live {
  margin-top: 20px; padding-top: 20px; border-top: 1px dashed var(--line);
}
.demo-burn__tick {
  font-family: var(--ff-display); font-weight: 600; font-size: clamp(20px, 2.6vw, 27px);
  color: var(--accent); font-variant-numeric: tabular-nums; margin-top: 6px;
}
.demo-burn__hint { font-size: 13px; color: var(--muted); margin-top: 6px; }
.demo-burn .btn { margin-top: 22px; }

@media (max-width: 880px) {
  .demo-grid, .demo-grid--split { grid-template-columns: minmax(0, 1fr); }
  .demo-chat { max-width: none; }
  .demo-chat__log { height: 290px; }
}
@media (max-width: 560px) {
  .demo-tabs { gap: 8px; margin-top: 28px; }
  .demo-tab { padding: 10px 16px; font-size: 14px; }
  .demo-shell { padding: 16px; border-radius: 18px; }
  .demo-table th, .demo-table td { padding: 10px 12px; }
}


/* ---------- CTA с формой (главная) ---------- */
.cta-band__grid {
  display: grid; grid-template-columns: 1.05fr 1fr;
  gap: clamp(28px, 4vw, 56px); align-items: center;
}
.cta-form {
  background: var(--card); color: var(--ink);
  border-radius: 18px; padding: clamp(20px, 2.6vw, 30px);
  box-shadow: 0 24px 60px -28px rgba(0, 0, 0, 0.45);
}
.cta-form .field { margin-bottom: 16px; }
.cta-form .field textarea { min-height: 96px; }
.cta-form__title { font-family: var(--ff-display); font-weight: 600; font-size: 19px; margin: 0 0 18px; }
@media (max-width: 880px) {
  .cta-band__grid { grid-template-columns: 1fr; }
}

/* ---------- Плавающая Telegram-кнопка ---------- */
.tg-float {
  position: fixed; right: 20px; bottom: 20px; z-index: 90;
  display: grid; place-items: center;
  width: 58px; height: 58px; border-radius: 50%;
  background: var(--accent); color: #fff;
  box-shadow: 0 14px 34px -10px rgba(37, 64, 232, 0.55);
  opacity: 0; transform: translateY(18px) scale(0.9); pointer-events: none;
  transition: opacity .35s var(--ease), transform .35s var(--ease);
}
.tg-float.is-on { opacity: 1; transform: none; pointer-events: auto; }
.tg-float:hover { transform: translateY(-3px); }
.tg-float svg { width: 26px; height: 26px; }
.tg-float__tip {
  position: absolute; right: calc(100% + 12px); top: 50%;
  transform: translateY(-50%) translateX(6px);
  background: var(--ink); color: var(--paper);
  font-size: 13.5px; font-weight: 600; white-space: nowrap;
  padding: 9px 14px; border-radius: 11px;
  opacity: 0; pointer-events: none;
  transition: opacity .25s var(--ease), transform .25s var(--ease);
}
.tg-float:hover .tg-float__tip { opacity: 1; transform: translateY(-50%); }
@media (prefers-reduced-motion: no-preference) {
  .tg-float.is-on::before {
    content: ""; position: absolute; inset: -5px; border-radius: 50%;
    border: 2px solid var(--accent); opacity: 0;
    animation: tgPulse 2.6s var(--ease) infinite;
  }
  @keyframes tgPulse {
    0% { transform: scale(0.85); opacity: 0.7; }
    70%, 100% { transform: scale(1.25); opacity: 0; }
  }
}
@media (max-width: 560px) {
  .tg-float { width: 52px; height: 52px; right: 16px; bottom: 16px; }
  .tg-float__tip { display: none; }
}
