@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700;800;900&display=swap");

:root {
  --bg: #0a0a0f;

  --glass: rgba(255, 255, 255, 0.06);
  --glass2: rgba(255, 255, 255, 0.10);
  --stroke: rgba(255, 255, 255, 0.14);

  --text: rgba(255, 255, 255, 0.92);
  --muted: rgba(255, 255, 255, 0.68);

  --cyan: #22e5ff;
  --purple: #8c63ff;
  --green: #33ff7a;

  --btnGreen: #0aa94f;
  --btnGreen2: #1bd169;

  --shadow: 0 26px 55px rgba(0, 0, 0, 0.55);
}

* {
  box-sizing: border-box
}

html,
body {
  height: 100%
}

body {
  margin: 0;
  font-family: "Poppins", system-ui, -apple-system, Segoe UI, Roboto, Arial;
  background: var(--bg);
  color: var(--text);
  overflow-x: hidden;
}

.max {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
}

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

button {
  font-family: inherit
}

/* ==== Background blobs like your screenshot ==== */
.bg-blobs {
  position: fixed;
  inset: -40px;
  pointer-events: none;
  z-index: -1;

  background:
    radial-gradient(520px 520px at 22% 12%, rgba(34, 229, 255, 0.20), transparent 62%),
    radial-gradient(640px 640px at 78% 22%, rgba(51, 255, 122, 0.22), transparent 60%),
    radial-gradient(720px 720px at 30% 60%, rgba(140, 99, 255, 0.20), transparent 62%),
    radial-gradient(660px 660px at 78% 72%, rgba(34, 229, 255, 0.12), transparent 62%),
    radial-gradient(700px 700px at 22% 88%, rgba(51, 255, 122, 0.14), transparent 62%);
  filter: blur(2px);
}

/* ==== Topbar ==== */
.topbar {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(14px);
  background: rgba(10, 10, 15, 0.45);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.topbar-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 0;
  gap: 16px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px
}

.brand-icon {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.10);
}

.brand-icon img {
  width: 22px;
  height: 22px
}

.brand-name {
  font-weight: 800;
  letter-spacing: 0.5px
}

.brand-sub {
  font-size: 12px;
  color: var(--muted);
  margin-top: -2px
}

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

.nav-link {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.78)
}

.nav-link:hover {
  color: #fff
}

@media (max-width: 860px) {
  .nav {
    display: none
  }
}

/* ==== Buttons ==== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  padding: 14px 18px;
  font-weight: 700;
  font-size: 14px;
  transition: transform 160ms ease, filter 160ms ease;
}

.btn-sm {
  padding: 12px 16px
}

.btn-grad {
  background: linear-gradient(90deg, var(--purple), var(--cyan));
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.35);
}

.btn-grad:hover {
  transform: translateY(-1px);
  filter: brightness(1.05)
}

.btn-green {
  background-image: linear-gradient(180deg, #1AD00A 0%, #0D8214 100%);
  border: 1px solid rgba(60, 255, 160, 0.35);
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.45);
  padding: 12px 20px;
}

.btn-green:hover {
  transform: translateY(-1px);
  filter: brightness(1.06)
}

.arrow {
  opacity: 0.9
}

/* ==== Hero ==== */
.hero {
  padding: 64px 0 42px
}

.hero-grid {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

.hero-left {
  flex: 1;
  min-width: 320px
}

.hero-right {
  flex: 1;
  display: flex;
  justify-content: center;
  min-width: 320px
}

.hero-logo {
  width: 220px;
}

.hero-logo-footer {
  width: 180px;
}

@media (max-width: 980px) {
  .hero-logo {
    width: 150px;
  }

  .hero-logo-footer {
    width: 130px;
  }
}

.hero-title {
  margin: 18px 0 0;
  font-size: 56px;
  line-height: 1.05;
  font-weight: 800;
}

.hero-sub {
  margin: 18px 0 0;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.72);
  max-width: 560px;
}

.btn-row {
  margin-top: 18px;
  display: flex;
  gap: 14px;
  flex-wrap: wrap
}

.btn_center {
  padding-top: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.btn_center svg {
  width: 1em;
  height: 1em;
  fill: #fff;
}

.hero-phone {
  width: min(520px, 100%);
  height: auto;
  filter: drop-shadow(0 26px 44px rgba(0, 0, 0, 0.55));
}

@media (max-width: 980px) {
  .hero-grid {
    flex-direction: column;
    align-items: stretch
  }

  .hero-title {
    font-size: 35px
  }

  .hero {
    padding: 16px 0 0px;
  }
}

/* chevrons like screenshot */
.chevrons {
  margin: 30px auto 0;
  width: 40px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  align-items: center;
  opacity: 0.85;
}

.chevrons span {
  width: 14px;
  height: 14px;
  border-right: 3px solid var(--cyan);
  border-bottom: 3px solid var(--cyan);
  transform: rotate(45deg);
  filter: drop-shadow(0 6px 16px rgba(0, 0, 0, 0.55));
}

/* ==== Sections ==== */
.section {
  padding: 42px 0
}

.section-title {
  margin: 0;
  text-align: center;
  font-size: 2.375rem;
  font-weight: 500;
}

@media (max-width: 980px) {
  .section-title {
    font-size: 1.8rem;
    line-height: 35px;
  }

  .section {
    padding: 20px 0
  }
}

.section-title.left {
  text-align: left;
}

.accent-cyan {
  color: var(--cyan)
}

.accent-purple {
  color: var(--purple)
}

.accent-green {
  color: var(--green)
}







/* ---- How section container ---- */
:root {
  --e-global-color-astglobalcolor1: #7b5cff;
  /* purple */
  --e-global-color-b70f6c2: #29ff7a;
  /* green */
}

/* layout */
.how-section {
  width: min(1200px, calc(100% - 40px));
  margin: 0 auto;
  padding: 40px 0;
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

@media (max-width: 1100px) {
  .steps-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .steps-grid {
    grid-template-columns: 1fr;
  }
}

/* ============================= */
/* How You Earn Section */
/* ============================= */

.earn-gif-section {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  padding: 50px 0;
}

/* outer gradient border */
.earn-gif-card {
  padding: 2px;
  border-radius: 26px;
  background-image: linear-gradient(180deg,
      #8c63ff 0%,
      #29ff7a 100%);
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.55);
}

/* inner glass panel */
.earn-gif-inner {
  border-radius: 24px;
  padding: 26px 28px;
  display: grid;
  grid-template-columns: 1.4fr 0.6fr;
  gap: 22px;
  align-items: center;

  background-image: url("https://www.fastpayz.store/wp-content/uploads/2025/07/Fastpayz-min-scaled.webp");
  background-position: -420px -100px;
  background-repeat: no-repeat;
  background-size: 500% auto;

  background-color: rgba(10, 10, 20, 0.62);
  background-blend-mode: overlay;

  border: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(10px);
}

@media (max-width: 560px) {
  .earn-gif-section {
      padding: 10px 0;
  }
}

@media (max-width: 900px) {
  .earn-gif-inner {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .earn-gif-title {
    font-size: 1.8rem;
  }
}

/* left content */
.earn-gif-title {
  margin: 8px 0 10px;
  font-size: 34px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.92);
}

.earn-gif-title span {
  color: #22e5ff;
}

.earn-gif-text {
  margin: 0;
  max-width: 620px;
  font-size: 16px;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.80);
}

.earn-gif-text strong {
  color: #29ff7a;
  font-weight: 900;
}

/* right gif */
.earn-gif-right {
  display: flex;
  justify-content: center;
  align-items: center;
}

.earn-gif-img {
  width: 160px;
  height: auto;
  border-radius: 20px;
  box-shadow:
    0 18px 50px rgba(0, 0, 0, 0.45),
    0 0 0 1px rgba(255, 255, 255, 0.12);
}

@media (max-width: 900px) {

  .earn-gif-title {
    font-size: 1.8rem;
  }
}





/* ============================= */
/* OUTER CARD (gradient-card)    */
/* ============================= */
.gradient-card {
  height: 520px;
  padding: 2px;
  /* border thickness */
  border-radius: 20px 20px 90px 20px;
  background-color: transparent;
  background-image: linear-gradient(180deg,
      var(--e-global-color-astglobalcolor1) 0%,
      var(--e-global-color-b70f6c2) 100%);
  box-shadow: 0 28px 60px rgba(0, 0, 0, 0.55);
}

.gifBlock {
  text-align: center;
}

@media (max-width: 980px) {
  .gradient-card {
    height: auto;
  }
}

.gradient-card.more {
  border-radius: 20px 20px 20px 90px;
}

/* ============================= */
/* INNER CARD (gradient-card-inner) */
/* ============================= */
.gradient-card-inner {
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 36px 28px;
  border-radius: 20px 20px 90px 20px;

  background-image: url("https://www.fastpayz.store/wp-content/uploads/2025/07/Fastpayz-min-scaled.webp");
  background-position: -463px -116px;
  background-repeat: no-repeat;
  background-size: 500% auto;

  background-color: rgba(10, 10, 20, 0.65);
  background-blend-mode: overlay;

  border: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(10px);
}

.gradient-card-inner.more {
  border-radius: 20px 20px 20px 90px;
}

/* STEP text (outlined) */
.step-outline {
  text-align: center;
  font-size: 1.75rem;
  font-weight: 900;
  letter-spacing: 2px;
  margin-bottom: 6px;
  text-transform: uppercase;

  color: transparent;
  -webkit-text-stroke: 2px #2fffd6;
  text-shadow: 0 0 18px rgba(47, 255, 214, 0.18);
}

/* card title */
.gradient-card-inner h3 {
  text-align: center;
  font-size: 1.125rem;
  font-weight: 500;
  margin: 18px 0;
  margin-top: 0px;
  color: #ffffff;
}

/* bullet list */
.gradient-card-inner ul {
  padding-left: 11px;
  font-size: 14px;
  line-height: 1.35;
  color: rgba(255, 255, 255, 0.75);
  list-style: none;
}

.gradient-card-inner li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  margin-bottom: 16px;
}

.gradient-card-inner li::marker {
  color: #ffffff;
  font-size: 16px;
}

/* red note */
.note {
  margin-top: 18px;
  font-size: 14px;
  color: red;
}







/* ===========================
   Who is Wallet Agent section
   =========================== */

@media (max-width: 980px) {
  .wa-section .wa-card-inner {
    padding: 0;
    flex-direction: column-reverse;
    height: auto;
  }

  .wa-section .wa-right {
    position: static;
    width: 100%;
  }

  .wa-media {
    margin-top: -32%;
  }

  .wa-section .wa-left {
    width: 100%;
  }

  section.wa-section {
    padding: 34px 0 10px;
  }
}

.wa-section {
  padding: 34px 0 40px;
}

.wa-wrap {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
}

/* outer gradient border like your site */
.wa-card {
  padding: 2px;
  border-radius: 28px;
  /* background-image: linear-gradient(
    180deg,
    var(--e-global-color-astglobalcolor1, #7b5cff) 0%,
    var(--e-global-color-b70f6c2, #29ff7a) 100%
  );
  box-shadow: 0 30px 70px rgba(0,0,0,0.55); */
}

.wa-card-inner {
  border-radius: 26px;
  padding: 26px 26px;
  /* display: grid;
  grid-template-columns: 1.3fr 1fr; */
  display: flex;
  justify-content: flex-end;
  gap: 26px;
  align-items: center;
  /* background-image: url("https://www.fastpayz.store/wp-content/uploads/2025/07/Fastpayz-min-scaled.webp");
  background-position: -380px -80px;
  background-repeat: no-repeat;
  background-size: 500% auto;
  background-color: rgba(10,10,20,0.62); */
  background: linear-gradient(0deg, #7a5cfe6b, transparent);
  background-blend-mode: overlay;
  /* border: 1px solid rgba(255,255,255,0.08); */
  backdrop-filter: blur(10px);
  position: relative;
  height: 410px;
}

/* left content */
.wa-kicker {
  font-weight: 900;
  letter-spacing: 0.5px;
  color: rgba(255, 255, 255, 0.55);
  font-size: 14px;
}

.wa-title {
  text-align: left;
  color: rgba(255, 255, 255, 0.92);
}

@media (max-width: 560px) {
  .wa-title {
    font-size: 28px;
  }
}

.wa-cyan {
  color: #22e5ff;
}

.wa-text {
  margin: 0;
  font-size: 14px;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.78);
  max-width: 700px;
}

/* bullet points */
.wa-points {
  margin-top: 16px;
  display: grid;
  gap: 10px;
}

.wa-point {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: rgba(255, 255, 255, 0.86);
  font-size: 13px;
}

.wa-dot {
  width: 7px;
  height: 7px;
  border-radius: 999px;
  margin-top: 5px;
  background: #22e5ff;
  box-shadow: 0 0 0 4px rgba(34, 229, 255, 0.12);
  flex: 0 0 auto;
}

/* buttons */
.wa-actions {
  margin-top: 18px;
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.wa-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 18px;
  border-radius: 12px;
  font-weight: 800;
  font-size: 13px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  transition: transform 150ms ease, filter 150ms ease, background 150ms ease;
  text-decoration: none;
}

.wa-btn:hover {
  transform: translateY(-1px);
  filter: brightness(1.05);
}

.wa-btn-green {
  background: linear-gradient(180deg, #1bd169, #0aa94f);
  border: 1px solid rgba(60, 255, 160, 0.35);
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.35);
  color: #fff;
}

.wa-btn-ghost {
  background: rgba(255, 255, 255, 0.05);
  color: rgba(255, 255, 255, 0.92);
}

/* right media */
.wa-right {
  display: flex;
  justify-content: center;
  position: absolute;
  width: 545px;
  left: 0;
  bottom: 0;
}

.wa-left {
  width: calc(100% - 470px);
}

.wa-media {
  position: relative;
  /* width: min(420px, 100%); */
  border-radius: 22px;
  overflow: hidden;
  /* background: rgba(0,0,0,0.18);
  border: 1px solid rgba(255,255,255,0.10);
  box-shadow: 0 26px 60px rgba(0,0,0,0.45); */
}

.wa-img {
  width: 100%;
  height: auto;
  display: block;
  filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.45));
}

.wa-badge {
  position: absolute;
  left: 14px;
  bottom: 14px;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  border-radius: 14px;
  background: rgba(0, 0, 0, 0.35);
  border: 1px solid rgba(255, 255, 255, 0.10);
  backdrop-filter: blur(10px);
}

.wa-badge img {
  width: 22px;
  height: 22px;
}

.wa-badge-t {
  font-weight: 900;
  font-size: 13px;
}

.wa-badge-s {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.70);
}













/* ==== Steps cards (neon border like screenshot) ==== */
.steps-grid {
  margin-top: 26px;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

@media (max-width: 1100px) {
  .steps-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .steps-grid {
    grid-template-columns: 1fr;
  }
}

.step-card {
  background: rgba(15, 15, 22, 0.45);
  border-radius: 22px;
  padding: 18px 18px 16px;
  border: 1px solid rgba(140, 99, 255, 0.40);
  box-shadow: var(--shadow);
  position: relative;
  overflow: hidden;
}

.step-card::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 22px;
  border: 1px solid rgba(51, 255, 122, 0.32);
  mask:
    linear-gradient(#000 0 0) content-box,
    linear-gradient(#000 0 0);
  -webkit-mask:
    linear-gradient(#000 0 0) content-box,
    linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  padding: 1px;
  opacity: 0.85;
  pointer-events: none;
}

.step-tag {
  font-size: 12px;
  letter-spacing: 2px;
  color: rgba(255, 255, 255, 0.60);
  font-weight: 800;
}

.step-h {
  margin-top: 6px;
  font-weight: 800;
  font-size: 16px;
}

.step-card ul {
  margin: 12px 0 0;
  padding-left: 18px;
  color: rgba(255, 255, 255, 0.70);
  font-size: 12px;
}

.step-card li {
  margin: 10px 0
}

.step-note {
  margin-top: 10px;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.65)
}

.center {
  display: flex;
  justify-content: center;
  margin-top: 22px
}

/* ==== Features block ==== */
.features-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 26px;
  align-items: center;
  margin-top: 18px;
}

@media (max-width: 980px) {
  .features-grid {
    grid-template-columns: 1fr;
  }
}

.feature-phones {
  width: min(520px, 100%);
  height: auto;
  filter: drop-shadow(0 26px 44px rgba(0, 0, 0, 0.55));
}

.gradientBgLine {
  display: flex;
  background-image: linear-gradient(90deg, #0AD372 0%, #7151F1 50%, #4B3F88 100%) !important;
  height: 2px;
  border-radius: 10px;
  margin: 10px 0;
}

.feature-line {
  display: flex;
  gap: 14px;
  padding: 14px 0;
}

.feature-line.last {
  border-bottom: none
}

.f-icon {
  display: flex
}

.f-title {
  font-weight: 800;
  font-size: 14px
}

.f-desc {
  margin-top: 4px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 12px
}

/* ==== About ==== */
.about-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 26px;
  align-items: center;
}

@media (max-width: 980px) {
  .about-grid {
    grid-template-columns: 1fr;
  }
}

.about-p {
  margin-top: 12px;
  font-size: 12px;
  color: var(--green);
  max-width: 560px
}

.about-img {
  width: min(520px, 100%);
  height: auto;
  filter: drop-shadow(0 26px 44px rgba(0, 0, 0, 0.55));
}

.about-points {
  margin-top: 18px;
  display: flex;
  flex-direction: column;
  gap: 10px
}

.point {
  font-size: 12px
}






/* ===== TESTIMONIAL SECTION LAYOUT ===== */
.fp-tv {
  width: min(1220px, calc(100% - 40px));
  margin: 0 auto;
  padding: 34px 0 50px;
}

.fp-tv__wrap {
  display: grid;
  grid-template-columns: 1.05fr 1.2fr;
  gap: 38px;
  align-items: center;
}

@media (max-width: 1000px) {
  .fp-tv__wrap {
    grid-template-columns: 1fr;
  }
}

/* ===== LEFT SLIDER AREA ===== */
.fp-tv__left {
  position: relative;
  display: grid;
  grid-template-columns: 52px 1fr 52px;
  gap: 18px;
  align-items: center;
}

@media (max-width: 640px) {
  .fp-tv__wrap .fp-tv__left {
    grid-template-columns: 10px 1fr 10px;
  }

  .fp-tv__wrap .fp-tv__nav {
    width: 35px;
    height: 35px;
    margin-left: -12px;
    font-size: 26px;
  }

  .fp-tv {
    padding: 34px 0 30px;
  }
}

/* arrows (outside like screenshot) */
.fp-tv__nav {
  width: 46px;
  height: 46px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(0, 0, 0, 0.20);
  color: rgba(255, 255, 255, 0.82);
  font-size: 34px;
  line-height: 1;
  cursor: pointer;
  display: grid;
  place-items: center;
  backdrop-filter: blur(10px);
  transition: transform 140ms ease, background 140ms ease;
}

.fp-tv__nav:hover {
  transform: translateY(-1px);
  background: rgba(255, 255, 255, 0.06);
}

.fp-tv__nav:disabled {
  opacity: 0.35;
  cursor: not-allowed;
}

.fp-tv__viewport {
  overflow: hidden;
  width: 100%;
}

/* Track moves horizontally */
.fp-tv__track {
  display: flex;
  gap: 22px;
  will-change: transform;
  transition: transform 420ms ease;
}

/* ===== TESTIMONIAL CARD ===== */
/* Outer gradient border (GREEN top -> PURPLE bottom like screenshot) */
.fp-tcard {
  flex: 0 0 calc((100% - 22px) / 2);
  /* show 2 cards */
  /* height: 520px; */
  padding: 2px;
  border-radius: 20px;
  background-color: transparent;
  background-image: linear-gradient(180deg, #29ff7a 0%, #7b5cff 100%);
}

@media (max-width: 640px) {
  .fp-tcard {
    flex: 0 0 100%;
  }
}

/* Inner: your Elementor bg image trick */
.fp-tcard__inner {
  height: 100%;
  border-radius: 20px;
  padding: 34px 28px 26px;

  background-image: url("https://www.fastpayz.store/wp-content/uploads/2025/07/Fastpayz-min-scaled.webp");
  background-position: -463px -116px;
  background-repeat: no-repeat;
  background-size: 500% auto;

  background-color: rgba(10, 10, 20, 0.62);
  background-blend-mode: overlay;

  border: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(10px);

  display: flex;
  flex-direction: column;
}

/* Title cyan like screenshot */
.fp-tcard__title {
  margin: 0 0 18px;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.2;
  color: #22e5ff;
}

/* body text */
.fp-tcard__text {
  margin: 0;
  font-size: 14px;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.82);
  max-width: 340px;
}

/* push stars + name down */
.fp-tcard__stars {
  margin-top: 2rem;
  padding-top: 4px;
  font-size: 14px;
  letter-spacing: 4px;
  color: #f6b400;
  opacity: 0.95;
}

.fp-tcard__name {
  margin-top: 5px;
  font-size: 16px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.92);
}

/* ===== RIGHT VIDEO THUMB ===== */
.fp-video {
  width: 100%;
  border-radius: 18px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.06);
  /* border: 1px solid rgba(255,255,255,0.12); */
  box-shadow: 0 28px 60px rgba(0, 0, 0, 0.50);
  position: relative;
}

.fp-video__img {
  width: 100%;
  height: auto;
  display: block;
}

/* Play button centered, like YouTube overlay */
.fp-video__play {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 78px;
  height: 54px;
  border-radius: 14px;
  background: rgba(230, 0, 0, 0.95);
  border: none;
  cursor: pointer;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.45);
  display: grid;
  place-items: center;
}

.fp-video__tri {
  width: 0;
  height: 0;
  border-left: 18px solid #fff;
  border-top: 12px solid transparent;
  border-bottom: 12px solid transparent;
  margin-left: 4px;
}

/* iframe will fully cover fp-video */
.fp-video iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}









/* ==== FAQ ==== */
.faq-wrap {
  margin-top: 22px;
  display: flex;
  flex-direction: column;
  gap: 10px
}

.faq-item {
  width: 100%;
  text-align: left;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 10px;
  padding: 12px 14px;
  color: #fff;
  cursor: pointer;

  display: flex;
  justify-content: space-between;
  gap: 16px;
}

.faq-q {
  font-weight: 700;
  font-size: 13px;
  text-transform: capitalize;
}

.faq-a {
  margin-top: 10px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 12px
}

.faq-item[aria-expanded="false"] .faq-a {
  display: none
}

.plus {
  font-size: 18px;
  opacity: 0.9
}





.cs-section {
  padding: 70px 0 46px;
}

.cs-wrap {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
}

/* outer shell (rounded big) */
.cs-card {
  border-radius: 28px;
  padding: 2px;
  background: linear-gradient(180deg, rgba(140, 99, 255, 0.65), rgba(41, 255, 122, 0.55));
  box-shadow: 0 32px 80px rgba(0, 0, 0, 0.55);
}

/* inner glass with same Elementor background trick */
.cs-card-inner {
  border-radius: 26px;
  min-height: 340px;

  display: grid;
  grid-template-columns: 1.05fr 1.15fr;
  align-items: center;
  gap: 0;

  background-image: url("https://www.fastpayz.store/wp-content/uploads/2025/07/Fastpayz-min-scaled.webp");
  background-position: -360px -120px;
  background-repeat: no-repeat;
  background-size: 500% auto;

  background-color: rgba(8, 8, 16, 0.55);
  background-blend-mode: overlay;

  border: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(12px);
}

/* responsive */
@media (max-width: 560px) {
  .cs-card-inner {
    grid-template-columns: 1fr;
    min-height: unset;
    overflow: hidden;
  }
  .cs-section {
    padding: 10px 0 20px;
  }
}

@media (max-width: 980px) {
  .cs-card-inner {
    min-height: 400px;
  }
}

/* LEFT */
.cs-left {
  position: relative;
  height: 100%;
  padding: 22px;
  display: flex;
  align-items: flex-end;
  justify-content: flex-start;
}

.cs-figure {
  width: 100%;
  display: flex;
  align-items: flex-end;
  justify-content: flex-start;
}

.cs-hero-img {
  width: min(520px, 100%);
  height: auto;
  display: block;
  filter: drop-shadow(0 30px 70px rgba(0, 0, 0, 0.55));
  position: absolute;
  bottom: 0;
}

/* badge bottom-left */
.cs-badge {
  position: absolute;
  left: 18px;
  bottom: 18px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  border-radius: 12px;

  background: rgba(0, 0, 0, 0.35);
  border: 1px solid rgba(255, 255, 255, 0.10);
  backdrop-filter: blur(10px);
}

.cs-badge-logo {
  width: 22px;
  height: 22px;
}

.cs-badge-title {
  font-weight: 900;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.92);
}

.cs-badge-sub {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.70);
}

/* RIGHT */
.cs-right {
  padding: 30px 34px;
}

.cs-Inline {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
}

@media (max-width: 980px) {
  .cs-right {
    padding: 2rem;
  }
}

.cs-kicker {
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 1px;
  color: rgba(255, 255, 255, 0.55);
  text-transform: uppercase;
}

.cs-title {
  margin: 0 0 12px;
  font-size: 38px;
  font-weight: 1000;
  line-height: 1.08;
  color: rgba(255, 255, 255, 0.92);
}

.cs-title span {
  color: #22e5ff;
}

@media (max-width: 560px) {
  .cs-title {
    font-size: 30px;
  }

  .cs-right {
    padding: 2rem;
  }
  .cs-left {
    position: static;
    padding: 0;
  }
  .cs-hero-img {
    width: 100%;
    bottom: -29px;
    right: -90px;
    z-index: -1;
    opacity: 0.6;
}
}

.cs-text {
  margin: 0;
  max-width: 560px;
  font-size: 14px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.78);
}

.cs-whatsapp {
  color: #29ff7a;
  font-weight: 900;
}

/* buttons */
.cs-actions {
  margin-top: 18px;
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.cs-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 18px;
  border-radius: 12px;
  font-weight: 700;
  font-size: 13px;
  text-decoration: none;
  border: 1px solid rgba(255, 255, 255, 0.14);
  transition: transform 150ms ease, filter 150ms ease, background 150ms ease;
}

.cs-btn:hover {
  transform: translateY(-1px);
  filter: brightness(1.05);
}

.cs-btn-green {
  color: #fff;
  background: linear-gradient(180deg, #1bd169, #0aa94f);
  border: 1px solid rgba(60, 255, 160, 0.35);
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.35);
}

.cs-btn-ghost {
  color: rgba(255, 255, 255, 0.92);
  background: rgba(255, 255, 255, 0.06);
}

.cs-mini-dot {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: #8c63ff;
  box-shadow: 0 0 0 4px rgba(140, 99, 255, 0.12);
}







/* ==== Footer ==== */
.footer {
  padding: 34px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  background: rgba(0, 0, 0, 0.25);
}

.footer-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}

.footer-copy {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.70);
  text-align: center;
}

.footer-links {
  display: flex;
  gap: 20px;
  flex-wrap: wrap
}

.footer-link {
  padding: 0px;
  border-radius: none;
  border: none;
  background: none;
}

.footer-link svg {
  width: 40px;
  height: 40px;
}

.footer-link:hover {
  transform: translateY(-5px);
  filter: brightness(1.06);
}

/* Scroll to top */
.scroll-top {
  position: fixed;
  right: 18px;
  bottom: 18px;
  width: 44px;
  height: 44px;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: linear-gradient(90deg, var(--purple), var(--cyan));
  color: #fff;
  cursor: pointer;
  display: none;
  place-items: center;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.35);
}

.elementor-icon-wrapper {
  display: inline-block;
  width: auto;
  position: fixed;
  right: 3%;
  top: 3%;
}

@media (max-width: 980px) {
  .footer {
    padding: 20px 0 5px;
  }

  .footer-links {
    width: 100%;
    padding-top: 10px;
  }

  .footer-row {
    gap: 5px;
  }

  .elementor-icon-wrapper svg {
    width: 40px;
    height: 40px;
  }
}

@media (max-width: 980px) {
  .footer-copy {
    text-align: left;
  }
}