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

:root {
  --y: #ffbf00;
  --y2: #d9af00;
  --blk: #293133;
  --section-bg: #293133;
  --on-section: #E9EDEF;
  --on-section-muted: #B0BEC5;
  --on-section-subtle: rgba(233, 237, 239, 0.55);
  --dark: #111;
  --dark2: #1A1A1A;
  --mid: #252525;
  --white: #fff;
  --light: #F7F7F5;
  --border: #E8E8E4;
  --txt: #1A1A1A;
  --txt2: #6B6B6B;
  --red: #E03A2F;
  --hh: 68px;
  --r: 4px;
  --ease: cubic-bezier(.25, .46, .45, .94);
  --font: "Noto Sans", Arial, Helvetica, sans-serif;
}

html {
  scroll-behavior: smooth;
  font-size: 16px
}

body {
  font-family: var(--font);
  color: var(--txt);
  background: var(--blk);
  overflow-x: hidden;
  line-height: 1.6
}

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

a {
  text-decoration: none;
  color: inherit
}

ul {
  list-style: none
}

button {
  cursor: pointer;
  border: none;
  background: none;
  font-family: inherit
}

h1,
h2,
h3 {
  line-height: 1.05
}

.container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 32px
}

/* ── BUTTONS ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  font-family: var(--font);
  font-size: .85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .1em;
  border-radius: var(--r);
  transition: all .25s var(--ease);
  white-space: nowrap;
  cursor: pointer
}

.btn-y {
  background: var(--y);
  color: var(--blk);
  border: 2px solid var(--y)
}

.btn-y:hover {
  background: var(--y2);
  border-color: var(--y2);
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(245, 196, 0, .3)
}

.btn-wh {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255, 255, 255, .35)
}

.btn-wh:hover {
  background: var(--white);
  color: var(--blk);
  border-color: var(--white)
}

.btn-blk {
  background: var(--blk);
  color: var(--white);
  border: 2px solid var(--blk)
}

.btn-blk:hover {
  background: var(--dark2);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, .3)
}

.btn-sm {
  padding: 10px 20px;
  font-size: .72rem
}

/* ── HERO ── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--blk);
}

/* SVG industrial background */
.hero-bg-wrap {
  position: absolute;
  inset: 0;
  z-index: 0
}


/* Dark overlay — heavier on left so text is always readable */
.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(110deg, rgba(41, 49, 51, .97) 0%, rgba(41, 49, 51, .88) 45%, rgba(41, 49, 51, .72) 72%, rgba(41, 49, 51, .45) 100%),
    linear-gradient(to top, rgba(41, 49, 51, .8) 0%, transparent 30%);
}

/* Yellow accent vertical bar */
.hero-bar {
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 4px;
  z-index: 3;
  background: var(--y);
}

.hero-container {
  position: relative;
  z-index: 2;
  width: 100%
}

.hero-inner {
  display: grid;
  grid-template-columns: minmax(0, 3fr) minmax(0, 2fr);
  gap: clamp(28px, 4vw, 56px);
  align-items: stretch;
  padding: clamp(72px, 10vh, 100px) 0;
}

.hero-content {
  position: relative;
  z-index: 2;
  min-width: 0;
  height: 100%
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(245, 196, 0, .1);
  border: 1px solid rgba(245, 196, 0, .3);
  padding: 6px 14px;
  border-radius: 2px;
  font-size: .72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .12em;
  color: var(--y);
  margin-bottom: 28px;
}

.hero-eyebrow span {
  width: 6px;
  height: 6px;
  background: var(--y);
  border-radius: 50%;
  animation: blink 2s infinite
}

@keyframes blink {

  0%,
  100% {
    opacity: 1
  }

  50% {
    opacity: .25
  }
}

.hero h1 {
  font-family: var(--font);
  font-size: clamp(3.2rem, 6vw, 5.0rem);
  color: var(--on-section);
  letter-spacing: .02em;
  margin-bottom: 24px;
  line-height: .98;
}

.hero h1 .line-y {
  color: var(--y);
  display: block;
}

.hero-desc {
  color: var(--on-section);
  font-size: 1rem;
  font-weight: 300;
  max-width: 480px;
  margin-bottom: 40px;
  line-height: 1.8;
}

.hero-cta {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 56px
}

/* Hero stats row */
.hero-kpi {
  display: flex;
  gap: 0;
  border: 1px solid rgba(255, 255, 255, .1);
  border-radius: var(--r);
  overflow: hidden;
  width: fit-content
}

.kpi {
  padding: 16px 26px;
  border-right: 1px solid rgba(255, 255, 255, .1);
  text-align: center
}

.kpi:last-child {
  border: none
}

.kpi-n {
  font-family: var(--font);
  font-size: 2rem;
  letter-spacing: .04em;
  color: var(--y);
  line-height: 1
}

.kpi-l {
  font-size: .65rem;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--on-section-subtle);
  margin-top: 3px
}

/* Hero callback card (40% column) */
.hero-float {
  position: relative;
  z-index: 2;
  width: 100%;
  min-width: 0;
  display: flex;
  flex-direction: column;
}

.hf-card {
  position: relative;
  flex: 1;
  height: 100%;
  display: flex;
  flex-direction: column;
  background: rgba(255, 255, 255, .06);
  border: 1px solid rgba(255, 255, 255, .14);
  border-radius: 14px;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(24px);
  padding: clamp(28px, 3vw, 40px);
  overflow: hidden;
}

.hf-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--y), transparent);
}

/* ── TICKER STRIP ── */
.ticker {
  background: var(--y);
  padding: 14px 0;
  overflow: hidden;
  white-space: nowrap
}

.ticker-inner {
  display: inline-flex;
  gap: 0;
  animation: ticker 18s linear infinite
}

@keyframes ticker {
  from {
    transform: translateX(0)
  }

  to {
    transform: translateX(-50%)
  }
}

.ticker-item {
  font-family: var(--font);
  font-size: 1.1rem;
  letter-spacing: .08em;
  color: var(--blk);
  padding: 0 28px;
  display: flex;
  align-items: center;
  gap: 10px
}

.ticker-item::after {
  content: '·';
  color: rgba(0, 0, 0, .3)
}

/* ── SECTION COMMONS ── */
.section {
  padding: 96px 0
}

.sec-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: .9rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .14em;
  color: var(--on-section);
  margin-bottom: 12px;
}

.sec-label::before {
  content: '';
  width: 20px;
  height: 2px;
  background: var(--y)
}

.sec-h {
  font-family: var(--font);
  font-size: clamp(2.2rem, 4vw, 3.5rem);
  letter-spacing: .03em;
  color: var(--white);
  margin-bottom: 10px;
  line-height: 1.05
}

.sec-h em {
  font-style: normal;
  color: var(--y);
  -webkit-text-stroke: 0
}

.sec-h--white {
  color: var(--on-section)
}

.sec-sub {
  color: var(--on-section);
  font-size: 1.2rem;
  font-weight: 300;
  max-width: 520px;
  margin-bottom: 52px;
  line-height: 1.75
}

/* ── SECTION TRANSITIONS ── */
.section-band,
.tp-bg,
.adv-bg {
  position: relative;
  isolation: isolate;
  background:
    radial-gradient(ellipse 85% 120px at 50% 0%, rgba(255, 191, 0, .07) 0%, transparent 65%),
    radial-gradient(ellipse 85% 120px at 50% 100%, rgba(255, 191, 0, .05) 0%, transparent 65%),
    linear-gradient(180deg,
      rgba(255, 255, 255, .035) 0%,
      transparent 14%,
      transparent 86%,
      rgba(255, 255, 255, .025) 100%),
    var(--section-bg);
}

.section-band::before,
.section-band::after,
.tp-bg::before,
.tp-bg::after,
.adv-bg::before,
.adv-bg::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  pointer-events: none;
  z-index: 0;
}

.section-band::before,
.tp-bg::before,
.adv-bg::before {
  top: 0;
  height: 56px;
  background:
    linear-gradient(90deg,
      transparent 0%,
      rgba(255, 191, 0, .15) 20%,
      rgba(255, 191, 0, .45) 50%,
      rgba(255, 191, 0, .15) 80%,
      transparent 100%) 0 0 / 100% 1px no-repeat,
    linear-gradient(180deg, rgba(255, 191, 0, .06) 0%, transparent 100%);
}

.section-band::after,
.tp-bg::after,
.adv-bg::after {
  bottom: 0;
  height: 48px;
  background:
    linear-gradient(90deg,
      transparent 0%,
      rgba(255, 255, 255, .04) 25%,
      rgba(255, 255, 255, .09) 50%,
      rgba(255, 255, 255, .04) 75%,
      transparent 100%) 0 100% / 100% 1px no-repeat,
    linear-gradient(0deg, rgba(0, 0, 0, .18) 0%, transparent 100%);
}

.section-band > .container,
.tp-bg > .container,
.adv-bg > .container {
  position: relative;
  z-index: 1;
}

/* После жёлтого тикера — чуть ярче верхний переход */
.ticker + .section-band::before,
.ticker + .tp-bg::before {
  background:
    linear-gradient(90deg,
      transparent 0%,
      rgba(255, 191, 0, .2) 20%,
      rgba(255, 191, 0, .55) 50%,
      rgba(255, 191, 0, .2) 80%,
      transparent 100%) 0 0 / 100% 1px no-repeat,
    linear-gradient(180deg, rgba(255, 191, 0, .12) 0%, transparent 100%);
}

/* «Вдавленная» зона между тёмными полосами */
.section-recess,
#models {
  position: relative;
  isolation: isolate;
  background:
    radial-gradient(ellipse 90% 55% at 50% 50%, rgba(255, 255, 255, .028) 0%, transparent 70%),
    linear-gradient(180deg, #252d2f 0%, #1e2628 50%, #252d2f 100%);
}

.section-recess::before,
.section-recess::after,
#models::before,
#models::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  height: 72px;
  pointer-events: none;
  z-index: 0;
}

.section-recess::before,
#models::before {
  top: 0;
  background: linear-gradient(180deg, var(--section-bg) 0%, transparent 100%);
}

.section-recess::after,
#models::after {
  bottom: 0;
  background: linear-gradient(0deg, var(--section-bg) 0%, transparent 100%);
}

.section-recess > .container,
#models > .container {
  position: relative;
  z-index: 1;
}

/* Мягкий верхний край у секции после «вдавленной» зоны или галереи */
#models + .quiz-bg,
.adv-bg + .portfolio-section,
.portfolio-section + .form-bg,
.form-bg + .faq-bg,
.faq-bg + .ct-bg {
  position: relative;
  isolation: isolate;
}

#models + .quiz-bg::before,
.adv-bg + .portfolio-section::before,
.portfolio-section + .form-bg::before,
.form-bg + .faq-bg::before,
.faq-bg + .ct-bg::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 64px;
  pointer-events: none;
  z-index: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, .2) 0%, transparent 100%);
}

#models + .quiz-bg > .container,
.adv-bg + .portfolio-section > .container,
.portfolio-section + .form-bg > .container,
.form-bg + .faq-bg > .container,
.faq-bg + .ct-bg > .container {
  position: relative;
  z-index: 1;
}

/* Тёмные секции */
.hero,
.quiz-bg,
.form-bg,
.ct-bg {
  background: var(--section-bg);
}

.hero .sec-label,
.quiz-bg .sec-label,
.form-bg .fl-tag,
.ct-bg .sec-label {
  color: var(--on-section);
}

.hero .sec-h,
.hero .sec-h--white,
.quiz-bg .sec-h,
.quiz-bg .sec-h--white,
.form-bg .form-showcase__title,
.ct-bg .sec-h,
.ct-bg .sec-h--white {
  color: var(--on-section);
}

.quiz-bg .sec-sub,
.form-bg .sec-sub,
.ct-bg .sec-sub {
  color: var(--on-section);
}

/* ── TECH PICKER ── */
.tp-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px
}

.tp-card {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: 10px;
  padding: 32px 20px;
  text-align: center;
  cursor: pointer;
  transition: all .28s var(--ease);
  position: relative;
  overflow: hidden;
}

.tp-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--y);
  transform: scaleX(0);
  transition: transform .28s var(--ease)
}

.tp-card:hover::after,
.tp-card.on::after {
  transform: scaleX(1)
}

.tp-card:hover,
.tp-card.on {
  border-color: var(--y);
  box-shadow: 0 8px 40px rgba(245, 196, 0, .18);
  transform: translateY(-5px)
}

.tp-card__img {
  display: block;
  width: auto;
  max-width: 100%;
  height: 120px;
  margin: 0 auto 16px;
  object-fit: contain;
  object-position: center
}

.tp-card h3 {
  font-size: 1.2rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .06em;
  color: var(--txt)
}

/* ── MODELS ── */
.models-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px
}

.mc {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
  transition: all .3s var(--ease);
  display: flex;
  flex-direction: column;
}

.mc:hover {
  box-shadow: 0 20px 60px rgba(0, 0, 0, .12);
  transform: translateY(-6px);
  border-color: rgba(245, 196, 0, .5)
}

.mc-img {
  height: 310px;
  background: var(--light);
  position: relative;
  overflow: hidden
}

.mc-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .4s var(--ease)
}

.mc:hover .mc-img img {
  transform: scale(1.04)
}

.mc-tag {
  position: absolute;
  top: 14px;
  right: 14px;
  background: var(--blk);
  color: var(--y);
  font-size: .65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
  padding: 4px 10px;
  border-radius: 2px
}

.mc-body {
  padding: 24px;
  flex: 1;
  display: flex;
  flex-direction: column
}

.mc-body h3 {
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--blk)
}

.mc-body p {
  color: var(--txt2);
  font-size: 1.0rem;
  margin-bottom: 16px;
  line-height: 1.6;
  flex: 1;
  font-weight: 300
}

.mc-specs {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
  margin-bottom: 16px
}

.mc-spec {
  background: var(--light);
  font-size: .9rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .06em;
  padding: 4px 10px;
  border-radius: 2px;
  color: var(--txt)
}

.mc-perks {
  margin-bottom: 18px;
  display: flex;
  flex-direction: column;
  gap: 6px
}

.mc-perk {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: .9rem;
  color: var(--txt)
}

.mc-perk svg {
  width: 14px;
  height: 14px;
  color: var(--y);
  flex-shrink: 0
}

.mc-btn {
  display: block;
  width: 100%;
  padding: 12px;
  background: var(--blk);
  color: var(--white);
  font-size: .75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .1em;
  border-radius: var(--r);
  text-align: center;
  cursor: pointer;
  border: none;
  transition: background .2s
}

.mc-btn:hover {
  background: #222
}

.mc-actions {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: auto
}

.mc-btn--alt {
  background: transparent;
  color: var(--blk);
  border: 1.5px solid var(--border)
}

.mc-btn--alt:hover {
  background: var(--light);
  border-color: var(--y);
  color: var(--blk)
}

/* ── ADVANTAGES ── */
.adv-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px
}

.adv-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 28px 18px;
  text-align: center;
  transition: all .25s var(--ease);
}

.adv-card:hover {
  border-color: var(--y);
  box-shadow: 0 8px 32px rgba(245, 196, 0, .14);
  transform: translateY(-4px)
}

.adv-ico {
  width: 85px;
  height: 85px;
  background: var(--blk);
  border-radius: var(--r);
  margin: 0 auto 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--y)
}

.adv-ico svg {
  width: 45px;
  height: 45px
}

.adv-t {
  font-size: .1.1rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .06em;
  color: var(--blk);
  margin-bottom: 5px
}

.adv-d {
  font-size: 1.0rem;
  color: var(--txt2);
  line-height: 1.55;
  font-weight: 300
}

/* ── CATALOG ── */
.ct-tabs {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 28px
}

.ct-tab {
  padding: 9px 20px;
  border-radius: var(--r);
  font-size: .75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
  border: 1.5px solid var(--border);
  background: transparent;
  color: var(--txt2);
  transition: all .2s;
  cursor: pointer
}

.ct-tab.on,
.ct-tab:hover {
  background: var(--blk);
  color: var(--white);
  border-color: var(--blk)
}

.ct-panel {
  display: none
}

.ct-panel.on {
  display: block
}

.ct-tbl {
  width: 100%;
  border-collapse: collapse;
  background: var(--white);
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: 0 2px 16px rgba(0, 0, 0, .06)
}

.ct-tbl th {
  background: var(--blk);
  color: var(--y);
  font-size: .7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .1em;
  padding: 13px 16px;
  text-align: left
}

.ct-tbl td {
  padding: 11px 16px;
  border-bottom: 1px solid var(--border);
  font-size: .84rem;
  color: var(--txt)
}

.ct-tbl tr:last-child td {
  border: none
}

.ct-tbl tr:hover td {
  background: #ffe374
}

.ct-tbl tbody tr.ct-row--clickable {
  cursor: pointer
}

.ct-tbl tbody tr.ct-row--clickable:focus-visible td {
  outline: 2px solid var(--y);
  outline-offset: -2px
}

.ct-badge {
  background: var(--y);
  color: var(--blk);
  padding: 3px 8px;
  border-radius: 2px;
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .05em;
  white-space: nowrap
}

.ct-trailer-cell {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  max-width: 100%
}

.ct-my-trailer-btn {
  flex-shrink: 0;
  padding: 3px 8px;
  border: 1px solid var(--blk);
  border-radius: 2px;
  background: #fff;
  color: var(--blk);
  font-size: .62rem;
  font-weight: 700;
  letter-spacing: .03em;
  text-transform: uppercase;
  white-space: nowrap;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transform: translateX(-4px);
  transition: opacity .2s var(--ease), visibility .2s, transform .2s var(--ease)
}

.ct-tbl tr:hover .ct-my-trailer-btn,
.ct-trailer-cell:focus-within .ct-my-trailer-btn {
  opacity: 1;
  visibility: visible;
  transform: translateX(0)
}

.ct-my-trailer-btn:hover {
  background: var(--y);
  border-color: var(--y)
}

@media (hover: none) {
  .ct-my-trailer-btn {
    opacity: 1;
    visibility: visible;
    transform: none
  }
}

.tech-modal__footer {
  margin-top: 16px;
  text-align: center
}

.tech-modal__quiz-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: 360px;
  padding: 12px 20px;
  border: 1px solid rgba(255, 255, 255, 1);
  border-radius: 8px;
  background: transparent;
  color: var(--white);
  font-size: .9rem;
  font-weight: 600;
  cursor: pointer;
  transition: background .2s var(--ease), border-color .2s var(--ease), color .2s var(--ease)
}

.tech-modal__quiz-btn:hover {
  background: var(--y);
  border-color: var(--y);
  color: var(--blk)
}

.quiz-modal-overlay .callback-box--wide {
  max-height: min(92vh, 720px);
  overflow-y: auto
}

.quiz-modal-overlay .quiz-wrap {
  max-width: none;
  margin: 0
}

.quiz-modal-overlay .callback-title {
  margin-bottom: 8px
}

.quiz-modal__context {
  margin: 0 0 12px;
  padding: 10px 12px;
  border-radius: 8px;
  background: rgba(245, 196, 0, .14);
  color: var(--white);
  font-size: .82rem;
  font-weight: 500;
  line-height: 1.4
}

.quiz-modal-overlay .qscreen {
  padding: 28px 24px
}

@media (max-width: 575px) {
  .quiz-modal-overlay .qscreen {
    padding: 22px 16px
  }

  .ct-trailer-cell {
    flex-wrap: wrap
  }
}

/* ── TECH LIST MODAL ── */
.tech-modal.callback-box--wide {
  width: min(1140px, calc(100vw - 24px));
  max-width: min(1140px, calc(100vw - 24px));
  padding: 28px 24px 24px
}

.tech-modal__tabs[hidden] {
  display: none !important
}

.ct-tab[hidden] {
  display: none !important
}

.tech-modal__sub {
  margin-bottom: 16px;
  text-align: left
}

.tech-modal__tabs {
  margin-bottom: 16px;
  flex-wrap: wrap
}

.tech-modal__body {
  max-height: min(60vh, 520px);
  overflow-y: auto;
  -webkit-overflow-scrolling: touch
}

.tech-table-wrap {
  border-radius: 10px
}

.tech-modal__note {
  margin-top: 16px;
  font-size: .82rem;
  color: var(--on-section);
  text-align: center
}

.tech-modal__note a {
  color: var(--white);
  font-weight: 600;
  text-decoration: underline
}

.ct-tbl--responsive {
  width: 100%;
  table-layout: fixed
}

.ct-tbl--responsive th,
.ct-tbl--responsive td {
  word-wrap: break-word
}

@media (min-width: 576px) {
  .tech-table-wrap {
    overflow-x: visible
  }

  .ct-tbl--responsive {
    min-width: 0
  }
}

@media (max-width: 575px) {
  .tech-modal.callback-box--wide {
    width: calc(100vw - 16px);
    max-width: calc(100vw - 16px);
    padding: 24px 14px 20px
  }

  .tech-table-wrap {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch
  }

  .ct-tbl--responsive {
    min-width: 520px;
    table-layout: auto
  }
}

/* ── GALLERY ── */

/* ── QUIZ ── */
.quiz-bg {
  padding: 96px 0
}

.quiz-wrap {
  max-width: 720px;
  margin: 0 auto;
  background: rgba(255, 255, 255, .04);
  border: 1px solid rgba(255, 255, 255, .09);
  border-radius: 14px;
  overflow: hidden
}

.qbar {
  height: 3px;
  background: rgba(255, 255, 255, .07)
}

.qbar-fill {
  height: 100%;
  background: var(--y);
  transition: width .4s var(--ease)
}

.qscreen {
  padding: 52px 48px;
  display: none
}

.qscreen.on {
  display: block
}

.q-back {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 18px;
  padding: 0;
  border: 0;
  background: none;
  color: var(--on-section-muted);
  font-family: var(--font);
  font-size: .82rem;
  cursor: pointer;
  transition: color .2s var(--ease);
}

.q-back:hover {
  color: var(--y);
}

.q-back svg {
  flex-shrink: 0;
}

.q-step {
  font-size: .68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .14em;
  color: var(--y);
  margin-bottom: 8px
}

.q-title {
  font-family: var(--font);
  font-size: 2.2rem;
  letter-spacing: .03em;
  color: var(--on-section);
  margin-bottom: 6px
}

.q-hint {
  color: var(--on-section-subtle);
  font-size: .82rem;
  margin-bottom: 28px;
  font-weight: 300
}

.q-opts {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px
}

.q-opt-card {
  position: relative;
  background: rgba(255, 255, 255, .04);
  border: 1.5px solid rgba(255, 255, 255, .09);
  border-radius: 10px;
  padding: 16px 18px;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 14px;
  color: var(--on-section);
  font-size: .88rem;
  font-weight: 400;
  transition: all .22s var(--ease);
  text-align: left;
}

.q-opt-card .q-opt {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
  pointer-events: none;
}

.q-opt-card svg {
  width: 36px;
  height: 36px;
  flex-shrink: 0;
  opacity: .65
}

.q-opt-card:hover,
.q-opt-card:has(.q-opt:checked) {
  border-color: var(--y);
  background: rgba(245, 196, 0, .1);
  color: var(--on-section)
}

.q-opt-card:hover svg,
.q-opt-card:has(.q-opt:checked) svg {
  opacity: 1
}

.q-intro {
  text-align: center;
  padding-bottom: 8px
}

.q-intro .q-title {
  font-size: 2.4rem;
  margin-bottom: 14px
}

.q-intro p {
  color: var(--on-section-muted);
  font-size: .95rem;
  margin-bottom: 32px;
  line-height: 1.8;
  font-weight: 300;
  max-width: 440px;
  margin-inline: auto
}

.q-final h3 {
  font-family: var(--font);
  font-size: 2rem;
  color: var(--on-section);
  margin-bottom: 10px
}

.q-final p {
  color: var(--on-section-muted);
  margin-bottom: 22px;
  font-weight: 300
}

.q-inp {
  width: 100%;
  padding: 15px 16px;
  background: rgba(255, 255, 255, .06);
  border: 1.5px solid rgba(255, 255, 255, .12);
  border-radius: var(--r);
  color: var(--white);
  font-family: var(--font);
  font-size: .95rem;
  outline: none;
  margin-bottom: 14px;
  transition: border-color .2s
}

.q-inp:focus {
  border-color: var(--y)
}

.q-inp::placeholder {
  color: rgba(255, 255, 255, .25)
}

.q-note {
  color: rgba(255, 255, 255, .25);
  font-size: .75rem;
  text-align: center;
  margin-top: 10px
}

.quiz-wrap .btn-y--center {
  justify-content: center
}

.quiz-wrap .btn-y--block {
  width: 100%;
  justify-content: center
}

.quiz-wrap .qbar-fill {
  width: 0
}

.q-opts--stack {
  grid-template-columns: 1fr
}

.q-opt-card--chip {
  justify-content: center;
  flex-direction: column;
  text-align: center;
  padding: 20px;
}

.q-opt__val {
  font-family: var(--font);
  font-size: 2rem;
  letter-spacing: .04em;
  color: var(--y);
}

.q-opt__val--muted {
  font-family: var(--font);
  font-size: .85rem;
  letter-spacing: normal;
  color: var(--on-section-muted);
}

.q-final .float-field {
  margin-bottom: 14px
}

.qscreen--success {
  text-align: center;
  padding: 52px 48px;
}

.qscreen--success .q-title {
  margin-bottom: 8px
}

.q-success-icon {
  display: block;
  margin: 0 auto 18px;
  color: var(--y);
}

.q-success-text {
  color: var(--on-section-muted);
  font-weight: 300;
}

/* ── FORM ── */

.form-section {
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  align-items: center;
  padding: clamp(56px, 8vh, 100px) 0;
}

.form-section.section {
  padding: clamp(56px, 8vh, 100px) 0
}

.form-section__container {
  width: 100%
}

.form-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.15fr);
  gap: clamp(32px, 5vw, 72px);
  align-items: center;
  width: 100%;
}

.form-panel {
  order: 1
}

.form-showcase {
  order: 2
}

.form-showcase {
  display: flex;
  flex-direction: column;
  gap: clamp(20px, 3vh, 28px);
  min-width: 0;
}

.form-section__container>.form-showcase__head {
  margin-bottom: clamp(24px, 4vh, 40px)
}

.form-showcase__head {
  margin-bottom: 4px
}

.form-showcase__title {
  font-family: var(--font);
  font-size: clamp(2.4rem, 4.5vw, 3.4rem);
  color: var(--on-section);
  letter-spacing: .03em;
  line-height: 1.02;
  margin: 0;
}

.form-showcase__title em {
  color: var(--y);
  font-style: normal
}

.fl-tag {
  font-size: .9rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .14em;
  color: var(--on-section-muted);
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 8px
}

.fl-tag::before {
  content: '';
  width: 16px;
  height: 2px;
  background: var(--y)
}

.form-showcase__photo {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, .1);
  aspect-ratio: 16/10;
  min-height: clamp(220px, 32vh, 380px);
  background: rgba(255, 255, 255, .04);
}

.form-showcase__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.form-showcase__photo::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 45%, rgba(10, 10, 10, .75) 100%);
  pointer-events: none;
}

.form-showcase__chip {
  position: absolute;
  top: 16px;
  right: 16px;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  background: rgba(10, 10, 10, .65);
  border: 1px solid rgba(245, 196, 0, .35);
  border-radius: 999px;
  color: var(--y);
  font-family: var(--font);
  font-size: 1.1rem;
  letter-spacing: .06em;
  backdrop-filter: blur(8px);
}

.form-metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.form-metric {
  padding: 16px 12px;
  text-align: center;
  background: rgba(255, 255, 255, .05);
  border: 1px solid rgba(255, 255, 255, .08);
  border-radius: 12px;
}

.form-metric__ico {
  display: flex;
  justify-content: center;
  margin-bottom: 8px;
  color: var(--y);
}

.form-metric__ico svg {
  width: 22px;
  height: 22px
}

.form-metric__val {
  font-family: var(--font);
  font-size: 1.65rem;
  letter-spacing: .04em;
  color: var(--on-section);
  line-height: 1;
}

.form-metric__lbl {
  margin-top: 4px;
  font-size: .65rem;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--on-section-muted);
}

.form-steps {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  padding: 14px 18px;
  background: rgba(255, 255, 255, .04);
  border: 1px solid rgba(255, 255, 255, .08);
  border-radius: 12px;
}

.form-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  flex: 0 0 auto;
}

.form-step__dot {
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .06);
  border: 1px solid rgba(255, 255, 255, .12);
  color: var(--on-section-muted);
}

.form-step__dot svg {
  width: 18px;
  height: 18px
}

.form-step--accent .form-step__dot {
  background: rgba(245, 196, 0, .15);
  border-color: rgba(245, 196, 0, .4);
  color: var(--y);
}

.form-step__lbl {
  font-size: .62rem;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--on-section-muted);
}

.form-step--accent .form-step__lbl {
  color: var(--y)
}

.form-step__line {
  flex: 1;
  height: 2px;
  min-width: 12px;
  background: linear-gradient(90deg, rgba(255, 255, 255, .12), rgba(245, 196, 0, .45), rgba(255, 255, 255, .12));
  border-radius: 1px;
}

.form-panel {
  display: flex;
  align-items: center;
  min-width: 0
}

.fcard {
  width: 100%;
  background: var(--white);
  border-radius: 16px;
  padding: clamp(32px, 4vw, 32px);
  box-shadow: 0 24px 80px rgba(0, 0, 0, .4);
}

.fcard__hint {
  margin: 0 0 20px;
  font-size: 1.0rem;
  color: var(--txt2);
  text-align: center;
  font-weight: 500;
  letter-spacing: .04em;
  text-transform: uppercase;
}

.fcard__submit {
  background: var(--blk) !important;
  color: var(--white) !important
}

.fcard__submit:hover {
  background: #222 !important
}

.form-section .callback-form {
  gap: 20px
}

.form-pick {
  border: 0;
  margin: 0;
  padding: 0;
  min-width: 0;
}

.form-pick__legend {
  display: block;
  width: 100%;
  margin-bottom: 10px;
  font-size: .68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .12em;
  color: var(--txt2);
}

.form-pick-grid {
  display: grid;
  gap: 10px;
}

.form-pick-grid--tech {
  grid-template-columns: repeat(3, 1fr)
}

.form-pick-grid--weight {
  grid-template-columns: repeat(5, 1fr)
}

.form-pick-card {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  margin: 0;
  padding: 12px 8px 10px;
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: 10px;
  text-align: center;
  cursor: pointer;
  overflow: hidden;
  transition: border-color .28s var(--ease), box-shadow .28s var(--ease), transform .28s var(--ease);
}

.form-pick-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--y);
  transform: scaleX(0);
  transition: transform .28s var(--ease);
}

.form-pick-card:has(input:checked)::after,
.form-pick-card:hover::after {
  transform: scaleX(1)
}

.form-pick-card:has(input:checked),
.form-pick-card:hover {
  border-color: var(--y);
  box-shadow: 0 6px 28px rgba(245, 196, 0, .16);
  transform: translateY(-2px);
}

.form-pick-card input {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
  pointer-events: none;
}

.form-pick-card__img {
  display: block;
  width: auto;
  max-width: 100%;
  height: 65px;
  flex-shrink: 0;
  object-fit: contain;
  object-position: center
}

.form-pick-card svg {
  width: 65px;
  height: 65px;
  flex-shrink: 0;
}

.form-pick-card__title {
  font-size: .68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .05em;
  color: var(--txt);
  line-height: 1.2;
}

.form-pick-card--text {
  padding: 14px 6px;
  min-height: 48px;
}

.form-pick-card--text .form-pick-card__title {
  font-size: .72rem
}

.form-success {
  display: none;
  text-align: center;
  padding: 24px 0;
}

.form-success:not([hidden]) {
  display: block
}

.form-success svg {
  display: block;
  margin: 0 auto 14px;
  color: var(--y2)
}

.form-success h3 {
  font-size: 1.5rem;
  font-weight: 800;
  margin-bottom: 6px;
  color: var(--blk)
}

.form-success p {
  color: var(--txt2);
  font-size: .86rem;
  font-weight: 300;
  margin: 0
}

/* ── FAQ ── */
.faq-bg {
  background: var(--blk)
}

.faq-max {
  max-width: 800px;
  margin: 0 auto
}

.faq-it {
  border-bottom: 1px solid var(--border)
}

.faq-q {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 0;
  cursor: pointer;
  gap: 16px;
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--white);
  transition: color .2s
}

.faq-q:hover {
  color: var(--y)
}
.faq-it.on .faq-q {
  color: var(--y)
}

.faq-ic {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  transition: transform .3s var(--ease);
  color: var(--txt2)
}

.faq-it.on .faq-ic {
  transform: rotate(45deg)
}

.faq-a {
  display: none;
  padding: 0 0 20px;
  color: var(--white);
  line-height: 1.75;
  font-size: .9rem;
  font-weight: 300
}

.faq-it.on .faq-a {
  display: block
}

/* ── CONTACTS ── */
.ct-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start
}

.ci {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 28px
}

.ci-ic {
  width: 44px;
  height: 44px;
  background: rgba(245, 196, 0, .1);
  border-radius: var(--r);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--y)
}

.ci-ic svg {
  width: 20px;
  height: 20px
}

.ci-l {
  font-size: .65rem;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--on-section-subtle);
  margin-bottom: 3px;
  font-weight: 600
}

.ci-v {
  color: var(--on-section);
  font-size: .92rem;
  font-weight: 600;
  line-height: 1.6
}

.ci-v a {
  color: var(--on-section);
  transition: color .2s
}

.ci-v a:hover {
  color: var(--y)
}

.ct-map {
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, .09);
  background: rgba(255, 255, 255, .04);
}

.ct-map iframe {
  display: block;
  width: 100%;
  height: 500px;
  border: 0;
}

.ct-btns {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 14px;
  margin-top: 8px
}

.ct-btns-socials {
  display: flex;
  gap: 10px;
  flex-wrap: wrap
}

.ct-soc {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border-radius: var(--r);
  transition: transform .2s, background .2s;
}

.ct-soc:hover {
  transform: translateY(-2px)
}

.ct-soc--wa {
  background: rgba(37, 211, 102, .15);
  color: #25d366
}

.ct-soc--tg {
  background: rgba(34, 158, 217, .15);
  color: #2ca5e0
}

.ct-soc--vb {
  background: rgba(115, 96, 242, .15);
  color: #7360f2
}

.ct-requisites {
  margin-top: 48px;
  padding-top: 32px;
  border-top: 1px solid rgba(255, 255, 255, .08);
}

.ct-requisites p {
  color: var(--on-section-muted);
  font-size: .8rem;
  line-height: 1.75;
  font-weight: 300;
  margin-bottom: 14px;
}

.ct-requisites p:last-child {
  margin-bottom: 0
}

.ct-requisites strong {
  color: var(--on-section);
  font-weight: 600
}

/* ── FOOTER ── */
footer {
  position: relative;
  background: #060606;
}

footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 56px;
  pointer-events: none;
  background:
    linear-gradient(90deg,
      transparent 0%,
      rgba(255, 191, 0, .08) 30%,
      rgba(255, 191, 0, .2) 50%,
      rgba(255, 191, 0, .08) 70%,
      transparent 100%) 0 0 / 100% 1px no-repeat,
    linear-gradient(180deg, rgba(0, 0, 0, .35) 0%, transparent 100%);
}

.footer-middle {
  padding: 28px 0;
  border-bottom: 1px solid rgba(255, 255, 255, .06);
}

.footer-middle p {
  max-width: 920px;
  margin: 0 auto;
  text-align: center;
  color: rgba(255, 255, 255, .35);
  font-size: .72rem;
  line-height: 1.7;
  font-weight: 300;
}

.foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  padding: 20px 0;
}

.foot-copy {
  color: rgba(255, 255, 255, .25);
  font-size: .75rem;
  margin: 0
}

.foot-credit {
  color: rgba(255, 255, 255, .25);
  font-size: .75rem;
  transition: color .2s;
}

.foot-credit:hover {
  color: var(--y)
}

/* ── COOKIE BANNER ── */
.cookie-banner {
  position: fixed;
  z-index: 8500;
  bottom: max(16px, env(safe-area-inset-bottom, 0px));
  left: 16px;
  right: 16px;
  width: auto;
  max-width: 640px;
  margin-inline: auto;
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--border);
  border-radius: 12px;
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.14);
  padding: 20px 24px;
  display: flex;
  align-items: center;
  gap: 16px;
  transform: translateY(calc(100% + 32px));
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition:
    transform 0.45s var(--ease),
    opacity 0.35s ease,
    visibility 0.35s ease;
}

.cookie-banner.is-visible {
  transform: translateY(0);
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.cookie-icon {
  font-size: 28px;
  flex-shrink: 0;
}

.cookie-body {
  flex: 1;
  min-width: 0;
}

.cookie-title {
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 4px;
  color: var(--blk);
}

.cookie-text {
  font-size: 13px;
  color: var(--txt2);
  line-height: 1.5;
}

.cookie-text a {
  color: var(--y2);
  text-decoration: underline;
  font-weight: 600;
}

.cookie-actions {
  display: flex;
  gap: 10px;
  flex-shrink: 0;
}

.cookie-btn-accept {
  padding: 9px 20px;
  background: var(--y);
  color: var(--blk);
  border: none;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
  transition: background 0.2s, transform 0.2s;
}

.cookie-btn-accept:hover {
  background: var(--y2);
  transform: translateY(-1px);
}

.cookie-btn-decline {
  padding: 9px 20px;
  background: var(--light);
  color: var(--txt2);
  border: 1px solid var(--border);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  transition: border-color 0.2s, color 0.2s;
}

.cookie-btn-decline:hover {
  border-color: var(--blk);
  color: var(--blk);
}

/* ── SCROLL TOP ── */
.scroll-top {
  position: fixed;
  bottom: 26px;
  right: 26px;
  z-index: 750;
  width: 52px;
  height: 52px;
  padding: 0;
  border: none;
  border-radius: 50%;
  background: var(--blk);
  color: var(--y);
  cursor: pointer;
  display: grid;
  place-items: center;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.25);
  transition: opacity 0.3s, transform 0.3s, visibility 0.3s, background 0.2s, color 0.2s;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
}

.scroll-top.is-visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.scroll-top:hover {
  background: var(--y);
  color: var(--blk);
}

.scroll-top[hidden] {
  display: none !important;
}

.scroll-top__ring {
  position: absolute;
  /* inset: 0; */
}

.scroll-top__progress {
  transition: stroke-dashoffset 0.08s linear;
}

.scroll-top__arrow {
  position: relative;
  z-index: 1;
}




/* ── MODAL ── */
.modal {
  position: fixed;
  inset: 0;
  z-index: 9000;
  background: rgba(0, 0, 0, .6);
  backdrop-filter: blur(8px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  pointer-events: none;
  transition: opacity .3s
}

.modal.on {
  opacity: 1;
  pointer-events: all
}

.modal-box {
  background: var(--white);
  border-radius: 14px;
  padding: 44px;
  width: 100%;
  max-width: 420px;
  position: relative;
  border-top: 4px solid var(--y);
  transform: scale(.95);
  transition: transform .3s var(--ease)
}

.modal.on .modal-box {
  transform: scale(1)
}

.modal-x {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--light);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--txt);
  transition: all .2s
}

.modal-x:hover {
  background: var(--blk);
  color: var(--white)
}

.modal-x svg {
  width: 14px;
  height: 14px
}

.modal h3 {
  font-size: 1.6rem;
  font-weight: 800;
  margin-bottom: 6px
}

.modal-sub {
  color: var(--txt2);
  font-size: .84rem;
  margin-bottom: 24px;
  font-weight: 300
}

.m-ok {
  text-align: center;
  padding: 16px 0
}

.m-ok svg {
  width: 52px;
  height: 52px;
  color: var(--y);
  margin: 0 auto 14px
}

.m-ok h3 {
  margin-bottom: 6px
}

.m-ok p {
  color: var(--txt2);
  font-size: .88rem;
  font-weight: 300
}

/* ── PROMO ── */
.promo {
  position: fixed;
  inset: 0;
  z-index: 9100;
  background: rgba(0, 0, 0, .65);
  backdrop-filter: blur(8px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  pointer-events: none;
  transition: opacity .3s
}

.promo.on {
  opacity: 1;
  pointer-events: all
}

.promo-box {
  background: var(--dark2);
  border-radius: 14px;
  max-width: 480px;
  width: 100%;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(245, 196, 0, .25);
  transform: translateY(16px);
  transition: transform .3s var(--ease)
}

.promo.on .promo-box {
  transform: translateY(0)
}

.promo-accent {
  height: 4px;
  background: linear-gradient(90deg, var(--y), transparent)
}

.promo-inner {
  padding: 36px
}

.promo-tag {
  background: rgba(245, 196, 0, .12);
  border: 1px solid rgba(245, 196, 0, .25);
  color: var(--y);
  font-size: .65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .12em;
  padding: 4px 12px;
  display: inline-block;
  margin-bottom: 14px;
  border-radius: 2px
}

.promo-inner h2 {
  font-family: var(--font);
  font-size: 2.2rem;
  letter-spacing: .03em;
  color: var(--white);
  margin-bottom: 10px
}

.promo-inner p {
  color: rgba(255, 255, 255, .45);
  font-size: .88rem;
  margin-bottom: 22px;
  line-height: 1.75;
  font-weight: 300
}

.promo-inp {
  width: 100%;
  padding: 15px;
  background: rgba(255, 255, 255, .06);
  border: 1.5px solid rgba(255, 255, 255, .1);
  border-radius: var(--r);
  color: var(--white);
  font-family: var(--font);
  font-size: .95rem;
  outline: none;
  margin-bottom: 12px;
  transition: border-color .2s
}

.promo-inp:focus {
  border-color: var(--y)
}

.promo-inp::placeholder {
  color: rgba(255, 255, 255, .25)
}

.promo-x {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .07);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  transition: background .2s
}

.promo-x:hover {
  background: rgba(255, 255, 255, .14)
}

.promo-x svg {
  width: 14px;
  height: 14px
}

.promo-disc {
  color: rgba(255, 255, 255, .2);
  font-size: .7rem;
  margin-top: 8px
}

/* ── CHAT WIDGET ── */
.cw {
  position: fixed;
  bottom: 96px;
  right: 26px;
  z-index: 800;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 10px
}

.cw-tog {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, .54);
  background: var(--y);
  color: var(--blk);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 28px rgba(245, 196, 0, .45);
  transition: all .25s var(--ease)
}

.cw-tog:hover {
  transform: scale(1.08)
}

.cw-tog-ico {
  width: 24px;
  height: 24px;
  display: block;
  transition: opacity .2s, transform .25s var(--ease)
}

.cw-tog-ico--close {
  display: none
}

.cw.open .cw-tog-ico--chat {
  display: none
}

.cw.open .cw-tog-ico--close {
  display: block
}

.cw.open .cw-tog-ico--close {
  transform: rotate(90deg)
}

.cw-btns {
  display: flex;
  flex-direction: column;
  gap: 9px
}

.cw-btn {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(0, 0, 0, .2);
  transform: scale(0) translateY(8px);
  opacity: 0;
  transition: transform .25s var(--ease), opacity .25s var(--ease)
}

.cw-btn svg {
  width: 22px;
  height: 22px
}

.cw-btn:hover {
  transform: scale(1.08) translateY(0) !important
}

.cw.open .cw-btn {
  transform: scale(1) translateY(0);
  opacity: 1
}

.cw.open .cw-btn:nth-child(1) {
  transition-delay: .04s
}

.cw.open .cw-btn:nth-child(2) {
  transition-delay: .09s
}

.cw.open .cw-btn:nth-child(3) {
  transition-delay: .14s
}

.cw.open .cw-btn:nth-child(4) {
  transition-delay: .19s
}

.cw-ph {
  background: var(--blk);
  color: var(--white)
}

.cw-vb {
  background: #7360F2;
  color: #fff
}

.cw-tg {
  background: #2CA5E0;
  color: #fff
}

.cw-wa {
  background: #25D366;
  color: #fff
}

/* ── RESPONSIVE ── */
@media(max-width:1199px) {
  .adv-grid {
    grid-template-columns: repeat(3, 1fr)
  }
}

@media(max-width:991px) {
  .hero-inner {
    grid-template-columns: 1fr;
    align-items: start;
    gap: 40px;
    padding: 64px 0 72px;
  }

  .hero-content {
    height: auto
  }

  .hero-float {
    max-width: 520px;
    margin-inline: auto;
    height: auto
  }

  .hf-card {
    height: auto;
    flex: none
  }

  .tp-grid {
    grid-template-columns: repeat(2, 1fr)
  }

  .models-grid {
    grid-template-columns: repeat(2, 1fr)
  }

  .form-section {
    min-height: auto
  }

  .form-grid {
    grid-template-columns: 1fr;
    gap: 36px
  }

  .form-showcase {
    display: none
  }

  .form-showcase {
    order: 1
  }

  .form-showcase__photo {
    min-height: 240px
  }

  .form-metrics {
    grid-template-columns: repeat(3, 1fr)
  }

  .form-pick-grid--tech {
    grid-template-columns: repeat(2, 1fr)
  }

  .form-pick-grid--weight {
    grid-template-columns: repeat(3, 1fr)
  }

  .ct-grid {
    grid-template-columns: 1fr
  }

  .adv-grid {
    grid-template-columns: repeat(2, 1fr)
  }
}

@media(max-width:767px) {
  :root {
    --hh: 60px
  }

  .section {
    padding: 64px 0
  }

  .ct-map iframe {
    height: 360px
  }

  .hero-kpi {
    flex-wrap: wrap
  }

  .kpi {
    flex: 1 1 50%
  }

  .hero h1 {
    font-size: 2.2rem
  }

  .qscreen {
    padding: 32px 24px
  }

  .q-opts {
    grid-template-columns: 1fr
  }

  .tp-grid {
    grid-template-columns: repeat(1, 1fr)
  }

  .models-grid {
    grid-template-columns: repeat(1, 1fr);
  }
}

@media(max-width:575px) {
  .hero-cta {
    flex-direction: column
  }

  .adv-grid {
    grid-template-columns: 1fr
  }

  .fcard {
    padding: 24px 20px
  }

  .form-pick-grid--tech {
    grid-template-columns: repeat(2, 1fr)
  }

  .form-pick-grid--weight {
    grid-template-columns: repeat(2, 1fr)
  }

  .modal-box {
    padding: 28px 20px
  }

  .cookie-banner {
    left: 12px;
    right: 12px;
    bottom: max(12px, env(safe-area-inset-bottom, 0px));
    flex-direction: column;
    align-items: stretch;
    padding: 16px 18px;
  }

  .cookie-actions {
    width: 100%
  }

  .cookie-btn-accept,
  .cookie-btn-decline {
    flex: 1;
    text-align: center
  }

  .scroll-top {
    bottom: 35px;
    right: 28px;
    width: 48px;
    height: 48px
  }

  .ct-tbl {
    font-size: .76rem
  }

  .ct-tbl th,
  .ct-tbl td {
    padding: 9px 10px
  }
}








/* ── 404 PAGE ── */
.error-page {
  position: relative;
  min-height: calc(100vh - var(--hh));
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 80px 0 100px;
  overflow: hidden;
}

.error-page__bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.error-page__grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 191, 0, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 191, 0, 0.04) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(ellipse 70% 60% at 50% 50%, #000 20%, transparent 80%);
}

.error-page__glow {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 600px;
  height: 600px;
  transform: translate(-50%, -50%);
  background: radial-gradient(circle, rgba(255, 191, 0, 0.12) 0%, transparent 65%);
  animation: error-glow-pulse 4s ease-in-out infinite;
}

.error-page__road {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 120px;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.35), transparent);
}

.error-page__road-lines {
  position: absolute;
  bottom: 48px;
  left: -10%;
  width: 120%;
  height: 4px;
  background: repeating-linear-gradient(
    90deg,
    var(--y) 0,
    var(--y) 48px,
    transparent 48px,
    transparent 96px
  );
  opacity: 0.35;
  animation: error-road-scroll 2.5s linear infinite;
}

@keyframes error-glow-pulse {
  0%, 100% { opacity: 0.6; transform: translate(-50%, -50%) scale(1); }
  50% { opacity: 1; transform: translate(-50%, -50%) scale(1.08); }
}

@keyframes error-road-scroll {
  from { transform: translateX(0); }
  to { transform: translateX(-96px); }
}

.error-page__inner {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 720px;
}

.error-page__code {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(12px, 3vw, 28px);
  margin-bottom: 32px;
  user-select: none;
}

.error-page__digit {
  font-size: clamp(7rem, 22vw, 13rem);
  font-weight: 900;
  line-height: 1;
  color: transparent;
  -webkit-text-stroke: 2px rgba(255, 191, 0, 0.45);
  letter-spacing: -0.04em;
  animation: error-digit-in 0.8s var(--ease) both;
}

.error-page__digit:first-child { animation-delay: 0.1s; }
.error-page__digit:last-child { animation-delay: 0.3s; }

@keyframes error-digit-in {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

.error-page__wheel {
  flex-shrink: 0;
  width: clamp(72px, 18vw, 120px);
  height: clamp(72px, 18vw, 120px);
  animation: error-wheel-spin 8s linear infinite, error-digit-in 0.8s var(--ease) 0.2s both;
}

.error-page__wheel svg {
  width: 100%;
  height: 100%;
  display: block;
}

@keyframes error-wheel-spin {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

.error-page__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 18px;
  margin-bottom: 20px;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--y);
  background: rgba(255, 191, 0, 0.1);
  border: 1px solid rgba(255, 191, 0, 0.25);
  border-radius: 100px;
  animation: error-digit-in 0.8s var(--ease) 0.4s both;
}

.error-page__badge-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--y);
  animation: error-dot-blink 1.5s ease-in-out infinite;
}

@keyframes error-dot-blink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.3; }
}

.error-page__title {
  font-size: clamp(1.6rem, 4vw, 2.4rem);
  font-weight: 800;
  color: var(--on-section);
  margin-bottom: 16px;
  letter-spacing: -0.02em;
  animation: error-digit-in 0.8s var(--ease) 0.5s both;
}

.error-page__text {
  font-size: clamp(0.95rem, 2vw, 1.1rem);
  color: var(--on-section-muted);
  line-height: 1.7;
  max-width: 480px;
  margin: 0 auto 36px;
  animation: error-digit-in 0.8s var(--ease) 0.6s both;
}

.error-page__actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 14px;
  animation: error-digit-in 0.8s var(--ease) 0.7s both;
}

.error-page__links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px 24px;
  margin-top: 32px;
  animation: error-digit-in 0.8s var(--ease) 0.8s both;
}

.error-page__links a {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--on-section-subtle);
  transition: color 0.2s var(--ease);
  position: relative;
}

.error-page__links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 0;
  height: 1px;
  background: var(--y);
  transition: width 0.25s var(--ease);
}

.error-page__links a:hover {
  color: var(--y);
}

.error-page__links a:hover::after {
  width: 100%;
}

@media (max-width: 480px) {
  .error-page {
    padding: 60px 0 80px;
  }

  .error-page__actions {
    flex-direction: column;
    width: 100%;
  }

  .error-page__actions .btn {
    width: 100%;
    justify-content: center;
  }
}






/* ── SEND SUCCESS PAGE ── */
.success-page {
  position: relative;
  min-height: calc(100vh - var(--hh));
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 80px 0 100px;
  overflow: hidden;
}

.success-page__bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.success-page__grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 191, 0, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 191, 0, 0.04) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(ellipse 70% 60% at 50% 50%, #000 20%, transparent 80%);
}

.success-page__glow {
  position: absolute;
  top: 42%;
  left: 50%;
  width: 560px;
  height: 560px;
  transform: translate(-50%, -50%);
  background: radial-gradient(circle, rgba(255, 191, 0, 0.14) 0%, transparent 65%);
  animation: success-glow-pulse 4s ease-in-out infinite;
}

.success-page__road {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 120px;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.35), transparent);
}

.success-page__road-lines {
  position: absolute;
  bottom: 48px;
  left: -10%;
  width: 120%;
  height: 4px;
  background: repeating-linear-gradient(
    90deg,
    var(--y) 0,
    var(--y) 48px,
    transparent 48px,
    transparent 96px
  );
  opacity: 0.35;
  animation: success-road-scroll 2.5s linear infinite;
}

@keyframes success-glow-pulse {
  0%, 100% { opacity: 0.55; transform: translate(-50%, -50%) scale(1); }
  50% { opacity: 1; transform: translate(-50%, -50%) scale(1.06); }
}

@keyframes success-road-scroll {
  from { transform: translateX(0); }
  to { transform: translateX(-96px); }
}

.success-page__inner {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 640px;
}

.success-page__icon-wrap {
  position: relative;
  width: clamp(88px, 20vw, 112px);
  height: clamp(88px, 20vw, 112px);
  margin: 0 auto 28px;
  animation: success-fade-up 0.8s var(--ease) 0.1s both;
}

.success-page__icon-ring {
  position: absolute;
  inset: -12px;
  border-radius: 50%;
  border: 2px solid rgba(255, 191, 0, 0.2);
  animation: success-ring-pulse 2.4s ease-in-out infinite;
}

.success-page__icon-ring--2 {
  inset: -24px;
  border-color: rgba(255, 191, 0, 0.08);
  animation-delay: 0.4s;
}

@keyframes success-ring-pulse {
  0%, 100% { transform: scale(1); opacity: 0.6; }
  50% { transform: scale(1.06); opacity: 1; }
}

.success-page__icon {
  position: relative;
  width: 100%;
  height: 100%;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: linear-gradient(145deg, var(--y) 0%, var(--y2) 100%);
  color: var(--blk);
  box-shadow:
    0 0 0 6px rgba(255, 191, 0, 0.12),
    0 12px 40px rgba(255, 191, 0, 0.25);
}

.success-page__icon svg {
  width: 46%;
  height: 46%;
  display: block;
  stroke-dasharray: 48;
  stroke-dashoffset: 48;
  animation: success-check-draw 0.6s var(--ease) 0.5s forwards;
}

@keyframes success-check-draw {
  to { stroke-dashoffset: 0; }
}

.success-page__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 18px;
  margin-bottom: 20px;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--y);
  background: rgba(255, 191, 0, 0.1);
  border: 1px solid rgba(255, 191, 0, 0.25);
  border-radius: 100px;
  animation: success-fade-up 0.8s var(--ease) 0.3s both;
}

.success-page__badge-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--y);
  animation: success-dot-blink 1.5s ease-in-out infinite;
}

@keyframes success-dot-blink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.3; }
}

.success-page__title {
  font-size: clamp(1.6rem, 4vw, 2.4rem);
  font-weight: 800;
  color: var(--on-section);
  margin-bottom: 14px;
  letter-spacing: -0.02em;
  animation: success-fade-up 0.8s var(--ease) 0.4s both;
}

.success-page__text {
  font-size: clamp(0.95rem, 2vw, 1.1rem);
  color: var(--on-section-muted);
  line-height: 1.7;
  max-width: 460px;
  margin: 0 auto 28px;
  animation: success-fade-up 0.8s var(--ease) 0.5s both;
}

.success-page__text strong {
  color: var(--on-section);
  font-weight: 700;
}

.success-page__card {
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding: 20px 24px;
  margin-bottom: 32px;
  text-align: left;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 191, 0, 0.15);
  border-radius: calc(var(--r) + 4px);
  backdrop-filter: blur(8px);
  animation: success-fade-up 0.8s var(--ease) 0.6s both;
}

.success-page__card-row {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.success-page__card-icon {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(255, 191, 0, 0.12);
  color: var(--y);
}

.success-page__card-icon svg {
  width: 18px;
  height: 18px;
  display: block;
}

.success-page__card-body {
  flex: 1;
  min-width: 0;
}

.success-page__card-label {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--on-section-subtle);
  margin-bottom: 2px;
}

.success-page__card-value {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--on-section);
  line-height: 1.4;
}

.success-page__card-value a {
  color: var(--y);
  transition: opacity 0.2s var(--ease);
}

.success-page__card-value a:hover {
  opacity: 0.85;
}

.success-page__actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 14px;
  animation: success-fade-up 0.8s var(--ease) 0.7s both;
}

.success-page__links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px 24px;
  margin-top: 32px;
  animation: success-fade-up 0.8s var(--ease) 0.8s both;
}

.success-page__links a {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--on-section-subtle);
  transition: color 0.2s var(--ease);
  position: relative;
}

.success-page__links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 0;
  height: 1px;
  background: var(--y);
  transition: width 0.25s var(--ease);
}

.success-page__links a:hover {
  color: var(--y);
}

.success-page__links a:hover::after {
  width: 100%;
}

@keyframes success-fade-up {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}

@media (max-width: 480px) {
  .success-page {
    padding: 60px 0 80px;
  }

  .success-page__card {
    padding: 16px 18px;
  }

  .success-page__actions {
    flex-direction: column;
    width: 100%;
  }

  .success-page__actions .btn {
    width: 100%;
    justify-content: center;
  }
}




/* ── BREADCRUMB ── */
.page-breadcrumb {
  padding: 20px 0 0;
  background: var(--blk);
}

.page-breadcrumb > .container {
  max-width: 860px;
}

.page-breadcrumb__nav {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  font-size: 0.82rem;
  color: var(--on-section-subtle);
}

.page-breadcrumb__nav a {
  color: var(--on-section-muted);
  transition: color 0.2s var(--ease);
}

.page-breadcrumb__nav a:hover {
  color: var(--y);
}

.page-breadcrumb__sep {
  opacity: 0.4;
  user-select: none;
}

.page-breadcrumb__current {
  color: var(--on-section);
  font-weight: 600;
}

/* ── TEXT PAGE ── */
/* ── BREADCRUMB ── */
.page-breadcrumb {
  padding: 20px 0 28px;
  background: var(--blk);
}

.page-breadcrumb > .container {
  max-width: 860px;
}

.page-breadcrumb__nav {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  margin-bottom: 16px;
  font-size: 0.82rem;
  color: var(--on-section-subtle);
}

.page-breadcrumb__nav a {
  color: var(--on-section-muted);
  transition: color 0.2s var(--ease);
}

.page-breadcrumb__nav a:hover {
  color: var(--y);
}

.page-breadcrumb__sep {
  opacity: 0.4;
  user-select: none;
}

.page-breadcrumb__current {
  color: var(--on-section);
  font-weight: 600;
}

.page-breadcrumb__title {
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  font-weight: 800;
  color: var(--on-section);
  letter-spacing: -0.02em;
  line-height: 1.15;
  margin-bottom: 12px;
}

.page-breadcrumb__date {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.82rem;
  color: var(--on-section-subtle);
}

.page-breadcrumb__date::before {
  content: "";
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--y);
}

/* ── TEXT PAGE ── */
.text-page {
  position: relative;
  padding: 0 0 80px;
  min-height: calc(100vh - var(--hh));
  background: var(--blk);
}

.text-page::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255, 191, 0, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 191, 0, 0.03) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: linear-gradient(180deg, #000 0%, transparent 85%);
}

.text-page > .container {
  position: relative;
  z-index: 1;
  max-width: 860px;
}

.text-page__content {
  padding: clamp(28px, 5vw, 44px);
  background: var(--white);
  border-radius: calc(var(--r) + 4px);
  box-shadow:
    0 0 0 1px rgba(255, 191, 0, 0.08),
    0 24px 64px rgba(0, 0, 0, 0.25);
}

.text-page__content > *:first-child {
  margin-top: 0;
}

.text-page__content > *:last-child {
  margin-bottom: 0;
}

.text-page__content h2 {
  font-size: clamp(1.15rem, 2.5vw, 1.35rem);
  font-weight: 800;
  color: var(--txt);
  margin: 36px 0 14px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--border);
  line-height: 1.3;
}

.text-page__content h2:first-child {
  margin-top: 0;
}

.text-page__content h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--txt);
  margin: 28px 0 10px;
  line-height: 1.35;
}

.text-page__content p {
  font-size: 0.95rem;
  color: var(--txt2);
  line-height: 1.75;
  margin-bottom: 16px;
}

.text-page__content ul,
.text-page__content ol {
  margin: 0 0 20px;
  padding-left: 0;
  list-style: none;
}

.text-page__content ul li,
.text-page__content ol li {
  position: relative;
  padding-left: 22px;
  margin-bottom: 10px;
  font-size: 0.95rem;
  color: var(--txt2);
  line-height: 1.65;
}

.text-page__content ul li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.62em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--y);
}

.text-page__content ol {
  counter-reset: text-page-ol;
}

.text-page__content ol li {
  counter-increment: text-page-ol;
}

.text-page__content ol li::before {
  content: counter(text-page-ol) ".";
  position: absolute;
  left: 0;
  top: 0;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--blk);
}

.text-page__content a {
  color: var(--blk);
  font-weight: 600;
  text-decoration: underline;
  text-decoration-color: rgba(255, 191, 0, 0.6);
  text-underline-offset: 3px;
  transition: color 0.2s var(--ease), text-decoration-color 0.2s var(--ease);
}

.text-page__content a:hover {
  color: var(--y2);
  text-decoration-color: var(--y);
}

.text-page__content strong {
  color: var(--txt);
  font-weight: 700;
}

.text-page__content blockquote {
  margin: 24px 0;
  padding: 18px 22px;
  background: var(--light);
  border-left: 3px solid var(--y);
  border-radius: 0 var(--r) var(--r) 0;
}

.text-page__content blockquote p {
  margin: 0;
  font-size: 0.92rem;
  color: var(--txt);
}

.text-page__content hr {
  border: none;
  height: 1px;
  background: var(--border);
  margin: 32px 0;
}

.text-page__footer {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-top: 36px;
  padding-top: 28px;
}

.text-page__back {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--on-section-muted);
  transition: color 0.2s var(--ease);
}

.text-page__back svg {
  width: 16px;
  height: 16px;
  transition: transform 0.2s var(--ease);
}

.text-page__back:hover {
  color: var(--y);
}

.text-page__back:hover svg {
  transform: translateX(-3px);
}

@media (max-width: 640px) {
  .page-breadcrumb {
    padding: 16px 0 22px;
  }

  .page-breadcrumb__nav {
    margin-bottom: 12px;
  }

  .text-page {
    padding-bottom: 60px;
  }

  .text-page__content {
    padding: 22px 20px;
  }

  .text-page__footer {
    flex-direction: column;
    align-items: flex-start;
  }

  .text-page__footer .btn {
    width: 100%;
    justify-content: center;
  }
}


