/* =============================================================
   6amMart 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&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: rgba(255, 255, 255, .96);
  backdrop-filter: blur(20px) saturate(1.4);
  -webkit-backdrop-filter: blur(20px) saturate(1.4);
  border-bottom: 1px solid var(--border);
  box-shadow: 0 1px 8px rgba(0, 0, 0, .04)
}

.main-nav .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px
}

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

.nav-logo img {
  height: 32px;
  width: auto
}

.nav-links {
  display: flex;
  gap: 24px
}

.nav-links a {
  font-size: .84rem;
  font-weight: 600;
  color: var(--text);
  transition: .25s
}

.nav-links a:hover,
.nav-links a.active-link {
  color: var(--green)
}

.nav-right {
  display: flex;
  align-items: center;
  gap: 10px
}

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

.lang-sw .lang-current {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 5px 12px;
  background: var(--bg-light);
  border-radius: 100px;
  border: 1px solid var(--border);
  font-size: .75rem;
  font-weight: 700;
  color: var(--title);
  cursor: pointer;
  transition: .25s;
  white-space: nowrap
}

.lang-sw .lang-current:hover {
  border-color: var(--green);
  color: var(--green)
}

.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% + 6px);
  right: 0;
  min-width: 140px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 4px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, .1);
  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: 7px 10px;
  border-radius: 6px;
  font-size: .8rem;
  font-weight: 600;
  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;
  gap: 6px;
  padding: 8px 20px;
  border-radius: 100px;
  font-size: .82rem;
  font-weight: 700;
  background: var(--green);
  color: #fff;
  transition: .3s var(--ease);
  border: 1.5px solid var(--green);
  text-decoration: none;
  white-space: nowrap
}

.btn-browse-web:hover {
  background: var(--primary-dark);
  color: #fff;
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(var(--primary-rgb), .25)
}

/* 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;
  gap: 6px;
  padding: 8px 18px;
  border-radius: 100px;
  font-size: .82rem;
  font-weight: 700;
  background: #fff;
  color: var(--green);
  transition: .3s var(--ease);
  border: 1.5px solid var(--green)
}

.btn-join:hover {
  background: var(--green);
  color: #fff;
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(var(--primary-rgb), .25)
}

.join-wrap {
  position: relative
}

.join-dd {
  position: absolute;
  top: calc(100% + 10px);
  right: 0;
  width: 230px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 6px;
  box-shadow: 0 12px 40px rgba(0, 0, 0, .1);
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: .3s var(--ease)
}

.join-wrap:hover .join-dd {
  opacity: 1;
  visibility: visible;
  transform: translateY(0)
}

.join-dd a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 9px 11px;
  border-radius: 8px;
  font-size: .84rem;
  font-weight: 600;
  color: var(--text);
  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: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .9rem
}

.mob-btn {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 6px
}

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

/* ========== HERO ========== */
.hero {
  position: relative;
  text-align: center;
  padding: 30px 0 0;
  overflow: hidden
}

.hero .container {
  position: relative;
  z-index: 2
}

.hero h1 {
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--title);
  margin-bottom: 8px;
  line-height: 1.3
}

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

.hero-logo img {
  height: 50px;
  width: auto;
  object-fit: contain
}

.hero p {
  font-size: 1rem;
  color: var(--text);
  max-width: 480px;
  margin: 0 auto 20px
}

.hero-btns {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  /* margin-bottom: 10px; */
  padding-bottom: 0
}

.hero-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 28px;
  border-radius: 100px;
  font-size: .88rem;
  font-weight: 700;
  transition: .3s var(--ease);
  cursor: pointer
}

.hero-btn--vendor {
  background: var(--green);
  color: #fff;
  border: 2px solid var(--green)
}

.hero-btn--vendor:hover {
  background: var(--primary-dark);
  color: #fff;
  box-shadow: 0 6px 24px rgba(var(--primary-rgb), .3);
  transform: translateY(-2px)
}

.hero-btn--delivery {
  background: var(--white);
  color: var(--title);
  border: 2px solid var(--border)
}

.hero-btn--delivery:hover {
  border-color: var(--green);
  color: var(--green);
  box-shadow: 0 6px 24px rgba(var(--primary-rgb), .1);
  transform: translateY(-2px)
}

.hero-btn svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0
}

.hero-illustration {
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  opacity: .12;
  pointer-events: none;
  color: var(--green)
}

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

/* ========== SERVICES ========== */
.services-section {
  padding: 50px 0 60px;
  background: linear-gradient(184deg, rgba(var(--primary-rgb), .08) 0%, #fff 30%, #fff 75%, rgba(var(--primary-rgb), .06) 100%)
}

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

.sec-header h2 {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--title);
  margin-bottom: 4px
}

.sec-header p {
  font-size: .9rem;
  color: var(--text)
}

.svc-icons {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-bottom: 32px;
  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 {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  padding: 12px 18px;
  border-radius: var(--radius);
  background: var(--white);
  border: 1.5px solid var(--border);
  cursor: pointer;
  transition: .3s var(--ease);
  min-width: 86px;
  flex-shrink: 0;
  scroll-snap-align: start
}

.svc-icon-btn:hover {
  border-color: var(--green);
  box-shadow: 0 4px 14px rgba(var(--primary-rgb), .1)
}

.svc-icon-btn.active {
  border-color: var(--green);
  background: var(--green-soft);
  box-shadow: 0 4px 14px rgba(var(--primary-rgb), .12)
}

.svc-icon-btn .ico {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center
}

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

.svc-icon-btn .lbl {
  font-size: .76rem;
  font-weight: 700;
  color: var(--title)
}

.svc-panels {
  position: relative
}

.svc-panel {
  display: none;
  align-items: center;
  gap: 40px;
  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
}

.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: .92rem;
  color: var(--text);
  line-height: 1.7
}

.svc-text .venture-content-box h3,
.svc-text .venture-content-box h4,
.svc-text .venture-content-box strong {
  color: var(--title);
  font-size: .95rem
}

.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: 400px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 6px 24px rgba(0, 0, 0, .07);
  border: 1px solid var(--border);
  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: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--white);
  border: 1.5px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  color: var(--title);
  cursor: pointer;
  transition: .3s var(--ease)
}

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

/* ========== 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 {
  padding: 50px 0;
  background: var(--bg-light)
}

.feat-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
}

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

.feat-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 24px 16px;
  text-align: center;
  transition: .3s var(--ease);
  min-width: 200px;
  flex: 1 0 0%;
  scroll-snap-align: start
}

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

.feat-ico {
  width: 44px;
  height: 44px;
  margin: 0 auto 10px;
  display: block
}

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

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

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

/* ========== ZONES ========== */
.zones {
  padding: 40px 0
}

.zone-banner {
  background: var(--bg-light);
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  min-height: 280px;
  border: 1px solid var(--border)
}

.zone-img-side {
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(var(--primary-rgb), .06), rgba(var(--primary-rgb), .02))
}

.zone-img-side img {
  width: 100%;
  height: 100%;
  object-fit: cover
}

.zone-text-side {
  padding: 36px 40px;
  display: flex;
  flex-direction: column;
  justify-content: center
}

.zone-text-side h2 {
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--title);
  margin-bottom: 4px
}

.zone-text-side>p {
  font-size: .86rem;
  color: var(--text);
  margin-bottom: 20px;
  line-height: 1.6
}

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

.zone-tag {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 9px 20px;
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: 100px;
  font-size: .84rem;
  font-weight: 600;
  color: var(--title);
  transition: .3s var(--ease)
}

.zone-tag:hover {
  border-color: var(--green);
  background: var(--green-soft);
  transform: translateY(-1px);
  box-shadow: 0 3px 12px rgba(var(--primary-rgb), .08)
}

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

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

.refer-card {
  background: linear-gradient(135deg, var(--primary-dark), var(--primary));
  border-radius: var(--radius-lg);
  padding: 44px 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  color: #fff;
  position: relative;
  overflow: hidden
}

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

.refer-card h2 {
  font-size: 1.6rem;
  font-weight: 700;
  position: relative;
  z-index: 2;
  color: #fff
}

/* ========== EARN ========== */
.earn {
  padding: 40px 0
}

.earn-top {
  text-align: center;
  margin-bottom: 24px
}

.earn-top h2 {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--title);
  margin-bottom: 4px
}

.earn-top p {
  color: var(--text);
  font-size: .9rem
}

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

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

.earn-card {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  text-align: center;
  position: relative;
  overflow: hidden;
  transition: .3s var(--ease);
  min-width: 280px;
  flex: 1 0 0%;
  scroll-snap-align: start
}

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

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

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

.earn-card-icon {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  background: var(--green-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  margin: 0 auto 16px
}

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

/* 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 {
  color: var(--green)
}

.earn-card>p {
  font-size: .84rem;
  color: var(--text);
  margin-bottom: 18px;
  line-height: 1.5
}

.earn-app-row {
  display: flex;
  justify-content: center;
  gap: 8px;
  flex-wrap: wrap
}

.app-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 16px;
  background: var(--title);
  color: #fff;
  border-radius: var(--radius);
  font-size: .8rem;
  transition: .3s var(--ease);
  text-align: left
}

.app-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, .12);
  color: #fff
}

.app-btn img {
  width: 18px;
  height: 18px;
  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: .54rem;
  font-weight: 400;
  opacity: .7;
  text-transform: uppercase;
  letter-spacing: .03em
}

.app-btn .ab-lg {
  font-size: .8rem;
  font-weight: 700
}

/* ========== SPECIAL ========== */
.special {
  padding: 50px 0;
  background: var(--bg-light)
}

.sp-track {
  display: flex;
  gap: 14px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  -ms-overflow-style: none;
  padding: 0 24px 8px;
  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: 260px;
  max-width: 280px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 24px 20px;
  flex-shrink: 0;
  scroll-snap-align: start;
  transition: .3s var(--ease)
}

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

.sp-card .sp-ico {
  width: 44px;
  height: 44px;
  margin-bottom: 12px;
  display: block
}

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

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

.sp-card p {
  font-size: .8rem;
  color: var(--text);
  line-height: 1.5
}

/* 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: 40px 0
}

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

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

.stat-card {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 24px 16px;
  text-align: center;
  position: relative;
  overflow: hidden;
  transition: .3s var(--ease);
  min-width: 180px;
  flex: 1 0 0%;
  scroll-snap-align: start
}

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

.stat-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--primary), var(--primary-dark));
  opacity: 0;
  transition: .3s
}

.stat-card:hover::after {
  opacity: 1
}

.stat-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: var(--green-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  margin: 0 auto 12px
}

.stat-num {
  font-size: 2.2rem;
  font-weight: 900;
  color: var(--title);
  line-height: 1
}

.stat-num .plus {
  color: var(--green)
}

.stat-label {
  font-size: .82rem;
  color: var(--text);
  font-weight: 600;
  margin-top: 4px
}

.stats-note {
  text-align: center;
  font-size: .82rem;
  color: var(--text);
  font-style: italic
}

/* ========== CTA ========== */
.cta-manage {
  padding: 20px 0 50px
}

.cta-box {
  background: linear-gradient(135deg, var(--primary-dark), var(--primary));
  border-radius: var(--radius-lg);
  padding: 44px 40px;
  display: flex;
  align-items: center;
  gap: 36px;
  color: #fff;
  position: relative;
  overflow: hidden
}

.cta-box::before {
  content: '';
  position: absolute;
  top: -80px;
  right: -80px;
  width: 280px;
  height: 280px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .06)
}

.cta-info {
  flex: 1;
  position: relative;
  z-index: 2
}

.cta-info h2 {
  font-size: 1.6rem;
  font-weight: 700;
  margin-bottom: 6px;
  color: #fff
}


.cta-user-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 20px;
  border-radius: 100px;
  font-size: .84rem;
  font-weight: 700;
  background: #fff;
  color: var(--green);
  margin-bottom: 12px;
  transition: .3s var(--ease)
}

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

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

.cta-app-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 9px 18px;
  background: rgba(255, 255, 255, .15);
  border: 1.5px solid rgba(255, 255, 255, .3);
  border-radius: var(--radius);
  color: #fff;
  font-size: .82rem;
  transition: .3s var(--ease);
  text-align: left
}

.cta-app-link:hover {
  background: rgba(255, 255, 255, .25);
  transform: translateY(-2px);
  color: #fff
}

.cta-app-link img {
  width: 18px;
  height: 18px;
  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: .56rem;
  opacity: .7;
  text-transform: uppercase;
  letter-spacing: .03em
}

.cta-app-link .cal-lg {
  font-size: .82rem;
  font-weight: 700
}

.cta-visual {
  flex: 0 0 auto;
  position: relative;
  z-index: 2
}

.cta-phone {
  width: 200px;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 12px 40px rgba(0, 0, 0, .15)
}

.cta-phone img {
  width: 100%;
  height: auto;
  display: block
}

/* ========== 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: var(--dark);
  color: var(--dark-text-sec);
  padding: 0;
  --primary: #FF6B00;
  --primary-dark: #e65e00
}

.newsletter-area {
  padding: 44px 0;
  border-bottom: 1px solid var(--dark-border);
  text-align: center
}

.newsletter-area h2 {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--dark-text);
  margin-bottom: 6px
}

.newsletter-area p {
  color: var(--dark-text-sec);
  margin-bottom: 20px;
  font-size: .9rem
}

.nl-form {
  display: flex;
  gap: 8px;
  max-width: 420px;
  margin: 0 auto
}

.nl-form input {
  flex: 1;
  padding: 11px 16px;
  border: 1px solid var(--dark-border);
  border-radius: 100px;
  background: var(--dark-surface);
  color: var(--dark-text);
  font-size: .86rem;
  outline: none;
  transition: .3s;
  font-family: inherit
}

.nl-form input:focus {
  border-color: var(--primary)
}

.nl-form input::placeholder {
  color: var(--dark-text-muted)
}

.nl-form button {
  padding: 11px 22px;
  background: var(--primary);
  color: #fff;
  border-radius: 100px;
  font-weight: 700;
  font-size: .84rem;
  transition: .3s var(--ease);
  white-space: nowrap;
  border: none;
  font-family: inherit;
  cursor: pointer
}

.nl-form button:hover {
  background: var(--primary-dark)
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 40px;
  padding: 44px 0 36px
}

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

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

.f-brand p {
  font-size: .85rem;
  color: var(--dark-text-sec);
  line-height: 1.7;
  max-width: 320px;
  margin-bottom: 16px
}

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

.f-social a {
  width: 36px;
  height: 36px;
  border-radius: 9px;
  background: var(--dark-surface);
  border: 1px solid var(--dark-border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .78rem;
  color: var(--dark-text-muted);
  transition: .3s var(--ease)
}

.f-social a:hover {
  border-color: var(--primary);
  color: var(--primary);
  background: rgba(255, 107, 0, .1);
  transform: translateY(-2px)
}

.f-social a img {
  width: 16px;
  height: 16px;
  filter: brightness(0) invert(.5)
}

.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: 7px;
  margin-top: 14px;
  flex-wrap: wrap
}

.f-app-link {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 7px 12px;
  background: var(--dark-surface);
  border: 1px solid var(--dark-border);
  border-radius: 8px;
  color: var(--dark-text-sec);
  font-size: .75rem;
  transition: .3s var(--ease);
  text-align: left
}

.f-app-link:hover {
  border-color: var(--primary);
  color: var(--primary)
}

.f-app-link svg {
  width: 15px;
  height: 15px;
  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: .5rem;
  opacity: .6;
  text-transform: uppercase;
  letter-spacing: .03em
}

.f-app-link .fal-lg {
  font-size: .72rem;
  font-weight: 700
}

.footer h5 {
  font-size: .76rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--dark-text-muted);
  margin-bottom: 14px
}

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

.f-links a {
  font-size: .85rem;
  color: var(--dark-text-sec);
  transition: .25s
}

.f-links a:hover {
  color: var(--primary)
}

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

.f-contact a {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: .85rem;
  color: var(--dark-text-sec);
  transition: .25s
}

.f-contact a:hover {
  color: var(--primary)
}

.footer-bottom-bar {
  border-top: 1px solid var(--dark-border);
  padding: 16px 0;
  text-align: center;
  font-size: .76rem;
  color: var(--dark-text-muted)
}

/* ========== RESPONSIVE ========== */
@media(max-width:1024px) {
  .zone-banner {
    grid-template-columns: 1fr 1.3fr
  }

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

  .svc-panel {
    gap: 28px
  }
}

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

  .nav-links,
  .lang-sw {
    display: none
  }

  .mob-btn {
    display: flex
  }

  .hero {
    padding: 24px 0 0
  }

  .hero h1 {
    font-size: 1.5rem
  }

  .hero-logo img {
    height: 40px
  }

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

  .hero-btns {
    gap: 8px
  }

  .hero-btn {
    padding: 10px 22px;
    font-size: .82rem
  }

  .hero-illustration {
    max-width: none;
    width: 160%;
    margin-left: -30%;
    margin-top: -8%
  }

  .services-section {
    padding: 36px 0 44px
  }

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

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

  .svc-icon-btn {
    min-width: 76px;
    padding: 9px 12px;
    flex-shrink: 0
  }

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

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

  .svc-panel {
    flex-direction: column;
    gap: 20px
  }

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

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

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

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

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

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

  .feat-card {
    padding: 20px 12px;
    min-width: 160px
  }

  .feat-ico {
    width: 36px;
    height: 36px;
    margin-bottom: 8px
  }

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

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

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

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

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

  .zone-tags {
    justify-content: center
  }

  .zone-tag {
    padding: 8px 16px;
    font-size: .8rem
  }

  .referral {
    padding: 8px 0 28px
  }

  .refer-card {
    flex-direction: column;
    text-align: center;
    padding: 28px 20px
  }

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

  .earn-card {
    padding: 24px 20px;
    min-width: 260px
  }

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

  .sp-card {
    min-width: 220px;
    padding: 20px 16px
  }

  .stats {
    padding: 24px 0
  }

  .stat-card {
    padding: 20px 12px;
    min-width: 150px
  }

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

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

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

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

  .cta-box {
    flex-direction: column;
    text-align: center;
    padding: 30px 20px
  }

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

  .cta-app-row {
    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: 28px;
    padding: 32px 0 28px
  }

  .nl-form {
    flex-direction: column
  }

  .newsletter-area {
    padding: 32px 0
  }
}

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

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

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

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

  .cta-phone {
    width: 140px
  }

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

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

  .stat-card {
    padding: 16px 10px
  }

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