/* ===== RESET & BASE ===== */
* { margin: 0; padding: 0; box-sizing: border-box; }

:root {
  --bg: #0c0a14;
  --bg-soft: #14111f;
  --card: #1a1626;
  --card-2: #16131f;
  --border: #2a2540;
  --text: #ffffff;
  --muted: #9a92ac;
  --pink: #e2389d;
  --pink-2: #b15ce0;
  --pink-glow: #ff52c0;
  --magenta: #d63ea0;
  --gold: #f4b234;
  --radius: 14px;
}

html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', system-ui, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}
body.modal-lock { overflow: hidden; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
img { display: block; max-width: 100%; }
button, input, select { font: inherit; }
button { color: inherit; }

/* ===== LOGO ===== */
.logo__mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 10px;
  background: linear-gradient(180deg, #f5c542, #e8a516);
  color: #1a1206;
  font-weight: 900;
  font-size: 22px;
  position: relative;
  line-height: 1;
}
.logo__star { position: absolute; right: 5px; bottom: 4px; font-size: 9px; }
.logo--sm .logo__mark { width: 34px; height: 34px; font-size: 18px; }

/* ===== HEADER ===== */
.header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(8, 6, 14, 0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255,255,255,0.04);
}
.header__inner {
  max-width: 1500px;
  margin: 0 auto;
  height: 72px;
  padding: 0 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.header__left { display: flex; align-items: center; gap: 44px; }
.nav { display: flex; align-items: center; gap: 32px; }
.nav__link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: #e9e6f0;
  transition: color 0.2s;
}
.nav__link:hover { color: var(--pink-glow); }
.header__right { display: flex; align-items: center; gap: 22px; }
.icon-btn { color: #d8d4e2; display: inline-flex; transition: color 0.2s; }
.icon-btn:hover { color: var(--pink-glow); }

/* ===== LANGUAGE SELECT ===== */
.lang-select { position: relative; }
.lang {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 800;
  color: #d8d4e2;
  padding: 10px 16px;
  border-radius: 30px;
  border: 1px solid var(--border);
  background: rgba(255,255,255,0.05);
  cursor: pointer;
  transition: border-color 0.2s, background 0.2s;
}
.lang:hover, .lang-select.is-open .lang { border-color: var(--pink); background: rgba(255,255,255,0.08); }
.lang__chevron { transition: transform 0.2s; }
.lang-select.is-open .lang__chevron { transform: rotate(180deg); }
.lang-menu {
  position: absolute;
  right: 0;
  top: calc(100% + 10px);
  z-index: 90;
  min-width: 112px;
  padding: 8px;
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,0.12);
  background: rgba(18, 14, 28, 0.96);
  box-shadow: 0 18px 50px rgba(0,0,0,0.45);
  backdrop-filter: blur(12px);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-6px);
  transition: opacity 0.18s, transform 0.18s, visibility 0.18s;
}
.lang-select.is-open .lang-menu { opacity: 1; visibility: visible; transform: translateY(0); }
.lang-menu button {
  width: 100%;
  border: 0;
  background: transparent;
  color: #efeaf6;
  cursor: pointer;
  text-align: left;
  padding: 9px 11px;
  border-radius: 8px;
  font-weight: 800;
}
.lang-menu button:hover, .lang-menu button.is-active { background: rgba(226, 56, 157, 0.18); color: #fff; }
.lang-select--footer .lang-menu { top: auto; bottom: calc(100% + 10px); }

/* ===== HERO ===== */
.hero {
  max-width: 1500px;
  margin: 24px auto 0;
  padding: 0 32px;
  display: grid;
  grid-template-columns: 1fr 460px;
  gap: 24px;
  align-items: stretch;
}
.hero__media {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  min-height: 600px;
}
.hero__img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.hero__overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(8,6,14,0.92) 0%, rgba(8,6,14,0.55) 32%, rgba(8,6,14,0) 60%),
    linear-gradient(0deg, rgba(8,6,14,0.85) 0%, rgba(8,6,14,0) 45%);
}
.hero__content {
  position: relative;
  z-index: 2;
  padding: 48px;
  max-width: 600px;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

/* GTA-style title */
.gta-logo {
  display: inline-flex;
  align-items: center;
  gap: 18px;
  width: fit-content;
  color: #fff;
  transform: rotate(-2deg) skewX(-4deg);
  transform-origin: left center;
  filter: drop-shadow(0 12px 18px rgba(0,0,0,0.68));
}
.gta-logo__stack {
  display: block;
  padding: 12px 16px 10px;
  background: rgba(0,0,0,0.34);
  border: 4px solid #fff;
  box-shadow: inset 0 0 0 2px #111, 0 0 0 2px #111;
}
.gta-logo__line {
  display: block;
  font-family: 'Bowlby One SC', Impact, Haettenschweiler, 'Arial Black', sans-serif;
  font-size: clamp(48px, 6vw, 82px);
  font-weight: 400;
  line-height: 0.78;
  letter-spacing: 0;
  text-transform: uppercase;
  -webkit-text-stroke: 3px #101010;
  text-shadow:
    3px 0 #101010,
    -3px 0 #101010,
    0 3px #101010,
    0 -3px #101010,
    5px 5px 0 rgba(0,0,0,0.8);
}
.gta-logo__vi {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: clamp(92px, 10vw, 138px);
  height: clamp(92px, 10vw, 138px);
  border-radius: 50%;
  border: 5px solid #fff;
  background:
    radial-gradient(circle at 32% 20%, #ffe88e 0 15%, transparent 16%),
    linear-gradient(145deg, #f7ba3e 0%, #eb4a9d 46%, #8852e4 100%);
  color: #fff;
  font-family: Georgia, 'Times New Roman', serif;
  font-size: clamp(50px, 6vw, 80px);
  font-weight: 900;
  line-height: 1;
  letter-spacing: 0;
  text-shadow: 0 4px 0 rgba(0,0,0,0.38);
  box-shadow: inset 0 0 0 2px #151019, 0 0 0 2px #151019, 0 12px 38px rgba(226,56,157,0.35);
}
.hero__sub {
  margin-top: 18px;
  font-size: 17px;
  font-weight: 700;
  letter-spacing: 0.42em;
  color: var(--pink-glow);
}
.hero__desc { margin-top: 22px; font-size: 15px; color: #d7d2e2; max-width: 420px; }

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-weight: 800;
  font-size: 14px;
  letter-spacing: 0.05em;
  border-radius: 12px;
  cursor: pointer;
  border: 0;
  transition: transform 0.15s, box-shadow 0.2s, background 0.2s, border-color 0.2s;
}
.btn--trailer {
  margin-top: 30px;
  align-self: flex-start;
  padding: 14px 26px;
  background: rgba(20,16,30,0.7);
  border: 1px solid rgba(255,255,255,0.18);
  backdrop-filter: blur(6px);
}
.btn--trailer:hover { background: rgba(40,32,56,0.85); transform: translateY(-1px); }
.btn__play {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 1.5px solid rgba(255,255,255,0.6);
}
.btn--order, .btn--next {
  width: 100%;
  margin-top: 26px;
  padding: 17px;
  font-size: 15px;
  color: #fff;
  background: linear-gradient(90deg, #b5379b 0%, #e145a6 50%, #f06bce 100%);
  box-shadow: 0 8px 26px -8px rgba(224, 57, 157, 0.7);
}
.btn--order:hover, .btn--next:hover { transform: translateY(-1px); box-shadow: 0 12px 30px -8px rgba(224, 57, 157, 0.85); }
.btn--wish, .btn--ghost {
  width: 100%;
  margin-top: 12px;
  padding: 16px;
  color: #ece8f4;
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--border);
}
.btn--wish:hover, .btn--ghost:hover { background: rgba(255,255,255,0.09); }
.btn[disabled] { opacity: 0.45; cursor: not-allowed; transform: none; box-shadow: none; }

/* ===== BUY CARD ===== */
.buy-card {
  background: linear-gradient(180deg, #1a1527 0%, #141020 100%);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 34px 32px;
  display: flex;
  flex-direction: column;
}
.buy-card__tag { font-size: 12px; font-weight: 800; letter-spacing: 0.1em; color: var(--pink-glow); }
.buy-card__title { margin-top: 14px; font-size: 30px; font-weight: 800; line-height: 1.1; }
.buy-card__edition { margin-top: 6px; font-size: 22px; font-weight: 700; color: #efeaf6; }
.platforms { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 22px; }
.platform {
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.04em;
  color: #cfc9dc;
  padding: 6px 12px;
  border-radius: 7px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.08);
}
.platform--pc { letter-spacing: 0.12em; }
.buy-card__price { margin-top: 24px; font-size: 42px; font-weight: 800; }
.buy-card__list { margin-top: 22px; display: flex; flex-direction: column; gap: 16px; }
.buy-card__list li { display: flex; gap: 12px; font-size: 14px; color: #cfc9dc; }
.buy-card__list strong { color: #fff; font-weight: 700; }
.li-ico { flex-shrink: 0; filter: hue-rotate(280deg) saturate(1.4); }

/* ===== LOWER SECTION ===== */
.lower {
  max-width: 1500px;
  margin: 40px auto 0;
  padding: 0 32px;
  display: grid;
  grid-template-columns: 1fr 460px;
  gap: 24px;
  align-items: start;
}
.features { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; padding-bottom: 32px; border-bottom: 1px solid var(--border); }
.feature { display: flex; align-items: center; gap: 14px; }
.feature__ico {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(224,57,157,0.12);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
}
.feature__title { font-size: 13px; font-weight: 800; letter-spacing: 0.03em; }
.feature__sub { font-size: 13px; color: var(--muted); margin-top: 2px; }
.section-title { margin-top: 38px; font-size: 26px; font-weight: 800; letter-spacing: 0.02em; color: var(--pink-glow); }
.section-desc { margin-top: 12px; font-size: 15px; color: #c8c2d6; max-width: 560px; }
.gallery { margin-top: 26px; display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.gallery__item {
  position: relative;
  border: 0;
  padding: 0;
  border-radius: 12px;
  overflow: hidden;
  aspect-ratio: 16 / 11;
  background: var(--card);
  cursor: zoom-in;
}
.gallery__item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s; }
.gallery__item:hover img { transform: scale(1.06); }
.gallery__play {
  position: absolute;
  inset: 0;
  margin: auto;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: rgba(255,255,255,0.92);
  color: #14111f;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.info-card {
  background: linear-gradient(180deg, #1a1527 0%, #141020 100%);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 14px 28px;
}
.info-row { display: grid; grid-template-columns: 150px 1fr; align-items: center; gap: 16px; padding: 20px 0; border-bottom: 1px solid rgba(255,255,255,0.06); }
.info-row:last-child { border-bottom: none; }
.info-row__label { font-size: 13px; font-weight: 700; letter-spacing: 0.04em; color: var(--muted); }
.info-row__value { font-size: 15px; font-weight: 600; }
.info-row--platforms .info-row__value { display: flex; flex-wrap: wrap; gap: 8px; }

/* ===== FOOTER ===== */
.footer {
  max-width: 1500px;
  margin: 56px auto 0;
  padding: 28px 32px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}
.footer__left { display: flex; align-items: center; gap: 28px; flex-wrap: wrap; }
.footer__nav { display: flex; gap: 28px; flex-wrap: wrap; }
.footer__link { font-size: 13px; font-weight: 600; letter-spacing: 0.03em; color: var(--muted); transition: color 0.2s; }
.footer__link:hover { color: #fff; }

/* ===== LIGHTBOX ===== */
img.zoomable { cursor: zoom-in; }
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 300;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 32px;
  background: rgba(6, 4, 12, 0.94);
  backdrop-filter: blur(8px);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.2s, visibility 0.2s;
}
.lightbox.is-open { opacity: 1; visibility: visible; pointer-events: auto; }
.lightbox__img {
  display: block;
  width: auto;
  height: auto;
  max-width: min(94vw, 1500px);
  max-height: 88vh;
  object-fit: contain;
  border-radius: 12px;
  box-shadow: 0 24px 80px -20px rgba(0,0,0,0.9);
  transform: scale(0.94);
  transition: transform 0.22s;
}
.lightbox.is-open .lightbox__img { transform: scale(1); }
.lightbox__close, .order-modal__close {
  position: absolute;
  top: 22px;
  right: 26px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.2);
  background: rgba(20,16,30,0.78);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.2s, border-color 0.2s;
}
.lightbox__close:hover, .order-modal__close:hover { background: rgba(40,32,56,0.92); border-color: var(--pink); }

/* ===== ORDER MODAL ===== */
.order-modal {
  position: fixed;
  inset: 0;
  z-index: 240;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 26px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.2s, visibility 0.2s;
}
.order-modal.is-open { opacity: 1; visibility: visible; pointer-events: auto; }
.order-modal__shade { position: absolute; inset: 0; background: rgba(7, 4, 13, 0.88); backdrop-filter: blur(9px); }
.order-modal__panel {
  position: relative;
  width: min(1120px, 100%);
  max-height: min(900px, 92vh);
  overflow: auto;
  border-radius: 18px;
  border: 1px solid rgba(255,255,255,0.12);
  background:
    linear-gradient(135deg, rgba(226,56,157,0.16), transparent 35%),
    linear-gradient(180deg, #1a1527 0%, #100d1a 100%);
  box-shadow: 0 30px 100px rgba(0,0,0,0.72);
  padding: 32px;
  transform: translateY(14px) scale(0.98);
  transition: transform 0.2s;
}
.order-modal.is-open .order-modal__panel { transform: translateY(0) scale(1); }
.order-modal__close { top: 20px; right: 20px; }
.order-modal__head { padding-right: 58px; }
.order-modal__kicker { font-size: 12px; font-weight: 900; letter-spacing: 0.14em; color: var(--pink-glow); }
.order-modal__title { margin-top: 8px; font-size: clamp(30px, 4vw, 48px); line-height: 1; font-weight: 900; }
.order-modal__subtitle { margin-top: 10px; color: #cfc8dc; font-weight: 600; }
.order-steps { display: flex; gap: 10px; margin-top: 26px; margin-bottom: 24px; }
.order-step {
  flex: 1;
  min-width: 0;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 11px 12px;
  border-radius: 12px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  color: #aaa2bb;
  font-size: 13px;
  font-weight: 800;
}
.order-step__num { display: inline-flex; align-items: center; justify-content: center; width: 24px; height: 24px; border-radius: 50%; background: rgba(255,255,255,0.08); color: #fff; flex: 0 0 auto; }
.order-step.is-active { color: #fff; border-color: rgba(226,56,157,0.48); background: rgba(226,56,157,0.14); }
.edition-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 16px; }
.edition-card {
  display: flex;
  flex-direction: column;
  min-height: 265px;
  text-align: left;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 14px;
  padding: 20px;
  background: rgba(255,255,255,0.045);
  cursor: pointer;
  transition: transform 0.16s, border-color 0.2s, background 0.2s;
}
.edition-card:hover, .edition-card.is-selected { transform: translateY(-2px); border-color: var(--pink-glow); background: rgba(226,56,157,0.12); }
.edition-card__top { display: flex; justify-content: space-between; gap: 16px; align-items: flex-start; }
.edition-card__name { font-size: 22px; font-weight: 900; line-height: 1.1; }
.edition-card__price { color: var(--gold); font-size: 22px; font-weight: 900; white-space: nowrap; }
.edition-card__list { margin-top: 18px; display: flex; flex-direction: column; gap: 9px; color: #d0c9dc; font-size: 14px; }
.edition-card__list li { position: relative; padding-left: 18px; }
.edition-card__list li::before { content: ""; position: absolute; left: 0; top: 0.65em; width: 7px; height: 7px; border-radius: 50%; background: var(--pink-glow); box-shadow: 0 0 12px var(--pink-glow); }
.form-grid { display: grid; grid-template-columns: minmax(0, 1.1fr) minmax(280px, 0.9fr); gap: 24px; align-items: start; }
.summary-box, .payment-card {
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,0.1);
  background: rgba(255,255,255,0.045);
  padding: 22px;
}
.summary-box h3, .payment-card h3 { font-size: 22px; margin-bottom: 14px; }
.summary-line { display: flex; justify-content: space-between; gap: 18px; padding: 12px 0; border-bottom: 1px solid rgba(255,255,255,0.07); color: #cdc6db; }
.summary-line:last-child { border-bottom: 0; }
.summary-line strong { color: #fff; text-align: right; }
.option-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; margin-bottom: 18px; }
.choice-btn {
  min-height: 58px;
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,0.12);
  background: rgba(255,255,255,0.05);
  color: #fff;
  font-weight: 900;
  cursor: pointer;
  transition: border-color 0.2s, background 0.2s, transform 0.16s;
}
.choice-btn:hover, .choice-btn.is-selected { transform: translateY(-1px); border-color: var(--pink-glow); background: rgba(226,56,157,0.14); }
.field { display: flex; flex-direction: column; gap: 8px; margin-top: 16px; }
.field label { font-size: 13px; font-weight: 800; color: #dcd7e7; letter-spacing: 0.03em; }
.field input, .field select {
  width: 100%;
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,0.12);
  background: rgba(8,6,14,0.55);
  color: #fff;
  padding: 14px 15px;
  outline: none;
}

/* --- кастомный вид выпадающего списка --- */
.field select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  cursor: pointer;
  padding-right: 46px;
  /* стрелка-шеврон */
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='9' viewBox='0 0 14 9' fill='none'%3E%3Cpath d='M1 1l6 6 6-6' stroke='%23ff52c0' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  background-color: rgba(8,6,14,0.55);
}
.field select option { background: #141020; color: #fff; }

.field input:focus, .field select:focus { border-color: var(--pink-glow); box-shadow: 0 0 0 3px rgba(226,56,157,0.15); }

.field__error { min-height: 18px; color: #ff8fbd; font-size: 12px; font-weight: 700; }
.payment-layout { display: grid; grid-template-columns: minmax(0, 1fr) 340px; gap: 22px; }
.crypto-result {
  margin-top: 18px;
  padding: 18px;
  border-radius: 14px;
  background: rgba(226,56,157,0.1);
  border: 1px solid rgba(226,56,157,0.28);
}
.pay-amount { font-size: 34px; font-weight: 900; color: #fff; line-height: 1; }
.pay-fiat { margin-top: 6px; color: #cfc8dc; }
.wallet-box { margin-top: 16px; }
.wallet-address {
  margin-top: 8px;
  padding: 14px;
  border-radius: 10px;
  background: rgba(0,0,0,0.28);
  border: 1px solid rgba(255,255,255,0.09);
  color: #ffe1f3;
  word-break: break-all;
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: 13px;
}
.copy-row { display: flex; gap: 10px; margin-top: 12px; }
.copy-btn {
  border: 1px solid rgba(255,255,255,0.13);
  background: rgba(255,255,255,0.06);
  border-radius: 10px;
  padding: 11px 14px;
  color: #fff;
  font-weight: 800;
  cursor: pointer;
}
.copy-btn:hover { border-color: var(--pink-glow); }
.timer-card { text-align: center; }
.timer-ring {
  --progress: 360deg;
  width: 170px;
  height: 170px;
  margin: 10px auto 18px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: conic-gradient(var(--pink-glow) var(--progress), rgba(255,255,255,0.08) 0);
  position: relative;
}
.timer-ring::before { content: ""; position: absolute; inset: 12px; border-radius: 50%; background: #141020; box-shadow: inset 0 0 0 1px rgba(255,255,255,0.08); }
.timer-ring span { position: relative; z-index: 1; font-size: 34px; font-weight: 900; }
.timer-note { color: #cfc8dc; font-size: 14px; }
.rate-note { margin-top: 12px; color: var(--muted); font-size: 12px; }

/* ===== RESPONSIVE ===== */
@media (max-width: 1100px) {
  .hero, .lower { grid-template-columns: 1fr; }
  .gallery { grid-template-columns: repeat(2, 1fr); }
  .payment-layout, .form-grid { grid-template-columns: 1fr; }
}
@media (max-width: 720px) {
  .nav, .header__left { gap: 18px; }
  .nav, .icon-btn { display: none; }
  .header__inner, .hero, .lower, .footer { padding-left: 18px; padding-right: 18px; }
  .header__right { gap: 12px; }
  .hero__media { min-height: 660px; }
  .hero__content { padding: 28px; justify-content: flex-end; }
  .gta-logo { gap: 10px; transform: rotate(-2deg) skewX(-3deg) scale(0.86); transform-origin: left bottom; }
  .gta-logo__stack { border-width: 3px; padding: 10px 12px 8px; }
  .gta-logo__line { font-size: 48px; -webkit-text-stroke-width: 2px; }
  .gta-logo__vi { width: 80px; height: 80px; font-size: 46px; border-width: 4px; }
  .hero__sub { letter-spacing: 0.18em; }
  .features { grid-template-columns: 1fr; }
  .info-row { grid-template-columns: 1fr; gap: 4px; }
  .gallery { grid-template-columns: 1fr; }
  .lightbox { padding: 16px; }
  .lightbox__close, .order-modal__close { top: 12px; right: 12px; }
  .order-modal { padding: 12px; }
  .order-modal__panel { padding: 22px 16px; max-height: 94vh; }
  .order-steps { flex-direction: column; }
  .edition-grid, .option-grid { grid-template-columns: 1fr; }
  .edition-card__top { flex-direction: column; gap: 8px; }
  .pay-amount { font-size: 28px; }
    /* выпадающий список оплаты — крупнее и заметнее на телефоне */
  .field select {
    font-size: 17px;          /* >=16px чтобы iOS не зумил */
    font-weight: 800;
    padding: 16px 50px 16px 16px;
    border-color: var(--pink);
    background-color: rgba(226,56,157,0.10);
    background-size: 16px 11px;
    background-position: right 18px center;
  }
  .field select:active { border-color: var(--pink-glow); }
  .payment-hint { display: block; }

}
