/* Раздел статей vipmango.ru — наследует палитру лендинга.
   Отдельным файлом, а не инлайном: страниц будут сотни, и один закешированный
   CSS экономит трафик и время загрузки, а скорость влияет на ранжирование. */

:root {
  --bg: #0a0a0c;
  --bg-2: #101015;
  --panel: #121218;
  --fg: #f4f4f6;
  --muted: rgba(244, 244, 246, 0.58);
  --faint: rgba(244, 244, 246, 0.34);
  --line: rgba(255, 255, 255, 0.09);
  --mango: #ffb33e;
  --mango-2: #ff7a18;
  --tg: #2aabee;
  --content: 720px;
  --wide: 840px;
}

* { box-sizing: border-box; }

html { background: var(--bg); scroll-behavior: smooth; }

body {
  margin: 0;
  background-color: var(--bg);
  background-image: radial-gradient(1200px 800px at 50% -10%, #16161c 0%, var(--bg) 55%, #050506 100%);
  background-attachment: fixed;
  color: var(--fg);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
  line-height: 1.7;
}

a { color: var(--mango); text-decoration: none; }
a:hover { text-decoration: underline; }
img { max-width: 100%; height: auto; }

/* ───────────────────────────── Шапка ───────────────────────────── */

.site-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  flex-wrap: wrap;
  padding: 20px clamp(18px, 5vw, 56px);
  border-bottom: 1px solid var(--line);
  background: rgba(10, 10, 12, 0.72);
  backdrop-filter: blur(14px);
  position: sticky;
  top: 0;
  z-index: 50;
}

.brand { display: inline-flex; align-items: center; gap: 10px; color: var(--fg); }
.brand:hover { text-decoration: none; }
.brand-mark { font-size: 22px; }
.brand-name { font-weight: 800; letter-spacing: -0.01em; }

.site-nav { display: flex; align-items: center; gap: 22px; flex-wrap: wrap; }
.site-nav a { color: var(--muted); font-size: 14.5px; font-weight: 500; }
.site-nav a:hover { color: var(--fg); text-decoration: none; }

.nav-cta {
  padding: 10px 18px;
  border-radius: 12px;
  background: linear-gradient(120deg, var(--mango) 0%, var(--mango-2) 100%);
  color: #1a1206 !important;
  font-weight: 700 !important;
  box-shadow: 0 8px 24px rgba(255, 122, 24, 0.28);
  transition: transform 0.18s ease, box-shadow 0.25s ease;
}
.nav-cta:hover { transform: translateY(-1px); box-shadow: 0 12px 30px rgba(255, 122, 24, 0.42); }

/* ──────────────────────────── Страница ─────────────────────────── */

.page { padding: 0 clamp(18px, 5vw, 32px) 80px; }

.crumbs {
  max-width: var(--wide);
  margin: 26px auto 0;
  font-size: 13px;
  color: var(--faint);
  display: flex;
  gap: 8px;
}
.crumbs a { color: var(--faint); }
.crumbs a:hover { color: var(--muted); }

.post { max-width: var(--wide); margin: 0 auto; }

.post h1 {
  max-width: var(--content);
  font-size: clamp(30px, 5vw, 46px);
  line-height: 1.15;
  letter-spacing: -0.02em;
  font-weight: 800;
  margin: 26px 0 18px;
}

.post-lead {
  max-width: var(--content);
  font-size: 19px;
  line-height: 1.65;
  color: rgba(244, 244, 246, 0.82);
  margin: 0 0 20px;
}

.post-meta {
  max-width: var(--content);
  display: flex;
  gap: 10px;
  align-items: center;
  font-size: 13px;
  color: var(--faint);
  margin-bottom: 30px;
}

.post-hero { margin: 0 0 34px; }
.post-hero img { width: 100%; border-radius: 18px; border: 1px solid var(--line); display: block; }
.post-hero figcaption { margin-top: 10px; font-size: 13px; color: var(--faint); text-align: center; }

/* Содержание */
.post-toc {
  max-width: var(--content);
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 20px 24px;
  margin: 0 0 38px;
}
.toc-title {
  display: block;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--faint);
  margin-bottom: 10px;
}
.post-toc ol { margin: 0; padding-left: 20px; }
.post-toc li { margin: 6px 0; }
.post-toc a { color: rgba(244, 244, 246, 0.78); font-size: 15px; }

/* ───────────────────────── Типографика тела ────────────────────── */

.post h2 {
  max-width: var(--content);
  font-size: clamp(23px, 3.4vw, 30px);
  line-height: 1.25;
  letter-spacing: -0.015em;
  font-weight: 700;
  margin: 46px 0 16px;
  scroll-margin-top: 90px;
}

.post h3 {
  max-width: var(--content);
  font-size: 20px;
  font-weight: 700;
  margin: 32px 0 12px;
}

.post p,
.post ul,
.post ol,
.post blockquote { max-width: var(--content); }

.post p { margin: 0 0 18px; font-size: 17px; color: rgba(244, 244, 246, 0.86); }
.post li { margin: 8px 0; font-size: 17px; color: rgba(244, 244, 246, 0.86); }
.post strong { color: var(--fg); font-weight: 700; }

.post blockquote {
  margin: 26px 0;
  padding: 16px 22px;
  border-left: 3px solid var(--mango);
  background: rgba(255, 179, 62, 0.06);
  border-radius: 0 14px 14px 0;
  color: rgba(244, 244, 246, 0.9);
}
.post blockquote p:last-child { margin-bottom: 0; }

/* Таблицы — один из главных источников реальной пользы на странице */
.post .table-wrap { max-width: var(--wide); overflow-x: auto; margin: 28px 0; }
.post table {
  width: 100%;
  border-collapse: collapse;
  font-size: 15.5px;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 14px;
  overflow: hidden;
}
.post th, .post td { padding: 13px 16px; text-align: left; border-bottom: 1px solid var(--line); }
.post th { background: rgba(255, 255, 255, 0.04); font-weight: 700; font-size: 14px; }
.post tr:last-child td { border-bottom: none; }

.post figure { margin: 30px 0; }
.post figure img { border-radius: 16px; border: 1px solid var(--line); }
.post figcaption { margin-top: 9px; font-size: 13px; color: var(--faint); text-align: center; }

/* ═══════════════════ Конверсионный баннер ═══════════════════ */

.cta-banner {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 26px;
  flex-wrap: wrap;
  max-width: var(--wide);
  margin: 46px 0;
  padding: 30px 34px;
  border-radius: 22px;
  overflow: hidden;
  text-decoration: none !important;
  color: var(--fg);
  background:
    linear-gradient(140deg, rgba(255, 179, 62, 0.14) 0%, rgba(255, 122, 24, 0.05) 42%, rgba(18, 18, 24, 0) 78%),
    var(--panel);
  border: 1px solid rgba(255, 179, 62, 0.28);
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.4);
  transition: transform 0.22s ease, box-shadow 0.28s ease, border-color 0.28s ease;
}

.cta-banner:hover {
  transform: translateY(-3px);
  border-color: rgba(255, 179, 62, 0.55);
  box-shadow: 0 26px 64px rgba(255, 122, 24, 0.22), 0 18px 50px rgba(0, 0, 0, 0.45);
}

/* Тёплое пятно за текстом — даёт баннеру объём и «свет» бренда */
.cta-glow {
  position: absolute;
  top: -60%;
  left: -10%;
  width: 460px;
  height: 320px;
  background: radial-gradient(closest-side, rgba(255, 179, 62, 0.3), transparent 72%);
  filter: blur(18px);
  pointer-events: none;
}

.cta-text { position: relative; display: flex; flex-direction: column; gap: 8px; flex: 1 1 320px; }

.cta-headline {
  font-size: clamp(20px, 2.7vw, 26px);
  font-weight: 800;
  line-height: 1.22;
  letter-spacing: -0.015em;
}

.cta-subline { font-size: 15.5px; line-height: 1.55; color: rgba(244, 244, 246, 0.74); }

.cta-trust {
  font-size: 12.5px;
  letter-spacing: 0.02em;
  color: var(--mango);
  font-weight: 600;
}

.cta-action { position: relative; flex: 0 0 auto; }

.cta-button {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 17px 30px;
  border-radius: 15px;
  background: linear-gradient(120deg, var(--mango) 0%, var(--mango-2) 100%);
  color: #1a1206;
  font-weight: 800;
  font-size: 16.5px;
  white-space: nowrap;
  box-shadow: 0 12px 32px rgba(255, 122, 24, 0.36);
  transition: box-shadow 0.25s ease;
}
.cta-banner:hover .cta-button { box-shadow: 0 18px 42px rgba(255, 122, 24, 0.5); }
.cta-button svg { width: 19px; height: 19px; transition: transform 0.22s ease; }
.cta-banner:hover .cta-button svg { transform: translateX(4px); }

@media (max-width: 620px) {
  .cta-banner { padding: 24px 22px; gap: 20px; }
  .cta-action, .cta-button { width: 100%; justify-content: center; }
}

@media (prefers-reduced-motion: reduce) {
  .cta-banner, .cta-button svg { transition: none; }
  .cta-banner:hover { transform: none; }
}

/* ──────────────────────────── FAQ ──────────────────────────────── */

.post-faq { max-width: var(--content); margin: 48px 0 0; }
.post-faq details {
  border: 1px solid var(--line);
  border-radius: 14px;
  background: var(--panel);
  padding: 16px 20px;
  margin-bottom: 12px;
}
.post-faq summary { cursor: pointer; font-weight: 600; font-size: 16.5px; }
.post-faq summary::marker { color: var(--mango); }
.post-faq p { margin: 12px 0 0; color: rgba(244, 244, 246, 0.8); }

/* ───────────────────── Перелинковка ────────────────────────────── */

.related { max-width: var(--wide); margin: 66px auto 0; }
.related h2 { font-size: 22px; font-weight: 700; margin-bottom: 18px; }
.related-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 16px; }

.related-card {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 20px 22px;
  border-radius: 16px;
  background: var(--panel);
  border: 1px solid var(--line);
  color: var(--fg);
  transition: transform 0.18s ease, border-color 0.22s ease;
}
.related-card:hover { transform: translateY(-2px); border-color: rgba(255, 179, 62, 0.4); text-decoration: none; }
.related-title { font-weight: 700; font-size: 16.5px; line-height: 1.35; }
.related-lead { font-size: 14px; color: var(--muted); line-height: 1.5; }

/* ───────────────────── Листинг раздела ─────────────────────────── */

.listing { max-width: var(--wide); margin: 0 auto; }
.listing-head { margin: 30px 0 34px; }
.listing-head h1 { font-size: clamp(30px, 5vw, 44px); font-weight: 800; letter-spacing: -0.02em; margin: 0 0 12px; }
.listing-head p { font-size: 18px; color: var(--muted); max-width: var(--content); margin: 0; }
/* Счётчик материалов держим приглушённым: он подсказка о живости раздела,
   а не заголовок, и не должен спорить с описанием над ним. */
.listing-head p.listing-meta { font-size: 13.5px; color: var(--faint); margin-top: 14px; }
.listing-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 18px; }

/* ═══════════════════ Чат-виджет (Jivo-стиль) ═══════════════════ */

.jv-fab {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 9999;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--mango) 0%, var(--mango-2) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 4px 20px rgba(255,122,24,0.4);
  transition: transform 0.2s, box-shadow 0.2s;
}
.jv-fab:hover {
  transform: scale(1.08);
  box-shadow: 0 6px 28px rgba(255,122,24,0.55);
}
.jv-fab--active { background: #2B2B2B; box-shadow: 0 4px 16px rgba(0,0,0,0.4); }
.jv-fab--pulse { animation: jvPulse 2s ease-in-out infinite; }
@keyframes jvPulse {
  0%,100% { box-shadow: 0 4px 20px rgba(255,122,24,0.4); }
  50% { box-shadow: 0 4px 20px rgba(255,122,24,0.4), 0 0 0 10px rgba(255,179,62,0.15); }
}

.jv-fab-badge {
  position: absolute;
  top: -2px;
  right: -2px;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: #FF3B30;
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid var(--bg);
}

.jv-window {
  position: fixed;
  bottom: 96px;
  right: 24px;
  z-index: 9998;
  width: 370px;
  max-height: 520px;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 12px 48px rgba(0,0,0,0.5);
  display: none;
  flex-direction: column;
}
.jv-window--open {
  display: flex;
  animation: jvSlideUp 0.25s ease forwards;
}
@keyframes jvSlideUp {
  from { opacity: 0; transform: translateY(20px) scale(0.95); }
  to   { opacity: 1; transform: translateY(0) scale(1); }
}

.jv-header {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 16px;
  background: linear-gradient(135deg, #FF9500, #E8720C);
}

.jv-header-ava { position: relative; flex-shrink: 0; }
.jv-ava-circle {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255,255,255,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 18px;
  color: #fff;
}
.jv-ava-dot {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #4DCA56;
  border: 2.5px solid #E8720C;
}

.jv-header-info { flex: 1; min-width: 0; }
.jv-header-name {
  display: block;
  font-size: 16px;
  font-weight: 700;
  color: #fff;
}
.jv-header-status {
  display: block;
  font-size: 13px;
  color: rgba(255,255,255,0.75);
  margin-top: 1px;
}

.jv-header-close {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border: none;
  background: rgba(255,255,255,0.15);
  border-radius: 50%;
  cursor: pointer;
  flex-shrink: 0;
  transition: background 0.15s;
}
.jv-header-close:hover { background: rgba(255,255,255,0.25); }

.jv-body {
  flex: 1;
  overflow-y: auto;
  padding: 18px 16px 12px;
  background: #1A1A2E;
  background-image:
    radial-gradient(circle at 20% 30%, rgba(255,179,62,0.03) 0%, transparent 50%),
    radial-gradient(circle at 80% 70%, rgba(255,179,62,0.02) 0%, transparent 50%);
}

.jv-welcome {
  text-align: center;
  margin-bottom: 18px;
}
.jv-welcome-ava {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: linear-gradient(135deg, #FF9500, #E8720C);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 22px;
  color: #fff;
  margin-bottom: 10px;
}
.jv-welcome-text {
  font-size: 14px;
  color: rgba(244,244,246,0.6);
  margin: 0;
}

.jv-msg { display: flex; margin-bottom: 6px; }
.jv-msg--in { justify-content: flex-start; }
.jv-msg--out { justify-content: flex-end; }

.jv-msg-bubble {
  max-width: 85%;
  padding: 10px 14px 6px;
  border-radius: 16px;
  font-size: 14px;
  line-height: 1.5;
  display: inline-flex;
  flex-wrap: wrap;
  align-items: flex-end;
  gap: 8px;
}
.jv-msg--in .jv-msg-bubble {
  background: rgba(255,255,255,0.08);
  color: var(--fg);
  border-bottom-left-radius: 4px;
}
.jv-msg--out .jv-msg-bubble {
  background: linear-gradient(135deg, rgba(255,149,0,0.25), rgba(232,114,12,0.2));
  color: var(--fg);
  border-bottom-right-radius: 4px;
}

.jv-msg-text { display: inline; }

.jv-msg-name {
  display: block;
  font-size: 11px;
  font-weight: 600;
  color: var(--mango);
  margin-bottom: 2px;
}

.jv-msg-time {
  font-size: 11px;
  color: rgba(255,255,255,0.3);
  white-space: nowrap;
  flex-shrink: 0;
  margin-left: auto;
}

.tw-cursor { color: var(--mango); font-weight: 300; opacity: 0; }
.tw-cursor.tw-blink { animation: cursorBlink 0.9s step-end infinite; }
@keyframes cursorBlink { 0%,100%{opacity:1} 50%{opacity:0} }

.jv-typing-dots {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 4px 0;
}
.jv-typing-dots i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: rgba(255,255,255,0.5);
  display: block;
  animation: jvDot 1.4s ease-in-out infinite;
}
.jv-typing-dots i:nth-child(2) { animation-delay: 0.2s; }
.jv-typing-dots i:nth-child(3) { animation-delay: 0.4s; }
@keyframes jvDot {
  0%,60%,100% { transform: translateY(0); opacity: 0.4; }
  30% { transform: translateY(-5px); opacity: 1; }
}

.jv-system-msg {
  text-align: center;
  font-size: 12px;
  color: rgba(255,255,255,0.35);
  padding: 8px 16px;
  line-height: 1.4;
}

.jv-footer {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 12px;
  background: #141428;
  border-top: 1px solid rgba(255,255,255,0.06);
}

.jv-input {
  flex: 1;
  padding: 10px 16px;
  border-radius: 22px;
  border: 1px solid rgba(255,255,255,0.1);
  background: rgba(255,255,255,0.05);
  color: var(--fg);
  font-size: 14px;
  outline: none;
  transition: border-color 0.2s;
}
.jv-input::placeholder { color: var(--faint); }
.jv-input:focus { border-color: rgba(255,179,62,0.4); }

.jv-send {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: none;
  background: linear-gradient(135deg, var(--mango) 0%, var(--mango-2) 100%);
  color: #1a1206;
  cursor: pointer;
  flex-shrink: 0;
  transition: box-shadow 0.2s, transform 0.15s;
}
.jv-send:hover {
  box-shadow: 0 4px 14px rgba(255,122,24,0.4);
  transform: scale(1.05);
}

@media (max-width: 620px) {
  .jv-fab { bottom: 16px; right: 16px; width: 54px; height: 54px; }
  .jv-fab--active { display: none !important; }
  .jv-window {
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    max-height: none;
    border-radius: 0;
  }
  .jv-window--open { transform: none; }
  .jv-header { padding: 14px 16px; }
  .jv-ava-circle { width: 36px; height: 36px; font-size: 16px; }
  .jv-body { flex: 1; padding: 14px 12px 10px; min-height: 0; }
  .jv-msg-bubble { font-size: 14px; max-width: 88%; }
  .jv-footer { padding: 10px 12px; padding-bottom: max(10px, env(safe-area-inset-bottom)); }
  .jv-input { padding: 10px 14px; font-size: 15px; }
  .jv-send { width: 40px; height: 40px; }
}

/* ═══════════════════ Продающий оффер ════════════════════════════ */

.hero-offer {
  max-width: var(--wide);
  margin: 18px auto 8px;
  padding: 0 clamp(18px, 5vw, 32px);
  box-sizing: border-box;
}

.hero-offer-inner {
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 24px 28px;
  border-radius: 18px;
  box-sizing: border-box;
  width: 100%;
  background:
    linear-gradient(150deg, rgba(255, 179, 62, 0.1) 0%, rgba(18, 18, 24, 0) 60%),
    var(--panel);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.3);
}

.hero-offer-text {
  flex: 1 1 55%;
  min-width: 0;
}

.hero-offer-badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  margin: 0 0 12px;
  font-size: 13px;
  font-weight: 600;
  color: #34d058;
}
.hero-offer-badge .status-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #34d058;
  box-shadow: 0 0 6px rgba(52, 208, 88, 0.5);
  flex-shrink: 0;
}

.hero-offer-headline {
  font-size: clamp(20px, 3vw, 28px);
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: -0.02em;
  margin: 0 0 8px;
  color: var(--fg);
}

.hero-offer-subline {
  font-size: 15px;
  line-height: 1.55;
  color: rgba(244, 244, 246, 0.72);
  margin: 0 0 16px;
}

.hero-offer-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 12px;
}

.hero-offer-btn {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 11px 20px;
  border-radius: 12px;
  font-weight: 700;
  font-size: 14px;
  white-space: nowrap;
  text-decoration: none !important;
  transition: transform 0.18s ease, box-shadow 0.22s ease;
}
.hero-offer-btn:hover { transform: translateY(-1px); text-decoration: none !important; }

.hero-offer-btn--primary {
  background: linear-gradient(135deg, #2AABEE 0%, #1E96D1 100%);
  color: #fff;
  box-shadow: 0 10px 28px rgba(42, 171, 238, 0.35);
}
.hero-offer-btn--primary:hover { box-shadow: 0 14px 36px rgba(42, 171, 238, 0.52); }

.hero-offer-btn--ghost {
  background: linear-gradient(135deg, #E8356D 0%, #C22D5B 100%);
  color: #fff;
  border: none;
  box-shadow: 0 10px 28px rgba(232, 53, 109, 0.3);
}
.hero-offer-btn--ghost:hover {
  box-shadow: 0 14px 36px rgba(232, 53, 109, 0.48);
}

.hero-offer-trust {
  font-size: 12.5px;
  color: var(--faint);
  margin: 0;
  line-height: 1.5;
}

.hero-offer-visual {
  flex: 0 0 220px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-offer-visual img {
  width: 100%;
  height: auto;
  border-radius: 12px;
  object-fit: cover;
}

@media (max-width: 720px) {
  .site-head {
    padding: 10px 14px;
    gap: 8px;
  }
  .brand-mark { font-size: 18px; }
  .brand-name { font-size: 14px; }
  .site-nav { gap: 12px; }
  .site-nav a { font-size: 13px; }
  .nav-cta {
    padding: 7px 14px;
    font-size: 12.5px !important;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(255,122,24,0.2);
  }

  .hero-offer {
    margin-top: 14px;
    padding: 0 12px;
    width: 100%;
    box-sizing: border-box;
  }
  .hero-offer-inner {
    flex-direction: column;
    padding: 16px;
    gap: 12px;
    width: 100%;
    box-sizing: border-box;
  }
  .hero-offer-visual { display: none; }
  .hero-offer-text {
    flex: 1 1 auto;
    width: 100%;
    min-width: 0;
    box-sizing: border-box;
  }
  .hero-offer-headline { font-size: 19px; margin-bottom: 6px; word-wrap: break-word; }
  .hero-offer-subline { font-size: 13.5px; margin-bottom: 12px; line-height: 1.45; }
  .hero-offer-actions {
    flex-direction: column;
    gap: 8px;
    margin-bottom: 8px;
    width: 100%;
    box-sizing: border-box;
  }
  .hero-offer-btn {
    width: 100%;
    justify-content: center;
    padding: 12px 16px;
    font-size: 14px;
    box-sizing: border-box;
  }
  .hero-offer-trust { font-size: 11.5px; }
  .hero-offer-badge { margin-bottom: 8px; font-size: 12px; }
}

@media (prefers-reduced-motion: reduce) {
  .hero-offer-btn { transition: none; }
  .hero-offer-btn:hover { transform: none; }
}

/* ──────────────────────────── Подвал ───────────────────────────── */

.site-foot { border-top: 1px solid var(--line); padding: 28px clamp(18px, 5vw, 56px); }
.foot-inner {
  max-width: var(--wide);
  margin: 0 auto;
  display: flex;
  gap: 22px;
  flex-wrap: wrap;
  font-size: 13px;
  color: var(--faint);
}
.foot-inner a { color: var(--faint); }
.foot-inner a:hover { color: var(--muted); }
