/* ============================================================
   ПРЕТОРИЙ — защита объектов от БПЛА
   ВАЖНО: .container отвечает только за ширину страницы.
   Никогда не вешайте на один элемент .container и .section-head —
   именно это ломало выравнивание секций.
   ============================================================ */

:root {
  --bg: #0b1016;
  --bg-alt: #0e151c;
  --panel: #161f28;
  --border: #2c3d4c;
  --border-strong: #3d5266;
  --accent: #6fa8c9;
  --accent-strong: #8fc0dd;
  --accent-dim: rgba(111, 168, 201, 0.14);
  --text: #eef3f6;
  --text-dim: #9fb0bd;
  --text-faint: #6d8494;
  --radius: 0px;
  --gutter: 24px;
  --font: "PT Sans", "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  --font-display: "PT Sans Caption", "PT Sans", "Segoe UI", Arial, sans-serif;
  --shadow-hard: 8px 8px 0 rgba(111, 168, 201, 0.28);
  --shadow-hard-sm: 5px 5px 0 rgba(111, 168, 201, 0.28);
  --section-pad: clamp(64px, 8vw, 116px);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  /* чтобы якорь не уезжал под липкую шапку */
  scroll-padding-top: 96px;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }
}

body {
  margin: 0;
  background-color: var(--bg);
  /* фоновая чертёжная сетка — сквозной индустриальный характер на ВСЕЙ странице */
  background-image:
    linear-gradient(to right, rgba(111, 168, 201, 0.08) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(111, 168, 201, 0.08) 1px, transparent 1px);
  background-size: 56px 56px;
  background-attachment: fixed;
  color: var(--text);
  font-family: var(--font);
  font-size: 17px;
  line-height: 1.62;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
}

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.15;
  margin: 0;
  text-wrap: balance;
}

p {
  margin: 0;
}

ul, ol {
  margin: 0;
  padding: 0;
  list-style: none;
}

:where(a, button, summary, input, select, textarea, [tabindex]):focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
}

::-webkit-scrollbar {
  width: 10px;
  background-color: var(--bg);
}

::-webkit-scrollbar-thumb {
  background-color: var(--border-strong);
}

::-webkit-scrollbar-thumb:hover {
  background-color: var(--accent);
}

@supports (-moz-appearance: none) {
  body {
    scrollbar-width: thin;
    scrollbar-color: var(--border-strong) var(--bg);
  }
}

.skip-link {
  position: absolute;
  left: 16px;
  top: -80px;
  z-index: 200;
  background: var(--accent);
  color: #05141d;
  padding: 12px 20px;
  font-weight: 700;
  text-decoration: none;
  transition: top 0.2s ease;
}

.skip-link:focus {
  top: 16px;
}

/* ---------- Раскладка ---------- */

.container {
  width: 100%;
  max-width: 1240px;
  margin-inline: auto;
  padding-inline: var(--gutter);
}

section,
.section {
  padding-block: var(--section-pad);
  border-bottom: 1px solid var(--border);
}

.section--alt,
.regulatory-section,
.checklist-section,
.errors-section {
  background-color: #0e151c !important;
  border-block: 1px solid var(--border);
}

/* Шапка секции: только ограничение строки и отступ снизу.
   Ширину/центрирование задаёт .container выше по дереву. */
.section-head {
  max-width: none;
  margin-bottom: clamp(40px, 5vw, 64px);
}

.section-head p {
  color: var(--text-dim);
  margin-top: 20px;
  max-width: none;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent-strong);
  margin-bottom: 20px;
}

.eyebrow::before {
  content: "";
  width: 26px;
  height: 2px;
  background: var(--accent);
  flex: none;
}

h2 {
  font-size: clamp(29px, 3.5vw, 44px);
  text-transform: uppercase;
  letter-spacing: 0.005em;
}

h3 {
  font-size: 21px;
}

/* ---------- Кнопки ---------- */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 54px;
  padding: 15px 30px;
  border: 2px solid transparent;
  border-radius: var(--radius);
  font-family: var(--font);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  text-decoration: none;
  cursor: pointer;
  transition: transform 0.12s ease, box-shadow 0.12s ease,
    background-color 0.12s ease, border-color 0.12s ease, color 0.12s ease;
}

.btn-primary {
  background: var(--accent);
  border-color: var(--accent);
  color: #05141d;
  box-shadow: var(--shadow-hard-sm);
}

.btn-primary:hover {
  background: var(--accent-strong);
  border-color: var(--accent-strong);
  transform: translate(-3px, -3px);
  box-shadow: var(--shadow-hard);
}

.btn-ghost {
  background: transparent;
  border-color: var(--border-strong);
  color: var(--text);
}

.btn-ghost:hover {
  border-color: var(--accent);
  color: var(--accent-strong);
  transform: translate(-3px, -3px);
  box-shadow: var(--shadow-hard-sm);
}

.btn:active {
  transform: translate(0, 0);
  box-shadow: none;
}

.btn-block {
  width: 100%;
}

/* ---------- Шапка сайта ---------- */

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(11, 16, 22, 0.95);
  backdrop-filter: saturate(150%) blur(10px);
  border-bottom: 1px solid var(--border);
}

.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 72px;
  padding-block: 12px;
}

.logo {
  display: inline-flex;
  align-items: center; /* Центрируем всё ровно по вертикальной оси */
  gap: 14px;
  text-decoration: none;
  flex: none;
  white-space: nowrap;
  line-height: 1;
}

.logo-mark {
  font-family: var(--font-display);
  font-size: 23px;
  font-weight: 800;
  letter-spacing: 0.08em;
  line-height: 1;
  color: var(--text);
}

.logo-sep {
  width: 1px;
  height: 18px;
  background: var(--border-strong);
  flex: none;
}

.logo-sub {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-faint);
  white-space: nowrap;
}


.nav {
  position: relative; /* Чтобы меню отсчитывалось от кнопки/блока навигации */
  display: flex;
  align-items: center;
  gap: 20px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 24px;
}

.nav-links a {
  position: relative;
  display: inline-block;
  padding-block: 4px;
  font-size: 14px;
  color: var(--text-dim);
  text-decoration: none;
  white-space: nowrap;
  transition: color 0.15s ease;
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 2px;
  background: var(--accent);
  transition: width 0.18s ease;
}

.nav-links a:hover {
  color: var(--text);
}

.nav-links a:hover::after {
  width: 100%;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 18px;
  flex: none;
}

.header-phone {
  font-size: 15px;
  font-weight: 700;
  text-decoration: none;
  white-space: nowrap;
  font-variant-numeric: tabular-nums;
}

.header-phone:hover {
  color: var(--accent-strong);
}

.header-cta {
  min-height: 46px;
  padding: 12px 22px;
  font-size: 12px;
}

/* Гамбургер всегда видим — минималистичная шапка */
.nav-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  flex: none;
  background: none;
  border: 2px solid var(--border-strong);
  border-radius: var(--radius);
  cursor: pointer;
  transition: border-color 0.15s ease, background-color 0.15s ease;
}

.nav-toggle:hover {
  border-color: var(--accent);
  background: var(--accent-dim);
}

.nav-toggle svg {
  width: 22px;
  height: 22px;
  stroke: var(--text);
}

/* ---------- Плейсхолдеры под фото / 3D-рендер ---------- */

.media-frame {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  text-align: center;
  padding: 26px;
  background-color: var(--panel);
  background-image: repeating-linear-gradient(
    45deg,
    rgba(111, 168, 201, 0.05) 0 1px,
    transparent 1px 15px
  );
  border: 2px dashed var(--border-strong);
  border-radius: var(--radius);
  overflow: hidden;
}

/* уголки чертежа */
.media-frame::before,
.media-frame::after {
  content: "";
  position: absolute;
  width: 20px;
  height: 20px;
  border: 3px solid var(--accent);
  pointer-events: none;
}

.media-frame::before {
  top: -2px;
  left: -2px;
  border-right: none;
  border-bottom: none;
}

.media-frame::after {
  bottom: -2px;
  right: -2px;
  border-left: none;
  border-top: none;
}

.media-frame svg {
  width: 44px;
  height: 44px;
  stroke: var(--accent);
}

.media-frame-label {
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 700;
  color: var(--text);
  max-width: 32ch;
}

.media-frame-caption {
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-faint);
}

.media-frame--hero {
  aspect-ratio: 4 / 3;
  padding: 6px;
  border: 1px dashed rgba(111, 168, 201, 0.45);
  border-radius: 12px;
  background: rgba(14, 21, 28, 0.6);
  box-sizing: border-box;
  overflow: hidden;
  position: relative;
}

.media-frame--card {
  aspect-ratio: 4 / 3;
  padding: 6px;
  border: 1px dashed rgba(111, 168, 201, 0.45);
  border-radius: 10px;
  background: rgba(14, 21, 28, 0.6);
  margin-bottom: 20px;
  box-sizing: border-box;
  overflow: hidden;
  position: relative;
}

.media-frame--gallery {
  aspect-ratio: 4 / 3;
  padding: 6px;
  border: 1px dashed rgba(111, 168, 201, 0.45);
  border-radius: 10px;
  background: rgba(14, 21, 28, 0.6);
  margin-bottom: 20px;
  box-sizing: border-box;
  overflow: hidden;
  position: relative;
}

.media-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 6px;
  display: block;
  transition: transform 0.4s ease;
}

.media-frame:hover img {
  transform: scale(1.04);
}

/* ---------- Hero ---------- */

.hero {
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    120% 90% at 78% 20%,
    rgba(111, 168, 201, 0.09),
    transparent 62%
  );
  pointer-events: none;
}

.hero .container {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(40px, 5vw, 68px);
  align-items: center;
}

.hero h1 {
  font-size: clamp(36px, 5vw, 60px);
  letter-spacing: -0.005em;
  margin-bottom: 24px;
}

.hero-lead {
  color: var(--text-dim);
  font-size: clamp(17px, 1.4vw, 19px);
  max-width: 54ch;
  margin-bottom: 36px;
}

.trust-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding-left: 22px;
  border-left: 2px solid var(--border-strong);
  margin-bottom: 36px;
}

.trust-list li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  color: var(--text-dim);
  font-size: 16px;
}

/* Все inline SVG-иконки (галочки) — единый стиль */
.trust-list svg,
.audience-card svg,
.form-side-list svg {
  width: 20px;
  height: 20px;
  flex: none;
  margin-top: 3px;
  stroke: var(--accent);
}

.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

/* ---------- Манифест (о названии) ---------- */

.manifesto {
  background: var(--panel);
  border: 1px solid var(--border-strong);
  border-left: 4px solid var(--accent); /* Яркая акцентная полоса слева */
  padding: clamp(32px, 5vw, 48px);
  margin-block: 40px;
}

/* Декоративная вертикальная полоса-«рамка» слева */
.manifesto::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 3px;
  background: linear-gradient(
    to bottom,
    transparent,
    var(--accent) 30%,
    var(--accent) 70%,
    transparent
  );
  opacity: 0.5;
}

.manifesto .eyebrow {
  color: var(--accent);
}

.manifesto-quote {
  font-size: clamp(20px, 2.5vw, 30px);
  font-weight: 700;
  line-height: 1.35;
  color: var(--text);
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}

.manifesto-note {
  color: var(--text-dim);
  font-size: 16px;
  line-height: 1.7;
  max-width: 85ch;
}

/* Сетка карточек для секции угроз */
.threat-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  margin-top: 32px;
}

.threat-card {
  background: var(--panel);
  border: 1px solid var(--border);
  padding: 28px;
  position: relative;
  transition: transform 0.2s ease, border-color 0.2s ease;
}

.threat-card:hover {
  border-color: var(--accent);
  transform: translateY(-4px);
}

.threat-num {
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 700;
  color: var(--accent);
  letter-spacing: 0.1em;
  margin-bottom: 12px;
}

.threat-card h3 {
  font-size: 19px;
  color: var(--text);
  margin-bottom: 10px;
}

.threat-card p {
  font-size: 14px;
  color: var(--text-dim);
  line-height: 1.6;
}

/* ---------- Почему это актуально ---------- */

.context-band {
  position: relative;
}

/* Декоративная фоновая сетка-«мишень» */
.context-band::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    repeating-linear-gradient(0deg, rgba(111, 168, 201, 0.04) 0 1px, transparent 1px 48px),
    repeating-linear-gradient(90deg, rgba(111, 168, 201, 0.04) 0 1px, transparent 1px 48px);
  pointer-events: none;
}

/* Угловые акценты — «прицел» */
.context-band::after {
  content: "";
  position: absolute;
  top: 32px;
  right: 32px;
  width: 56px;
  height: 56px;
  border-top: 2px solid var(--accent);
  border-right: 2px solid var(--accent);
  opacity: 0.6;
  pointer-events: none;
}

.context-band .container {
  position: relative;
}

.context-band .eyebrow {
  color: var(--accent-strong);
}

.context-band .section-head {
  max-width: none;
}

.context-band h2 {
  max-width: none;
  text-transform: uppercase;
  letter-spacing: 0.01em;
  position: relative;
  padding-bottom: 20px;
}

.context-band h2::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 64px;
  height: 3px;
  background: var(--accent);
}

.context-band p {
  color: var(--text-dim);
  max-width: none;
  font-size: clamp(16px, 1.3vw, 18px);
  line-height: 1.7;
}

/* ---------- Продукт ---------- */

.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 26px;
}

.product-card {
  display: flex;
  flex-direction: column;
  gap: 18px;
  padding: 28px;
  background: var(--panel);
  border: 2px solid var(--border);
  border-radius: var(--radius);
  transition: transform 0.15s ease, box-shadow 0.15s ease, border-color 0.15s ease;
}

.product-card:hover {
  border-color: var(--accent);
  transform: translate(-4px, -4px);
  box-shadow: var(--shadow-hard);
}

.product-card p {
  color: var(--text-dim);
  font-size: 15px;
}

.tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.tag {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent-strong);
  background: var(--accent-dim);
  border: 1px solid var(--border-strong);
  border-radius: var(--radius);
  padding: 5px 10px;
}

/* ---------- Преимущества ---------- */

.benefit-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2px;
  background: var(--border);
  border: 1px solid var(--border);
}

.benefit-item {
  display: flex;
  gap: 20px;
  padding: 28px;
  background: var(--bg-alt);
  transition: background-color 0.15s ease;
}

.benefit-item:hover {
  background: var(--panel);
}

.benefit-icon {
  width: 52px;
  height: 52px;
  flex: none;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid var(--border-strong);
  border-radius: var(--radius);
  background: var(--accent-dim);
}

.benefit-icon svg {
  width: 24px;
  height: 24px;
  stroke: var(--accent);
}

.benefit-item h3 {
  font-size: 18px;
  margin-bottom: 10px;
}

.benefit-item p {
  color: var(--text-dim);
  font-size: 15px;
}

/* ---------- Галерея ---------- */

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
}

/* ---------- Процесс ---------- */

/* minmax(320px) — чтобы 6 шагов ложились ровно 3+3, а не 4+2 */
.process-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 24px;
}

.process-step {
  display: grid;
  grid-template-columns: auto 1fr;
  grid-template-areas:
    "num title"
    "num text";
  column-gap: 20px;
  align-items: start;
  padding: 26px;
  background: var(--panel);
  border: 2px solid var(--border);
  border-left: 4px solid var(--accent);
  border-radius: var(--radius);
}

.process-num {
  grid-area: num;
  font-family: var(--font-display);
  font-size: 34px;
  font-weight: 700;
  line-height: 1;
  color: var(--accent);
  font-variant-numeric: tabular-nums;
}

.process-step h3 {
  grid-area: title;
  font-size: 17px;
  margin-bottom: 8px;
}

.process-step p {
  grid-area: text;
  color: var(--text-dim);
  font-size: 15px;
}

/* ---------- Кому подходит ---------- */

.audience-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: 26px;
}

.audience-card {
  display: flex;
  flex-direction: column;
  gap: 22px;
  padding: 28px;
  background: var(--panel);
  border: 2px solid var(--border);
  border-radius: var(--radius);
  transition: transform 0.15s ease, box-shadow 0.15s ease, border-color 0.15s ease;
}

.audience-card:hover {
  border-color: var(--accent);
  transform: translate(-4px, -4px);
  box-shadow: var(--shadow-hard);
}

.audience-card h3 {
  font-size: 24px;
  padding-bottom: 18px;
  border-bottom: 2px solid var(--border-strong);
}

.audience-card ul {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.audience-card li {
  display: flex;
  gap: 12px;
  color: var(--text-dim);
  font-size: 16px;
}

.audience-card svg {
  stroke: var(--accent);
}



/* ==========================================================================
   FAQ SECTION (Оптимизированный плавный аккордеон)
   ========================================================================== */

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  width: 100%;
  contain: layout; /* Предотвращает дергание скролла страницы */
}

.faq-item {
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding-inline: 26px;
  transition: border-color 0.3s ease, background-color 0.3s ease, box-shadow 0.3s ease;
  overflow: hidden;
}

.faq-item:hover {
  border-color: var(--border-strong);
}

.faq-item.is-open {
  border-color: var(--accent);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.25);
}

/* Кнопка вопроса */
.faq-trigger {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding-block: 22px;
  background: transparent;
  border: none;
  outline: none;
  color: inherit;
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 700;
  text-align: left;
  cursor: pointer;
  user-select: none;
}

/* Иконка плюсика */
.faq-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--accent-dim);
  border: 1px solid var(--border-strong);
  position: relative;
  flex: none;
  transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1), background-color 0.2s ease;
}

.faq-icon::before,
.faq-icon::after {
  content: "";
  position: absolute;
  background-color: var(--accent);
  border-radius: 1px;
  transition: background-color 0.2s ease;
}

.faq-icon::before {
  width: 12px;
  height: 2px;
}

.faq-icon::after {
  width: 2px;
  height: 12px;
}

.faq-trigger:hover .faq-icon {
  background: var(--accent);
}

.faq-trigger:hover .faq-icon::before,
.faq-trigger:hover .faq-icon::after {
  background-color: #05141d;
}

.faq-item.is-open .faq-icon {
  transform: rotate(135deg);
  background: var(--accent);
}

.faq-item.is-open .faq-icon::before,
.faq-item.is-open .faq-icon::after {
  background-color: #05141d;
}

/* Анимация высоты через GPU */
.faq-content {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: grid-template-rows;
}

.faq-item.is-open .faq-content {
  grid-template-rows: 1fr;
}

.faq-content-inner {
  overflow: hidden;
  contain: layout paint;
}

/* Текст ответа */
.faq-content p {
  color: var(--text-dim);
  font-size: 16px;
  line-height: 1.65;
  padding-bottom: 22px;
  margin: 0;
  opacity: 0;
  transition: opacity 0.25s ease 0.1s;
}

.faq-item.is-open .faq-content p {
  opacity: 1;
}

/* ---------- Форма заявки ---------- */

.form-wrap {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(32px, 4vw, 56px);
  align-items: start;
  
  padding: 34px;                          /* Внутренний отступ единой карточки */
  background: var(--panel);               /* Серый фон */
  border: 2px solid var(--border-strong);   /* Единая внешняя рамка */
  border-radius: var(--radius);
}

.lead-form-col {
  display: flex;
  flex-direction: column;
  gap: 16px;
  min-width: 0;
}

.lead-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding: 0;                             /* Сбрасываем внутренний отступ */
  background: transparent;                 /* Прозрачный фон */
  border: none;                           /* Без собственной рамки */
}

.form-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

.field label {
  display: block;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: var(--text-dim);
  margin-bottom: 10px;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  min-height: 52px;
  padding: 14px 16px;
  background: var(--bg);
  border: 2px solid var(--border);
  border-radius: var(--radius);
  color: var(--text);
  font-family: var(--font);
  font-size: 16px;
  transition: border-color 0.15s ease;
}

.field input::placeholder,
.field textarea::placeholder {
  color: var(--text-faint);
}

.field input:hover,
.field select:hover,
.field textarea:hover {
  border-color: var(--border-strong);
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: var(--accent);
}

.field textarea {
  min-height: 110px;
  resize: vertical;
}

.field-error {
  display: none;
  margin-top: 8px;
  font-size: 13px;
  color: #f0a5a5;
}

/* класс has-error проставляет script.js */
.field.has-error input,
.field.has-error select,
.field.has-error textarea {
  border-color: #d97a7a;
}

.field.has-error .field-error {
  display: block;
}

.consent-row {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  font-size: 14px;
  color: var(--text-dim);
  cursor: pointer;
}

.consent-row input {
  width: 20px;
  height: 20px;
  flex: none;
  margin-top: 2px;
  accent-color: var(--accent);
}

.consent-row a {
  color: var(--accent-strong);
}

#consentError {
  margin-top: -10px;
}

.form-status {
  min-height: 22px;
  font-size: 15px;
}

.form-status.is-success {
  color: #93d6ac;
}

.form-status.is-error {
  color: #f0a5a5;
}

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

/* 3. Правая колонка (текст) — УБИРАЕМ рамку и отступы */
.form-side {
  min-width: 0;
  padding: 0;                             /* Сбрасываем внутренний отступ */
  background: transparent;                 /* Прозрачный фон */
  border: none;                           /* Без собственной рамки */
}

.form-side h3 {
  font-size: 22px;
  margin-bottom: 16px;
}

.form-side p {
  color: var(--text-dim);
}

.form-side-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 32px;
  padding-top: 32px;
  border-top: 2px solid var(--border);
}

.form-side-list li {
  display: flex;
  gap: 12px;
  font-size: 15px;
  color: var(--text-dim);
}

.form-side-list svg {
  width: 20px;
  height: 20px;
  flex: none;
  margin-top: 2px;
  stroke: var(--accent);
}

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

.site-footer {
  background: var(--bg-alt);
  border-top: 1px solid var(--border);
  padding-block: 64px 32px;
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.8fr) minmax(0, 1fr) minmax(0, 1fr);
  gap: 48px;
  padding-bottom: 40px;
}

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

@media (max-width: 550px) {
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}

.footer-col {
  min-width: 0;
}

.footer-col .logo {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 4px;
  white-space: normal;
  margin-bottom: 16px;
}

.footer-col .logo-sep {
  display: none;
}

.footer-col .logo-sub {
  white-space: normal;
  line-height: 1.4;
}

.footer-disclaimer {
  font-size: 14px;
  color: var(--text-faint);
  max-width: 44ch;
  line-height: 1.5;
}

.footer-col h4 {
  font-family: var(--font);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-faint);
  margin-bottom: 18px;
}

.footer-col ul {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-col li,
.footer-col a {
  font-size: 15px;
  color: var(--text-dim);
  text-decoration: none;
}

.footer-requisite {
  font-size: 13px;
  color: var(--text-faint);
  font-family: monospace;
}

.footer-col a:hover {
  color: var(--accent-strong);
}

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: space-between;
  padding-top: 24px;
  border-top: 1px solid var(--border);
  font-size: 13px;
  color: var(--text-faint);
}

/* ---------- Анимации появления при скролле ---------- */

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: opacity, transform;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* Каскад для дочерних карточек — плавный «волной» */
.reveal-stagger > * {
  opacity: 0;
  transform: translateY(24px) scale(0.985);
  transition: opacity 0.6s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}

.reveal-stagger.is-visible > * {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.reveal-stagger.is-visible > *:nth-child(1) { transition-delay: 0.06s; }
.reveal-stagger.is-visible > *:nth-child(2) { transition-delay: 0.14s; }
.reveal-stagger.is-visible > *:nth-child(3) { transition-delay: 0.22s; }
.reveal-stagger.is-visible > *:nth-child(4) { transition-delay: 0.30s; }
.reveal-stagger.is-visible > *:nth-child(5) { transition-delay: 0.38s; }
.reveal-stagger.is-visible > *:nth-child(6) { transition-delay: 0.46s; }

/* Появление логотипа при загрузке — мягкое снижение сверху */
.logo {
  animation: logo-in 0.6s cubic-bezier(0.22, 1, 0.36, 1) both;
}

@keyframes logo-in {
  from { opacity: 0; transform: translateY(-8px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* Усиленный hover для карточек — «приподнимаем» с тенью и подсветкой */
.product-card,
.audience-card {
  transition: transform 0.18s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.18s cubic-bezier(0.22, 1, 0.36, 1),
    border-color 0.18s ease;
}

/* Подсветка нижней грани при наведении — индустриальный акцент */
.product-card::after,
.audience-card::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 2px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.25s cubic-bezier(0.22, 1, 0.36, 1);
}

.product-card,
.audience-card {
  position: relative;
}

.product-card:hover::after,
.audience-card:hover::after {
  transform: scaleX(1);
}

/* Плавная пульсация иконок преимуществ при ховере */
.benefit-icon {
  transition: transform 0.2s ease, border-color 0.2s ease, background-color 0.2s ease;
}

.benefit-item:hover .benefit-icon {
  transform: translateY(-2px);
  border-color: var(--accent);
}

/* Лёгкое появление hero-плейсхолдера */
.hero .media-frame {
  animation: frame-in 0.8s cubic-bezier(0.22, 1, 0.36, 1) both;
  animation-delay: 0.15s;
}

@keyframes frame-in {
  from { opacity: 0; transform: translateY(20px) scale(0.98); }
  to   { opacity: 1; transform: translateY(0) scale(1); }
}

/* ---------- Адаптив ---------- */


@media (min-width: 620px) {
  .form-row--pair {
    grid-template-columns: 1fr 1fr;
  }
}

@media (min-width: 1000px) {
  .hero .container {
    grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  }

  .form-wrap {
    grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
  }
}

/* Меню — горизонтальная панель, выезжающая влево от кнопки */
.nav-links {
  position: absolute;
  top: 50%;
  right: calc(100% + 10px); /* Слева от кнопки гамбургера */
  transform: translateY(-50%) translateX(20px); /* Стартовая позиция для анимации */
  
  display: flex;
  flex-direction: column; /* На мобиле пункты друг под другом для удобства нажатия */
  align-items: flex-end;
  gap: 8px;
  
  width: max-content;
  max-width: calc(100vw - 80px); /* Защита, чтобы не вылезало за левый край экрана */
  padding: 12px 16px;
  background: var(--bg);
  border: 1px solid var(--border-strong);
  box-shadow: -4px 4px 15px rgba(0, 0, 0, 0.5); /* Тень для отрыва от фона */
  
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease, transform 0.3s cubic-bezier(0.22, 1, 0.36, 1);
  z-index: 90;
}

.nav-links.is-open {
  opacity: 1;
  transform: translateY(-50%) translateX(0); /* Выезжает налево */
  pointer-events: auto;
}

.nav-links a {
  display: block;
  padding: 6px 0;
  border-bottom: none;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--text);
  text-decoration: none;
  white-space: nowrap;
  
  opacity: 0;
  transform: translateX(15px);
  transition: color 0.15s ease, opacity 0.25s ease, transform 0.25s cubic-bezier(0.22, 1, 0.36, 1);
}

.nav-links a:last-child {
  border-bottom: none;
}

.nav-links.is-open a {
  opacity: 1;
  transform: translateX(0);
}

/* каскад появления пунктов — выезжают по очереди слева направо */
.nav-links.is-open a:nth-child(1) { transition-delay: 0.05s; }
.nav-links.is-open a:nth-child(2) { transition-delay: 0.09s; }
.nav-links.is-open a:nth-child(3) { transition-delay: 0.13s; }
.nav-links.is-open a:nth-child(4) { transition-delay: 0.17s; }
.nav-links.is-open a:nth-child(5) { transition-delay: 0.21s; }
.nav-links.is-open a:nth-child(6) { transition-delay: 0.25s; }

.nav-links a::after {
  display: none;
}

.nav-links a:hover {
  color: var(--accent-strong);
}

@media (min-width: 768px) {
  .nav-links {
    flex-direction: row; /* В одну строку */
    gap: 20px;
    padding: 8px 20px;
  }
  
  .nav-links a {
    font-size: 13px;
    padding: 4px 0;
  }
}

/* крестик вместо бургера при открытом меню */
.nav-toggle.is-open svg path {
  d: path("M6 6l12 12M6 18L18 6");
}

@media (max-width: 700px) {
  :root {
    --gutter: 18px;
  }

  .logo {
    gap: 8px;
  }

  .logo-sep {
    display: none;
  }

  .logo-sub {
    display: none;
  }

  .product-card,
  .benefit-item,
  .audience-card,
  .lead-form {
    padding: 24px;
  }

  .process-step {
    grid-template-columns: 1fr;
    grid-template-areas:
      "num"
      "title"
      "text";
    row-gap: 10px;
  }
}

/* ---------- Модальное окно (Политика конфиденциальности) ---------- */

.modal {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.modal.is-open {
  opacity: 1;
  visibility: visible;
}

.modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(10, 15, 20, 0.75);
  backdrop-filter: blur(6px);
}

.modal-dialog {
  position: relative;
  width: 100%;
  max-width: 680px;
  max-height: 85vh;
  background: var(--bg-alt);
  border: 1px solid var(--border-strong);
  border-radius: var(--radius);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.6);
  display: flex;
  flex-direction: column;
  transform: translateY(20px) scale(0.96);
  transition: transform 0.3s cubic-bezier(0.22, 1, 0.36, 1);
  overflow: hidden;
  z-index: 1;
}

.modal.is-open .modal-dialog {
  transform: translateY(0) scale(1);
}

.modal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  border-bottom: 1px solid var(--border);
  background: var(--bg);
}

.modal-title {
  font-size: 20px;
  font-weight: 700;
  color: var(--text);
  margin: 0;
}

.modal-close {
  background: transparent;
  border: none;
  color: var(--text-dim);
  width: 36px;
  height: 36px;
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: color 0.15s ease, background-color 0.15s ease;
}

.modal-close svg {
  width: 20px;
  height: 20px;
}

.modal-close:hover {
  color: var(--text);
  background: var(--accent-dim);
}

.modal-body {
  padding: 24px;
  overflow-y: auto;
  font-size: 14px;
  line-height: 1.6;
  color: var(--text-dim);
}

.modal-subtitle {
  font-size: 13px;
  color: var(--accent-strong);
  margin-bottom: 20px;
  padding-bottom: 12px;
  border-bottom: 1px dashed var(--border);
}

.modal-body h3 {
  font-size: 16px;
  color: var(--text);
  margin: 20px 0 8px;
}

.modal-body h3:first-of-type {
  margin-top: 0;
}

.modal-body p {
  margin-bottom: 12px;
}

.modal-body ul {
  margin: 0 0 16px 20px;
  padding: 0;
  list-style-type: disc;
}

.modal-body li {
  margin-bottom: 6px;
}

.modal-footer {
  padding: 16px 24px;
  border-top: 1px solid var(--border);
  background: var(--bg);
  display: flex;
  justify-content: flex-end;
}

/* ==========================================================================
   TRIONN 2026 SIGNATURE FOOTER FOR PRAETORIUM
   ========================================================================== */

.trionn-footer {
  position: relative;
  background: #070A0F;
  color: var(--text);
  padding-top: clamp(60px, 8vw, 100px);
  padding-bottom: 30px;
  overflow: hidden;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.trionn-footer-glow {
  position: absolute;
  top: -150px;
  left: 50%;
  transform: translateX(-50%);
  width: 900px;
  height: 450px;
  background: radial-gradient(ellipse at center, rgba(0, 255, 65, 0.08) 0%, rgba(111, 168, 201, 0.04) 40%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}

.trionn-footer .container {
  position: relative;
  z-index: 1;
}

/* --- Trionn Signature Hero CTA Card inside Footer --- */
.trionn-footer-cta {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  gap: 32px;
  background: linear-gradient(135deg, rgba(18, 24, 33, 0.9), rgba(12, 16, 23, 0.95));
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-left: 4px solid var(--accent);
  padding: clamp(32px, 5vw, 48px);
  border-radius: var(--radius);
  margin-bottom: clamp(48px, 7vw, 80px);
  backdrop-filter: blur(12px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
  position: relative;
  overflow: hidden;
}

.trionn-cta-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.15em;
  color: var(--accent-strong);
  text-transform: uppercase;
  margin-bottom: 14px;
}

.status-pulse {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 10px var(--accent);
  animation: pulseGlow 2s infinite ease-in-out;
}

@keyframes pulseGlow {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.4); opacity: 0.6; }
}

.trionn-cta-title {
  font-size: clamp(24px, 3.5vw, 42px);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.01em;
  color: #FFFFFF;
  margin-bottom: 12px;
}

.trionn-cta-title .highlight-text {
  background: linear-gradient(135deg, #FFFFFF 30%, var(--text-dim) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.trionn-cta-desc {
  font-size: clamp(14px, 1.2vw, 16px);
  color: var(--text-dim);
  max-width: 52ch;
  margin: 0;
}

.trionn-btn-magnetic {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 18px 32px;
  background: var(--accent);
  color: #070A0F;
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 60px;
  transition: transform 0.3s cubic-bezier(0.22, 1, 0.36, 1), background-color 0.2s ease, box-shadow 0.3s ease;
  white-space: nowrap;
  box-shadow: 0 0 20px rgba(0, 255, 65, 0.3);
}

.trionn-btn-magnetic svg {
  width: 18px;
  height: 18px;
  stroke: #070A0F;
  transition: transform 0.3s cubic-bezier(0.22, 1, 0.36, 1);
}

.trionn-btn-magnetic:hover {
  background: #20FF58;
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 10px 30px rgba(0, 255, 65, 0.5);
}

.trionn-btn-magnetic:hover svg {
  transform: translate(3px, -3px);
}

/* --- Main Grid --- */
.trionn-footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1.1fr 1fr;
  gap: clamp(24px, 4vw, 48px);
  margin-bottom: clamp(48px, 7vw, 80px);
}

.trionn-col-title {
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.16em;
  color: var(--text-faint);
  text-transform: uppercase;
  margin-bottom: 20px;
}

/* Col 1: Status Card */
.trionn-status-card {
  background: rgba(18, 24, 33, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius);
  padding: 20px;
}

.status-header {
  display: flex;
  align-items: center;
  gap: 10px;
  padding-bottom: 14px;
  border-bottom: 1px dashed rgba(255, 255, 255, 0.1);
  margin-bottom: 14px;
}

.status-indicator {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 8px var(--accent);
}

.status-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--text);
}

.status-details {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.status-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 12px;
}

.meta-label {
  color: var(--text-faint);
  font-size: 11px;
  letter-spacing: 0.05em;
}

.meta-val {
  color: var(--text-dim);
  font-family: monospace;
  font-weight: 600;
}

#footerLiveClock {
  color: var(--accent-strong);
}

/* Col 2 & 3 & 4 Lists */
.trionn-links, .trionn-contacts, .trionn-legal-info {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.trionn-links a {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--text-dim);
  text-decoration: none;
  font-size: 14px;
  transition: color 0.2s ease, transform 0.2s ease;
}

.trionn-links a span {
  font-size: 11px;
  font-family: monospace;
  color: var(--text-faint);
  transition: color 0.2s ease;
}

.trionn-links a:hover {
  color: #FFFFFF;
  transform: translateX(4px);
}

.trionn-links a:hover span {
  color: var(--accent);
}

.trionn-contacts li {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.contact-label {
  font-size: 11px;
  color: var(--text-faint);
}

.contact-value {
  color: var(--text);
  text-decoration: none;
  font-size: 15px;
  font-weight: 600;
  transition: color 0.2s ease;
}

a.contact-value:hover {
  color: var(--accent-strong);
}

.trionn-legal-info {
  font-size: 13px;
  color: var(--text-dim);
}

.trionn-legal-info span {
  font-family: monospace;
  color: var(--text);
}

.trionn-privacy-link {
  color: var(--accent-strong);
  text-decoration: none;
  font-size: 13px;
  transition: opacity 0.2s ease;
}

.trionn-privacy-link:hover {
  opacity: 0.8;
  text-decoration: underline;
}

/* --- Giant Wall-to-Wall Brand Typography Display (Trionn Masterpiece) --- */
.trionn-brand-display {
  position: relative;
  text-align: center;
  padding-block: clamp(24px, 4vw, 48px);
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  margin-bottom: 30px;
  user-select: none;
}

.trionn-brand-grid {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  max-width: 100%;
  margin: 0 auto;
}

.brand-char {
  flex: 1 1 0%;
  text-align: center;
  font-family: var(--font-display);
  font-size: clamp(28px, 9.2vw, 140px);
  font-weight: 900;
  line-height: 0.95;
  text-transform: uppercase;
  color: rgba(0, 255, 65, 0);
  -webkit-text-stroke: 1.5px rgba(255, 255, 255, 0.3);
  text-shadow: 0 0 0 rgba(0, 255, 65, 0), 0 0 0 rgba(0, 255, 65, 0);
  transition: color 0.7s cubic-bezier(0.16, 1, 0.3, 1),
              -webkit-text-stroke 0.7s cubic-bezier(0.16, 1, 0.3, 1),
              text-shadow 0.7s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  cursor: pointer;
  will-change: color, text-shadow, transform, -webkit-text-stroke;
}

.trionn-brand-grid:hover .brand-char {
  color: var(--accent);
  -webkit-text-stroke: 1.5px var(--accent);
  text-shadow: 0 0 25px rgba(0, 255, 65, 0.7), 0 0 50px rgba(0, 255, 65, 0.3);
}

.brand-char:hover {
  transform: translateY(-4px) scale(1.1);
}

.trionn-brand-sub {
  font-family: monospace;
  font-size: clamp(10px, 1.2vw, 13px);
  letter-spacing: 0.3em;
  color: var(--text-faint);
  text-transform: uppercase;
  margin-top: 16px;
}

/* --- Footer Bottom Bar --- */
.trionn-footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 12px;
  color: var(--text-faint);
}

.trionn-copy strong {
  color: var(--text-dim);
}

.trionn-back-to-top {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: var(--text);
  padding: 8px 18px;
  border-radius: 40px;
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  transition: all 0.25s ease;
}

.trionn-back-to-top svg {
  width: 14px;
  height: 14px;
  stroke: var(--accent);
  transition: transform 0.25s ease;
}

.trionn-back-to-top:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: var(--accent);
  color: var(--accent-strong);
}

.trionn-back-to-top:hover svg {
  transform: translateY(-3px);
}

/* --- Responsive Adjustments --- */
@media (max-width: 1024px) {
  .trionn-footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  .trionn-footer-cta {
    flex-direction: column;
    align-items: flex-start;
  }
  .trionn-btn-magnetic {
    width: 100%;
    justify-content: center;
  }
  .trionn-footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .trionn-footer-bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }
}

/* ============================================================
   CONSENSYS FLOATING PILL HEADER & MEGA MENU (OPTION 2)
   ============================================================ */

/* Topbar Notification Ticker */
.consensys-topbar {
  background: #070a0e;
  border-bottom: 1px solid rgba(111, 168, 201, 0.15);
  padding: 8px var(--gutter);
  font-size: 12px;
  color: var(--text-dim);
  position: relative;
  z-index: 1001;
}

.consensys-topbar-inner {
  max-width: 1280px;
  width: 100%;
  margin: 0 auto;
  padding-inline: 18px;
  box-sizing: border-box;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.consensys-status-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent-strong);
  white-space: nowrap;
}

.status-dot-pulse {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #4ade80;
  box-shadow: 0 0 10px #4ade80;
  animation: pulseGreen 2s infinite;
  flex: none;
}

@keyframes pulseGreen {
  0% {
    box-shadow: 0 0 0 0 rgba(74, 222, 128, 0.7);
  }
  70% {
    box-shadow: 0 0 0 8px rgba(74, 222, 128, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(74, 222, 128, 0);
  }
}

.consensys-ticker-text {
  font-size: 12px;
  color: var(--text-dim);
  text-align: center;
}

.consensys-topbar-link {
  color: var(--accent-strong);
  text-decoration: none;
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 0.05em;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  white-space: nowrap;
  transition: color 0.2s ease;
}

.consensys-topbar-link:hover {
  color: var(--text);
}

@media (max-width: 992px) {
  .consensys-ticker-text {
    display: none;
  }
}

/* Floating Wrapper */
.consensys-header-wrap,
.consensys-header-wrapper {
  position: sticky;
  top: 10px;
  z-index: 1000;
  padding-inline: var(--gutter);
  margin-bottom: 20px;
}

.consensys-nav {
  max-width: 1280px;
  margin: 0 auto;
  background: rgba(14, 21, 28, 0.92);
  backdrop-filter: blur(24px) saturate(180%);
  -webkit-backdrop-filter: blur(24px) saturate(180%);
  border: 1px solid rgba(111, 168, 201, 0.3);
  border-radius: 100px;
  padding: 8px 12px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5), 0 0 25px rgba(111, 168, 201, 0.08);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  box-sizing: border-box;
}

.consensys-nav:hover {
  border-color: rgba(111, 168, 201, 0.45);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.6), 0 0 35px rgba(111, 168, 201, 0.15);
}

/* Logo Consensys V2 */
.logo-v2 {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  flex: none;
  padding-left: 6px;
}

.logo-shield-icon {
  width: 30px;
  height: 30px;
  background: linear-gradient(135deg, rgba(111, 168, 201, 0.25), rgba(14, 21, 28, 0.9));
  border: 1px solid var(--accent);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 12px rgba(111, 168, 201, 0.3);
}

.logo-shield-icon svg {
  width: 16px;
  height: 16px;
  stroke: var(--accent-strong);
}

.logo-text-wrap {
  display: flex;
  flex-direction: column;
}

.logo-brand-title {
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 800;
  letter-spacing: 0.08em;
  color: var(--text);
  line-height: 1;
}

.logo-brand-sub {
  font-size: 8.5px;
  font-weight: 700;
  letter-spacing: 0.15em;
  color: var(--accent);
  text-transform: uppercase;
  margin-top: 2px;
}

/* Nav Links & Dropdowns */
.consensys-menu,
.consensys-nav-list {
  display: flex !important;
  flex-direction: row !important;
  align-items: center !important;
  gap: 4px;
  list-style: none;
  margin: 0 auto;
  padding: 0;
}

.consensys-nav-item {
  position: relative;
}

.consensys-nav-link {
  padding: 6px 10px;
  font-family: var(--font-display);
  font-size: 11.5px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--text-dim);
  text-decoration: none;
  border-radius: 40px;
  transition: all 0.2s ease;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  white-space: nowrap;
}

.consensys-nav-link svg.chevron {
  width: 10px;
  height: 10px;
  stroke: var(--text-faint);
  transition: transform 0.25s ease, stroke 0.2s ease;
}

.consensys-nav-item:hover .consensys-nav-link {
  color: var(--text);
  background: rgba(111, 168, 201, 0.12);
}

.consensys-nav-item:hover .consensys-nav-link svg.chevron {
  transform: rotate(180deg);
}

/* Dropdown Card Containers */
.consensys-dropdown {
  position: absolute;
  top: calc(100% + 14px);
  left: 50%;
  transform: translateX(-50%) translateY(8px);
  background: rgba(14, 21, 28, 0.96);
  backdrop-filter: blur(28px) saturate(200%);
  -webkit-backdrop-filter: blur(28px) saturate(200%);
  border: 1px solid rgba(111, 168, 201, 0.35);
  border-radius: 18px;
  padding: 16px;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.8), 0 0 40px rgba(111, 168, 201, 0.15);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  z-index: 1010;
}

.consensys-dropdown::before {
  content: '';
  position: absolute;
  top: -20px;
  left: 0;
  width: 100%;
  height: 20px;
}

.consensys-nav-item:hover .consensys-dropdown {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}

.consensys-dropdown--mega {
  width: 580px;
}

.consensys-dropdown--medium {
  width: 360px;
}

.consensys-dropdown--single {
  width: 280px;
}

.mega-grid-2col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.mega-card {
  padding: 12px 14px;
  border-radius: 10px;
  background: rgba(22, 31, 40, 0.6);
  border: 1px solid var(--border);
  text-decoration: none;
  display: flex;
  flex-direction: column;
  gap: 4px;
  transition: all 0.2s ease;
}

.mega-card:hover {
  background: rgba(111, 168, 201, 0.12);
  border-color: var(--accent);
  transform: translateY(-1px);
}

.mega-card-header {
  display: flex;
  align-items: center;
  gap: 8px;
}

.mega-card-icon {
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-strong);
}

.mega-card-icon svg {
  width: 16px;
  height: 16px;
  stroke: var(--accent-strong);
}

.mega-card-title {
  font-family: var(--font-display);
  font-size: 12.5px;
  font-weight: 700;
  color: var(--text);
}

.mega-card-desc {
  font-size: 11px;
  color: var(--text-dim);
  line-height: 1.35;
  margin: 0;
}

.mega-featured-box {
  margin-top: 10px;
  padding: 10px 12px;
  background: linear-gradient(135deg, rgba(111, 168, 201, 0.15), rgba(22, 31, 40, 0.8));
  border: 1px solid rgba(111, 168, 201, 0.3);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.mega-featured-info h4 {
  font-size: 13px;
  color: var(--accent-strong);
  font-weight: 700;
  text-transform: uppercase;
}

.mega-featured-info p {
  font-size: 12px;
  color: var(--text-dim);
  margin-top: 2px;
}

/* Right Actions Consensys */
.consensys-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  flex: none;
  padding-right: 4px;
}

.consensys-readiness-badge {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  background: rgba(74, 222, 128, 0.08);
  border: 1px solid rgba(74, 222, 128, 0.3);
  border-radius: 30px;
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 700;
  color: #4ade80;
  letter-spacing: 0.05em;
  white-space: nowrap;
}

.btn-consensys {
  background: linear-gradient(135deg, var(--accent), var(--accent-strong));
  color: #05141d;
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 10px 22px;
  border-radius: 30px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 4px 15px rgba(111, 168, 201, 0.3);
  transition: all 0.25s ease;
}

.btn-consensys:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(111, 168, 201, 0.5);
  background: var(--text);
  color: #05141d;
}

/* Mobile Toggle Consensys */
.consensys-mobile-toggle {
  display: none;
  background: transparent;
  border: none;
  color: var(--text);
  padding: 8px;
  cursor: pointer;
}

.consensys-mobile-toggle svg {
  width: 24px;
  height: 24px;
  stroke: var(--text);
}

@media (max-width: 1320px) {
  .consensys-readiness-badge {
    display: none;
  }
}

@media (max-width: 1180px) {
  .consensys-menu {
    display: none;
  }
  .consensys-mobile-toggle {
    display: block;
  }
}

/* ============================================================
   NEW PRAETORIA COMPARISON MATRIX (EW VS PHYSICAL SHIELD)
   ============================================================ */

.praetoria-matrix-section {
  padding-block: var(--section-pad);
  background: var(--bg-alt);
  border-block: 1px solid var(--border);
  position: relative;
}

.matrix-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 32px;
  align-items: stretch;
  margin-top: 40px;
}

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

.matrix-card {
  padding: 32px;
  border-radius: 16px;
  background: rgba(22, 31, 40, 0.5);
  border: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.matrix-card--warning,
.matrix-card--tier1 {
  border-color: rgba(56, 189, 248, 0.4);
  background: radial-gradient(circle at top left, rgba(56, 189, 248, 0.08), transparent 70%), rgba(22, 31, 40, 0.6);
}

.matrix-card--praetoria {
  border-color: rgba(111, 168, 201, 0.5);
  background: radial-gradient(circle at top right, rgba(111, 168, 201, 0.14), transparent 70%), rgba(14, 21, 28, 0.9);
  box-shadow: 0 16px 40px rgba(0,0,0,0.4), 0 0 30px rgba(111, 168, 201, 0.1);
}

.matrix-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
}

.matrix-badge {
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 6px 12px;
  border-radius: 20px;
}

.matrix-badge--warning,
.matrix-badge--tier1 {
  background: rgba(56, 189, 248, 0.15);
  color: #38bdf8;
  border: 1px solid rgba(56, 189, 248, 0.35);
}

.matrix-badge--shield {
  background: rgba(111, 168, 201, 0.2);
  color: var(--accent-strong);
  border: 1px solid var(--accent);
}

.matrix-card h3 {
  font-size: 24px;
  margin-bottom: 12px;
}

.matrix-list {
  list-style: none;
  padding: 0;
  margin: 24px 0 0 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.matrix-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 15px;
  color: var(--text-dim);
  line-height: 1.5;
}

.matrix-item svg {
  width: 20px;
  height: 20px;
  flex: none;
  margin-top: 2px;
}

.matrix-item--fail svg {
  stroke: #ef4444;
}

.matrix-item--success svg {
  stroke: #4ade80;
}

.matrix-stats-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 48px;
}

@media (max-width: 768px) {
  .matrix-stats-row {
    grid-template-columns: repeat(2, 1fr);
  }
}

.stat-metric-card {
  padding: 20px;
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: 12px;
  text-align: center;
}

.stat-metric-val {
  font-family: var(--font-display);
  font-size: 32px;
  font-weight: 800;
  color: var(--accent-strong);
  line-height: 1;
}

.stat-metric-label {
  font-size: 13px;
  color: var(--text-dim);
  margin-top: 8px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* ============================================================
   ENGINEERING MATH & FORMULAS SECTION (SP 542.1325800.2024)
   ============================================================ */

.engineering-calc-section {
  padding-block: var(--section-pad);
  background: #080c11;
  border-bottom: 1px solid var(--border);
  position: relative;
}

.calc-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  margin-top: 36px;
}

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

.formula-card {
  padding: 28px;
  background: rgba(14, 21, 28, 0.9);
  border: 1px solid var(--border-strong);
  border-radius: 16px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.4);
}

.formula-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}

.formula-header-icon {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: rgba(111, 168, 201, 0.15);
  border: 1px solid var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-strong);
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 16px;
}

.formula-header-title {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
  color: var(--text);
}

.formula-box {
  background: #0b1016;
  border: 1px dashed rgba(111, 168, 201, 0.35);
  border-radius: 12px;
  padding: 16px 20px;
  margin-block: 16px;
  text-align: center;
}

.formula-code {
  font-family: var(--font-display), monospace;
  font-size: 24px;
  font-weight: 800;
  color: var(--accent-strong);
  letter-spacing: 0.05em;
}

.formula-subtext {
  font-size: 12px;
  color: var(--text-dim);
  margin-top: 6px;
}

.comparison-box-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 16px;
}

@media (max-width: 600px) {
  .comparison-box-grid {
    grid-template-columns: 1fr;
  }
}

.comp-mini-card {
  padding: 14px;
  border-radius: 10px;
  font-size: 13px;
  line-height: 1.4;
}

.comp-mini-card--rigid {
  background: rgba(239, 68, 68, 0.08);
  border: 1px solid rgba(239, 68, 68, 0.3);
  color: #fca5a5;
}

.comp-mini-card--damped {
  background: rgba(74, 222, 128, 0.08);
  border: 1px solid rgba(74, 222, 128, 0.3);
  color: #86efac;
}

.comp-val {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 800;
  margin-top: 4px;
}

.sp-standards-list {
  list-style: none;
  padding: 0;
  margin-top: 24px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

@media (max-width: 768px) {
  .sp-standards-list {
    grid-template-columns: 1fr;
  }
}

.sp-item {
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 18px;
}

.sp-item-num {
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 800;
  color: var(--accent);
  letter-spacing: 0.1em;
  margin-bottom: 6px;
}

.sp-item h4 {
  font-size: 15px;
  margin-bottom: 6px;
}

.sp-item p {
  font-size: 12px;
  color: var(--text-dim);
  line-height: 1.4;
}

/* ============================================================
   REGULATORY & LEGAL STANDARDS SECTION (СП 542, 256-ФЗ, ПП 1046)
   ============================================================ */

.regulatory-section {
  padding-block: var(--section-pad);
  border-bottom: 1px solid var(--border);
}

.regulatory-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 36px;
}

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

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

.regulatory-card {
  padding: 28px 24px;
  background: rgba(22, 31, 40, 0.75);
  border: 1px solid var(--border);
  border-radius: 14px;
  display: flex;
  flex-direction: column;
  height: 100%;
  box-sizing: border-box;
  transition: all 0.25s ease;
}

.regulatory-card:hover {
  border-color: var(--accent);
  background: rgba(22, 31, 40, 0.95);
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.45);
}

.law-badge {
  font-family: var(--font-display);
  font-size: 10.5px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent-strong);
  background: rgba(111, 168, 201, 0.12);
  border: 1px solid rgba(111, 168, 201, 0.3);
  padding: 4px 12px;
  border-radius: 20px;
  align-self: flex-start;
  margin-bottom: 16px;
  height: 26px;
  display: inline-flex;
  align-items: center;
  white-space: nowrap;
  box-sizing: border-box;
}

.regulatory-card h3 {
  font-size: 17px;
  line-height: 1.3;
  margin-bottom: 12px;
  color: var(--text);
  min-height: 44px; /* Идеально выравнивает текст описания под заголовками! */
  display: flex;
  align-items: flex-end;
}

.regulatory-card p {
  font-size: 13px;
  color: var(--text-dim);
  line-height: 1.55;
  margin: 0;
}

/* ============================================================
   ENERGY TABLE (KINEMATICS E = mV²/2)
   ============================================================ */

.energy-table-wrap {
  margin-top: 24px;
  overflow-x: auto;
  border: 1px solid var(--border-strong);
  border-radius: 14px;
  background: #0b1016;
}

.energy-table {
  width: 100%;
  border-collapse: collapse;
  text-align: left;
  font-size: 14px;
}

.energy-table th,
.energy-table td {
  padding: 16px 20px;
  border-bottom: 1px solid var(--border);
}

.energy-table th {
  background: rgba(22, 31, 40, 0.8);
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent-strong);
}

.energy-table td {
  color: var(--text);
}

.energy-table tr:last-child td {
  border-bottom: none;
}

.energy-table .energy-highlight {
  font-family: var(--font-display);
  font-weight: 800;
  color: #38bdf8;
}

.energy-table tr.highlight-row {
  background: rgba(56, 189, 248, 0.08);
}

.energy-quote-banner {
  margin-top: 24px;
  padding: 20px 24px;
  background: linear-gradient(135deg, rgba(111, 168, 201, 0.15), rgba(14, 21, 28, 0.85));
  border: 1px solid rgba(111, 168, 201, 0.35);
  border-radius: 12px;
  display: flex;
  align-items: center;
  gap: 16px;
}

.energy-quote-banner svg {
  width: 32px;
  height: 32px;
  stroke: var(--accent-strong);
  flex: none;
}

.energy-quote-text {
  font-size: 14px;
  color: var(--text);
  line-height: 1.5;
}

.energy-quote-text strong {
  color: var(--accent-strong);
}

/* ============================================================
   CHECKLIST FOR BUYERS (5 QUESTIONS TO SUPPLIER)
   ============================================================ */

.checklist-section {
  padding-block: var(--section-pad);
  border-bottom: 1px solid var(--border);
}

.checklist-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
  margin-top: 36px;
}

@media (max-width: 1024px) {
  .checklist-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

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

.checklist-card {
  padding: 22px 18px;
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: 12px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
  box-sizing: border-box;
}

.check-num {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 800;
  color: var(--accent-strong);
  margin-bottom: 12px;
}

.checklist-card p {
  font-size: 13px;
  color: var(--text);
  font-weight: 700;
  line-height: 1.4;
  margin: 0;
}

.checklist-card span {
  font-size: 11px;
  color: var(--text-dim);
  margin-top: 10px;
  display: block;
}

/* ============================================================
   TYPICAL MARKET ERRORS SECTION
   ============================================================ */

.errors-section {
  padding-block: var(--section-pad);
  border-bottom: 1px solid var(--border);
}

.errors-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-top: 36px;
}

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

.error-card-item {
  padding: 24px;
  background: rgba(22, 31, 40, 0.6);
  border: 1px solid rgba(239, 68, 68, 0.3);
  border-radius: 14px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  height: 100%;
  box-sizing: border-box;
}

.error-card-title {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 700;
  color: #f87171;
  min-height: 40px;
}

.error-card-desc {
  font-size: 13px;
  color: var(--text-dim);
  line-height: 1.5;
}
/* ============================================================
   MANIFESTO SECTION (STRICT TOP-TO-BOTTOM VERTICAL LAYOUT)
   ============================================================ */

.manifesto {
  padding-block: var(--section-pad);
  background: rgba(14, 21, 30, 0.6);
  border-block: 1px solid var(--border);
}

.manifesto .container {
  display: block !important;
  max-width: 960px;
  margin-inline: auto;
}

.manifesto-quote {
  font-family: var(--font-display);
  font-size: clamp(22px, 3.2vw, 32px);
  font-weight: 700;
  color: var(--text);
  line-height: 1.35;
  margin-top: 12px;
  margin-bottom: 20px;
}

.manifesto-note {
  font-size: 16px;
  color: var(--text-dim);
  line-height: 1.7;
  max-width: 840px;
}


