/* Trust Certificate вЂ” sections below hero (tariffs, about, FAQ, form, footer) */

#options,
#about,
#faq,
#contact-form,
#footer,
#cover {
  scroll-margin-top: calc(var(--nav-h, 72px) + 32px);
}

/* в”Ђв”Ђ Tariffs (#options) в”Ђв”Ђ */
.tc-tariffs {
  position: relative;
  padding: 0 0 120px;
  background: transparent;
  overflow: visible;
}

.tc-tariffs::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 40% at 50% 0%, rgba(99, 102, 241, 0.12), transparent 60%),
    radial-gradient(ellipse 50% 30% at 90% 60%, rgba(139, 92, 246, 0.08), transparent 50%);
  pointer-events: none;
}

/* Wallester-style payment strip вЂ” РѕРґРЅР° Р»РµРЅС‚Р° */
.tc-wstrip {
  position: relative;
  border-bottom: 1px solid var(--glass-border);
  background: rgba(8, 12, 22, 0.85);
  padding: 16px 0 20px;
  margin-bottom: 64px;
  overflow: hidden;
}

.tc-wstrip__label {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin: 0 0 14px;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--mute);
}

.tc-wstrip__fade {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 100px;
  z-index: 2;
  pointer-events: none;
}

.tc-wstrip__fade--l {
  left: 0;
  background: linear-gradient(90deg, #050810 0%, transparent 100%);
}

.tc-wstrip__fade--r {
  right: 0;
  background: linear-gradient(270deg, #050810 0%, transparent 100%);
}

.tc-wstrip__viewport {
  overflow: hidden;
  width: 100%;
}

.tc-wstrip__viewport:hover .tc-wstrip__track {
  animation-play-state: paused;
}

@keyframes tc-wstrip-scroll {
  0% { transform: translate3d(0, 0, 0); }
  100% { transform: translate3d(-50%, 0, 0); }
}

.tc-wstrip__track {
  display: flex;
  align-items: center;
  gap: 20px;
  width: max-content;
  flex-shrink: 0;
  animation: tc-wstrip-scroll 45s linear infinite;
  will-change: transform;
}

.tc-wstrip__cell {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 22px;
  min-height: 48px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--glass-border);
  border-radius: 14px;
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: #fff;
  white-space: nowrap;
  flex-shrink: 0;
}

/* ── Media safety — payment / trust logos never blow up layout ── */
.tc-wstrip__cell img,
.tc-fintech-pay__brands img,
.tc-cashout-highlight__brands img,
.tc-cashout-network img,
.tc-footer__pay img,
.tc-footer__trust-item img,
.tc-3ds__scheme img,
.tc-cashout-crypto-badge img {
  display: block;
  width: auto;
  max-width: 100%;
  flex: 0 0 auto;
  object-fit: contain;
}

.tc-wstrip__cell img {
  max-height: 20px;
  opacity: 1;
  filter: brightness(1.15);
}

.tc-fintech-pay__brands img,
.tc-cashout-highlight__brands img,
.tc-cashout-network img {
  max-height: 22px;
}

.tc-cashout-crypto-badge img {
  width: 28px;
  height: 28px;
  max-height: 28px;
}

.tc-3ds__scheme img {
  max-height: 16px;
}

.tc-wstrip__cell--text {
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--soft);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.tc-wstrip__dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--mint);
  box-shadow: 0 0 12px rgba(52, 211, 153, 0.65);
  flex-shrink: 0;
}

.tc-tariffs__inner {
  width: min(var(--w), 100% - var(--tc-gutter) * 2);
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.tc-tariffs__head {
  text-align: center;
  margin-bottom: 48px;
}

.tc-tariffs__title {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 12px;
}

.tc-tariffs__title span {
  background: var(--grad-text);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.tc-tariffs__lead,
.tc-tariffs__guide {
  color: var(--soft);
  font-size: 1rem;
  max-width: 480px;
  margin: 0 auto;
  line-height: 1.55;
}

.tc-tariffs__guide strong {
  color: #fff;
  font-weight: 600;
}

/* РџРѕРЅСЏС‚РЅС‹Р№ С„Р»РѕСѓ вЂ” 3 С€Р°РіР° */
.tc-tariffs__flow {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 8px 12px;
  margin: 0 auto 32px;
  padding: 14px 20px;
  max-width: 520px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--glass-border);
  border-radius: 16px;
}

.tc-tariffs__flow-step {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.82rem;
  color: var(--mute);
}

.tc-tariffs__flow-step.is-active { color: var(--soft); }

.tc-tariffs__flow-step.is-active .tc-tariffs__flow-num {
  background: var(--grad);
  color: #fff;
  box-shadow: 0 4px 16px rgba(99, 102, 241, 0.4);
}

.tc-tariffs__flow-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
  font-size: 0.72rem;
  font-weight: 700;
}

.tc-tariffs__flow-text { font-weight: 600; }

.tc-tariffs__flow-arrow {
  color: rgba(255, 255, 255, 0.2);
  font-size: 0.9rem;
}

/* в”Ђв”Ђ Buy widget вЂ” РµРґРёРЅР°СЏ РїРѕРєСѓРїРєР° $100вЂ“$1000 в”Ђв”Ђ */
.tc-buy {
  position: relative;
  max-width: 560px;
  margin: 0 auto;
  border-radius: 28px;
  animation: tc-card-enter 0.7s var(--ease) both;
}

.tc-buy__aura {
  position: absolute;
  inset: -24px;
  border-radius: 36px;
  background: radial-gradient(ellipse 80% 55% at 50% 90%, rgba(99, 102, 241, 0.2), transparent 70%);
  opacity: 0.7;
  animation: tc-aura-pulse 5s ease-in-out infinite;
  pointer-events: none;
}

.tc-buy__ring {
  position: absolute;
  inset: -2px;
  border-radius: 30px;
  background: conic-gradient(from var(--tc-ring-angle, 0deg), #6366F1, #8B5CF6, #3B82F6, #34D399, #6366F1);
  opacity: 0.55;
  animation: tc-tcard-ring 6s linear infinite;
  pointer-events: none;
}

.tc-buy__panel {
  position: relative;
  z-index: 1;
  margin: 2px;
  padding: 28px 28px 24px;
  border-radius: 26px;
  background: linear-gradient(165deg, rgba(22, 28, 48, 0.92) 0%, rgba(6, 10, 20, 0.97) 100%);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border: 1px solid rgba(255, 255, 255, 0.09);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.08),
    0 32px 64px rgba(0, 0, 0, 0.45);
}

.tc-buy__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 28px;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.tc-buy__brand {
  display: flex;
  align-items: center;
  gap: 10px;
}

.tc-buy__mark {
  display: flex;
  width: 36px;
  height: 36px;
}

.tc-buy__logo {
  width: 100%;
  height: 100%;
}

.tc-buy__wordmark {
  display: flex;
  flex-direction: column;
  line-height: 1.05;
}

.tc-buy__wordmark-primary {
  font-size: 0.95rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  background: var(--grad-text);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.tc-buy__wordmark-secondary {
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--mute);
}

.tc-buy__trust {
  display: flex;
  align-items: center;
  gap: 8px;
}

.tc-buy__pci {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--mint);
}

.tc-buy__pci-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--mint);
  box-shadow: 0 0 10px rgba(52, 211, 153, 0.7);
  animation: tc-pci-pulse 2.4s ease-in-out infinite;
}

@keyframes tc-pci-pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.55; transform: scale(0.85); }
}

.tc-buy__usd {
  padding: 4px 8px;
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.06);
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--soft);
}

.tc-buy__section-label {
  margin: 0 0 14px;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--mute);
}

.tc-buy__amount {
  margin-bottom: 28px;
}

.tc-buy__amount-display {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-bottom: 10px;
}

.tc-buy__price-field {
  display: flex;
  flex-direction: column;
  align-items: center;
  min-width: 160px;
}

.tc-buy__amount-hint {
  margin: 0 0 18px;
  min-height: 1.2em;
  text-align: center;
  font-size: 0.74rem;
  color: var(--mute);
  line-height: 1.4;
  transition: color 0.25s var(--ease);
}

.tc-buy__amount-hint.is-preview {
  color: #a5b4fc;
}

.tc-buy__amount-hint.is-ok {
  color: var(--mint);
}

.tc-buy__amount-hint.is-error {
  color: #f87171;
}

.tc-buy__step-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.04);
  color: var(--soft);
  font-size: 1.25rem;
  font-weight: 300;
  line-height: 1;
  cursor: pointer;
  transition: all 0.25s var(--ease);
}

.tc-buy__step-btn:hover {
  background: rgba(99, 102, 241, 0.15);
  border-color: rgba(99, 102, 241, 0.35);
  color: #fff;
}

.tc-buy__step-btn:active {
  transform: scale(0.94);
}

.tc-buy__price {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 4px;
  padding: 6px 14px 6px 10px;
  border-radius: 16px;
  border: 1px solid transparent;
  background: transparent;
  cursor: text;
  transition:
    transform 0.35s var(--ease),
    border-color 0.25s var(--ease),
    background 0.25s var(--ease),
    box-shadow 0.25s var(--ease);
}

.tc-buy__price:hover {
  border-color: rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.03);
}

.tc-buy__price.is-editing {
  border-color: rgba(99, 102, 241, 0.45);
  background: rgba(99, 102, 241, 0.08);
  box-shadow: 0 0 0 4px rgba(99, 102, 241, 0.12);
}

.tc-buy__price.is-preview {
  border-color: rgba(165, 180, 252, 0.25);
}

.tc-buy__price.is-invalid {
  border-color: rgba(248, 113, 113, 0.45);
  background: rgba(248, 113, 113, 0.06);
  box-shadow: 0 0 0 4px rgba(248, 113, 113, 0.1);
}

.tc-buy__price.is-bump {
  animation: tc-buy-bump 0.35s var(--ease);
}

@keyframes tc-buy-bump {
  0% { transform: scale(1); }
  40% { transform: scale(1.04); }
  100% { transform: scale(1); }
}

.tc-buy__currency {
  margin-top: 0.35em;
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--mute);
  pointer-events: none;
  user-select: none;
}

.tc-buy__input {
  width: 3ch;
  min-width: 2ch;
  max-width: 5ch;
  margin: 0;
  padding: 0;
  border: none;
  background: transparent;
  font-family: var(--font);
  font-size: clamp(2.75rem, 10vw, 3.5rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1;
  text-align: center;
  color: #fff;
  caret-color: #a5b4fc;
  outline: none;
  -moz-appearance: textfield;
}

.tc-buy__input::-webkit-outer-spin-button,
.tc-buy__input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

.tc-buy__input::selection {
  background: rgba(99, 102, 241, 0.35);
}

.tc-buy__price:not(.is-editing) .tc-buy__input {
  background: linear-gradient(135deg, #fff 0%, #c7d2fe 45%, #a78bfa 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.tc-buy__price.is-editing .tc-buy__input {
  -webkit-text-fill-color: #fff;
}

.tc-buy__edit-badge {
  display: flex;
  align-items: center;
  justify-content: center;
  align-self: center;
  margin-top: 0.15em;
  width: 22px;
  height: 22px;
  border-radius: 8px;
  color: var(--mute);
  background: rgba(255, 255, 255, 0.05);
  opacity: 0;
  transform: translateX(-4px);
  transition: opacity 0.25s var(--ease), transform 0.25s var(--ease), color 0.25s var(--ease);
  pointer-events: none;
}

.tc-buy__price:hover .tc-buy__edit-badge,
.tc-buy__price.is-editing .tc-buy__edit-badge {
  opacity: 1;
  transform: none;
}

.tc-buy__price.is-editing .tc-buy__edit-badge {
  color: #c7d2fe;
  background: rgba(99, 102, 241, 0.2);
}

.tc-buy__slider-wrap {
  position: relative;
  height: 28px;
  margin-bottom: 8px;
}

.tc-buy__slider-track {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  height: 6px;
  transform: translateY(-50%);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  overflow: hidden;
  pointer-events: none;
}

.tc-buy__slider-fill {
  display: block;
  height: 100%;
  width: 0%;
  border-radius: inherit;
  background: var(--grad);
  box-shadow: 0 0 16px rgba(99, 102, 241, 0.5);
  transition: width 0.2s var(--ease);
}

.tc-buy__slider {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 28px;
  margin: 0;
  background: transparent;
  -webkit-appearance: none;
  appearance: none;
  cursor: pointer;
}

.tc-buy__slider::-webkit-slider-runnable-track {
  height: 6px;
  background: transparent;
}

.tc-buy__slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 22px;
  height: 22px;
  margin-top: -8px;
  border-radius: 50%;
  background: #fff;
  box-shadow:
    0 0 0 4px rgba(99, 102, 241, 0.35),
    0 4px 12px rgba(0, 0, 0, 0.35);
  transition: box-shadow 0.2s var(--ease), transform 0.2s var(--ease);
}

.tc-buy__slider:active::-webkit-slider-thumb {
  transform: scale(1.1);
  box-shadow:
    0 0 0 6px rgba(99, 102, 241, 0.25),
    0 4px 16px rgba(99, 102, 241, 0.4);
}

.tc-buy__slider::-moz-range-track {
  height: 6px;
  background: transparent;
  border: none;
}

.tc-buy__slider::-moz-range-thumb {
  width: 22px;
  height: 22px;
  border: none;
  border-radius: 50%;
  background: #fff;
  box-shadow:
    0 0 0 4px rgba(99, 102, 241, 0.35),
    0 4px 12px rgba(0, 0, 0, 0.35);
}

.tc-buy__slider-labels {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 16px;
  font-size: 0.72rem;
  color: var(--mute);
}

.tc-buy__slider-step {
  padding: 3px 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.05);
  font-weight: 600;
  font-size: 0.68rem;
}

.tc-buy__presets {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
}

.tc-buy__preset {
  padding: 8px 16px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.03);
  color: var(--mute);
  font-family: var(--font);
  font-size: 0.82rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.25s var(--ease);
}

.tc-buy__preset:hover {
  border-color: rgba(99, 102, 241, 0.3);
  color: var(--soft);
}

.tc-buy__preset.is-active {
  background: rgba(99, 102, 241, 0.18);
  border-color: rgba(139, 92, 246, 0.45);
  color: #fff;
  box-shadow: 0 4px 16px rgba(99, 102, 241, 0.2);
}

.tc-buy__pay {
  margin-bottom: 24px;
}

/* Fintech payment tiles вЂ” 2026 */
.tc-fintech-pay__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.tc-fintech-pay__tile {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  padding: 18px 16px 14px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.03);
  text-align: left;
  cursor: pointer;
  overflow: hidden;
  transition:
    border-color 0.3s var(--ease),
    background 0.3s var(--ease),
    transform 0.25s var(--ease),
    box-shadow 0.3s var(--ease);
}

.tc-fintech-pay__tile:hover {
  border-color: rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.05);
  transform: translateY(-2px);
}

.tc-fintech-pay__glow {
  position: absolute;
  inset: 0;
  opacity: 0;
  background: radial-gradient(ellipse 80% 60% at 50% 100%, rgba(99, 102, 241, 0.25), transparent 70%);
  transition: opacity 0.35s var(--ease);
  pointer-events: none;
}

.tc-fintech-pay__glow--mint {
  background: radial-gradient(ellipse 80% 60% at 50% 100%, rgba(52, 211, 153, 0.2), transparent 70%);
}

.tc-fintech-pay__tile.is-selected {
  border-color: rgba(99, 102, 241, 0.45);
  background: rgba(99, 102, 241, 0.08);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.06),
    0 8px 24px rgba(99, 102, 241, 0.15);
}

.tc-fintech-pay__tile.is-selected[data-method="crypto"] {
  border-color: rgba(52, 211, 153, 0.4);
  background: rgba(52, 211, 153, 0.06);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.06),
    0 8px 24px rgba(52, 211, 153, 0.12);
}

.tc-fintech-pay__tile.is-selected .tc-fintech-pay__glow {
  opacity: 1;
}

.tc-fintech-pay__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 14px;
  color: #c7d2fe;
  background: rgba(99, 102, 241, 0.15);
  transition: background 0.3s var(--ease), color 0.3s var(--ease);
}

.tc-fintech-pay__icon--crypto {
  color: #6ee7b7;
  background: rgba(52, 211, 153, 0.12);
}

.tc-fintech-pay__tile.is-selected .tc-fintech-pay__icon--card {
  background: rgba(99, 102, 241, 0.28);
  color: #fff;
}

.tc-fintech-pay__tile.is-selected .tc-fintech-pay__icon--crypto {
  background: rgba(52, 211, 153, 0.22);
  color: #fff;
}

.tc-fintech-pay__copy {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.tc-fintech-pay__title {
  font-size: 0.92rem;
  font-weight: 700;
  color: #fff;
  letter-spacing: -0.01em;
}

.tc-fintech-pay__desc {
  font-size: 0.72rem;
  color: var(--mute);
  line-height: 1.35;
}

.tc-fintech-pay__tile.is-selected .tc-fintech-pay__desc {
  color: var(--soft);
}

.tc-fintech-pay__brands {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: auto;
  padding-top: 4px;
}

.tc-fintech-pay__brands--crypto {
  gap: 6px;
  font-size: 0.68rem;
  font-weight: 600;
  color: var(--mint);
}

.tc-fintech-pay__check {
  position: absolute;
  top: 12px;
  right: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--grad);
  color: #fff;
  opacity: 0;
  transform: scale(0.6);
  transition: opacity 0.25s var(--ease), transform 0.25s var(--ease);
}

.tc-fintech-pay__tile.is-selected[data-method="crypto"] .tc-fintech-pay__check {
  background: linear-gradient(135deg, #34D399, #3B82F6);
}

.tc-fintech-pay__tile.is-selected .tc-fintech-pay__check {
  opacity: 1;
  transform: scale(1);
}

.tc-buy__footer {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.tc-buy__cta {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  padding: 18px 24px;
  border: none;
  border-radius: 16px;
  background: var(--grad);
  color: #fff;
  font-family: var(--font);
  font-size: 1rem;
  font-weight: 700;
  text-decoration: none;
  overflow: hidden;
  cursor: pointer;
  box-shadow: 0 8px 28px rgba(99, 102, 241, 0.4);
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
}

.tc-buy__cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 36px rgba(99, 102, 241, 0.5);
}

.tc-buy__cta.is-disabled {
  opacity: 0.45;
  pointer-events: none;
  transform: none;
  box-shadow: none;
  cursor: not-allowed;
}

.tc-buy__cta-shimmer {
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, transparent 40%, rgba(255,255,255,0.12) 50%, transparent 60%);
  background-size: 200% 100%;
  animation: tc-tcard-shine 3s ease-in-out infinite;
  pointer-events: none;
}

.tc-buy__cta-text,
.tc-buy__cta-arrow {
  position: relative;
  z-index: 1;
}

.tc-buy__cta-arrow {
  transition: transform 0.25s var(--ease);
}

.tc-buy__cta:hover .tc-buy__cta-arrow {
  transform: translateX(4px);
}

.tc-buy__meta {
  text-align: center;
  font-size: 0.78rem;
  color: var(--mute);
  margin: 0;
}

.tc-buy__meta strong {
  color: var(--soft);
  font-weight: 600;
}

.tc-tariffs__tab-hint {
  text-align: center;
  margin: 16px 0 20px;
  font-size: 0.86rem;
  color: var(--soft);
}

/* РџРµСЂРµРєР»СЋС‡Р°С‚РµР»СЊ СЃС‚РёР»СЏ РєР°СЂС‚РѕС‡РµРє */
.tc-style-picker {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 6px;
  margin: 0 auto 8px;
  padding: 6px;
  max-width: 520px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--glass-border);
  border-radius: 999px;
}

.tc-style-picker__label {
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--mute);
  padding: 0 8px 0 12px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.tc-style-picker__btn {
  padding: 8px 14px;
  border: none;
  border-radius: 999px;
  background: transparent;
  color: var(--mute);
  font-family: var(--font);
  font-size: 0.78rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.25s var(--ease);
  white-space: nowrap;
}

.tc-style-picker__btn:hover { color: var(--soft); }

.tc-style-picker__btn.is-active {
  background: var(--grad);
  color: #fff;
  box-shadow: 0 4px 16px rgba(99, 102, 241, 0.35);
}

.tc-style-picker__hint {
  text-align: center;
  margin: -16px auto 24px;
  font-size: 0.72rem;
  color: var(--mute);
  letter-spacing: 0.02em;
}

#tariff-cards.tc-scroll-flash {
  border-radius: 20px;
  animation: tc-scroll-flash 1.2s var(--ease);
}

@keyframes tc-scroll-flash {
  0%, 100% { box-shadow: none; }
  30% { box-shadow: 0 0 0 2px rgba(99, 102, 241, 0.35), 0 0 48px rgba(99, 102, 241, 0.12); }
}

.tc-tariffs__tabs-label {
  text-align: center;
  margin: 0 0 14px;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--mute);
  letter-spacing: 0.02em;
}

.tc-tariffs .tariff-nav-container {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-bottom: 0;
  flex-wrap: wrap;
  padding: 6px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--glass-border);
  border-radius: 20px;
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
}

.tc-tariffs .tariff-nav-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  padding: 12px 22px;
  background: transparent;
  border: none;
  border-radius: 16px;
  cursor: pointer;
  font-family: var(--font);
  transition: all 0.3s var(--ease);
  min-width: 110px;
}

.tariff-nav-item__name {
  font-weight: 700;
  font-size: 0.92rem;
  color: var(--mute);
  transition: color 0.3s var(--ease);
}

.tariff-nav-item__range {
  font-size: 0.72rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.35);
  transition: color 0.3s var(--ease);
}

.tc-tariffs .tariff-nav-item:hover .tariff-nav-item__name {
  color: var(--soft);
}

.tc-tariffs .tariff-nav-item.nav-active {
  background: var(--grad);
  box-shadow: 0 6px 20px rgba(99, 102, 241, 0.35);
}

.tc-tariffs .tariff-nav-item.nav-active .tariff-nav-item__name,
.tc-tariffs .tariff-nav-item.nav-active .tariff-nav-item__range {
  color: #fff !important;
}

.tc-tariffs .tariff-tab-content { display: none; }
.tc-tariffs .tariff-tab-content.content-active {
  display: block;
}

.tc-tariffs .tariff-content-wrapper {
  padding-bottom: 24px;
  overflow: visible;
}

.tc-tariffs .tariff-cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  align-items: start;
  overflow: visible;
  padding: 8px 0 32px;
}

/* в”Ђв”Ђ Premium 2026 cards в”Ђв”Ђ */
.tc-tariffs .tc-tcard--premium {
  position: relative;
  border-radius: 22px;
  overflow: visible;
  animation: tc-card-enter 0.7s var(--ease) both;
  animation-delay: var(--tc-delay, 0s);
}

@keyframes tc-card-enter {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}

.tc-tariffs .tc-tcard--premium:hover {
  transform: translateY(-6px);
  transition: transform 0.45s var(--ease);
}

.tc-tariffs .tc-tcard__aura {
  position: absolute;
  inset: -20px;
  border-radius: 32px;
  background: radial-gradient(ellipse 70% 50% at 50% 80%, rgba(99, 102, 241, 0.22), transparent 70%);
  opacity: 0.6;
  animation: tc-aura-pulse 5s ease-in-out infinite;
  pointer-events: none;
  z-index: 0;
}

@keyframes tc-aura-pulse {
  0%, 100% { opacity: 0.45; transform: scale(0.98); }
  50% { opacity: 0.85; transform: scale(1.02); }
}

.tc-tariffs .tc-tcard {
  position: relative;
  border-radius: 22px;
  overflow: visible;
}

.tc-tariffs .tc-tcard__ring {
  position: absolute;
  inset: -2px;
  border-radius: 24px;
  background: conic-gradient(from var(--tc-ring-angle, 0deg), #6366F1, #8B5CF6, #3B82F6, #34D399, #6366F1);
  opacity: 0.7;
  animation: tc-tcard-ring 5s linear infinite;
  z-index: 0;
}

.tc-tariffs .tc-tcard--premium:hover .tc-tcard__ring {
  opacity: 1;
  filter: blur(0);
}

@keyframes tc-tcard-ring {
  to { --tc-ring-angle: 360deg; }
}

@property --tc-ring-angle {
  syntax: '<angle>';
  initial-value: 0deg;
  inherits: false;
}

.tc-tariffs .tc-tcard__shine {
  position: absolute;
  inset: 0;
  border-radius: 20px;
  background: linear-gradient(105deg, transparent 40%, rgba(255,255,255,0.06) 50%, transparent 60%);
  background-size: 200% 100%;
  opacity: 0;
  transition: opacity 0.4s;
  z-index: 2;
  pointer-events: none;
}

.tc-tariffs .tc-tcard:hover .tc-tcard__shine {
  opacity: 1;
  animation: tc-tcard-shine 1.2s var(--ease);
}

@keyframes tc-tcard-shine {
  from { background-position: 200% 0; }
  to { background-position: -200% 0; }
}

.tc-tariffs .tc-tcard__body {
  position: relative;
  z-index: 1;
  margin: 2px;
  padding: 26px 24px 22px;
  border-radius: 20px;
  background: linear-gradient(160deg, rgba(22, 28, 48, 0.88) 0%, rgba(8, 12, 24, 0.95) 100%);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.09);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.08),
    0 24px 48px rgba(0, 0, 0, 0.35);
  transition: box-shadow 0.4s var(--ease), border-color 0.4s var(--ease);
  display: flex;
  flex-direction: column;
}

.tc-tariffs .tc-tcard--premium:hover .tc-tcard__body {
  border-color: rgba(139, 92, 246, 0.35);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.12),
    0 32px 64px rgba(0, 0, 0, 0.45),
    0 0 48px rgba(99, 102, 241, 0.15);
}

.tc-tariffs .tc-tcard__top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 24px;
  padding-bottom: 18px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}

.tc-tariffs .tc-tcard__badges {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 6px;
  flex-shrink: 0;
}

.tc-tariffs .tc-tcard__pci {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--mint);
}

.tc-tariffs .tc-tcard__pci-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--mint);
  box-shadow: 0 0 8px rgba(52, 211, 153, 0.8);
  animation: tc-pci-blink 2.5s ease-in-out infinite;
}

@keyframes tc-pci-blink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}

.tc-tariffs .tc-tcard__brand-lockup {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}

.tc-tariffs .tc-tcard__mark {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.tc-tariffs .tc-tcard__logo-svg {
  width: 48px;
  height: 48px;
  display: block;
  filter: drop-shadow(0 6px 18px rgba(99, 102, 241, 0.4));
  transition: transform 0.4s var(--ease), filter 0.4s var(--ease);
}

.tc-tariffs .tc-tcard:hover .tc-tcard__logo-svg {
  transform: scale(1.04);
  filter: drop-shadow(0 8px 24px rgba(99, 102, 241, 0.5));
}

.tc-tariffs .tc-tcard:hover .tc-tcard__wordmark-primary {
  filter: drop-shadow(0 0 12px rgba(196, 181, 253, 0.45));
}

.tc-tariffs .tc-tcard__wordmark {
  display: flex;
  flex-direction: column;
  gap: 3px;
  line-height: 1;
  white-space: nowrap;
  padding-top: 2px;
}

.tc-tariffs .tc-tcard__wordmark-primary {
  font-size: 1.2rem;
  font-weight: 800;
  letter-spacing: -0.055em;
  background: var(--grad-text);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.tc-tariffs .tc-tcard__wordmark-secondary {
  font-size: 0.58rem;
  font-weight: 600;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: rgba(148, 163, 184, 0.82);
  padding-left: 1px;
}

.tc-tariffs .tc-tcard__tag {
  font-size: 0.62rem;
  font-weight: 700;
  padding: 4px 8px;
  border-radius: 6px;
  background: rgba(99, 102, 241, 0.2);
  color: var(--violet-light);
  letter-spacing: 0.08em;
}

.tc-tariffs .tc-tcard__price-block {
  margin-bottom: 20px;
  text-align: center;
}

.tc-tariffs .tc-tcard__label {
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--mute);
  margin-bottom: 8px;
}

.tc-tariffs .tc-tcard__price {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  line-height: 1;
  margin-bottom: 0;
}

.tc-tariffs .tc-tcard__currency {
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--violet-light);
  margin-top: 0.4em;
  margin-right: 3px;
}

.tc-tariffs .tc-tcard__amount {
  font-family: var(--mono);
  font-size: clamp(2.8rem, 5vw, 3.5rem);
  font-weight: 700;
  background: linear-gradient(180deg, #fff 0%, #c4b5fd 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  letter-spacing: -0.04em;
  filter: drop-shadow(0 0 24px rgba(139, 92, 246, 0.35));
  animation: tc-price-glow 3s ease-in-out infinite;
}

@keyframes tc-price-glow {
  0%, 100% { filter: drop-shadow(0 0 20px rgba(139, 92, 246, 0.25)); }
  50% { filter: drop-shadow(0 0 32px rgba(139, 92, 246, 0.5)); }
}

.tc-tariffs .tc-tcard__cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  margin: 0 0 18px;
  padding: 17px 24px;
  text-decoration: none;
  font-weight: 700;
  font-size: 1.02rem;
  color: #fff !important;
  background: var(--grad) !important;
  border-radius: 14px;
  box-shadow: 0 10px 32px rgba(99, 102, 241, 0.45);
  transition: transform 0.25s var(--ease), box-shadow 0.25s;
  position: relative;
  overflow: hidden;
}

.tc-tariffs .tc-tcard__cta-shimmer {
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, transparent 30%, rgba(255,255,255,0.2) 50%, transparent 70%);
  background-size: 200% 100%;
  animation: tc-cta-shimmer 3s ease-in-out infinite;
  pointer-events: none;
}

@keyframes tc-cta-shimmer {
  0% { background-position: 200% 0; }
  100% { background-position: -200% 0; }
}

.tc-tariffs .tc-tcard__cta-text,
.tc-tariffs .tc-tcard__cta-arrow {
  position: relative;
  z-index: 1;
}

.tc-tariffs .tc-tcard__cta:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 16px 40px rgba(99, 102, 241, 0.6);
  color: #fff !important;
}

.tc-tariffs .tc-tcard__pay-section {
  margin-bottom: 18px;
}

.tc-tariffs .tc-tcard__pay-title {
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--mute);
  margin-bottom: 10px;
  text-align: center;
}

/* РРЅРЅРѕРІР°С†РёРѕРЅРЅС‹Р№ РїРµСЂРµРєР»СЋС‡Р°С‚РµР»СЊ РєР°СЂС‚Р° / РєСЂРёРїС‚Рѕ */
.tc-pay-switch__track {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4px;
  padding: 4px;
  background: rgba(0, 0, 0, 0.35);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 14px;
}

.tc-pay-switch__glider {
  position: absolute;
  top: 4px;
  left: 4px;
  width: calc(50% - 4px);
  height: calc(100% - 8px);
  border-radius: 10px;
  background: var(--grad);
  box-shadow: 0 4px 20px rgba(99, 102, 241, 0.45);
  transition: transform 0.35s var(--ease);
  pointer-events: none;
  z-index: 0;
}

.tc-pay-switch.is-crypto .tc-pay-switch__glider {
  transform: translateX(100%);
}

.tc-pay-switch__opt {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  padding: 14px 12px;
  min-height: 48px;
  border: none;
  border-radius: 10px;
  background: transparent;
  color: var(--mute);
  font-family: var(--font);
  font-size: 0.82rem;
  font-weight: 700;
  cursor: pointer;
  transition: color 0.3s var(--ease), background 0.25s var(--ease);
  -webkit-tap-highlight-color: transparent;
  touch-action: manipulation;
}

.tc-pay-switch__copy {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
}

.tc-pay-switch__sub {
  display: none;
  font-size: 0.65rem;
  font-weight: 500;
  opacity: 0.85;
  letter-spacing: 0.02em;
}

.tc-pay-switch__opt.payment-selected .tc-pay-switch__sub {
  opacity: 1;
}

.tc-pay-switch__opt.payment-selected {
  color: #fff;
}

.tc-pay-switch__opt:active {
  transform: scale(0.98);
}

.tc-pay-switch__opt:hover:not(.payment-selected) {
  color: var(--soft);
}

.tc-pay-switch__icon {
  opacity: 0.85;
}

.tc-pay-switch__methods {
  display: flex;
  justify-content: center;
  margin-top: 10px;
  min-height: 22px;
}

.tc-pay-switch__methods-card,
.tc-pay-switch__methods-crypto {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.tc-pay-switch__methods-crypto {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--mint);
  letter-spacing: 0.03em;
}

.tc-pay-switch__methods-crypto[hidden],
.tc-pay-switch__methods-card[hidden] {
  display: none !important;
}

.tc-tariffs .tc-tcard__meta {
  color: var(--mute);
  font-size: 0.72rem;
  margin: 14px 0 0;
  text-align: center;
  line-height: 1.5;
}

.tc-tariffs .tc-tcard__meta strong {
  color: var(--soft);
  font-weight: 600;
}

.tc-tariffs .tc-tcard__cta-arrow {
  transition: transform 0.25s var(--ease);
}

.tc-tariffs .tc-tcard__cta:hover .tc-tcard__cta-arrow {
  transform: translateX(4px);
}

/* в”Ђв”Ђ Р­РєСЃРїРµСЂРёРјРµРЅС‚С‹ РІС‘СЂСЃС‚РєРё (РїР°Р»РёС‚СЂР° Premium) в”Ђв”Ђ */

/* Р¤РѕРєСѓСЃ вЂ” С†РµРЅР° РІ С†РµРЅС‚СЂРµ, РјРёРЅРёРјСѓРј СЂР°РјРѕРє */
.tc-tcard--focus .tc-tcard__aura {
  opacity: 0.35;
}

.tc-tcard--focus .tc-tcard__ring {
  opacity: 0.35;
  animation-duration: 8s;
}

.tc-tcard--focus .tc-tcard__top {
  flex-direction: column;
  align-items: center;
  text-align: center;
  border-bottom: none;
  margin-bottom: 8px;
  padding-bottom: 0;
}

.tc-tcard--focus .tc-tcard__badges {
  flex-direction: row;
  gap: 8px;
  margin-top: 10px;
}

.tc-tcard--focus .tc-tcard__price-block {
  margin: 12px 0 22px;
}

.tc-tcard--focus .tc-tcard__amount {
  font-size: clamp(3rem, 8vw, 3.75rem);
}

.tc-tcard--focus .tc-tcard__pay-title {
  font-size: 0.62rem;
}

/* РђРєС†РµРЅС‚ вЂ” РІРµСЂС‚РёРєР°Р»СЊРЅР°СЏ РїРѕР»РѕСЃРєР° СЃР»РµРІР° */
.tc-tcard--edge .tc-tcard__ring,
.tc-tcard--edge .tc-tcard__aura {
  display: none;
}

.tc-tcard--edge .tc-tcard__body {
  border-left: 3px solid transparent;
  border-image: linear-gradient(180deg, #6366F1, #8B5CF6, #3B82F6) 1;
  border-radius: 0 20px 20px 0;
  margin-left: 0;
}

.tc-tcard--edge .tc-tcard__shine {
  display: none;
}

.tc-tcard--edge .tc-tcard__top {
  border-bottom-color: rgba(99, 102, 241, 0.2);
}

.tc-tcard--edge .tc-tcard__cta {
  border-radius: 12px;
  letter-spacing: 0.02em;
}

/* РћР±СЉС‘Рј вЂ” РјСЏРіРєР°СЏ РіР»СѓР±РёРЅР°, РєСЂСѓРїРЅРµРµ СЃРєСЂСѓРіР»РµРЅРёСЏ */
.tc-tcard--float {
  border-radius: 26px;
}

.tc-tcard--float .tc-tcard__ring {
  inset: -3px;
  border-radius: 28px;
  opacity: 0.55;
}

.tc-tcard--float .tc-tcard__body {
  border-radius: 24px;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.1),
    0 28px 56px rgba(0, 0, 0, 0.4),
    0 0 60px rgba(99, 102, 241, 0.12);
}

.tc-tcard--float .tc-tcard__aura {
  inset: -28px;
  opacity: 0.75;
}

.tc-tcard--float:hover,
.tc-tcard--float.tc-tcard--premium:hover {
  transform: translateY(-8px);
}

@media (prefers-reduced-motion: reduce) {
  .tc-buy__aura,
  .tc-buy__ring,
  .tc-buy__cta-shimmer,
  .tc-buy__pci-dot { animation: none; }
  .tc-buy__price.is-bump { animation: none; }
  .tc-wstrip__track { animation: none; }
  .tc-tariffs .tc-tcard--premium { animation: none; opacity: 1; transform: none; }
  .tc-tariffs .tc-tcard__ring,
  .tc-tariffs .tc-tcard__aura,
  .tc-tariffs .tc-tcard__amount,
  .tc-tariffs .tc-tcard__cta-shimmer,
  .tc-tariffs .tc-tcard__pci-dot { animation: none; }
}

/* в”Ђв”Ђ About в”Ђв”Ђ */
.tc-about {
  padding: 100px 0;
  background: transparent;
  position: relative;
  overflow: hidden;
}

.tc-about::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 50% at 80% 50%, rgba(99, 102, 241, 0.08), transparent 70%),
    linear-gradient(180deg, rgba(7, 11, 20, 0.55) 0%, transparent 100%);
  pointer-events: none;
}

.tc-about__inner {
  width: min(var(--w), 100% - var(--tc-gutter) * 2);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: 72px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.tc-about__visual {
  position: relative;
  display: flex;
  justify-content: center;
}

.tc-about__frame {
  position: absolute;
  inset: 6% 2% 4% 6%;
  border-radius: 24px;
  background: radial-gradient(ellipse 80% 70% at 50% 40%, rgba(99, 102, 241, 0.2), transparent 70%);
  filter: blur(36px);
  pointer-events: none;
}

.tc-about__photo {
  position: relative;
  z-index: 1;
  margin: 0;
  width: min(100%, 520px);
  border-radius: 24px;
  overflow: hidden;
  box-shadow:
    0 28px 56px rgba(0, 0, 0, 0.42),
    0 0 0 1px rgba(255, 255, 255, 0.06);
}

.tc-about__photo img {
  display: block;
  width: 100%;
  height: auto;
}

.tc-about__tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--mint);
  margin-bottom: 16px;
}

.tc-about__tag::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--mint);
  box-shadow: 0 0 12px rgba(52, 211, 153, 0.55);
}

.tc-about__title {
  font-size: clamp(1.85rem, 3.8vw, 2.5rem);
  font-weight: 800;
  margin-bottom: 22px;
  letter-spacing: -0.03em;
  line-height: 1.15;
}

.tc-about__lead {
  margin: 0 0 18px;
  color: var(--text);
  line-height: 1.75;
  font-size: 1.05rem;
  font-weight: 500;
}

.tc-about__lead strong,
.tc-about__text strong {
  color: #E2E8F0;
  font-weight: 600;
}

.tc-about__text {
  margin: 0 0 16px;
  color: var(--soft);
  line-height: 1.75;
  font-size: 0.98rem;
}

.tc-about__text:last-of-type {
  margin-bottom: 28px;
}

.tc-about__offices {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 24px;
}

.tc-about__office {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 16px 18px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--glass-border);
}

.tc-about__office strong {
  display: block;
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 4px;
}

.tc-about__office-desc {
  display: block;
  font-size: 0.78rem;
  color: var(--mute);
  line-height: 1.45;
}

.tc-about__office-dot {
  flex-shrink: 0;
  width: 10px;
  height: 10px;
  margin-top: 5px;
  border-radius: 50%;
  background: var(--indigo);
  box-shadow: 0 0 14px rgba(99, 102, 241, 0.55);
}

.tc-about__office-dot--mint {
  background: var(--mint);
  box-shadow: 0 0 14px rgba(52, 211, 153, 0.5);
}

.tc-about__text a,
.tc-faq .faq-sidebar-answer-content a {
  color: var(--violet-light);
  text-decoration: none;
  font-weight: 600;
}

.tc-about__text a:hover,
.tc-faq .faq-sidebar-answer-content a:hover {
  text-decoration: underline;
}

.w-checkbox__content a {
  color: var(--violet-light);
  text-decoration: underline;
}

/* в”Ђв”Ђ FAQ в”Ђв”Ђ */
.tc-faq {
  padding: 100px 0;
  background: transparent;
  position: relative;
}

.tc-faq::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(7, 11, 20, 0.7) 0%, transparent 55%);
  pointer-events: none;
}

.tc-faq__inner {
  width: min(var(--w), 100% - var(--tc-gutter) * 2);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 60px;
  align-items: start;
}

.tc-faq__head h2 {
  font-size: clamp(2.5rem, 6vw, 3.5rem);
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.03em;
}

.tc-faq__eyebrow {
  margin: 0 0 12px;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--violet-light);
}

.tc-faq__lead {
  margin: 16px 0 0;
  max-width: 28ch;
  font-size: 0.95rem;
  line-height: 1.65;
  color: var(--soft);
}

.tc-faq__head-line {
  width: 100%;
  height: 4px;
  background: var(--grad);
  border-radius: 2px;
  margin-top: 16px;
}

.tc-faq__list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.tc-faq .faq-sidebar-item {
  background: rgba(15, 20, 35, 0.7);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-card);
  overflow: hidden;
  transition: border-color 0.25s;
}

.tc-faq .faq-sidebar-item.active {
  border-color: rgba(139, 92, 246, 0.35);
}

.tc-faq .faq-sidebar-question {
  padding: 20px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  cursor: pointer;
}

.tc-faq .faq-sidebar-question-text {
  font-size: 1rem;
  font-weight: 600;
  color: var(--text);
  line-height: 1.4;
  flex: 1;
}

.tc-faq .faq-sidebar-toggle {
  color: var(--mute);
  transition: transform 0.3s var(--ease), color 0.2s;
  flex-shrink: 0;
}

.tc-faq .faq-sidebar-item.active .faq-sidebar-toggle {
  transform: rotate(180deg);
  color: var(--violet-light);
}

.tc-faq .faq-sidebar-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s var(--ease);
}

.tc-faq .faq-sidebar-answer-content {
  padding: 0 24px 24px;
  color: var(--soft);
  line-height: 1.65;
  font-size: 0.95rem;
  border-top: 1px solid var(--glass-border);
  padding-top: 20px;
  margin-top: 0;
}

.tc-faq .faq-sidebar-answer-content p {
  margin-bottom: 0.75em;
}

.tc-faq .faq-sidebar-answer-content p:last-child {
  margin-bottom: 0;
}

.tc-faq__note {
  width: min(var(--w), 100% - var(--tc-gutter) * 2);
  margin: 40px auto 0;
  text-align: center;
  font-size: 0.88rem;
  line-height: 1.6;
  color: var(--mute);
}

.tc-faq__note a {
  color: var(--violet-light);
  text-decoration: none;
  font-weight: 600;
}

.tc-faq__note a:hover {
  text-decoration: underline;
}

/* в”Ђв”Ђ Contact form в”Ђв”Ђ */
.tc-form-section {
  padding: 100px 0;
  background: transparent;
  position: relative;
}

.tc-form-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--glass-border), transparent);
}

.tc-form-section__inner {
  width: min(var(--w), 100% - var(--tc-gutter) * 2);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

.tc-form-section__copy h2 {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 800;
  margin-bottom: 16px;
  line-height: 1.15;
}

.tc-form-section__copy h2 .tc-text-grad {
  background: var(--grad-text);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.tc-form-section__copy p {
  color: var(--soft);
  line-height: 1.65;
  font-size: 1rem;
}

.tc-form-section__tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--mint);
  margin-bottom: 16px;
}

.tc-form-section__tag::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--mint);
  box-shadow: 0 0 12px rgba(52, 211, 153, 0.55);
}

.tc-form-section__lead {
  margin: 0;
  color: var(--soft);
  line-height: 1.7;
  font-size: 1.02rem;
}

.tc-cashout-highlights {
  display: grid;
  gap: 12px;
  margin-top: 28px;
}

.tc-cashout-highlight {
  position: relative;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 14px;
  padding: 16px 18px;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.03);
  overflow: hidden;
}

.tc-cashout-highlight::before {
  content: '';
  position: absolute;
  inset: 0;
  opacity: 0.55;
  pointer-events: none;
}

.tc-cashout-highlight:first-child::before {
  background: radial-gradient(ellipse 70% 120% at 0% 50%, rgba(99, 102, 241, 0.14), transparent 70%);
}

.tc-cashout-highlight:last-child::before {
  background: radial-gradient(ellipse 70% 120% at 0% 50%, rgba(52, 211, 153, 0.12), transparent 70%);
}

.tc-cashout-highlight__icon {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 14px;
}

.tc-cashout-highlight__icon--card {
  color: #c7d2fe;
  background: rgba(99, 102, 241, 0.15);
}

.tc-cashout-highlight__icon--crypto {
  color: #6ee7b7;
  background: rgba(52, 211, 153, 0.12);
}

.tc-cashout-highlight h3 {
  position: relative;
  z-index: 1;
  margin: 0 0 4px;
  font-size: 0.95rem;
  font-weight: 700;
  color: #fff;
}

.tc-cashout-highlight p {
  position: relative;
  z-index: 1;
  margin: 0;
  font-size: 0.8rem;
  line-height: 1.45;
  color: var(--mute);
}

.tc-cashout-highlight__brands {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 8px;
}

.tc-cashout-highlight__brands--crypto {
  gap: 6px;
  font-size: 0.68rem;
  font-weight: 600;
  color: var(--mint);
}

.tc-form-section__steps {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
}

.tc-form-section__steps li {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  border-radius: var(--radius-pill);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.06);
  font-size: 0.74rem;
  font-weight: 600;
  color: var(--soft);
}

.tc-form-section__steps li span {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--violet);
}

.tc-form-section__badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.tc-form-section__badge {
  padding: 8px 14px;
  font-size: 0.75rem;
  font-weight: 600;
  background: var(--glass);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-pill);
  color: var(--soft);
}

.tc-form-section #payment-form,
.tc-form-section .tc-cashout-form {
  width: 100%;
}

.tc-cashout-form__panel {
  position: relative;
  background:
    linear-gradient(160deg, rgba(99, 102, 241, 0.08) 0%, rgba(15, 20, 35, 0.92) 38%),
    rgba(15, 20, 35, 0.88);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 24px;
  padding: 28px;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.05),
    0 24px 48px rgba(0, 0, 0, 0.28);
}

.tc-cashout-form__panel::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: radial-gradient(ellipse 80% 50% at 50% 0%, rgba(99, 102, 241, 0.12), transparent 65%);
  pointer-events: none;
}

.tc-cashout-form__panel > * {
  position: relative;
  z-index: 1;
}

.tc-cashout-form__step {
  margin-bottom: 20px;
}

.tc-cashout-form__step-label {
  margin: 0 0 12px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--mute);
}

.tc-cashout-form__details {
  display: none;
  margin-bottom: 20px;
  padding: 18px;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  background: rgba(0, 0, 0, 0.22);
}

.tc-cashout-form__details.is-visible {
  display: block;
}

.tc-cashout-networks {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 16px;
}

.tc-cashout-network {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  border-radius: var(--radius-pill);
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.03);
  color: var(--soft);
  font-size: 0.78rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.25s var(--ease);
}

.tc-cashout-network:hover {
  border-color: rgba(99, 102, 241, 0.28);
  color: #fff;
}

.tc-cashout-network.is-active {
  background: rgba(99, 102, 241, 0.18);
  border-color: rgba(139, 92, 246, 0.45);
  color: #fff;
  box-shadow: 0 4px 16px rgba(99, 102, 241, 0.18);
}

.tc-cashout-crypto-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
  padding: 8px 12px;
  border-radius: var(--radius-pill);
  background: rgba(52, 211, 153, 0.1);
  border: 1px solid rgba(52, 211, 153, 0.22);
  color: var(--mint);
  font-size: 0.78rem;
  font-weight: 700;
}

.tc-cashout-form__hint {
  margin: 8px 0 0;
  font-size: 0.76rem;
  line-height: 1.45;
  color: var(--mute);
}

.tc-cashout-amount {
  position: relative;
}

.tc-cashout-amount__prefix,
.tc-cashout-amount__suffix {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--mute);
  pointer-events: none;
}

.tc-cashout-amount__prefix {
  left: 16px;
}

.tc-cashout-amount__suffix {
  right: 16px;
}

.tc-cashout-amount__input {
  padding-left: 34px !important;
  padding-right: 52px !important;
  font-size: 1.1rem !important;
  font-weight: 700 !important;
}

.tc-cashout-form__submit {
  width: 100%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 28px;
  margin-top: 8px;
  font-weight: 700;
  font-size: 0.92rem;
  letter-spacing: 0.02em;
  color: #fff;
  background: var(--grad);
  border: none;
  border-radius: var(--radius-btn);
  cursor: pointer;
  font-family: var(--font);
  transition: transform 0.2s, box-shadow 0.2s;
}

.tc-cashout-form__submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(99, 102, 241, 0.4);
}

.tc-cashout-form__submit-arrow {
  transition: transform 0.2s var(--ease);
}

.tc-cashout-form__submit:hover .tc-cashout-form__submit-arrow {
  transform: translateX(3px);
}

.tc-form-section #payment-form {
  background: transparent;
  border: none;
  border-radius: 0;
  padding: 0;
}

.tc-form-section .w-form__label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--soft);
  margin-bottom: 8px;
}

.tc-form-section .required-mark {
  color: #f87171;
}

.tc-form-section .w-form__field {
  margin-bottom: 20px;
}

.tc-form-section .w-form__input,
.tc-form-section select.w-form__input {
  width: 100%;
  padding: 14px 18px;
  background: rgba(0, 0, 0, 0.35) !important;
  border: 1px solid var(--glass-border) !important;
  border-radius: 10px;
  color: var(--text) !important;
  font-size: 1rem;
  font-family: var(--font);
  transition: border-color 0.2s;
  box-sizing: border-box;
}

.tc-form-section .w-form__input:focus,
.tc-form-section select.w-form__input:focus {
  outline: none;
  border-color: var(--violet) !important;
}

.tc-form-section .w-form__input.is-error,
.tc-form-section select.w-form__input.is-error {
  border-color: #f87171 !important;
}

.tc-form-section .tc-field-error {
  margin: 6px 0 0;
  min-height: 1.1em;
  font-size: 0.76rem;
  line-height: 1.4;
  color: #f87171;
}

.tc-form-section .w-form__field-row {
  display: flex;
  gap: 16px;
}

.tc-form-section .w-checkbox {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  cursor: pointer;
  font-size: 0.9rem;
  color: var(--soft);
}

.tc-form-section .w-checkbox__input {
  position: absolute;
  opacity: 0;
}

.tc-form-section .w-checkbox__mask {
  width: 20px;
  height: 20px;
  border: 2px solid var(--glass-border);
  border-radius: 6px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s, border-color 0.2s;
}

.tc-form-section .w-checkbox__input:checked + .w-checkbox__mask {
  background: var(--grad);
  border-color: transparent;
}

.tc-form-section .w-checkbox__mask svg {
  width: 12px;
  height: 10px;
  stroke: #fff;
  stroke-width: 2;
  opacity: 0;
}

.tc-form-section .w-checkbox__input:checked + .w-checkbox__mask svg {
  opacity: 1;
}

.tc-form-section button[type="submit"] {
  width: 100%;
  padding: 16px 28px;
  margin-top: 8px;
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 0.05em;
  color: #fff;
  background: var(--grad);
  border: none;
  border-radius: var(--radius-btn);
  cursor: pointer;
  font-family: var(--font);
  transition: transform 0.2s, box-shadow 0.2s;
}

.tc-form-section button[type="submit"]:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(99, 102, 241, 0.4);
}

.tc-form-section .honey-field {
  position: absolute;
  left: -9999px;
}

/* ── Performance: defer off-screen paint ── */
.tc-about,
.tc-faq,
.tc-form-section,
.tc-footer {
  content-visibility: auto;
  contain-intrinsic-size: auto 500px;
}
.tc-footer {
  position: relative;
  margin-top: 32px;
  padding: 0;
  overflow: hidden;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.tc-footer__glow {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  filter: blur(80px);
}

.tc-footer__glow--1 {
  top: -120px;
  left: 10%;
  width: 420px;
  height: 280px;
  background: rgba(99, 102, 241, 0.18);
}

.tc-footer__glow--2 {
  top: -60px;
  right: 5%;
  width: 360px;
  height: 240px;
  background: rgba(52, 211, 153, 0.1);
}

.tc-footer__grid-lines {
  position: absolute;
  inset: 0;
  opacity: 0.35;
  background-image: var(--tc-grid-lines);
  background-size: var(--tc-grid-size);
  mask-image: linear-gradient(180deg, transparent, #000 30%, #000 80%, transparent);
  pointer-events: none;
}

.tc-footer__inner {
  position: relative;
  z-index: 1;
  width: min(var(--w), 100% - var(--tc-gutter) * 2);
  margin: 0 auto;
  padding: 72px 0 32px;
}

.tc-footer__main {
  display: grid;
  grid-template-columns: 1.35fr 0.85fr 0.95fr 1.05fr;
  gap: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.tc-footer__logo {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 18px;
  text-decoration: none;
  color: inherit;
}

.tc-footer__logo-mark {
  display: flex;
  width: 44px;
  height: 44px;
}

.tc-footer__logo-mark svg {
  width: 100%;
  height: 100%;
}

.tc-footer__logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.tc-footer__logo-primary {
  font-size: 1rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--text);
}

.tc-footer__logo-secondary {
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--mute);
}

.tc-footer__tagline {
  margin: 0 0 22px;
  max-width: 34ch;
  font-size: 0.88rem;
  line-height: 1.7;
  color: var(--soft);
}

.tc-footer__trust {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.tc-footer__trust-item {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 7px 12px;
  border-radius: var(--radius-pill);
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.03);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--soft);
}

.tc-footer__trust-item img {
  display: block;
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
  object-fit: contain;
  opacity: 0.85;
}

.tc-footer__col-title {
  margin: 0 0 16px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--mute);
}

.tc-footer__links {
  margin: 0;
  padding: 0;
  list-style: none;
}

.tc-footer__links li + li {
  margin-top: 10px;
}

.tc-footer__links a {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--soft);
  text-decoration: none;
  transition: color 0.2s ease;
}

.tc-footer__links a:hover {
  color: var(--violet-light);
}

.tc-footer__disclaimer {
  margin: 18px 0 0;
  font-size: 0.76rem;
  line-height: 1.55;
  color: var(--mute);
}

.tc-footer__contact-card + .tc-footer__contact-card {
  margin-top: 18px;
}

.tc-footer__contact-label {
  display: block;
  margin-bottom: 6px;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--mute);
}

.tc-footer__contact-email {
  display: inline-block;
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text);
  text-decoration: none;
  transition: color 0.2s ease;
}

.tc-footer__contact-email:hover {
  color: var(--violet-light);
}

.tc-footer__contact-hours,
.tc-footer__contact-address {
  display: block;
  margin-top: 6px;
  font-size: 0.82rem;
  line-height: 1.55;
  color: var(--soft);
}

.tc-footer__payments {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding-top: 28px;
}

.tc-footer__stores {
  flex: 0 0 auto;
}

.tc-footer__store-frame {
  display: inline-block;
  overflow: hidden;
  border-radius: 9px;
  line-height: 0;
}

.tc-footer__store-badge {
  display: block;
  height: 54px;
  width: auto;
  max-width: none;
  flex: 0 0 auto;
  object-fit: contain;
  transform: scale(1.035);
  transform-origin: center center;
}

.tc-footer__pay {
  display: inline-flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-start;
  gap: 14px 18px;
  margin-right: auto;
  padding: 12px 18px;
  border-radius: var(--radius-pill);
  border: 1px solid rgba(255, 255, 255, 0.06);
  background: rgba(255, 255, 255, 0.02);
  max-width: 100%;
}

.tc-footer__pay img {
  display: block;
  width: auto;
  height: 18px;
  max-height: 22px;
  max-width: 80px;
  flex: 0 0 auto;
  object-fit: contain;
  opacity: 0.82;
  transition: opacity 0.2s ease;
}

.tc-footer__pay img[alt="Mastercard"] {
  height: 22px;
}

.tc-footer__pay img[alt="USDT TRC-20"] {
  height: 20px;
}

.tc-footer__pay img:hover {
  opacity: 1;
}

.tc-footer__pay-divider {
  width: 1px;
  height: 20px;
  background: rgba(255, 255, 255, 0.1);
}

.tc-footer__pay-crypto {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: var(--mint);
}

.tc-footer__bar {
  position: relative;
  z-index: 1;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  background: rgba(3, 5, 8, 0.55);
}

.tc-footer__bar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 8px 20px;
  width: min(var(--w), 100% - var(--tc-gutter) * 2);
  margin: 0 auto;
  padding: 18px 0 22px;
}

.tc-footer__bar p {
  margin: 0;
  font-size: 0.8rem;
  color: var(--mute);
}

.tc-footer__bar-note {
  font-size: 0.76rem !important;
  color: rgba(100, 116, 139, 0.75) !important;
}

/* в”Ђв”Ђ Responsive в”Ђв”Ђ */
@media (max-width: 1024px) {
  .tc-tariffs .tariff-cards-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .tc-about__inner,
  .tc-faq__inner,
  .tc-form-section__inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .tc-footer__main {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }
  .tc-footer__brand-block {
    grid-column: 1 / -1;
  }
  .tc-faq__head {
    text-align: center;
  }
  .tc-faq__lead {
    max-width: none;
    margin-left: auto;
    margin-right: auto;
  }
}

@media (max-width: 768px) {
  .tc-tariffs,
  .tc-about,
  .tc-faq,
  .tc-form-section {
    padding: 64px 0;
  }
  .tc-cashout-highlight {
    grid-template-columns: auto 1fr;
  }
  .tc-cashout-highlight__brands {
    grid-column: 1 / -1;
    padding-left: 58px;
  }
  .tc-cashout-form__panel {
    padding: 22px 18px;
  }
  .tc-about__offices {
    grid-template-columns: 1fr;
  }
  .tc-tariffs__flow {
    flex-direction: column;
    gap: 6px;
    padding: 12px 16px;
  }
  .tc-tariffs__flow-arrow {
    transform: rotate(90deg);
  }
  .tc-tariffs .tariff-nav-item {
    min-width: 0;
    flex: 1;
    padding: 10px 12px;
  }
  .tc-tariffs .tariff-cards-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  /* Buy widget вЂ” mobile */
  .tc-buy__panel {
    padding: 22px 18px 20px;
  }

  .tc-buy__head {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }

  .tc-buy__amount-display {
    gap: 12px;
  }

  .tc-buy__price-field {
    min-width: 0;
    flex: 1;
  }

  .tc-buy__price {
    width: 100%;
    padding: 8px 10px;
  }

  .tc-buy__edit-badge {
    opacity: 1;
    transform: none;
  }

  .tc-buy__amount-hint {
    font-size: 0.7rem;
    padding: 0 4px;
  }

  .tc-buy__step-btn {
    width: 48px;
    height: 48px;
  }

  .tc-fintech-pay__grid {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .tc-fintech-pay__tile {
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
    min-height: 72px;
    padding: 16px 18px;
    gap: 14px;
  }

  .tc-fintech-pay__icon {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
  }

  .tc-fintech-pay__copy {
    flex: 1;
    min-width: 0;
  }

  .tc-fintech-pay__title {
    font-size: 1rem;
  }

  .tc-fintech-pay__desc {
    font-size: 0.78rem;
  }

  .tc-fintech-pay__brands {
    width: 100%;
    padding-top: 0;
    padding-left: 62px;
  }

  .tc-fintech-pay__check {
    top: 50%;
    right: 16px;
    transform: translateY(-50%) scale(0.6);
  }

  .tc-fintech-pay__tile.is-selected .tc-fintech-pay__check {
    transform: translateY(-50%) scale(1);
  }

  .tc-buy__cta {
    min-height: 56px;
    font-size: 1.05rem;
    padding: 18px 24px;
  }

  /* в”Ђв”Ђ Р’Р°СЂРёР°РЅС‚: РљСЂСѓРїРЅС‹Рµ (touch) в”Ђв”Ђ */
  .tc-buy--touch .tc-buy__slider-wrap,
  .tc-buy--touch .tc-buy__slider-labels {
    display: none;
  }

  .tc-buy--touch .tc-buy__step-btn {
    width: 56px;
    height: 56px;
    font-size: 1.5rem;
    border-radius: 16px;
  }

  .tc-buy--touch .tc-buy__presets {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    width: 100%;
  }

  .tc-buy--touch .tc-buy__preset {
    min-height: 52px;
    font-size: 0.95rem;
  }

  .tc-buy--touch .tc-fintech-pay__tile {
    min-height: 80px;
    padding: 18px 20px;
  }

  .tc-buy--touch .tc-fintech-pay__icon {
    width: 52px;
    height: 52px;
  }

  /* в”Ђв”Ђ Р’Р°СЂРёР°РЅС‚: РџСЂРѕСЃС‚РѕР№ в”Ђв”Ђ */
  .tc-buy--simple .tc-buy__slider-wrap,
  .tc-buy--simple .tc-buy__slider-labels,
  .tc-buy--simple .tc-buy__step-btn {
    display: none;
  }

  .tc-buy--simple .tc-buy__amount-display {
    justify-content: center;
  }

  .tc-buy--simple .tc-buy__price {
    width: 100%;
    min-height: 76px;
    align-items: center;
    justify-content: center;
    padding: 14px 16px;
  }

  .tc-buy--simple .tc-buy__input {
    font-size: clamp(3rem, 12vw, 3.75rem);
  }

  .tc-buy--simple .tc-buy__presets {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    width: 100%;
  }

  .tc-buy--simple .tc-buy__preset {
    min-height: 56px;
    font-size: 1rem;
  }

  .tc-buy--simple .tc-buy__amount-hint {
    font-size: 0.78rem;
    padding: 8px 12px;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.04);
  }

  .tc-buy--simple .tc-fintech-pay__tile {
    min-height: 84px;
  }

  /* в”Ђв”Ђ Р’Р°СЂРёР°РЅС‚: Р›РёРїРєРёР№ CTA в”Ђв”Ђ */
  .tc-buy--sticky {
    padding-bottom: 100px;
  }

  .tc-buy--sticky .tc-buy__footer {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 90;
    padding: 12px 16px calc(12px + env(safe-area-inset-bottom, 0px));
    background: linear-gradient(180deg, transparent 0%, rgba(5, 8, 16, 0.92) 28%, #050810 100%);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-top: 1px solid rgba(255, 255, 255, 0.06);
  }

  .tc-buy--sticky .tc-buy__meta {
    display: none;
  }

  .tc-buy--sticky .tc-buy__cta {
    max-width: 560px;
    margin: 0 auto;
    min-height: 58px;
    font-size: 1.08rem;
  }

  /* Sticky + touch combo improvements when both classes... user picks one at a time */

  .tc-footer__main {
    grid-template-columns: 1fr;
  }

  .tc-footer__inner {
    padding-top: 56px;
  }

  .tc-footer__payments {
    flex-direction: column;
    align-items: stretch;
    gap: 20px;
  }

  .tc-footer__stores {
    display: flex;
    justify-content: flex-end;
  }

  .tc-footer__store-badge {
    height: 48px;
  }

  .tc-footer__pay {
    margin-right: 0;
    justify-content: center;
  }

  .tc-footer__bar-inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .tc-form-section .w-form__field-row {
    flex-direction: column;
    gap: 0;
  }
}
