/* ==================================================================================================== */
/* ========== UAuto Track ========== */
/* ==================================================================================================== */

:root {
  --gold: #D4A843;
  --gold-l: #F0C875;
  --bg: #070b14;
  --steel: #8B93A1;
  --paper: #fdfcfa;
}

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

html,
body {
  min-height: 100%;
  font-family: 'Manrope', sans-serif;
  background: var(--bg);
  color: #fff;
  -webkit-font-smoothing: antialiased;
}

body {
  display: flex;
  flex-direction: column;
}

/* ==================================================================================================== */
/* ========== HEADER ========== */
/* ==================================================================================================== */

.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1002;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 4px 32px;
  height: 64px;
  background: transparent;
  transition:
    padding 0.50s cubic-bezier(0.4, 0, 0.2, 1),
    top 0.50s cubic-bezier(0.4, 0, 0.2, 1),
    left 0.50s cubic-bezier(0.4, 0, 0.2, 1),
    right 0.50s cubic-bezier(0.4, 0, 0.2, 1),
    background 0.50s ease,
    border-radius 0.50s cubic-bezier(0.4, 0, 0.2, 1),
    border-color 0.50s ease,
    box-shadow 0.50s ease;
}

.header.scrolled {
  height: 52px;
  top: 12px;
  left: 20px;
  right: 20px;
  padding: 16px 28px;
  background: rgba(6, 6, 8, 0.80);
  backdrop-filter: blur(8px) saturate(1.8);
  -webkit-backdrop-filter: blur(8px) saturate(1.8);
  border-radius: 100px;
  border: 1px solid rgba(201, 168, 76, 0.14);
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.30);
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  flex-shrink: 0;
  position: relative;
  z-index: 1002;
}

.logo-mark {
  display: block;
  flex-shrink: 0;
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  transform-origin: left center;
  transform-box: fill-box;
}

.logo:hover .logo-mark {
  transform: scaleX(1.18);
}

.logo-name {
  font-family: 'Manrope', sans-serif;
  font-size: 18px;
  font-weight: 300;
  color: #fff;
  letter-spacing: 0.05em;
  line-height: 1;
  white-space: nowrap;
  transition: letter-spacing 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.logo:hover .logo-name {
  letter-spacing: 0.10em;
}

.logo-name strong {
  font-weight: 800;
  color: var(--gold);
}

.header-right {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-left: auto;
}

.header-nav {
  display: flex;
  align-items: center;
  gap: 4px;
  margin-right: 16px;
}

.header-nav-link {
  position: relative;
  font-family: 'Manrope', sans-serif;
  font-size: 13px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.50);
  text-decoration: none;
  padding: 8px 14px;
  border-radius: 6px;
  white-space: nowrap;
  transition: color 0.20s ease, background 0.20s ease;
}

.header-nav-link::after {
  content: '';
  position: absolute;
  bottom: 4px;
  left: 50%;
  transform: translateX(-50%) scaleX(0);
  width: calc(100% - 28px);
  height: 1px;
  background: var(--gold);
  opacity: 0.70;
  border-radius: 1px;
  transition: transform 0.22s cubic-bezier(0.4, 0, 0.2, 1);
}

.header-nav-link:hover {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.04);
}

.header-nav-link:hover::after {
  transform: translateX(-50%) scaleX(1);
}

.header-btn-track {
  font-family: 'Manrope', sans-serif;
  font-size: 12px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.50);
  background: transparent;
  border: none;
  border-left: 1px solid rgba(255, 255, 255, 0.12);
  padding: 10px 8px 10px 16px;
  margin-left: 50px;
  text-decoration: none;
  white-space: nowrap;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: color 0.22s ease, border-color 0.22s ease;
}

.header-btn-track:hover {
  color: #ffffff;
  border-left-color: rgba(255, 255, 255, 0.24);
}

.header-btn {
  position: relative;
  font-family: 'Manrope', sans-serif;
  font-size: 12px;
  font-weight: 700;
  color: var(--gold);
  background: transparent;
  border: 1px solid rgba(201, 168, 76, 0.35);
  border-radius: 100px;
  padding: 10px 22px;
  text-decoration: none;
  white-space: nowrap;
  letter-spacing: 0.03em;
  transition: background 0.22s ease, border-color 0.22s ease, color 0.22s ease, box-shadow 0.22s ease;
}

.header-btn:hover {
  background: rgba(212, 168, 67, .15);
  border-color: rgba(201, 168, 76, 0.65);
  color: var(--gold-l);
  box-shadow: 0 0 20px rgba(201, 168, 76, 0.15);
}

.burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 38px;
  height: 38px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.10);
  border-radius: 100px;
  cursor: pointer;
  flex-shrink: 0;
  margin-left: 8px;
  z-index: 1002;
  transition: background 0.20s ease, border-color 0.20s ease;
}

.burger:hover {
  background: rgba(255, 255, 255, 0.09);
  border-color: rgba(255, 255, 255, 0.18);
}

.burger span {
  display: block;
  width: 18px;
  height: 1.5px;
  background: #fff;
  border-radius: 2px;
  transition: transform 0.34s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.34s ease, width 0.34s ease;
  transform-origin: center;
}

.burger.open span:nth-child(1) {
  transform: translateY(6.5px) rotate(45deg);
}

.burger.open span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}

.burger.open span:nth-child(3) {
  transform: translateY(-6.5px) rotate(-45deg);
}

.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 999;
  background: rgba(6, 6, 8, 0.97);
  backdrop-filter: blur(32px) saturate(1.4);
  -webkit-backdrop-filter: blur(32px) saturate(1.4);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transform: translateY(-16px);
  transition: opacity 0.38s cubic-bezier(0.4, 0, 0.2, 1), transform 0.38s cubic-bezier(0.4, 0, 0.2, 1);
}

.mobile-menu.open {
  opacity: 1;
  pointer-events: all;
  transform: translateY(0);
}

.mobile-menu-inner {
  width: 100%;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 88px 32px 48px;
}

.mobile-nav {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  margin-bottom: 50px;
}

.mobile-link {
  font-family: 'Manrope', sans-serif;
  font-size: 22px;
  font-weight: 700;
  color: rgba(255, 255, 255, .65);
  text-decoration: none;
  padding: 8px 24px;
  border-radius: 100px;
  transition: color .2s;
}

.mobile-link:hover {
  color: #ffffff;
}

.mobile-footer {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.mobile-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Manrope', sans-serif;
  font-size: 14px;
  font-weight: 700;
  color: #0a0a0b;
  background: var(--gold);
  border-radius: 100px;
  padding: 18px 40px;
  text-decoration: none;
  letter-spacing: 0.02em;
  box-shadow: 0 4px 28px rgba(201, 168, 76, 0.30);
  transition: background 0.22s ease, transform 0.22s ease, box-shadow 0.22s ease;
}

.mobile-cta:hover {
  background: var(--gold-l);
  transform: translateY(-2px);
  box-shadow: 0 8px 36px rgba(201, 168, 76, 0.42);
}

.mobile-footer-stats {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  font-size: 11px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.22);
  letter-spacing: 0.06em;
}

.mobile-footer-dot {
  display: block;
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: var(--gold);
  opacity: 0.40;
  flex-shrink: 0;
}

@media (max-width: 960px) {
  .header-nav {
    display: none;
  }

  .header-btn {
    display: none;
  }

  .burger {
    display: flex;
  }

  .header {
    padding: 18px 12px;
  }

  .header.scrolled {
    left: 5px;
    right: 5px;
    top: 8px;
    padding: 12px 16px;
    border-radius: 100px;
  }
}




/* ============================== Background ============================== */

.t-bg {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}

.t-bg-photo {
  position: absolute;
  inset: 0;
  background-image: url('./assets/bg-track.webp');
  background-size: cover;
  background-position: center;
  opacity: 0.85;
}

.t-bg-photo::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg,
      rgba(7, 11, 20, .85) 0%,
      rgba(7, 11, 20, .40) 40%,
      rgba(7, 11, 20, .55) 65%,
      rgba(7, 11, 20, .92) 100%);
}







/* ==================================================================================================== */
/* ========== MAIN ========== */
/* ==================================================================================================== */

.t-main {
  position: relative;
  z-index: 10;
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 128px 24px 64px;
}

.t-hero {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  max-width: 1280px;
  width: 100%;
  margin: 0 auto;
}

/* ---------- Eyebrow ---------- */
.t-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .20em;
  text-transform: uppercase;
  color: rgba(212, 168, 67, .80);
  margin-bottom: 18px;
}

.t-eyebrow-marks {
  display: flex;
  align-items: center;
  gap: 4px;
}

.t-eyebrow-marks span {
  width: 11px;
  height: 1.5px;
  background: var(--gold);
  display: block;
}

.t-eyebrow-marks span:nth-child(2) {
  opacity: .55;
}

.t-eyebrow-marks span:nth-child(3) {
  opacity: .25;
}

/* ---------- Title ---------- */
.t-title {
  font-size: clamp(36px, 5.5vw, 64px);
  font-weight: 900;
  letter-spacing: -.05em;
  line-height: 1.0;
  color: #fff;
  margin-bottom: 14px;
}

.t-accent {
  background: linear-gradient(135deg, var(--gold-l) 0%, var(--gold) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.t-sub {
  font-size: 15px;
  color: rgba(255, 255, 255, .58);
  line-height: 1.65;
  max-width: 440px;
  margin: 0 auto 36px;
}

/* ==================================================================================================== */
/* ========== SEARCH ========== */
/* ==================================================================================================== */

.t-search-wrap {
  width: 100%;
  max-width: 560px;
  margin: 0 auto 64px;
}

.t-search {
  display: flex;
  align-items: center;
  gap: 12px;
  background: rgba(255, 255, 255, .08);
  border: none;
  border-radius: 999px;
  padding: 8px 8px 8px 24px;
  backdrop-filter: blur(28px);
  -webkit-backdrop-filter: blur(28px);
  transition: box-shadow .25s ease;
  margin-bottom: 8px;
  animation: tSearchRing 3s ease-in-out infinite;
}

@keyframes tSearchRing {

  0%,
  100% {
    box-shadow: 0 0 0 1px rgba(212, 168, 67, .22), 0 8px 40px rgba(0, 0, 0, .50), inset 0 1px 0 rgba(255, 255, 255, .10);
  }

  50% {
    box-shadow: 0 0 0 1.5px rgba(212, 168, 67, .50), 0 8px 40px rgba(0, 0, 0, .50), inset 0 1px 0 rgba(255, 255, 255, .10);
  }
}

.t-search:focus-within {
  animation: none;
  box-shadow: 0 8px 48px rgba(0, 0, 0, .55), 0 0 0 4px rgba(212, 168, 67, .14), inset 0 1px 0 rgba(255, 255, 255, .12);
}

.t-search.is-error {
  animation: none;
  box-shadow: 0 8px 40px rgba(0, 0, 0, .50), 0 0 0 3px rgba(239, 68, 68, .16);
}

.t-search-ico {
  color: rgba(255, 255, 255, .28);
  flex-shrink: 0;
  transition: color .25s;
}

.t-search:focus-within .t-search-ico {
  color: rgba(212, 168, 67, .55);
}

.t-search-inp {
  flex: 1;
  background: transparent;
  border: none;
  outline: none;
  font-family: 'JetBrains Mono', monospace;
  font-size: 16px;
  font-weight: 700;
  color: #fff;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: 16px 0;
  caret-color: var(--gold);
}

.t-search-inp::placeholder {
  font-family: 'Manrope', sans-serif;
  font-size: 14px;
  font-weight: 500;
  color: rgba(255, 255, 255, .22);
  letter-spacing: 0;
  text-transform: none;
}

.t-search-count {
  font-family: 'JetBrains Mono', monospace;
  font-size: 12px;
  font-weight: 600;
  color: rgba(255, 255, 255, .25);
  flex-shrink: 0;
  min-width: 34px;
  text-align: right;
  transition: color .2s;
}

.t-search-count.ready {
  color: var(--gold);
}

.t-search-btn {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: linear-gradient(160deg, var(--gold-l) 0%, var(--gold) 100%);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #09090b;
  flex-shrink: 0;
  box-shadow: 0 4px 20px rgba(212, 168, 67, .40);
  transition: all .22s ease;
  position: relative;
  overflow: hidden;
}

.t-search-btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255, 255, 255, .20) 0%, transparent 55%);
  pointer-events: none;
}

.t-search-btn:hover {
  transform: translateX(3px);
  box-shadow: 0 6px 28px rgba(212, 168, 67, .60);
}

.t-search-btn:active {
  transform: scale(.95);
}

.t-search-btn:disabled {
  opacity: .6;
  cursor: default;
  transform: none;
}

.t-search-err {
  font-size: 12px;
  color: #f87171;
  min-height: 4px;
  padding-left: 4px;
  text-align: left;
  opacity: 0;
  transform: translateY(-4px);
  transition: all .2s ease;
}

.t-search-err.show {
  opacity: 1;
  transform: translateY(0);
}

.t-search-hint {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 7px;
  font-size: 12px;
  color: rgba(255, 255, 255, .28);
  margin-top: 20px;
}

.t-search-hint svg {
  color: rgba(212, 168, 67, .45);
  flex-shrink: 0;
}

.t-hint-btn {
  font-family: 'Manrope', sans-serif;
  font-size: 12px;
  font-weight: 600;
  color: rgba(255, 255, 255, .55);
  text-decoration: none;
  white-space: nowrap;
  border-bottom: 1px solid rgba(255, 255, 255, .25);
  transition: color .18s ease, border-color .18s ease;
}

.t-hint-btn:hover {
  color: var(--gold-l);
  border-color: rgba(212, 168, 67, .45);
}

.t-search-recent {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 11.5px;
  color: rgba(255, 255, 255, .35);
  margin-top: 2px;
}

.t-search-recent span {
  font-family: 'JetBrains Mono', monospace;
  color: rgba(255, 255, 255, .50);
}

.t-search-recent button {
  font-family: 'Manrope', sans-serif;
  font-size: 11px;
  color: rgba(255, 255, 255, .45);
  background: none;
  border: none;
  border-bottom: 1px solid rgba(255, 255, 255, .25);
  cursor: pointer;
  padding: 0;
  transition: color .18s ease, border-color .18s ease;
}

.t-search-recent button:hover {
  color: var(--gold-l);
  border-color: rgba(212, 168, 67, .45);
}

/* ==================================================================================================== */
/* ========== ROUTE ========== */
/* ==================================================================================================== */

.t-route {
  width: 100%;
  max-width: 560px;
  margin: 0 auto;
  position: relative;
  animation: routeIn .8s .5s cubic-bezier(.4, 0, .2, 1) both;
}

@keyframes routeIn {
  from {
    opacity: 0;
    transform: translateY(16px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.t-route-line {
  position: absolute;
  top: 22px;
  left: 10%;
  right: 10%;
  height: 2px;
  background: rgba(255, 255, 255, .10);
  border-radius: 1px;
  overflow: visible;
  z-index: 1;
}

.t-route-progress {
  height: 100%;
  background: linear-gradient(90deg, var(--gold-l), var(--gold));
  border-radius: 1px;
  width: 0%;
  transition: width .8s cubic-bezier(.4, 0, .2, 1);
  box-shadow: 0 0 8px rgba(212, 168, 67, .50);
}

.t-route-dot-moving {
  position: absolute;
  top: 50%;
  left: 0%;
  transform: translate(-50%, -50%);
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 12px rgba(212, 168, 67, .80), 0 0 4px rgba(212, 168, 67, 1);
  opacity: 0;
  transition: left .8s cubic-bezier(.4, 0, .2, 1), opacity .4s ease;
}

.t-stages {
  display: flex;
  justify-content: space-between;
  position: relative;
  z-index: 1;
}

.t-stage {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  flex: 1;
}

.t-stage-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #0d1320;
  border: 1.5px solid rgba(255, 255, 255, .14);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, .40);
  transition: all .4s ease;
  flex-shrink: 0;
  position: relative;
  z-index: 2;
  transform: rotate(-2deg);
}

.t-stage-icon::before {
  content: '';
  position: absolute;
  inset: 5px;
  border-radius: 50%;
  border: 1px dashed currentColor;
  opacity: .30;
  pointer-events: none;
}

.t-stage.is-done .t-stage-icon {
  background: #16120a;
  border-color: rgba(212, 168, 67, .45);
  color: var(--gold);
}

.t-stage.is-active .t-stage-icon {
  background: #1a1408;
  border-color: var(--gold);
  color: var(--gold);
  box-shadow: 0 0 0 4px rgba(212, 168, 67, .15), 0 0 20px rgba(212, 168, 67, .25);
  animation: stageGlow 2s ease-in-out infinite;
}

@keyframes stageGlow {

  0%,
  100% {
    box-shadow: 0 0 0 4px rgba(212, 168, 67, .15), 0 0 20px rgba(212, 168, 67, .25);
  }

  50% {
    box-shadow: 0 0 0 6px rgba(212, 168, 67, .08), 0 0 28px rgba(212, 168, 67, .35);
  }
}

.t-stage-label {
  font-size: 12px;
  font-weight: 700;
  color: rgba(255, 255, 255, .35);
  letter-spacing: .02em;
  transition: color .4s ease;
}

.t-stage.is-done .t-stage-label {
  color: rgba(255, 255, 255, .55);
}

.t-stage.is-active .t-stage-label {
  color: #fff;
}

.t-stage-sub {
  font-size: 10px;
  color: rgba(255, 255, 255, .22);
  letter-spacing: .04em;
  transition: color .4s ease;
}

.t-stage.is-active .t-stage-sub {
  color: rgba(212, 168, 67, .70);
}

/* ==================================================================================================== */
/* ========== RESULT CARD ========== */
/* ==================================================================================================== */

.t-result {
  width: 100%;
  max-width: 1200px;
  margin: 32px auto 0;
  scroll-margin-top: 100px;
  animation: routeIn .6s cubic-bezier(.4, 0, .2, 1) both;
}

.t-result-card {
  background: var(--paper);
  border-radius: 20px;
  padding: 32px 40px;
  text-align: left;
  color: #09090b;
  box-shadow:
    0 24px 60px rgba(0, 0, 0, 0.55),
    0 4px 16px rgba(0, 0, 0, 0.35),
    0 0 0 1px rgba(212, 168, 67, 0.15);
}

.t-result-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 16px;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(0, 0, 0, .07);
}

.t-result-title {
  font-size: 17px;
  font-weight: 800;
  letter-spacing: -.01em;
  margin-bottom: 4px;
}

.t-result-vin {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  color: #8a8578;
  letter-spacing: .02em;
}

.t-result-badge {
  flex-shrink: 0;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .04em;
  text-transform: uppercase;
  padding: 6px 12px;
  border-radius: 100px;
  background: rgba(212, 168, 67, .12);
  color: #a6791f;
  white-space: nowrap;
}

.t-result-section-label {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: #a6791f;
  margin-bottom: 12px;
}

.t-result-detail {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px 16px;
  margin-bottom: 20px;
  padding-bottom: 18px;
  border-bottom: 1px solid rgba(0, 0, 0, .06);
}

.t-result-row {
  display: flex;
  flex-direction: column;
  gap: 3px;
  font-size: 13px;
  padding: 10px 12px;
  background: rgba(0, 0, 0, .02);
  border-radius: 10px;
}

.t-result-row-label {
  font-size: 10.5px;
  color: #8a8578;
  letter-spacing: .01em;
}

.t-result-row-value {
  font-weight: 700;
  font-family: 'JetBrains Mono', monospace;
  font-size: 13px;
}

.t-result-row-value--pill {
  display: inline-flex;
  align-self: flex-start;
  font-family: 'Manrope', sans-serif;
  font-size: 11px;
  padding: 3px 9px;
  border-radius: 100px;
  background: rgba(22, 163, 74, .12);
  color: #16a34a;
}

.t-result-row-container {
  display: flex;
  align-items: center;
  gap: 6px;
}

.t-result-copy-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  background: rgba(0, 0, 0, .04);
  border: none;
  border-radius: 6px;
  color: #8a8578;
  cursor: pointer;
  flex-shrink: 0;
  transition: background .15s ease, color .15s ease;
}

.t-result-copy-btn:hover {
  background: rgba(212, 168, 67, .12);
  color: #a6791f;
}

.t-result-copy-btn.copied {
  color: #16a34a;
  background: rgba(22, 163, 74, .10);
}

.t-result-docs-wrap {
  margin-bottom: 18px;
  padding-bottom: 18px;
  border-bottom: 1px solid rgba(0, 0, 0, .06);
}

.t-result-docs {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.t-result-doc {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  background: rgba(0, 0, 0, .02);
  border-radius: 10px;
  text-decoration: none;
  color: #09090b;
  transition: background .15s ease;
}

.t-result-doc:hover {
  background: rgba(212, 168, 67, .08);
}

.t-result-doc-ico {
  color: #a6791f;
  flex-shrink: 0;
}

.t-result-doc-name {
  flex: 1;
  font-size: 12.5px;
  font-weight: 600;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.t-result-doc-dl {
  color: #8a8578;
  flex-shrink: 0;
}

.t-result-photos-wrap {
  margin-bottom: 14px;
}

.t-result-photo-tabs {
  display: flex;
  gap: 6px;
  margin-bottom: 10px;
  flex-wrap: wrap;
}

.t-result-photo-tab {
  font-family: 'Manrope', sans-serif;
  font-size: 11px;
  font-weight: 600;
  color: #8a8578;
  background: rgba(0, 0, 0, .03);
  border: 1px solid transparent;
  border-radius: 100px;
  padding: 5px 12px;
  cursor: pointer;
  transition: all .15s ease;
}

.t-result-photo-tab:hover {
  background: rgba(0, 0, 0, .06);
}

.t-result-photo-tab.active {
  color: #a6791f;
  background: rgba(212, 168, 67, .10);
  border-color: rgba(212, 168, 67, .25);
}

.t-result-photos-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 10px;
}

.t-result-download-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: 'Manrope', sans-serif;
  font-size: 11px;
  font-weight: 700;
  color: #a6791f;
  background: rgba(212, 168, 67, .10);
  border: 1px solid rgba(212, 168, 67, .25);
  border-radius: 100px;
  padding: 6px 12px;
  cursor: pointer;
  transition: background .18s ease;
}

.t-result-download-btn:hover {
  background: rgba(212, 168, 67, .18);
}

.t-result-photos {
  display: flex;
  gap: 8px;
  overflow-x: auto;
  padding-bottom: 4px;
}

.t-photo-item {
  position: relative;
  flex-shrink: 0;
}

.t-result-photos img {
  width: 84px;
  height: 84px;
  object-fit: cover;
  border-radius: 10px;
  background: rgba(0, 0, 0, .05);
  cursor: pointer;
  transition: transform .15s ease;
  display: block;
}

.t-result-photos img:hover {
  transform: scale(1.05);
}

.t-photo-dl {
  position: absolute;
  top: 4px;
  right: 4px;
  width: 20px;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, .55);
  border: none;
  border-radius: 6px;
  color: #fff;
  cursor: pointer;
  opacity: 0;
  transition: opacity .15s ease, background .15s ease;
}

.t-photo-item:hover .t-photo-dl {
  opacity: 1;
}

.t-photo-dl:hover {
  background: rgba(212, 168, 67, .85);
  color: #0a0a0b;
}

.t-result-note {
  font-size: 10.5px;
  color: #b0aa9c;
  text-align: center;
}



/* ==================================================================================================== */
/* ========== TRACK — кнопка "Підписатись на оновлення в Telegram" ========== */
/* ==================================================================================================== */

.t-result-subscribe {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  width: 100%;
  margin: 18px 0 12px;
  padding: 14px 20px;
  border-radius: 14px;
  background: linear-gradient(135deg, #229ed9, #1c8ec4);
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.01em;
  text-decoration: none;
  transition: transform 0.25s ease, box-shadow 0.25s ease, filter 0.25s ease;
  box-shadow: 0 8px 24px rgba(34, 158, 217, 0.28);
}

.t-result-subscribe:hover {
  filter: brightness(1.08);
  transform: translateY(-1px);
  box-shadow: 0 12px 30px rgba(34, 158, 217, 0.36);
}

.t-result-subscribe svg {
  flex-shrink: 0;
}

@media (max-width: 560px) {
  .t-result-subscribe {
    padding: 13px 16px;
    font-size: 13px;
  }
}







/* ==================================================================================================== */
/* ========== FOOTER ========== */
/* ==================================================================================================== */

.t-footer-light {
  position: relative;
  z-index: 10;
  background: linear-gradient(180deg, rgba(0, 0, 0, .20), rgba(0, 0, 0, .42));
  border-top: 1px solid rgba(212, 166, 41, 0.16);
  padding: 26px 40px;
}

.t-footer-light-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-evenly;
  gap: 22px;
  flex-wrap: wrap;
}

.t-footer-light-divider {
  width: 1px;
  height: 16px;
  background: rgba(255, 255, 255, .10);
  flex-shrink: 0;
}

.t-footer-light-copy {
  font-size: 11.5px;
  color: rgba(255, 255, 255, .32);
  white-space: nowrap;
  font-weight: 500;
}

.t-footer-light-contacts {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12.5px;
  flex-wrap: wrap;
  justify-content: center;
}

.t-footer-light-contact-item {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.t-footer-light-flag {
  font-size: 12px;
  opacity: 0.8;
}

.t-footer-light-contacts a {
  color: rgba(255, 255, 255, .42);
  text-decoration: none;
  transition: color .18s ease;
}

.t-footer-light-contacts a:hover {
  color: #fff;
}

.t-footer-light-sep {
  color: rgba(255, 255, 255, .18);
}

.t-footer-light-legal {
  display: flex;
  gap: 18px;
}

.t-footer-light-legal a {
  font-size: 12px;
  color: rgba(255, 255, 255, .28);
  text-decoration: none;
  transition: color .15s ease;
}

.t-footer-light-legal a:hover {
  color: rgba(255, 255, 255, .60);
}

@media (max-width: 700px) {
  .t-footer-light {
    padding: 22px 24px;
  }

  .t-footer-light-inner {
    flex-direction: column;
    gap: 14px;
  }

  .t-footer-light-divider {
    width: 100%;
    height: 1px;
  }

  .t-footer-light-contacts {
    flex-direction: column;
    gap: 8px;
  }

  .t-footer-light-sep {
    display: none;
  }
}

/* ==================================================================================================== */
/* ========== FLOATING BUTTON ========== */
/* ==================================================================================================== */

.float-btn-wrap {
  pointer-events: none;
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 2000;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 10px;
}

.float-btn {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.22s ease, border-color 0.22s ease, box-shadow 0.22s ease;
  position: relative;
  flex-shrink: 0;
  color: rgba(255, 255, 255, 0.90);
  background: #2a2d38;
  border: 1px solid rgba(255, 255, 255, 0.28);
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.50), 0 0 0 4px rgba(255, 255, 255, 0.04);
  animation: floatGlow 3s ease-in-out infinite;
}

.float-btn:hover {
  background: #252830;
  border-color: rgba(212, 168, 67, 0.50);
  box-shadow: 0 6px 28px rgba(0, 0, 0, 0.55), 0 0 0 1px rgba(212, 168, 67, 0.20);
}

.float-btn::before {
  content: '';
  position: absolute;
  inset: -1px;
  border-radius: 50%;
  border: 1.5px solid var(--gold);
  animation: floatPulse 2.5s ease-in-out infinite;
}

@keyframes floatPulse {
  0% {
    transform: scale(1);
    opacity: 0.20;
  }

  100% {
    transform: scale(1.35);
    opacity: 0;
  }
}

@keyframes floatGlow {

  0%,
  100% {
    box-shadow:
      0 4px 24px rgba(0, 0, 0, 0.50),
      0 0 0 4px rgba(255, 255, 255, 0.04),
      0 0 18px rgba(255, 255, 255, 0.10);
  }

  50% {
    box-shadow:
      0 4px 24px rgba(0, 0, 0, 0.50),
      0 0 0 4px rgba(255, 255, 255, 0.04),
      0 0 34px rgba(255, 255, 255, 0.28);
  }
}

.float-btn-wrap.open .float-btn::before {
  animation: none;
  opacity: 0;
}

.float-btn.attention-pulse {
  animation: attentionPulse .6s ease-in-out 2;
}

@keyframes attentionPulse {

  0%,
  100% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.12);
  }
}

.float-btn,
.float-item {
  pointer-events: auto;
}

.float-btn-icon {
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.25s ease, transform 0.25s ease;
}

.float-btn-icon--close {
  opacity: 0;
  transform: rotate(-90deg) scale(0.7);
}

.float-btn-wrap.open .float-btn-icon--open {
  opacity: 0;
  transform: rotate(90deg) scale(0.7);
}

.float-btn-wrap.open .float-btn-icon--close {
  opacity: 1;
  transform: rotate(0deg) scale(1);
}

.float-item {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  opacity: 0;
  transform: translateY(16px) scale(0.9);
  transition: opacity 0.30s ease, transform 0.30s ease;
  pointer-events: none;
  flex-direction: row-reverse;
  justify-content: flex-end;
}

.float-menu {
  display: flex;
  flex-direction: column;
  gap: 8px;
  align-items: flex-end;
  pointer-events: none;
}

.float-btn-wrap.open .float-menu {
  pointer-events: all;
}

.float-btn-wrap.open .float-item {
  opacity: 1;
  transform: translateY(0) scale(1);
  pointer-events: all;
}

.float-btn-wrap.open .float-item:nth-child(5) {
  transition-delay: 0.00s;
}

.float-btn-wrap.open .float-item:nth-child(4) {
  transition-delay: 0.05s;
}

.float-btn-wrap.open .float-item:nth-child(3) {
  transition-delay: 0.10s;
}

.float-btn-wrap.open .float-item:nth-child(2) {
  transition-delay: 0.15s;
}

.float-btn-wrap.open .float-item:nth-child(1) {
  transition-delay: 0.20s;
}

.float-item-label {
  font-family: 'Manrope', sans-serif;
  font-size: 12px;
  font-weight: 600;
  color: #ffffff;
  background: rgba(10, 10, 12, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.10);
  border-radius: 8px;
  padding: 6px 12px;
  white-space: nowrap;
  letter-spacing: 0.02em;
}

.float-item-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: transform 0.22s ease, box-shadow 0.22s ease;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.30);
}

.float-item:hover .float-item-icon {
  transform: scale(1.12);
}

.float-item--call .float-item-icon {
  background: var(--gold);
  border: none;
  color: #0a0a0b;
}

.float-item--call:hover .float-item-icon {
  background: var(--gold-l);
  box-shadow: 0 4px 20px rgba(212, 168, 67, 0.45);
}

.float-item--wa .float-item-icon {
  background: #25D366;
  color: #fff;
}

.float-item--wa:hover .float-item-icon {
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.45);
}

.float-item--tg .float-item-icon {
  background: #28A8EA;
  color: #fff;
}

.float-item--tg:hover .float-item-icon {
  box-shadow: 0 4px 20px rgba(40, 168, 234, 0.45);
}

.float-item--vb .float-item-icon {
  background: #7360f2;
  color: #fff;
}

.float-item--vb:hover .float-item-icon {
  box-shadow: 0 4px 20px rgba(115, 96, 242, 0.45);
}

.float-item--ms .float-item-icon {
  background: #0078FF;
  color: #fff;
}

.float-item--ms:hover .float-item-icon {
  box-shadow: 0 4px 20px rgba(0, 120, 255, 0.45);
}

@media (max-width: 480px) {
  .float-btn-wrap {
    bottom: 20px;
    right: 20px;
  }

  .float-btn {
    width: 50px;
    height: 50px;
  }

  .float-item-label {
    display: none;
  }
}

/* ==================================================================================================== */
/* ========== RESPONSIVE ========== */
/* ==================================================================================================== */

@media (max-width: 768px) {
  .t-main {
    padding: 96px 20px 32px;
    align-items: flex-start;
  }

  .t-search-inp {
    font-size: 14px;
    padding: 13px 0;
  }

  .t-search-btn {
    width: 46px;
    height: 46px;
  }

  .t-search-count {
    display: none;
  }

  .t-search-hint {
    flex-direction: column;
    gap: 6px;
    text-align: center;
  }

  .t-search-hint svg {
    display: none;
  }

  .t-hint-tail {
    font-size: 11px;
    color: rgba(255, 255, 255, .22);
  }

  .t-stage-label {
    font-size: 10px;
  }

  .t-stage-sub {
    font-size: 8.5px;
  }

  .t-stage-icon {
    width: 36px;
    height: 36px;
  }

  .t-stage-icon svg {
    width: 15px;
    height: 15px;
  }

  .t-result-card {
    padding: 20px;
  }

  .t-result-top {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }

  .t-result-badge {
    white-space: normal;
  }

  .t-result-detail {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 420px) {
  .t-title {
    font-size: clamp(28px, 9vw, 40px);
  }
}

@media (prefers-reduced-motion: reduce) {

  *,
  *::before,
  *::after {
    animation-duration: .01ms !important;
    transition-duration: .01ms !important;
  }
}