:root {
  --primary: #9873b9;
  --primary-dark: #714288;
  --primary-deep: #58316e;
  --primary-soft: #f3edf8;
  --brand-blue: #1d438f;
  --brand-gold: #ecd28d;
  --ink: #292c35;
  --body: #414244;
  --muted: #777984;
  --line: #e7e1eb;
  --white: #fff;
  --green: #54c85a;
  --shadow: 0 18px 50px rgba(47, 29, 61, .13);
  --container: 91.666667%;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--body);
  background: #fff;
  font-family: Arial, "Noto Sans", sans-serif;
  font-size: 17px;
  line-height: 1.55;
}

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

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

button,
input,
textarea {
  font: inherit;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.container {
  width: var(--container);
  margin-inline: auto;
}

.site-header {
  position: relative;
  z-index: 50;
  min-height: 100px;
  background: #fff;
}

.site-header.overlay {
  position: absolute;
  inset: 0 0 auto;
  color: #fff;
  background: transparent;
}

.site-header.gradient {
  color: #fff;
  background: linear-gradient(135deg, #ac7cdb, #714288);
}

.nav-wrap {
  width: var(--container);
  min-height: 100px;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 13px;
  flex: 0 0 auto;
}

.brand-logo {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
}

.brand-logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.brand-copy {
  color: var(--brand-blue);
  font-size: 30px;
  font-weight: 800;
  line-height: 1;
  letter-spacing: .02em;
}

.gradient .brand-copy,
.overlay .brand-copy {
  color: #fff;
}

.brand-copy small {
  display: block;
  margin-top: 8px;
  color: var(--primary-dark);
  font-size: 9px;
  font-weight: 600;
  letter-spacing: .17em;
}

.gradient .brand-copy small,
.overlay .brand-copy small {
  color: rgba(255, 255, 255, .72);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 27px;
  margin-left: auto;
}

.nav-links a {
  position: relative;
  padding: 11px 2px 8px;
  white-space: nowrap;
}

.nav-links a::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 2px;
  content: "";
  background: var(--primary);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform .2s ease;
}

.gradient .nav-links a::after,
.overlay .nav-links a::after {
  background: rgba(255, 255, 255, .72);
}

.nav-links a:hover::after,
.nav-links a.active::after {
  transform: scaleX(1);
}

.language-toggle,
.menu-toggle {
  width: 36px;
  height: 36px;
  border: 0;
  border-radius: 50%;
  color: #fff;
  background: var(--primary);
  cursor: pointer;
}

.menu-toggle {
  display: none;
  font-size: 21px;
}

.home-hero {
  position: relative;
  height: 1466px;
  padding: 190px 0 0;
  color: #fff;
  overflow: hidden;
}

.home-hero::before {
  position: absolute;
  top: -20%;
  right: 0;
  bottom: -20%;
  left: 0;
  content: "";
  background: url("assets/images/banner/back01.png") center / cover no-repeat;
  pointer-events: none;
}

.home-hero::after {
  position: absolute;
  inset: 0;
  content: "";
  background: rgba(9, 13, 23, .06);
  pointer-events: none;
}

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

.hero-top {
  display: grid;
  grid-template-columns: 56% 41.4%;
  align-items: start;
  gap: 2.6%;
}

.video-frame {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  border: 2px solid rgba(15, 23, 42, .75);
  border-radius: 12px;
  background: #090b11;
  box-shadow: 0 10px 22px rgba(0, 0, 0, .24);
  overflow: hidden;
}

.video-frame iframe {
  position: absolute;
  inset: 0;
  z-index: 3;
  width: 100%;
  height: 100%;
  border: 0;
  opacity: 0;
  transition: opacity .35s ease;
}

.video-frame.loaded iframe {
  opacity: 1;
}

.video-poster {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: opacity .35s ease;
}

.video-frame.loaded .video-poster,
.video-frame.loaded .video-play,
.video-frame.loaded .video-status {
  opacity: 0;
  pointer-events: none;
}

.video-play {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 2;
  width: 78px;
  height: 78px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, .72);
  border-radius: 50%;
  color: #fff;
  background: rgba(113, 66, 136, .86);
  box-shadow: 0 14px 35px rgba(0, 0, 0, .28);
  cursor: pointer;
  transform: translate(-50%, -50%);
  transition: background .2s ease, transform .2s ease, opacity .35s ease;
}

.video-play:hover {
  background: var(--primary);
  transform: translate(-50%, -50%) scale(1.05);
}

.video-play span {
  width: 0;
  height: 0;
  margin-left: 6px;
  border-top: 13px solid transparent;
  border-bottom: 13px solid transparent;
  border-left: 20px solid #fff;
}

.video-status {
  position: absolute;
  right: 16px;
  bottom: 14px;
  z-index: 2;
  padding: 5px 10px;
  border-radius: 99px;
  color: rgba(255, 255, 255, .9);
  background: rgba(8, 10, 16, .58);
  font-size: 12px;
  transition: opacity .35s ease;
}

.hero-copy {
  padding-top: 0;
}

.hero-copy h1 {
  margin: 0 0 14px;
  color: #fff;
  font-size: 52.5px;
  font-weight: 600;
  line-height: 1.3;
}

.hero-copy p {
  margin: 0 0 24px;
  color: #e3e3e3;
  font-family: "Noto Sans", Arial, sans-serif;
  font-size: 23.625px;
  font-weight: 300;
  line-height: 1.5;
}

.transactions-panel {
  margin-top: 16px;
  padding: 0 0 10px;
}

.transactions-title {
  margin: 0 0 9px;
  font-size: 17px;
  font-weight: 500;
}

.transactions-title::before {
  margin-right: 8px;
  content: "✧";
}

.transaction-shell {
  border-radius: 11px;
  background: rgba(22, 26, 35, .5);
  box-shadow: 0 16px 45px rgba(0, 0, 0, .18);
  backdrop-filter: blur(9px);
  overflow: hidden;
}

.transaction-grid {
  display: grid;
  grid-template-columns: 1fr 1fr .75fr 1.25fr;
  align-items: center;
  min-width: 760px;
}

.transaction-head {
  height: 39px;
  padding-inline: 14px;
  color: #fff;
  background: rgba(255, 255, 255, .48);
  font-size: 14px;
}

.transaction-viewport {
  position: relative;
  height: 310px;
  min-width: 760px;
  overflow: hidden;
}

.transaction-rows {
  position: absolute;
  inset: 0 0 auto;
  will-change: transform;
}

.transaction-row {
  height: 48px;
  padding-inline: 14px;
  border-bottom: 1px solid rgba(255, 255, 255, .14);
  color: rgba(255, 255, 255, .95);
}

.transaction-row span {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.why-section {
  height: 632px;
  padding: 22px 0 0;
}

.section-heading {
  margin: 0;
  padding-bottom: 10px;
  color: var(--primary-dark);
  font-size: 42px;
  line-height: 1.5;
  text-align: center;
}

.section-lead {
  max-width: none;
  margin: 0 auto 112px;
  color: var(--primary-dark);
  font-size: 22px;
  font-weight: 300;
  text-align: center;
}

.benefits {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  width: 75%;
  margin: auto;
  gap: 14px;
}

.benefit {
  padding: 0 24px;
  text-align: center;
}

.benefit img {
  width: 80px;
  margin: 0 auto 24px;
}

.benefit h3 {
  margin: 0 0 40px;
  color: #242d5b;
  font-size: 19.25px;
  font-weight: 400;
}

.benefit p {
  margin: 0;
  color: #414244;
  font-size: 15.75px;
  line-height: 1.6;
}

.feature-details {
  height: 1905px;
  overflow: hidden;
}

.content-container {
  width: 85%;
  height: 100%;
  margin-inline: auto;
}

.feature-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
}

.feature-one {
  height: 590px;
}

.feature-two {
  height: 352px;
}

.feature-three {
  height: 963px;
}

.feature-row img {
  justify-self: start;
}

.feature-one img {
  width: 72.75%;
  align-self: start;
  margin-top: 30px;
}

.feature-two > img {
  width: 43.6%;
  align-self: start;
}

.feature-three img {
  width: 100%;
  align-self: start;
}

.feature-copy {
  align-self: center;
}

.feature-copy h2 {
  margin: 0 0 48px;
  color: #242d5b;
  font-size: 58px;
  font-weight: 500;
  line-height: 1.2;
}

.feature-copy p {
  width: 85%;
  margin: 0;
  color: #242d5b;
  font-size: 18px;
  line-height: 1.4;
}

.page-banner {
  min-height: 423px;
  display: grid;
  place-items: center;
  color: #fff;
  background: url("assets/images/banner/back_contact.png") center / cover no-repeat;
}

.page-banner h1 {
  margin: 0;
  padding-top: 35px;
  font-size: 63px;
  letter-spacing: .02em;
}

.page-banner h1::after {
  display: block;
  width: 98px;
  height: 4px;
  margin: 15px auto 0;
  content: "";
  border-radius: 99px;
  background: #fff;
}

.form-section {
  height: 754px;
  padding: 42px 0 50px;
}

.form-wrap {
  max-width: 1266px;
  margin: auto;
}

.form-wrap h2 {
  margin: 0;
  color: #8360a4;
  font-size: 26.25px;
}

.form-wrap p {
  max-width: 1260px;
  margin-top: 0;
}

.feedback-form {
  display: grid;
  gap: 28px;
  margin-top: 38px;
}

.feedback-form input,
.feedback-form textarea {
  width: 100%;
  height: 41px;
  padding: 7px;
  border: 1px solid #ab8bca;
  outline: none;
  transition: box-shadow .2s, border-color .2s;
}

.feedback-form input:focus,
.feedback-form textarea:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 4px rgba(152, 112, 187, .12);
}

.feedback-form textarea {
  height: 266px;
  min-height: 265px;
  resize: vertical;
}

.primary-button {
  min-width: 317px;
  justify-self: center;
  padding: 10px;
  border: 1px solid var(--primary);
  color: #fff;
  background: var(--primary);
  cursor: pointer;
  transition: background .2s, transform .2s;
}

.primary-button:hover {
  background: var(--primary-dark);
  transform: translateY(-2px);
}

.support-header .nav-wrap {
  width: 85%;
}

.support-hero {
  min-height: 1440px;
  margin-top: -50px;
  padding: 422px 0 95px;
  background: #f8fafc;
  overflow: hidden;
}

.support-title {
  margin: 0;
  color: #222936;
  font-size: 63px;
  line-height: 1;
  text-align: center;
}

.support-title strong {
  color: var(--primary);
}

.support-subtitle {
  max-width: 672px;
  margin: 14px auto 28px;
  padding: 0 14px;
  color: #4b5563;
  font-size: 21px;
  line-height: 28px;
  text-align: center;
}

.support-badges {
  display: flex;
  justify-content: center;
  gap: 14px;
  margin-bottom: 56px;
}

.support-badges span {
  padding: 10px 24px;
  border-radius: 99px;
  color: var(--primary-dark);
  background: var(--primary-soft);
  font-size: 14px;
}

.support-stage {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: start;
  max-width: 1008px;
  margin: auto;
  gap: 56px;
}

.radar {
  position: relative;
  width: 336px;
  aspect-ratio: 1;
  margin: auto;
  display: grid;
  place-items: center;
  border: 2px solid rgba(168, 85, 247, .16);
  border-radius: 50%;
}

.radar::before,
.radar::after {
  position: absolute;
  content: "";
  border: 2px solid rgba(152, 112, 187, .3);
  border-radius: 50%;
}

.radar::before {
  width: 70%;
  height: 70%;
}

.radar::after {
  width: 43%;
  height: 43%;
}

.radar-button {
  position: relative;
  z-index: 2;
  width: 101px;
  height: 101px;
  display: grid;
  place-items: center;
  border: 0;
  border-radius: 50%;
  color: #fff;
  background: #22c55e;
  box-shadow: 0 18px 40px rgba(34, 197, 94, .32);
  font-size: 44px;
  cursor: pointer;
  animation: whatsapp-pulse 2.4s ease-in-out infinite;
}

.radar-button img,
.whatsapp-float img {
  width: 58%;
  height: 58%;
}

.support-side {
  width: 462px;
  padding-top: 22px;
}

.support-card {
  width: 392px;
  min-height: 181px;
  margin: 0 auto;
  padding: 21px;
  border: 1px solid #d1d5db;
  border-radius: 14px;
  background: #fff;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, .1), 0 4px 6px -4px rgba(0, 0, 0, .1);
  transition: border-color .3s ease, box-shadow .3s ease, transform .3s ease;
}

.support-card:hover {
  border-color: #c084fc;
  background: linear-gradient(90deg, #faf5ff, #fff, #fdf4ff);
  box-shadow: 0 18px 34px rgba(152, 115, 185, .18);
  transform: translateY(-4px);
}

.support-card-inner {
  display: flex;
  align-items: center;
  gap: 21px;
}

.support-avatar {
  width: 70px;
  height: 70px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  border-radius: 50%;
  background: #252136;
  box-shadow: 0 8px 20px rgba(36, 30, 53, .22);
}

.support-avatar img {
  width: 52px;
  height: 52px;
  object-fit: contain;
}

.support-card-content {
  flex: 1;
}

.support-card h2 {
  margin: 0 0 7px;
  color: #111827;
  font-size: 17.5px;
  line-height: 24.5px;
  text-align: left;
}

.support-number {
  margin-bottom: 10.5px;
  color: #4b5563;
  font-size: 14px;
  line-height: 21px;
}

.status {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  margin: 0 0 10px;
  color: #4ade80;
  font-size: 12.25px;
  line-height: 17.5px;
}

.status::before {
  width: 10px;
  height: 10px;
  content: "";
  border-radius: 50%;
  background: #a7abb5;
}

.status.online::before {
  background: #86efac;
  box-shadow: none;
}

.support-chat-button {
  width: 100%;
  height: 48px;
  display: grid;
  place-items: center;
  border-radius: 6px;
  color: #fff;
  background: var(--primary);
  font-size: 14px;
  transition: background .2s ease, transform .2s ease;
}

.support-chat-button:hover {
  background: var(--primary-dark);
  transform: translateY(-1px);
}

.support-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  width: 432px;
  gap: 44px;
  margin: 43px auto 0;
}

.support-stat {
  min-height: 91px;
  padding: 16px;
  border-radius: 11px;
  background: #f1fbf1;
  text-align: center;
}

.support-stat:nth-child(2) {
  background: #f8f2fc;
}

.support-stat strong {
  display: block;
  color: #58a34c;
  font-size: 26px;
}

@keyframes whatsapp-pulse {
  0%,
  100% {
    transform: scale(1);
    box-shadow: 0 18px 40px rgba(34, 197, 94, .28);
  }
  50% {
    transform: scale(1.07);
    box-shadow: 0 22px 48px rgba(34, 197, 94, .4);
  }
}

.support-stat:nth-child(2) strong {
  color: #8b47d0;
}

.reward-page {
  min-height: 2275px;
  padding: 50px 0 20px;
}

.reward {
  position: relative;
}

.reward-brand {
  height: 48px;
  display: inline-flex;
  align-items: center;
  gap: 11px;
}

.reward-brand .brand-logo {
  width: 48px;
  height: 48px;
}

.reward-brand .brand-logo img {
  width: 100%;
}

.reward-brand .brand-copy {
  font-size: 31px;
}

.reward > h1 {
  margin: 5px 0 42px;
  color: var(--primary);
  font-size: 31.5px;
  line-height: 1.5;
}

.reward-tab {
  position: absolute;
  top: 121px;
  right: 0;
  min-width: 257px;
  padding: 11px 22px;
  border-radius: 11px 11px 0 0;
  color: #fff;
  background: #7d58a0;
  text-align: center;
}

.reward hr {
  height: 1px;
  margin: 0 0 45px;
  border: 0;
  background: #e5e7eb;
}

.reward > h2 {
  margin: 0 0 28px;
  color: #8360a4;
  font-size: 26.25px;
  line-height: 1.2;
}

.reward-list {
  margin: 0 0 94.5px;
  padding-left: 28px;
}

.reward-list li {
  margin: 0 0 52.5px;
  padding-left: 0;
  font-size: 17.5px;
  line-height: 1.5;
}

.en-line,
.zh-line {
  display: block;
}

.zh-line {
  margin-top: 4px;
  color: inherit;
}

html[lang="en"] .zh-line,
html[lang="zh-CN"] .en-line {
  display: none;
}

html[lang="zh-CN"] .zh-line {
  margin-top: 0;
}

.calculation {
  margin-top: 14px;
  padding: 14px;
  border-radius: 10px;
  background: #f1eaf7;
}

.calculation strong {
  display: block;
  margin: 0;
  font-weight: 400;
}

.calculation > span {
  display: block;
  padding: 7px;
  background: #fff;
}

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

.reward-check h2 {
  margin: 0 0 28px;
  color: #414244;
  font-size: 26.25px;
  line-height: 1.5;
}

.reward-instructions {
  font-size: 17.5px;
  line-height: 1.5;
  text-align: left;
}

.reward-instructions p {
  margin: 0 0 14px;
}

.reward-instructions p:first-child {
  margin-bottom: 27px;
}

.reward-query-link {
  display: block;
  width: max-content;
  margin: 0 0 114px 28px;
  padding: 0 3.5px;
  color: #fff;
  background: #8a67a8;
  line-height: normal;
}

.reward-query-link .en-line,
.reward-query-link .zh-line {
  display: inline;
}

.reward-sample {
  width: 68.35%;
  margin: 0 0 22.5px 28px;
}

.footer {
  height: 305px;
  padding: 54px 20px 0;
  color: #fff;
  background: var(--primary-dark);
  text-align: center;
}

.footer h3 {
  margin: 0 0 24px;
  font-size: 17.5px;
  font-weight: 400;
}

.footer p {
  margin: 0 0 32px;
  color: rgba(255, 255, 255, .72);
  font-size: 20px;
  font-weight: 300;
}

.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  color: #fff;
  text-align: left;
}

.footer-brand img {
  width: 54px;
  height: 54px;
  object-fit: contain;
}

.footer-brand > span {
  font-size: 30px;
  font-weight: 800;
  line-height: 1;
  letter-spacing: .02em;
}

.footer-brand small {
  display: block;
  margin-top: 7px;
  color: rgba(255, 255, 255, .68);
  font-size: 8px;
  font-weight: 600;
  letter-spacing: .16em;
}

.whatsapp-float {
  position: fixed;
  right: 28px;
  bottom: 28px;
  z-index: 60;
  width: 70px;
  height: 70px;
  display: grid;
  place-items: center;
  border: 5px solid rgba(255, 255, 255, .86);
  border-radius: 50%;
  color: #fff;
  background: var(--green);
  box-shadow: 0 12px 30px rgba(40, 130, 52, .32);
  font-size: 34px;
}

@media (max-width: 920px) {
  body {
    font-size: 16px;
  }

  .site-header,
  .nav-wrap {
    min-height: 78px;
  }

  .brand-logo {
    width: 48px;
    height: 48px;
  }

  .brand-logo img {
    width: 100%;
  }

  .brand-copy {
    font-size: 25px;
  }

  .menu-toggle {
    display: grid;
    place-items: center;
  }

  .nav-links {
    position: absolute;
    top: 77px;
    right: 4vw;
    left: 4vw;
    display: none;
    margin-left: 0;
    padding: 20px;
    border: 1px solid var(--line);
    border-radius: 12px;
    color: var(--ink);
    background: #fff;
    box-shadow: var(--shadow);
  }

  .nav-links.open {
    display: grid;
  }

  .nav-links a {
    padding: 10px;
  }

  .language-toggle {
    position: absolute;
    right: 58px;
    top: 21px;
  }

  .home-hero {
    height: auto;
    min-height: 1080px;
    padding-top: 110px;
  }

  .hero-top {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .hero-copy h1 {
    font-size: 38px;
  }

  .hero-copy p {
    font-size: 18px;
  }

  .transactions-panel {
    margin-top: 28px;
  }

  .transaction-viewport {
    height: 336px;
  }

  .benefits,
  .support-stage {
    grid-template-columns: 1fr;
  }

  .why-section,
  .feature-details {
    height: auto;
    padding: 70px 0;
  }

  .section-lead {
    margin-bottom: 55px;
  }

  .benefits {
    width: 100%;
    gap: 55px;
  }

  .benefit h3 {
    margin-bottom: 16px;
  }

  .feature-row {
    height: auto;
    grid-template-columns: 1fr;
    gap: 34px;
    margin-bottom: 85px;
  }

  .feature-two img {
    order: 2;
  }

  .feature-copy h2 {
    margin-bottom: 22px;
    font-size: 40px;
  }

  .feature-one img,
  .feature-two > img,
  .feature-three img {
    width: min(100%, 720px);
    margin: 0;
  }

  .support-hero {
    min-height: 0;
    padding: 86px 0 70px;
  }

  .support-title {
    font-size: 31.5px;
    line-height: 1.5;
  }

  .support-badges {
    margin-bottom: 50px;
  }

  .radar {
    order: 2;
    width: min(82vw, 336px);
  }

  .support-stage {
    gap: 35px;
  }

  .support-side {
    order: 1;
    width: 100%;
    padding-top: 0;
  }

  .support-card {
    width: min(100%, 392px);
  }

  .support-stats {
    width: min(100%, 432px);
    gap: 14px;
  }

  .reward-page {
    min-height: 0;
  }

  .reward-tab {
    display: none;
  }

  .reward-sample {
    width: 100%;
    margin-left: 0;
  }
}

@media (max-width: 620px) {
  :root {
    --container: min(92vw, 560px);
  }

  .brand-copy small {
    display: none;
  }

  .brand-copy {
    font-size: 22px;
  }

  .home-hero {
    background-position: 65% center;
  }

  .transactions-title {
    font-size: 14px;
  }

  .transaction-shell {
    overflow-x: auto;
  }

  .section-lead {
    margin-bottom: 38px;
  }

  .benefit {
    padding: 34px 24px;
  }

  .page-banner {
    min-height: 340px;
  }

  .form-section {
    height: auto;
  }

  .footer {
    height: auto;
    min-height: 305px;
  }

  .support-badges {
    justify-content: flex-start;
    flex-wrap: nowrap;
    overflow-x: auto;
    scrollbar-width: none;
  }

  .support-badges::-webkit-scrollbar {
    display: none;
  }

  .support-badges span {
    flex: 0 0 auto;
  }

  .support-subtitle {
    font-size: 17px;
  }

  .support-card {
    padding: 21px;
  }

  .support-card-inner {
    gap: 16px;
  }

  .support-avatar {
    width: 72px;
    height: 72px;
  }

  .support-hero {
    padding-bottom: 0;
  }

  .support-stage {
    gap: 0;
  }

  .radar {
    width: 224px;
  }

  .support-page .footer {
    height: 366px;
    min-height: 366px;
  }

  .primary-button {
    width: 100%;
    min-width: 0;
  }

  .whatsapp-float {
    right: 18px;
    bottom: 18px;
    width: 62px;
    height: 62px;
  }
}
