/* LegalCrypto v3 — живой hero, два пути, без пустых колонок */

:root {
  --bg: #f0f2f8;
  --surface: #ffffff;
  --ink: #0a0e17;
  --muted: #5c6578;
  --line: #e2e6ef;
  --green: #00b37a;
  --green-d: #009266;
  --green-glow: rgba(0, 179, 122, 0.45);
  --blue: #2563eb;
  --blue-d: #1d4ed8;
  --blue-glow: rgba(37, 99, 235, 0.4);
  --orange: #f97316;
  --orange-glow: rgba(249, 115, 22, 0.55);
  --hero-bg: #06080f;
  --font: "Manrope", system-ui, sans-serif;
  --r: 16px;
  --r-lg: 24px;
  --container: min(1180px, calc(100% - 32px));
}

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

html { scroll-behavior: smooth; }

html,
body {
  overflow-x: hidden;
}

body {
  margin: 0;
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.55;
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
}

a { color: var(--green-d); text-decoration: none; }
a:hover { text-decoration: underline; }

.container { width: var(--container); margin-inline: auto; }
.container--faq { max-width: 720px; }

.skip-link {
  position: absolute; left: -9999px; z-index: 9999;
  padding: 8px 16px; background: var(--green); color: #fff;
}
.skip-link:focus { left: 16px; top: 16px; }

/* Header */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(6, 8, 15, 0.85);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.header-inner {
  display: flex; align-items: center; justify-content: space-between;
  width: var(--container); height: 68px; margin-inline: auto;
}

.logo {
  display: inline-flex; align-items: baseline; gap: 2px;
  font-size: 1.2rem; font-weight: 800; letter-spacing: -0.025em;
  text-decoration: none; color: #fff;
}
.logo:hover { text-decoration: none; }
.logo-legal { color: #fff; }
.logo-crypto { color: var(--green); }

.nav-desktop {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 4px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.025);
}

.nav-desktop a {
  position: relative;
  isolation: isolate;
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: 0 14px;
  overflow: hidden;
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.875rem;
  font-weight: 700;
  text-decoration: none;
  border-radius: 999px;
  transition: color 0.22s ease, transform 0.22s ease;
}

.nav-desktop a::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    radial-gradient(circle at 30% 0%, rgba(0, 179, 122, 0.28), transparent 58%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.04));
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: inherit;
  opacity: 0;
  transform: scale(0.86);
  transition: opacity 0.22s ease, transform 0.22s ease;
}

.nav-desktop a::after {
  content: "";
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: 6px;
  height: 2px;
  z-index: -1;
  background: linear-gradient(90deg, transparent, var(--green), transparent);
  border-radius: 999px;
  opacity: 0;
  transform: translateX(-40%) scaleX(0.2);
  transform-origin: left center;
  transition: opacity 0.24s ease, transform 0.24s ease;
}

.nav-desktop a:hover,
.nav-desktop a:focus-visible {
  color: #fff;
  text-decoration: none;
  transform: translateY(-1px);
}

.nav-desktop a:hover::before,
.nav-desktop a:focus-visible::before {
  opacity: 1;
  transform: scale(1);
}

.nav-desktop a:hover::after,
.nav-desktop a:focus-visible::after {
  opacity: 1;
  transform: translateX(0) scaleX(1);
}

.nav-desktop a:focus-visible {
  outline: 2px solid rgba(0, 179, 122, 0.45);
  outline-offset: 3px;
}

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

.motion-login {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 126px;
  height: 44px;
  padding: 4px;
  overflow: hidden;
  color: #fff;
  text-decoration: none;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 999px;
  outline: none;
  transition: border-color 0.25s ease, background 0.25s ease, transform 0.25s ease;
}

.motion-login:hover,
.motion-login:focus-visible {
  color: #06110e;
  text-decoration: none;
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(0, 179, 122, 0.45);
  transform: translateY(-1px);
}

.motion-login__circle {
  position: absolute;
  left: 4px;
  top: 4px;
  width: 36px;
  height: 36px;
  background: var(--green);
  border-radius: 999px;
  box-shadow: 0 12px 28px rgba(0, 179, 122, 0.32);
  transition: width 0.48s cubic-bezier(0.22, 1, 0.36, 1);
}

.motion-login:hover .motion-login__circle,
.motion-login:focus-visible .motion-login__circle {
  width: calc(100% - 8px);
}

.motion-login__icon {
  position: absolute;
  left: 15px;
  top: 50%;
  z-index: 1;
  width: 14px;
  height: 14px;
  transform: translateY(-50%);
  transition: transform 0.48s cubic-bezier(0.22, 1, 0.36, 1);
}

.motion-login__icon::before,
.motion-login__icon::after {
  content: "";
  position: absolute;
  display: block;
}

.motion-login__icon::before {
  left: 0;
  top: 6px;
  width: 13px;
  height: 2px;
  background: #06110e;
  border-radius: 999px;
}

.motion-login__icon::after {
  right: 0;
  top: 3px;
  width: 7px;
  height: 7px;
  border-top: 2px solid #06110e;
  border-right: 2px solid #06110e;
  transform: rotate(45deg);
}

.motion-login:hover .motion-login__icon,
.motion-login:focus-visible .motion-login__icon {
  transform: translate(6px, -50%);
}

.motion-login__text {
  position: relative;
  z-index: 1;
  margin-left: 20px;
  color: #fff;
  font-size: 0.92rem;
  font-weight: 750;
  line-height: 1;
  white-space: nowrap;
  transition: color 0.42s ease;
}

.motion-login:hover .motion-login__text,
.motion-login:focus-visible .motion-login__text {
  color: #06110e;
}

.motion-login:focus-visible {
  outline: 2px solid rgba(0, 179, 122, 0.5);
  outline-offset: 3px;
}

button.motion-login--chat {
  cursor: pointer;
  border: none;
  font-family: inherit;
}

.motion-login__icon--chat::before,
.motion-login__icon--chat::after {
  display: none;
}

.motion-login__icon--chat {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #06110e;
}

.motion-login--chat:hover .motion-login__icon--chat,
.motion-login--chat:focus-visible .motion-login__icon--chat {
  transform: translateY(-50%);
}

.header-actions .motion-login--chat-nav {
  flex-shrink: 0;
  align-items: center;
  justify-content: flex-start;
  width: auto;
  min-width: 176px;
  max-width: 220px;
  height: auto;
  min-height: 44px;
  padding: 6px 14px 6px 6px;
  overflow: visible;
}

.header-actions .motion-login--chat-nav:hover,
.header-actions .motion-login--chat-nav:focus-visible {
  color: #fff;
}

.header-actions .motion-login--chat-nav:hover .motion-login__text,
.header-actions .motion-login--chat-nav:focus-visible .motion-login__text {
  color: #fff;
}

.header-actions .motion-login--chat-nav:hover .motion-login__circle,
.header-actions .motion-login--chat-nav:focus-visible .motion-login__circle {
  width: 36px;
}

.motion-login--chat .motion-login__icon {
  left: 14px;
}

.motion-login--chat .motion-login__text {
  margin-left: 44px;
  white-space: normal;
}

.motion-login__text--chat {
  display: grid;
  gap: 3px;
  align-items: flex-start;
  text-align: left;
  line-height: 1.15;
  padding-right: 2px;
}

.lc-chat-btn__label {
  font-size: 0.78rem;
  font-weight: 800;
  line-height: 1.2;
}

.lc-chat-btn__status,
.footer-consultant-btn__status {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: #5ff0bd;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.02em;
}

.lc-chat-btn__status i,
.footer-consultant-btn__status i,
.lc-chat__online-dot {
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: #3dffa8;
  box-shadow: 0 0 10px rgba(61, 255, 168, 0.75);
}

.footer-consultant-item {
  margin-top: 4px;
  padding-top: 4px;
}

.footer-consultant-btn {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 4px;
  width: 100%;
  padding: 10px 0 10px 18px;
  border: 0;
  border-bottom: none;
  background: transparent;
  color: rgba(255, 255, 255, 0.9);
  font: inherit;
  font-size: 0.925rem;
  font-weight: 750;
  line-height: 1.25;
  text-align: left;
  cursor: pointer;
  transition: color 0.18s ease, transform 0.18s ease;
}

.footer-consultant-btn::before {
  content: "";
  position: absolute;
  left: 0;
  top: 18px;
  width: 6px;
  height: 6px;
  background: var(--green);
  box-shadow: 0 0 16px rgba(0, 179, 122, 0.5);
  border-radius: 999px;
  opacity: 0;
  transform: scale(0.4);
  transition: opacity 0.25s ease, transform 0.25s ease;
}

.footer-consultant-btn:hover,
.footer-consultant-btn:focus-visible {
  color: #fff;
  transform: translateX(2px);
}

.footer-consultant-btn:hover::before,
.footer-consultant-btn:focus-visible::before {
  opacity: 1;
  transform: scale(1);
}

.footer-column--world .footer-consultant-item {
  margin-bottom: 0;
}

#mobile-nav .motion-login--chat-mobile {
  width: 100%;
  margin: 0 0 12px;
  justify-content: center;
}

.lc-chat-fab {
  display: none !important;
}

@media (max-width: 900px) {
  .header-actions .motion-login--chat-nav {
    display: inline-flex;
    min-width: 0;
    max-width: min(168px, 42vw);
    padding: 5px 10px 5px 5px;
  }

  .header-actions .motion-login--chat-nav .lc-chat-btn__label {
    font-size: 0.72rem;
    line-height: 1.15;
  }

  .header-actions .motion-login--chat-nav .lc-chat-btn__status {
    font-size: 0.62rem;
  }
}

.nav-toggle {
  display: none; width: 44px; height: 44px; padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.15); border-radius: 10px;
  background: transparent; cursor: pointer;
}
.nav-toggle span {
  display: block; width: 18px; height: 2px; margin: 0 auto 6px;
  background: #fff; border-radius: 1px;
}
.nav-toggle span:last-child { margin-bottom: 0; }

.mobile-nav {
  position: fixed; inset: 68px 0 0; z-index: 99;
  padding: 20px; background: var(--hero-bg); overflow-y: auto;
}
.mobile-nav nav { display: flex; flex-direction: column; gap: 4px; }
.mobile-nav a {
  padding: 14px; font-weight: 600; color: #fff;
  text-decoration: none; border-radius: var(--r);
}
.mobile-nav a:hover { background: rgba(255, 255, 255, 0.06); }

.btn {
  display: inline-flex; align-items: center; justify-content: center;
  padding: 10px 20px; font-family: inherit; font-size: 0.875rem;
  font-weight: 700; border-radius: 10px; border: none; cursor: pointer;
  text-decoration: none; transition: transform 0.15s, opacity 0.15s;
}
.btn:hover { text-decoration: none; transform: translateY(-1px); }
.btn-ghost {
  color: rgba(255, 255, 255, 0.8);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
}
.btn-ghost:hover { color: #fff; background: rgba(255, 255, 255, 0.12); }
.btn-primary { background: var(--green); color: #fff; }
.btn-sm { padding: 8px 14px; font-size: 0.8125rem; }

/* ═══ HERO ═══ */
.hero {
  position: relative;
  padding: 48px 0 40px;
  background: var(--hero-bg);
  overflow: hidden;
}

.hero-aurora {
  position: absolute; inset: 0; pointer-events: none;
  background:
    radial-gradient(ellipse 70% 50% at 20% 0%, rgba(0, 179, 122, 0.22), transparent 55%),
    radial-gradient(ellipse 60% 45% at 85% 10%, rgba(37, 99, 235, 0.2), transparent 50%),
    radial-gradient(ellipse 50% 40% at 50% 100%, rgba(249, 115, 22, 0.08), transparent 45%);
  animation: aurora 12s ease-in-out infinite alternate;
}

@keyframes aurora {
  0% { opacity: 0.85; transform: scale(1); }
  100% { opacity: 1; transform: scale(1.05) translateY(-2%); }
}

.hero-noise {
  position: absolute; inset: 0; opacity: 0.04; pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

.hero-shell { position: relative; z-index: 1; }

.hero-head {
  display: flex; flex-wrap: wrap; align-items: flex-end;
  justify-content: space-between; gap: 24px;
  margin-bottom: 36px;
}

.kicker {
  display: inline-flex; align-items: center; gap: 8px;
  margin: 0 0 16px; font-size: 0.75rem; font-weight: 700;
  letter-spacing: 0.08em; text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
}

.kicker-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 12px var(--green);
  animation: pulse-dot 2s ease-in-out infinite;
}

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

.hero-head h1 {
  margin: 0 0 12px; max-width: 18ch;
  font-size: clamp(2rem, 4.5vw, 3.25rem);
  font-weight: 800; line-height: 1.05; letter-spacing: -0.04em;
  color: #fff;
}

.hero-head h1 em {
  font-style: normal;
  background: linear-gradient(90deg, #34d399, #60a5fa);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}

.hero-sub {
  margin: 0; max-width: 42ch;
  font-size: 1.0625rem; color: rgba(255, 255, 255, 0.62);
}

.crypto-ticker {
  display: flex; flex-wrap: wrap; gap: 8px;
}

.coin {
  padding: 10px 16px; font-size: 0.8125rem; font-weight: 800;
  letter-spacing: 0.04em; color: #fff;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 100px;
}

.coin--muted { color: rgba(255, 255, 255, 0.4); font-weight: 600; }

/* Path cards — главный контент hero */
.path-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 28px;
}

.path-card {
  position: relative;
  display: flex; flex-direction: column;
  padding: 28px 28px 24px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--r-lg);
  overflow: hidden;
  transition: transform 0.25s cubic-bezier(0.22, 1, 0.36, 1), border-color 0.25s, box-shadow 0.25s;
}

.path-card:hover {
  transform: translateY(-6px);
  border-color: rgba(255, 255, 255, 0.2);
}

.path-card--fiz:hover {
  box-shadow: 0 24px 60px var(--green-glow), 0 0 0 1px rgba(0, 179, 122, 0.3);
}

.path-card--yur:hover {
  box-shadow: 0 24px 60px var(--blue-glow), 0 0 0 1px rgba(37, 99, 235, 0.35);
}

.path-card__glow {
  position: absolute; top: -40%; right: -20%;
  width: 70%; height: 80%;
  background: radial-gradient(circle, var(--green-glow), transparent 65%);
  pointer-events: none; opacity: 0.6;
}

.path-card__glow--blue {
  background: radial-gradient(circle, var(--blue-glow), transparent 65%);
}

.path-card__badges {
  display: flex; flex-wrap: wrap; gap: 8px;
  margin-bottom: 20px; position: relative; z-index: 2;
}

.flare {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 6px 12px; font-size: 0.6875rem; font-weight: 800;
  letter-spacing: 0.04em; text-transform: uppercase;
  border-radius: 8px;
  line-height: 1.2;
}

.flare--popular {
  color: #052e1f; background: linear-gradient(135deg, #6ee7b7, #34d399);
  box-shadow: 0 4px 16px rgba(52, 211, 153, 0.4);
}

.flare--speed {
  color: #fff; background: rgba(0, 179, 122, 0.35);
  border: 1px solid rgba(110, 231, 183, 0.5);
  animation: pulse-badge 2.5s ease-in-out infinite;
}

.flare--docs {
  color: #dbeafe; background: rgba(37, 99, 235, 0.35);
  border: 1px solid rgba(147, 197, 253, 0.4);
}

@keyframes pulse-badge {
  0%, 100% { box-shadow: 0 0 0 0 rgba(0, 179, 122, 0.4); }
  50% { box-shadow: 0 0 0 6px rgba(0, 179, 122, 0); }
}

/* НОВИНКА — яркий акцент */
.novelty-burst {
  position: absolute; top: -8px; right: -8px; z-index: 10;
  width: 100px; height: 100px;
  display: flex; align-items: center; justify-content: center;
  background: linear-gradient(145deg, #fb923c, #ea580c);
  border-radius: 50%;
  box-shadow: 0 8px 32px var(--orange-glow), 0 0 0 4px rgba(249, 115, 22, 0.25);
  animation: burst-pulse 2s ease-in-out infinite;
}

.novelty-burst span {
  font-size: 0.625rem; font-weight: 800; line-height: 1.2;
  text-align: center; text-transform: uppercase; letter-spacing: 0.02em;
  color: #fff; text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

@keyframes burst-pulse {
  0%, 100% { transform: scale(1) rotate(0deg); }
  50% { transform: scale(1.06) rotate(3deg); }
}

.path-card__icon {
  width: 52px; height: 52px; margin-bottom: 16px;
  padding: 12px; color: var(--green);
  background: rgba(0, 179, 122, 0.15);
  border-radius: 14px; position: relative; z-index: 2;
}
.path-card__icon svg { width: 100%; height: 100%; }
.path-card__icon--yur { color: #93c5fd; background: rgba(37, 99, 235, 0.2); }

.path-card__title {
  margin: 0 0 8px; position: relative; z-index: 2;
  font-size: 1.375rem; font-weight: 800; letter-spacing: -0.03em;
  color: #fff; line-height: 1.2;
}

.path-card__speed {
  margin: 0 0 16px; font-size: 0.9375rem; font-weight: 600;
  color: rgba(255, 255, 255, 0.55); position: relative; z-index: 2;
}

.path-card__perks {
  margin: 0 0 24px; padding: 0; list-style: none; flex: 1;
  position: relative; z-index: 2;
}

.path-card__perks li {
  padding: 10px 0; font-size: 0.875rem; color: rgba(255, 255, 255, 0.72);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}
.path-card__perks li:last-child { border-bottom: none; }
.path-card__perks strong { color: #fff; font-weight: 700; }

.path-card__foot {
  display: flex; flex-wrap: wrap; align-items: flex-end;
  justify-content: space-between; gap: 16px;
  position: relative; z-index: 2;
}

.path-card__price {
  font-size: 0.875rem; color: rgba(255, 255, 255, 0.5);
}
.path-card__price b {
  font-size: 1.5rem; font-weight: 800; color: #fff;
  letter-spacing: -0.02em;
}

.path-card__btn {
  display: flex; flex-direction: column; align-items: flex-start;
  gap: 2px; padding: 14px 20px; min-width: min(100%, 260px);
  border-radius: 12px; text-decoration: none;
  transition: transform 0.15s, box-shadow 0.15s;
}
.path-card__btn:hover {
  text-decoration: none; transform: scale(1.02);
}

.path-card__btn-title {
  font-size: 0.9375rem; font-weight: 800; color: #fff;
}

.path-card__btn-hint {
  font-size: 0.75rem; font-weight: 500; opacity: 0.85;
}

.path-card__btn--fiz {
  background: linear-gradient(135deg, var(--green), var(--green-d));
  box-shadow: 0 8px 28px var(--green-glow);
}
.path-card__btn--fiz .path-card__btn-hint { color: rgba(255, 255, 255, 0.8); }

.path-card__btn--yur {
  background: linear-gradient(135deg, var(--blue), var(--blue-d));
  box-shadow: 0 8px 28px var(--blue-glow);
}
.path-card__btn--yur .path-card__btn-hint { color: rgba(255, 255, 255, 0.8); }

.hero-chips {
  display: flex; flex-wrap: wrap; gap: 8px;
}

.chip {
  padding: 8px 14px; font-size: 0.75rem; font-weight: 600;
  color: rgba(255, 255, 255, 0.7);
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 100px;
}

.chip--dim {
  color: rgba(255, 255, 255, 0.28);
  border-color: transparent;
  background: transparent;
  font-size: 0.6875rem;
}

/* ═══ Секции ниже hero ═══ */
.section { padding: 64px 0; }

.anon-banner {
  position: relative;
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: flex-start;
  gap: 20px 22px;
  margin-bottom: 48px;
  padding: 28px;
  background:
    radial-gradient(circle at 92% 10%, rgba(0, 179, 122, 0.22), transparent 38%),
    linear-gradient(135deg, #0f172a, #1e293b);
  border-radius: var(--r-lg); color: #fff;
  overflow: hidden;
}

.anon-banner__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 54px;
  height: 54px;
  font-size: 1.6rem;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 16px;
}
.anon-banner h3 { margin: 0 0 8px; font-size: 1.3rem; }
.anon-banner p {
  margin: 0;
  max-width: 850px;
  font-size: 0.9375rem;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.68);
}

.anon-banner__tags {
  grid-column: 2;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 4px 0 0;
  padding: 0;
  list-style: none;
}
.anon-banner__tags li {
  padding: 9px 14px; font-size: 0.75rem; font-weight: 750;
  color: rgba(255, 255, 255, 0.9);
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 100px;
}

.anon-flow {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin-top: 8px;
}

.anon-flow__item {
  position: relative;
  min-height: 146px;
  padding: 18px;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 18px;
  overflow: hidden;
}

.anon-flow__item::after {
  content: "";
  position: absolute;
  inset: auto 16px 0;
  height: 3px;
  background: linear-gradient(90deg, var(--green), transparent);
  opacity: 0.65;
}

.anon-flow__item span {
  display: inline-grid;
  place-items: center;
  width: 30px;
  height: 30px;
  margin-bottom: 14px;
  color: #07101b;
  font-size: 0.8rem;
  font-weight: 900;
  background: var(--green);
  border-radius: 999px;
  box-shadow: 0 10px 22px rgba(0, 179, 122, 0.26);
}

.anon-flow__item strong {
  display: block;
  margin-bottom: 7px;
  color: #fff;
  font-size: 0.95rem;
  font-weight: 850;
}

.anon-flow__item p {
  max-width: none;
  font-size: 0.8rem;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.58);
}

.section-intro { margin-bottom: 24px; }
.section-intro--tight { margin-top: 40px; }
.section-tag {
  margin: 0 0 8px; font-size: 0.6875rem; font-weight: 800;
  letter-spacing: 0.12em; text-transform: uppercase; color: var(--green-d);
}
.section-intro h2 {
  margin: 0 0 8px; font-size: 2rem; font-weight: 900;
  letter-spacing: -0.03em;
}
.section-intro p { margin: 0; color: var(--muted); }

.service-grid {
  display: grid;
  gap: 18px;
  margin-bottom: 24px;
}
.service-grid--2 { grid-template-columns: repeat(2, 1fr); }
.service-grid--3 { grid-template-columns: repeat(3, 1fr); }

.service-card {
  position: relative;
  min-height: 210px;
  padding: 24px;
  background:
    radial-gradient(circle at 85% 10%, rgba(0, 179, 122, 0.16), transparent 42%),
    linear-gradient(145deg, #ffffff 0%, #f7f9fd 100%);
  border: 1px solid rgba(10, 14, 23, 0.08);
  border-radius: var(--r-lg);
  box-shadow: 0 12px 34px rgba(10, 14, 23, 0.08);
  overflow: hidden;
  transition: border-color 0.2s, box-shadow 0.2s, transform 0.2s;
}

.service-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 5px;
  background: linear-gradient(90deg, var(--green), #86efac);
}

.service-card--salary::before {
  background: linear-gradient(90deg, var(--orange), #facc15);
}

.service-card--abroad::before {
  background: linear-gradient(90deg, var(--blue), #60a5fa);
}

.service-card--card::before {
  background: linear-gradient(90deg, #8b5cf6, #38bdf8);
}

.service-card--swift::before {
  background: linear-gradient(90deg, var(--blue), #22c55e);
}

.service-card--income::before {
  background: linear-gradient(90deg, #f59e0b, #ec4899);
}

.service-card::after {
  content: "";
  position: absolute;
  right: -38px;
  bottom: -38px;
  width: 130px;
  height: 130px;
  border-radius: 50%;
  background: rgba(0, 179, 122, 0.07);
  pointer-events: none;
}

.service-card--salary::after {
  background:
    url("data:image/svg+xml,%3Csvg width='74' height='74' viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M8 7V6a3 3 0 0 1 3-3h2a3 3 0 0 1 3 3v1M5 7h14a2 2 0 0 1 2 2v8a3 3 0 0 1-3 3H6a3 3 0 0 1-3-3V9a2 2 0 0 1 2-2ZM9 12h6' stroke='%23FDBA74' stroke-width='1.6' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") center 30px / 74px 74px no-repeat,
    rgba(249, 115, 22, 0.08);
}

.service-card--tax::after {
  background:
    url("data:image/svg+xml,%3Csvg width='72' height='72' viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M7 3h7l4 4v14H7a2 2 0 0 1-2-2V5a2 2 0 0 1 2-2ZM14 3v5h5M8.5 13.5l2 2 5-5M9 19h6' stroke='%236EE7B7' stroke-width='1.6' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") center 30px / 72px 72px no-repeat,
    rgba(0, 179, 122, 0.07);
}

.service-card--abroad::after {
  background: rgba(37, 99, 235, 0.08);
}

.service-card--card,
.service-card--swift,
.service-card--income {
  min-height: 250px;
}

.service-card--card {
  background:
    radial-gradient(circle at 90% 12%, rgba(139, 92, 246, 0.18), transparent 38%),
    linear-gradient(145deg, #ffffff 0%, #f7f3ff 100%);
}

.service-card--swift {
  background:
    radial-gradient(circle at 90% 12%, rgba(37, 99, 235, 0.16), transparent 38%),
    linear-gradient(145deg, #ffffff 0%, #eff6ff 100%);
}

.service-card--income {
  background:
    radial-gradient(circle at 90% 12%, rgba(245, 158, 11, 0.18), transparent 38%),
    linear-gradient(145deg, #ffffff 0%, #fff7ed 100%);
}

.service-card--card::after,
.service-card--swift::after,
.service-card--income::after {
  right: 16px;
  bottom: 12px;
  width: auto;
  height: auto;
  border-radius: 0;
  background: none;
  font-size: 4.5rem;
  line-height: 1;
  opacity: 0.1;
  filter: saturate(1.2);
}

.service-card--card::after {
  content: "💳";
}

.service-card--swift::after {
  content: "🏦";
}

.service-card--income::after {
  content: "📈";
}

.service-card:hover {
  border-color: rgba(10, 14, 23, 0.16);
  box-shadow: 0 20px 46px rgba(10, 14, 23, 0.13);
  transform: translateY(-5px);
}

.service-card__icon {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  margin-bottom: 18px;
  font-size: 0.95rem;
  font-weight: 900;
  color: #fff;
  background: linear-gradient(135deg, var(--green), var(--green-d));
  border-radius: 14px;
  box-shadow: 0 10px 24px rgba(0, 179, 122, 0.28);
}

.service-card--salary .service-card__icon {
  background: linear-gradient(135deg, var(--orange), #ea580c);
  box-shadow: 0 10px 24px rgba(249, 115, 22, 0.26);
}

.service-card--abroad .service-card__icon {
  background: linear-gradient(135deg, var(--blue), var(--blue-d));
  box-shadow: 0 10px 24px rgba(37, 99, 235, 0.24);
}

.service-card--card .service-card__icon {
  background: linear-gradient(135deg, #8b5cf6, #2563eb);
  box-shadow: 0 10px 24px rgba(139, 92, 246, 0.26);
}

.service-card--swift .service-card__icon {
  background: linear-gradient(135deg, #2563eb, #0891b2);
}

.service-card--income .service-card__icon {
  background: linear-gradient(135deg, #f59e0b, #ec4899);
  box-shadow: 0 10px 24px rgba(245, 158, 11, 0.24);
}

.service-card__tag {
  position: relative;
  z-index: 1;
  display: inline-block;
  margin-bottom: 10px;
  padding: 5px 9px;
  font-size: 0.625rem;
  font-weight: 900;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--green-d);
  background: rgba(0, 179, 122, 0.1);
  border-radius: 8px;
}

.service-card h3 {
  position: relative;
  z-index: 1;
  margin: 0 0 8px;
  font-size: 1.22rem;
  font-weight: 900;
  letter-spacing: -0.02em;
}
.service-card p {
  position: relative;
  z-index: 1;
  margin: 0 0 16px;
  font-size: 0.925rem;
  color: var(--muted);
}

.service-card__note {
  display: inline-flex;
  width: fit-content;
  padding: 6px 9px;
  color: #7c2d12 !important;
  background: rgba(249, 115, 22, 0.1);
  border-radius: 9px;
  font-size: 0.8125rem !important;
  font-weight: 800;
}

.service-card__from {
  position: relative;
  z-index: 1;
  display: block;
  margin-bottom: 18px;
  font-size: 0.8125rem;
  font-weight: 850;
  color: var(--ink);
}
.service-card__link {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  padding: 12px 16px;
  font-size: 0.875rem;
  font-weight: 900;
  color: #fff;
  background: linear-gradient(135deg, var(--green), var(--green-d));
  border-radius: 12px;
  box-shadow: 0 10px 22px rgba(0, 179, 122, 0.2);
  text-decoration: none;
  transition: box-shadow 0.15s, transform 0.15s, filter 0.15s;
}
.service-card__link:hover {
  color: #fff;
  filter: saturate(1.08);
  box-shadow: 0 14px 28px rgba(0, 179, 122, 0.28);
  text-decoration: none;
  transform: translateY(-2px);
}

.service-card--salary .service-card__link {
  background: linear-gradient(135deg, var(--orange), #ea580c);
  box-shadow: 0 10px 22px rgba(249, 115, 22, 0.2);
}

.service-card--card .service-card__link {
  background: linear-gradient(135deg, #8b5cf6, #2563eb);
  box-shadow: 0 10px 22px rgba(139, 92, 246, 0.22);
}

.service-card--swift .service-card__link {
  background: linear-gradient(135deg, #2563eb, #0891b2);
  box-shadow: 0 10px 22px rgba(37, 99, 235, 0.22);
}

.service-card--income .service-card__link {
  background: linear-gradient(135deg, #f59e0b, #ec4899);
  box-shadow: 0 10px 22px rgba(245, 158, 11, 0.2);
}

.coins-bar {
  margin: 32px 0 0; padding: 16px; text-align: center;
  font-size: 0.875rem; color: var(--muted);
  background: var(--surface); border-radius: var(--r);
  border: 1px dashed var(--line);
}

/* More restrained dark presentation for secondary sections */
#tariffs {
  color: #fff;
  background:
    radial-gradient(ellipse 70% 45% at 15% 0%, rgba(0, 179, 122, 0.1), transparent 58%),
    radial-gradient(ellipse 58% 42% at 90% 28%, rgba(37, 99, 235, 0.12), transparent 55%),
    linear-gradient(180deg, #080b12 0%, #0b1019 100%);
}

#tariffs .section-intro h2 {
  color: #fff;
}

#tariffs .section-intro p,
#tariffs .coins-bar {
  color: rgba(255, 255, 255, 0.58);
}

#tariffs .service-card {
  background:
    radial-gradient(circle at 90% 10%, rgba(0, 179, 122, 0.1), transparent 42%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.085), rgba(255, 255, 255, 0.035));
  border-color: rgba(255, 255, 255, 0.1);
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.22);
}

#tariffs .service-card::before {
  height: 3px;
  background: linear-gradient(90deg, var(--green), rgba(255, 255, 255, 0));
}

#tariffs .service-card:hover {
  border-color: rgba(0, 179, 122, 0.28);
  box-shadow: 0 24px 54px rgba(0, 0, 0, 0.3);
}

#tariffs .service-card__icon {
  background: rgba(0, 179, 122, 0.14);
  border: 1px solid rgba(0, 179, 122, 0.22);
  box-shadow: none;
  color: #8ff4ce;
}

#tariffs .service-card h3,
#tariffs .service-card__from {
  color: #fff;
}

#tariffs .service-card p {
  color: rgba(255, 255, 255, 0.62);
}

#tariffs .service-card__tag,
#tariffs .service-card__note {
  color: rgba(255, 255, 255, 0.82) !important;
  background: rgba(255, 255, 255, 0.08);
}

#tariffs .service-card__link {
  color: #08110e;
  background: var(--green);
  box-shadow: 0 12px 26px rgba(0, 179, 122, 0.2);
}

#tariffs .service-card__link:hover {
  color: #08110e;
}

#tariffs .coins-bar {
  background: rgba(255, 255, 255, 0.055);
  border-color: rgba(255, 255, 255, 0.12);
}

/* Steps */
.section--steps {
  background:
    radial-gradient(circle at 10% 0%, rgba(0, 179, 122, 0.1), transparent 32%),
    linear-gradient(180deg, #0b1019 0%, #080b12 100%);
  border-block: 1px solid rgba(255, 255, 255, 0.08);
}
.section-title-center {
  margin: 0 0 34px; text-align: center;
  font-size: 2rem; font-weight: 900; letter-spacing: -0.04em;
}

.section--steps .section-title-center {
  color: #fff;
}

.section-kicker-center {
  margin: 0 0 8px;
  color: var(--green-d);
  font-size: 0.72rem;
  font-weight: 850;
  letter-spacing: 0.13em;
  text-align: center;
  text-transform: uppercase;
}

.steps-flow {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 0;
  margin: 0; padding: 0; list-style: none;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.22);
}

.steps-flow li {
  position: relative;
  display: flex; gap: 16px; padding: 26px 22px;
  background: rgba(255, 255, 255, 0.055);
  border-right: 1px solid rgba(255, 255, 255, 0.09);
}

.steps-flow li:last-child {
  border-right: none;
}

.steps-flow li > span {
  flex-shrink: 0; width: 42px; height: 42px;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.95rem; font-weight: 900; color: #fff;
  background: linear-gradient(135deg, var(--green), var(--blue));
  border-radius: 14px;
  box-shadow: 0 10px 22px rgba(37, 99, 235, 0.18);
}

.steps-flow h3 { margin: 0 0 6px; color: #fff; font-size: 1rem; font-weight: 900; }
.steps-flow p { margin: 0; font-size: 0.85rem; color: rgba(255, 255, 255, 0.58); line-height: 1.45; }

.trust-proof {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 22px;
}

.trust-proof__card {
  position: relative;
  min-height: 230px;
  padding: 24px;
  background:
    radial-gradient(circle at 90% 8%, rgba(0, 179, 122, 0.1), transparent 40%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.085), rgba(255, 255, 255, 0.035));
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--r-lg);
  box-shadow: 0 16px 38px rgba(0, 0, 0, 0.22);
  overflow: hidden;
}

.trust-proof__card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 4px;
  background: linear-gradient(90deg, var(--green), rgba(37, 99, 235, 0.65), transparent);
}

.trust-proof__icon {
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  margin-bottom: 18px;
  font-size: 1.35rem;
  background: rgba(0, 179, 122, 0.1);
  border: 1px solid rgba(0, 179, 122, 0.16);
  border-radius: 16px;
}

.trust-proof h3 {
  margin: 0 0 10px;
  color: #fff;
  font-size: 1.05rem;
  font-weight: 900;
  letter-spacing: -0.02em;
}

.trust-proof p {
  margin: 0;
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.9rem;
  line-height: 1.6;
}

/* FAQ — 21st/originui inspired */
.section--faq {
  background:
    radial-gradient(circle at 50% 0%, rgba(37, 99, 235, 0.08), transparent 34%),
    linear-gradient(180deg, #080b12 0%, #0b0f18 100%);
  border-block: 1px solid rgba(255, 255, 255, 0.08);
}

.section--faq .section-title-center {
  color: #fff;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 0;
  padding: 8px 0 0;
  background: transparent;
}

.faq {
  position: relative;
  background: transparent;
  border: 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 0;
  overflow: visible;
}

.faq:first-child {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.faq summary {
  position: relative;
  display: flex;
  align-items: center;
  min-height: 78px;
  padding: 18px 48px 18px 64px;
  color: #fff;
  font-size: 1rem;
  font-weight: 850;
  cursor: pointer;
  list-style: none;
  transition: color 0.18s ease;
}

.faq summary::-webkit-details-marker {
  display: none;
}

.faq summary::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.035);
  background-repeat: no-repeat;
  background-position: center;
  background-size: 18px 18px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  transform: translateY(-50%);
}

.faq:nth-child(1) summary::before { background-image: url("data:image/svg+xml,%3Csvg width='18' height='18' viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M8 12h8M9 7h6a5 5 0 0 1 0 10H9a5 5 0 0 1 0-10Z' stroke='%23A7B0C0' stroke-width='1.8' stroke-linecap='round'/%3E%3C/svg%3E"); }
.faq:nth-child(2) summary::before { background-image: url("data:image/svg+xml,%3Csvg width='18' height='18' viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M12 7v5l3 2M21 12a9 9 0 1 1-18 0 9 9 0 0 1 18 0Z' stroke='%23A7B0C0' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E"); }
.faq:nth-child(3) summary::before { background-image: url("data:image/svg+xml,%3Csvg width='18' height='18' viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M12 3l7 3v5c0 4.5-2.9 8.4-7 10-4.1-1.6-7-5.5-7-10V6l7-3Z' stroke='%23A7B0C0' stroke-width='1.8' stroke-linejoin='round'/%3E%3C/svg%3E"); }
.faq:nth-child(4) summary::before { background-image: url("data:image/svg+xml,%3Csvg width='18' height='18' viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M12 12a4 4 0 1 0 0-8 4 4 0 0 0 0 8ZM4 21a8 8 0 0 1 16 0' stroke='%23A7B0C0' stroke-width='1.8' stroke-linecap='round'/%3E%3C/svg%3E"); }
.faq:nth-child(5) summary::before { background-image: url("data:image/svg+xml,%3Csvg width='18' height='18' viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M4 7h16M6 7v12h12V7M9 7V5h6v2M9 12h6M9 16h4' stroke='%23A7B0C0' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E"); }
.faq:nth-child(6) summary::before { background-image: url("data:image/svg+xml,%3Csvg width='18' height='18' viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M12 8v5M12 17h.01M10.3 4.6 2.8 18a2 2 0 0 0 1.7 3h15a2 2 0 0 0 1.7-3L13.7 4.6a2 2 0 0 0-3.4 0Z' stroke='%23A7B0C0' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E"); }
.faq:nth-child(7) summary::before { background-image: url("data:image/svg+xml,%3Csvg width='18' height='18' viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M7 4h10v16H7V4ZM9.5 8h5M9.5 12h5M9.5 16h3' stroke='%23A7B0C0' stroke-width='1.8' stroke-linecap='round'/%3E%3C/svg%3E"); }
.faq:nth-child(8) summary::before { background-image: url("data:image/svg+xml,%3Csvg width='18' height='18' viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M12 3v18M17 8H9.5a3 3 0 0 0 0 6H14a3 3 0 0 1 0 6H6' stroke='%23A7B0C0' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E"); }
.faq:nth-child(9) summary::before { background-image: url("data:image/svg+xml,%3Csvg width='18' height='18' viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M8 6h13M8 12h13M8 18h13M3 6h.01M3 12h.01M3 18h.01' stroke='%23A7B0C0' stroke-width='2' stroke-linecap='round'/%3E%3C/svg%3E"); }
.faq summary::after {
  content: "";
  position: absolute;
  right: 16px;
  top: 50%;
  width: 9px;
  height: 9px;
  border-right: 2px solid rgba(255, 255, 255, 0.55);
  border-bottom: 2px solid rgba(255, 255, 255, 0.55);
  transform: translateY(-65%) rotate(45deg);
  transition: transform 0.18s ease, border-color 0.18s ease;
}

.faq[open] summary::after {
  border-color: #fff;
  transform: translateY(-35%) rotate(225deg);
}

.faq p {
  margin: -8px 0 0;
  padding: 0 48px 22px 64px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.9375rem;
  line-height: 1.65;
}

.faq[open] summary {
  color: #fff;
}

.faq[open] summary::before {
  background-color: rgba(255, 255, 255, 0.07);
  border-color: rgba(255, 255, 255, 0.2);
}

/* Footer */
.site-footer {
  position: relative;
  padding: 76px 0 30px;
  color: rgba(255, 255, 255, 0.72);
  background: var(--hero-bg);
  overflow: hidden;
}

.site-footer::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(ellipse 70% 50% at 20% 0%, rgba(0, 179, 122, 0.22), transparent 55%),
    radial-gradient(ellipse 60% 45% at 85% 10%, rgba(37, 99, 235, 0.2), transparent 50%),
    radial-gradient(ellipse 50% 40% at 50% 100%, rgba(249, 115, 22, 0.08), transparent 45%);
  animation: aurora 12s ease-in-out infinite alternate;
}

.site-footer::after {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.04;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

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

.footer-grid {
  display: grid;
  grid-template-columns: 1.25fr repeat(3, 1fr);
  gap: 42px;
  margin-bottom: 42px;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 6px 24px 12px 0;
}

.footer-brand::before {
  content: none;
}

.site-footer .footer-brand > a.logo.logo--footer {
  display: block !important;
  width: 176px !important;
  min-width: 176px;
  height: 32px;
  padding: 0 !important;
  border: 0;
  color: transparent;
  background: none;
  font-size: 0 !important;
  font-weight: 900;
  line-height: 1;
  filter: drop-shadow(0 8px 20px rgba(0, 179, 122, 0.18));
  transform: none;
}

.site-footer .logo--footer img {
  display: block;
  width: 176px;
  height: 32px;
}

.site-footer .footer-brand > a.logo.logo--footer:hover {
  color: transparent;
  transform: none;
}

.footer-brand p {
  max-width: 320px;
  margin: 16px 0 0;
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.95rem;
  line-height: 1.55;
}

.footer-badges {
  display: grid;
  grid-template-columns: repeat(2, minmax(92px, 1fr));
  gap: 9px;
  width: 100%;
  max-width: 260px;
  margin-top: 22px;
}

.footer-badge {
  position: relative;
  min-height: 54px;
  padding: 10px 11px 9px 36px;
  overflow: hidden;
  color: rgba(255, 255, 255, 0.86);
  background:
    radial-gradient(circle at 100% 0%, rgba(0, 179, 122, 0.18), transparent 46%),
    rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 13px;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.footer-badge::before {
  content: "";
  position: absolute;
  left: 10px;
  top: 50%;
  width: 16px;
  height: 16px;
  background: var(--green);
  border-radius: 5px;
  box-shadow: 0 0 18px rgba(0, 179, 122, 0.34);
  transform: translateY(-50%);
}

.footer-badge::after {
  content: "";
  position: absolute;
  left: 15px;
  top: 50%;
  width: 5px;
  height: 9px;
  border-right: 2px solid #06110e;
  border-bottom: 2px solid #06110e;
  transform: translateY(-62%) rotate(45deg);
}

.footer-badge b,
.footer-badge small {
  position: relative;
  z-index: 1;
  display: block;
  line-height: 1;
}

.footer-badge b {
  margin-bottom: 5px;
  color: #fff;
  font-size: 0.8rem;
  font-weight: 900;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.footer-badge small {
  color: rgba(255, 255, 255, 0.48);
  font-size: 0.63rem;
  font-weight: 750;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.footer-badge--aml::before { background: #38bdf8; box-shadow: 0 0 18px rgba(56, 189, 248, 0.28); }
.footer-badge--pdf::before { background: #f59e0b; box-shadow: 0 0 18px rgba(245, 158, 11, 0.24); }
.footer-badge--esign::before { background: #a78bfa; box-shadow: 0 0 18px rgba(167, 139, 250, 0.25); }

.logo--footer .logo-legal {
  color: #fff;
}

.logo--footer .logo-crypto {
  color: var(--green);
}

.footer-column {
  position: relative;
  min-height: 0;
  padding: 14px 0 0;
  background: transparent;
  border: 0;
  border-radius: 0;
  box-shadow: none;
  backdrop-filter: none;
  overflow: visible;
}

.site-footer h4 {
  margin: 0 0 18px;
  color: #fff;
  font-size: 0.92rem;
  font-weight: 850;
  letter-spacing: -0.01em;
}

.site-footer ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.site-footer li {
  margin-bottom: 12px;
}

.site-footer .footer-column a {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 10px 0 10px 18px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.925rem;
  font-weight: 750;
  line-height: 1.25;
  text-decoration: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
  transition: color 0.18s ease, transform 0.18s ease, border-color 0.18s ease;
}

.site-footer .footer-column a::before {
  content: "";
  position: absolute;
  left: 0;
  top: 18px;
  width: 6px;
  height: 6px;
  background: var(--green);
  box-shadow: 0 0 16px rgba(0, 179, 122, 0.5);
  border-radius: 999px;
  opacity: 0;
  transform: scale(0.4);
  transition: opacity 0.25s ease, transform 0.25s ease;
}

.site-footer .footer-column li:last-child a {
  border-bottom: none;
}

.site-footer .footer-column a span {
  display: block;
  color: rgba(255, 255, 255, 0.44);
  font-size: 0.75rem;
  font-weight: 650;
  transition: color 0.18s ease;
}

.site-footer .footer-column a:hover {
  color: #fff;
  text-decoration: none;
  transform: translateX(2px);
  border-color: rgba(0, 179, 122, 0.22);
}

.site-footer .footer-column a:hover::before {
  opacity: 1;
  transform: scale(1);
}

.site-footer .footer-column a:hover span {
  color: rgba(255, 255, 255, 0.62);
}

.footer-legal {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 12px 24px;
  padding-top: 22px;
  color: rgba(255, 255, 255, 0.52);
  font-size: 0.8125rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-legal p {
  margin: 0;
}

.footer-legal a {
  display: inline;
  padding: 0;
  color: rgba(255, 255, 255, 0.58);
  border-bottom: none;
  font-size: inherit;
}

.footer-legal a:hover {
  color: #fff;
}

/* Responsive */
@media (max-width: 900px) {
  .nav-desktop,
  .header-actions .btn-ghost,
  .header-actions .motion-login:not(.motion-login--chat-nav) { display: none; }
  .nav-toggle { display: block; }
  .path-cards { grid-template-columns: 1fr; }
  .path-card--yur { margin-top: 8px; }
  .service-grid--2,
  .service-grid--3 { grid-template-columns: 1fr; }
  .steps-flow { grid-template-columns: 1fr 1fr; gap: 12px; border: none; box-shadow: none; overflow: visible; }
  .steps-flow li { border: 1px solid var(--line); border-radius: var(--r); }
  .trust-proof { grid-template-columns: 1fr; }
  .anon-flow { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
  .footer-column { padding-top: 0; }
}

@media (max-width: 640px) {
  .hero-head { flex-direction: column; align-items: flex-start; }
  .path-card__foot { flex-direction: column; align-items: stretch; }
  .path-card__btn { width: 100%; min-width: 0; }
  .novelty-burst { width: 84px; height: 84px; top: 4px; right: 4px; }
  .anon-banner { grid-template-columns: 1fr; }
  .anon-banner__tags { grid-column: 1; margin-left: 0; width: 100%; }
  .anon-flow { grid-template-columns: 1fr; }
  .steps-flow { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
}

/* Inner pages */
.inner-body { background: #070a12; }
.inner-hero {
  position: relative;
  overflow: hidden;
  padding: 86px 0 68px;
  color: #fff;
  background:
    linear-gradient(135deg, rgba(0, 179, 122, 0.08), transparent 36%),
    radial-gradient(circle at 82% 22%, rgba(37, 99, 235, 0.22), transparent 30%),
    radial-gradient(circle at 20% 86%, rgba(249, 115, 22, 0.12), transparent 34%),
    var(--hero-bg);
}
.inner-hero::before {
  content: "";
  position: absolute;
  inset: 18px;
  pointer-events: none;
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 34px;
}
.inner-hero::after {
  content: "";
  position: absolute;
  right: max(28px, calc((100vw - 1180px) / 2));
  top: 118px;
  width: min(27vw, 300px);
  height: 300px;
  pointer-events: none;
  background: radial-gradient(circle, rgba(0, 179, 122, 0.22), transparent 68%);
  filter: blur(4px);
  opacity: 0.8;
  transform: rotate(2deg);
}
.inner-hero__grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 780px) minmax(220px, 320px);
  align-items: end;
  gap: 48px;
}
.inner-hero__grid::after {
  content: "₿     $    ₿\A  $   ₿   $\A₿   LEGAL   $\A  $   ₿   $\A₿     $    ₿";
  white-space: pre-line;
  align-self: stretch;
  display: grid;
  place-items: center;
  min-height: 230px;
  padding: 28px;
  color: rgba(95, 240, 189, 0.72);
  font-family: ui-monospace, SFMono-Regular, Consolas, monospace;
  font-size: clamp(1.08rem, 2vw, 1.55rem);
  font-weight: 900;
  letter-spacing: 0.04em;
  line-height: 1.35;
  text-align: center;
  background:
    linear-gradient(135deg, rgba(0, 179, 122, 0.12), rgba(37, 99, 235, 0.06)),
    rgba(255, 255, 255, 0.035);
  border: 1px solid rgba(0, 179, 122, 0.18);
  border-radius: 26px;
  box-shadow: 0 22px 70px rgba(0, 0, 0, 0.28), inset 0 0 40px rgba(0, 179, 122, 0.06);
  backdrop-filter: blur(18px);
  animation: ascii-float 5s ease-in-out infinite alternate;
}
.inner-hero--custom .inner-hero__grid::after {
  content: none;
  display: none;
}
.hero-visual {
  position: relative;
  align-self: stretch;
  display: grid;
  align-content: center;
  min-height: 230px;
  padding: 28px;
  overflow: hidden;
  color: rgba(255, 255, 255, 0.82);
  background:
    radial-gradient(circle at 78% 18%, rgba(0, 179, 122, 0.22), transparent 42%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.115), rgba(255, 255, 255, 0.035));
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 28px;
  box-shadow: 0 22px 70px rgba(0, 0, 0, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(18px);
}
.hero-visual::before {
  content: "";
  position: absolute;
  inset: 18px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 20px;
}
.hero-visual::after {
  content: "";
  position: absolute;
  right: -36px;
  bottom: -36px;
  width: 130px;
  height: 130px;
  background: rgba(0, 179, 122, 0.13);
  border-radius: 999px;
  filter: blur(1px);
}
.hero-visual span,
.hero-visual b,
.hero-visual i {
  position: relative;
  z-index: 1;
  display: block;
}
.hero-visual span {
  color: #5ff0bd;
  font-size: clamp(1.8rem, 4vw, 3.1rem);
  font-weight: 950;
  letter-spacing: -0.06em;
}
.hero-visual b {
  margin-top: 16px;
  color: #fff;
  font-size: 1.05rem;
  font-weight: 900;
}
.hero-visual i {
  margin-top: 6px;
  color: rgba(255, 255, 255, 0.56);
  font-style: normal;
  font-weight: 750;
}
.hero-visual--coin {
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  text-align: center;
}
.hero-visual--coin b {
  grid-column: 1 / -1;
  letter-spacing: 0.08em;
}
.hero-visual--company {
  align-content: stretch;
  padding: 18px;
  background:
    radial-gradient(circle at 72% 16%, rgba(96, 165, 250, 0.2), transparent 42%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.035));
}
.payment-card {
  position: relative;
  z-index: 1;
  display: grid;
  align-content: start;
  min-height: 100%;
  padding: 22px;
  color: rgba(255, 255, 255, 0.68);
  background: rgba(7, 12, 22, 0.56);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 22px;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
}
.payment-card::before {
  content: "";
  position: absolute;
  inset: 12px 12px auto;
  height: 3px;
  background: linear-gradient(90deg, var(--green), #60a5fa, transparent);
  border-radius: 999px;
}
.payment-card__label {
  margin-top: 14px;
  color: rgba(255, 255, 255, 0.52) !important;
  font-size: 0.72rem !important;
  font-weight: 900 !important;
  letter-spacing: 0.12em !important;
  text-transform: uppercase;
}
.payment-card strong {
  margin: 12px 0 18px;
  color: #fff;
  font-size: clamp(1.6rem, 3vw, 2.25rem);
  font-weight: 950;
  letter-spacing: -0.06em;
}
.payment-card dl {
  display: grid;
  gap: 10px;
  margin: 0;
}
.payment-card dt {
  color: rgba(255, 255, 255, 0.42);
  font-size: 0.72rem;
  font-weight: 850;
  text-transform: uppercase;
}
.payment-card dd {
  margin: -6px 0 0;
  color: rgba(255, 255, 255, 0.88);
  font-weight: 850;
}
.payment-card i {
  position: absolute;
  right: 18px;
  bottom: 18px;
  display: inline-grid;
  place-items: center;
  width: 58px;
  height: 58px;
  color: #06110e;
  font-style: normal;
  font-size: 0.95rem;
  font-weight: 950;
  background: var(--green);
  border-radius: 18px;
  box-shadow: 0 14px 30px rgba(0, 179, 122, 0.28);
  transform: rotate(-7deg);
}
.hero-visual--tax { background: radial-gradient(circle at 80% 15%, rgba(249, 115, 22, 0.2), transparent 42%), linear-gradient(145deg, rgba(255, 255, 255, 0.115), rgba(255, 255, 255, 0.035)); }
.hero-visual--tax span { color: #fbbf24; }
.hero-visual--salary span { font-size: clamp(1.35rem, 3vw, 2.2rem); letter-spacing: -0.03em; }
.hero-visual--card span { font-size: clamp(1.15rem, 3vw, 2rem); letter-spacing: 0.08em; }
.hero-visual--swift span,
.hero-visual--royalty span { font-size: clamp(1.3rem, 3vw, 2.35rem); letter-spacing: 0.1em; }
.hero-visual--swift { background: radial-gradient(circle at 80% 15%, rgba(37, 99, 235, 0.24), transparent 42%), linear-gradient(145deg, rgba(255, 255, 255, 0.115), rgba(255, 255, 255, 0.035)); }
.inner-hero h1 { max-width: 900px; margin: 18px 0; color: #fff; font-size: clamp(2.25rem, 5.6vw, 4.35rem); line-height: 0.98; letter-spacing: -0.06em; text-wrap: balance; }
.inner-hero__lead { max-width: 780px; margin: 0; color: rgba(255, 255, 255, 0.68); font-size: clamp(1rem, 2vw, 1.2rem); line-height: 1.55; }
.inner-hero__chips { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 28px; }
.inner-hero__chips span {
  position: relative;
  padding: 10px 14px 10px 32px;
  color: #fff;
  font-size: 0.82rem;
  font-weight: 850;
  background: rgba(255, 255, 255, 0.075);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 999px;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.07);
}
.inner-hero__chips span::before {
  content: "";
  position: absolute;
  left: 13px;
  top: 50%;
  width: 8px;
  height: 8px;
  background: var(--green);
  border-radius: 999px;
  box-shadow: 0 0 14px rgba(0, 179, 122, 0.58);
  transform: translateY(-50%);
}
@keyframes ascii-float {
  from { transform: translateY(0); opacity: 0.72; }
  to { transform: translateY(-8px); opacity: 0.98; }
}
.inner-section { position: relative; padding: 76px 0; color: rgba(255, 255, 255, 0.72); background: radial-gradient(circle at 12% 0%, rgba(0, 179, 122, 0.13), transparent 34%), linear-gradient(180deg, #080c15 0%, #070a12 100%); }
.inner-section--tight { padding-top: 0; }
.inner-section h2, .section-heading--inner h2 { color: #fff; }
.inner-card { position: relative; overflow: hidden; padding: 24px; color: rgba(255, 255, 255, 0.68); background: radial-gradient(circle at 100% 0%, rgba(0, 179, 122, 0.12), transparent 42%), rgba(255, 255, 255, 0.055); border: 1px solid rgba(255, 255, 255, 0.11); border-radius: 22px; box-shadow: 0 24px 70px rgba(0, 0, 0, 0.25), inset 0 1px 0 rgba(255, 255, 255, 0.05); }
.inner-card h2, .inner-card h3 { margin: 0 0 12px; color: #fff; line-height: 1.12; letter-spacing: -0.035em; }
.inner-card p { margin: 0; }
.inner-card__tag { display: inline-flex; margin-bottom: 18px; padding: 7px 10px; color: #5ff0bd; font-size: 0.72rem; font-weight: 900; text-transform: uppercase; letter-spacing: 0.05em; background: rgba(0, 179, 122, 0.12); border: 1px solid rgba(0, 179, 122, 0.25); border-radius: 999px; }
.tariffs-catalog, .inner-grid-3 { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 18px; }
.tariff-card-mini { display: flex; flex-direction: column; min-height: 260px; }
.tariff-card-mini__bottom { display: flex; align-items: center; justify-content: space-between; gap: 16px; margin-top: auto; padding-top: 24px; }
.tariff-card-mini__bottom strong { color: #fff; font-size: 1.08rem; }
.tariff-card-mini__bottom a { color: #5ff0bd; font-weight: 850; }
.security-panel, .contact-layout, .order-layout, .created-preview { display: grid; gap: 24px; }
.security-panel { grid-template-columns: minmax(0, 1fr) 0.85fr; align-items: center; padding: 34px; background: rgba(255, 255, 255, 0.055); border: 1px solid rgba(255, 255, 255, 0.11); border-radius: 28px; }
.security-flow { display: grid; gap: 12px; margin: 0; padding: 0; list-style: none; }
.security-flow li { padding: 14px 16px; color: #fff; font-weight: 850; background: rgba(255, 255, 255, 0.06); border: 1px solid rgba(255, 255, 255, 0.11); border-radius: 16px; }
.contact-layout, .order-layout { grid-template-columns: minmax(0, 1fr) 360px; align-items: start; }
.contact-aside, .order-aside { position: sticky; top: 92px; display: grid; gap: 16px; }
.inner-form, .order-main { display: grid; gap: 16px; }
.inner-form label, .order-step label { display: grid; gap: 8px; color: rgba(255, 255, 255, 0.86); font-size: 0.88rem; font-weight: 800; }
.inner-form input, .inner-form select, .inner-form textarea, .order-step input, .order-step textarea { width: 100%; min-height: 46px; padding: 12px 14px; color: #fff; font: inherit; background: rgba(255, 255, 255, 0.06); border: 1px solid rgba(255, 255, 255, 0.13); border-radius: 14px; outline: none; }
.inner-form input.is-invalid, .order-step input.is-invalid {
  border-color: rgba(251, 113, 133, 0.85);
  box-shadow: 0 0 0 3px rgba(251, 113, 133, 0.12);
}
.order-step textarea { resize: vertical; min-height: 92px; }
.inner-form textarea { resize: vertical; }
.form-success { display: none; color: #5ff0bd; font-weight: 800; }
.form-error { display: none; color: #fb7185; font-weight: 800; }
.form-success.is-visible, .form-error.is-visible { display: block; }
.support-honeypot { position: absolute; left: -9999px; width: 1px; height: 1px; opacity: 0; pointer-events: none; }
.contact-channels { display: grid; gap: 12px; }
.contact-channels .btn { width: fit-content; }
.check-list, .doc-list { display: grid; gap: 10px; margin: 0; padding: 0; list-style: none; }
.check-list li, .doc-list li { position: relative; padding-left: 22px; }
.check-list li::before, .doc-list li::before { content: ""; position: absolute; left: 0; top: 0.62em; width: 8px; height: 8px; background: var(--green); border-radius: 999px; box-shadow: 0 0 14px rgba(0, 179, 122, 0.45); }
.doc-list li strong, .doc-list li span { display: block; }
.doc-list li strong { color: #fff; }
.policy-stack { display: grid; gap: 16px; max-width: 860px; }
.auth-wrap { display: grid; place-items: center; }
.auth-card { width: min(100%, 460px); }
.auth-note { color: rgba(255, 255, 255, 0.52); font-size: 0.86rem; }
.order-note { padding: 18px 20px; color: rgba(255, 255, 255, 0.72); background: rgba(0, 179, 122, 0.08); border: 1px solid rgba(0, 179, 122, 0.18); border-radius: 18px; }
.order-note:empty { display: none; }
.order-step { display: grid; grid-template-columns: 48px minmax(0, 1fr); gap: 18px; padding: 24px; background: rgba(255, 255, 255, 0.055); border: 1px solid rgba(255, 255, 255, 0.11); border-radius: 22px; }
.order-step__num { display: grid; place-items: center; width: 48px; height: 48px; color: #06110e; font-weight: 900; background: var(--green); border-radius: 16px; }
.order-step h3 { margin: 0 0 16px; color: #fff; font-size: 1.15rem; }
.choice-grid, .field-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 10px; }
.choice-grid--2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.choice-grid--3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.field-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.choice-grid span {
  position: relative;
  display: block;
  min-height: 64px;
  padding: 13px 36px 13px 13px;
  color: #fff;
  font-weight: 900;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 16px;
  cursor: pointer;
  user-select: none;
  transition: transform 0.18s ease, border-color 0.18s ease, background 0.18s ease, box-shadow 0.18s ease;
}
.choice-grid span::after {
  content: "";
  position: absolute;
  top: 14px;
  right: 14px;
  width: 16px;
  height: 16px;
  border: 2px solid rgba(255, 255, 255, 0.28);
  border-radius: 999px;
  transition: border-color 0.18s ease, background 0.18s ease, box-shadow 0.18s ease;
}
.choice-grid span:hover,
.choice-grid span:focus-visible {
  background: rgba(255, 255, 255, 0.09);
  border-color: rgba(0, 179, 122, 0.42);
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.18), 0 0 0 1px rgba(0, 179, 122, 0.1);
  outline: none;
  transform: translateY(-2px);
}
.choice-grid span.is-selected {
  background:
    radial-gradient(circle at 100% 0%, rgba(0, 179, 122, 0.24), transparent 45%),
    rgba(0, 179, 122, 0.13);
  border-color: rgba(0, 179, 122, 0.58);
  box-shadow: 0 18px 42px rgba(0, 179, 122, 0.12), inset 0 1px 0 rgba(255, 255, 255, 0.09);
}
.choice-grid span.is-selected::after {
  background: var(--green);
  border-color: var(--green);
  box-shadow: 0 0 18px rgba(0, 179, 122, 0.55);
}
.choice-grid span.is-selected::before {
  content: "";
  position: absolute;
  top: 18px;
  right: 18px;
  z-index: 1;
  width: 8px;
  height: 5px;
  border-left: 2px solid #06110e;
  border-bottom: 2px solid #06110e;
  transform: rotate(-45deg);
}
.choice-grid small { display: block; margin-top: 4px; color: rgba(255, 255, 255, 0.48); font-size: 0.75rem; font-weight: 750; }
.choice-panels { margin-top: 14px; }
.choice-panel { display: grid; gap: 12px; }
.choice-panel[hidden] { display: none; }
.choice-panel__title { margin: 0; color: rgba(255, 255, 255, 0.58); font-size: 0.82rem; font-weight: 800; }
.field-hint, .field-warning { margin: 12px 0 0; color: rgba(255, 255, 255, 0.54); font-size: 0.86rem; }
.field-warning { color: #fbbf24; font-weight: 800; }
.field-warning.is-active { color: #fb7185; }
.order-actions { display: flex; align-items: center; flex-wrap: wrap; gap: 16px; }
.order-actions--solo { justify-content: flex-start; }
.btn-order-submit {
  min-height: 62px;
  min-width: min(100%, 260px);
  padding-inline: 34px;
  font-size: 1.05rem;
  border-radius: 18px;
  box-shadow: 0 18px 38px rgba(0, 179, 122, 0.24);
}
.order-actions p { margin: 0; color: rgba(255, 255, 255, 0.48); font-size: 0.82rem; }
.summary-card dl { display: grid; grid-template-columns: 1fr auto; gap: 9px 12px; margin: 0; }
.summary-card dt { color: rgba(255, 255, 255, 0.5); }
.summary-card dd { margin: 0; color: #fff; font-weight: 850; text-align: right; }
.created-preview { grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); }
.wallet-box { margin: 16px 0; padding: 14px; overflow-wrap: anywhere; color: #5ff0bd; font-family: ui-monospace, SFMono-Regular, Consolas, monospace; font-size: 0.9rem; background: rgba(0, 179, 122, 0.08); border: 1px dashed rgba(0, 179, 122, 0.32); border-radius: 14px; }
.auth-section { min-height: calc(100vh - 92px); display: grid; align-items: center; }
.inner-hero--order-view { padding: 68px 0 42px; }
.inner-hero--order-view::after { display: none; }
.inner-hero--order-view .inner-hero__grid {
  grid-template-columns: minmax(0, 820px);
  gap: 0;
}
.inner-hero--order-view .inner-hero__grid::after {
  content: none;
  display: none;
}
.inner-hero--order-view h1 {
  margin-top: 14px;
  margin-bottom: 10px;
  font-size: clamp(2rem, 4vw, 3.2rem);
}
.order-hero-id {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 18px;
  padding: 9px 13px;
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.86rem;
  font-weight: 850;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.07);
}
.order-hero-id strong {
  color: #5ff0bd;
  font-family: ui-monospace, SFMono-Regular, Consolas, monospace;
  font-size: 0.92rem;
  letter-spacing: -0.02em;
}
.inner-hero--order-view .inner-hero__lead {
  max-width: 680px;
}
.order-view-section { padding-top: 36px; }
.order-view-layout { display: grid; grid-template-columns: minmax(0, 1fr) 350px; gap: 22px; align-items: start; }
.order-view-main { display: grid; gap: 16px; }
.order-status-panel { position: sticky; top: 92px; display: grid; gap: 16px; }
.payment-instruction { padding: 28px; background: radial-gradient(circle at 100% 0%, rgba(0, 179, 122, 0.16), transparent 38%), rgba(255, 255, 255, 0.058); border-color: rgba(0, 179, 122, 0.2); }
.payment-kicker { margin: 0 0 6px !important; color: rgba(255, 255, 255, 0.48); font-size: 0.78rem; font-weight: 900; letter-spacing: 0.08em; text-transform: uppercase; }
.payment-instruction h2 { margin-bottom: 12px; font-size: clamp(1.75rem, 3.4vw, 2.65rem); letter-spacing: -0.055em; }
.payment-instruction__lead { color: rgba(255, 255, 255, 0.72); line-height: 1.55; }
.wallet-paybox { display: grid; grid-template-columns: minmax(0, 1fr) auto; gap: 12px; align-items: stretch; margin: 18px 0; }
.wallet-paybox .wallet-box { margin: 0; min-height: 58px; display: grid; align-items: center; padding-inline: 16px; color: #91ffd5; font-size: 0.98rem; border-style: solid; background: rgba(0, 179, 122, 0.09); }
.wallet-copy { min-height: 58px; padding-inline: 20px; white-space: nowrap; box-shadow: 0 14px 30px rgba(0, 179, 122, 0.2); transition: transform 0.18s ease, background 0.18s ease, box-shadow 0.18s ease; }
.wallet-copy:hover, .wallet-copy:focus-visible { transform: translateY(-1px); box-shadow: 0 18px 38px rgba(0, 179, 122, 0.28); }
.wallet-copy.is-copied { color: #06110e; background: #5ff0bd; transform: translateY(-1px); }
.qr-card { display: grid; grid-template-columns: 116px minmax(0, 1fr); gap: 18px; align-items: center; margin: 18px 0 0; padding: 16px; background: rgba(255, 255, 255, 0.045); border: 1px solid rgba(255, 255, 255, 0.1); border-radius: 18px; }
.qr-card img { width: 104px; height: 104px; padding: 8px; background: #fff; border-radius: 16px; }
.qr-card strong { display: block; color: #fff; margin-bottom: 12px; font-size: 1.04rem; }
.qr-card p { margin: 0; color: rgba(255, 255, 255, 0.58); line-height: 1.45; }
.order-view-section .btn,
.order-view-section .btn-secondary,
.order-view-section button,
.order-view-section a {
  font-family: inherit;
}
.order-action-btn {
  position: relative;
  overflow: hidden;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 48px;
  padding-inline: 18px;
  color: #fff;
  font-family: inherit;
  font-size: 0.92rem;
  font-weight: 900;
  line-height: 1.15;
  border-radius: 15px;
  background:
    radial-gradient(circle at 16% 0%, rgba(255, 255, 255, 0.24), transparent 34%),
    linear-gradient(135deg, rgba(0, 179, 122, 0.9), rgba(0, 132, 255, 0.58));
  border: 1px solid rgba(95, 240, 189, 0.34);
  box-shadow: 0 16px 34px rgba(0, 179, 122, 0.18), inset 0 1px 0 rgba(255, 255, 255, 0.2);
  text-decoration: none;
  transition: transform 0.18s ease, border-color 0.18s ease, background 0.18s ease, box-shadow 0.18s ease, filter 0.18s ease;
}
.order-action-btn::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 -55%;
  width: 42%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.32), transparent);
  transform: skewX(-18deg);
  transition: left 0.45s ease;
}
.order-action-btn::after {
  content: "→";
  position: relative;
  z-index: 1;
  font-weight: 950;
  transition: transform 0.18s ease;
}
.wallet-open { width: fit-content; }
.order-action-btn:hover, .order-action-btn:focus-visible {
  border-color: rgba(95, 240, 189, 0.7);
  box-shadow: 0 22px 44px rgba(0, 179, 122, 0.27), inset 0 1px 0 rgba(255, 255, 255, 0.28);
  filter: saturate(1.08);
  outline: none;
  transform: translateY(-2px);
}
.order-action-btn:hover::before, .order-action-btn:focus-visible::before {
  left: 120%;
}
.order-action-btn:hover::after, .order-action-btn:focus-visible::after {
  transform: translateX(3px);
}
.order-action-btn:active {
  transform: translateY(0);
}
.wallet-open.is-disabled { cursor: pointer; opacity: 0.82; }
.wallet-open.is-copied, .link-copy.is-copied { color: #06110e; background: #5ff0bd; border-color: #5ff0bd; }
.exchange-receive { margin: 0 0 22px !important; color: rgba(255, 255, 255, 0.72); font-size: clamp(1.08rem, 2vw, 1.22rem); font-weight: 850; }
.exchange-receive strong { display: block; margin-top: 6px; color: #fff; font-size: clamp(1.65rem, 3vw, 2.2rem); line-height: 1.05; letter-spacing: -0.045em; }
.payout-card h3 { margin-top: 0; }
.recipient-list { display: grid; grid-template-columns: minmax(120px, 0.42fr) minmax(0, 1fr); gap: 10px 14px; margin: 0; }
.recipient-list dt { color: rgba(255, 255, 255, 0.48); font-weight: 800; }
.recipient-list dd { margin: 0; color: #fff; font-weight: 850; overflow-wrap: anywhere; }
.document-placeholder { margin-top: 16px; padding: 18px; color: rgba(255, 255, 255, 0.58); text-align: center; background: rgba(255, 255, 255, 0.055); border: 1px dashed rgba(255, 255, 255, 0.16); border-radius: 18px; }
.expiry-card .order-muted-action { margin-top: 18px; font-family: inherit; font-size: 0.9rem; font-weight: 850; }
.expiry-card button[disabled] { opacity: 0.45; cursor: not-allowed; }
.support-card .order-action-btn { margin-top: 18px; }
.status-card, .share-card { padding: 20px; background: rgba(255, 255, 255, 0.052); }
.status-card .inner-card__tag, .share-card .inner-card__tag { margin-bottom: 16px; }
.status-timeline { display: grid; gap: 0; margin: 0; padding: 0; list-style: none; }
.status-timeline li { position: relative; display: grid; grid-template-columns: 22px minmax(0, 1fr); gap: 11px; padding: 0 0 15px; color: rgba(255, 255, 255, 0.5); font-size: 0.9rem; font-weight: 800; }
.status-timeline li::before { content: ""; position: absolute; left: 10px; top: 22px; bottom: 0; width: 2px; background: rgba(255, 255, 255, 0.12); }
.status-timeline li:last-child { padding-bottom: 0; }
.status-timeline li:last-child::before { display: none; }
.status-timeline span { position: relative; z-index: 1; width: 20px; height: 20px; background: #111827; border: 2px solid rgba(255, 255, 255, 0.18); border-radius: 999px; }
.status-timeline p { margin: 1px 0 0; line-height: 1.35; }
.status-timeline li.is-active { color: #fff; }
.status-timeline li.is-active span { background: var(--green); border-color: var(--green); box-shadow: 0 0 22px rgba(0, 179, 122, 0.58); animation: status-dot-pulse 1.2s ease-in-out infinite alternate; }
.status-timeline li.is-done { color: rgba(255, 255, 255, 0.75); }
.status-timeline li.is-done span { background: rgba(0, 179, 122, 0.25); border-color: rgba(0, 179, 122, 0.7); }
.status-refresh { width: 100%; margin-top: 18px; }
.share-card h3 { margin-bottom: 8px; }
.share-card p { color: rgba(255, 255, 255, 0.58); line-height: 1.45; }
.share-link-box { display: grid; gap: 10px; margin-top: 14px; }
.share-link-box input { width: 100%; min-height: 44px; padding: 10px 12px; color: rgba(255, 255, 255, 0.82); font: 0.78rem ui-monospace, SFMono-Regular, Consolas, monospace; background: rgba(255, 255, 255, 0.055); border: 1px solid rgba(255, 255, 255, 0.11); border-radius: 12px; outline: none; }
.link-copy { width: 100%; }
@keyframes status-dot-pulse {
  from { transform: scale(0.94); }
  to { transform: scale(1.05); }
}
.mini-faq-list { max-width: 820px; }
.mini-faq-list h2 { margin: 0 0 18px; }
.mini-faq { padding: 18px 0; border-bottom: 1px solid rgba(255, 255, 255, 0.1); }
.mini-faq summary { color: #fff; font-weight: 850; cursor: pointer; }
.mini-faq p { margin: 12px 0 0; color: rgba(255, 255, 255, 0.62); }
.btn-secondary { display: inline-flex; align-items: center; justify-content: center; padding: 13px 18px; color: #fff; font-weight: 850; background: rgba(255, 255, 255, 0.07); border: 1px solid rgba(255, 255, 255, 0.14); border-radius: 999px; }
.order-view-section .btn,
.order-view-section .btn-secondary,
.order-view-section button {
  font-family: inherit;
  font-size: 0.92rem;
  line-height: 1.15;
}
.order-view-section .wallet-copy {
  font-family: inherit;
  font-size: 0.92rem;
  font-weight: 900;
}
.order-view-section .order-action-btn {
  min-height: 48px;
  padding: 14px 18px;
  color: #fff;
  font-family: inherit;
  font-size: 0.92rem;
  font-weight: 900;
  line-height: 1.15;
  background:
    radial-gradient(circle at 16% 0%, rgba(255, 255, 255, 0.24), transparent 34%),
    linear-gradient(135deg, rgba(0, 179, 122, 0.9), rgba(0, 132, 255, 0.58));
  border: 1px solid rgba(95, 240, 189, 0.34);
  border-radius: 15px;
}

@media (max-width: 980px) {
  .inner-hero {
    padding: 72px 0 58px;
  }
  .inner-hero::after {
    right: 18px;
    top: 124px;
    width: 220px;
    height: 220px;
    opacity: 0.45;
  }
  .inner-hero__grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .inner-hero__grid::after {
    min-height: auto;
    padding: 20px;
    line-height: 1.75;
  }
  .hero-visual {
    min-height: 170px;
  }
  .inner-hero h1 {
    max-width: 760px;
    letter-spacing: -0.045em;
  }
  .inner-hero--order-view { padding: 58px 0 36px; }
  .tariffs-catalog, .inner-grid-3, .contact-layout, .order-layout, .created-preview, .security-panel { grid-template-columns: 1fr; }
  .contact-aside, .order-aside, .order-status-panel { position: static; }
}

@media (max-width: 760px) {
  .order-view-layout { grid-template-columns: 1fr; }
}

@media (max-width: 640px) {
  .inner-hero { padding: 56px 0 44px; }
  .inner-hero::before {
    inset: 10px;
    border-radius: 22px;
  }
  .inner-hero::after {
    display: none;
  }
  .inner-hero__grid::after {
    content: "₿  $  ₿\A LEGAL \A$  ₿  $";
    padding: 16px;
    border-radius: 20px;
  }
  .inner-hero--order-view .inner-hero__grid::after { content: none; display: none; }
  .hero-visual {
    min-height: 150px;
    padding: 20px;
  }
  .inner-hero h1 {
    font-size: clamp(2.2rem, 14vw, 3.35rem);
    line-height: 1;
    letter-spacing: -0.04em;
  }
  .choice-grid, .choice-grid--2, .choice-grid--3, .field-grid { grid-template-columns: 1fr; }
  .order-step { grid-template-columns: 1fr; }
  .wallet-paybox, .qr-card, .recipient-list { grid-template-columns: 1fr; }
  .wallet-copy { width: 100%; }
  .payment-instruction { padding: 22px; }
  .order-step__num { width: 40px; height: 40px; }
}

.lc-chat__panel[hidden],
.lc-chat__backdrop[hidden],
.lc-chat__contact[hidden],
.lc-chat__composer[hidden] {
  display: none !important;
}

body.lc-chat-open {
  overflow: hidden;
}

.lc-chat {
  position: fixed;
  inset: 0;
  z-index: 1200;
  pointer-events: none;
  font-family: Manrope, Arial, sans-serif;
}

.lc-chat.lc-chat--open {
  pointer-events: auto;
}

.lc-chat__backdrop {
  position: fixed;
  inset: 0;
  z-index: 1;
  background: rgba(4, 8, 14, 0.65);
  cursor: pointer;
}

.lc-chat__panel {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 2;
  display: flex;
  flex-direction: column;
  width: min(400px, calc(100vw - 24px));
  height: min(560px, calc(100dvh - 32px));
  max-height: calc(100dvh - 32px);
  background: #0b111d;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.55);
}

.lc-chat__header {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 14px 16px;
  background: #101827;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.lc-chat__header > div {
  display: grid;
  gap: 3px;
  min-width: 0;
}

.lc-chat__name {
  display: block;
  color: #fff;
  font-size: 0.95rem;
  font-weight: 800;
  line-height: 1.2;
}

.lc-chat__role {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: #5ff0bd;
  font-size: 0.78rem;
  font-weight: 700;
  line-height: 1.2;
}

.lc-chat__close {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  border: 0;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  font-size: 1.35rem;
  line-height: 1;
  cursor: pointer;
}

.lc-chat__messages {
  flex: 1 1 auto;
  min-height: 0;
  padding: 16px 14px;
  scroll-padding: 12px 0;
  overflow-x: hidden;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  gap: 10px;
  -webkit-overflow-scrolling: touch;
}

.lc-chat__msg {
  max-width: 88%;
  padding: 10px 12px;
  border-radius: 14px;
  font-size: 0.88rem;
  line-height: 1.5;
  word-break: break-word;
}

.lc-chat__msg--assistant {
  align-self: flex-start;
  background: rgba(255, 255, 255, 0.08);
  color: #edf6f2;
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.lc-chat__msg--user {
  align-self: flex-end;
  background: rgba(0, 179, 122, 0.24);
  color: #fff;
  border: 1px solid rgba(0, 179, 122, 0.35);
}

.lc-chat__contact {
  flex: 0 0 auto;
  padding: 12px 14px 14px;
  display: grid;
  gap: 8px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  background: #0d1522;
}

.lc-chat__contact-title {
  margin: 0;
  font-size: 0.86rem;
  line-height: 1.45;
  color: rgba(255, 255, 255, 0.82);
}

.lc-chat__contact label {
  display: grid;
  gap: 5px;
  font-size: 0.76rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.72);
}

.lc-chat__contact input {
  min-height: 40px;
  padding: 10px 12px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.06);
  color: #fff;
  font: inherit;
}

.lc-chat__contact .btn {
  width: 100%;
  margin-top: 2px;
}

.lc-chat__composer {
  flex: 0 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 8px;
  align-items: center;
  padding: 12px 14px 14px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  background: #0d1522;
}

.lc-chat__composer input {
  width: 100%;
  min-height: 44px;
  padding: 10px 12px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.06);
  color: #fff;
  font: inherit;
}

.lc-chat__composer input:disabled {
  opacity: 0.55;
}

.lc-chat__composer .btn {
  min-height: 44px;
  padding: 10px 16px;
  white-space: nowrap;
}

@media (max-width: 640px) {
  .lc-chat__panel {
    right: 10px;
    left: 10px;
    bottom: 10px;
    width: auto;
    height: calc(100dvh - 20px);
    max-height: calc(100dvh - 20px);
  }
}

/* ═══ Зарплата ═══ */
.inner-body--zarplata .order-section { padding-top: 8px; }
.zarplata-benefits { padding-bottom: 0; }
.zarplata-profession--it.is-selected {
  border-color: rgba(56, 189, 248, 0.65);
  background:
    radial-gradient(circle at 100% 0%, rgba(56, 189, 248, 0.2), transparent 45%),
    rgba(56, 189, 248, 0.1);
}
.zarplata-profession-note {
  margin-top: 12px;
  padding: 14px 16px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.86rem;
  line-height: 1.5;
  background: rgba(56, 189, 248, 0.08);
  border: 1px solid rgba(56, 189, 248, 0.22);
  border-radius: 14px;
}
.zarplata-profession-note strong { color: #fff; }
.zarplata-example {
  padding: 12px 14px;
  color: rgba(255, 255, 255, 0.72);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
}
.zarplata-prepay-card__payout {
  color: #5ff0bd;
  font-size: 0.88rem;
  font-weight: 800;
}
.zarplata-city-label { display: grid; gap: 8px; margin-top: 16px; max-width: 360px; }
.zarplata-city-label select {
  width: 100%;
  min-height: 46px;
  padding: 12px 14px;
  color: #fff;
  font: inherit;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 14px;
  outline: none;
}
.zarplata-professions span small { display: block; margin-top: 6px; }
.order-it-block {
  border-color: rgba(96, 165, 250, 0.35);
  background:
    radial-gradient(circle at 0% 0%, rgba(96, 165, 250, 0.16), transparent 48%),
    rgba(255, 255, 255, 0.055);
}
.order-it-block .order-step__num {
  color: #fff;
  font-size: 0.72rem;
  letter-spacing: 0.04em;
  background: linear-gradient(135deg, #2563eb, #38bdf8);
}
.order-it-block.is-active {
  border-color: rgba(56, 189, 248, 0.65);
  box-shadow: 0 20px 50px rgba(37, 99, 235, 0.18);
}
.order-it-block__lead { margin: 0 0 14px; color: rgba(255, 255, 255, 0.78); line-height: 1.55; }
.order-it-block__lead strong { color: #fff; }
.zarplata-prepay-card {
  display: grid;
  gap: 6px;
  margin-top: 14px;
  padding: 16px 18px;
  border-radius: 16px;
  background: rgba(0, 179, 122, 0.1);
  border: 1px solid rgba(0, 179, 122, 0.22);
}
.zarplata-prepay-card__label {
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.zarplata-prepay-card__value {
  color: #fff;
  font-size: 1.35rem;
  font-weight: 900;
  letter-spacing: -0.03em;
}
.zarplata-prepay-card__note {
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.84rem;
}
.zarplata-prepay-line { color: #5ff0bd; font-weight: 800; }
.summary-card dd.is-highlight { color: #5ff0bd; font-weight: 900; }
.zarplata-faq {
  padding-top: 8px;
  padding-bottom: 56px;
}
.field-warning[hidden] { display: none !important; }
