@font-face {
  font-family: "Tilda Sans";
  font-style: normal;
  font-weight: 250 1000;
  font-display: swap;
  src:
    url("../fonts/TildaSans-VF.woff2") format("woff2-variations"),
    url("../fonts/TildaSans-VF.woff") format("woff-variations");
}

@font-face {
  font-family: "Bebas Neue Cyrillic";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("../fonts/BebasNeueCyrillic.woff") format("woff");
}

:root {
  --ink: #08090d;
  --ink-soft: #101219;
  --ink-card: #171820;
  --white: #ffffff;
  --paper: #f4f3ef;
  --paper-2: #e9e8e3;
  --muted: #a7a9b4;
  --dark-muted: #60636d;
  --red: #f20e30;
  --red-dark: #c80827;
  --red-soft: #ff3855;
  --line: rgba(255, 255, 255, 0.14);
  --line-dark: rgba(8, 9, 13, 0.14);
  --header-height: 88px;
  --radius: 28px;
  --radius-sm: 16px;
  --shadow: 0 30px 80px rgba(0, 0, 0, 0.22);
  --container: 1240px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

*::-webkit-scrollbar {
  width: 0;
  height: 0;
  display: none;
}

[hidden] {
  display: none !important;
}

html {
  color-scheme: dark;
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-height) + 18px);
}

body {
  margin: 0;
  min-width: 0;
  overflow-x: hidden;
  color: var(--white);
  background: var(--ink);
  font-family: "Tilda Sans", Arial, sans-serif;
  font-size: 17px;
  line-height: 1.5;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body.menu-open,
body.modal-open {
  overflow: hidden;
}

button,
input,
textarea {
  font: inherit;
}

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

a {
  color: inherit;
  text-decoration-thickness: 1px;
  text-underline-offset: 4px;
}

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

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

h1,
h2,
.visual-heading {
  margin-bottom: 0;
  font-family: "Bebas Neue Cyrillic", Impact, sans-serif;
  font-weight: 400;
  line-height: 0.95;
  letter-spacing: 0.01em;
  text-wrap: balance;
}

h1 {
  max-width: 830px;
  font-size: clamp(4rem, 7.1vw, 7.5rem);
  text-transform: uppercase;
}

h2,
.visual-heading {
  font-size: clamp(3.25rem, 5.2vw, 5.75rem);
  text-transform: uppercase;
}

h3 {
  margin-bottom: 10px;
  font-size: 1.25rem;
  line-height: 1.15;
}

::selection {
  color: var(--white);
  background: var(--red);
}

:focus-visible {
  outline: 3px solid var(--red-soft);
  outline-offset: 4px;
}

.skip-link {
  position: fixed;
  z-index: 2000;
  top: 14px;
  left: 14px;
  padding: 10px 14px;
  color: var(--ink);
  background: var(--white);
  border-radius: 8px;
  transform: translateY(-160%);
}

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

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

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

.section-light {
  color: var(--ink);
  background: var(--paper);
}

.section-neutral {
  color: var(--ink);
  background: var(--paper-2);
}

.section-dark {
  color: var(--white);
  background: var(--ink);
}

.section-red {
  color: var(--white);
  background: var(--red);
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 18px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.16em;
}

.eyebrow::before {
  width: 28px;
  height: 2px;
  content: "";
  background: currentColor;
}

.eyebrow-dark {
  color: rgba(8, 9, 13, 0.58);
}

.button {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  padding: 14px 24px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 0.94rem;
  font-weight: 800;
  line-height: 1;
  text-align: center;
  text-decoration: none;
  cursor: pointer;
  transition:
    transform 180ms ease,
    background-color 180ms ease,
    border-color 180ms ease,
    color 180ms ease,
    box-shadow 180ms ease;
}

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

.button:active {
  transform: translateY(0);
}

.button[disabled] {
  opacity: 0.62;
  cursor: wait;
  transform: none;
}

.button-primary {
  color: var(--white);
  background: var(--red);
  box-shadow: 0 18px 40px rgba(242, 14, 48, 0.24);
}

.button-primary:hover {
  background: var(--red-soft);
  box-shadow: 0 22px 48px rgba(242, 14, 48, 0.34);
}

.button-ghost {
  color: var(--white);
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(255, 255, 255, 0.35);
}

.button-ghost:hover {
  background: rgba(255, 255, 255, 0.11);
  border-color: var(--white);
}

.button-light {
  color: var(--ink);
  background: var(--white);
}

.button-light:hover {
  background: var(--paper);
}

.site-header {
  position: fixed;
  z-index: 1000;
  top: 0;
  left: 0;
  width: 100%;
  border-bottom: 1px solid transparent;
  transition:
    background-color 200ms ease,
    border-color 200ms ease,
    backdrop-filter 200ms ease;
}

.site-header.is-scrolled,
.site-header.menu-active {
  background: rgba(8, 9, 13, 0.88);
  border-color: var(--line);
}

.site-header.is-scrolled {
  backdrop-filter: blur(18px);
}

.site-header.menu-active {
  background: var(--ink);
  backdrop-filter: none;
}

.header-grid {
  display: grid;
  min-height: var(--header-height);
  grid-template-columns: auto auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 16px;
}

.brand {
  display: inline-flex;
  width: clamp(136px, 11.8vw, 178px);
  align-items: center;
  color: var(--white);
  font-size: clamp(1.08rem, 1.5vw, 1.4rem);
  font-weight: 900;
  letter-spacing: 0.035em;
  line-height: 1;
  text-decoration: none;
  white-space: nowrap;
}

.brand-logo {
  position: relative;
  display: block;
  width: 100%;
  aspect-ratio: 2035 / 286;
  overflow: hidden;
}

.brand-logo img {
  position: absolute;
  top: -187.76%;
  left: -13.51%;
  width: 121.62%;
  max-width: none;
  height: auto;
}

.desktop-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(16px, 2.1vw, 30px);
}

.desktop-nav a,
.header-contact a {
  position: relative;
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.84rem;
  font-weight: 600;
  text-decoration: none;
}

.desktop-nav a::after {
  position: absolute;
  right: 0;
  bottom: -8px;
  left: 0;
  height: 2px;
  content: "";
  background: var(--red);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 180ms ease;
}

.desktop-nav a:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.header-contact {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 12px;
  text-align: right;
}

.header-contact a {
  color: var(--white);
  font-size: clamp(0.94rem, 1vw, 1.04rem);
  font-weight: 900;
  letter-spacing: 0.015em;
}

.header-contact .header-telegram {
  display: inline-grid;
  width: 34px;
  height: 34px;
  flex: 0 0 34px;
  place-items: center;
  overflow: hidden;
  border-radius: 50%;
  opacity: 0.86;
  transition:
    opacity 180ms ease,
    transform 180ms ease;
}

.header-contact .header-telegram:hover {
  opacity: 1;
  transform: translateY(-1px);
}

.header-telegram img {
  display: block;
  width: 100%;
  height: 100%;
}

.audio-launcher {
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 0 14px 0 12px;
  color: var(--white);
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.05);
  font: inherit;
  cursor: pointer;
  transition:
    border-color 180ms ease,
    background 180ms ease,
    transform 180ms ease;
}

.audio-launcher-bars {
  display: grid;
  width: 17px;
  height: 22px;
  flex: 0 0 17px;
  grid-template-columns: repeat(3, 3px);
  align-items: center;
  justify-content: center;
  gap: 3px;
}

.audio-launcher-bars span {
  width: 3px;
  height: 13px;
  border-radius: 999px;
  background: currentColor;
}

.audio-launcher-bars span:nth-child(2) {
  height: 21px;
}

.audio-launcher-label {
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.035em;
  white-space: nowrap;
}

.audio-launcher:hover,
.audio-launcher:focus-visible,
.audio-launcher[aria-expanded="true"] {
  border-color: rgba(242, 14, 48, 0.72);
  background: rgba(242, 14, 48, 0.16);
  transform: translateY(-1px);
}

.audio-launcher.is-playing {
  color: var(--red);
}

.audio-launcher.is-playing .audio-launcher-bars span {
  animation: audio-bars 900ms ease-in-out infinite alternate;
}

.audio-launcher.is-playing .audio-launcher-bars span:nth-child(2) {
  animation-delay: -300ms;
}

.audio-launcher.is-playing .audio-launcher-bars span:nth-child(3) {
  animation-delay: -600ms;
}

@keyframes audio-bars {
  from {
    transform: scaleY(0.55);
  }

  to {
    transform: scaleY(1);
  }
}

.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 5px auto;
  background: var(--white);
  transition: transform 180ms ease;
}

.menu-toggle[aria-expanded="true"] span:first-child {
  transform: translateY(3.5px) rotate(45deg);
}

.menu-toggle[aria-expanded="true"] span:last-child {
  transform: translateY(-3.5px) rotate(-45deg);
}

.mobile-menu {
  position: fixed;
  z-index: 990;
  top: var(--header-height);
  right: 0;
  bottom: 0;
  left: 0;
  padding: 34px 24px 28px;
  background: rgba(8, 9, 13, 0.98);
  overflow-y: auto;
}

.mobile-menu[hidden] {
  display: none;
}

.mobile-menu nav {
  display: grid;
  gap: 8px;
  margin-bottom: 34px;
}

.mobile-menu nav a {
  padding: 8px 0;
  font-family: "Bebas Neue Cyrillic", Impact, sans-serif;
  font-size: clamp(2.4rem, 11vw, 4rem);
  line-height: 0.95;
  text-decoration: none;
  text-transform: uppercase;
}

.mobile-phone {
  display: block;
  margin-bottom: 20px;
  color: rgba(255, 255, 255, 0.88);
  font-size: 1.16rem;
  font-weight: 800;
  text-decoration: none;
}

.hero {
  position: relative;
  display: flex;
  min-height: max(760px, 88svh);
  align-items: flex-start;
  padding: calc(var(--header-height) + 84px) 0 76px;
  overflow: hidden;
  background: #07090d;
}

.hero-media,
.hero-shade {
  position: absolute;
  inset: 0;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-shade {
  background:
    linear-gradient(90deg, rgba(3, 5, 9, 0.25), rgba(3, 5, 9, 0.04) 55%, rgba(3, 5, 9, 0.12)),
    linear-gradient(180deg, rgba(3, 5, 9, 0.02), rgba(3, 5, 9, 0.5));
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(320px, 0.65fr);
  align-items: center;
  gap: 64px;
}

.hero-copy {
  max-width: 850px;
}

.hero-lead {
  max-width: 750px;
  margin: 28px 0 0;
  color: rgba(255, 255, 255, 0.88);
  font-size: clamp(1.05rem, 1.5vw, 1.3rem);
  line-height: 1.52;
}

.hero-slogan {
  margin: 18px 0 0;
  color: var(--white);
  font-size: 1rem;
  font-weight: 800;
  letter-spacing: 0.03em;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.hero-facts {
  display: grid;
  gap: 14px;
}

.glass-card {
  position: relative;
  min-height: 140px;
  padding: 24px 26px 22px 102px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 26px;
  background: rgba(19, 11, 18, 0.52);
  box-shadow: 0 20px 70px rgba(0, 0, 0, 0.24);
  backdrop-filter: blur(18px);
}

.glass-card::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(115deg, rgba(255, 255, 255, 0.05), transparent 38%);
  pointer-events: none;
}

.glass-card h3 {
  margin-top: 3px;
}

.glass-card p {
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.9rem;
  line-height: 1.4;
}

.fact-number {
  position: absolute;
  top: 26px;
  left: 24px;
  display: grid;
  width: 58px;
  height: 58px;
  place-items: center;
  color: var(--white);
  border-radius: 16px;
  background: var(--red);
  font-family: "Bebas Neue Cyrillic", Impact, sans-serif;
  font-size: 1.7rem;
  line-height: 1;
}

.scroll-cue {
  position: absolute;
  z-index: 2;
  bottom: 28px;
  left: 50%;
  display: flex;
  align-items: center;
  gap: 12px;
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-decoration: none;
  text-transform: uppercase;
  transform: translateX(-50%);
}

.scroll-cue i {
  position: relative;
  width: 34px;
  height: 34px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 50%;
}

.scroll-cue i::after {
  position: absolute;
  top: 9px;
  left: 13px;
  width: 6px;
  height: 10px;
  content: "";
  border-right: 1px solid var(--white);
  border-bottom: 1px solid var(--white);
  transform: rotate(45deg);
}

.split-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(340px, 0.95fr);
  align-items: center;
  gap: 84px;
}

.section-copy h2 {
  max-width: 850px;
  margin-bottom: 30px;
}

.section-lead {
  max-width: 710px;
  margin-bottom: 24px;
  color: var(--dark-muted);
  font-size: clamp(1.05rem, 1.5vw, 1.24rem);
}

.accent-line {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 30px;
  font-weight: 800;
}

.accent-line::before {
  width: 9px;
  height: 9px;
  content: "";
  border-radius: 50%;
  background: var(--red);
  box-shadow: 0 0 0 7px rgba(242, 14, 48, 0.12);
}

.legal-note {
  max-width: 620px;
  margin: 18px 0 0;
  color: var(--dark-muted);
  font-size: 0.75rem;
}

.mvideo-visual {
  position: relative;
  min-height: 520px;
  padding: 54px;
  overflow: hidden;
  border-radius: 42px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.11), rgba(255, 255, 255, 0)),
    var(--red);
  box-shadow: var(--shadow);
}

.mvideo-visual::before {
  position: absolute;
  top: -120px;
  right: -90px;
  width: 330px;
  height: 330px;
  content: "";
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 50%;
  box-shadow:
    0 0 0 45px rgba(255, 255, 255, 0.04),
    0 0 0 95px rgba(255, 255, 255, 0.025);
}

.mvideo-visual picture {
  position: relative;
  z-index: 1;
  display: block;
  margin-top: 42px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 24px;
}

.mvideo-visual img {
  width: 100%;
  height: auto;
}

.route-card {
  position: absolute;
  z-index: 2;
  right: 34px;
  bottom: 34px;
  left: 34px;
  display: grid;
  min-height: 76px;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  align-items: center;
  gap: 12px;
  padding: 18px 22px;
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 20px;
  background: rgba(8, 9, 13, 0.76);
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.22);
  backdrop-filter: blur(12px);
}

.route-card span {
  font-size: 0.82rem;
  font-weight: 800;
  text-align: center;
}

.route-card i {
  width: 24px;
  height: 1px;
  background: var(--red);
}

.section-heading {
  display: grid;
  max-width: 980px;
  grid-template-columns: minmax(0, 1.3fr) minmax(280px, 0.7fr);
  align-items: end;
  gap: 64px;
  margin-bottom: 64px;
}

.section-heading .eyebrow {
  grid-column: 1 / -1;
  margin-bottom: -36px;
}

.section-heading h2 {
  max-width: 760px;
}

.section-heading > p:last-child {
  margin: 0 0 6px;
  color: var(--muted);
}

.heading-dark > p:last-child {
  color: var(--dark-muted);
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.feature-card {
  position: relative;
  min-height: 300px;
  padding: 34px 28px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    radial-gradient(circle at 100% 0, rgba(242, 14, 48, 0.18), transparent 38%),
    var(--ink-card);
}

.feature-card::after {
  position: absolute;
  right: -38px;
  bottom: -55px;
  width: 150px;
  height: 150px;
  content: "";
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 50%;
}

.feature-index {
  display: inline-flex;
  margin-bottom: 92px;
  color: var(--red);
  font-family: "Bebas Neue Cyrillic", Impact, sans-serif;
  font-size: 2rem;
}

.feature-card p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 0.9rem;
}

.products-section {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  background: var(--ink);
}

.products-media,
.products-shade {
  position: absolute;
  inset: 0;
}

.products-media img {
  width: 100%;
  height: 100%;
  filter: brightness(1.28) contrast(1.04);
  object-fit: cover;
  object-position: center 78%;
}

.products-shade {
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(3, 5, 9, 0.86), rgba(3, 5, 9, 0.56) 52%, rgba(3, 5, 9, 0.32)),
    linear-gradient(180deg, rgba(3, 5, 9, 0.14), rgba(3, 5, 9, 0.72));
}

.products-content {
  position: relative;
  z-index: 2;
}

.products-section .section-heading > p:last-child {
  color: rgba(255, 255, 255, 0.72);
}

.volume-layout {
  display: block;
}

.volume-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.volume-card {
  position: relative;
  display: flex;
  min-height: 310px;
  flex-direction: column;
  justify-content: flex-end;
  padding: 26px;
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius);
  background: rgba(8, 9, 13, 0.7);
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.25);
  backdrop-filter: blur(12px);
}

.package-scale {
  position: absolute;
  top: 42px;
  right: 30px;
  display: flex;
  align-items: flex-end;
  gap: 18px;
  color: rgba(255, 255, 255, 0.92);
  filter: drop-shadow(0 14px 22px rgba(0, 0, 0, 0.2));
}

.package-scale-small {
  top: 66px;
  right: 30px;
  gap: 14px;
}

.package-scale-medium {
  top: 52px;
}

.package-scale-large {
  top: 32px;
  right: 26px;
}

.bottle-figure {
  position: relative;
  width: 64px;
  height: 126px;
}

.bottle-figure-small {
  width: 48px;
  height: 96px;
}

.bottle-figure-medium {
  width: 60px;
  height: 122px;
}

.bottle-figure-large {
  width: 72px;
  height: 150px;
}

.box-figure {
  position: relative;
  width: 72px;
  height: 58px;
  box-sizing: border-box;
  overflow: hidden;
  border: 3px solid currentColor;
  border-radius: 5px 5px 9px 9px;
}

.box-figure-small {
  width: 54px;
  height: 44px;
}

.box-figure-medium {
  width: 68px;
  height: 56px;
}

.box-figure-large {
  width: 84px;
  height: 70px;
}

.box-figure::before {
  position: absolute;
  top: -3px;
  bottom: -3px;
  left: 50%;
  width: 4px;
  content: "";
  background: var(--red);
  transform: translateX(-50%);
}

.box-figure::after {
  position: absolute;
  inset: 0;
  content: "";
  background:
    linear-gradient(28deg, transparent 47%, currentColor 48% 52%, transparent 53%) left top / 50% 38% no-repeat,
    linear-gradient(-28deg, transparent 47%, currentColor 48% 52%, transparent 53%) right top / 50% 38% no-repeat;
  opacity: 0.94;
}

.box-figure i {
  position: absolute;
  top: 37%;
  right: 0;
  left: 0;
  z-index: 2;
  height: 3px;
  background: currentColor;
  opacity: 0.9;
}

.bottle-neck,
.bottle-body {
  position: absolute;
  display: block;
  box-sizing: border-box;
}

.bottle-neck {
  top: 0;
  left: 50%;
  z-index: 2;
  width: 42%;
  height: 25%;
  border: 3px solid currentColor;
  border-bottom: 0;
  border-radius: 7px 7px 0 0;
  transform: translateX(-50%);
}

.bottle-body {
  right: 0;
  bottom: 0;
  left: 0;
  height: 80%;
  overflow: hidden;
  border: 3px solid currentColor;
  border-radius: 22% 22% 17% 17%;
}

.bottle-body::before,
.bottle-body::after {
  position: absolute;
  right: 0;
  left: 0;
  height: 3px;
  content: "";
  background: var(--red);
}

.bottle-body::before {
  top: 56%;
}

.bottle-body::after {
  top: 74%;
}

.volume-card-red .package-scale {
  color: var(--white);
}

.volume-card-red .box-figure::before,
.volume-card-red .bottle-body::before,
.volume-card-red .bottle-body::after {
  background: rgba(255, 255, 255, 0.96);
}

.volume-card > span {
  margin-bottom: auto;
  color: var(--red);
  font-family: "Bebas Neue Cyrillic", Impact, sans-serif;
  font-size: 2.2rem;
}

.volume-card h3 {
  font-size: 1.45rem;
}

.volume-card p {
  margin: 0;
  color: rgba(255, 255, 255, 0.7);
}

.volume-card-red {
  color: var(--white);
  border-color: var(--red);
  background: var(--red);
  transform: translateY(-26px);
}

.volume-card-red > span,
.volume-card-red p {
  color: var(--white);
}

.parcel-visual {
  position: relative;
  display: flex;
  min-height: 430px;
  align-items: flex-end;
  justify-content: center;
}

.parcel-visual::before {
  position: absolute;
  bottom: 6%;
  width: 68%;
  height: 38%;
  content: "";
  border-radius: 50%;
  background: rgba(242, 14, 48, 0.26);
  filter: blur(55px);
}

.parcel-visual img {
  position: relative;
  z-index: 1;
  max-height: 500px;
  object-fit: contain;
}

.category-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 52px;
}

.category-row span {
  padding: 12px 17px;
  color: rgba(255, 255, 255, 0.84);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 999px;
  background: rgba(8, 9, 13, 0.58);
  font-size: 0.86rem;
  font-weight: 700;
  backdrop-filter: blur(10px);
}

.fbs-section {
  overflow: hidden;
}

.fbs-section::before,
.fbs-section::after {
  position: absolute;
  content: "";
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 50%;
}

.fbs-section::before {
  top: -180px;
  right: -120px;
  width: 520px;
  height: 520px;
}

.fbs-section::after {
  bottom: -280px;
  left: -190px;
  width: 600px;
  height: 600px;
}

.fbs-section .section-heading > p:last-child {
  color: rgba(255, 255, 255, 0.78);
}

.fbs-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

.fbs-card {
  position: relative;
  min-height: 260px;
  padding: 34px 34px 32px 112px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius);
  background: rgba(114, 0, 22, 0.2);
}

.fbs-card > span {
  position: absolute;
  top: 34px;
  left: 34px;
  font-family: "Bebas Neue Cyrillic", Impact, sans-serif;
  font-size: 2.35rem;
}

.fbs-card h3 {
  max-width: 420px;
  margin-bottom: 16px;
  font-size: 1.45rem;
}

.fbs-card p {
  max-width: 520px;
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
}

.split-grid-visual {
  align-items: end;
}

.operation-list {
  display: grid;
  gap: 0;
  margin-top: 40px;
  border-top: 1px solid var(--line);
}

.operation-list article {
  display: grid;
  grid-template-columns: 54px 1fr;
  gap: 18px;
  padding: 22px 0;
  border-bottom: 1px solid var(--line);
}

.operation-list article > span {
  color: var(--red);
  font-family: "Bebas Neue Cyrillic", Impact, sans-serif;
  font-size: 1.6rem;
}

.operation-list h3 {
  margin-bottom: 6px;
}

.operation-list p {
  max-width: 660px;
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
}

.operator-visual {
  position: relative;
  display: flex;
  min-height: 670px;
  align-items: flex-end;
  overflow: hidden;
  border-radius: 40px;
  background:
    radial-gradient(circle at 70% 30%, rgba(242, 14, 48, 0.3), transparent 35%),
    linear-gradient(155deg, #1d1e25, #090a0e);
}

.operator-visual::before {
  position: absolute;
  z-index: 2;
  inset: 0;
  content: "";
  background:
    radial-gradient(circle at 9% 42%, rgba(242, 14, 48, 0.62), transparent 26%),
    linear-gradient(180deg, transparent 55%, rgba(4, 5, 8, 0.52));
  pointer-events: none;
}

.operator-label {
  position: absolute;
  z-index: 3;
  display: flex;
  right: 24px;
  bottom: 24px;
  left: 24px;
  height: 90px;
  align-items: center;
  justify-content: center;
  gap: clamp(12px, 1.5vw, 22px);
  padding: 18px 24px;
  color: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 22px;
  background: rgba(8, 9, 13, 0.64);
  box-shadow: inset 0 0 24px rgba(255, 255, 255, 0.04);
  font-family: "Bebas Neue Cyrillic", Impact, sans-serif;
  font-size: clamp(1.3rem, 2.2vw, 2rem);
  font-weight: 700;
  letter-spacing: 0.08em;
  line-height: 1;
  text-align: center;
  white-space: nowrap;
  backdrop-filter: blur(12px);
}

.operator-label i {
  width: 9px;
  height: 9px;
  flex: 0 0 9px;
  background: var(--red);
  box-shadow: 0 0 8px rgba(242, 14, 48, 0.48);
}

.operator-visual picture {
  position: absolute;
  z-index: 1;
  inset: 0;
}

.operator-visual img {
  position: absolute;
  z-index: 1;
  inset: 0;
  width: 100%;
  height: 100%;
  filter: brightness(1.26) contrast(1.06);
  object-fit: cover;
  object-position: center center;
  transform: scale(1.035);
}

.section-form {
  color: var(--white);
  background: var(--red);
}

.form-band {
  display: grid;
  grid-template-columns: minmax(280px, 0.8fr) minmax(560px, 1.2fr);
  align-items: start;
  gap: 64px;
}

.form-band .visual-heading {
  margin-bottom: 22px;
}

.form-band > div > p:last-child {
  max-width: 510px;
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
}

.lead-form {
  position: relative;
}

.compact-form {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.compact-form .consent,
.compact-form .form-status {
  grid-column: 1 / -1;
}

.compact-form .button {
  grid-column: 1 / -1;
  justify-self: start;
}

.field {
  display: grid;
  gap: 7px;
}

.field label {
  font-size: 0.75rem;
  font-weight: 700;
}

.field input,
.field textarea {
  width: 100%;
  min-height: 54px;
  padding: 14px 16px;
  color: var(--ink);
  border: 1px solid rgba(255, 255, 255, 0.4);
  border-radius: 13px;
  background: rgba(255, 255, 255, 0.96);
  outline: none;
  resize: vertical;
  transition:
    border-color 180ms ease,
    box-shadow 180ms ease;
}

.field input:focus,
.field textarea:focus {
  border-color: var(--ink);
  box-shadow: 0 0 0 3px rgba(8, 9, 13, 0.12);
}

.field input[aria-invalid="true"],
.field textarea[aria-invalid="true"] {
  border-color: #7c0017;
  box-shadow: 0 0 0 3px rgba(124, 0, 23, 0.16);
}

.consent {
  display: grid;
  grid-template-columns: 20px 1fr;
  align-items: start;
  gap: 10px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.72rem;
  cursor: pointer;
}

.consent input {
  width: 18px;
  height: 18px;
  margin: 2px 0 0;
  accent-color: var(--ink);
}

.consent a {
  color: inherit;
}

.honeypot {
  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;
}

.form-status {
  min-height: 1.4em;
  margin: 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: 0.8rem;
  font-weight: 700;
}

.form-status.is-error {
  color: #3c000b;
}

.form-status.is-success {
  color: var(--white);
}

.case-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.case-card {
  position: relative;
  display: flex;
  min-height: 420px;
  flex-direction: column;
  justify-content: flex-end;
  padding: 32px;
  overflow: hidden;
  color: var(--ink);
  border: 1px solid var(--line-dark);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.58);
}

.case-card-brand {
  min-height: 440px;
}

.case-brand-media {
  position: absolute;
  top: 22px;
  right: 22px;
  left: 22px;
  height: 188px;
  overflow: hidden;
  border-radius: calc(var(--radius) - 10px);
}

.case-brand-media img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
}

.case-copy {
  position: relative;
  z-index: 2;
}

.case-copy > p:not(.case-type) {
  margin: 0;
  font-size: 0.9rem;
  line-height: 1.45;
}

.case-copy .case-result {
  margin-top: 12px;
  padding-top: 12px;
  border-top: 1px solid rgba(8, 9, 13, 0.16);
}

.case-card-zya {
  border-color: #b7d900;
  background: #d2ff00;
}

.case-card-zya .case-brand-media {
  background: #d2ff00;
}

.case-card-zya .case-brand-media img {
  object-fit: cover;
  transform: scale(2.18);
}

.case-card-zya .case-number,
.case-card-zya .case-type {
  color: var(--ink);
}

.case-card-dubrava {
  border-color: rgba(12, 111, 49, 0.28);
  background: #fff;
}

.case-card-dubrava .case-brand-media {
  background: #fff;
}

.case-card-dubrava .case-number,
.case-card-dubrava .case-type {
  color: #0c6f31;
}

.case-card-kora {
  color: var(--white);
  border-color: #d30e2f;
  background: #d30e2f;
}

.case-card-kora .case-brand-media {
  background: #d30e2f;
}

.case-card-kora .case-brand-media img {
  transform: scale(1.18);
}

.case-card-kora .case-number,
.case-card-kora .case-type {
  color: var(--white);
}

.case-card-kora .case-copy > p:not(.case-type) {
  color: rgba(255, 255, 255, 0.82);
}

.case-card-kora .case-task {
  font-size: clamp(0.6rem, 0.75vw, 0.76rem);
  letter-spacing: -0.02em;
  white-space: nowrap;
}

.case-card-kora .case-copy .case-result {
  border-top-color: rgba(255, 255, 255, 0.26);
}

.case-number {
  position: absolute;
  z-index: 2;
  top: 28px;
  left: 30px;
  color: var(--red);
  font-family: "Bebas Neue Cyrillic", Impact, sans-serif;
  font-size: 2.3rem;
}

.case-type {
  margin-bottom: 12px;
  color: var(--red);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.case-card h3 {
  max-width: 360px;
  margin-bottom: 14px;
  font-size: 1.7rem;
}

.case-card > p:last-child,
.case-card > div > p:last-child {
  margin: 0;
  color: var(--dark-muted);
  font-size: 0.94rem;
}

.case-card-dark {
  color: var(--white);
  border-color: var(--ink);
  background: var(--ink);
}

.case-card-dark > p:last-child {
  color: var(--muted);
}

.case-card-image {
  color: var(--white);
  background: var(--ink);
}

.case-card-image picture {
  position: absolute;
  inset: 0;
}

.case-card-image picture::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(180deg, rgba(8, 9, 13, 0.08), rgba(8, 9, 13, 0.92) 75%);
}

.case-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.case-card-image > div {
  position: relative;
  z-index: 1;
}

.case-card-image .case-number {
  color: var(--white);
}

.case-card-image > div > p:last-child {
  color: rgba(255, 255, 255, 0.76);
}

.integrations-section {
  position: relative;
  isolation: isolate;
  padding-bottom: 72px;
  overflow: hidden;
  color: var(--white);
  background: #080b12;
}

.integrations-media,
.integrations-shade {
  position: absolute;
  inset: 0;
}

.integrations-media {
  z-index: -2;
}

.integrations-media img {
  width: 100%;
  height: 100%;
  filter: saturate(0.72) brightness(0.68) contrast(1.12);
  object-fit: cover;
  object-position: center center;
}

.integrations-shade {
  z-index: -1;
  background:
    radial-gradient(circle at 12% 48%, rgba(224, 12, 45, 0.52), transparent 34%),
    radial-gradient(circle at 62% 46%, rgba(98, 0, 232, 0.2), transparent 32%),
    linear-gradient(90deg, rgba(5, 7, 12, 0.66), rgba(5, 7, 12, 0.42) 52%, rgba(5, 7, 12, 0.72)),
    linear-gradient(180deg, rgba(5, 7, 12, 0.8), rgba(5, 7, 12, 0.32) 44%, rgba(5, 7, 12, 0.92));
}

.integrations-content {
  position: relative;
  z-index: 1;
}

.integrations-heading {
  max-width: 1180px;
  margin: 0 auto 58px;
  text-align: center;
}

.integrations-heading h2 {
  margin: 0 auto;
  font-size: clamp(3rem, 6.4vw, 6rem);
  line-height: 0.98;
}

.integrations-heading h2 span {
  color: #5c6674;
}

.integrations-heading p {
  max-width: 1080px;
  margin: 28px auto 0;
  color: rgba(255, 255, 255, 0.9);
  font-size: clamp(1rem, 1.35vw, 1.25rem);
  line-height: 1.55;
}

.marketplace-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 24px;
}

.marketplace-card {
  grid-column: span 2;
  aspect-ratio: 360 / 250;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 30px;
  background: #111722;
  box-shadow: 0 22px 48px rgba(0, 0, 0, 0.28);
}

.marketplace-card-wide {
  grid-column: span 3;
  aspect-ratio: 560 / 261;
}

.marketplace-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.tariffs-section {
  margin-top: -1px;
  padding-top: 76px;
  color: var(--white);
  background: #080b12;
}

.tariffs-heading {
  max-width: 1020px;
  margin: 0 auto 56px;
  text-align: center;
}

.tariffs-heading h2 {
  margin: 0;
  font-size: clamp(3.4rem, 6.7vw, 6rem);
  line-height: 0.98;
}

.tariffs-heading h2 span {
  display: block;
  margin-top: 8px;
  color: #5c6674;
}

.tariffs-heading p {
  margin: 28px auto 0;
  color: rgba(255, 255, 255, 0.92);
  font-size: clamp(1rem, 1.35vw, 1.2rem);
  line-height: 1.5;
}

.tariff-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 32px;
}

.tariff-card {
  display: flex;
  min-height: 205px;
  flex-direction: column;
  padding: 32px;
  color: var(--white);
  border: 0;
  border-radius: 30px;
  background: #121925;
}

.tariff-card h3 {
  margin: 0;
  font-family: "Bebas Neue Cyrillic", Impact, sans-serif;
  font-size: clamp(2rem, 3.3vw, 3rem);
  line-height: 1;
  text-transform: uppercase;
}

.tariff-description {
  max-width: 540px;
  margin: 16px 0 24px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.96rem;
  line-height: 1.45;
}

.tariff-price {
  margin: auto 0 0;
  font-size: 1rem;
  font-weight: 900;
}

.tariff-card-accent {
  background: #ff141e;
}

.tariff-note {
  margin: 38px auto 0;
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.86rem;
  font-weight: 700;
  text-align: center;
}

.tariffs-cta {
  display: flex;
  width: fit-content;
  margin: 34px auto 0;
}

.faq-layout {
  display: grid;
  grid-template-columns: minmax(300px, 0.72fr) minmax(500px, 1.28fr);
  align-items: start;
  gap: 90px;
}

.faq-layout .section-heading {
  position: sticky;
  top: 120px;
  display: block;
  margin: 0;
}

.faq-layout .section-heading .eyebrow {
  margin-bottom: 18px;
}

.faq-layout .section-heading h2 {
  margin-bottom: 30px;
}

.faq-list {
  border-top: 1px solid var(--line-dark);
}

.faq-list details {
  border-bottom: 1px solid var(--line-dark);
}

.faq-list summary {
  display: grid;
  min-height: 88px;
  grid-template-columns: 1fr 34px;
  align-items: center;
  gap: 18px;
  padding: 16px 0;
  font-size: 1.1rem;
  font-weight: 800;
  list-style: none;
  cursor: pointer;
}

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

.faq-list summary i {
  position: relative;
  width: 32px;
  height: 32px;
  border: 1px solid var(--line-dark);
  border-radius: 50%;
}

.faq-list summary i::before,
.faq-list summary i::after {
  position: absolute;
  top: 15px;
  left: 9px;
  width: 12px;
  height: 1px;
  content: "";
  background: var(--ink);
  transition: transform 180ms ease;
}

.faq-list summary i::after {
  transform: rotate(90deg);
}

.faq-list details[open] summary i::after {
  transform: rotate(0);
}

.faq-list details p {
  max-width: 680px;
  margin: -4px 0 28px;
  color: var(--dark-muted);
}

.section-contact {
  padding: 132px 0 96px;
  background:
    radial-gradient(circle at 5% 20%, rgba(242, 14, 48, 0.22), transparent 25%),
    var(--ink);
}

.contact-grid {
  display: grid;
  grid-template-columns: minmax(300px, 0.75fr) minmax(540px, 1.25fr);
  gap: 90px;
}

.contact-copy h2 {
  margin-bottom: 26px;
}

.contact-lead {
  max-width: 490px;
  color: var(--muted);
}

.contact-list {
  display: grid;
  gap: 0;
  margin: 52px 0 0;
  border-top: 1px solid var(--line);
}

.contact-list > div {
  display: grid;
  grid-template-columns: 100px 1fr;
  gap: 18px;
  padding: 20px 0;
  border-bottom: 1px solid var(--line);
}

.contact-list dt {
  color: var(--muted);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.contact-list dd {
  margin: 0;
  font-weight: 700;
}

.contact-list a {
  text-decoration: none;
}

.contact-form {
  padding: 36px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--ink-card);
}

.form-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

.contact-form .field + .field,
.contact-form .form-row + .field {
  margin-top: 16px;
}

.contact-form .consent {
  margin-top: 18px;
}

.contact-form .button {
  margin-top: 22px;
}

.contact-form .field input,
.contact-form .field textarea {
  color: var(--white);
  border-color: var(--line);
  background: rgba(255, 255, 255, 0.055);
}

.contact-form .field input:focus,
.contact-form .field textarea:focus {
  border-color: var(--red);
  box-shadow: 0 0 0 3px rgba(242, 14, 48, 0.18);
}

.site-footer {
  padding: 70px 0 26px;
  color: var(--white);
  border-top: 1px solid var(--line);
  background: #050609;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 46px;
  padding-bottom: 54px;
}

.footer-mark {
  display: grid;
  width: 72px;
  height: 72px;
  margin-bottom: 18px;
  place-items: center;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 19px;
  background: transparent;
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.3);
  text-decoration: none;
  transition:
    transform 180ms ease,
    border-color 180ms ease;
}

.footer-mark:hover,
.footer-mark:focus-visible {
  border-color: rgba(242, 14, 48, 0.72);
  transform: translateY(-2px);
}

.footer-mark img {
  width: 62px;
  height: 62px;
  object-fit: contain;
}

.footer-grid p {
  margin: 0;
  color: var(--muted);
}

.footer-grid nav {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px 24px;
}

.footer-grid nav a {
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.86rem;
  font-weight: 700;
  text-decoration: none;
}

.footer-contact {
  text-align: right;
}

.footer-contact a {
  display: inline-block;
  margin-bottom: 10px;
  font-size: 1.12rem;
  font-weight: 900;
  text-decoration: none;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  padding-top: 24px;
  color: rgba(255, 255, 255, 0.48);
  border-top: 1px solid var(--line);
  font-size: 0.72rem;
}

.footer-bottom p {
  margin: 0;
}

.audio-dock {
  position: fixed;
  z-index: 1200;
  left: max(18px, env(safe-area-inset-left));
  bottom: max(18px, env(safe-area-inset-bottom));
  display: none;
  width: min(480px, calc(100vw - 36px));
  grid-template-columns: auto minmax(0, 1fr) auto auto;
  align-items: center;
  gap: 8px;
  padding: 12px 14px 8px;
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 18px;
  background: rgba(7, 8, 12, 0.94);
  box-shadow:
    0 18px 50px rgba(0, 0, 0, 0.45),
    0 0 34px rgba(242, 14, 48, 0.12);
  backdrop-filter: blur(18px);
}

.audio-dock.is-open {
  display: grid;
}

.audio-dock-close {
  position: absolute;
  top: -11px;
  right: -8px;
  display: grid;
  width: 32px;
  height: 32px;
  place-items: center;
  padding: 0;
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 50%;
  background: #11131a;
  font-size: 1.2rem;
  line-height: 1;
  cursor: pointer;
}

.audio-play {
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  gap: 9px;
  padding: 0 14px 0 9px;
  color: var(--white);
  border: 0;
  border-radius: 999px;
  background: var(--red);
  box-shadow: 0 8px 24px rgba(242, 14, 48, 0.28);
  font: inherit;
  font-size: 0.76rem;
  font-weight: 900;
  cursor: pointer;
  transition:
    transform 180ms ease,
    background 180ms ease;
}

.audio-play:hover,
.audio-play:focus-visible {
  background: #ff2946;
  transform: translateY(-1px);
}

.audio-play:active {
  transform: translateY(0);
}

.audio-play-icon {
  display: grid;
  width: 26px;
  height: 26px;
  place-items: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.16);
  font-size: 0.72rem;
  line-height: 1;
}

.audio-track {
  display: grid;
  min-width: 0;
  gap: 2px;
}

.audio-track strong {
  overflow: hidden;
  font-size: 0.78rem;
  letter-spacing: 0.04em;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.audio-track span {
  color: rgba(255, 255, 255, 0.52);
  font-size: 0.68rem;
  font-variant-numeric: tabular-nums;
}

.audio-download {
  display: inline-flex;
  min-height: 36px;
  align-items: center;
  justify-content: center;
  padding: 0 12px;
  color: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 800;
  text-decoration: none;
  transition:
    color 180ms ease,
    border-color 180ms ease,
    background 180ms ease;
}

.audio-download:hover,
.audio-download:focus-visible {
  color: var(--white);
  border-color: rgba(242, 14, 48, 0.72);
  background: rgba(242, 14, 48, 0.12);
}

.audio-track-switcher {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  transform: translateX(-8px);
}

.audio-track-switcher button {
  display: grid;
  width: 20px;
  height: 28px;
  place-items: center;
  padding: 0;
  color: rgba(255, 255, 255, 0.82);
  border: 0;
  border-radius: 0;
  outline: none;
  background: transparent;
  font-family: Arial, sans-serif;
  font-size: 1.7rem;
  font-weight: 400;
  line-height: 1;
  cursor: pointer;
  transition:
    color 180ms ease,
    transform 180ms ease;
}

.audio-track-switcher button:hover,
.audio-track-switcher button:focus-visible {
  color: var(--red);
  transform: scale(1.12);
}

.audio-track-switcher span {
  min-width: 32px;
  text-align: center;
  font-variant-numeric: tabular-nums;
}

.audio-progress {
  width: 100%;
  height: 4px;
  grid-column: 1 / -1;
  margin: 0;
  accent-color: var(--red);
  cursor: pointer;
}

.audio-dock.is-playing {
  border-color: rgba(242, 14, 48, 0.56);
}

.modal {
  position: fixed;
  z-index: 1500;
  inset: 0;
  display: grid;
  place-items: center;
  padding: 24px;
}

.modal[hidden] {
  display: none;
}

.modal-backdrop {
  position: absolute;
  inset: 0;
  padding: 0;
  border: 0;
  background: rgba(2, 3, 5, 0.82);
  backdrop-filter: blur(9px);
  cursor: pointer;
}

.modal-panel {
  position: relative;
  z-index: 1;
  width: min(100%, 620px);
  max-height: calc(100svh - 48px);
  padding: 42px;
  overflow-y: auto;
  color: var(--ink);
  border-radius: 28px;
  background: var(--paper);
  box-shadow: 0 40px 100px rgba(0, 0, 0, 0.48);
}

.modal-panel .visual-heading {
  margin-bottom: 18px;
}

.modal-panel > p:not(.eyebrow) {
  color: var(--dark-muted);
}

.bot-handoff-panel {
  width: min(100%, 560px);
}

.bot-handoff-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.bot-handoff-cancel {
  color: var(--ink);
  border-color: rgba(8, 9, 13, 0.2);
  background: transparent;
}

.bot-handoff-cancel:hover,
.bot-handoff-cancel:focus-visible {
  border-color: rgba(8, 9, 13, 0.5);
  background: rgba(8, 9, 13, 0.06);
}

.bot-handoff-telegram {
  color: var(--ink);
  border-color: rgba(8, 9, 13, 0.22);
  background: transparent;
}

.bot-handoff-telegram:hover,
.bot-handoff-telegram:focus-visible {
  border-color: rgba(8, 9, 13, 0.5);
  background: rgba(8, 9, 13, 0.06);
}

.questionnaire-test-note {
  margin: 20px 0 0;
  padding: 12px 14px;
  color: #6e4d00 !important;
  border: 1px solid rgba(155, 105, 0, 0.25);
  border-radius: 12px;
  background: rgba(255, 196, 48, 0.14);
  font-size: 0.76rem;
}

.modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  display: grid;
  width: 40px;
  height: 40px;
  place-items: center;
  padding: 0;
  color: var(--ink);
  border: 1px solid var(--line-dark);
  border-radius: 50%;
  background: transparent;
  font-size: 1.8rem;
  line-height: 1;
  cursor: pointer;
}

.modal-form {
  display: grid;
  gap: 14px;
  margin-top: 28px;
}

.modal-form .consent {
  color: var(--dark-muted);
}

.modal-form .consent input {
  accent-color: var(--red);
}

.modal-form .form-status {
  color: var(--dark-muted);
}

.modal-form .form-status.is-error {
  color: var(--red-dark);
}

.questionnaire-panel {
  width: min(100%, 780px);
  padding-bottom: 30px;
}

.questionnaire-panel .visual-heading {
  margin-bottom: 12px;
  font-size: clamp(2.6rem, 5vw, 4.4rem);
}

.questionnaire-progress {
  display: grid;
  gap: 8px;
  margin-bottom: 26px;
  color: var(--dark-muted);
  font-size: 0.76rem;
  font-weight: 800;
}

.questionnaire-progress progress {
  width: 100%;
  height: 5px;
  overflow: hidden;
  border: 0;
  border-radius: 999px;
  background: rgba(8, 9, 13, 0.1);
  accent-color: var(--red);
}

.questionnaire-progress progress::-webkit-progress-bar {
  border-radius: 999px;
  background: rgba(8, 9, 13, 0.1);
}

.questionnaire-progress progress::-webkit-progress-value {
  border-radius: 999px;
  background: var(--red);
}

.questionnaire-progress progress::-moz-progress-bar {
  border-radius: 999px;
  background: var(--red);
}

.questionnaire-step {
  min-height: 330px;
}

.questionnaire-question {
  display: grid;
  gap: 18px;
}

.questionnaire-question h3 {
  max-width: 660px;
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(1.9rem, 4vw, 3rem);
  font-weight: 400;
  line-height: 0.98;
  text-transform: uppercase;
}

.questionnaire-help {
  margin: -8px 0 0;
  color: var(--dark-muted);
  font-size: 0.82rem;
}

.questionnaire-fields {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

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

.questionnaire-option-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.questionnaire-subquestion {
  display: grid;
  gap: 12px;
  min-width: 0;
  margin: 4px 0 0;
  padding: 18px;
  border: 1px solid rgba(8, 9, 13, 0.14);
  border-radius: 16px;
}

.questionnaire-subquestion legend {
  max-width: 100%;
  padding: 0 8px;
  color: var(--ink);
  font-size: 0.9rem;
  font-weight: 800;
  line-height: 1.35;
}

.questionnaire-option {
  display: grid;
  min-height: 58px;
  grid-template-columns: 22px minmax(0, 1fr);
  align-items: center;
  gap: 10px;
  padding: 12px 14px;
  color: var(--ink);
  border: 1px solid rgba(8, 9, 13, 0.16);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.72);
  font-size: 0.78rem;
  font-weight: 750;
  cursor: pointer;
  transition:
    border-color 160ms ease,
    background 160ms ease,
    transform 160ms ease;
}

.questionnaire-option:hover {
  border-color: rgba(242, 14, 48, 0.45);
  transform: translateY(-1px);
}

.questionnaire-option:has(input:checked) {
  border-color: var(--red);
  background: rgba(242, 14, 48, 0.08);
}

.questionnaire-option input {
  width: 18px;
  height: 18px;
  margin: 0;
  accent-color: var(--red);
}

.questionnaire-file {
  padding: 18px;
  border: 1px dashed rgba(8, 9, 13, 0.28);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.55);
}

.questionnaire-file-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 10px;
  font-weight: 700;
}

.questionnaire-file input {
  min-height: auto;
  padding: 0;
  border: 0;
  background: transparent;
}

.questionnaire-file-list {
  display: grid;
  gap: 6px;
  margin: 10px 0 0;
  color: var(--dark-muted);
  font-size: 0.75rem;
}

.questionnaire-file-item {
  display: grid;
  grid-template-columns: max-content minmax(0, 1fr) max-content;
  align-items: center;
  gap: 8px;
  padding: 8px 10px;
  border: 1px solid rgba(8, 9, 13, 0.12);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.72);
  color: var(--ink);
}

.questionnaire-file-item b {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 58px;
  padding: 3px 7px;
  border-radius: 8px;
  background: rgba(242, 14, 48, 0.1);
  color: var(--red);
  font-size: 0.68rem;
  text-transform: uppercase;
}

.questionnaire-file-item span {
  overflow: hidden;
  font-weight: 700;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.questionnaire-file-item small {
  color: var(--dark-muted);
}

.questionnaire-summary {
  display: grid;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.questionnaire-summary li {
  display: grid;
  grid-template-columns: minmax(150px, 0.38fr) minmax(0, 1fr);
  gap: 14px;
  padding: 10px 0;
  border-bottom: 1px solid rgba(8, 9, 13, 0.1);
  font-size: 0.78rem;
}

.questionnaire-summary strong {
  color: var(--dark-muted);
}

.questionnaire-review-fields {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 20px;
}

.questionnaire-review-tools {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 12px;
  margin-top: 18px;
}

.questionnaire-review-tools .button {
  width: 100%;
}

.questionnaire-consent {
  margin-top: 16px;
  color: var(--dark-muted);
}

.questionnaire-actions {
  position: sticky;
  bottom: -30px;
  display: flex;
  justify-content: space-between;
  gap: 12px;
  margin: 22px -4px 0;
  padding: 14px 4px 4px;
  background: linear-gradient(to bottom, rgba(241, 240, 236, 0), var(--paper) 24%);
}

.questionnaire-back {
  color: var(--ink);
  border-color: rgba(8, 9, 13, 0.22);
  background: transparent;
}

.questionnaire-back:hover,
.questionnaire-back:focus-visible {
  border-color: rgba(8, 9, 13, 0.5);
  background: rgba(8, 9, 13, 0.06);
}

.questionnaire-panel .form-status {
  margin-top: 14px;
  color: var(--dark-muted);
}

.questionnaire-panel .form-status.is-error {
  color: var(--red-dark);
}

.questionnaire-panel .form-status.is-success {
  color: #0c6b37;
}

.questionnaire-panel .form-status.is-warning {
  color: #8a5a00;
}

.fbs-v2-step {
  display: grid;
  gap: 18px;
}

.fbs-v2-step-header {
  display: grid;
  gap: 8px;
}

.fbs-v2-step-header h3 {
  max-width: 680px;
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(2rem, 4.3vw, 3.2rem);
  font-weight: 400;
  line-height: 0.98;
  text-transform: uppercase;
}

.fbs-v2-step-header p,
.fbs-v2-document-slot p {
  margin: 0;
  color: var(--dark-muted);
  font-size: 0.84rem;
  line-height: 1.55;
}

.fbs-v2-router {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.fbs-v2-service-card {
  display: grid;
  min-height: 210px;
  align-content: end;
  gap: 10px;
  padding: 28px;
  color: var(--ink);
  border: 1px solid rgba(8, 9, 13, 0.16);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.76);
  text-align: left;
  cursor: pointer;
  transition: border-color 160ms ease, transform 160ms ease, box-shadow 160ms ease;
}

.fbs-v2-service-card:hover,
.fbs-v2-service-card:focus-visible {
  border-color: var(--red);
  outline: 3px solid rgba(242, 14, 48, 0.16);
  outline-offset: 2px;
  transform: translateY(-2px);
  box-shadow: 0 18px 44px rgba(8, 9, 13, 0.1);
}

.fbs-v2-service-card span {
  color: var(--red);
  font-family: var(--font-display);
  font-size: clamp(3.3rem, 8vw, 5.8rem);
  line-height: 0.8;
}

.fbs-v2-service-card small {
  max-width: 290px;
  font-size: 0.86rem;
  font-weight: 750;
  line-height: 1.45;
}

.fbs-v2-document-slot {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 14px;
  padding: 18px;
  border: 1px dashed rgba(8, 9, 13, 0.3);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.58);
}

.fbs-v2-document-slot div {
  display: grid;
  gap: 5px;
}

.fbs-v2-document-slot > small {
  grid-column: 1 / -1;
  color: var(--dark-muted);
  font-size: 0.72rem;
}

.fbs-v2-document-slot .button:disabled {
  opacity: 0.58;
  cursor: not-allowed;
}

.fbs-v2-section {
  display: grid;
  gap: 14px;
  min-width: 0;
  margin: 0;
  padding: 18px;
  border: 1px solid rgba(8, 9, 13, 0.14);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.36);
}

.fbs-v2-section legend {
  max-width: calc(100% - 16px);
  padding: 0 8px;
  color: var(--ink);
  font-size: 0.96rem;
  font-weight: 850;
  line-height: 1.35;
}

.questionnaire-field {
  display: grid;
  min-width: 0;
  gap: 7px;
  color: var(--ink);
  font-size: 0.78rem;
  font-weight: 800;
}

.questionnaire-field small,
.fbs-v2-option small {
  display: block;
  margin-top: 3px;
  color: var(--dark-muted);
  font-size: 0.7rem;
  font-weight: 500;
  line-height: 1.35;
}

.questionnaire-field input,
.questionnaire-field textarea {
  width: 100%;
  min-height: 54px;
  padding: 14px 16px;
  color: var(--ink);
  -webkit-text-fill-color: var(--ink);
  caret-color: var(--ink);
  color-scheme: light;
  border: 1px solid rgba(8, 9, 13, 0.2);
  border-radius: 13px;
  background: var(--white);
  outline: none;
  resize: vertical;
  transition:
    border-color 180ms ease,
    box-shadow 180ms ease,
    background-color 180ms ease;
}

.questionnaire-field input::placeholder,
.questionnaire-field textarea::placeholder {
  color: #7b7e87;
  -webkit-text-fill-color: #7b7e87;
  opacity: 1;
}

.questionnaire-field input:focus,
.questionnaire-field textarea:focus {
  border-color: var(--red);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(242, 14, 48, 0.14);
}

.questionnaire-field input[aria-invalid="true"],
.questionnaire-field textarea[aria-invalid="true"] {
  border-color: var(--red);
  outline: 3px solid rgba(242, 14, 48, 0.12);
}

.fbs-v2-option {
  align-items: start;
}

.fbs-v2-option:focus-within,
.fbs-v2-checkbox-wide:focus-within {
  outline: 3px solid rgba(242, 14, 48, 0.18);
  outline-offset: 2px;
}

.fbs-v2-inline-options {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.fbs-v2-checkbox-wide {
  width: 100%;
}

.fbs-v2-metric-grid,
.fbs-v2-allocation-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
}

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

.fbs-v2-marking {
  gap: 10px;
}

.fbs-v2-marking-item {
  display: grid;
  gap: 8px;
}

.fbs-v2-marking-detail {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(180px, 0.7fr);
  gap: 10px;
  margin-left: 30px;
  padding-left: 12px;
  border-left: 3px solid rgba(242, 14, 48, 0.25);
}

.fbs-v2-summary {
  padding: 0 18px;
  border: 1px solid rgba(8, 9, 13, 0.14);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.5);
}

.fbs-v2-contact-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.fbs-v2-contact-grid .questionnaire-field:last-child {
  grid-column: 1 / -1;
}

.fbs-v2-debug {
  padding: 14px 16px;
  border: 1px solid rgba(8, 9, 13, 0.15);
  border-radius: 14px;
  background: rgba(8, 9, 13, 0.04);
}

.fbs-v2-debug summary {
  font-size: 0.78rem;
  font-weight: 800;
  cursor: pointer;
}

.fbs-v2-debug pre {
  max-height: 340px;
  overflow: auto;
  margin: 14px 0 0;
  padding: 14px;
  border-radius: 10px;
  background: var(--ink);
  color: white;
  font: 0.69rem/1.5 ui-monospace, SFMono-Regular, Consolas, monospace;
  white-space: pre-wrap;
  word-break: break-word;
}

.legal-page {
  display: grid;
  min-height: 100svh;
  place-items: center;
  padding: 54px 24px;
  background:
    radial-gradient(circle at 85% 15%, rgba(242, 14, 48, 0.24), transparent 32%),
    var(--ink);
}

.legal-shell {
  width: min(100%, 880px);
  padding: clamp(30px, 6vw, 72px);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--ink-card);
  box-shadow: var(--shadow);
}

.legal-shell .brand {
  display: inline-block;
  margin-bottom: 70px;
}

.legal-shell h1 {
  max-width: 760px;
  margin-bottom: 30px;
  font-size: clamp(2.2rem, 6vw, 4.6rem);
}

.legal-shell > p:not(.legal-kicker),
.legal-shell section p,
.legal-shell section li {
  max-width: 720px;
  color: var(--muted);
}

.legal-shell section {
  margin-top: 34px;
}

.legal-shell h2 {
  max-width: 720px;
  margin-bottom: 14px;
  font-size: clamp(1.45rem, 3vw, 2.2rem);
  line-height: 1.12;
}

.legal-shell h3 {
  max-width: 720px;
  margin: 22px 0 10px;
  font-size: 1.05rem;
}

.legal-shell ul {
  display: grid;
  max-width: 720px;
  margin: 12px 0 0;
  padding-left: 22px;
  gap: 8px;
}

.legal-shell a:not(.button):not(.brand) {
  color: var(--white);
  text-decoration: underline;
  text-underline-offset: 0.18em;
}

.consent-policy-note {
  margin: 10px 0 16px;
  color: var(--muted);
  font-size: 0.78rem;
  line-height: 1.45;
}

.footer-legal {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px 22px;
}

.footer-legal .footer-vk {
  padding: 6px 12px;
  color: var(--white);
  border-radius: 999px;
  background: #2787f5;
  font-weight: 800;
  text-decoration: none;
  transition:
    background-color 180ms ease,
    transform 180ms ease;
}

.footer-legal .footer-vk:hover,
.footer-legal .footer-vk:focus-visible {
  background: #3c97f6;
  transform: translateY(-1px);
}

.footer-legal .footer-telegram {
  display: inline-flex;
  width: 36px;
  height: 36px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  text-decoration: none;
  transition:
    filter 180ms ease,
    transform 180ms ease;
}

.footer-legal .footer-telegram img {
  display: block;
  width: 36px;
  height: 36px;
}

.footer-legal .footer-telegram:hover,
.footer-legal .footer-telegram:focus-visible {
  filter: brightness(1.08);
  transform: translateY(-1px);
}

.legal-kicker {
  margin-bottom: 16px;
  color: var(--red);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.14em;
}

.legal-warning {
  margin: 28px 0;
  padding: 18px 20px;
  color: var(--white);
  border-left: 4px solid var(--red);
  background: rgba(242, 14, 48, 0.12);
}

.legal-shell .button {
  margin-top: 20px;
}

[data-reveal] {
  opacity: 0;
  transform: translateY(26px);
  transition:
    opacity 620ms cubic-bezier(0.2, 0.8, 0.2, 1),
    transform 620ms cubic-bezier(0.2, 0.8, 0.2, 1);
}

[data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1180px) {
  :root {
    --container: 1040px;
  }

  .desktop-nav {
    gap: 14px;
  }

  .desktop-nav a {
    font-size: 0.76rem;
  }

  .audio-launcher {
    width: 42px;
    min-height: 42px;
    padding: 0;
  }

  .audio-launcher-label {
    display: none;
  }

  .hero-grid {
    grid-template-columns: minmax(0, 1.12fr) minmax(300px, 0.6fr);
    gap: 34px;
  }

  .glass-card {
    min-height: 126px;
    padding: 20px 20px 18px 88px;
  }

  .fact-number {
    top: 22px;
    left: 20px;
    width: 52px;
    height: 52px;
  }

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

  .feature-card {
    min-height: 260px;
  }

  .feature-index {
    margin-bottom: 58px;
  }

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

@media (max-width: 1024px) {
  :root {
    --header-height: 76px;
  }

  .section {
    padding: 104px 0;
  }

  .desktop-nav,
  .header-contact {
    display: none;
  }

  .header-grid {
    grid-template-columns: auto 1fr auto auto;
    gap: 10px;
  }

  .audio-launcher {
    display: grid;
    width: 46px;
    height: 46px;
    min-height: 46px;
    grid-column: 3;
    padding: 0;
    border-radius: 50%;
  }

  .menu-toggle {
    display: block;
    grid-column: 4;
  }

  .audio-dock {
    right: 16px;
    bottom: max(16px, env(safe-area-inset-bottom));
    left: 16px;
    width: min(440px, calc(100vw - 32px));
  }

  .hero {
    min-height: auto;
    padding: calc(var(--header-height) + 90px) 0 110px;
  }

  .hero-grid {
    grid-template-columns: 1fr;
  }

  .hero-copy {
    max-width: 780px;
  }

  .hero-facts {
    grid-template-columns: repeat(2, 1fr);
    margin-top: 26px;
  }

  .split-grid,
  .volume-layout,
  .faq-layout,
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 58px;
  }

  .section-heading {
    display: block;
  }

  .section-heading .eyebrow {
    margin-bottom: 18px;
  }

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

  .volume-layout {
    gap: 10px;
  }

  .parcel-visual {
    min-height: 340px;
  }

  .parcel-visual img {
    max-height: 390px;
  }

  .operator-visual {
    min-height: 580px;
  }

  .integrations-heading {
    margin-bottom: 48px;
  }

  .marketplace-grid {
    gap: 18px;
  }

  .faq-layout .section-heading {
    position: static;
  }

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

  .footer-contact {
    grid-column: 1 / -1;
    text-align: left;
  }
}

@media (max-width: 768px) {
  .container {
    width: min(calc(100% - 32px), var(--container));
  }

  .section {
    padding: 84px 0;
  }

  h1 {
    font-size: clamp(3.8rem, 15vw, 6rem);
  }

  h2,
  .visual-heading {
    font-size: clamp(3.1rem, 13vw, 5rem);
  }

  .hero {
    padding-top: calc(var(--header-height) + 72px);
  }

  .hero-media img {
    object-position: 36% center;
  }

  .hero-shade {
    background:
      linear-gradient(180deg, rgba(3, 5, 9, 0.1), rgba(3, 5, 9, 0.76)),
      linear-gradient(90deg, rgba(3, 5, 9, 0.3), rgba(3, 5, 9, 0.06));
  }

  .hero-facts {
    grid-template-columns: 1fr;
  }

  .glass-card {
    min-height: 112px;
  }

  .scroll-cue {
    display: none;
  }

  .mvideo-visual {
    min-height: 440px;
    padding: 28px;
    border-radius: 28px;
  }

  .mvideo-visual picture {
    margin-top: 36px;
  }

  .route-card {
    right: 20px;
    bottom: 20px;
    left: 20px;
    grid-template-columns: 1fr;
    gap: 6px;
    padding: 14px;
  }

  .route-card i {
    width: 1px;
    height: 14px;
    margin-inline: auto;
  }

  .feature-grid,
  .volume-grid,
  .fbs-grid,
  .case-grid,
  .tariff-grid {
    grid-template-columns: 1fr;
  }

  .feature-card {
    min-height: 230px;
  }

  .volume-card {
    min-height: 220px;
  }

  .package-scale {
    top: 26px;
    right: 22px;
    transform: scale(0.78);
    transform-origin: top right;
  }

  .volume-card-red {
    transform: none;
  }

  .parcel-visual {
    min-height: 300px;
  }

  .fbs-card {
    min-height: auto;
    padding: 94px 26px 28px;
  }

  .fbs-card > span {
    top: 24px;
    left: 26px;
  }

  .operator-visual {
    min-height: 500px;
  }

  .compact-form {
    grid-template-columns: 1fr;
  }

  .compact-form .consent,
  .compact-form .form-status,
  .compact-form .button {
    grid-column: 1;
  }

  .case-card {
    min-height: 360px;
  }

  .integrations-heading h2 {
    font-size: clamp(2.9rem, 10vw, 4.8rem);
  }

  .integrations-heading p {
    margin-top: 22px;
  }

  .marketplace-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
  }

  .marketplace-card,
  .marketplace-card-wide {
    grid-column: span 1;
    border-radius: 22px;
  }

  .marketplace-card:last-child {
    grid-column: 1 / -1;
    width: calc(50% - 7px);
    justify-self: center;
  }

  .tariffs-section {
    padding-top: 60px;
  }

  .tariffs-heading {
    margin-bottom: 42px;
  }

  .tariffs-heading h2 {
    font-size: clamp(2.9rem, 12vw, 4.8rem);
  }

  .tariff-card {
    min-height: 190px;
  }

  .tariff-price {
    margin: auto 0 0;
  }

  .form-row,
  .footer-grid {
    grid-template-columns: 1fr;
  }

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

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

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
  }

  .modal {
    padding: 12px;
  }

  .modal-panel {
    max-height: calc(100svh - 24px);
    padding: 36px 22px 28px;
    border-radius: 22px;
  }

  .bot-handoff-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .bot-handoff-actions .button {
    width: 100%;
  }
}

@media (max-width: 420px) {
  .container {
    width: min(calc(100% - 24px), var(--container));
  }

  .audio-dock {
    right: 12px;
    bottom: max(12px, env(safe-area-inset-bottom));
    left: 12px;
    width: auto;
    gap: 8px;
    padding: 10px;
    border-radius: 16px;
  }

  .audio-play {
    min-height: 38px;
    gap: 7px;
    padding: 0 10px 0 7px;
    font-size: 0.7rem;
    white-space: nowrap;
  }

  .audio-play-icon {
    width: 24px;
    height: 24px;
  }

  .audio-download {
    min-height: 34px;
    padding: 0 9px;
    font-size: 0.68rem;
  }

  .audio-track strong {
    font-size: 0.7rem;
  }

  .audio-track-switcher {
    gap: 3px;
    transform: translateX(-4px);
  }

  .audio-track-switcher button {
    width: 18px;
    font-size: 1.48rem;
  }

  .audio-track-switcher span {
    min-width: 29px;
    font-size: 0.66rem;
  }

  .header-grid {
    gap: 10px;
  }

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

  .audio-launcher {
    grid-column: 3;
  }

  .menu-toggle {
    grid-column: 4;
  }

  .hero {
    padding-bottom: 70px;
  }

  .hero-lead {
    margin-top: 22px;
    font-size: 1rem;
  }

  .hero-actions {
    display: grid;
  }

  .button {
    width: 100%;
  }

  .glass-card {
    padding: 20px 18px 18px 82px;
    border-radius: 20px;
  }

  .fact-number {
    left: 18px;
    width: 48px;
    height: 48px;
    font-size: 1.45rem;
  }

  .mvideo-visual {
    min-height: 405px;
  }

  .section-heading {
    margin-bottom: 44px;
  }

  .feature-card,
  .volume-card,
  .case-card,
  .tariff-card,
  .contact-form {
    padding: 26px 22px;
    border-radius: 22px;
  }

  .operator-visual {
    min-height: 410px;
    border-radius: 24px;
  }

  .operator-label {
    right: 12px;
    bottom: 12px;
    left: 12px;
    height: 72px;
    gap: 10px;
    padding: 14px 10px;
    border-radius: 16px;
    font-size: clamp(1rem, 5.2vw, 1.4rem);
    letter-spacing: 0.04em;
  }

  .operator-label i {
    width: 6px;
    height: 6px;
    flex-basis: 6px;
  }

  .integrations-heading h2 {
    font-size: 2.65rem;
  }

  .integrations-heading p {
    font-size: 0.94rem;
  }

  .marketplace-grid {
    grid-template-columns: 1fr;
  }

  .marketplace-card,
  .marketplace-card-wide,
  .marketplace-card:last-child {
    grid-column: 1;
    width: 100%;
  }

  .tariffs-heading h2 {
    font-size: 2.75rem;
  }

  .tariffs-heading p {
    font-size: 0.94rem;
  }

  .tariff-card {
    min-height: 0;
  }

  .contact-list > div {
    grid-template-columns: 1fr;
    gap: 5px;
  }
}

@media (max-width: 340px) {
  h1 {
    font-size: 3.3rem;
  }

  h2,
  .visual-heading {
    font-size: 2.85rem;
  }

  .brand {
    font-size: 1rem;
  }

  .hero-facts {
    gap: 10px;
  }

  .glass-card {
    padding-left: 76px;
  }

  .fact-number {
    left: 15px;
  }

  .mvideo-visual {
    min-height: 370px;
    padding: 18px;
  }
}

@media (max-width: 768px) {
  .questionnaire-panel {
    padding: 36px 22px 24px;
  }

  .questionnaire-step {
    min-height: 300px;
  }

  .questionnaire-fields,
  .questionnaire-fields.two-columns,
  .questionnaire-option-grid,
  .questionnaire-review-fields {
    grid-template-columns: 1fr;
  }

  .questionnaire-review-tools {
    grid-template-columns: 1fr;
  }

  .questionnaire-summary li {
    grid-template-columns: 1fr;
    gap: 4px;
  }

  .questionnaire-actions {
    bottom: -24px;
    margin-top: 18px;
  }

  .questionnaire-actions .button {
    flex: 1 1 0;
    min-width: 0;
    padding-right: 14px;
    padding-left: 14px;
  }

  .fbs-v2-router,
  .fbs-v2-document-slot,
  .fbs-v2-metric-grid,
  .fbs-v2-allocation-grid,
  .fbs-v2-contact-grid,
  .fbs-v2-marking-detail {
    grid-template-columns: 1fr;
  }

  .fbs-v2-service-card {
    min-height: 150px;
    padding: 22px;
  }

  .fbs-v2-document-slot .button,
  .fbs-v2-document-slot > small,
  .fbs-v2-contact-grid .questionnaire-field:last-child {
    grid-column: auto;
  }

  .fbs-v2-marking-detail {
    margin-left: 14px;
  }

  .fbs-v2-section {
    padding: 15px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  [data-reveal] {
    opacity: 1;
    transform: none;
  }
}
