@font-face {
  font-family: "Peyda";
  src: url("./assets/fonts/Peyda-Regular.woff") format("woff");
  font-weight: 400;
  font-display: swap;
}
@font-face {
  font-family: "Peyda";
  src: url("./assets/fonts/Peyda-Medium.woff") format("woff");
  font-weight: 500;
  font-display: swap;
}
@font-face {
  font-family: "Peyda";
  src: url("./assets/fonts/Peyda-SemiBold.woff") format("woff");
  font-weight: 600;
  font-display: swap;
}
@font-face {
  font-family: "Peyda";
  src: url("./assets/fonts/Peyda-Bold.woff") format("woff");
  font-weight: 700;
  font-display: swap;
}
@font-face {
  font-family: "Peyda";
  src: url("./assets/fonts/Peyda-ExtraBold.woff") format("woff");
  font-weight: 800;
  font-display: swap;
}
@font-face {
  font-family: "Peyda";
  src: url("./assets/fonts/Peyda-Black.woff") format("woff");
  font-weight: 900;
  font-display: swap;
}

:root {
  --ink: #121212;
  --paper: #faf9f7;
  --muted: #77736f;
  --line: rgba(18, 18, 18, 0.13);
  --blue: #3217ff;
  --pink: #ff969b;
  --lilac: #d9c5dd;
  --lime: #d7ff47;
  --radius: 28px;
  --ease: cubic-bezier(0.2, 0.8, 0.2, 1);
}

* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: "Peyda", Tahoma, Arial, sans-serif;
  overflow-x: hidden;
}
button,
a {
  font: inherit;
}
a {
  color: inherit;
  text-decoration: none;
}
button {
  color: inherit;
}
::selection {
  background: var(--lime);
  color: var(--ink);
}

.noise {
  position: fixed;
  inset: 0;
  opacity: 0.035;
  pointer-events: none;
  z-index: 99;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 160 160' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.8'/%3E%3C/svg%3E");
}
.site-header {
  height: 68px;
  padding: 0 clamp(22px, 5vw, 80px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(250, 249, 247, 0.86);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
  position: fixed;
  inset: 0 0 auto;
  z-index: 50;
}
.site-header.cover-mode {
  color: white;
  background: transparent;
  backdrop-filter: none;
  border-bottom-color: transparent;
}
.site-header.cover-mode .nav {
  opacity: 0;
  pointer-events: none;
  transform: translateY(-10px);
}
.site-header.cover-mode .menu-button span {
  background: white;
}
.brand {
  display: flex;
  gap: 10px;
  align-items: center;
  font-size: 14px;
  font-weight: 800;
}
.brand-mark {
  width: 26px;
  height: 26px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
  transform: rotate(45deg);
}
.brand-mark i {
  display: block;
  border-radius: 2px;
}
.brand-mark i:nth-child(1) {
  background: var(--blue);
}
.brand-mark i:nth-child(2) {
  background: #ff647c;
}
.brand-mark i:nth-child(3) {
  background: #57d9cc;
}
.brand-mark i:nth-child(4) {
  background: var(--lime);
}
.nav {
  display: flex;
  align-items: center;
  gap: 32px;
  font-size: 13px;
  font-weight: 700;
}
.nav a {
  transition: opacity 0.2s;
}
.nav a:hover {
  opacity: 0.55;
}
.nav-cta {
  padding: 11px 18px;
  color: white;
  background: var(--ink);
  border-radius: 100px;
}
.menu-button {
  display: none;
  border: 0;
  background: none;
  width: 40px;
  height: 40px;
  padding: 10px;
}
.menu-button span {
  display: block;
  width: 100%;
  height: 2px;
  margin: 5px 0;
  background: var(--ink);
  transition: 0.3s;
}

.cover {
  --night-progress: 0;
  height: 100svh;
  min-height: 720px;
  position: relative;
  overflow: hidden;
  color: white;
  background: #020617;
}
.cover-photo {
  position: absolute;
  inset: 0;
  background-position: left center;
  background-size: cover;
  background-repeat: no-repeat;
  transform: scale(1.01);
  animation: coverDrift 14s var(--ease) both;
}
.cover-photo--day {
  background-image: url("./assets/images/main-hero.png");
}
.cover-photo--night {
  background-image: url("./assets/images/Night.jpg");
  opacity: var(--night-progress);
  animation: coverDrift 14s var(--ease) both;
  transition: opacity 2.2s ease-in-out;
  will-change: opacity;
}
.cover.is-scroll-driven .cover-photo--night {
  transition-duration: 0.12s;
  transition-timing-function: linear;
}
.cover-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      90deg,
      transparent 0 25%,
      rgba(2, 5, 25, 0.55) 58%,
      #05041e 100%
    ),
    linear-gradient(0deg, #020617 0, transparent 30%);
}
.cover-glow {
  position: absolute;
  width: 700px;
  height: 700px;
  top: -350px;
  right: -200px;
  border-radius: 50%;
  background: #7028ff;
  opacity: 0.12;
  filter: blur(70px);
}
.cover-content {
  position: absolute;
  z-index: 2;
  top: 18%;
  right: clamp(30px, 8vw, 120px);
  width: min(670px, 49vw);
}
.cover-label {
  display: block;
  color: #8693bc;
  font-size: 25px;
  font-weight: 700;
  margin-bottom: 120px;
}
.cover-content h1 {
  color: #8955ff;
  font-size: clamp(50px, 4.5vw, 72px);
  line-height: 1;
  margin: 0 0 30px;
  font-weight: 800;
}
.cover-content h2 {
  font-size: clamp(31px, 3vw, 46px);
  line-height: 1.3;
  margin: 0 0 20px;
}
.cover-content p {
  max-width: 660px;
  margin: 0;
  color: rgba(255, 255, 255, 0.48);
  font-size: 17px;
  line-height: 2.1;
}
.cover-cta {
  width: fit-content;
  margin-top: 55px;
  padding: 15px 28px;
  display: flex;
  align-items: center;
  gap: 24px;
  color: white;
  background: linear-gradient(100deg, #4e8afc, #b821ef);
  border-radius: 10px;
  font-size: 23px;
  font-weight: 700;
  box-shadow: 0 14px 45px rgba(102, 56, 255, 0.28);
  transition:
    transform 0.3s var(--ease),
    box-shadow 0.3s;
}
.cover-cta:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 60px rgba(102, 56, 255, 0.45);
}
.cover-cta span {
  font-size: 20px;
}
.cover-stats {
  position: absolute;
  z-index: 3;
  left: 9.5%;
  bottom: 2%;
  width: min(570px, 43vw);
  min-height: 150px;
  padding: 28px 30px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  border: 1px solid rgba(255, 255, 255, 0.03);
  border-radius: 30px;
  background: rgba(6, 6, 25, 0.74);
  box-shadow: 0 18px 70px rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(18px);
}
.cover-stats > div {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 6px;
}
.cover-stats strong {
  font-size: 17px;
}
.cover-stats span {
  color: rgba(255, 255, 255, 0.66);
  font-size: 12px;
}
.stat-icon {
  width: 25px;
  height: 25px;
  margin-bottom: 6px;
  display: block;
  color: #825bff;
  border: 2px solid currentColor;
  position: relative;
}
.stat-icon--pin {
  border-radius: 50% 50% 50% 0;
  transform: rotate(-45deg);
}
.stat-icon--pin::after {
  content: "";
  position: absolute;
  width: 5px;
  height: 5px;
  top: 7px;
  left: 7px;
  border: 2px solid currentColor;
  border-radius: 50%;
}
.stat-icon--calendar {
  border-radius: 4px;
}
.stat-icon--calendar::after {
  content: "";
  position: absolute;
  inset: 6px 3px auto;
  border-top: 2px solid currentColor;
}
.stat-icon--people {
  border: 0;
}
.stat-icon--people::before,
.stat-icon--people::after {
  content: "";
  position: absolute;
  border: 2px solid currentColor;
  border-radius: 50%;
}
.stat-icon--people::before {
  width: 8px;
  height: 8px;
  left: 7px;
}
.stat-icon--people::after {
  width: 20px;
  height: 10px;
  left: 1px;
  bottom: 0;
  border-bottom: 0;
  border-radius: 20px 20px 0 0;
}
.cover-scroll {
  position: absolute;
  z-index: 4;
  bottom: 24px;
  right: 50%;
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  animation: bob 1.7s infinite;
}

.hero {
  min-height: 100svh;
  position: relative;
  display: grid;
  align-items: end;
  overflow: hidden;
  color: white;
  background: #101015;
}
.hero-grid {
  position: absolute;
  inset: 0;
  z-index: 1;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.06) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(to bottom, black, transparent);
}
.image-slot {
  overflow: hidden;
  position: relative;
  background-color: #aaa;
  background-image:
    linear-gradient(135deg, rgba(255, 255, 255, 0.12), transparent 50%),
    repeating-linear-gradient(
      45deg,
      transparent 0 16px,
      rgba(255, 255, 255, 0.05) 16px 17px
    );
}
.image-slot.has-image {
  background-size: cover;
  background-position: center;
}
.image-slot.has-image > .image-icon,
.image-slot.has-image > small {
  opacity: 0;
  pointer-events: none;
}
.image-slot > small {
  position: absolute;
  left: 16px;
  bottom: 14px;
  padding: 5px 8px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.85);
  color: #151515;
  font: 500 10px/1 monospace;
  direction: ltr;
}
.image-icon {
  width: 36px;
  height: 31px;
  border: 2px solid currentColor;
  border-radius: 5px;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  opacity: 0.7;
}
.image-icon::before {
  content: "";
  position: absolute;
  width: 6px;
  height: 6px;
  border: 2px solid currentColor;
  border-radius: 50%;
  right: 4px;
  top: 4px;
}
.image-icon::after {
  content: "";
  position: absolute;
  left: 4px;
  right: 4px;
  bottom: 5px;
  height: 13px;
  background: currentColor;
  clip-path: polygon(0 100%, 35% 25%, 52% 65%, 69% 43%, 100% 100%);
}
.hero-image {
  position: absolute;
  inset: 68px 0 0;
  color: #555;
  background-color: #b5b5b5;
  transform: scale(1.03);
  transition:
    background-color 0.8s,
    transform 1.2s var(--ease);
}
.hero-shade {
  position: absolute;
  inset: 0;
  z-index: 2;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.72)),
    linear-gradient(0deg, rgba(0, 0, 0, 0.72), transparent 50%);
}
.hero-copy {
  position: relative;
  z-index: 3;
  padding: 0 clamp(22px, 8vw, 120px) 16vh;
  max-width: 900px;
}
.eyebrow,
.section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font:
    700 11px/1.4 Arial,
    sans-serif;
  letter-spacing: 2px;
  direction: ltr;
  text-transform: uppercase;
}
.eyebrow::before,
.section-kicker::before {
  content: "";
  width: 28px;
  height: 2px;
  background: currentColor;
}
.hero h1 {
  font-size: clamp(58px, 7vw, 106px);
  line-height: 0.98;
  letter-spacing: -4px;
  margin: 28px 0 20px;
}
.hero h1 em {
  color: var(--lime);
  font-style: normal;
}
.hero-copy > p {
  margin: 0;
  font-size: clamp(17px, 2vw, 28px);
  font-weight: 600;
}
.hero-meta {
  display: flex;
  align-items: center;
  gap: 28px;
  margin-top: 46px;
}
.hero-time {
  border: 1px solid rgba(255, 255, 255, 0.55);
  border-radius: 100px;
  padding: 10px 16px;
  font-size: 13px;
}
.hero-count {
  direction: ltr;
  font: 12px Arial;
}
.hero-count b {
  font-size: 24px;
}
.hero-controls {
  position: absolute;
  left: clamp(22px, 5vw, 80px);
  bottom: 70px;
  z-index: 4;
  display: flex;
  align-items: center;
  gap: 14px;
  direction: ltr;
}
.hero-arrow {
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255, 255, 255, 0.5);
  color: white;
  background: transparent;
  border-radius: 50%;
  cursor: pointer;
  transition: 0.25s;
}
.hero-arrow:hover {
  background: white;
  color: black;
}
.hero-progress {
  width: 90px;
  height: 1px;
  background: rgba(255, 255, 255, 0.35);
  overflow: hidden;
}
.hero-progress i {
  display: block;
  height: 100%;
  width: 0;
  background: white;
  animation: heroProgress 7s linear infinite;
}
.scroll-hint {
  position: absolute;
  z-index: 4;
  bottom: 24px;
  right: 50%;
  transform: translateX(50%);
  font-size: 10px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  opacity: 0.7;
}
.scroll-hint i {
  font-style: normal;
  animation: bob 1.7s infinite;
}

.section {
  padding: clamp(90px, 10vw, 150px) clamp(22px, 6vw, 90px);
}
.section-heading {
  text-align: center;
  max-width: 660px;
  margin: 0 auto clamp(48px, 6vw, 90px);
}
.section-heading h2 {
  font-size: clamp(42px, 6vw, 78px);
  margin: 15px 0 8px;
  letter-spacing: -3px;
  line-height: 1;
}
.section-heading p {
  color: var(--muted);
  margin: 0;
}
.section-kicker {
  color: var(--blue);
}
.video-card {
  position: relative;
  width: 100%;
  aspect-ratio: 16/9;
  display: block;
  overflow: hidden;
  border: 0;
  border-radius: var(--radius);
  color: #292929;
  background-color: var(--pink);
}
.video-card iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
  border: 0;
}
.play {
  width: 76px;
  height: 76px;
  position: absolute;
  inset: 50% auto auto 50%;
  transform: translate(-50%, -50%);
  background: white;
  border-radius: 50%;
  box-shadow: 0 18px 60px rgba(0, 0, 0, 0.18);
  transition: 0.35s var(--ease);
}
.play i {
  position: absolute;
  left: 53%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 0;
  height: 0;
  border-top: 9px solid transparent;
  border-bottom: 9px solid transparent;
  border-left: 14px solid var(--ink);
}
.video-card:hover .play {
  transform: translate(-50%, -50%) scale(1.12);
}
.feature-stack {
  margin-top: clamp(70px, 9vw, 130px);
  display: grid;
  gap: 32px;
}
.feature-card {
  display: grid;
  grid-template-columns: 1.3fr 0.7fr;
  min-height: 550px;
  overflow: hidden;
  border-radius: var(--radius);
  background: #f0efec;
}
.feature-card--reverse {
  grid-template-columns: 0.7fr 1.3fr;
}
.feature-card--reverse .feature-image {
  order: 2;
  background-color: #a498be;
}
.feature-image {
  min-height: 440px;
  background-color: #7d8bff;
  color: #222;
}
.feature-copy {
  padding: clamp(34px, 5vw, 72px);
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.feature-copy > span {
  color: var(--blue);
  font-size: 12px;
  font-weight: 800;
}
.feature-copy h3 {
  margin: 18px 0;
  font-size: clamp(32px, 4vw, 54px);
  line-height: 1.15;
}
.feature-copy p {
  color: var(--muted);
  line-height: 2;
  max-width: 420px;
}
.feature-copy a,
.text-link {
  margin-top: 30px;
  font-size: 13px;
  font-weight: 800;
}
.feature-copy a b,
.text-link b {
  display: inline-block;
  margin-right: 6px;
  transition: transform 0.2s;
}
.feature-copy a:hover b,
.text-link:hover b {
  transform: translateX(-6px);
}

.games {
  min-height: 730px;
  position: relative;
  overflow: hidden;
  padding: 120px 0 90px;
  color: white;
  background: #151019;
}
.games::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.5), transparent),
    radial-gradient(circle at 50% 100%, #e98bff 0, transparent 50%);
}
.games-orb {
  width: 430px;
  height: 430px;
  position: absolute;
  border-radius: 50%;
  filter: blur(40px);
  opacity: 0.75;
}
.games-orb--one {
  background: #ff54a5;
  top: -180px;
  left: 15%;
}
.games-orb--two {
  background: #4b35ff;
  bottom: -220px;
  right: 10%;
}
.section-heading--light {
  position: relative;
  z-index: 2;
}
.section-heading--light .section-kicker {
  color: var(--lime);
}
.section-heading--light p {
  color: rgba(255, 255, 255, 0.65);
}
.game-rail {
  position: relative;
  z-index: 2;
  display: flex;
  direction: ltr;
  gap: 16px;
  overflow-x: auto;
  padding: 15px max(24px, calc((100vw - 1180px) / 2));
  scrollbar-width: none;
  cursor: grab;
  user-select: none;
}
.game-rail::-webkit-scrollbar {
  display: none;
}
.game-rail.dragging {
  cursor: grabbing;
}
.game-pill {
  flex: 0 0 260px;
  height: 462px;
  padding: 28px;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  direction: ltr;
  overflow: hidden;
  color: white;
  background: #17120d;
  border-radius: 24px;
  box-shadow: 0 12px 0 rgba(0, 0, 0, 0.15);
  transition:
    transform 0.3s var(--ease),
    filter 0.3s;
}
.game-pill::after {
  content: "";
  position: absolute;
  inset: 45% 0 0;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.88));
}
.game-pill:hover {
  transform: translateY(-10px) rotate(-1deg);
  filter: brightness(1.12);
}
.game-pill b,
.game-pill small {
  position: relative;
  z-index: 2;
  text-shadow: 0 2px 12px #000;
}
.game-pill b {
  font-size: 19px;
}
.game-pill small {
  color: rgba(255, 255, 255, 0.78);
  margin-top: 6px;
}
.drag-note {
  position: relative;
  z-index: 2;
  text-align: center;
  margin-top: 30px;
  color: rgba(255, 255, 255, 0.6);
  font-size: 11px;
}
.drag-note span {
  margin-right: 7px;
  color: var(--lime);
}

.mini-grid {
  display: flex;
  direction: ltr;
  gap: 12px;
  margin: 0 calc(clamp(22px, 6vw, 90px) * -1);
  padding: 12px clamp(22px, 6vw, 90px) 24px;
  overflow-x: auto;
  scrollbar-width: none;
  cursor: grab;
  user-select: none;
}
.mini-grid::-webkit-scrollbar {
  display: none;
}
.mini-grid.dragging {
  cursor: grabbing;
}
.mini-card {
  flex: 0 0 250px;
  min-height: 444px;
  padding: 0;
  border-radius: 18px;
  background-color: #21190f;
  box-shadow: 0 12px 35px rgba(37, 25, 8, 0.16);
  transition:
    transform 0.4s var(--ease),
    filter 0.3s;
}
.mini-card:hover {
  transform: translateY(-8px);
  filter: brightness(1.08);
}
.mini-drag-note {
  margin: 20px 0 0;
  color: var(--muted);
  text-align: center;
  font-size: 12px;
}
.mini-drag-note span {
  margin-right: 7px;
  color: var(--blue);
}
.mafia {
  padding-top: clamp(70px, 8vw, 120px);
  padding-right: 0;
  padding-bottom: clamp(75px, 8vw, 120px);
  padding-left: 0;
  background: var(--paper);
}
.mafia-title {
  margin: 0 auto 18px;
  padding-inline: 18px;
  color: #000;
  font-size: clamp(24px, 2.15vw, 32px);
  font-weight: 700;
  line-height: 1.45;
  text-align: center;
}
.mafia-title span {
  font-size: 0.76em;
}
.mafia-stage {
  position: relative;
  width: 100%;
  padding-bottom: clamp(18px, 2vw, 30px);
  /* overflow: hidden; */
  background: #17100d;
}
.mafia-main-image {
  width: 100%;
  aspect-ratio: 1455 / 694;
  display: block;
  object-fit: cover;
  object-position: center;
}
.mafia-stage::after {
  content: "";
  position: absolute;
  z-index: 1;
  right: 0;
  bottom: 0;
  left: 0;
  height: 31%;
  pointer-events: none;
  background: linear-gradient(0deg, rgba(8, 5, 4, 0.68), transparent);
}
.mafia-cast {
  position: absolute;
  z-index: 2;
  right: 0;
  bottom: -30px;
  left: 0;
  height: clamp(88px, 13.8vw, 203px);
  padding: 0;
  display: flex;
  align-items: end;
  gap: clamp(22px, 2.4vw, 38px);
  direction: ltr;
  overflow-x: auto;
  overflow-y: hidden;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  scrollbar-width: none;
  cursor: grab;
  user-select: none;
  overscroll-behavior-inline: contain;
}
.mafia-cast::-webkit-scrollbar {
  display: none;
}
.mafia-cast.dragging {
  cursor: grabbing;
}
.mafia-cast img {
  flex: 0 0 clamp(105px, 10.2vw, 150px);
  width: clamp(105px, 10.2vw, 150px);
  max-height: 100%;
  display: block;
  -webkit-user-drag: none;
  object-fit: contain;
  object-position: center bottom;
  scroll-snap-align: start;
  filter: drop-shadow(0 7px 8px rgba(0, 0, 0, 0.48));
}

.location {
  min-height: 820px;
  position: relative;
  color: white;
  display: flex;
  align-items: end;
  overflow: hidden;
}
.location-image,
.location-overlay {
  position: absolute;
  inset: 0;
}
.location-image {
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  transform: scale(1.02);
}
.location-image--one {
  background-image: url("./assets/images/iranmall (2).png");
}
/* .location-image-- {
  background-image: url("./assets/images/iranmall (2).png");
  opacity: 0;
  animation: scenicCrossfade 16s ease-in-out 4s infinite;
} */
.location-overlay {
  background: linear-gradient(
    0deg,
    rgba(5, 5, 8, 0.95),
    rgba(5, 5, 8, 0.08) 75%
  );
}
.location-copy {
  position: relative;
  z-index: 2;
  width: 100%;
  padding: clamp(50px, 7vw, 100px);
}
.location-copy .section-kicker {
  color: var(--lime);
}
.location-copy h2 {
  font-size: clamp(45px, 6vw, 82px);
  line-height: 1;
  max-width: 800px;
  margin: 20px 0 15px;
}
.location-copy > p {
  font-size: 22px;
}
.location-stats {
  margin-top: 48px;
  display: flex;
  gap: 70px;
}
.location-stats div {
  max-width: 210px;
  border-right: 1px solid rgba(255, 255, 255, 0.35);
  padding-right: 20px;
  display: grid;
  gap: 8px;
}
.location-stats strong {
  font-size: 21px;
}
.location-stats span {
  color: rgba(255, 255, 255, 0.65);
  font-size: 12px;
  line-height: 1.7;
}

.plans {
  background: #f0efed;
}
.plan-shell {
  max-width: 1120px;
  margin: auto;
  padding: 22px;
  border-radius: var(--radius);
  background: white;
  box-shadow: 0 30px 80px rgba(20, 15, 50, 0.08);
}
.plan-tabs {
  display: flex;
  gap: 8px;
  direction: ltr;
}
.plan-tabs button {
  border: 0;
  background: #eff2f7;
  padding: 10px 18px;
  border-radius: 100px;
  font: 700 11px Arial;
  cursor: pointer;
  transition: 0.25s;
}
.plan-tabs button.active {
  background: #0d1c32;
  color: white;
  transform: scale(1.04);
}
.plan-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 36px 12px 24px;
}
.plan-title small {
  font: 10px Arial;
  color: var(--muted);
}
.plan-title h3 {
  margin: 7px 0 0;
  font-size: 19px;
}
.plan-title > span {
  color: var(--blue);
  background: #efedff;
  padding: 9px 13px;
  border-radius: 100px;
  font-size: 11px;
  font-weight: 800;
}
.plan-items {
  display: grid;
  gap: 7px;
}
.plan-items article {
  min-height: 100px;
  padding: 18px;
  display: grid;
  grid-template-columns: 150px 1fr 100px;
  gap: 22px;
  align-items: center;
  border: 1px solid #ecebea;
  border-radius: 15px;
  transition:
    border 0.2s,
    transform 0.2s;
}
.plan-items article:hover {
  border-color: #b9b0ff;
  transform: translateX(-3px);
}
.plan-items h4 {
  margin: 0 0 7px;
  font-size: 14px;
}
.plan-items p {
  margin: 0;
  color: var(--muted);
  font-size: 11px;
}
.plan-items article > strong {
  direction: ltr;
  font: 500 16px Arial;
  text-align: left;
}
.stepper {
  width: max-content;
  direction: ltr;
  display: flex;
  align-items: center;
  gap: 14px;
}
.stepper button {
  width: 28px;
  height: 28px;
  border: 1px solid #ddd;
  background: white;
  border-radius: 8px;
  cursor: pointer;
}
.stepper b {
  min-width: 12px;
  text-align: center;
}
.plan-total {
  min-height: 100px;
  margin-top: 10px;
  padding: 15px 20px;
  display: grid;
  grid-template-columns: 1fr 1fr auto;
  align-items: center;
  gap: 28px;
  color: white;
  background: var(--blue);
  border-radius: 17px;
}
.plan-total span {
  display: block;
  font-size: 11px;
  opacity: 0.75;
}
.plan-total strong {
  direction: ltr;
  font: 800 36px Arial;
}
.plan-total strong small {
  font-size: 13px;
}
.plan-total a {
  padding: 15px 20px;
  background: white;
  color: var(--blue);
  border-radius: 100px;
  font-size: 12px;
  font-weight: 800;
}
.total-old {
  direction: ltr;
}
.total-old span {
  direction: rtl;
  text-align: left;
}
.total-old s {
  font: 700 15px Arial;
  margin-right: 10px;
}
.total-old b {
  padding: 4px 6px;
  color: white;
  background: #ff4d62;
  font: 700 10px Arial;
}

.proposal-builder {
  min-height: 1056px;
  padding: 26px clamp(24px, 8.33vw, 120px) 112px;
  color: #000;
  background: #f3f3f3;
}
.package-shell {
  max-width: 1196px;
  margin: 0 auto;
}
.simple-plan-tabs {
  width: 375px;
  height: 48px;
  margin-right: 0;
  margin-left: auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 6px;
  direction: ltr;
}
.simple-plan-tabs button {
  padding: 0;
  color: #00254a;
  border: 0;
  border-radius: 999px;
  background: #e4e6e8;
  font:
    700 17px Peyda,
    sans-serif;
  cursor: pointer;
  transition:
    background 0.2s,
    color 0.2s,
    transform 0.2s;
}
.simple-plan-tabs button:hover {
  transform: translateY(-1px);
}
.simple-plan-tabs button.active {
  color: #fff;
  background: #00254a;
}
.simple-plan-head {
  width: 233px;
  margin: 24px 0 24px auto;
}
.simple-plan-head > div {
  display: flex;
  align-items: rigjt;
  justify-content: right;
  gap: 7px;
  white-space: nowrap;
  direction: ltr;
}
.simple-plan-head .plan-en {
  color: #00254a;
  font-size: 12px;
}
.simple-plan-head i {
  width: 1px;
  height: 16px;
  display: block;
  background: #d9d9d9;
}
.simple-plan-head h2 {
  margin: 0;
  font-size: 14px;
  line-height: 16px;
}
.simple-plan-head p {
  margin: 8px 0 0;
  color: #00254a;
  font-size: 10px;
  text-align: right;
}
.package-source-note {
  margin: 0 0 18px;
  padding: 12px 14px;
  color: #536274;
  border: 1px solid #dde2e7;
  border-radius: 8px;
  background: #fff;
  font-size: 11px;
}
.simple-plan-items {
  display: grid;
  gap: 16px;
}
.simple-plan-item {
  min-height: 108px;
  padding: 10px 8px;
  display: flex;
  align-items: stretch;
  justify-content: space-between;
  border-radius: 8px;
  background: #fff;
}
.simple-item-copy {
  padding: 2px 0 0;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  text-align: right;
}
.simple-item-copy > span {
  color: #667689;
  font:
    10px Arial,
    Peyda,
    sans-serif;
  direction: rtl;
}
.simple-item-copy h3 {
  margin: 0;
  font-size: 14px;
  line-height: 28px;
}
.simple-item-copy p {
  margin: 0 0 4px;
  font-size: 12px;
}
.simple-item-tools {
  width: 120px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-end;
  direction: ltr;
}
.simple-item-tools .stepper {
  height: 32px;
  display: grid;
  grid-template-columns: repeat(3, 40px);
  gap: 0;
}
.simple-item-tools .stepper button,
.simple-item-tools .stepper b {
  width: 40px;
  height: 40px;
  padding: 0;
  display: grid;
  place-items: center;
  border: 1px solid #e8e8e8;
  background: #fff;
  font:
    400 24px Arial,
    sans-serif;
  cursor: pointer;
}
.simple-item-tools .stepper b {
  border-right: 0;
  border-left: 0;
  font:
    700 16px Peyda,
    sans-serif;
}
.simple-item-tools strong {
  font:
    700 20px Peyda,
    sans-serif;
  direction: ltr;
}
.simple-item-tools strong small {
  font-size: 12px;
  font-weight: 400;
}
.package-total-bar {
  min-height: 110px;
  margin-top: 28px;
  padding: 0 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  direction: ltr;
  color: #fff;
  border-radius: 14px;
  background: #2d11ff;
}
.package-prices {
  align-self: stretch;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0;
  direction: ltr;
}
.package-price-before,
.package-price-final {
  display: flex;
  align-items: center;
  gap: 16px;
}
.package-price-before s {
  position: relative;
  text-decoration: none;
  font:
    700 28px Peyda,
    sans-serif;
  opacity: 0.9;
}
.package-price-before s::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 50%;
  height: 2px;
  background: #fff;
  transform: rotate(-6deg);
}
.package-price-before small,
.package-price-final small {
  font-size: 0.65em;
  font-weight: 400;
}
.package-price-before span {
  padding: 2px 8px;
  background: #f00;
  font:
    700 28px Peyda,
    sans-serif;
}
.package-price-final strong {
  font:
    700 40px Peyda,
    sans-serif;
}
.package-price-final > span {
  direction: rtl;
  font-size: 24px;
}
.print-package {
  width: 203px;
  height: 64px;
  color: #2d11ff;
  border: 0;
  border-radius: 999px;
  background: #fff;
  font-size: 21px;
  font-weight: 700;
  cursor: pointer;
  transition:
    transform 0.2s,
    box-shadow 0.2s;
}
.print-package:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.18);
}
.print-package:active {
  transform: translateY(0);
}
.builder-head {
  min-height: 105px;
  display: grid;
  grid-template-columns: 340px 1fr;
  align-items: center;
  gap: 60px;
  padding-bottom: 28px;
  border-bottom: 1px solid var(--builder-border);
  direction: ltr;
}
.builder-head > div {
  direction: rtl;
}
.builder-head > div > span {
  color: #906cff;
  font: 700 10px Arial;
  letter-spacing: 2px;
}
.builder-head h2 {
  margin: 6px 0 3px;
  font-size: 22px;
}
.builder-head p {
  margin: 0;
  color: #747b9b;
  font-size: 12px;
}
.builder-head ol {
  max-width: 620px;
  margin: 0 auto;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  list-style: none;
  direction: ltr;
}
.builder-head li {
  direction: rtl;
}
.builder-head li {
  position: relative;
  display: grid;
  place-items: center;
  gap: 7px;
  color: #5f6682;
  font-size: 11px;
}
.builder-head li:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 15px;
  right: 50%;
  width: 100%;
  height: 1px;
  background: #272c4b;
}
.builder-head li b {
  width: 31px;
  height: 31px;
  z-index: 1;
  display: grid;
  place-items: center;
  border: 1px solid #333957;
  border-radius: 50%;
  background: #0b1027;
  font: 500 12px Arial;
}
.builder-head li.active {
  color: white;
}
.builder-head li.active b {
  border: 0;
  background: linear-gradient(135deg, #805dff, #bd2eea);
  box-shadow: 0 0 22px #7549ff99;
}
.builder-head li.active::after {
  background: linear-gradient(90deg, #683dff, #272c4b);
}
.builder-section-title {
  margin: 24px 0 18px;
  font-size: 16px;
}
.package-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  direction: ltr;
}
.plan-tabs .package-card {
  min-height: 205px;
  padding: 18px;
  position: relative;
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 11px;
  direction: rtl;
  text-align: right;
  color: #dddfff;
  border: 1px solid var(--package-color);
  border-radius: 8px;
  background: linear-gradient(
    145deg,
    color-mix(in srgb, var(--package-color) 12%, transparent),
    rgba(7, 13, 34, 0.75)
  );
  cursor: pointer;
  transition: 0.3s var(--ease);
}
.plan-tabs .package-card:hover,
.plan-tabs .package-card.active {
  transform: translateY(-5px);
  box-shadow: 0 0 28px color-mix(in srgb, var(--package-color) 25%, transparent);
}
.plan-tabs .package-card.active::before {
  content: "پیشنهادی";
  position: absolute;
  top: -8px;
  right: 10px;
  padding: 3px 9px;
  color: white;
  background: var(--package-color);
  border-radius: 3px;
  font-size: 8px;
}
.package-card--purple {
  --package-color: #873dff;
}
.package-card--pink {
  --package-color: #bd39c7;
}
.package-card--green {
  --package-color: #4da66f;
}
.package-card--gold {
  --package-color: #b88422;
}
.package-card > i {
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  color: var(--package-color);
  background: color-mix(in srgb, var(--package-color) 18%, transparent);
  border: 1px solid var(--package-color);
  border-radius: 16px;
  font: normal 28px serif;
  transform: rotate(30deg);
}
.package-card > span {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.package-card > span strong {
  color: var(--package-color);
  font-size: 15px;
}
.package-card > span small {
  color: #8b8fa9;
  direction: ltr;
  text-align: right;
  font: 11px Arial;
}
.package-card > b {
  grid-column: 2;
  align-self: end;
  font: 600 28px Arial;
  direction: ltr;
  text-align: right;
}
.package-card > b small {
  display: block;
  margin-top: 3px;
  color: #8b8fa9;
  font: 9px Peyda;
  direction: rtl;
}
.package-card > em {
  grid-column: 1/-1;
  padding: 9px;
  color: var(--package-color);
  border: 1px solid var(--package-color);
  border-radius: 7px;
  text-align: center;
  font-style: normal;
  font-size: 11px;
}
.builder-workspace {
  display: grid;
  grid-template-columns: 200px minmax(450px, 1fr) 290px;
  gap: 16px;
  direction: ltr;
}
.builder-categories,
.builder-products,
.proposal-summary {
  direction: rtl;
}
.builder-categories,
.builder-products,
.proposal-summary {
  min-width: 0;
}
.builder-categories {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.builder-categories > button {
  padding: 10px 12px;
  display: grid;
  grid-template-columns: 20px 1fr auto;
  gap: 8px;
  text-align: right;
  color: #7e86a5;
  border: 1px solid transparent;
  border-radius: 6px;
  background: transparent;
  font-size: 11px;
  cursor: pointer;
}
.builder-categories > button b {
  width: 21px;
  height: 21px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #151b39;
  font: 9px Arial;
}
.builder-categories > button.active {
  color: #af83ff;
  border-color: #7138da;
  background: rgba(112, 47, 216, 0.11);
}
.builder-help {
  margin-top: 10px;
  padding: 18px 13px;
  border: 1px solid var(--builder-border);
  border-radius: 8px;
}
.builder-help p {
  color: #717896;
  font-size: 10px;
  line-height: 1.7;
}
.builder-help a {
  padding: 9px;
  display: block;
  color: #bd60ff;
  border: 1px solid #8a36ba;
  border-radius: 6px;
  text-align: center;
  font-size: 10px;
}
.builder-search {
  height: 38px;
  margin-bottom: 9px;
  display: flex;
  align-items: center;
  border: 1px solid var(--builder-border);
  border-radius: 6px;
  background: rgba(7, 13, 34, 0.68);
}
.builder-search input {
  width: 100%;
  padding: 0 13px;
  color: white;
  border: 0;
  outline: 0;
  background: transparent;
  font: 11px Peyda;
}
.builder-search span {
  padding: 10px;
  color: #6e7495;
}
.product-group,
.collapsed-group {
  border: 1px solid var(--builder-border);
  background: rgba(7, 13, 34, 0.72);
}
.product-group {
  border-radius: 8px;
  overflow: hidden;
}
.product-group h4 {
  margin: 0;
  padding: 12px 15px;
  display: flex;
  justify-content: space-between;
  color: #b7bbd2;
  border-bottom: 1px solid var(--builder-border);
  font-size: 11px;
}
.product-group h4 span {
  color: #626a8c;
}
.product-group article {
  min-height: 64px;
  padding: 8px 11px;
  display: grid;
  grid-template-columns: 35px minmax(150px, 1fr) 110px 75px;
  align-items: center;
  gap: 8px;
  border-bottom: 1px solid rgba(110, 102, 186, 0.15);
}
.product-group article:last-child {
  border-bottom: 0;
}
.product-group article > i {
  width: 30px;
  height: 30px;
  display: grid;
  place-items: center;
  color: #9b60ff;
  border: 1px solid #623ab5;
  border-radius: 50%;
  font-style: normal;
}
.product-group article > div:not(.stepper) {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.product-group article b {
  font-size: 10px;
}
.product-group article small {
  color: #626a87;
  font-size: 8px;
}
.product-group article > strong {
  font: 500 14px Arial;
  direction: ltr;
  text-align: right;
}
.product-group article > strong small {
  display: block;
  font: 8px Peyda;
  direction: rtl;
}
.included {
  color: #5bcc82;
  font-size: 10px;
}
.product-group .stepper {
  justify-self: center;
  gap: 8px;
}
.product-group .stepper button {
  width: 24px;
  height: 24px;
  color: #8d94b4;
  border-color: #252c50;
  background: transparent;
}
.toggle {
  width: 31px;
  height: 17px;
  justify-self: center;
  position: relative;
  border: 0;
  border-radius: 20px;
  background: #4c526e;
  cursor: pointer;
}
.toggle::after {
  content: "";
  position: absolute;
  width: 13px;
  height: 13px;
  left: 2px;
  top: 2px;
  border-radius: 50%;
  background: #8f96b3;
  transition: 0.2s;
}
.toggle.on {
  background: #8645ec;
}
.toggle.on::after {
  left: 16px;
  background: white;
}
.collapsed-group {
  width: 100%;
  margin-top: 7px;
  padding: 13px;
  display: flex;
  justify-content: space-between;
  color: #868dab;
  border-radius: 7px;
  font: 10px Peyda;
  cursor: pointer;
}
.proposal-summary {
  padding: 14px;
  align-self: start;
  position: sticky;
  top: 80px;
  border: 1px solid var(--builder-border);
  border-radius: 10px;
  background: linear-gradient(
    150deg,
    rgba(19, 25, 62, 0.9),
    rgba(5, 10, 30, 0.95)
  );
}
.summary-title {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.summary-title > span {
  font-size: 12px;
  font-weight: 700;
}
.summary-title small {
  margin-right: 6px;
  padding: 3px 5px;
  color: #a776ff;
  background: #32255a;
  border-radius: 3px;
  font-size: 7px;
}
.summary-title i {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  color: #bd3aff;
  border: 1px solid #52348b;
  border-radius: 8px;
  font-style: normal;
  font-size: 24px;
}
.summary-plan {
  color: #a9aed1;
  font: 500 17px Arial;
  direction: ltr;
  text-align: right;
}
.summary-line {
  padding: 8px 0;
  display: flex;
  justify-content: space-between;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
  font-size: 9px;
}
.summary-line b {
  font: 500 9px Arial;
}
.summary-changes {
  padding: 12px 0;
  display: grid;
  gap: 6px;
  color: #6e7594;
  font-size: 9px;
}
.summary-changes span {
  display: flex;
  justify-content: space-between;
}
.summary-changes span:first-child b {
  color: #4fc97d;
}
.summary-changes span:last-child b {
  color: #ff515b;
}
.summary-total {
  padding: 16px;
  text-align: center;
  border: 1px solid var(--builder-border);
  border-radius: 7px;
  background: rgba(12, 18, 48, 0.7);
}
.summary-total span {
  display: block;
  font-size: 10px;
  font-weight: 700;
}
.summary-total strong {
  display: block;
  color: #a374ff;
  font: 700 36px Arial;
  direction: ltr;
}
.summary-total small {
  color: #8a91ae;
  font-size: 8px;
}
.summary-total p {
  color: #68708e;
  font-size: 8px;
  line-height: 1.7;
}
.download-proposal {
  width: 100%;
  margin-top: 10px;
  padding: 12px;
  display: flex;
  justify-content: center;
  gap: 20px;
  color: white;
  border: 0;
  border-radius: 6px;
  background: linear-gradient(100deg, #6045ff, #c513e8);
  font-weight: 700;
  cursor: pointer;
  box-shadow: 0 9px 25px rgba(121, 53, 255, 0.2);
}
.contact-sales {
  margin-top: 8px;
  padding: 10px;
  display: block;
  text-align: center;
  border: 1px solid #646b91;
  border-radius: 6px;
  font-size: 10px;
}
.secure-note {
  margin-top: 9px;
  display: block;
  text-align: center;
  color: #555d7b;
  font-size: 8px;
}

footer {
  padding: 50px clamp(22px, 6vw, 90px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid var(--line);
  background: var(--ink);
  color: white;
  font-size: 12px;
}
.brand--footer .brand-mark {
  width: 22px;
  height: 22px;
}
.reveal {
  opacity: 0;
  transform: translateY(34px);
  transition:
    opacity 0.8s var(--ease),
    transform 0.8s var(--ease);
}
.reveal.in-view {
  opacity: 1;
  transform: none;
}

@keyframes bob {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(6px);
  }
}
@keyframes heroProgress {
  from {
    width: 0;
  }
  to {
    width: 100%;
  }
}
@keyframes coverDrift {
  from {
    transform: scale(1.08);
  }
  to {
    transform: scale(1.01);
  }
}
@keyframes scenicCrossfade {
  0%,
  38%,
  100% {
    opacity: 0;
  }
  48%,
  88% {
    opacity: 1;
  }
}

@media (max-width: 800px) {
  :root {
    --radius: 18px;
  }
  .site-header {
    height: 58px;
  }
  .nav {
    position: fixed;
    top: 58px;
    left: 0;
    right: 0;
    padding: 30px 24px;
    display: grid;
    gap: 24px;
    background: var(--paper);
    transform: translateY(-130%);
    transition: 0.4s var(--ease);
    z-index: -1;
  }
  .nav.open {
    transform: none;
  }
  .menu-button {
    display: block;
  }
  .menu-button.open span:first-child {
    transform: translateY(3.5px) rotate(45deg);
  }
  .menu-button.open span:last-child {
    transform: translateY(-3.5px) rotate(-45deg);
  }
  .site-header.cover-mode .nav.open {
    opacity: 1;
    pointer-events: auto;
    color: var(--ink);
    transform: none;
  }
  .site-header.cover-mode .menu-button.open span {
    background: var(--ink);
  }
  .cover {
    min-height: 850px;
  }
  .cover-photo {
    background-position: 35% center;
  }
  .cover-photo--night {
    background-position: center;
  }
  .cover-photo::after {
    background: linear-gradient(
      180deg,
      rgba(2, 4, 20, 0.5),
      #05041e 72%,
      #030617 100%
    );
  }
  .cover-content {
    top: 100px;
    right: 22px;
    left: 22px;
    width: auto;
    text-align: right;
  }
  .cover-label {
    margin-bottom: 70px;
    font-size: 16px;
  }
  .cover-content h1 {
    font-size: 47px;
  }
  .cover-content h2 {
    font-size: 25px;
    line-height: 1.45;
  }
  .cover-content p {
    font-size: 12px;
    line-height: 1.9;
    color: rgba(255, 255, 255, 0.62);
  }
  .cover-cta {
    margin-top: 28px;
    padding: 12px 19px;
    font-size: 16px;
  }
  .cover-stats {
    left: 16px;
    right: 16px;
    bottom: 24px;
    width: auto;
    min-height: 120px;
    padding: 19px 8px;
    gap: 5px;
    border-radius: 20px;
  }
  .cover-stats strong {
    font-size: 13px;
  }
  .cover-stats span {
    font-size: 8px;
  }
  .stat-icon {
    transform: scale(0.8);
  }
  .cover-scroll {
    display: none;
  }
  .hero {
    min-height: 940px;
  }
  .hero-image {
    inset: 58px 0 0;
  }
  .hero-grid {
    background-size: 42px 42px;
  }
  .hero-copy {
    align-self: start;
    padding: 140px 22px 0;
  }
  .hero h1 {
    font-size: 58px;
    letter-spacing: -2.5px;
    margin-top: 22px;
  }
  .hero-copy > p {
    font-size: 16px;
    max-width: 290px;
    line-height: 1.8;
  }
  .hero-meta {
    position: absolute;
    top: 620px;
    margin: 0;
    width: calc(100vw - 44px);
    justify-content: space-between;
  }
  .hero-controls {
    left: 22px;
    bottom: 72px;
  }
  .hero-progress {
    width: 65px;
  }
  .scroll-hint {
    display: none;
  }
  .section {
    padding: 85px 16px;
  }
  .section-heading {
    margin-bottom: 42px;
  }
  .section-heading h2 {
    font-size: 42px;
    letter-spacing: -2px;
  }
  .video-card {
    aspect-ratio: 16/9;
  }
  .play {
    width: 66px;
    height: 66px;
  }
  .feature-stack {
    margin-top: 55px;
    gap: 16px;
  }
  .feature-card,
  .feature-card--reverse {
    grid-template-columns: 1fr;
  }
  .feature-card--reverse .feature-image {
    order: 0;
  }
  .feature-image {
    min-height: 380px;
  }
  .feature-copy {
    padding: 34px 25px 42px;
  }
  .feature-copy h3 {
    font-size: 34px;
  }
  .games {
    min-height: 700px;
    padding-top: 90px;
  }
  .game-pill {
    flex-basis: 210px;
    height: 374px;
    padding: 20px;
  }
  .game-pill b {
    font-size: 16px;
  }
  .mini-card {
    flex-basis: 210px;
    min-height: 374px;
  }
  .mafia {
    padding: 70px 0;
  }
  .mafia-title {
    margin-bottom: 14px;
    font-size: 22px;
  }
  .mafia-stage {
    min-height: 360px;
    padding-bottom: 16px;
  }
  .mafia-main-image {
    height: 360px;
    aspect-ratio: auto;
  }
  .mafia-cast {
    height: 112px;
    gap: 22px;
  }
  .mafia-cast img {
    flex-basis: 82px;
    width: 82px;
  }
  .location {
    min-height: 760px;
  }
  .location-copy {
    padding: 50px 22px;
  }
  .location-copy h2 {
    font-size: 45px;
  }
  .location-stats {
    gap: 18px;
  }
  .location-stats div {
    padding-right: 12px;
  }
  .plans {
    padding-left: 9px;
    padding-right: 9px;
  }
  .plan-shell {
    padding: 9px;
  }
  .plan-tabs {
    overflow-x: auto;
    padding: 6px;
  }
  .plan-tabs button {
    padding: 9px 13px;
  }
  .plan-title {
    padding: 28px 10px 18px;
  }
  .plan-title > span {
    display: none;
  }
  .plan-items article {
    grid-template-columns: 1fr auto;
    gap: 12px;
    padding: 15px;
  }
  .stepper {
    grid-column: 1/-1;
    order: 2;
  }
  .plan-items article > strong {
    grid-column: 2;
    grid-row: 1;
  }
  .plan-total {
    position: sticky;
    bottom: 8px;
    z-index: 5;
    grid-template-columns: 1fr auto;
    padding: 12px;
  }
  .total-old {
    display: none;
  }
  .plan-total a {
    padding: 13px 14px;
  }
  .plan-total strong {
    font-size: 28px;
  }
  .proposal-builder {
    min-height: auto;
    padding: 28px 16px 70px;
  }
  .simple-plan-tabs {
    width: 100%;
    max-width: 375px;
  }
  .simple-plan-tabs button {
    font-size: 15px;
  }
  .simple-plan-head {
    margin-top: 24px;
  }
  .simple-plan-items {
    gap: 12px;
  }
  .simple-plan-item {
    min-height: 148px;
    padding: 14px;
    flex-direction: column;
    gap: 18px;
  }
  .simple-item-copy {
    min-height: 58px;
  }
  .simple-item-copy h3 {
    font-size: 13px;
  }
  .simple-item-tools {
    width: 100%;
    flex-direction: row;
    align-items: flex-end;
  }
  .simple-item-tools strong {
    font-size: 19px;
  }
  .package-total-bar {
    min-height: 210px;
    padding: 20px;
    flex-direction: column;
    align-items: stretch;
    gap: 18px;
  }
  .package-prices {
    align-self: auto;
  }
  .package-price-before span {
    font-size: 21px;
  }
  .package-price-final strong {
    font-size: 34px;
  }
  .package-price-final > span {
    margin-left: auto;
    font-size: 19px;
  }
  .print-package {
    width: 100%;
    height: 58px;
    font-size: 18px;
  }
  footer {
    text-align: center;
    flex-direction: column;
    gap: 20px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  .reveal {
    opacity: 1;
    transform: none;
  }
}
