:root {
  color-scheme: dark;
  --bg: #06101a;
  --bg-deep: #030a12;
  --surface: #0b1927;
  --surface-2: #102338;
  --surface-3: #132c43;
  --line: rgba(166, 204, 231, 0.14);
  --line-strong: rgba(82, 211, 255, 0.3);
  --text: #f5f9fc;
  --text-soft: #d8e5ee;
  --muted: #98adbd;
  --cyan: #42d8ff;
  --blue: #4587ff;
  --mint: #5ce9bd;
  --mint-2: #8bf6d4;
  --warning: #ffd37a;
  --danger: #ff8895;
  --shadow: 0 24px 70px rgba(0, 0, 0, 0.34);
  --shadow-soft: 0 14px 42px rgba(0, 0, 0, 0.22);
  --radius-xl: 28px;
  --radius-lg: 20px;
  --radius-md: 14px;
  --container: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  overflow-x: hidden;
  scroll-behavior: smooth;
  scroll-padding-top: 86px;
}

body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  background:
    radial-gradient(circle at 80% -10%, rgba(37, 146, 255, 0.12), transparent 34rem),
    radial-gradient(circle at 0% 35%, rgba(41, 213, 255, 0.055), transparent 28rem),
    var(--bg);
  color: var(--text);
  font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body.menu-open {
  overflow: hidden;
}

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

button,
input,
select,
textarea {
  color: inherit;
  font: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

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

p,
h1,
h2,
h3,
h4,
ul,
ol {
  margin-top: 0;
}

p:last-child,
ul:last-child,
ol:last-child {
  margin-bottom: 0;
}

.container {
  width: min(calc(100% - 32px), var(--container));
  margin-inline: auto;
}

.narrow {
  width: min(calc(100% - 32px), 850px);
  margin-inline: auto;
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 10px;
  left: 10px;
  padding: 10px 14px;
  transform: translateY(-160%);
  border-radius: 10px;
  background: var(--mint);
  color: #03140f;
  font-weight: 800;
}

.skip-link:focus {
  transform: translateY(0);
}

:focus-visible {
  outline: 3px solid rgba(66, 216, 255, 0.7);
  outline-offset: 3px;
}

.site-header {
  position: sticky;
  z-index: 100;
  top: 0;
  border-bottom: 1px solid transparent;
  background: rgba(6, 16, 26, 0.78);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  transition: border-color 180ms ease, background 180ms ease;
}

.site-header.scrolled {
  border-color: var(--line);
  background: rgba(5, 14, 23, 0.94);
}

.nav-shell {
  display: flex;
  min-height: 72px;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  flex: 0 0 auto;
  color: var(--text);
  font-size: 1.08rem;
  font-weight: 850;
  letter-spacing: -0.035em;
}

.brand-mark {
  position: relative;
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  overflow: hidden;
  border: 1px solid rgba(112, 224, 255, 0.42);
  border-radius: 11px;
  background: linear-gradient(145deg, rgba(74, 153, 255, 0.28), rgba(35, 224, 213, 0.08));
  box-shadow: inset 0 1px rgba(255, 255, 255, 0.14), 0 8px 24px rgba(25, 139, 231, 0.18);
}

.brand-mark::before,
.brand-mark::after {
  content: "";
  position: absolute;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--cyan), var(--blue));
}

.brand-mark::before {
  width: 16px;
  height: 5px;
  transform: translate(-3px, -4px) rotate(-38deg);
}

.brand-mark::after {
  width: 12px;
  height: 5px;
  transform: translate(4px, 4px) rotate(-38deg);
  opacity: 0.72;
}

.brand b {
  color: var(--cyan);
}

.brand-copy {
  display: grid;
  line-height: 1;
}

.brand-copy small {
  margin-top: 4px;
  color: #8098aa;
  font-size: 0.54rem;
  font-weight: 800;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.nav-links {
  position: fixed;
  inset: 72px 0 auto;
  display: none;
  max-height: calc(100vh - 72px);
  overflow-y: auto;
  padding: 18px 16px 24px;
  border-bottom: 1px solid var(--line);
  background: rgba(5, 14, 23, 0.99);
  box-shadow: var(--shadow);
}

.nav-links.open {
  display: grid;
  gap: 4px;
}

.nav-links > a:not(.btn),
.nav-dropdown-toggle {
  display: flex;
  width: 100%;
  min-height: 48px;
  align-items: center;
  justify-content: space-between;
  padding: 10px 12px;
  border: 0;
  border-radius: 10px;
  background: transparent;
  color: var(--text-soft);
  cursor: pointer;
  font-weight: 650;
  text-align: left;
}

.nav-links > a:not(.btn):hover,
.nav-links > a[aria-current="page"],
.nav-dropdown-toggle:hover {
  background: rgba(78, 177, 255, 0.08);
  color: var(--text);
}

.nav-dropdown {
  position: relative;
}

.nav-dropdown-toggle svg {
  width: 15px;
  transition: transform 180ms ease;
}

.nav-dropdown.open .nav-dropdown-toggle svg {
  transform: rotate(180deg);
}

.nav-dropdown-menu {
  display: none;
  padding: 4px 10px 12px;
}

.nav-dropdown.open .nav-dropdown-menu {
  display: grid;
  gap: 5px;
}

.nav-dropdown-menu a {
  display: grid;
  gap: 2px;
  padding: 11px 12px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.025);
}

.nav-dropdown-menu strong {
  font-size: 0.9rem;
}

.nav-dropdown-menu span {
  color: var(--muted);
  font-size: 0.78rem;
}

.menu-toggle {
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--surface);
  cursor: pointer;
}

.menu-toggle span,
.menu-toggle span::before,
.menu-toggle span::after {
  display: block;
  width: 19px;
  height: 2px;
  border-radius: 99px;
  background: var(--text);
  transition: transform 180ms ease, opacity 180ms ease;
}

.menu-toggle span {
  position: relative;
}

.menu-toggle span::before,
.menu-toggle span::after {
  content: "";
  position: absolute;
  left: 0;
}

.menu-toggle span::before { top: -6px; }
.menu-toggle span::after { top: 6px; }
.menu-toggle[aria-expanded="true"] span { background: transparent; }
.menu-toggle[aria-expanded="true"] span::before { top: 0; transform: rotate(45deg); }
.menu-toggle[aria-expanded="true"] span::after { top: 0; transform: rotate(-45deg); }

.btn {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 12px 18px;
  border: 1px solid transparent;
  border-radius: 12px;
  cursor: pointer;
  font-weight: 800;
  line-height: 1.2;
  text-align: center;
  transition: transform 160ms ease, border-color 160ms ease, background 160ms ease, box-shadow 160ms ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  background: linear-gradient(135deg, var(--mint-2), var(--mint));
  color: #03150f;
  box-shadow: 0 12px 30px rgba(45, 225, 171, 0.2), inset 0 1px rgba(255, 255, 255, 0.42);
}

.btn-primary:hover {
  box-shadow: 0 16px 40px rgba(45, 225, 171, 0.3), inset 0 1px rgba(255, 255, 255, 0.42);
}

.btn-secondary {
  border-color: rgba(72, 168, 255, 0.3);
  background: linear-gradient(145deg, rgba(58, 135, 255, 0.2), rgba(36, 199, 255, 0.1));
  color: #eaf8ff;
}

.btn-ghost {
  border-color: var(--line);
  background: rgba(255, 255, 255, 0.025);
  color: var(--text-soft);
}

.btn-small {
  min-height: 44px;
  padding: 10px 14px;
  font-size: 0.9rem;
}

.btn svg,
.text-link svg {
  width: 17px;
  height: 17px;
}

.telegram-logo {
  display: block;
  width: 20px;
  height: 20px;
  flex: 0 0 auto;
  object-fit: contain;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 16px;
  color: #9cecff;
  font-size: 0.76rem;
  font-weight: 850;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--mint);
  box-shadow: 0 0 0 5px rgba(92, 233, 189, 0.1);
}

.hero {
  position: relative;
  overflow: hidden;
  padding: 58px 0 50px;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 5% auto auto 55%;
  width: 460px;
  height: 460px;
  border-radius: 50%;
  background: rgba(26, 142, 255, 0.11);
  filter: blur(90px);
  pointer-events: none;
}

.hero-grid {
  position: relative;
  display: grid;
  align-items: center;
  gap: 42px;
}

.hero h1,
.page-hero h1 {
  max-width: 820px;
  margin-bottom: 20px;
  color: var(--text);
  font-size: clamp(2.45rem, 11vw, 4.9rem);
  line-height: 1.01;
  letter-spacing: -0.062em;
}

/* The home message remains prominent without forcing an oversized mobile hero. */
.hero h1 {
  max-width: 760px;
  font-size: clamp(2.2rem, 9vw, 4.35rem);
}

.hero h1 span,
.page-hero h1 span {
  background: linear-gradient(100deg, #eefaff 0%, #65dcff 48%, #65f1c5 100%);
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
}

.hero .lede,
.page-hero .lede {
  max-width: 650px;
  margin-bottom: 28px;
  color: var(--muted);
  font-size: clamp(1.03rem, 2.6vw, 1.21rem);
  line-height: 1.7;
}

.hero-actions,
.page-actions {
  display: grid;
  gap: 10px;
}

.hero-start-note {
  display: flex;
  max-width: 610px;
  align-items: center;
  gap: 11px;
  margin-top: 18px;
  padding: 11px 13px;
  border: 1px solid rgba(66, 216, 255, 0.18);
  border-radius: 13px;
  background: rgba(31, 123, 179, 0.08);
}

.hero-start-note > span {
  display: grid;
  width: 28px;
  height: 28px;
  flex: 0 0 auto;
  place-items: center;
  border-radius: 9px;
  background: linear-gradient(135deg, var(--cyan), var(--blue));
  color: #04111d;
  font-size: 0.78rem;
  font-weight: 900;
}

.hero-start-note p {
  margin: 0;
  color: var(--text-soft);
  font-size: 0.86rem;
  line-height: 1.45;
}

.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 9px 18px;
  margin-top: 24px;
  color: var(--muted);
  font-size: 0.86rem;
  font-weight: 650;
}

.hero-trust span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
}

.hero-trust span::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--cyan);
}

.hero-visual {
  position: relative;
  min-height: 300px;
  border: 1px solid rgba(85, 202, 255, 0.17);
  border-radius: 30px;
  background:
    linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    radial-gradient(circle at 50% 55%, rgba(48, 171, 255, 0.14), transparent 55%),
    linear-gradient(145deg, rgba(13, 33, 52, 0.86), rgba(5, 13, 22, 0.72));
  background-size: 36px 36px, 36px 36px, auto, auto;
  box-shadow: var(--shadow), inset 0 1px rgba(255, 255, 255, 0.05);
}

.hero-visual::after {
  content: "";
  position: absolute;
  z-index: 0;
  right: 12%;
  bottom: 5%;
  left: 12%;
  height: 16%;
  border-radius: 50%;
  background: rgba(37, 174, 255, 0.28);
  filter: blur(30px);
}

.hero-art {
  position: absolute;
  z-index: 1;
  top: 50%;
  left: 50%;
  width: 112%;
  max-width: none;
  height: auto;
  min-height: 0;
  object-fit: contain;
  padding: 0;
  transform: translate(-50%, -50%);
}

.visual-chip {
  position: absolute;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 8px 11px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  background: rgba(8, 22, 34, 0.8);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  color: #dff7ff;
  font-size: 0.75rem;
  font-weight: 750;
  backdrop-filter: blur(12px);
}

.visual-chip::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--mint);
  box-shadow: 0 0 12px rgba(92, 233, 189, 0.7);
}

.visual-chip.one { top: 8%; left: 6%; }
.visual-chip.two { right: 5%; bottom: 8%; }

.hero-visual-authentic {
  display: grid;
  min-height: 405px;
  grid-template-rows: auto minmax(0, 1fr) auto;
  gap: 12px;
  overflow: hidden;
  padding: 15px 14px 12px;
  background:
    radial-gradient(circle at 52% 45%, rgba(42, 171, 238, 0.18), transparent 48%),
    linear-gradient(155deg, rgba(15, 37, 58, 0.98), rgba(4, 13, 22, 0.96));
}

.hero-visual-authentic::after {
  right: 18%;
  bottom: 15%;
  left: 18%;
  height: 22%;
  opacity: 0.55;
}

.visual-toolbar,
.visual-toolbar > span,
.visual-source {
  position: relative;
  z-index: 3;
}

.visual-toolbar {
  display: flex;
  min-height: 38px;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 8px 10px;
  border: 1px solid rgba(155, 214, 244, 0.13);
  border-radius: 12px;
  background: rgba(2, 10, 17, 0.6);
  color: #8ca7b9;
  font-size: 0.68rem;
  font-weight: 750;
}

.visual-toolbar > span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
}

.visual-toolbar > span:first-child {
  color: #e8f8ff;
}

.visual-toolbar .telegram-logo {
  width: 18px;
  height: 18px;
}

.telegram-screen-stack {
  position: relative;
  z-index: 2;
  display: grid;
  min-height: 0;
  grid-template-columns: 0.85fr 1fr 0.85fr;
  align-items: end;
  gap: 7px;
  padding: 4px 2px 0;
}

.telegram-screen {
  position: relative;
  overflow: hidden;
  margin: 0;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 15px;
  background: #eef5f8;
  box-shadow: 0 18px 34px rgba(0, 0, 0, 0.36);
}

.telegram-screen::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  box-shadow: inset 0 1px rgba(255, 255, 255, 0.55);
}

.telegram-screen img {
  display: block;
  width: 100%;
  height: 245px;
  object-fit: cover;
  object-position: top;
}

.telegram-screen figcaption {
  display: grid;
  gap: 2px;
  padding: 9px 10px 10px;
  background: #071623;
  color: #eaf8ff;
  font-size: 0.68rem;
  line-height: 1.25;
}

.telegram-screen figcaption span {
  color: #7f9bad;
  font-size: 0.61rem;
}

.screen-account {
  transform: translateY(10px) rotate(-2.5deg);
}

.screen-channel {
  z-index: 2;
  transform: translateY(-2px);
}

.screen-group {
  transform: translateY(10px) rotate(2.5deg);
}

.visual-source {
  margin: 0;
  color: #708a9d;
  font-size: 0.62rem;
  line-height: 1.4;
  text-align: center;
}

.visual-source a {
  color: #9fdff7;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.flow-strip {
  padding: 0 0 24px;
}

.flow-shell {
  display: grid;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: rgba(10, 26, 41, 0.72);
  box-shadow: var(--shadow-soft);
}

.flow-step {
  position: relative;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px;
  border-bottom: 1px solid var(--line);
}

.flow-step:last-child {
  border-bottom: 0;
}

.flow-step b {
  display: block;
  font-size: 0.92rem;
}

.flow-step span:last-child {
  color: var(--muted);
  font-size: 0.78rem;
}

.flow-number {
  display: grid;
  width: 32px;
  height: 32px;
  flex: 0 0 auto;
  place-items: center;
  border: 1px solid rgba(77, 209, 255, 0.28);
  border-radius: 10px;
  background: rgba(55, 158, 255, 0.1);
  color: var(--cyan);
  font-size: 0.78rem;
  font-weight: 900;
}

.section {
  position: relative;
  padding: 76px 0;
}

.section-soft {
  border-block: 1px solid rgba(166, 204, 231, 0.08);
  background: rgba(9, 23, 36, 0.56);
}

.section-heading {
  display: grid;
  gap: 12px;
  margin-bottom: 30px;
}

.section-heading.centered {
  max-width: 710px;
  margin-inline: auto;
  text-align: center;
}

.section-heading.centered .eyebrow {
  justify-content: center;
}

.section-heading h2,
.content-section h2,
.cta-band h2,
.request-intro h2 {
  margin-bottom: 0;
  font-size: clamp(1.85rem, 7vw, 3.05rem);
  line-height: 1.12;
  letter-spacing: -0.045em;
}

.section-heading p {
  max-width: 650px;
  margin-bottom: 0;
  color: var(--muted);
}

.section-heading.centered p {
  margin-inline: auto;
}

.service-grid,
.benefit-grid,
.article-grid,
.use-grid,
.metric-grid {
  display: grid;
  gap: 14px;
}

.service-card,
.benefit-card,
.article-card,
.content-card,
.legal-card,
.metric-card {
  border: 1px solid var(--line);
  background: linear-gradient(145deg, rgba(16, 35, 56, 0.88), rgba(8, 21, 34, 0.88));
  box-shadow: inset 0 1px rgba(255, 255, 255, 0.035);
}

.service-card {
  position: relative;
  display: flex;
  min-height: 290px;
  flex-direction: column;
  overflow: hidden;
  padding: 22px;
  border-radius: var(--radius-lg);
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.service-card-labels {
  position: relative;
  z-index: 2;
  display: flex;
  min-height: 31px;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 12px;
}

.service-card-labels .service-tag {
  position: static;
}

.platform-label {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: #9db4c4;
  font-size: 0.67rem;
  font-weight: 750;
}

.platform-label .telegram-logo {
  width: 17px;
  height: 17px;
}

.service-card:hover {
  transform: translateY(-5px);
  border-color: rgba(66, 216, 255, 0.3);
  box-shadow: var(--shadow-soft);
}

.service-card::after {
  content: "";
  position: absolute;
  top: -80px;
  right: -80px;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  background: rgba(42, 166, 255, 0.12);
  filter: blur(20px);
}

.service-icon,
.benefit-icon,
.article-icon,
.feature-icon {
  display: grid;
  width: 48px;
  height: 48px;
  flex: 0 0 auto;
  place-items: center;
  border: 1px solid rgba(71, 199, 255, 0.23);
  border-radius: 15px;
  background: linear-gradient(145deg, rgba(60, 152, 255, 0.19), rgba(41, 217, 225, 0.07));
  color: var(--cyan);
  box-shadow: inset 0 1px rgba(255, 255, 255, 0.08);
}

.service-icon svg,
.benefit-icon svg,
.article-icon svg,
.feature-icon svg {
  width: 24px;
  height: 24px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.service-card h3 {
  margin: 18px 0 8px;
  font-size: 1.32rem;
  letter-spacing: -0.025em;
}

.service-card p {
  margin-bottom: 18px;
  color: var(--muted);
}

.service-card .service-price {
  display: flex;
  align-items: baseline;
  gap: 7px;
  margin: 0 0 10px;
  color: var(--text-soft);
}

.service-price span,
.service-price small {
  color: var(--muted);
  font-size: 0.73rem;
  font-weight: 750;
  text-transform: uppercase;
}

.service-price strong {
  color: var(--cyan);
  font-size: 1.45rem;
  letter-spacing: -0.04em;
}

.service-card > .text-link {
  margin-top: auto;
}

.service-card .service-fit {
  margin-bottom: 9px;
  color: var(--text-soft);
  font-size: 0.87rem;
}

.service-fit strong {
  color: var(--cyan);
}

.service-card-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
  margin-top: auto;
  padding-top: 4px;
}

.service-card-actions .btn {
  flex: 1 1 145px;
}

.service-guide {
  display: grid;
  gap: 15px;
  margin-top: 18px;
  padding: 18px;
  border: 1px solid rgba(82, 211, 255, 0.2);
  border-radius: var(--radius-lg);
  background: rgba(8, 26, 41, 0.72);
}

.service-guide-title span,
.service-guide-title strong {
  display: block;
}

.service-guide-title span {
  color: var(--cyan);
  font-size: 0.76rem;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.service-guide-title strong {
  margin-top: 2px;
  font-size: 1rem;
}

.service-guide-options {
  display: grid;
  gap: 8px;
}

.service-guide-options span {
  padding: 9px 11px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.035);
  color: var(--muted);
  font-size: 0.84rem;
}

.service-guide-options b {
  color: var(--text-soft);
}

.service-tag {
  position: absolute;
  z-index: 2;
  top: 18px;
  right: 18px;
  padding: 6px 9px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: #b8c9d5;
  font-size: 0.7rem;
  font-weight: 800;
  text-transform: uppercase;
}

.text-link {
  display: inline-flex;
  width: fit-content;
  align-items: center;
  gap: 7px;
  color: #8feaff;
  font-weight: 800;
}

.text-link:hover {
  color: var(--mint-2);
}

.steps-grid {
  display: grid;
  gap: 14px;
}

.step-card {
  position: relative;
  padding: 22px 20px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: rgba(10, 26, 41, 0.7);
}

.step-number {
  display: inline-flex;
  margin-bottom: 28px;
  color: var(--cyan);
  font-size: 0.75rem;
  font-weight: 900;
  letter-spacing: 0.12em;
}

.step-card h3 {
  margin-bottom: 7px;
  font-size: 1.13rem;
}

.step-card p {
  color: var(--muted);
  font-size: 0.94rem;
}

.request-layout {
  display: grid;
  gap: 28px;
}

.request-intro p {
  margin: 14px 0 24px;
  color: var(--muted);
}

.check-list,
.content-list,
.policy-list {
  display: grid;
  gap: 10px;
  padding: 0;
  list-style: none;
}

.check-list li,
.content-list li {
  position: relative;
  padding-left: 27px;
  color: var(--text-soft);
}

.check-list li::before,
.content-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--mint);
  font-weight: 900;
}

.request-card {
  padding: 20px;
  border: 1px solid rgba(81, 203, 255, 0.23);
  border-radius: var(--radius-xl);
  background: linear-gradient(150deg, rgba(18, 43, 67, 0.95), rgba(7, 18, 30, 0.96));
  box-shadow: var(--shadow);
}

.request-progress {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 6px;
  margin-bottom: 24px;
}

.progress-item {
  display: grid;
  gap: 7px;
  color: #7f97a9;
  font-size: 0.7rem;
  font-weight: 800;
  text-transform: uppercase;
}

.progress-item::before {
  content: "";
  height: 4px;
  border-radius: 99px;
  background: rgba(255, 255, 255, 0.08);
}

.progress-item.active {
  color: #d9f7ff;
}

.progress-item.active::before {
  background: linear-gradient(90deg, var(--blue), var(--cyan));
}

.progress-item.complete {
  color: var(--mint-2);
}

.progress-item.complete::before {
  background: var(--mint);
}

.field-label,
.field label {
  display: block;
  margin-bottom: 8px;
  color: var(--text-soft);
  font-size: 0.84rem;
  font-weight: 800;
}

.service-choice {
  display: grid;
  gap: 8px;
  margin-bottom: 20px;
}

.choice-button {
  display: flex;
  min-height: 64px;
  align-items: center;
  gap: 11px;
  padding: 11px 13px;
  border: 1px solid var(--line);
  border-radius: 13px;
  background: rgba(2, 10, 17, 0.34);
  cursor: pointer;
  text-align: left;
}

.choice-button:hover,
.choice-button[aria-pressed="true"] {
  border-color: rgba(65, 212, 255, 0.5);
  background: rgba(49, 149, 255, 0.1);
}

.choice-button[aria-pressed="true"] {
  box-shadow: inset 0 0 0 1px rgba(65, 212, 255, 0.12);
}

.choice-icon {
  display: grid;
  width: 35px;
  height: 35px;
  flex: 0 0 auto;
  place-items: center;
  border-radius: 10px;
  background: rgba(70, 177, 255, 0.13);
  color: var(--cyan);
}

.choice-icon svg {
  width: 19px;
  height: 19px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
}

.choice-button b,
.choice-button small {
  display: block;
}

.choice-button b {
  font-size: 0.88rem;
}

.choice-button small {
  margin-top: 1px;
  color: var(--muted);
  font-size: 0.72rem;
}

.request-details {
  padding-top: 4px;
}

.request-step-heading {
  display: flex;
  align-items: flex-start;
  gap: 11px;
  margin: 4px 0 16px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
}

.request-step-heading > span {
  flex: 0 0 auto;
  padding: 4px 8px;
  border-radius: 8px;
  background: rgba(66, 216, 255, 0.1);
  color: var(--cyan);
  font-size: 0.72rem;
  font-weight: 900;
  text-transform: uppercase;
}

.request-step-heading h3 {
  margin: 0 0 2px;
  font-size: 1.08rem;
}

.request-step-heading p {
  margin: 0;
  color: var(--muted);
  font-size: 0.8rem;
}

.form-grid {
  display: grid;
  gap: 14px;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  min-height: 50px;
  padding: 11px 12px;
  border: 1px solid var(--line);
  border-radius: 11px;
  outline: 0;
  background: #091725;
  color: var(--text);
  transition: border-color 160ms ease, box-shadow 160ms ease;
}

.field textarea {
  min-height: 96px;
  resize: vertical;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: rgba(66, 216, 255, 0.58);
  box-shadow: 0 0 0 4px rgba(66, 216, 255, 0.08);
}

.field input::placeholder,
.field textarea::placeholder {
  color: #60788b;
}

.optional-fields {
  border: 1px solid var(--line);
  border-radius: 12px;
  background: rgba(3, 13, 22, 0.26);
}

.optional-fields summary {
  padding: 12px 13px;
  cursor: pointer;
  color: var(--text-soft);
  font-size: 0.84rem;
  font-weight: 800;
}

.optional-fields[open] summary {
  border-bottom: 1px solid var(--line);
}

.optional-fields .field {
  padding: 13px;
}

.price-estimate {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin-top: 14px;
  padding: 13px;
  border: 1px solid rgba(66, 216, 255, 0.18);
  border-radius: 13px;
  background: rgba(2, 11, 19, 0.38);
}

.price-estimate > div {
  display: grid;
  gap: 4px;
}

.price-estimate span {
  color: var(--muted);
  font-size: 0.74rem;
  font-weight: 750;
}

.price-estimate strong {
  color: #eafaff;
  font-size: 0.94rem;
}

.price-estimate p {
  grid-column: 1 / -1;
  margin: 2px 0 0;
  padding-top: 10px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.76rem;
  line-height: 1.55;
}

.request-review-action {
  display: grid;
  gap: 7px;
  margin-top: 16px;
}

.request-review-action small,
.send-note {
  color: var(--muted);
  font-size: 0.75rem;
}

.form-note {
  margin: 14px 0 0;
  color: var(--muted);
  font-size: 0.78rem;
}

.request-summary {
  margin-top: 18px;
  padding: 16px;
  border: 1px solid rgba(92, 233, 189, 0.19);
  border-radius: 13px;
  background: rgba(33, 147, 117, 0.075);
}

.summary-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 10px;
  font-size: 0.78rem;
  font-weight: 850;
  text-transform: uppercase;
}

.summary-status {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--mint-2);
}

.summary-status::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--mint);
}

.request-summary pre {
  margin: 0;
  overflow: auto;
  color: #c7d6e0;
  font-family: inherit;
  font-size: 0.82rem;
  line-height: 1.6;
  white-space: pre-wrap;
}

.request-actions {
  display: grid;
  gap: 9px;
  margin-top: 15px;
}

.request-actions .send-note {
  align-self: center;
}

.copy-feedback {
  min-height: 22px;
  margin: 9px 0 0;
  color: var(--mint-2);
  font-size: 0.78rem;
}

.benefit-card {
  display: flex;
  gap: 15px;
  padding: 20px;
  border-radius: var(--radius-lg);
}

.benefit-card h3 {
  margin-bottom: 5px;
  font-size: 1.04rem;
}

.benefit-card p {
  color: var(--muted);
  font-size: 0.9rem;
}

.privacy-callout {
  display: grid;
  gap: 22px;
  align-items: center;
  padding: 26px;
  border: 1px solid rgba(82, 211, 255, 0.2);
  border-radius: var(--radius-xl);
  background:
    radial-gradient(circle at 100% 0%, rgba(38, 167, 255, 0.14), transparent 20rem),
    linear-gradient(145deg, rgba(15, 37, 58, 0.9), rgba(8, 20, 33, 0.9));
}

.privacy-callout h2 {
  margin-bottom: 10px;
  font-size: clamp(1.7rem, 6vw, 2.6rem);
  letter-spacing: -0.04em;
}

.privacy-callout p {
  color: var(--muted);
}

.privacy-points {
  display: grid;
  gap: 10px;
}

.privacy-points span {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--text-soft);
  font-weight: 700;
}

.privacy-points span::before {
  content: "";
  width: 9px;
  height: 9px;
  border: 2px solid var(--cyan);
  border-radius: 50%;
}

.article-card {
  display: flex;
  min-height: 280px;
  flex-direction: column;
  overflow: hidden;
  padding: 0;
  border-radius: var(--radius-lg);
  transition: transform 180ms ease, border-color 180ms ease;
}

.article-card-body {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 22px;
}

.article-image {
  display: block;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
  background: #0c2033;
}

.article-image img {
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  object-position: center 18%;
  transition: transform 300ms ease;
}

.article-card:hover .article-image img {
  transform: scale(1.025);
}

.article-card:hover {
  transform: translateY(-4px);
  border-color: rgba(66, 216, 255, 0.27);
}

.article-meta,
.meta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 15px;
  color: #7991a4;
  font-size: 0.76rem;
  font-weight: 700;
}

.article-card h3 {
  margin: 22px 0 8px;
  font-size: 1.18rem;
  line-height: 1.35;
}

.article-card p {
  margin-bottom: 20px;
  color: var(--muted);
  font-size: 0.9rem;
}

.article-card .text-link {
  margin-top: auto;
}

.faq-layout {
  display: grid;
  gap: 28px;
}

.faq-list {
  display: grid;
  gap: 10px;
}

.faq-item {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: rgba(11, 27, 43, 0.78);
}

.faq-item summary {
  position: relative;
  padding: 17px 48px 17px 17px;
  cursor: pointer;
  font-weight: 800;
  list-style: none;
}

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

.faq-item summary::after {
  content: "+";
  position: absolute;
  top: 50%;
  right: 17px;
  display: grid;
  width: 25px;
  height: 25px;
  place-items: center;
  transform: translateY(-50%);
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--cyan);
}

.faq-item[open] summary::after {
  content: "−";
}

.faq-item p {
  padding: 0 17px 18px;
  color: var(--muted);
}

.cta-band {
  display: grid;
  gap: 24px;
  align-items: center;
  padding: 26px;
  border: 1px solid rgba(78, 207, 255, 0.22);
  border-radius: var(--radius-xl);
  background:
    linear-gradient(110deg, rgba(40, 125, 255, 0.15), transparent 52%),
    linear-gradient(145deg, #102a42, #091725);
  box-shadow: var(--shadow-soft);
}

.cta-band p {
  max-width: 640px;
  margin: 10px 0 0;
  color: var(--muted);
}

.page-hero {
  position: relative;
  overflow: hidden;
  padding: 64px 0 54px;
  border-bottom: 1px solid rgba(166, 204, 231, 0.08);
}

.page-hero::after {
  content: "";
  position: absolute;
  z-index: -1;
  top: -220px;
  right: -120px;
  width: 520px;
  height: 520px;
  border-radius: 50%;
  background: rgba(31, 151, 255, 0.1);
  filter: blur(90px);
}

.page-hero h1 {
  max-width: 920px;
  font-size: clamp(2.25rem, 10vw, 4.25rem);
}

.breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin-bottom: 23px;
  color: #748da0;
  font-size: 0.78rem;
}

.breadcrumbs a:hover {
  color: var(--cyan);
}

.breadcrumbs span[aria-hidden="true"] {
  opacity: 0.55;
}

.page-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 24px;
}

.page-badge,
.pill {
  display: inline-flex;
  align-items: center;
  padding: 7px 10px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.025);
  color: #b7c9d6;
  font-size: 0.76rem;
  font-weight: 750;
}

.content-section {
  padding: 64px 0;
}

.content-layout {
  display: grid;
  gap: 26px;
}

.prose {
  min-width: 0;
}

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

.prose h2 {
  margin: 48px 0 15px;
  font-size: clamp(1.55rem, 5vw, 2.15rem);
  line-height: 1.22;
  letter-spacing: -0.035em;
}

.prose h3 {
  margin: 30px 0 10px;
  font-size: 1.2rem;
  letter-spacing: -0.02em;
}

.prose p,
.prose li {
  color: #b7c8d4;
}

.prose a {
  color: #7ee6ff;
  text-decoration: underline;
  text-decoration-color: rgba(126, 230, 255, 0.35);
  text-underline-offset: 3px;
}

.prose ul,
.prose ol {
  display: grid;
  gap: 9px;
  padding-left: 22px;
}

.prose strong {
  color: var(--text-soft);
}

.prose .lead {
  color: #d6e2e9;
  font-size: 1.07rem;
}

.content-card,
.legal-card {
  padding: 22px;
  border-radius: var(--radius-lg);
}

.content-card h3,
.legal-card h2 {
  margin-bottom: 8px;
}

.content-card p,
.legal-card p {
  color: var(--muted);
}

.sidebar {
  display: grid;
  height: fit-content;
  gap: 14px;
}

.sidebar-card {
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: rgba(11, 27, 43, 0.82);
}

.sidebar-card h2,
.sidebar-card h3 {
  margin-bottom: 8px;
  font-size: 1.07rem;
}

.sidebar-card p {
  color: var(--muted);
  font-size: 0.9rem;
}

.sidebar-links {
  display: grid;
  gap: 4px;
  margin-top: 12px;
}

.sidebar-links a {
  padding: 9px 10px;
  border-radius: 9px;
  color: #b9d0df;
  font-size: 0.88rem;
  font-weight: 700;
}

.sidebar-links a:hover {
  background: rgba(73, 175, 255, 0.08);
  color: var(--cyan);
}

.use-card,
.metric-card {
  padding: 20px;
  border-radius: var(--radius-lg);
}

.use-card {
  border: 1px solid var(--line);
  background: rgba(11, 27, 43, 0.72);
}

.use-card h3 {
  margin: 12px 0 7px;
  font-size: 1.06rem;
}

.use-card p,
.metric-card p {
  color: var(--muted);
  font-size: 0.9rem;
}

.metric-card b {
  display: block;
  margin-bottom: 5px;
  color: var(--cyan);
  font-size: 0.78rem;
  text-transform: uppercase;
}

.comparison-table {
  width: 100%;
  margin: 24px 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-collapse: separate;
  border-spacing: 0;
  border-radius: 14px;
  font-size: 0.87rem;
}

.comparison-table th,
.comparison-table td {
  padding: 13px 12px;
  border-bottom: 1px solid var(--line);
  text-align: left;
  vertical-align: top;
}

.comparison-table th {
  background: rgba(56, 153, 255, 0.09);
  color: #dff6ff;
}

.comparison-table td {
  color: var(--muted);
}

.comparison-table tr:last-child td {
  border-bottom: 0;
}

.table-scroll {
  max-width: 100%;
  overflow-x: auto;
}

.service-editorial-image,
.article-hero-image,
.inventory-image {
  position: relative;
  overflow: hidden;
  margin: 0 0 28px;
  border: 1px solid rgba(79, 200, 255, 0.2);
  border-radius: var(--radius-lg);
  background: #0b1c2d;
  box-shadow: 0 22px 50px rgba(0, 0, 0, 0.22);
}

.service-editorial-image img,
.inventory-image img {
  display: block;
  width: auto;
  max-width: 100%;
  height: min(68vh, 590px);
  margin-inline: auto;
  padding: 58px 18px 18px;
  object-fit: contain;
}

.article-hero-image img {
  display: block;
  width: auto;
  max-width: 100%;
  height: min(68vh, 590px);
  margin-inline: auto;
  padding: 58px 18px 18px;
  object-fit: contain;
}

.official-media-badge {
  position: absolute;
  z-index: 2;
  top: 14px;
  left: 14px;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 7px 10px;
  border: 1px solid rgba(74, 171, 225, 0.28);
  border-radius: 999px;
  background: rgba(4, 18, 29, 0.88);
  color: #d9f3ff;
  font-size: 0.69rem;
  font-weight: 780;
  backdrop-filter: blur(10px);
}

.official-media-badge .telegram-logo {
  width: 18px;
  height: 18px;
}

.service-editorial-image figcaption,
.article-hero-image figcaption,
.inventory-image figcaption {
  padding: 10px 13px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.76rem;
}

.inventory-catalog {
  margin: 32px 0;
  padding: 18px;
  border: 1px solid rgba(72, 200, 255, 0.22);
  border-radius: var(--radius-xl);
  background:
    radial-gradient(circle at 100% 0%, rgba(63, 190, 255, 0.1), transparent 22rem),
    rgba(8, 23, 37, 0.78);
}

.inventory-catalog-head {
  display: grid;
  gap: 12px;
  margin-bottom: 18px;
}

.inventory-catalog-head h2,
.inventory-catalog-head h3 {
  margin: 4px 0 5px;
}

.inventory-catalog-head p {
  margin: 0;
  color: var(--muted);
}

.inventory-kicker {
  color: var(--cyan);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.inventory-table {
  width: 100%;
  min-width: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-collapse: separate;
  border-spacing: 0;
  border-radius: 14px;
  font-size: 0.88rem;
}

.inventory-table caption {
  padding: 0 0 10px;
  color: var(--text-soft);
  font-weight: 800;
  text-align: left;
}

.inventory-table th,
.inventory-table td {
  padding: 12px;
  border-bottom: 1px solid var(--line);
  text-align: left;
  vertical-align: middle;
}

.inventory-table thead th {
  background: rgba(57, 161, 255, 0.11);
  color: #e5f8ff;
}

.inventory-table tbody th {
  color: var(--text);
}

.inventory-table tbody td {
  color: var(--muted);
}

.inventory-table tbody tr:last-child th,
.inventory-table tbody tr:last-child td {
  border-bottom: 0;
}

.inventory-table tbody tr:target {
  background: rgba(66, 216, 255, 0.08);
}

.inventory-table a {
  color: var(--cyan);
  font-weight: 850;
  white-space: nowrap;
}

.stock-status {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: #b9e7d8;
  white-space: nowrap;
}

.stock-status > span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--mint);
  box-shadow: 0 0 0 4px rgba(92, 233, 189, 0.1);
}

.stock-status-check {
  color: #ffe2a8;
}

.stock-status-check > span {
  background: #ffbf5b;
  box-shadow: 0 0 0 4px rgba(255, 191, 91, 0.1);
}

.inventory-note {
  margin: 14px 0 0;
  color: var(--muted);
  font-size: 0.8rem;
}

.inventory-note strong {
  color: var(--text-soft);
}

@media (max-width: 599px) {
  .hero-visual-authentic {
    min-height: 360px;
    padding: 12px;
    border-radius: 22px;
  }

  .visual-toolbar {
    justify-content: flex-start;
  }

  .visual-toolbar > span:last-child {
    display: none;
  }

  .telegram-screen-stack {
    display: block;
    padding: 0 22px;
  }

  .telegram-screen {
    max-width: 270px;
    margin-inline: auto;
  }

  .screen-account {
    transform: none;
  }

  .screen-channel,
  .screen-group {
    display: none;
  }

  .telegram-screen img {
    height: 250px;
  }

  .price-estimate {
    grid-template-columns: 1fr;
  }

  .price-estimate p {
    grid-column: 1;
  }

  .inventory-table {
    font-size: 0.81rem;
  }

  .inventory-table th,
  .inventory-table td {
    padding: 10px 8px;
  }

  .inventory-table th:nth-child(3),
  .inventory-table td:nth-child(3) {
    display: none;
  }
}

.timeline {
  display: grid;
  gap: 12px;
  counter-reset: process;
}

.timeline article {
  position: relative;
  padding: 20px 18px 20px 62px;
  border: 1px solid var(--line);
  border-radius: 15px;
  background: rgba(11, 27, 43, 0.7);
  counter-increment: process;
}

.timeline article::before {
  content: counter(process, decimal-leading-zero);
  position: absolute;
  top: 20px;
  left: 18px;
  color: var(--cyan);
  font-size: 0.78rem;
  font-weight: 900;
}

.timeline h2,
.timeline h3 {
  margin-bottom: 6px;
  font-size: 1.12rem;
}

.timeline p {
  color: var(--muted);
}

.notice {
  padding: 17px 18px;
  border-left: 3px solid var(--cyan);
  border-radius: 0 12px 12px 0;
  background: rgba(38, 148, 222, 0.08);
  color: #bdd1df;
}

.notice.warning {
  border-left-color: var(--warning);
  background: rgba(255, 194, 79, 0.07);
}

.source-note {
  margin: 26px 0;
  padding: 17px 18px;
  border: 1px solid rgba(79, 200, 255, 0.2);
  border-left: 3px solid var(--cyan);
  border-radius: 0 12px 12px 0;
  background: rgba(38, 148, 222, 0.08);
  color: #bdd1df;
}

.source-note a {
  color: #8ee7ff;
  font-weight: 800;
}

.article-header {
  max-width: 900px;
}

.article-header h1 {
  margin-bottom: 18px;
}

.article-body {
  max-width: 800px;
}

.article-toc {
  margin: 25px 0 34px;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 15px;
  background: rgba(11, 27, 43, 0.7);
}

.article-toc b {
  display: block;
  margin-bottom: 9px;
}

.article-toc ol {
  margin: 0;
}

.policy-stack {
  display: grid;
  gap: 14px;
}

.legal-card h2 {
  font-size: 1.3rem;
}

.legal-card h3 {
  margin: 24px 0 7px;
  font-size: 1.03rem;
}

.sitemap-group {
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: rgba(11, 27, 43, 0.7);
}

.sitemap-group h2 {
  margin-bottom: 12px;
  font-size: 1.2rem;
}

.sitemap-group ul {
  display: grid;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.sitemap-group a {
  color: #aeefff;
}

.sitemap-group a:hover {
  color: var(--mint-2);
}

.route-grid,
.quote-grid,
.availability-grid,
.identity-panel,
.timeline-grid,
.year-bands {
  display: grid;
  gap: 14px;
}

.route-card,
.quote-grid article,
.availability-grid article,
.identity-panel > div,
.timeline-grid article,
.year-bands article {
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: linear-gradient(145deg, rgba(16, 35, 56, 0.88), rgba(8, 21, 34, 0.88));
  box-shadow: inset 0 1px rgba(255, 255, 255, 0.035);
}

.route-card {
  position: relative;
  min-height: 260px;
  overflow: hidden;
  padding: 24px;
}

.route-card::after {
  content: "";
  position: absolute;
  top: -70px;
  right: -70px;
  width: 170px;
  height: 170px;
  border-radius: 50%;
  background: rgba(50, 170, 255, 0.1);
  filter: blur(18px);
  pointer-events: none;
}

.route-card > span,
.identity-label,
.proof-kicker {
  color: var(--cyan);
  font-size: 0.7rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.route-card h3 {
  max-width: 290px;
  margin: 32px 0 9px;
  font-size: 1.25rem;
  line-height: 1.25;
}

.route-card p {
  color: var(--muted);
  font-size: 0.9rem;
}

.route-card > div {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 22px;
}

.route-card a {
  position: relative;
  z-index: 1;
  padding: 7px 10px;
  border: 1px solid var(--line);
  border-radius: 9px;
  color: #bdefff;
  font-size: 0.78rem;
  font-weight: 800;
}

.route-card a:hover {
  border-color: var(--line-strong);
  background: rgba(66, 216, 255, 0.06);
}

.proof-section {
  display: grid;
  gap: 28px;
  align-items: center;
}

.proof-copy h2 {
  max-width: 700px;
  margin-bottom: 15px;
  font-size: clamp(1.9rem, 7vw, 3.25rem);
  line-height: 1.12;
  letter-spacing: -0.047em;
}

.proof-copy > p {
  max-width: 670px;
  color: var(--muted);
}

.proof-panel,
.proof-card {
  padding: 22px;
  border: 1px solid rgba(92, 233, 189, 0.22);
  border-radius: var(--radius-xl);
  background: linear-gradient(150deg, rgba(17, 46, 61, 0.92), rgba(7, 20, 31, 0.96));
  box-shadow: var(--shadow-soft), inset 0 1px rgba(255, 255, 255, 0.05);
}

.proof-panel-head,
.proof-card,
.author-box {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.verified-dot {
  display: inline-block;
  width: 11px;
  height: 11px;
  flex: 0 0 auto;
  margin-top: 5px;
  border-radius: 50%;
  background: var(--mint);
  box-shadow: 0 0 0 6px rgba(92, 233, 189, 0.1), 0 0 24px rgba(92, 233, 189, 0.48);
}

.proof-panel-head b,
.proof-panel-head span,
.contact-directory b,
.contact-directory small,
.author-box strong,
.author-box span {
  display: block;
}

.proof-panel-head span,
.author-box span {
  margin-top: 3px;
  color: var(--muted);
  font-size: 0.8rem;
}

.author-box a {
  color: var(--cyan);
  font-weight: 800;
  text-decoration: underline;
  text-decoration-color: rgba(66, 216, 255, 0.35);
  text-underline-offset: 3px;
}

.feature-icon .telegram-logo {
  width: 24px;
  height: 24px;
}

.proof-panel dl {
  display: grid;
  gap: 0;
  margin: 20px 0;
}

.proof-panel dl > div {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 10px 0;
  border-bottom: 1px solid var(--line);
}

.proof-panel dt {
  color: var(--muted);
}

.proof-panel dd {
  margin: 0;
  color: var(--text-soft);
  font-weight: 750;
  text-align: right;
}

.proof-panel dd a,
.growth-prose a:not(.btn) {
  color: #9eeaff;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

.growth-prose > h2,
.article-prose > h2 {
  scroll-margin-top: 108px;
}

.quote-grid,
.availability-grid,
.identity-panel,
.timeline-grid,
.year-bands {
  margin: 24px 0;
}

.quote-grid article,
.availability-grid article,
.identity-panel > div,
.timeline-grid article,
.year-bands article {
  padding: 20px;
}

.quote-grid article > span,
.timeline-grid article > span {
  display: grid;
  width: 34px;
  height: 34px;
  margin-bottom: 20px;
  place-items: center;
  border: 1px solid rgba(66, 216, 255, 0.26);
  border-radius: 10px;
  background: rgba(66, 216, 255, 0.08);
  color: var(--cyan);
  font-size: 0.77rem;
  font-weight: 900;
}

.quote-grid h3,
.availability-grid h3,
.timeline-grid h3 {
  margin: 0 0 7px;
  font-size: 1.05rem;
}

.quote-grid p,
.availability-grid p,
.timeline-grid p,
.year-bands p,
.identity-panel p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 0.88rem;
}

.availability-grid .feature-icon {
  margin-bottom: 18px;
}

.availability-grid .text-link {
  margin-top: 16px;
  font-size: 0.83rem;
}

.identity-panel strong {
  display: block;
  margin: 12px 0 2px;
  color: var(--text);
  font-size: 1.12rem;
}

.proof-card {
  margin: 18px 0;
  border-radius: var(--radius-lg);
}

.proof-icon {
  display: grid;
  width: 42px;
  height: 42px;
  flex: 0 0 auto;
  place-items: center;
  border-radius: 13px;
  background: rgba(92, 233, 189, 0.1);
  color: var(--mint);
}

.proof-icon svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
}

.proof-card h3 {
  margin: 5px 0 7px;
}

.proof-card .btn {
  margin-top: 8px;
}

.compact-benefits {
  margin-block: 24px;
}

.stacked-actions {
  display: grid;
  gap: 8px;
  margin-top: 16px;
}

.trust-mini {
  border-color: rgba(92, 233, 189, 0.22);
}

.trust-mini .verified-dot {
  float: left;
  margin: 5px 12px 0 0;
}

.contact-directory,
.year-grid {
  display: grid;
  gap: 10px;
  margin: 24px 0;
}

.contact-directory > a {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 13px;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 15px;
  background: rgba(11, 27, 43, 0.72);
}

.contact-directory > a:hover,
.year-grid > a:hover {
  border-color: var(--line-strong);
  background: rgba(43, 151, 229, 0.1);
}

.contact-directory > a > svg {
  width: 18px;
}

.contact-directory small {
  color: var(--muted);
  font-size: 0.76rem;
}

.year-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.year-grid > a {
  display: grid;
  gap: 2px;
  padding: 13px 12px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: rgba(11, 27, 43, 0.68);
}

.year-grid span {
  color: #dff8ff;
  font-weight: 900;
}

.year-grid small {
  color: var(--muted);
  font-size: 0.68rem;
}

.update-note {
  padding: 14px 16px;
  border: 1px solid rgba(92, 233, 189, 0.16);
  border-radius: 12px;
  background: rgba(92, 233, 189, 0.055);
  color: #b9d3c9;
  font-size: 0.84rem;
}

.request-example {
  max-width: 100%;
  margin: 20px 0;
  overflow-x: auto;
  padding: 18px;
  border: 1px solid rgba(66, 216, 255, 0.18);
  border-radius: 14px;
  background: #071521;
  color: #cce5ef;
  font: 0.84rem/1.7 ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  white-space: pre-wrap;
}

.author-box {
  margin: 0 0 30px;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 15px;
  background: rgba(11, 27, 43, 0.7);
}

.author-box .brand-mark {
  width: 40px;
  height: 40px;
  flex: 0 0 auto;
}

.empty-state {
  padding: 80px 0 100px;
  text-align: center;
}

.error-code {
  margin-bottom: 10px;
  background: linear-gradient(100deg, var(--cyan), var(--blue));
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
  font-size: clamp(5rem, 30vw, 11rem);
  font-weight: 900;
  line-height: 0.9;
  letter-spacing: -0.08em;
}

.empty-state h1 {
  margin-bottom: 10px;
  font-size: clamp(2rem, 8vw, 3.5rem);
  letter-spacing: -0.05em;
}

.empty-state p {
  max-width: 560px;
  margin: 0 auto 25px;
  color: var(--muted);
}

.site-footer {
  padding: 54px 0 94px;
  border-top: 1px solid var(--line);
  background: rgba(3, 10, 18, 0.56);
}

.footer-grid {
  display: grid;
  gap: 34px;
}

.footer-brand p {
  max-width: 410px;
  margin: 16px 0 18px;
  color: var(--muted);
  font-size: 0.92rem;
}

.footer-contact {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.footer-contact a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 7px 10px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: #c2d3de;
  font-size: 0.75rem;
  font-weight: 750;
}

.footer-contact .telegram-logo {
  width: 16px;
  height: 16px;
}

.footer-col b {
  display: block;
  margin-bottom: 12px;
  color: #e9f5fb;
  font-size: 0.85rem;
}

.footer-col a {
  display: block;
  width: fit-content;
  min-height: 44px;
  padding: 11px 0;
  margin: 0;
  color: var(--muted);
  font-size: 0.85rem;
}

.footer-col a:hover {
  color: var(--cyan);
}

.footer-bottom {
  display: grid;
  gap: 12px;
  margin-top: 35px;
  padding-top: 22px;
  border-top: 1px solid var(--line);
  color: #6f8799;
  font-size: 0.74rem;
}

.footer-bottom p {
  margin: 0;
}

.footer-bottom a {
  color: #9fdff7;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.mobile-actions {
  position: fixed;
  z-index: 80;
  right: 10px;
  bottom: 10px;
  left: 10px;
  display: grid;
  grid-template-columns: 1.25fr 1fr;
  gap: 8px;
  padding: 8px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: rgba(5, 14, 23, 0.92);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.42);
  backdrop-filter: blur(16px);
  opacity: 0;
  pointer-events: none;
  transform: translateY(calc(100% + 24px));
  transition: opacity 180ms ease, transform 220ms ease;
}

body.contact-dock-visible .mobile-actions {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.mobile-actions .btn {
  min-height: 44px;
  padding: 10px 12px;
  font-size: 0.81rem;
}

.sr-only {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

[hidden] {
  display: none !important;
}

@media (min-width: 600px) {
  .hero-actions,
  .page-actions,
  .request-actions {
    display: flex;
    flex-wrap: wrap;
  }

  .inventory-catalog {
    padding: 24px;
  }

  .inventory-catalog-head {
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: end;
  }

  .flow-shell {
    grid-template-columns: repeat(2, 1fr);
  }

  .flow-step:nth-child(2) {
    border-right: 0;
  }

  .flow-step:nth-child(-n + 2) {
    border-bottom: 1px solid var(--line);
  }

  .flow-step {
    border-right: 1px solid var(--line);
    border-bottom: 0;
  }

  .flow-step:nth-child(even) {
    border-right: 0;
  }

  .service-grid,
  .benefit-grid,
  .article-grid,
  .use-grid,
  .metric-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

  .route-grid,
  .quote-grid,
  .availability-grid,
  .timeline-grid,
  .year-bands {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .identity-panel {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .contact-directory {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .year-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .service-choice {
    grid-template-columns: repeat(3, 1fr);
  }

  .service-guide {
    grid-template-columns: minmax(180px, 0.7fr) minmax(0, 1.3fr);
    align-items: center;
  }

  .service-guide-options {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

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

  .field-full {
    grid-column: 1 / -1;
  }

  .request-review-action {
    grid-template-columns: max-content 1fr;
    align-items: center;
  }

  .privacy-callout,
  .cta-band {
    padding: 34px;
  }

  .cta-band {
    grid-template-columns: 1fr auto;
  }

  .footer-grid {
    grid-template-columns: 1.5fr 1fr 1fr;
  }

  .footer-brand {
    grid-column: 1 / -1;
  }

  .footer-bottom {
    grid-template-columns: 1fr auto;
    align-items: start;
  }
}

@media (min-width: 900px) {
  .container {
    width: min(calc(100% - 56px), var(--container));
  }

  .narrow {
    width: min(calc(100% - 56px), 850px);
  }

  .nav-shell {
    min-height: 78px;
  }

  .menu-toggle {
    display: none;
  }

  .nav-links {
    position: static;
    display: flex;
    max-height: none;
    align-items: center;
    gap: 2px;
    overflow: visible;
    padding: 0;
    border: 0;
    background: transparent;
    box-shadow: none;
  }

  .nav-links > a:not(.btn),
  .nav-dropdown-toggle {
    width: auto;
    min-height: 42px;
    padding: 8px 10px;
    font-size: 0.84rem;
  }

  .nav-dropdown-toggle {
    gap: 5px;
  }

  .nav-dropdown-menu {
    position: absolute;
    top: calc(100% + 10px);
    left: 50%;
    width: 310px;
    padding: 9px;
    transform: translateX(-50%);
    border: 1px solid var(--line);
    border-radius: 15px;
    background: rgba(7, 18, 29, 0.98);
    box-shadow: var(--shadow);
  }

  .nav-dropdown:hover .nav-dropdown-menu,
  .nav-dropdown:focus-within .nav-dropdown-menu,
  .nav-dropdown.open .nav-dropdown-menu {
    display: grid;
  }

  .hero {
    padding: 86px 0 64px;
  }

  .hero-grid {
    grid-template-columns: minmax(0, 1.06fr) minmax(420px, 0.94fr);
    gap: 52px;
  }

  .hero-visual {
    min-height: 490px;
  }

  .telegram-screen-stack {
    gap: 10px;
    padding-inline: 8px;
  }

  .telegram-screen img {
    height: 325px;
  }

  .telegram-screen figcaption {
    padding: 10px 12px 11px;
    font-size: 0.74rem;
  }

  .visual-toolbar {
    font-size: 0.74rem;
  }

  .hero-art {
    width: 116%;
  }

  .flow-shell {
    grid-template-columns: repeat(4, 1fr);
  }

  .flow-step,
  .flow-step:nth-child(-n + 2),
  .flow-step:nth-child(even) {
    border-right: 1px solid var(--line);
    border-bottom: 0;
  }

  .flow-step:last-child {
    border-right: 0;
  }

  .section {
    padding: 100px 0;
  }

  .section-heading {
    grid-template-columns: minmax(0, 1fr) minmax(300px, 0.68fr);
    align-items: end;
    margin-bottom: 40px;
  }

  .section-heading.centered {
    display: block;
  }

  .section-heading.centered h2 {
    margin-bottom: 12px;
  }

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

  .route-grid,
  .quote-grid,
  .availability-grid,
  .year-bands {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .timeline-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .proof-section {
    grid-template-columns: minmax(0, 1.08fr) minmax(340px, 0.92fr);
    gap: 64px;
  }

  .year-grid {
    grid-template-columns: repeat(6, minmax(0, 1fr));
  }

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

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

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

  .step-card:not(:last-child)::after {
    content: "";
    position: absolute;
    z-index: 2;
    top: 37px;
    right: -15px;
    width: 30px;
    height: 1px;
    background: linear-gradient(90deg, var(--cyan), transparent);
  }

  .request-layout {
    grid-template-columns: minmax(280px, 0.72fr) minmax(0, 1.28fr);
    gap: 60px;
    align-items: start;
  }

  .request-intro {
    position: sticky;
    top: 112px;
  }

  .privacy-callout {
    grid-template-columns: 1.2fr 0.8fr;
    padding: 42px;
  }

  .faq-layout {
    grid-template-columns: 0.58fr 1.42fr;
    gap: 60px;
  }

  .faq-intro {
    position: sticky;
    top: 112px;
    height: fit-content;
  }

  .page-hero {
    padding: 84px 0 72px;
  }

  .content-layout {
    grid-template-columns: minmax(0, 1fr) 300px;
    gap: 54px;
  }

  .sidebar {
    position: sticky;
    top: 110px;
  }

  .use-grid,
  .metric-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .footer-grid {
    grid-template-columns: 1.6fr 0.8fr 0.8fr 0.9fr;
  }

  .footer-brand {
    grid-column: auto;
  }

  .site-footer {
    padding-bottom: 54px;
  }

  .mobile-actions {
    display: none;
  }

  body.contact-dock-visible .mobile-actions {
    display: none;
  }
}

@media (min-width: 1150px) {
  .nav-links > a:not(.btn),
  .nav-dropdown-toggle {
    padding-inline: 13px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}

.privacy-settings {
  appearance: none;
  border: 0;
  padding: 0;
  color: var(--cyan);
  background: transparent;
  font: inherit;
  text-decoration: underline;
  text-underline-offset: 3px;
  cursor: pointer;
}

.analytics-consent {
  position: fixed;
  z-index: 140;
  right: 12px;
  bottom: calc(82px + env(safe-area-inset-bottom));
  left: 12px;
  display: grid;
  gap: 14px;
  padding: 16px;
  border: 1px solid rgba(66, 216, 255, 0.28);
  border-radius: 18px;
  background: rgba(7, 18, 29, 0.97);
  box-shadow: 0 20px 70px rgba(0, 0, 0, 0.48);
  backdrop-filter: blur(16px);
}

.analytics-consent[hidden] {
  display: none;
}

.analytics-consent strong {
  display: block;
  margin-bottom: 6px;
  color: var(--text);
  font-size: 1.05rem;
}

.analytics-consent p {
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.6;
}

.analytics-consent p a {
  color: var(--cyan);
}

.analytics-consent-actions {
  display: grid;
  grid-template-columns: 1fr;
  gap: 8px;
}

.analytics-consent-actions .btn {
  min-height: 44px;
}

body.analytics-consent-open .mobile-actions {
  visibility: hidden;
}

@media (min-width: 700px) {
  .analytics-consent {
    right: 24px;
    bottom: 24px;
    left: auto;
    width: min(560px, calc(100vw - 48px));
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
    padding: 18px 20px;
  }

  .analytics-consent-actions {
    min-width: 146px;
  }
}

@media print {
  .site-header,
  .mobile-actions,
  .analytics-consent,
  .site-footer,
  .hero-actions,
  .page-actions,
  .cta-band {
    display: none !important;
  }

  body {
    background: #fff;
    color: #111;
  }

  .prose p,
  .prose li {
    color: #222;
  }
}
