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

:root {
  --bg: #140b09;
  --surface: #1e1310;
  --surface-2: #291a15;
  --border: #3a2620;
  --text: #f6ece4;
  --text-dim: #c9b3a6;
  --text-faint: #8a7268;
  --red: #d62828;
  --orange: #ff6a1a;
  --amber: #ffb703;
  --gradient: linear-gradient(120deg, var(--red) 0%, var(--orange) 55%, var(--amber) 100%);
  --radius: 6px;
  --shadow-glow: 0 0 60px rgba(255, 106, 26, 0.18);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; background: var(--bg); }

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

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

/* фоновое видео на весь сайт — "живые обои": закреплено на весь экран, лежит ниже
   всего обычного контента (z-index: -2), тонирующая вуаль поверх него держит текст
   читаемым везде, где секции не задают собственный непрозрачный фон */
.site-bgvideo {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -2;
  filter: saturate(1.1) brightness(0.5) contrast(1.05);
  pointer-events: none;
}
.site-bgvideo-veil {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background:
    radial-gradient(ellipse 90% 55% at 50% 0%, rgba(255, 106, 26, 0.16), transparent 60%),
    linear-gradient(180deg, rgba(20, 11, 9, 0.55) 0%, rgba(20, 11, 9, 0.74) 45%, rgba(20, 11, 9, 0.92) 100%);
}
@media (prefers-reduced-motion: reduce) {
  .site-bgvideo { display: none; }
}

.wrap {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 24px;
}

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

a { color: inherit; }

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(20, 11, 9, 0.88);
  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: "Oswald", sans-serif;
  font-weight: 700;
  color: #140b09;
  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(--orange); }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 26px;
  border-radius: var(--radius);
  font-family: "Oswald", sans-serif;
  font-weight: 600;
  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: #17100c;
  box-shadow: 0 10px 30px -8px rgba(255, 106, 26, 0.55);
}
.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.08); transform: translateY(-3px) scale(1.02); box-shadow: 0 16px 36px -10px rgba(255, 106, 26, 0.65); }
.btn-ghost {
  background: transparent;
  color: var(--text);
  border: 1px solid var(--border);
}
.btn-ghost:hover { border-color: var(--orange); color: var(--orange); }

.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-image:
    radial-gradient(ellipse 900px 500px at 15% -10%, rgba(214, 40, 40, 0.35), transparent 60%),
    radial-gradient(ellipse 700px 500px at 100% 10%, rgba(255, 183, 3, 0.16), 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: 380px; height: 380px;
  top: -130px; left: 4%;
  background: radial-gradient(circle, rgba(255, 106, 26, 0.38), transparent 70%);
  animation: orb-float-a 16s ease-in-out infinite;
}
.hero::after {
  width: 300px; height: 300px;
  bottom: -110px; right: 8%;
  background: radial-gradient(circle, rgba(214, 40, 40, 0.32), transparent 70%);
  animation: orb-float-b 20s ease-in-out infinite;
}
@keyframes orb-float-a {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(34px, 42px) scale(1.12); }
}
@keyframes orb-float-b {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(-28px, -32px) scale(1.08); }
}

.catalog-rows { display: flex; flex-direction: column; gap: 20px; margin-top: 44px; }

/* карточки ряда открываются, когда ряд появляется в кадре (см. app.js) */
.row-items {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.row-solo .row-items { grid-template-columns: minmax(260px, 380px); justify-content: center; }

.device-card {
  position: relative;
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 22px 26px;
  border-radius: 14px;
  background: linear-gradient(150deg, rgba(46, 28, 18, 0.92), rgba(18, 12, 10, 0.92));
  box-shadow: 0 0 0 1px rgba(255, 106, 26, 0.18), 0 18px 30px -14px rgba(0, 0, 0, 0.6);
  overflow: hidden;
  opacity: 0;
  transform: translateY(28px) scale(0.96);
  transition: opacity 0.55s ease, transform 0.55s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.device-card::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--gradient);
}
.row-items.row-open .device-card { opacity: 1; transform: translateY(0) scale(1); }
.row-items.row-open .device-card:nth-child(2) { transition-delay: 0.12s; }

.device-photo {
  width: 92px;
  height: 92px;
  flex-shrink: 0;
  border-radius: 12px;
  background: linear-gradient(160deg, #f4ece3, #ddcdb9);
  box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.08), 0 6px 14px rgba(0, 0, 0, 0.3);
  display: grid;
  place-items: center;
  padding: 10px;
}
.device-photo img { width: 100%; height: 100%; object-fit: contain; }
.device-info { display: flex; flex-direction: column; gap: 4px; min-width: 0; }
.device-info b {
  font-family: "Oswald", sans-serif;
  font-size: 1.05rem;
  text-transform: uppercase;
  letter-spacing: 0.01em;
  line-height: 1.15;
}
.device-spec { font-size: 0.82rem; color: var(--text-faint); margin: 0; line-height: 1.35; }
.device-info > span { font-size: 0.98rem; color: var(--orange); font-weight: 700; }
.device-book {
  align-self: flex-start;
  font-family: "Oswald", sans-serif;
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  color: var(--amber);
  text-decoration: none;
  border-bottom: 1px solid rgba(255, 183, 3, 0.4);
  padding-bottom: 1px;
  margin-top: 2px;
}
.device-book:hover { color: var(--text); border-color: var(--text); }

.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(--orange);
  font-family: "Oswald", 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: "Oswald", sans-serif;
  font-size: 1.6rem;
  color: var(--amber);
}
.hero-stats .stat span {
  font-size: 0.82rem;
  color: var(--text-faint);
}

.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);
}
.hero-visual::before {
  content: "";
  position: absolute;
  inset: -40%;
  background: conic-gradient(from 180deg, var(--red), var(--orange), var(--amber), var(--red));
  opacity: 0.22;
  filter: blur(60px);
  animation: spin 14s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }
/* тлеющий/пылающий объект — фирменная анимация Огнепрокат */
.hero-visual .glyph {
  position: relative;
  font-size: 7.5rem;
  transform-origin: 50% 85%;
  animation: ember-flicker 2.2s ease-in-out infinite;
}
.hero-visual .glyph-img {
  position: relative;
  width: 68%;
  max-width: 320px;
  object-fit: contain;
  transform-origin: 50% 85%;
  animation: ember-flicker 2.2s ease-in-out infinite;
}
@keyframes ember-flicker {
  0%, 100% {
    transform: scale(1) rotate(-2deg);
    filter: drop-shadow(0 0 16px rgba(255, 106, 26, 0.5)) drop-shadow(0 10px 30px rgba(0,0,0,0.5));
  }
  30% {
    transform: scale(1.045) rotate(1.5deg);
    filter: drop-shadow(0 0 30px rgba(214, 40, 40, 0.75)) drop-shadow(0 10px 30px rgba(0,0,0,0.5));
  }
  60% {
    transform: scale(0.985) rotate(-1deg);
    filter: drop-shadow(0 0 22px rgba(255, 183, 3, 0.65)) drop-shadow(0 10px 30px rgba(0,0,0,0.5));
  }
}
@media (prefers-reduced-motion: reduce) {
  .hero-visual .glyph, .hero-visual .glyph-img, .hero-visual::before { animation: none !important; }
}

/* ---------- горячие комплекты ---------- */

.bundles-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.bundle-card {
  background: var(--surface); border: 1px solid var(--border); border-radius: 14px;
  padding: 26px 24px; display: flex; flex-direction: column; gap: 12px;
  position: relative; overflow: hidden;
}
.bundle-card::before {
  content: ""; position: absolute; top: 0; left: 0; right: 0; height: 3px; background: var(--gradient);
}
.bundle-card h3 { font-size: 1.1rem; }
.bundle-card .bundle-items { color: var(--text-dim); font-size: 0.88rem; margin: 0; }
.bundle-card .bundle-price-row { margin-top: auto; padding-top: 12px; border-top: 1px solid var(--border); display: flex; align-items: baseline; justify-content: space-between; }
.bundle-card .bundle-price { font-family: "Oswald", sans-serif; font-size: 1.35rem; }
.bundle-card .bundle-save { font-size: 0.78rem; color: var(--amber); font-weight: 600; }

/* ---------- section shell ---------- */

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; }

/* ---------- catalog ---------- */

.catalog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.device-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 26px 24px 24px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: border-color 0.2s, transform 0.2s;
  position: relative;
  overflow: hidden;
}
.device-card:hover { border-color: rgba(255, 106, 26, 0.5); }
.device-card .tag {
  position: absolute;
  top: 18px;
  right: 18px;
  font-family: "Oswald", sans-serif;
  font-size: 0.68rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 4px 9px;
  border-radius: 20px;
  background: rgba(255, 106, 26, 0.14);
  color: var(--orange);
  border: 1px solid rgba(255, 106, 26, 0.3);
}
.device-card .glyph { font-size: 2.3rem; }
.device-card .glyph-img { width: 100%; height: 92px; object-fit: contain; }
.device-card h3 { font-size: 1.15rem; }
.device-card .spec { color: var(--text-faint); font-size: 0.86rem; }
.device-card .price-row {
  margin-top: auto;
  padding-top: 14px;
  border-top: 1px solid var(--border);
  display: flex;
  align-items: baseline;
  justify-content: space-between;
}
.device-card .price {
  font-family: "Oswald", sans-serif;
  font-size: 1.5rem;
  color: var(--text);
}
.device-card .price span { font-size: 0.78rem; color: var(--text-faint); font-family: "Manrope", sans-serif; }
.device-card .book-link {
  font-size: 0.82rem;
  color: var(--orange);
  text-decoration: none;
  font-weight: 600;
}
.device-card .book-link:hover { text-decoration: underline; }

/* ---------- why ---------- */

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

/* ---------- cities ---------- */

.cities-band {
  background: rgba(30, 19, 16, 0.55);
  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(--orange);
  box-shadow: 0 0 0 4px rgba(255,106,26,0.18);
}

/* ---------- order form ---------- */

.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(--orange); 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(--orange);
}
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(255, 183, 3, 0.1);
  border: 1px solid transparent;
  color: var(--amber);
  font-size: 0.9rem;
  overflow: hidden;
  transform: translateY(-6px);
  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(255, 183, 3, 0.35);
  transform: translateY(0);
}

/* ---------- footer ---------- */

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(--orange); }
.footer-bottom {
  margin-top: 34px;
  padding-top: 20px;
  border-top: 1px solid var(--border);
  font-size: 0.78rem;
  color: var(--text-faint);
}

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

.hero-grid > div:first-child > * {
  opacity: 0;
  animation: hero-rise 0.75s cubic-bezier(0.22, 1, 0.36, 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-rise {
  from { opacity: 0; transform: translateY(18px); }
  to { opacity: 1; transform: translateY(0); }
}
.hero-visual {
  opacity: 0;
  animation: hero-pop 0.9s cubic-bezier(0.34, 1.56, 0.64, 1) 0.2s forwards;
}
@keyframes hero-pop {
  from { opacity: 0; transform: scale(0.9); }
  to { opacity: 1; transform: scale(1); }
}

.reveal {
  opacity: 0;
  filter: blur(8px);
  transform: translateY(28px) scale(0.97);
  transition: opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1), transform 0.7s cubic-bezier(0.22, 1, 0.36, 1),
    filter 0.6s ease;
}
.reveal.in-view { opacity: 1; filter: blur(0); transform: translateY(0) scale(1); }
.reveal.in-view.device-card, .reveal.in-view.bundle-card {
  animation: ember-settle 0.8s ease-out;
}
@keyframes ember-settle {
  0% { box-shadow: 0 0 0 rgba(255, 106, 26, 0); }
  45% { box-shadow: 0 0 44px rgba(255, 106, 26, 0.35); }
  100% { box-shadow: 0 0 0 rgba(255, 106, 26, 0); }
}

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

nav.main-nav a { position: relative; }
nav.main-nav a::after {
  content: "";
  position: absolute;
  left: 0; right: 100%;
  bottom: -6px;
  height: 2px;
  background: var(--gradient);
  transition: right 0.25s ease;
}
nav.main-nav a:hover::after { right: 0; }

.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.35), transparent);
  transform: skewX(-20deg);
  transition: left 0.6s ease;
}
.btn:hover::before { left: 130%; }

.device-card, .bundle-card {
  transition: border-color 0.25s, transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.35s ease;
}
.device-card:hover, .bundle-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 46px -20px rgba(255, 106, 26, 0.55);
}
.device-card .glyph-img { transition: transform 0.35s ease; }
.device-card:hover .glyph-img { transform: scale(1.08) rotate(-2deg); }

.why-card { transition: border-color 0.25s, transform 0.25s; }
.why-card:hover { transform: translateY(-4px); border-color: rgba(255, 106, 26, 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(255, 106, 26, 0.4); }
.city-card .pulse { animation: pulse-ring 2s ease-out infinite; }
@keyframes pulse-ring {
  0% { box-shadow: 0 0 0 0 rgba(255, 106, 26, 0.45); }
  70% { box-shadow: 0 0 0 10px rgba(255, 106, 26, 0); }
  100% { box-shadow: 0 0 0 0 rgba(255, 106, 26, 0); }
}

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

@media (prefers-reduced-motion: reduce) {
  .hero-grid > div:first-child > *, .hero-visual { animation: none !important; opacity: 1 !important; transform: none !important; }
  .hero::before, .hero::after { animation: none !important; }
  .device-card { opacity: 1 !important; transform: none !important; transition: none !important; }
  .reveal { opacity: 1 !important; filter: none !important; transform: none !important; transition: none !important; }
  .btn::before { display: none; }
  .city-card .pulse { animation: none !important; }
  nav.main-nav.nav-open { animation: none !important; }
}

/* ---------- responsive ---------- */

@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; }
  .catalog-grid { grid-template-columns: repeat(2, 1fr); }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .cities-grid { grid-template-columns: 1fr; }
  .order-shell { grid-template-columns: 1fr; padding: 32px 24px; }
}

@media (max-width: 560px) {
  .catalog-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; }
  .hero { padding: 64px 0 56px; }
  .hero-stats { flex-wrap: wrap; row-gap: 18px; }
}

/* мобильная версия карточек каталога — были рассчитаны на десктопную ширину,
   здесь идут в один столбец */
@media (max-width: 700px) {
  .row-items, .row-solo .row-items { grid-template-columns: 1fr; }
  .device-card { padding: 18px 20px; gap: 16px; }
  .device-photo { width: 76px; height: 76px; }
}
