.page {
  --panel: rgba(7, 16, 15, 0.84);
  --panel-strong: rgba(8, 16, 15, 0.96);
  --slot-w: 18.6%;
  --slot-h: 14.6%;
  --radius-xl: 22px;
  --radius-lg: 14px;
  --radius-md: 12px;
  width: 100%;
  max-width: 100vw;
  padding-bottom: 116px;
  overflow-x: clip;
}

@media (max-width: 640px) {
  .header .nav[data-mobile-menu] {
    position: fixed;
    top: 0;
    left: 0;
    width: min(330px, 86vw);
    height: 100dvh;
    z-index: 2000;
    display: grid;
    align-content: start;
    justify-content: stretch;
    gap: 6px;
    padding: 16px 14px 24px;
    background: linear-gradient(180deg, #0c241b 0%, #091812 100%);
    border-right: 1px solid rgba(123, 240, 176, 0.25);
    transform: translateX(-100%);
    transition: transform 0.26s ease;
    overflow-y: auto;
  }

  body.mobile-menu-open .header .nav[data-mobile-menu] {
    transform: translateX(0);
  }
}

.brand_d {
  display: inline-flex;
  align-items: center;
  gap: 18px;
  color: var(--text);
  text-decoration: none;
}

.brand_d img {
  width: clamp(153px, 18vw, 273px);
  height: auto;
  display: block;
}

.brand_d span {
  color: rgba(238, 247, 244, 0.82);
    font-family: "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
    font-size: 1.99rem;
    font-weight: 900;
    letter-spacing: 0.20em;
    text-transform: uppercase;
    white-space: nowrap;
}

@keyframes brand-rotate {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}

.hero__brandline {
  margin-bottom: 18px;
}

.hero__brandline .brand img {
  width: clamp(150px, 16vw, 230px);
  height: auto;
  aspect-ratio: 588 / 117;
  object-fit: contain;
}

.hero__brandline .brand span {
  font-size: 0.82rem;
  letter-spacing: 0.18em;
}

.hero {
  padding-bottom: clamp(74px, 8vh, 120px);
}

.hero__grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(320px, 660px) minmax(320px, 1fr);
  gap: 30px;
}

.page .eyebrow {
  display: inline-flex;
  align-items: center;
  padding: 8px 14px;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: var(--brand2);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-size: 1.82rem;
  line-height: 1.1;
}
.page .eyebrow::before {
  content: "";
  width: 25px;
  height: 38px;
  background-color: #27ca11;
  display: inline-block;
  align-self: center;
  flex-shrink: 0;
  padding-right: 11px;
  margin-right: 9px;
}

.page .top_words::before {
  height: 70px;
}
.page h1 {
  margin: 18px 0 14px;
  font-family: var(--display);
  font-size: clamp(2.4rem, 5vw, 4.8rem);
  line-height: 0.99;
  text-transform: uppercase;
}

.hero__lead {
  margin: 0 0 24px;
  font-size: 1.05rem;
  line-height: 1.68;
  color: var(--muted);
}

.button {
  min-height: 52px;
  padding: 0 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 700;
  transition: transform 0.25s ease;
}

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

.button--primary {
  background: linear-gradient(135deg, var(--brand) 0%, #19d56f 100%);
  color: #05120b;
  box-shadow: 0 16px 30px rgba(17, 182, 93, 0.28);
}

.button--ghost {
  color: var(--text);
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.04);
}

.home-catalog-dock {
  position: fixed;
  left: 50%;
  bottom: max(18px, env(safe-area-inset-bottom));
  z-index: 82;
  width: min(1120px, calc(100vw - 32px));
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: clamp(10px, 1.35vw, 18px);
  align-items: center;
  padding: 0;
  transform: translateX(-50%);
  pointer-events: none;
}

.home-catalog-dock__link {
  position: relative;
  isolation: isolate;
  min-width: 0;
  min-height: 68px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 8px 16px 8px 10px;
  border-radius: 999px;
  border: 1px solid rgba(123, 240, 176, 0.34);
  background:
    linear-gradient(135deg, rgba(8, 29, 21, 0.94), rgba(3, 12, 10, 0.88)),
    rgba(7, 18, 14, 0.92);
  box-shadow:
    0 18px 38px rgba(0, 0, 0, 0.42),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
  color: #f2fff7;
  font-size: clamp(0.72rem, 0.78vw, 0.9rem);
  font-weight: 900;
  letter-spacing: 0.055em;
  line-height: 1.08;
  text-align: left;
  text-decoration: none;
  text-transform: uppercase;
  text-shadow: 0 0 14px rgba(133, 255, 173, 0.18);
  pointer-events: auto;
  transition:
    border-color 0.22s ease,
    box-shadow 0.22s ease,
    transform 0.22s ease;
}

.home-catalog-dock__link::before {
  content: "";
  position: absolute;
  inset: -1px;
  z-index: -1;
  border-radius: inherit;
  background:
    radial-gradient(circle at 20% 50%, rgba(0, 255, 95, 0.34), transparent 35%),
    linear-gradient(90deg, rgba(0, 255, 95, 0.28), transparent 55%);
  opacity: 0;
  transition: opacity 0.22s ease;
}

.home-catalog-dock__link:hover,
.home-catalog-dock__link:focus-visible {
  border-color: rgba(50, 255, 125, 0.85);
  box-shadow:
    0 22px 44px rgba(0, 0, 0, 0.5),
    0 0 28px rgba(17, 230, 94, 0.32),
    inset 0 1px 0 rgba(255, 255, 255, 0.12);
  transform: translateY(-3px);
}

.home-catalog-dock__link:hover::before,
.home-catalog-dock__link:focus-visible::before {
  opacity: 1;
}

.home-catalog-dock__icon {
  flex: 0 0 52px;
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background:
    radial-gradient(circle at 42% 34%, rgba(57, 255, 122, 0.36), transparent 44%),
    rgba(0, 0, 0, 0.25);
  box-shadow:
    inset 0 0 0 1px rgba(123, 240, 176, 0.22),
    0 0 22px rgba(17, 230, 94, 0.18);
}

.home-catalog-dock__icon img {
  width: 44px;
  height: 44px;
  object-fit: contain;
  filter: drop-shadow(0 0 10px rgba(42, 255, 103, 0.28));
}

.home-catalog-dock__link--sale {
  border-color: rgba(255, 190, 85, 0.72);
  background:
    linear-gradient(135deg, rgba(81, 38, 21, 0.95), rgba(24, 15, 10, 0.9)),
    rgba(30, 10, 8, 0.92);
  box-shadow:
    0 18px 38px rgba(0, 0, 0, 0.42),
    0 0 30px rgba(255, 104, 54, 0.24),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.home-catalog-dock__link--sale::before {
  background:
    radial-gradient(circle at 20% 50%, rgba(255, 200, 79, 0.4), transparent 34%),
    linear-gradient(90deg, rgba(255, 86, 50, 0.36), transparent 58%);
}

.home-catalog-dock__link--sale .home-catalog-dock__icon {
  background:
    radial-gradient(circle at 48% 40%, rgba(255, 224, 118, 0.48), transparent 46%),
    rgba(64, 28, 10, 0.68);
  box-shadow:
    inset 0 0 0 1px rgba(255, 211, 96, 0.3),
    0 0 22px rgba(255, 104, 54, 0.25);
}

.metrics {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
}

.metric {
  position: relative;
  padding: 16px 20px;
  border-radius: 20px;
  background:
    linear-gradient(90deg, rgba(17, 182, 93, 0.12), rgba(255, 255, 255, 0.03) 34%, rgba(255, 255, 255, 0.02)),
    rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.metric::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 5px;
  background: linear-gradient(180deg, var(--brand), var(--accent));
}

.metric strong {
  display: inline-block;
  margin-right: 12px;
  font-size: 1.02rem;
  font-family: var(--display);
  color: var(--accent);
  vertical-align: middle;
}

.metric span {
  display: inline;
  color: var(--muted);
  line-height: 1.5;
  font-size: 0.98rem;
}

.showcase {
  position: relative;
  padding: 24px;
  border-radius: 18px;
  background:
    radial-gradient(ellipse at 50% 45%, rgba(18, 52, 34, 0.48), rgba(4, 14, 10, 0.64) 62%, rgba(2, 7, 5, 0.86) 100%),
    rgba(2, 9, 7, 0.74);
  border: 1px solid rgba(165, 255, 206, 0.18);
  box-shadow:
    0 24px 72px rgba(0, 0, 0, 0.36),
    0 0 0 1px rgba(27, 255, 116, 0.07),
    0 0 34px rgba(0, 255, 112, 0.13),
    inset 0 0 54px rgba(0, 0, 0, 0.55),
    inset 0 0 36px rgba(0, 255, 112, 0.06);
  overflow: hidden;
}

.showcase::before,
.showcase::after {
  content: "";
  position: absolute;
  inset: -18% -16%;
  pointer-events: none;
  mix-blend-mode: screen;
}

.showcase::before {
  inset: 0;
  background:
    linear-gradient(180deg,
      rgba(230, 255, 242, 0.18) 0,
      rgba(0, 255, 108, 0.09) 1px,
      transparent 16px,
      transparent calc(100% - 16px),
      rgba(0, 255, 108, 0.08) calc(100% - 1px),
      rgba(228, 255, 241, 0.14) 100%),
    linear-gradient(90deg,
      rgba(214, 255, 235, 0.58) 0,
      rgba(0, 255, 108, 0.84) 2px,
      rgba(0, 255, 108, 0.42) 10px,
      rgba(0, 255, 108, 0.14) 42px,
      transparent 15%,
      transparent 85%,
      rgba(78, 255, 157, 0.14) calc(100% - 42px),
      rgba(78, 255, 157, 0.38) calc(100% - 10px),
      rgba(78, 255, 157, 0.78) calc(100% - 2px),
      rgba(221, 255, 237, 0.5) 100%);
  background-blend-mode: screen;
  filter: blur(6px);
  opacity: 0.84;
  animation: showcase-edge-glow 16s ease-in-out infinite alternate;
}

.showcase::after {
  inset: 0;
  background:
    radial-gradient(ellipse 9px 26% at 7.5% 42%, rgba(205, 255, 229, 0.38), rgba(0, 255, 116, 0.28) 18%, rgba(0, 255, 116, 0.12) 48%, transparent 76%),
    radial-gradient(ellipse 34px 36% at 7.5% 37%, rgba(0, 255, 112, 0.18), rgba(0, 255, 112, 0.1) 34%, transparent 72%),
    linear-gradient(180deg,
      rgba(221, 255, 238, 0.24) 0 1px,
      transparent 3px,
      transparent calc(100% - 3px),
      rgba(221, 255, 238, 0.13) calc(100% - 1px)),
    linear-gradient(90deg,
      rgba(230, 255, 242, 0.72) 0 1px,
      rgba(0, 255, 108, 0.46) 2px,
      transparent 5px,
      transparent calc(100% - 5px),
      rgba(78, 255, 157, 0.4) calc(100% - 2px),
      rgba(228, 255, 241, 0.58) calc(100% - 1px)),
    radial-gradient(ellipse at 6% 47%, rgba(0, 255, 105, 0.34), transparent 32%),
    radial-gradient(ellipse at 94% 47%, rgba(87, 255, 156, 0.27), transparent 32%),
    radial-gradient(circle at 93% 38%, rgba(61, 255, 128, 0.16) 0 1px, transparent 2px),
    radial-gradient(circle at 88% 54%, rgba(61, 255, 128, 0.12) 0 1px, transparent 2px),
    radial-gradient(circle at 96% 64%, rgba(61, 255, 128, 0.11) 0 1px, transparent 2px),
    radial-gradient(circle at 90% 72%, rgba(61, 255, 128, 0.14) 0 1px, transparent 2px),
    linear-gradient(90deg, rgba(0, 0, 0, 0.52), transparent 20%, transparent 80%, rgba(0, 0, 0, 0.52));
  opacity: 0.78;
  filter: blur(1px);
}

.showcase__badge,
.showcase__hint {
  position: absolute;
  z-index: 2;
  padding: 10px 14px;
  background: rgb(9 113 22 / 74%);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--muted);
  font-size: 0.84rem;
  text-transform: uppercase;
  font-weight: 500;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.18);
}

.showcase__badge {
  top: 20px;
  left: 20px;
}

.showcase__badge.is-typing {
  color: #ffffff;
  text-shadow:
    0 0 7px rgba(255, 255, 255, 0.72),
    0 0 16px rgba(205, 255, 224, 0.42),
    0 0 28px rgba(88, 255, 146, 0.2);
}

.showcase__badge.is-typing::after {
  content: "";
  display: inline-block;
  width: 0.08em;
  height: 1em;
  margin-left: 0.18em;
  vertical-align: -0.14em;
  background: #ffffff;
  box-shadow: 0 0 9px rgba(255, 255, 255, 0.78);
  animation: showcase-type-caret 0.8s steps(1) infinite;
}

.showcase__hint {
  right: 20px;
  bottom: 20px;
}

.showcase__badge.attention-pulse,
.showcase__hint.attention-pulse {
  color: #f6fffa;
  border-color: rgba(88, 255, 146, 0.95);
}

.showcase__badge.attention-pulse {
  animation: showcase-border-glow 2.1s ease-in-out 1;
}

.showcase__hint.attention-pulse {
  animation: showcase-border-glow 2.1s ease-in-out 0.18s 1;
}

@keyframes showcase-type-caret {
  50% {
    opacity: 0;
  }
}

@keyframes showcase-border-glow {
  0%,
  8%,
  24%,
  40%,
  56%,
  100% {
    border-color: rgba(255, 255, 255, 0.1);
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.18);
  }

  12%,
  16%,
  28%,
  32%,
  44%,
  48% {
    border-color: rgba(88, 255, 146, 1);
    box-shadow:
      0 0 0 1px rgba(88, 255, 146, 0.95),
      0 0 12px rgba(88, 255, 146, 0.85),
      0 0 22px rgba(88, 255, 146, 0.72),
      0 0 36px rgba(88, 255, 146, 0.45),
      0 10px 24px rgba(0, 0, 0, 0.18);
  }
}

.stand-wrap {
  position: relative;
  width: min(100%, 560px);
  margin: 54px auto 0;
  isolation: isolate;
}

.stand-wrap::before,
.stand-wrap::after {
  content: "";
  position: absolute;
  inset: -7% -12%;
  z-index: -2;
  pointer-events: none;
  filter: blur(28px);
  opacity: 0.28;
}

.stand-wrap::before {
  background:
    linear-gradient(90deg, rgba(12, 255, 108, 0.16), transparent 13%, transparent 87%, rgba(51, 255, 139, 0.14));
  animation: aurora-drift 18s ease-in-out infinite alternate;
}

.stand-wrap::after {
  inset: -3% -8%;
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(47, 255, 133, 0.12), transparent 8%, transparent 92%, rgba(119, 255, 181, 0.1));
  filter: blur(38px);
  opacity: 0.24;
  animation: aurora-pulse 14s ease-in-out infinite;
}

.stand-wrap > img {
  width: 100%;
  height: auto;
  max-height: none;
  object-fit: contain;
  display: block;
  filter: drop-shadow(0 30px 40px rgba(0, 0, 0, 0.4));
  transition: filter 1s ease;
}

.stand-wrap.stand-wrap--glow > img {
  filter: drop-shadow(0 30px 40px rgba(0, 0, 0, 0.4));
}

.spotlight {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 1;
  opacity: 0.28;
  background:
    linear-gradient(90deg, rgba(117, 255, 181, 0.08), transparent 15%, transparent 85%, rgba(112, 255, 178, 0.08)),
    linear-gradient(180deg, rgba(237, 255, 245, 0.07), transparent 20%);
  mix-blend-mode: screen;
}

@keyframes showcase-edge-glow {
  0% {
    opacity: 0.34;
  }

  50% {
    opacity: 0.6;
  }

  100% {
    opacity: 0.46;
  }
}

@keyframes aurora-drift {
  0% {
    transform: translate3d(-2%, -1%, 0) scale(0.98) rotate(-2deg);
  }

  50% {
    transform: translate3d(2%, 1.5%, 0) scale(1.04) rotate(1.2deg);
  }

  100% {
    transform: translate3d(-1%, 2%, 0) scale(1.01) rotate(-1deg);
  }
}

@keyframes aurora-pulse {
  0%,
  100% {
    opacity: 0.42;
    transform: scale(0.96);
  }

  50% {
    opacity: 0.74;
    transform: scale(1.05);
  }
}

.slot-layer {
  position: absolute;
  inset: 0;
}

.slot {
  position: absolute;
  left: var(--x);
  top: var(--y);
  width: var(--slot-w);
  height: var(--slot-h);
  display: block;
  border: 0;
  padding: 0;
  background: transparent;
  border-radius: 18px;
  cursor: pointer;
  text-decoration: none;
  transform-origin: 50% 80%;
  transition: transform 0.22s ease, filter 0.22s ease;
  outline: none;
  overflow: visible;
}

.slot::before,
.slot::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  transition: opacity 0.22s ease, transform 0.22s ease;
}

.slot::before {
  opacity: 0;
  border: 0;
  background: transparent;
  box-shadow: none;
}

.slot::after {
  inset: 10% 18%;
  opacity: 0;
  background: transparent;
  filter: blur(12px);
  transform: scale(0.92);
}

.slot:hover,
.slot:focus-visible,
.slot.is-active {
  z-index: 3;
  filter: saturate(1.08) brightness(1.03);
  animation: touch-wobble 1.15s ease-in-out infinite;
}

.slot:hover::before,
.slot:hover::after,
.slot:focus-visible::before,
.slot:focus-visible::after,
.slot.is-active::before,
.slot.is-active::after {
  opacity: 0;
  transform: none;
}

.slot__hover-card {
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 5;
  width: clamp(138px, 15vw, 196px);
  padding: 10px;
  border-radius: 20px;
  background: linear-gradient(180deg, rgb(255 255 255 / 13%), rgb(2 149 43 / 85%));
  border: 1px solid rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(16px) saturate(1.15);
  box-shadow: 0 18px 34px rgba(0, 0, 0, 0.24);
  opacity: 0;
  visibility: hidden;
  transform: translate(-50%, -50%) scale(0.66);
  transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease;
  pointer-events: none;
}

.slot__hover-card[data-side="left"] {
  transform: translate(-108%, -50%) scale(0.66);
}

.slot__hover-card[data-side="right"] {
  transform: translate(8%, -50%) scale(0.66);
}

.slot__hover-card[data-side="center"] {
  transform: translate(-50%, -50%) scale(0.66);
}

.slot:hover .slot__hover-card,
.slot:focus-visible .slot__hover-card {
  opacity: 1;
  visibility: visible;
}

.slot:hover .slot__hover-card[data-side="left"],
.slot:focus-visible .slot__hover-card[data-side="left"] {
  transform: translate(-108%, -50%) scale(1);
}

.slot:hover .slot__hover-card[data-side="right"],
.slot:focus-visible .slot__hover-card[data-side="right"] {
  transform: translate(8%, -50%) scale(1);
}

.slot:hover .slot__hover-card[data-side="center"],
.slot:focus-visible .slot__hover-card[data-side="center"] {
  transform: translate(-50%, -50%) scale(1);
}

.slot__hover-image {
  aspect-ratio: 1 / 1;
  border-radius: 14px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.96);
  margin-bottom: 10px;
}

.slot__hover-image img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
  background: rgb(255, 255, 255);
}

.slot__hover-copy span {
  display: block;
  margin-bottom: 4px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  text-align: left;
}

.slot__hover-copy strong {
  display: block;
  color: #fff;
  font-size: 0.92rem;
  line-height: 1.25;
  text-align: left;
}

.proxxon {
  padding: 38px 0 92px;
}

.seo-article-section {
  padding: 18px 0 30px;
}

.mc-tiktok-section {
  position: relative;
  padding: 28px 0 34px;
}

.mc-tiktok-section__head {
  max-width: 100%;
  margin-bottom: 20px;
}

.mc-tiktok-section__head h2 {
  margin: 10px 0 10px;
  font-family: var(--display);
  font-size: clamp(2rem, 4.35vw, 4rem);
  line-height: 0.98;
  text-transform: uppercase;
  white-space: nowrap;
}

.mc-tiktok-section__head p {
  margin: 0;
  max-width: 740px;
  color: var(--muted);
  font-size: 1.04rem;
  line-height: 1.65;
}

.mc-tiktok-shell {
  position: relative;
  padding: 18px 54px;
  border-radius: 30px;
  border: 1px solid rgba(123, 240, 176, 0.18);
  background:
    radial-gradient(circle at 12% 12%, rgba(17, 182, 93, 0.16), transparent 28%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.025)),
    rgba(7, 18, 15, 0.8);
  box-shadow: var(--shadow), inset 0 0 0 1px rgba(255, 255, 255, 0.03);
  overflow: hidden;
}

.mc-tiktok-shell::before {
  content: "";
  position: absolute;
  inset: 10px;
  border-radius: 24px;
  border: 1px solid rgba(151, 255, 117, 0.12);
  pointer-events: none;
}

.mc-tiktok-track {
  position: relative;
  z-index: 1;
  display: flex;
  gap: 16px;
  overflow-x: auto;
  overflow-y: hidden;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
}

.mc-tiktok-track::-webkit-scrollbar {
  display: none;
}

.mc-tiktok-slide {
  position: relative;
  flex: 0 0 calc((100% - 48px) / 4);
  aspect-ratio: 9 / 16;
  min-height: 420px;
  border-radius: 22px;
  border: 1px solid rgba(123, 240, 176, 0.18);
  background: #020605;
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.32);
  overflow: hidden;
  scroll-snap-align: start;
  isolation: isolate;
}

.mc-tt-preview,
.mc-tiktok-slide iframe {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  display: block;
  border: 0;
  border-radius: 21px;
  background: #050908;
}

.mc-tt-preview {
  position: absolute;
  inset: 0;
  overflow: hidden;
  background:
    radial-gradient(circle at 50% 46%, rgba(210, 255, 105, 0.14), transparent 20%),
    radial-gradient(circle at 24% 18%, rgba(54, 255, 111, 0.17), transparent 30%),
    linear-gradient(180deg, rgba(13, 33, 26, 0.96), rgba(0, 0, 0, 0.98));
}

.mc-tt-preview img {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  opacity: 0.86;
  filter: saturate(1.05) contrast(1.05) brightness(0.82);
}

.mc-tt-preview::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  opacity: 0.34;
  background:
    linear-gradient(rgba(123, 240, 176, 0.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(123, 240, 176, 0.07) 1px, transparent 1px);
  background-size: 22px 22px;
  mask-image: linear-gradient(to bottom, transparent, #000 18%, #000 82%, transparent);
}

.mc-tt-preview::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.42), transparent 28%, transparent 72%, rgba(0, 0, 0, 0.48)),
    linear-gradient(180deg, rgba(0, 0, 0, 0.16), transparent 32%, rgba(0, 0, 0, 0.34)),
    radial-gradient(circle at 50% 72%, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.44) 76%);
}

.mc-tt-logo-overlay {
  position: absolute;
  inset: 0 0 auto;
  z-index: 20;
  height: 88px;
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  padding: 10px 12px 20px;
  background:
    linear-gradient(to bottom, rgba(0, 0, 0, 0.98) 0%, rgba(0, 0, 0, 0.84) 48%, rgba(0, 0, 0, 0.34) 78%, rgba(0, 0, 0, 0) 100%);
  pointer-events: auto;
  cursor: default;
}

.mc-tt-logo-overlay img {
  width: 190px;
  max-width: 72%;
  height: auto;
  display: block;
  object-fit: contain;
  user-select: none;
  pointer-events: none;
  filter:
    drop-shadow(0 8px 12px rgba(0, 0, 0, 0.92))
    drop-shadow(0 0 12px rgba(69, 255, 91, 0.32));
}

.mc-tt-block-right,
.mc-tt-block-bottom-right {
  position: absolute;
  z-index: 12;
  right: 0;
  pointer-events: auto;
  cursor: default;
  background: transparent;
}

.mc-tt-block-right {
  top: 82px;
  bottom: 82px;
  width: 72px;
}

.mc-tt-block-bottom-right {
  bottom: 0;
  width: 92px;
  height: 82px;
}

.mc-tt-open {
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 18;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  border: 1px solid rgba(207, 255, 111, 0.34);
  border-radius: 50%;
  background:
    radial-gradient(circle at 35% 30%, rgba(255, 255, 255, 0.16), transparent 34%),
    linear-gradient(145deg, rgba(11, 38, 28, 0.9), rgba(2, 8, 7, 0.92));
  box-shadow: 0 18px 38px rgba(0, 0, 0, 0.45), 0 0 28px rgba(61, 255, 96, 0.16);
  transform: translate(-50%, -50%);
  cursor: pointer;
  transition: transform 0.18s ease, border-color 0.18s ease, box-shadow 0.18s ease;
}

.mc-tt-open::before {
  content: "";
  width: 0;
  height: 0;
  margin-left: 5px;
  border-top: 13px solid transparent;
  border-bottom: 13px solid transparent;
  border-left: 20px solid #f7fff0;
  filter: drop-shadow(0 0 8px rgba(205, 255, 111, 0.36));
}

.mc-tt-open:hover {
  border-color: rgba(207, 255, 111, 0.82);
  box-shadow: 0 20px 42px rgba(0, 0, 0, 0.48), 0 0 34px rgba(61, 255, 96, 0.24);
  transform: translate(-50%, -50%) scale(1.06);
}

.mc-tiktok-arrow {
  position: absolute;
  top: 50%;
  z-index: 3;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(123, 240, 176, 0.24);
  border-radius: 50%;
  background: rgba(4, 16, 12, 0.82);
  color: var(--text);
  transform: translateY(-50%);
  cursor: pointer;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.28);
  backdrop-filter: blur(8px);
  transition: opacity 0.18s ease, transform 0.18s ease, border-color 0.18s ease;
}

.mc-tiktok-arrow:hover {
  border-color: rgba(205, 255, 106, 0.58);
  transform: translateY(-50%) scale(1.05);
}

.mc-tiktok-arrow.is-disabled {
  opacity: 0.26;
  cursor: default;
  pointer-events: none;
}

.mc-tiktok-arrow::before {
  content: "";
  width: 10px;
  height: 10px;
  border-top: 3px solid currentColor;
  border-right: 3px solid currentColor;
}

.mc-tiktok-arrow--prev {
  left: 14px;
}

.mc-tiktok-arrow--prev::before {
  transform: rotate(-135deg);
}

.mc-tiktok-arrow--next {
  right: 14px;
}

.mc-tiktok-arrow--next::before {
  transform: rotate(45deg);
}

@media (max-width: 1100px) {
  .mc-tiktok-slide {
    flex-basis: calc((100% - 32px) / 3);
  }
}

@media (max-width: 900px) {
  .mc-tiktok-slide {
    flex-basis: calc((100% - 16px) / 2);
  }
}

@media (min-width: 901px) {
  .mc-tt-open {
    width: 74px;
    height: 74px;
  }

  .mc-tt-open::before {
    border-top: 15px solid transparent;
    border-bottom: 15px solid transparent;
    border-left: 23px solid #f7fff0;
  }
}

.mc-tt-modal {
  position: fixed;
  inset: 0;
  z-index: 1200;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 26px;
}

.mc-tt-modal.is-open {
  display: flex;
}

.mc-tt-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.78);
  backdrop-filter: blur(9px);
}

.mc-tt-modal__dialog {
  position: relative;
  z-index: 1;
  width: min(82vw, 560px);
  max-height: 92vh;
  display: flex;
  justify-content: center;
}

.mc-tt-modal__player {
  position: relative;
  width: min(56vh, 520px);
  max-width: 100%;
  aspect-ratio: 9 / 16;
  border-radius: 26px;
  overflow: hidden;
  background: #020605;
  border: 1px solid rgba(123, 240, 176, 0.22);
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.62), 0 0 44px rgba(61, 255, 96, 0.12);
  isolation: isolate;
}

.mc-tt-modal__player iframe {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  display: block;
  border: 0;
  background: #050908;
}

.mc-tt-modal__close {
  position: absolute;
  top: -18px;
  right: -18px;
  z-index: 3;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(123, 240, 176, 0.28);
  border-radius: 50%;
  background: rgba(4, 16, 12, 0.94);
  color: var(--text);
  cursor: pointer;
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.38);
}

.mc-tt-modal__close::before,
.mc-tt-modal__close::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 20px;
  height: 3px;
  border-radius: 999px;
  background: currentColor;
}

.mc-tt-modal__close::before {
  transform: translate(-50%, -50%) rotate(45deg);
}

.mc-tt-modal__close::after {
  transform: translate(-50%, -50%) rotate(-45deg);
}

.seo-article {
  position: relative;
  padding: 28px 28px 22px;
  border-radius: 30px;
  background:
    radial-gradient(circle at top right, rgba(255, 213, 74, 0.08), transparent 26%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.02)),
    rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.seo-article .eyebrow {
  margin-bottom: 14px;
}

.seo-article__title {
  margin: 0 0 14px;
  font-family: var(--display);
  font-size: clamp(1.9rem, 4vw, 3.15rem);
  line-height: 1.02;
  text-transform: uppercase;
}

.seo-article__lead {
  margin: 0 0 18px;
  max-width: 980px;
  color: var(--muted);
  font-size: 1.02rem;
  line-height: 1.72;
}

.seo-article__body {
  position: relative;
  max-width: 1040px;
  max-height: 13.8rem;
  overflow: hidden;
  transition: max-height 0.45s ease;
}

.seo-article.is-expanded .seo-article__body {
  max-height: 220rem;
}

.seo-article__body p {
  margin: 0 0 14px;
  color: var(--muted);
  line-height: 1.8;
  font-size: 1rem;
}

.seo-article__body strong {
  color: var(--text);
  font-weight: 700;
}

.seo-article__body h3 {
  margin: 26px 0 10px;
  color: var(--text);
  font-family: var(--display);
  font-size: clamp(1.15rem, 2vw, 1.42rem);
  line-height: 1.22;
}

.seo-article__body a {
  color: var(--accent);
  font-weight: 800;
  text-decoration: none;
  border-bottom: 1px solid rgba(123, 240, 176, 0.35);
}

.seo-article__body a:hover {
  color: var(--accent-2);
  border-bottom-color: rgba(255, 213, 74, 0.55);
}

.seo-article__faq {
  margin-top: 26px;
  padding-top: 22px;
  border-top: 1px solid rgba(123, 240, 176, 0.16);
}

.seo-article__faq-item {
  margin: 0 0 18px;
  padding: 18px 20px;
  border-radius: 18px;
  border: 1px solid rgba(123, 240, 176, 0.12);
  background: rgba(255, 255, 255, 0.035);
}

.seo-article__faq-item h3 {
  margin-top: 0;
}

.seo-article__faq-item p:last-child {
  margin-bottom: 0;
}

.seo-article__fade {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 76px;
  height: 120px;
  background: linear-gradient(180deg, rgba(11, 18, 17, 0), rgba(11, 18, 17, 0.96) 78%, rgba(11, 18, 17, 1) 100%);
  pointer-events: none;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.seo-article.is-expanded .seo-article__fade {
  opacity: 0;
  visibility: hidden;
}

.seo-article__toggle {
  position: relative;
  z-index: 1;
  margin-top: 16px;
  min-height: 52px;
  padding: 0 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  border-radius: 999px;
  border: 1px solid rgba(123, 240, 176, 0.18);
  background: linear-gradient(135deg, rgba(17, 182, 93, 0.18), rgba(255, 213, 74, 0.12));
  color: var(--text);
  font: inherit;
  font-weight: 700;
  cursor: pointer;
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.24);
  transition: transform 0.22s ease, border-color 0.22s ease, box-shadow 0.22s ease;
}

.seo-article__toggle::after {
  content: "";
  width: 10px;
  height: 10px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(45deg) translateY(-1px);
  transition: transform 0.24s ease;
}

.seo-article__toggle:hover {
  transform: translateY(-2px);
  border-color: rgba(123, 240, 176, 0.34);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.28);
}

.seo-article.is-expanded .seo-article__toggle::after {
  transform: rotate(-135deg) translateY(-1px);
}

.proxxon__layout {
  width: min(1040px, 100%);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.proxxon .eyebrow {
  margin-bottom: 16px;
}

.proxxon__visual {
  position: relative;
  margin-bottom: 18px;
  width: 100%;
  max-width: 860px;
}

.proxxon__frame {
  position: relative;
  padding: 26px;
  border-radius: 32px;
  background:
    radial-gradient(circle at top, rgba(17, 182, 93, 0.18), transparent 42%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.03));
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.proxxon__frame::after {
  content: "";
  position: absolute;
  inset: auto -18% -18% auto;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background: rgba(255, 213, 74, 0.12);
  filter: blur(28px);
}

.proxxon__frame img {
  position: relative;
  z-index: 1;
  width: 100%;
  height: auto;
  aspect-ratio: 900 / 418;
  object-fit: contain;
  display: block;
  border-radius: 22px;
}

.proxxon__content {
  width: 100%;
  max-width: 860px;
}

.proxxon__title {
  margin: 0 0 18px;
  font-family: var(--display);
  font-size: clamp(2.3rem, 4.8vw, 4.9rem);
  line-height: 0.94;
  text-transform: uppercase;
  max-width: none;
  text-align: center;
}

.proxxon__title-line {
  display: block;
  white-space: nowrap !important;
}

.proxxon__lead {
  margin: 0 0 24px;
  width: 100%;
  padding: 18px 22px;
  border-radius: 22px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.02));
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: var(--muted);
  line-height: 1.5;
  font-size: clamp(1.15rem, 1.9vw, 1.5rem);
  font-family: var(--display);
  font-weight: 400;
  text-transform: none;
  box-shadow: var(--shadow);
  text-align: left;
}

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

.proxxon__point {
  position: relative;
  padding: 18px 18px 20px;
  min-height: 210px;
  border-radius: 28px;
  background:
    radial-gradient(circle at top right, rgba(255, 213, 74, 0.1), transparent 34%),
    linear-gradient(145deg, rgba(17, 182, 93, 0.14), rgba(255, 255, 255, 0.03) 42%, rgba(255, 255, 255, 0.02)),
    rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: var(--shadow);
  overflow: hidden;
  transition: transform 0.28s ease, border-color 0.28s ease, box-shadow 0.28s ease;
}

.proxxon__point::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 5px;
  background: linear-gradient(180deg, var(--brand), var(--accent));
}

.proxxon__point::after {
  content: "";
  position: absolute;
  right: -20px;
  top: -20px;
  width: 110px;
  height: 110px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
  filter: blur(10px);
}

.proxxon__point:hover {
  transform: translateY(-4px);
  border-color: rgba(123, 240, 177, 0.18);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.32);
}

.proxxon__point strong {
  position: relative;
  z-index: 1;
  display: block;
  margin-bottom: 10px;
  margin-top: 4px;
  color: var(--text);
  font-size: 1.08rem;
  line-height: 1.35;
  max-width: 22ch;
}

.proxxon__point p {
  position: relative;
  z-index: 1;
  margin: 0;
  color: var(--muted);
  line-height: 1.68;
  font-size: 0.95rem;
}

.reveal {
  opacity: 0;
  transform: translate3d(0, 28px, 0);
  transition: opacity 0.85s cubic-bezier(.2,.7,.2,1), transform 0.85s cubic-bezier(.2,.7,.2,1);
  will-change: transform, opacity;
}

.reveal--left {
  transform: translate3d(-90px, 18px, 0);
}

.reveal--right {
  transform: translate3d(90px, 18px, 0);
}

.reveal--fade {
  transform: translate3d(0, 26px, 0);
}

.reveal.is-visible {
  opacity: 1;
  transform: translate3d(0, 0, 0);
  gap: 30px;
}

.proxxon__points .proxxon__point:nth-child(1) {
  transition-delay: 0.05s;
}

.proxxon__points .proxxon__point:nth-child(2) {
  transition-delay: 0.14s;
}

.proxxon__points .proxxon__point:nth-child(3) {
  transition-delay: 0.23s;
}

.proxxon__points .proxxon__point:nth-child(4) {
  transition-delay: 0.32s;
}

.metrics .metric:nth-child(1) {
  transition-delay: 0.05s;
}

.metrics .metric:nth-child(2) {
  transition-delay: 0.14s;
}

.metrics .metric:nth-child(3) {
  transition-delay: 0.23s;
}

.reviews {
  padding: 12px 0 22px;
}

.reviews__layout {
  display: grid;
  gap: 22px;
}

.reviews__intro {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0;
}

.reviews__title {
  margin: 14px 0 12px;
  font-family: var(--display);
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 1.16;
  text-transform: uppercase;
  color: #ffff00;
}

.reviews__title-country {
  color: #63cfff;
  font-size: calc(1em + 9px);
  text-transform: none;
}

.reviews__lead {
  margin: 0;
  max-width: 760px;
  color: var(--muted);
  line-height: 1.65;
}

.reviews__actions {
  margin-top: 18px;
}

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

.reviews-google {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 18px;
  padding: 18px;
  border-radius: 24px;
  border: 1px solid rgba(123, 240, 176, 0.18);
  background:
    radial-gradient(circle at 8% 50%, rgba(123, 240, 176, 0.16), transparent 30%),
    linear-gradient(135deg, rgba(12, 35, 25, 0.94), rgba(6, 18, 14, 0.96));
  box-shadow: var(--shadow), inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.reviews-google__mark {
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 0 24px rgba(123, 240, 176, 0.18);
}

.reviews-google__mark img {
  display: block;
  width: 34px;
  height: 34px;
}

.reviews-google__body {
  display: grid;
  gap: 4px;
  min-width: 0;
}

.reviews-google__label {
  color: #8df7b4;
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.reviews-google__body strong {
  color: var(--text);
  font-family: var(--display);
  font-size: clamp(1.08rem, 2vw, 1.35rem);
  line-height: 1.12;
}

.reviews-google__stars {
  color: #ffd54a;
  font-size: 1.08rem;
  letter-spacing: 0.06em;
  text-shadow: 0 0 14px rgba(255, 213, 74, 0.28);
}

.reviews-google__body p {
  margin: 0;
  max-width: 760px;
  color: var(--muted);
  line-height: 1.45;
}

.reviews-google__link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 18px;
  border-radius: 16px;
  border: 1px solid rgba(229, 228, 228, 0.28);
  background: rgba(255, 255, 255, 0.04);
  color: var(--text);
  font-weight: 900;
  text-decoration: none;
  white-space: nowrap;
  transition: transform 0.22s ease, border-color 0.22s ease, background 0.22s ease;
}

.reviews-google__link:hover {
  transform: translateY(-2px);
  border-color: rgba(123, 240, 176, 0.58);
  background: rgba(123, 240, 176, 0.1);
}

.review-card {
  padding: 10px;
  border-radius: 24px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0)),
    rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.review-card img {
  display: block;
  width: 100%;
  border-radius: 16px;
}

.contacts {
  padding: 20px 0 38px;
}

.contacts__layout {
  display: grid;
  grid-template-columns: minmax(320px, 460px) minmax(0, 1fr);
  gap: 24px;
  align-items: stretch;
}

.contacts__info,
.contacts__map {
  border-radius: 28px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0)),
    rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: var(--shadow);
}

.contacts__info {
  padding: 24px;
}

.contacts__title {
  margin: 14px 0 12px;
  font-family: var(--display);
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 0.96;
  text-transform: uppercase;
}

.contacts__lead {
  margin: 0 0 20px;
  color: var(--muted);
  line-height: 1.65;
}

.contacts__list {
  display: grid;
  gap: 12px;
}

.contacts__item {
  padding: 16px 18px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.07);
}

.contacts__item small {
  display: block;
  margin-bottom: 8px;
  color: #9ad0ba;
  font-size: 0.74rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
}

.contacts__item strong,
.contacts__item a {
  display: block;
  color: var(--text);
  text-decoration: none;
  line-height: 1.6;
  font-size: 1rem;
}

.contacts__item a + a {
  margin-top: 4px;
}

.contacts__item a:hover {
  color: var(--brand2);
}

.contacts__actions {
  margin-top: 18px;
}

.contacts__map {
  overflow: hidden;
  min-height: 100%;
}

.contacts__map iframe {
  width: 100%;
  height: 100%;
  min-height: 520px;
  border: 0;
  display: block;
}

.page .footer {
  padding: 0 0 28px;
}

.footer__inner {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(280px, 0.92fr);
  align-items: stretch;
  gap: 0;
  overflow: hidden;
  border-radius: 24px;
  background: linear-gradient(135deg, rgba(15, 16, 15, 0.98), rgba(11, 20, 15, 0.98));
  border: 1px solid rgba(124, 240, 177, 0.18);
  box-shadow:
    0 24px 54px rgba(0, 0, 0, 0.26),
    inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.footer__copy {
  position: relative;
  z-index: 1;
  padding: 42px 38px;
  max-width: 760px;
}

.footer__badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
  padding: 9px 14px;
  border-radius: 999px;
  border: 1px solid rgba(124, 240, 177, 0.22);
  background: rgba(124, 240, 177, 0.08);
  color: #cbf8dc;
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.footer__badge::before {
  content: "";
  width: 12px;
  height: 12px;
  border-radius: 4px;
  background: linear-gradient(135deg, rgba(124, 240, 177, 1), rgba(255, 213, 74, 0.9));
  box-shadow: 0 0 14px rgba(124, 240, 177, 0.4);
}

.footer__copy strong {
  display: block;
  margin-bottom: 14px;
  font-size: clamp(1.9rem, 3.1vw, 3rem);
  line-height: 1.05;
  color: #f4fff7;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

.footer__copy p {
  margin: 0;
  color: rgba(238, 247, 244, 0.86);
  font-size: 1.03rem;
  line-height: 1.7;
  max-width: 590px;
}

.footer__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 24px;
}

.footer__link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 58px;
  padding: 0 22px;
  border-radius: 14px;
  color: #ffffff;
  text-decoration: none;
  font-weight: 700;
  letter-spacing: 0.08em;
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.2);
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

.footer__link::after {
  content: "";
  width: 10px;
  height: 10px;
  border-top: 2px solid currentColor;
  border-right: 2px solid currentColor;
  transform: rotate(45deg);
}

.footer__link--primary {
  border: 1px solid rgba(124, 240, 177, 0.48);
  background: linear-gradient(135deg, rgba(20, 190, 99, 0.96), rgba(13, 122, 65, 0.96));
  box-shadow:
    0 18px 34px rgba(0, 0, 0, 0.24),
    0 0 24px rgba(20, 190, 99, 0.2);
}

.footer__link--ghost {
  border: 1px solid rgba(124, 240, 177, 0.28);
  background: rgba(255, 255, 255, 0.04);
  color: #d9ffea;
  box-shadow:
    0 0 0 1px rgba(124, 240, 177, 0.18),
    0 0 18px rgba(124, 240, 177, 0.16),
    0 14px 30px rgba(0, 0, 0, 0.2);
}

.footer__link--accent {
  border: 1px solid rgba(255, 213, 74, 0.26);
  background: linear-gradient(135deg, rgba(255, 213, 74, 0.16), rgba(17, 182, 93, 0.14));
  color: #fff8d7;
  cursor: pointer;
  font: inherit;
  box-shadow:
    0 0 0 1px rgba(255, 213, 74, 0.12),
    0 0 18px rgba(255, 213, 74, 0.12),
    0 14px 30px rgba(0, 0, 0, 0.2);
}

.footer__link:hover {
  transform: translateY(-1px);
  border-color: rgba(124, 240, 177, 0.56);
  box-shadow:
    0 18px 38px rgba(0, 0, 0, 0.26),
    0 0 20px rgba(124, 240, 177, 0.14);
}

.footer-consult {
  position: relative;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 18px;
  margin-top: 22px;
  padding: 18px;
  border-radius: 22px;
  border: 1px solid rgba(124, 240, 177, 0.16);
  background:
    radial-gradient(circle at 12% 20%, rgba(39, 202, 17, 0.18), transparent 34%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.065), rgba(255, 255, 255, 0.018)),
    rgba(13, 31, 27, 0.78);
  overflow: hidden;
}

.footer-consult::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 5px;
  background: linear-gradient(180deg, #7cf0b1, #f2eb58);
  box-shadow: 0 0 22px rgba(124, 240, 177, 0.26);
}

.footer-consult__mark {
  width: 46px;
  height: 46px;
  border-radius: 16px;
  background:
    linear-gradient(135deg, rgba(124, 240, 177, 0.95), rgba(255, 213, 74, 0.9));
  box-shadow: 0 0 24px rgba(124, 240, 177, 0.28);
}

.footer-consult__copy {
  display: grid;
  gap: 6px;
}

.footer-consult__copy span {
  color: var(--brand2);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.footer-consult__copy strong {
  margin: 0;
  color: #f4fff7;
  font-size: clamp(1.08rem, 1.6vw, 1.45rem);
  line-height: 1.14;
  text-transform: none;
  letter-spacing: 0.01em;
}

.footer-consult__copy p {
  margin: 0;
  color: rgba(238, 247, 244, 0.76);
  font-size: 0.94rem;
  line-height: 1.55;
}

.footer-consult__button {
  min-height: 50px;
  padding: 0 18px;
  border: 1px solid rgba(255, 213, 74, 0.28);
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(255, 213, 74, 0.18), rgba(17, 182, 93, 0.16));
  color: #fff8d7;
  cursor: pointer;
  font: inherit;
  font-weight: 900;
  letter-spacing: 0.06em;
  white-space: nowrap;
  box-shadow:
    0 0 0 1px rgba(255, 213, 74, 0.12),
    0 0 18px rgba(255, 213, 74, 0.12),
    0 14px 30px rgba(0, 0, 0, 0.2);
  transition: transform 0.22s ease, border-color 0.22s ease, box-shadow 0.22s ease;
}

.footer-consult__button:hover {
  transform: translateY(-1px);
  border-color: rgba(255, 213, 74, 0.46);
  box-shadow:
    0 18px 38px rgba(0, 0, 0, 0.26),
    0 0 22px rgba(255, 213, 74, 0.14);
}

.footer__visual {
  position: relative;
  min-height: 100%;
  overflow: hidden;
}

.footer__visual::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(90deg, rgb(46 46 46 / 98%) 0%, rgb(21 24 21 / 82%) 18%, rgb(188 195 188 / 24%) 42%, rgba(12, 13, 12, 0.02) 66%),
    linear-gradient(180deg, rgba(8, 12, 10, 0.3), rgba(8, 12, 10, 0.08));
}

.footer__visual::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  background:
    linear-gradient(120deg, rgb(66 69 68 / 88%) 0%, rgba(9, 24, 16, 0.72) 24%, rgba(13, 48, 29, 0.34) 48%, rgba(13, 48, 29, 0.08) 68%, rgba(13, 48, 29, 0) 100%);
  mix-blend-mode: multiply;
  pointer-events: none;
}

.footer__visual img {
  width: 100%;
  height: 100%;
  min-height: 100%;
  object-fit: cover;
  display: block;
}

.question-modal {
  position: fixed;
  inset: 0;
  z-index: 85;
  display: grid;
  place-items: center;
  padding: 20px;
  background: rgba(4, 9, 9, 0.74);
  backdrop-filter: blur(14px);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.24s ease, visibility 0.24s ease;
}

.question-modal.is-open {
  opacity: 1;
  visibility: visible;
}

.question-modal__dialog {
  position: relative;
  width: min(720px, 100%);
  max-height: min(92vh, 860px);
  border-radius: 28px;
  background:
    radial-gradient(circle at top right, rgba(255, 213, 74, 0.08), transparent 24%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.02)),
    rgba(8, 16, 15, 0.97);
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.42);
  transform: translateY(16px) scale(0.98);
  transition: transform 0.24s ease;
  overflow: auto;
}

.question-modal.is-open .question-modal__dialog {
  transform: translateY(0) scale(1);
}

.question-modal__content {
  padding: 28px;
}

.question-form[hidden],
.question-success[hidden] {
  display: none !important;
}

.question-modal__close {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background:
    radial-gradient(circle at 30% 30%, rgba(123, 240, 176, 0.18), transparent 46%),
    linear-gradient(180deg, rgba(20, 28, 28, 0.92), rgba(8, 12, 12, 0.86));
  color: var(--text);
  font-size: 1.2rem;
  cursor: pointer;
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.34);
}

.question-modal__title {
  margin: 0 48px 14px 0;
  font-family: var(--display);
  font-size: clamp(1.75rem, 3vw, 2.7rem);
  line-height: 1.06;
  text-transform: uppercase;
}

.question-modal__lead {
  margin: 0 0 22px;
  color: var(--muted);
  line-height: 1.72;
}

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

.question-form__field {
  display: grid;
  gap: 8px;
  margin-bottom: 14px;
}

.question-form__field span {
  color: #9ad0ba;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
}

.question-form__field input,
.question-form__field textarea {
  width: 100%;
  padding: 15px 16px;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.04);
  color: var(--text);
  font: inherit;
}

.question-form__field textarea {
  min-height: 148px;
  resize: vertical;
}

.question-form__field input:focus,
.question-form__field textarea:focus {
  outline: none;
  border-color: rgba(123, 240, 176, 0.34);
  box-shadow: 0 0 0 1px rgba(123, 240, 176, 0.22);
}

.question-form__honeypot {
  position: absolute;
  left: -9999px;
  opacity: 0;
  pointer-events: none;
}

.question-form__status {
  min-height: 24px;
  margin-bottom: 12px;
  color: var(--muted);
  line-height: 1.5;
}

.question-form__status.is-error {
  color: #ff9393;
}

.question-form__status.is-success {
  color: #9ef0bc;
}

.question-form__actions {
  display: flex;
  justify-content: flex-start;
}

.question-form__submit,
.question-success__link {
  min-height: 54px;
  padding: 0 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  border: 1px solid rgba(123, 240, 176, 0.18);
  background: linear-gradient(135deg, var(--brand) 0%, #dfff5d 100%);
  color: #06110d;
  font: inherit;
  font-weight: 800;
  text-decoration: none;
  cursor: pointer;
  box-shadow: 0 16px 34px rgba(17, 182, 93, 0.24);
}

.question-form__submit[disabled] {
  opacity: 0.72;
  cursor: wait;
}

.question-success {
  display: grid;
  justify-items: start;
  gap: 14px;
  padding-top: 6px;
}

.question-success__icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  position: relative;
  background:
    radial-gradient(circle at 30% 30%, rgba(123, 240, 176, 0.34), transparent 50%),
    linear-gradient(135deg, rgba(17, 182, 93, 0.24), rgba(255, 213, 74, 0.2));
  border: 1px solid rgba(123, 240, 176, 0.18);
}

.question-success__icon::before {
  content: "";
  position: absolute;
  top: 18px;
  left: 23px;
  width: 14px;
  height: 24px;
  border-right: 3px solid #c9ff7d;
  border-bottom: 3px solid #c9ff7d;
  transform: rotate(40deg);
}

.question-success h3 {
  margin: 0;
  font-size: clamp(1.4rem, 2.5vw, 2rem);
  line-height: 1.12;
}

.question-success p {
  margin: 0;
  max-width: 56ch;
  color: var(--muted);
  line-height: 1.7;
}

.modal {
  position: fixed;
  inset: 0;
  z-index: 40;
  display: grid;
  place-items: center;
  padding: 18px;
  background: rgba(4, 8, 8, 0.76);
  backdrop-filter: blur(14px);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.24s ease, visibility 0.24s ease;
}

.modal.is-open {
  opacity: 1;
  visibility: visible;
}

.modal__card {
  position: relative;
  width: min(1120px, 100%);
  max-height: min(92vh, 1100px);
  display: grid;
  grid-template-columns: minmax(280px, 360px) minmax(0, 1fr);
  gap: 24px;
  padding: 24px;
  border-radius: 28px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0)),
    var(--panel-strong);
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.42);
  transform: translateY(18px) scale(0.98);
  transition: transform 0.24s ease;
  overflow: auto;
}

.modal.is-open .modal__card {
  transform: translateY(0) scale(1);
}

.modal__close {
  position: fixed;
  top: max(14px, env(safe-area-inset-top));
  right: max(14px, env(safe-area-inset-right));
  z-index: 90;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background:
    radial-gradient(circle at 30% 30%, rgba(123, 240, 176, 0.18), transparent 44%),
    linear-gradient(180deg, rgba(20, 28, 28, 0.92), rgba(8, 12, 12, 0.86));
  color: var(--text);
  font-size: 1.2rem;
  cursor: pointer;
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.34);
  backdrop-filter: blur(10px);
  transition: transform 0.22s ease, border-color 0.22s ease, box-shadow 0.22s ease;
  animation: close-float 2.6s ease-in-out infinite;
}

.modal__close:hover {
  transform: scale(1.06) rotate(90deg);
  border-color: rgba(123, 240, 176, 0.42);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.42);
}

.modal__close-fab {
  display: none;
}

.modal__visual {
  min-width: 0;
  display: grid;
  gap: 14px;
}

.modal__image-wrap {
  position: relative;
  min-height: 400px;
  height: 100%;
  border-radius: 24px;
  overflow: hidden;
  background:
    radial-gradient(circle at top, rgba(17, 182, 93, 0.16), transparent 45%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.02));
  border: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 14px;
}

.modal__nav {
  position: absolute;
  top: 50%;
  z-index: 2;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  border: 1px solid rgba(123, 240, 176, 0.18);
  background:
    radial-gradient(circle at 30% 30%, rgba(123, 240, 176, 0.18), transparent 46%),
    linear-gradient(180deg, rgba(9, 17, 16, 0.92), rgba(7, 13, 13, 0.82));
  color: var(--text);
  transform: translateY(-50%);
  cursor: pointer;
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.34);
  backdrop-filter: blur(10px);
}

.modal__nav--prev {
  left: 14px;
}

.modal__nav--next {
  right: 14px;
}

.modal__nav:hover {
  border-color: rgba(123, 240, 176, 0.38);
  color: var(--brand2);
}

.modal__nav::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 14px;
  height: 14px;
  border-top: 2px solid currentColor;
  border-right: 2px solid currentColor;
  transform: translate(-50%, -50%) rotate(45deg);
}

.modal__nav--prev::before {
  transform: translate(-35%, -50%) rotate(-135deg);
}

.modal__nav--next::before {
  transform: translate(-65%, -50%) rotate(45deg);
}

.modal__image {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

.modal__stub {
  width: 100%;
  height: 100%;
  display: grid;
  place-items: center;
  text-align: center;
  color: var(--muted);
  line-height: 1.6;
}

.modal__media-bar {
  display: grid;
  gap: 12px;
}

.modal__thumbs {
  display: flex;
  gap: 10px;
  overflow-x: auto;
  padding-bottom: 6px;
  overscroll-behavior-x: contain;
}

.modal__thumb {
  flex: 0 0 72px;
  width: 72px;
  height: 72px;
  padding: 4px;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.04);
  cursor: pointer;
}

.modal__thumb.is-active {
  border-color: rgba(123, 240, 176, 0.4);
  box-shadow: 0 0 0 1px rgba(123, 240, 176, 0.22);
}

.modal__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 12px;
  display: block;
}

.modal__video-button {
  margin-top: 12px;
  min-height: 55px;
  padding: 0 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.12);
  cursor: pointer;
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
  width: 135px !important;
  border-radius: 5px;
}

.modal__video-button:hover {
  transform: translateY(-1px);
  border-color: rgba(255, 255, 255, 0.24);
  box-shadow: 0 16px 34px rgba(129, 9, 29, 0.28);
}

.modal__video-button img {
  display: block;
  width: 128px;
  max-width: 100%;
  height: auto;
}

.modal__content {
  min-width: 0;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.modal__eyebrow {
  color: var(--brand2);
  font-size: 0.76rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  margin-bottom: 10px;
}

.modal__product-nav {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin-bottom: 14px;
}

.modal__product-button {
  min-width: 0;
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  min-height: 48px;
  padding: 0 16px;
  border-radius: 16px;
  border: 1px solid rgba(123, 240, 176, 0.16);
  background: linear-gradient(135deg, rgb(163 31 14 / 96%), rgba(20, 46, 38, 0.88));
  color: var(--text);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
  cursor: pointer;
  transition: transform 0.22s ease, border-color 0.22s ease, box-shadow 0.22s ease, opacity 0.22s ease;
}

.modal__product-button:hover:not(:disabled) {
  transform: translateY(-1px);
  border-color: rgba(123, 240, 176, 0.34);
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.22);
}

.modal__product-button:disabled {
  opacity: 0.38;
  cursor: not-allowed;
  box-shadow: none;
}

.modal__product-button span[aria-hidden="true"] {
  font-size: 1.4rem;
  line-height: 1;
  color: var(--brand2);
}

.modal__title {
  margin: 0 36px 14px 0;
  font-size: clamp(1.5rem, 3vw, 2.35rem);
  line-height: 1.06;
}

.modal__lead {
  margin: 0 0 18px;
  color: var(--muted);
  line-height: 1.68;
}

.modal__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-bottom: 18px;
}

.modal__item {
  padding: 14px 16px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.07);
}

.modal__item small {
  display: block;
  margin-bottom: 6px;
  color: #9ad0ba;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
}

.modal__item strong {
  display: block;
  line-height: 1.42;
  font-size: 0.98rem;
}

.price {
  display: inline-flex;
  align-items: center;
  padding: 18px 22px;
  border-radius: 18px;
  background: linear-gradient(135deg, rgba(17, 182, 93, 0.18), rgba(255, 213, 74, 0.08));
  border: 1px solid rgba(123, 240, 176, 0.18);
  margin-bottom: 16px;
}

.price small {
  display: block;
  margin-bottom: 4px;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.74rem;
}

.price strong {
  font-family: var(--display);
  font-size: clamp(1.4rem, 3.4vw, 2.1rem);
  color: var(--accent);
}

.modal__seo-link {
  align-self: flex-start;
  margin-bottom: 16px;
}

.modal__full {
  padding: 18px 20px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.07);
}

.modal__full h3 {
  margin: 0 0 10px;
  font-size: 1rem;
}

.modal__full-scroll {
  overflow: visible;
  max-height: none;
  padding-right: 0;
}

.modal__full-scroll p {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
  white-space: pre-line;
}

.video-modal {
  position: fixed;
  inset: 0;
  z-index: 60;
  display: grid;
  place-items: center;
  padding: 18px;
  background: rgba(2, 6, 6, 0.82);
  backdrop-filter: blur(14px);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.24s ease, visibility 0.24s ease;
}

.video-modal.is-open {
  opacity: 1;
  visibility: visible;
}

.video-modal__dialog {
  position: relative;
  width: min(960px, 100%);
  padding: 16px;
  border-radius: 26px;
  background: var(--panel-strong);
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.42);
}

.video-modal__close {
  position: absolute;
  top: 12px;
  right: 12px;
  z-index: 2;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.06);
  color: var(--text);
  cursor: pointer;
}

.video-modal__frame {
  aspect-ratio: 16 / 9;
  border-radius: 18px;
  overflow: hidden;
  background: rgba(0, 0, 0, 0.3);
}

.video-modal__fallback {
  width: 100%;
  height: 100%;
  display: grid;
  place-items: center;
  text-align: center;
  gap: 14px;
  padding: 28px;
  color: var(--text);
}

.video-modal__fallback p {
  margin: 0;
  max-width: 52ch;
  color: var(--muted);
  line-height: 1.6;
}

.video-modal__frame iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

@keyframes touch-wobble {
  0%,
  100% {
    transform: rotate(0deg) translateY(0) scale(1);
  }

  20% {
    transform: rotate(-1.4deg) translateY(-2px) scale(1.02);
  }

  40% {
    transform: rotate(1.2deg) translateY(1px) scale(1.01);
  }

  60% {
    transform: rotate(-0.8deg) translateY(-1px) scale(1.02);
  }

  80% {
    transform: rotate(0.7deg) translateY(1px) scale(1.01);
  }
}

@keyframes close-float {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-2px);
  }
}

@media (max-width: 980px) {
  .hero__grid,
  .proxxon__points,
  .contacts__layout,
  .modal__card {
    grid-template-columns: 1fr;
  }

  .header__inner,
  .footer__inner {
    grid-template-columns: 1fr;
    align-items: stretch;
  }

  .footer__copy strong {
    font-size: clamp(1.55rem, 6vw, 2.2rem);
  }

  .footer__actions,
  .footer__link {
    width: 100%;
  }

  .footer-consult {
    grid-template-columns: auto minmax(0, 1fr);
  }

  .footer-consult__button {
    grid-column: 1 / -1;
    width: 100%;
  }

  .question-form__grid {
    grid-template-columns: 1fr;
  }

  .footer__visual {
    min-height: 280px;
  }

  .footer__visual::before {
    background:
      linear-gradient(180deg, rgba(12, 13, 12, 0.88) 0%, rgba(12, 13, 12, 0.34) 40%, rgba(12, 13, 12, 0.08) 100%),
      linear-gradient(90deg, rgba(12, 13, 12, 0.3), rgba(12, 13, 12, 0.08));
  }

  .brand_d {
    width: 100%;
    justify-content: space-between;
  }

  .showcase {
    min-height: auto;
  }

  .stand-wrap {
    margin-top: 64px;
  }

  .modal__card {
    max-height: 92vh;
  }

  .modal__image-wrap {
    min-height: 260px;
  }

  .proxxon__title {
    max-width: none;
  }

  .seo-article {
    padding: 24px 22px 20px;
    border-radius: 24px;
  }

  .seo-article__body {
    max-height: 15.4rem;
  }

  .proxxon__lead {
    max-width: none;
    font-size: 1.05rem;
  }

  .contacts__map iframe {
    min-height: 360px;
  }

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

  .home-catalog-dock {
    width: min(760px, calc(100vw - 20px));
    gap: 8px;
  }

  .home-catalog-dock__link {
    min-height: 72px;
    flex-direction: column;
    gap: 6px;
    padding: 8px 6px;
    font-size: 0.68rem;
    line-height: 1.05;
    text-align: center;
  }

  .home-catalog-dock__icon {
    flex-basis: 38px;
    width: 38px;
    height: 38px;
  }

  .home-catalog-dock__icon img {
    width: 32px;
    height: 32px;
  }
}

@media (max-width: 720px) {
  .header__inner {
    align-items: center;
  }

  .hero {
    padding: 20px 0 22px;
  }

  .page {
    padding-bottom: 104px;
  }

  .container {
    width: 100%;
    max-width: none;
    margin: 0;
    padding-left: 6px;
    padding-right: 6px;
  }

  .hero__brandline .brand {
      gap: 10px;
    }

  .hero__brandline .brand img {
      width: 124px;
    }

  .hero__brandline .brand span {
      font-size: 0.68rem;
      letter-spacing: 0.12em;
    }

  .brand_d {
    width: 100%;
    justify-content: center;
    align-items: center;
    gap: 12px;
  }

  .brand_d img {
    width: min(114px, 31vw);
  }

  .brand_d span {
    font-size: 1rem;
    letter-spacing: 0.22em;
    text-align: center;
  }

  .hero__brandline {
    margin-bottom: 14px;
  }

  .nav {
    width: 100%;
    gap: 14px;
    justify-content: space-around;
    flex-wrap: wrap;
    overflow-x: hidden;
    padding-bottom: 0;
  }

  .nav a {
    white-space: normal;
    font-size: 0.92rem;
  }

  .hero__grid,
  .proxxon__layout {
    gap: 16px;
  }

  .seo-article-section {
    padding: 10px 0 24px;
  }

  .mc-tiktok-section {
    padding: 18px 0 22px;
  }

  .mc-tiktok-section__head {
    padding: 0 10px;
    text-align: left;
  }

  .mc-tiktok-section__head h2 {
    font-size: clamp(1.25rem, 6.1vw, 2.55rem);
    line-height: 1.02;
  }

  .mc-tiktok-section__head .eyebrow {
    justify-content: flex-start;
  }

  .mc-tiktok-section__head p {
    font-size: 0.98rem;
    line-height: 1.55;
  }

  .mc-tiktok-shell {
    padding: 14px 42px;
    border-radius: 24px;
  }

  .mc-tiktok-track {
    display: flex;
    gap: 12px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    scrollbar-width: none;
  }

  .mc-tiktok-track::-webkit-scrollbar {
    display: none;
  }

  .mc-tiktok-slide {
    flex: 0 0 100%;
    min-height: 0;
    height: min(72vh, 620px);
    scroll-snap-align: center;
  }

  .mc-tt-logo-overlay {
    height: 78px;
    padding: 8px 10px 18px;
  }

  .mc-tt-logo-overlay img {
    width: 166px;
    max-width: 74%;
  }

  .mc-tt-block-right {
    top: 72px;
    bottom: 76px;
    width: 62px;
  }

  .mc-tt-block-bottom-right {
    width: 82px;
    height: 76px;
  }

  .mc-tiktok-arrow {
    width: 34px;
    height: 54px;
    border-radius: 16px;
  }

  .mc-tiktok-arrow--prev {
    left: 8px;
  }

  .mc-tiktok-arrow--prev::before {
    transform: rotate(-135deg);
  }

  .mc-tiktok-arrow--next {
    right: 8px;
  }

  .mc-tiktok-arrow--next::before {
    transform: rotate(45deg);
  }

  .page .eyebrow {
    max-width: 100%;
    font-size: 1.35rem;
    line-height: 1.3;
    white-space: normal;
  }
  .reviw{font-size:28px; font-weight:bold}
  .page .top_words {
    align-items: center;
    overflow-wrap: anywhere;
  }

  .page .top_words::before {
    height: 55px;
  }

  h1 {
    margin: 14px 0 12px;
    font-size: clamp(2rem, 10.5vw, 3.15rem);
    line-height: 0.99;
    text-align: center;
  }

  .hero__lead {
    margin-bottom: 18px;
        font-size: 1.03rem;
        line-height: 1.45;
  }

  .showcase,
  .proxxon__frame,
  .proxxon__lead,
  .proxxon__point {
    box-shadow: none;
  }

  .button {
    min-height: 48px;
    padding: 0 18px;
  }

  .home-catalog-dock {
    bottom: max(8px, env(safe-area-inset-bottom));
    width: calc(100vw - 24px);
    gap: 4px;
  }

  .home-catalog-dock__link {
    min-height: 74px;
    border-radius: 18px;
    padding: 7px 4px;
    font-size: clamp(0.58rem, 2.35vw, 0.68rem);
    letter-spacing: 0.015em;
  }

  .home-catalog-dock__icon {
    flex-basis: 34px;
    width: 34px;
    height: 34px;
  }

  .home-catalog-dock__icon img {
    width: 29px;
    height: 29px;
  }

  .question-modal {
    padding: 12px;
  }

  .question-modal__content {
    padding: 22px 18px 18px;
  }

  .question-modal__dialog {
    max-height: min(94vh, 1000px);
  }

  .question-modal__title {
    margin-right: 44px;
    font-size: clamp(1.45rem, 7.2vw, 1.95rem);
  }

  .question-form__submit,
  .question-success__link {
    width: 100%;
  }

  .showcase {
    padding: 12px 4px 14px;
    border-radius: 16px;
  }

  .showcase__badge,
  .showcase__hint {
    font-size: 0.78rem;
  }

  .showcase__badge {
    left: 14px;
    top: 14px;
  }

  .showcase__hint {
    left: 14px;
    right: 14px;
    bottom: 14px;
    text-align: center;
  }

  .stand-wrap {
    width: 100%;
    max-width: none;
    margin-top: 52px;
    transform: scale(1.22);
    transform-origin: top center;
  }

  .proxxon__title {
    padding: 0 18px;
    font-size: clamp(1.45rem, 7.6vw, 1.95rem);
    line-height: 1.06;
    word-break: normal;
    overflow-wrap: anywhere;
    text-align: center;
  }

  .proxxon__title-line {
    white-space: normal !important;
  }

  .proxxon__lead {
    padding: 16px 16px 18px;
    font-size: 0.98rem;
    line-height: 1.55;
  }

  .seo-article__title {
    font-size: clamp(1.45rem, 7.6vw, 1.95rem);
    line-height: 1.08;
  }

  .seo-article__lead,
  .seo-article__body p {
    font-size: 0.96rem;
    line-height: 1.65;
  }

  .seo-article__body {
    max-height: 12.2rem;
  }

  .seo-article__fade {
    bottom: 72px;
    height: 108px;
  }

  .seo-article__toggle {
    width: 100%;
  }

  .proxxon__visual,
  .proxxon__content {
    max-width: none;
  }

  .proxxon__frame {
    padding: 10px;
    border-radius: 20px;
  }

  .proxxon__frame img {
    height: auto;
    object-fit: contain;
    border-radius: 14px;
  }

  .proxxon__point {
    min-height: auto;
    padding: 16px 14px 18px;
    border-radius: 20px;
  }

  .metrics,
  .modal__grid {
    grid-template-columns: 1fr;
  }

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

  .contacts {
    padding: 14px 0 28px;
  }

  .reviews {
    padding: 6px 0 18px;
  }

  .reviews__title {
    font-size: clamp(1.7rem, 9vw, 2.4rem);
    line-height: 1.15;
    text-align: center;
  }

  .reviews__grid {
    gap: 12px;
  }

  .review-card {
    padding: 8px;
    border-radius: 20px;
    box-shadow: none;
  }

  .contacts__info {
    padding: 18px;
  }

  .contacts__title {
    font-size: clamp(1.7rem, 8vw, 2.3rem);
    line-height: 1;
  }

  .contacts__item {
    padding: 14px 16px;
  }

  .contacts__map iframe {
    min-height: 300px;
  }

  .modal {
    display: block;
    overflow-y: auto;
    padding: 10px;
  }

  .modal__card {
    width: 100%;
    max-height: none;
    min-height: auto;
    margin: 0 auto;
    padding: 12px;
    gap: 12px;
    overflow: visible;
  }

  .slot__hover-card {
    width: 132px;
  }

  .slot__hover-card[data-side="left"],
  .slot__hover-card[data-side="right"],
  .slot__hover-card[data-side="center"] {
    transform: translate(-50%, -50%) scale(0.66);
  }

  .slot:hover .slot__hover-card[data-side="left"],
  .slot:hover .slot__hover-card[data-side="right"],
  .slot:hover .slot__hover-card[data-side="center"],
  .slot:focus-visible .slot__hover-card[data-side="left"],
  .slot:focus-visible .slot__hover-card[data-side="right"],
  .slot:focus-visible .slot__hover-card[data-side="center"] {
    transform: translate(-50%, -50%) scale(1);
  }

  .modal__image-wrap {
    min-height: 360px;
    padding: 0;
    margin-left: -4px;
    margin-right: -4px;
  }

  .modal__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transform: scale(1.42);
    transform-origin: center;
  }

  .modal__nav {
    width: 44px;
    height: 44px;
    top: auto;
    bottom: 14px;
    transform: none;
  }

  .modal__thumb {
    flex-basis: 64px;
    width: 64px;
    height: 64px;
  }

  .modal__video-button {
    width: 100%;
  }

  .modal__visual {
    gap: 8px;
  }

  .modal.is-image-zoomed .modal__image-wrap {
    position: fixed;
    inset: 74px 6px 10px;
    min-height: auto;
    margin: 0;
    border-radius: 22px;
    z-index: 95;
    background: rgba(5, 11, 10, 0.98);
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.46);
  }

  .modal.is-image-zoomed .modal__image {
    object-fit: cover;
    object-position: center;
    transform: scale(1.58);
  }

  .modal.is-image-zoomed .modal__media-bar,
  .modal.is-image-zoomed .modal__content {
    visibility: hidden;
  }

  .modal.is-image-zoomed .modal__nav {
    bottom: 18px;
  }

  .modal__thumbs {
    gap: 8px;
  }

  .modal__content {
    overflow: visible;
  }

  .modal__title {
    margin-right: 44px;
    font-size: clamp(1.45rem, 7.5vw, 2rem);
    line-height: 1.06;
  }

  .modal__lead {
    font-size: 0.98rem;
    line-height: 1.55;
  }

  .modal__item {
    padding: 12px 14px;
  }

  .modal__product-button {
    min-height: 44px;
    padding: 0 14px;
    font-size: 0.94rem;
  }

  .modal__full {
    padding: 16px;
  }

  .modal__full-scroll {
    max-height: min(36vh, 320px);
    overflow-y: auto;
    padding-right: 6px;
    -webkit-overflow-scrolling: touch;
  }

  .video-modal__dialog {
    width: min(820px, 100%);
  }
}

@media (max-width: 480px) {
  .container {
    padding-left: 4px;
    padding-right: 4px;
  }

  .hero__brandline .brand img {
      width: 180px;
    }

  .hero__brandline .brand span {
      font-size: 0.62rem;
    }

  .brand_d {
    width: 100%;
    flex-wrap: wrap;
    justify-content: center;
    gap: 6px 12px;
  }

  .brand_d img {
    width: min(99px, 34vw);
    margin-top: 7px;
  }

  .brand_d span {
    width: 100%;
    font-size: 0.94rem;
    letter-spacing: 0.2em;
    text-align: center;
  }

  .hero__brandline .brand {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .nav {
    gap: 12px;
    justify-content: space-around;
  }

  .showcase {
    border-radius: 18px;
    min-height: 905px;
  }

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

  .reviews-google {
    grid-template-columns: 1fr;
    gap: 14px;
    padding: 16px;
    border-radius: 18px;
  }

  .reviews-google__mark {
    width: 48px;
    height: 48px;
    border-radius: 15px;
    font-size: 1.7rem;
  }

  .reviews-google__link {
    width: 100%;
  }

  .contacts__info,
  .contacts__map,
  .footer__inner {
    border-radius: 18px;
  }

  .footer__inner {
    border-radius: 18px;
  }

  .footer__copy p {
    font-size: 0.94rem;
  }

  .footer__copy {
    padding: 24px 18px 20px;
  }

  .footer__badge {
    margin-bottom: 14px;
    font-size: 0.68rem;
    letter-spacing: 0.12em;
  }

  .footer__copy strong {
    font-size: 1.5rem;
  }

  .footer__actions {
    gap: 10px;
  }

  .footer__link {
    min-height: 52px;
    padding: 0 16px;
    font-size: 0.86rem;
    letter-spacing: 0.05em;
  }

  .footer-consult {
    grid-template-columns: 1fr;
    gap: 14px;
    padding: 18px 16px 16px;
    text-align: left;
  }

  .footer-consult__mark {
    width: 38px;
    height: 38px;
    border-radius: 13px;
  }

  .footer-consult__copy strong {
    font-size: 1.08rem;
  }

  .footer__visual {
    min-height: 220px;
  }

  .showcase__badge,
  .showcase__hint {
    font-size: 0.74rem;
    padding: 9px 12px;
  }

  .stand-wrap {
    width: 100%;
  }
  .reveal.is-visible{
    gap:15px
  }
  .modal {
    padding: 2px;
  }

  .modal__close-fab {
    position: fixed;
    right: max(10px, env(safe-area-inset-right));
    bottom: max(12px, env(safe-area-inset-bottom));
    z-index: 90;
    min-height: 44px;
    padding: 0 16px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    border: 1px solid rgba(123, 240, 176, 0.22);
    background:
      radial-gradient(circle at 30% 30%, rgba(123, 240, 176, 0.18), transparent 46%),
      linear-gradient(180deg, rgba(18, 28, 27, 0.94), rgba(8, 13, 12, 0.9));
    color: var(--text);
    font-weight: 700;
    box-shadow: 0 14px 34px rgba(0, 0, 0, 0.34);
    backdrop-filter: blur(10px);
    animation: close-float 2.6s ease-in-out infinite;
  }

  .video-modal {
    padding: 8px;
  }

  .contacts__map iframe {
    min-height: 260px;
  }

  .video-modal__dialog {
    padding: 12px;
    border-radius: 20px;
  }

  .modal__card {
    padding: 10px;
    border-radius: 22px;
  }

  .modal__image-wrap {
    min-height: min(92vw, 430px);
    padding: 0;
    margin-left: -6px;
    margin-right: -6px;
  }

  .modal__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transform: scale(1.56);
    transform-origin: center;
  }

  .modal__nav {
    bottom: 12px;
  }

  .modal.is-image-zoomed .modal__image-wrap {
    inset: 68px 2px 6px;
    border-radius: 18px;
  }

  .modal.is-image-zoomed .modal__image {
    transform: scale(1.72);
  }

  .modal.is-image-zoomed .modal__nav {
    bottom: 10px;
  }

  .modal__close {
    top: max(10px, env(safe-area-inset-top));
    right: max(10px, env(safe-area-inset-right));
    width: 42px;
    height: 42px;
  }
}

@media (max-width: 400px) {
  .page .top_words {
    font-size: 1.18rem;
    line-height: 1.22;
    letter-spacing: 0.12em;
  }

  .page .top_words::before {
    height: 70px;
  }
}
