:root {
  --bg: #f5f3f8;
  --surface: #ffffff;
  --ink: #181330;
  --muted: #66617c;
  --primary: #481fb4;
  --primary-dark: #3a1993;
  --lavender: #f1edff;
  --line: #e7e3f2;
  --radius: 16px;
  --shadow: 0 12px 30px rgba(58, 38, 130, 0.12);
  --move-x: 0px;
  --move-y: 0px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: 'Montserrat', sans-serif;
  color: var(--ink);
  background: #FFFFFF;
}

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

.container {
  width: min(1240px, calc(100% - 3rem));
  margin: 0 auto;
}

.section {
  padding: 4.8rem 0;
}

.soft-bg {
  background: #f8f7fc;
}

.narrow {
  width: min(800px, calc(100% - 2rem));
}

h1,
h2,
h3 {
  margin: 0 0 0.9rem;
  line-height: 1.15;
  letter-spacing: -0.02em;
}

h1 {
  font-size: clamp(2.1rem, 4vw, 3.5rem);
}

h1 span,
h2 span {
  color: var(--primary);
  font-style: italic;
}

h2 {
  text-align: center;
  font-size: clamp(1.7rem, 3vw, 2.35rem);
  color: #1F0E4B;
}

h3 {
  font-size: 1.1rem;
}

p {
  margin: 0;
  color: var(--muted);
}

.section-subtitle {
  text-align: center;
  margin: 0 auto 2rem;
  max-width: 670px;
  font-size: 18px;
  line-height: 28px;
  font-weight: 500;
}

/* --- Load Animations --- */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

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

@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translateX(30px);
  }

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

@keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translateX(-30px);
  }

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

@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

.animate-up {
  opacity: 0;
  animation: fadeInUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.animate-right {
  opacity: 0;
  animation: fadeInRight 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.animate-left {
  opacity: 0;
  animation: fadeInLeft 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.animate-fade {
  opacity: 0;
  animation: fadeIn 0.8s ease forwards;
}

/* Utility for stagger delays */
.delay-1 {
  animation-delay: 0.1s;
}

.delay-2 {
  animation-delay: 0.2s;
}

.delay-3 {
  animation-delay: 0.3s;
}

.delay-4 {
  animation-delay: 0.4s;
}

.delay-5 {
  animation-delay: 0.5s;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(8px);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  min-height: 80px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 700;
  color: var(--ink);
}

.brand-logo {
  width: 132px;
  height: auto;
  display: block;
}

/* --- About Us Page Styles --- */
.about-page-main {
  background: #fff;
}

.about-hero {
  padding-top: 6rem;
  padding-bottom: 4rem;
}

.container-medium {
  max-width: 900px;
}

.container-large {
  max-width: 1400px;
}

.pill-badge {
  display: inline-block;
  background: var(--lavender);
  color: var(--primary);
  padding: 0.4rem 1.2rem;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.85rem;
  margin-bottom: 1.5rem;
}

.about-title {
  font-size: clamp(2.2rem, 5vw, 3rem);
  font-weight: 600;
  line-height: 1.25;
  margin-bottom: 2rem;
}

.about-description {
  color: var(--muted);
  font-size: 1.15rem;
  line-height: 1.6;
  max-width: 780px;
  margin: 0 auto 4rem;
}

.about-description p {
  margin-bottom: 1.5rem;
  font-size: 16px;
  line-height: 24px;
  font-weight: 500;
}

.about-visual-container {
  margin-top: 2rem;
}

.about-visual-wrap {
  position: relative;
  max-width: 364px;
  margin: 0 auto;
}

.about-hero-img {
  width: 100%;
  max-width: 364px;
  height: auto;
  border-radius: 40px;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.08);
}

.about-visual-wrap .bubble-alert {
  top: 10%;
  left: -40%;
}

.about-visual-wrap .bubble-completed {
  bottom: 25%;
  right: -40%;
}


.get-started-section {
  padding: 6rem 0;
}

.get-started-section h2 {
  font-size: 30px;
  line-height: 38px;
  font-weight: 600;
  color: #1F0E4B;
}

.purple-underline {
  position: relative;
  display: inline-block;
  z-index: 1;
}

.purple-underline::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0px;
  width: 100%;
  height: 4px;
  background: var(--primary);
  border-radius: 2px;
  z-index: -1;
  transform: translateY(2px);
}

.about-steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3rem;
  margin-top: 4rem;
}

.about-step-card {
  text-align: center;
}

.about-step-icon-wrap {
  width: 60px;
  height: 60px;
  background: #712ED7;
  color: #FFF;
  border-radius: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
}

.about-step-card h3 {
  font-size: 16px;
  line-height: 24px;
  font-weight: 600;
  margin-bottom: 1rem;
}

.about-step-card p {
  font-size: 0.95rem;
  line-height: 1.5;
}

@media (max-width: 1024px) {
  .about-visual-wrap .bubble-alert {
    left: -5%;
  }

  .about-visual-wrap .bubble-completed {
    right: -5%;
  }
}

@media (max-width: 768px) {
  .about-steps-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .about-visual-wrap .floating-bubble {
    display: none;
    /* Hide bubbles on small screens if too cramped */
  }

  .about-hero-img {
    border-radius: 20px;
  }
}

.brand-mark {
  width: 22px;
  height: 22px;
  border-radius: 6px;
  background: linear-gradient(135deg, #7647ff, #4f2ccf);
  position: relative;
}

.brand-mark::before {
  content: '';
  position: absolute;
  inset: 5px;
  border-radius: 3px;
  border: 2px solid #fff;
}

.top-nav {
  display: inline-flex;
  align-items: center;
  gap: 1.2rem;
  color: #463f65;
  font-weight: 500;
}

.top-nav a {
  margin: 0 1rem;
}

.nav-dropdown {
  position: relative;
  display: inline-flex;
}

.nav-dropdown-toggle {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
}

.nav-dropdown-menu {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(10px);
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  padding: 0.5rem;
  min-width: 150px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.2s ease;
  z-index: 100;
  margin-top: 1rem;
}

.nav-dropdown:hover .nav-dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

.nav-dropdown-menu a {
  display: block;
  padding: 0.5rem 1rem;
  color: #463f65;
  text-decoration: none;
  border-radius: 4px;
  transition: background 0.15s ease;
  margin: 0;
}

.nav-dropdown-menu a:hover {
  background: rgba(90, 52, 222, 0.08);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.8rem 1.35rem;
  border-radius: 999px;
  border: 1px solid transparent;
  background: var(--primary);
  color: #fff;
  font-weight: 600;
  transition: 150ms ease;
}

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

.btn-small {
  padding: 0.6rem 1rem;
  font-size: 0.9rem;
}

.btn-ghost {
  background: transparent;
  color: var(--primary);
  border-color: rgba(90, 52, 222, 0.35);
}

.btn-ghost:hover {
  background: var(--lavender);
}

.menu-toggle,
.mobile-nav {
  display: none;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 3rem;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  color: #5f6fe8;
  background: #ffffff;
  border: 1px solid #c8d2fc;
  padding: 0.35rem 0.9rem;
  border-radius: 999px;
  font-size: 0.75rem;
  /* 12px */
  font-weight: 600;
  letter-spacing: 0;
  margin-bottom: 1.5rem;
  box-shadow: none;
}

.eyebrow::before {
  content: '';
  width: 8px;
  height: 8px;
  border-radius: 50%;
  flex: 0 0 8px;
  background: #5f6fe8;
  box-shadow: 0 0 0 4px #e0e5ff;
  margin: 2px;
}

@media (max-width: 720px) {
  .eyebrow {
    margin-bottom: 1rem;
    padding: 0.6rem 1.2rem;
    font-size: 1rem;
  }
}

.hero-copy h1 {
  font-weight: 600;
  font-size: 52px;
  line-height: 72px;
  max-width: 720px;
  color: #1F0E4B;
}

.hero-copy p {
  max-width: 560px;
}

.hero-actions {
  margin-top: 2rem;
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.hero-trust-badge {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 500;
  color: #181330;
  font-size: 0.875rem;
  /* 14px */
}

.trust-icon {
  display: flex;
  align-items: center;
  justify-content: center;
}

.trust-icon img {
  width: 20px;
  height: 20px;
}

.trust-text {
  letter-spacing: -0.01em;
}

.hero-visual {
  min-height: 0;
  border-radius: 24px;
  background: transparent;
  position: relative;
  display: block;
  overflow: hidden;
}

.phone-shell {
  width: min(320px, 84%);
  border-radius: 36px;
  background: #121018;
  padding: 14px 12px;
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.4);
  position: relative;
  z-index: 3;
}

.phone-notch {
  width: 36%;
  height: 22px;
  background: #09080e;
  border-radius: 999px;
  margin: 0 auto 12px;
}

.phone-screen {
  background: #fff;
  border-radius: 28px;
  padding: 14px;
}

.survey-card {
  background: #f4f0ff;
  height: 48px;
  border-radius: 10px;
  margin-bottom: 10px;
}

.survey-row {
  background: #f1eef7;
  height: 14px;
  border-radius: 8px;
  margin-top: 8px;
}

.float-badge {
  position: absolute;
  z-index: 4;
  color: #fff;
  background: rgba(255, 255, 255, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.35);
  backdrop-filter: blur(6px);
  padding: 0.45rem 0.7rem;
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 600;
}

.badge-a {
  left: 1.2rem;
  bottom: 2rem;
}

.badge-b {
  right: 1.2rem;
  top: 2.2rem;
}

.steps-grid,
.testimonials-grid,
.payout-grid {
  display: grid;
  gap: 1rem;
}

.steps-grid-premium {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
}

.step-card-premium {
  background: #fff;
  border-radius: 24px;
  padding: 1.5rem;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
  display: flex;
  flex-direction: column;
  border: 1px solid rgba(0, 0, 0, 0.04);
}

.step-visual-premium {
  height: auto;
  aspect-ratio: 1.1 / 1;
  background: #F4F1FE;
  border-radius: 16px;
  padding: 2rem;
  margin-bottom: 2rem;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #DFD8E9;
}

.step-visual-premium img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.step-card-premium:nth-child(3) .step-visual-premium {
  padding-left: 0;
  padding-bottom: 0;
}

.step-card-premium:nth-child(3) .step-visual-premium img {
  margin-bottom: -50px;
}

.step-content-premium {
  text-align: left;
}

.step-num-premium {
  font-size: 1.5rem;
  font-weight: 700;
  color: #D1D5DB;
  display: block;
  margin-bottom: 1rem;
}

.step-card-premium h3 {
  font-size: 20px;
  font-weight: 600;
  color: #1a1633;
  margin-bottom: 0.75rem;
  letter-spacing: -0.01em;
  line-height: 30px;
}

.step-card-premium p {
  font-size: 0.95rem;
  color: #66617c;
  line-height: 1.5;
  margin: 0;
}

.text-center {
  text-align: center;
}

.soft-bg-premium {
  background: #fff;
  padding: 5rem 0;
}

.soft-bg-premium h2,
#channels h2,
#testimonials h2,
#payouts h2 {
  font-size: 36px;
  line-height: 38px;
  font-weight: 600;
}

@media (max-width: 991px) {
  .steps-grid-premium {
    grid-template-columns: 1fr;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
    gap: 2rem;
  }
}

#channels {
  background: #FEFEFE;
}

#testimonials {
  background: #FFF;
}

.channels-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}


.channels-grid-layout {
  display: block;
  column-count: 2;
  column-gap: 1.5rem;
  margin-top: 3.5rem;
}

.channel-card-new {
  display: inline-block;
  width: 100%;
  break-inside: avoid;
  margin-bottom: 1.5rem;
  border-radius: 32px;
  padding: 2.5rem 2.5rem 0;
  position: relative;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.channel-card-new:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(124, 92, 255, 0.12);
}

.is-purple-card {
  background: linear-gradient(90deg, #7F56D9 0%, #9E77ED 100%);
  color: #fff;
}

.is-light-card {
  background: #F9F5FF;
  color: #1a1633;
}

.channel-card-whatsapp {
  background: #F9F5FF !important;
}

/* Grid Positioning & Vertical Balance */
.channel-card-mobile_app {
  padding-bottom: 0 !important;
}

.channel-card-top {
  margin-bottom: 0.5rem;
  /* Tightened */
  position: relative;
  z-index: 10;
}

.channel-title-new {
  font-size: 24px;
  margin-bottom: 1rem;
  font-weight: 600;
  line-height: 38px;
}

.channel-desc-new {
  font-size: 14px;
  line-height: 1.35;
  margin-bottom: 1.5rem;
  opacity: 0.9;
  font-weight: 500;
}

.is-purple-card .channel-desc-new {
  color: #fff;
  max-width: 466px;
}

/* Best For Tag */
.best-for-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.6rem 1rem;
  padding-left: 0;
  border-radius: 99px;
  font-size: 0.85rem;
}

.is-purple-card .best-for-tag svg {
  stroke: #ffffff !important;
}

.tag-icon {
  display: flex;
  align-items: center;
  opacity: 0.8;
}

.channel-card-bottom {
  position: relative;
}

.channel-card-mobile_app .channel-card-bottom {
  margin-top: 1.5rem;
}


.mobile-mockup-wrap {
  position: relative;
  height: 100%;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: flex-end;
}

.mobile-mockup-wrap::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 250px;
  height: 250px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.25) 0%, rgba(255, 255, 255, 0) 70%);
  z-index: 0;
  pointer-events: none;
}

.iphone-frame {
  position: relative;
  z-index: 2;
}

.iphone-screen {
  position: relative;
}

.iphone-screen img {
  width: auto;
  max-width: 349px;
  height: auto;
  display: block;
  margin: 0 auto;
}

.floating-bubble {
  position: absolute;
  z-index: 10;
  background: #fff;
  border-radius: 16px;
  padding: 0.7rem 1.1rem;
  display: flex;
  align-items: center;
  gap: 0.9rem;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
  color: #1a1633;
  border: 1px solid rgba(0, 0, 0, 0.03);
}

.bubble-icon-wrap {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.bubble-alert .bubble-icon-wrap {
  background: #8B5CF6;
  color: #fff;
}

.bubble-completed .bubble-icon-wrap {
  background: #00B660;
  color: #fff;
  font-size: 1.1rem;
}

.bubble-text {
  line-height: 1;
}

.bubble-text strong {
  display: block;
  font-size: 10px;
  margin-bottom: 2px;
  line-height: 1;
  font-weight: 800;
}

.bubble-text span {
  font-size: 10px;
  color: #5D5677;
  line-height: 1;
  font-weight: 500;
}

.bubble-alert {
  top: 15%;
  left: -2%;
  width: 230px;
}

.bubble-completed {
  bottom: 20%;
  right: -2%;
  width: 220px;
}


.chat-bubble {
  max-width: 85%;
  padding: 0.7rem 0.9rem;
  border-radius: 12px;
  font-size: 0.85rem;
  position: relative;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
  z-index: 1;
}

.chat-left {
  background: #fff;
  align-self: flex-start;
  border-bottom-left-radius: 2px;
}

.chat-right {
  background: #D9FDD3;
  align-self: flex-end;
  border-bottom-right-radius: 2px;
}

.chat-time {
  display: block;
  font-size: 0.7rem;
  margin-top: 4px;
  opacity: 0.5;
  text-align: right;
}


.sms-mockup-wrap {
  position: relative;
  overflow: hidden;
  padding: 1.5rem 1.5rem 0;
  border-radius: 20px;
}

.sms-mockup-wrap img {
  display: block;
  width: 100%;
  max-width: 260px;
  margin: 0 auto;
  height: auto;
}

.sms-floating-notif {
  position: absolute;
  z-index: 5;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(15px);
  border-radius: 12px;
  padding: 0.8rem 1rem;
  display: flex;
  gap: 0.8rem;
  align-items: center;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
  width: 85%;
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.sms-floating-notif .notif-icon-wrap {
  width: 28px;
  height: 28px;
  background: #22C55E;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.sms-floating-notif .notif-header {
  font-size: 9px;
  font-weight: 700;
  color: #333;
  margin-bottom: 2px;
  display: flex;
  justify-content: space-between;
}

.sms-floating-notif .notif-header span {
  opacity: 0.5;
  font-weight: 400;
}

.sms-floating-notif .notif-body {
  font-size: 9px;
  color: #1a1633;
  line-height: 1.3;
}

.notif-1 {
  top: 42%;
  left: 50%;
  transform: translateX(-50%);
}

.notif-2 {
  top: 65%;
  left: 50%;
  transform: translateX(-50%);
}


.web-mockup-wrap {
  overflow: hidden;
  border-radius: 12px 12px 0 0;
}

.web-mockup-wrap img {
  display: block;
  width: 100%;
  height: auto;
}


@media (max-width: 991px) {
  .channels-grid-layout {
    column-count: 1;
  }

  .channel-card-mobile_app {
    grid-row: auto;
  }
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.5rem;
  margin-top: 3.5rem;
}

.quote-card-new {
  margin: 0;
  background: #F2F4F7;
  border-radius: 24px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease;
}

.quote-card-new:hover {
  transform: translateY(-5px);
}

.quote-icon-wrap {
  margin-bottom: 2rem;
}

.quote-text-new {
  color: #101828;
  font-size: 24px;
  line-height: 1.5;
  font-weight: 500;
  margin-bottom: 2.5rem;
  flex-grow: 1;
}

.quote-footer-new {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.quote-avatar-new {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  overflow: hidden;
  background: #eee;
  flex-shrink: 0;
}

.quote-avatar-new img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.quote-author-info {
  display: flex;
  flex-direction: column;
}

.quote-name-new {
  font-style: normal;
  color: #101828;
  font-weight: 600;
  font-size: 20px;
  line-height: 1.25;
}

.quote-location-new {
  color: #667085;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.25;
}

.payout-grid-new {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin-top: 3.5rem;
}

.payout-card-new {
  background: #F9F9FB;
  border-radius: 24px;
  padding: 2.5rem 1rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: transform 0.3s ease;
}

.payout-card-new:hover {
  transform: translateY(-5px);
}

.payout-brands-row {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 2rem;
}

.payout-brand-bubble {
  width: 40px;
  height: 40px;
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.02);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
  position: relative;
  z-index: 1;
  margin-left: 0;
  transition: transform 0.2s ease, z-index 0s;
}

.payout-brand-bubble:nth-child(2) {
  width: 48px;
  height: 48px;
  z-index: 2;
  border-radius: 12px;
  padding: 10px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
}

.payout-brand-bubble:hover {
  z-index: 3;
  transform: translateY(-2px) scale(1.05);
}

.payout-brand-bubble img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.payout-card-title {
  color: #101828;
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 0.8rem;
  line-height: 1.5;
}

.payout-card-desc {
  color: #5D5677;
  font-size: 0.95rem;
  line-height: 1.5;
  margin: 0;
}

.faq-section {
  position: relative;
  overflow: hidden;
  padding: 5rem 0;
  background: #fff;
}

@keyframes ripple {
  0% {
    transform: scale(1);
    opacity: 0.8;
  }

  50% {
    transform: scale(1.05);
    opacity: 1;
  }

  100% {
    transform: scale(1);
    opacity: 0.8;
  }
}

/* --- SHARED CORNER ORNAMENTS --- */
.faq-bg-ornament,
.cta-bg-ornament {
  position: absolute;
  top: 0;
  width: 500px;
  /* Big in size */
  height: 500px;
  pointer-events: none;
  z-index: 1;
}

.faq-bg-ornament.left,
.cta-bg-ornament {
  left: 0;
}

.faq-bg-ornament.right {
  right: 0;
  transform: scaleX(-1);
}

.blob {
  position: absolute;
  border-radius: 50%;
  flex-shrink: 0;
  animation: ripple 4s infinite ease-in-out;
}

.blob-1 {
  width: 500px;
  height: 500px;
  background: rgba(223, 212, 255, 0.3);
  /* Very light */
  top: -250px;
  left: -250px;
  animation-delay: 0s;
}

.blob-2 {
  width: 360px;
  height: 360px;
  background: rgba(199, 186, 231, 0.5);
  /* Middle */
  top: -180px;
  left: -180px;
  animation-delay: 1s;
}

.blob-3 {
  width: 220px;
  height: 220px;
  background: rgba(158, 139, 208, 0.7);
  /* Inner */
  top: -110px;
  left: -110px;
  animation-delay: 2s;
}

.faq-section {
  position: relative;
  overflow: hidden;
  background: #fff;
}

.container-narrow {
  max-width: 800px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.faq-accordion {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  margin-top: 3rem;
}

.faq-item {
  background: #fff;
  border: 1px solid #f0edf7;
  border-radius: 12px;
  overflow: hidden;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(58, 38, 130, 0.02);
}

.faq-item:hover {
  border-color: #e2def2;
  box-shadow: 0 6px 16px rgba(58, 38, 130, 0.04);
}

.faq-trigger {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem 1.5rem;
  background: none;
  border: none;
  text-align: left;
  cursor: pointer;
  color: #2b2643;
  font-weight: 600;
  font-size: 1.05rem;
  transition: background 0.2s ease;
}

.faq-trigger:hover {
  background: #faf9ff;
}

.faq-item.active .faq-trigger {
  background: #f8f7ff;
}

.faq-icon {
  font-size: 1.4rem;
  color: #7a7199;
  transition: transform 0.3s ease;
  line-height: 1;
}

.faq-item.active .faq-icon {
  transform: rotate(45deg);
}

.faq-content {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.3s ease-out;
}

.faq-item.active .faq-content {
  grid-template-rows: 1fr;
}

.faq-content-inner {
  overflow: hidden;
  padding: 0 1rem 1rem;
}

.faq-content p {
  padding: 1.2rem;
  color: #5d5677;
  line-height: 1.5;
  margin: 0;
  background: #fdfcff;
  border-radius: 8px;
  font-size: 0.95rem;
}

.cta-wrap {
  border-radius: 32px;
  background: #fff;
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.04);
}

.cta-copy {
  padding: 7rem 3.5rem;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.cta-copy h2 {
  font-size: 48px;
  font-weight: 600;
  color: #1F0E4B;
  line-height: 1.1;
  margin-bottom: 1.5rem;
  position: relative;
  z-index: 2;
  text-align: left;
}

.italic-highlight {
  font-style: italic;
  color: #6C47FF;
  font-weight: 600;
}

.cta-copy p {
  font-size: 1.15rem;
  color: #5D5677;
  line-height: 1.6;
  max-width: 480px;
  margin-bottom: 2.5rem;
  position: relative;
  z-index: 2;
}

.store-badges {
  display: flex;
  gap: 1rem;
  align-items: center;
  position: relative;
  z-index: 2;
}

.store-badge {
  display: block;
}

.store-badge img {
  height: 48px;
  width: auto;
  max-width: 100%;
  transition: transform 0.2s ease;
}

.store-badge:hover img {
  transform: translateY(-2px);
}

@media (max-width: 480px) {
  .store-badge {
    flex: 1;
  }
  .store-badge img {
    height: auto;
    width: 100%;
    object-fit: contain;
  }
}

.cta-visual {
  background: #9BB3B1;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.cta-phone-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}


.site-footer {
  background: #fff;
  padding: 5rem 0 3rem;
  border-top: none;
}

.site-footer-main {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2.5rem;
  text-align: center;
}

.footer-logo {
  height: 52px;
  width: auto;
}

.footer-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2.5rem;
}

.footer-nav a {
  color: #1a1633;
  font-weight: 600;
  font-size: 1.1rem;
  transition: color 0.2s ease;
}

.footer-nav a:hover {
  color: #6c47ff;
}

.footer-badges {
  display: flex;
  align-items: center;
  gap: 1.2rem;
}

.footer-badge img {
  height: 48px;
  width: auto;
  transition: transform 0.2s ease;
}

.footer-badge:hover img {
  transform: translateY(-2px);
}

.footer-divider-container {
  margin: 3.5rem 0 2rem;
}

.footer-hr {
  border: none;
  border-top: 1px solid #f0edf7;
  margin: 0;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.5rem 0;
  flex-wrap: wrap;
  gap: 2rem;
}

.footer-copyright {
  font-size: 0.95rem;
  color: #7a7199;
  font-weight: 500;
}

.footer-legal {
  display: flex;
  align-items: center;
  gap: 1.2rem;
}

.footer-legal a {
  color: #7a7199;
  font-size: 0.95rem;
  font-weight: 500;
  transition: color 0.2s ease;
}

.footer-legal a:hover {
  color: #1a1633;
}

.footer-sep {
  color: #dcd9e8;
  font-weight: 300;
}

.social-links {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.social-icon {
  width: 44px;
  height: 44px;
  background: #F0EDF7;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #1A1633;
  transition: all 0.2s ease;
}

.social-icon:hover {
  background: #6C47FF;
  color: #fff;
  transform: translateY(-3px);
}

.social-icon svg {
  width: 18px;
  height: 18px;
}

/* responsive overrides for footer */
@media (max-width: 768px) {
  .footer-nav {
    flex-direction: column;
    gap: 1.2rem;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
    gap: 1.5rem;
  }
}


@media (max-width: 991px) {

  .hero-grid,
  .cta-wrap {
    grid-template-columns: 1fr;
  }

  .hero-copy {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
  }

  .hero-copy h1 {
    font-size: 38px;
    line-height: 1.2;
    max-width: 100%;
  }

  .hero-visual {
    order: 2;
    max-width: 450px;
    margin: 0 auto;
    min-height: auto;
  }


  .steps-grid,
  .testimonials-grid,
  .payout-grid,
  .payout-grid-new,
  .channels-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 850px) {
  .footer-grid {
    flex-direction: column;
    gap: 1.5rem;
    text-align: center;
  }

  .footer-links {
    justify-content: center;
  }
}

@media (max-width: 991px) {
  .section {
    padding: 3.5rem 0;
  }

  .top-nav {
    display: none;
  }

  .menu-toggle {
    display: inline-flex;
    border: 1px solid #d4cde9;
    border-radius: 999px;
    padding: 0.45rem 0.9rem;
    background: #fff;
    color: #3f3760;
    font-weight: 600;
  }

  .mobile-nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #fff;
    display: flex;
    flex-direction: column;
    gap: 0;
    padding: 0;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(-10px);
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.08);
    border-top: 1px solid #f0edf7;
    z-index: 1000;
  }

  .mobile-nav.open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0);
  }

  .mobile-nav a {
    padding: 1.25rem 1.5rem;
    border-bottom: 1px solid #f8f7fc;
    font-weight: 600;
    color: #1a1633;
    text-align: left;
  }

  .mobile-nav .btn {
    margin: 1.5rem;
    border-bottom: none;
    justify-content: center;
    color: #fff;
  }


  .steps-grid,
  .steps-grid-premium,
  .testimonials-grid,
  .payout-grid,
  .payout-grid-new,
  .channels-grid {
    grid-template-columns: 1fr;
  }

  .cta-copy {
    padding: 1.4rem;
  }

  .cta-image {
    min-height: 210px;
  }
}

.hero-mockup-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: contain;
  border-radius: 24px;
  position: relative;
  z-index: 3;
  box-shadow: none;
  background: transparent;
}

.cta-image {
  position: relative;
}

.cta-image.has-image {
  background: #e8edf2;
}

.cta-image-tag {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

#how-it-works {
  background: #FCFCFD;
}

#cta {
  background: #FCFAFF;
}

/* --- Legal Pages Styles --- */
.legal-page-main {
  background: #fff;
  padding-bottom: 4rem;
}

.legal-title {
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 700;
  color: #1F0E4B;
  text-transform: uppercase;
  margin-top: 2rem;
  margin-bottom: 2rem;
  letter-spacing: -0.01em;
}

.legal-content {
  padding-top: 0;
}

.legal-document-body {
  margin: 0 auto;
  color: #667085;
  font-size: 18px;
  line-height: 28px;
  font-weight: 500;
}

.legal-document-body h2,
.legal-document-body h3,
.legal-document-body h4 {
  font-size: 1.5rem;
  color: var(--ink);
  margin-top: 2.5rem;
  margin-bottom: 1rem;
  font-weight: 600;
  text-align: left;
}

.legal-document-body h3 {
  font-size: 1.25rem;
  margin-top: 2rem;
}

.legal-document-body p {
  margin-bottom: 1.2rem;
  font-size: 18px;
  line-height: 28px;
  color: #667085;
  font-weight: 500;
}

.legal-document-body ul,
.legal-document-body ol {
  margin-bottom: 1.5rem;
  padding-left: 1.5rem;
}

.legal-document-body li {
  margin-bottom: 0.5rem;
  color: var(--muted);
}

/* --- Move to Top Button --- */
.move-to-top-btn {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 50px;
  height: 50px;
  background-color: var(--primary);
  color: #fff;
  border: none;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  z-index: 1000;
}

.move-to-top-btn:hover {
  background-color: #6a40cc;
  transform: translateY(-3px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
}

.move-to-top-btn.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

@media (max-width: 768px) {
  .move-to-top-btn {
    bottom: 1.5rem;
    right: 1.5rem;
    width: 44px;
    height: 44px;
  }
}

/* ======================================================
   FOR BUSINESSES PAGE
   ====================================================== */
.biz-page {
  background: #F4F1FA;
}

/* --- Hero --- */
.biz-hero {
  padding: 5rem 0 2rem;
}

.biz-hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}

.biz-hero-title {
  font-size: clamp(1.4rem, 2.5vw, 1.6rem);
  font-weight: 700;
  color: #1F0E4B;
  line-height: 1.2;
  margin-bottom: 0.5rem;
}

.biz-hero-subtitle {
  font-size: 0.95rem;
  color: #888;
  font-weight: 400;
  margin-bottom: 2.5rem;
}

/* Support Cards (plain text style like live site) */
.biz-support-card {
  margin-bottom: 1.5rem;
}

.biz-support-card__title {
  font-size: 1rem;
  font-weight: 700;
  color: #1F0E4B;
  margin-bottom: 0.35rem;
}

.biz-support-card__desc {
  font-size: 0.92rem;
  color: #888;
  line-height: 1.55;
  margin: 0;
}

/* Right CTA Heading */
.biz-cta-heading {
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 700;
  color: #1F0E4B;
  line-height: 1.25;
  margin-bottom: 1rem;
}

.biz-cta-subtitle {
  font-size: 0.95rem;
  color: #888;
  font-weight: 400;
}

/* --- Hero Image --- */
.biz-hero-image {
  padding: 0 0 2rem;
}

.biz-illustration-wrap {
  max-width: 700px;
}

.biz-illustration-img {
  width: 100%;
  height: auto;
  display: block;
}

/* --- CEO Quote --- */
.biz-quote {
  padding: 2rem 0 4rem;
}

.biz-quote-block {
  max-width: 700px;
}

.biz-quote-text {
  font-size: 1.05rem;
  line-height: 1.7;
  color: #2b2643;
  font-weight: 400;
  margin: 0 0 1.25rem;
  font-style: normal;
  border: none;
  padding: 0;
}

.biz-quote-author {
  font-size: 0.95rem;
  color: #1F0E4B;
  margin: 0;
}

.biz-quote-author strong {
  font-weight: 700;
}

/* --- Biz Page Responsive --- */
@media (max-width: 991px) {
  .biz-hero-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
}

@media (max-width: 720px) {
  .biz-hero {
    padding-top: 3rem;
  }

  .biz-hero-title {
    font-size: 1.3rem;
  }

  .biz-cta-heading {
    font-size: 1.6rem;
  }
}

/* ====================================================
   RIDE HAILING PAGE
   ==================================================== */

.rh-page-main {
  overflow-x: hidden;
}

/* --- Hero --- */
.rh-hero {
  position: relative;
  background-color: #fff;
  background-size: contain;
  background-position: right center;
  background-repeat: no-repeat;
  padding: 6rem 0 4rem;
  overflow: hidden;
  min-height: 560px;
  display: flex;
  align-items: center;
}

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

.rh-hero-inner {
  max-width: 650px;
}

.rh-hero-left {
  max-width: 650px;
}

.rh-badge-img {
  margin-bottom: 1.5rem;
}

.rh-badge-img img {
  max-width: 220px;
  height: auto;
}

.rh-hero-title {
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 800;
  color: var(--heading);
  line-height: 1.15;
  margin-bottom: 1.25rem;
}

.rh-highlight {
  color: #4921b3;
  background: #00ffca;
  padding: 0 15px;
  border-radius: 50px;
}

.rh-hero-desc {
  font-size: 1.05rem;
  color: var(--text-light);
  line-height: 1.6;
  margin-bottom: 2rem;
}

.rh-hero-btns {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 2rem;
}

.rh-btn-web {
  background: var(--primary);
  color: #fff;
  border: none;
  padding: 14px 32px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1rem;
  transition: background 0.3s, transform 0.3s;
}

.rh-btn-web:hover {
  background: #2d1b69;
  transform: translateY(-2px);
  color: #fff;
}

.rh-btn-wa {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #fff;
  color: var(--heading);
  border: 2px solid #e0e0e0;
  padding: 12px 28px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1rem;
  transition: all 0.3s;
}

.rh-btn-wa:hover {
  border-color: #25D366;
  background: #f0fff5;
  transform: translateY(-2px);
}

.rh-partner-logos-img {
  margin-top: 0.5rem;
}

.rh-partner-logos-img img {
  max-width: 220px;
  height: auto;
}

.rh-hero-right {
  display: flex;
  justify-content: center;
}

/* Phone mockup */
.rh-phone-mockup {
  width: 260px;
  height: 520px;
  border-radius: 32px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
  background: linear-gradient(135deg, #fff, #f5f5ff);
  border: 4px solid #2d2d3d;
  position: relative;
}

.rh-phone-screen {
  padding: 2rem 1.25rem;
}

.rh-screen-header {
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--heading);
  margin-bottom: 1rem;
  text-align: center;
}

.rh-screen-question {
  font-size: 0.8rem;
  color: var(--text-light);
  margin-bottom: 2rem;
  text-align: center;
}

.rh-screen-success {
  text-align: center;
}

.rh-check-circle {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: linear-gradient(135deg, #22c55e, #15803d);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
}

.rh-screen-success strong {
  display: block;
  font-size: 1rem;
  color: var(--heading);
  margin-bottom: 4px;
}

.rh-screen-success small {
  display: block;
  font-size: 0.75rem;
  color: var(--text-light);
  margin-bottom: 1rem;
}

.rh-points {
  display: inline-block;
  background: linear-gradient(135deg, var(--primary), #6c63ff);
  color: #fff;
  font-size: 0.85rem;
  font-weight: 700;
  padding: 6px 20px;
  border-radius: 20px;
  margin-bottom: 1rem;
}

.rh-back-btn {
  display: block;
  font-size: 0.75rem;
  color: var(--primary);
  font-weight: 600;
  cursor: pointer;
}

/* --- How it Works (image cards) --- */
.rh-how {
  background: #fff;
  padding: 5rem 0;
}

.rh-section-title {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 800;
  color: var(--heading);
  margin-bottom: 2.5rem;
  text-align: center;
}

.rh-steps-grid--images {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  max-width: 1100px;
  margin: 0 auto;
}

.rh-step-card--img {
  background: #f9f9ff;
  border-radius: 20px;
  padding: 0;
  overflow: hidden;
  border: 1px solid rgba(26, 26, 94, 0.05);
  transition: transform 0.3s, box-shadow 0.3s;
}

.rh-step-card--img:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(26, 26, 94, 0.08);
}

.rh-step-card--img .rh-step-visual {
  padding: 0;
}

.rh-step-card--img .rh-step-visual img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 20px 20px 0 0;
}

.rh-step-card--img .rh-step-num,
.rh-step-card--img h3,
.rh-step-card--img p {
  padding: 0 1.5rem;
}

.rh-step-num {
  display: block;
  font-size: 2rem;
  font-weight: 800;
  color: rgba(26, 26, 94, 0.1);
  margin: 1rem 0 0.5rem;
}

.rh-step-card--img h3 {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--heading);
  margin-bottom: 0.5rem;
}

.rh-step-card--img p {
  font-size: 0.9rem;
  color: var(--text-light);
  line-height: 1.6;
  padding-bottom: 1.5rem;
}

/* --- What to Upload (image grid) --- */
.rh-upload {
  background: #FFF;
  padding: 5rem 0;
}

.rh-upload-img-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  max-width: 1100px;
  margin: 0 auto;
}

.rh-upload-full-img {
  width: 100%;
  height: auto;
  border-radius: 20px;
  display: block;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s;
}

.rh-upload-full-img:hover {
  transform: translateY(-4px);
}

/* --- Earn More Banner (image) --- */
.rh-earn-banner {
  padding: 0;
  background: linear-gradient(180deg, #eef0f8, #f5f5ff);
}

.rh-earn-banner .container {
  padding: 0;
  width: 100%;
  max-width: 100%;
  margin: 0;
}

.rh-earn-banner-link {
  display: block;
}

.rh-earn-banner-img {
  width: 100%;
  height: auto;
  display: block;
  transition: opacity 0.3s;
  object-fit: cover;
}

.rh-earn-banner-link:hover .rh-earn-banner-img {
  opacity: 0.92;
}

/* --- Send Receipts (image grid) --- */
.rh-send {
  background: #fff;
  padding: 5rem 0;
}

.rh-send-img-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  max-width: 1100px;
  margin: 0 auto;
}

.rh-send-full-img {
  width: 100%;
  height: auto;
  border-radius: 20px;
  display: block;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s;
}

.rh-send-full-img:hover {
  transform: translateY(-4px);
}

/* --- Data Safe (with image) --- */
.rh-safe {
  background: linear-gradient(180deg, #1a1a5e, #13133d);
  padding: 5rem 0;
  text-align: center;
}

.rh-safe-title {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 800;
  background: linear-gradient(135deg, #4facfe, #ff6ec7);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 1rem;
}

.rh-safe-content p {
  color: rgba(255, 255, 255, 0.75);
  font-size: 1.05rem;
  line-height: 1.7;
  margin-bottom: 2rem;
}

.rh-safe-shield-img {
  max-width: 280px;
  height: auto;
  margin: 0 auto;
  display: block;
}

/* --- FAQ --- */
.rh-faq {
  background: linear-gradient(180deg, #f0f0ff, #e8ecf8);
  padding: 5rem 0;
}

.rh-faq-list {
  max-width: 720px;
  margin: 0 auto;
}

.rh-faq-item {
  background: #fff;
  border-radius: 12px;
  margin-bottom: 0.75rem;
  border: 1px solid rgba(26, 26, 94, 0.06);
  overflow: hidden;
  transition: box-shadow 0.3s;
}

.rh-faq-item:hover {
  box-shadow: 0 4px 16px rgba(26, 26, 94, 0.06);
}

.rh-faq-q {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding: 0.1rem 1rem;
  background: none;
  border: none;
  cursor: pointer;
  font-size: 1.2rem;
  font-weight: 600;
  color: #1a1a5e;
  text-align: left;
}

.rh-faq-toggle {
  font-size: 1.4rem;
  font-weight: 300;
  color: var(--primary);
  transition: transform 0.3s;
  min-width: 24px;
  text-align: center;
}

.rh-faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.35s ease;
}

.rh-faq-item.open .rh-faq-a {
  max-height: 200px;
}

.rh-faq-a p {
  padding: 1rem;
  font-size: 0.9rem;
  color: var(--text-light);
  line-height: 1.6;
  margin: 0;
}

/* --- Video Section --- */
.rh-videos {
  background: #f5f5ff;
  padding: 5rem 0;
}

/* Main / featured video (large) */
.rh-video-main {
  max-width: 1100px;
  margin: 0 auto 1.5rem;
}

.rh-video-card--main {
  border-radius: 20px;
}

.rh-video-card--main .rh-video-thumb {
  aspect-ratio: 16/9;
  border-radius: 20px;
}

.rh-video-card--main .rh-video-play {
  width: 72px;
  height: 72px;
}

.rh-videos-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  max-width: 1100px;
  margin: 0 auto;
}

.rh-video-card {
  cursor: pointer;
  border-radius: 16px;
  overflow: hidden;
  transition: transform 0.3s, box-shadow 0.3s;
}

.rh-video-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
}

.rh-video-thumb {
  width: 100%;
  aspect-ratio: 16/9;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  background: #1a1a5e;
}

.rh-video-cover {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.rh-video-thumb::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.25);
  transition: background 0.3s;
  z-index: 1;
}

.rh-video-card:hover .rh-video-thumb::after {
  background: rgba(0, 0, 0, 0.15);
}

.rh-video-play {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: rgba(73, 33, 179, 0.85);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 2;
  transition: transform 0.3s;
}

.rh-video-card:hover .rh-video-play {
  transform: scale(1.1);
}

/* Video Modal */
.rh-video-modal {
  position: fixed;
  inset: 0;
  z-index: 10000;
  align-items: center;
  justify-content: center;
}

.rh-video-modal-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.8);
  cursor: pointer;
}

.rh-video-modal-content {
  position: relative;
  width: 90%;
  max-width: 900px;
  z-index: 1;
}

.rh-video-modal-close {
  position: absolute;
  top: -40px;
  right: 0;
  background: none;
  border: none;
  color: #fff;
  font-size: 2rem;
  cursor: pointer;
  z-index: 2;
}

.rh-video-modal-content video {
  width: 100%;
  border-radius: 12px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
}

/* --- Earn More --- */
.rh-earn-more {
  padding: 0;
  margin-top: 2rem;
}

.rh-earn-more-link {
  display: block;
  width: 100%;
}

.rh-earn-more-img {
  width: 100%;
  height: auto;
  display: block;
}

/* --- New Bottom CTA (Two Cards) --- */
.rh-cta-new {
  background: #4921b3;
  padding: 6rem 0;
  color: #fff;
}

.rh-cta-new h2 {
  color: #fff;
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 3.5rem;
  text-align: center;
}

.rh-cta-cards-new {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  max-width: 1100px;
  margin: 0 auto;
}

.rh-cta-card-new {
  background: #fff;
  border-radius: 30px;
  padding: 3.5rem 2.5rem;
  text-align: center;
  color: #1a1a5e;
  position: relative;
  transition: transform 0.3s;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.05);
}

.rh-cta-card-new:hover {
  transform: translateY(-5px);
}

.rh-cta-card-icon {
  width: 70px;
  height: 70px;
  margin: 0 auto 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.rh-cta-card-icon.wa-icon {
  background: #eefdf4;
  border-radius: 12px;
}

.rh-cta-card-icon.web-icon {
  background: #f5f3ff;
  border-radius: 12px;
}

.rh-cta-card-icon svg {
  width: 40px;
  height: 40px;
}

.rh-cta-card-new h3 {
  font-size: 1.75rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
  color: #1a1a5e;
}

.rh-cta-card-new p {
  color: #555;
  font-size: 1.05rem;
  margin-bottom: 2.5rem;
  line-height: 1.5;
}

.rh-cta-badge {
  position: absolute;
  top: -15px;
  right: 40px;
  background: #00ffca;
  color: #4921b3;
  padding: 8px 18px;
  border-radius: 100px;
  font-size: 0.8rem;
  font-weight: 900;
  letter-spacing: 0.05em;
  box-shadow: 0 5px 15px rgba(0, 255, 202, 0.4);
  z-index: 2;
}

.rh-btn-cta-wa {
  background: #fff;
  border: 1px solid #ddd;
  color: #25d366 !important;
  font-weight: 700;
  padding: 14px 35px;
  border-radius: 100px;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  transition: all 0.3s;
  text-decoration: none;
  font-size: 1rem;
}

.rh-btn-cta-wa:hover {
  background: #f9fafb;
  border-color: #25d366;
  color: #25d366;
}

.rh-btn-cta-wa svg {
  color: #25d366;
}

.rh-btn-cta-web {
  background: #4921b3;
  color: #fff !important;
  font-weight: 700;
  padding: 14px 35px;
  border-radius: 100px;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  transition: all 0.3s;
  text-decoration: none;
  font-size: 1rem;
}

.rh-btn-cta-web:hover {
  background: #3b1991;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(73, 33, 179, 0.3);
}

/* --- Security Section --- */
.rh-security {
  background: #0e0e3d;
  padding: 5rem 0;
  text-align: center;
  color: #fff;
}

.rh-security h2 {
  font-size: 2.5rem;
  font-weight: 700;
  color: #00ffcc;
  margin-bottom: 1.5rem;
}

.rh-security p {
  color: #aab;
  max-width: 600px;
  margin: 0 auto 3rem;
  font-size: 1.1rem;
  line-height: 1.6;
}

.rh-security-icon {
  width: 120px;
  margin: 0 auto;
}

.rh-security-icon img {
  width: 100%;
  height: auto;
}

/* --- Responsive Updates --- */
@media (max-width: 768px) {
  .rh-cta-cards-new {
    grid-template-columns: 1fr;
    padding: 0 1rem;
  }

  .rh-security h2 {
    font-size: 2rem;
  }
}

/* --- Hero Refinement --- */
.rh-highlight-pill {
  background: #00ffcc;
  color: #1a1a5e;
  padding: 2px 16px;
  border-radius: 100px;
  display: inline-block;
  font-style: normal;
  font-weight: 800;
}

/* --- Ride-Hailing Responsive Refinements --- */
@media (max-width: 1200px) {
  .rh-hero {
    background-position: calc(100% + 150px) center;
    background-size: 55%;
  }
}

@media (max-width: 991px) {
  .rh-hero {
    background-position: calc(100% + 180px) center;
    background-size: 50%;
    min-height: 500px;
    padding: 5rem 0;
  }

  .rh-hero-inner {
    max-width: 480px;
  }

  .rh-hero-title {
    font-size: clamp(1.8rem, 8vw, 2.4rem) !important;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
  }

  .footer-legal,
  .social-links {
    justify-content: center;
    width: 100%;
    text-align: center;
  }
}

@media (max-width: 768px) {
  .rh-hero {
    background-image: none !important;
    text-align: center;
    min-height: auto;
    padding: 4rem 0;
  }

  .rh-hero-inner,
  .rh-hero-left {
    max-width: 100%;
    margin: 0 auto;
  }

  .rh-hero-btns {
    justify-content: center;
  }

  .rh-partner-logos {
    justify-content: center;
    display: flex;
  }

  .rh-steps-grid--images,
  .rh-cta-cards-new,
  .rh-upload-img-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .rh-step-card--img {
    max-width: 400px;
    margin: 0 auto;
  }
}


.rh-btn-wa-alt {
  background: #fff;
  border: 1px solid #e2e8f0;
  color: #1a1a5e !important;
  font-weight: 600;
  padding: 12px 28px;
  border-radius: 100px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: all 0.3s;
}

.rh-btn-wa-alt:hover {
  background: #f8fafc;
  border-color: #cbd5e1;
  transform: translateY(-2px);
}

.rh-wa-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  color: #25d366;
}

.rh-partner-logos {
  margin-top: 3rem;
  display: flex;
  align-items: center;
  gap: 2rem;
}

@media (max-width: 768px) {
  .rh-partner-logos {
    gap: 1rem;
    justify-content: center;
  }
}

/* --- Ride-Hailing CTA Section (reuses home .cta-wrap module) --- */
.rh-cta-section {
  background: #eef0f8;
}

.rh-start-earning-btns {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
  position: relative;
  z-index: 2;
}

/* "Send via Web" — solid purple pill */
.rh-start-btn-web {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #4921b3;
  color: #fff !important;
  font-weight: 700;
  font-size: 0.95rem;
  padding: 14px 34px;
  border-radius: 100px;
  text-decoration: none;
  transition: background 0.3s, transform 0.25s, box-shadow 0.3s;
}

.rh-start-btn-web:hover {
  background: #3b1991;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(73, 33, 179, 0.3);
}

/* "Send via WhatsApp" — outlined pill with WA logo */
.rh-start-btn-wa {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #fff;
  border: 1.5px solid #e0e0e0;
  color: #1a1a5e !important;
  font-weight: 600;
  font-size: 0.95rem;
  padding: 12px 28px;
  border-radius: 100px;
  text-decoration: none;
  transition: border-color 0.3s, transform 0.25s, box-shadow 0.3s;
}

.rh-start-btn-wa:hover {
  border-color: #25d366;
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(37, 211, 102, 0.15);
}

.rh-start-btn-wa svg {
  flex-shrink: 0;
}

/* --- FAQ Section --- */
.rh-faq {
  padding: 6rem 0;
  background: #fff;
}

.rh-faq-title {
  text-align: center;
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 3rem;
  color: #1a1a5e;
}

.rh-faq-list {
  max-width: 800px;
  margin: 0 auto;
}

.rh-faq-item {
  border-bottom: 1px solid #eee;
  padding: 1.5rem 0;
}

@media (max-width: 992px) {
  .rh-start-earning-inner {
    flex-direction: column;
    max-width: 600px;
  }

  .rh-start-earning-left {
    padding: 2.5rem 2rem;
  }

  .rh-start-earning-content {
    text-align: center;
  }

  .rh-start-earning-btns {
    justify-content: center;
  }

  .rh-start-earning-decor {
    display: none;
  }
}

@media (max-width: 480px) {
  .rh-start-earning-btns {
    flex-direction: column;
    align-items: stretch;
  }

  .rh-start-btn-web,
  .rh-start-btn-wa {
    justify-content: center;
    text-align: center;
  }
}