:root {
  --camo-1: #3d4a35;
  --camo-2: #2f3828;
  --camo-3: #4a5c42;
  --camo-4: #1e2520;
  --camo-5: #5c6b52;
  --accent: #c4a35a;
  --accent-dim: #8b7344;
  --text: #e8eadc;
  --text-muted: #b8bdb0;
  --border-tactical: rgba(196, 163, 90, 0.45);
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
  color-scheme: dark;
}

body {
  min-height: 100vh;
  min-height: 100dvh;
  font-family: "Montserrat", system-ui, sans-serif;
  color: var(--text);
  background-color: var(--camo-4);
  background-image:
    linear-gradient(135deg, var(--camo-4) 0%, transparent 40%),
    linear-gradient(225deg, var(--camo-2) 20%, transparent 50%),
    linear-gradient(315deg, var(--camo-1) 0%, var(--camo-3) 35%, var(--camo-2) 60%, var(--camo-5) 85%),
    repeating-linear-gradient(
      90deg,
      transparent,
      transparent 8px,
      rgba(0, 0, 0, 0.06) 8px,
      rgba(0, 0, 0, 0.06) 9px
    ),
    repeating-linear-gradient(
      0deg,
      transparent,
      transparent 12px,
      rgba(255, 255, 255, 0.02) 12px,
      rgba(255, 255, 255, 0.02) 13px
    );
  background-attachment: fixed;
  line-height: 1.6;
}

@media (max-width: 52rem) {
  body {
    background-attachment: scroll;
  }
}

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

.wrap {
  position: relative;
  z-index: 1;
  box-sizing: border-box;
  width: min(100%, 42rem);
  margin-inline: auto;
  padding-block: max(env(safe-area-inset-top, 0px), clamp(1.25rem, 5vw, 3rem))
    max(env(safe-area-inset-bottom, 0px), clamp(2rem, 6vw, 4rem));
  padding-inline: max(env(safe-area-inset-left, 0px), clamp(0.85rem, 4vw, 2rem))
    max(env(safe-area-inset-right, 0px), clamp(0.85rem, 4vw, 2rem));
}

.panel {
  background: linear-gradient(
    160deg,
    rgba(30, 37, 32, 0.92) 0%,
    rgba(47, 56, 40, 0.88) 50%,
    rgba(30, 37, 32, 0.94) 100%
  );
  border: 1px solid var(--border-tactical);
  border-radius: 4px;
  box-shadow:
    0 0 0 1px rgba(0, 0, 0, 0.4),
    0 12px 40px rgba(0, 0, 0, 0.45),
    inset 0 1px 0 rgba(255, 255, 255, 0.06);
  padding: clamp(1.75rem, 4vw, 2.5rem);
  position: relative;
  overflow: hidden;
}

.panel::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(
    90deg,
    transparent,
    var(--accent) 20%,
    var(--accent-dim) 50%,
    var(--accent) 80%,
    transparent
  );
}

.panel-corner {
  position: absolute;
  width: 12px;
  height: 12px;
  border-color: var(--accent);
  opacity: 0.6;
}
.panel-corner--tl { top: 8px; left: 8px; border-top: 2px solid; border-left: 2px solid; }
.panel-corner--tr { top: 8px; right: 8px; border-top: 2px solid; border-right: 2px solid; }
.panel-corner--bl { bottom: 8px; left: 8px; border-bottom: 2px solid; border-left: 2px solid; }
.panel-corner--br { bottom: 8px; right: 8px; border-bottom: 2px solid; border-right: 2px solid; }

.header-block {
  text-align: center;
  margin-bottom: 2rem;
}

h1 {
  font-family: "Montserrat", sans-serif;
  font-weight: 800;
  font-size: clamp(1.75rem, 6vw, 2.5rem);
  letter-spacing: 0.08em;
  text-transform: none;
  color: var(--text);
  text-shadow:
    0 2px 0 var(--camo-4),
    0 0 24px rgba(196, 163, 90, 0.25);
  line-height: 1.2;
  text-wrap: balance;
}

h1 span {
  color: var(--accent);
}

.tagline {
  margin-top: 0.5rem;
  font-size: clamp(0.62rem, 1.8vw, 0.75rem);
  letter-spacing: clamp(0.12em, 1.5vw, 0.35em);
  text-transform: uppercase;
  color: var(--text-muted);
}

.avatar-wrap {
  display: flex;
  justify-content: center;
  margin-bottom: 2rem;
}

.avatar {
  width: clamp(140px, 38vw, 180px);
  height: clamp(140px, 38vw, 180px);
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid var(--accent);
  box-shadow:
    0 0 0 4px rgba(30, 37, 32, 0.9),
    0 8px 32px rgba(0, 0, 0, 0.5),
    inset 0 0 0 1px rgba(255, 255, 255, 0.1);
}

.content {
  max-width: 38rem;
  margin-inline: auto;
  text-align: center;
}

.content p {
  font-size: clamp(0.98rem, 2.8vw, 1.08rem);
  color: var(--text);
  margin-bottom: 1rem;
  hyphens: auto;
  overflow-wrap: anywhere;
  text-align: center;
}

.content p:last-of-type {
  margin-bottom: 0;
}

.shout {
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  font-size: clamp(1.15rem, 4.5vw, 1.4rem);
  letter-spacing: 0.06em;
  color: var(--accent);
  text-align: center;
  margin-bottom: 1.25rem !important;
}

.links-section {
  margin-top: 2.25rem;
  padding-top: 1.75rem;
  border-top: 1px solid rgba(196, 163, 90, 0.25);
}

.links-title {
  font-size: 0.75rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 1rem;
  text-align: center;
}

.links {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(0.55rem, 2vw, 0.75rem);
  width: 100%;
}

.link-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  align-content: center;
  flex-wrap: wrap;
  gap: 0.45rem 0.55rem;
  width: 100%;
  min-height: 2.85rem;
  padding: clamp(0.7rem, 2.5vw, 0.9rem) clamp(0.65rem, 3vw, 1rem);
  text-decoration: none;
  font-weight: 700;
  font-size: clamp(0.88rem, 2.8vw, 0.98rem);
  text-align: center;
  border-radius: 10px;
  transition:
    background 0.2s ease,
    border-color 0.2s ease,
    transform 0.18s ease,
    box-shadow 0.2s ease;
  touch-action: manipulation;
}

.link-btn:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
}

.link-btn:active {
  transform: translateY(0);
}

.link-btn .icon {
  flex-shrink: 0;
  width: clamp(22px, 6vw, 26px);
  height: clamp(22px, 6vw, 26px);
}

.link-btn__label {
  flex: 1 1 auto;
  min-width: 0;
  max-width: 100%;
  line-height: 1.3;
  text-align: center;
  text-wrap: balance;
}

.link-btn__sub {
  display: block;
  font-weight: 400;
  font-size: clamp(0.78em, 2.4vw, 0.82em);
  opacity: 0.92;
  margin-top: 0.25rem;
  text-align: center;
  text-wrap: balance;
}

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

  .link-btn {
    transition: none;
  }

  .link-btn--tt:hover,
  .link-btn--tg:hover,
  .link-btn--vpn:hover {
    transform: none;
  }
}

/* TikTok: тёмный фон, неон cyan + pink */
.link-btn--tt {
  color: #fff;
  background: linear-gradient(145deg, #0f0f0f 0%, #1a1a1a 45%, #121212 100%);
  border: 1px solid rgba(254, 44, 85, 0.55);
  box-shadow:
    0 0 0 1px rgba(37, 244, 238, 0.12),
    0 6px 20px rgba(0, 0, 0, 0.45),
    inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.link-btn--tt .icon {
  color: #fe2c55;
  filter: drop-shadow(0 0 8px rgba(37, 244, 238, 0.35));
}

.link-btn--tt:hover {
  border-color: #25f4ee;
  box-shadow:
    0 0 20px rgba(254, 44, 85, 0.25),
    0 0 24px rgba(37, 244, 238, 0.12),
    0 8px 28px rgba(0, 0, 0, 0.5);
  transform: translateY(-2px);
}

/* Telegram: фирменный голубой */
.link-btn--tg {
  color: #fff;
  background: linear-gradient(180deg, #37aee2 0%, #229ed9 55%, #1d8cc8 100%);
  border: 1px solid rgba(255, 255, 255, 0.28);
  box-shadow: 0 4px 18px rgba(34, 158, 217, 0.45);
}

.link-btn--tg .icon {
  color: #fff;
}

.link-btn--tg:hover {
  background: linear-gradient(180deg, #4db8ea 0%, #2ea8e5 55%, #229ed9 100%);
  box-shadow: 0 6px 28px rgba(34, 158, 217, 0.55);
  transform: translateY(-2px);
}

/* SantaVPN: корпоративный «безопасный» тёмно-синий + бирюза */
.link-btn--vpn {
  grid-column: 1 / -1;
  color: #e8f4fc;
  background: linear-gradient(155deg, #0c1829 0%, #152a45 40%, #0d1f33 100%);
  border: 1px solid rgba(0, 191, 165, 0.5);
  box-shadow:
    0 4px 20px rgba(0, 40, 80, 0.4),
    inset 0 1px 0 rgba(255, 255, 255, 0.07);
}

.link-btn__emoji {
  flex-shrink: 0;
  width: 2rem;
  text-align: center;
  font-size: clamp(1.45rem, 4.5vw, 1.7rem);
  line-height: 1;
}

.link-btn--vpn .link-btn__emoji {
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.35));
}

.link-btn--vpn:hover {
  border-color: #26d9c1;
  box-shadow:
    0 0 24px rgba(0, 191, 165, 0.2),
    0 8px 28px rgba(0, 30, 60, 0.55);
  transform: translateY(-2px);
}

.link-btn--vpn .link-btn__title {
  display: block;
  font-size: clamp(1em, 2.6vw, 1.05em);
  letter-spacing: 0.02em;
  text-align: center;
}

footer {
  margin-top: clamp(1.5rem, 5vw, 2.25rem);
  padding-bottom: env(safe-area-inset-bottom, 0px);
  text-align: center;
  font-size: clamp(0.68rem, 2.2vw, 0.78rem);
  letter-spacing: clamp(0.08em, 1.2vw, 0.15em);
  color: var(--text-muted);
  opacity: 0.85;
  text-wrap: balance;
}

@media (max-width: 22rem) {
  .panel-corner {
    width: 10px;
    height: 10px;
  }

  .panel-corner--tl,
  .panel-corner--tr {
    top: 6px;
  }

  .panel-corner--tl,
  .panel-corner--bl {
    left: 6px;
  }

  .panel-corner--tr,
  .panel-corner--br {
    right: 6px;
  }

  .panel-corner--bl,
  .panel-corner--br {
    bottom: 6px;
  }
}

.help-row {
  display: flex;
  justify-content: center;
  margin-top: clamp(1.25rem, 4vw, 2rem);
  margin-bottom: 0.25rem;
}

.help-trigger {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  width: 100%;
  max-width: 20rem;
  min-height: 3rem;
  padding: 0.85rem 1.25rem;
  font-family: inherit;
  font-size: clamp(0.92rem, 2.8vw, 1rem);
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text);
  cursor: pointer;
  touch-action: manipulation;
  background: linear-gradient(165deg, rgba(55, 68, 48, 0.95) 0%, rgba(38, 46, 36, 0.98) 100%);
  border: 1px solid var(--border-tactical);
  border-radius: 10px;
  box-shadow:
    0 4px 20px rgba(0, 0, 0, 0.35),
    inset 0 1px 0 rgba(255, 255, 255, 0.06);
  transition:
    border-color 0.2s ease,
    transform 0.18s ease,
    box-shadow 0.2s ease;
}

.help-trigger:hover {
  border-color: var(--accent);
  box-shadow:
    0 6px 28px rgba(0, 0, 0, 0.4),
    0 0 20px rgba(196, 163, 90, 0.15),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
  transform: translateY(-1px);
}

.help-trigger:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
}

.help-trigger__icon {
  font-size: 1.25rem;
  line-height: 1;
}

.flip {
  width: 100%;
  -webkit-perspective: 1400px;
  perspective: 1400px;
  -webkit-perspective-origin: 50% 30%;
  perspective-origin: 50% 30%;
}

.flip__inner {
  position: relative;
  width: 100%;
  -webkit-transform-style: preserve-3d;
  transform-style: preserve-3d;
  transition:
    -webkit-transform 0.75s cubic-bezier(0.4, 0.2, 0.2, 1),
    transform 0.75s cubic-bezier(0.4, 0.2, 0.2, 1);
}

.flip.is-flipped .flip__inner {
  -webkit-transform: rotateY(180deg);
  transform: rotateY(180deg);
}

.flip__face {
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
}

.flip__face--front {
  position: relative;
  z-index: 2;
}

.flip__face--back {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  -webkit-transform: rotateY(180deg);
  transform: rotateY(180deg);
  overflow: hidden;
}

.panel--flip-back {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 100%;
}

.flip-back-trigger {
  flex-shrink: 0;
  align-self: center;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  width: 100%;
  max-width: 20rem;
  margin: clamp(1rem, 3vw, 1.35rem) auto 0;
  padding: 0.65rem 1rem;
  font-family: inherit;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
  cursor: pointer;
  touch-action: manipulation;
  background: rgba(0, 0, 0, 0.25);
  border: 1px solid rgba(196, 163, 90, 0.35);
  border-radius: 8px;
  transition:
    color 0.2s ease,
    border-color 0.2s ease,
    background 0.2s ease;
}

.flip-back-trigger:hover {
  color: var(--text);
  border-color: var(--accent);
  background: rgba(196, 163, 90, 0.1);
}

.flip-back-trigger:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

.flip-back-trigger__arrow {
  font-size: 1.1rem;
  line-height: 1;
}

.flip-help__title {
  font-size: clamp(1.1rem, 4vw, 1.35rem);
  font-weight: 800;
  letter-spacing: 0.04em;
  text-align: center;
  color: var(--accent);
  margin-bottom: 0.75rem;
  text-wrap: balance;
}

.flip-help__block {
  margin-bottom: 1.15rem;
}

.flip-help__block--alt {
  margin-top: 1.35rem;
  padding-top: 1.15rem;
  border-top: 1px solid rgba(196, 163, 90, 0.2);
}

.flip-help__subtitle {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 0.65rem;
  text-align: center;
}

.flip-help__card {
  padding: 1rem 1.05rem;
  background: rgba(0, 0, 0, 0.22);
  border: 1px solid rgba(196, 163, 90, 0.28);
  border-radius: 10px;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.flip-help__card--accent {
  border-color: rgba(196, 163, 90, 0.45);
  background: rgba(196, 163, 90, 0.06);
}

.flip-help__card-head {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.45rem;
  text-align: center;
  margin-bottom: 0.6rem;
}

.flip-help__tel {
  cursor: pointer;
  margin: 0;
  padding: 0;
  font: inherit;
  font-size: clamp(1.05rem, 3.5vw, 1.2rem);
  font-weight: 700;
  letter-spacing: 0.02em;
  color: var(--accent);
  text-decoration: underline;
  text-decoration-color: rgba(196, 163, 90, 0.45);
  text-underline-offset: 0.15em;
  background: none;
  border: none;
  word-break: break-all;
  display: inline-flex;
  flex-wrap: wrap;
  align-items: baseline;
  justify-content: center;
  gap: 0;
  max-width: 100%;
}

.flip-help__tel .phone-clear {
  flex-shrink: 0;
  white-space: nowrap;
}

.flip-help__tel .phone-blur {
  flex-shrink: 0;
  display: inline-block;
  filter: blur(5px);
  user-select: none;
  margin-left: 0.1em;
  margin-right: 0.1em;
  opacity: 0.92;
}

.flip-help__tel:hover {
  text-decoration-color: var(--accent);
}

.flip-help__tel:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
  border-radius: 4px;
}

.flip-help__banks {
  font-size: clamp(0.82rem, 2.4vw, 0.92rem);
  line-height: 1.45;
  text-align: center;
  color: var(--text-muted);
  margin-bottom: 0.75rem;
}

.flip-help__name {
  font-size: 0.95rem;
  font-weight: 600;
  text-align: center;
  color: var(--text);
}

.flip-help__note {
  font-size: 0.82rem;
  text-align: center;
  color: var(--text-muted);
  margin-bottom: 0.75rem;
  line-height: 1.4;
}

.flip-help__badge {
  display: inline-block;
  margin-top: 0.45rem;
  padding: 0.2rem 0.55rem;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--camo-4);
  background: var(--accent);
  border-radius: 4px;
}

.flip-help__thanks {
  margin-top: 1.35rem;
  padding-top: 1.15rem;
  border-top: 1px solid rgba(196, 163, 90, 0.2);
  text-align: center;
}

.flip-help__thanks p {
  font-size: clamp(0.88rem, 2.6vw, 0.96rem);
  line-height: 1.55;
  color: var(--text);
  margin-bottom: 0.65rem;
}

.flip-help__thanks p:last-child {
  margin-bottom: 0;
}

.flip-help__sign {
  font-weight: 700;
  color: var(--accent);
}

.toast {
  position: fixed;
  top: max(0.75rem, env(safe-area-inset-top));
  left: 50%;
  z-index: 5000;
  max-width: min(90vw, 22rem);
  padding: 0.72rem 1.25rem;
  font-size: clamp(0.85rem, 2.5vw, 0.95rem);
  font-weight: 600;
  text-align: center;
  color: var(--camo-4);
  background: linear-gradient(180deg, #d4b76a 0%, var(--accent) 100%);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 10px;
  box-shadow:
    0 10px 36px rgba(0, 0, 0, 0.5),
    0 0 0 1px rgba(0, 0, 0, 0.25);
  transform: translateX(-50%) translateY(calc(-100% - 2.5rem));
  opacity: 0;
  pointer-events: none;
  transition:
    transform 0.38s cubic-bezier(0.34, 1.15, 0.64, 1),
    opacity 0.32s ease;
}

.toast.is-visible {
  transform: translateX(-50%) translateY(0);
  opacity: 1;
}

/* Только мобильный: один экран без прокрутки документа и без скролла внутри карточки */
@media (max-width: 47.99rem) {
  html {
    height: 100%;
    overflow-x: hidden;
    overflow-y: auto;
    overscroll-behavior: none;
  }

  body {
    min-height: 100vh;
    min-height: 100dvh;
    overflow-x: hidden;
    overflow-y: auto;
    overscroll-behavior: none;
    display: flex;
    flex-direction: column;
  }

  .wrap {
    flex: 1;
    min-height: 0;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    /* overflow на предке ломает preserve-3d в Safari; прокрутка — у body и внутри панелей */
    overflow-x: hidden;
    overflow-y: visible;
    padding-block: max(env(safe-area-inset-top), 0.45rem)
      max(env(safe-area-inset-bottom), 0.45rem);
    padding-inline: max(env(safe-area-inset-left), 0.45rem)
      max(env(safe-area-inset-right), 0.45rem);
  }

  .flip {
    flex: 1 1 auto;
    min-height: 0;
    display: flex;
    flex-direction: column;
    overflow: visible;
    width: 100%;
  }

  .flip__inner {
    flex: 1 1 auto;
    min-height: 0;
    width: 100%;
    display: flex;
    flex-direction: column;
  }

  .flip__face--front {
    flex: 1 1 auto;
    display: flex;
    flex-direction: column;
    width: 100%;
    min-height: 0;
    overflow: visible;
  }

  .flip__face--front .panel {
    flex: 1 1 auto;
    min-height: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: clamp(0.3rem, 1.6vw, 0.5rem);
    overflow-x: hidden;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    padding: clamp(0.65rem, 2.5vw, 1rem) clamp(0.5rem, 2vw, 0.75rem);
  }

  .flip__face--front .header-block,
  .flip__face--front .avatar-wrap,
  .flip__face--front .content,
  .flip__face--front .help-row,
  .flip__face--front .links-section {
    width: 100%;
  }

  .header-block {
    margin-bottom: 0;
  }

  h1 {
    font-size: clamp(1.28rem, 5.5vw, 1.72rem);
    letter-spacing: 0.05em;
  }

  .tagline {
    margin-top: 0.2rem;
    font-size: clamp(0.72rem, 2.4vw, 0.88rem);
    letter-spacing: clamp(0.1em, 1.8vw, 0.28em);
  }

  .avatar-wrap {
    margin-bottom: 0;
  }

  .avatar {
    width: clamp(76px, 24vw, 118px);
    height: clamp(76px, 24vw, 118px);
    border-width: 2px;
    box-shadow:
      0 0 0 2px rgba(30, 37, 32, 0.9),
      0 4px 14px rgba(0, 0, 0, 0.45),
      inset 0 0 0 1px rgba(255, 255, 255, 0.08);
  }

  .content p {
    font-size: clamp(0.84rem, 3.1vw, 0.98rem);
    line-height: 1.38;
    margin-bottom: 0.35rem;
  }

  .shout {
    font-size: clamp(1.08rem, 4.2vw, 1.28rem);
    margin-bottom: 0.35rem !important;
    letter-spacing: 0.04em;
  }

  .help-row {
    margin-top: 0;
    margin-bottom: 0;
  }

  .help-trigger {
    min-height: 2.75rem;
    padding: 0.52rem 0.85rem;
    font-size: clamp(0.82rem, 3.2vw, 0.92rem);
    letter-spacing: 0.045em;
    border-radius: 9px;
  }

  .help-trigger__icon {
    font-size: 1.18rem;
  }

  .links-section {
    margin-top: 0.1rem;
    padding-top: 0.3rem;
    border-top: 1px solid rgba(196, 163, 90, 0.2);
  }

  .links-title {
    margin-bottom: 0.4rem;
    font-size: clamp(0.72rem, 2.4vw, 0.88rem);
    letter-spacing: 0.14em;
  }

  .links {
    gap: 0.42rem;
  }

  .link-btn {
    min-height: 2.75rem;
    padding: 0.52rem 0.5rem;
    font-size: clamp(0.78rem, 3vw, 0.92rem);
    border-radius: 9px;
    gap: 0.38rem;
  }

  .link-btn .icon {
    width: 24px;
    height: 24px;
  }

  .link-btn__emoji {
    font-size: 1.35rem;
    width: 1.55rem;
  }

  .link-btn__sub {
    margin-top: 0.12rem;
    font-size: clamp(0.72em, 2.6vw, 0.82em);
  }

  footer {
    flex-shrink: 0;
    margin-top: 0.4rem;
    font-size: clamp(0.62rem, 2vw, 0.76rem);
    letter-spacing: 0.08em;
    text-align: center;
  }

  .flip__face--back {
    overflow: hidden;
  }

  .panel--flip-back {
    height: 100%;
    align-items: center;
    justify-content: center;
    gap: 0.45rem;
    overflow-x: hidden;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    padding: clamp(0.45rem, 1.8vw, 0.65rem) clamp(0.45rem, 1.8vw, 0.6rem);
  }

  .flip-help {
    flex: 0 1 auto;
    width: 100%;
    min-height: 0;
    max-height: 100%;
    overflow-x: hidden;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
  }

  .flip-help__title {
    font-size: clamp(1.02rem, 3.8vw, 1.2rem);
    margin-bottom: 0.4rem;
  }

  .flip-help__block {
    margin-bottom: 0.35rem;
  }

  .flip-help__block--alt {
    margin-top: 0.45rem;
    padding-top: 0.45rem;
  }

  .flip-help__subtitle {
    font-size: clamp(0.68rem, 2.2vw, 0.78rem);
    margin-bottom: 0.38rem;
    letter-spacing: 0.12em;
  }

  .flip-help__card {
    padding: 0.38rem 0.45rem;
    border-radius: 8px;
  }

  .flip-help__card-head {
    gap: 0.25rem;
    margin-bottom: 0.35rem;
  }

  .flip-help__tel {
    font-size: clamp(0.88rem, 3.2vw, 1.05rem);
  }

  .flip-help__banks {
    font-size: clamp(0.74rem, 2.6vw, 0.86rem);
    line-height: 1.25;
    margin-bottom: 0.35rem;
  }

  .flip-help__name {
    font-size: clamp(0.86rem, 2.8vw, 0.98rem);
  }

  .flip-help__note {
    font-size: clamp(0.76rem, 2.6vw, 0.88rem);
    margin-bottom: 0.35rem;
    line-height: 1.25;
  }

  .flip-help__badge {
    margin-top: 0.15rem;
    padding: 0.14rem 0.48rem;
    font-size: clamp(0.62rem, 2vw, 0.72rem);
  }

  .flip-help__thanks {
    margin-top: 0.45rem;
    padding-top: 0.45rem;
  }

  .flip-help__thanks p {
    font-size: clamp(0.78rem, 2.8vw, 0.92rem);
    line-height: 1.38;
    margin-bottom: 0.38rem;
  }

  .flip-back-trigger {
    width: auto;
    max-width: none;
    align-self: center;
    margin-top: 0.35rem;
    padding: 0.42rem 0.85rem;
    font-size: clamp(0.72rem, 2.6vw, 0.84rem);
    letter-spacing: 0.06em;
    border-radius: 7px;
    gap: 0.28rem;
  }

  .flip-back-trigger__arrow {
    font-size: 0.95rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .flip__inner {
    transition-duration: 0.01ms;
  }

  .help-trigger:hover {
    transform: none;
  }

  .toast {
    transition-duration: 0.01ms;
  }
}
