/* HotOrders landing refresh */
:root {
  --rd-bg: #faf8f5;
  --rd-surface: #ffffff;
  --rd-ink: #17211d;
  --rd-muted: #67736d;
  --rd-line: #e7e3dd;
  --rd-primary: #f45b15;
  --rd-primary-dark: #c9430c;
  --rd-green: #10845a;
  --rd-teal: #0f766e;
  --rd-blue: #244c8f;
  --rd-gold: #c48622;
  --rd-radius-sm: 10px;
  --rd-radius: 16px;
  --rd-radius-lg: 24px;
  --rd-shadow-sm: 0 10px 28px rgba(23, 33, 29, .08);
  --rd-shadow: 0 24px 70px rgba(23, 33, 29, .13);
}

html,
body {
  background: var(--rd-bg);
  color: var(--rd-ink);
  letter-spacing: 0;
}

body {
  font-family: "Cairo", "Inter", sans-serif;
}

body a {
  text-decoration: none;
}

.container {
  max-width: 1180px;
}

.main-nav {
  top: 14px;
  width: calc(100% - 28px);
  margin-inline: 14px;
  border: 1px solid rgba(231, 227, 221, .86);
  border-radius: 18px;
  background: rgba(255, 255, 255, .91);
  box-shadow: 0 16px 45px rgba(23, 33, 29, .09);
  backdrop-filter: blur(14px);
}

body.page-scrolled .main-nav {
  top: 8px;
  border-color: rgba(231, 227, 221, .96);
  background: rgba(255, 255, 255, .96);
}

.main-nav .container {
  min-height: 72px;
  padding-block: 10px;
}

.nav-logo img {
  max-height: 46px;
  width: auto;
  object-fit: contain;
}

.nav-links {
  gap: 4px;
  padding: 5px;
  border: 1px solid #efebe4;
  border-radius: 14px;
  background: #fbfaf7;
}

.nav-links a {
  min-height: 38px;
  display: inline-flex;
  align-items: center;
  border-radius: 10px;
  padding: 8px 13px;
  color: #4d5a53;
  font-size: 14px;
  font-weight: 700;
  white-space: nowrap;
}

.nav-links a:hover,
.nav-links a.active-link {
  color: var(--rd-primary-dark);
  background: #fff;
  box-shadow: 0 8px 18px rgba(23, 33, 29, .07);
}

.nav-right {
  gap: 10px;
}

.btn-browse-web,
.btn-join,
.lang-current {
  height: 42px;
  border-radius: 11px;
  border: 1px solid var(--rd-line);
  background: var(--rd-surface);
  color: var(--rd-ink);
  font-weight: 800;
  box-shadow: none;
}

.btn-browse-web {
  background: var(--rd-ink);
  border-color: var(--rd-ink);
  color: #fff;
}

.btn-browse-web:hover,
.btn-join:hover,
.lang-current:hover {
  transform: translateY(-1px);
  box-shadow: var(--rd-shadow-sm);
}

.join-dd,
.lang-dd {
  border: 1px solid var(--rd-line);
  border-radius: 16px;
  box-shadow: var(--rd-shadow);
  overflow: hidden;
}

.mob-btn {
  border-radius: 11px;
  border: 1px solid var(--rd-line);
  background: #fff;
}

.hero.hero--v2 {
  position: relative;
  min-height: auto;
  padding: clamp(120px, 12vw, 160px) 0 58px;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(250, 248, 245, .98) 0%, rgba(250, 248, 245, .92) 46%, rgba(250, 248, 245, .38) 100%),
    url("../img/download-app.png") no-repeat right 11% bottom 64px / min(42vw, 520px),
    var(--rd-bg);
}

html[dir="rtl"] .hero.hero--v2 {
  background:
    linear-gradient(270deg, rgba(250, 248, 245, .98) 0%, rgba(250, 248, 245, .92) 46%, rgba(250, 248, 245, .38) 100%),
    url("../img/download-app.png") no-repeat left 11% bottom 64px / min(42vw, 520px),
    var(--rd-bg);
}

.hero.hero--v2::after {
  content: "";
  position: absolute;
  inset-inline: 0;
  bottom: 0;
  height: 1px;
  background: var(--rd-line);
}

.hero--v2 .hero-grid {
  display: grid;
  grid-template-columns: minmax(0, .94fr) minmax(360px, .76fr);
  gap: clamp(24px, 5vw, 72px);
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero--v2 .hero-content {
  text-align: start;
}

.hero--v2 .hero-logo {
  margin: 0 0 18px;
}

.hero--v2 .hero-logo img {
  width: auto;
  max-width: 154px;
  max-height: 58px;
  object-fit: contain;
}

.hero--v2 .hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  min-height: 38px;
  padding: 7px 14px;
  border: 1px solid rgba(244, 91, 21, .2);
  border-radius: 999px;
  background: rgba(255, 255, 255, .78);
  color: var(--rd-primary-dark);
  font-size: 13px;
  font-weight: 800;
  box-shadow: 0 10px 28px rgba(23, 33, 29, .06);
}

.hero--v2 .hero-badge .dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--rd-green);
}

.hero--v2 h1 {
  max-width: 12ch;
  margin: 18px 0 16px;
  color: var(--rd-ink);
  font-size: clamp(44px, 7vw, 82px);
  font-weight: 900;
  line-height: .98;
  letter-spacing: 0;
}

.hero--v2 .hero-content > p {
  max-width: 575px;
  margin: 0 0 30px;
  color: var(--rd-muted);
  font-size: clamp(16px, 1.7vw, 20px);
  font-weight: 600;
  line-height: 1.9;
}

.hero--v2 .hero-btns {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 30px;
}

.hero--v2 .hero-btn {
  min-height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  border-radius: 13px;
  padding: 13px 18px;
  font-size: 15px;
  font-weight: 900;
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}

.hero--v2 .hero-btn svg {
  width: 19px;
  height: 19px;
}

.hero--v2 .hero-btn--vendor {
  background: var(--rd-primary);
  border: 1px solid var(--rd-primary);
  color: #fff;
  box-shadow: 0 16px 34px rgba(244, 91, 21, .24);
}

.hero--v2 .hero-btn--delivery {
  background: #fff;
  border: 1px solid var(--rd-line);
  color: var(--rd-ink);
}

.hero--v2 .hero-btn:hover {
  transform: translateY(-2px);
  box-shadow: var(--rd-shadow-sm);
}

.hero--v2 .hero-trust {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  max-width: 650px;
}

.hero--v2 .hero-trust .item {
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
  padding: 12px;
  border: 1px solid rgba(231, 227, 221, .9);
  border-radius: 14px;
  background: rgba(255, 255, 255, .76);
  box-shadow: 0 10px 24px rgba(23, 33, 29, .05);
}

.hero--v2 .hero-trust .ic {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  flex: 0 0 38px;
  border-radius: 11px;
  background: #edf7f3;
  color: var(--rd-green);
}

.hero--v2 .hero-trust .ic svg {
  width: 20px;
  height: 20px;
}

.hero--v2 .hero-trust .tx {
  min-width: 0;
}

.hero--v2 .hero-trust .tx b {
  display: block;
  color: var(--rd-ink);
  font-size: 14px;
  font-weight: 900;
  white-space: nowrap;
}

.hero--v2 .hero-trust .tx span {
  display: block;
  color: var(--rd-muted);
  font-size: 12px;
  font-weight: 700;
  white-space: nowrap;
}

.hero--v2 .hero-visual {
  position: relative;
  min-height: 470px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero--v2 .hero-illustration-bg {
  position: absolute;
  inset: 28px 0 auto;
  height: 360px;
  opacity: .2;
  pointer-events: none;
  overflow: hidden;
}

.hero--v2 .hero-illustration-bg svg,
.hero--v2 .hero-illustration-bg img {
  width: 100%;
  max-width: 540px;
  height: auto;
}

.hero--v2 .hero-app-mock {
  position: relative;
  z-index: 2;
  width: min(270px, 72%);
  border: 10px solid #17211d;
  border-radius: 32px;
  background: #17211d;
  box-shadow: 0 36px 78px rgba(23, 33, 29, .28);
}

.hero--v2 .hero-app-mock .screen {
  overflow: hidden;
  border-radius: 22px;
  background: #fff;
}

.hero--v2 .app-head {
  padding: 18px 16px;
  background: var(--rd-ink);
  color: #fff;
}

.hero--v2 .app-head small,
.hero--v2 .app-head b {
  display: block;
}

.hero--v2 .app-head small {
  color: rgba(255, 255, 255, .68);
  font-size: 12px;
}

.hero--v2 .app-head b {
  margin-top: 4px;
  font-size: 18px;
  font-weight: 900;
}

.hero--v2 .app-body {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 14px;
}

.hero--v2 .app-row {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px;
  border: 1px solid #efebe4;
  border-radius: 13px;
  background: #fbfaf7;
}

.hero--v2 .app-row .thumb {
  width: 36px;
  height: 36px;
  flex: 0 0 36px;
  border-radius: 10px;
}

.hero--v2 .app-row .ln1,
.hero--v2 .app-row .ln2 {
  height: 8px;
  border-radius: 999px;
  background: #e2ddd5;
}

.hero--v2 .app-row .ln1 {
  width: 74%;
  margin-bottom: 7px;
}

.hero--v2 .app-row .ln2 {
  width: 46%;
  background: #eee9e1;
}

.hero--v2 .app-cta {
  margin-top: 4px;
  padding: 12px;
  border-radius: 12px;
  background: var(--rd-primary);
  color: #fff;
  text-align: center;
  font-size: 13px;
  font-weight: 900;
}

.hero--v2 .float-badge {
  position: absolute;
  z-index: 3;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 10px 13px;
  border: 1px solid var(--rd-line);
  border-radius: 13px;
  background: #fff;
  color: var(--rd-ink);
  font-size: 13px;
  font-weight: 900;
  box-shadow: var(--rd-shadow-sm);
}

.hero--v2 .float-badge svg {
  width: 16px;
  height: 16px;
}

.hero--v2 .float-badge.fb-top {
  top: 54px;
  inset-inline-end: 28px;
  color: var(--rd-gold);
}

.hero--v2 .float-badge.fb-bot {
  bottom: 78px;
  inset-inline-start: 30px;
  color: var(--rd-green);
}

.sec-header {
  max-width: 680px;
  margin: 0 auto 34px;
  text-align: center;
}

.sec-header h2,
.earn-top h2,
.zone-text-side h2,
.cta-info h2 {
  color: var(--rd-ink);
  font-size: clamp(28px, 3.5vw, 44px);
  font-weight: 900;
  line-height: 1.22;
  letter-spacing: 0;
}

.sec-header p,
.earn-top p,
.zone-text-side p {
  color: var(--rd-muted);
  font-size: 16px;
  font-weight: 600;
  line-height: 1.85;
}

.services-section,
.features,
.earn,
.special,
.stats,
.testimonials,
.cta-manage,
.zones {
  padding: clamp(54px, 7vw, 92px) 0;
  background: #fff;
}

.services-section {
  background: #fff;
}

.services-section .sec-header h2 {
  max-width: 650px;
  margin-inline: auto;
}

.services-section .svc-icons {
  display: flex;
  gap: 10px;
  padding: 8px;
  border: 1px solid var(--rd-line);
  border-radius: 17px;
  background: #fbfaf7;
}

.services-section .svc-icon-btn {
  min-width: 126px;
  min-height: 92px;
  border: 1px solid transparent;
  border-radius: 13px;
  background: transparent;
  color: var(--rd-muted);
  font-weight: 900;
}

.services-section .svc-icon-btn .ico {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background: #fff;
  box-shadow: 0 7px 18px rgba(23, 33, 29, .06);
}

.services-section .svc-icon-btn .ico img {
  width: 28px;
  height: 28px;
  object-fit: contain;
}

.services-section .svc-icon-btn.active,
.services-section .svc-icon-btn:hover {
  border-color: rgba(244, 91, 21, .22);
  background: #fff;
  color: var(--rd-ink);
  box-shadow: var(--rd-shadow-sm);
}

.services-section .svc-panels {
  margin-top: 22px;
}

.services-section .svc-panel {
  display: none;
  grid-template-columns: minmax(0, 1fr) minmax(260px, .64fr);
  gap: 28px;
  align-items: center;
  min-height: 350px;
  padding: clamp(24px, 4vw, 42px);
  border: 1px solid var(--rd-line);
  border-radius: var(--rd-radius-lg);
  background:
    linear-gradient(90deg, #fff 0%, #fff 54%, #f7f4ef 100%);
  box-shadow: var(--rd-shadow-sm);
}

html[dir="rtl"] .services-section .svc-panel {
  background:
    linear-gradient(270deg, #fff 0%, #fff 54%, #f7f4ef 100%);
}

.services-section .svc-panel.active {
  display: grid;
}

.services-section .svc-eyebrow {
  display: inline-flex;
  min-height: 32px;
  align-items: center;
  padding: 5px 11px;
  border-radius: 999px;
  background: #edf7f3;
  color: var(--rd-green);
  font-size: 12px;
  font-weight: 900;
}

.services-section .svc-text h3 {
  margin: 14px 0 12px;
  color: var(--rd-ink);
  font-size: clamp(28px, 3vw, 42px);
  font-weight: 900;
}

.services-section .venture-content-box {
  max-width: 570px;
  color: var(--rd-muted);
  font-size: 16px;
  font-weight: 600;
  line-height: 1.9;
}

.services-section .svc-points {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-top: 22px;
}

.services-section .svc-points span,
.newsletter-points span {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 7px 12px;
  border: 1px solid var(--rd-line);
  border-radius: 999px;
  background: #fff;
  color: #435048;
  font-size: 13px;
  font-weight: 800;
}

.services-section .svc-img {
  display: flex;
  align-items: center;
  justify-content: center;
}

.services-section .img-card {
  width: min(100%, 330px);
  aspect-ratio: 1 / .86;
  display: grid;
  place-items: center;
  padding: 26px;
  border: 1px solid var(--rd-line);
  border-radius: 22px;
  background: #fff;
  box-shadow: var(--rd-shadow-sm);
}

.services-section .img-card img {
  max-width: 100%;
  max-height: 230px;
  object-fit: contain;
}

.svc-nav,
.slider-nav {
  gap: 10px;
}

.svc-arrow,
.slider-arrow {
  width: 42px;
  height: 42px;
  border: 1px solid var(--rd-line);
  border-radius: 12px;
  background: #fff;
  color: var(--rd-ink);
  box-shadow: var(--rd-shadow-sm);
}

.svc-arrow:hover,
.slider-arrow:hover {
  background: var(--rd-ink);
  color: #fff;
}

.marquee {
  border-block: 1px solid #eadfd2;
  background: #fff7ef;
  color: var(--rd-primary-dark);
}

.mq-item {
  font-weight: 900;
}

.features {
  background: var(--rd-bg);
}

.feat-grid,
.earn-grid,
.stats-grid,
.test-grid {
  gap: 16px;
}

.features .feat-card,
.special .sp-card,
.earn .earn-card,
.stats .stat-card,
.testimonials .test-card {
  border: 1px solid var(--rd-line);
  border-radius: var(--rd-radius);
  background: #fff;
  box-shadow: var(--rd-shadow-sm);
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}

.features .feat-card:hover,
.special .sp-card:hover,
.earn .earn-card:hover,
.stats .stat-card:hover,
.testimonials .test-card:hover {
  transform: translateY(-4px);
  border-color: rgba(244, 91, 21, .24);
  box-shadow: var(--rd-shadow);
}

.features .feat-card {
  min-height: 210px;
  padding: 24px;
}

.features .feat-ico,
.special .sp-ico,
.earn-card-icon,
.stat-icon {
  border-radius: 14px;
  background: #f3f8f5;
  color: var(--rd-green);
}

.features .feat-card h4,
.special .sp-card h4,
.earn-card h3 {
  color: var(--rd-ink);
  font-weight: 900;
}

.features .feat-card p,
.special .sp-card p,
.earn-card > p,
.test-text {
  color: var(--rd-muted);
  font-weight: 600;
  line-height: 1.75;
}

.zones {
  background: #fff;
}

.zone-banner {
  display: grid;
  grid-template-columns: minmax(260px, .72fr) minmax(0, 1fr);
  gap: 32px;
  align-items: center;
  padding: clamp(24px, 4vw, 42px);
  border: 1px solid var(--rd-line);
  border-radius: var(--rd-radius-lg);
  background: #fbfaf7;
  box-shadow: var(--rd-shadow-sm);
}

.zone-img-side {
  min-height: 280px;
  display: grid;
  place-items: center;
  border-radius: 20px;
  background: #fff;
  border: 1px solid var(--rd-line);
}

.zone-img-side img {
  max-width: min(100%, 340px);
  max-height: 340px;
  object-fit: contain;
}

.zone-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 20px;
}

.zone-tag {
  border: 1px solid #dcebe4;
  border-radius: 999px;
  background: #fff;
  color: #334239;
  font-weight: 800;
}

.zone-dot {
  background: var(--rd-green);
}

.referral {
  padding: 40px 0;
  background: var(--rd-bg);
}

.refer-card {
  min-height: 126px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 28px;
  border: 1px solid #eadfd2;
  border-radius: var(--rd-radius-lg);
  background:
    url("../image/2022-11-09-636b9dec9bc17.png") no-repeat center / cover,
    #fff7ef;
  box-shadow: var(--rd-shadow-sm);
}

.refer-card h2 {
  max-width: 780px;
  margin: 0;
  color: var(--rd-ink);
  font-weight: 900;
  text-align: center;
  text-shadow: 0 1px 0 rgba(255, 255, 255, .72);
}

.earn {
  background: #fff;
}

.earn-top {
  max-width: 680px;
  margin: 0 auto 32px;
  text-align: center;
}

.earn-card {
  min-height: 280px;
  padding: 26px;
}

.earn-app-row,
.cta-app-row,
.f-app-row {
  gap: 10px;
}

.app-btn,
.cta-app-link,
.f-app-link {
  min-height: 48px;
  border: 1px solid var(--rd-line);
  border-radius: 12px;
  background: #fff;
  color: var(--rd-ink);
  font-weight: 900;
}

.app-btn:hover,
.cta-app-link:hover,
.f-app-link:hover {
  border-color: rgba(244, 91, 21, .35);
  color: var(--rd-primary-dark);
}

.special {
  background: var(--rd-bg);
}

.special .sp-track {
  padding-inline: max(16px, calc((100vw - 1180px) / 2));
  gap: 16px;
}

.special .sp-card {
  min-width: 280px;
  padding: 24px;
}

.stats {
  background: #fff;
}

.stats .stat-card {
  min-height: 170px;
  padding: 24px;
}

.stats .stat-num {
  color: var(--rd-primary);
  font-weight: 900;
}

.stats-note {
  display: inline-flex;
  justify-content: center;
  min-height: 38px;
  align-items: center;
  margin-top: 24px;
  padding: 8px 14px;
  border: 1px solid #eadfd2;
  border-radius: 999px;
  background: #fff7ef;
  color: var(--rd-primary-dark);
  font-weight: 900;
}

.cta-manage {
  background: var(--rd-bg);
}

.cta-box {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(250px, .62fr);
  gap: 28px;
  align-items: center;
  overflow: hidden;
  padding: clamp(28px, 5vw, 50px);
  border-radius: var(--rd-radius-lg);
  background:
    linear-gradient(90deg, rgba(23, 33, 29, .96), rgba(23, 33, 29, .86)),
    url("../image/2022-11-13-6370baecdf519.png") no-repeat center / cover;
  color: #fff;
  box-shadow: var(--rd-shadow);
}

html[dir="rtl"] .cta-box {
  background:
    linear-gradient(270deg, rgba(23, 33, 29, .96), rgba(23, 33, 29, .86)),
    url("../image/2022-11-13-6370baecdf519.png") no-repeat center / cover;
}

.cta-info h2 {
  color: #fff;
}

.cta-user-btn {
  min-height: 42px;
  border-radius: 12px;
  background: rgba(255, 255, 255, .14);
  color: #fff;
  font-weight: 900;
}

.cta-app-link {
  border-color: rgba(255, 255, 255, .2);
  background: rgba(255, 255, 255, .12);
  color: #fff;
}

.cta-phone {
  max-width: 300px;
  margin-inline: auto;
  border-radius: 26px;
  filter: drop-shadow(0 24px 34px rgba(0, 0, 0, .22));
}

.cta-phone img {
  max-height: 420px;
  object-fit: contain;
}

.testimonials {
  background: #fff;
}

.test-card {
  min-height: 260px;
  padding: 26px;
}

.test-stars {
  color: var(--rd-gold);
}

.test-author {
  gap: 12px;
}

.test-av {
  border: 1px solid var(--rd-line);
}

.footer {
  background: #111a17;
  color: rgba(255, 255, 255, .78);
}

.footer .newsletter-area {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, .7fr);
  gap: 24px;
  align-items: center;
  padding: clamp(24px, 4vw, 38px);
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: var(--rd-radius-lg);
  background:
    linear-gradient(90deg, rgba(255, 255, 255, .1), rgba(255, 255, 255, .04)),
    #1a2521;
  box-shadow: 0 22px 58px rgba(0, 0, 0, .22);
}

.newsletter-kicker {
  display: inline-flex;
  min-height: 32px;
  align-items: center;
  padding: 5px 11px;
  border-radius: 999px;
  background: rgba(244, 91, 21, .16);
  color: #ffb38e;
  font-size: 12px;
  font-weight: 900;
}

.footer .newsletter-area h2 {
  color: #fff;
  font-weight: 900;
}

.footer .newsletter-area p,
.footer .f-brand p,
.footer .f-links a,
.footer .f-contact a {
  color: rgba(255, 255, 255, .68);
  font-weight: 600;
}

.newsletter-points span {
  border-color: rgba(255, 255, 255, .12);
  background: rgba(255, 255, 255, .07);
  color: rgba(255, 255, 255, .84);
}

.footer .nl-form {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 10px;
  padding: 8px;
  border: 1px solid rgba(255, 255, 255, .14);
  border-radius: 15px;
  background: rgba(255, 255, 255, .08);
}

.footer .nl-form input[type="email"] {
  min-height: 48px;
  border: 0;
  border-radius: 10px;
  background: rgba(255, 255, 255, .96);
  color: var(--rd-ink);
}

.footer .nl-form button {
  min-height: 48px;
  border: 0;
  border-radius: 10px;
  background: var(--rd-primary);
  color: #fff;
  font-weight: 900;
}

.footer-grid {
  gap: 34px;
  padding-top: 46px;
}

.footer h5 {
  color: #fff;
  font-weight: 900;
}

.footer-bottom-bar {
  border-top: 1px solid rgba(255, 255, 255, .1);
  color: rgba(255, 255, 255, .58);
}

@media (max-width: 1100px) {
  .nav-links {
    display: none;
  }

  .hero.hero--v2,
  html[dir="rtl"] .hero.hero--v2 {
    background:
      linear-gradient(180deg, rgba(250, 248, 245, .98), rgba(250, 248, 245, .88)),
      url("../img/download-app.png") no-repeat center bottom 30px / min(78vw, 460px),
      var(--rd-bg);
  }

  .hero--v2 .hero-grid {
    grid-template-columns: 1fr;
  }

  .hero--v2 .hero-content {
    text-align: center;
  }

  .hero--v2 h1,
  .hero--v2 .hero-content > p {
    margin-inline: auto;
  }

  .hero--v2 .hero-btns,
  .hero--v2 .hero-trust {
    justify-content: center;
  }

  .hero--v2 .hero-visual {
    min-height: 390px;
  }
}

@media (max-width: 900px) {
  .main-nav {
    top: 8px;
    width: calc(100% - 16px);
    margin-inline: 8px;
    border-radius: 15px;
  }

  .btn-browse-web,
  .btn-join,
  .lang-current {
    display: none;
  }

  .hero.hero--v2 {
    padding-top: 112px;
  }

  .hero--v2 .hero-trust {
    grid-template-columns: 1fr;
    max-width: 360px;
    margin-inline: auto;
  }

  .hero--v2 .hero-trust .item {
    justify-content: flex-start;
  }

  .services-section .svc-panel,
  .zone-banner,
  .cta-box,
  .footer .newsletter-area {
    grid-template-columns: 1fr;
  }

  .services-section .svc-panel,
  html[dir="rtl"] .services-section .svc-panel {
    background: #fff;
  }

  .zone-img-side {
    min-height: 220px;
  }

  .cta-visual {
    order: -1;
  }
}

@media (max-width: 640px) {
  .main-nav .container {
    min-height: 62px;
  }

  .nav-logo img {
    max-height: 40px;
  }

  .hero.hero--v2 {
    padding-bottom: 38px;
  }

  .hero--v2 h1 {
    font-size: clamp(38px, 13vw, 58px);
  }

  .hero--v2 .hero-btn {
    width: 100%;
  }

  .hero--v2 .hero-visual {
    min-height: 330px;
  }

  .hero--v2 .float-badge.fb-top {
    top: 34px;
    inset-inline-end: 4px;
  }

  .hero--v2 .float-badge.fb-bot {
    bottom: 52px;
    inset-inline-start: 2px;
  }

  .services-section,
  .features,
  .earn,
  .special,
  .stats,
  .testimonials,
  .cta-manage,
  .zones {
    padding: 48px 0;
  }

  .services-section .svc-icon-btn {
    min-width: 112px;
  }

  .services-section .svc-panel {
    padding: 22px;
    border-radius: 18px;
  }

  .footer .nl-form {
    grid-template-columns: 1fr;
  }
}
