
/* Neon moving CTA border (scoped, does not affect other buttons) */
.btn-neon-moving {
  --neon-angle: 0deg;
  position: relative;
  isolation: isolate;
  overflow: visible;
  z-index: 0;
}

.btn-neon-moving::before,
.btn-neon-moving::after {
  content: "";
  position: absolute;
  inset: -2px;
  padding: 2px;
  border-radius: inherit;
  pointer-events: none;
  background: conic-gradient(
    from var(--neon-angle),
    rgba(244, 201, 93, 0) 90deg,
    #f4c95d 180deg,
    #12c8be 270deg,
    #176f73 360deg
  );
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  animation: btn-neon-rotate 2.8s linear infinite;
}

.btn-neon-moving::before {
  z-index: -1;
}

.btn-neon-moving::after {
  inset: -6px;
  padding: 6px;
  filter: blur(14px);
  opacity: 0.6;
  z-index: -2;
}

.btn-neon-moving:hover::before,
.btn-neon-moving:hover::after {
  animation-play-state: paused;
  background: linear-gradient(#12c8be, #12c8be);
}

.btn-neon-moving:hover,
.btn-neon-moving:focus {
  background-color: #176f73 !important;
  border-color: #12c8be !important;
  color: #ffffff !important;
}

.btn-neon-moving:hover::after,
.btn-neon-moving:focus::after {
  opacity: 0.8;
  filter: blur(16px);
}

@keyframes btn-neon-rotate {
  to {
    --neon-angle: 360deg;
  }
}

@property --neon-angle {
  syntax: "<angle>";
  inherits: false;
  initial-value: 0deg;
}

@media (prefers-reduced-motion: reduce) {
  .btn-neon-moving::before,
  .btn-neon-moving::after {
    animation: none;
  }
}

/* Neon panel effect for CTA boxes */
.panel-neon-moving {
  --panel-neon-angle: 0deg;
  position: relative;
  isolation: isolate;
  overflow: visible;
  border: 1px solid rgba(18, 200, 190, 0.14);
  box-shadow: 0 10px 24px rgba(23, 111, 115, 0.18);
}

.panel-neon-moving::before,
.panel-neon-moving::after {
  content: "";
  position: absolute;
  inset: -2px;
  padding: 2px;
  border-radius: inherit;
  pointer-events: none;
  background: conic-gradient(
    from var(--panel-neon-angle),
    rgba(244, 201, 93, 0) 90deg,
    #f4c95d 180deg,
    #12c8be 270deg,
    #176f73 360deg
  );
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  animation: panel-neon-rotate 3.8s linear infinite;
}

.panel-neon-moving::before {
  z-index: -1;
}

.panel-neon-moving::after {
  display: none;
}

@keyframes panel-neon-rotate {
  to {
    --panel-neon-angle: 360deg;
  }
}

@property --panel-neon-angle {
  syntax: "<angle>";
  inherits: false;
  initial-value: 0deg;
}

@media (prefers-reduced-motion: reduce) {
  .panel-neon-moving::before,
  .panel-neon-moving::after {
    animation: none;
  }
}

/* Neon panel effect v2 (BeONE Mobile turquoise + dark teal) */
.panel-neon-moving-two {
  position: relative;
  isolation: isolate;
  overflow: visible;
  border: 1px solid rgba(18, 200, 190, 0.14);
  box-shadow: 0 10px 24px rgba(23, 111, 115, 0.18);
}

.panel-neon-moving-two::before,
.panel-neon-moving-two::after {
  content: "";
  position: absolute;
  inset: -2px;
  padding: 2px;
  border-radius: inherit;
  pointer-events: none;
  background: linear-gradient(
    115deg,
    rgba(244, 201, 93, 0.18) 0%,
    #f4c95d 22%,
    #12c8be 55%,
    #176f73 82%,
    rgba(244, 201, 93, 0.18) 100%
  );
  background-size: 220% 220%;
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  animation: panel-neon-flow-two 3.6s ease-in-out infinite;
}

.panel-neon-moving-two::before {
  z-index: -1;
}

.panel-neon-moving-two::after {
  display: none;
}

@keyframes panel-neon-flow-two {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}

@media (prefers-reduced-motion: reduce) {
  .panel-neon-moving-two::before,
  .panel-neon-moving-two::after {
    animation: none;
  }
}

/* Neon panel effect v3 (BeONE Mobile soft breathing motion) */
.panel-neon-moving-tree {
  position: relative;
  isolation: isolate;
  overflow: visible;
  border: 1px solid rgba(18, 200, 190, 0.14);
  box-shadow: 0 10px 24px rgba(23, 111, 115, 0.18);
}

.panel-neon-moving-tree::before,
.panel-neon-moving-tree::after {
  content: "";
  position: absolute;
  inset: 0;
  padding: 2px;
  border-radius: inherit;
  pointer-events: none;
  background: conic-gradient(
    from 210deg,
    rgba(244, 201, 93, 0.16) 0deg,
    #f4c95d 120deg,
    #176f73 220deg,
    #12c8be 300deg,
    rgba(244, 201, 93, 0.16) 360deg
  );
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  animation: panel-neon-breathe-tree 2.4s ease-in-out infinite;
}

.panel-neon-moving-tree::before {
  z-index: 1;
}

.panel-neon-moving-tree::after {
  display: none;
}

.panel-neon-moving-tree > * {
  position: relative;
  z-index: 2;
}

@keyframes panel-neon-breathe-tree {
  0%,
  100% {
    opacity: 0.56;
    filter: saturate(0.95) brightness(0.92);
  }
  50% {
    opacity: 1;
    filter: saturate(1.15) brightness(1.08);
  }
}

@media (prefers-reduced-motion: reduce) {
  .panel-neon-moving-tree::before,
  .panel-neon-moving-tree::after {
    animation: none;
  }
}

/* Neon variant for light/white button */
.btn-neon-moving-two {
  --neon2-angle: 0deg;
  position: relative;
  isolation: isolate;
  overflow: visible;
  z-index: 0;
  border-width: 1px;
  background-color: #ffffff !important;
  color: #176f73 !important;
  border-color: rgba(18, 200, 190, 0.24) !important;
  font-weight: 700;
  text-shadow: none !important;
}

.btn-neon-moving-two:visited,
.btn-neon-moving-two:active {
  background-color: #ffffff !important;
  color: #176f73 !important;
}

.btn-neon-moving-two::before,
.btn-neon-moving-two::after {
  content: "";
  position: absolute;
  inset: -2px;
  padding: 2px;
  border-radius: inherit;
  pointer-events: none;
  background: conic-gradient(
    from var(--neon2-angle),
    rgba(244, 201, 93, 0) 110deg,
    #f4c95d 235deg,
    #176f73 320deg,
    #12c8be 360deg
  );
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  animation: btn-neon-rotate-two 3.2s linear infinite;
}

.btn-neon-moving-two::before {
  z-index: -1;
}

.btn-neon-moving-two::after {
  inset: -5px;
  padding: 5px;
  filter: blur(12px);
  opacity: 0.55;
  z-index: -2;
}

.btn-neon-moving-two:hover::before,
.btn-neon-moving-two:hover::after {
  animation-play-state: paused;
  background: linear-gradient(#12c8be, #12c8be);
}

.btn.btn-neon-moving-two:hover,
.btn.btn-neon-moving-two:focus,
.btn.btn-neon-moving-two:active {
  background-color: #176f73 !important;
  border-color: #12c8be !important;
  color: #ffffff !important;
  -webkit-text-fill-color: #ffffff !important;
  text-shadow: 0 0 0 transparent;
  opacity: 1 !important;
  filter: none !important;
}

.btn.btn-neon-moving-two i,
.btn.btn-neon-moving-two:hover i,
.btn.btn-neon-moving-two:focus i,
.btn.btn-neon-moving-two:active i {
  color: currentColor !important;
  opacity: 1 !important;
}

.btn-neon-moving-two:hover::after,
.btn-neon-moving-two:focus::after {
  opacity: 0.58;
  filter: blur(12px);
}

@keyframes btn-neon-rotate-two {
  to {
    --neon2-angle: 360deg;
  }
}

@property --neon2-angle {
  syntax: "<angle>";
  inherits: false;
  initial-value: 0deg;
}

@media (prefers-reduced-motion: reduce) {
  .btn-neon-moving-two::before,
  .btn-neon-moving-two::after {
    animation: none;
  }
}

/* Ensure logo inside circular plan badge stays perfectly round */
.job-box .firm-logo {
  overflow: hidden;
}

.job-box .firm-logo img {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover;
  border-radius: 50%;
  display: block;
}

/* Responsive YouTube guide modal */
.gs-video-modal {
  max-width: 860px;
}

.gs-youtube-frame-wrap {
  background: #000000;
  overflow: hidden;
  aspect-ratio: 16 / 9;
  position: relative;
  width: 100%;
}

.gs-youtube-frame-wrap iframe {
  border: 0;
  height: 100%;
  inset: 0;
  position: absolute;
  width: 100%;
}

.business-poster-card {
  width: 75%;
}

/* BeONE three-step journey */
.business-journey {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 42px;
}

.business-journey__step {
  position: relative;
  text-align: center;
}

.business-journey__node {
  --business-journey-color: 18, 200, 190;
  align-items: center;
  background: rgba(var(--business-journey-color), 0.11);
  border: 1px solid rgba(var(--business-journey-color), 0.34);
  border-radius: 50%;
  box-shadow: 0 0 0 7px rgba(var(--business-journey-color), 0.05);
  color: rgb(var(--business-journey-color));
  display: inline-flex;
  height: 76px;
  justify-content: center;
  position: relative;
  width: 76px;
  z-index: 2;
}

.business-journey__step--outcome .business-journey__node {
  --business-journey-color: 255, 159, 67;
}

.business-journey__step:nth-child(2) .business-journey__node {
  --business-journey-color: 52, 181, 229;
}

.business-journey__node > i {
  font-size: 32px;
  line-height: 1;
}

.business-journey__number {
  align-items: center;
  background: rgb(var(--business-journey-color));
  border: 3px solid rgba(18, 36, 52, 0.88);
  border-radius: 50%;
  color: #102030;
  display: inline-flex;
  font-size: 0.65rem;
  font-weight: 800;
  height: 27px;
  justify-content: center;
  position: absolute;
  right: -8px;
  top: -8px;
  width: 27px;
}

.business-journey__copy {
  margin: 24px auto 0;
  max-width: 340px;
  padding-inline: 20px;
}

.business-journey__copy h3 {
  font-weight: 700;
}

.business-journey__copy p {
  line-height: 1.65;
}

.business-journey__connector {
  background: linear-gradient(90deg, #12c8be 0%, #34b5e5 100%);
  height: 2px;
  left: calc(50% + 48px);
  position: absolute;
  right: calc(-50% + 48px);
  top: 37px;
  z-index: 1;
}

.business-journey__step:nth-child(2) .business-journey__connector {
  background: linear-gradient(90deg, #34b5e5 0%, #34b5e5 55%, #ff9f43 100%);
}

.business-journey__connector::after {
  border-right: 2px solid #34b5e5;
  border-top: 2px solid #34b5e5;
  content: "";
  height: 9px;
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%) rotate(45deg);
  width: 9px;
}

.business-journey__step:nth-child(2) .business-journey__connector::after {
  border-color: #ff9f43;
}

@media (max-width: 767.98px) {
  .business-journey {
    display: block;
    margin: 32px auto 0;
    max-width: 470px;
    padding-inline: 14px;
  }

  .business-journey__step {
    display: grid;
    gap: 16px;
    grid-template-columns: 60px minmax(0, 1fr);
    padding-bottom: 36px;
    text-align: left;
  }

  .business-journey__step:last-child {
    padding-bottom: 0;
  }

  .business-journey__node {
    height: 56px;
    width: 56px;
  }

  .business-journey__node > i {
    font-size: 25px;
  }

  .business-journey__number {
    border-width: 2px;
    font-size: 0.58rem;
    height: 23px;
    right: -5px;
    top: -5px;
    width: 23px;
  }

  .business-journey__copy {
    margin: 0;
    max-width: none;
    padding: 2px 0 0;
  }

  .business-journey__copy h3 {
    font-size: 1rem;
  }

  .business-journey__copy p {
    font-size: 0.92rem;
    line-height: 1.6;
  }

  .business-journey__connector {
    background: linear-gradient(180deg, #12c8be 0%, #34b5e5 100%);
    bottom: -2px;
    height: auto;
    left: 27px;
    right: auto;
    top: 62px;
    width: 2px;
  }

  .business-journey__step:nth-child(2) .business-journey__connector {
    background: linear-gradient(180deg, #34b5e5 0%, #34b5e5 55%, #ff9f43 100%);
  }

  .business-journey__connector::after {
    border-bottom: 2px solid #34b5e5;
    border-right: 2px solid #34b5e5;
    border-top: 0;
    bottom: 0;
    left: 50%;
    right: auto;
    top: auto;
    transform: translateX(-50%) rotate(45deg);
  }

  .business-journey__step:nth-child(2) .business-journey__connector::after {
    border-color: #ff9f43;
  }
}

/* Four-step BSE start panel */
.business-start-panel {
  border: 1px solid rgba(18, 200, 190, 0.18);
  border-radius: 20px;
  display: grid;
  grid-template-columns: minmax(260px, 0.75fr) minmax(0, 1.6fr);
  overflow: hidden;
  position: relative;
}

.business-start-panel__intro {
  background:
    radial-gradient(circle at 0 100%, rgba(18, 200, 190, 0.15), transparent 42%),
    linear-gradient(145deg, rgba(18, 200, 190, 0.07), rgba(52, 181, 229, 0.025));
  border-right: 1px solid rgba(18, 200, 190, 0.16);
  padding: clamp(30px, 4vw, 48px);
}

.business-start-panel__intro p {
  line-height: 1.7;
  max-width: 360px;
}

.business-start-panel__steps {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.business-start-panel__step {
  --business-start-accent-rgb: 18, 200, 190;
  display: grid;
  gap: 16px;
  grid-template-columns: 52px minmax(0, 1fr);
  min-height: 170px;
  overflow: hidden;
  padding: 30px;
  position: relative;
}

.business-start-panel__step:nth-child(2) {
  --business-start-accent-rgb: 52, 181, 229;
}

.business-start-panel__step:nth-child(3) {
  --business-start-accent-rgb: 94, 234, 212;
}

.business-start-panel__step:nth-child(4) {
  --business-start-accent-rgb: 255, 159, 67;
}

.business-start-panel__step:nth-child(odd) {
  border-right: 1px solid rgba(155, 172, 196, 0.13);
}

.business-start-panel__step:nth-child(-n + 2) {
  border-bottom: 1px solid rgba(155, 172, 196, 0.13);
}

.business-start-panel__number {
  color: rgba(var(--business-start-accent-rgb), 0.1);
  font-size: 4.4rem;
  font-weight: 800;
  letter-spacing: -0.08em;
  line-height: 1;
  pointer-events: none;
  position: absolute;
  right: 18px;
  top: 10px;
}

.business-start-panel__icon {
  align-items: center;
  background: rgba(var(--business-start-accent-rgb), 0.11);
  border: 1px solid rgba(var(--business-start-accent-rgb), 0.28);
  border-radius: 14px;
  color: rgb(var(--business-start-accent-rgb));
  display: inline-flex;
  font-size: 24px;
  height: 52px;
  justify-content: center;
  position: relative;
  width: 52px;
  z-index: 1;
}

.business-start-panel__copy {
  min-width: 0;
  padding-top: 2px;
  position: relative;
  z-index: 1;
}

.business-start-panel__copy h4 {
  font-weight: 700;
}

.business-start-panel__copy p {
  font-size: 0.92rem;
  line-height: 1.65;
}

@media (max-width: 991.98px) {
  .business-start-panel {
    grid-template-columns: minmax(220px, 0.65fr) minmax(0, 1fr);
  }

  .business-start-panel__steps {
    grid-template-columns: minmax(0, 1fr);
  }

  .business-start-panel__step {
    min-height: 0;
    padding: 26px;
  }

  .business-start-panel__step:nth-child(odd) {
    border-right: 0;
  }

  .business-start-panel__step:not(:last-child) {
    border-bottom: 1px solid rgba(155, 172, 196, 0.13);
  }
}

@media (max-width: 767.98px) {
  .business-start-panel {
    display: block;
  }

  .business-start-panel__intro {
    border-bottom: 1px solid rgba(18, 200, 190, 0.16);
    border-right: 0;
    padding: 28px 24px;
    text-align: center;
  }

  .business-start-panel__intro p {
    margin-inline: auto;
  }

  .business-start-panel__steps {
    display: block;
    padding: 8px 20px;
  }

  .business-start-panel__step {
    gap: 15px;
    grid-template-columns: 48px minmax(0, 1fr);
    padding: 24px 4px;
  }

  .business-start-panel__step:not(:last-child)::after {
    background: linear-gradient(180deg, rgba(var(--business-start-accent-rgb), 0.62), rgba(var(--business-start-accent-rgb), 0.08));
    bottom: -8px;
    content: "";
    left: 27px;
    position: absolute;
    top: 74px;
    width: 2px;
    z-index: 0;
  }

  .business-start-panel__icon {
    border-radius: 13px;
    font-size: 22px;
    height: 48px;
    width: 48px;
  }

  .business-start-panel__number {
    font-size: 3.5rem;
    right: 4px;
    top: 14px;
  }

  .business-start-panel__copy h4 {
    font-size: 1rem;
  }
}

/* BeONE BSE promotion after the income paths */
.business-bse-promo {
  background:
    radial-gradient(circle at 100% 0, rgba(52, 181, 229, 0.2), transparent 38%),
    linear-gradient(135deg, #102537 0%, #172f43 100%);
  border: 1px solid rgba(18, 200, 190, 0.34);
  border-radius: 24px;
  box-shadow: 0 28px 65px rgba(2, 13, 24, 0.3);
  overflow: hidden;
  padding: clamp(26px, 4vw, 48px);
  position: relative;
}

.business-bse-promo::after {
  border: 1px solid rgba(94, 234, 212, 0.09);
  border-radius: 50%;
  content: "";
  height: 280px;
  pointer-events: none;
  position: absolute;
  right: -125px;
  top: -150px;
  width: 280px;
}

.business-bse-promo > .row {
  position: relative;
  z-index: 1;
}

.business-bse-promo__poster {
  border-radius: 18px !important;
  box-shadow: 0 24px 48px rgba(0, 0, 0, 0.3) !important;
  max-width: 360px;
  width: 100%;
}

.business-bse-promo__poster img {
  aspect-ratio: 4 / 5;
  object-fit: cover;
  width: 100%;
}

.business-bse-promo__deadline {
  align-items: center;
  background: rgba(18, 200, 190, 0.11);
  border: 1px solid rgba(94, 234, 212, 0.32);
  border-radius: 999px;
  color: #ffbd7f;
  display: inline-flex;
  font-size: 0.78rem;
  font-weight: 700;
  gap: 10px;
  letter-spacing: 0.035em;
  margin-bottom: 20px;
  padding: 8px 14px;
  text-transform: uppercase;
}

.business-bse-promo__deadline time {
  border-left: 1px solid rgba(255, 189, 127, 0.28);
  padding-left: 10px;
}

.business-bse-promo__title {
  color: #ffffff;
  font-size: clamp(1.8rem, 3vw, 2.65rem);
  font-weight: 750;
  letter-spacing: -0.03em;
  line-height: 1.15;
  margin: 0 0 14px;
}

.business-bse-promo__lead {
  color: #ffffff;
  font-size: clamp(1.05rem, 1.5vw, 1.2rem);
  line-height: 1.6;
  margin: 0 0 8px;
}

.business-bse-promo__description {
  color: #aebfd0;
  line-height: 1.65;
  margin: 0;
}

.business-bse-promo__offer {
  align-items: center;
  background: rgba(255, 255, 255, 0.065);
  border: 1px solid rgba(94, 234, 212, 0.16);
  border-radius: 18px;
  display: flex;
  gap: 22px;
  margin: 24px 0;
  max-width: 520px;
  padding: 18px 22px;
}

.business-bse-promo__price {
  align-items: flex-start;
  color: #5eead4;
  display: flex;
  line-height: 1;
}

.business-bse-promo__price span {
  color: #ff9f43;
  font-size: 1.05rem;
  font-weight: 800;
  margin: 8px 4px 0 0;
}

.business-bse-promo__price strong {
  font-size: clamp(3rem, 5vw, 4.4rem);
  font-weight: 800;
  letter-spacing: -0.055em;
}

.business-bse-promo__pack {
  border-left: 1px solid rgba(255, 255, 255, 0.14);
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding-left: 22px;
}

.business-bse-promo__pack strong {
  color: #ffffff;
  font-size: 1.05rem;
}

.business-bse-promo__pack small {
  color: #aebfd0;
  line-height: 1.45;
}

.business-bse-promo__pack del {
  color: #ff9f43;
  text-decoration-thickness: 2px;
}

.business-bse-promo__benefits {
  display: grid;
  gap: 11px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.business-bse-promo__benefits li {
  align-items: flex-start;
  color: #d8e5ec;
  display: flex;
  gap: 10px;
  line-height: 1.45;
}

.business-bse-promo__benefits i {
  color: #12c8be;
  flex: 0 0 auto;
  font-size: 1.15rem;
  margin-top: 1px;
}

.business-bse-promo__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 26px;
}

.business-bse-promo__actions .btn {
  font-size: 0.92rem;
  font-weight: 700;
  margin: 0;
}

.btn.business-bse-promo__primary {
  background: #ff9f43;
  border-color: #ff9f43;
  box-shadow: 0 14px 30px rgba(255, 159, 67, 0.2);
  color: #102030;
}

.btn.business-bse-promo__primary:hover,
.btn.business-bse-promo__primary:focus {
  background: #ffad5f;
  border-color: #ffad5f;
  color: #102030;
}

@media (max-width: 767.98px) {
  .business-bse-promo {
    padding: 28px 22px;
    text-align: center;
  }

  .business-bse-promo__offer {
    justify-content: center;
    margin-left: auto;
    margin-right: auto;
    text-align: left;
  }

  .business-bse-promo__benefits {
    margin-left: auto;
    margin-right: auto;
    max-width: 390px;
    text-align: left;
  }

  .business-bse-promo__actions {
    justify-content: center;
  }

  .business-bse-promo__poster {
    margin-top: 8px;
    max-width: 340px;
  }
}

@media (max-width: 575.98px) {
  .business-bse-promo__deadline {
    flex-direction: column;
    gap: 4px;
    justify-content: center;
    width: 100%;
  }

  .business-bse-promo__deadline time {
    border-left: 0;
    padding-left: 0;
  }

  .business-bse-promo__offer {
    flex-direction: column;
    gap: 14px;
    text-align: center;
  }

  .business-bse-promo__pack {
    border-left: 0;
    padding-left: 0;
  }

  .business-bse-promo__actions {
    flex-direction: column;
  }

  .business-bse-promo__actions .btn {
    width: 100%;
  }
}

/* RM50 BSE offer for existing telco ID holders */
.business-rm50-offer {
  background:
    radial-gradient(circle at 100% 50%, rgba(18, 200, 190, 0.2), transparent 34%),
    linear-gradient(135deg, #102537 0%, #172f43 100%);
  border: 1px solid rgba(52, 181, 229, 0.34);
  border-radius: 24px;
  box-shadow: 0 26px 60px rgba(2, 13, 24, 0.26);
  overflow: hidden;
  padding: clamp(26px, 4vw, 48px);
  position: relative;
}

.business-rm50-offer::before {
  background: linear-gradient(90deg, #34b5e5 0%, #12c8be 64%, #ff9f43 100%);
  content: "";
  height: 3px;
  inset: 0 0 auto;
  position: absolute;
}

.business-rm50-offer::after {
  border: 1px solid rgba(52, 181, 229, 0.1);
  border-radius: 50%;
  content: "";
  height: 260px;
  pointer-events: none;
  position: absolute;
  right: -110px;
  top: -145px;
  width: 260px;
}

.business-rm50-offer > .row {
  position: relative;
  z-index: 1;
}

.business-rm50-offer__badge {
  align-items: center;
  background: rgba(52, 181, 229, 0.11);
  border: 1px solid rgba(52, 181, 229, 0.34);
  border-radius: 999px;
  color: #7ddaf5;
  display: inline-flex;
  font-size: 0.78rem;
  font-weight: 750;
  gap: 7px;
  letter-spacing: 0.04em;
  margin-bottom: 20px;
  padding: 8px 14px;
  text-transform: uppercase;
}

.business-rm50-offer__title {
  color: #ffffff;
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  font-weight: 750;
  letter-spacing: -0.03em;
  line-height: 1.15;
  margin: 0 0 14px;
}

.business-rm50-offer__lead {
  color: #ffffff;
  font-size: clamp(1.02rem, 1.4vw, 1.16rem);
  line-height: 1.6;
  margin: 0 0 7px;
}

.business-rm50-offer__description {
  color: #aebfd0;
  line-height: 1.65;
  margin: 0;
  max-width: 650px;
}

.business-rm50-offer__value {
  align-items: center;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(52, 181, 229, 0.18);
  border-radius: 18px;
  display: grid;
  gap: 18px;
  grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
  margin: 24px 0;
  max-width: 560px;
  padding: 18px 22px;
}

.business-rm50-offer__value > div {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.business-rm50-offer__value span {
  color: #aebfd0;
  font-size: 0.78rem;
  font-weight: 650;
  text-transform: uppercase;
}

.business-rm50-offer__value strong {
  color: #ffffff;
  font-size: clamp(1.8rem, 3vw, 2.45rem);
  letter-spacing: -0.04em;
  line-height: 1.1;
}

.business-rm50-offer__value > i {
  color: #ff9f43;
  font-size: 1.55rem;
}

.business-rm50-offer__value > div:last-child strong {
  color: #5eead4;
}

.business-rm50-offer__benefits {
  display: grid;
  gap: 11px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.business-rm50-offer__benefits li {
  align-items: flex-start;
  color: #d8e5ec;
  display: flex;
  gap: 10px;
  line-height: 1.45;
}

.business-rm50-offer__benefits i {
  color: #12c8be;
  flex: 0 0 auto;
  font-size: 1.15rem;
  margin-top: 1px;
}

.business-rm50-offer__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 26px;
}

.business-rm50-offer__actions .btn {
  font-size: 0.92rem;
  font-weight: 700;
  margin: 0;
}

.btn.business-rm50-offer__primary {
  background: #ff9f43;
  border-color: #ff9f43;
  box-shadow: 0 14px 30px rgba(255, 159, 67, 0.2);
  color: #102030;
}

.btn.business-rm50-offer__primary:hover,
.btn.business-rm50-offer__primary:focus {
  background: #ffad5f;
  border-color: #ffad5f;
  color: #102030;
}

.business-rm50-offer__note {
  color: #8298aa;
  font-size: 0.76rem;
  line-height: 1.5;
  margin: 20px 0 0;
}

.business-rm50-offer__note i {
  color: #ff9f43;
  margin-right: 4px;
}

.business-rm50-offer__poster {
  max-width: 360px;
  width: 100%;
}

.business-rm50-offer__poster img {
  aspect-ratio: 4 / 5;
  display: block;
  height: auto;
  object-fit: cover;
  object-position: center;
  width: 100%;
}

.business-rm50-offer__fallback {
  align-items: center;
  aspect-ratio: 4 / 5;
  background:
    radial-gradient(circle at 50% 30%, rgba(94, 234, 212, 0.16), transparent 28%),
    linear-gradient(155deg, rgba(52, 181, 229, 0.13), rgba(18, 200, 190, 0.05));
  border: 1px solid rgba(94, 234, 212, 0.24);
  border-radius: 20px;
  box-shadow: 0 24px 48px rgba(0, 0, 0, 0.25);
  display: flex;
  flex-direction: column;
  justify-content: center;
  max-width: 330px;
  padding: 30px;
  width: 100%;
}

.business-rm50-offer__fallback i {
  color: #5eead4;
  font-size: 3rem;
  margin-bottom: 20px;
}

.business-rm50-offer__fallback span {
  color: #aebfd0;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.business-rm50-offer__fallback strong {
  color: #ffffff;
  font-size: clamp(3.4rem, 6vw, 4.8rem);
  letter-spacing: -0.06em;
  line-height: 1.15;
  margin: 8px 0 12px;
}

.business-rm50-offer__fallback small {
  color: #ffb26b;
  font-weight: 700;
}

@media (max-width: 767.98px) {
  .business-rm50-offer {
    padding: 28px 22px;
    text-align: center;
  }

  .business-rm50-offer__description {
    margin-left: auto;
    margin-right: auto;
  }

  .business-rm50-offer__value {
    margin-left: auto;
    margin-right: auto;
    text-align: left;
  }

  .business-rm50-offer__benefits {
    margin-left: auto;
    margin-right: auto;
    max-width: 410px;
    text-align: left;
  }

  .business-rm50-offer__actions {
    justify-content: center;
  }

  .business-rm50-offer__note {
    margin-left: auto;
    margin-right: auto;
    max-width: 430px;
  }

  .business-rm50-offer__poster {
    margin-top: 8px;
    max-width: 340px;
  }

  .business-rm50-offer__fallback {
    margin-top: 8px;
    max-width: 290px;
  }
}

@media (max-width: 575.98px) {
  .business-rm50-offer__value {
    gap: 10px;
    padding: 16px;
  }

  .business-rm50-offer__value span {
    font-size: 0.67rem;
  }

  .business-rm50-offer__value strong {
    font-size: 1.75rem;
  }

  .business-rm50-offer__actions {
    flex-direction: column;
  }

  .business-rm50-offer__actions .btn {
    width: 100%;
  }
}

/* Business income paths and commission ladder */
.business-income-card {
  --business-income-accent-rgb: 18, 200, 190;
  background: linear-gradient(145deg, rgba(var(--business-income-accent-rgb), 0.12), rgba(var(--business-income-accent-rgb), 0.025));
  border: 1px solid rgba(var(--business-income-accent-rgb), 0.38);
  border-radius: 18px;
  box-shadow: 0 16px 36px rgba(3, 18, 30, 0.1);
  overflow: hidden;
  padding: clamp(24px, 3vw, 32px);
  position: relative;
  transition: border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.business-income-card::before {
  background: rgb(var(--business-income-accent-rgb));
  content: "";
  height: 3px;
  inset: 0 0 auto;
  position: absolute;
}

.business-income-card--recurring {
  --business-income-accent-rgb: 52, 181, 229;
}

.business-income-card--network {
  --business-income-accent-rgb: 255, 159, 67;
}

.business-income-card__icon {
  align-items: center;
  background: rgba(var(--business-income-accent-rgb), 0.13);
  border: 1px solid rgba(var(--business-income-accent-rgb), 0.28);
  border-radius: 15px;
  color: rgb(var(--business-income-accent-rgb));
  display: inline-flex;
  font-size: 27px;
  height: 56px;
  justify-content: center;
  width: 56px;
}

.business-income-card__title {
  font-weight: 700;
}

.business-income-card p {
  line-height: 1.65;
}

.business-tier-ladder {
  display: grid;
  gap: 0;
  grid-auto-rows: 110px;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  margin-top: 34px;
  position: relative;
  width: 100%;
}

.business-tier-route {
  height: 100%;
  inset: 0;
  overflow: visible;
  pointer-events: none;
  position: absolute;
  width: 100%;
  z-index: 0;
}

.business-tier-route--mobile {
  display: none;
}

.business-tier-route__path {
  fill: none;
  filter: drop-shadow(0 0 5px rgba(18, 200, 190, 0.22));
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2.5px;
  vector-effect: non-scaling-stroke;
}

.business-tier-route__path--solid {
  stroke: rgba(18, 200, 190, 0.58);
}

.business-tier-item {
  --business-tier-accent-rgb: 18, 200, 190;
  min-width: 0;
  padding: 18px 10px 0;
  position: relative;
  text-align: center;
  z-index: 1;
}

.business-tier-item--direct {
  --business-tier-accent-rgb: 255, 159, 67;
}

.business-tier-item__marker {
  background: rgb(var(--business-tier-accent-rgb));
  border: 3px solid rgba(var(--business-tier-accent-rgb), 0.22);
  border-radius: 50%;
  box-shadow: 0 0 0 4px rgba(var(--business-tier-accent-rgb), 0.1);
  display: block;
  height: 14px;
  left: 50%;
  margin: 0;
  position: absolute;
  top: 0;
  transform: translate(-50%, -50%);
  width: 14px;
  z-index: 2;
}

.business-tier-item__label,
.business-tier-item__description {
  color: inherit;
  display: block;
  font-size: 0.76rem;
  opacity: 0.68;
}

.business-tier-item__label {
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.business-tier-item__rate {
  color: rgb(var(--business-tier-accent-rgb));
  display: block;
  font-size: clamp(1.7rem, 3vw, 2.15rem);
  font-weight: 700;
  line-height: 1;
  margin: 9px 0;
}

.business-tier-summary {
  display: none;
}

@media (hover: hover) and (pointer: fine) {
  .business-income-card:hover {
    border-color: rgba(var(--business-income-accent-rgb), 0.7);
    box-shadow: 0 20px 42px rgba(3, 18, 30, 0.16);
    transform: translateY(-5px);
  }
}

@media (max-width: 767.98px) {
  .business-income-card {
    padding: 24px;
  }

  .business-tier-ladder {
    gap: 26px 12px;
    grid-auto-rows: 100px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    margin-top: 38px;
    max-width: 420px;
  }

  .business-tier-route--desktop {
    display: none;
  }

  .business-tier-route--mobile {
    display: block;
  }

  .business-tier-item:nth-of-type(3) {
    grid-column: 2;
    grid-row: 2;
  }

  .business-tier-item:nth-of-type(4) {
    grid-column: 1;
    grid-row: 2;
  }

  .business-tier-item:nth-of-type(5) {
    grid-column: 1 / -1;
    grid-row: 3;
    justify-self: center;
    width: calc(50% - 6px);
  }

  .business-tier-summary {
    align-items: center;
    background: rgba(18, 200, 190, 0.08);
    border: 1px solid rgba(18, 200, 190, 0.32);
    border-radius: 999px;
    color: inherit;
    display: flex;
    font-size: 0.9rem;
    font-weight: 700;
    justify-content: center;
    line-height: 1.35;
    margin: 30px auto 0;
    max-width: calc(100% - 28px);
    padding: 10px 18px;
    position: relative;
    text-align: center;
    width: fit-content;
  }

  .business-tier-summary strong {
    color: #ff9f43;
    margin-left: 0.2em;
  }
}

@media (prefers-reduced-motion: reduce) {
  .business-income-card {
    transition: none;
  }
}

.testimonial-section-copy {
  color: #1f2d3d !important;
}

.order-price-copy {
  color: #ff9f43 !important;
}

.btn.hero-bse-btn,
.btn.hero-bse-btn:hover,
.btn.hero-bse-btn:focus,
.btn.hero-bse-btn:active {
  background-color: #1f2d3d !important;
  border-color: #1f2d3d !important;
  color: #ffffff !important;
}

.btn.hero-bse-btn:hover,
.btn.hero-bse-btn:focus {
  background-color: #152333 !important;
  border-color: #152333 !important;
}

@media (min-width: 768px) {
  #home .hero-visual-column {
    margin-bottom: -32px;
    transform: translateY(-32px);
  }
}

/* Limited BSE promotion panel above the feature grid */
#info.info-with-bse-promo {
  padding-top: clamp(28px, 4vw, 52px);
}

.bse-promo-panel {
  background:
    radial-gradient(circle at 100% 0, rgba(18, 200, 190, 0.24), transparent 40%),
    linear-gradient(135deg, #132335 0%, #173949 100%);
  border: 1px solid rgba(18, 200, 190, 0.32);
  border-radius: 20px;
  box-shadow: 0 22px 48px rgba(6, 25, 39, 0.28);
  color: #ffffff;
  overflow: hidden;
  padding: clamp(24px, 4vw, 42px);
  position: relative;
}

.bse-promo-panel::after {
  border: 1px solid rgba(94, 234, 212, 0.12);
  border-radius: 50%;
  content: "";
  height: 240px;
  pointer-events: none;
  position: absolute;
  right: -105px;
  top: -125px;
  width: 240px;
}

.bse-promo-panel__content {
  position: relative;
  z-index: 1;
}

.bse-promo-panel__eyebrow {
  align-items: center;
  background: rgba(18, 200, 190, 0.12);
  border: 1px solid rgba(94, 234, 212, 0.24);
  border-radius: 999px;
  color: #78f0e7;
  display: inline-flex;
  font-size: 0.78rem;
  font-weight: 700;
  gap: 7px;
  letter-spacing: 0.04em;
  margin-bottom: 16px;
  padding: 7px 12px;
  text-transform: uppercase;
}

.bse-promo-panel__title {
  color: #ffffff;
  font-size: clamp(1.65rem, 3vw, 2.35rem);
  font-weight: 700;
  letter-spacing: -0.025em;
  line-height: 1.2;
  margin: 0 0 14px;
}

.bse-promo-panel__eyebrow-text {
  color: #ff9f43;
}

.bse-promo-panel__price {
  color: #5eead4;
  display: inline-block;
  font-size: 1.15em;
  white-space: nowrap;
}

.bse-promo-panel__old-price {
  color: #ff9f43;
  display: inline-block;
  font-size: 0.68em;
  font-weight: 600;
  text-decoration: line-through;
  text-decoration-thickness: 2px;
  white-space: nowrap;
}

.bse-promo-panel__copy {
  color: #bed3dc;
  line-height: 1.7;
  margin: 0 0 22px;
  max-width: 680px;
}

.bse-promo-panel__copy strong {
  color: #ffffff;
}

.btn.bse-promo-panel__action {
  background: #ff9f43;
  border-color: #ff9f43;
  color: #ffffff;
  font-weight: 700;
}

.btn.bse-promo-panel__action:hover,
.btn.bse-promo-panel__action:focus {
  background: #f28b24;
  border-color: #f28b24;
  color: #ffffff;
  transform: translateY(-2px);
}

.bse-promo-countdown {
  background: rgba(6, 28, 41, 0.46);
  border: 1px solid rgba(94, 234, 212, 0.2);
  border-radius: 16px;
  padding: clamp(18px, 3vw, 26px);
}

.bse-promo-countdown__heading {
  color: #d8f8f5;
  font-size: 0.9rem;
  font-weight: 700;
  margin: 0 0 14px;
  text-align: center;
}

.bse-promo-countdown__grid {
  display: grid;
  gap: 9px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.bse-promo-countdown__unit {
  background: rgba(18, 200, 190, 0.11);
  border: 1px solid rgba(94, 234, 212, 0.18);
  border-radius: 12px;
  min-width: 0;
  padding: 12px 5px 10px;
  text-align: center;
}

.bse-promo-countdown__unit strong {
  color: #ffffff;
  display: block;
  font-size: clamp(1.45rem, 3.6vw, 2.15rem);
  font-variant-numeric: tabular-nums;
  line-height: 1;
}

.bse-promo-countdown__unit span {
  color: #91c7ca;
  display: block;
  font-size: 0.64rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  margin-top: 8px;
  text-transform: uppercase;
}

.bse-promo-countdown__deadline {
  color: #b7d5da;
  font-size: 0.78rem;
  margin: 14px 0 4px;
  text-align: center;
}

.bse-promo-countdown__note {
  color: #829eaa;
  display: block;
  font-size: 0.68rem;
  line-height: 1.45;
  text-align: center;
}

#faqCategoryTabs .nav-link:not(.active) {
  background-color: rgba(18, 200, 190, 0.08);
  border: 1px solid rgba(18, 200, 190, 0.42);
  box-shadow: 0 2px 8px rgba(6, 28, 41, 0.08);
  color: var(--bs-body-color);
  font-weight: 600;
  transition: background-color 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

#faqCategoryTabs .nav-link:not(.active):hover,
#faqCategoryTabs .nav-link:not(.active):focus-visible {
  background-color: rgba(18, 200, 190, 0.16);
  border-color: rgba(18, 200, 190, 0.75);
  transform: translateY(-1px);
}

#faqCategoryTabs .nav-link.active {
  box-shadow: 0 4px 12px rgba(18, 200, 190, 0.24);
  font-weight: 700;
}

@media (max-width: 767.98px) {
  #home.bg-half-170 {
    padding-top: 70px;
  }

  #faqCategoryTabs {
    gap: 0.35rem !important;
    justify-content: center !important;
  }

  #faqCategoryTabs .nav-link {
    font-size: 0.8rem;
    padding: 0.4rem 0.65rem;
  }

  #info .course-feature .card-body .title {
    font-size: 14px !important;
    line-height: 1.35;
  }

  #info .course-feature .card-body p {
    font-size: 0.875rem;
    line-height: 1.5;
  }

  #info .course-feature {
    height: 250px;
    padding-left: 0.75rem !important;
    padding-right: 0.75rem !important;
  }

  .bse-promo-panel {
    border-radius: 16px;
    padding: 24px 18px;
  }

  .bse-promo-panel__title,
  .bse-promo-panel__copy {
    text-align: center;
  }

  .bse-promo-panel__title {
    margin-bottom: 4px;
  }

  .bse-promo-panel__price {
    font-size: 1.5em;
    line-height: 1;
  }

  .bse-promo-panel__copy {
    line-height: 1.55;
    margin-bottom: 18px;
  }

  .bse-promo-panel__eyebrow {
    display: flex;
    margin-inline: auto;
    width: fit-content;
  }

  .btn.bse-promo-panel__action {
    display: block;
    width: 100%;
  }

  .business-poster-card {
    width: 92%;
  }
}

@media (max-width: 359.98px) {

  .bse-promo-countdown {
    padding: 16px 10px;
  }

  .bse-promo-countdown__grid {
    gap: 6px;
  }

  .bse-promo-countdown__unit {
    padding-inline: 3px;
  }

  #info .course-feature {
    height: 280px;
  }
}

@media (max-width: 991.98px) {
  .tg-cta-wrap {
    bottom: 16px;
  }

  .footer-with-mobile-cta .footer-bar {
    padding-bottom: calc(112px + env(safe-area-inset-bottom, 0px));
  }

  body .czm-fixed .czm-button,
  #back-to-top {
    bottom: calc(78px + env(safe-area-inset-bottom, 0px));
  }

  body .czm-fixed .czm-speech-bubble {
    transform: translateY(calc(-46px - env(safe-area-inset-bottom, 0px)));
  }

  body .czm-left .czm-speech-bubble {
    transform: translate(-20px, calc(-46px - env(safe-area-inset-bottom, 0px)));
  }

  body .czm-speech-bubble-show {
    transform: translateY(calc(-46px - env(safe-area-inset-bottom, 0px))) !important;
  }

  body .czm-left .czm-speech-bubble-show {
    transform: translate(0, calc(-46px - env(safe-area-inset-bottom, 0px))) !important;
  }
}

/* Contact and AI options below FAQ */
.contact-cta {
  background:
    radial-gradient(circle at 100% 0, rgba(18, 200, 190, 0.22), transparent 38%),
    linear-gradient(135deg, #0f1f31 0%, #153344 100%);
  border: 1px solid rgba(18, 200, 190, 0.28);
  border-radius: 18px;
  box-shadow: 0 24px 55px rgba(2, 12, 23, 0.28);
  overflow: hidden;
  padding: clamp(24px, 4vw, 46px);
  position: relative;
}

.contact-cta::after {
  border: 1px solid rgba(94, 234, 212, 0.09);
  border-radius: 50%;
  content: "";
  height: 220px;
  pointer-events: none;
  position: absolute;
  right: -95px;
  top: -115px;
  width: 220px;
}

.contact-cta__intro {
  align-items: flex-start;
  display: flex;
  gap: 18px;
  position: relative;
  z-index: 1;
}

.contact-cta__intro-icon {
  align-items: center;
  background: rgba(18, 200, 190, 0.14);
  border: 1px solid rgba(94, 234, 212, 0.32);
  border-radius: 16px;
  color: #5eead4;
  display: inline-flex;
  flex: 0 0 auto;
  font-size: 28px;
  height: 58px;
  justify-content: center;
  width: 58px;
}

.contact-cta__title {
  color: #ffffff;
  font-size: clamp(1.45rem, 2.4vw, 2rem);
  font-weight: 700;
  letter-spacing: -0.025em;
  line-height: 1.25;
  margin: 0 0 12px;
}

.contact-cta__text {
  color: #aebfd0;
  line-height: 1.7;
  margin: 0;
  max-width: 440px;
}

.contact-cta__actions {
  display: grid;
  gap: 14px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  position: relative;
  z-index: 1;
}

.contact-cta__actions--single {
  grid-template-columns: minmax(0, 1fr);
}

.contact-cta__option {
  align-items: center;
  border: 1px solid transparent;
  border-radius: 14px;
  display: grid;
  gap: 13px;
  grid-template-columns: 46px minmax(0, 1fr) auto;
  min-height: 104px;
  padding: 17px;
  text-align: left;
  transition: border-color 180ms ease, background-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.contact-cta__option:hover {
  transform: translateY(-3px);
}

.contact-cta__option:focus-visible {
  outline: 3px solid rgba(255, 255, 255, 0.75);
  outline-offset: 3px;
}

.contact-cta__option--agent {
  background: rgba(18, 200, 190, 0.1);
  border-color: rgba(94, 234, 212, 0.3);
  color: #ccfbf1;
}

.contact-cta__option--agent:hover,
.contact-cta__option--agent:focus {
  background: rgba(18, 200, 190, 0.18);
  border-color: rgba(94, 234, 212, 0.55);
  box-shadow: 0 14px 30px rgba(13, 148, 136, 0.16);
  color: #ffffff;
}

.contact-cta__option--ai {
  background: rgba(249, 115, 22, 0.1);
  border-color: rgba(251, 146, 60, 0.32);
  color: #ffedd5;
}

.contact-cta__option--ai:hover,
.contact-cta__option--ai:focus {
  background: rgba(249, 115, 22, 0.18);
  border-color: rgba(253, 186, 116, 0.58);
  box-shadow: 0 14px 30px rgba(234, 88, 12, 0.16);
  color: #ffffff;
}

.contact-cta__option-icon {
  align-items: center;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  display: inline-flex;
  font-size: 23px;
  height: 46px;
  justify-content: center;
  width: 46px;
}

.contact-cta__option-content {
  min-width: 0;
}

.contact-cta__option-content strong,
.contact-cta__option-content small {
  display: block;
}

.contact-cta__option-content strong {
  color: currentColor;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 6px;
}

.contact-cta__option-content small {
  color: #aebfd0;
  font-size: 0.78rem;
  line-height: 1.45;
}

.contact-cta__option-arrow {
  color: rgba(255, 255, 255, 0.55);
  font-size: 20px;
  transition: transform 180ms ease;
}

.contact-cta__option:hover .contact-cta__option-arrow {
  transform: translateX(3px);
}

@media (max-width: 1199.98px) {
  .contact-cta__actions {
    grid-template-columns: minmax(0, 1fr);
  }
}

@media (max-width: 575.98px) {
  .contact-cta {
    border-radius: 16px;
    padding: 24px 20px;
  }

  .contact-cta__intro {
    display: block;
    text-align: center;
  }

  .contact-cta__intro-icon {
    margin-bottom: 18px;
  }

  .contact-cta__text {
    margin-inline: auto;
  }

  .contact-cta__title {
    font-size: 1.45rem;
  }

  .contact-cta__option {
    gap: 12px;
    grid-template-columns: 44px minmax(0, 1fr) auto;
    min-height: 92px;
    padding: 15px;
  }

  .contact-cta__option-icon {
    font-size: 21px;
    height: 44px;
    width: 44px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .contact-cta__option,
  .contact-cta__option-arrow {
    transition: none;
  }
}

/* BeONE agent referral identity card */
.agent-referral-card {
  background: #102537;
  border: 1px solid rgba(18, 200, 190, 0.32);
  border-radius: 24px;
  box-shadow: 0 28px 65px rgba(3, 15, 27, 0.24);
  color: #ffffff;
  overflow: hidden;
}

.agent-referral-identity {
  background:
    radial-gradient(circle at 15% 12%, rgba(94, 234, 212, 0.24), transparent 30%),
    linear-gradient(145deg, #0b3c3c 0%, #0d615d 55%, #0b4445 100%);
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 560px;
  overflow: hidden;
  padding: clamp(34px, 5vw, 58px);
  position: relative;
}

.agent-referral-identity::before,
.agent-referral-identity::after {
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 50%;
  content: "";
  pointer-events: none;
  position: absolute;
}

.agent-referral-identity::before {
  height: 230px;
  right: -125px;
  top: -115px;
  width: 230px;
}

.agent-referral-identity::after {
  bottom: -105px;
  height: 190px;
  left: -100px;
  width: 190px;
}

.agent-referral-brand {
  color: #ccfbf1;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.13em;
  margin-bottom: 38px;
  position: relative;
  text-transform: uppercase;
  z-index: 1;
}

.agent-referral-avatar {
  align-items: center;
  background: linear-gradient(145deg, #ffffff, #d9fffa);
  border: 5px solid rgba(255, 255, 255, 0.19);
  border-radius: 50%;
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.17);
  color: #0c6964;
  display: inline-flex;
  font-size: 43px;
  height: 92px;
  justify-content: center;
  margin-bottom: 24px;
  overflow: hidden;
  position: relative;
  width: 92px;
  z-index: 1;
}

.agent-referral-avatar img {
  display: block;
  height: 100%;
  object-fit: cover;
  width: 100%;
}

.agent-referral-eyebrow,
.agent-referral-details-eyebrow {
  color: #76eee5;
  display: block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  margin-bottom: 7px;
  position: relative;
  text-transform: uppercase;
  z-index: 1;
}

.agent-referral-name {
  color: #ffffff;
  font-size: clamp(1.55rem, 3vw, 2.15rem);
  font-weight: 700;
  letter-spacing: -0.025em;
  line-height: 1.2;
  margin: 0;
  position: relative;
  z-index: 1;
}

.agent-referral-code-card {
  background: rgba(4, 31, 32, 0.36);
  border: 1px solid rgba(181, 255, 247, 0.22);
  border-radius: 15px;
  margin: 30px 0 16px;
  padding: 17px 19px;
  position: relative;
  z-index: 1;
}

.agent-referral-code-card span,
.agent-referral-code-card strong {
  display: block;
}

.agent-referral-code-card span {
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.11em;
  margin-bottom: 4px;
  text-transform: uppercase;
}

.agent-referral-code-card strong {
  color: #ffffff;
  font-family: Consolas, "Courier New", monospace;
  font-size: clamp(1.4rem, 3vw, 1.85rem);
  letter-spacing: 0.04em;
  overflow-wrap: anywhere;
}

.agent-referral-details {
  background:
    radial-gradient(circle at 100% 0, rgba(18, 200, 190, 0.13), transparent 35%),
    linear-gradient(135deg, #102537 0%, #142e40 100%);
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 560px;
  padding: clamp(34px, 5vw, 58px);
}

.agent-referral-qr-block {
  text-align: center;
}

.agent-referral-qr-label {
  color: #b6c9d6;
  display: block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  margin-bottom: 13px;
  text-transform: uppercase;
}

.agent-referral-qr-frame {
  align-items: center;
  background: #ffffff;
  border: 7px solid rgba(255, 255, 255, 0.16);
  border-radius: 20px;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.22);
  display: flex;
  justify-content: center;
  margin-inline: auto;
  min-height: 190px;
  overflow: hidden;
  padding: 13px;
  width: min(100%, 224px);
}

.agent-referral-qr-frame img {
  display: block;
  height: auto;
  max-width: 100%;
  object-fit: contain;
  width: 100%;
}

.agent-referral-qr-empty {
  align-items: center;
  color: #6f8795;
  display: flex;
  flex-direction: column;
  font-size: 0.75rem;
  gap: 7px;
}

.agent-referral-qr-empty i {
  color: #129f98;
  font-size: 58px;
}

.agent-referral-qr-code {
  background: #071a29;
  border-radius: 999px;
  color: #79efe6;
  display: inline-flex;
  font-family: Consolas, "Courier New", monospace;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  margin-top: 15px;
  padding: 7px 13px;
}

.agent-referral-details-title {
  color: #ffffff;
  font-size: clamp(1.35rem, 2.4vw, 1.8rem);
  font-weight: 700;
  letter-spacing: -0.025em;
  line-height: 1.28;
  margin: 0 0 13px;
}

.agent-referral-details-text {
  color: #afc0ce;
  font-size: 0.9rem;
  line-height: 1.7;
  margin-bottom: 20px;
}

.agent-referral-link-box {
  align-items: flex-start;
  background: rgba(4, 18, 29, 0.42);
  border: 1px solid rgba(155, 185, 203, 0.18);
  border-radius: 13px;
  color: #7ae9e1;
  display: flex;
  gap: 10px;
  margin-bottom: 18px;
  padding: 14px;
}

.agent-referral-link-box i {
  flex: 0 0 auto;
  font-size: 19px;
  line-height: 1.35;
}

.agent-referral-link-box code {
  color: #d9e8f1;
  font-size: 0.72rem;
  line-height: 1.55;
  overflow-wrap: anywhere;
  white-space: normal;
}

.agent-referral-actions {
  display: grid;
  gap: 10px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.agent-referral-btn {
  align-items: center;
  border: 1px solid transparent;
  border-radius: 11px;
  cursor: pointer;
  display: inline-flex;
  font-size: 0.82rem;
  font-weight: 700;
  justify-content: center;
  line-height: 1.35;
  min-height: 46px;
  padding: 11px 15px;
  text-align: center;
  transition: background-color 180ms ease, border-color 180ms ease, box-shadow 180ms ease, color 180ms ease, transform 180ms ease;
}

.agent-referral-btn:hover {
  transform: translateY(-2px);
}

.agent-referral-btn:focus-visible {
  outline: 3px solid rgba(255, 255, 255, 0.72);
  outline-offset: 3px;
}

.agent-referral-btn--outline {
  align-self: flex-start;
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(255, 255, 255, 0.34);
  color: #ffffff;
  position: relative;
  z-index: 1;
}

.agent-referral-btn--outline:hover,
.agent-referral-btn--outline:focus {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.58);
  color: #ffffff;
}

.agent-referral-btn--primary {
  background: #ff8a24;
  border-color: #ff8a24;
  color: #102030;
}

.agent-referral-btn--primary:hover,
.agent-referral-btn--primary:focus {
  background: #ff9d47;
  border-color: #ff9d47;
  box-shadow: 0 10px 24px rgba(255, 138, 36, 0.2);
  color: #102030;
}

.agent-referral-btn--secondary {
  background: rgba(18, 200, 190, 0.13);
  border-color: rgba(94, 234, 212, 0.36);
  color: #c8fff9;
}

.agent-referral-btn--secondary:hover,
.agent-referral-btn--secondary:focus,
.agent-referral-btn.is-copied {
  background: rgba(18, 200, 190, 0.24);
  border-color: rgba(94, 234, 212, 0.62);
  color: #ffffff;
}

.agent-referral-btn--whatsapp {
  background: rgba(37, 211, 102, 0.13);
  border-color: rgba(74, 222, 128, 0.38);
  color: #bbf7d0;
}

.agent-referral-btn--whatsapp:hover,
.agent-referral-btn--whatsapp:focus {
  background: rgba(37, 211, 102, 0.22);
  border-color: rgba(74, 222, 128, 0.62);
  color: #ffffff;
}

.agent-referral-action--wide {
  grid-column: 1 / -1;
}

@media (max-width: 991.98px) {
  .agent-referral-identity,
  .agent-referral-details {
    min-height: 0;
  }

  .agent-referral-identity {
    align-items: center;
    padding: 42px 34px;
    text-align: center;
  }

  .agent-referral-brand {
    margin-bottom: 28px;
  }

  .agent-referral-code-card {
    max-width: 380px;
    width: 100%;
  }

  .agent-referral-btn--outline {
    align-self: center;
  }

  .agent-referral-details {
    padding: 42px 34px;
  }
}

@media (max-width: 767.98px) {
  .agent-referral-details-eyebrow,
  .agent-referral-details-title,
  .agent-referral-details-text {
    text-align: center;
  }

  .agent-referral-details-eyebrow {
    margin-top: 6px;
  }

  .agent-referral-details-text {
    margin-inline: auto;
    max-width: 470px;
  }
}

@media (max-width: 575.98px) {
  .agent-referral-card {
    border-radius: 18px;
  }

  .agent-referral-identity,
  .agent-referral-details {
    padding: 32px 20px;
  }

  .agent-referral-avatar {
    font-size: 36px;
    height: 78px;
    width: 78px;
  }

  .agent-referral-name {
    font-size: 1.5rem;
  }

  .agent-referral-qr-frame {
    width: min(100%, 210px);
  }

  .agent-referral-btn {
    width: 100%;
  }
}

@media (prefers-reduced-motion: reduce) {
  .agent-referral-btn {
    transition: none;
  }
}

/* Website registration CTA */
.niagahub-web-cta-shell {
  border-radius: 24px;
}

.niagahub-web-cta {
  background:
    radial-gradient(circle at 8% 8%, rgba(94, 234, 212, 0.12), transparent 30%),
    linear-gradient(145deg, #0b3c3c 0%, #0d615d 55%, #0b4445 100%);
  border: 1px solid rgba(94, 234, 212, 0.28);
  border-radius: 24px;
  box-shadow: 0 24px 54px rgba(3, 21, 27, 0.25);
  overflow: hidden;
  padding: clamp(32px, 5vw, 54px);
  position: relative;
}

.niagahub-web-cta::before,
.niagahub-web-cta::after {
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 50%;
  content: "";
  pointer-events: none;
  position: absolute;
}

.niagahub-web-cta::before {
  height: 230px;
  right: -115px;
  top: -135px;
  width: 230px;
}

.niagahub-web-cta::after {
  bottom: -120px;
  height: 200px;
  left: -105px;
  width: 200px;
}

.niagahub-web-cta__content,
.niagahub-web-cta__action-wrap {
  position: relative;
  z-index: 1;
}

.niagahub-web-cta__eyebrow {
  color: #76eee5;
  display: block;
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.13em;
  margin-bottom: 10px;
  text-transform: uppercase;
}

.niagahub-web-cta__title {
  color: #ffffff;
  font-size: clamp(1.55rem, 3vw, 2rem);
  font-weight: 700;
  letter-spacing: -0.025em;
  line-height: 1.25;
  margin: 0 0 11px;
}

.niagahub-web-cta__text {
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.65;
  margin: 0;
}

.btn.niagahub-web-cta__action {
  align-items: center;
  background: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.82);
  border-radius: 12px;
  box-shadow: 0 12px 28px rgba(3, 28, 30, 0.2);
  color: #0c625f;
  display: inline-flex;
  font-size: 0.95rem;
  font-weight: 700;
  gap: 8px;
  justify-content: center;
  min-height: 52px;
  padding-inline: 24px;
  transition: background-color 180ms ease, border-color 180ms ease, box-shadow 180ms ease, color 180ms ease, transform 180ms ease;
}

.btn.niagahub-web-cta__action:hover,
.btn.niagahub-web-cta__action:focus {
  background: #ddfffa;
  border-color: #ddfffa;
  box-shadow: 0 15px 32px rgba(3, 28, 30, 0.28);
  color: #084c4a;
  transform: translateY(-2px);
}

.btn.niagahub-web-cta__action:focus-visible {
  outline: 3px solid rgba(255, 255, 255, 0.7);
  outline-offset: 3px;
}

@media (max-width: 767.98px) {
  .niagahub-web-cta-shell,
  .niagahub-web-cta {
    border-radius: 20px;
  }

  .niagahub-web-cta {
    padding: 34px 24px;
  }

  .btn.niagahub-web-cta__action {
    width: 100%;
  }
}

@media (prefers-reduced-motion: reduce) {
  .btn.niagahub-web-cta__action {
    transition: none;
  }
}

/* Self-registration preparation and referral guide */
.self-registration-ready-grid > [class*="col-"] {
  display: flex;
}

.self-registration-ready-card {
  --ready-accent: #12c8be;
  background:
    radial-gradient(circle at 100% 0, color-mix(in srgb, var(--ready-accent) 15%, transparent), transparent 38%),
    linear-gradient(145deg, rgba(18, 42, 58, 0.96), rgba(15, 34, 49, 0.96));
  border: 1px solid color-mix(in srgb, var(--ready-accent) 38%, transparent);
  border-radius: 18px;
  box-shadow: 0 18px 38px rgba(3, 15, 27, 0.16);
  display: flex;
  flex-direction: column;
  min-height: 238px;
  overflow: hidden;
  padding: 24px 20px 22px;
  position: relative;
  transition: border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
  width: 100%;
}

.self-registration-ready-card::after {
  color: color-mix(in srgb, var(--ready-accent) 14%, transparent);
  content: attr(data-step);
  font-size: 4rem;
  font-weight: 800;
  line-height: 1;
  position: absolute;
  right: 12px;
  top: 12px;
}

.self-registration-ready-card:hover {
  border-color: color-mix(in srgb, var(--ready-accent) 64%, transparent);
  box-shadow: 0 22px 44px color-mix(in srgb, var(--ready-accent) 12%, transparent);
  transform: translateY(-4px);
}

.self-registration-ready-card--blue {
  --ready-accent: #39bdf8;
}

.self-registration-ready-card--orange {
  --ready-accent: #ff942f;
}

.self-registration-ready-card--green {
  --ready-accent: #4ade80;
}

.self-registration-ready-icon {
  align-items: center;
  background: color-mix(in srgb, var(--ready-accent) 13%, transparent);
  border: 1px solid color-mix(in srgb, var(--ready-accent) 34%, transparent);
  border-radius: 14px;
  color: var(--ready-accent);
  display: inline-flex;
  font-size: 27px;
  height: 56px;
  justify-content: center;
  margin-bottom: 22px;
  position: relative;
  width: 56px;
  z-index: 1;
}

.self-registration-ready-card h6 {
  color: #ffffff;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.35;
  margin: 0 0 8px;
  position: relative;
  z-index: 1;
}

.self-registration-ready-card p {
  color: #aebfcd;
  font-size: 0.84rem;
  line-height: 1.62;
  margin: 0;
  position: relative;
  z-index: 1;
}

.self-registration-referral-card .agent-referral-identity,
.self-registration-referral-card .agent-referral-details {
  min-height: 510px;
}

.self-registration-referral-guide {
  display: grid;
  gap: 10px;
  margin: 0 0 22px;
}

.self-registration-referral-guide span {
  align-items: center;
  background: rgba(4, 18, 29, 0.34);
  border: 1px solid rgba(155, 185, 203, 0.14);
  border-radius: 10px;
  color: #d7e5ed;
  display: flex;
  font-size: 0.8rem;
  gap: 9px;
  line-height: 1.45;
  padding: 10px 12px;
}

.self-registration-referral-guide i {
  color: #6ee7df;
  flex: 0 0 auto;
  font-size: 20px;
}

.self-registration-referral-warning {
  align-items: flex-start;
  background: rgba(255, 138, 36, 0.1);
  border: 1px solid rgba(255, 148, 47, 0.34);
  border-radius: 11px;
  color: #ffd2a8;
  display: flex;
  font-size: 0.8rem;
  gap: 9px;
  line-height: 1.5;
  padding: 12px 14px;
}

.self-registration-referral-warning i {
  color: #ff942f;
  flex: 0 0 auto;
  font-size: 19px;
}

@media (max-width: 991.98px) {
  .self-registration-ready-card {
    min-height: 220px;
  }

  .self-registration-referral-card .agent-referral-identity,
  .self-registration-referral-card .agent-referral-details {
    min-height: 0;
  }
}

@media (max-width: 575.98px) {
  .self-registration-ready-grid {
    --bs-gutter-x: 0.65rem;
    --bs-gutter-y: 0.65rem;
  }

  .self-registration-ready-card {
    border-radius: 14px;
    min-height: 165px;
    padding: 14px 12px;
  }

  .self-registration-ready-icon {
    border-radius: 12px;
    font-size: 23px;
    height: 48px;
    margin-bottom: 12px;
    width: 48px;
  }

  .self-registration-ready-card h6 {
    font-size: 0.84rem;
  }

  .self-registration-ready-card p {
    font-size: 0.75rem;
    line-height: 1.5;
  }

  .self-registration-referral-card .agent-referral-details {
    padding-inline: 18px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .self-registration-ready-card {
    transition: none;
  }
}

/* Optional mascot for inner-page hero */
.page-title-bear {
  bottom: -5px;
  height: auto;
  left: 50%;
  max-width: min(270px, 34vw);
  pointer-events: none;
  position: absolute;
  transform: translateX(-50%);
  width: 270px;
  z-index: 4;
}

.page-one-bg--with-bear .pages-heading {
  position: relative;
  z-index: 2;
}

.page-one-bg--with-bear .position-breadcrumb {
  z-index: 3;
}

@media (max-width: 767.98px) {
  .page-title-bear {
    bottom: 2px;
    max-width: 190px;
    width: 48vw;
  }
}

/* Compact homepage bridge from SIM purchase to self registration */
.self-registration-home-cta-section {
  padding-block: clamp(34px, 4vw, 56px);
}

.self-registration-home-cta {
  align-items: center;
  background:
    radial-gradient(circle at 100% 0, rgba(18, 200, 190, 0.2), transparent 34%),
    linear-gradient(135deg, #11293a 0%, #102536 100%);
  border: 1px solid rgba(18, 200, 190, 0.48);
  border-radius: 22px;
  box-shadow: 0 24px 50px rgba(3, 15, 25, 0.24);
  display: grid;
  gap: 28px;
  grid-template-columns: minmax(0, 1fr) auto;
  overflow: hidden;
  padding: 28px 32px;
  position: relative;
}

.self-registration-home-cta::after {
  border: 1px solid rgba(117, 245, 237, 0.12);
  border-radius: 50%;
  content: "";
  height: 150px;
  pointer-events: none;
  position: absolute;
  right: -70px;
  top: -88px;
  width: 150px;
}

.self-registration-home-cta__content {
  min-width: 0;
  position: relative;
  z-index: 1;
}

.self-registration-home-cta__eyebrow {
  color: #ff9a3d;
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  margin-bottom: 7px;
  text-transform: uppercase;
}

.self-registration-home-cta h2 {
  color: #ffffff;
  font-size: clamp(1.35rem, 2.1vw, 1.85rem);
  font-weight: 700;
  line-height: 1.25;
  margin: 0 0 8px;
}

.self-registration-home-cta p {
  color: #b9c9d4;
  font-size: 0.93rem;
  line-height: 1.65;
  margin: 0;
  max-width: 680px;
}

.self-registration-home-cta__action {
  position: relative;
  z-index: 1;
}

.self-registration-home-cta__button,
.self-registration-home-cta__button:hover,
.self-registration-home-cta__button:focus {
  background: #ff922f;
  border-color: #ff922f;
  box-shadow: 0 12px 26px rgba(255, 146, 47, 0.24);
  color: #ffffff;
}

.self-registration-home-cta__button {
  align-items: center;
  border-radius: 10px;
  display: inline-flex;
  font-size: 0.9rem;
  font-weight: 700;
  justify-content: center;
  min-height: 48px;
  padding: 11px 20px;
  white-space: nowrap;
}

.self-registration-home-cta__button:hover,
.self-registration-home-cta__button:focus {
  background: #ff8517;
  border-color: #ff8517;
  transform: translateY(-2px);
}

@media (max-width: 991.98px) {
  .self-registration-home-cta {
    gap: 20px;
    grid-template-columns: minmax(0, 1fr) auto;
    padding: 26px;
  }
}

@media (max-width: 767.98px) {
  .self-registration-home-cta-section {
    padding-block: 30px;
  }

  .self-registration-home-cta {
    display: block;
    margin-inline: auto;
    max-width: 430px;
    padding: 24px 20px;
    text-align: center;
  }

  .self-registration-home-cta h2 {
    font-size: 1.3rem;
  }

  .self-registration-home-cta p {
    font-size: 0.86rem;
    line-height: 1.6;
  }

  .self-registration-home-cta__action {
    margin-top: 18px;
    width: 100%;
  }

  .self-registration-home-cta__button {
    max-width: 290px;
    width: 100%;
  }
}
