/* ==========================================================================
   Yemdar marketing landing — Option B: dark glass + amber glow
   Swap tokens here if the published customer palette ever shifts.
   ========================================================================== */

:root {
  --bg: #07060a;
  --bg-elev: #0e0c12;
  --glass: rgba(255, 247, 237, 0.05);
  --glass-strong: rgba(255, 247, 237, 0.09);
  --glass-border: rgba(234, 179, 8, 0.2);
  --glass-border-soft: rgba(255, 247, 237, 0.08);
  --primary: #b45309;
  --primary-dark: #92400e;
  --accent: #eab308;
  --accent-soft: #fef3c7;
  --text: #fffbeb;
  --muted: #a8a29e;
  --success: #4ade80;
  --radius: 22px;
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.45);
  --font-display: "Cairo", system-ui, sans-serif;
  --font-body: "IBM Plex Sans Arabic", system-ui, sans-serif;
  --nav-h: 72px;
  --max: 1180px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: auto;
}

html,
body {
  margin: 0;
  min-height: 100%;
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.7;
}

body {
  overflow-x: hidden;
  cursor: auto;
}

body.has-custom-cursor,
body.has-custom-cursor a,
body.has-custom-cursor button {
  cursor: none;
}

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

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

button {
  font-family: inherit;
  color: inherit;
  background: none;
  border: 0;
  cursor: pointer;
}

/* Ambient canvas */
.page-glow {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  background:
    radial-gradient(900px 520px at 80% -10%, rgba(180, 83, 9, 0.28), transparent 55%),
    radial-gradient(700px 480px at 0% 30%, rgba(234, 179, 8, 0.08), transparent 50%),
    radial-gradient(600px 400px at 50% 110%, rgba(180, 83, 9, 0.12), transparent 50%);
}

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

.wrap {
  width: min(var(--max), calc(100% - 40px));
  margin-inline: auto;
}

.section {
  position: relative;
  z-index: 2;
  padding-block: 96px;
}

.kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 14px;
  padding: 6px 12px;
  border: 1px solid var(--glass-border);
  border-radius: 999px;
  background: var(--glass);
  color: var(--accent);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.04em;
}

h1,
h2,
h3 {
  font-family: var(--font-display);
  line-height: 1.15;
  margin: 0;
}

.lede {
  color: var(--muted);
  font-size: 1.05rem;
  max-width: 42rem;
}

/* ----- Custom cursor ----- */
.cursor {
  position: fixed;
  top: 0;
  left: 0;
  width: 14px;
  height: 14px;
  margin: -7px 0 0 -7px;
  border-radius: 50%;
  border: 1.5px solid var(--accent);
  box-shadow: 0 0 18px rgba(234, 179, 8, 0.55);
  pointer-events: none;
  z-index: 80;
  mix-blend-mode: screen;
  opacity: 0;
  transform: translate3d(-100px, -100px, 0);
}

.cursor-dot {
  position: fixed;
  top: 0;
  left: 0;
  width: 4px;
  height: 4px;
  margin: -2px 0 0 -2px;
  border-radius: 50%;
  background: var(--accent);
  pointer-events: none;
  z-index: 81;
  opacity: 0;
}

/* ----- Nav ----- */
.nav {
  position: sticky;
  top: 0;
  z-index: 40;
  height: var(--nav-h);
  backdrop-filter: blur(18px);
  background: rgba(7, 6, 10, 0.62);
  border-bottom: 1px solid var(--glass-border-soft);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  height: var(--nav-h);
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.25rem;
}

.brand img {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  box-shadow: 0 0 24px rgba(180, 83, 9, 0.45);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 6px;
}

.nav-links a,
.lang-btn {
  padding: 8px 12px;
  border-radius: 999px;
  color: var(--muted);
  font-size: 0.92rem;
  transition: color 0.2s ease, background 0.2s ease;
}

.nav-links a:hover,
.lang-btn:hover {
  color: var(--text);
  background: var(--glass);
}

.lang-btn {
  border: 1px solid var(--glass-border);
  min-width: 72px;
}

.lang-btn[aria-pressed="true"] {
  color: var(--bg);
  background: var(--accent);
  border-color: var(--accent);
}

.lang-switch {
  display: flex;
  gap: 4px;
}

/* ----- Hero ----- */
.hero {
  position: relative;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 40px;
  align-items: center;
  padding-block: 56px 80px;
  min-height: calc(100svh - var(--nav-h));
}

.hero h1 {
  font-size: clamp(2.4rem, 5.4vw, 4.6rem);
  font-weight: 800;
  margin-bottom: 18px;
  overflow: visible;
}

body:not(.is-ready) .hero h1 {
  visibility: hidden;
}

.hero h1 .word {
  display: inline-block;
  will-change: transform, opacity;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.store-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 56px;
  padding: 8px 16px 8px 12px;
  border-radius: 14px;
  border: 1px solid var(--glass-border);
  background: #111;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.35);
  transition: transform 0.25s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.25s ease;
}

.store-badge:hover {
  transform: translateY(-4px) scale(1.03);
  box-shadow: 0 18px 40px rgba(180, 83, 9, 0.28);
}

.store-badge .soon {
  font-size: 10px;
  font-weight: 700;
  color: var(--accent);
  background: rgba(234, 179, 8, 0.12);
  padding: 2px 8px;
  border-radius: 999px;
}

.store-badge .meta {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
}

.store-badge .meta small {
  color: var(--muted);
  font-size: 11px;
}

.store-badge .meta strong {
  font-size: 15px;
}

.phones {
  position: relative;
  height: 560px;
  perspective: 1200px;
}

.phone {
  position: absolute;
  width: 230px;
  height: 470px;
  padding: 12px;
  border-radius: 36px;
  background: linear-gradient(180deg, #1a1714, #0b0a0c);
  border: 1px solid rgba(253, 230, 138, 0.22);
  box-shadow:
    0 30px 60px rgba(0, 0, 0, 0.5),
    inset 0 0 0 1px rgba(255, 255, 255, 0.04);
  overflow: hidden;
}

.phone-screen {
  height: 100%;
  border-radius: 26px;
  overflow: hidden;
  background: #14110e;
}

.phone-center {
  inset-inline-start: 28%;
  top: 20px;
  z-index: 3;
  transform: rotateY(-8deg) rotateX(6deg);
}

.phone-left {
  inset-inline-start: 0;
  top: 70px;
  z-index: 2;
  transform: rotate(-10deg) translateX(10px);
}

.phone-right {
  inset-inline-end: 0;
  top: 90px;
  z-index: 1;
  transform: rotate(9deg);
}

.ui-bar {
  display: flex;
  justify-content: space-between;
  padding: 14px 14px 8px;
  font-size: 11px;
  color: var(--muted);
}

.ui-title {
  font-family: var(--font-display);
  font-weight: 800;
  padding: 0 14px 10px;
}

.ui-card {
  margin: 8px 12px;
  padding: 10px;
  border-radius: 14px;
  background: rgba(255, 247, 237, 0.06);
  border: 1px solid rgba(234, 179, 8, 0.12);
  display: flex;
  gap: 10px;
  align-items: center;
}

.ui-thumb {
  width: 42px;
  height: 42px;
  border-radius: 10px;
  background: linear-gradient(135deg, var(--primary), var(--accent));
}

.ui-card b {
  display: block;
  font-size: 13px;
}

.ui-card span {
  font-size: 11px;
  color: var(--muted);
}

.ui-track {
  margin: 20px 16px;
  padding: 16px;
  border-radius: 16px;
  background: rgba(180, 83, 9, 0.15);
  border: 1px solid var(--glass-border);
}

.ui-dots {
  display: flex;
  gap: 6px;
  margin-top: 12px;
}

.ui-dots i {
  flex: 1;
  height: 6px;
  border-radius: 99px;
  background: rgba(255, 255, 255, 0.12);
}

.ui-dots i.on {
  background: var(--accent);
}

.scroll-hint {
  position: absolute;
  bottom: 18px;
  inset-inline-start: 50%;
  translate: -50% 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  color: var(--muted);
  font-size: 12px;
  z-index: 3;
}

.scroll-hint .chev {
  width: 22px;
  height: 22px;
  animation: bounce 1.6s ease-in-out infinite;
}

@keyframes bounce {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(7px);
  }
}

/* ----- Map ----- */
.map-section {
  padding-top: 40px;
}

.map-head {
  text-align: center;
  margin-bottom: 36px;
}

.map-head h2 {
  font-size: clamp(1.8rem, 4vw, 3rem);
  margin-bottom: 10px;
}

.map-head .lede {
  margin-inline: auto;
}

.map-stage {
  position: relative;
  border-radius: 32px;
  border: 1px solid var(--glass-border);
  background: linear-gradient(180deg, rgba(255, 247, 237, 0.04), rgba(255, 247, 237, 0.02));
  box-shadow: var(--shadow);
  overflow: hidden;
  min-height: 520px;
}

.map-stage::before {
  content: "";
  position: absolute;
  inset: 10% 20%;
  background: radial-gradient(circle, rgba(180, 83, 9, 0.28), transparent 70%);
  pointer-events: none;
}

#iraq-map {
  position: relative;
  width: min(920px, 100%);
  margin-inline: auto;
  padding: 28px 16px 48px;
}

#iraq-map svg {
  width: 100%;
  height: auto;
  overflow: visible;
  filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.35));
}

.province {
  fill: rgba(255, 247, 237, 0.04);
  stroke: rgba(253, 230, 138, 0.28);
  stroke-width: 1.1;
  cursor: pointer;
}

.province.is-soon {
  fill: transparent;
  stroke: rgba(168, 162, 158, 0.45);
  stroke-dasharray: 4 3;
}

.province.is-live {
  fill: rgba(180, 83, 9, 0.72);
  stroke: var(--accent);
  stroke-width: 1.6;
  filter: drop-shadow(0 0 10px rgba(234, 179, 8, 0.55));
  animation: pulse-live 2.4s ease-in-out infinite;
}

.province.is-dim {
  opacity: 0.28;
}

.province:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
}

.province.is-hot {
  fill: #b45309;
  stroke: #fde68a;
  filter: drop-shadow(0 0 14px rgba(234, 179, 8, 0.8));
  animation: none;
}

@keyframes pulse-live {
  0%,
  100% {
    filter: drop-shadow(0 0 8px rgba(234, 179, 8, 0.4));
  }
  50% {
    filter: drop-shadow(0 0 18px rgba(234, 179, 8, 0.85));
  }
}

.map-legend {
  position: absolute;
  bottom: 16px;
  inset-inline-start: 18px;
  display: flex;
  gap: 14px;
  font-size: 12px;
  color: var(--muted);
}

.legend-dot {
  display: inline-block;
  width: 10px;
  height: 10px;
  border-radius: 3px;
  margin-inline-end: 6px;
  vertical-align: middle;
}

.legend-dot.live {
  background: var(--primary);
  box-shadow: 0 0 8px var(--accent);
}

.legend-dot.soon {
  background: transparent;
  border: 1px dashed var(--muted);
}

.map-float {
  position: fixed;
  z-index: 50;
  width: 260px;
  padding: 14px;
  border-radius: 18px;
  background: rgba(14, 12, 18, 0.86);
  border: 1px solid var(--glass-border);
  backdrop-filter: blur(16px);
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.45);
  pointer-events: none;
  opacity: 0;
  transform: translate3d(0, 8px, 0) scale(0.96);
  visibility: hidden;
}

.map-float.is-on {
  opacity: 1;
  visibility: visible;
  transform: none;
}

.map-float img {
  width: 100%;
  height: 92px;
  object-fit: cover;
  border-radius: 12px;
  margin-bottom: 10px;
}

.map-float h3 {
  font-size: 1.05rem;
  margin-bottom: 4px;
}

.map-float .meta {
  display: flex;
  justify-content: space-between;
  font-size: 12px;
  color: var(--muted);
}

.map-float .live-tag {
  color: var(--accent);
  font-size: 11px;
  font-weight: 700;
}

.map-dock {
  display: none;
  margin-top: 16px;
  padding: 14px;
  border-radius: 18px;
  background: var(--glass);
  border: 1px solid var(--glass-border);
}

.map-dock.is-on {
  display: block;
}

.map-dock img {
  width: 100%;
  height: 120px;
  object-fit: cover;
  border-radius: 12px;
  margin-bottom: 10px;
}

/* ----- Province panel ----- */
.panel-overlay {
  position: fixed;
  inset: 0;
  z-index: 60;
  background: rgba(0, 0, 0, 0.55);
  backdrop-filter: blur(8px);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.panel-overlay.is-open {
  opacity: 1;
  visibility: visible;
}

.panel {
  position: fixed;
  z-index: 61;
  top: 50%;
  left: 50%;
  width: min(720px, calc(100% - 28px));
  max-height: min(82vh, 720px);
  overflow: auto;
  padding: 22px;
  border-radius: 24px;
  background: rgba(16, 13, 18, 0.94);
  border: 1px solid var(--glass-border);
  box-shadow: var(--shadow);
  opacity: 0;
  visibility: hidden;
  transform: translate(-50%, -50%) scale(0.92);
  transition: opacity 0.3s ease, transform 0.35s cubic-bezier(0.34, 1.4, 0.64, 1), visibility 0.3s;
}

.panel.is-open {
  opacity: 1;
  visibility: visible;
  transform: translate(-50%, -50%) scale(1);
}

.panel-top {
  display: flex;
  justify-content: space-between;
  align-items: start;
  gap: 12px;
  margin-bottom: 16px;
}

.panel-close {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  border: 1px solid var(--glass-border);
  background: var(--glass);
}

.panel-stats {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 16px;
}

.chip {
  padding: 8px 12px;
  border-radius: 999px;
  background: var(--glass);
  border: 1px solid var(--glass-border-soft);
  font-size: 13px;
}

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

.gallery figure {
  margin: 0;
  position: relative;
  overflow: hidden;
  border-radius: 14px;
  border: 1px solid var(--glass-border-soft);
}

.gallery img {
  width: 100%;
  height: 140px;
  object-fit: cover;
}

.gallery figcaption {
  position: absolute;
  inset-inline: 0;
  bottom: 0;
  padding: 8px 10px;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.75));
  font-size: 12px;
}

.panel-empty {
  color: var(--muted);
  padding: 24px 8px;
}

/* ----- How it works ----- */
.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  position: relative;
  margin-top: 36px;
}

.steps-line {
  position: absolute;
  top: 36px;
  inset-inline: 8%;
  height: 2px;
  overflow: visible;
  pointer-events: none;
}

.steps-line path {
  fill: none;
  stroke: var(--accent);
  stroke-width: 2;
  stroke-linecap: round;
  stroke-dasharray: 1;
  stroke-dashoffset: 1;
}

.step {
  position: relative;
  z-index: 1;
  padding: 22px 18px 20px;
  border-radius: var(--radius);
  background: var(--glass);
  border: 1px solid var(--glass-border-soft);
  backdrop-filter: blur(12px);
  transition: transform 0.25s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.25s ease, border-color 0.25s;
}

.step:hover {
  transform: translateY(-6px) scale(1.03);
  box-shadow: 0 16px 40px rgba(180, 83, 9, 0.22);
  border-color: var(--glass-border);
}

.step-icon {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  background: rgba(180, 83, 9, 0.2);
  color: var(--accent);
  margin-bottom: 14px;
}

.step h3 {
  font-size: 1.1rem;
  margin-bottom: 8px;
}

.step p {
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
}

.step-num {
  position: absolute;
  top: 16px;
  inset-inline-end: 16px;
  color: rgba(234, 179, 8, 0.35);
  font-family: var(--font-display);
  font-weight: 800;
}

/* ----- Showcase ----- */
.film-wrap {
  position: relative;
  margin-top: 28px;
}

.film-arrow {
  position: absolute;
  top: 50%;
  z-index: 4;
  translate: 0 -50%;
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  border: 1px solid var(--glass-border);
  background: rgba(14, 12, 18, 0.82);
  color: var(--text);
  backdrop-filter: blur(12px);
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.35);
  transition: transform 0.22s cubic-bezier(0.34, 1.56, 0.64, 1), opacity 0.2s ease, background 0.2s ease;
}

.film-arrow:hover:not(:disabled) {
  transform: scale(1.08);
  background: rgba(180, 83, 9, 0.85);
}

.film-arrow:disabled {
  opacity: 0.28;
  pointer-events: none;
}

.film-arrow-prev {
  inset-inline-start: max(8px, calc((100% - var(--max)) / 2 - 8px));
}

.film-arrow-next {
  inset-inline-end: max(8px, calc((100% - var(--max)) / 2 - 8px));
}

.film-arrow-next svg {
  transform: scaleX(-1);
}

[dir="rtl"] .film-arrow-prev svg {
  transform: scaleX(-1);
}

[dir="rtl"] .film-arrow-next svg {
  transform: none;
}

.film {
  display: flex;
  gap: 16px;
  overflow-x: auto;
  overflow-y: hidden;
  scroll-snap-type: x mandatory;
  padding-block: 12px 20px;
  padding-inline: 52px;
  scrollbar-width: thin;
  scrollbar-color: var(--primary) transparent;
  cursor: grab;
  touch-action: pan-x;
}

.film.is-dragging {
  cursor: grabbing;
  scroll-snap-type: none;
}

.film-card {
  flex: 0 0 min(260px, 72vw);
  scroll-snap-align: start;
  position: relative;
  height: 340px;
  border-radius: 22px;
  overflow: hidden;
  border: 1px solid var(--glass-border-soft);
  transition: transform 0.28s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.28s ease;
}

.film-card:hover {
  transform: translateY(-8px) scale(1.03);
  box-shadow: 0 22px 50px rgba(180, 83, 9, 0.28);
}

.film-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: none;
  user-select: none;
  -webkit-user-drag: none;
}

.film-card .overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: end;
  padding: 16px;
  background: linear-gradient(180deg, transparent 40%, rgba(7, 6, 10, 0.88));
  transform: translateY(18px);
  opacity: 0.85;
  transition: transform 0.3s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.3s ease;
}

.film-card:hover .overlay {
  transform: none;
  opacity: 1;
}

.film-card h3 {
  font-size: 1.15rem;
}

.film-card p {
  margin: 4px 0 0;
  color: var(--muted);
  font-size: 0.88rem;
}

/* ----- Stats ----- */
.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  padding: 28px;
  border-radius: 28px;
  background: var(--glass);
  border: 1px solid var(--glass-border);
  backdrop-filter: blur(16px);
}

.stat {
  text-align: center;
  padding: 10px;
}

.stat b {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 800;
  color: var(--accent);
  line-height: 1;
}

.stat span {
  color: var(--muted);
  font-size: 0.92rem;
}

/* ----- CTA ----- */
.cta {
  text-align: center;
  padding: 72px 24px;
  border-radius: 32px;
  border: 1px solid var(--glass-border);
  background:
    radial-gradient(500px 180px at 50% 0%, rgba(180, 83, 9, 0.35), transparent 70%),
    var(--glass);
}

.cta h2 {
  font-size: clamp(2rem, 5vw, 3.4rem);
  margin-bottom: 12px;
}

.cta-row {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 18px;
  margin-top: 28px;
}

.qr {
  width: 108px;
  height: 108px;
  padding: 8px;
  border-radius: 16px;
  background: #fff;
}

.footer {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 10px;
  padding: 28px 0 48px;
  color: var(--muted);
  font-size: 0.9rem;
  position: relative;
  z-index: 2;
}

.footer a:hover {
  color: var(--accent);
}

.icon {
  width: 22px;
  height: 22px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* ----- Reduced motion ----- */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
    scroll-behavior: auto !important;
  }

  .hero h1 .word,
  .reveal {
    opacity: 1 !important;
    transform: none !important;
  }

  .province.is-live {
    animation: none;
  }

  .cursor,
  .cursor-dot {
    display: none !important;
  }
}

@media (min-width: 721px) {
  .map-dock {
    display: none !important;
  }
}

/* ----- Responsive ----- */
@media (max-width: 960px) {
  .hero {
    grid-template-columns: 1fr;
    min-height: unset;
  }

  .phones {
    height: 420px;
    margin-inline: auto;
    width: min(420px, 100%);
  }

  .phone {
    width: 170px;
    height: 350px;
  }

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

  .steps-line {
    display: none;
  }

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

@media (max-width: 720px) {
  .nav-links a:not(.lang-btn) {
    display: none;
  }

  .hero {
    padding-top: 28px;
  }

  .phones {
    display: none;
  }

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

  .map-float {
    display: none;
  }

  .map-dock {
    display: block;
  }

  .scroll-hint {
    display: none;
  }

  .film {
    padding-inline: 44px;
  }

  .film-arrow {
    width: 40px;
    height: 40px;
  }

  .film-arrow-prev {
    inset-inline-start: 4px;
  }

  .film-arrow-next {
    inset-inline-end: 4px;
  }
}
