/* neoПРОКАТ — самостоятельный статический сайт, никак не связан с rental_store */

:root {
  --bg: #0c0f0d;
  --surface: #141a15;
  --surface-2: #1b2419;
  --border: #283529;
  --text: #eef5ec;
  --text-dim: #a9bfa9;
  --text-faint: #6f8a70;
  --violet: #a855f7;
  --green: #22c55e;
  --lime: #a3e635;
  --gradient: linear-gradient(120deg, var(--violet) 0%, var(--violet) 45%, var(--green) 75%, var(--lime) 100%);
  --radius: 6px;
  --shadow-glow: 0 0 70px rgba(168, 85, 247, 0.2);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: "Manrope", "Segoe UI", sans-serif;
  line-height: 1.5;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
.wrap { max-width: 1160px; margin: 0 auto; padding: 0 24px; }

h1, h2, h3, .brand-word {
  font-family: "Chakra Petch", "Arial Narrow", sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  font-weight: 600;
  margin: 0;
}
.brand-word { text-transform: none; }

a { color: inherit; }

/* ---------- header ---------- */

.site-header { position: sticky; top: 0; z-index: 40; background: rgba(12, 15, 13, 0.9); backdrop-filter: blur(10px); border-bottom: 1px solid var(--border); }
.site-header .wrap { display: flex; align-items: center; justify-content: space-between; height: 76px; }

.brand { display: flex; align-items: center; gap: 10px; font-size: 1.3rem; text-decoration: none; color: var(--text); }
.brand-mark {
  width: 34px; height: 34px; border-radius: 8px;
  background: var(--gradient);
  display: grid; place-items: center;
  font-family: "Chakra Petch", sans-serif; font-weight: 700; color: #0c0f0d;
  flex-shrink: 0;
}

nav.main-nav { display: flex; gap: 28px; font-size: 0.92rem; color: var(--text-dim); }
nav.main-nav a { text-decoration: none; transition: color 0.15s; }
nav.main-nav a:hover { color: var(--violet); }

.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 13px 26px; border-radius: var(--radius);
  font-family: "Chakra Petch", sans-serif; font-weight: 700; text-transform: uppercase; letter-spacing: 0.03em;
  font-size: 0.88rem; text-decoration: none; cursor: pointer; border: none;
  transition: transform 0.15s, box-shadow 0.15s, filter 0.15s;
}
.btn-primary { background: var(--gradient); color: #0c0f0d; box-shadow: 0 10px 30px -8px rgba(168, 85, 247, 0.5); }
.btn { transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.35s ease, filter 0.15s; }
.btn-primary:hover { filter: brightness(1.1); transform: translateY(-3px) scale(1.02); box-shadow: 0 16px 36px -10px rgba(168, 85, 247, 0.6); }
.btn-ghost { background: transparent; color: var(--text); border: 1px solid var(--border); }
.btn-ghost:hover { border-color: var(--violet); color: var(--violet); }

.nav-toggle { display: none; background: none; border: 1px solid var(--border); border-radius: 6px; width: 42px; height: 42px; color: var(--text); font-size: 1.1rem; }

/* ---------- hero ---------- */

.hero {
  position: relative; padding: 96px 0 88px;
  background:
    radial-gradient(ellipse 900px 500px at 12% -10%, rgba(168, 85, 247, 0.28), transparent 60%),
    radial-gradient(ellipse 700px 500px at 100% 12%, rgba(34, 197, 94, 0.2), transparent 55%);
  border-bottom: 1px solid var(--border);
  overflow: hidden;
}
.hero::before, .hero::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  filter: blur(70px);
  pointer-events: none;
  z-index: 0;
}
.hero::before {
  width: 360px; height: 360px;
  top: -120px; left: 6%;
  background: radial-gradient(circle, rgba(168, 85, 247, 0.4), transparent 70%);
  animation: orb-float-a 17s ease-in-out infinite;
}
.hero::after {
  width: 280px; height: 280px;
  bottom: -100px; right: 10%;
  background: radial-gradient(circle, rgba(34, 197, 94, 0.22), transparent 70%);
  animation: orb-float-b 21s ease-in-out infinite;
}
@keyframes orb-float-a {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(-32px, 36px) scale(1.1); }
}
@keyframes orb-float-b {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(26px, -30px) scale(1.08); }
}
.hero-grid { position: relative; z-index: 1; display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 56px; align-items: center; }

.eyebrow { display: inline-flex; align-items: center; gap: 8px; color: var(--violet); font-family: "Chakra Petch", sans-serif; text-transform: uppercase; font-size: 0.8rem; letter-spacing: 0.14em; margin-bottom: 18px; }
.eyebrow::before { content: ""; width: 22px; height: 2px; background: var(--gradient); }

.hero h1 { font-size: clamp(2.4rem, 4.6vw, 3.7rem); line-height: 1.04; }
.hero h1 .accent { background: var(--gradient); -webkit-background-clip: text; background-clip: text; color: transparent; }
.hero p.lead { margin: 24px 0 34px; color: var(--text-dim); font-size: 1.08rem; max-width: 46ch; }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }

.hero-stats { display: flex; gap: 32px; margin-top: 48px; padding-top: 28px; border-top: 1px solid var(--border); }
.hero-stats .stat b { display: block; font-family: "Chakra Petch", sans-serif; font-size: 1.6rem; color: var(--lime); }
.hero-stats .stat span { font-size: 0.82rem; color: var(--text-faint); }

/* ---------- hero visual: вращающийся объект с неоновой разверткой ---------- */

.hero-visual {
  position: relative; aspect-ratio: 1 / 1.05; border-radius: 18px;
  background: var(--surface); border: 1px solid var(--border);
  overflow: hidden; display: grid; place-items: center;
  box-shadow: var(--shadow-glow);
  perspective: 900px;
}
.hero-visual::before {
  content: ""; position: absolute; inset: -40%;
  background: conic-gradient(from 180deg, var(--violet) 0%, var(--violet) 45%, var(--green) 70%, var(--violet) 100%);
  opacity: 0.18; filter: blur(60px); animation: spin 15s linear infinite;
}
.hero-visual::after {
  /* бегущая неоновая линия-развёртка поверх объекта */
  content: "";
  position: absolute;
  left: 8%; right: 8%; height: 2px;
  background: linear-gradient(90deg, transparent, var(--lime), transparent);
  box-shadow: 0 0 16px 2px var(--lime);
  animation: scan 3.2s ease-in-out infinite;
  z-index: 2;
}
@keyframes spin { to { transform: rotate(360deg); } }
@keyframes scan {
  0%, 100% { top: 14%; opacity: 0; }
  10% { opacity: 1; }
  50% { top: 86%; opacity: 1; }
  90% { opacity: 1; }
}
.hero-visual .glyph {
  position: relative;
  font-size: 7.2rem;
  transform-style: preserve-3d;
  animation: rotate3d 7s linear infinite, glow-pulse 2.4s ease-in-out infinite;
}
.hero-visual .glyph-img {
  position: relative;
  width: 66%;
  max-width: 300px;
  object-fit: contain;
  transform-style: preserve-3d;
  animation: rotate3d 7s linear infinite, glow-pulse 2.4s ease-in-out infinite;
}
@keyframes rotate3d {
  0% { transform: rotateY(0deg); }
  100% { transform: rotateY(360deg); }
}
@keyframes glow-pulse {
  0%, 100% { filter: drop-shadow(0 0 18px rgba(34, 197, 94, 0.55)) drop-shadow(0 10px 30px rgba(0,0,0,0.5)); }
  50% { filter: drop-shadow(0 0 34px rgba(168, 85, 247, 0.75)) drop-shadow(0 10px 30px rgba(0,0,0,0.5)); }
}

/* ---------- sections ---------- */

section { padding: 92px 0; }
.section-head { display: flex; align-items: flex-end; justify-content: space-between; gap: 24px; margin-bottom: 44px; flex-wrap: wrap; }
.section-head h2 { font-size: clamp(1.7rem, 3vw, 2.3rem); }
.section-head p { color: var(--text-dim); max-width: 46ch; margin: 10px 0 0; }

/* ---------- как это работает ---------- */

.steps-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; counter-reset: step; }
.step-card { position: relative; padding: 30px 24px 26px; border-radius: 10px; background: var(--surface); border: 1px solid var(--border); }
.step-card .step-num {
  font-family: "Chakra Petch", sans-serif; font-size: 2.6rem; font-weight: 700;
  background: var(--gradient); -webkit-background-clip: text; background-clip: text; color: transparent;
  line-height: 1; margin-bottom: 14px; display: block;
}
.step-card h3 { font-size: 1.05rem; margin-bottom: 8px; text-transform: none; }
.step-card p { color: var(--text-dim); font-size: 0.9rem; margin: 0; }

/* ---------- catalog: список строк вместо сетки карточек ---------- */

.catalog-list { display: flex; flex-direction: column; gap: 14px; }
.list-item {
  display: grid; grid-template-columns: 56px 1fr auto auto; gap: 20px; align-items: center;
  background: var(--surface); border: 1px solid var(--border); border-radius: 10px;
  padding: 18px 22px; transition: border-color 0.2s;
  position: relative;
}
.list-item:hover { border-color: rgba(168, 85, 247, 0.5); }
.list-item .glyph { font-size: 2rem; }
.list-item .glyph-img { width: 56px; height: 56px; object-fit: contain; }
.list-item .list-body h3 { font-size: 1.05rem; margin-bottom: 3px; text-transform: none; }
.list-item .list-body .spec { color: var(--text-faint); font-size: 0.85rem; }
.list-item .tag {
  font-family: "Chakra Petch", sans-serif; font-size: 0.66rem; letter-spacing: 0.06em; text-transform: uppercase;
  padding: 4px 9px; border-radius: 20px; background: rgba(163, 230, 53, 0.14); color: var(--lime);
  border: 1px solid rgba(163, 230, 53, 0.35); justify-self: start;
}
.list-item .price { font-family: "Chakra Petch", sans-serif; font-size: 1.3rem; color: var(--text); white-space: nowrap; }
.list-item .price span { font-size: 0.74rem; color: var(--text-faint); font-family: "Manrope", sans-serif; }
.list-item .book-link {
  font-size: 0.82rem; color: var(--violet); text-decoration: none; font-weight: 600;
  border: 1px solid var(--border); border-radius: 6px; padding: 8px 14px; white-space: nowrap;
}
.list-item .book-link:hover { border-color: var(--violet); }

.why-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 22px; }
.why-card { padding: 30px 26px; border-radius: 14px; background: var(--surface-2); border: 1px solid var(--border); }
.why-card .glyph { font-size: 2rem; margin-bottom: 14px; display: inline-block; }
.why-card h3 { font-size: 1.1rem; margin-bottom: 8px; text-transform: none; }
.why-card p { color: var(--text-dim); font-size: 0.9rem; margin: 0; }

.cities-band { background: var(--surface); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.cities-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }
.city-card { padding: 24px; border-radius: 12px; background: var(--surface-2); border: 1px solid var(--border); display: flex; justify-content: space-between; align-items: center; }
.city-card h3 { font-size: 1.05rem; margin-bottom: 6px; }
.city-card p { margin: 0; color: var(--text-faint); font-size: 0.85rem; }
.city-card .pulse { width: 10px; height: 10px; border-radius: 50%; background: var(--violet); box-shadow: 0 0 0 4px rgba(168,85,247,0.18); }

.order-shell { background: var(--surface); border: 1px solid var(--border); border-radius: 18px; padding: 48px; display: grid; grid-template-columns: 1fr 1fr; gap: 48px; }
.order-shell h2 { font-size: 1.8rem; margin-bottom: 12px; }
.order-shell p.lead { color: var(--text-dim); margin: 0 0 26px; max-width: 40ch; }

.contact-line { display: flex; gap: 12px; align-items: center; padding: 12px 0; border-top: 1px solid var(--border); font-size: 0.94rem; }
.contact-line:first-of-type { border-top: none; }
.contact-line .glyph { color: var(--violet); width: 20px; text-align: center; }

form.order-form { display: flex; flex-direction: column; gap: 14px; }
form.order-form input, form.order-form select {
  width: 100%; padding: 13px 14px; border-radius: 8px; border: 1px solid var(--border);
  background: var(--surface-2); color: var(--text); font-family: inherit; font-size: 0.95rem;
}
form.order-form input::placeholder { color: var(--text-faint); }
form.order-form input:focus, form.order-form select:focus { outline: none; border-color: var(--violet); }
form.order-form .btn { margin-top: 6px; }
.form-note { font-size: 0.78rem; color: var(--text-faint); margin: 4px 0 0; }
.form-success {
  opacity: 0; max-height: 0; margin-top: 0; padding: 0 16px; border-radius: 8px;
  background: rgba(168, 85, 247, 0.1); border: 1px solid transparent; color: var(--lime);
  font-size: 0.9rem; overflow: hidden; transform: translateX(-8px);
  transition: opacity 0.35s ease, transform 0.35s ease, max-height 0.4s ease, margin-top 0.35s ease, padding 0.35s ease, border-color 0.35s ease;
}
.form-success.visible { opacity: 1; max-height: 200px; margin-top: 14px; padding: 14px 16px; border-color: rgba(168, 85, 247, 0.35); transform: translateX(0); }

footer { border-top: 1px solid var(--border); padding: 44px 0 34px; }
.footer-grid { display: flex; justify-content: space-between; align-items: flex-start; gap: 24px; flex-wrap: wrap; }
footer .brand { margin-bottom: 10px; }
footer .foot-note { color: var(--text-faint); font-size: 0.82rem; max-width: 40ch; }
footer .foot-links { display: flex; gap: 20px; font-size: 0.85rem; color: var(--text-dim); }
footer .foot-links a { text-decoration: none; }
footer .foot-links a:hover { color: var(--violet); }
.footer-bottom { margin-top: 34px; padding-top: 20px; border-top: 1px solid var(--border); font-size: 0.78rem; color: var(--text-faint); }

/* ---------- анимации и переходы ---------- */

/* название-вывеска в хедере: неоновая табличка целиком мигает и загорается при загрузке */
.site-header .brand-sign {
  position: relative;
  display: inline-flex;
  align-items: center;
  padding: 5px 16px;
  border-radius: 999px;
  border: 2px solid var(--violet);
  background: rgba(168, 85, 247, 0.07);
  opacity: 0.25;
  animation: neon-sign-on 2.6s ease-in-out 0.2s 1 both;
}
.site-header .brand-word .ltr { display: inline-block; }
.site-header .brand-word .ltr.c1 { color: var(--violet); text-shadow: 0 0 5px var(--violet), 0 0 14px rgba(168, 85, 247, 0.75); }
.site-header .brand-word .ltr.c2 { color: var(--green); text-shadow: 0 0 5px var(--green), 0 0 14px rgba(34, 197, 94, 0.75); }
.site-header .brand-word .ltr.c3 { color: var(--lime); text-shadow: 0 0 5px var(--lime), 0 0 14px rgba(163, 230, 53, 0.75); }
.site-header .brand-word .ltr.c4 { color: var(--text); text-shadow: 0 0 5px rgba(255, 255, 255, 0.9), 0 0 14px rgba(255, 255, 255, 0.45); }
@keyframes neon-sign-on {
  0%   { opacity: 0.25; box-shadow: none; }
  3%   { opacity: 1; box-shadow: 0 0 8px rgba(168, 85, 247, 0.6), 0 0 20px rgba(168, 85, 247, 0.4), inset 0 0 10px rgba(163, 230, 53, 0.2); }
  6%   { opacity: 0.3; box-shadow: none; }
  9%   { opacity: 1; box-shadow: 0 0 8px rgba(168, 85, 247, 0.6), 0 0 20px rgba(168, 85, 247, 0.4), inset 0 0 10px rgba(163, 230, 53, 0.2); }
  12%  { opacity: 0.35; box-shadow: none; }
  15%  { opacity: 1; box-shadow: 0 0 8px rgba(168, 85, 247, 0.6), 0 0 20px rgba(168, 85, 247, 0.4), inset 0 0 10px rgba(163, 230, 53, 0.2); }
  18%  { opacity: 0.4; box-shadow: none; }
  21%  { opacity: 1; box-shadow: 0 0 8px rgba(168, 85, 247, 0.6), 0 0 20px rgba(168, 85, 247, 0.4), inset 0 0 10px rgba(163, 230, 53, 0.2); }
  24%, 27% { opacity: 0.3; box-shadow: none; }
  30%  { opacity: 1; box-shadow: 0 0 8px rgba(168, 85, 247, 0.6), 0 0 20px rgba(168, 85, 247, 0.4), inset 0 0 10px rgba(163, 230, 53, 0.2); }
  33%  { opacity: 0.75; }
  36%, 100% {
    opacity: 1;
    box-shadow: 0 0 10px rgba(168, 85, 247, 0.7), 0 0 26px rgba(168, 85, 247, 0.5),
      0 0 44px rgba(34, 197, 94, 0.22), inset 0 0 12px rgba(163, 230, 53, 0.28);
  }
}

.hero-grid > div:first-child > * {
  opacity: 0;
  animation: hero-slide 0.7s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}
.hero-grid > div:first-child > *:nth-child(1) { animation-delay: 0.02s; }
.hero-grid > div:first-child > *:nth-child(2) { animation-delay: 0.1s; }
.hero-grid > div:first-child > *:nth-child(3) { animation-delay: 0.18s; }
.hero-grid > div:first-child > *:nth-child(4) { animation-delay: 0.26s; }
.hero-grid > div:first-child > *:nth-child(5) { animation-delay: 0.34s; }
@keyframes hero-slide {
  from { opacity: 0; transform: translateX(-24px); }
  to { opacity: 1; transform: translateX(0); }
}
.hero-visual {
  opacity: 0;
  animation: hero-pop-rotate 0.9s cubic-bezier(0.34, 1.56, 0.64, 1) 0.2s forwards;
}
@keyframes hero-pop-rotate {
  from { opacity: 0; transform: scale(0.88) rotateY(-10deg); }
  to { opacity: 1; transform: scale(1) rotateY(0deg); }
}

/* заголовок хиро — загорается как неоновая вывеска, по буквам, каждая со своей частотой мигания */
.hero h1 .ltr {
  display: inline-block;
  opacity: 0.15;
  animation-name: letter-flicker;
  animation-timing-function: ease-in-out;
  animation-iteration-count: 1;
  animation-fill-mode: both;
}
.hero h1 .ltr.w {
  color: var(--text);
  --ltr-glow: 0 0 6px rgba(255, 255, 255, 0.85), 0 0 16px rgba(255, 255, 255, 0.4), 0 0 30px rgba(168, 85, 247, 0.22);
}
.hero h1 .ltr.a1 { color: var(--violet); --ltr-glow: 0 0 6px var(--violet), 0 0 16px rgba(168, 85, 247, 0.7); }
.hero h1 .ltr.a2 { color: var(--green); --ltr-glow: 0 0 6px var(--green), 0 0 16px rgba(34, 197, 94, 0.7); }
.hero h1 .ltr.a3 { color: var(--lime); --ltr-glow: 0 0 6px var(--lime), 0 0 16px rgba(163, 230, 53, 0.7); }
@keyframes letter-flicker {
  0%   { opacity: 0.15; text-shadow: none; }
  4%   { opacity: 1; text-shadow: var(--ltr-glow); }
  8%   { opacity: 0.2; text-shadow: none; }
  14%  { opacity: 1; text-shadow: var(--ltr-glow); }
  19%  { opacity: 0.25; text-shadow: none; }
  26%  { opacity: 1; text-shadow: var(--ltr-glow); }
  32%  { opacity: 0.3; text-shadow: none; }
  40%  { opacity: 0.85; text-shadow: var(--ltr-glow); }
  48%, 100% { opacity: 1; text-shadow: var(--ltr-glow); }
}
.hero h1 .ltr.t1 { animation-duration: 1.9s; animation-delay: 0.1s; }
.hero h1 .ltr.t2 { animation-duration: 2.3s; animation-delay: 0.22s; }
.hero h1 .ltr.t3 { animation-duration: 2.6s; animation-delay: 0.05s; }
.hero h1 .ltr.t4 { animation-duration: 2.1s; animation-delay: 0.35s; }
.hero h1 .ltr.t5 { animation-duration: 2.8s; animation-delay: 0.15s; }
.hero h1 .ltr.t6 { animation-duration: 2.0s; animation-delay: 0.28s; }

.reveal {
  position: relative;
  overflow: hidden;
  opacity: 0;
  filter: blur(8px);
  transform: translateX(-26px);
  transition: opacity 0.5s ease, transform 0.5s cubic-bezier(0.16, 1, 0.3, 1), filter 0.5s ease;
}
.reveal.in-view { opacity: 1; filter: blur(0); transform: translateX(0); }
.reveal.in-view::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(90deg, transparent, rgba(168, 85, 247, 0.32), transparent);
  animation: neon-sweep 0.6s ease-out;
  pointer-events: none;
}
@keyframes neon-sweep {
  from { transform: translateX(-100%); opacity: 1; }
  to { transform: translateX(100%); opacity: 0; }
}

.site-header { transition: background 0.3s, box-shadow 0.3s; }
.site-header.scrolled {
  background: rgba(12, 15, 13, 0.97);
  box-shadow: 0 10px 30px -16px rgba(0, 0, 0, 0.65);
}

nav.main-nav a { transition: text-shadow 0.2s ease, color 0.15s; }
nav.main-nav a:hover { text-shadow: 0 0 10px rgba(168, 85, 247, 0.75), 0 0 22px rgba(34, 197, 94, 0.3); }

.btn { position: relative; overflow: hidden; }
.btn::before {
  content: "";
  position: absolute;
  top: 0; left: -60%;
  width: 35%; height: 100%;
  background: linear-gradient(120deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  transform: skewX(-20deg);
  transition: left 0.6s ease;
}
.btn:hover::before { left: 130%; }

.list-item { transition: border-color 0.25s, transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.35s ease; }
.list-item:hover { transform: translateX(6px) translateY(-2px); box-shadow: 0 14px 34px -20px rgba(168, 85, 247, 0.5); }
.list-item .glyph-img { transition: transform 0.35s ease; }
.list-item:hover .glyph-img { transform: scale(1.12); }

.step-card { transition: border-color 0.25s, transform 0.25s; }
.step-card:hover { transform: translateY(-4px); border-color: rgba(168, 85, 247, 0.4); }

.why-card { transition: border-color 0.25s, transform 0.25s; }
.why-card:hover { transform: translateY(-4px); border-color: rgba(168, 85, 247, 0.4); }
.why-card .glyph { display: inline-block; transition: transform 0.3s ease; }
.why-card:hover .glyph { transform: scale(1.2) rotate(6deg); }

.city-card { transition: border-color 0.25s; }
.city-card:hover { border-color: rgba(168, 85, 247, 0.4); }
.city-card .pulse { animation: pulse-ring 2s ease-out infinite; }
@keyframes pulse-ring {
  0% { box-shadow: 0 0 0 0 rgba(168, 85, 247, 0.45); }
  70% { box-shadow: 0 0 0 10px rgba(168, 85, 247, 0); }
  100% { box-shadow: 0 0 0 0 rgba(168, 85, 247, 0); }
}

nav.main-nav.nav-open {
  display: flex;
  flex-direction: column;
  position: absolute;
  top: 76px; left: 0; right: 0;
  background: #141a15;
  padding: 18px 24px;
  border-bottom: 1px solid #283529;
  animation: nav-drop 0.25s ease;
}
@keyframes nav-drop {
  from { opacity: 0; transform: translateY(-10px); }
  to { opacity: 1; transform: translateY(0); }
}

@media (max-width: 900px) {
  nav.main-nav { display: none; }
  .nav-toggle { display: grid; place-items: center; }
  .hero-grid { grid-template-columns: 1fr; }
  .hero-visual { max-width: 380px; margin: 0 auto; }
  .steps-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; }
  .cities-grid { grid-template-columns: 1fr; }
  .order-shell { grid-template-columns: 1fr; padding: 32px 24px; }
  .list-item { grid-template-columns: 44px 1fr; }
  .list-item .tag, .list-item .book-link { grid-column: 2; }
}
@media (max-width: 560px) {
  .hero { padding: 64px 0 56px; }
  .hero-stats { flex-wrap: wrap; row-gap: 18px; }
}

@media (prefers-reduced-motion: reduce) {
  .hero-visual .glyph, .hero-visual .glyph-img, .hero-visual::before, .hero-visual::after { animation: none !important; }
  .hero-grid > div:first-child > *, .hero-visual { animation: none !important; opacity: 1 !important; transform: none !important; filter: none !important; }
  .hero h1 .ltr { animation: none !important; opacity: 1 !important; text-shadow: var(--ltr-glow) !important; }
  .site-header .brand-sign {
    animation: none !important;
    opacity: 1 !important;
    box-shadow: 0 0 10px rgba(168, 85, 247, 0.7), 0 0 26px rgba(168, 85, 247, 0.5),
      0 0 44px rgba(34, 197, 94, 0.22), inset 0 0 12px rgba(163, 230, 53, 0.28) !important;
  }
  .hero::before, .hero::after { animation: none !important; }
  .reveal { opacity: 1 !important; filter: none !important; transform: none !important; transition: none !important; }
  .reveal.in-view::after { display: none; }
  .btn::before { display: none; }
  .city-card .pulse { animation: none !important; }
  nav.main-nav.nav-open { animation: none !important; }
}
