:root {
  color-scheme: dark;
  --bg: #050407;
  --bg-soft: #0e0b10;
  --ink: #f7eef5;
  --muted: #b9a9b4;
  --line: rgba(255, 255, 255, 0.12);
  --panel: rgba(15, 12, 17, 0.78);
  --panel-strong: rgba(20, 16, 22, 0.94);
  --pink: #ff7bc8;
  --hot-pink: #ff4fb8;
  --soft-pink: #1b1218;
  --lilac: #9a7cff;
  --gold: #f6c45f;
  --gold-strong: #ffe49a;
  --gold-soft: rgba(246, 196, 95, 0.16);
  --champagne: #fff0c9;
  --silver: #d8dce8;
  --shadow-pink: 0 0 34px rgba(255, 79, 184, 0.34);
  --shadow-gold: 0 0 34px rgba(246, 196, 95, 0.28);
  --shadow-white: 0 22px 70px rgba(0, 0, 0, 0.34);
  --max: 1320px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 112px;
  scrollbar-color: var(--hot-pink) #120b11;
  scrollbar-width: thin;
}

*::-webkit-scrollbar {
  width: 10px;
  height: 10px;
}

*::-webkit-scrollbar-track {
  background: #120b11;
}

*::-webkit-scrollbar-thumb {
  border: 2px solid #120b11;
  border-radius: 999px;
  background:
    linear-gradient(180deg, rgba(255, 79, 184, 0.86), rgba(154, 124, 255, 0.72));
  box-shadow: 0 0 18px rgba(255, 79, 184, 0.4);
}

*::-webkit-scrollbar-thumb:hover {
  background:
    linear-gradient(180deg, rgba(255, 123, 200, 0.96), rgba(154, 124, 255, 0.84));
}

body {
  margin: 0;
  min-width: 320px;
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background:
    linear-gradient(120deg, rgba(246, 196, 95, 0.1), transparent 26%),
    linear-gradient(300deg, rgba(255, 79, 184, 0.08), transparent 32%),
    linear-gradient(180deg, #050407 0%, #09070a 48%, #050407 100%),
    var(--bg);
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -2;
  content: "";
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: 58px 58px;
  mask-image: linear-gradient(to bottom, black, transparent 84%);
}

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

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

.site-shell {
  overflow-x: clip;
  overflow-y: visible;
}

.content-loading .site-shell {
  visibility: hidden;
}

.locations-only .services-section {
  display: none;
}

.paused-section {
  display: none !important;
}

.site-header {
  position: fixed;
  top: 14px;
  left: 50%;
  z-index: 20;
  display: flex;
  width: min(calc(100% - 32px), var(--max));
  min-height: 60px;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 10px 12px 10px 18px;
  border: 1px solid rgba(246, 196, 95, 0.26);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(246, 196, 95, 0.08), rgba(255, 79, 184, 0.045)),
    rgba(8, 6, 10, 0.86);
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.035) inset,
    var(--shadow-gold),
    var(--shadow-white);
  backdrop-filter: blur(22px) saturate(1.25);
  transform: translateX(-50%);
}

.brand,
.nav-links,
.hero-actions,
.review-top,
.contact-points {
  display: flex;
  align-items: center;
}

.brand {
  min-width: 0;
  gap: 10px;
  color: var(--ink);
  font-weight: 800;
  letter-spacing: 0;
  white-space: nowrap;
}

.brand-icon-wrap {
  position: relative;
  display: inline-flex;
  width: 34px;
  height: 34px;
  flex: 0 0 34px;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(246, 196, 95, 0.38);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(246, 196, 95, 0.24), rgba(255, 79, 184, 0.16)),
    rgba(255, 255, 255, 0.04);
  box-shadow:
    0 0 18px rgba(246, 196, 95, 0.18),
    0 0 24px rgba(255, 79, 184, 0.12);
  overflow: hidden;
}

.brand-icon-wrap::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.28), transparent 42%, rgba(255, 255, 255, 0.12));
  content: "";
  pointer-events: none;
}

.brand-icon-wrap[hidden] {
  display: none;
}

.brand-icon {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.brand-name {
  display: inline-block;
  overflow: hidden;
  max-width: min(34vw, 240px);
  color: var(--ink);
  text-overflow: ellipsis;
  white-space: nowrap;
}

.nav-links {
  gap: 6px;
}

.nav-links a,
.header-cta {
  border-radius: 8px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
}

.nav-links a {
  padding: 10px 12px;
}

.nav-links a:hover,
.header-cta:hover {
  color: var(--gold-strong);
  background: rgba(246, 196, 95, 0.08);
}

.header-cta {
  padding: 11px 14px;
  border: 1px solid rgba(246, 196, 95, 0.48);
  color: var(--champagne);
  background:
    linear-gradient(135deg, rgba(246, 196, 95, 0.18), rgba(255, 255, 255, 0.045)),
    rgba(255, 255, 255, 0.035);
  box-shadow: 0 0 24px rgba(246, 196, 95, 0.18);
  white-space: nowrap;
}

.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 460px);
  column-gap: clamp(30px, 5vw, 78px);
  min-height: 92svh;
  align-items: center;
  padding: 128px max(24px, calc((100vw - var(--max)) / 2)) 96px;
}

#neonCanvas,
.hero-grid {
  position: absolute;
  inset: 0;
}

#neonCanvas {
  width: 100%;
  height: 100%;
}

.hero-grid {
  z-index: 1;
  background:
    linear-gradient(to right, rgba(5, 4, 7, 0.08), rgba(5, 4, 7, 0.5) 42%, rgba(5, 4, 7, 0.9)),
    repeating-linear-gradient(100deg, transparent 0 42px, rgba(246, 196, 95, 0.06) 43px, transparent 45px);
  pointer-events: none;
}

.hero-content,
.hero-media,
.signal-panel {
  position: relative;
  z-index: 2;
}

.hero-content {
  max-width: 800px;
}

.hero-media {
  width: min(100%, 460px);
  justify-self: end;
  perspective: 1200px;
}

.hero-media.is-empty {
  display: none;
}

.hero-photo-frame {
  position: relative;
  min-height: 420px;
  aspect-ratio: 4 / 5;
  border: 1px solid rgba(246, 196, 95, 0.38);
  border-radius: 8px;
  padding: 10px;
  background:
    linear-gradient(135deg, rgba(246, 196, 95, 0.28), rgba(255, 79, 184, 0.16) 45%, rgba(255, 255, 255, 0.07)),
    rgba(12, 8, 14, 0.7);
  box-shadow:
    0 0 38px rgba(255, 79, 184, 0.22),
    0 0 54px rgba(246, 196, 95, 0.18),
    0 28px 80px rgba(0, 0, 0, 0.42);
  overflow: hidden;
  transform: rotateY(-5deg) rotateX(2deg);
  transform-origin: center;
  isolation: isolate;
}

.hero-photo-frame::before,
.hero-photo-frame::after {
  position: absolute;
  inset: 10px;
  z-index: 2;
  border-radius: 6px;
  pointer-events: none;
  content: "";
}

.hero-photo-frame::before {
  background:
    linear-gradient(120deg, rgba(255, 255, 255, 0.36), transparent 18%, transparent 58%, rgba(255, 255, 255, 0.16) 66%, transparent 74%),
    linear-gradient(180deg, rgba(246, 196, 95, 0.2), transparent 34%, rgba(255, 79, 184, 0.22));
  mix-blend-mode: screen;
}

.hero-photo-frame::after {
  border: 1px solid rgba(255, 240, 201, 0.24);
  box-shadow:
    inset 0 0 28px rgba(255, 255, 255, 0.08),
    inset 0 -42px 60px rgba(5, 4, 7, 0.36);
}

.hero-photo {
  display: block;
  width: 100%;
  height: 100%;
  border-radius: 6px;
  object-fit: cover;
  filter: saturate(1.1) contrast(1.05);
}

.eyebrow {
  margin: 0 0 16px;
  color: var(--gold-strong);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
  text-shadow: 0 0 24px rgba(246, 196, 95, 0.28);
}

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

h1 {
  max-width: 980px;
  margin-bottom: 18px;
  color: var(--ink);
  font-size: clamp(52px, 10vw, 118px);
  line-height: 0.88;
  letter-spacing: 0;
  text-shadow:
    0 0 18px rgba(255, 255, 255, 0.08),
    0 0 34px rgba(246, 196, 95, 0.18),
    0 0 62px rgba(255, 79, 184, 0.12);
}

.hero-lead {
  max-width: 690px;
  margin-bottom: 34px;
  color: #ded1da;
  font-size: clamp(18px, 2.2vw, 23px);
  line-height: 1.5;
}

.hero-actions {
  flex-wrap: wrap;
  gap: 12px;
}

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 8px;
  padding: 14px 20px;
  color: var(--ink);
  font-weight: 800;
  cursor: pointer;
  transition:
    transform 160ms ease,
    box-shadow 160ms ease,
    background 160ms ease;
}

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

.button.primary {
  color: #130d05;
  background: linear-gradient(135deg, #fff1bc, var(--gold), #c8892f);
  box-shadow:
    0 0 18px rgba(246, 196, 95, 0.54),
    0 0 46px rgba(246, 196, 95, 0.24),
    0 12px 32px rgba(177, 114, 35, 0.24);
}

.button.secondary {
  border: 1px solid rgba(246, 196, 95, 0.28);
  background:
    linear-gradient(135deg, rgba(246, 196, 95, 0.08), rgba(255, 255, 255, 0.04)),
    rgba(255, 255, 255, 0.045);
  box-shadow: 0 0 24px rgba(0, 0, 0, 0.2);
}

.signal-panel {
  display: grid;
  grid-column: 1 / -1;
  max-width: 780px;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  margin-top: 68px;
  border: 1px solid rgba(212, 138, 174, 0.2);
  border-radius: 8px;
  background: rgba(212, 138, 174, 0.12);
  opacity: 0;
  overflow: hidden;
  box-shadow: var(--shadow-pink), var(--shadow-white);
  transition: opacity 160ms ease;
}

.signal-panel.is-ready {
  opacity: 1;
}

.signal-panel > div {
  min-height: 118px;
  padding: 24px;
  background: rgba(12, 10, 14, 0.82);
  backdrop-filter: blur(16px);
}

.metric {
  display: block;
  margin-bottom: 8px;
  color: var(--hot-pink);
  font-size: clamp(26px, 4vw, 44px);
  font-weight: 800;
  text-shadow: 0 0 22px rgba(255, 44, 182, 0.34);
}

.metric-label {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.45;
}

.section {
  scroll-margin-top: 112px;
  margin-top: -1px;
  padding: 104px max(24px, calc((100vw - var(--max)) / 2));
  background:
    linear-gradient(115deg, rgba(246, 196, 95, 0.06), transparent 34%),
    radial-gradient(circle at 82% 0, rgba(255, 79, 184, 0.052), transparent 34%),
    linear-gradient(180deg, rgba(5, 4, 7, 0.98), rgba(5, 4, 7, 0.98));
}

.services-section {
  background: linear-gradient(180deg, rgba(10, 8, 12, 0.92), rgba(18, 12, 17, 0.78));
}

.section-heading {
  display: flex;
  max-width: 920px;
  flex-direction: column;
  gap: 0;
  align-items: flex-start;
  margin-bottom: 36px;
}

.section-heading.compact {
  max-width: 820px;
  gap: 0;
}

h2 {
  margin-bottom: 0;
  font-size: clamp(30px, 4.3vw, 56px);
  line-height: 1.04;
  letter-spacing: 0;
  text-wrap: balance;
}

h3 {
  margin-bottom: 10px;
  font-size: 20px;
  line-height: 1.2;
}

.service-grid,
.reviews-grid,
.location-grid,
.paused-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.service-card,
.location-card,
.paused-card,
.review-card,
.deal-box,
.telegram-form {
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    linear-gradient(145deg, rgba(246, 196, 95, 0.075), rgba(255, 79, 184, 0.045) 36%, transparent 70%),
    var(--panel);
  box-shadow:
    var(--shadow-white),
    0 0 28px rgba(246, 196, 95, 0.08),
    0 0 26px rgba(255, 79, 184, 0.08),
    0 12px 42px rgba(0, 0, 0, 0.22);
}

.service-card,
.location-card,
.paused-card,
.review-card,
.timeline-item,
.condition-card,
.deal-box,
.terms-video-card,
.telegram-form {
  animation: cardReveal 720ms cubic-bezier(0.2, 0.9, 0.2, 1) both;
  animation-delay: calc(var(--card-index, 0) * 70ms);
}

.service-card,
.location-card,
.paused-card,
.review-card,
.timeline-item,
.condition-card,
.terms-video-card,
.telegram-form {
  position: relative;
  isolation: isolate;
  overflow: hidden;
}

.service-card::after,
.location-card::after,
.paused-card::after,
.review-card::after,
.timeline-item::after,
.condition-card::after,
.terms-video-card::after,
.telegram-form::after {
  position: absolute;
  top: -42%;
  bottom: -42%;
  left: -58%;
  width: 48%;
  z-index: 1;
  border-radius: 999px;
  background:
    radial-gradient(ellipse at center, rgba(255, 255, 255, 0.11) 0%, rgba(255, 255, 255, 0.055) 34%, transparent 70%);
  filter: blur(18px);
  content: "";
  opacity: 0;
  pointer-events: none;
  transform: translateX(0) rotate(13deg);
  transition:
    opacity 260ms ease,
    transform 880ms cubic-bezier(0.2, 0.9, 0.2, 1);
}

.service-card:hover::after,
.location-card:hover::after,
.paused-card:hover::after,
.review-card:hover::after,
.timeline-item:hover::after,
.condition-card:hover::after,
.terms-video-card:hover::after,
.telegram-form:hover::after {
  opacity: 0.78;
  transform: translateX(330%) rotate(13deg);
}

.service-card:nth-child(2),
.location-card:nth-child(2),
.review-card:nth-child(2),
.timeline-item:nth-child(2),
.condition-card:nth-child(2) {
  --card-index: 1;
}

.service-card:nth-child(3),
.location-card:nth-child(3),
.review-card:nth-child(3),
.timeline-item:nth-child(3),
.condition-card:nth-child(3) {
  --card-index: 2;
}

.service-card:nth-child(4),
.location-card:nth-child(4),
.review-card:nth-child(4),
.timeline-item:nth-child(4),
.condition-card:nth-child(4) {
  --card-index: 3;
}

.service-card {
  display: grid;
  min-height: 296px;
  grid-template-rows: auto auto 1fr;
  padding: 24px;
  transition:
    border-color 160ms ease,
    transform 160ms ease,
    box-shadow 160ms ease;
}

.service-card:hover {
  border-color: rgba(246, 196, 95, 0.58);
  box-shadow: var(--shadow-gold), var(--shadow-pink), var(--shadow-white);
  transform: translateY(-6px);
}

.icon-chip {
  display: inline-flex;
  width: 44px;
  height: 32px;
  align-items: center;
  justify-content: center;
  margin-bottom: 28px;
  border: 1px solid rgba(255, 44, 182, 0.42);
  border-radius: 8px;
  color: var(--gold-strong);
  font-weight: 800;
  background:
    linear-gradient(135deg, rgba(246, 196, 95, 0.16), rgba(255, 255, 255, 0.04)),
    rgba(255, 255, 255, 0.035);
  box-shadow: 0 0 24px rgba(246, 196, 95, 0.2);
}

.service-card p,
.location-card p,
.paused-card p,
.timeline-item p,
.deal-box li,
.review-card p,
.contact-copy p {
  color: var(--muted);
  line-height: 1.58;
}

.service-card h3 {
  min-height: 48px;
  margin-bottom: 14px;
}

.service-card .text-sticker {
  margin-bottom: 6px;
}

.locations-section {
  position: relative;
  background:
    radial-gradient(circle at 12% 34%, rgba(246, 196, 95, 0.09), transparent 30%),
    radial-gradient(circle at 86% 20%, rgba(255, 79, 184, 0.07), transparent 32%),
    linear-gradient(180deg, rgba(8, 6, 8, 0.98), rgba(5, 4, 7, 0.98));
  padding-top: 64px;
  padding-bottom: 86px;
}

.locations-section::before {
  position: absolute;
  top: 18px;
  right: max(24px, calc((100vw - var(--max)) / 2));
  left: max(24px, calc((100vw - var(--max)) / 2));
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(246, 196, 95, 0.34), rgba(255, 79, 184, 0.18), transparent);
  content: "";
}

.locations-section .section-heading {
  margin-bottom: 16px;
}

.locations-section h2 {
  font-size: clamp(38px, 4.1vw, 58px);
  text-shadow:
    0 0 28px rgba(246, 196, 95, 0.11),
    0 0 44px rgba(255, 79, 184, 0.08);
}

.locations-section .section-note {
  margin: -6px 0 18px;
}

.paused-section {
  background:
    linear-gradient(90deg, rgba(143, 124, 200, 0.1), transparent 38%),
    linear-gradient(270deg, rgba(212, 138, 174, 0.06), transparent 38%),
    var(--bg);
}

.section-note {
  max-width: 820px;
  margin: -14px 0 28px;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.65;
}

.location-grid {
  grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
}

.paused-grid {
  grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
}

.cards-carousel {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 16px;
  align-items: center;
}

.cards-carousel.is-static {
  display: block;
}

.cards-viewport {
  overflow: hidden;
  outline: none;
  padding: 10px 2px 34px;
  margin: -10px -2px -34px;
  touch-action: pan-y;
}

.cards-viewport:focus-visible {
  box-shadow: 0 0 0 2px rgba(255, 79, 184, 0.55);
}

.location-grid,
.paused-grid {
  display: flex;
  gap: 18px;
  align-items: stretch;
  will-change: transform;
  transition: transform 520ms cubic-bezier(0.2, 0.9, 0.2, 1);
}

.cards-carousel.is-static .location-grid,
.cards-carousel.is-static .paused-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  transform: none !important;
}

.location-card,
.paused-card {
  display: flex;
  flex: 0 0 calc((100% - 36px) / 3);
  min-height: 0;
  flex-direction: column;
  border-color: rgba(255, 79, 184, 0.18);
  contain: paint;
  padding: 20px;
  background:
    radial-gradient(circle at 16% 4%, rgba(255, 79, 184, 0.08), transparent 32%),
    linear-gradient(160deg, rgba(255, 255, 255, 0.054), rgba(255, 255, 255, 0.016) 46%, rgba(154, 124, 255, 0.028)),
    rgba(13, 8, 13, 0.9);
  box-shadow:
    0 16px 42px rgba(0, 0, 0, 0.34),
    0 0 0 1px rgba(255, 255, 255, 0.03) inset,
    inset 0 22px 70px rgba(255, 79, 184, 0.018);
  transition:
    border-color 180ms ease,
    box-shadow 180ms ease,
    transform 180ms ease,
    filter 180ms ease;
}

.location-card:hover,
.paused-card:hover {
  border-color: rgba(255, 79, 184, 0.34);
  box-shadow:
    0 18px 48px rgba(0, 0, 0, 0.4),
    0 0 0 1px rgba(255, 79, 184, 0.07) inset,
    inset 0 24px 76px rgba(255, 79, 184, 0.028);
  transform: translateY(-4px);
}

.card-topline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 34px;
  margin-bottom: 18px;
}

.location-card-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 12px;
}

.location-card h3,
.paused-card h3 {
  margin-bottom: 0;
  border-bottom: 1px solid rgba(255, 79, 184, 0.18);
  padding-bottom: 12px;
  color: #fff8ee;
  font-size: 24px;
  line-height: 1.15;
  text-shadow:
    0 0 18px rgba(246, 196, 95, 0.14),
    0 0 18px rgba(255, 79, 184, 0.08);
}

.location-card-top {
  position: relative;
  border-color: rgba(255, 223, 132, 0.96);
  background:
    radial-gradient(circle at 22% 0, rgba(255, 244, 194, 0.26), transparent 38%),
    linear-gradient(145deg, rgba(255, 226, 147, 0.22), rgba(246, 196, 95, 0.12) 36%, rgba(255, 79, 184, 0.035) 72%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.068), rgba(255, 255, 255, 0.014)),
    rgba(18, 12, 8, 0.96);
  box-shadow:
    0 18px 46px rgba(0, 0, 0, 0.38),
    inset 0 0 0 1px rgba(255, 245, 204, 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 0.12),
    inset 0 0 90px rgba(246, 196, 95, 0.12);
  animation-name: cardReveal;
  animation-duration: 720ms;
  animation-timing-function: cubic-bezier(0.2, 0.9, 0.2, 1);
  animation-delay: calc(var(--card-index, 0) * 70ms);
  animation-fill-mode: both;
}

.top-badge {
  display: inline-flex;
  width: fit-content;
  min-height: 30px;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 235, 170, 0.82);
  border-radius: 999px;
  padding: 5px 11px;
  color: #160d03;
  background:
    linear-gradient(135deg, #fff4c2, #f6c45f 54%, #b97824),
    rgba(255, 196, 64, 0.1);
  box-shadow:
    0 8px 18px rgba(0, 0, 0, 0.22),
    inset 0 1px 0 rgba(255, 255, 255, 0.48);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  white-space: nowrap;
}

.location-card-top h3 {
  border-color: rgba(255, 229, 158, 0.28);
  color: var(--champagne);
  text-shadow:
    0 0 16px rgba(255, 229, 158, 0.42),
    0 0 34px rgba(246, 196, 95, 0.18);
}

.location-card-top .flag-badge {
  border-color: rgba(246, 196, 95, 0.5);
  color: var(--champagne);
  background:
    linear-gradient(135deg, rgba(246, 196, 95, 0.18), rgba(255, 255, 255, 0.055)),
    rgba(255, 255, 255, 0.045);
  box-shadow:
    0 0 18px rgba(246, 196, 95, 0.16),
    inset 0 1px 0 rgba(255, 255, 255, 0.12);
}

.flag-badge {
  display: inline-flex;
  min-width: 48px;
  min-height: 34px;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 79, 184, 0.28);
  border-radius: 8px;
  padding: 6px 12px;
  color: #f7e8f1;
  background:
    linear-gradient(135deg, rgba(255, 79, 184, 0.16), rgba(154, 124, 255, 0.08)),
    rgba(255, 255, 255, 0.045);
  box-shadow:
    0 0 18px rgba(255, 79, 184, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.12);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.04em;
}

.location-card .route,
.location-card .conditions,
.paused-card .conditions {
  border-top: 1px solid var(--line);
  margin-top: 16px;
  padding-top: 14px;
}

.earning-card {
  min-height: auto;
}

.location-details {
  display: grid;
  gap: 6px;
  margin: 14px 0 0;
  padding: 0;
  list-style: none;
}

.location-details li {
  min-height: 30px;
  border: 1px solid rgba(255, 79, 184, 0.12);
  border-radius: 7px;
  padding: 6px 9px;
  color: #f0e4dc;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.035), rgba(255, 79, 184, 0.014)),
    rgba(255, 255, 255, 0.018);
  font-size: 14px;
  font-weight: 680;
  line-height: 1.32;
  transition:
    border-color 160ms ease,
    background 160ms ease,
    transform 160ms ease;
}

.location-details li:hover {
  border-color: rgba(255, 79, 184, 0.28);
  background:
    linear-gradient(135deg, rgba(255, 79, 184, 0.05), rgba(154, 124, 255, 0.022)),
    rgba(255, 255, 255, 0.028);
  transform: translateX(2px);
}

.location-details li::before {
  display: none;
}

.location-details li:empty {
  display: none;
}

.location-details li:first-child {
  border-color: rgba(255, 79, 184, 0.26);
  color: #fff0f8;
  background:
    linear-gradient(135deg, rgba(255, 79, 184, 0.08), rgba(154, 124, 255, 0.022)),
    rgba(255, 255, 255, 0.024);
}

.location-card-top .location-details li {
  border-color: rgba(246, 196, 95, 0.14);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.034), rgba(246, 196, 95, 0.02)),
    rgba(255, 255, 255, 0.018);
}

.location-card-top .location-details li:first-child {
  border-color: rgba(246, 196, 95, 0.32);
  color: #fff2cf;
  background:
    linear-gradient(135deg, rgba(246, 196, 95, 0.12), rgba(255, 255, 255, 0.026)),
    rgba(255, 255, 255, 0.024);
}

.location-card-top .location-details li:hover {
  border-color: rgba(246, 196, 95, 0.28);
  background:
    linear-gradient(135deg, rgba(246, 196, 95, 0.06), rgba(255, 79, 184, 0.02)),
    rgba(255, 255, 255, 0.028);
}

.location-card .route {
  color: var(--hot-pink);
  font-weight: 800;
}

.paused-card {
  border-color: rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.045);
}

.location-card-muted {
  border-color: rgba(255, 255, 255, 0.16);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.075), transparent 34%),
    rgba(18, 18, 22, 0.84);
  box-shadow:
    var(--shadow-white),
    0 0 22px rgba(255, 255, 255, 0.07);
  filter: saturate(0.52);
}

.location-card-muted h3,
.location-card-muted .location-details li,
.location-card-muted p {
  color: #cfcbd1;
}

.location-card-muted .location-details li {
  border-color: rgba(255, 255, 255, 0.1);
}

.location-card-muted .location-details li::before {
  display: none;
}

.location-card-muted .flag-badge,
.location-card-muted .sticker-symbol {
  color: #f7f7f8;
  background:
    linear-gradient(135deg, rgba(154, 154, 166, 0.88), rgba(74, 74, 86, 0.82)),
    rgba(255, 255, 255, 0.06);
  box-shadow:
    0 0 18px rgba(255, 255, 255, 0.08),
    inset 0 0 14px rgba(255, 255, 255, 0.08);
}

.location-card-muted .top-badge {
  color: #f7f7f8;
  background: linear-gradient(135deg, rgba(190, 190, 198, 0.88), rgba(92, 92, 104, 0.82));
  box-shadow: 0 0 18px rgba(255, 255, 255, 0.08);
}

.location-card-muted .text-sticker {
  border-color: rgba(255, 255, 255, 0.2);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.09), rgba(120, 120, 132, 0.08)),
    rgba(255, 255, 255, 0.04);
  box-shadow: 0 0 18px rgba(255, 255, 255, 0.06);
}

.terms-section {
  background:
    radial-gradient(circle at 82% 0, rgba(255, 79, 184, 0.055), transparent 34%),
    linear-gradient(180deg, rgba(5, 4, 7, 0.98), rgba(5, 4, 7, 0.98));
}

.terms-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(520px, 1.1fr);
  gap: 24px;
  align-items: stretch;
}

.terms-side {
  display: grid;
  grid-template-rows: repeat(2, minmax(0, 1fr));
  align-content: stretch;
  gap: 14px;
  height: 100%;
  min-width: 0;
  min-height: 0;
}

.timeline {
  display: grid;
  gap: 14px;
}

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

.timeline-side {
  min-height: 0;
}

.timeline-item {
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 14px;
  padding: 20px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.045);
}

.timeline-side .timeline-item {
  height: 100%;
  min-height: 0;
}

.timeline-step {
  display: inline-flex;
  width: 40px;
  height: 40px;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 44, 182, 0.52);
  border-radius: 8px;
  color: var(--hot-pink);
  background: rgba(255, 255, 255, 0.04);
  font-weight: 800;
  box-shadow: var(--shadow-pink);
}

.terms-video-card {
  display: grid;
  height: 100%;
  min-height: 0;
  grid-template-rows: 1fr;
  overflow: hidden;
  border: 1px solid rgba(255, 79, 184, 0.24);
  border-radius: 8px;
  background:
    linear-gradient(145deg, rgba(255, 79, 184, 0.1), transparent 42%),
    rgba(255, 255, 255, 0.045);
  box-shadow:
    var(--shadow-white),
    0 0 30px rgba(255, 79, 184, 0.13);
}

.terms-video-frame {
  position: relative;
  display: grid;
  min-height: 0;
  height: 100%;
  place-items: center;
  border-bottom: 0;
  background:
    radial-gradient(circle at 26% 24%, rgba(255, 79, 184, 0.28), transparent 30%),
    linear-gradient(135deg, rgba(255, 79, 184, 0.16), rgba(154, 124, 255, 0.08)),
    #08060a;
}

.terms-video-frame::before {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
  background-size: 34px 34px;
  mask-image: linear-gradient(to bottom, black, transparent 82%);
  content: "";
}

.terms-video {
  position: absolute;
  inset: 0;
  z-index: 2;
  width: 100%;
  height: 100%;
  object-fit: cover;
  background: #08060a;
}

.video-placeholder {
  position: relative;
  z-index: 1;
  display: grid;
  place-items: center;
  gap: 12px;
  padding: 24px;
  text-align: center;
}

.video-placeholder[hidden] {
  display: none;
}

.video-play {
  position: relative;
  display: inline-flex;
  width: 70px;
  height: 70px;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 50%;
  background:
    linear-gradient(135deg, rgba(255, 79, 184, 0.86), rgba(154, 124, 255, 0.62)),
    rgba(255, 255, 255, 0.08);
  box-shadow:
    0 0 34px rgba(255, 79, 184, 0.36),
    inset 0 0 18px rgba(255, 255, 255, 0.1);
}

.video-play::before {
  width: 0;
  height: 0;
  margin-left: 5px;
  border-top: 12px solid transparent;
  border-bottom: 12px solid transparent;
  border-left: 18px solid #fff;
  content: "";
}

.terms-video-badge {
  display: inline-flex;
  min-height: 28px;
  align-items: center;
  border: 1px solid rgba(255, 79, 184, 0.34);
  border-radius: 8px;
  padding: 5px 10px;
  color: var(--hot-pink);
  background: rgba(255, 255, 255, 0.05);
  font-size: 12px;
  font-weight: 900;
  box-shadow: 0 0 18px rgba(255, 79, 184, 0.16);
}

.terms-video-note {
  max-width: 260px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.45;
}

.terms-video-copy {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 4;
  padding: 54px 22px 22px;
  background: linear-gradient(180deg, transparent, rgba(7, 5, 8, 0.78) 36%, rgba(7, 5, 8, 0.94));
  pointer-events: none;
}

.terms-video-copy h3 {
  margin-bottom: 10px;
}

.terms-video-copy p {
  margin-bottom: 0;
  color: var(--muted);
  line-height: 1.58;
}

.deal-box {
  grid-column: 1 / -1;
  padding: 22px;
  max-height: none;
  overflow: visible;
  border-color: rgba(255, 79, 184, 0.26);
  background:
    radial-gradient(circle at top right, rgba(255, 79, 184, 0.18), transparent 38%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.06), transparent),
    var(--panel-strong);
  box-shadow:
    0 0 34px rgba(255, 79, 184, 0.18),
    0 22px 70px rgba(0, 0, 0, 0.36);
}

.deal-box h3 {
  position: relative;
  z-index: 1;
  margin: -4px -4px 16px;
  border: 1px solid rgba(255, 79, 184, 0.18);
  border-radius: 8px;
  padding: 14px 16px;
  background:
    linear-gradient(135deg, rgba(255, 79, 184, 0.18), rgba(154, 124, 255, 0.1)),
    rgba(12, 7, 12, 0.92);
  box-shadow: 0 0 22px rgba(255, 79, 184, 0.12);
}

.deal-box ul {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  align-items: stretch;
  gap: 14px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.condition-card {
  display: flex;
  min-height: 150px;
  flex-direction: column;
  border: 1px solid rgba(255, 79, 184, 0.22);
  border-radius: 8px;
  padding: 16px;
  background:
    linear-gradient(135deg, rgba(255, 79, 184, 0.11), rgba(154, 124, 255, 0.07)),
    rgba(255, 255, 255, 0.045);
  box-shadow: 0 0 22px rgba(255, 79, 184, 0.12);
}

.condition-card h4 {
  margin: 12px 0 8px;
  color: var(--ink);
  font-size: 16px;
  line-height: 1.2;
}

.condition-card p {
  margin-bottom: 0;
}

.deal-box li {
  position: relative;
  padding-left: 22px;
}

.deal-box li.condition-card {
  padding-left: 18px;
}

.deal-box li::before {
  position: absolute;
  top: 11px;
  left: 0;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--hot-pink);
  box-shadow: 0 0 16px rgba(255, 44, 182, 0.56);
  content: "";
}

.deal-box li.condition-card::before {
  display: none;
}

.text-sticker {
  display: inline-flex;
  max-width: 100%;
  align-items: center;
  gap: 6px;
  margin: 0 3px;
  border: 1px solid rgba(255, 79, 184, 0.38);
  border-radius: 8px;
  padding: 3px 8px 4px;
  color: #fff;
  background:
    linear-gradient(135deg, rgba(255, 79, 184, 0.2), rgba(154, 124, 255, 0.14)),
    rgba(255, 255, 255, 0.05);
  box-shadow: 0 0 18px rgba(255, 79, 184, 0.18);
  font-size: 0.88em;
  font-weight: 800;
  vertical-align: baseline;
}

.location-details .text-sticker {
  display: inline;
  margin: 0 4px 0 0;
  border: 0;
  padding: 0;
  color: var(--gold-strong);
  background: none;
  box-shadow: none;
  font-size: inherit;
  font-weight: 800;
  white-space: normal;
  text-shadow: 0 0 14px rgba(246, 196, 95, 0.2);
}

.location-details .text-sticker::after {
  content: ":";
}

.location-details .sticker-symbol {
  display: none;
}

.sticker-symbol {
  display: inline-flex;
  min-width: 30px;
  height: 18px;
  align-items: center;
  justify-content: center;
  border-radius: 5px;
  color: #160711;
  background: var(--hot-pink);
  box-shadow: 0 0 14px rgba(255, 79, 184, 0.45);
  font-size: 10px;
  font-weight: 900;
}

.reviews-section {
  background:
    radial-gradient(circle at 82% 0, rgba(255, 79, 184, 0.055), transparent 34%),
    linear-gradient(180deg, rgba(5, 4, 7, 0.98), rgba(5, 4, 7, 0.98));
}

.reviews-carousel {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 16px;
  align-items: center;
}

.reviews-viewport {
  min-height: 280px;
  overflow: hidden;
  outline: none;
  padding: 10px 2px 34px;
  margin: -10px -2px -34px;
}

.reviews-viewport:focus-visible {
  box-shadow: 0 0 0 2px rgba(255, 79, 184, 0.55);
}

.reviews-grid {
  display: flex;
  gap: 14px;
  will-change: transform;
  transition: transform 520ms cubic-bezier(0.2, 0.9, 0.2, 1);
}

.review-card {
  flex: 0 0 calc((100% - 28px) / 3);
  min-height: 280px;
  padding: 26px;
  transition:
    border-color 180ms ease,
    box-shadow 180ms ease,
    transform 180ms ease;
}

.review-card.featured {
  border-color: rgba(246, 196, 95, 0.58);
  box-shadow: var(--shadow-gold), var(--shadow-white);
}

.review-card:hover {
  border-color: rgba(246, 196, 95, 0.48);
  box-shadow: var(--shadow-gold), var(--shadow-white);
  transform: translateY(-6px);
}

.review-top {
  gap: 14px;
  margin-bottom: 28px;
}

.review-top p {
  margin-bottom: 0;
  font-size: 14px;
}

.carousel-dots {
  display: flex;
  grid-column: 1 / -1;
  justify-content: center;
  gap: 8px;
  margin-top: 16px;
}

.carousel-dot {
  width: 10px;
  height: 10px;
  border: 1px solid rgba(246, 196, 95, 0.46);
  border-radius: 999px;
  padding: 0;
  background: rgba(255, 255, 255, 0.1);
  cursor: pointer;
  transition:
    width 180ms ease,
    background 180ms ease,
    box-shadow 180ms ease;
}

.carousel-dot.active {
  width: 28px;
  background: linear-gradient(135deg, #fff0b9, var(--gold), #b97824);
  box-shadow: 0 0 20px rgba(246, 196, 95, 0.48);
}

.avatar {
  display: inline-flex;
  width: 50px;
  height: 50px;
  flex: 0 0 auto;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 44, 182, 0.48);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.04);
  color: var(--hot-pink);
  font-weight: 800;
  box-shadow: 0 0 22px rgba(255, 44, 182, 0.18);
}

.contact-section {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(360px, 1.1fr);
  gap: 38px;
  align-items: start;
  background:
    radial-gradient(circle at 82% 0, rgba(255, 79, 184, 0.055), transparent 34%),
    linear-gradient(180deg, rgba(5, 4, 7, 0.98), rgba(5, 4, 7, 0.98));
}

.contact-copy {
  padding-top: 12px;
}

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

.contact-points {
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.contact-points span {
  display: inline-flex;
  min-height: 38px;
  align-items: center;
  border: 1px solid rgba(255, 44, 182, 0.24);
  border-radius: 8px;
  padding: 8px 12px;
  color: #e4d6df;
  background: rgba(255, 255, 255, 0.045);
}

.telegram-form {
  position: relative;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  padding: 28px;
  border-color: rgba(255, 79, 184, 0.34);
  background:
    radial-gradient(circle at top right, rgba(255, 79, 184, 0.18), transparent 34%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.018)),
    rgba(10, 6, 11, 0.92);
  overflow: hidden;
}

.telegram-form::before {
  position: absolute;
  top: -1px;
  right: 22px;
  left: 22px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 79, 184, 0.72), transparent);
  content: "";
}

.telegram-form label {
  display: grid;
  gap: 8px;
  color: #e4d6df;
  font-size: 14px;
  font-weight: 700;
}

.telegram-form .full {
  grid-column: 1 / -1;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid rgba(255, 79, 184, 0.28);
  border-radius: 8px;
  padding: 14px 14px;
  color: var(--ink);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.045), rgba(255, 255, 255, 0.018)),
    rgba(8, 6, 10, 0.9);
  outline: none;
  transition:
    border-color 160ms ease,
    box-shadow 160ms ease,
    background 160ms ease;
}

select {
  appearance: none;
  color-scheme: dark;
  background-image:
    linear-gradient(45deg, transparent 50%, var(--hot-pink) 50%),
    linear-gradient(135deg, var(--hot-pink) 50%, transparent 50%);
  background-position:
    calc(100% - 18px) 20px,
    calc(100% - 12px) 20px;
  background-size:
    6px 6px,
    6px 6px;
  background-repeat: no-repeat;
  cursor: pointer;
}

select option {
  color: var(--ink);
  background: #120b11;
}

select option:checked {
  color: #fff;
  background: #4d1738;
}

.custom-select {
  position: relative;
  min-width: 0;
}

.custom-select select {
  position: absolute;
  inset: 0;
  opacity: 0;
  pointer-events: none;
}

.custom-select-trigger {
  position: relative;
  display: flex;
  width: 100%;
  min-height: 50px;
  align-items: center;
  justify-content: space-between;
  border: 1px solid rgba(255, 79, 184, 0.3);
  border-radius: 8px;
  padding: 13px 44px 13px 14px;
  color: var(--ink);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.018)),
    rgba(8, 6, 10, 0.94);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
  font-weight: 800;
  text-align: left;
  cursor: pointer;
}

.custom-select-trigger::after {
  position: absolute;
  top: 50%;
  right: 16px;
  width: 8px;
  height: 8px;
  border-right: 2px solid var(--hot-pink);
  border-bottom: 2px solid var(--hot-pink);
  content: "";
  transform: translateY(-60%) rotate(45deg);
  transition: transform 160ms ease;
}

.custom-select.open .custom-select-trigger::after {
  transform: translateY(-30%) rotate(225deg);
}

.custom-select-trigger.is-placeholder {
  color: #887582;
}

.custom-select.open .custom-select-trigger,
.custom-select-trigger:focus-visible {
  border-color: rgba(255, 79, 184, 0.78);
  box-shadow:
    0 0 0 3px rgba(255, 79, 184, 0.1),
    0 0 30px rgba(255, 79, 184, 0.22);
  outline: none;
}

.custom-select-menu {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  left: 0;
  z-index: 30;
  display: grid;
  max-height: 260px;
  overflow: auto;
  border: 1px solid rgba(255, 79, 184, 0.38);
  border-radius: 8px;
  padding: 6px;
  background:
    radial-gradient(circle at top right, rgba(255, 79, 184, 0.16), transparent 38%),
    rgba(9, 5, 10, 0.98);
  box-shadow:
    0 0 34px rgba(255, 79, 184, 0.22),
    0 18px 46px rgba(0, 0, 0, 0.42);
  opacity: 0;
  pointer-events: none;
  transform: translateY(-6px);
  transition:
    opacity 160ms ease,
    transform 160ms ease;
}

.custom-select.open .custom-select-menu {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.custom-select-option {
  display: flex;
  width: 100%;
  min-height: 40px;
  align-items: center;
  border: 0;
  border-radius: 7px;
  padding: 10px 12px;
  color: #eadce6;
  background: transparent;
  font-weight: 800;
  text-align: left;
  cursor: pointer;
}

.custom-select-option:hover,
.custom-select-option.active {
  color: #fff;
  background:
    linear-gradient(135deg, rgba(255, 79, 184, 0.28), rgba(154, 124, 255, 0.14)),
    rgba(255, 255, 255, 0.055);
}

textarea {
  min-height: 132px;
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
  border-color: rgba(255, 79, 184, 0.78);
  background:
    linear-gradient(180deg, rgba(255, 79, 184, 0.075), rgba(255, 255, 255, 0.02)),
    rgba(8, 6, 10, 0.94);
  box-shadow:
    0 0 0 3px rgba(255, 79, 184, 0.1),
    var(--shadow-pink);
}

input:hover,
select:hover,
textarea:hover {
  border-color: rgba(255, 79, 184, 0.5);
}

::placeholder {
  color: #897b85;
}

input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus {
  -webkit-text-fill-color: var(--ink);
  box-shadow: 0 0 0 1000px #120b11 inset, 0 0 0 3px rgba(255, 79, 184, 0.1);
  caret-color: var(--ink);
}

.site-footer {
  display: flex;
  width: min(calc(100% - 48px), var(--max));
  min-height: 86px;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin: 0 auto;
  padding: 24px 0 34px;
  border-top: 1px solid rgba(246, 196, 95, 0.18);
  color: var(--muted);
  font-size: 14px;
}

.footer-left {
  color: var(--champagne);
  font-weight: 800;
}

.footer-right {
  max-width: 680px;
  text-align: right;
}

@keyframes cardReveal {
  from {
    opacity: 0;
    transform: translateY(18px) scale(0.985);
    filter: blur(8px);
  }

  to {
    opacity: 1;
    transform: translateY(0) scale(1);
    filter: blur(0);
  }
}

.form-status {
  grid-column: 1 / -1;
  min-height: 24px;
  margin: 0;
  color: var(--hot-pink);
  font-size: 14px;
  line-height: 1.5;
}

.form-status.error {
  color: #9e1732;
}

@media (max-width: 1120px) {
  .terms-layout {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .terms-side {
    grid-template-rows: auto;
    height: auto;
  }

  .timeline-main {
    grid-template-rows: none;
  }

  .terms-video-card {
    height: auto;
    grid-template-rows: 1fr;
  }

  .terms-video-frame {
    min-height: 236px;
    aspect-ratio: 16 / 10;
  }

  .terms-video-card,
  .deal-box {
    grid-column: 1;
  }

}

@media (max-width: 980px) {
  .nav-links {
    display: none;
  }

  .hero {
    grid-template-columns: 1fr;
    row-gap: 34px;
    min-height: auto;
    padding-top: 132px;
  }

  .hero-media {
    width: min(420px, 100%);
    justify-self: start;
  }

  .hero-photo-frame {
    min-height: 360px;
    transform: none;
  }

  .signal-panel {
    margin-top: 20px;
  }

  .signal-panel,
  .service-grid,
  .location-grid,
  .paused-grid,
  .terms-layout,
  .contact-section {
    grid-template-columns: 1fr;
  }

  .review-card {
    flex-basis: calc((100% - 14px) / 2);
  }

  .location-card,
  .paused-card {
    flex-basis: calc((100% - 18px) / 2);
  }

  .cards-carousel.is-static .location-grid,
  .cards-carousel.is-static .paused-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .section-heading {
    max-width: 100%;
  }

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

  .deal-box {
    position: static;
  }

  .deal-box ul {
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  }
}

@media (max-width: 620px) {
  .site-header {
    top: 10px;
    width: calc(100% - 20px);
    min-height: 56px;
    padding-left: 12px;
  }

  .brand {
    font-size: 15px;
  }

  .header-cta {
    padding: 10px 11px;
    font-size: 13px;
  }

  .hero {
    padding: 112px 18px 72px;
  }

  .hero-media {
    width: 100%;
  }

  .hero-photo-frame {
    min-height: 280px;
    aspect-ratio: 1 / 1;
    padding: 8px;
  }

  .hero-photo-frame::before,
  .hero-photo-frame::after {
    inset: 8px;
  }

  h1 {
    font-size: clamp(46px, 15vw, 68px);
  }

  .hero-lead {
    font-size: 17px;
  }

  .button {
    width: 100%;
  }

  .reviews-carousel {
    grid-template-columns: minmax(0, 1fr);
    gap: 12px;
  }

  .cards-carousel {
    grid-template-columns: minmax(0, 1fr);
    gap: 12px;
    padding-bottom: 50px;
  }

  .cards-carousel .cards-viewport {
    grid-column: 1;
  }

  .cards-carousel .cards-prev,
  .cards-carousel .cards-next {
    display: none !important;
  }

  .cards-carousel .cards-prev {
    left: 0;
  }

  .cards-carousel .cards-next {
    left: 48px;
  }

  .cards-carousel .cards-dots {
    position: static;
    grid-column: auto;
    margin-top: 4px;
  }

  .review-card {
    flex-basis: 100%;
  }

  .location-card,
  .paused-card {
    flex-basis: 100%;
    padding: 20px;
  }

  .cards-carousel.is-static .location-grid,
  .cards-carousel.is-static .paused-grid {
    grid-template-columns: 1fr;
  }

  .earning-card {
    min-height: auto;
  }

  .location-details {
    gap: 0;
    margin-top: 16px;
  }

  .location-details li {
    padding: 10px 0;
    font-size: 14px;
    line-height: 1.48;
  }

  .location-details .text-sticker {
    margin-right: 4px;
    padding: 0;
    font-size: inherit;
  }

  .signal-panel {
    display: none;
  }

  .signal-panel > div,
  .timeline-item,
  .telegram-form,
  .review-card,
  .service-card,
  .deal-box {
    padding: 20px;
  }

  .section {
    padding: 72px 18px;
  }

  h2 {
    font-size: clamp(28px, 10vw, 42px);
  }

  .timeline-item {
    grid-template-columns: 44px 1fr;
    gap: 14px;
  }

  .timeline-step {
    width: 38px;
    height: 38px;
  }

  .contact-section {
    grid-template-columns: 1fr;
  }

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

  .deal-box ul {
    grid-template-columns: 1fr;
  }

  .site-footer {
    width: calc(100% - 36px);
    flex-direction: column;
    align-items: flex-start;
    min-height: auto;
  }

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

}

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