/* =============================================================
   ZoolSpeed V4 - Complete Landing Page Styles
   Standalone CSS for the V4 landing page design.
============================================================= */
@import url("https://fonts.googleapis.com/css2?family=Lato:wght@400;600;700;900&family=Syne:wght@700;800&family=Tajawal:wght@400;500;700;800;900&display=swap");

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

html {
  scroll-behavior: smooth
}

:root {
  --primary: #FF6B00;
  --primary-dark: #e65e00;
  --primary-rgb: 255, 107, 0;
  --secondary: #00BE65;
  --secondary-rgb: 0, 190, 101;
  --white-rgb: 255, 255, 255;
  --black-rgb: 0, 0, 0;
  --green: var(--primary);
  --green-soft: rgba(var(--primary-rgb), .2);
  --title: #2F3934;
  --text: #717C77;
  --white: #ffffff;
  --bg: #ffffff;
  --bg-light: #F7F7F7;
  --border: #E8EBE9;
  --dark: #0a0a0f;
  --dark-el: #111118;
  --dark-card: #16161f;
  --dark-surface: #1c1c28;
  --dark-border: rgba(255, 255, 255, .07);
  --dark-text: #f0f0f5;
  --dark-text-sec: #8a8a9a;
  --dark-text-muted: #5a5a6e;
  --radius: 12px;
  --radius-lg: 20px;
  --ease: cubic-bezier(.4, 0, .2, 1);
  --max-w: 1200px;
}

body {
  font-family: 'Lato', sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased
}

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

ul {
  list-style: none;
  margin: 0;
  padding: 0
}

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

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

.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
  color: var(--title);
  font-weight: 700;
  line-height: 1.3
}

p {
  margin: 0
}

/* ========== MOBILE MENU ========== */
.mobile-menu {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(255, 255, 255, .98);
  z-index: 100;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 20px;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px)
}

.mobile-menu.open {
  display: flex
}

.mobile-menu a {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text);
  transition: .25s
}

.mobile-menu a:hover {
  color: var(--green)
}

.mobile-menu .close-mob {
  position: absolute;
  top: 20px;
  right: 20px;
  font-size: 1.5rem;
  color: var(--title);
  cursor: pointer;
  background: none;
  border: none
}

/* Announcement bar — hide on scroll */
.demo .__announcement-bar {
  transition: transform .3s ease
}

body.page-scrolled .__announcement-bar {
  transform: translateY(-100%)
}

.demo .main-nav {
  top: 50px;
  transition: top .3s ease
}

body.page-scrolled .main-nav {
  top: 0
}

/* ========== HEADER ========== */
.main-nav {
  position: sticky;
  top: 0;
  z-index: 90;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, .98) 0%, rgba(255, 255, 255, .94) 100%);
  backdrop-filter: blur(24px) saturate(1.35);
  -webkit-backdrop-filter: blur(24px) saturate(1.35);
  border-bottom: 1px solid rgba(232, 235, 233, .86);
  box-shadow: 0 16px 40px rgba(25, 32, 44, .06);
  overflow: visible
}

.main-nav .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  height: 76px;
  max-width: 1880px;
  padding: 0 38px;
  overflow: visible
}

.nav-logo {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  flex: 0 0 auto;
  min-width: 154px
}

.nav-logo img {
  height: 42px;
  width: auto;
  object-fit: contain;
  filter: drop-shadow(0 7px 12px rgba(var(--primary-rgb), .16))
}

.nav-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  flex: 1 1 auto
}

.nav-links a {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 42px;
  padding: 9px 14px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-size: .88rem;
  font-weight: 800;
  color: #647067;
  line-height: 1;
  white-space: nowrap;
  transition: color .25s var(--ease), border-color .25s var(--ease), background .25s var(--ease), box-shadow .25s var(--ease), transform .25s var(--ease)
}

.nav-links a:hover,
.nav-links a.active-link {
  color: var(--primary);
  background: rgba(var(--primary-rgb), .08);
  border-color: rgba(var(--primary-rgb), .14);
  box-shadow: 0 12px 26px rgba(var(--primary-rgb), .09);
  transform: translateY(-1px)
}

.nav-link-icon,
.nav-action-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto
}

.nav-link-icon {
  width: 28px;
  height: 28px;
  border-radius: 10px;
  color: var(--primary);
  background: linear-gradient(135deg, rgba(var(--primary-rgb), .13), rgba(var(--secondary-rgb), .08))
}

.nav-link-icon svg,
.nav-action-icon svg {
  width: 17px;
  height: 17px
}

.nav-right {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 12px;
  flex: 0 0 auto;
  min-width: 370px
}

/* Language Switcher */
.lang-sw {
  position: relative
}

.lang-sw .lang-current {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 44px;
  padding: 8px 13px;
  background: #fff;
  border-radius: 100px;
  border: 1px solid rgba(232, 235, 233, .95);
  font-size: .82rem;
  font-weight: 900;
  color: var(--title);
  cursor: pointer;
  transition: .25s var(--ease);
  white-space: nowrap;
  box-shadow: 0 9px 24px rgba(25, 32, 44, .06)
}

.lang-sw .lang-current:hover {
  border-color: rgba(var(--primary-rgb), .28);
  color: var(--primary);
  transform: translateY(-1px)
}

.lang-sw .lang-current svg {
  width: 10px;
  height: 10px;
  flex-shrink: 0;
  transition: .2s
}

.lang-sw.open .lang-current svg {
  transform: rotate(180deg)
}

.lang-dd {
  position: absolute;
  top: calc(100% + 12px);
  inset-inline-end: 0;
  min-width: 140px;
  background: var(--white);
  border: 1px solid rgba(232, 235, 233, .95);
  border-radius: 16px;
  padding: 6px;
  box-shadow: 0 18px 48px rgba(25, 32, 44, .14);
  opacity: 0;
  visibility: hidden;
  transform: translateY(6px);
  transition: .25s var(--ease);
  z-index: 50;
  max-height: 240px;
  overflow-y: auto
}

.lang-sw.open .lang-dd {
  opacity: 1;
  visibility: visible;
  transform: translateY(0)
}

.lang-dd a {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 9px 12px;
  border-radius: 11px;
  font-size: .8rem;
  font-weight: 800;
  color: var(--text);
  transition: .2s;
  white-space: nowrap
}

.lang-dd a:hover {
  background: var(--green-soft);
  color: var(--green)
}

.lang-dd a.active {
  color: var(--green);
  background: var(--green-soft)
}

/* Browse Web Button */
.btn-browse-web {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 48px;
  padding: 11px 23px;
  border-radius: 100px;
  font-size: .9rem;
  font-weight: 900;
  background: linear-gradient(135deg, var(--primary), #ff8840);
  color: #fff;
  transition: .3s var(--ease);
  border: 1.5px solid rgba(var(--primary-rgb), .85);
  text-decoration: none;
  white-space: nowrap;
  box-shadow: 0 14px 28px rgba(var(--primary-rgb), .24)
}

.btn-browse-web:hover {
  background: linear-gradient(135deg, #ff7a20, var(--primary-dark));
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 18px 34px rgba(var(--primary-rgb), .3)
}

/* Mobile browse web link */
.mob-browse-web {
  background: var(--green);
  color: #fff !important;
  padding: 10px 24px;
  border-radius: 100px;
  font-weight: 700;
  margin-top: 8px
}

/* Join Button — outlined style */
.btn-join {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 48px;
  padding: 11px 22px;
  border-radius: 100px;
  font-size: .9rem;
  font-weight: 900;
  background: linear-gradient(180deg, #fff, #fff8f4);
  color: var(--primary);
  transition: .3s var(--ease);
  border: 1.5px solid rgba(var(--primary-rgb), .55);
  box-shadow: 0 12px 28px rgba(var(--primary-rgb), .12)
}

.btn-join:hover {
  background: linear-gradient(135deg, var(--primary), #ff8840);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 18px 34px rgba(var(--primary-rgb), .26)
}

.btn-join .nav-chevron {
  flex: 0 0 auto;
  transition: transform .25s var(--ease)
}

.join-wrap:hover .nav-chevron {
  transform: rotate(180deg)
}

.join-wrap {
  position: relative;
  z-index: 120
}

.join-dd {
  position: absolute;
  top: calc(100% + 12px);
  inset-inline-end: 0;
  width: max-content;
  min-width: 260px;
  background: var(--white);
  border: 1px solid rgba(232, 235, 233, .95);
  border-radius: 18px;
  padding: 8px;
  box-shadow: 0 20px 52px rgba(25, 32, 44, .16);
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: .3s var(--ease);
  pointer-events: none;
  z-index: 9999
}

.join-wrap:hover .join-dd,
.join-wrap:focus-within .join-dd,
.join-wrap.open .join-dd {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  pointer-events: auto
}

.join-wrap.open .nav-chevron,
.join-wrap:focus-within .nav-chevron {
  transform: rotate(180deg)
}

.join-dd a {
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 48px;
  padding: 11px 12px;
  border-radius: 13px;
  font-size: .84rem;
  font-weight: 800;
  color: #344039;
  transition: .25s
}

.join-dd a:hover,
.join-dd a.active {
  background: var(--green-soft);
  color: var(--green)
}

.join-dd .ji {
  width: 32px;
  height: 32px;
  border-radius: 11px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .9rem
}

.join-dd .ji svg {
  width: 17px;
  height: 17px
}

.nav-action-icon {
  width: 24px;
  height: 24px
}

.btn-browse-web .nav-action-icon,
.btn-join .nav-action-icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .2)
}

.btn-join .nav-action-icon {
  background: rgba(var(--primary-rgb), .11)
}

.btn-join:hover .nav-action-icon {
  background: rgba(255, 255, 255, .18)
}

.mob-btn {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 46px;
  height: 46px;
  align-items: center;
  justify-content: center;
  border-radius: 15px;
  border: 1px solid rgba(var(--primary-rgb), .18);
  background: rgba(var(--primary-rgb), .08)
}

.mob-btn span {
  width: 20px;
  height: 2px;
  background: var(--primary);
  border-radius: 2px;
  transition: .3s
}

/* ========== HERO ========== */
.hero {
  position: relative;
  text-align: center;
  min-height: 690px;
  padding: 40px 0 0;
  overflow: hidden;
  background:
    radial-gradient(circle at 50% 0%, rgba(var(--primary-rgb), .11) 0, rgba(var(--primary-rgb), 0) 36%),
    linear-gradient(180deg, #fff 0%, #fff 58%, #fff7f1 100%)
}

.hero::before,
.hero::after {
  content: "";
  position: absolute;
  left: 50%;
  pointer-events: none;
  transform: translateX(-50%)
}

.hero::before {
  top: 18px;
  width: min(720px, calc(100% - 40px));
  height: 210px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(var(--primary-rgb), .14), rgba(var(--secondary-rgb), .08), rgba(var(--primary-rgb), .12));
  filter: blur(54px);
  opacity: .72
}

.hero::after {
  bottom: 0;
  width: 100%;
  height: 120px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0), rgba(255, 247, 241, .96))
}

.hero .container {
  position: relative;
  z-index: 2;
  max-width: 1060px
}

.hero-copy {
  position: relative;
  max-width: 880px;
  margin: 0 auto;
  padding: 4px 0 0
}

.hero h1 {
  font-size: 2.72rem;
  font-weight: 900;
  color: #26312c;
  margin-bottom: 13px;
  line-height: 1.2;
  text-shadow: 0 10px 24px rgba(25, 32, 44, .08)
}

.hero h1 span,
.hero h1 mark {
  color: var(--primary);
  background: transparent
}

.hero-logo {
  display: flex;
  justify-content: center;
  margin-bottom: 18px
}

.hero-logo img {
  height: 70px;
  width: auto;
  object-fit: contain;
  padding: 8px 18px;
  border-radius: 22px;
  background: rgba(255, 255, 255, .72);
  border: 1px solid rgba(var(--primary-rgb), .12);
  box-shadow: 0 18px 40px rgba(var(--primary-rgb), .12);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px)
}

.hero p {
  font-size: 1.06rem;
  font-weight: 700;
  color: #657169;
  max-width: 660px;
  margin: 0 auto 26px;
  line-height: 1.9
}

.hero-btns {
  display: flex;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
  padding-bottom: 0
}

.hero-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 58px;
  min-width: 220px;
  padding: 14px 26px;
  border-radius: 100px;
  font-size: .98rem;
  font-weight: 900;
  line-height: 1;
  transition: .3s var(--ease);
  cursor: pointer;
  white-space: nowrap
}

.hero-btn--vendor {
  background: linear-gradient(135deg, var(--primary), #ff8a3d);
  color: #fff;
  border: 1px solid rgba(var(--primary-rgb), .7);
  box-shadow: 0 18px 34px rgba(var(--primary-rgb), .25)
}

.hero-btn--vendor:hover {
  background: linear-gradient(135deg, #ff7d24, var(--primary-dark));
  color: #fff;
  box-shadow: 0 22px 42px rgba(var(--primary-rgb), .31);
  transform: translateY(-2px)
}

.hero-btn--delivery {
  background: rgba(255, 255, 255, .88);
  color: #2f3934;
  border: 1px solid rgba(232, 235, 233, .95);
  box-shadow: 0 15px 34px rgba(25, 32, 44, .08);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px)
}

.hero-btn--delivery:hover {
  border-color: rgba(var(--primary-rgb), .36);
  color: var(--primary);
  box-shadow: 0 20px 38px rgba(var(--primary-rgb), .14);
  transform: translateY(-2px)
}

.hero-btn-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  flex-shrink: 0
}

.hero-btn--vendor .hero-btn-icon {
  background: rgba(255, 255, 255, .2)
}

.hero-btn--delivery .hero-btn-icon {
  background: rgba(var(--primary-rgb), .1);
  color: var(--primary)
}

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

.hero-illustration {
  width: 100%;
  max-width: 1580px;
  margin: 10px auto 0;
  opacity: .44;
  pointer-events: none;
  color: var(--primary);
  filter: saturate(1.18) contrast(1.08);
  position: relative;
  z-index: 1
}

.hero-illustration svg {
  width: 100%;
  height: auto;
  display: block
}

/* ========== SERVICES ========== */
.services-section {
  position: relative;
  padding: 58px 0 70px;
  background:
    radial-gradient(circle at 50% 0, rgba(var(--primary-rgb), .1), rgba(var(--primary-rgb), 0) 32%),
    linear-gradient(180deg, #fff7f1 0%, #fff 42%, #fff 100%)
}

.sec-header {
  text-align: center;
  margin-bottom: 30px
}

.section-kicker {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 34px;
  padding: 7px 14px;
  margin-bottom: 11px;
  border-radius: 999px;
  background: rgba(var(--primary-rgb), .08);
  border: 1px solid rgba(var(--primary-rgb), .14);
  color: var(--primary);
  font-size: .78rem;
  font-weight: 900;
  line-height: 1
}

.kicker-icon {
  font-size: .62rem;
  color: rgba(var(--primary-rgb), .75)
}

.sec-header h2 {
  font-size: 1.58rem;
  font-weight: 850;
  color: #2b3530;
  margin-bottom: 6px;
  line-height: 1.45;
  letter-spacing: 0
}

.sec-header p {
  font-size: .9rem;
  font-weight: 700;
  color: #7a857e;
  max-width: 680px;
  margin: 0 auto;
  line-height: 1.75
}

.svc-icons {
  display: flex;
  justify-content: center;
  align-items: stretch;
  gap: 12px;
  margin-bottom: 34px;
  flex-wrap: nowrap;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  -ms-overflow-style: none;
  cursor: grab
}

.svc-icons::-webkit-scrollbar {
  display: none
}

.svc-icon-btn {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 16px 20px;
  border-radius: 18px;
  background: rgba(255, 255, 255, .9);
  border: 1px solid rgba(232, 235, 233, .96);
  cursor: pointer;
  transition: .3s var(--ease);
  min-width: 126px;
  min-height: 112px;
  flex-shrink: 0;
  scroll-snap-align: start;
  box-shadow: 0 14px 34px rgba(25, 32, 44, .06);
  overflow: hidden
}

.svc-icon-btn:hover {
  border-color: rgba(var(--primary-rgb), .38);
  transform: translateY(-3px);
  box-shadow: 0 18px 40px rgba(var(--primary-rgb), .14)
}

.svc-icon-btn.active {
  border-color: rgba(var(--primary-rgb), .62);
  background: linear-gradient(180deg, rgba(var(--primary-rgb), .14), rgba(255, 255, 255, .96));
  box-shadow: 0 18px 42px rgba(var(--primary-rgb), .16)
}

.svc-icon-btn.active::after {
  content: "";
  position: absolute;
  inset-inline: 22px;
  bottom: 0;
  height: 3px;
  border-radius: 999px 999px 0 0;
  background: linear-gradient(90deg, var(--primary), #ffb15f)
}

.svc-icon-btn .ico {
  width: 50px;
  height: 50px;
  padding: 9px;
  border-radius: 16px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(var(--primary-rgb), .14), rgba(var(--secondary-rgb), .08));
  box-shadow: inset 0 0 0 1px rgba(var(--primary-rgb), .08)
}

.svc-icon-btn .ico img {
  width: 100%;
  height: 100%;
  object-fit: contain
}

.svc-icon-btn .lbl {
  font-size: .82rem;
  font-weight: 900;
  color: #2f3934;
  line-height: 1.45
}

.svc-panels {
  position: relative;
  max-width: 1180px;
  margin: 0 auto
}

.svc-panel {
  display: none;
  align-items: center;
  gap: 48px;
  padding: 26px;
  border-radius: 30px;
  border: 1px solid rgba(232, 235, 233, .95);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, .98), rgba(255, 250, 246, .9));
  box-shadow: 0 24px 60px rgba(25, 32, 44, .08);
  animation: fadePanel .35s ease
}

.svc-panel.active {
  display: flex
}

@keyframes fadePanel {
  from {
    opacity: 0;
    transform: translateX(16px)
  }

  to {
    opacity: 1;
    transform: translateX(0)
  }
}

.svc-text {
  flex: 1;
  text-align: start;
  padding: 8px 12px
}

.svc-text .lead {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--title);
  margin-bottom: 3px
}

.svc-text .sub {
  font-size: .92rem;
  color: var(--text);
  margin-bottom: 16px
}

.svc-text .detail-title {
  font-size: .92rem;
  font-weight: 700;
  color: var(--title);
  margin-bottom: 3px
}

.svc-text .detail-sub {
  font-size: .86rem;
  color: var(--text);
  margin-bottom: 3px
}

.svc-text .detail-block {
  margin-bottom: 10px
}

.svc-text .venture-content-box {
  font-size: .98rem;
  color: #69756e;
  line-height: 2;
  font-weight: 700
}

.svc-text .venture-content-box h3,
.svc-text .venture-content-box h4,
.svc-text .venture-content-box strong {
  color: #2d3732;
  font-size: 1.04rem;
  font-weight: 900
}

.svc-text .venture-content-box p {
  margin-bottom: 6px
}

.svc-img {
  flex: 1;
  display: flex;
  justify-content: center
}

.svc-img .img-card {
  width: 100%;
  max-width: 420px;
  border-radius: 26px;
  overflow: hidden;
  box-shadow: 0 20px 46px rgba(25, 32, 44, .11);
  border: 1px solid rgba(232, 235, 233, .95);
  transition: transform .4s var(--ease);
  background: #f8f9fa
}

.svc-img .img-card img {
  width: 100%;
  height: auto;
  display: block
}

.svc-panel:hover .img-card {
  transform: scale(1.02)
}

.svc-nav {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 24px
}

.svc-arrow {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--white);
  border: 1px solid rgba(232, 235, 233, .95);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  color: var(--title);
  cursor: pointer;
  transition: .3s var(--ease);
  box-shadow: 0 12px 28px rgba(25, 32, 44, .07)
}

.svc-arrow:hover {
  background: linear-gradient(135deg, var(--primary), #ff8a3d);
  border-color: rgba(var(--primary-rgb), .8);
  color: #fff;
  box-shadow: 0 18px 36px rgba(var(--primary-rgb), .22);
  transform: translateY(-2px)
}

/* ========== MARQUEE ========== */
.marquee {
  padding: 20px 0;
  overflow: hidden;
  background: var(--bg-light)
}

.marquee-track {
  display: flex;
  gap: 44px;
  animation: mq 22s linear infinite;
  width: max-content
}

@keyframes mq {
  to {
    transform: translateX(-50%)
  }
}

.mq-item {
  display: flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
  font-size: 1rem;
  font-weight: 700;
  color: var(--title)
}

.mq-item .dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--green);
  opacity: .5
}

.mq-item span.find {
  color: var(--green)
}

/* ========== FEATURES ========== */
.features {
  position: relative;
  padding: 58px 0 66px;
  background:
    radial-gradient(circle at 50% 0, rgba(var(--primary-rgb), .07), rgba(var(--primary-rgb), 0) 34%),
    linear-gradient(180deg, #f7f8f7 0%, #fff 100%)
}

.feat-grid {
  display: flex;
  gap: 18px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  -ms-overflow-style: none;
  padding: 6px 2px 12px;
  cursor: grab
}

.feat-grid::-webkit-scrollbar {
  display: none
}

.feat-card {
  position: relative;
  background: rgba(255, 255, 255, .94);
  border: 1px solid rgba(232, 235, 233, .95);
  border-radius: 24px;
  padding: 28px 18px 26px;
  text-align: center;
  transition: .3s var(--ease);
  min-width: 220px;
  flex: 1 0 0%;
  scroll-snap-align: start;
  box-shadow: 0 16px 38px rgba(25, 32, 44, .055);
  overflow: hidden
}

.feat-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 4px;
  background: linear-gradient(90deg, var(--primary), #ffbd6f);
  opacity: .85
}

.feat-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 24px 50px rgba(25, 32, 44, .1);
  border-color: rgba(var(--primary-rgb), .24)
}

.feat-ico {
  width: 62px;
  height: 62px;
  margin: 0 auto 14px;
  padding: 13px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 19px;
  background: linear-gradient(135deg, rgba(var(--primary-rgb), .12), rgba(var(--secondary-rgb), .08));
  box-shadow: inset 0 0 0 1px rgba(var(--primary-rgb), .08)
}

.feat-ico img {
  width: 100%;
  height: 100%;
  object-fit: contain
}

.feat-card h4 {
  font-size: .96rem;
  font-weight: 900;
  color: #2f3934;
  margin-bottom: 7px;
  line-height: 1.5
}

.feat-card p {
  font-size: .82rem;
  color: #7b867f;
  font-weight: 700;
  line-height: 1.75
}

/* ========== ZONES ========== */
.zones {
  padding: 58px 0 64px;
  background: #fff
}

.zone-banner {
  position: relative;
  isolation: isolate;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, .96), rgba(255, 249, 244, .9));
  border-radius: 30px;
  overflow: hidden;
  display: grid;
  grid-template-columns: 1.04fr 1fr;
  min-height: 430px;
  border: 1px solid rgba(232, 235, 233, .95);
  box-shadow: 0 24px 64px rgba(25, 32, 44, .08)
}

.zone-banner::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background-image: var(--zone-art, none);
  background-size: cover;
  background-position: center;
  opacity: .045;
  filter: saturate(.85) contrast(1.02)
}

.zone-banner>* {
  position: relative;
  z-index: 1
}

.zone-img-side {
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  background:
    radial-gradient(circle at 65% 25%, rgba(var(--primary-rgb), .16), rgba(var(--primary-rgb), 0) 42%),
    linear-gradient(135deg, rgba(var(--primary-rgb), .08), rgba(var(--primary-rgb), .02))
}

.zone-img-side::after {
  content: "";
  position: absolute;
  inset: 18px;
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, .5);
  pointer-events: none
}

.zone-img-side img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(1.07) contrast(1.03)
}

.zone-text-side {
  position: relative;
  overflow: hidden;
  padding: 44px 46px 92px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: start;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, .92), rgba(255, 247, 241, .76))
}

.zone-text-side::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background-image:
    linear-gradient(90deg, rgba(255, 255, 255, .92), rgba(255, 255, 255, .74)),
    var(--zone-art, none);
  background-size: 100% 100%, cover;
  background-position: center, center;
  opacity: .16
}

.zone-text-side::after {
  content: "";
  position: absolute;
  inset-inline: 0;
  bottom: 0;
  z-index: 0;
  height: 68px;
  pointer-events: none;
  background-image:
    linear-gradient(90deg, rgba(255, 108, 30, .98), rgba(255, 164, 45, .95)),
    var(--zone-art, none);
  background-size: 100% 100%, cover;
  background-position: center, center bottom;
  background-blend-mode: normal, soft-light;
  box-shadow: 0 -18px 42px rgba(var(--primary-rgb), .12)
}

.zone-text-side>* {
  position: relative;
  z-index: 1
}

.zone-text-side h2 {
  font-size: 1.48rem;
  font-weight: 900;
  color: #2b3530;
  margin-bottom: 8px;
  line-height: 1.45
}

.zone-text-side>p {
  font-size: .9rem;
  color: #7a857e;
  margin-bottom: 24px;
  line-height: 1.85;
  font-weight: 700
}

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

.zone-tag {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  min-height: 44px;
  padding: 9px 16px;
  background: #fff;
  border: 1px solid rgba(232, 235, 233, .96);
  border-radius: 100px;
  font-size: .88rem;
  font-weight: 900;
  color: #2f3934;
  transition: .3s var(--ease);
  box-shadow: 0 12px 28px rgba(25, 32, 44, .055)
}

.zone-tag:hover {
  border-color: rgba(var(--primary-rgb), .35);
  background: rgba(var(--primary-rgb), .07);
  transform: translateY(-2px);
  box-shadow: 0 18px 36px rgba(var(--primary-rgb), .12)
}

.zone-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 3px rgba(var(--primary-rgb), .15)
}

.zone-flag {
  position: relative;
  display: inline-grid;
  grid-template-rows: repeat(3, 1fr);
  width: 28px;
  height: 19px;
  overflow: hidden;
  border-radius: 5px;
  box-shadow: 0 0 0 1px rgba(25, 32, 44, .1), 0 6px 13px rgba(25, 32, 44, .08);
  flex: 0 0 auto
}

.zone-flag span:nth-child(1) {
  background: #d51d29
}

.zone-flag span:nth-child(2) {
  background: #fff
}

.zone-flag span:nth-child(3) {
  background: #111
}

.zone-flag span:nth-child(4) {
  position: absolute;
  left: 0;
  top: 0;
  width: 0;
  height: 0;
  border-top: 9.5px solid transparent;
  border-bottom: 9.5px solid transparent;
  border-left: 14px solid #007a3d
}

.zone-pin {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  color: var(--primary);
  background: rgba(var(--primary-rgb), .1);
  flex: 0 0 auto
}

.zone-pin svg {
  width: 15px;
  height: 15px
}

/* ========== REFERRAL ========== */
.referral {
  padding: 20px 0 50px
}

.refer-card {
  background:
    radial-gradient(circle at 12% 16%, rgba(var(--primary-rgb), .13), rgba(var(--primary-rgb), 0) 30%),
    radial-gradient(circle at 88% 12%, rgba(255, 188, 83, .22), rgba(255, 188, 83, 0) 30%),
    linear-gradient(135deg, rgba(255, 255, 255, .98), rgba(255, 248, 242, .94));
  border: 1px solid rgba(255, 214, 185, .9);
  border-radius: 28px;
  padding: 30px;
  display: grid;
  grid-template-columns: minmax(0, .92fr) minmax(0, 1.08fr);
  align-items: center;
  gap: 22px;
  color: var(--title);
  position: relative;
  overflow: hidden;
  box-shadow: 0 24px 62px rgba(25, 32, 44, .075)
}

.refer-card::before {
  content: '';
  position: absolute;
  inset-inline-end: -90px;
  top: -90px;
  width: 260px;
  height: 260px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(var(--primary-rgb), .95), rgba(255, 174, 71, .65));
  opacity: .14
}

.refer-card::after {
  content: "";
  position: absolute;
  inset-inline: 26px;
  bottom: 0;
  height: 5px;
  border-radius: 100px 100px 0 0;
  background: linear-gradient(90deg, var(--primary), #ffb14a)
}

.refer-content,
.refer-perks {
  position: relative;
  z-index: 1
}

.refer-kicker {
  width: max-content;
  margin-bottom: 12px;
  background: rgba(var(--primary-rgb), .1);
  border-color: rgba(var(--primary-rgb), .2)
}

.refer-card h2 {
  font-size: 1.48rem;
  font-weight: 900;
  color: #26312d;
  margin-bottom: 8px;
  line-height: 1.45
}

.refer-card h2 .hl {
  color: var(--primary)
}

.refer-content p {
  max-width: 520px;
  color: #7a857e;
  font-size: .9rem;
  font-weight: 700;
  line-height: 1.8;
  margin-bottom: 16px
}

.refer-chip-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px
}

.refer-chip-row span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 40px;
  padding: 8px 14px;
  border-radius: 100px;
  background: #fff;
  border: 1px solid rgba(232, 235, 233, .96);
  color: #2f3934;
  font-size: .82rem;
  font-weight: 900;
  box-shadow: 0 10px 24px rgba(25, 32, 44, .05)
}

.refer-chip-row svg {
  width: 17px;
  height: 17px;
  color: var(--primary);
  flex: 0 0 auto
}

.refer-perks {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px
}

.refer-perk {
  min-height: 150px;
  padding: 18px 16px;
  border-radius: 20px;
  background: rgba(255, 255, 255, .86);
  border: 1px solid rgba(232, 235, 233, .95);
  text-align: center;
  transition: .3s var(--ease);
  box-shadow: 0 14px 36px rgba(25, 32, 44, .055)
}

.refer-perk:hover {
  transform: translateY(-3px);
  border-color: rgba(var(--primary-rgb), .28);
  box-shadow: 0 20px 46px rgba(var(--primary-rgb), .11)
}

.refer-perk-icon {
  width: 46px;
  height: 46px;
  border-radius: 16px;
  margin: 0 auto 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  background: linear-gradient(135deg, var(--primary), #ffb14a);
  box-shadow: 0 12px 24px rgba(var(--primary-rgb), .22)
}

.refer-perk-icon svg {
  width: 21px;
  height: 21px
}

.refer-perk h3 {
  font-size: .95rem;
  font-weight: 900;
  color: #2b3530;
  margin-bottom: 5px
}

.refer-perk p {
  font-size: .78rem;
  font-weight: 700;
  color: #7a857e;
  line-height: 1.65
}

/* ========== EARN ========== */
.earn {
  padding: 56px 0 64px;
  background:
    radial-gradient(circle at 20% 10%, rgba(var(--primary-rgb), .06), rgba(var(--primary-rgb), 0) 34%),
    linear-gradient(180deg, #fff 0%, #fffaf6 100%)
}

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

.earn-kicker {
  width: max-content;
  margin: 0 auto 12px;
  background: rgba(var(--primary-rgb), .08);
  border-color: rgba(var(--primary-rgb), .18)
}

.earn-top h2 {
  font-size: 1.62rem;
  font-weight: 900;
  color: var(--title);
  margin-bottom: 8px;
  letter-spacing: 0
}

.earn-top p {
  color: #7a857e;
  font-size: .92rem;
  font-weight: 700;
  line-height: 1.8
}

.earn-grid {
  display: flex;
  gap: 18px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  -ms-overflow-style: none;
  padding: 8px 2px 14px;
  cursor: grab
}

.earn-grid::-webkit-scrollbar {
  display: none
}

.earn-card {
  background:
    radial-gradient(circle at 50% 0%, rgba(var(--primary-rgb), .09), rgba(var(--primary-rgb), 0) 31%),
    linear-gradient(180deg, rgba(255, 255, 255, .98), rgba(255, 252, 249, .95));
  border: 1px solid rgba(232, 235, 233, .95);
  border-radius: 28px;
  padding: 34px 30px 30px;
  text-align: center;
  position: relative;
  overflow: hidden;
  transition: .3s var(--ease);
  min-width: min(430px, calc(50% - 9px));
  flex: 1 0 calc(50% - 9px);
  scroll-snap-align: start;
  box-shadow: 0 20px 50px rgba(25, 32, 44, .055)
}

.earn-card:hover {
  border-color: rgba(var(--primary-rgb), .42);
  box-shadow: 0 26px 68px rgba(var(--primary-rgb), .12);
  transform: translateY(-4px)
}

.earn-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 6px;
  background: linear-gradient(90deg, var(--primary), #ffb14a);
  opacity: .78;
  transition: .3s
}

.earn-card:hover::before {
  opacity: 1
}

.earn-card::after {
  content: "";
  position: absolute;
  inset-inline-end: -56px;
  top: -72px;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  background: rgba(var(--primary-rgb), .08);
  pointer-events: none
}

.earn-card-badge {
  position: absolute;
  inset-inline-start: 20px;
  top: 20px;
  z-index: 2;
  min-height: 30px;
  display: inline-flex;
  align-items: center;
  padding: 6px 12px;
  border-radius: 100px;
  background: rgba(var(--primary-rgb), .08);
  color: var(--primary);
  font-size: .72rem;
  font-weight: 900;
  border: 1px solid rgba(var(--primary-rgb), .14)
}

.earn-card-icon {
  width: 84px;
  height: 84px;
  border-radius: 26px;
  background:
    linear-gradient(135deg, rgba(var(--primary-rgb), .16), rgba(255, 177, 74, .28));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.2rem;
  margin: 0 auto 20px;
  position: relative;
  z-index: 1;
  box-shadow: 0 16px 34px rgba(var(--primary-rgb), .13)
}

.earn-icon-img {
  width: 58px;
  height: 58px;
  object-fit: contain
}

.earn-card h3 {
  font-size: 1.24rem;
  font-weight: 900;
  color: var(--title);
  margin-bottom: 8px;
  line-height: 1.5;
  position: relative;
  z-index: 1
}

/* Highlight text — $text$ in admin becomes primary colored */
.hl {
  color: var(--green)
}

/* On primary/dark backgrounds — use white or light tint instead */
.refer-card .hl,
.cta .hl,
.cta-info .hl,
.newsletter-area .hl,
.footer .hl,
.__plan-item.active .hl {
  color: rgba(255, 255, 255, .85)
}

.earn-card h3 .hl,
.earn-card h3 .text--primary-2 {
  color: var(--green)
}

.earn-card>p {
  max-width: 520px;
  margin: 0 auto 22px;
  font-size: .9rem;
  color: #7a857e;
  font-weight: 700;
  line-height: 1.75;
  position: relative;
  z-index: 1
}

.earn-app-row {
  display: flex;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
  position: relative;
  z-index: 1
}

.app-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: 164px;
  min-height: 56px;
  padding: 10px 16px;
  background:
    linear-gradient(135deg, #26312d, #17211d);
  color: #fff;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, .08);
  font-size: .82rem;
  transition: .3s var(--ease);
  text-align: start;
  box-shadow: 0 14px 28px rgba(25, 32, 44, .16)
}

.app-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 34px rgba(var(--primary-rgb), .18);
  background: linear-gradient(135deg, var(--primary), #ff8f25);
  color: #fff
}

.app-btn img {
  width: 30px;
  height: 30px;
  object-fit: contain;
  flex-shrink: 0
}

.app-btn .ab-text {
  display: flex;
  flex-direction: column;
  line-height: 1.2
}

.app-btn .ab-sm {
  font-size: .62rem;
  font-weight: 700;
  opacity: .82;
  text-transform: uppercase;
  letter-spacing: 0
}

.app-btn .ab-lg {
  font-size: .88rem;
  font-weight: 900
}

/* ========== SPECIAL ========== */
.special {
  padding: 58px 0 64px;
  background:
    radial-gradient(circle at 18% 12%, rgba(var(--primary-rgb), .07), rgba(var(--primary-rgb), 0) 34%),
    linear-gradient(180deg, #f7f7f7 0%, #fffaf6 100%)
}

.payment-head {
  margin-bottom: 28px
}

.sp-track {
  display: flex;
  gap: 16px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  -ms-overflow-style: none;
  padding: 4px max(24px, calc((100vw - var(--max-w)) / 2 + 24px)) 12px;
  cursor: grab
}

/* Center items when they fit without overflowing */
.sp-track:not(.is-overflowing) {
  justify-content: center
}

.sp-track::-webkit-scrollbar {
  display: none
}

.sp-track:active {
  cursor: grabbing
}

.sp-card {
  min-width: 220px;
  max-width: 245px;
  min-height: 178px;
  background:
    radial-gradient(circle at 84% 10%, rgba(var(--primary-rgb), .1), rgba(var(--primary-rgb), 0) 28%),
    linear-gradient(180deg, rgba(255, 255, 255, .98), rgba(255, 252, 248, .94));
  border: 1px solid rgba(232, 235, 233, .95);
  border-radius: 24px;
  padding: 24px 22px 22px;
  flex-shrink: 0;
  scroll-snap-align: start;
  transition: .3s var(--ease);
  position: relative;
  overflow: hidden;
  box-shadow: 0 18px 42px rgba(25, 32, 44, .055)
}

.sp-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 24px 56px rgba(var(--primary-rgb), .12);
  border-color: rgba(var(--primary-rgb), .28)
}

.sp-card::before {
  content: "";
  position: absolute;
  inset-inline: 18px;
  top: 0;
  height: 4px;
  border-radius: 0 0 100px 100px;
  background: linear-gradient(90deg, var(--primary), #ffb14a)
}

.sp-card::after {
  content: "";
  position: absolute;
  inset-inline-end: -44px;
  bottom: -54px;
  width: 128px;
  height: 128px;
  border-radius: 50%;
  background: rgba(var(--primary-rgb), .08);
  pointer-events: none
}

.sp-card .sp-ico {
  width: 72px;
  height: 58px;
  margin: 0 auto 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 18px;
  background: rgba(255, 255, 255, .82);
  border: 1px solid rgba(232, 235, 233, .85);
  box-shadow: 0 14px 28px rgba(25, 32, 44, .06);
  position: relative;
  z-index: 1
}

.sp-card .sp-ico img {
  max-width: 58px;
  max-height: 38px;
  object-fit: contain
}

.sp-card h4 {
  font-size: .94rem;
  font-weight: 900;
  color: var(--title);
  margin-bottom: 5px;
  text-align: center;
  position: relative;
  z-index: 1
}

.sp-card p {
  font-size: .78rem;
  color: var(--text);
  font-weight: 700;
  line-height: 1.6;
  text-align: center;
  position: relative;
  z-index: 1
}

/* Dot pagination for sp-track */
.sp-dots {
  display: flex;
  justify-content: center;
  gap: 6px;
  margin-top: 18px
}

.sp-dots .sp-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #d0d3da;
  border: none;
  padding: 0;
  cursor: pointer;
  transition: all .25s
}

.sp-dots .sp-dot.active {
  background: var(--green);
  width: 20px;
  border-radius: 4px
}

.sp-dots .sp-dot:hover:not(.active) {
  background: #a0a5b0
}

/* Hide dots when items don't overflow */
.sp-track:not(.is-overflowing) ~ .sp-dots {
  display: none
}

/* ========== STATS ========== */
.stats {
  padding: 58px 0 64px;
  background:
    radial-gradient(circle at 50% 0%, rgba(var(--primary-rgb), .08), rgba(var(--primary-rgb), 0) 34%),
    linear-gradient(180deg, #fff 0%, #fff 100%)
}

.stats-head {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 24px
}

.stats-head h2 {
  font-size: 1.42rem;
  font-weight: 900;
  color: #2b3530;
  line-height: 1.45
}

.stats-grid {
  display: flex;
  gap: 16px;
  margin-bottom: 16px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  -ms-overflow-style: none;
  padding: 8px 2px 14px;
  cursor: grab
}

.stats-grid::-webkit-scrollbar {
  display: none
}

.stat-card {
  --stat-color: var(--primary);
  --stat-color-rgb: var(--primary-rgb);
  background:
    radial-gradient(circle at 50% 0%, rgba(var(--stat-color-rgb), .12), rgba(var(--stat-color-rgb), 0) 34%),
    linear-gradient(180deg, rgba(255, 255, 255, .98), rgba(255, 252, 248, .95));
  border: 1px solid rgba(232, 235, 233, .95);
  border-radius: 26px;
  padding: 28px 18px 24px;
  text-align: center;
  position: relative;
  overflow: hidden;
  transition: .3s var(--ease);
  min-width: 230px;
  flex: 1 0 230px;
  scroll-snap-align: start;
  box-shadow: 0 18px 44px rgba(25, 32, 44, .055)
}

.stat-card--downloads {
  --stat-color: #ff6b00;
  --stat-color-rgb: 255, 107, 0
}

.stat-card--sellers {
  --stat-color: #16a34a;
  --stat-color-rgb: 22, 163, 74
}

.stat-card--delivery {
  --stat-color: #2563eb;
  --stat-color-rgb: 37, 99, 235
}

.stat-card--customers {
  --stat-color: #9333ea;
  --stat-color-rgb: 147, 51, 234
}

.stat-card--riders {
  --stat-color: #f59e0b;
  --stat-color-rgb: 245, 158, 11
}

.stat-card:hover {
  border-color: rgba(var(--stat-color-rgb), .3);
  box-shadow: 0 24px 58px rgba(var(--stat-color-rgb), .13);
  transform: translateY(-4px)
}

.stat-card.is-counting .stat-icon {
  animation: statPulse 1.1s ease-in-out infinite
}

@keyframes statPulse {
  0%,
  100% {
    transform: translateY(0) scale(1)
  }

  50% {
    transform: translateY(-2px) scale(1.04)
  }
}

.stat-card::before {
  content: "";
  position: absolute;
  inset-inline: 22px;
  top: 0;
  height: 4px;
  border-radius: 0 0 100px 100px;
  background: linear-gradient(90deg, rgba(var(--stat-color-rgb), .92), rgba(var(--stat-color-rgb), .42))
}

.stat-card::after {
  content: '';
  position: absolute;
  inset-inline-end: -46px;
  bottom: -58px;
  width: 132px;
  height: 132px;
  border-radius: 50%;
  background: rgba(var(--stat-color-rgb), .08);
  transition: .3s;
  pointer-events: none
}

.stat-card:hover::after {
  transform: scale(1.08)
}

.stat-icon {
  width: 58px;
  height: 58px;
  border-radius: 18px;
  background: linear-gradient(135deg, rgba(var(--stat-color-rgb), .16), rgba(var(--stat-color-rgb), .28));
  color: var(--stat-color);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  margin: 0 auto 16px;
  box-shadow: 0 16px 32px rgba(var(--stat-color-rgb), .14);
  position: relative;
  z-index: 1
}

.stat-icon svg {
  width: 24px;
  height: 24px
}

.stat-num {
  direction: ltr;
  display: inline-flex;
  align-items: baseline;
  justify-content: center;
  gap: 6px;
  font-size: 2.45rem;
  font-weight: 900;
  color: var(--title);
  line-height: 1;
  letter-spacing: 0;
  position: relative;
  z-index: 1;
  font-variant-numeric: tabular-nums
}

.stat-num .plus {
  color: var(--stat-color);
  font-size: .72em;
  font-weight: 900
}

.stat-label {
  font-size: .84rem;
  color: #6e7b74;
  font-weight: 900;
  margin-top: 8px;
  position: relative;
  z-index: 1
}

.stats-note {
  text-align: center;
  width: max-content;
  max-width: 100%;
  margin: 0 auto;
  padding: 8px 16px;
  border-radius: 100px;
  background: rgba(var(--primary-rgb), .07);
  border: 1px solid rgba(var(--primary-rgb), .12);
  font-size: .78rem;
  color: #7a857e;
  font-weight: 800
}

/* ========== CTA ========== */
.cta-manage {
  padding: 26px 0 58px;
  background: linear-gradient(180deg, #fff 0%, #fffaf6 100%)
}

.cta-box {
  background:
    radial-gradient(circle at 86% 18%, rgba(255, 255, 255, .2), rgba(255, 255, 255, 0) 28%),
    radial-gradient(circle at 12% 92%, rgba(255, 182, 74, .28), rgba(255, 182, 74, 0) 32%),
    linear-gradient(135deg, #f26420 0%, var(--primary) 52%, #ff8a2f 100%);
  border-radius: 32px;
  padding: 42px 54px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  align-items: center;
  gap: 42px;
  color: #fff;
  position: relative;
  overflow: hidden;
  min-height: 340px;
  border: 1px solid rgba(255, 255, 255, .2);
  box-shadow: 0 28px 76px rgba(var(--primary-rgb), .18)
}

.cta-box::before {
  content: '';
  position: absolute;
  top: -110px;
  inset-inline-end: -90px;
  width: 340px;
  height: 340px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .1)
}

.cta-box::after {
  content: "";
  position: absolute;
  inset-inline: 34px;
  bottom: 0;
  height: 6px;
  border-radius: 100px 100px 0 0;
  background: linear-gradient(90deg, rgba(255, 255, 255, .8), rgba(255, 255, 255, .22))
}

.cta-info {
  position: relative;
  z-index: 2;
  max-width: 620px
}

.cta-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 34px;
  padding: 7px 15px;
  margin-bottom: 14px;
  border-radius: 100px;
  background: rgba(255, 255, 255, .18);
  border: 1px solid rgba(255, 255, 255, .26);
  color: #fff;
  font-size: .78rem;
  font-weight: 900
}

.cta-eyebrow::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 0 0 5px rgba(255, 255, 255, .16)
}

.cta-info h2 {
  font-size: 1.86rem;
  font-weight: 900;
  margin-bottom: 10px;
  color: #fff;
  line-height: 1.45;
  letter-spacing: 0
}

.cta-copy {
  max-width: 560px;
  color: rgba(255, 255, 255, .88);
  font-size: .92rem;
  font-weight: 700;
  line-height: 1.85;
  margin-bottom: 16px
}

.cta-user-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 10px 22px;
  border-radius: 100px;
  font-size: .86rem;
  font-weight: 900;
  background: #fff;
  color: var(--green);
  margin-bottom: 14px;
  transition: .3s var(--ease)
}

.cta-user-btn:hover {
  transform: scale(1.03);
  box-shadow: 0 4px 16px rgba(0, 0, 0, .1)
}

.cta-feature-list {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-bottom: 18px
}

.cta-feature-list span {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 7px 13px;
  border-radius: 100px;
  color: #fff;
  background: rgba(255, 255, 255, .13);
  border: 1px solid rgba(255, 255, 255, .2);
  font-size: .76rem;
  font-weight: 900
}

.cta-app-row {
  display: flex;
  gap: 12px;
  flex-wrap: wrap
}

.cta-app-link {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  min-width: 168px;
  min-height: 58px;
  padding: 10px 17px;
  background: rgba(255, 255, 255, .15);
  border: 1px solid rgba(255, 255, 255, .32);
  border-radius: 18px;
  color: #fff;
  font-size: .82rem;
  transition: .3s var(--ease);
  text-align: start;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px)
}

.cta-app-link:hover {
  background: #fff;
  transform: translateY(-4px);
  color: var(--primary);
  box-shadow: 0 18px 34px rgba(78, 32, 9, .14)
}

.cta-app-link img {
  width: 32px;
  height: 32px;
  object-fit: contain;
  flex-shrink: 0
}

.cta-app-link .cal-text {
  display: flex;
  flex-direction: column;
  line-height: 1.2
}

.cta-app-link .cal-sm {
  font-size: .62rem;
  opacity: .84;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0
}

.cta-app-link .cal-lg {
  font-size: .9rem;
  font-weight: 900
}

.cta-visual {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: center
}

.cta-phone {
  width: 300px;
  aspect-ratio: 1 / 1;
  border-radius: 28px;
  overflow: hidden;
  background: rgba(255, 255, 255, .16);
  border: 1px solid rgba(255, 255, 255, .3);
  padding: 10px;
  box-shadow: 0 28px 60px rgba(104, 36, 5, .2);
  transform: rotate(-1.5deg);
  transition: .3s var(--ease)
}

.cta-box:hover .cta-phone {
  transform: rotate(0deg) translateY(-4px)
}

.cta-phone img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  border-radius: 22px
}

/* ========== TESTIMONIALS ========== */
.testimonials {
  padding: 50px 0
}

.test-grid {
  display: flex;
  gap: 14px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  -ms-overflow-style: none;
  padding: 4px 0;
  cursor: grab
}

.test-grid::-webkit-scrollbar {
  display: none
}

.test-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px 22px;
  transition: .3s var(--ease);
  position: relative;
  min-width: 300px;
  flex: 1 0 0%;
  scroll-snap-align: start
}

.test-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 22px rgba(0, 0, 0, .06);
  border-color: transparent
}

.test-card .qm {
  position: absolute;
  top: 12px;
  right: 18px;
  font-size: 2.8rem;
  font-family: Georgia, serif;
  color: var(--green);
  opacity: .12;
  line-height: 1
}

.test-stars {
  display: flex;
  gap: 3px;
  margin-bottom: 12px;
  color: #F0A500;
  font-size: .82rem
}

.test-text {
  font-size: .86rem;
  color: var(--text);
  line-height: 1.7;
  margin-bottom: 16px
}

.test-author {
  display: flex;
  align-items: center;
  gap: 10px
}

.test-av {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
  background: var(--bg-light)
}

.test-av img {
  width: 100%;
  height: 100%;
  object-fit: cover
}

.test-name {
  font-weight: 700;
  font-size: .86rem;
  color: var(--title)
}

.test-role {
  font-size: .74rem;
  color: var(--text)
}

.test-company {
  width: 56px;
  height: auto;
  margin-top: 6px
}

.test-company img {
  width: 100%;
  height: auto;
  object-fit: contain
}

/* ========== FOOTER ========== */
.footer {
  background:
    radial-gradient(circle at 18% 8%, rgba(var(--primary-rgb), .09), rgba(var(--primary-rgb), 0) 28%),
    linear-gradient(180deg, #fff 0%, #fff7f1 100%);
  color: #6f7974;
  padding: 0;
  --primary: #FF6B00;
  --primary-dark: #e65e00
}

.newsletter-area {
  max-width: 880px;
  margin: 0 auto;
  padding: 34px 0 30px;
  text-align: center
}

.footer-kicker {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 32px;
  padding: 7px 14px;
  margin-bottom: 10px;
  border-radius: 100px;
  background: rgba(var(--primary-rgb), .08);
  border: 1px solid rgba(var(--primary-rgb), .14);
  color: var(--primary);
  font-size: .76rem;
  font-weight: 900
}

.newsletter-area h2 {
  font-size: 1.34rem;
  font-weight: 900;
  color: #2b3530;
  margin-bottom: 6px;
  line-height: 1.45
}

.newsletter-area p {
  color: #78837d;
  margin: 0 auto 18px;
  font-size: .88rem;
  font-weight: 700;
  max-width: 560px;
  line-height: 1.75
}

.nl-form {
  display: flex;
  gap: 10px;
  max-width: 500px;
  margin: 0 auto;
  padding: 6px;
  border-radius: 100px;
  background: #fff;
  border: 1px solid rgba(232, 235, 233, .95);
  box-shadow: 0 16px 42px rgba(25, 32, 44, .06)
}

.nl-form input {
  flex: 1;
  min-width: 0;
  padding: 11px 16px;
  border: 0;
  border-radius: 100px;
  background: transparent;
  color: #2f3934;
  font-size: .86rem;
  outline: none;
  transition: .3s;
  font-family: inherit
}

.nl-form input:focus {
  box-shadow: inset 0 0 0 1px rgba(var(--primary-rgb), .22)
}

.nl-form input::placeholder {
  color: #9aa49f
}

.nl-form button {
  min-height: 44px;
  padding: 11px 24px;
  background: linear-gradient(135deg, var(--primary), #ff8e28);
  color: #fff;
  border-radius: 100px;
  font-weight: 900;
  font-size: .84rem;
  transition: .3s var(--ease);
  white-space: nowrap;
  border: none;
  font-family: inherit;
  cursor: pointer
}

.nl-form button:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 28px rgba(var(--primary-rgb), .18)
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(220px, .8fr) minmax(260px, .95fr);
  gap: 22px;
  padding: 22px 0 28px;
  border-top: 1px solid rgba(232, 235, 233, .9);
  border-bottom: 1px solid rgba(232, 235, 233, .9)
}

.f-brand .nav-logo {
  display: inline-block;
  margin-bottom: 12px
}

.f-brand .nav-logo img {
  height: 46px;
  width: auto
}

.f-brand p {
  font-size: .85rem;
  color: #717c77;
  line-height: 1.7;
  max-width: 430px;
  margin-bottom: 16px
}

.f-social {
  display: flex;
  gap: 9px;
  flex-wrap: wrap
}

.f-social a {
  width: 40px;
  height: 40px;
  border-radius: 13px;
  background: #fff;
  border: 1px solid rgba(232, 235, 233, .96);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .78rem;
  color: #7a857e;
  transition: .3s var(--ease);
  box-shadow: 0 10px 22px rgba(25, 32, 44, .05)
}

.f-social a:hover {
  border-color: rgba(var(--primary-rgb), .28);
  color: var(--primary);
  background: rgba(var(--primary-rgb), .08);
  transform: translateY(-3px);
  box-shadow: 0 14px 28px rgba(var(--primary-rgb), .12)
}

.f-social a img {
  width: 17px;
  height: 17px;
  filter: brightness(0) saturate(100%) invert(48%) sepia(9%) saturate(430%) hue-rotate(104deg) brightness(89%) contrast(84%)
}

.f-social a:hover img {
  filter: brightness(0) saturate(100%) invert(52%) sepia(95%) saturate(2000%) hue-rotate(5deg) brightness(100%) contrast(105%)
}

.f-app-row {
  display: flex;
  gap: 9px;
  margin-top: 14px;
  flex-wrap: wrap
}

.f-app-link {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  min-height: 48px;
  padding: 8px 13px;
  background: #fff;
  border: 1px solid rgba(232, 235, 233, .96);
  border-radius: 15px;
  color: #2f3934;
  font-size: .75rem;
  transition: .3s var(--ease);
  text-align: start;
  box-shadow: 0 12px 26px rgba(25, 32, 44, .055)
}

.f-app-link:hover {
  border-color: rgba(var(--primary-rgb), .3);
  color: var(--primary);
  transform: translateY(-3px);
  box-shadow: 0 16px 32px rgba(var(--primary-rgb), .12)
}

.f-app-link svg {
  width: 22px;
  height: 22px;
  fill: currentColor;
  flex-shrink: 0
}

.f-app-link .fal-text {
  display: flex;
  flex-direction: column;
  line-height: 1.2
}

.f-app-link .fal-sm {
  font-size: .55rem;
  opacity: .65;
  text-transform: uppercase;
  letter-spacing: 0;
  font-weight: 800
}

.f-app-link .fal-lg {
  font-size: .78rem;
  font-weight: 900
}

.footer h5 {
  font-size: .9rem;
  font-weight: 900;
  color: #2f3934;
  margin-bottom: 14px
}

.f-links {
  display: flex;
  flex-direction: column;
  gap: 9px
}

.f-links a {
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: .85rem;
  color: #6e7b74;
  font-weight: 800;
  transition: .25s
}

.f-links a:hover {
  color: var(--primary);
  transform: translateX(-3px)
}

.fl-icon,
.fc-icon {
  width: 28px;
  height: 28px;
  border-radius: 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(var(--primary-rgb), .08);
  color: var(--primary);
  flex: 0 0 auto
}

.fl-icon svg,
.fc-icon svg {
  width: 15px;
  height: 15px
}

.f-contact {
  display: flex;
  flex-direction: column;
  gap: 10px
}

.f-contact a {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 10px 12px;
  border-radius: 16px;
  background: #fff;
  border: 1px solid rgba(232, 235, 233, .95);
  font-size: .85rem;
  color: #6e7b74;
  font-weight: 800;
  transition: .25s;
  box-shadow: 0 10px 22px rgba(25, 32, 44, .045)
}

.f-contact a:hover {
  color: var(--primary);
  border-color: rgba(var(--primary-rgb), .22);
  transform: translateY(-2px)
}

.footer-bottom-bar {
  padding: 16px 0 18px;
  text-align: center;
  font-size: .8rem;
  color: #7a857e;
  font-weight: 800
}

.footer-bottom-bar span {
  display: inline-flex;
  justify-content: center;
  max-width: 100%;
  padding: 9px 16px;
  border-radius: 100px;
  background: #fff;
  border: 1px solid rgba(232, 235, 233, .95)
}

/* ========== RESPONSIVE ========== */
@media(max-width:1024px) {
  .main-nav .container {
    height: 70px;
    padding: 0 22px
  }

  .nav-right {
    min-width: auto
  }

  .nav-links {
    gap: 4px
  }

  .nav-links a {
    padding: 8px 10px;
    font-size: .8rem
  }

  .nav-link-icon {
    display: none
  }

  .zone-banner {
    grid-template-columns: 1fr 1.3fr
  }

  .zone-text-side {
    padding: 28px 28px 78px
  }

  .svc-panel {
    gap: 28px
  }
}

@media(max-width:768px) {
  .container {
    padding: 0 16px
  }

  .main-nav .container {
    height: 66px;
    padding: 0 16px
  }

  .nav-logo {
    min-width: 0
  }

  .nav-logo img {
    height: 36px
  }

  .nav-links,
  .lang-sw,
  .btn-browse-web,
  .join-wrap {
    display: none
  }

  .nav-right {
    gap: 8px;
    min-width: 0
  }

  .mob-btn {
    display: flex
  }

  .hero {
    min-height: 620px;
    padding: 28px 0 0
  }

  .hero h1 {
    font-size: 1.72rem;
    line-height: 1.35;
    margin-bottom: 10px
  }

  .hero-logo img {
    height: 54px;
    padding: 7px 14px;
    border-radius: 18px
  }

  .hero p {
    font-size: .92rem;
    line-height: 1.8;
    margin-bottom: 18px
  }

  .hero-btns {
    gap: 10px
  }

  .hero-btn {
    width: min(100%, 330px);
    min-width: 0;
    min-height: 52px;
    padding: 12px 18px;
    font-size: .9rem
  }

  .hero-illustration {
    max-width: none;
    width: 170%;
    margin-left: -35%;
    margin-top: 0;
    opacity: .34
  }

  .services-section {
    padding: 42px 0 50px
  }

  .svc-icons {
    gap: 9px;
    justify-content: flex-start;
    overflow-x: auto;
    flex-wrap: nowrap;
    padding-bottom: 8px;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none
  }

  .svc-icons::-webkit-scrollbar {
    display: none
  }

  .svc-icon-btn {
    min-width: 100px;
    min-height: 96px;
    padding: 12px 14px;
    flex-shrink: 0
  }

  .svc-icon-btn .ico {
    width: 42px;
    height: 42px;
    border-radius: 14px
  }

  .svc-icon-btn .lbl {
    font-size: .74rem
  }

  .svc-panel {
    flex-direction: column;
    gap: 20px;
    padding: 18px;
    border-radius: 24px
  }

  .svc-text {
    order: 2;
    text-align: center;
    padding: 0
  }

  .svc-img {
    order: 1;
    width: 100%
  }

  .svc-img .img-card {
    max-width: 290px;
    border-radius: 22px
  }

  .sec-header h2 {
    font-size: 1.25rem
  }

  .sec-header p {
    font-size: .82rem
  }

  .features,
  .special {
    padding: 36px 0
  }

  .feat-card {
    padding: 22px 14px;
    min-width: 178px;
    border-radius: 20px
  }

  .feat-ico {
    width: 50px;
    height: 50px;
    padding: 11px;
    margin-bottom: 8px
  }

  .zones,
  .earn,
  .testimonials {
    padding: 28px 0
  }

  .zone-banner {
    grid-template-columns: 1fr;
    min-height: auto
  }

  .zone-img-side {
    height: 230px
  }

  .zone-text-side {
    padding: 28px 20px 72px;
    text-align: center
  }

  .zone-text-side::after {
    height: 52px
  }

  .zone-text-side h2 {
    font-size: 1.15rem
  }

  .zone-tags {
    justify-content: center
  }

  .zone-tag {
    padding: 8px 13px;
    font-size: .8rem;
    min-height: 42px
  }

  .referral {
    padding: 8px 0 28px
  }

  .refer-card {
    grid-template-columns: 1fr;
    flex-direction: column;
    text-align: center;
    padding: 28px 20px
  }

  .refer-kicker {
    margin-inline: auto
  }

  .refer-content p {
    margin-inline: auto
  }

  .refer-chip-row {
    justify-content: center
  }

  .refer-card h2 {
    font-size: 1.25rem
  }

  .earn-card {
    padding: 24px 20px;
    min-width: min(340px, 86vw);
    flex: 0 0 min(340px, 86vw)
  }

  .earn-card h3 {
    font-size: 1.05rem
  }

  .earn-card-icon {
    width: 72px;
    height: 72px;
    border-radius: 22px
  }

  .earn-icon-img {
    width: 50px;
    height: 50px
  }

  .sp-card {
    min-width: 210px;
    padding: 22px 16px
  }

  .stats {
    padding: 32px 0
  }

  .stats-head h2 {
    font-size: 1.18rem
  }

  .stat-card {
    padding: 22px 14px;
    min-width: 210px;
    flex-basis: 210px
  }

  .stat-icon {
    width: 50px;
    height: 50px;
    font-size: 1rem;
    margin-bottom: 12px
  }

  .stat-num {
    font-size: 2rem
  }

  .stat-label {
    font-size: .76rem
  }

  .cta-manage {
    padding: 12px 0 36px
  }

  .cta-box {
    grid-template-columns: 1fr;
    text-align: center;
    padding: 32px 22px
  }

  .cta-info h2 {
    font-size: 1.3rem
  }

  .cta-info {
    max-width: none
  }

  .cta-copy {
    margin-inline: auto
  }

  .cta-app-row {
    justify-content: center
  }

  .cta-feature-list {
    justify-content: center
  }

  .cta-visual {
    order: -1
  }

  .cta-phone {
    width: 160px
  }

  .test-card {
    padding: 22px 16px;
    min-width: 260px
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 20px;
    padding: 24px 0;
    text-align: center
  }

  .nl-form {
    flex-direction: column
  }

  .f-brand p,
  .newsletter-area p {
    margin-inline: auto
  }

  .f-social,
  .f-app-row {
    justify-content: center
  }

  .f-links a,
  .f-contact a {
    text-align: start
  }

  .newsletter-area {
    padding: 28px 0 24px
  }
}

@media(max-width:480px) {
  .hero {
    padding: 18px 0 0
  }

  .hero h1 {
    font-size: 1.25rem
  }

  .hero-logo img {
    height: 34px
  }

  .hero p {
    font-size: .8rem
  }

  .hero-btns {
    flex-direction: column;
    align-items: center;
    gap: 8px
  }

  .hero-btn {
    padding: 10px 20px;
    font-size: .8rem;
    width: 100%;
    max-width: 260px;
    justify-content: center
  }

  .hero-illustration {
    width: 200%;
    margin-left: -50%;
    margin-top: -12%
  }

  .feat-card {
    padding: 16px 10px;
    min-width: 140px
  }

  .feat-card h4 {
    font-size: .8rem
  }

  .feat-card p {
    font-size: .72rem
  }

  .svc-img .img-card {
    max-width: 180px
  }

  .svc-icon-btn {
    min-width: 66px;
    padding: 7px 9px
  }

  .svc-icon-btn .ico {
    width: 26px;
    height: 26px
  }

  .svc-icon-btn .lbl {
    font-size: .66rem
  }

  .earn-app-row {
    flex-direction: column;
    align-items: center
  }

  .app-btn {
    width: min(230px, 100%);
    justify-content: center
  }

  .cta-app-row {
    flex-direction: column;
    align-items: center
  }

  .zone-img-side {
    height: 150px
  }

  .f-app-row {
    flex-direction: column
  }

  .refer-card {
    padding: 24px 16px
  }

  .refer-card h2 {
    font-size: 1.15rem
  }

  .refer-perks {
    grid-template-columns: 1fr
  }

  .refer-perk {
    min-height: auto
  }

  .cta-box {
    padding: 24px 16px
  }

  .cta-info h2 {
    font-size: 1.15rem
  }

  .cta-phone {
    width: min(230px, 82vw)
  }

  .cta-app-link {
    width: min(230px, 100%);
    justify-content: center
  }

  .nl-form {
    border-radius: 24px
  }

  .nl-form button {
    width: 100%
  }

  .cta-feature-list span {
    font-size: .72rem
  }

  .stat-num {
    font-size: 1.72rem
  }

  .stat-icon {
    width: 44px;
    height: 44px;
    font-size: .9rem;
    margin-bottom: 8px;
    border-radius: 14px
  }

  .stat-card {
    padding: 20px 12px;
    min-width: min(210px, 78vw);
    flex-basis: min(210px, 78vw)
  }

  .zone-tag {
    padding: 7px 13px;
    font-size: .76rem
  }

  .sp-card {
    min-width: 200px;
    padding: 18px 14px
  }
}

@media(max-width:360px) {
  .hero h1 {
    font-size: 1.1rem
  }

  .svc-icons {
    gap: 4px
  }

  .svc-icon-btn {
    min-width: 58px;
    padding: 6px 7px
  }

  .feat-card {
    min-width: 120px
  }
}

/* ========== SLIDER WRAP + NAV ========== */
.slider-wrap {
  position: relative
}

.slider-nav {
  display: contents
}

.slider-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--white);
  border: 1.5px solid var(--border);
  display: none;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  color: var(--title);
  cursor: pointer;
  transition: .3s var(--ease);
  z-index: 5;
  box-shadow: 0 2px 10px rgba(0, 0, 0, .08)
}

.slider-arrow.visible {
  display: flex
}

.slider-arrow:hover {
  background: var(--green);
  border-color: var(--green);
  color: #fff;
  box-shadow: 0 4px 12px rgba(var(--primary-rgb), .2)
}

.slider-prev {
  inset-inline-start: -20px
}

.slider-next {
  inset-inline-end: -20px
}

@media(max-width:768px) {
  .slider-prev {
    inset-inline-start: -6px
  }

  .slider-next {
    inset-inline-end: -6px
  }

  .slider-arrow {
    width: 32px;
    height: 32px;
    font-size: .85rem
  }
}

/* ========== PAGE HERO ========== */
.page-hero {
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  padding: 48px 0;
  text-align: center;
  color: #fff;
  position: relative;
  overflow: hidden
}

.page-hero::before {
  content: '';
  position: absolute;
  top: -60px;
  right: -60px;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .08)
}

.page-hero::after {
  content: '';
  position: absolute;
  bottom: -40px;
  left: -40px;
  width: 160px;
  height: 160px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .05)
}

.page-hero h1 {
  font-size: 1.8rem;
  font-weight: 700;
  position: relative;
  z-index: 2
}

.page-hero .breadcrumb {
  font-size: .84rem;
  color: rgba(255, 255, 255, .7);
  margin-top: 6px;
  position: relative;
  z-index: 2;
  display: block;
  background: none;
  padding: 0;
  margin-bottom: 0
}

.page-hero .breadcrumb a {
  color: rgba(255, 255, 255, .7);
  transition: .25s
}

.page-hero .breadcrumb a:hover {
  color: #fff
}

/* ========== PAGE CONTENT ========== */
.page-content {
  padding: 50px 0
}

.page-content .content-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 40px;
  line-height: 1.8
}

.page-content .content-card h2 {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--title);
  margin: 24px 0 8px
}

.page-content .content-card h2:first-child {
  margin-top: 0
}

.page-content .content-card h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--title);
  margin: 20px 0 6px
}

.page-content .content-card p {
  color: var(--text);
  font-size: .92rem;
  margin-bottom: 14px
}

.page-content .content-card p:last-child {
  margin-bottom: 0
}

.page-content .content-card ul {
  margin: 8px 0 14px 20px;
  list-style: disc
}

.page-content .content-card ul li {
  color: var(--text);
  font-size: .88rem;
  margin-bottom: 6px;
  line-height: 1.6;
  list-style: disc
}

/* ========== CONTACT SECTION ========== */
.contact-section {
  padding: 50px 0
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 24px;
  align-items: start
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 14px
}

.contact-card {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 24px;
  display: flex;
  align-items: center;
  gap: 16px;
  transition: .3s var(--ease)
}

.contact-card:hover {
  border-color: var(--green);
  box-shadow: 0 6px 24px rgba(var(--primary-rgb), .08);
  transform: translateY(-2px)
}

.contact-card .cc-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: var(--green-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0
}

.contact-card .cc-icon svg {
  width: 20px;
  height: 20px;
  stroke: var(--green);
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round
}

.contact-card h4 {
  font-size: .88rem;
  font-weight: 700;
  color: var(--title);
  margin-bottom: 2px
}

.contact-card p {
  font-size: .84rem;
  color: var(--text)
}

.contact-card p a {
  color: var(--text);
  transition: .25s
}

.contact-card p a:hover {
  color: var(--green)
}

.contact-form-card {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px
}

.contact-form-card h3 {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--title);
  margin-bottom: 4px
}

.contact-form-card>p {
  font-size: .86rem;
  color: var(--text);
  margin-bottom: 24px
}

.cf-group {
  margin-bottom: 16px
}

.cf-group label {
  display: block;
  font-size: .82rem;
  font-weight: 600;
  color: var(--title);
  margin-bottom: 6px
}

.cf-group input,
.cf-group textarea {
  width: 100%;
  padding: 11px 16px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  background: var(--bg-light);
  font-size: .88rem;
  color: var(--title);
  font-family: 'Lato', sans-serif;
  outline: none;
  transition: .3s
}

.cf-group input:focus,
.cf-group textarea:focus {
  border-color: var(--green);
  box-shadow: 0 0 0 3px rgba(var(--primary-rgb), .1)
}

.cf-group textarea {
  resize: vertical;
  min-height: 120px
}

.cf-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px
}

.cf-submit {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 32px;
  background: var(--green);
  color: #fff;
  border-radius: 100px;
  font-size: .88rem;
  font-weight: 700;
  border: none;
  cursor: pointer;
  transition: .3s var(--ease);
  margin-top: 8px
}

.cf-submit:hover {
  background: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(var(--primary-rgb), .25)
}

/* ========== MODAL (welcome) ========== */
.modal-content {
  border-radius: var(--radius-lg)
}


/* ========== INNER PAGES RESPONSIVE ========== */
@media(max-width:768px) {
  .page-hero {
    padding: 36px 0
  }

  .page-hero h1 {
    font-size: 1.4rem
  }

  .page-content {
    padding: 36px 0
  }

  .page-content .content-card {
    padding: 28px 20px
  }

  .contact-section {
    padding: 36px 0
  }

  .contact-grid {
    grid-template-columns: 1fr
  }

  .cf-row {
    grid-template-columns: 1fr
  }
}

@media(max-width:480px) {
  .page-hero {
    padding: 28px 0
  }

  .page-hero h1 {
    font-size: 1.2rem
  }

  .page-content {
    padding: 28px 0
  }

  .page-content .content-card {
    padding: 22px 16px
  }

  .contact-section {
    padding: 28px 0
  }

  .contact-form-card {
    padding: 24px
  }

  .cf-submit {
    width: 100%;
    justify-content: center
  }
}

/* =============================================================
   REGISTRATION PAGES (Vendor, Deliveryman, Rider)
============================================================= */

/* Page Hero Banner */
.page-hero {
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  padding: 48px 0;
  text-align: center;
  color: var(--white);
  position: relative;
  overflow: hidden
}

.page-hero::before {
  content: '';
  position: absolute;
  top: -60px;
  right: -60px;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .08)
}

.page-hero::after {
  content: '';
  position: absolute;
  bottom: -40px;
  left: -40px;
  width: 160px;
  height: 160px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .05)
}

.page-hero h1 {
  font-size: 1.8rem;
  font-weight: 700;
  position: relative;
  z-index: 2;
  color: var(--white)
}

.page-hero .breadcrumb {
  font-size: .84rem;
  color: rgba(255, 255, 255, .7);
  margin-top: 6px;
  position: relative;
  z-index: 2;
  justify-content: center;
  background: none;
  padding: 0;
  margin-bottom: 0
}

.page-hero .breadcrumb a {
  color: rgba(255, 255, 255, .7);
  transition: .25s
}

.page-hero .breadcrumb a:hover {
  color: var(--white)
}

/* Registration Section */
.reg-section {
  padding: 40px 0
}

.reg-container {
  max-width: 960px;
  margin: 0 auto;
  padding: 0 24px
}

.reg-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px
}

/* Section Headings */
.sec-head {
  font-size: 1rem;
  font-weight: 700;
  color: var(--title);
  margin-bottom: 16px;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  gap: 8px
}

.sec-head svg {
  width: 18px;
  height: 18px;
  stroke: var(--green);
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round
}

/* Grid Rows */
.row-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px
}

.row-3 {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 16px
}

.row-8-4 {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 16px
}

.row-6-6 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px
}

/* Registration Form Elements */
.reg-section .form-group {
  margin-bottom: 14px
}

.reg-section .form-group label {
  display: block;
  font-size: .82rem;
  font-weight: 600;
  color: var(--title);
  margin-bottom: 5px
}

.reg-section .form-group label .req {
  color: #e74c3c
}

.reg-section .form-group input,
.reg-section .form-group select,
.reg-section .form-group textarea {
  width: 100%;
  padding: 9px 12px;
  border: 1px solid var(--border);
  border-radius: 8px;
  font-size: .84rem;
  font-family: inherit;
  color: var(--title);
  background: var(--white);
  transition: .25s;
  outline: none
}

.reg-section .form-group input:focus,
.reg-section .form-group select:focus,
.reg-section .form-group textarea:focus {
  border-color: var(--green);
  box-shadow: 0 0 0 3px rgba(var(--primary-rgb), .1)
}

.reg-section .form-group select {
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%23717C77' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  background-color: var(--white)
}

.reg-section .form-group textarea {
  resize: vertical;
  min-height: 70px
}

.reg-section .form-hint {
  font-size: .72rem;
  color: var(--text);
  margin-top: 3px
}

/* Phone with Country Picker */
.phone-wrap {
  display: flex;
  gap: 0
}

.phone-wrap .country-sel {
  width: 110px;
  padding: 9px 8px;
  border: 1px solid var(--border);
  border-radius: 8px 0 0 8px;
  border-right: none;
  font-size: .82rem;
  font-family: inherit;
  background: var(--white);
  cursor: pointer;
  outline: none;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='10' viewBox='0 0 24 24' fill='none' stroke='%23717C77' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 6px center
}

.phone-wrap .country-sel:focus {
  border-color: var(--green);
  box-shadow: 0 0 0 3px rgba(var(--primary-rgb), .1)
}

.phone-wrap input[type="tel"] {
  flex: 1;
  border-radius: 0 8px 8px 0
}

/* IntlTelInput full-width fix */
.reg-section .iti {
  display: block;
  width: 100%
}

/* Admin card overrides for vendor registration */
.reg-section .card.__card {
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: none;
  margin-bottom: 20px
}

.reg-section .card.__card .card-header {
  background: none;
  border-bottom: none;
  padding: 20px 28px 0
}

.reg-section .card.__card .card-title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--title);
  margin: 0
}

.reg-section .__form-control {
  border: 1px solid var(--border);
  border-radius: 8px;
  font-size: .84rem;
  padding: 9px 12px;
  transition: .25s
}

.reg-section .__form-control:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(var(--primary-rgb), .1)
}

.reg-section .__form-control.is-invalid,
.reg-section .is-invalid.form-control {
  border-color: #e74c3c !important;
  box-shadow: none
}

#password-rules li {
  font-size: .75rem;
  display: flex;
  align-items: center;
  gap: 4px
}

.reg-section .input-label {
  font-size: .82rem;
  font-weight: 600;
  color: var(--title);
  margin-bottom: 5px
}

.reg-section .bg-F8F9FC {
  background: var(--bg-light) !important
}

.reg-section .image--border {
  border: 2px dashed var(--border);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: .3s
}

.reg-section .image--border:hover {
  border-color: var(--green)
}

.reg-section .show-password {
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  cursor: pointer;
  color: var(--text);
  display: flex;
  align-items: center
}

.reg-section .show-password svg {
  width: 18px;
  height: 18px
}

.reg-section .show-password .icon-1 { display: none }
.reg-section .show-password .icon-2 { display: flex }
.reg-section .show-password.shown .icon-1 { display: flex }
.reg-section .show-password.shown .icon-2 { display: none }

.reg-section .stepper-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px
}

.reg-section .stepper-item .step-name {
  font-size: .76rem;
  font-weight: 600;
  color: var(--text)
}

.reg-section .stepper-item.active .step-name {
  color: var(--title);
  font-weight: 700
}

.reg-section .document-upload-wrapper {
  border: 2px dashed var(--border);
  border-radius: 10px;
  padding: 24px 16px;
  text-align: center;
  cursor: pointer;
  transition: .3s;
  width: 100%;
  position: relative;
  background: var(--bg-light)
}

.reg-section .document-upload-wrapper:hover {
  border-color: var(--primary);
  background: rgba(var(--primary-rgb), .03)
}

.reg-section .document-upload-wrapper .document_input {
  position: absolute;
  inset: 0;
  opacity: 0;
  cursor: pointer;
  width: 100%;
  height: 100%;
  z-index: 2
}

.reg-section .document-upload-wrapper .textbox {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  pointer-events: none
}

.reg-section .document-upload-wrapper .textbox .upload-icon-svg {
  width: 44px;
  height: 44px;
  color: var(--text);
  opacity: .5
}

.reg-section .document-upload-wrapper .textbox p {
  font-size: .8rem;
  color: var(--text);
  margin: 0;
  line-height: 1.5
}

.reg-section .document-upload-wrapper .textbox p .font-semibold {
  color: var(--primary);
  font-weight: 600
}

/* TIN uploader action buttons (edit / remove) */
.reg-section .single-document-uploaderwrap .doc-action-btn {
  position: absolute;
  top: 10px;
  width: 32px;
  height: 32px;
  border-radius: 8px;
  border: none;
  cursor: pointer;
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 10;
  transition: background .2s, color .2s, box-shadow .2s, transform .1s;
  padding: 0;
  box-shadow: 0 2px 8px rgba(0, 0, 0, .12)
}

.reg-section .single-document-uploaderwrap .doc-action-btn:active {
  transform: scale(.93)
}

.reg-section .single-document-uploaderwrap .doc-edit-btn {
  right: 50px;
  background: #fff;
  color: var(--primary);
  border: 1.5px solid rgba(var(--primary-rgb), .25)
}

.reg-section .single-document-uploaderwrap .doc-edit-btn:hover {
  background: var(--primary);
  color: #fff;
  border-color: var(--primary)
}

.reg-section .single-document-uploaderwrap .doc-remove-btn {
  right: 10px;
  background: #fff;
  color: #e74c3c;
  border: 1.5px solid rgba(231, 76, 60, .25)
}

.reg-section .single-document-uploaderwrap .doc-remove-btn:hover {
  background: #e74c3c;
  color: #fff;
  border-color: #e74c3c
}

/* ===== Subscription Package Cards ===== */

/* Owl carousel equal-height layout */
.reg-section .plan-slider {
  padding: 10px 2px
}

.reg-section .plan-slider .owl-stage-outer {
  overflow: hidden;
  padding: 6px 0
}

.reg-section .plan-slider .owl-stage {
  display: flex;
  align-items: stretch
}

.reg-section .plan-slider .owl-item {
  display: flex
}

/* Card shell */
.reg-section .__plan-item {
  background: #fff;
  border: 1px solid #e4e7ec;
  border-radius: 16px;
  transition: background .3s ease, border-color .3s ease, box-shadow .3s ease;
  display: flex;
  flex-direction: column;
  width: 100%;
  cursor: pointer;
  overflow: hidden;
  position: relative
}

.reg-section .__plan-item .inner-div {
  padding: 30px 22px 24px;
  border-radius: inherit;
  cursor: pointer;
  text-align: center;
  display: flex;
  flex-direction: column;
  flex: 1
}

/* Plan name */
.reg-section .__plan-item .title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--title);
  margin-bottom: 16px;
  letter-spacing: .01em;
  text-transform: capitalize;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis
}

/* Price */
.reg-section .__plan-item .price {
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--title);
  margin-bottom: 8px;
  line-height: 1.1
}

/* Validity badge */
.reg-section .__plan-item .day-count {
  display: inline-block;
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .02em;
  color: var(--primary);
  background: rgba(var(--primary-rgb), .08);
  border-radius: 20px;
  padding: 5px 16px;
  margin: 0 auto 4px
}

/* Separator line between header & features */
.reg-section .__plan-item .info::before {
  content: '';
  display: block;
  height: 1px;
  background: #eef0f3;
  margin-bottom: 6px
}

/* Feature list — max 5 items, rest scrollable */
.reg-section .__plan-item .info {
  padding: 0;
  margin: 18px 0 0;
  list-style: none;
  text-align: left;
  flex: 1;
  max-height: calc(5 * 34px);
  overflow-y: auto;
  overflow-x: hidden;
  scrollbar-width: thin;
  scrollbar-color: rgba(0,0,0,.12) transparent
}

.reg-section .__plan-item .info::-webkit-scrollbar { width: 3px }
.reg-section .__plan-item .info::-webkit-scrollbar-track { background: transparent }
.reg-section .__plan-item .info::-webkit-scrollbar-thumb { background: rgba(0,0,0,.12); border-radius: 4px }

.reg-section .__plan-item .info li {
  padding: 7px 2px;
  display: flex;
  align-items: center;
  font-size: .8rem;
  font-weight: 500;
  color: #4a5568;
  gap: 10px
}

.reg-section .__plan-item .info li img {
  width: 18px !important;
  height: 18px !important;
  flex-shrink: 0;
  display: inline !important
}

.reg-section .__plan-item .info li img.check-white {
  display: none !important
}

/* ---- Hover state ---- */
.reg-section .__plan-item:not(.active):hover {
  border-color: rgba(var(--primary-rgb), .35);
  box-shadow: 0 4px 16px rgba(var(--primary-rgb), .1)
}

/* ---- Active / selected card ---- */
.reg-section .__plan-item.active {
  background:
    linear-gradient(180deg, transparent 0%, rgba(0,0,0,.4) 100%),
    linear-gradient(180deg, rgba(var(--primary-rgb),1) 0%, rgba(var(--primary-rgb),.8) 100%);
  border-color: transparent;
  box-shadow: 0 6px 20px rgba(var(--primary-rgb), .25)
}

.reg-section .__plan-item.active .inner-div {
  color: #fff
}

.reg-section .__plan-item.active .title {
  color: rgba(255,255,255,.8)
}

.reg-section .__plan-item.active .price {
  color: #fff
}

.reg-section .__plan-item.active .day-count {
  color: #fff;
  background: rgba(255,255,255,.15)
}

.reg-section .__plan-item.active .info::before {
  background: rgba(255,255,255,.12)
}

.reg-section .__plan-item.active .info li {
  color: rgba(255,255,255,.88)
}

.reg-section .__plan-item.active .info::-webkit-scrollbar-thumb {
  background: rgba(255,255,255,.25)
}

.reg-section .__plan-item.active .info li img.check {
  display: none !important
}

.reg-section .__plan-item.active .info li img.check-white {
  display: inline !important
}

/* Owl carousel nav — absolute side arrows */
.reg-section .plan-slider-wrap {
  position: relative;
  padding: 0 42px;
  margin-top: 4px;
  overflow: hidden
}

.reg-section .plan-slider .owl-nav {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  transform: translateY(-50%);
  pointer-events: none;
  display: flex;
  justify-content: space-between;
  padding: 0
}

@media (max-width: 640px) {
  .reg-section .plan-slider-wrap {
    padding: 0
  }
  .reg-section .plan-slider .owl-nav {
    display: none
  }
}

.reg-section .plan-slider .owl-nav button {
  background: none !important;
  border: none;
  padding: 0 !important;
  line-height: 1;
  pointer-events: all
}

.reg-section .plan-slider .owl-nav-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 1.5px solid var(--border);
  background: var(--white);
  color: var(--title);
  box-shadow: 0 2px 8px rgba(0,0,0,.08);
  transition: all .2s;
  cursor: pointer
}

.reg-section .plan-slider .owl-nav button:hover .owl-nav-btn {
  border-color: var(--primary);
  background: var(--primary);
  color: #fff
}

.reg-section .plan-slider .owl-nav button.disabled {
  opacity: 0;
  pointer-events: none
}

/* Owl dots */
.reg-section .plan-slider .owl-dots {
  display: flex;
  justify-content: center;
  gap: 6px;
  margin-top: 20px
}

.reg-section .plan-slider .owl-dots .owl-dot span {
  display: block;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #d0d3da;
  transition: all .25s
}

.reg-section .plan-slider .owl-dots .owl-dot.active span,
.reg-section .plan-slider .owl-dots .owl-dot:hover span {
  background: var(--primary);
  width: 20px;
  border-radius: 4px
}

/* Plan check item outer label */
.reg-section .plan-check-item {
  display: block;
  height: 100%;
  cursor: pointer
}

.reg-section .plan-check-item .plan-check-item-inner {
  border: 2px solid var(--border);
  border-radius: 12px;
  padding: 18px;
  height: 100%;
  transition: border-color .3s, background .3s;
  color: var(--text)
}

.reg-section .plan-check-item .plan-check-item-inner h5 {
  font-size: .9rem;
  font-weight: 700;
  color: var(--title);
  transition: color .3s
}

.reg-section .plan-check-item .plan-check-item-inner p {
  margin: 0;
  font-size: .84rem
}

.reg-section .plan-check-item input:checked + .plan-check-item-inner {
  background: rgba(var(--primary-rgb), .04);
  border-color: var(--primary)
}

.reg-section .plan-check-item input:checked + .plan-check-item-inner h5 {
  color: var(--primary)
}

.reg-section .plan-check-item .plan-check-item-inner .checkmark {
  opacity: 0;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  font-size: 12px;
  display: flex;
  justify-content: center;
  align-items: center;
  color: var(--white);
  background: var(--primary)
}

.reg-section .plan-check-item input:checked + .plan-check-item-inner .checkmark {
  opacity: 1
}

/* Delivery time custom group button */
.reg-section .custom-group-btn {
  border: 1px solid var(--border);
  display: flex;
  align-items: stretch;
  width: 100%;
  padding: 0;
  border-radius: 8px;
  overflow: hidden;
  background: var(--white)
}

.reg-section .custom-group-btn .item:first-child::after,
.reg-section .custom-group-btn .item:nth-child(2)::after {
  content: "";
  width: 1px;
  height: 22px;
  background: var(--border);
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%)
}

.reg-section .custom-group-btn .item {
  position: relative;
  display: flex;
  align-items: center;
  padding: 0
}

.reg-section .custom-group-btn .floating-label {
  position: static;
  transform: none;
  white-space: nowrap;
  padding-left: 12px;
  font-size: .8rem;
  font-weight: 600;
  color: var(--text);
  pointer-events: none
}

.reg-section .custom-group-btn .form-control {
  padding: 0 8px;
  box-shadow: none;
  border: none;
  border-radius: 0;
  height: 42px;
  font-size: .84rem;
  min-width: 0;
  width: 70px
}

.reg-section .custom-group-btn .form-control:focus {
  box-shadow: none;
  border: none
}

.reg-section .custom-group-btn .custom-select,
.reg-section .custom-group-btn .form-select {
  border: none;
  border-left: 1px solid var(--border);
  border-radius: 0;
  background-color: var(--bg-light);
  height: 42px;
  font-size: .84rem;
  box-shadow: none;
  padding: 0 28px 0 10px
}

.reg-section .custom-group-btn .custom-select:focus,
.reg-section .custom-group-btn .form-select:focus {
  box-shadow: none
}

/* ── Select2 overrides ─────────────────────────────────── */
.reg-section .select2-container {
  width: 100% !important
}

/* Single select */
.reg-section .select2-container--default .select2-selection--single {
  height: 42px;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: var(--white);
  display: flex;
  align-items: center;
  transition: border-color .25s, box-shadow .25s
}

.reg-section .select2-container--default .select2-selection--single .select2-selection__rendered {
  line-height: 1;
  padding-inline-start: 12px;
  padding-inline-end: 32px;
  color: var(--title);
  font-size: .84rem
}

.reg-section .select2-container--default .select2-selection--single .select2-selection__placeholder {
  color: var(--text);
  opacity: .55
}

.reg-section .select2-container--default .select2-selection--single .select2-selection__arrow {
  height: 40px;
  width: 32px;
  right: 4px
}

.reg-section .select2-container--default .select2-selection--single .select2-selection__arrow b {
  border-color: var(--text) transparent transparent transparent;
  border-width: 5px 4px 0 4px;
  opacity: .6
}

.reg-section .select2-container--default.select2-container--open .select2-selection--single .select2-selection__arrow b {
  border-color: transparent transparent var(--text) transparent;
  border-width: 0 4px 5px 4px
}

/* Focus state — both single and multiple */
.reg-section .select2-container--default.select2-container--focus .select2-selection--single,
.reg-section .select2-container--default.select2-container--open .select2-selection--single,
.reg-section .select2-container--default.select2-container--focus .select2-selection--multiple,
.reg-section .select2-container--default.select2-container--open .select2-selection--multiple {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(var(--primary-rgb), .1);
  outline: none
}

/* Dropdown panel */
.reg-section + .select2-container .select2-dropdown,
.select2-dropdown {
  border: 1px solid var(--border);
  border-radius: 8px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, .1);
  overflow: hidden
}

.select2-results__option {
  font-size: .84rem;
  padding: 8px 12px
}

.select2-container--default .select2-results__option--highlighted[aria-selected] {
  background: rgba(var(--primary-rgb), .08);
  color: var(--primary)
}

.select2-container--default .select2-results__option[aria-selected=true] {
  background: rgba(var(--primary-rgb), .15);
  color: var(--primary)
}

.select2-search--dropdown .select2-search__field {
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 6px 10px;
  font-size: .84rem;
  outline: none
}

.select2-search--dropdown .select2-search__field:focus {
  border-color: var(--primary)
}

/* Info circle icon inline in label */
.reg-section .reg-info-icon {
  width: 14px;
  height: 14px;
  opacity: .5;
  flex-shrink: 0;
  cursor: help
}

/* Delivery time group — flat row */
.reg-section .delivery-time-group {
  display: flex;
  align-items: center;
  border: 1px solid var(--border);
  border-radius: 8px;
  overflow: hidden;
  background: var(--white);
  height: 42px;
  gap: 0
}

.reg-section .delivery-time-group:focus-within {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(var(--primary-rgb), .1)
}

.reg-section .delivery-time-label {
  font-size: .8rem;
  font-weight: 600;
  color: var(--text);
  white-space: nowrap;
  flex-shrink: 0;
  padding-left: 12px
}

.reg-section .delivery-time-input {
  flex: 1 !important;
  width: auto !important;
  min-width: 40px;
  border: none !important;
  border-radius: 0 !important;
  outline: none;
  background: transparent !important;
  font-size: .84rem;
  color: var(--title);
  padding: 0 8px !important;
  box-shadow: none !important
}

.reg-section .delivery-time-unit {
  width: auto !important
}

.reg-section .delivery-time-input::-webkit-inner-spin-button,
.reg-section .delivery-time-input::-webkit-outer-spin-button {
  opacity: .35
}

.reg-section .delivery-time-divider {
  width: 1px;
  height: 22px;
  background: var(--border);
  flex-shrink: 0
}

.reg-section .delivery-time-unit {
  border: none !important;
  border-left: 1px solid var(--border) !important;
  border-radius: 0 !important;
  background: #f8f9fa !important;
  height: 100%;
  font-size: .82rem;
  color: var(--title);
  padding: 0 10px !important;
  flex-shrink: 0;
  outline: none;
  cursor: pointer;
  appearance: auto;
  box-shadow: none !important
}

/* Multi-select (pickup zone) — container */
.reg-section .select2-container--default .select2-selection--multiple {
  min-height: 42px;
  padding: 4px 6px
}

/* Rendered list — flex row, no wrap so pills stay on one line */
.reg-section .multiple-select2 + .select2-container--default .select2-selection--multiple ul.select2-selection__rendered {
  display: flex;
  height: 32px;
  align-items: center;
  padding: 0;
  margin: 0;
  gap: 5px;
  list-style: none;
  flex-wrap: nowrap;
  overflow: hidden
}

/* Individual pill — li.name (rendered by select2DynamicDisplay plugin) */
.reg-section .multiple-select2 + .select2-container--default .select2-selection--multiple ul.select2-selection__rendered .name {
  background: rgba(51, 66, 87, 0.07);
  border-radius: 33px;
  color: rgba(51, 66, 87, 0.9);
  font-weight: 500;
  font-size: .75rem;
  padding: 4px 10px;
  display: flex;
  align-items: center;
  gap: 5px;
  white-space: nowrap;
  flex-shrink: 0;
  list-style: none
}

/* × close icon inside pill */
.reg-section .multiple-select2 + .select2-container--default .select2-selection--multiple ul.select2-selection__rendered .name .close-icon {
  cursor: pointer;
  display: flex;
  align-items: center;
  color: rgba(51, 66, 87, 0.45);
  flex-shrink: 0
}

.reg-section .multiple-select2 + .select2-container--default .select2-selection--multiple ul.select2-selection__rendered .name .close-icon:hover {
  color: #e74c3c
}

/* +N overflow badge */
.reg-section .multiple-select2 + .select2-container--default .select2-selection--multiple ul.select2-selection__rendered .more {
  background: var(--primary);
  border-radius: 30px;
  color: #fff;
  font-weight: 600;
  font-size: .72rem;
  padding: 3px 10px;
  white-space: nowrap
}

/* Inline search field */
.reg-section .multiple-select2 + .select2-container--default .select2-selection--multiple ul.select2-selection__rendered .select2-search {
  flex-grow: 1;
  min-width: 30px;
  height: 30px
}

.reg-section .multiple-select2 + .select2-container--default .select2-selection--multiple ul.select2-selection__rendered .select2-search input {
  width: 100% !important;
  margin: 0 !important;
  height: 30px;
  border: none !important;
  outline: none !important;
  background: transparent !important;
  font-size: .82rem
}

/* fallback for standard select2 choice tags (if used elsewhere) */
.reg-section .select2-container--default .select2-selection--multiple .select2-selection__choice {
  background: rgba(51, 66, 87, 0.07);
  border: none;
  border-radius: 33px;
  color: rgba(51, 66, 87, 0.9);
  font-size: .75rem;
  font-weight: 500;
  padding: 3px 10px;
  margin: 2px 0;
  float: none;
  display: inline-flex;
  align-items: center;
  gap: 5px
}

.reg-section .select2-container--default .select2-selection--multiple .select2-selection__choice__remove {
  color: rgba(51, 66, 87, 0.45);
  font-size: .85rem;
  margin: 0;
  order: 1;
  line-height: 1
}

.reg-section .select2-container--default .select2-selection--multiple .select2-selection__choice__remove:hover {
  color: #e74c3c
}

.reg-section .select2-container--default .select2-search--inline .select2-search__field {
  margin: 3px 0;
  font-size: .84rem
}

/* Background utility for TIN section */
.reg-section .bg--secondary {
  background-color: #F7F8FA !important;
  border-radius: 8px
}

/* Utility classes not loaded from admin CSS */
.reg-section .fs-12 {
  font-size: 12px !important
}

.reg-section .rounded-8 {
  border-radius: 8px !important
}

/* Map out-of-zone alert */
.reg-section #outOfZone {
  display: flex !important;
  align-items: center;
  flex-direction: row;
  font-size: 12px;
  border-radius: 8px;
  gap: 6px;
  line-height: 1.4;
  text-align: left
}

.reg-section #outOfZone img {
  display: inline !important;
  width: 16px !important;
  height: 16px !important;
  flex-shrink: 0;
  vertical-align: middle
}

/* Admin panel button classes */
.reg-section .cmn--btn {
  background: var(--primary);
  border-color: var(--primary);
  color: var(--white)
}

.reg-section .cmn--btn:hover {
  background: var(--primary-dark);
  border-color: var(--primary-dark);
  color: var(--white)
}

.reg-section .action-btn {
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .8em !important;
  padding: 0 !important
}

/* Height utilities */
.reg-section .h-280 {
  height: 280px !important
}

.reg-section .h-110 {
  height: 110px !important
}

/* Width utilities */
.reg-section .max-w-110 {
  max-width: 110px !important
}

.reg-section .max-w-220 {
  max-width: 220px !important
}

.reg-section .min-w-220 {
  min-width: 220px !important
}

.reg-section .w-30px {
  width: 30px !important
}

.reg-section .h-30 {
  height: 30px !important
}

.reg-section .min-w-30px {
  min-width: 30px !important
}

/* Spacing utilities */
.reg-section .mb-10 {
  margin-bottom: 10px !important
}

.reg-section .mb-20 {
  margin-bottom: 20px !important
}

.reg-section .mb-30 {
  margin-bottom: 30px !important
}

.reg-section .p-20 {
  padding: 20px !important
}

/* Mobile-center utility */
@media (max-width: 575px) {
  .reg-section .mx-mobile-auto {
    margin-left: auto !important;
    margin-right: auto !important
  }
}

/* TIN document uploader */
.reg-section .single-document-uploaderwrap .pdf-single {
  position: relative;
  display: inline-block;
  max-width: 280px;
  height: 100%;
  border: 1px solid var(--border);
  border-radius: 8px;
  cursor: pointer;
  flex-grow: 1
}

.reg-section .single-document-uploaderwrap .pdf-single .pdf-frame {
  overflow: hidden
}

.reg-section .single-document-uploaderwrap .pdf-single .pdf-thumbnail-alt,
.reg-section .single-document-uploaderwrap .pdf-single .pdf-thumbnail {
  height: 120px;
  object-fit: cover;
  object-position: top;
  width: 100%;
  border-radius: 5px
}

.reg-section .single-document-uploaderwrap .pdf-single .overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, .2);
  color: var(--white);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: center;
  border-radius: 5px
}

.reg-section .single-document-uploaderwrap .pdf-single .remove-btn {
  position: absolute;
  top: -10px;
  right: -10px;
  background: #ff4949;
  color: var(--white);
  width: 26px;
  height: 26px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  display: none !important
}

.reg-section .single-document-uploaderwrap .pdf-single .pdf-info {
  background: var(--white);
  box-shadow: 0 -3px 10px rgba(0, 0, 0, .1);
  border-radius: 5px;
  padding: 14px 11px;
  width: 100%;
  display: flex;
  align-items: center;
  gap: 10px
}

.reg-section .single-document-uploaderwrap .pdf-single .file-name-wrapper {
  color: var(--title);
  font-size: .75rem;
  font-weight: 500;
  display: flex;
  flex-direction: column;
  gap: 3px
}

.reg-section .single-document-uploaderwrap .pdf-single .file-name {
  display: inline-block;
  max-width: 200px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis
}

/* Language tab nav overrides */
.reg-section .nav-tabs.tabs-inner {
  border-bottom: 1px solid var(--border);
  flex-wrap: nowrap;
  overflow-x: auto;
  scroll-behavior: smooth;
  gap: 0
}

.reg-section .nav-tabs.tabs-inner::-webkit-scrollbar {
  display: none
}

.reg-section .nav-tabs .nav-item .nav-link.lang_link {
  color: var(--text);
  font-size: .84rem;
  font-weight: 500;
  padding: 8px 16px;
  border: none;
  border-bottom: 2px solid transparent;
  white-space: nowrap;
  background: none;
  border-radius: 0
}

.reg-section .nav-tabs .nav-item .nav-link.lang_link:hover {
  color: var(--primary)
}

.reg-section .nav-tabs .nav-item .nav-link.lang_link.active {
  color: var(--primary);
  border-bottom-color: var(--primary);
  font-weight: 700
}

/* Password Eye Toggle */
.pw-wrap {
  position: relative
}

.pw-wrap input {
  padding-right: 40px
}

.pw-wrap .eye-btn {
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  cursor: pointer;
  padding: 2px;
  color: var(--text);
  display: flex;
  align-items: center
}

.pw-wrap .eye-btn svg {
  width: 18px;
  height: 18px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round
}

.pw-wrap .eye-btn:hover {
  color: var(--green)
}

/* Upload Area */
.upload-area {
  border: 2px dashed var(--border);
  border-radius: 10px;
  padding: 24px 16px;
  text-align: center;
  cursor: pointer;
  transition: .3s;
  background: rgba(var(--primary-rgb), .02);
  min-height: 180px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative
}

.upload-area:hover {
  border-color: var(--green);
  background: var(--green-soft)
}

.upload-area.has-preview {
  padding: 10px;
  border-style: solid;
  border-color: var(--green)
}

.upload-area .upload-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--green-soft);
  color: var(--green);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  margin: 0 auto 10px
}

.upload-area .preview-img {
  max-height: 140px;
  max-width: 100%;
  border-radius: 8px;
  object-fit: contain;
  margin-bottom: 8px
}

.upload-area p {
  font-size: .82rem;
  color: var(--text);
  margin-bottom: 2px
}

.upload-area .upload-label {
  font-size: .82rem;
  font-weight: 600;
  color: var(--title)
}

.upload-area .upload-hint,
.upload-area .upload-note {
  font-size: .72rem;
  color: var(--text);
  opacity: .7;
  margin-top: 4px
}

.upload-area input[type="file"] {
  display: none
}

.upload-area .upload-change {
  display: none;
  font-size: .72rem;
  font-weight: 600;
  color: var(--green);
  margin-top: 4px
}

.upload-area.has-preview .upload-placeholder {
  display: none
}

.upload-area.has-preview .upload-change {
  display: block
}

/* Spartan Multi Image Picker overrides */
.spartan_remove_row {
  background: rgba(0, 0, 0, .55) !important;
  width: 24px !important;
  height: 24px !important;
  line-height: 24px !important;
  border-radius: 50% !important;
  right: 6px !important;
  top: 6px !important;
  z-index: 10;
  align-items: center;
  justify-content: center
}

.spartan_remove_row[style*="display: block"] {
  display: flex !important
}

.spartan_remove_row i {
  font-style: normal !important;
  font-size: 0 !important
}

.spartan_remove_row i::after {
  content: '\00d7';
  font-size: 16px;
  color: #fff;
  font-weight: 700;
  line-height: 1
}

.spartan_item_wrapper .file_upload {
  border-color: var(--border) !important;
  border-radius: 10px !important;
  transition: .3s
}

.spartan_item_wrapper .file_upload:hover {
  border-color: var(--green) !important
}

.upload-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 16px
}

/* Terms Checkbox */
.terms-check {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  margin-top: 20px;
  margin-bottom: 4px
}

.terms-check input[type="checkbox"] {
  width: 16px;
  height: 16px;
  margin-top: 2px;
  accent-color: var(--green);
  flex-shrink: 0;
  cursor: pointer
}

.terms-check label {
  font-size: .82rem;
  color: var(--text);
  line-height: 1.5;
  cursor: pointer
}

.terms-check label a {
  color: var(--green);
  font-weight: 600;
  text-decoration: underline;
  transition: .2s
}

.terms-check label a:hover {
  color: var(--primary-dark)
}

/* Submit Button */
.submit-btn {
  display: block;
  width: 100%;
  padding: 12px;
  background: var(--green);
  color: var(--white);
  border-radius: 8px;
  font-size: .9rem;
  font-weight: 700;
  border: none;
  cursor: pointer;
  transition: .3s var(--ease);
  margin-top: 16px
}

.submit-btn:hover {
  background: var(--primary-dark);
  transform: translateY(-1px);
  box-shadow: 0 4px 14px rgba(var(--primary-rgb), .25)
}

.submit-btn:disabled,
.submit-btn.disabled {
  background: var(--border);
  color: var(--text);
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
  opacity: .7
}

/* Section Gap */
.section-gap {
  margin-top: 28px
}

/* Section BG Card */
.section-bg {
  background: var(--bg-light);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px;
  margin-bottom: 20px
}

.section-bg h3 {
  font-size: .95rem;
  font-weight: 700;
  color: var(--title);
  margin-bottom: 14px
}

/* Form Card */
.form-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
  margin-bottom: 20px
}

.form-card h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--title);
  margin-bottom: 16px
}

.form-card .subtitle {
  font-size: .82rem;
  color: var(--text);
  margin-top: -12px;
  margin-bottom: 16px
}

/* Language Tabs */
.lang-tabs {
  display: flex;
  gap: 0;
  margin-bottom: 16px;
  border-bottom: 2px solid var(--border)
}

.lang-tab {
  padding: 8px 16px;
  font-size: .82rem;
  font-weight: 600;
  color: var(--text);
  border: none;
  background: none;
  cursor: pointer;
  border-bottom: 2px solid transparent;
  margin-bottom: -2px;
  transition: .25s
}

.lang-tab.active {
  color: var(--green);
  border-bottom-color: var(--green)
}

.lang-content {
  display: none
}

.lang-content.active {
  display: block
}

/* Map Box */
.map-box {
  border: 1px solid var(--border);
  border-radius: 8px;
  background: var(--bg-light);
  min-height: 200px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin-bottom: 12px;
  text-align: center;
  padding: 20px
}

.map-box .pin {
  font-size: 2rem;
  margin-bottom: 6px
}

.map-box p {
  font-size: .82rem;
  color: var(--text)
}

.latlng-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px
}

/* Delivery Time Row */
.dt-row {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 10px
}

/* Stepper */
.reg-section .stepper {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-bottom: 32px;
  flex-wrap: wrap
}

.stepper-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  min-width: 90px
}

.stepper-circle {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 2px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: .85rem;
  background: var(--white);
  color: var(--text);
  transition: .3s
}

.stepper-step.active .stepper-circle,
.stepper-step.completed .stepper-circle {
  background: var(--green);
  color: var(--white);
  border-color: var(--green)
}

.stepper-label {
  font-size: .76rem;
  font-weight: 600;
  color: var(--text);
  text-align: center
}

.stepper-step.active .stepper-label {
  color: var(--title);
  font-weight: 700
}

.stepper-connector {
  flex: 1;
  height: 2px;
  background: var(--border);
  max-width: 80px
}

.stepper-step.completed ~ .stepper-connector {
  background: var(--green)
}

/* Plan Cards */
.plans-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 20px
}

.plan-card {
  border: 2px solid var(--border);
  border-radius: 12px;
  padding: 18px 18px 18px 48px;
  cursor: pointer;
  transition: .3s;
  position: relative
}

.plan-card:hover {
  border-color: var(--green)
}

.plan-card input {
  display: none
}

.plan-radio {
  position: absolute;
  top: 18px;
  left: 16px;
  width: 18px;
  height: 18px;
  border: 2px solid var(--border);
  border-radius: 50%;
  transition: .3s
}

.plan-card input:checked ~ .plan-radio {
  border-color: var(--green);
  background: var(--green)
}

.plan-title {
  font-weight: 700;
  color: var(--title);
  font-size: .9rem;
  margin-bottom: 4px
}

.plan-desc {
  font-size: .78rem;
  color: var(--text);
  line-height: 1.5
}

/* Subscription Packages */
.packages-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-bottom: 16px
}

.pkg-card {
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 18px;
  text-align: center;
  cursor: pointer;
  transition: .3s;
  position: relative
}

.pkg-card:hover {
  border-color: var(--green)
}

.pkg-card input {
  display: none
}

.pkg-check {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 18px;
  height: 18px;
  border: 2px solid var(--border);
  border-radius: 50%;
  transition: .3s;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .7rem;
  color: var(--white)
}

.pkg-card input:checked ~ .pkg-check {
  border-color: var(--green);
  background: var(--green)
}

.pkg-name {
  font-size: .95rem;
  font-weight: 700;
  color: var(--title);
  margin-bottom: 2px
}

.pkg-price {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--green);
  margin-bottom: 2px
}

.pkg-dur {
  font-size: .74rem;
  color: var(--text);
  margin-bottom: 12px
}

.pkg-features {
  text-align: left;
  font-size: .78rem;
  color: var(--text);
  list-style: none;
  padding: 0;
  margin: 0
}

.pkg-features li {
  margin-bottom: 5px;
  padding-left: 18px;
  position: relative;
  line-height: 1.4
}

.pkg-features li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 5px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--green-soft);
  border: 2px solid var(--green)
}

/* ===== Payment Page ===== */

/* Payment method items */
.payment-item {
  display: block;
  cursor: pointer;
  margin: 0
}

.payment-item .payment-item-inner {
  color: var(--text);
  padding: 14px 18px;
  border-radius: 10px;
  border: 1.5px solid var(--border);
  display: flex;
  align-items: center;
  gap: 12px;
  transition: all .25s;
  background: #fff;
  min-height: 58px
}

.payment-item .payment-item-inner:hover {
  border-color: rgba(var(--primary-rgb), .3);
  box-shadow: 0 2px 10px rgba(var(--primary-rgb), .06)
}

.payment-item .payment-item-inner .check {
  width: 20px;
  display: inline-flex;
  flex-shrink: 0
}

.payment-item .payment-item-inner .check img {
  width: 100%
}

.payment-item .payment-item-inner .check .check {
  display: none
}

.payment-item input:checked ~ .payment-item-inner {
  border-color: var(--primary);
  background: rgba(var(--primary-rgb), .05);
  box-shadow: 0 2px 10px rgba(var(--primary-rgb), .08)
}

.payment-item input:checked ~ .payment-item-inner .check .check {
  display: block
}

.payment-item input:checked ~ .payment-item-inner .check .uncheck {
  display: none
}

/* Payment gateway icon */
.payment-gateway-icon {
  height: 28px;
  width: auto;
  max-width: 60px;
  object-fit: contain;
  flex-shrink: 0
}

/* Free trial card */
.payment-free-trial .payment-item-inner {
  border-style: dashed;
  border-color: var(--primary);
  background: rgba(var(--primary-rgb), .04);
  padding: 16px 20px
}

.payment-free-trial input:checked ~ .payment-item-inner {
  border-style: solid;
  background: rgba(var(--primary-rgb), .08)
}

/* Divider with "OR" text */
.payment-divider {
  display: flex;
  align-items: center;
  gap: 16px;
  margin: 20px 0 4px
}

.payment-divider::before,
.payment-divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--border)
}

.payment-divider span {
  font-size: .75rem;
  font-weight: 700;
  color: #adb5bd;
  letter-spacing: .08em;
  text-transform: uppercase
}

/* Section title with icon */
.payment-section-title {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: .9rem;
  font-weight: 700;
  color: var(--title);
  margin: 0
}

.payment-section-title svg {
  color: var(--primary);
  flex-shrink: 0
}

.payment-section-subtitle {
  font-weight: 400;
  font-size: .82rem;
  color: var(--text)
}

/* Muted text utility */
.text-muted {
  color: #6c757d !important
}

.fs-13 {
  font-size: .82rem
}

.fw-bold {
  font-weight: 700
}

/* Success Box */
.success-box {
  text-align: center;
  padding: 60px 20px
}

.success-box .check {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--green);
  color: var(--white);
  font-size: 1.8rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px
}

.success-box h2 {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--title);
  margin-bottom: 10px
}

.success-box p {
  font-size: .92rem;
  color: var(--text);
  margin-bottom: 28px;
  max-width: 440px;
  margin-left: auto;
  margin-right: auto
}

.success-box a:hover,
.success-box button:hover {
  color: #fff !important
}

/* Step Visibility */
.step-box {
  display: none
}

.step-box.active {
  display: block
}

/* Form Buttons */
.form-btns {
  display: flex;
  gap: 12px;
  justify-content: flex-end;
  margin-top: 20px
}

.btn-reset,
.btn-back {
  padding: 10px 22px;
  border-radius: 8px;
  font-weight: 600;
  font-size: .84rem;
  background: var(--white);
  color: var(--text);
  border: 1px solid var(--border);
  cursor: pointer;
  transition: .25s
}

.btn-reset:hover,
.btn-back:hover {
  background: var(--bg-light)
}

.btn-next,
.btn-submit,
.btn-home {
  padding: 12px 40px;
  border-radius: 8px;
  font-weight: 700;
  font-size: .86rem;
  background: var(--green);
  color: var(--white);
  border: none;
  cursor: pointer;
  transition: .3s var(--ease)
}

.btn-next:hover:not(:disabled),
.btn-submit:hover:not(:disabled),
.btn-home:hover {
  background: var(--primary-dark);
  transform: translateY(-1px);
  box-shadow: 0 4px 14px rgba(var(--primary-rgb), .25)
}

.btn-next:disabled,
.btn-submit:disabled {
  opacity: .55;
  cursor: not-allowed;
  transform: none;
  box-shadow: none
}

.btn-next .btn-loader,
.btn-submit .btn-loader {
  display: inline-flex;
  align-items: center;
  gap: 6px
}

/* Registration Responsive */
@media (max-width: 768px) {
  .page-hero {
    padding: 36px 0
  }

  .page-hero h1 {
    font-size: 1.4rem
  }

  .row-2,
  .row-3,
  .row-8-4,
  .row-6-6,
  .upload-row,
  .dt-row,
  .latlng-row {
    grid-template-columns: 1fr
  }

  .plans-row,
  .packages-row {
    grid-template-columns: 1fr
  }

  .form-card,
  .reg-card {
    padding: 20px
  }

  .reg-section {
    padding: 28px 0
  }

  .stepper-connector {
    display: none
  }

  .form-btns {
    flex-direction: column
  }
}

@media (max-width: 480px) {
  .page-hero {
    padding: 28px 0
  }

  .page-hero h1 {
    font-size: 1.2rem
  }

  .reg-container {
    padding: 0 16px
  }

  .form-card,
  .reg-card {
    padding: 16px
  }

  .phone-wrap .country-sel {
    width: 95px
  }
}

/* ========== LANDING RESPONSIVE TYPOGRAPHY + ICON SYSTEM ========== */
body {
  font-family: 'Tajawal', 'Lato', Arial, sans-serif;
  font-size: 16px
}

body,
button,
input,
textarea,
select,
a,
h1,
h2,
h3,
h4,
h5,
h6,
p,
span {
  letter-spacing: 0 !important
}

.hero h1,
.sec-header h2,
.zone-text-side h2,
.refer-card h2,
.earn-top h2,
.stats-head h2,
.cta-info h2,
.newsletter-area h2 {
  font-weight: 900;
  line-height: 1.45;
  text-wrap: balance
}

.hero p,
.sec-header p,
.zone-text-side>p,
.refer-content p,
.earn-top p,
.earn-card>p,
.cta-copy,
.newsletter-area p,
.f-brand p {
  line-height: 1.85;
  overflow-wrap: anywhere
}

.main-nav .container,
.hero,
.services-section,
.features,
.zones,
.referral,
.earn,
.special,
.stats,
.cta-manage,
.testimonials,
.footer {
  scroll-margin-top: 92px
}

.nav-link-icon,
.nav-action-icon,
.hero-btn-icon,
.svc-icon-btn .ico,
.feat-ico,
.zone-pin,
.refer-perk-icon,
.earn-card-icon,
.stat-icon,
.sp-card .sp-ico,
.fl-icon,
.fc-icon {
  flex: 0 0 auto
}

.nav-link-icon {
  width: 30px;
  height: 30px;
  border-radius: 11px
}

.nav-link-icon svg,
.nav-action-icon svg {
  width: 18px;
  height: 18px
}

.nav-links a,
.btn-browse-web,
.btn-join,
.lang-sw .lang-current,
.mob-btn,
.hero-btn,
.app-btn,
.cta-app-link,
.f-app-link,
.nl-form button {
  min-height: 44px
}

.nav-links a,
.btn-browse-web,
.btn-join,
.lang-sw .lang-current {
  font-weight: 900
}

.mob-btn {
  width: 46px;
  height: 46px;
  border-radius: 16px;
  background: #fff;
  border: 1px solid rgba(232, 235, 233, .95);
  align-items: center;
  justify-content: center;
  box-shadow: 0 12px 28px rgba(25, 32, 44, .08)
}

.mob-btn span {
  width: 19px;
  height: 2px;
  border-radius: 100px;
  background: var(--primary)
}

.mobile-menu {
  padding: 92px 18px 28px;
  align-items: stretch;
  justify-content: flex-start;
  gap: 10px
}

.mobile-menu a {
  width: min(100%, 390px);
  margin-inline: auto;
  min-height: 50px;
  display: flex;
  align-items: center;
  gap: 11px;
  padding: 10px 14px;
  border-radius: 18px;
  background: #fff;
  border: 1px solid rgba(232, 235, 233, .95);
  color: #2f3934;
  font-size: .92rem;
  font-weight: 900;
  box-shadow: 0 14px 30px rgba(25, 32, 44, .055)
}

.mobile-menu a::before {
  content: "";
  width: 34px;
  height: 34px;
  border-radius: 13px;
  background:
    radial-gradient(circle at 70% 25%, rgba(255, 255, 255, .75), rgba(255, 255, 255, 0) 38%),
    linear-gradient(135deg, rgba(var(--primary-rgb), .95), rgba(255, 176, 73, .78));
  box-shadow: 0 10px 22px rgba(var(--primary-rgb), .16);
  flex: 0 0 auto
}

.mobile-menu a:hover {
  transform: translateY(-2px);
  border-color: rgba(var(--primary-rgb), .24);
  color: var(--primary)
}

.mobile-menu .close-mob {
  width: 44px;
  height: 44px;
  border-radius: 16px;
  background: rgba(var(--primary-rgb), .08);
  color: var(--primary);
  font-size: 1.35rem;
  line-height: 1
}

@media(max-width:1180px) {
  .main-nav .container {
    gap: 14px;
    padding-inline: 24px
  }

  .nav-logo {
    min-width: 126px
  }

  .nav-logo img {
    height: 38px
  }

  .nav-links {
    gap: 4px
  }

  .nav-links a {
    gap: 6px;
    padding: 8px 9px;
    font-size: .78rem
  }

  .nav-link-icon {
    display: inline-flex;
    width: 25px;
    height: 25px;
    border-radius: 9px
  }

  .nav-link-icon svg {
    width: 15px;
    height: 15px
  }

  .btn-browse-web,
  .btn-join {
    padding-inline: 13px;
    font-size: .82rem
  }
}

@media(max-width:768px) {
  body {
    font-size: 15px
  }

  .main-nav .container {
    height: 68px;
    gap: 10px;
    padding-inline: 14px
  }

  .nav-logo img {
    height: 40px
  }

  .lang-sw {
    display: block
  }

  .lang-sw .lang-current {
    min-width: 52px;
    min-height: 46px;
    padding: 8px 12px;
    font-size: .8rem
  }

  .lang-sw .lang-current .nav-action-icon {
    display: inline-flex
  }

  .lang-dd {
    inset-inline-end: auto;
    inset-inline-start: 0
  }

  .hero h1 {
    font-size: 1.62rem
  }

  .hero p,
  .sec-header p,
  .zone-text-side>p,
  .refer-content p,
  .earn-top p,
  .cta-copy,
  .newsletter-area p {
    font-size: .88rem
  }

  .section-kicker,
  .footer-kicker,
  .earn-kicker,
  .refer-kicker,
  .cta-eyebrow {
    min-height: 34px;
    font-size: .76rem
  }

  .svc-icon-btn {
    min-width: 112px;
    min-height: 104px
  }

  .svc-icon-btn .ico {
    width: 48px;
    height: 48px
  }

  .svc-icon-btn .lbl {
    font-size: .78rem;
    line-height: 1.35
  }

  .feat-ico,
  .refer-perk-icon,
  .stat-icon {
    width: 52px;
    height: 52px
  }

  .earn-card-icon {
    width: 74px;
    height: 74px
  }

  .sp-card .sp-ico {
    width: 72px;
    height: 58px
  }
}

@media(max-width:480px) {
  body {
    font-size: 14.5px
  }

  .container {
    padding-inline: 14px
  }

  .main-nav .container {
    height: 64px;
    padding-inline: 10px
  }

  .nav-logo img {
    height: 34px
  }

  .lang-sw .lang-current {
    min-width: 46px;
    min-height: 44px;
    padding: 8px 10px
  }

  .lang-sw .lang-current .nav-action-icon {
    display: none
  }

  .mob-btn {
    width: 44px;
    height: 44px
  }

  .hero h1 {
    font-size: 1.32rem
  }

  .hero p {
    font-size: .86rem
  }

  .hero-btn {
    min-height: 50px;
    font-size: .84rem
  }

  .hero-btn-icon {
    width: 34px;
    height: 34px
  }

  .hero-btn-icon svg {
    width: 18px;
    height: 18px
  }

  .sec-header h2,
  .zone-text-side h2,
  .refer-card h2,
  .earn-top h2,
  .stats-head h2,
  .cta-info h2,
  .newsletter-area h2 {
    font-size: 1.18rem
  }

  .svc-icon-btn {
    min-width: 96px;
    min-height: 92px;
    padding: 9px 10px
  }

  .svc-icon-btn .ico {
    width: 40px;
    height: 40px
  }

  .svc-icon-btn .lbl {
    font-size: .72rem
  }

  .zone-tag,
  .refer-chip-row span,
  .cta-feature-list span {
    font-size: .74rem;
    line-height: 1.4
  }

  .app-btn,
  .cta-app-link,
  .f-app-link {
    min-height: 52px
  }

  .f-links a,
  .f-contact a {
    font-size: .82rem
  }
}

/* ========== PREMIUM SERVICE DETAIL CARD ========== */
.services-section .svc-slider-wrap {
  margin-bottom: 18px
}

.services-section .svc-icons {
  padding: 4px 4px 10px
}

.services-section .svc-icon-btn {
  border-radius: 22px;
  border-color: rgba(var(--primary-rgb), .16);
  background:
    linear-gradient(180deg, #fff, rgba(255, 248, 243, .94));
  box-shadow: 0 18px 38px rgba(25, 32, 44, .075)
}

.services-section .svc-icon-btn .ico {
  width: 54px;
  height: 54px;
  padding: 10px;
  border-radius: 18px;
  background:
    linear-gradient(135deg, rgba(var(--primary-rgb), .16), rgba(255, 176, 73, .1));
  border: 1px solid rgba(var(--primary-rgb), .1)
}

.services-section .svc-icon-btn .lbl {
  max-width: 100%;
  color: #27322d;
  font-size: .86rem;
  line-height: 1.35;
  white-space: normal
}

.services-section .svc-panel {
  position: relative;
  isolation: isolate;
  gap: clamp(26px, 4vw, 58px);
  padding: clamp(22px, 3vw, 34px);
  border-radius: 34px;
  border: 1px solid rgba(var(--primary-rgb), .2);
  background:
    linear-gradient(90deg, rgba(255, 250, 246, .96), rgba(255, 255, 255, .98) 48%, rgba(245, 248, 247, .94));
  box-shadow:
    0 28px 70px rgba(31, 43, 38, .1),
    inset 0 1px 0 rgba(255, 255, 255, .9);
  overflow: hidden
}

.services-section .svc-panel::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 5px;
  background: linear-gradient(90deg, rgba(var(--primary-rgb), .95), #ffb15f, rgba(var(--secondary-rgb), .62));
  z-index: 1
}

.services-section .svc-panel::after {
  content: "";
  position: absolute;
  inset-inline-start: 42%;
  inset-block: 24px;
  width: 1px;
  background: linear-gradient(180deg, transparent, rgba(var(--primary-rgb), .16), transparent);
  z-index: -1
}

.services-section .svc-text {
  align-self: stretch;
  display: flex;
  padding: 0
}

.svc-copy-card {
  width: 100%;
  min-height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 16px;
  padding: clamp(18px, 2.5vw, 26px);
  border-radius: 28px;
  background: rgba(255, 255, 255, .82);
  border: 1px solid rgba(232, 235, 233, .9);
  box-shadow: 0 18px 44px rgba(25, 32, 44, .065);
  backdrop-filter: blur(10px)
}

.svc-copy-head {
  display: grid;
  gap: 8px
}

.svc-service-badge {
  width: max-content;
  max-width: 100%;
  min-height: 40px;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(var(--primary-rgb), .09);
  border: 1px solid rgba(var(--primary-rgb), .16);
  color: var(--primary);
  font-size: .82rem;
  font-weight: 900;
  line-height: 1.2
}

.svc-service-badge-icon,
.svc-mini-chip-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  overflow: hidden
}

.svc-service-badge-icon {
  width: 28px;
  height: 28px;
  border-radius: 11px;
  background: #fff;
  box-shadow: 0 8px 18px rgba(var(--primary-rgb), .13)
}

.svc-service-badge-icon img,
.svc-mini-chip-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain
}

.svc-copy-head h3 {
  margin: 0;
  color: #25302b;
  font-size: clamp(1.25rem, 2vw, 1.72rem);
  font-weight: 900;
  line-height: 1.35
}

.svc-copy-head p {
  max-width: 520px;
  margin: 0;
  color: #66736c;
  font-size: .95rem;
  font-weight: 800;
  line-height: 1.85
}

.services-section .svc-text .venture-content-box {
  display: grid;
  gap: 10px;
  color: #596660;
  font-size: .94rem;
  font-weight: 800;
  line-height: 1.9
}

.services-section .svc-text .venture-content-box p {
  position: relative;
  margin: 0;
  padding: 12px 42px 12px 14px;
  border-radius: 18px;
  background: rgba(248, 250, 249, .92);
  border: 1px solid rgba(232, 235, 233, .86);
  box-shadow: 0 10px 24px rgba(25, 32, 44, .045);
  overflow-wrap: anywhere
}

.services-section .svc-text .venture-content-box p::before {
  content: "";
  position: absolute;
  inset-inline-start: 14px;
  top: 18px;
  width: 14px;
  height: 14px;
  border-radius: 5px;
  background:
    linear-gradient(135deg, rgba(var(--primary-rgb), .95), #ffba69);
  box-shadow: 0 8px 18px rgba(var(--primary-rgb), .16)
}

.services-section .svc-text .venture-content-box p:first-child {
  padding-block: 13px;
  color: #26312c;
  font-size: 1.02rem;
  font-weight: 900;
  background:
    linear-gradient(135deg, rgba(var(--primary-rgb), .12), rgba(255, 255, 255, .94));
  border-color: rgba(var(--primary-rgb), .18)
}

.svc-mini-services {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  padding-top: 2px
}

.svc-mini-chip {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 7px 12px;
  border-radius: 999px;
  background: #fff;
  border: 1px solid rgba(232, 235, 233, .9);
  color: #35413b;
  font-size: .82rem;
  font-weight: 900;
  box-shadow: 0 12px 26px rgba(25, 32, 44, .055)
}

.svc-mini-chip-icon {
  width: 28px;
  height: 28px;
  padding: 5px;
  border-radius: 11px;
  background: rgba(var(--primary-rgb), .08)
}

.svc-mini-chip.active {
  color: #fff;
  border-color: rgba(var(--primary-rgb), .74);
  background: linear-gradient(135deg, var(--primary), #ff9d45);
  box-shadow: 0 16px 34px rgba(var(--primary-rgb), .2)
}

.svc-mini-chip.active .svc-mini-chip-icon {
  background: rgba(255, 255, 255, .2)
}

.services-section .svc-img {
  align-self: stretch;
  align-items: center
}

.services-section .svc-img .img-card {
  position: relative;
  max-width: 450px;
  padding: 10px;
  border-radius: 30px;
  border: 1px solid rgba(var(--primary-rgb), .14);
  background:
    linear-gradient(180deg, #fff, rgba(255, 249, 244, .92));
  box-shadow:
    0 24px 58px rgba(31, 43, 38, .14),
    inset 0 1px 0 rgba(255, 255, 255, .9)
}

.services-section .svc-img .img-card img {
  width: 100%;
  border-radius: 22px;
  object-fit: cover
}

@media(max-width:992px) {
  .services-section .svc-panel {
    gap: 22px
  }

  .services-section .svc-panel::after {
    display: none
  }
}

@media(max-width:768px) {
  .services-section .svc-panel {
    padding: 16px;
    border-radius: 28px
  }

  .svc-copy-card {
    padding: 18px;
    border-radius: 24px
  }

  .svc-copy-head,
  .services-section .svc-text .venture-content-box {
    text-align: start
  }

  .svc-service-badge {
    margin-inline: auto
  }

  .svc-copy-head h3,
  .svc-copy-head p {
    text-align: center
  }

  .svc-mini-services {
    justify-content: center
  }

  .services-section .svc-text .venture-content-box p {
    padding: 11px 38px 11px 12px;
    font-size: .88rem
  }

  .services-section .svc-img .img-card {
    max-width: 330px;
    padding: 8px;
    border-radius: 24px
  }
}

@media(max-width:480px) {
  .services-section .svc-icon-btn {
    min-width: 106px;
    min-height: 96px
  }

  .services-section .svc-icon-btn .ico {
    width: 44px;
    height: 44px
  }

  .svc-copy-head h3 {
    font-size: 1.15rem
  }

  .svc-copy-head p {
    font-size: .84rem
  }

  .svc-mini-chip {
    min-height: 40px;
    font-size: .76rem;
    padding-inline: 10px
  }
}

/* ========== PREMIUM LANGUAGE SWITCHER ========== */
.lang-sw {
  position: relative;
  z-index: 80
}

.lang-sw .lang-current {
  position: relative;
  isolation: isolate;
  min-height: 50px;
  min-width: 92px;
  gap: 9px;
  padding: 7px 10px 7px 14px;
  border-radius: 999px;
  border: 1px solid rgba(var(--primary-rgb), .22);
  background:
    radial-gradient(circle at 82% 18%, rgba(255, 255, 255, .98), rgba(255, 255, 255, 0) 31%),
    linear-gradient(135deg, #fff 0%, #fff8f3 48%, rgba(255, 239, 224, .96) 100%);
  color: #26332d;
  box-shadow:
    0 15px 34px rgba(25, 32, 44, .08),
    0 8px 22px rgba(var(--primary-rgb), .1),
    inset 0 1px 0 rgba(255, 255, 255, .95);
  overflow: hidden
}

.lang-sw .lang-current::before {
  content: "";
  position: absolute;
  inset-block: 7px;
  inset-inline-start: 7px;
  width: 38px;
  border-radius: 16px;
  background:
    linear-gradient(135deg, rgba(var(--primary-rgb), .98), #ffb15f);
  box-shadow: 0 12px 24px rgba(var(--primary-rgb), .22);
  z-index: -1
}

.lang-sw .lang-current::after {
  content: "";
  position: absolute;
  top: 10px;
  inset-inline-end: 9px;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #42c66f;
  box-shadow: 0 0 0 4px rgba(66, 198, 111, .13)
}

.lang-sw .lang-current:hover {
  color: var(--primary);
  border-color: rgba(var(--primary-rgb), .42);
  transform: translateY(-2px);
  box-shadow:
    0 18px 38px rgba(25, 32, 44, .09),
    0 12px 28px rgba(var(--primary-rgb), .16)
}

.lang-sw.open .lang-current {
  border-color: rgba(var(--primary-rgb), .5);
  background:
    radial-gradient(circle at 82% 18%, rgba(255, 255, 255, .98), rgba(255, 255, 255, 0) 30%),
    linear-gradient(135deg, #fff7f0 0%, #fff 58%, rgba(255, 232, 213, .92) 100%)
}

.lang-sw .lang-current .nav-action-icon {
  width: 34px;
  height: 34px;
  border-radius: 14px;
  color: #fff;
  background: transparent;
  box-shadow: none
}

.lang-sw .lang-current .nav-action-icon svg {
  width: 19px;
  height: 19px;
  stroke-width: 2
}

.lang-sw .lang-current>span:not(.nav-action-icon) {
  min-width: 30px;
  padding: 0 2px;
  color: #25312c;
  font-size: .86rem;
  font-weight: 950;
  line-height: 1;
  text-align: center
}

.lang-sw .lang-current>svg {
  width: 12px;
  height: 12px;
  margin-inline-start: 1px;
  color: var(--primary);
  transition: transform .22s var(--ease)
}

.lang-sw.open .lang-current>svg {
  transform: rotate(180deg)
}

.lang-dd {
  min-width: 170px;
  padding: 8px;
  border-radius: 20px;
  border-color: rgba(var(--primary-rgb), .16);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, .98), rgba(255, 249, 244, .98));
  box-shadow:
    0 24px 54px rgba(25, 32, 44, .16),
    0 12px 28px rgba(var(--primary-rgb), .08)
}

.lang-dd a {
  position: relative;
  min-height: 42px;
  gap: 10px;
  padding: 9px 12px;
  padding-inline-start: 42px;
  border-radius: 14px;
  color: #314039;
  font-size: .84rem;
  font-weight: 900
}

.lang-dd a::before {
  content: "";
  position: absolute;
  inset-inline-start: 10px;
  width: 24px;
  height: 24px;
  border-radius: 10px;
  background:
    linear-gradient(135deg, rgba(var(--primary-rgb), .15), rgba(255, 176, 73, .16));
  box-shadow: inset 0 0 0 1px rgba(var(--primary-rgb), .1)
}

.lang-dd a:hover,
.lang-dd a.active {
  color: var(--primary);
  background: rgba(var(--primary-rgb), .09)
}

@media(max-width:768px) {
  .lang-sw .lang-current {
    min-width: 88px;
    min-height: 48px;
    padding-inline: 9px 13px
  }

  .lang-sw .lang-current .nav-action-icon {
    width: 32px;
    height: 32px
  }
}

@media(max-width:480px) {
  .lang-sw .lang-current {
    min-width: 72px;
    min-height: 44px;
    gap: 6px;
    padding: 6px 9px
  }

  .lang-sw .lang-current::before {
    width: 32px;
    inset-block: 6px;
    inset-inline-start: 6px;
    border-radius: 14px
  }

  .lang-sw .lang-current .nav-action-icon {
    display: inline-flex;
    width: 30px;
    height: 30px
  }

  .lang-sw .lang-current .nav-action-icon svg {
    width: 17px;
    height: 17px
  }

  .lang-sw .lang-current>span:not(.nav-action-icon) {
    min-width: 24px;
    font-size: .78rem
  }

  .lang-sw .lang-current>svg {
    width: 10px;
    height: 10px
  }
}

/* ========== PREMIUM APPLY PAGES ========== */
.page-hero.apply-hero {
  padding: 58px 0 48px;
  color: #26342f;
  background:
    linear-gradient(135deg, rgba(255, 107, 0, .12), rgba(255, 255, 255, .96) 42%, rgba(0, 190, 101, .08));
  border-bottom: 1px solid rgba(255, 107, 0, .14)
}

.page-hero.apply-hero::before,
.page-hero.apply-hero::after {
  display: none
}

.apply-hero .container {
  position: relative;
  z-index: 1;
  max-width: 1040px
}

.apply-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  min-height: 40px;
  padding: 8px 16px;
  margin-bottom: 14px;
  border: 1px solid rgba(255, 107, 0, .18);
  border-radius: 999px;
  background: rgba(255, 255, 255, .78);
  box-shadow: 0 14px 40px rgba(255, 107, 0, .1);
  color: var(--primary);
  font-size: .86rem;
  font-weight: 900
}

.apply-hero-badge svg {
  width: 19px;
  height: 19px
}

.page-hero.apply-hero h1 {
  max-width: 780px;
  margin: 0 auto;
  color: #26342f;
  font-size: clamp(1.75rem, 3vw, 2.65rem);
  line-height: 1.25;
  font-weight: 900;
  letter-spacing: 0
}

.apply-hero-subtitle {
  max-width: 760px;
  margin: 12px auto 0;
  color: #65746e;
  font-size: 1rem;
  line-height: 1.9;
  font-weight: 700
}

.apply-hero-highlights {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-top: 20px
}

.apply-hero-highlights span {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  min-height: 38px;
  padding: 8px 14px;
  border-radius: 999px;
  background: #fff;
  color: #374840;
  border: 1px solid rgba(38, 52, 47, .08);
  box-shadow: 0 12px 30px rgba(38, 52, 47, .08);
  font-size: .82rem;
  font-weight: 900
}

.apply-hero-highlights span::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), #ffb04b)
}

.page-hero.apply-hero .breadcrumb {
  margin-top: 18px;
  color: #78847f;
  font-weight: 800
}

.page-hero.apply-hero .breadcrumb a {
  color: var(--primary)
}

.apply-reg-section {
  position: relative;
  padding: 34px 0 56px;
  background:
    linear-gradient(180deg, #fffaf6 0%, #fff 34%, #fff7f1 100%)
}

.apply-reg-section .reg-container {
  max-width: 1080px
}

.apply-reg-section .reg-card,
.apply-reg-section .card.__card {
  border: 1px solid rgba(255, 107, 0, .13);
  border-radius: 26px;
  background: rgba(255, 255, 255, .94);
  box-shadow: 0 22px 70px rgba(38, 52, 47, .1);
  overflow: visible
}

.apply-reg-section .card.__card {
  margin-bottom: 22px
}

.apply-reg-section .card.__card .card-header {
  padding: 22px 26px 0;
  overflow: visible
}

.apply-reg-section .card.__card .card-body,
.apply-reg-section .reg-card,
.apply-reg-section .form-group,
.apply-reg-section .overflow-hidden {
  overflow: visible !important
}

.apply-reg-section .card.__card .card-title,
.apply-reg-section .sec-head {
  display: flex;
  align-items: center;
  gap: 11px;
  color: #26342f;
  font-size: 1.04rem;
  font-weight: 900;
  letter-spacing: 0
}

.apply-reg-section .card.__card .card-title::before {
  content: "";
  width: 34px;
  height: 34px;
  border-radius: 14px;
  background:
    linear-gradient(135deg, rgba(255, 107, 0, .18), rgba(0, 190, 101, .12)),
    #fff;
  box-shadow: inset 0 0 0 1px rgba(255, 107, 0, .12);
  flex: 0 0 34px
}

.apply-reg-section .sec-head {
  border: 0;
  padding: 12px 14px;
  margin: 0 0 20px;
  border-radius: 18px;
  background: linear-gradient(135deg, rgba(255, 107, 0, .09), rgba(0, 190, 101, .05));
  box-shadow: inset 0 0 0 1px rgba(255, 107, 0, .1)
}

.apply-reg-section .sec-head svg {
  width: 22px;
  height: 22px;
  stroke: var(--primary)
}

.apply-intro-card {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 22px;
  padding: 18px 20px;
  border-radius: 24px;
  background: #fff;
  border: 1px solid rgba(255, 107, 0, .12);
  box-shadow: 0 18px 50px rgba(38, 52, 47, .08)
}

.apply-intro-icon {
  width: 58px;
  height: 58px;
  border-radius: 20px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  background: linear-gradient(135deg, rgba(255, 107, 0, .14), rgba(255, 176, 73, .18));
  flex: 0 0 58px
}

.apply-intro-icon.captain {
  color: #00a958;
  background: linear-gradient(135deg, rgba(0, 190, 101, .14), rgba(255, 107, 0, .12))
}

.apply-intro-icon svg {
  width: 28px;
  height: 28px
}

.apply-intro-card h2 {
  margin: 0 0 5px;
  color: #26342f;
  font-size: 1.12rem;
  font-weight: 900
}

.apply-intro-card p {
  margin: 0;
  color: #68776f;
  font-size: .92rem;
  line-height: 1.8;
  font-weight: 700
}

.apply-reg-section .stepper {
  padding: 14px;
  border-radius: 24px;
  background: rgba(255, 255, 255, .72);
  border: 1px solid rgba(255, 107, 0, .1);
  box-shadow: 0 16px 44px rgba(38, 52, 47, .08)
}

.apply-reg-section .stepper-step {
  min-width: 116px
}

.apply-reg-section .stepper-circle {
  width: 46px;
  height: 46px;
  border: 0;
  color: var(--primary);
  background: #fff;
  box-shadow: inset 0 0 0 1px rgba(255, 107, 0, .16), 0 12px 25px rgba(255, 107, 0, .1)
}

.apply-reg-section .stepper-step.active .stepper-circle,
.apply-reg-section .stepper-step.completed .stepper-circle {
  background: linear-gradient(135deg, var(--primary), #ff9d3d);
  color: #fff;
  box-shadow: 0 16px 30px rgba(255, 107, 0, .25)
}

.apply-reg-section .stepper-label {
  color: #65746e;
  font-size: .82rem;
  font-weight: 900
}

.apply-reg-section .stepper-step.active .stepper-label {
  color: #26342f
}

.apply-reg-section .stepper-connector {
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(255, 107, 0, .22), rgba(0, 190, 101, .18))
}

.apply-reg-section .form-group label,
.apply-reg-section .input-label {
  color: #314039;
  font-size: .86rem;
  font-weight: 900
}

.apply-reg-section .form-group input,
.apply-reg-section .form-group textarea,
.apply-reg-section .form-group select,
.apply-reg-section .__form-control,
.apply-reg-section .delivery-time-group {
  min-height: 48px;
  border: 1px solid rgba(38, 52, 47, .1);
  border-radius: 16px;
  background-color: #fff;
  color: #26342f;
  font-size: .9rem;
  font-weight: 800;
  box-shadow: 0 12px 28px rgba(38, 52, 47, .05);
  transition: border-color .22s ease, box-shadow .22s ease, transform .22s ease
}

.apply-reg-section .form-group textarea,
.apply-reg-section textarea.__form-control {
  min-height: 92px
}

.apply-reg-section .form-group input:focus,
.apply-reg-section .form-group textarea:focus,
.apply-reg-section .form-group select:focus,
.apply-reg-section .__form-control:focus,
.apply-reg-section .delivery-time-group:focus-within {
  border-color: rgba(255, 107, 0, .55);
  box-shadow: 0 0 0 4px rgba(255, 107, 0, .11), 0 18px 34px rgba(38, 52, 47, .08)
}

.apply-reg-section .form-group input::placeholder,
.apply-reg-section .form-group textarea::placeholder,
.apply-reg-section .__form-control::placeholder {
  color: #9ca8a2;
  font-weight: 700
}

.apply-reg-section .select2-container--default .select2-selection--single,
.apply-reg-section .select2-container--default .select2-selection--multiple {
  min-height: 48px;
  border: 1px solid rgba(38, 52, 47, .1);
  border-radius: 16px;
  background: #fff;
  box-shadow: 0 12px 28px rgba(38, 52, 47, .05)
}

.apply-reg-section .select2-container--default .select2-selection--single .select2-selection__rendered {
  min-height: 46px;
  line-height: 46px;
  color: #26342f;
  font-size: .9rem;
  font-weight: 900;
  padding-inline-start: 44px;
  padding-inline-end: 38px
}

.apply-reg-section .select2-container--default .select2-selection--single::before {
  content: "";
  position: absolute;
  inset-inline-start: 12px;
  top: 50%;
  width: 24px;
  height: 24px;
  border-radius: 10px;
  background:
    linear-gradient(135deg, rgba(255, 107, 0, .22), rgba(0, 190, 101, .12)),
    #fff;
  transform: translateY(-50%);
  pointer-events: none
}

.apply-reg-section .select2-container--default .select2-selection--single .select2-selection__arrow {
  height: 46px;
  inset-inline-end: 6px;
  right: auto
}

.apply-reg-section .select2-container--default.select2-container--focus .select2-selection--single,
.apply-reg-section .select2-container--default.select2-container--open .select2-selection--single,
.apply-reg-section .select2-container--default.select2-container--focus .select2-selection--multiple,
.apply-reg-section .select2-container--default.select2-container--open .select2-selection--multiple {
  border-color: rgba(255, 107, 0, .55);
  box-shadow: 0 0 0 4px rgba(255, 107, 0, .11), 0 18px 34px rgba(38, 52, 47, .08)
}

.select2-container--open {
  z-index: 100050
}

.select2-dropdown {
  z-index: 100060;
  border: 1px solid rgba(255, 107, 0, .16) !important;
  border-radius: 18px !important;
  background: #fff !important;
  color: #26342f !important;
  box-shadow: 0 24px 60px rgba(38, 52, 47, .18) !important;
  overflow: hidden
}

.select2-dropdown::before {
  content: "";
  display: block;
  height: 4px;
  background: linear-gradient(90deg, var(--primary), #ffb04b, #00be65)
}

.select2-results__options {
  padding: 6px;
  max-height: 280px
}

.select2-results__option {
  min-height: 40px;
  margin: 2px 0;
  border-radius: 12px;
  color: #26342f !important;
  font-size: .88rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  gap: 8px
}

.select2-results__option::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 107, 0, .55);
  flex: 0 0 8px
}

.select2-container--default .select2-results__option--highlighted[aria-selected] {
  background: linear-gradient(135deg, rgba(255, 107, 0, .12), rgba(255, 176, 73, .16)) !important;
  color: var(--primary) !important
}

.select2-container--default .select2-results__option[aria-selected=true] {
  background: rgba(0, 190, 101, .1) !important;
  color: #00864b !important
}

.select2-search--dropdown {
  padding: 10px 10px 4px
}

.select2-search--dropdown .select2-search__field {
  min-height: 42px;
  border: 1px solid rgba(38, 52, 47, .1) !important;
  border-radius: 14px !important;
  color: #26342f !important;
  font-size: .88rem;
  font-weight: 800;
  box-shadow: 0 10px 24px rgba(38, 52, 47, .06)
}

.apply-reg-section .upload-area,
.apply-reg-section .document-upload-wrapper,
.apply-reg-section .image--border {
  border-radius: 20px;
  border-color: rgba(255, 107, 0, .18);
  background: linear-gradient(135deg, rgba(255, 107, 0, .05), rgba(255, 255, 255, .98));
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, .85), 0 14px 34px rgba(38, 52, 47, .06)
}

.apply-reg-section .upload-area .upload-icon {
  width: 54px;
  height: 54px;
  border-radius: 18px;
  background: linear-gradient(135deg, rgba(255, 107, 0, .14), rgba(0, 190, 101, .12));
  color: var(--primary)
}

.apply-reg-section .btn-next,
.apply-reg-section .btn-submit,
.apply-reg-section .cmn--btn,
.apply-reg-section .submit-btn,
.apply-reg-section .btn-home {
  min-height: 48px;
  border-radius: 16px;
  padding: 12px 28px;
  background: linear-gradient(135deg, var(--primary), #ff8b32);
  color: #fff !important;
  font-size: .92rem;
  font-weight: 900;
  box-shadow: 0 18px 38px rgba(255, 107, 0, .24)
}

.apply-reg-section .btn-reset,
.apply-reg-section .btn-back {
  min-height: 48px;
  border-radius: 16px;
  padding: 12px 24px;
  background: #fff;
  color: #314039;
  border: 1px solid rgba(38, 52, 47, .1);
  font-weight: 900;
  box-shadow: 0 12px 28px rgba(38, 52, 47, .06)
}

.apply-reg-section .btn-next:hover:not(:disabled),
.apply-reg-section .btn-submit:hover:not(:disabled),
.apply-reg-section .cmn--btn:hover,
.apply-reg-section .submit-btn:hover:not(:disabled),
.apply-reg-section .btn-home:hover {
  transform: translateY(-2px);
  box-shadow: 0 24px 48px rgba(255, 107, 0, .28)
}

.apply-reg-section .terms-check {
  align-items: flex-start;
  gap: 10px;
  padding: 14px 16px;
  border: 1px solid rgba(255, 107, 0, .12);
  border-radius: 18px;
  background: rgba(255, 107, 0, .04)
}

.apply-reg-section .terms-check label {
  color: #53635c;
  font-size: .88rem;
  line-height: 1.7;
  font-weight: 800
}

.apply-reg-section .success-box {
  margin: 0 auto;
  max-width: 720px;
  padding: 54px 28px;
  border: 1px solid rgba(255, 107, 0, .14);
  border-radius: 28px;
  background: #fff;
  box-shadow: 0 26px 70px rgba(38, 52, 47, .1)
}

.apply-reg-section .success-box .check {
  width: 74px;
  height: 74px;
  border-radius: 24px;
  background: linear-gradient(135deg, #00be65, #65d78f);
  box-shadow: 0 18px 36px rgba(0, 190, 101, .24)
}

.apply-reg-section .success-box h2 {
  color: #26342f;
  font-size: 1.45rem;
  font-weight: 900
}

.apply-reg-section .success-box p {
  max-width: 560px;
  color: #62716a;
  font-size: .96rem;
  line-height: 1.9;
  font-weight: 800
}

.apply-reg-section .iti {
  width: 100%;
  direction: ltr
}

#toast-container > .toast {
  position: relative;
  border-radius: 18px !important;
  border: 1px solid rgba(255, 107, 0, .18);
  box-shadow: 0 24px 60px rgba(38, 52, 47, .2) !important;
  font-family: 'Tajawal', 'Lato', Arial, sans-serif;
  font-weight: 800
}

#toast-container > .toast-success {
  background-color: #fff !important;
  color: #26342f !important;
  background-image: none !important;
  padding-inline-start: 56px !important
}

#toast-container > .toast-success::before {
  content: "";
  position: absolute;
  inset-inline-start: 14px;
  top: 50%;
  width: 28px;
  height: 28px;
  border-radius: 12px;
  background: linear-gradient(135deg, #00be65, #66d995);
  transform: translateY(-50%)
}

@media(max-width:768px) {
  .page-hero.apply-hero {
    padding: 38px 0 34px
  }

  .apply-hero-subtitle {
    font-size: .92rem
  }

  .apply-reg-section {
    padding: 24px 0 40px
  }

  .apply-intro-card {
    align-items: flex-start;
    padding: 16px;
    border-radius: 20px
  }

  .apply-intro-icon {
    width: 48px;
    height: 48px;
    flex-basis: 48px
  }

  .apply-reg-section .card.__card .card-header {
    padding: 18px 18px 0
  }

  .apply-reg-section .card.__card .card-body {
    padding: 18px !important
  }

  .apply-reg-section .stepper {
    gap: 10px;
    justify-content: space-between
  }

  .apply-reg-section .stepper-step {
    min-width: calc(33.333% - 10px)
  }

  .apply-reg-section .stepper-circle {
    width: 40px;
    height: 40px
  }
}

@media(max-width:480px) {
  .apply-hero-highlights {
    gap: 7px
  }

  .apply-hero-highlights span {
    min-height: 34px;
    padding: 7px 10px;
    font-size: .76rem
  }

  .apply-intro-card {
    flex-direction: column;
    text-align: start
  }

  .apply-reg-section .stepper-step {
    min-width: 100%
  }
}
