/* =========================================================
   MKM GO — PREMIUM SUPPORT STYLE
   Файл: assets/css/style.css
   Под HTML: index.html + assets/js/main.js
   ========================================================= */

/* =========================
   01. VARIABLES / RESET
   ========================= */

:root {
  --bg: #03060b;
  --bg-2: #07111f;
  --panel: #0a111c;
  --panel-2: #0e1b2b;
  --line: rgba(255, 255, 255, 0.10);

  --text: #f4f7fb;
  --muted: #a2adbf;

  --accent: #1f9bff;
  --accent-2: #6bc8ff;
  --gold: #ffd166;
  --green: #72e6a1;
  --red: #ff7d7d;

  --glow: rgba(31, 155, 255, 0.42);
  --shadow: rgba(0, 0, 0, 0.55);

  --display: "Oswald", sans-serif;
  --body: "Manrope", system-ui, sans-serif;
}

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

html {
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;
  overflow-x: hidden;
  background: var(--bg);
  color: var(--text);
  font-family: var(--body);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}

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

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

button,
input,
select {
  font-family: var(--body);
}

button {
  border: none;
}

.wrap {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 28px;
}

.accent {
  color: var(--accent);
}

.gold {
  color: var(--gold);
}

/* =========================
   02. BACKGROUND
   ========================= */

.aurora {
  position: fixed;
  inset: 0;
  z-index: -2;
  overflow: hidden;
  background:
    radial-gradient(circle at 18% 0%, rgba(31, 155, 255, .16), transparent 36%),
    radial-gradient(circle at 90% 18%, rgba(31, 155, 255, .10), transparent 34%),
    linear-gradient(180deg, #03060b 0%, #06101c 40%, #020306 100%);
}

.aurora::before,
.aurora::after {
  content: "";
  position: absolute;
  border-radius: 999px;
  filter: blur(120px);
  opacity: .48;
}

.aurora::before {
  width: 58vw;
  height: 58vw;
  left: -18vw;
  top: -22vh;
  background: radial-gradient(circle, rgba(31, 155, 255, .34), transparent 65%);
  animation: drift1 18s ease-in-out infinite;
}

.aurora::after {
  width: 50vw;
  height: 50vw;
  right: -16vw;
  bottom: -10vh;
  background: radial-gradient(circle, rgba(255, 209, 102, .11), transparent 66%);
  animation: drift2 22s ease-in-out infinite;
}

@keyframes drift1 {
  0%, 100% { transform: translate(0, 0); }
  50% { transform: translate(7vw, 5vh); }
}

@keyframes drift2 {
  0%, 100% { transform: translate(0, 0); }
  50% { transform: translate(-7vw, -6vh); }
}

.grain {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  opacity: .035;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='2'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* =========================
   03. ANIMATION HELPERS
   ========================= */

.reveal {
  opacity: 0;
  transform: translateY(42px);
  transition:
    opacity .9s cubic-bezier(.16, 1, .3, 1),
    transform .9s cubic-bezier(.16, 1, .3, 1);
}

.reveal.in {
  opacity: 1;
  transform: none;
}

.d1 { transition-delay: .08s; }
.d2 { transition-delay: .16s; }
.d3 { transition-delay: .24s; }
.d4 { transition-delay: .32s; }

/* =========================
   04. HEADER
   ========================= */

header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 60;
  border-bottom: 1px solid transparent;
  transition: background .35s, backdrop-filter .35s, border-color .35s;
}

header.scrolled {
  background: rgba(3, 6, 11, .82);
  border-bottom-color: var(--line);
  backdrop-filter: blur(16px);
}

.nav {
  height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--display);
  font-size: 23px;
  font-weight: 700;
  letter-spacing: 2px;
  white-space: nowrap;
}

.brand .mark {
  width: 32px;
  height: 32px;
  display: grid;
  place-items: center;
  border: 2px solid var(--accent);
  border-radius: 50%;
  color: var(--accent);
  font-size: 12px;
  box-shadow: 0 0 18px var(--glow);
}

.brand b {
  color: var(--accent);
}

.menu {
  display: flex;
  align-items: center;
  gap: 28px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 800;
}

.menu a {
  position: relative;
  transition: color .2s;
}

.menu a:hover {
  color: var(--text);
}

.menu a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -7px;
  width: 0;
  height: 2px;
  background: var(--accent);
  transition: width .25s;
}

.menu a:hover::after {
  width: 100%;
}

.nav-right {
  display: flex;
  align-items: center;
  gap: 14px;
}

.city {
  color: var(--muted);
  font-size: 13px;
}

.city b {
  color: var(--text);
  border-bottom: 1px dashed var(--muted);
}

.cta {
  position: relative;
  overflow: hidden;
  cursor: pointer;
  padding: 12px 22px;
  border: 1px solid var(--accent);
  border-radius: 10px;
  background: transparent;
  color: var(--accent);
  font-family: var(--display);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  transition: all .25s;
}

.cta:hover {
  transform: translateY(-1px);
  background: var(--accent);
  color: #03101d;
  box-shadow: 0 0 30px var(--glow);
}

.cta.fill {
  border-color: transparent;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  color: #03101d;
}

/* =========================
   05. SIDE NAV
   ========================= */

.rail-left {
  position: fixed;
  left: 18px;
  top: 50%;
  z-index: 40;
  transform: translateY(-50%) rotate(180deg);
  writing-mode: vertical-rl;
  color: var(--muted);
  font-size: 11px;
  letter-spacing: 4px;
  text-transform: uppercase;
}

.dots {
  position: fixed;
  right: 22px;
  top: 50%;
  z-index: 40;
  display: flex;
  flex-direction: column;
  gap: 14px;
  transform: translateY(-50%);
}

.dots button {
  width: 9px;
  height: 9px;
  padding: 0;
  cursor: pointer;
  border: 1px solid rgba(255, 255, 255, .25);
  border-radius: 50%;
  background: transparent;
  transition: all .25s;
}

.dots button.active {
  border-color: var(--accent);
  background: var(--accent);
  box-shadow: 0 0 12px var(--glow);
}

/* =========================
   06. HERO
   ========================= */

.hero {
  position: relative;
  min-height: 100vh;
  padding: 125px 0 50px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.h-center {
  text-align: center;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin: 0 auto 24px;
  color: var(--accent);
  font-family: var(--display);
  font-size: 13px;
  letter-spacing: 5px;
  text-transform: uppercase;
}

.eyebrow .ln {
  width: 42px;
  height: 1px;
  background: var(--accent);
}

h1 {
  font-family: var(--display);
  font-size: clamp(44px, 8.7vw, 122px);
  font-weight: 700;
  line-height: .95;
  letter-spacing: 1px;
  text-transform: uppercase;
}

h1 .l2 {
  color: var(--accent);
  text-shadow: 0 0 42px var(--glow);
}

.hero-sub {
  max-width: 760px;
  margin: 26px auto 0;
  color: var(--muted);
  font-size: clamp(15px, 1.6vw, 18px);
}

.hero-actions {
  display: flex;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 30px;
}

.hero-car {
  position: relative;
  max-width: 980px;
  margin: -1vw auto 0;
  will-change: transform;
}

.hero-car img {
  width: 100%;
  filter: drop-shadow(0 50px 60px rgba(0, 0, 0, .82));
}

.hero-car::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 6%;
  z-index: -1;
  width: 70%;
  height: 60px;
  transform: translateX(-50%);
  background: radial-gradient(ellipse, var(--glow), transparent 70%);
  filter: blur(20px);
}

.specs {
  display: flex;
  justify-content: center;
  gap: clamp(24px, 5vw, 70px);
  flex-wrap: wrap;
  margin-top: 14px;
}

.spec {
  min-width: 120px;
  text-align: center;
}

.spec .num {
  color: #fff;
  font-family: var(--display);
  font-size: clamp(30px, 4vw, 50px);
  font-weight: 600;
  line-height: 1;
}

.spec .num .u {
  margin-left: 4px;
  color: var(--accent);
  font-size: .45em;
}

.spec .lbl {
  margin-top: 8px;
  color: var(--muted);
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
}

/* =========================
   07. COMMON SECTIONS
   ========================= */

.section {
  position: relative;
  padding: clamp(78px, 11vh, 135px) 0;
}

.kicker {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 18px;
  color: var(--accent);
  font-family: var(--display);
  font-size: 14px;
  letter-spacing: 4px;
  text-transform: uppercase;
}

.kicker .no {
  color: var(--muted);
  font-size: 13px;
}

h2 {
  font-family: var(--display);
  font-size: clamp(32px, 5vw, 64px);
  font-weight: 600;
  line-height: 1;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.lead {
  max-width: 820px;
  margin-top: 18px;
  color: var(--muted);
  font-size: 17px;
}

/* =========================
   08. SUPPORT / PAYMENT
   ========================= */

.support-card {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 34px;
  align-items: stretch;
  margin-top: 54px;
}

.pay-box,
.impact-box,
.form {
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: linear-gradient(180deg, rgba(255, 255, 255, .045), rgba(255, 255, 255, .015));
  box-shadow: 0 24px 80px rgba(0, 0, 0, .22);
}

.pay-title {
  margin-bottom: 10px;
  font-family: var(--display);
  font-size: 34px;
  line-height: 1.05;
  text-transform: uppercase;
}

.pay-text {
  margin-bottom: 22px;
  color: var(--muted);
  font-size: 15px;
}

.amounts {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  margin-bottom: 18px;
}

.amount {
  cursor: pointer;
  padding: 14px 10px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: #08101b;
  color: var(--text);
  font-weight: 900;
  transition: all .2s;
}

.amount:hover,
.amount.active {
  border-color: var(--accent);
  background: rgba(31, 155, 255, .12);
  box-shadow: 0 0 0 3px rgba(31, 155, 255, .08);
}

.pay-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-bottom: 14px;
}

.pay-field input {
  width: 100%;
  padding: 14px 14px;
  border: 1px solid var(--line);
  border-radius: 14px;
  outline: none;
  background: #070e18;
  color: var(--text);
  font-size: 15px;
}

.pay-field input:focus {
  border-color: var(--accent);
}

.tbank-btn {
  width: 100%;
  margin-top: 10px;
  cursor: pointer;
  padding: 17px 22px;
  border-radius: 16px;
  background: linear-gradient(135deg, #ffd429, #f5b400);
  color: #181200;
  font-size: 16px;
  font-weight: 900;
  transition: transform .2s, box-shadow .2s;
}

.tbank-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 22px 50px -22px #ffd429;
}

.pay-note {
  margin-top: 12px;
  color: var(--muted);
  font-size: 12.5px;
  line-height: 1.6;
}

.impact-list {
  display: grid;
  gap: 14px;
  margin-top: 18px;
}

.impact {
  display: flex;
  align-items: flex-start;
  gap: 13px;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(255, 255, 255, .025);
}

.impact .ic {
  width: 38px;
  height: 38px;
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  border-radius: 14px;
  background: rgba(31, 155, 255, .12);
  font-size: 20px;
}

.impact b {
  display: block;
  margin-bottom: 3px;
}

.impact span {
  display: block;
  color: var(--muted);
  font-size: 13px;
}

/* =========================
   09. GIFTS GRID — FINAL DESIGN
   Фото остаются тёмными, текст читаемый,
   количество призов видно в каждой карточке.
   Кнопок "Подробнее" нет.
   ========================= */

.gift-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
  margin-top: 44px;
}

.gift {
  position: relative;
  min-height: 300px;
  overflow: hidden;
  padding: 0;
  border: 1px solid rgba(100, 180, 255, .22);
  border-radius: 18px;
  background: #05070d;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, .025);
  transition: transform .25s ease, border-color .25s ease, box-shadow .25s ease;
}

.gift.big {
  grid-column: span 2;
  min-height: 310px;
}

.gift:hover {
  transform: translateY(-4px);
  border-color: rgba(31, 155, 255, .55);
  box-shadow: 0 24px 60px rgba(0, 0, 0, .36);
}

.gift::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  background:
    linear-gradient(
      90deg,
      rgba(0,0,0,.28) 0%,
      rgba(0,0,0,.12) 35%,
      rgba(0,0,0,0) 100%
    );
}

.gift::after {
  content: "";
  position: absolute;
  inset: auto 0 0 0;
  z-index: 3;
  height: 28%;
  background: linear-gradient(
    180deg,
    transparent,
    rgba(0,0,0,.35)
  );
}

.gift-media {
  position: absolute;
  inset: 0;
  z-index: 1;
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
  border-radius: 0;
  overflow: hidden;
  background: #05070d;
}

.gift-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter:
    brightness(1.08)
    saturate(1.15)
    contrast(1.05);
}

.gift:hover .gift-media img {
  transform: scale(1.04);
}

.gift .qty,
.gift h3,
.gift p {
  position: absolute;
  z-index: 4;
  left: 24px;
  right: 24px;
  text-shadow: 0 4px 18px rgba(0, 0, 0, .95);
}

.gift .qty {
  bottom: 128px;
  color: var(--accent);
  font-family: var(--display);
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 2px;
  line-height: 1;
  text-transform: uppercase;
}

.gift h3 {
  bottom: 66px;
  margin: 0;
  color: #fff;
  font-family: var(--display);
  font-size: 40px;
  font-weight: 700;
  line-height: .95;
  text-transform: uppercase;
}

.gift p {
  bottom: 22px;
  max-width: 310px;
  color: rgba(244, 247, 251, .86);
  font-size: 14px;
  line-height: 1.42;
}

.gift.big .qty {
  bottom: 138px;
  left: 28px;
}

.gift.big h3 {
  bottom: 72px;
  left: 28px;
  font-size: 58px;
  line-height: .92;
}

.gift.big p {
  bottom: 26px;
  left: 28px;
  max-width: 360px;
  font-size: 15px;
}

/* Коррекция длинных названий в маленьких карточках */
.gift:nth-child(3) h3,
.gift:nth-child(4) h3,
.gift:nth-child(6) h3 {
  font-size: 35px;
  line-height: .94;
}

/* PlayStation ниже */
.gift:nth-child(3) .qty {
  bottom: 112px;
}

/* Учёба выше */
.gift:nth-child(4) .qty {
  bottom: 175px;
}

/* Хадж ниже */
.gift:nth-child(5) .qty {
  bottom: 112px;
}

/* Бонусы ниже */
.gift:nth-child(6) .qty {
  bottom: 112px;
}

/* Коррекция заголовков */

.gift:nth-child(3) h3 {
  bottom: 70px;
}

.gift:nth-child(4) h3 {
  bottom: 96px;
}

.gift:nth-child(5) h3 {
  bottom: 70px;
}

.gift:nth-child(6) h3 {
  bottom: 70px;
}

/* =========================
   10. CARS PRIZES
   ========================= */

.prize {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
  margin-top: 60px;
}

.prize.flip .prize-media {
  order: 2;
}

.prize-media {
  position: relative;
}

.prize-media .ph {
  position: absolute;
  top: -14%;
  left: -4%;
  z-index: 0;
  color: rgba(255, 255, 255, .045);
  font-family: var(--display);
  font-size: clamp(90px, 16vw, 230px);
  font-weight: 700;
  letter-spacing: -4px;
}

.prize-media img {
  position: relative;
  z-index: 1;
  width: 100%;
  filter: drop-shadow(0 42px 52px rgba(0, 0, 0, .74));
  animation: float 7s ease-in-out infinite;
}

.prize-media::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 4%;
  z-index: 0;
  width: 74%;
  height: 50px;
  transform: translateX(-50%);
  background: radial-gradient(ellipse, var(--glow), transparent 70%);
  filter: blur(22px);
}

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

.prize-tag {
  color: var(--accent);
  font-family: var(--display);
  font-size: 13px;
  letter-spacing: 3px;
  text-transform: uppercase;
}

.prize h3 {
  margin: 12px 0 16px;
  font-family: var(--display);
  font-size: clamp(34px, 5vw, 68px);
  font-weight: 700;
  line-height: 1;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.prize p {
  max-width: 480px;
  color: var(--muted);
  font-size: 16px;
}

.chips {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 24px;
}

.chips span {
  padding: 9px 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, .02);
  color: var(--text);
  font-family: var(--display);
  font-size: 13px;
  letter-spacing: 1px;
  text-transform: uppercase;
}

/* =========================
   11. STEPS
   ========================= */

.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 60px;
}

.step {
  padding: 34px 28px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: linear-gradient(180deg, rgba(255, 255, 255, .035), transparent);
  transition: transform .35s, border-color .35s;
}

.step:hover {
  transform: translateY(-8px);
  border-color: rgba(31, 155, 255, .4);
}

.step .n {
  color: var(--accent);
  font-family: var(--display);
  font-size: 60px;
  font-weight: 700;
  line-height: 1;
  opacity: .9;
}

.step h4 {
  margin: 14px 0 10px;
  font-family: var(--display);
  font-size: 20px;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.step p {
  color: var(--muted);
  font-size: 15px;
}

/* =========================
   12. COUNTER BAND
   ========================= */

.band {
  padding: clamp(70px, 10vh, 110px) 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: linear-gradient(90deg, transparent, rgba(31, 155, 255, .06), transparent);
  text-align: center;
}

.band .big {
  color: #fff;
  font-family: var(--display);
  font-size: clamp(68px, 15vw, 180px);
  font-weight: 700;
  line-height: .9;
  text-shadow: 0 0 50px var(--glow);
}

.band .cap {
  margin-top: 10px;
  color: var(--accent);
  font-family: var(--display);
  font-size: 14px;
  letter-spacing: 6px;
  text-transform: uppercase;
}

/* =========================
   13. REGISTRATION FORM
   ========================= */

.reg {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  margin-top: 50px;
}

.reg-media {
  position: relative;
}

.reg-media img {
  width: 100%;
  filter: drop-shadow(0 40px 50px rgba(0, 0, 0, .7));
}

.reg-media::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 8%;
  z-index: -1;
  width: 70%;
  height: 50px;
  transform: translateX(-50%);
  background: radial-gradient(ellipse, var(--glow), transparent 70%);
  filter: blur(22px);
}

.form .field {
  position: relative;
  margin-bottom: 22px;
}

.form input[type="text"],
.form input[type="tel"],
.form input[type="email"] {
  width: 100%;
  padding: 12px 2px;
  border: none;
  border-bottom: 1px solid var(--line);
  outline: none;
  background: transparent;
  color: var(--text);
  font-family: var(--body);
  font-size: 16px;
  transition: border-color .25s;
}

.form input::placeholder {
  color: transparent;
}

.form label:not(.agree) {
  position: absolute;
  left: 2px;
  top: 12px;
  pointer-events: none;
  color: var(--muted);
  font-size: 16px;
  transition: all .2s;
}

.form input:focus + label,
.form input:not(:placeholder-shown) + label {
  top: -12px;
  color: var(--accent);
  font-size: 12px;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.form input:focus {
  border-bottom-color: var(--accent);
}

.agree {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin: 6px 0 22px;
  color: var(--muted);
  font-size: 13px;
}

.agree input {
  margin-top: 3px;
  accent-color: var(--accent);
}

.submit {
  width: 100%;
  cursor: pointer;
  padding: 16px 40px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  color: #04121f;
  font-family: var(--display);
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  transition: transform .2s, box-shadow .2s;
}

.submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 40px -14px var(--glow);
}

.submit:disabled {
  cursor: default;
  opacity: .6;
}

.form-msg {
  min-height: 20px;
  margin-top: 16px;
  font-size: 14px;
}

.form-msg.ok { color: #74e0a3; }
.form-msg.err { color: #ff8d8d; }

.ticket-box {
  display: none;
  margin-top: 20px;
  padding: 20px;
  border: 1px dashed var(--accent);
  border-radius: 16px;
  background: rgba(31, 155, 255, .06);
  text-align: center;
}

.ticket-label {
  margin-bottom: 8px;
  color: var(--muted);
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.ticket-box .t {
  color: var(--accent);
  font-family: var(--display);
  font-size: 30px;
  font-weight: 700;
  letter-spacing: 2px;
}

/* =========================
   14. FOOTER
   ========================= */

footer {
  padding: 60px 0 40px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 13px;
}

.foot-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
  margin-bottom: 26px;
}

.footer-links {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}

.legal {
  max-width: 900px;
  margin: 0 auto;
  font-size: 12.5px;
  line-height: 1.7;
  text-align: center;
}

.center-copy {
  margin-top: 18px;
  text-align: center;
}

/* =========================
   15. RESPONSIVE
   ========================= */

@media (max-width: 1100px) {
  .gift-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .gift,
  .gift.big {
    grid-column: span 1;
    min-height: 320px;
  }

  .support-card {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 900px) {
  .menu,
  .city,
  .rail-left,
  .dots {
    display: none;
  }

  .prize,
  .reg {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .prize.flip .prize-media {
    order: 0;
  }

  .reg-media {
    order: -1;
  }

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

  .hero {
    min-height: auto;
    padding-top: 110px;
  }

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

@media (max-width: 620px) {
  .wrap {
    padding: 0 18px;
  }

  .nav {
    height: 70px;
  }

  .brand {
    font-size: 20px;
  }

  .nav-right .cta {
    display: none;
  }

  .hero-actions .cta {
    width: 100%;
    text-align: center;
  }

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

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

  .gift,
  .gift.big {
    min-height: 320px;
  }

  .gift .qty,
  .gift.big .qty {
    left: 22px;
    right: 22px;
    bottom: 126px;
  }

  .gift h3,
  .gift.big h3 {
    left: 22px;
    right: 22px;
    bottom: 66px;
    font-size: 34px;
  }

  .gift p,
  .gift.big p {
    left: 22px;
    right: 22px;
    bottom: 22px;
    font-size: 14px;
  }

  .pay-box,
  .impact-box,
  .form {
    padding: 22px;
  }
}