/* ============================================================
   GRAEM — сайт · Дизайн-токены и компоненты (Концепция «Дерби»)
   Светлая тема. Кириллица. Fluid, mobile-first.
   ============================================================ */

/* ---------- Токены ---------- */
:root {
  /* Текст */
  --ink:   #17110F;   /* заголовки, макс контраст */
  --text:  #3B302D;   /* основной текст */
  --muted: #6E5F5B;   /* вторичный */
  --faint: #A0938E;   /* подписи, мета */

  /* Фоны */
  --bg:      #FBFAF9; /* страница */
  --bg-warm: #F3F0EE; /* альтернативная секция */
  --card:    #FFFFFF; /* карточки */
  --line:    #E8E1DD; /* границы */
  --line-hi: #DAD1CC;

  /* Бренд */
  --bordo:      #7F1D1D;  /* primary / акцент действия */
  --bordo-deep: #6A1717;  /* hover */
  --bordo-soft: #F4E7E7;  /* мягкая заливка */
  --steel:      #3F6B86;  /* ссылки / вторичный акцент */
  --steel-soft: #E7EFF3;

  /* Тёмные панели (арена) */
  --dark-1: #241417;
  --dark-2: #3A1D22;
  --dark-3: #5A2730;

  /* Семантика */
  --ok:    #2E7D50;
  --warn:  #C7791F;

  /* Радиусы */
  --r-lg: 22px;
  --r-md: 16px;
  --r-sm: 12px;
  --r-pill: 999px;

  /* Сетка */
  --container: 1200px;
  --gutter: 24px;
  --pad-sec: 104px;   /* верт. отступ секции (desktop) */

  /* Тени */
  --sh-1: 0 1px 2px rgba(23,17,15,.05);
  --sh-2: 0 12px 30px -14px rgba(23,17,15,.22);
  --sh-3: 0 40px 90px -40px rgba(36,20,23,.55);

  /* Шрифты */
  --disp: 'Unbounded', system-ui, sans-serif;
  --body: 'Golos Text', system-ui, sans-serif;
  --mono: 'JetBrains Mono', ui-monospace, monospace;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 84px; }
body {
  font-family: var(--body);
  background: var(--bg);
  color: var(--text);
  font-size: 18px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img { display: block; max-width: 100%; }

/* ---------- Ссылки ---------- */
a { color: var(--steel); text-decoration: none; transition: color .15s; }
a:hover { color: var(--bordo); }

/* ---------- Типографика ---------- */
.h1, h1 {
  font-family: var(--disp); font-weight: 800;
  font-size: clamp(38px, 5.4vw, 64px);
  line-height: 1.0; letter-spacing: -.02em; color: var(--ink);
  text-wrap: balance;
}
.h2, h2 {
  font-family: var(--disp); font-weight: 800;
  font-size: clamp(28px, 3.6vw, 44px);
  line-height: 1.04; letter-spacing: -.02em; color: var(--ink);
  text-wrap: balance;
}
.h3, h3 {
  font-family: var(--body); font-weight: 800;
  font-size: clamp(20px, 2.2vw, 24px);
  line-height: 1.2; letter-spacing: -.01em; color: var(--ink);
}
.h4 { font-family: var(--body); font-weight: 700; font-size: 18px; color: var(--ink); }
.lead { font-size: clamp(17px, 1.6vw, 21px); color: var(--muted); line-height: 1.55; text-wrap: pretty; }
.eyebrow {
  font-family: var(--mono); font-weight: 500; font-size: 13px;
  text-transform: uppercase; letter-spacing: .14em; color: var(--bordo);
  display: inline-flex; align-items: center; gap: 10px;
}
.eyebrow::before { content:''; width: 26px; height: 2px; background: var(--bordo); }
.eyebrow.steel { color: var(--steel); }
.eyebrow.steel::before { background: var(--steel); }
.muted { color: var(--muted); }

/* ---------- Раскладка ---------- */
.container { max-width: var(--container); margin: 0 auto; padding: 0 var(--gutter); }
.section { padding: var(--pad-sec) 0; }
.section.tight { padding: 72px 0; }
.section.warm { background: var(--bg-warm); }
.section.dark {
  background: linear-gradient(155deg, var(--dark-1) 0%, var(--dark-2) 55%, var(--dark-3) 120%);
  color: #EAD9D9;
}
.section.dark .h1, .section.dark .h2, .section.dark .h3, .section.dark .h4 { color: #fff; }
.section.dark .lead { color: #D6BFC0; }
.sec-head { max-width: 720px; margin-bottom: 44px; }
.sec-head .lead { margin-top: 16px; }

/* ---------- Кнопки ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  font-family: var(--body); font-weight: 700; font-size: 16px; line-height: 1;
  border-radius: var(--r-pill); border: 1.5px solid transparent;
  padding: 15px 26px; cursor: pointer; white-space: nowrap;
  transition: transform .12s, background .15s, border-color .15s, color .15s, box-shadow .15s;
  text-decoration: none;
}
.btn:focus-visible { outline: none; box-shadow: 0 0 0 3px var(--bg), 0 0 0 6px rgba(63,107,134,.55); }
.btn-primary { background: var(--bordo); color: #fff; box-shadow: var(--sh-2); }
.btn-primary:hover { background: var(--bordo-deep); color: #fff; transform: translateY(-2px); }
.btn-primary:active { transform: translateY(0); filter: brightness(.96); }
.btn-secondary { background: transparent; color: var(--ink); border-color: var(--line-hi); }
.btn-secondary:hover { border-color: var(--bordo); color: var(--bordo); transform: translateY(-2px); }
.btn-secondary:active { transform: translateY(0); }
.btn.on-dark { }
.btn-secondary.on-dark { color: #fff; border-color: rgba(255,255,255,.28); }
.btn-secondary.on-dark:hover { border-color: #fff; color: #fff; background: rgba(255,255,255,.06); }
.btn-lg { padding: 18px 32px; font-size: 17px; }
.btn-sm { padding: 11px 18px; font-size: 14px; }

/* ---------- Стор-кнопки (плейсхолдер под официальные бейджи) ---------- */
.stores { display: flex; gap: 12px; flex-wrap: wrap; }
.st {
  display: inline-flex; align-items: center; gap: 11px;
  padding: 10px 18px 10px 13px; border-radius: 14px;
  border: 1.5px solid var(--line-hi); background: var(--card); color: var(--ink);
  transition: border-color .15s, transform .12s, box-shadow .15s;
}
.st:hover { transform: translateY(-2px); border-color: var(--bordo); color: var(--ink); box-shadow: var(--sh-2); }
.st .g {
  width: 32px; height: 32px; border-radius: 9px; flex: none;
  background: var(--bordo); color: #fff; display: grid; place-items: center; font-size: 15px;
}
.st small { display: block; font-size: 10px; letter-spacing: .06em; text-transform: uppercase; color: var(--muted); line-height: 1.2; }
.st b { display: block; font-family: var(--disp); font-weight: 700; font-size: 15px; line-height: 1.15; }
.st.on-dark { background: rgba(255,255,255,.07); border-color: rgba(255,255,255,.16); color: #fff; }
.st.on-dark small { color: #C9B3B3; }
.st.on-dark:hover { border-color: rgba(255,255,255,.4); box-shadow: none; }
.hint { font-size: 13.5px; color: var(--faint); display: inline-flex; align-items: center; gap: 8px; }
.hint::before { content:''; width: 6px; height: 6px; border-radius: 50%; background: var(--bordo); flex: none; }
.section.dark .hint { color: #B79EA0; }

/* ---------- Бренд-марка ---------- */
.brand { display: inline-flex; align-items: center; gap: 11px; }
.brand .mark { width: 38px; height: 38px; border-radius: 10px; overflow: hidden; box-shadow: var(--sh-1); }
.brand .wm { font-family: var(--disp); font-weight: 700; font-size: 22px; letter-spacing: -.01em; color: var(--ink); }
.brand.on-dark .wm { color: #fff; }

/* ---------- Карточки ---------- */
.card {
  background: var(--card); border: 1px solid var(--line);
  border-radius: var(--r-lg); box-shadow: var(--sh-1);
}
.badge {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 12.5px; font-weight: 700; letter-spacing: .01em;
  padding: 5px 11px; border-radius: var(--r-pill);
}
.badge.bordo { background: var(--bordo-soft); color: var(--bordo); }
.badge.steel { background: var(--steel-soft); color: var(--steel); }
.badge.ok { background: #E4F2EA; color: var(--ok); }
.badge.warn { background: #FBF0DF; color: var(--warn); }

/* иконка-плитка (простая геом. фигура) */
.ico {
  width: 46px; height: 46px; border-radius: 13px; flex: none;
  display: grid; place-items: center;
  background: var(--bordo-soft); color: var(--bordo);
}
.ico.steel { background: var(--steel-soft); color: var(--steel); }
.ico svg { width: 22px; height: 22px; }

/* ---------- Телефон-мокап ---------- */
.phone { position: relative; border-radius: 40px; background: #050608; padding: 9px;
  box-shadow: 0 40px 90px -34px rgba(0,0,0,.7), 0 0 0 1px rgba(255,255,255,.06) inset; }
.phone .scr { border-radius: 31px; overflow: hidden; display: block; }
.phone .notch { position: absolute; top: 17px; left: 50%; transform: translateX(-50%);
  width: 34%; height: 24px; background: #050608; border-radius: 0 0 15px 15px; z-index: 2; }

/* ---------- Персона-двери ---------- */
.doors { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.door {
  display: flex; flex-direction: column; gap: 16px;
  padding: 28px; border-radius: var(--r-lg);
  background: var(--card); border: 1px solid var(--line); box-shadow: var(--sh-1);
  transition: transform .16s, box-shadow .16s, border-color .16s;
}
.door:hover { transform: translateY(-4px); box-shadow: var(--sh-2); border-color: var(--line-hi); }
.door .arrow { margin-top: auto; display: inline-flex; align-items: center; gap: 8px;
  font-weight: 700; color: var(--bordo); }
.door .arrow svg { width: 18px; height: 18px; transition: transform .16s; }
.door:hover .arrow svg { transform: translateX(4px); }

/* ---------- Боли → решения ---------- */
.pains { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.pain { display: flex; flex-direction: column; overflow: hidden; }
.pain .shot {
  background: linear-gradient(160deg, var(--dark-1), var(--dark-3));
  padding: 26px 26px 0; display: flex; justify-content: center;
  border-radius: var(--r-lg) var(--r-lg) 0 0;
}
.pain .shot .phone { width: 210px; margin-bottom: -18px; }
.pain .body { padding: 26px; }
.pain .q { font-family: var(--disp); font-weight: 700; font-size: 20px; color: var(--ink); letter-spacing: -.01em; }
.pain .a { margin-top: 10px; color: var(--muted); font-size: 15.5px; }
.pain .a b { color: var(--ink); font-weight: 700; }

/* ---------- Витрина возможностей (6 плиток) ---------- */
.tiles { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.tile {
  display: flex; flex-direction: column; gap: 14px;
  padding: 26px; border-radius: var(--r-md);
  background: var(--card); border: 1px solid var(--line);
  transition: transform .16s, box-shadow .16s, border-color .16s;
}
.tile:hover { transform: translateY(-3px); box-shadow: var(--sh-2); border-color: var(--line-hi); }
.tile h4 { font-family: var(--body); font-weight: 800; font-size: 18px; color: var(--ink); }
.tile p { font-size: 14.5px; color: var(--muted); }
.tile .arrow { margin-top: 4px; color: var(--bordo); font-weight: 700; font-size: 14px; }

/* ---------- Соцдоказательство ---------- */
.proof { display: grid; grid-template-columns: 1.1fr 1fr; gap: 28px; align-items: stretch; }
.stats { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; }
.stat { padding: 24px; border-radius: var(--r-md); background: var(--card); border: 1px solid var(--line); }
.stat .n { font-family: var(--disp); font-weight: 800; font-size: 40px; color: var(--ink); letter-spacing: -.02em; line-height: 1; }
.stat .n span { color: var(--bordo); }
.stat .t { margin-top: 8px; font-size: 14.5px; color: var(--muted); }
.quote {
  padding: 34px; border-radius: var(--r-lg);
  background: linear-gradient(155deg, var(--dark-1), var(--dark-3)); color: #F0E2E2;
  display: flex; flex-direction: column; gap: 20px; box-shadow: var(--sh-2);
}
.quote .qt { font-size: 21px; line-height: 1.45; color: #fff; text-wrap: pretty; }
.quote .qt::before { content:'«'; }
.quote .qt::after { content:'»'; }
.quote .who { display: flex; align-items: center; gap: 13px; margin-top: auto; }
.quote .who .av { width: 44px; height: 44px; border-radius: 50%; flex: none;
  background: var(--bordo); display: grid; place-items: center; color: #fff; font-weight: 800; font-family: var(--disp); }
.quote .who .nm { font-weight: 700; color: #fff; }
.quote .who .rl { font-size: 13.5px; color: #C6AEAF; }

/* ---------- Тарифы (тизер) ---------- */
.plans { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }
.plans.three { grid-template-columns: repeat(3, 1fr); }
.trust { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.trust .t-item h4 { font-size: 16px; margin-bottom: 6px; }
.trust .t-item p { font-size: 14px; color: var(--muted); }
.who-what { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.plan { padding: 30px; border-radius: var(--r-lg); background: var(--card); border: 1px solid var(--line); box-shadow: var(--sh-1); display: flex; flex-direction: column; gap: 18px; }
.plan.feature { border-color: var(--bordo); box-shadow: 0 0 0 1px var(--bordo), var(--sh-2); }
.plan .price { font-family: var(--disp); font-weight: 800; font-size: 38px; color: var(--ink); letter-spacing: -.02em; }
.plan .price small { font-family: var(--body); font-weight: 600; font-size: 16px; color: var(--muted); }
.plan ul { list-style: none; display: flex; flex-direction: column; gap: 11px; }
.plan li { display: flex; gap: 10px; font-size: 15.5px; color: var(--text); }
.plan li svg { width: 18px; height: 18px; flex: none; margin-top: 3px; color: var(--bordo); }

/* ---------- FAQ ---------- */
.faq { max-width: 820px; margin: 0 auto; }
.qa { border-bottom: 1px solid var(--line); }
.qa > summary {
  list-style: none; cursor: pointer;
  display: flex; align-items: center; justify-content: space-between; gap: 20px;
  padding: 24px 4px; font-family: var(--body); font-weight: 700; font-size: 19px; color: var(--ink);
}
.qa > summary::-webkit-details-marker { display: none; }
.qa > summary:hover { color: var(--bordo); }
.qa .sign { width: 24px; height: 24px; flex: none; position: relative; }
.qa .sign::before, .qa .sign::after { content:''; position: absolute; background: var(--bordo); border-radius: 2px; transition: transform .2s, opacity .2s; }
.qa .sign::before { top: 11px; left: 3px; width: 18px; height: 2px; }
.qa .sign::after { top: 3px; left: 11px; width: 2px; height: 18px; }
.qa[open] .sign::after { transform: rotate(90deg); opacity: 0; }
.qa .ans p { padding: 4px 4px 24px; color: var(--muted); font-size: 16px; max-width: 680px; }

/* ---------- Финальный CTA ---------- */
.cta-final { text-align: center; display: flex; flex-direction: column; align-items: center; gap: 22px; }
.cta-final .stores { justify-content: center; }

/* ============================================================
   ХЕДЕР
   ============================================================ */
.hdr {
  position: sticky; top: 0; z-index: 100;
  background: rgba(251,250,249,.9); backdrop-filter: blur(12px);
  border-bottom: 1px solid transparent; transition: border-color .2s, box-shadow .2s;
}
.hdr.scrolled { border-bottom-color: var(--line); box-shadow: var(--sh-1); }
.hdr .bar { display: flex; align-items: center; justify-content: space-between; height: 72px; }
.hdr nav { display: flex; align-items: center; gap: 34px; }
.hdr nav a { color: var(--text); font-weight: 600; font-size: 15.5px; position: relative; }
.hdr nav a::after { content:''; position: absolute; left: 0; right: 0; bottom: -6px; height: 2px; background: var(--bordo); transform: scaleX(0); transform-origin: left; transition: transform .18s; }
.hdr nav a:hover, .hdr nav a.active { color: var(--ink); }
.hdr nav a:hover::after, .hdr nav a.active::after { transform: scaleX(1); }
.hdr .right { display: flex; align-items: center; gap: 20px; }

/* бургер */
.burger { display: none; width: 44px; height: 44px; border: none; background: none; cursor: pointer; align-items: center; justify-content: center; flex-direction: column; gap: 5px; }
.burger i { width: 24px; height: 2px; background: var(--ink); border-radius: 2px; transition: transform .2s, opacity .2s; }
.burger.open i:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.burger.open i:nth-child(2) { opacity: 0; }
.burger.open i:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* мобильное меню */
.mobmenu {
  position: fixed; inset: 72px 0 0; z-index: 99;
  background: var(--bg); padding: 24px var(--gutter) 40px;
  display: flex; flex-direction: column; gap: 6px;
  transform: translateY(-8px); opacity: 0; pointer-events: none; transition: opacity .2s, transform .2s;
  overflow-y: auto;
}
.mobmenu.open { opacity: 1; transform: translateY(0); pointer-events: auto; }
.mobmenu a { font-family: var(--disp); font-weight: 700; font-size: 26px; color: var(--ink); padding: 16px 0; border-bottom: 1px solid var(--line); }
.mobmenu a:hover { color: var(--bordo); }
.mobmenu .btn { margin-top: 22px; }

/* ============================================================
   ФУТЕР
   ============================================================ */
.ft { background: var(--dark-1); color: #C6B4B5; padding: 64px 0 40px; }
.ft a { color: #C6B4B5; }
.ft a:hover { color: #fff; }
.ft .cols { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 32px; padding-bottom: 40px; border-bottom: 1px solid rgba(255,255,255,.1); }
.ft .wm { font-family: var(--disp); font-weight: 700; font-size: 22px; color: #fff; }
.ft h5 { font-family: var(--mono); text-transform: uppercase; letter-spacing: .1em; font-size: 12px; color: #9C8788; font-weight: 500; margin-bottom: 16px; }
.ft ul { list-style: none; display: flex; flex-direction: column; gap: 11px; font-size: 15px; }
.ft .bottom { display: flex; justify-content: space-between; align-items: center; gap: 20px; padding-top: 28px; font-size: 13.5px; color: #8A7677; flex-wrap: wrap; }

/* ============================================================
   HERO
   ============================================================ */
.hero { position: relative; overflow: hidden; }
.hero .container { display: grid; grid-template-columns: 1fr 480px; gap: 48px; align-items: center; padding-top: 76px; padding-bottom: 96px; }
.hero h1 { margin: 24px 0 22px; }
.hero .lead { max-width: 460px; }
.hero .stores { margin-top: 34px; }
.hero .hint { margin-top: 15px; }
.hero-panel {
  position: relative; border-radius: 30px; padding: 44px 0 0; display: flex; justify-content: center; align-items: flex-end;
  background: linear-gradient(155deg, var(--dark-1) 0%, var(--dark-2) 50%, var(--dark-3) 115%);
  box-shadow: var(--sh-3); overflow: hidden; min-height: 540px;
}
.hero-panel .idx { position: absolute; top: -30px; right: -10px; font-family: var(--disp); font-weight: 800; font-size: 230px; color: rgba(255,255,255,.05); line-height: 1; }
.hero-panel .glow { position: absolute; inset: 0; background: radial-gradient(60% 50% at 50% 108%, rgba(127,29,29,.55), transparent 70%); }
.hero-panel .phone { width: 268px; position: relative; margin-bottom: -30px; }

/* ============================================================
   Игрок-секция
   ============================================================ */
.player-band { display: grid; grid-template-columns: 1.1fr .9fr; gap: 48px; align-items: center; }
.player-plus {
  border-radius: var(--r-lg); padding: 30px; background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.12); display: flex; flex-direction: column; gap: 16px;
}
.player-plus .tag { align-self: flex-start; }
.player-plus ul { list-style: none; display: flex; flex-direction: column; gap: 12px; }
.player-plus li { display: flex; gap: 10px; color: #E7D6D6; font-size: 15.5px; }
.player-plus li svg { width: 18px; height: 18px; flex: none; margin-top: 3px; color: #E8907C; }

/* ============================================================
   АДАПТИВ
   ============================================================ */
@media (max-width: 1024px) {
  :root { --pad-sec: 80px; }
  .hero .container { grid-template-columns: 1fr 400px; gap: 32px; }
  .hero-panel .phone { width: 240px; }
  .proof { grid-template-columns: 1fr; }
  .player-band { grid-template-columns: 1fr; gap: 32px; }
}

@media (max-width: 860px) {
  .hdr nav, .hdr .right .btn { display: none; }
  .burger { display: flex; }
  .hero .container { grid-template-columns: 1fr; padding-top: 40px; padding-bottom: 56px; gap: 8px; }
  .hero-panel { min-height: 0; padding-top: 36px; margin-top: 12px; }
  .hero-panel .phone { width: 220px; margin-bottom: -24px; }
  .hero-panel .idx { font-size: 150px; top: -14px; }
  .doors { grid-template-columns: 1fr; }
  .pains { grid-template-columns: 1fr; }
  .tiles { grid-template-columns: 1fr; }
  .stats { grid-template-columns: 1fr 1fr; }
  .plans { grid-template-columns: 1fr; }
  .plans.three { grid-template-columns: 1fr; }
  .trust { grid-template-columns: 1fr 1fr; }
  .who-what { grid-template-columns: 1fr; }
  .ft .cols { grid-template-columns: 1fr 1fr; gap: 28px; }
}

@media (max-width: 460px) {
  body { font-size: 17px; }
  :root { --pad-sec: 60px; --gutter: 20px; }
  .stores .st { flex: 1 1 auto; }
  .stat .n { font-size: 34px; }
  .ft .cols { grid-template-columns: 1fr; }
}

/* ============================================================
   ФИЧЕ-ЛЕНДИНГ (шаблон)
   ============================================================ */
/* Чередующиеся блоки «текст + скриншот» */
.alt { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; padding: 44px 0; }
.alt.rev .alt-txt { order: 2; }
.alt.rev .alt-shot { order: 1; }
.alt-txt .eyebrow { margin-bottom: 16px; }
.alt-txt h2 { margin-bottom: 14px; }
.alt-txt .checks { list-style: none; display: flex; flex-direction: column; gap: 11px; margin-top: 20px; }
.alt-txt .checks li { display: flex; gap: 10px; font-size: 15.5px; color: var(--text); }
.alt-txt .checks li svg { width: 18px; height: 18px; flex: none; margin-top: 3px; color: var(--bordo); }
.alt-shot { display: flex; justify-content: center; }
.shot-panel {
  border-radius: 28px; padding: 44px 0 0; display: flex; justify-content: center; align-items: flex-end;
  width: 100%; max-width: 440px; overflow: hidden; box-shadow: var(--sh-2);
}
.shot-panel.bordo { background: linear-gradient(155deg, #2E1416, #5A2730); }
.shot-panel.steel { background: linear-gradient(155deg, #16242E, #2C4E63); }
.shot-panel.ink   { background: linear-gradient(155deg, var(--dark-1), var(--dark-3)); }
.shot-panel .phone { width: 248px; margin-bottom: -30px; }

/* Как это работает — 4 шага */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; counter-reset: step; }
.step {
  position: relative; padding: 28px 24px; border-radius: var(--r-md);
  background: var(--card); border: 1px solid var(--line);
}
.step .num {
  font-family: var(--disp); font-weight: 800; font-size: 40px; line-height: 1;
  color: var(--bordo); letter-spacing: -.02em;
}
.step h4 { margin: 16px 0 8px; }
.step p { font-size: 14.5px; color: var(--muted); }
.section.warm .step { background: #fff; }

/* Шаблонная плашка (для демонстрации, что это один шаблон) */
.tmpl-note {
  background: var(--steel-soft); color: var(--steel);
  font-family: var(--mono); font-size: 12.5px; letter-spacing: .02em;
  text-align: center; padding: 10px 20px;
}
.tmpl-note b { color: var(--steel); }

@media (max-width: 860px) {
  .alt { grid-template-columns: 1fr; gap: 28px; padding: 28px 0; }
  .alt.rev .alt-txt { order: 1; }
  .alt.rev .alt-shot { order: 2; }
  .shot-panel { max-width: 360px; margin: 0 auto; }
  .steps { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 460px) {
  .steps { grid-template-columns: 1fr; }
}
