/* ===================================================================
   НУР ТЕХНИКА — дизайн-система
   Концепция: "Нур" (тат./араб. — свет) встречает материальность
   бытовой техники — сталь, стекло, латунь. Сигнатурный приём —
   диагональный «стальной блик», как отражение света на корпусе
   техники, применяется на карточках брендов и новостей.
   =================================================================== */

/* Шрифт Golos Text подключается через <link> в <head> каждой страницы — здесь не дублируем */

/* Анимированный переход между страницами (View Transitions API).
   ВНИМАНИЕ: эта функция браузера НЕ работает при открытии файлов
   напрямую с диска (file://, например после распаковки архива) —
   Chrome в этом случае просто показывает мгновенную смену страницы
   без анимации. Это не баг — так и должно быть при локальном
   просмотре; на реальном хостинге (https://) анимация работает
   и даёт плавный переход. Проверять эту анимацию нужно только на
   задеплоенном сайте или через локальный HTTP-сервер, не через file://.
   Настоящая причина замеченного "подёргивания" кнопки меню была не
   здесь, а в отсутствующем классе rc-nav__accent на selection.html
   (см. HANDOFF/историю чата) — уже исправлено отдельно. */
@view-transition { navigation: auto; }
.vt-freeze, .vt-freeze * { transition: none !important; }
::view-transition-group(root) {
  animation-duration: 0.55s;
  animation-timing-function: cubic-bezier(0.22, 0.61, 0.36, 1);
}
::view-transition-old(root), ::view-transition-new(root) {
  animation-duration: 0.55s;
  animation-timing-function: cubic-bezier(0.22, 0.61, 0.36, 1);
}

:root {
  /* Палитра: сталь + латунный отблеск света */
  --paper: #ffffff;
  --paper-deep: #f2f2f2;
  --ink: #1c2128;
  --ink-soft: #4f5250;
  --steel: #474b4c;
  --steel-deep: #262829;
  --steel-darker: #1a1b1c;
  --glow: #e3a455;
  --glow-soft: #f0c896;
  --orange: #FEC059;
  --tt-green: #3e7a5d;
  --silver: #c7cdd3;
  --silver-mist: #e4e7eb;
  --line: #d7dbe0;
  --white: #ffffff;

  --font-display: 'Golos Text', sans-serif;
  --font-body: 'Golos Text', sans-serif;

  --container: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; overflow-y: scroll; overflow-x: hidden; scrollbar-gutter: stable; }

html { height: 100%; }
body {
  margin: 0;
  font-family: var(--font-body);
  background: var(--paper);
  color: var(--ink);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button {
  font-family: inherit;
  font-size: 100%;
  color: inherit;
  -webkit-appearance: none;
  appearance: none;
  margin: 0;
  background: none;
  border: none;
}

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 28px;
}

/* ---------- Утилиты типографики ---------- */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-body);
  font-size: 18px;
  font-weight: 400;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #3E7A5D;
}
.eyebrow::before {
  content: "";
  flex-shrink: 0;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--orange);
  display: inline-block;
}
.eyebrow--animated::before { display: none; }

.tt-note {
  display: flex;
  gap: 10px;
  background: var(--silver-mist);
  border-left: 3px solid var(--tt-green);
  padding: 12px 16px;
  border-radius: 0 6px 6px 0;
  font-size: 13.5px;
  color: var(--ink-soft);
  margin: 16px 0 24px;
}

h1, h2, h3 {
  font-family: var(--font-display);
  color: var(--ink);
  margin: 0 0 0.4em;
  line-height: 1.15;
  text-wrap: pretty;
}
h1 { font-size: clamp(34px, 5vw, 58px); font-weight: 600; }
h2 { font-size: clamp(24px, 3.2vw, 36px); font-weight: 600; }
h3 { font-size: 18px; font-weight: 600; }

p { margin: 0 0 1em; color: var(--ink-soft); font-size: 18px; }

/* ---------- Хедер ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  flex-shrink: 0;
  background: rgba(245, 246, 248, 0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}
.site-header::after {
  content: "";
  display: block;
  height: 3px;
  background: linear-gradient(90deg, var(--tt-green) 0 45%, #fff 45% 55%, #D42E28 55% 100%);
}
.site-header__inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 18px 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.logo {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 19px;
  letter-spacing: 0.01em;
  color: var(--steel-deep);
  display: flex;
  align-items: baseline;
  gap: 6px;
}
.logo span { color: var(--orange); }
.logo__dot {
  display: inline-block;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--orange);
  align-self: center;
  flex-shrink: 0;
}

.city-select { position: relative; margin-left: 10px; flex-shrink: 0; }
.city-select__btn {
  display: flex; align-items: center; gap: 4px;
  background: transparent; border: none; cursor: pointer;
  font-family: var(--font-body); font-size: 15px; font-weight: 600;
  color: var(--ink-soft);
  padding: 4px 2px;
}
.city-select__btn:hover { color: var(--orange); }
.city-select__pin { width: 13px; height: 13px; flex-shrink: 0; }
.city-select__chevron { width: 10px; height: 10px; flex-shrink: 0; transition: transform 0.15s ease; }
.city-select.is-open .city-select__chevron { transform: rotate(180deg); }
.city-select__panel {
  position: absolute;
  top: calc(100% + 6px); left: 0;
  min-width: 130px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 12px 28px rgba(0,0,0,0.16);
  padding: 6px;
  opacity: 0; visibility: hidden; transform: translateY(-6px);
  transition: opacity 0.15s ease, transform 0.15s ease, visibility 0s linear 0.15s;
  z-index: 200;
}
.city-select.is-open .city-select__panel { opacity: 1; visibility: visible; transform: translateY(0); transition: opacity 0.15s ease, transform 0.15s ease; }
.city-select__option {
  display: block; width: 100%; text-align: left;
  background: transparent; border: none; cursor: pointer;
  font-family: var(--font-body); font-size: 15px; font-weight: 600;
  color: var(--ink); padding: 8px 10px; border-radius: 6px;
}
.city-select__option:hover { background: var(--paper); }
.city-select__option.is-active { color: var(--orange); }
@media (max-width: 900px) {
  .city-select__btn span { display: none; }
  .city-select { margin-left: 4px; }
}

.nav {
  display: flex;
  gap: 26px;
  align-items: center;
}
.nav a {
  position: relative;
  font-size: 15px;
  font-weight: 600;
  color: var(--ink-soft);
  padding: 8px 2px;
  background: transparent;
  transition: color 0.15s ease;
}
.nav a::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: 2px;
  height: 2px;
  background: var(--orange);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.25s ease;
}
.nav a:hover, .nav a.active {
  color: var(--steel-deep);
}
.nav a:hover::after, .nav a.active::after {
  transform: scaleX(1);
}
@media (prefers-reduced-motion: reduce) {
  .nav a { transition: none; }
  .nav a::after { transition: none; }
}
.nav a.nav-selection { color: var(--orange); }
.nav a.nav-selection:hover { color: var(--orange); }

.nav-toggle {
  display: none;
  background: none;
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 8px 10px;
  font-size: 18px;
  color: var(--steel-deep);
}

.lang-toggle {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 7px 16px;
  font-family: var(--font-body);
  font-size: 13.5px;
  font-weight: 800;
  letter-spacing: 0.02em;
  line-height: 1.2;
  cursor: pointer;
  color: var(--ink-soft);
  transition: border-color 0.15s ease;
}
.lang-toggle:hover { border-color: var(--orange); }
.lang-toggle .lang-sep { color: var(--silver); }

.lang-toggle .lang-opt { padding: 0 2px; transition: color 0.15s ease; }
.lang-toggle .lang-opt.is-active { color: var(--steel-deep); }
.lang-toggle .lang-opt:not(.is-active) { color: var(--silver); }
.tt-flag-icon {
  display: inline-block;
  vertical-align: middle;
  width: 15px;
  height: 10px;
  margin-right: 4px;
  border-radius: 2px;
  box-shadow: 0 0 0 1px rgba(0,0,0,0.14);
  flex-shrink: 0;
}

@media (max-width: 780px) {
  .nav { display: none; position: absolute; top: 100%; left: 0; right: 0; background: var(--paper); flex-direction: column; padding: 10px 20px 20px; border-bottom: 1px solid var(--line); gap: 4px; }
  .nav.is-open { display: flex; }
  .nav a { padding: 14px 12px; width: 100%; box-sizing: border-box; min-height: 44px; display: flex; align-items: center; }
  .nav-toggle { display: block; min-width: 44px; min-height: 44px; }
}
@media (max-width: 380px) {
  .site-header__inner { padding: 14px 12px; gap: 6px; }
  .logo { font-size: 15px; }
  .lang-toggle { padding: 6px 8px; gap: 2px; }
  .lang-toggle .lang-sep { display: none; }
}

/* ---------- Секции общие ---------- */
section { padding: 84px 0; }
.section-head { max-width: 640px; margin-bottom: 12px; }
.section-head p { font-size: 16.5px; }

@media (max-width: 640px) {
  section { padding: 56px 0; }
}

/* ---------- Стальной блик (сигнатурный приём) ---------- */
.sheen-card {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(115deg, transparent 30%, rgba(255,255,255,0.55) 45%, rgba(227,164,85,0.14) 52%, transparent 65%),
    var(--white);
  background-size: 220% 220%, 100% 100%;
  background-position: 120% 0%, 0 0;
  border: 1px solid var(--line);
  transition: background-position 0.6s ease, border-color 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
}
.sheen-card:hover {
  background-position: -20% 100%, 0 0;
  border-color: var(--glow);
  transform: translateY(-3px);
  box-shadow: 0 14px 30px rgba(28, 39, 51, 0.10);
}
@media (prefers-reduced-motion: reduce) {
  .sheen-card { transition: none; }
  .sheen-card:hover { transform: none; }
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  flex-shrink: 0;
  background: linear-gradient(180deg, #16241d 0%, #22392c 100%);
  color: var(--white);
  padding: 20px 0;
  width: 100vw;
  margin-left: calc(50% - 50vw);
}
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.08;
  pointer-events: none;
  background-image: url("data:image/svg+xml,<svg xmlns='http%3A//www.w3.org/2000/svg' viewBox='0 0 702.000000 459.000000'><g transform=%22translate%280.000000%2C459.000000%29 scale%280.100000%2C-0.100000%29%22 fill=%22white%22> <path d=%22M3392 4545 c-215 -86 -373 -187 -518 -330 -117 -115 -207 -246 -255 -370 -40 -103 -36 -98 -67 -76 -145 102 -365 138 -562 90 -101 -24 -263 -99 -369 -171 -95 -64 -258 -204 -311 -268 l-41 -49 53 -22 c253 -107 471 -260 634 -446 118 -135 212 -286 363 -580 183 -358 239 -443 364 -550 62 -53 186 -114 282 -139 88 -23 332 -25 453 -5 71 12 97 12 175 0 132 -20 364 -17 452 5 96 25 219 85 282 139 125 107 181 192 364 550 151 294 245 445 363 580 163 186 381 339 634 446 l53 22 -41 49 c-53 64 -216 204 -311 268 -106 72 -268 147 -369 171 -197 48 -417 12 -562 -90 -31 -22 -27 -27 -67 76 -94 244 -330 485 -616 629 -115 57 -242 106 -275 105 -14 0 -62 -16 -108 -34z m367 -106 c75 -38 168 -92 206 -121 108 -80 236 -214 300 -311 57 -89 124 -234 125 -272 1 -46 15 -48 67 -11 102 73 260 126 375 126 233 0 518 -142 773 -384 l80 -76 -120 -59 c-294 -145 -509 -334 -691 -606 -41 -62 -137 -235 -214 -385 -77 -150 -164 -309 -194 -354 -106 -160 -249 -268 -411 -312 -88 -24 -325 -29 -450 -11 -90 14 -110 14 -200 0 -125 -19 -361 -13 -450 11 -162 44 -305 152 -411 312 -30 45 -117 204 -194 354 -77 150 -173 323 -214 385 -182 272 -397 461 -691 606 l-120 59 80 76 c255 242 540 384 773 384 115 0 273 -53 375 -126 52 -37 66 -35 67 11 1 37 67 183 122 267 150 229 412 424 713 528 48 16 52 16 109 -3 32 -11 120 -51 195 -88z%22/> <path d=%22M3449 4103 c-228 -240 -395 -543 -445 -810 -22 -119 -15 -345 14 -455 69 -255 219 -517 416 -726 l69 -73 45 43 c75 72 205 241 275 358 70 118 134 270 169 398 29 110 36 336 14 455 -30 160 -114 360 -218 522 -53 83 -189 254 -245 308 l-39 38 -55 -58z m157 -106 c177 -211 289 -418 350 -642 24 -87 27 -119 28 -250 0 -122 -4 -166 -22 -238 -62 -248 -205 -506 -400 -717 l-58 -63 -58 64 c-197 218 -336 468 -398 716 -18 72 -22 116 -22 238 1 131 4 163 28 250 67 248 220 512 414 717 42 45 37 48 138 -75z%22/> <path d=%22M1621 2189 c-167 -33 -347 -136 -448 -259 -53 -64 -110 -177 -121 -241 l-8 -44 -112 3 c-231 6 -413 -28 -577 -108 -206 -100 -327 -259 -350 -462 -8 -60 11 -198 26 -198 5 0 31 13 57 30 125 77 287 130 396 130 118 0 228 -42 432 -162 136 -80 256 -132 380 -163 521 -133 1095 53 1684 544 36 29 66 57 68 62 2 4 -52 -11 -119 -32 -341 -112 -651 -138 -891 -75 -485 125 -607 565 -255 916 31 30 53 58 51 62 -7 10 -157 8 -213 -3z m111 -57 c-154 -192 -208 -340 -183 -498 41 -266 287 -448 654 -485 165 -16 404 8 595 62 41 11 76 18 78 16 6 -6 -151 -123 -256 -192 -107 -71 -359 -195 -470 -233 -165 -56 -301 -82 -461 -89 -303 -13 -492 42 -849 247 -128 74 -190 97 -287 111 -124 17 -263 -14 -415 -93 -42 -22 -82 -37 -88 -33 -15 9 -12 143 5 210 47 178 202 324 425 400 128 43 256 59 436 52 l161 -6 6 55 c20 194 233 410 472 479 57 16 185 35 194 28 3 -2 -5 -16 -17 -31z%22/> <path d=%22M5177 2194 c-3 -5 22 -36 54 -69 70 -70 140 -178 171 -261 17 -46 22 -82 23 -165 0 -102 -1 -107 -39 -183 -100 -203 -325 -320 -642 -333 -207 -9 -413 24 -663 106 -67 21 -121 36 -119 32 2 -5 32 -33 68 -62 509 -425 1021 -626 1474 -580 217 22 387 79 590 199 204 120 314 162 432 162 109 0 271 -53 396 -130 26 -17 52 -30 57 -30 15 0 34 138 26 198 -23 203 -144 362 -350 462 -164 80 -346 114 -577 108 l-112 -3 -8 44 c-11 64 -68 177 -121 241 -85 103 -227 194 -372 240 -75 23 -278 40 -288 24z m279 -59 c238 -69 451 -285 471 -479 l6 -55 161 6 c128 5 183 2 264 -11 202 -34 347 -101 457 -211 78 -78 117 -142 140 -230 17 -67 20 -201 5 -210 -6 -4 -46 11 -88 33 -152 79 -291 110 -415 93 -97 -14 -159 -37 -287 -111 -357 -205 -546 -260 -849 -247 -160 7 -296 33 -461 89 -111 38 -363 162 -470 233 -105 69 -262 186 -256 192 2 2 37 -5 78 -16 191 -54 430 -78 595 -62 297 30 519 155 608 343 93 196 59 395 -105 599 -28 34 -50 65 -50 69 0 10 131 -7 196 -25z%22/> <path d=%22M3495 1340 c-12 -58 -69 -171 -119 -237 -96 -126 -299 -290 -468 -378 -32 -17 -58 -32 -58 -35 0 -3 33 -22 73 -44 175 -94 362 -247 455 -374 59 -80 78 -116 107 -202 l22 -65 8 35 c42 198 281 450 572 606 40 22 73 41 73 44 0 3 -26 18 -58 35 -169 88 -373 253 -467 378 -56 74 -81 121 -110 207 l-22 65 -8 -35z m106 -251 c71 -97 205 -219 342 -309 64 -43 123 -81 130 -84 9 -5 9 -7 0 -12 -7 -3 -68 -42 -135 -86 -158 -104 -314 -257 -381 -373 -26 -44 -47 -86 -47 -93 0 -7 -16 17 -35 54 -75 144 -217 288 -406 414 -66 43 -125 81 -132 84 -9 5 -9 7 0 12 7 3 66 41 130 84 189 125 349 289 415 425 l22 46 24 -47 c13 -26 46 -77 73 -115z%22/> </g></svg>");
  background-size: 130px 85px;
}
.hero__inner { position: relative; z-index: 2; max-width: var(--container); margin: 0 auto; padding: 0 28px; }
.hero .eyebrow { color: var(--rc-navy); }
.hero .eyebrow::before { display: none; }
.hero h1 { color: var(--white); max-width: 780px; font-size: clamp(24px,3.4vw,36px); margin-top: 16px; }
.hero p.lead { color: rgba(255,255,255,0.72); font-size: 18px; max-width: 560px; }

.hero__stats {
  display: grid;
  grid-template-columns: repeat(3, auto);
  gap: 40px;
  margin-top: 56px;
}
.hero__categories {
  display: grid;
  grid-template-columns: 1fr;
  gap: 5px;
  margin: 14px 0 4px;
}
@media (max-width: 640px) { .hero__categories { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 380px) { .hero__categories { grid-template-columns: 1fr; } }
.cat-dropdown {
  position: relative;
  width: 100%;
}
.hero__categories .cat {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  width: 100%;
  height: 100%;
  box-sizing: border-box;
  position: relative;
  overflow: hidden;
  gap: 8px;
  font-family: inherit;
  font-size: 20px;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--white);
  margin: 0;
  -webkit-appearance: none;
  appearance: none;
  background:
    linear-gradient(115deg, transparent 30%, rgba(255,255,255,0.35) 45%, rgba(227,164,85,0.18) 52%, transparent 65%),
    rgba(255,255,255,0.08);
  background-size: 220% 220%, 100% 100%;
  background-position: 120% 0%, 0 0;
  border: 2px solid rgba(255,255,255,0.25);
  padding: 4px 14px;
  border-radius: 8px;
  text-decoration: none;
  cursor: pointer;
  transition: color 0.15s ease, border-color 0.15s ease, background-position 0.6s ease;
}
.hero__categories .cat:hover {
  border-color: var(--orange);
  background-position: -20% 100%, 0 0;
}
@media (prefers-reduced-motion: reduce) {
  .hero__categories .cat { transition: color 0.15s ease, border-color 0.15s ease; background-position: 0 0, 0 0; }
  .hero__categories .cat:hover { background-position: 0 0, 0 0; }
}
.hero__categories .cat .ic { font-size: 15px; }
.cat-dropdown.is-open .cat {
  border-color: var(--orange);
  background-position: -20% 100%, 0 0;
}
.cat-dropdown__panel {
  position: absolute;
  right: 0;
  width: 50%;
  top: 100%;
  margin-top: 0;
  background-clip: padding-box;
  z-index: 50;
  max-height: 50vh;
  overflow-y: auto;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 16px 34px rgba(0,0,0,0.28);
  padding: 16px 8px 8px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: opacity 0.2s cubic-bezier(0.22, 0.61, 0.36, 1), transform 0.2s cubic-bezier(0.22, 0.61, 0.36, 1), visibility 0s linear 0.2s;
  pointer-events: none;
}
.cat-dropdown.is-open .cat-dropdown__panel {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  transition: opacity 0.2s cubic-bezier(0.22, 0.61, 0.36, 1), transform 0.2s cubic-bezier(0.22, 0.61, 0.36, 1), visibility 0s linear 0s;
  pointer-events: auto;
}
@media (prefers-reduced-motion: reduce) {
  .cat-dropdown__panel { transition: opacity 0.15s ease, visibility 0s linear 0.15s; transform: none; }
  .cat-dropdown.is-open .cat-dropdown__panel { transition: opacity 0.15s ease; }
}
@media (max-width: 640px) {
  .cat-dropdown__panel { width: 100%; }
}
.cat-dropdown__panel a {
  display: block;
  position: relative;
  overflow: hidden;
  padding: 4px 12px;
  margin-bottom: 3px;
  border: 1px solid var(--line);
  border-radius: 5px;
  font-size: 13.5px;
  line-height: 1.3;
  font-weight: 600;
  color: var(--ink);
  text-decoration: none;
  cursor: pointer;
  background:
    linear-gradient(115deg, transparent 30%, rgba(255,255,255,0.65) 45%, rgba(227,164,85,0.16) 52%, transparent 65%),
    transparent;
  background-size: 220% 220%, 100% 100%;
  background-position: 120% 0%, 0 0;
  opacity: 0;
  transform: translateY(-9px);
  transition: opacity 0.34s ease, transform 0.34s ease, color 0.15s ease, border-color 0.15s ease, background-position 0.6s ease;
}
.cat-dropdown.is-open .cat-dropdown__panel a {
  opacity: 1;
  transform: translateY(0);
}
.cat-dropdown.is-open .cat-dropdown__panel a:nth-child(1) { transition-delay: 0.05s, 0.05s, 0s, 0s, 0s; }
.cat-dropdown.is-open .cat-dropdown__panel a:nth-child(2) { transition-delay: 0.14s, 0.14s, 0s, 0s, 0s; }
.cat-dropdown.is-open .cat-dropdown__panel a:nth-child(3) { transition-delay: 0.23s, 0.23s, 0s, 0s, 0s; }
.cat-dropdown.is-open .cat-dropdown__panel a:nth-child(4) { transition-delay: 0.32s, 0.32s, 0s, 0s, 0s; }
.cat-dropdown.is-open .cat-dropdown__panel a:nth-child(5) { transition-delay: 0.41s, 0.41s, 0s, 0s, 0s; }
.cat-dropdown.is-open .cat-dropdown__panel a:nth-child(6) { transition-delay: 0.50s, 0.50s, 0s, 0s, 0s; }
.cat-dropdown.is-open .cat-dropdown__panel a:nth-child(7) { transition-delay: 0.59s, 0.59s, 0s, 0s, 0s; }
.cat-dropdown.is-open .cat-dropdown__panel a:nth-child(8) { transition-delay: 0.68s, 0.68s, 0s, 0s, 0s; }
.cat-dropdown.is-open .cat-dropdown__panel a:nth-child(9) { transition-delay: 0.77s, 0.77s, 0s, 0s, 0s; }
.cat-dropdown.is-open .cat-dropdown__panel a:nth-child(10) { transition-delay: 0.86s, 0.86s, 0s, 0s, 0s; }
@media (prefers-reduced-motion: reduce) {
  .cat-dropdown__panel a { opacity: 1; transform: none; transition: color 0.15s ease, border-color 0.15s ease; }
}
.cat-dropdown__panel a:last-child { margin-bottom: 0; }
.cat-dropdown__panel a:hover {
  border-color: var(--orange);
  color: var(--orange);
  background:
    linear-gradient(115deg, transparent 30%, rgba(255,255,255,0.65) 45%, rgba(227,164,85,0.16) 52%, transparent 65%),
    var(--silver-mist);
  background-size: 220% 220%, 100% 100%;
  background-position: -20% 100%, 0 0;
}
@media (max-width: 780px) {
  .hero__categories { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px) {
  .hero__categories { grid-template-columns: 1fr; }
}

.hero__stat b {
  display: block;
  font-family: var(--font-display);
  font-size: 30px;
  color: var(--glow-soft);
  font-weight: 700;
}
.hero__stat span {
  font-size: 13px;
  color: rgba(255,255,255,0.6);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
@media (max-width: 640px) {
  .hero { padding: 90px 0 64px; }
  .hero__stats { grid-template-columns: 1fr; gap: 20px; }
}

/* ---------- Кнопки ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 14.5px;
  padding: 13px 24px;
  border-radius: 4px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: all 0.18s ease;
}
.btn-primary { background: var(--glow); color: var(--steel-darker); }
.btn-primary:hover { background: var(--glow-soft); }
.btn-cta {
  background: var(--orange);
  color: #fff;
  border: 2px solid #fff;
  min-width: 224px;
  justify-content: center;
  text-align: center;
}
.btn-cta:hover {
  border-color: var(--tt-green);
  box-shadow: 0 0 18px rgba(62, 122, 93, 0.55);
}
.btn-ghost { border-color: rgba(255,255,255,0.35); color: var(--white); }
.btn-ghost:hover { background: rgba(255,255,255,0.08); }
.btn-steel { background: var(--steel-deep); color: var(--white); }
.btn-steel:hover { background: var(--steel); }

/* ---------- Карточки-ссылки (главная) ---------- */
.link-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.link-card {
  display: block;
  width: 100%;
  padding: 32px 26px;
  border-radius: 6px;
}
.link-card .num {
  font-family: var(--font-display);
  font-size: 13px;
  color: var(--glow);
  font-weight: 700;
  margin-bottom: 18px;
  display: block;
}
.link-card h3 { margin-bottom: 8px; }
.link-card p { font-size: 14.5px; margin-bottom: 18px; }
.link-card .go { font-size: 13.5px; font-weight: 700; color: var(--steel); }
@media (max-width: 860px) {
  .link-grid { grid-template-columns: 1fr; }
}

/* ---------- О компании ---------- */
.about-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  align-items: stretch;
}
.about-card-link {
  display: flex;
  flex-direction: column;
  height: 100%;
  box-sizing: border-box;
  position: relative;
  overflow: hidden;
  color: inherit;
  text-decoration: none;
  border-radius: 8px;
  border: 1px solid transparent;
  padding: 16px 16px 32px;
  margin: -16px -16px 0;
  background:
    linear-gradient(115deg, transparent 30%, rgba(255,255,255,0.55) 45%, rgba(227,164,85,0.14) 52%, transparent 65%),
    transparent;
  background-size: 220% 220%, 100% 100%;
  background-position: 120% 0%, 0 0;
  transition: color 0.15s ease, border-color 0.15s ease, background-position 0.6s ease;
}
.about-card-link:hover {
  border-color: var(--glow);
  background:
    linear-gradient(115deg, transparent 30%, rgba(255,255,255,0.55) 45%, rgba(227,164,85,0.14) 52%, transparent 65%),
    var(--white);
  background-size: 220% 220%, 100% 100%;
  background-position: -20% 100%, 0 0;
}
@media (prefers-reduced-motion: reduce) {
  .about-card-link { transition: color 0.15s ease, border-color 0.15s ease; }
}
.about-block > .about-card-link:nth-child(1) { margin-right: 0; }
.about-block > .about-card-link:nth-child(2) { margin-left: 0; }
.about-card-link p { color: var(--ink-soft); }
.card-link-go {
  display: inline-block;
  margin-top: auto;
  padding-top: 12px;
  font-size: 18px;
  font-weight: 700;
  color: var(--steel);
  transition: color 0.15s ease;
}
.about-card-link:hover .card-link-go { color: var(--orange); }
.about-card-link__cta {
  display: inline-block;
  margin-top: 14px;
  font-size: 15px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  color: var(--orange);
}
.about-block .quote {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 600;
  color: var(--steel-deep);
  line-height: 1.4;
  border-left: 3px solid var(--glow);
  padding-left: 20px;
}
@media (max-width: 860px) {
  .about-block { grid-template-columns: 1fr; }
}

/* ---------- Бренды: поиск + сетка ---------- */
.brand-search {
  position: relative;
  max-width: 340px;
  margin-bottom: 32px;
}
.brand-search input {
  width: 100%;
  font: inherit;
  font-size: 14.5px;
  padding: 12px 16px 12px 42px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--white);
  outline: none;
  transition: border-color 0.15s ease;
}
.brand-search input:focus { border-color: var(--steel); }
.brand-search svg {
  position: absolute; left: 14px; top: 50%; transform: translateY(-50%);
  width: 16px; height: 16px; stroke: var(--ink-soft);
}
.brand-count { font-size: 13.5px; color: var(--ink-soft); margin-bottom: 20px; }
.brand-count b { color: var(--ink); }

.brand-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
  gap: 10px;
}
.brand-item {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 84px;
  padding: 16px;
  border-radius: 4px;
}
.brand-item img { max-height: 34px; width: auto; filter: grayscale(1) opacity(0.75); transition: filter 0.2s ease; }
.brand-item:hover img { filter: grayscale(0) opacity(1); }
.brand-item.is-hidden { display: none; }
.brand-empty { display: none; padding: 40px 0; text-align: center; color: var(--ink-soft); }
.brand-empty.is-visible { display: block; }

/* ---------- Новости ---------- */
.news-list { display: flex; flex-direction: column; }
.news-item {
  display: grid;
  grid-template-columns: 140px 1fr;
  gap: 28px;
  padding: 28px 0;
  border-top: 1px solid var(--line);
}
.news-item:first-child { border-top: none; }
.news-date { font-size: 13px; color: var(--ink-soft); font-weight: 700; letter-spacing: 0.02em; padding-top: 3px; }
.news-brand {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 700;
  color: var(--white);
  background: var(--steel);
  padding: 4px 10px;
  border-radius: 3px;
  margin-bottom: 10px;
}
.news-item h3 { font-size: 18px; font-weight: 700; color: var(--tt-green); margin-bottom: 8px; }
.news-item p { font-size: 18px; line-height: 1.5; color: var(--ink-soft); margin-bottom: 8px; }
.news-meta { font-size: 12.5px; color: var(--ink-soft); background: var(--silver-mist); display: inline-block; padding: 6px 12px; border-radius: 4px; }
@media (max-width: 640px) {
  .news-item { grid-template-columns: 1fr; gap: 8px; }
}

/* ---------- Документы ---------- */
.doc-grid { display: grid; grid-template-columns: 1fr; gap: 10px; }
.doc-card {
  display: grid;
  grid-template-columns: 1fr auto;
  grid-template-rows: auto auto;
  align-items: center;
  column-gap: 24px;
  row-gap: 2px;
  padding: 14px 22px;
  border-radius: 8px;
}
.doc-card h3 { grid-column: 1; grid-row: 1; margin: 0; color: var(--tt-green); font-size: 17px; }
.doc-card p { grid-column: 1; grid-row: 2; margin: 0; font-size: 14px; color: var(--ink-soft); }
.doc-card .go { grid-column: 2; grid-row: 1 / 3; font-size: 13.5px; font-weight: 700; color: var(--steel); white-space: nowrap; }
@media (max-width: 480px) {
  .doc-card { grid-template-columns: 1fr; grid-template-rows: auto auto auto; row-gap: 6px; }
  .doc-card h3 { grid-column: 1; grid-row: 1; }
  .doc-card p { grid-column: 1; grid-row: 2; }
  .doc-card .go { grid-column: 1; grid-row: 3; justify-self: start; }
}

.doc-body h2 { margin-top: 40px; }
.doc-body h2:first-of-type { margin-top: 0; }
.doc-body p { font-size: 15px; }
.doc-body ul { font-size: 15px; line-height: 1.6; color: var(--ink); margin: 0 0 1em; padding-left: 22px; }
.doc-body ul li { margin-bottom: 6px; }
.doc-body ul li::marker { color: var(--tt-green); }
.doc-body .doc-note-block { background: var(--silver-mist); border-left: 3px solid var(--tt-green); padding: 12px 16px; border-radius: 0 6px 6px 0; margin: 16px 0; font-size: 15px; }
.doc-details {
  margin-top: 20px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 4px 22px;
}
.doc-details summary {
  padding: 16px 0;
  font-size: 17px;
  font-weight: 700;
  color: var(--tt-green);
  cursor: pointer;
  list-style: none;
}
.doc-details summary::-webkit-details-marker { display: none; }
.doc-details summary::after {
  content: "+";
  float: right;
  font-size: 22px;
  font-weight: 400;
  color: var(--orange);
}
.doc-details[open] summary::after { content: "−"; }
.doc-details[open] summary { border-bottom: 1px solid var(--line); }
.doc-details .doc-body { padding: 20px 0 22px; }
.doc-details .doc-body h3 { margin-top: 28px; margin-bottom: 8px; font-size: 17px; color: var(--tt-green); }
.doc-details .doc-body h3:first-of-type { margin-top: 0; }

/* ---------- FAQ аккордеон ---------- */
.faq-item {
  border-top: 1px solid var(--line);
}
.faq-item:first-child { border-top: none; }
.faq-item__q {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  width: 100%;
  background: none;
  border: none;
  cursor: pointer;
  padding: 22px 4px;
  text-align: left;
  font: inherit;
  font-size: 16.5px;
  font-weight: 700;
  color: var(--ink);
}
.faq-item__chev {
  font-size: 14px;
  color: var(--ink-soft);
  flex-shrink: 0;
  transition: transform 0.2s ease;
}
.faq-item.is-open .faq-item__chev { transform: rotate(180deg); }
.faq-item__a {
  display: none;
  padding: 0 4px 22px;
  font-size: 15px;
  color: var(--ink-soft);
  line-height: 1.65;
  max-width: 720px;
}
.faq-item.is-open .faq-item__a { display: block; }
.faq-item__a a { color: var(--steel); font-weight: 700; text-decoration: none; }
.faq-item__a a:hover { color: var(--orange); }
.doc-body .placeholder { color: var(--steel); font-weight: 700; background: var(--silver-mist); padding: 1px 6px; border-radius: 3px; }
.doc-note {
  display: flex; gap: 10px; background: var(--silver-mist);
  border-left: 3px solid var(--steel); padding: 14px 18px; border-radius: 0 6px 6px 0;
  font-size: 14px; color: var(--ink-soft); margin: 16px 0;
}

/* ---------- Футер ---------- */
.site-footer {
  position: relative;
  margin-top: auto;
  background: linear-gradient(180deg, #22392c 0%, #16241d 100%);
  color: rgba(255,255,255,0.65);
  padding: 20px 0;
  overflow: hidden;
  transform: translateZ(0);
  backface-visibility: hidden;
}
.site-footer::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.08;
  pointer-events: none;
  background-image: url("data:image/svg+xml,<svg xmlns='http%3A//www.w3.org/2000/svg' viewBox='0 0 702.000000 459.000000'><g transform=%22translate%280.000000%2C459.000000%29 scale%280.100000%2C-0.100000%29%22 fill=%22white%22> <path d=%22M3392 4545 c-215 -86 -373 -187 -518 -330 -117 -115 -207 -246 -255 -370 -40 -103 -36 -98 -67 -76 -145 102 -365 138 -562 90 -101 -24 -263 -99 -369 -171 -95 -64 -258 -204 -311 -268 l-41 -49 53 -22 c253 -107 471 -260 634 -446 118 -135 212 -286 363 -580 183 -358 239 -443 364 -550 62 -53 186 -114 282 -139 88 -23 332 -25 453 -5 71 12 97 12 175 0 132 -20 364 -17 452 5 96 25 219 85 282 139 125 107 181 192 364 550 151 294 245 445 363 580 163 186 381 339 634 446 l53 22 -41 49 c-53 64 -216 204 -311 268 -106 72 -268 147 -369 171 -197 48 -417 12 -562 -90 -31 -22 -27 -27 -67 76 -94 244 -330 485 -616 629 -115 57 -242 106 -275 105 -14 0 -62 -16 -108 -34z m367 -106 c75 -38 168 -92 206 -121 108 -80 236 -214 300 -311 57 -89 124 -234 125 -272 1 -46 15 -48 67 -11 102 73 260 126 375 126 233 0 518 -142 773 -384 l80 -76 -120 -59 c-294 -145 -509 -334 -691 -606 -41 -62 -137 -235 -214 -385 -77 -150 -164 -309 -194 -354 -106 -160 -249 -268 -411 -312 -88 -24 -325 -29 -450 -11 -90 14 -110 14 -200 0 -125 -19 -361 -13 -450 11 -162 44 -305 152 -411 312 -30 45 -117 204 -194 354 -77 150 -173 323 -214 385 -182 272 -397 461 -691 606 l-120 59 80 76 c255 242 540 384 773 384 115 0 273 -53 375 -126 52 -37 66 -35 67 11 1 37 67 183 122 267 150 229 412 424 713 528 48 16 52 16 109 -3 32 -11 120 -51 195 -88z%22/> <path d=%22M3449 4103 c-228 -240 -395 -543 -445 -810 -22 -119 -15 -345 14 -455 69 -255 219 -517 416 -726 l69 -73 45 43 c75 72 205 241 275 358 70 118 134 270 169 398 29 110 36 336 14 455 -30 160 -114 360 -218 522 -53 83 -189 254 -245 308 l-39 38 -55 -58z m157 -106 c177 -211 289 -418 350 -642 24 -87 27 -119 28 -250 0 -122 -4 -166 -22 -238 -62 -248 -205 -506 -400 -717 l-58 -63 -58 64 c-197 218 -336 468 -398 716 -18 72 -22 116 -22 238 1 131 4 163 28 250 67 248 220 512 414 717 42 45 37 48 138 -75z%22/> <path d=%22M1621 2189 c-167 -33 -347 -136 -448 -259 -53 -64 -110 -177 -121 -241 l-8 -44 -112 3 c-231 6 -413 -28 -577 -108 -206 -100 -327 -259 -350 -462 -8 -60 11 -198 26 -198 5 0 31 13 57 30 125 77 287 130 396 130 118 0 228 -42 432 -162 136 -80 256 -132 380 -163 521 -133 1095 53 1684 544 36 29 66 57 68 62 2 4 -52 -11 -119 -32 -341 -112 -651 -138 -891 -75 -485 125 -607 565 -255 916 31 30 53 58 51 62 -7 10 -157 8 -213 -3z m111 -57 c-154 -192 -208 -340 -183 -498 41 -266 287 -448 654 -485 165 -16 404 8 595 62 41 11 76 18 78 16 6 -6 -151 -123 -256 -192 -107 -71 -359 -195 -470 -233 -165 -56 -301 -82 -461 -89 -303 -13 -492 42 -849 247 -128 74 -190 97 -287 111 -124 17 -263 -14 -415 -93 -42 -22 -82 -37 -88 -33 -15 9 -12 143 5 210 47 178 202 324 425 400 128 43 256 59 436 52 l161 -6 6 55 c20 194 233 410 472 479 57 16 185 35 194 28 3 -2 -5 -16 -17 -31z%22/> <path d=%22M5177 2194 c-3 -5 22 -36 54 -69 70 -70 140 -178 171 -261 17 -46 22 -82 23 -165 0 -102 -1 -107 -39 -183 -100 -203 -325 -320 -642 -333 -207 -9 -413 24 -663 106 -67 21 -121 36 -119 32 2 -5 32 -33 68 -62 509 -425 1021 -626 1474 -580 217 22 387 79 590 199 204 120 314 162 432 162 109 0 271 -53 396 -130 26 -17 52 -30 57 -30 15 0 34 138 26 198 -23 203 -144 362 -350 462 -164 80 -346 114 -577 108 l-112 -3 -8 44 c-11 64 -68 177 -121 241 -85 103 -227 194 -372 240 -75 23 -278 40 -288 24z m279 -59 c238 -69 451 -285 471 -479 l6 -55 161 6 c128 5 183 2 264 -11 202 -34 347 -101 457 -211 78 -78 117 -142 140 -230 17 -67 20 -201 5 -210 -6 -4 -46 11 -88 33 -152 79 -291 110 -415 93 -97 -14 -159 -37 -287 -111 -357 -205 -546 -260 -849 -247 -160 7 -296 33 -461 89 -111 38 -363 162 -470 233 -105 69 -262 186 -256 192 2 2 37 -5 78 -16 191 -54 430 -78 595 -62 297 30 519 155 608 343 93 196 59 395 -105 599 -28 34 -50 65 -50 69 0 10 131 -7 196 -25z%22/> <path d=%22M3495 1340 c-12 -58 -69 -171 -119 -237 -96 -126 -299 -290 -468 -378 -32 -17 -58 -32 -58 -35 0 -3 33 -22 73 -44 175 -94 362 -247 455 -374 59 -80 78 -116 107 -202 l22 -65 8 35 c42 198 281 450 572 606 40 22 73 41 73 44 0 3 -26 18 -58 35 -169 88 -373 253 -467 378 -56 74 -81 121 -110 207 l-22 65 -8 -35z m106 -251 c71 -97 205 -219 342 -309 64 -43 123 -81 130 -84 9 -5 9 -7 0 -12 -7 -3 -68 -42 -135 -86 -158 -104 -314 -257 -381 -373 -26 -44 -47 -86 -47 -93 0 -7 -16 17 -35 54 -75 144 -217 288 -406 414 -66 43 -125 81 -132 84 -9 5 -9 7 0 12 7 3 66 41 130 84 189 125 349 289 415 425 l22 46 24 -47 c13 -26 46 -77 73 -115z%22/> </g></svg>");
  background-size: 130px 85px;
}
.site-footer .container { position: relative; z-index: 1; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 40px; margin-bottom: 40px; align-items: start; }
.footer-grid h4 { color: var(--white); font-family: var(--font-display); font-size: 16px; text-transform: uppercase; letter-spacing: 0.08em; margin-top: 0; margin-bottom: 16px; }
.footer-grid a, .footer-grid p { display: block; font-size: 18px; color: rgba(255,255,255,0.65); margin-bottom: 10px; }
.footer-grid a:hover { color: var(--glow); }
.footer-depts { margin-bottom: 4px; }
.footer-dept { display: flex; align-items: flex-start; gap: 8px; }
.footer-dept .dept-icon {
  display: inline-block;
  width: 15px;
  height: 15px;
  flex-shrink: 0;
  margin-top: 4px;
  color: var(--orange);
}
.footer-dept b { color: var(--white); font-weight: 600; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.12); padding-top: 22px; font-size: 12.5px; display: flex; justify-content: space-between; flex-wrap: wrap; gap: 10px; }
.footer-logo { font-family: var(--font-display); font-weight: 700; color: var(--white); font-size: 16px; margin-bottom: 10px; }
.footer-logo span { color: var(--orange); }
@media (max-width: 780px) {
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
}

/* ---------- Наши преимущества (главная) ---------- */
.adv-num-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px 40px;
}
.adv-num-item {
  display: flex;
  align-items: baseline;
  gap: 18px;
  text-decoration: none;
  color: inherit;
  padding: 8px 12px;
  margin: -8px -12px;
  border-radius: 8px;
  transition: background 0.2s ease, transform 0.2s ease;
}
.adv-num-item:hover {
  background: rgba(62,122,93,0.08);
  transform: translateX(6px);
}
.adv-num-item:hover .num { color: #3E7A5D; }
@media (prefers-reduced-motion: reduce) {
  .adv-num-item { transition: background 0.2s ease; }
  .adv-num-item:hover { transform: none; }
}
.adv-num-item .num {
  font-family: var(--font-display);
  font-size: 34px;
  font-weight: 700;
  color: var(--orange);
  line-height: 1;
  flex-shrink: 0;
  min-width: 48px;
}
.adv-num-item h3 { font-size: 18px; margin-bottom: 4px; color: var(--ink); }
.adv-num-item p { font-size: 18px; margin-bottom: 0; line-height: 1.5; color: var(--ink-soft); }
@media (max-width: 700px) {
  .adv-num-list { grid-template-columns: 1fr; }
}

.adv-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.adv-list-item {
  display: block;
  padding: 16px 20px;
  border-left: 3px solid var(--orange);
  border-radius: 0 6px 6px 0;
  background: var(--paper-deep);
  text-decoration: none;
  color: inherit;
  transition: background 0.2s ease, border-left-color 0.2s ease;
}
.adv-list-item:hover { background: rgba(254,192,89,0.08); }
.adv-list-item .ic { font-size: 20px; display: inline-block; margin-bottom: 6px; }
.adv-list-item h3 { font-size: 16px; margin-bottom: 4px; color: var(--ink); }
.adv-list-item p { margin-bottom: 0; line-height: 1.5; color: var(--ink-soft); }
@media (max-width: 700px) {
  .adv-list { grid-template-columns: 1fr; }
}

.adv-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.adv-item {
  display: block;
  padding: 26px 22px;
  border-radius: 6px;
}
.adv-item .ic { font-size: 26px; margin-bottom: 14px; display: block; }
.adv-item h3 { font-size: 16px; margin-bottom: 6px; }
.adv-item p { font-size: 13.5px; margin-bottom: 0; line-height: 1.55; }
@media (max-width: 960px) {
  .adv-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px) {
  .adv-grid { grid-template-columns: 1fr; }
}

/* ---------- Видео-отзывы (вертикальная галерея) ---------- */
.video-grid {
  display: flex;
  gap: 16px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  padding-bottom: 10px;
}
.video-grid .video-card,
.video-grid .video-card--empty {
  flex: 0 0 200px;
  scroll-snap-align: start;
}
@media (max-width: 480px) {
  .video-grid .video-card,
  .video-grid .video-card--empty {
    flex: 0 0 62%;
  }
}
.video-card {
  position: relative;
  aspect-ratio: 9/16;
  border-radius: 10px;
  overflow: hidden;
  background: var(--steel-darker);
  border: 1px solid var(--line);
}
.video-card video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.video-card--empty {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: 2px dashed var(--line);
  background: var(--paper-deep);
  color: var(--ink-soft);
  font-size: 13px;
  text-align: center;
  padding: 16px;
}
.video-card--vk {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  text-decoration: none;
  background: linear-gradient(150deg, #0077FF 0%, #0d3f8c 100%);
  background-size: cover;
  background-position: center;
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  text-align: center;
  padding: 16px;
  overflow: hidden;
  transition: transform 0.2s ease, box-shadow 0.25s ease;
}
.video-card--vk.has-thumb::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,20,40,0.18) 0%, rgba(0,20,40,0.12) 55%, rgba(0,20,40,0.55) 100%);
}
.video-card--vk.has-thumb .play-ic,
.video-card--vk.has-thumb span:not(.play-ic) {
  position: relative;
  z-index: 1;
}
.video-card--vk:hover {
  transform: translateY(-3px);
  border-color: var(--orange);
  box-shadow: 0 10px 24px rgba(254,192,89,0.35);
}
.video-card--vk .play-ic {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: rgba(255,255,255,0.18);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.video-card--vk .play-ic svg { width: 73px; height: 73px; }
.video-card--vk .play-ic svg path { fill: var(--orange); }
.video-card--empty .ic { font-size: 26px; }
.video-card__play {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(20,25,30,0.25);
  color: #fff;
  font-size: 34px;
  opacity: 0;
  transition: opacity 0.2s ease;
  pointer-events: none;
}
.video-card:hover .video-card__play { opacity: 1; }
.video-note {
  margin-top: 18px;
  font-size: 13px;
  color: var(--ink-soft);
  background: var(--silver-mist);
  border-left: 3px solid var(--steel);
  padding: 12px 16px;
  border-radius: 0 6px 6px 0;
}

/* ---------- Отзывы ---------- */
.review-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.review-card {
  padding: 26px 24px;
  border-radius: 6px;
  display: flex;
  flex-direction: column;
}
.review-card .stars {
  color: var(--orange);
  font-size: 15px;
  letter-spacing: 2px;
  margin-bottom: 14px;
}
.review-card .quote-text {
  font-size: 14.5px;
  line-height: 1.6;
  color: var(--ink);
  margin-bottom: 18px;
  flex-grow: 1;
}
.review-card .who {
  font-size: 13.5px;
  font-weight: 700;
  color: var(--steel-deep);
}
.review-card .who span {
  display: block;
  font-weight: 500;
  color: var(--ink-soft);
  font-size: 12.5px;
  margin-top: 2px;
}
.review-note {
  margin-top: 24px;
  font-size: 13px;
  color: var(--ink-soft);
  background: var(--silver-mist);
  border-left: 3px solid var(--steel);
  padding: 12px 16px;
  border-radius: 0 6px 6px 0;
}
@media (max-width: 860px) {
  .review-grid { grid-template-columns: 1fr; }
}

/* ---------- Мы в интернете ---------- */
.social-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}
@media (max-width: 860px) { .social-row { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) { .social-row { grid-template-columns: 1fr; } }
.social-link {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  text-align: center;
  padding: 24px 16px;
  border-radius: 10px;
  font-weight: 700;
  font-size: 14px;
  color: var(--ink);
  background: var(--white);
  border: 1px solid var(--line);
  transition: border-color 0.25s ease, box-shadow 0.25s ease, transform 0.2s ease;
}
.social-link--photo {
  position: relative;
  aspect-ratio: 1 / 1;
  min-height: 0;
  padding: 0;
  color: #fff;
  background-size: cover;
  background-position: center;
  border: 1px solid transparent;
  overflow: hidden;
}
.social-link--photo::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(200deg, transparent 55%, rgba(20,25,30,0.65) 100%);
}
.social-link--photo .ic {
  position: absolute;
  right: 10px;
  bottom: 10px;
  z-index: 1;
  width: 38px;
  height: 38px;
  background: rgba(255,255,255,0.18);
  backdrop-filter: blur(3px);
}
.social-link--photo .label { display: none; }

.social-link--gradient {
  position: relative;
  aspect-ratio: 1 / 1;
  padding: 0;
  color: #fff;
  background: linear-gradient(150deg, var(--steel-deep) 0%, var(--steel-darker) 60%, #000 100%);
  border: 1px solid transparent;
  overflow: hidden;
}
.social-link--gradient::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(115deg, transparent 40%, rgba(227,164,85,0.14) 50%, transparent 60%);
}
.social-link--gradient .ic {
  position: absolute;
  right: 10px;
  bottom: 10px;
  z-index: 1;
  width: 38px;
  height: 38px;
  background: rgba(255,255,255,0.14);
  backdrop-filter: blur(3px);
}
.social-link--gradient .center-ic {
  position: relative;
  z-index: 1;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
}
.social-link--photo span:not(.ic) { text-shadow: 0 1px 4px rgba(0,0,0,0.5); }
.social-link .ic {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  overflow: hidden;
  box-shadow:
    0 6px 14px rgba(0,0,0,0.32),
    inset 0 1px 2px rgba(255,255,255,0.55),
    inset 0 -3px 5px rgba(0,0,0,0.28);
  will-change: transform;
}
.social-link .ic svg { width: 100%; height: 100%; }
.social-link:hover .ic {
  transform: scale(1.08);
  box-shadow: 0 12px 22px rgba(0,0,0,0.42), inset 0 1px 3px rgba(255,255,255,0.75), inset 0 -3px 6px rgba(0,0,0,0.3);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
@media (prefers-reduced-motion: reduce) {
  .social-link:hover .ic { transform: none; }
}
.social-link:hover {
  color: var(--ink);
  border-color: var(--tt-green);
  box-shadow: 0 10px 26px rgba(62, 122, 93, 0.22);
  transform: translateY(-3px);
}
@media (prefers-reduced-motion: reduce) {
  .social-link { transition: none; }
  .social-link:hover { transform: none; }
}

.social-promo {
  display: block;
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid var(--line);
  margin-bottom: 20px;
  max-width: 480px;
  transition: border-color 0.25s ease, box-shadow 0.25s ease, transform 0.2s ease;
}
.social-promo img { width: 100%; display: block; }
.social-promo:hover {
  border-color: var(--tt-green);
  box-shadow: 0 0 18px rgba(62, 122, 93, 0.5);
  transform: translateY(-2px);
}

/* ---------- Страница «Подбор товаров» ---------- */
.pick-section { border-top: 1px solid var(--line); padding: 0; }
.pick-section:first-child { border-top: none; }
.pick-section__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  background: none;
  border: none;
  cursor: pointer;
  padding: 20px 4px;
  text-align: left;
  font: inherit;
}
.pick-section__head h2 { font-size: 17px; margin: 0; color: var(--ink); }
.pick-section__head .count-badge {
  font-size: 12px;
  font-weight: 700;
  color: var(--ink-soft);
  background: var(--silver-mist);
  padding: 2px 9px;
  border-radius: 10px;
  margin-left: 10px;
}
.pick-section__chev {
  font-size: 14px;
  color: var(--ink-soft);
  transition: transform 0.2s ease;
  flex-shrink: 0;
}
.pick-section.is-open .pick-section__chev { transform: rotate(180deg); }
.pick-section__body {
  display: none;
  padding: 0 4px 24px;
}
.pick-section.is-open .pick-section__body { display: block; }
.pick-list { display: grid; grid-template-columns: repeat(2, 1fr); gap: 6px; }
@media (max-width: 640px) { .pick-list { grid-template-columns: 1fr; } }
.pick-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  border-radius: 6px;
  cursor: pointer;
  font-size: 14px;
}
.pick-item:hover { background: var(--silver-mist); }
.pick-item input[type="checkbox"] {
  width: 18px;
  height: 18px;
  accent-color: var(--orange);
  cursor: pointer;
  flex-shrink: 0;
}
.pick-extra {
  display: none;
  margin-top: 14px;
  padding: 16px;
  background: var(--paper-deep);
  border-radius: 8px;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 2fr;
  gap: 10px;
}
@media (max-width: 780px) { .pick-extra { grid-template-columns: 1fr 1fr; } }
@media (max-width: 480px) { .pick-extra { grid-template-columns: 1fr; } }
.pick-extra label {
  display: block;
  font-size: 11.5px;
  font-weight: 700;
  color: var(--ink-soft);
  margin-bottom: 4px;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}
.brand-count { color: var(--tt-green); font-weight: 800; text-transform: none; letter-spacing: normal; }
.pick-extra input, .pick-extra textarea {
  width: 100%;
  font: inherit;
  font-size: 13.5px;
  padding: 8px 10px;
  border: 1px solid var(--line);
  border-radius: 5px;
  background: #fff;
}
.pick-extra textarea { resize: vertical; min-height: 38px; }
.pick-extra.is-visible { display: grid; }
.pick-extra input.has-error { border-color: #c0392b; background: #fdf1f0; }
.pick-extra__error { grid-column: 1 / -1; font-size: 12px; color: #c0392b; margin: -4px 0 0; }

.pick-section__head .count-badge.has-selection {
  background: var(--orange);
  color: #fff;
}
.pick-section__done {
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--tt-green);
  margin-left: 8px;
  vertical-align: middle;
}

.pick-item .ext {
  margin-left: auto;
  font-size: 11.5px;
  font-weight: 700;
  color: var(--steel);
  text-decoration: none;
  flex-shrink: 0;
  padding: 3px 8px;
  border-radius: 10px;
  background: var(--silver-mist);
  white-space: nowrap;
  display: inline-flex;
  align-items: center;
  gap: 3px;
}
.pick-item .ext:hover { color: #fff; background: var(--orange); }

.pick-mode-switch {
  display: flex;
  gap: 10px;
  margin: 24px 0 32px;
  flex-wrap: wrap;
}
.pick-mode-switch button {
  font: inherit;
  font-size: 14px;
  font-weight: 700;
  padding: 13px 22px;
  border-radius: 8px;
  border: 2px solid var(--line);
  background: #fff;
  color: var(--ink-soft);
  cursor: pointer;
  transition: all 0.2s ease;
  text-align: left;
  flex: 1;
  min-width: 220px;
}
.pick-mode-switch button .sub { display: block; font-size: 12px; font-weight: 500; margin-top: 3px; opacity: 0.8; text-transform: none; letter-spacing: 0; }
.pick-mode-switch button:hover { border-color: var(--orange); }
.pick-mode-switch button.is-active { border-color: var(--orange); background: rgba(227,164,85,0.07); color: var(--ink); }

.pick-mode-panel { display: none; }
.pick-mode-panel.is-active { display: block; }

.artikul-box textarea {
  width: 100%;
  font: inherit;
  font-size: 14px;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  min-height: 160px;
  resize: vertical;
  line-height: 1.6;
}
.easy-quick textarea::placeholder,
.easy-quick input::placeholder { color: var(--silver); opacity: 1; }
.artikul-hint {
  font-size: 13px;
  color: var(--ink-soft);
  margin: 8px 0 0;
}

.pick-layout {
  display: grid;
  grid-template-columns: 1.6fr 1fr;
  gap: 40px;
  align-items: start;
}
@media (max-width: 900px) {
  .pick-layout { grid-template-columns: 1fr; }
  .pick-summary { position: static; top: auto; }
}
.as-intro-grid { display: grid; grid-template-columns: 1.5fr 1fr; gap: 32px; align-items: start; }
@media (max-width: 780px) {
  .as-intro-grid { grid-template-columns: 1fr; }
  .as-intro-grid .manager-hero { order: -1; margin-bottom: 8px; }
}
.manager-hero {
  text-align: center;
}
.manager-hero img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: 8px;
  display: block;
}
.manager-hero__name { font-size: 15px; font-weight: 800; color: var(--ink); margin-top: 10px; }
.manager-hero__role { font-size: 13px; color: var(--ink-soft); margin-top: 2px; }
@media (max-width: 780px) {
  .manager-hero { max-width: 280px; margin: 0 auto; }
}

.pick-summary {
  position: sticky;
  top: 90px;
  background: var(--paper-deep);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 22px;
}
.pick-summary h3 { font-size: 15px; margin-bottom: 10px; }
.pick-summary__count {
  display: inline-block;
  background: var(--orange);
  color: #fff;
  font-weight: 800;
  font-size: 12px;
  padding: 2px 9px;
  border-radius: 10px;
  margin-left: 6px;
}
.pick-summary__list {
  list-style: none;
  padding: 0;
  margin: 12px 0;
  max-height: 220px;
  overflow-y: auto;
  font-size: 13px;
  color: var(--ink-soft);
}
.pick-summary__list li { padding: 4px 0; border-bottom: 1px dashed var(--line); }
.pick-summary__empty { font-size: 13px; color: var(--ink-soft); font-style: italic; }

.pick-form { margin-top: 18px; }
.pick-form label { display: block; font-size: 12.5px; font-weight: 700; color: var(--ink-soft); margin-bottom: 4px; margin-top: 12px; }
.pick-form input {
  width: 100%;
  font: inherit;
  font-size: 14px;
  padding: 10px 12px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: #fff;
}
.pick-form .row2 { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.pick-submit {
  width: 100%;
  margin-top: 18px;
  background: var(--orange);
  color: #fff;
  border: 2px solid var(--orange);
  font-family: inherit;
  font-weight: 700;
  font-size: 14.5px;
  padding: 13px 20px;
  border-radius: 6px;
  cursor: pointer;
}
.pick-submit:hover { background: #d9601b; }
.pick-submit:disabled { opacity: 0.5; cursor: not-allowed; }

/* ---------- Страница «Сертификаты» ---------- */
.cert-letter {
  display: flex;
  gap: 24px;
  align-items: center;
  background: var(--paper-deep);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 28px;
  margin: 24px 0 40px;
}
.cert-letter__icon {
  width: 64px;
  height: 64px;
  flex-shrink: 0;
  border-radius: 8px;
  background: var(--silver-mist);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
}
.cert-letter__text h3 { font-size: 16px; margin-bottom: 6px; }
.cert-letter__text p { font-size: 14px; margin-bottom: 0; }
.cert-letter__placeholder {
  border: 2px dashed var(--line);
  border-radius: 6px;
  padding: 10px 14px;
  font-size: 13px;
  color: var(--ink-soft);
  margin-top: 10px;
  display: inline-block;
}

.cert-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
@media (max-width: 860px) { .cert-grid { grid-template-columns: repeat(2, 1fr); } }
.cert-card {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  text-align: center;
  background:
    linear-gradient(115deg, transparent 30%, rgba(255,255,255,0.55) 45%, rgba(227,164,85,0.14) 52%, transparent 65%),
    transparent;
  background-size: 220% 220%, 100% 100%;
  background-position: 120% 0%, 0 0;
  transition: border-color 0.15s ease, background-position 0.6s ease;
}
.cert-card:hover {
  border-color: var(--glow);
  background-position: -20% 100%, 0 0;
}
@media (prefers-reduced-motion: reduce) {
  .cert-card { transition: border-color 0.15s ease; }
}
.cert-card__thumb {
  aspect-ratio: 3/4;
  background: var(--silver-mist);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  color: var(--ink-soft);
  padding: 10px;
  overflow: hidden;
}
.cert-card__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.25s ease;
}
.cert-card a.cert-card__link:hover .cert-card__thumb img { transform: scale(1.05); }
.cert-card__name {
  padding: 10px 8px;
  font-size: 13px;
  font-weight: 700;
  color: var(--ink);
  border-top: 1px solid var(--line);
}
.cert-card--empty .cert-card__thumb { border: 2px dashed var(--line); background: var(--paper); }
.cert-card--empty .cert-card__name { color: var(--ink-soft); font-weight: 500; }

/* ---------- Плашка "разработка" ---------- */
.dev-banner {
  background: var(--glow);
  color: var(--steel-darker);
  text-align: center;
  font-size: 13.5px;
  font-weight: 700;
  padding: 8px 16px;
}

/* ---------- Промо-плашка (главная) ---------- */
.promo-banner {
  background: linear-gradient(120deg, var(--steel-deep) 0%, var(--steel) 100%);
  border-radius: 8px;
  padding: 40px 44px;
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
  position: relative;
  overflow: hidden;
}
.promo-banner::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(115deg, transparent 45%, rgba(227,164,85,0.20) 52%, transparent 60%);
  background-size: 240% 240%;
  background-position: 100% 0%;
  transition: background-position 0.8s ease;
}
.promo-banner:hover::before { background-position: 0% 100%; }
.promo-banner__text { position: relative; max-width: 560px; }
.promo-banner__text h3 { color: var(--white); font-size: 22px; margin-bottom: 8px; }
.promo-banner__text p { color: rgba(255,255,255,0.72); font-size: 14.5px; margin-bottom: 0; }
.promo-banner .btn { position: relative; flex-shrink: 0; }

/* ---------- Список возможностей (сервис) ---------- */
.feature-list { display: flex; flex-direction: column; }
.feature-item {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 20px;
  padding: 24px 0;
  border-top: 1px solid var(--line);
}
.feature-item:first-child { border-top: none; }
.feature-item .n {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
  color: var(--glow);
}
.feature-item h3 { font-size: 18px; font-weight: 700; color: var(--tt-green); margin-bottom: 4px; }
.feature-item p { font-size: 18px; line-height: 1.5; color: var(--ink-soft); margin-bottom: 0; }

/* ---------- Прожектор "Индивидуальная логистика" ---------- */
.logistics {
  background: var(--steel-darker);
  color: var(--white);
  border-radius: 8px;
  padding: 44px;
}
.logistics .eyebrow { color: var(--glow-soft); }
.logistics h2 { color: var(--white); }
.logistics-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 28px; }
.logistics-point { padding: 20px; background: rgba(255,255,255,0.05); border-radius: 6px; border: 1px solid rgba(255,255,255,0.08); }
.logistics-point .n { font-family: var(--font-display); color: var(--white); font-size: 18px; font-weight: 700; margin-bottom: 4px; display: block; }
.logistics-point p { color: rgba(255,255,255,0.78); font-size: 18px; line-height: 1.5; margin-bottom: 0; }
@media (max-width: 780px) {
  .logistics-grid { grid-template-columns: 1fr; }
  .logistics { padding: 28px; }
}

/* ---------- Теги категорий товаров ---------- */
.tag-list { display: flex; flex-wrap: wrap; gap: 10px; }
.tag-list .tag {
  font-size: 13.5px;
  font-weight: 600;
  color: var(--steel-deep);
  background: var(--silver-mist);
  border: 1px solid var(--line);
  padding: 9px 16px;
  border-radius: 20px;
}

/* ---------- Полоса доверия (сервис) ---------- */
.trust-bar { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.trust-item { padding: 22px; border: 1px solid var(--line); border-radius: 6px; text-align:center; }
.trust-item .ic { font-size: 22px; margin-bottom: 10px; }
.trust-item p { font-size: 14px; margin-bottom: 0; color: var(--ink); font-weight: 600; }
@media (max-width: 780px) { .trust-bar { grid-template-columns: 1fr; } }

/* ---------- Появление блоков при скролле ---------- */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1), transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}
.reveal.is-visible { opacity: 1; transform: translateY(0); }
.reveal-group > * {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.6s cubic-bezier(0.16, 1, 0.3, 1), transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}
.reveal-group.is-visible > * { opacity: 1; transform: translateY(0); }
.reveal-group.is-visible > *:nth-child(1) { transition-delay: 0.03s; }
.reveal-group.is-visible > *:nth-child(2) { transition-delay: 0.09s; }
.reveal-group.is-visible > *:nth-child(3) { transition-delay: 0.15s; }
.reveal-group.is-visible > *:nth-child(4) { transition-delay: 0.21s; }
.reveal-group.is-visible > *:nth-child(5) { transition-delay: 0.27s; }
.reveal-group.is-visible > *:nth-child(6) { transition-delay: 0.33s; }
.reveal-group.is-visible > *:nth-child(7) { transition-delay: 0.39s; }
.reveal-group.is-visible > *:nth-child(8) { transition-delay: 0.45s; }
@media (prefers-reduced-motion: reduce) {
  .reveal, .reveal-group > * {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
}

/* ---------- Татарские декоративные акценты ---------- */
.section-divider {
  height: 14px;
  flex-shrink: 0;
  margin: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='28' height='14'%3E%3Cg fill='none' stroke='%233E7A5D' stroke-width='1' opacity='0.35'%3E%3Cpath d='M0 7 L7 0 L14 7 L21 0 L28 7'/%3E%3Cpath d='M0 7 L7 14 L14 7 L21 14 L28 7'/%3E%3C/g%3E%3C/svg%3E");
  background-repeat: repeat-x;
  background-position: center;
}
.tulip-accent {
  display: inline-flex;
  width: 30px;
  height: 20px;
  vertical-align: middle;
}
.tulip-accent svg { width: 100%; height: 100%; overflow: visible; }
.tulip-accent svg path {
  animation: tulip-color 3.2s ease-in-out infinite;
  filter: drop-shadow(0 0 0 transparent);
}
.tulip-accent:nth-of-type(2) svg path { animation-delay: 1.07s; }
.tulip-accent:nth-of-type(3) svg path { animation-delay: 2.14s; }
@keyframes tulip-color {
  0%, 100% { fill: #FFFFFF; filter: drop-shadow(0 0 0 transparent); }
  50% { fill: #D4AF37; filter: drop-shadow(0 0 4px rgba(212,175,55,0.85)); }
}
@media (prefers-reduced-motion: reduce) {
  .tulip-accent svg path { animation: none; fill: #FFFFFF; }
}

/* ---------- Упрощённая страница подбора ---------- */
.easy-reassure {
  background: var(--paper-deep);
  border-radius: 12px;
  padding: 22px 26px;
  font-size: 17px;
  line-height: 1.5;
  margin-bottom: 32px;
  border-left: 5px solid var(--tt-green);
}
.easy-simplest {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  background: var(--steel-darker);
  color: #fff;
  border-radius: 16px;
  padding: 32px;
  margin-bottom: 40px;
}
@media (max-width: 780px) { .easy-simplest { grid-template-columns: 1fr; } }
.easy-simplest__call {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  gap: 14px;
  padding: 24px;
  border-radius: 12px;
  background: rgba(255,255,255,0.06);
}
.easy-simplest__call a.phone-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--orange);
  color: #fff;
  font-size: 22px;
  font-weight: 800;
  padding: 16px 28px;
  border-radius: 50px;
  text-decoration: none;
}
.easy-simplest__call p { font-size: 15px; color: rgba(255,255,255,0.75); margin: 0; }
.easy-simplest__write { display: flex; flex-direction: column; gap: 10px; }
.easy-simplest__write textarea {
  width: 100%;
  min-height: 90px;
  font: inherit;
  font-size: 16px;
  padding: 14px;
  border-radius: 10px;
  border: none;
  resize: vertical;
}
.easy-simplest__write input {
  width: 100%;
  font: inherit;
  font-size: 16px;
  padding: 14px;
  border-radius: 10px;
  border: none;
}
.easy-simplest__write button {
  font: inherit;
  font-size: 17px;
  font-weight: 800;
  padding: 14px;
  border-radius: 10px;
  border: none;
  background: var(--tt-green);
  color: #fff;
  cursor: pointer;
}
.easy-simplest__write button:disabled { opacity: 0.5; cursor: not-allowed; }

.easy-divider {
  text-align: center;
  font-size: 16px;
  font-weight: 700;
  color: var(--ink-soft);
  margin: 40px 0 28px;
  position: relative;
}
.easy-divider::before, .easy-divider::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 30%;
  height: 1px;
  background: var(--line);
}
.easy-divider::before { left: 0; }
.easy-divider::after { right: 0; }

.easy-cat-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
@media (max-width: 900px) { .easy-cat-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .easy-cat-grid { grid-template-columns: 1fr; } }
.easy-cat-tile {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 10px;
  padding: 26px 16px;
  border-radius: 14px;
  border: 3px solid var(--line);
  background: #fff;
  cursor: pointer;
  transition: border-color 0.15s ease, background 0.15s ease, transform 0.1s ease;
  font-size: 17px;
  font-weight: 700;
  color: var(--ink);
}
.easy-cat-tile:hover { border-color: var(--orange); transform: translateY(-2px); }
.easy-cat-tile .ic { font-size: 44px; line-height: 1; }
.easy-cat-tile.is-selected {
  border-color: var(--tt-green);
  background: rgba(62,122,93,0.08);
}
.easy-cat-tile .check {
  display: none;
  font-size: 13px;
  font-weight: 800;
  color: var(--tt-green);
}
.easy-cat-tile.is-selected .check { display: block; }
.easy-cat-tile__details {
  margin-top: 6px;
  font-size: 12.5px;
  font-weight: 600;
  color: var(--steel);
  text-decoration: underline;
  cursor: pointer;
}
.easy-cat-tile__extra {
  display: none;
  width: 100%;
  margin-top: 10px;
  padding-top: 10px;
  border-top: 1px dashed var(--line);
  text-align: left;
}
.easy-cat-tile__extra.is-open { display: block; }
.easy-cat-tile__extra label { display:block; font-size: 11px; font-weight: 700; color: var(--ink-soft); text-transform: uppercase; margin: 8px 0 3px; }
.easy-cat-tile__extra input, .easy-cat-tile__extra textarea {
  width: 100%;
  font: inherit;
  font-size: 13px;
  padding: 7px 9px;
  border: 1px solid var(--line);
  border-radius: 5px;
}

.easy-contact {
  margin-top: 40px;
  background: var(--paper-deep);
  border-radius: 14px;
  padding: 26px;
}
.easy-contact h3 { font-size: 20px; margin-bottom: 16px; }
.easy-contact input {
  width: 100%;
  font: inherit;
  font-size: 17px;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  margin-bottom: 12px;
}
.easy-contact label { display: block; font-size: 13px; font-weight: 700; color: var(--ink-soft); margin-bottom: 5px; }
.easy-contact .optional { font-weight: 400; text-transform: none; letter-spacing: 0; color: var(--silver); font-size: 12px; }
.easy-contact button {
  width: 100%;
  font: inherit;
  font-size: 18px;
  font-weight: 800;
  padding: 16px;
  border-radius: 8px;
  border: none;
  background: var(--orange);
  color: #fff;
  cursor: pointer;
  margin-top: 8px;
}
.easy-contact button:disabled { opacity: 0.5; cursor: not-allowed; }

.easy-mode-switch {
  display: flex;
  gap: 12px;
  margin: 32px 0;
  flex-wrap: wrap;
}
.easy-mode-switch button {
  flex: 1;
  min-width: 220px;
  font: inherit;
  font-size: 15px;
  font-weight: 700;
  padding: 14px 18px;
  border-radius: 10px;
  border: 2px solid var(--line);
  background: #fff;
  cursor: pointer;
}
.easy-mode-switch button.is-active { border-color: var(--orange); background: rgba(254,192,89,0.06); }

/* ---------- Кнопка «Наверх» — на всех страницах ---------- */
.back-to-top {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 90;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--orange);
  color: #fff;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  cursor: pointer;
  box-shadow: 0 6px 18px rgba(0,0,0,0.22);
  opacity: 0;
  transform: translateY(12px);
  pointer-events: none;
  transition: opacity 0.25s ease, transform 0.25s ease, background 0.2s ease;
}
.back-to-top.is-visible { opacity: 1; transform: translateY(0); pointer-events: auto; }
.back-to-top:hover { background: var(--orange); }
@media (max-width: 640px) {
  .back-to-top { right: 14px; bottom: 14px; width: 44px; height: 44px; font-size: 18px; }
}
@media (prefers-reduced-motion: reduce) {
  .back-to-top { transition: opacity 0.25s ease; }
}

.callback-fab { position: fixed; right: 80px; bottom: 20px; z-index: 998; }
@media (max-width: 640px) { .callback-fab { right: 64px; bottom: 14px; } }
.callback-fab__btn {
  width: 48px; height: 48px;
  border-radius: 10px;
  border: none;
  background: var(--tt-green);
  color: #fff;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  box-shadow: 0 6px 18px rgba(0,0,0,0.22);
  transition: background 0.2s ease, transform 0.2s ease;
}
@media (max-width: 640px) { .callback-fab__btn { width: 44px; height: 44px; } }
.callback-fab__btn svg { width: 22px; height: 22px; }
.callback-fab__btn:hover { background: var(--orange); }
.callback-fab.is-open .callback-fab__btn { transform: rotate(90deg); }

.callback-fab__panel {
  position: absolute;
  right: 0; bottom: calc(100% + 12px);
  width: 300px;
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 16px 40px rgba(0,0,0,0.25);
  padding: 16px;
  opacity: 0;
  transform: translateY(10px) scale(0.97);
  pointer-events: none;
  transition: opacity 0.2s ease, transform 0.2s ease;
}
.callback-fab.is-open .callback-fab__panel { opacity: 1; transform: translateY(0) scale(1); pointer-events: auto; }
@media (max-width: 400px) {
  .callback-fab__panel { position: fixed; right: auto; left: 50%; bottom: 78px; transform: translateX(-50%) translateY(10px) scale(0.97); width: min(300px, calc(100vw - 24px)); }
  .callback-fab.is-open .callback-fab__panel { transform: translateX(-50%) translateY(0) scale(1); }
}

.callback-fab__msg-title { font-size: 15px; font-weight: 700; color: var(--ink); margin: 0 0 2px; }
.callback-fab__msg-sub { font-size: 12.5px; color: var(--ink-soft); margin: 0 0 12px; }
.callback-fab__channels { display: flex; gap: 8px; margin-bottom: 12px; }
.callback-fab__channel {
  flex: 1; min-width: 0;
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 6px;
  padding: 12px 4px;
  border-radius: 12px;
  text-decoration: none;
  font-size: 12px; font-weight: 700; color: #fff;
  text-align: center;
  transition: transform 0.12s ease, box-shadow 0.12s ease;
}
.callback-fab__channel span { line-height: 1.1; }
.callback-fab__channel:hover { transform: translateY(-2px); box-shadow: 0 6px 14px rgba(0,0,0,0.2); }
.callback-fab__channel--vk { background: linear-gradient(135deg, #4a76a8, #0077FF); }
.callback-fab__channel--tg { background: linear-gradient(135deg, #29A9EA, #1c8ad9); }
.callback-fab__channel--max { background: linear-gradient(135deg, #6b5bd6, #8b5cf6); position: relative; }
.callback-fab__channel .bot-ic { width: 26px; height: 26px; border-radius: 50%; flex-shrink: 0; }
.callback-fab__channel .bot-soon { margin-left: auto; font-size: 10px; font-weight: 400; opacity: 0.85; }

.callback-fab__call {
  display: flex; align-items: center; gap: 12px;
  padding: 10px;
  border-radius: 10px;
  text-decoration: none;
  color: var(--ink);
  transition: background 0.15s ease;
}
.callback-fab__call:hover { background: var(--paper-deep); }
.callback-fab__call svg { width: 22px; height: 22px; flex-shrink: 0; color: var(--tt-green); }
.callback-fab__call span { font-size: 14px; line-height: 1.4; }
.callback-fab__call b { color: var(--tt-green); font-size: 15px; }

.callback-fab__divider { height: 1px; background: var(--line); margin: 10px 0; }

.callback-fab__form { display: flex; flex-direction: column; gap: 8px; }
.callback-fab__title { font-size: 14px; font-weight: 700; color: var(--ink); margin: 0 0 2px; }
.callback-fab__form input {
  width: 100%;
  box-sizing: border-box;
  padding: 10px 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  font: inherit;
  font-size: 14px;
}
.callback-fab__form input:focus { outline: none; border-color: var(--tt-green); }
.callback-fab__submit {
  margin-top: 2px;
  padding: 10px;
  border: none;
  border-radius: 8px;
  background: var(--orange);
  color: #fff;
  font-weight: 700;
  font-size: 14px;
  cursor: pointer;
  transition: background 0.15s ease;
}
.callback-fab__submit:hover { background: var(--tt-green); }
.callback-fab__submit:disabled { opacity: 0.6; cursor: default; }
.callback-fab__success { display: none; font-size: 14px; color: var(--tt-green); font-weight: 700; text-align: center; margin: 4px 0 0; }
.callback-fab.is-success .callback-fab__form input,
.callback-fab.is-success .callback-fab__form .callback-fab__submit,
.callback-fab.is-success .callback-fab__title { display: none; }
.callback-fab.is-success .callback-fab__success { display: block; }
@media (prefers-reduced-motion: reduce) {
  .callback-fab__btn, .callback-fab__panel { transition: none; }
}

/* ---------- Анимированная иконка солнца (бровь) - плавная версия на opacity ---------- */
.corner-sun__whole {
  transform-origin: 25px 25px;
  animation: corner-icon-rotate 10s cubic-bezier(.65,0,.35,1) infinite;
  animation-delay: 0.6s;
}
@keyframes corner-icon-rotate {
  0%   { transform: rotate(0deg); }
  25%, 50% { transform: rotate(360deg); }
  75%, 100% { transform: rotate(0deg); }
}

.corner-sun__ray {
  stroke: #FEC059;
  stroke-width: 4.5;
  stroke-linecap: round;
  opacity: 1;
  animation-duration: 10s;
  animation-timing-function: cubic-bezier(.45,0,.2,1);
  animation-iteration-count: infinite;
  animation-delay: 0.6s;
}
.corner-sun__ray--0 { animation-name: corner-ray-grow-0; }
.corner-sun__ray--1 { animation-name: corner-ray-grow-1; }
.corner-sun__ray--2 { animation-name: corner-ray-grow-2; }
.corner-sun__ray--3 { animation-name: corner-ray-grow-3; }
.corner-sun__ray--4 { animation-name: corner-ray-grow-4; }
.corner-sun__ray--5 { animation-name: corner-ray-grow-5; }
.corner-sun__ray--6 { animation-name: corner-ray-grow-6; }
.corner-sun__ray--7 { animation-name: corner-ray-grow-7; }
.corner-sun__ray--8 { animation-name: corner-ray-grow-8; }

@keyframes corner-ray-grow-0{0%{opacity:1}25%{opacity:1}28%{opacity:0.15}35.0%{opacity:1}50%{opacity:1}75%{opacity:1}78%{opacity:0.15}85.0%{opacity:1}100%{opacity:1}}
@keyframes corner-ray-grow-1{0%{opacity:1}25%{opacity:1}28%{opacity:0.15}36.333%{opacity:1}50%{opacity:1}75%{opacity:1}78%{opacity:0.15}86.333%{opacity:1}100%{opacity:1}}
@keyframes corner-ray-grow-2{0%{opacity:1}25%{opacity:1}28%{opacity:0.15}37.667%{opacity:1}50%{opacity:1}75%{opacity:1}78%{opacity:0.15}87.667%{opacity:1}100%{opacity:1}}
@keyframes corner-ray-grow-3{0%{opacity:1}25%{opacity:1}28%{opacity:0.15}29.0%{opacity:0.15}39.0%{opacity:1}50%{opacity:1}75%{opacity:1}78%{opacity:0.15}79.0%{opacity:0.15}89.0%{opacity:1}100%{opacity:1}}
@keyframes corner-ray-grow-4{0%{opacity:1}25%{opacity:1}28%{opacity:0.15}30.333%{opacity:0.15}40.333%{opacity:1}50%{opacity:1}75%{opacity:1}78%{opacity:0.15}80.333%{opacity:0.15}90.333%{opacity:1}100%{opacity:1}}
@keyframes corner-ray-grow-5{0%{opacity:1}25%{opacity:1}28%{opacity:0.15}31.667%{opacity:0.15}41.667%{opacity:1}50%{opacity:1}75%{opacity:1}78%{opacity:0.15}81.667%{opacity:0.15}91.667%{opacity:1}100%{opacity:1}}
@keyframes corner-ray-grow-6{0%{opacity:1}25%{opacity:1}28%{opacity:0.15}33.0%{opacity:0.15}43.0%{opacity:1}50%{opacity:1}75%{opacity:1}78%{opacity:0.15}83.0%{opacity:0.15}93.0%{opacity:1}100%{opacity:1}}
@keyframes corner-ray-grow-7{0%{opacity:1}25%{opacity:1}28%{opacity:0.15}34.333%{opacity:0.15}44.333%{opacity:1}50%{opacity:1}75%{opacity:1}78%{opacity:0.15}84.333%{opacity:0.15}94.333%{opacity:1}100%{opacity:1}}
@keyframes corner-ray-grow-8{0%{opacity:1}25%{opacity:1}28%{opacity:0.15}35.667%{opacity:0.15}45.667%{opacity:1}50%{opacity:1}75%{opacity:1}78%{opacity:0.15}85.667%{opacity:0.15}95.667%{opacity:1}100%{opacity:1}}
