/* =============================================================
   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: fixed !important;
  top: 0;
  left: 0;
  right: 0;
  z-index: 999 !important;
  background: transparent !important;
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
  border-bottom: 1px solid transparent !important;
  box-shadow: none !important;
  transition: transform 0.45s cubic-bezier(0.16, 1, 0.3, 1), background 0.3s var(--ease), border-color 0.3s var(--ease), box-shadow 0.3s var(--ease) !important;
}

body.page-scrolled .main-nav {
  background: rgba(255, 255, 255, 0.85) !important;
  backdrop-filter: blur(25px) saturate(1.8) !important;
  -webkit-backdrop-filter: blur(25px) saturate(1.8) !important;
  border-bottom: 1px solid rgba(0, 19, 60, 0.05) !important;
  box-shadow: 0 10px 40px rgba(0, 19, 60, 0.03) !important;
}

.main-nav.nav-hidden {
  transform: translateY(-100%) !important;
}

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

/* =============================================================
   Careem Premium Upgrade Styles - Standalone Additions
   ============================================================= */

/* Glassmorphism Panel */
.glass-premium {
  background: rgba(255, 255, 255, 0.75) !important;
  backdrop-filter: blur(20px) !important;
  -webkit-backdrop-filter: blur(20px) !important;
  border: 1px solid rgba(255, 255, 255, 0.4) !important;
  box-shadow: var(--shadow-premium) !important;
  border-radius: var(--radius-premium) !important;
  transition: all 0.3s var(--ease) !important;
}

.glass-premium-dark {
  background: rgba(11, 15, 25, 0.85) !important;
  backdrop-filter: blur(20px) !important;
  -webkit-backdrop-filter: blur(20px) !important;
  border: 1px solid rgba(255, 255, 255, 0.08) !important;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.2) !important;
  border-radius: var(--radius-premium) !important;
}

/* Card Zoom and Hover Lift */
.card-premium {
  border-radius: var(--radius-premium) !important;
  box-shadow: var(--shadow-card) !important;
  border: 1px solid rgba(0, 19, 60, 0.04) !important;
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease), border-color 0.4s var(--ease) !important;
  background: var(--white) !important;
}

.card-premium:hover {
  transform: translateY(-8px) scale(1.015) !important;
  box-shadow: var(--shadow-premium) !important;
  border-color: rgba(var(--primary-rgb), 0.25) !important;
}

/* Glowing Neon Hover Effects */
.glow-hover {
  position: relative;
  overflow: hidden;
  transition: all 0.3s var(--ease) !important;
  box-shadow: 0 4px 12px rgba(var(--primary-rgb), 0.15) !important;
}

.glow-hover:hover {
  box-shadow: 0 12px 24px rgba(var(--primary-rgb), 0.35) !important;
  transform: translateY(-2px) !important;
}

/* Monochromatic Apps Button Badge */
.badge-mono {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: #000000 !important;
  color: #ffffff !important;
  padding: 10px 24px !important;
  border-radius: 50px !important;
  font-weight: 600 !important;
  font-size: 0.9rem !important;
  transition: all 0.3s var(--ease) !important;
  border: 1px solid rgba(255, 255, 255, 0.1) !important;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1) !important;
}

.badge-mono:hover {
  background: var(--primary) !important;
  color: #ffffff !important;
  transform: translateY(-3px) !important;
  box-shadow: 0 12px 24px rgba(var(--primary-rgb), 0.3) !important;
  border-color: transparent !important;
}

.badge-mono img {
  filter: brightness(0) invert(1) !important;
  width: 20px !important;
  height: 20px !important;
  object-fit: contain !important;
}

/* Floating Mockups Parallax animation */
@keyframes floatAnimation {
  0% {
    transform: translateY(0px) rotate(0deg);
  }

  50% {
    transform: translateY(-15px) rotate(1deg);
  }

  100% {
    transform: translateY(0px) rotate(0deg);
  }
}

.floating-mockup {
  animation: floatAnimation 6s ease-in-out infinite !important;
}

/* Glowing Map Hotspots */
@keyframes pulseBlink {
  0% {
    transform: scale(0.9);
    opacity: 0.5;
  }

  50% {
    transform: scale(1.2);
    opacity: 1;
    box-shadow: 0 0 0 8px rgba(var(--primary-rgb), 0.3);
  }

  100% {
    transform: scale(0.9);
    opacity: 0.5;
  }
}

.zone-dot-glowing {
  width: 10px;
  height: 10px;
  background: var(--primary) !important;
  border-radius: 50%;
  display: inline-block;
  animation: pulseBlink 2.5s infinite ease-in-out !important;
}

/* 1. Hero Premium Section (Asymmetrical Two-Column) */
.hero-premium {
  position: relative;
  padding: 100px 0 60px !important;
  background: linear-gradient(180deg, rgba(var(--primary-rgb), 0.04) 0%, #ffffff 100%) !important;
  overflow: hidden;
}

.hero-grid-premium {
  display: grid !important;
  grid-template-columns: 1.1fr 0.9fr !important;
  gap: 50px !important;
  align-items: center !important;
}

.hero-content-premium {
  display: flex !important;
  flex-direction: column !important;
  align-items: flex-start !important;
  text-align: left !important;
}

html[dir="rtl"] .hero-content-premium {
  text-align: right !important;
  align-items: flex-start !important;
}

.hero-badge-premium {
  display: inline-flex !important;
  align-items: center !important;
  gap: 10px !important;
  padding: 8px 18px !important;
  background: rgba(var(--primary-rgb), 0.08) !important;
  border: 1px solid rgba(var(--primary-rgb), 0.15) !important;
  border-radius: 100px !important;
  font-size: 0.85rem !important;
  font-weight: 700 !important;
  color: var(--primary) !important;
  margin-bottom: 24px !important;
}

.hero-brand-logo-premium {
  height: 20px !important;
  width: auto !important;
  object-fit: contain !important;
}

.giga-heading {
  font-size: clamp(2.5rem, 5vw, 4.2rem) !important;
  font-weight: 900 !important;
  letter-spacing: -0.02em !important;
  line-height: 1.15 !important;
  color: var(--secondary) !important;
  margin-bottom: 20px !important;
}

.giga-heading span {
  color: var(--primary) !important;
}

.hero-lead-premium {
  font-size: 1.15rem !important;
  line-height: 1.75 !important;
  color: var(--text) !important;
  max-width: 580px !important;
  margin-bottom: 36px !important;
}

.hero-btns-premium {
  display: flex !important;
  gap: 16px !important;
  flex-wrap: wrap !important;
}

.hero-btn-premium {
  display: inline-flex !important;
  align-items: center !important;
  gap: 10px !important;
  padding: 14px 32px !important;
  border-radius: 100px !important;
  font-size: 0.95rem !important;
  font-weight: 700 !important;
  transition: all 0.3s var(--ease) !important;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05) !important;
}

.hero-btn-premium svg {
  width: 18px !important;
  height: 18px !important;
}

.hero-btn-premium--vendor {
  background: var(--primary) !important;
  color: #ffffff !important;
  border: 2px solid var(--primary) !important;
}

.hero-btn-premium--vendor:hover {
  background: var(--primary-dark) !important;
  border-color: var(--primary-dark) !important;
  transform: translateY(-3px) !important;
  box-shadow: 0 10px 25px rgba(var(--primary-rgb), 0.25) !important;
}

.hero-btn-premium--delivery,
.hero-btn-premium--rider {
  background: #ffffff !important;
  color: var(--secondary) !important;
  border: 2px solid rgba(var(--secondary-rgb), 0.12) !important;
}

.hero-btn-premium--delivery:hover,
.hero-btn-premium--rider:hover {
  border-color: var(--primary) !important;
  color: var(--primary) !important;
  transform: translateY(-3px) !important;
  box-shadow: 0 10px 25px rgba(var(--primary-rgb), 0.1) !important;
}

.hero-visual-premium {
  display: flex !important;
  justify-content: center !important;
  align-items: center !important;
}

.hero-illustration-wrapper-premium {
  width: 100% !important;
  max-width: 520px !important;
  color: var(--primary) !important;
}

.hero-illustration-wrapper-premium svg {
  width: 100% !important;
  height: auto !important;
}

/* 2. Services Section (Careem Switcher) */
.services-section-premium {
  padding: 90px 0 !important;
  background: linear-gradient(180deg, #ffffff 0%, rgba(var(--primary-rgb), 0.02) 50%, #ffffff 100%) !important;
}

.sec-header-premium h2 {
  font-size: clamp(2rem, 4vw, 2.8rem) !important;
  font-weight: 800 !important;
  color: var(--secondary) !important;
  margin-bottom: 12px !important;
}

.sec-header-premium p {
  font-size: 1.05rem !important;
  color: var(--text) !important;
  max-width: 600px !important;
  margin: 0 auto 40px !important;
}

.svc-switcher-premium {
  display: flex !important;
  background: rgba(244, 246, 248, 0.9) !important;
  border: 1px solid rgba(0, 19, 60, 0.05) !important;
  padding: 8px !important;
  border-radius: 100px !important;
  gap: 8px !important;
  margin: 0 auto 50px !important;
  max-width: 800px !important;
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.03) !important;
  backdrop-filter: blur(15px) !important;
  justify-content: center !important;
  align-items: center !important;
}

.svc-btn-premium {
  flex: 1 !important;
  display: flex !important;
  flex-direction: row !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 10px !important;
  padding: 14px 28px !important;
  border-radius: 100px !important;
  font-weight: 700 !important;
  font-size: 0.92rem !important;
  color: var(--text) !important;
  background: transparent !important;
  border: none !important;
  cursor: pointer !important;
  transition: all 0.3s var(--ease) !important;
  white-space: nowrap !important;
}

.svc-btn-premium:hover {
  color: var(--primary) !important;
  background: rgba(var(--primary-rgb), 0.04) !important;
}

.svc-btn-premium.active {
  background: var(--primary) !important;
  color: #ffffff !important;
  box-shadow: 0 10px 25px rgba(var(--primary-rgb), 0.22) !important;
}

.svc-btn-icon {
  width: 24px !important;
  height: 24px !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  transition: transform 0.3s var(--ease) !important;
}

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

.svc-btn-premium.active .svc-btn-icon {
  transform: scale(1.15) !important;
  filter: brightness(0) invert(1) !important;
}

.svc-panels-premium {
  position: relative !important;
  margin-top: 40px !important;
}

.svc-panel-premium {
  display: none !important;
  animation: fadePanel 0.4s cubic-bezier(0.4, 0, 0.2, 1) !important;
}

.svc-panel-premium.active {
  display: block !important;
}

.panel-grid-premium {
  display: grid !important;
  grid-template-columns: 1.1fr 0.9fr !important;
  gap: 60px !important;
  align-items: center !important;
}

.panel-info-premium {
  padding: 10px 0 !important;
}

.venture-content-box-premium {
  font-size: 1.05rem !important;
  line-height: 1.85 !important;
  color: var(--text) !important;
}

.venture-content-box-premium h2,
.venture-content-box-premium h3,
.venture-content-box-premium h4 {
  font-size: clamp(1.6rem, 3vw, 2.2rem) !important;
  font-weight: 800 !important;
  color: var(--secondary) !important;
  margin-bottom: 20px !important;
  line-height: 1.3 !important;
}

.venture-content-box-premium p {
  margin-bottom: 16px !important;
}

.panel-media-premium {
  display: flex !important;
  justify-content: center !important;
}

.img-card-premium {
  width: 100% !important;
  max-width: 480px !important;
  border-radius: var(--radius-premium) !important;
  overflow: hidden !important;
  box-shadow: 0 30px 80px rgba(0, 19, 60, 0.06) !important;
  border: 1px solid rgba(0, 19, 60, 0.05) !important;
  transition: all 0.4s var(--ease) !important;
  background: #ffffff !important;
}

.img-card-premium img {
  width: 100% !important;
  height: auto !important;
  display: block !important;
  transition: transform 0.6s var(--ease) !important;
}

.svc-panel-premium:hover .img-card-premium {
  transform: translateY(-10px) !important;
  box-shadow: 0 35px 85px rgba(0, 0, 0, 0.08) !important;
}

.svc-panel-premium:hover .img-card-premium img {
  transform: scale(1.03) !important;
}

/* 3. Features Premium (Elevated Cards Grid) */
.features-premium {
  padding: 90px 0 !important;
  background: #ffffff !important;
}

.feat-grid-premium {
  display: flex !important;
  gap: 24px !important;
  overflow-x: auto !important;
  scroll-snap-type: x mandatory;
  scrollbar-width: none !important;
  cursor: grab !important;
  padding: 10px 0 20px !important;
}

.feat-grid-premium::-webkit-scrollbar {
  display: none !important;
}

.feat-card-premium {
  flex: 0 0 300px !important;
  scroll-snap-align: start;
  background: #ffffff !important;
  border: 1px solid rgba(0, 19, 60, 0.06) !important;
  border-radius: var(--radius-premium) !important;
  padding: 36px 30px !important;
  box-shadow: 0 10px 40px rgba(0, 19, 60, 0.02) !important;
  transition: all 0.35s var(--ease) !important;
  display: flex !important;
  flex-direction: column !important;
  align-items: flex-start !important;
}

.feat-card-premium:hover {
  transform: translateY(-10px) !important;
  box-shadow: 0 24px 60px rgba(0, 19, 60, 0.06) !important;
  border-color: rgba(var(--primary-rgb), 0.15) !important;
}

.feat-icon-wrap-premium {
  width: 64px !important;
  height: 64px !important;
  border-radius: 18px !important;
  background: rgba(var(--primary-rgb), 0.06) !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  margin-bottom: 24px !important;
  transition: all 0.3s var(--ease) !important;
}

.feat-card-premium:hover .feat-icon-wrap-premium {
  background: var(--primary) !important;
  transform: scale(1.1) rotate(2deg) !important;
}

.feat-icon-wrap-premium img {
  width: 32px !important;
  height: 32px !important;
  object-fit: contain !important;
}

.feat-card-premium:hover .feat-icon-wrap-premium img {
  filter: brightness(0) invert(1) !important;
}

.feat-card-premium h4 {
  font-size: 1.25rem !important;
  font-weight: 800 !important;
  color: var(--secondary) !important;
  margin-bottom: 12px !important;
}

.feat-card-premium p {
  font-size: 0.95rem !important;
  line-height: 1.6 !important;
  color: var(--text) !important;
}

/* Slider Nav Controls */
.slider-nav-premium {
  display: flex !important;
  justify-content: center !important;
  gap: 12px !important;
  margin-top: 36px !important;
}

.slider-arrow-premium {
  width: 44px !important;
  height: 44px !important;
  border-radius: 50% !important;
  border: 1px solid rgba(0, 19, 60, 0.08) !important;
  background: #ffffff !important;
  color: var(--secondary) !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  transition: all 0.3s var(--ease) !important;
}

.slider-arrow-premium svg {
  width: 20px !important;
  height: 20px !important;
}

.slider-arrow-premium:hover {
  background: var(--primary) !important;
  border-color: var(--primary) !important;
  color: #ffffff !important;
  transform: scale(1.08) !important;
  box-shadow: 0 8px 20px rgba(var(--primary-rgb), 0.2) !important;
}

/* 4. Zones Section (Explorer Map Panel) */
.zones-premium {
  padding: 90px 0 !important;
  background: linear-gradient(180deg, #ffffff 0%, rgba(var(--secondary-rgb), 0.01) 100%) !important;
}

.zone-grid-premium {
  display: grid !important;
  grid-template-columns: 0.95fr 1.05fr !important;
  gap: 60px !important;
  align-items: center !important;
}

.zone-media-premium {
  display: flex !important;
  justify-content: center !important;
}

.zone-media-card-premium {
  position: relative !important;
  width: 100% !important;
  max-width: 440px !important;
  border-radius: var(--radius-premium) !important;
  overflow: hidden !important;
  box-shadow: 0 20px 60px rgba(0, 19, 60, 0.05) !important;
  border: 1px solid rgba(0, 19, 60, 0.04) !important;
  background: #ffffff !important;
}

.zone-media-card-premium img {
  width: 100% !important;
  height: auto !important;
  display: block !important;
}

.zone-pulse-indicator-premium {
  position: absolute !important;
  top: 45%;
  left: 55%;
  width: 16px !important;
  height: 16px !important;
  background: var(--primary) !important;
  border-radius: 50% !important;
  box-shadow: 0 0 0 0 rgba(var(--primary-rgb), 0.4) !important;
  animation: pulseBlink 2.5s infinite ease-in-out !important;
}

.zone-content-premium h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.4rem) !important;
  font-weight: 800 !important;
  color: var(--secondary) !important;
  margin-bottom: 16px !important;
}

.zone-lead-premium {
  font-size: 1.05rem !important;
  line-height: 1.75 !important;
  color: var(--text) !important;
  margin-bottom: 28px !important;
}

.zone-tags-premium {
  display: flex !important;
  flex-wrap: wrap !important;
  gap: 12px !important;
}

.zone-tag-premium {
  display: inline-flex !important;
  align-items: center !important;
  gap: 10px !important;
  padding: 10px 20px !important;
  background: #ffffff !important;
  border: 1px solid rgba(0, 19, 60, 0.05) !important;
  border-radius: 50px !important;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.02) !important;
  font-weight: 700 !important;
  font-size: 0.88rem !important;
  color: var(--secondary) !important;
  transition: all 0.3s var(--ease) !important;
}

.zone-tag-premium:hover {
  transform: translateY(-2px) !important;
  border-color: var(--primary) !important;
  box-shadow: 0 6px 20px rgba(var(--primary-rgb), 0.1) !important;
}

/* 5. Referral (Careem Inspired Program Card) */
.referral-premium {
  padding: 60px 0 !important;
  background: #ffffff !important;
}

.refer-card-premium {
  display: flex !important;
  justify-content: space-between !important;
  align-items: center !important;
  background: linear-gradient(135deg, var(--secondary) 0%, rgba(var(--secondary-rgb), 0.85) 100%) !important;
  border-radius: var(--radius-premium) !important;
  padding: 50px 60px !important;
  box-shadow: 0 20px 50px rgba(var(--secondary-rgb), 0.15) !important;
  position: relative !important;
  overflow: hidden !important;
}

.refer-info-premium {
  flex: 1 !important;
  z-index: 2 !important;
}

.refer-badge-premium {
  display: inline-block !important;
  padding: 6px 14px !important;
  background: rgba(255, 255, 255, 0.12) !important;
  border-radius: 50px !important;
  font-size: 0.85rem !important;
  font-weight: 700 !important;
  color: #ffffff !important;
  margin-bottom: 16px !important;
  text-transform: uppercase !important;
  letter-spacing: 0.05em !important;
}

.refer-info-premium h2 {
  font-size: clamp(1.6rem, 3vw, 2.2rem) !important;
  font-weight: 800 !important;
  color: #ffffff !important;
  line-height: 1.3 !important;
}

.refer-visual-premium {
  font-size: 6rem !important;
  z-index: 2 !important;
  opacity: 0.9 !important;
  user-select: none !important;
  transition: transform 0.5s var(--ease) !important;
}

.refer-card-premium:hover .refer-visual-premium {
  transform: scale(1.1) rotate(5deg) !important;
}

/* 6. Earn Partners (Dashboard Channels Layout) */
.earn-premium {
  padding: 90px 0 !important;
  background: linear-gradient(180deg, #ffffff 0%, rgba(var(--primary-rgb), 0.01) 100%) !important;
}

.earn-grid-premium {
  display: flex !important;
  gap: 28px !important;
  overflow-x: auto !important;
  scroll-snap-type: x mandatory;
  scrollbar-width: none !important;
  cursor: grab !important;
  padding: 10px 0 20px !important;
}

.earn-grid-premium::-webkit-scrollbar {
  display: none !important;
}

.earn-card-premium {
  flex: 0 0 360px !important;
  scroll-snap-align: start;
  background: #ffffff !important;
  border: 1px solid rgba(0, 19, 60, 0.05) !important;
  border-radius: var(--radius-premium) !important;
  padding: 40px 32px !important;
  box-shadow: 0 15px 45px rgba(0, 19, 60, 0.03) !important;
  transition: all 0.4s var(--ease) !important;
  display: flex !important;
  flex-direction: column !important;
}

.earn-card-premium:hover {
  transform: translateY(-8px) !important;
  box-shadow: 0 24px 60px rgba(0, 19, 60, 0.07) !important;
  border-color: rgba(var(--primary-rgb), 0.12) !important;
}

.earn-card-header-premium {
  display: flex !important;
  justify-content: space-between !important;
  align-items: center !important;
  margin-bottom: 24px !important;
}

.earn-card-icon-premium {
  width: 56px !important;
  height: 56px !important;
  border-radius: 16px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  font-size: 1.5rem !important;
}

.earn-tag-premium {
  font-size: 0.78rem !important;
  font-weight: 800 !important;
  text-transform: uppercase !important;
  letter-spacing: 0.05em !important;
  color: var(--primary) !important;
  background: rgba(var(--primary-rgb), 0.08) !important;
  padding: 6px 14px !important;
  border-radius: 50px !important;
}

.earn-card-premium h3 {
  font-size: 1.4rem !important;
  font-weight: 800 !important;
  color: var(--secondary) !important;
  margin-bottom: 12px !important;
}

.earn-sub-premium {
  font-size: 0.95rem !important;
  line-height: 1.6 !important;
  color: var(--text) !important;
  margin-bottom: 24px !important;
}

.earn-list-premium {
  list-style: none !important;
  padding: 0 !important;
  margin: 0 0 32px 0 !important;
}

.earn-list-premium li {
  font-size: 0.9rem !important;
  font-weight: 700 !important;
  color: var(--secondary) !important;
  margin-bottom: 10px !important;
  display: flex !important;
  align-items: center !important;
  gap: 8px !important;
}

.earn-list-premium .chk {
  color: var(--primary) !important;
  font-weight: 900 !important;
}

.earn-app-row-premium {
  display: flex !important;
  gap: 12px !important;
  margin-top: auto !important;
}

.app-btn-premium {
  flex: 1 !important;
  display: inline-flex !important;
  align-items: center !important;
  gap: 8px !important;
  padding: 10px 14px !important;
  border-radius: 12px !important;
  background: var(--secondary) !important;
  color: #ffffff !important;
  transition: all 0.3s var(--ease) !important;
}

.app-btn-premium:hover {
  background: var(--primary) !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 6px 15px rgba(var(--primary-rgb), 0.2) !important;
}

.app-btn-premium svg {
  width: 18px !important;
  height: 18px !important;
}

.ab-text {
  display: flex !important;
  flex-direction: column !important;
  align-items: flex-start !important;
  line-height: 1.25 !important;
}

.ab-sm {
  font-size: 0.62rem !important;
  font-weight: 500 !important;
  opacity: 0.8 !important;
}

.ab-lg {
  font-size: 0.78rem !important;
  font-weight: 700 !important;
}

/* 7. Special Value Propositions Custom Dot Pagers */
.special-premium {
  padding: 80px 0 50px !important;
  background: var(--bg-light) !important;
}

.sp-track-premium {
  display: flex !important;
  gap: 20px !important;
  overflow-x: auto !important;
  scroll-snap-type: x mandatory;
  scrollbar-width: none !important;
  cursor: grab !important;
  padding: 20px 24px !important;
}

.sp-track-premium::-webkit-scrollbar {
  display: none !important;
}

.sp-card-premium {
  flex: 0 0 280px !important;
  scroll-snap-align: start;
  background: #ffffff !important;
  border-radius: var(--radius-premium) !important;
  padding: 30px !important;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.02) !important;
  border: 1px solid rgba(0, 19, 60, 0.03) !important;
  text-align: center !important;
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  transition: all 0.35s var(--ease) !important;
}

.sp-card-premium:hover {
  transform: translateY(-6px) !important;
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.05) !important;
}

.sp-ico-premium {
  width: 52px !important;
  height: 52px !important;
  border-radius: 50% !important;
  background: rgba(var(--primary-rgb), 0.06) !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  margin-bottom: 20px !important;
}

.sp-ico-premium img {
  width: 26px !important;
  height: 26px !important;
  object-fit: contain !important;
}

.sp-card-premium h4 {
  font-size: 1.15rem !important;
  font-weight: 800 !important;
  color: var(--secondary) !important;
  margin-bottom: 10px !important;
}

.sp-card-premium p {
  font-size: 0.9rem !important;
  line-height: 1.55 !important;
  color: var(--text) !important;
}

.sp-dots-premium {
  display: flex !important;
  justify-content: center !important;
  gap: 8px !important;
  margin-top: 24px !important;
}

.sp-dot-premium {
  width: 8px !important;
  height: 8px !important;
  border-radius: 50% !important;
  background: rgba(0, 19, 60, 0.12) !important;
  transition: all 0.3s var(--ease) !important;
}

.sp-dot-premium.active {
  width: 24px !important;
  border-radius: 10px !important;
  background: var(--primary) !important;
}

/* 8. Stats Section (Careem Inspired Dashboard metrics) */
.stats-premium {
  padding: 80px 0 !important;
  background: linear-gradient(180deg, var(--secondary) 0%, rgba(var(--secondary-rgb), 0.92) 100%) !important;
  color: #ffffff !important;
}

.stats-grid-premium {
  display: flex !important;
  gap: 30px !important;
  overflow-x: auto !important;
  scroll-snap-type: x mandatory;
  scrollbar-width: none !important;
  cursor: grab !important;
  padding: 10px 0 !important;
}

.stats-grid-premium::-webkit-scrollbar {
  display: none !important;
}

.stat-card-premium {
  flex: 1 0 220px !important;
  scroll-snap-align: start;
  display: flex !important;
  align-items: center !important;
  gap: 16px !important;
  padding: 20px 10px !important;
  border-right: 1px solid rgba(255, 255, 255, 0.1) !important;
}

html[dir="rtl"] .stat-card-premium {
  border-right: none !important;
  border-left: 1px solid rgba(255, 255, 255, 0.1) !important;
}

.stat-card-premium:last-child {
  border-right: none !important;
}

html[dir="rtl"] .stat-card-premium:last-child {
  border-left: none !important;
}

.stat-icon-premium {
  width: 48px !important;
  height: 48px !important;
  border-radius: 14px !important;
  background: rgba(255, 255, 255, 0.1) !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  color: #ffffff !important;
}

.stat-icon-premium svg {
  width: 22px !important;
  height: 22px !important;
  color: #ffffff !important;
}

.stat-info-premium {
  display: flex !important;
  flex-direction: column !important;
  align-items: flex-start !important;
}

.stat-num-premium {
  font-size: clamp(1.8rem, 3.5vw, 2.4rem) !important;
  font-weight: 900 !important;
  color: #ffffff !important;
  line-height: 1.1 !important;
  display: inline-flex !important;
  align-items: center !important;
}

.stat-num-premium .plus {
  color: var(--primary) !important;
  margin-left: 3px !important;
}

.stat-label-premium {
  font-size: 0.88rem !important;
  font-weight: 700 !important;
  opacity: 0.85 !important;
  margin-top: 4px !important;
}

.stats-note-premium {
  text-align: center !important;
  font-size: 0.88rem !important;
  font-weight: 700 !important;
  opacity: 0.7 !important;
  margin-top: 36px !important;
}

/* 9. App CTA Section (Luxurious Double-Phone Section) */
.cta-manage-premium {
  padding: 90px 0 !important;
  background: #ffffff !important;
}

.cta-box-premium {
  background: linear-gradient(135deg, #0b0f19 0%, #151c2d 100%) !important;
  border-radius: var(--radius-premium) !important;
  padding: 60px 70px !important;
  display: grid !important;
  grid-template-columns: 1.25fr 0.75fr !important;
  gap: 50px !important;
  align-items: center !important;
  box-shadow: 0 30px 90px rgba(11, 15, 25, 0.15) !important;
  position: relative !important;
  overflow: hidden !important;
}

.cta-info-premium {
  z-index: 3 !important;
  display: flex !important;
  flex-direction: column !important;
  align-items: flex-start !important;
}

.cta-badge-premium {
  display: inline-block !important;
  padding: 6px 14px !important;
  background: rgba(255, 255, 255, 0.08) !important;
  border-radius: 50px !important;
  font-size: 0.82rem !important;
  font-weight: 700 !important;
  color: #ffffff !important;
  margin-bottom: 20px !important;
  text-transform: uppercase !important;
  letter-spacing: 0.05em !important;
}

.cta-info-premium h2 {
  font-size: clamp(2rem, 4vw, 3rem) !important;
  font-weight: 900 !important;
  color: #ffffff !important;
  line-height: 1.2 !important;
  margin-bottom: 20px !important;
}

.cta-info-premium h2 .hl-premium {
  color: var(--primary) !important;
}

.cta-lead-premium {
  font-size: 1.05rem !important;
  line-height: 1.8 !important;
  color: rgba(255, 255, 255, 0.75) !important;
  margin-bottom: 36px !important;
  max-width: 580px !important;
}

.cta-app-row-premium {
  display: flex !important;
  gap: 16px !important;
}

.cta-app-link-premium {
  display: inline-flex !important;
  align-items: center !important;
  gap: 10px !important;
  padding: 12px 24px !important;
  border-radius: 14px !important;
  background: rgba(255, 255, 255, 0.08) !important;
  border: 1px solid rgba(255, 255, 255, 0.12) !important;
  color: #ffffff !important;
  transition: all 0.3s var(--ease) !important;
}

.cta-app-link-premium:hover {
  background: #ffffff !important;
  color: #0b0f19 !important;
  transform: translateY(-3px) !important;
  box-shadow: 0 10px 25px rgba(255, 255, 255, 0.15) !important;
}

.cta-app-link-premium svg {
  width: 22px !important;
  height: 22px !important;
}

.cal-text {
  display: flex !important;
  flex-direction: column !important;
  align-items: flex-start !important;
  line-height: 1.25 !important;
}

.cal-sm {
  font-size: 0.65rem !important;
  font-weight: 500 !important;
  opacity: 0.8 !important;
}

.cal-lg {
  font-size: 0.85rem !important;
  font-weight: 700 !important;
}

.cta-visual-premium {
  display: flex !important;
  justify-content: center !important;
  align-items: center !important;
  position: relative !important;
  z-index: 2 !important;
}

.cta-phone-premium {
  width: 100% !important;
  max-width: 280px !important;
  transform: translateY(20px) !important;
}

.cta-phone-premium img {
  width: 100% !important;
  height: auto !important;
  display: block !important;
  filter: drop-shadow(0 20px 50px rgba(0, 0, 0, 0.3)) !important;
}

/* 10. Testimonials Premium */
.testimonials-premium {
  padding: 90px 0 !important;
  background: linear-gradient(180deg, #ffffff 0%, rgba(var(--primary-rgb), 0.02) 100%) !important;
}

.test-grid-premium {
  display: flex !important;
  gap: 24px !important;
  overflow-x: auto !important;
  scroll-snap-type: x mandatory;
  scrollbar-width: none !important;
  cursor: grab !important;
  padding: 20px 0 !important;
}

.test-grid-premium::-webkit-scrollbar {
  display: none !important;
}

.test-card-premium {
  flex: 0 0 340px !important;
  scroll-snap-align: start;
  background: #ffffff !important;
  border-radius: var(--radius-premium) !important;
  padding: 36px 30px !important;
  box-shadow: 0 15px 45px rgba(0, 19, 60, 0.03) !important;
  border: 1px solid rgba(0, 19, 60, 0.04) !important;
  display: flex !important;
  flex-direction: column !important;
  transition: all 0.35s var(--ease) !important;
}

.test-card-premium:hover {
  transform: translateY(-6px) !important;
  box-shadow: 0 24px 60px rgba(0, 19, 60, 0.06) !important;
}

.test-stars-premium {
  color: #ffb300 !important;
  font-size: 1.1rem !important;
  margin-bottom: 18px !important;
}

.test-text-premium {
  font-size: 0.98rem !important;
  line-height: 1.7 !important;
  color: var(--text) !important;
  margin-bottom: 24px !important;
}

.test-author-premium {
  display: flex !important;
  align-items: center !important;
  gap: 14px !important;
  margin-top: auto !important;
}

.test-av-premium {
  width: 48px !important;
  height: 48px !important;
  border-radius: 50% !important;
  overflow: hidden !important;
}

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

.test-author-info-premium {
  display: flex !important;
  flex-direction: column !important;
  align-items: flex-start !important;
}

.test-name-premium {
  font-size: 0.95rem !important;
  font-weight: 800 !important;
  color: var(--secondary) !important;
}

.test-role-premium {
  font-size: 0.78rem !important;
  font-weight: 600 !important;
  color: var(--text) !important;
  margin-top: 2px !important;
}

.test-company-premium img {
  height: 14px !important;
  width: auto !important;
  object-fit: contain !important;
  margin-top: 4px !important;
}

/* Responsive breakdowns for asymmetrical grids */
@media (max-width: 991px) {
  .hero-grid-premium {
    grid-template-columns: 1fr !important;
    gap: 40px !important;
    text-align: center !important;
  }

  .hero-content-premium {
    align-items: center !important;
    text-align: center !important;
  }

  html[dir="rtl"] .hero-content-premium {
    align-items: center !important;
    text-align: center !important;
  }

  .hero-lead-premium {
    margin-left: auto !important;
    margin-right: auto !important;
  }

  .hero-btns-premium {
    justify-content: center !important;
  }

  .zone-grid-premium {
    grid-template-columns: 1fr !important;
    gap: 40px !important;
  }

  .cta-box-premium {
    grid-template-columns: 1fr !important;
    gap: 40px !important;
    text-align: center !important;
    padding: 50px 36px !important;
  }

  .cta-info-premium {
    align-items: center !important;
  }

  .cta-lead-premium {
    margin-left: auto !important;
    margin-right: auto !important;
  }

  .cta-app-row-premium {
    justify-content: center !important;
  }

  .cta-phone-premium {
    transform: translateY(0) !important;
    margin: 0 auto !important;
  }
}

@media (max-width: 576px) {
  .hero-btns-premium {
    flex-direction: column !important;
    width: 100% !important;
    align-items: stretch !important;
  }

  .hero-btn-premium {
    justify-content: center !important;
  }

  .cta-app-row-premium {
    flex-direction: column !important;
    width: 100% !important;
    align-items: stretch !important;
  }

  .cta-app-link-premium {
    justify-content: center !important;
  }

  .earn-app-row-premium {
    flex-direction: column !important;
    width: 100% !important;
    align-items: stretch !important;
  }

  .app-btn-premium {
    justify-content: center !important;
  }
}

/* =============================================================
   CAREEM INSPIRED REDESIGN
   ============================================================= */

/* --- Hero Section --- */
.cr-hero {
  position: relative;
  padding: 120px 0 80px;
  background-color: #F8F9FA;
  overflow: hidden;
  display: flex;
  align-items: center;
  min-height: 80vh;
}

.cr-hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at top right, rgba(0, 229, 117, 0.08) 0%, rgba(248, 249, 250, 0) 50%);
  z-index: 0;
}

.cr-hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.cr-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #fff;
  padding: 8px 16px;
  border-radius: 100px;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--title);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  margin-bottom: 24px;
}

.cr-badge-dot {
  width: 8px;
  height: 8px;
  background: var(--primary);
  border-radius: 50%;
  box-shadow: 0 0 0 4px rgba(var(--primary-rgb), 0.2);
}

.cr-hero-title {
  font-size: 2.75rem;
  font-weight: 900;
  color: var(--title);
  line-height: 1.2;
  margin-bottom: 20px;
  letter-spacing: -0.5px;
}

.cr-hero-title .text-primary {
  color: var(--primary);
}

.cr-hero-subtitle {
  font-size: 1.15rem;
  color: var(--text);
  line-height: 1.6;
  margin-bottom: 40px;
  max-width: 90%;
}

.cr-hero-actions {
  display: flex;
  gap: 16px;
  margin-bottom: 40px;
}

.cr-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 28px;
  border-radius: 12px;
  font-size: 1rem;
  font-weight: 700;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  text-decoration: none;
  cursor: pointer;
}

.cr-btn svg {
  width: 20px;
  height: 20px;
}

.cr-btn-primary {
  background: var(--primary);
  color: #fff;
  border: 2px solid var(--primary);
}

.cr-btn-primary:hover {
  background: var(--primary-dark);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(var(--primary-rgb), 0.3);
}

.cr-btn-secondary {
  background: #fff;
  color: var(--title);
  border: 2px solid #E5E7EB;
}

.cr-btn-secondary:hover {
  border-color: var(--title);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
}

.cr-hero-partners {
  border-top: 1px solid #E5E7EB;
  padding-top: 24px;
}

.cr-hero-partners span {
  display: block;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 12px;
}

.cr-partner-links {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.cr-partner-link {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--title);
  text-decoration: none;
  position: relative;
}

.cr-partner-link::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 100%;
  height: 2px;
  background: var(--primary);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.3s ease;
}

.cr-partner-link:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

/* --- Widget Mockup --- */
.cr-hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* ================================== */
/* Left Side Search Box               */
/* ================================== */
.cr-left-search-box {
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(16px);
  border-radius: 24px;
  padding: 24px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.8);
  margin: 30px 0;
  max-width: 450px;
}

.cr-widget-search {
  display: flex;
  align-items: center;
  gap: 12px;
  background: #f3f4f6;
  border-radius: 16px;
  padding: 14px 20px;
  box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.02);
  border: 1px solid transparent;
  font-size: 1rem;
  color: var(--text);
  height: 55px;
  /* Fixed height to prevent expanding */
  white-space: nowrap;
  /* Prevent text wrap */
  overflow: hidden;
  transition: border-color 0.3s;
}

.cr-widget-search:hover {
  border-color: var(--primary);
  background: #fff;
}

.cr-widget-search svg {
  width: 22px;
  height: 22px;
  color: var(--primary);
  flex-shrink: 0;
}

.typewriter-text {
  font-weight: 700;
  color: var(--title);
}

/* ================================== */
/* Design 2: Floating 3D Elements     */
/* ================================== */
.cr-floating-container {
  position: relative;
  width: 100%;
  max-width: 550px;
  margin-inline-start: auto;
  /* Push away from text in RTL */
  height: 550px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.cr-floating-center {
  width: 180px;
  height: 180px;
  background: var(--primary);
  border-radius: 36px;
  box-shadow: 0 0 60px rgba(var(--primary-rgb), 0.4);
  display: flex;
  justify-content: center;
  align-items: center;
  animation: cr-float 4s ease-in-out infinite;
}

.cr-floating-center img {
  width: 80px;
  height: auto;
}

.cr-floating-item {
  position: absolute;
  width: 90px;
  height: 90px;
  background: #fff;
  border-radius: 24px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
  display: flex;
  justify-content: center;
  align-items: center;
  animation: cr-float 5s ease-in-out infinite alternate;
}

.cr-floating-item img {
  width: 45px;
  height: 45px;
  object-fit: contain;
}

/* Perfect Hexagon Distribution (Radius 230px, Item 90px) */
.cr-item-1 {
  left: calc(50% + 230px - 45px);
  top: calc(50% + 0px - 45px);
  animation-delay: 0s;
}

.cr-item-2 {
  left: calc(50% + 115px - 45px);
  top: calc(50% + 200px - 45px);
  animation-delay: 0.5s;
}

.cr-item-3 {
  left: calc(50% - 115px - 45px);
  top: calc(50% + 200px - 45px);
  animation-delay: 1.0s;
}

.cr-item-4 {
  left: calc(50% - 230px - 45px);
  top: calc(50% + 0px - 45px);
  animation-delay: 1.5s;
}

.cr-item-5 {
  left: calc(50% - 115px - 45px);
  top: calc(50% - 200px - 45px);
  animation-delay: 2.0s;
}

.cr-item-6 {
  left: calc(50% + 115px - 45px);
  top: calc(50% - 200px - 45px);
  animation-delay: 2.5s;
}

@keyframes cr-float {
  0% {
    transform: translateY(0px);
  }

  50% {
    transform: translateY(-15px);
  }

  100% {
    transform: translateY(0px);
  }
}

/* Glow Effect behind the phone */
.cr-aurora-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 250px;
  height: 350px;
  background: var(--primary);
  filter: blur(100px);
  opacity: 0.35;
  z-index: 1;
  animation: cr-pulse-glow 4s infinite alternate ease-in-out;
  border-radius: 50%;
}

@keyframes cr-pulse-glow {
  0% {
    transform: translate(-50%, -50%) scale(1);
    opacity: 0.2;
  }

  100% {
    transform: translate(-50%, -50%) scale(1.3);
    opacity: 0.45;
  }
}

/* Phone Frame */
.cr-phone-frame {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 300px;
  height: 600px;
  background: #FCFCFC;
  border-radius: 45px;
  border: 8px solid #22252A;
  /* Dark premium casing */
  box-shadow:
    0 30px 60px -15px rgba(0, 0, 0, 0.3),
    inset 0 0 0 4px #000;
  /* Screen bezel */
  overflow: hidden;
  transform: translateY(0);
}

/* The actual screen */
.cr-phone-screen {
  background: #FCFCFC;
  /* Match Flutter app light theme surface */
  width: 100%;
  height: 100%;
  position: relative;
}

/* The iPhone Notch */
.cr-phone-notch {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 130px;
  height: 26px;
  background: #000;
  border-bottom-left-radius: 18px;
  border-bottom-right-radius: 18px;
  z-index: 10;
}

/* Notch Camera and Speaker */
.cr-phone-notch::before {
  content: '';
  position: absolute;
  top: 8px;
  left: 50%;
  transform: translateX(-50%);
  width: 40px;
  height: 5px;
  background: #222;
  border-radius: 10px;
}

.cr-phone-notch::after {
  content: '';
  position: absolute;
  top: 7px;
  right: 25px;
  width: 8px;
  height: 8px;
  background: #151515;
  border-radius: 50%;
  box-shadow: inset -1px -1px 2px rgba(255, 255, 255, 0.1);
}

/* App Header */
.cr-app-header {
  padding: 38px 16px 12px;
  /* Adjusted padding so it sits right under the notch perfectly */
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #FCFCFC;
  border-bottom: 1px solid rgba(0, 0, 0, 0.03);
}

.cr-app-logo img {
  height: 30px;
}

.cr-app-actions {
  display: flex;
  gap: 8px;
}

.cr-app-icon {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  background: rgba(58, 79, 106, 0.05);
  /* Match theme primary color lightly */
  display: flex;
  align-items: center;
  justify-content: center;
  color: #3A4F6A;
  /* Primary Color */
  position: relative;
}

.cr-app-icon svg {
  width: 16px;
  height: 16px;
}

.cr-has-notif::after {
  content: '';
  position: absolute;
  top: 6px;
  right: 6px;
  width: 6px;
  height: 6px;
  background: #EF4444;
  border-radius: 50%;
  border: 1px solid #FCFCFC;
}

.cr-widget-body {
  padding: 24px 16px;
  height: calc(100% - 70px);
  overflow-y: auto;
}

.cr-widget-body h3 {
  font-size: 1.15rem;
  font-weight: 800;
  margin-bottom: 20px;
  color: var(--title);
  direction: ltr;
  /* Fix question mark issue for RTL */
  unicode-bidi: plaintext;
}

.cr-widget-search {
  display: flex;
  align-items: center;
  gap: 12px;
  background: #fff;
  padding: 12px 16px;
  border-radius: 12px;
  margin-bottom: 32px;
  color: var(--text);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.02);
  border: 1px solid rgba(0, 0, 0, 0.03);
}

.cr-widget-search svg {
  width: 18px;
  height: 18px;
}

.typewriter-text {
  font-size: 0.95rem;
  font-weight: 500;
  border-right: 2px solid var(--primary);
  animation: cr-blink 1s infinite;
  white-space: nowrap;
  overflow: hidden;
}

[dir="rtl"] .typewriter-text {
  border-right: none;
  border-left: 2px solid var(--primary);
}

.cr-widget-services {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  row-gap: 24px;
}

.cr-ws-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  cursor: pointer;
}

.cr-ws-item span {
  font-size: 0.75rem;
  font-weight: 600;
  text-align: center;
  color: #4B5563;
  line-height: 1.2;
}

.cr-ws-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  background: #fff;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.03);
  border: 1px solid rgba(0, 0, 0, 0.02);
}

.cr-ws-icon img {
  width: 28px;
  height: 28px;
  object-fit: contain;
}

.cr-ws-icon svg {
  width: 28px;
  height: 28px;
}

.cr-ws-item span {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--title);
}

.cr-ws-item:hover .cr-ws-icon {
  transform: translateY(-4px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
}

.bg-green-soft {
  background: #DCFCE7;
}

.text-primary {
  color: #16A34A;
}

.bg-orange-soft {
  background: #FFEDD5;
}

.text-orange {
  color: #F97316;
}

.bg-blue-soft {
  background: #DBEAFE;
}

.text-blue {
  color: #2563EB;
}

@keyframes cr-blink {

  0%,
  100% {
    border-color: transparent;
  }

  50% {
    border-color: var(--primary);
  }
}

@media (max-width: 991px) {
  .cr-hero-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .cr-hero-actions,
  .cr-partner-links {
    justify-content: center;
  }

  .cr-hero-title {
    font-size: 2.5rem;
  }

  .cr-widget-mockup {
    transform: none;
  }

  .cr-widget-mockup:hover {
    transform: translateY(-5px);
  }
}

@media (max-width: 576px) {
  .cr-hero-actions {
    flex-direction: column;
  }

  .cr-ws-icon {
    width: 56px;
    height: 56px;
  }
}

/* --- Footer Section --- */
.cr-footer {
  background: #FFFFFF;
  color: #111827;
  padding: 80px 0 20px;
  font-family: inherit;
  border-top: none;
}

.cr-footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 60px;
}

.cr-f-logo img {
  height: 40px;
  margin-bottom: 20px;
}

.cr-f-desc {
  color: #6B7280;
  font-size: 0.9rem;
  line-height: 1.6;
  margin-bottom: 24px;
  max-width: 300px;
}

.cr-f-apps {
  display: flex;
  gap: 12px;
}

.cr-f-app-btn {
  display: inline-flex;
  align-items: center;
  background: #111827;
  color: #fff;
  padding: 8px 16px;
  border-radius: 8px;
  text-decoration: none;
  gap: 10px;
  transition: background 0.3s ease;
}

.cr-f-app-btn:hover {
  background: #374151;
}

.cr-f-app-btn svg {
  width: 24px;
  height: 24px;
}

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

.cal-sm {
  font-size: 0.65rem;
  color: #9CA3AF;
}

.cal-lg {
  font-size: 0.9rem;
  font-weight: 700;
  color: #fff;
}

.cr-f-col h5 {
  color: #111827;
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 24px;
}

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

.cr-f-links a {
  color: #4B5563;
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.3s ease;
}

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

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

.cr-fc-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  color: #4B5563;
  text-decoration: none;
  font-size: 0.9rem;
  line-height: 1.4;
  transition: color 0.3s ease;
}

.cr-fc-item:hover {
  color: var(--primary);
}

.cr-fc-icon {
  background: rgba(0, 0, 0, 0.05);
  padding: 8px;
  border-radius: 8px;
  display: flex;
  color: #111827;
}

.cr-fc-icon svg {
  width: 16px;
  height: 16px;
}

.cr-footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
  padding-top: 30px;
  border-top: 1px solid #E5E7EB;
}

.cr-f-bottom-legal {
  display: flex;
  gap: 24px;
  align-items: center;
}

.cr-f-bottom-legal a {
  color: #6B7280;
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.3s ease;
}

.cr-f-bottom-legal a:hover {
  color: var(--primary);
}

.cr-copy {
  color: #6B7280;
  font-size: 0.9rem;
}

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

.cr-social-btn {
  background: rgba(0, 0, 0, 0.05);
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: background 0.3s ease, color 0.3s ease;
  color: #111827;
}

.cr-social-btn img {
  width: 16px;
  height: 16px;
  filter: brightness(0) opacity(0.7);
  transition: filter 0.3s ease;
}

.cr-social-btn:hover {
  background: var(--primary);
}

.cr-social-btn:hover img {
  filter: brightness(0) invert(1);
}

@media (max-width: 991px) {
  .cr-footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 576px) {
  .cr-footer-grid {
    grid-template-columns: 1fr;
  }

  .cr-footer-bottom {
    flex-direction: column;
    gap: 20px;
    text-align: center;
  }
}