
@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:ital,wght@0,200..800;1,200..800&display=swap');







:root {
  --bg: #020506;
  --bg-deep: #000;
  --panel: #071012;
  --panel-soft: rgba(13, 25, 27, 0.74);
  --text: #f8fbff;
  --muted: #a8b4c8;
  --muted-strong: #cfd7ea;
  --cyan: #9430ff;
  --cyan-deep: #7101e9;
  --orange: #8912ff;
  --orange-light: #c918ff;
  --purple-light: #e5e2ff;
  --danger: #ff3157;
  --green: #24d16b;
  --line: rgba(255, 255, 255, 0.09);
  --line-cyan: rgba(77, 0, 230, 0.23);
  --shadow-cyan: 0 0 48px rgba(127, 0, 230, 0.22);
  --shadow-orange: 0 0 42px rgba(200, 18, 255, 0.3);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--text);
  font-family: "Plus Jakarta Sans", sans-serif;
    background:
    radial-gradient(circle at 4% 6%, #0a04135c, transparent 27rem), radial-gradient(circle at 92% 8%, rgba(238, 0, 255, 0.38), transparent 29rem), radial-gradient(circle at 12% 52%, rgba(2, 12, 11, 0), transparent 30rem), radial-gradient(circle at 80% 67%, rgba(0, 0, 0, 0.24), transparent 30rem), linear-gradient(180deg, #061011 0%, #030607 30%, #000 100%);
  line-height: 1.45;
  overflow-x: hidden;
}

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

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

.site-page {
  min-height: 100vh;
  position: relative;
  isolation: isolate;
}

.site-page::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0) 0 18%, rgba(0, 0, 0, 0.82) 37%, rgba(0, 0, 0, 0.96) 100%),
    radial-gradient(circle at 100% 31%, rgba(45, 91, 255, 0.34), transparent 16rem);
}

.container {
  width: min(100% - 6rem, 1840px);
  margin-inline: auto;
}





.topbar {
  position: relative;
  z-index: 5;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 110px;
}

.logo {
  display: inline-flex;
  width: 20%;
}

.logo strong {
  color: var(--cyan);
  font-weight: 400;
}

.brand-title {
  
  width: 75%;
}



.top-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 60px;
  padding: 0 2.15rem;
  color: #0d1820;
  background: #e9f4ff;
  border: 1px solid rgba(255, 255, 255, 0.66);
  border-radius: 10px;
  font-size: 1.03rem;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-weight: 800;
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.25);
}

.hero-section {

  position: relative;
  overflow: hidden;
  /* background:
  linear-gradient(180deg, rgb(80 40 98 / 27%) 0%, rgb(0 0 0 / 0%) 58%, #000000 100%), radial-gradient(circle at 11% 18%, rgb(3 19 18 / 20%), transparent 23rem), radial-gradient(circle at 86% 14%, rgb(7 5 25 / 32%), transparent 28rem), radial-gradient(circle at 70% 52%, rgba(255, 129, 30, 0.16), transparent 23rem); */

  background-image:url(./assets/HERO-BG.png);
  width: 100%;
  background-repeat: no-repeat;
  background-size: contain;

}
/* .hero-section-2 {
  
  position: relative;
  overflow: hidden;
  background:
  linear-gradient(180deg, rgb(80 40 98 / 27%) 0%, rgb(0 0 0 / 0%) 58%, #000000 100%), radial-gradient(circle at 11% 18%, rgb(3 19 18 / 20%), transparent 23rem), radial-gradient(circle at 86% 14%, rgb(7 5 25 / 32%), transparent 28rem), radial-gradient(circle at 70% 52%, rgba(255, 129, 30, 0.16), transparent 23rem);

 

} */

.hero-section::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 280px;
  background: linear-gradient(180deg, transparent, #050809 76%, #060707 100%);
  pointer-events: none;
}

.hero-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(550px, 1fr);
  align-items: center;
  gap: 3rem;
  padding-top: 3.5rem;
  padding-bottom: 1.5rem;
}

.hero-copy {
  max-width: 780px;
}

.hero-copy h1 {
  margin: 0;
  color: #fff;
  font-size: 2.7rem;
  font-weight: 700;
  line-height: 1.08;
}

.hero-copy h1 > span {
  display: block;
}

.brand-title {
  margin: 1.2rem 0 0.7rem;
  font-size: 7.35rem;
  line-height: 0.82;
  font-weight: 800;
}

.brand-title strong {
  color: var(--cyan);
  font-weight: 400;
}

.hero-pill {
  display: inline-flex;
  align-items: center;

  margin: 2rem 0 0;
  padding: 0.50rem 1.7rem;
  color: #eaf9ff;
  background: rgb(83 66 142 / 43%);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 999px;
  box-shadow: inset 0 0 24px rgba(255, 255, 255, 0.06), var(--shadow-cyan);
  font-size: 1.39rem;
  font-weight: 500;
}

.hero-pill strong {
  color: var(--cyan);
  font-weight: 700;
}

.hero-actions {
  display: flex;
  gap: 1.6rem;
  flex-wrap: wrap;
  /* margin-top: 4.2rem; */
}
.hero-action-mar {

    margin-top: 3rem !important;
  }



  /* ── Wrapper ── */
  .hero-actions {
    display: flex;
    gap: 20px;
    /* justify-content: center; */
    align-items: center;
    /* padding: 3rem 2rem; */
    flex-wrap: wrap;
  }


  /* end */




/* css3 animated payment toast */

/* ── Keyframes ── */
@keyframes toast-in {
  0%   { opacity: 0; transform: translateY(30px) scale(0.92); }
  100% { opacity: 1; transform: translateY(0px) scale(1); }
}
@keyframes float {
  0%,100% { transform: translateY(0px); }
  50%      { transform: translateY(-6px); }
}
@keyframes shimmer {
  0%   { left: -80%; }
  100% { left: 130%; }
}
@keyframes check-pop {
  0%   { transform: scale(0) rotate(-20deg); opacity: 0; }
  60%  { transform: scale(1.3) rotate(5deg);  opacity: 1; }
  100% { transform: scale(1) rotate(0deg);    opacity: 1; }
}
@keyframes amount-glow {
  0%,100% { text-shadow: 0 0 0px rgba(34,197,94,0); }
  50%      { text-shadow: 0 0 12px rgba(34,197,94,0.5); }
}
@keyframes bar-fill {
  0%   { width: 0%; }
  100% { width: 100%; }
}
@keyframes ping {
  0%   { transform: scale(1);   opacity: 0.7; }
  100% { transform: scale(2.2); opacity: 0; }
}
@keyframes fade-up {
  0%   { opacity: 0; transform: translateY(6px); }
  100% { opacity: 1; transform: translateY(0); }
}

/* ── Toast Card ── */
.payment-toast {
  position: relative;
  background: linear-gradient(145deg, #1a1f2e, #141820);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 20px;
  padding: 22px 28px 20px;
  width: 260px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0,0,0,0.5),
               0 0 0 1px rgba(255,255,255,0.04);
  animation:
    toast-in 0.6s cubic-bezier(0.34,1.56,0.64,1) forwards,
    float    4.5s ease-in-out 0.8s infinite;
}
.payment-toast::before {
  content: '';
  position: absolute;
  top: 0;
  left: -80%;
  width: 50%;
  height: 100%;
  background:linear-gradient(90deg, #781aff00, rgb(124 95 255 / 25%), #be11ff00);
  animation: shimmer 3.5s ease-in-out 1s infinite;
  pointer-events: none;
}

/* ── Top Progress Bar ── */
.toast-top-bar {
  position: absolute;
  top: 0; left: 0;
  height: 3px; width: 100%;
  background: #1e2736;
  border-radius: 20px 20px 0 0;
  overflow: hidden;
}
.toast-top-bar::after {
  content: '';
  position: absolute;
  top: 0; left: 0; height: 100%;
  background: linear-gradient(90deg, #a600ff, #781aff);
  animation: bar-fill 1.2s cubic-bezier(0.4,0,0.2,1) 0.3s forwards;
  width: 0%;
}


a.button.button-light {
  background: linear-gradient(180deg, #7436ed, #540ecd);
  padding: 18px 31px;
  border-radius: 8px;
  font-weight: 700;
  font-size: 18px;
  border: 2px solid #7436ed;
  text-align: center;
}

a.button.button-light:hover, a.button.button-light-join:hover {
  background: linear-gradient(180deg, #ffffff, #e4d4ff);
  border-color: white;
  color: black;
}


a.button.button-light-join {
  background: linear-gradient(180deg, #7436ed, #540ecd);
  padding: 30px 31px;
  border-radius: 8px;
  font-weight: 700;
  text-align: center;
  font-size: 18px;
}


a.button.button-light-2 {
  background: linear-gradient(180deg, #6315ff00, #540ecd00);
  padding: 18px 31px;
  text-align: center;
  border-radius: 8px;
  border: 2px solid #7436ed;
  font-weight: 700;
  font-size: 18px;
}

a.button.button-light-2:hover {
  background: linear-gradient(180deg, #7436ed, #540ecd);
  border-color: #7436ed;
  color: white;
}


span.btn-icon {
  border: 1px solid white;
  border-radius: 100px;
  padding: 6px 10px 9px 13px;
}



/* ── Icon ── */
.toast-icon {
  position: relative;
  width: 36px; height: 36px;
  border-radius: 50%;
  background: linear-gradient(135deg, #22c55e, #16a34a);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.toast-icon::after {
  content: '';
  position: absolute;
  inset: 0; border-radius: 50%;
  background: rgba(34,197,94,0.4);
  animation: ping 2s ease-out 1s infinite;
}
.toast-icon span {
  color: #fff; font-size: 16px;
  font-weight: 900; position: relative; z-index: 1;
  animation: check-pop 0.5s cubic-bezier(0.34,1.56,0.64,1) 0.7s both;
}

/* ── Text ── */
.toast-icon-row {
  display: flex; align-items: center;
  gap: 10px; margin-bottom: 12px;
  animation: fade-up 0.5s ease 0.4s both;
}
.toast-label {
  font-size: 12px; color: rgba(255,255,255,0.45);
  letter-spacing: 0.3px; line-height: 1; margin-bottom: 2px;
}
.toast-title {
  font-size: 14px; font-weight: 600;
  color: rgba(255,255,255,0.9); line-height: 1;
}
.toast-amount-row {
  display: flex; align-items: baseline;
  justify-content: space-between; margin-bottom: 6px;
  animation: fade-up 0.5s ease 0.6s both;
}
.toast-amount {
  font-size: 30px; font-weight: 800;
  color: #fff; letter-spacing: -0.5px;
  animation: amount-glow 3s ease-in-out 1.2s infinite;
}
.toast-badge {
  display: inline-flex; align-items: center; gap: 4px;
  background: #781aff;
  border: 1px solid #a600ff;
  border-radius: 20px; padding: 3px 10px;
  font-size: 12px; font-weight: 600; color: #38d9ff;
}
.toast-from {
  font-size: 12px; color: rgba(255,255,255,0.35);
  animation: fade-up 0.5s ease 0.8s both;
  display: flex;
  gap: 7px;
}
.toast-from strong { color: rgba(255,255,255,0.6); font-weight: 600; }
.toast-divider {
  height: 1px; background: rgba(31, 26, 26, 0.384); margin: 12px 0px 1px 0px;
}
.toast-footer {
  display: flex; justify-content: space-between;
  align-items: center;
  animation: fade-up 0.5s ease 1s both;
}
.toast-dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: #22c55e;
  box-shadow: 0 0 8px rgba(34,197,94,0.6);
}
.toast-time { font-size: 11px; color: rgba(255,255,255,0.25); }


/* :end */



/* section heading style css */

/* ── Keyframes ── */
@keyframes fade-up {
  0%   { opacity: 0; transform: translateY(20px); }
  100% { opacity: 1; transform: translateY(0); }
}
@keyframes badge-in {
  0%   { opacity: 0; transform: translateY(-10px) scale(0.9); }
  100% { opacity: 1; transform: translateY(0) scale(1); }
}
@keyframes line-grow {
  0%   { width: 0%; opacity: 0; }
  100% { width: 100%; opacity: 1; }
}
@keyframes orange-glow {
  0%,100% { text-shadow: 0 0 0px rgba(144, 0, 255, 0); }
  50%      { text-shadow: 0 0 20px rgba(195, 0, 255, 0.5),
                           0 0 40px rgba(64, 0, 255, 0.2); }
}
@keyframes underline-slide {
  0%   { transform: scaleX(0); opacity: 0; }
  100% { transform: scaleX(1); opacity: 1; }
}
@keyframes dot-pulse {
  0%,100% { opacity: 1;   transform: scale(1); }
  50%      { opacity: 0.4; transform: scale(0.6); }
}

/* ── Wrapper ── */
.section-heading {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  /* padding: 4rem 2rem; */
  gap: 14px;
}

/* ── P Badge ── */
.section-heading p {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 3px;
  color: #a500e6 !important;
  text-transform: uppercase;
  padding: 7px 20px;
  border: 1px solid rgba(179, 0, 255, 0.35);
  border-radius: 50px;
  background: rgba(212, 0, 255, 0.08);
  position: relative;
  overflow: hidden;
  animation: badge-in 0.6s cubic-bezier(0.34,1.56,0.64,1) both;
}
.section-heading p::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(90deg,
    transparent, rgba(195, 0, 255, 0.12), transparent);
  animation: line-grow 2s ease-in-out infinite;
}

/* ── Pulse Dots ── */
.dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #a600ff;
  display: inline-block;
  flex-shrink: 0;
  animation: dot-pulse 1.8s ease-in-out infinite;
}
.dot:last-child { animation-delay: 0.9s; }

/* ── H2 ── */
.section-heading h2 {
  margin: 0;
  font-size: clamp(36px, 6vw, 58px);
  font-weight: 800;
  color: #ffffff;
  line-height: 1.1;
  letter-spacing: -1px;
  animation: fade-up 0.7s ease 0.3s both;
}
.section-heading h2 span {
  position: relative;
  display: inline-block;
  color: #7b00ff;
  animation:
    fade-up    0.7s ease 0.5s both,
    orange-glow 3s ease-in-out 1.2s infinite;
}
.section-heading h2 span::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, #dd00ff, #cc00ff, #a600ff);
  border-radius: 2px;
  transform-origin: left;
  animation: underline-slide 0.8s cubic-bezier(0.4,0,0.2,1) 0.9s both;
}

/* ── Diamond Divider ── */
.heading-rule {
  display: flex;
  align-items: center;
  gap: 12px;
  width: 100%;
  max-width: 260px;
  animation: fade-up 0.7s ease 0.7s both;
}
.rule-line {
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg,
    transparent, rgba(255,255,255,0.12), transparent);
}

.rule-line-bg {
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg,
    transparent, rgba(55, 36, 64, 0.681), transparent);
}


.rule-diamond {
  width: 6px;
  height: 6px;
  background: #9500ff;
  transform: rotate(45deg);
  flex-shrink: 0;
  box-shadow: 0 0 8px rgba(153, 0, 255, 0.6);
}


/* :end */


.quick-benefits {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.85rem;
  max-width: 760px;
  margin-top: 3.5rem;
}

.quick-item {
  display: grid;
  grid-template-columns: 64px minmax(0, 1fr);
  align-items: center;
  gap: 1rem;
}

.quick-item p {
  margin: 0;
  color: #fff;
  font-size: 1.1rem;
  line-height: 1.16;
}




.quick-item strong {
  display: block;
  margin-bottom: 0.24rem;
  font-weight: 900;
}

.quick-icon {
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  color: #ffffff;
  font-weight: 900;
  font-size: 1.55rem;
}

.tag-icon {
  background: #781aff;
  border-radius: 12px 12px 12px 4px;
  transform: rotate(-36deg);
  box-shadow: inset 0 -7px 0 rgba(0, 0, 0, 0.1);
}

.setup-icon {
  color: #f1fbff;
  background: radial-gradient(circle at 72% 72%, #a087c3 0 17%, #00000000 18%), radial-gradient(circle, #781aff 0 58%, #370759 60% 100%);
  border-radius: 50%;
  box-shadow: 0 0 0 9px rgba(168, 68, 255, 0.23);
}

.cash-icon {
  color: #ffffff;
  background: linear-gradient(135deg, #781aff, #781aff);
  border-radius: 6px;
  position: relative;
}

.cash-icon::after {
  content: "";
  position: absolute;
  right: -9px;
  bottom: -7px;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background:#a087c3;
  border: 4px solid #052224;
}

.hero-visual {
  min-height: 660px;
  position: relative;
  display: flex;
    align-items: end;

}

.payment-toast {
  position: absolute;
  top: -50px;
  left: 26%;
  z-index: 4;
  width: 260px;
  min-height: 130px;
  padding: 1rem;
  color: #111;
  background: rgba(255, 255, 255, 0.95);
  border-radius: 12px;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.36);
}

.payment-toast p,
.payment-toast span {
  margin: 0;
  color: #182025;
  font-size: 0.92rem;
  font-weight: 800;
}


strong.set-align-check span {
  color: #059743;
  font-size: unset;
}

.payment-toast strong {
  display: block;
  margin: 0.12rem 0;
  color: #010404;
  font-size: 1rem;
  line-height: 1;
}

.payment-toast i {
  position: absolute;
  right: 1.35rem;
  top: 50%;
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  color: #fff;
  background: #059743;
  border-radius: 50%;
  font-style: normal;
  font-weight: 900;
}

.qr-stand {
  position: absolute;
  left: 2%;
  bottom: 48px;
  z-index: 2;
  width: 260px;
  min-height: 460px;
  padding: 2rem 1.7rem 2.2rem;
  color: #fff;
  background:
    linear-gradient(143deg, rgba(255, 255, 255, 0.13), transparent 42%),
    linear-gradient(180deg, #102826 0%, #071212 100%);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 4px;
  box-shadow: 32px 42px 80px rgba(0, 0, 0, 0.48);
  transform: perspective(1000px) rotateY(-7deg) skewY(1deg);
}

.qr-stand::before {
  content: "";
  position: absolute;
  inset: auto -20px -34px 12px;
  height: 48px;
  background: linear-gradient(90deg, #9b9289, #eee7de 60%, #77706a);
  transform: skewX(-24deg);
  border-radius: 0 0 8px 8px;
  z-index: -1;
}

.stand-logo,
.phone-logo {
  color: #fff;
  font-size: 1.65rem;
  font-weight: 800;
  line-height: 1;
}

.stand-logo strong,
.phone-logo strong {
  color: var(--cyan);
  font-weight: 400;
}

.qr-stand p {
  margin: 2.25rem 0 1.2rem;
  color: #f5f9ff;
  font-size: 1.4rem;
  font-weight: 800;
  text-align: center;
}

.qr-stand small {
  display: block;
  margin-top: 1.2rem;
  color: #fff;
  font-size: 1.38rem;
  font-weight: 700;
  text-align: center;
}

.qr-code {
  
  margin-inline: auto;

  padding: 12px;
  /* background: #fff; */
  border-radius: 7px;
  box-shadow: inset 0 0 0 2px #e5e5e5;
}

.qr-code span {
  background: #0c0c0c;
  border-radius: 2px;
}



a.logof.footer-logo {
  width: 13rem;
}
.phone-wrap {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 430px;
  height: 620px;
}

.hand-shape {
  position: absolute;
  right: -145px;
  bottom: -108px;
  width: 330px;
  height: 620px;
  background:
    radial-gradient(circle at 45% 30%, rgba(255, 215, 178, 0.95), transparent 24%),
    linear-gradient(165deg, #ffd2ac 0%, #f3a071 48%, #ce7047 100%);
  border-radius: 54% 46% 0 0 / 48% 52% 0 0;
  transform: rotate(-17deg);
  filter: drop-shadow(-34px 28px 48px rgba(0, 0, 0, 0.45));
  opacity: 0.92;
}

.phone {
  position: absolute;
  right: 96px;
  bottom: 30px;
  width: 260px;
  min-height: 560px;
  padding: 4rem 1.6rem 1.6rem;
  background:
    radial-gradient(circle at 50% 14%, rgba(0, 230, 221, 0.32), transparent 11rem),
    linear-gradient(180deg, #082a28 0%, #030808 100%);
  border: 9px solid #171717;
  border-radius: 38px;
  box-shadow:
    inset 0 0 0 2px rgba(255, 255, 255, 0.08),
    0 42px 80px rgba(0, 0, 0, 0.6);
  text-align: center;
}

.phone-notch {
  position: absolute;
  top: 0.85rem;
  left: 50%;
  width: 104px;
  height: 25px;
  background: #111;
  border-radius: 0 0 17px 17px;
  transform: translateX(-50%);
}

.phone-status {
  position: absolute;
  top: 1.1rem;
  left: 1.5rem;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.65rem;
  font-weight: 700;
}

.phone p {
  margin: 2.1rem 0 1rem;
  color: rgba(255, 255, 255, 0.78);
  font-size: 1rem;
}

.phone h2 {
  margin: 0;
  font-size: 2.7rem;
  line-height: 1;
}

.checkmark {
  width: 100px;
  height: 100px;
  display: grid;
  place-items: center;
  margin: 2.1rem auto 1.2rem;
  color: #fff;
  border: 7px solid rgba(255, 255, 255, 0.95);
  border-radius: 50%;
  font-size: 3.8rem;
  font-weight: 700;
}

.phone h3 {
  margin: 0 0 2rem;
  font-size: 1.65rem;
  line-height: 1.13;
}

.phone button {
  width: 100%;
  min-height: 62px;
  color: #fff;
  background: linear-gradient(120deg, #02bcb5, #25e5d0);
  border: 0;
  border-radius: 8px;
  font: inherit;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 1.18rem;
  font-weight: 800;
  box-shadow: 0 14px 26px rgba(0, 230, 221, 0.28);
}

.section-block {
  position: relative;
  padding: 6.8rem 0;
}

.how-section {
  padding-top: 5.1rem;
}

.section-heading {
  /* max-width: 1140px; */
  margin: 0 auto 2.5rem;
  text-align: center;
}

.section-heading p {
  margin: 0 0 0.62rem;
  color: var(--orange);
  font-size: 1.22rem;
  font-weight: 900;
}

.section-heading h2 {
  margin: 0;
  color: #fff;
  font-size: 2.5rem;
  line-height: 1.14;
}

/* .section-heading h2 span {
  color: var(--purple-light);
} */

.wide-heading {
  max-width: 1540px;
}

.how-section {
  background: white !important;
  width: 100%;
}

.blk-text{
  color: #000 !important;
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 6rem;
  max-width: 1180px;
  margin-inline: auto;
}

.step-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.step-card img {
  width: 250px;
  height: 250px;
  object-fit: contain;
  margin-bottom: 1.2rem;
  /* filter: drop-shadow(0 22px 34px rgba(0, 0, 0, 0.34)); */
}

.step-card h3,
.love-card h3 {
  margin: 0;
  color: #ffffff;
  font-size: 1.53rem;
  line-height: 1.13;
  font-weight: 900;
}

.step-card p,
.love-card p {
  max-width: 240px;
  margin: 0.42rem auto 0;
  color:#f5e0ff;
  font-size: 1.16rem;
  line-height: 1.18;
}

.economics-section{
  background: white !important;
}

.step-card-blk h3{
  color: black !important;
}

.step-card-blk p{
  color: #220a2d !important;
}

.blur-circul-again-1{
  
  width: 800px;
  height: 800px;
  background: radial-gradient(circle at 7% 33%, rgba(31, 144, 225, 0.2), transparent 20rem) no-repeat;
  position: absolute;

}

.blur-circul-again-2{
  

  width: 800px;
  height: 800px;
  background: radial-gradient(closest-side, rgb(164 71 239 / 25%), transparent 19rem) no-repeat;
  position: absolute;
  left: 30%;
  bottom: 10%;

}
/* .blur-circul-1 {
 
  width: 1200px;
  height: 1200px;
  background: radial-gradient(closest-side, rgb(18 159 255 / 40%), transparent 31rem) no-repeat;
  position: absolute;
  top: -70%;
  right: 30%;
} */
.blur-circul-2 {
 
  width: 800px;
  height: 800px;
  background: radial-gradient(closest-side, rgba(17, 92, 255, 0.563), transparent 20rem) no-repeat;
  position: absolute;
  top: -13%;
  left: -30%;
}


.phone-wrap-scan {
  display: none;
}


/* .blur-circul-3 {
  width: 1220px;
  height: 1220px;
  background: radial-gradient(closest-side, rgb(154 11 255 / 20%), transparent 34rem) no-repeat;
  position: absolute;
  top: -48%;
  right: -34%;
} */


.blur-circul-economics {
 
  width: 1200px;
  height: 1200px;
  background: radial-gradient(closest-side, rgb(18 159 255 / 40%), transparent 31rem) no-repeat;
  position: absolute;
  top: 0%;
  right: 0%;
}






.card {
  background: transparent;
  border-radius: 20px;
  display: flex;
  gap: 30px;
  align-items: stretch;
  position: relative;
}

/* ── Panels ── */
.panel-left {
  flex: 1;
  background: #f2f2f4;
  border-radius: 18px;
  padding: 32px 36px 28px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.panel-right {
  flex: 1;
  background: #f0ecff;
  border-radius:18px;
  padding: 32px 36px 28px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

/* ── Panel header ── */
.panel-header {
  display: flex;
    gap: 12px;
    align-content: center;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
}
.panel-label {
  font-size: 18px;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}
.panel-left  .panel-label { color: #444444; }
.panel-right .panel-label { color: #6c2ff5; }

.badge {
  padding: 5px 14px;
  border-radius: 8px;
  font-size: 12.5px;
  font-weight: 700;
  white-space: nowrap;
  flex-shrink: 0;
}
.badge-lose { background: #d4d4d8; color: #555555; }
.badge-win  { background: #6c2ff5; color: #ffffff; }

/* ── Flow row ── */
.flow-row {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: nowrap;
  justify-content: center;
}
.flow-item {
  display: flex;
  flex-direction: column;
  gap: 4px;
  min-width: 0;
}
.flow-item .label {
  font-size: 18px;
  font-weight: 600;
  color: #000000;
  line-height: 1.3;
  text-align: center;
  white-space: nowrap;
}
.flow-item .amount {
  font-size: 34px;
  font-weight: 900;
  line-height: 1.1;
  text-align: center;
  letter-spacing: 0;
  white-space: nowrap;
}
.panel-left  .flow-item .amount { color: #111111; }
.panel-right .flow-item .amount { color: #6c2ff5; }

.arrow {
  font-size: 28px;
  color: #000000;
  margin-bottom: 0;
  flex-shrink: 0;
  line-height: 1;
  font-weight: 900;
}

/* ── Note box ── */
.note {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: #e8e8ea;
  border-radius: 10px;
  padding: 20px 20px;
  font-size: 18px;
  font-weight: 500;
  color: #000000;
  text-align: center;
}
.note .emoji { font-size: 35px; }

/* ── Total box ── */
.total-box {
  background: #ddd6fe;
  border-radius: 12px;
  padding: 14px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  text-align: center;
}
.total-line {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  justify-content: center;
}
.total-line .trophy       { font-size: 50px; }
.total-line .total-label  { font-size: 35px; font-weight: 800; color: #111111; }
.total-line .total-amount { font-size: 35px; font-weight: 900; color: #e07b00; letter-spacing: -0.01em; }
.total-sub {
  font-size: 18px;
  font-weight: 500;
  color: #6c2ff5;
  letter-spacing: 0.01em;
}

span.set-econ-txt {
  font-size: 22px;
}

.set-custom-p {
  font-size: 25px !important;
}

.set-custom {
  font-size: 28px !important;
}
/* ── VS bubble ── */
.vs-bubble {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: #6c2ff5;
  color: #ffffff;
  font-size: 32px;
  font-weight: 900;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
  box-shadow: 0 0 0 6px #f5f5f7;
  letter-spacing: 0.04em;
  flex-shrink: 0;
}



















.main-under-for-dot-blur{
  width: 100%;
  display: block;
  position: relative;

}

.love-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 3.2rem;
  align-items: start;
}

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

.love-icon {
  width: 112px;
  height: 112px;
  position: relative;
  display: grid;
  place-items: center;
  margin: 0 auto 1.3rem;
}





.repeat-icon {
  width: 120px;
}

.repeat-icon span {
  position: absolute;
  width: 30px;
  height: 30px;
  border: 5px solid #fff;
  background: var(--cyan);
  border-radius: 50%;
}

.repeat-icon span:nth-child(1) {
  top: 12px;
  left: 23px;
}

.repeat-icon span:nth-child(2) {
  right: 20px;
  bottom: 14px;
}

.repeat-icon span:nth-child(3),
.repeat-icon span:nth-child(4) {
  width: 58px;
  height: 28px;
  border: 0;
  background: none;
  border-top: 7px solid var(--orange);
  border-right: 7px solid var(--orange);
  border-radius: 0 14px 0 0;
}

.repeat-icon span:nth-child(3) {
  top: 26px;
  right: 21px;
}

.repeat-icon span:nth-child(4) {
  left: 20px;
  bottom: 26px;
  transform: rotate(180deg);
}

.economics-section {
  padding-top: 6.3rem;
  padding-bottom: 6.3rem;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.25), rgba(0, 0, 0, 0.78));
}

.comparison-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 70px minmax(0, 1fr);
  gap: 3.4rem;
  align-items: center;
}

.comparison-card {
  min-height: 385px;
  padding: 4rem 4.3rem;
  background: rgb(191 191 191 / 24%);
  border: 1px solid var(--line);
  border-radius: 26px;
  border-color: var(--line-cyan);
  box-shadow: inset 0 0 36px rgba(255, 255, 255, 0.02);
}

.new-way {
  border-color: var(--line-cyan);
  /* box-shadow: inset 0 0 36px rgba(0, 230, 221, 0.03), var(--shadow-cyan); */
}

.badge {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  /* margin-bottom: 2.3rem; */
  padding: 0 1.2rem;
  border-radius: 7px;
  font-size: 1rem;
  font-weight: 900;
}

.old-way .badge {
  color: #ff637e;
  background: rgba(255, 49, 87, 0.24);
}

.new-way .badge {
  color: #29d579;
  background: rgba(36, 209, 107, 0.22);
}

.money-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 1.5rem;
  align-items: baseline;
  padding: 0.82rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.money-row p {
  margin: 0;
  color: #170629;
  font-size: 1.5rem;
}

.money-row strong {
  color: #170629;
  font-size: 1.3rem;
  font-weight: 900;
}

.money-row.danger p,
.money-row.danger strong,
.old-way .total strong {
  color: var(--danger);
}

.money-row.success p,
.money-row.success strong {
  color: var(--cyan);
}

.money-row.total {
  margin-top: 1rem;
  border-bottom: 0;
}

.money-row.total p,
.money-row.total strong {
  font-size: 1.5rem;
  font-weight: 700;
}

.comparison-card small {
  display: block;
  margin-top: 1.2rem;
  color: rgba(255, 255, 255, 0.38);
  font-size: 1rem;
  font-weight: 700;
}

.new-way small {
  color: var(--cyan);
}

.versus {
  width: 70px;
  height: 70px;
  display: grid;
  place-items: center;
  color: #fff;
  background: var(--orange);
  border-radius: 50%;
  font-size: 1.3rem;
  font-weight: 900;
  box-shadow: var(--shadow-orange);
}

.join-section {
  padding: 4.8rem 0 6.5rem;
}

.join-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(420px, 0.72fr);
  gap: 4rem;
  align-items: center;
  min-height: 500px;
  padding: 5.6rem 7rem;
  background:
  linear-gradient(rgba(255, 255, 255, 0.045) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, 0.045) 1px, transparent 1px), radial-gradient(circle at 0 50%, rgba(0, 230, 221, 0.18), transparent 26rem), radial-gradient(circle at 100% 35%, rgb(218 18 255 / 24%), transparent 23rem), linear-gradient(110deg, rgb(20 3 34 / 94%), rgba(13, 14, 16, 0.96) 58%, rgb(21 8 36 / 90%));
  background-size: auto, 40px 40px, auto, auto, auto;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 30px;
  box-shadow: inset 0 0 54px rgba(255, 255, 255, 0.03), 0 36px 100px rgba(0, 0, 0, 0.46);
}

.join-copy h2 {
  margin: 0;
  max-width: 800px;
  color: #f3f8fa;
  font-size: 2.8rem;
  line-height: 1.2;
}

.join-copy p {
  margin: 1.6rem 0 0;
  color: var(--cyan);
  font-size: 1.55rem;
  font-weight: 900;
}

.join-points {
  display: flex;
  flex-wrap: wrap;
  gap: 3.2rem;
  margin-top: 3.8rem;
}

.join-points div {
  display: grid;
  grid-template-columns: 64px minmax(0, 1fr);
  align-items: center;
  gap: 1.2rem;
}

.join-points span {
  width: 62px;
  height: 62px;
  display: grid;
  place-items: center;
  color: var(--cyan);
  border: 2px solid #a087c3;
  border-radius: 14px;
  font-size: 1.55rem;
  font-weight: 900;
  box-shadow: inset 0 0 20px rgba(0, 230, 221, 0.14);
}

.join-points p {
  margin: 0;
  color: var(--muted);
  font-size: 1.05rem;
  font-weight: 500;
}

.join-points strong {
  display: block;
  margin-bottom: 0.3rem;
  color: #fff;
  font-size: 1.28rem;
  font-weight: 900;
}

.join-action {
  display: grid;
  gap: 2rem;
}



.scan-panel {
  display: grid;
  grid-template-columns: 112px minmax(0, 1fr);
  gap: 1.45rem;
  align-items: center;
  min-height: 160px;
  padding: 1.6rem;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 22px;
}

.qr-code.small {
  width: 112px;
  height: 112px;
  gap: 4px;
  padding: 5px;
}

.scan-panel h3 {
  margin: 0 0 0.42rem;
  color: #fff;
  font-size: 1.34rem;
}

.scan-panel p {
  margin: 0;
  color: rgba(255, 255, 255, 0.55);
  font-size: 1.03rem;
  line-height: 1.45;
}

.site-footer {
  padding: 2.2rem 0 2.2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
  background:
  radial-gradient(circle at 84% 68%, #a600ff4d, transparent 21rem), rgba(0, 0, 0, 0.85);
}

.footer-inner {
  display: grid;
  grid-template-columns: auto 1fr auto auto;
  gap: 4rem;
  align-items: center;
}

.footer-logo {
  font-size: 2.55rem;
}

.site-footer p,
.site-footer a {
  color: rgba(255, 255, 255, 0.45);
  font-size: 1rem;
  font-weight: 600;
}

.site-footer nav {
  display: flex;
  gap: 2.4rem;
  align-items: center;
}



@media (max-width: 1280px) {
  /* .container {
    width: min(100% - 3rem, 1120px);
  } */


  .card {
    flex-direction: column;
  }


  .blur-circul-1, .blur-circul-2, .blur-circul-3, .blur-circul-again-1, .blur-circul-again-2
{
  display: none;
}

.brand-title {
  width: 60%;
}

.hero-pill {

  font-size: 1.3rem;
 
}

.payment-toast {
 
  top: -710px !important;
  left: 50% !important;
 

}



  .hero-section {
    min-height: auto;
  }

  .hero-inner {
    grid-template-columns: 1fr;
    padding-top: 3.5rem;
    padding-bottom: 4rem;
  }

  .hero-copy {
    max-width: 820px;
  }

  .vs-bubble {

    top: 43%;
  }

  .footer-inner {
    grid-template-columns: 1fr 1fr 2fr !important;
}

.site-footer nav {
  display: flex;
  gap: 1.4rem;
  align-items: center;
}

  .hero-visual {
    min-height: 0 !important;
  }

  .qr-stand {
    left: 7%;
  }

  .phone-wrap {
    right: 3%;
  }



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

  .join-panel {
    grid-template-columns: 1fr;
    padding: 4rem;
  }

  .join-action {
    max-width: 640px;
  }

  .footer-inner {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 900px) {
  .topbar {
    min-height: 92px;
  }

  .logo {
    font-size: 2rem;
  }

  .top-button {
    min-height: 48px;
    padding: 0 1.2rem;
    font-size: 0.92rem;
    font-family: "Plus Jakarta Sans", sans-serif;
  }

  .hero-copy h1 {
    font-size: 3rem;
  }

  .brand-title {
    font-size: 5.1rem;
  }

  .hero-pill {
    min-height: auto;
    font-size: 1rem;
  }

  .button {
    min-height: 58px;
    font-family: "Plus Jakarta Sans", sans-serif;
    padding: 0 2rem;
  }

  .quick-benefits {
    grid-template-columns: 1fr;
    max-width: 390px;
    gap: 1.4rem;
  }

  .hero-visual {
    min-height: 590px;
  }

  .payment-toast {
    left: 12%;
    width: 310px;
  }

  .qr-stand {
    width: 220px;
    min-height: 392px;
    left: 0;
    bottom: 70px;
  }

  .qr-code {
    width: 122px;
    height: 122px;
  }

  .phone-wrap {
    width: 340px;
    height: 530px;
    right: -16px;
  }

  .phone {
    right: 65px;
    width: 220px;
    min-height: 490px;
  }

  .phone h2 {
    font-size: 2.1rem;
  }

  .checkmark {
    width: 78px;
    height: 78px;
    font-size: 2.8rem;
  }

  .section-block {
    padding: 5.2rem 0;
  }

  .section-heading {
    margin-bottom: 3.8rem;
  }

  .section-heading p {
    font-size: 1rem;
  }

  .section-heading h2 {
    font-size: 2.35rem;
  }

  .steps-grid {
    grid-template-columns: 1fr;
    gap: 3.8rem;
  }

  .step-card img {
    width: 230px;
    height: 230px;
  }

  .comparison-grid {
    grid-template-columns: 1fr;
    gap: 1.6rem;
  }

  .versus {
    margin-inline: auto;
  }

  .comparison-card {
    min-height: auto;
    padding: 2.4rem;
  }

  .join-copy h2 {
    font-size: 3.15rem;
  }

  .join-points {
    flex-direction: column;
    gap: 1.4rem;
  }

  .scan-panel {
    grid-template-columns: 92px minmax(0, 1fr);
  }

  .qr-code.small {
    width: 92px;
    height: 92px;
  }

  .hero-section {

    position: relative;
    overflow: hidden;
    /* background:
    linear-gradient(180deg, rgb(80 40 98 / 27%) 0%, rgb(0 0 0 / 0%) 58%, #000000 100%), radial-gradient(circle at 11% 18%, rgb(3 19 18 / 20%), transparent 23rem), radial-gradient(circle at 86% 14%, rgb(7 5 25 / 32%), transparent 28rem), radial-gradient(circle at 70% 52%, rgba(255, 129, 30, 0.16), transparent 23rem); */
  
    background-image:url(./assets/empty-geardoopy.png);
    width: 100%;
    background-size: contain;
  
  }

  .phone-wrap-scan {
    display: inline-block;
    margin-top: 150px;
  }
  .payment-toast {
    top: 0 !important;
    left: 0 !important;
}

}


@media (min-width: 768px) and (max-width: 1100px) {

  .hero-copy h1 {
    font-size: 2rem;
}

.brand-title {
  width: 48%;
}



}



@media (max-width: 767px) {

.footer-inner

 {
       
        display: flex !important;
        flex-direction: column !important;
        gap: 1rem;
    }

    body {
      padding: 0 !important;
  }

  .logo {
    display: inline-flex;
    width: 40%;
}

.hero-copy h1 {
  font-size: 1.6rem !important;
}

.payment-toast {
  top: 0 !important;
  left: 0% !important;
}


.quick-benefits {

  gap: 2.8rem;
}

.section-heading {
  margin-bottom: 1.8rem;
}

.step-card img {
  width: 250px;
  height: 250px;
  object-fit: contain;
  margin-bottom: 0;
}

.set-custom-p {
  font-size: 18px !important;
}

.set-custom {
  font-size: 20px !important;
}
.join-points {
  display: flex;
  flex-wrap: wrap;
  flex-direction: row !important;
}

.qr-code {
  margin-inline: initial !important;}

  }



@media (max-width: 640px) {
  .container {
    width: min(100% - 1.5rem, 520px);
  }

  .phone-wrap-scan {
    display: inline-block;
}

  .logo {
    display: inline-flex;
    width: 50%;
  }

  .mob-none-btn{
    display: none !important;
  }
  
  .topbar {
    gap: 1rem;
    align-items: flex-start;
    padding-top: 1.1rem;
    justify-content: center;
  }

  .top-button {
    width: auto;
    min-height: 42px;
    border-radius: 8px;
    font-size: 0.78rem;
    font-family: "Plus Jakarta Sans", sans-serif;
  }

  .hero-inner {
    padding-top: 1.4rem;
  }

  .hero-copy h1 {
    font-size: 2.22rem;
  }

  .brand-title {
    margin: 0.8rem 0 0.45rem;
    font-size: 3.65rem;
  }

  .hero-pill {
    padding: 0.7rem 1rem;
    border-radius: 18px;
  }

  .hero-actions {
    gap: 1rem;
    /* margin-top: 2rem; */
  }

  .hero-action-mar {

    margin-top: 2rem;
  }

  .blur-circul-1, .blur-circul-2, .blur-circul-3, .blur-circul-again-1, .blur-circul-again-2
{
  display: none;
}

  .button {
    width: 100%;
  }

  .quick-benefits {
    margin-top: 2.4rem;
  }

  .hero-visual {
    /* min-height: 740px; */
    margin-top: 1rem;
    align-items: start;
  }
  .phone-wrap-scan {
    margin-top: 200px;
}
.how-section {
  padding-top: 0;
}

.hero-inner {

  padding-bottom: 0;
}
  .payment-toast {
    left: 0;
    /* width: 280px; */
    min-height: 108px;
    transform: translateX(-50%);
  }

  .qr-stand {
    left: 50%;
    top: 150px;
    bottom: auto;
    width: 210px;
    min-height: 368px;
    transform: translateX(-50%) perspective(1000px) rotateY(-5deg);
  }

  .phone-wrap {
    left: 50%;
    right: auto;
    bottom: 0;
    width: 292px;
    height: 430px;
    transform: translateX(-50%);
  }

  .hand-shape {
    right: -104px;
    height: 470px;
  }

  .phone {
    right: 42px;
    width: 198px;
    min-height: 425px;
    padding: 3.2rem 1.1rem 1.1rem;
    border-width: 7px;
    border-radius: 30px;
  }

  .phone-logo,
  .stand-logo {
    font-size: 1.25rem;
  }

  .phone p {
    margin-top: 1.4rem;
  }

  .phone h2 {
    font-size: 1.86rem;
  }

  .phone h3 {
    font-size: 1.25rem;
  }

  .phone button {
    min-height: 50px;
  }

  .how-section {
    padding-top: 3rem;
  }

  .section-heading h2 {
    font-size: 1.9rem;
  }

  .love-grid {
    grid-template-columns: 1fr;
    gap: 3.2rem;
  }

  .comparison-card {
    padding: 1.6rem;
    border-radius: 18px;
  }

  .money-row {
    gap: 1rem;
  }

  .money-row p,
  .money-row strong {
    font-size: 1.08rem;
  }

  .money-row.total p,
  .money-row.total strong {
    font-size: 1.3rem;
  }

  .join-section {
    padding: 2.4rem 0 4rem;
  }

  .join-panel {
    padding: 2rem 1.25rem;
    border-radius: 22px;
  }

  .join-copy h2 {
    font-size: 2.35rem;
  }

  .join-copy p {
    font-size: 1.12rem;
  }

  .join-points div,
  .scan-panel {
    grid-template-columns: 1fr;
  }

  .join-points span {
    width: 52px;
    height: 52px;
  }


  .footer-inner {
    grid-template-columns: 1fr;
    gap: 1.4rem;
    text-align: center;
  }

  .footer-logo,
  .site-footer nav,
  .social-links {
    justify-content: center;
  }

  .site-footer nav {
    flex-wrap: wrap;
    gap: 1rem 1.5rem;
  }
}




    /* ════════════════════════════════
       responsive
    ════════════════════════════════ */
    @media (max-width: 768px) {
      body { padding: 28px 16px; }
      .phone-wrap-scan {
        display: inline-block;
    }

    /* .hero-section {
      display: none;
    } */

    .card {
      background: transparent;
      border-radius: 20px;
      display: flex;
      gap: 30px;
      flex-direction: column;
    }

    .vs-bubble {
      position: absolute;
      left: 50%;
      top: 42%;}

  

      .header h1 { font-size: 26px; }

      .panel-left  { padding: 24px 20px 20px; gap: 18px; }
      .panel-right { padding: 24px 20px 20px; gap: 16px; }

      .flow-row { gap: 8px; }

      .flow-item .label  { font-size: 10.5px; }
      .flow-item .amount { font-size: 22px; }

      .arrow { font-size: 14px; margin-bottom: 6px; }

      .vs-bubble { width: 44px; height: 44px; font-size: 12px; }
    }

    /* ════════════════════════════════
       MOBILE  ≤ 540px  — stack vertically
    ════════════════════════════════ */
    @media (max-width: 540px) {
      body { padding: 24px 14px; }
      .phone-wrap-scan {
        display: inline-block;
    }
      .header .eyebrow { font-size: 11px; }
      .header h1       { font-size: 22px; }
      .header          { margin-bottom: 24px; }

      /* Stack panels top-to-bottom */
      .card {
        flex-direction: column;
        gap: 0;
      }

      .panel-left {
        border-radius: 18px 18px 0 0;
        padding: 24px 20px 28px;
        gap: 16px;
      }
      .panel-right {
        border-radius: 0 0 18px 18px;
        padding: 28px 20px 24px;
        gap: 16px;
      }

      /* VS bubble sits between panels */
      .vs-bubble {
        position: relative;
        left: auto;
        top: auto;
        transform: none;
        margin: -24px auto;
        z-index: 10;
        width: 46px;
        height: 46px;
        font-size: 12px;
        box-shadow: 0 0 0 5px #f5f5f7;
        display: flex;
      }

      /* Allow flow items to wrap on very small screens */
      .flow-row {
        gap: 6px;
        align-items: flex-end;
      }

      .flow-item .label  { font-size: 11px; }
      .flow-item .amount { font-size: 26px; }

      .arrow { font-size: 14px; margin-bottom: 6px; }

      .panel-label { font-size: 10.5px; }

      .note { font-size: 13px; padding: 10px 14px; }

      .total-line .total-label  { font-size: 15px; }
      .total-line .total-amount { font-size: 17px; }
      .total-sub { font-size: 11.5px; }
    }

    /* ════════════════════════════════
       VERY SMALL  ≤ 380px
    ════════════════════════════════ */
    @media (max-width: 380px) {
      .header h1 { font-size: 19px; }
      .phone-wrap-scan {
        display: inline-block;
    }
      .flow-row {
        flex-wrap: wrap;
        gap: 4px 10px;
      }
      .arrow { display: none; }

      .flow-item .amount { font-size: 22px; }
      .flow-item .label  { font-size: 10px; }

      .panel-left,
      .panel-right { padding: 20px 14px 20px; }
    }




























