/* =========================================================
   Лендинг «Поставщикам» — стили
   Направление: приглушённый хай-тек. Тёмная база (near-black),
   чередование тёмных и светлых секций, свечение оранжевый + блю,
   тонкая сетка-грид на тёмных секциях. Каналы — только текстом.
   ========================================================= */

:root {
  /* тёмные поверхности */
  --bg-dark: #16191D;
  --bg-dark-2: #1B1F25;
  --panel: #1C2127;
  --panel-2: #21282F;
  --panel-input: #12151A;
  --d-border: rgba(255, 255, 255, 0.09);
  --grid: rgba(255, 255, 255, 0.035);
  --d-text: #ECEFF2;
  --d-text-soft: #9BA7B3;

  /* светлые поверхности */
  --paper: #F1EFEA;
  --paper-2: #FBFAF7;
  --ink: #15181C;
  --ink-soft: #55606B;
  --l-border: rgba(21, 24, 28, 0.08);

  /* акценты */
  --accent: #E8762C;
  --accent-2: #F0A15E;
  --accent-deep: #CB6220;
  --blue: #4A93C7;
  --blue-bright: #5AB0E6;
  --ok: #2F9E68;

  /* свечения */
  --glow-accent: 0 0 24px rgba(232, 118, 44, 0.35);
  --glow-accent-soft: 0 8px 26px rgba(232, 118, 44, 0.28);

  --radius: 14px;
  --radius-lg: 20px;
  --container: 1160px;

  --shadow: 0 16px 40px rgba(0, 0, 0, 0.35);
  --shadow-soft: 0 6px 20px rgba(0, 0, 0, 0.18);
  --shadow-light: 0 8px 24px rgba(21, 24, 28, 0.08);

  --ff-head: "Unbounded", "Onest", system-ui, sans-serif;
  --ff-body: "Onest", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
}

/* ---------- База ---------- */
* { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; overflow-x: hidden; }

body {
  margin: 0;
  font-family: var(--ff-body);
  font-size: clamp(16px, 1.05vw, 18px);
  line-height: 1.65;
  color: var(--d-text);
  background: var(--bg-dark);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

img, svg { max-width: 100%; height: auto; display: block; }

a { color: var(--blue-bright); text-decoration: none; }
a:hover { text-decoration: underline; }

h1, h2, h3, h4 {
  font-family: var(--ff-head); font-weight: 700; line-height: 1.12;
  letter-spacing: -0.01em; margin: 0;
}
p { margin: 0 0 1rem; }
p:last-child { margin-bottom: 0; }

/* ---------- Служебное ---------- */
.container { width: 100%; max-width: var(--container); margin-inline: auto; padding-inline: clamp(16px, 5vw, 32px); }
.container.narrow { max-width: 760px; }
.section { padding-block: clamp(52px, 8vw, 104px); position: relative; scroll-margin-top: 72px; }
#contacts { scroll-margin-top: 84px; }

.eyebrow {
  font-family: var(--ff-body); font-weight: 600; font-size: 0.82rem;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--accent); margin: 0 0 0.85rem;
}
.eyebrow.center { text-align: center; }

.section-title { font-size: clamp(1.6rem, 3.6vw, 2.6rem); margin-bottom: 0.6em; }
.section-title.center { text-align: center; }
.lead { font-size: clamp(1.05rem, 1.6vw, 1.25rem); }
.center { text-align: center; }
.accent { color: var(--accent); }

.skip-link {
  position: absolute; left: -999px; top: 0; z-index: 100;
  background: var(--accent); color: #fff; padding: 12px 18px; border-radius: 0 0 10px 0;
}
.skip-link:focus { left: 0; }

:focus-visible { outline: 3px solid var(--accent); outline-offset: 2px; border-radius: 4px; }

/* ---------- Тёмные и светлые секции ---------- */
/* Тёмные: hero, выгоды, возвраты, форма — с грид-сеткой */
.hero, .benefits, .returns, .section.lead {
  background-color: var(--bg-dark);
  background-image:
    linear-gradient(var(--grid) 1px, transparent 1px),
    linear-gradient(90deg, var(--grid) 1px, transparent 1px);
  background-size: 46px 46px;
  color: var(--d-text);
}
/* Светлые: проблема, о нас, требования, FAQ */
.problem, .about, .requirements, .faq {
  background-color: var(--paper);
  color: var(--ink);
}
.problem .section-title, .about .section-title,
.requirements .section-title, .faq .section-title { color: var(--ink); }
.problem .lead, .about .about-copy p { color: var(--ink-soft); }
.about .eyebrow, .requirements .eyebrow { color: var(--accent-deep); }
.problem .eyebrow, .faq .eyebrow { color: var(--accent-deep); }

/* тексты на тёмных секциях */
.hero .lead, .benefits .lead, .returns .lead { color: var(--d-text-soft); }

/* ---------- Кнопки ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 0.5em;
  font-family: var(--ff-body); font-weight: 600; font-size: 1rem; line-height: 1;
  text-align: center; padding: 14px 22px; border-radius: 12px; border: 1.5px solid transparent;
  cursor: pointer; text-decoration: none;
  transition: transform .12s ease, background-color .15s ease, border-color .15s ease, box-shadow .2s ease, color .15s ease;
}
.btn:hover { text-decoration: none; }
.btn:active { transform: translateY(1px); }

.btn-primary { background: var(--accent); color: #fff; box-shadow: var(--glow-accent-soft); }
.btn-primary:hover { background: var(--accent-deep); box-shadow: 0 10px 30px rgba(232, 118, 44, 0.42); }

.btn-ghost { background: transparent; color: inherit; border-color: rgba(255, 255, 255, 0.28); }
.btn-ghost:hover { border-color: var(--accent); color: #fff; box-shadow: 0 0 0 1px rgba(232, 118, 44, 0.3), var(--glow-accent); }

.btn-lg { padding: 17px 30px; font-size: 1.06rem; }
.btn-sm { padding: 10px 16px; font-size: 0.95rem; }
.btn-block { width: 100%; }

/* иконка-кнопка (логотипы Telegram / MAX в шапке) */
.btn-icon {
  display: inline-flex; align-items: center; justify-content: center;
  width: 42px; height: 42px; padding: 0; border-radius: 11px;
  border: 1.5px solid rgba(255, 255, 255, 0.22); background: transparent;
  cursor: pointer; text-decoration: none;
  transition: border-color .15s ease, box-shadow .2s ease, transform .12s ease;
}
.btn-icon:hover { border-color: var(--accent); box-shadow: var(--glow-accent); }
.btn-icon:active { transform: translateY(1px); }
.btn-icon svg { width: 24px; height: 24px; display: block; }

/* ============================================================
   БЛОК 0 · Шапка
   ============================================================ */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(18, 21, 26, 0.82);
  backdrop-filter: saturate(140%) blur(10px);
  color: var(--d-text);
  border-bottom: 1px solid var(--d-border);
}
.header-inner { display: flex; align-items: center; justify-content: space-between; gap: 16px; min-height: 64px; }
.brand { display: inline-flex; align-items: center; gap: 10px; color: var(--d-text); font-weight: 700; }
.brand:hover { text-decoration: none; }
.brand-mark { color: var(--accent); display: inline-flex; filter: drop-shadow(0 0 6px rgba(232, 118, 44, 0.5)); }
.brand-text { font-family: var(--ff-head); font-size: 1.02rem; letter-spacing: -0.01em; }
.header-actions { display: flex; align-items: center; gap: 10px; }
.header-actions .btn-ghost { color: var(--d-text); }

/* ============================================================
   БЛОК 1 · HERO
   ============================================================ */
.hero { overflow: hidden; }
.hero::before {
  /* световые пятна поверх сетки */
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background:
    radial-gradient(760px 420px at 78% 18%, rgba(74, 147, 199, 0.20), transparent 62%),
    radial-gradient(680px 460px at 12% 108%, rgba(232, 118, 44, 0.16), transparent 58%);
}
.hero-grid {
  position: relative; z-index: 1;
  display: grid; grid-template-columns: minmax(0, 1fr); gap: clamp(24px, 5vw, 48px);
  align-items: center; padding-block: clamp(52px, 8vw, 96px);
}
.hero-copy, .hero-visual { min-width: 0; }
.hero-title {
  font-family: var(--ff-head); font-weight: 800;
  font-size: clamp(2rem, 6.5vw, 4.3rem); line-height: 1.03; letter-spacing: -0.02em;
  margin-bottom: 0.5em; color: #fff;
}
.hero-title .accent { color: var(--accent); text-shadow: 0 0 28px rgba(232, 118, 44, 0.45); }
.hero-sub { font-size: clamp(1.1rem, 1.9vw, 1.4rem); color: var(--d-text-soft); max-width: 36ch; margin-bottom: 1.6em; }
.hero-cta { display: flex; flex-wrap: wrap; gap: 12px; margin-bottom: 1.1em; }
.hero-note { font-size: 0.92rem; color: var(--d-text-soft); margin: 0; }

.hero-visual { justify-self: center; width: 100%; max-width: 600px; }
.dataflow { width: 100%; height: auto; filter: drop-shadow(0 0 1px rgba(0, 0, 0, 0.4)); }
.channels .ch rect { filter: drop-shadow(0 0 10px rgba(0, 0, 0, 0.45)); }

/* плашка каналов */
.platform-bar { position: relative; z-index: 1; border-top: 1px solid var(--d-border); background: rgba(0, 0, 0, 0.25); }
.platform-bar-inner {
  display: flex; align-items: center; justify-content: center; flex-wrap: wrap; gap: 14px;
  padding-block: 16px; font-family: var(--ff-head); font-weight: 600; letter-spacing: 0.02em;
  color: var(--d-text); font-size: clamp(0.95rem, 2vw, 1.15rem);
}
.platform-bar-inner i { color: var(--accent); font-style: normal; }

/* ============================================================
   БЛОК 2 · Проблема → решение (светлая)
   ============================================================ */
.problem { text-align: center; }
.problem .section-title { max-width: 22em; margin-inline: auto; }
.problem .lead { max-width: 60ch; margin-inline: auto; }

/* фиксированные переносы строк только на широких экранах */
.hb { display: none; }
@media (min-width: 900px) { .hb { display: inline; } }

/* ============================================================
   БЛОК 3 · Выгоды (тёмная)
   ============================================================ */
.benefits .section-title { color: #fff; }
.benefits-grid { display: grid; grid-template-columns: 1fr; gap: 18px; margin-top: 2.2rem; position: relative; z-index: 1; }
.benefit {
  background: var(--panel); border: 1px solid var(--d-border); border-radius: var(--radius);
  padding: 26px; box-shadow: var(--shadow-soft);
  transition: border-color .18s ease, transform .18s ease, box-shadow .2s ease;
}
.benefit:hover { transform: translateY(-3px); border-color: rgba(74, 147, 199, 0.5); }
.benefit h3 { font-size: 1.2rem; margin-bottom: 0.4em; color: #fff; }
.benefit p { color: var(--d-text-soft); margin: 0; }
.benefit-icon {
  display: inline-flex; width: 46px; height: 46px; margin-bottom: 14px;
  align-items: center; justify-content: center; border-radius: 12px;
  background: rgba(74, 147, 199, 0.14); color: var(--blue-bright);
}
.benefit-icon svg { width: 24px; height: 24px; }

/* главный крючок */
.benefit-hero {
  background: linear-gradient(158deg, #2A2016, #211a13 60%, var(--panel));
  border-color: rgba(232, 118, 44, 0.55);
  box-shadow: var(--glow-accent-soft), var(--shadow);
  position: relative; overflow: hidden;
}
.benefit-hero:hover { border-color: var(--accent); }
.benefit-hero::after {
  content: "Главное"; position: absolute; top: 16px; right: -34px; transform: rotate(45deg);
  background: var(--accent); color: #fff; font-size: 0.72rem; font-weight: 700;
  letter-spacing: 0.08em; text-transform: uppercase; padding: 4px 44px;
  box-shadow: 0 4px 14px rgba(232, 118, 44, 0.5);
}
.benefit-hero .benefit-icon { background: rgba(232, 118, 44, 0.2); color: var(--accent); }

/* ============================================================
   БЛОК 4 · О нас (светлая)
   ============================================================ */
.about-grid { display: grid; grid-template-columns: 1fr; gap: clamp(28px, 5vw, 56px); align-items: start; }
.about-facts { list-style: none; margin: 0; padding: 0; display: grid; gap: 14px; }
.fact {
  display: flex; align-items: center; gap: 16px;
  background: var(--paper-2); border-radius: var(--radius); padding: 18px 20px;
  border: 1px solid var(--l-border); box-shadow: var(--shadow-light);
  transition: border-color .18s ease, transform .18s ease;
}
.fact:hover { transform: translateY(-2px); border-color: rgba(232, 118, 44, 0.45); }
.fact-icon {
  flex: none; width: 48px; height: 48px; display: inline-flex;
  align-items: center; justify-content: center; border-radius: 12px;
  background: rgba(232, 118, 44, 0.12); color: var(--accent);
}
.fact-icon svg { width: 26px; height: 26px; }
.fact-body { display: flex; flex-direction: column; gap: 2px; }
.fact-body b { font-family: var(--ff-head); font-size: 1.4rem; line-height: 1.1; color: var(--accent); }
.fact-body span { color: var(--ink-soft); font-size: 0.95rem; line-height: 1.35; }

/* ============================================================
   БЛОК 3.1 · Как строится работа (процесс, тёмная)
   ============================================================ */
.process { background: var(--paper-2); color: var(--ink); }
.process .section-title { color: var(--ink); }
.process .lead { color: var(--ink-soft); }
.process-intro { max-width: 56ch; margin-inline: auto; }

.steps {
  list-style: none; margin: 2.6rem 0 0; padding: 0;
  display: grid; grid-template-columns: 1fr; gap: 16px;
}
.step {
  position: relative; background: var(--paper); border: 1px solid var(--l-border);
  border-radius: var(--radius); padding: 24px 22px 22px; box-shadow: var(--shadow-light);
  transition: border-color .18s ease, transform .18s ease;
}
.step:hover { transform: translateY(-3px); border-color: rgba(232, 118, 44, 0.5); }
.step-num {
  display: inline-flex; align-items: center; justify-content: center;
  width: 38px; height: 38px; border-radius: 10px; margin-bottom: 12px;
  font-family: var(--ff-head); font-weight: 700; font-size: 1.05rem;
  color: #fff; background: var(--accent); box-shadow: var(--glow-accent);
}
.step h3 { color: var(--ink); font-size: 1.12rem; margin-bottom: 0.35em; }
.step p { color: var(--ink-soft); margin: 0; font-size: 0.98rem; }

@media (min-width: 680px)  { .steps { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1040px) { .steps { grid-template-columns: repeat(5, 1fr); } .step { padding: 22px 18px; } }

/* дашборд-пример (безопасный мок, без финансовых данных) */
.dash-mock {
  margin: 2.6rem 0 0; border: 1px solid var(--d-border); border-radius: var(--radius-lg);
  overflow: hidden; background: var(--panel); box-shadow: var(--shadow);
}
.dash-bar {
  display: flex; align-items: center; gap: 8px; padding: 12px 16px;
  background: #12161B; border-bottom: 1px solid var(--d-border);
}
.dash-bar .dot { width: 10px; height: 10px; border-radius: 50%; }
.dash-bar .dot.r { background: #E5674F; }
.dash-bar .dot.y { background: #E8B54A; }
.dash-bar .dot.g { background: #43C88A; }
.dash-title { font-weight: 600; font-size: 0.92rem; color: var(--d-text); margin-left: 6px; }
.dash-table { width: 100%; overflow-x: auto; }
table.dash { width: 100%; border-collapse: collapse; font-size: 0.9rem; min-width: 520px; }
table.dash th, table.dash td {
  text-align: left; padding: 11px 16px; border-bottom: 1px solid var(--d-border);
  color: var(--d-text-soft); white-space: nowrap;
}
table.dash th {
  font-weight: 600; color: var(--d-text); background: rgba(255, 255, 255, 0.02);
  font-size: 0.78rem; text-transform: uppercase; letter-spacing: 0.04em;
}
table.dash tbody tr:last-child td { border-bottom: 0; }
table.dash td.prod { color: var(--d-text); white-space: normal; }
.mp { font-size: 0.72rem; font-weight: 700; padding: 3px 8px; border-radius: 6px; letter-spacing: 0.03em; }
.mp.oz { background: rgba(74, 147, 199, 0.16); color: #8CCBF2; }
.mp.wb { background: rgba(232, 118, 44, 0.16); color: #F6B87A; }
.mp.ym { background: rgba(67, 200, 138, 0.16); color: #6EE0A6; }
.st { font-size: 0.76rem; font-weight: 600; padding: 4px 10px; border-radius: 999px; white-space: nowrap; }
.st.pay  { background: rgba(47, 158, 104, 0.18); color: #6EE0A6; }
.st.ship { background: rgba(74, 147, 199, 0.18); color: #8CCBF2; }
.st.pack { background: rgba(232, 181, 74, 0.16); color: #E8C77A; }
.dash-cap {
  padding: 15px 18px; font-size: 0.98rem; line-height: 1.5; color: var(--d-text-soft);
  background: #12161B; border-top: 1px solid var(--d-border);
  border-left: 3px solid var(--accent); margin: 0;
}
.dash-cap b { color: #F6B87A; font-weight: 600; }

/* на мобилке таблица не должна распирать экран — вписываем без мин-ширины */
@media (max-width: 560px) {
  table.dash { min-width: 0; font-size: 0.82rem; }
  table.dash th, table.dash td { padding: 9px 10px; }
}

/* ============================================================
   БЛОК 5 · Возвраты (тёмная)
   ============================================================ */
.returns .section-title { color: #fff; }
.returns-grid { display: grid; grid-template-columns: 1fr; gap: 18px; margin-top: 2.2rem; position: relative; z-index: 1; }
.return-card {
  background: var(--panel); border: 1px solid var(--d-border); border-left: 3px solid var(--blue);
  border-radius: var(--radius); padding: 24px; box-shadow: var(--shadow-soft);
}
.return-card.ok { border-left-color: var(--ok); }
.return-tag {
  display: inline-block; font-size: 0.78rem; font-weight: 700; letter-spacing: 0.06em;
  text-transform: uppercase; color: var(--blue-bright); margin-bottom: 10px;
}
.return-card.ok .return-tag { color: #43C88A; }
.return-card p { margin: 0; color: var(--d-text-soft); }

.returns-note {
  display: flex; align-items: flex-start; gap: 16px; margin-top: 22px;
  background: var(--panel); border: 1px solid var(--d-border);
  border-left: 3px solid var(--blue); border-radius: var(--radius);
  padding: 20px 22px; box-shadow: var(--shadow-soft);
}
.returns-note-icon {
  flex: none; width: 44px; height: 44px; display: inline-flex;
  align-items: center; justify-content: center; border-radius: 12px;
  background: rgba(74, 147, 199, 0.14); color: var(--blue-bright);
}
.returns-note-icon svg { width: 24px; height: 24px; }
.returns-note p { margin: 0; color: var(--d-text-soft); }
.returns-note b { color: #fff; font-weight: 600; }

/* ============================================================
   БЛОК 6 · Требования + категории (светлая)
   ============================================================ */
.req-grid { display: grid; grid-template-columns: 1fr; gap: clamp(28px, 5vw, 48px); align-items: start; }
.check-list { list-style: none; margin: 1rem 0 0; padding: 0; display: grid; gap: 12px; }
.check-list li { position: relative; padding-left: 34px; color: var(--ink-soft); }
.check-list li::before {
  content: ""; position: absolute; left: 0; top: 3px; width: 22px; height: 22px; border-radius: 6px;
  background: rgba(47, 158, 104, 0.16);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none'%3E%3Cpath d='M20 7 9.5 17.5 4 12' stroke='%232F9E68' stroke-width='2.4' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: center; background-size: 16px;
}
.categories {
  background: var(--panel); color: var(--d-text); border-radius: var(--radius-lg);
  padding: 26px; border: 1px solid var(--d-border); box-shadow: var(--shadow-soft);
}
.categories h3 { color: #fff; font-size: 1.2rem; margin-bottom: 1rem; }
.tags { list-style: none; margin: 0 0 1rem; padding: 0; display: flex; flex-wrap: wrap; gap: 10px; }
.tags li {
  background: rgba(255, 255, 255, 0.05); border: 1px solid var(--d-border);
  padding: 8px 14px; border-radius: 999px; font-size: 0.95rem; font-weight: 500;
}
.categories-note { color: var(--d-text-soft); font-size: 0.95rem; margin: 0; }

/* ============================================================
   БЛОК 7 · Без скрытых платежей (тёмная, акцентная)
   ============================================================ */
.nofee { background: var(--paper-2); color: var(--ink); }
.nofee .section-title { color: var(--ink); }
.nofee .lead { color: var(--ink-soft); }
.nofee-inner {
  text-align: center; border: 1.5px dashed rgba(232, 118, 44, 0.6); border-radius: var(--radius-lg);
  padding: clamp(28px, 5vw, 46px); background: rgba(232, 118, 44, 0.06);
}

/* ============================================================
   БЛОК 8 · FAQ (светлая)
   ============================================================ */
.faq-list { margin-top: 2.2rem; display: grid; gap: 12px; }
.faq-item {
  background: var(--paper-2); border: 1px solid var(--l-border); border-radius: var(--radius);
  overflow: hidden; box-shadow: var(--shadow-light);
}
.faq-item summary {
  list-style: none; cursor: pointer; padding: 18px 52px 18px 22px; position: relative;
  font-family: var(--ff-head); font-weight: 600; font-size: 1.05rem; color: var(--ink);
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: ""; position: absolute; right: 20px; top: 50%; width: 14px; height: 14px;
  transform: translateY(-50%);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none'%3E%3Cpath d='M6 9l6 6 6-6' stroke='%23E8762C' stroke-width='2.2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: center; background-size: contain;
  transition: transform .2s ease;
}
.faq-item[open] summary::after { transform: translateY(-50%) rotate(180deg); }
.faq-answer { padding: 0 22px 20px; color: var(--ink-soft); }
.faq-answer p { margin: 0; }

/* ============================================================
   БЛОК 9 · Форма заявки (тёмная)
   ============================================================ */
.section.lead { overflow: hidden; }
.lead-grid { display: grid; grid-template-columns: 1fr; gap: clamp(28px, 5vw, 56px); align-items: start; position: relative; z-index: 1; }
.section.lead .section-title { color: #fff; }
.section.lead .eyebrow { color: var(--accent); }
.section.lead .lead { color: var(--d-text-soft); }

.direct-contacts { margin-top: 2rem; }
.direct-title { color: var(--d-text-soft); font-size: 0.95rem; margin-bottom: 0.75rem; }
.contact-link {
  display: flex; align-items: center; gap: 10px; color: var(--d-text);
  padding: 12px 16px; border: 1px solid var(--d-border); border-radius: 12px; margin-bottom: 10px;
  font-weight: 500; background: rgba(255, 255, 255, 0.03);
  transition: border-color .15s ease, background-color .15s ease, box-shadow .2s ease;
}
.contact-link:hover { text-decoration: none; border-color: var(--accent); background: rgba(232, 118, 44, 0.08); box-shadow: var(--glow-accent); }
.contact-link span { color: var(--accent); font-size: 1.1rem; }

.lead-form {
  background: var(--panel-2); color: var(--d-text); border: 1px solid var(--d-border);
  border-radius: var(--radius-lg); padding: clamp(22px, 4vw, 34px); box-shadow: var(--shadow);
}
.field { margin-bottom: 18px; }
.field label { display: block; font-weight: 600; font-size: 0.95rem; margin-bottom: 7px; color: var(--d-text); }
.field input, .field textarea {
  width: 100%; font: inherit; color: var(--d-text);
  padding: 13px 15px; border: 1.5px solid var(--d-border); border-radius: 12px;
  background: var(--panel-input); transition: border-color .15s ease, box-shadow .15s ease;
}
.field input::placeholder, .field textarea::placeholder { color: #6B7681; }
.field textarea { resize: vertical; min-height: 84px; }
.field input:focus, .field textarea:focus {
  outline: none; border-color: var(--accent); box-shadow: 0 0 0 3px rgba(232, 118, 44, 0.22);
}
.field input:user-invalid, .field textarea:user-invalid { border-color: #E5674F; }

.hp { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }

.consent {
  display: grid; grid-template-columns: auto 1fr; gap: 10px; align-items: start;
  font-size: 0.9rem; color: var(--d-text-soft); margin-bottom: 20px; line-height: 1.45;
}
.consent input { margin-top: 3px; width: 18px; height: 18px; accent-color: var(--accent); }
.consent a { color: var(--blue-bright); text-decoration: underline; }

.form-status { margin: 16px 0 0; padding: 14px 16px; border-radius: 12px; font-weight: 500; font-size: 0.98rem; }
.form-status.ok { background: rgba(47, 158, 104, 0.16); color: #6EE0A6; }
.form-status.err { background: rgba(229, 103, 79, 0.14); color: #F0A08E; }

/* ============================================================
   БЛОК 10 · Футер (тёмная, глубокая)
   ============================================================ */
.site-footer { background: #101317; color: var(--d-text-soft); padding-block: clamp(42px, 6vw, 66px) 24px; border-top: 1px solid var(--d-border); }
.footer-grid { display: grid; grid-template-columns: 1fr; gap: 28px; }
.brand--footer { color: var(--d-text); margin-bottom: 12px; }
.footer-tagline { font-size: 0.95rem; max-width: 42ch; }
.footer-col h4 { color: var(--d-text); font-family: var(--ff-body); font-size: 1rem; margin-bottom: 12px; }
.footer-col ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 8px; }
.footer-col a { color: var(--d-text-soft); }
.footer-col a:hover { color: var(--accent); }
.footer-bottom {
  margin-top: 32px; padding-top: 20px; border-top: 1px solid var(--d-border);
  display: flex; flex-wrap: wrap; justify-content: space-between; gap: 8px;
  font-size: 0.85rem; color: var(--d-text-soft);
}
.footer-bottom p { margin: 0; }

/* =========================================================
   Адаптив (mobile-first → расширяем)
   ========================================================= */
@media (min-width: 620px) {
  .benefits-grid { grid-template-columns: repeat(2, 1fr); }
  .returns-grid { grid-template-columns: repeat(3, 1fr); }
  .footer-grid { grid-template-columns: 2fr 1fr 1fr; }
}
@media (min-width: 900px) {
  .hero-grid { grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr); }
  .benefits-grid { grid-template-columns: repeat(3, 1fr); }
  .benefit-hero { grid-column: span 1; grid-row: span 2; }
  .about-grid { grid-template-columns: 1.3fr 1fr; }
  .req-grid { grid-template-columns: 1.4fr 1fr; }
  .lead-grid { grid-template-columns: 1fr 1.1fr; }
}
.t-short { display: none; }

@media (max-width: 560px) {
  .header-contacts { display: none; }
  .brand-text { font-size: 0.9rem; }
  .header-actions { gap: 6px; }
  .btn-icon { width: 38px; height: 38px; }
  .t-full { display: none; }
  .t-short { display: inline; }
  .site-header .container { padding-inline: 14px; }

  /* кнопки hero — в столбик на всю ширину */
  .hero-cta { flex-direction: column; align-items: stretch; }
  .hero-cta .btn { width: 100%; }
}

/* =========================================================
   Анимация hero: бегущие «частицы» по линиям потока
   ========================================================= */
@keyframes dashFlow { to { stroke-dashoffset: -32; } }
@keyframes chPulse { 0%, 100% { opacity: 0.85; } 50% { opacity: 1; } }

.flow-dash { animation: dashFlow 1.4s linear infinite; }
.flow-dash.d2 { animation-delay: 0.45s; }
.flow-dash.d3 { animation-delay: 0.9s; }
.channels .ch { animation: chPulse 3s ease-in-out infinite; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .flow-dash, .channels .ch { animation: none; }
  .benefit:hover, .step:hover, .fact:hover { transform: none; }
  .btn, .faq-item summary::after { transition: none; }
}
