@charset "UTF-8";
* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Roboto", "Noto Sans TC", sans-serif;
  background-image: url("../images/body-bg.svg");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center top;
}

body.is-lock {
  overflow: hidden;
}

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

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

button {
  font: inherit;
}

section {
  scroll-margin-top: 70px;
}

.br-mobile {
  display: none;
}

.br-desktop {
  display: inline;
}

.container {
  width: min(1200px, 100% - 80px);
  margin: 0 auto;
  position: relative;
}

.ball {
  position: absolute;
  width: 150px;
  height: 150px;
  left: -8%;
  bottom: 5%;
  z-index: -1;
}

.bg-welcome {
  position: absolute;
  width: 100%;
  max-width: 1280px;
  left: 50%;
  transform: translateX(-50%);
  top: -35%;
  z-index: -2;
}

.gift {
  position: absolute;
  width: 135px;
  right: 12%;
  top: -5%;
  z-index: -1;
}

.header {
  position: fixed;
  z-index: 100;
  inset: 0 0 auto;
  height: 70px;
  background: #ffffff;
}
.header__inner {
  width: min(1360px, 100% - 80px);
  height: 100%;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.header__logo {
  display: flex;
  align-items: center;
  gap: 16px;
}
.header__logo img {
  display: block;
  height: 34px;
  width: auto;
}
.header__logo span {
  width: 1px;
  height: 34px;
  background: #231815;
  flex-shrink: 0;
}
.header__nav {
  display: flex;
  align-items: center;
  gap: 16px;
}
.header__nav a {
  color: #333333;
  font-size: 18px;
  font-weight: 400;
  letter-spacing: 1.17px;
}
.header__nav span {
  width: 1px;
  height: 14px;
  background: #000;
  flex-shrink: 0;
}
.header__burger {
  display: none;
  width: 36px;
  height: 36px;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
}
.header__burger span {
  display: block;
  width: 18px;
  height: 1.5px;
  margin: 6px auto;
  background: #000000;
  border-radius: 99px;
  transition: 0.3s;
}

.hero {
  position: relative;
  overflow: hidden;
  margin-top: 70px;
  min-height: 500px;
}
.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: bottom center;
}
.hero__container {
  position: relative;
  z-index: 2;
  width: min(1180px, 100% - 100px);
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.hero__items {
  position: relative;
  margin-right: clamp(-140px, -4vw, 0px);
  width: 50%;
  height: 460px;
  flex-shrink: 0;
}
.hero__item {
  position: absolute;
  display: block;
  height: auto;
}
.hero__item--1 {
  width: 100%;
  max-width: 640px;
  right: 6%;
  top: 10%;
}
.hero__item--2 {
  width: 100%;
  max-width: 240px;
  left: -15%;
  bottom: 5%;
}
.hero__item--3 {
  width: 100%;
  max-width: 213px;
  right: 6%;
  bottom: -2%;
}
.hero__inner {
  width: 50%;
  position: relative;
  z-index: 2;
}
.hero h1 {
  margin: 0 0 20px;
  font-size: 52px;
  font-style: normal;
  font-weight: 600;
  line-height: 1.3;
  letter-spacing: 2.6px;
  color: #000000;
}
.hero h1 span {
  color: #00994E;
}
.hero p {
  margin: 0;
  color: #707070;
  font-size: 18px;
  font-weight: 400;
  letter-spacing: 0.9px;
  line-height: 1.6;
}

.scroll-icon {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: 12px;
  z-index: 50;
}
.scroll-icon img {
  display: block;
  z-index: 6;
}
.scroll-icon__arrow {
  animation: scrollArrow 1.4s ease-in-out infinite;
}

@keyframes scrollArrow {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(4px);
  }
  100% {
    transform: translateY(0);
  }
}
.title-gradient {
  background: linear-gradient(90deg, #00994E 0%, #1C89C4 46.21%, #676ED5 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.section {
  padding: 80px 0 40px 0;
}
.section h2 {
  font-size: 42px;
  font-weight: 600;
  text-align: center;
  margin: 0 0 16px 0;
  color: #474747;
  line-height: 1.1;
}

.section-desc {
  color: #474747;
  max-width: 1180px;
  margin: 0 auto 90px;
  text-align: center;
  font-size: 20px;
  line-height: 1.5;
  font-weight: 300;
  letter-spacing: 2px;
}

.section-title {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 52px !important;
  gap: 4px;
}
.section-title__group {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  background: transparent;
}
.section-title__group img {
  width: 52px;
  height: auto;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

.feature-card {
  position: relative;
  min-height: 190px;
  padding: 20px;
  background: #ffffff;
  border-radius: 12px;
  box-shadow: 0 -3px 24px 0 rgba(97, 97, 97, 0.05), 0 7px 24px 0 rgba(97, 97, 97, 0.1);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.feature-card .tag {
  position: absolute;
  top: -2px;
  left: -3px;
}
.feature-card .icon {
  margin-bottom: 12px;
  width: 80px;
}
.feature-card h3 {
  color: #474747;
  margin: 0 0 4px;
  font-size: 20px;
  line-height: 1.5;
  letter-spacing: 1.2px;
}
.feature-card p {
  margin: 0;
  color: #6D6D6D;
  font-size: 16px;
  line-height: 1.5;
  letter-spacing: 1.28px;
}

.hint-desc {
  color: #6D6D6D;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.5;
  letter-spacing: 1.4px;
  text-align: center;
  margin: 24px 0 0 0;
}

.text-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  margin: 24px auto 0;
  padding: 0;
  border: 0;
  background: transparent;
  color: #474747;
  cursor: pointer;
  text-decoration: underline;
  font-size: 14px;
}

.bonus {
  position: relative;
  z-index: 2;
}

.bonus-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
  max-width: 1010px;
  margin: auto;
}

.bonus-card {
  padding: 32px;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 0 28px 0 rgba(186, 186, 186, 0.12);
  display: flex;
  flex-direction: column;
}
.bonus-card__head {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 20px;
  padding-bottom: 16px;
  border-bottom: 1px solid #E7E7E7;
}
.bonus-card__head img {
  width: 68px;
}
.bonus-card__logo {
  width: 96px;
  height: auto;
}
.bonus-card__logos {
  display: flex;
  align-items: center;
  gap: 18px;
}
.bonus-card__logos img {
  max-width: 100px;
  height: auto;
}
.bonus-card ul {
  margin: 16px 0 0px;
  padding: 0 0 0 8px;
  list-style: none;
}
.bonus-card li {
  position: relative;
  padding-left: 18px;
  margin-bottom: 24px;
}
.bonus-card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #F5CA20;
}
.bonus-card li strong {
  display: block;
  margin-bottom: 6px;
  color: #474747;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.6;
}
.bonus-card li p {
  margin: 0;
  color: #6D6D6D;
  font-size: 16px;
  line-height: 1.8;
  letter-spacing: 0.6px;
}
.bonus-card li em {
  color: #00994e;
  font-style: normal;
  font-weight: 600;
}
.bonus-card li img {
  display: inline-block;
  width: 24px;
  vertical-align: -5px;
}
.bonus-card:nth-child(2) li::before {
  background: #008BD3;
  top: 10px;
}
.bonus-card h4 {
  font-size: 18px;
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: 1.8px;
  margin: 0;
}
.bonus-card__percent {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 20px;
  font-weight: 400;
  letter-spacing: 2px;
  color: #474747;
  margin-top: 2px;
}
.bonus-card__percent strong {
  display: block;
  font-size: 40px;
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: 4px;
  background: linear-gradient(180deg, #00A76F 0%, #4A72D8 100%);
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
}

.btn-group {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-top: auto;
}

.btn {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 48px;
  border-radius: 999px;
  background: #6D6D6D;
  color: #fff;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.5;
  letter-spacing: 1.6px;
  padding: 0 12px 0 24px;
}
.btn--outline {
  background: #fff;
  color: #6D6D6D;
  border: 1px solid #6D6D6D;
}

.welcome-card {
  display: grid;
  grid-template-columns: 1fr 1px 1fr;
  background: rgba(255, 255, 255, 0.92);
  border-radius: 16px;
  box-shadow: 0 14px 30px rgba(75, 114, 145, 0.12);
}
.welcome-card article {
  padding: 32px;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 20px;
  position: relative;
}
.welcome-card article .btn {
  width: 155px;
  margin-top: auto;
}
.welcome-card__line {
  width: 1px;
  margin: 32px 0;
  background: #d9e3ef;
}
.welcome-card p {
  color: #474747;
  font-size: 18px;
  font-weight: 300;
  line-height: 1.3;
  letter-spacing: 1.44px;
}
.welcome-card p strong {
  color: #00994E;
  font-weight: 400;
}

.pill {
  padding: 1px;
  position: relative;
  border-radius: 99px;
  width: 130px;
  background: linear-gradient(90deg, #00994E 0%, #1C89C4 46.21%, #676ED5 100%);
}
.pill__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 128px;
  height: 36px;
  gap: 4px;
  background: #fff;
  border-radius: inherit;
}
.pill__inner p {
  font-size: 16px;
  font-weight: 600;
  line-height: 1.5;
  letter-spacing: 0.96px;
}
.pill__content p {
  margin: 8px 0;
}
.pill__desc {
  display: block;
  margin-top: 0 !important;
}
.pill__desc img {
  display: inline-block;
  width: 24px;
  height: 24px;
  vertical-align: -5px;
}

.tabs {
  display: flex;
  justify-content: center;
  gap: 48px;
  margin: 32px 0 48px;
}
.tabs .tab {
  padding: 0 0 8px;
  border: 0;
  border-bottom: 2px solid transparent;
  background: transparent;
  color: #A4A4A4;
  cursor: pointer;
  font-size: 20px;
  font-style: normal;
  font-weight: 600;
  line-height: 1.5;
  letter-spacing: 1.8px;
}
.tabs .tab.is-active {
  font-size: 20px;
  color: #474747;
  border-color: #00a67d;
}

.steps {
  overflow: hidden;
}

.step-tabs {
  margin: 32px 0 64px;
}

.step-carousel {
  position: relative;
}

.step-panels {
  position: relative;
}

.step-panel {
  display: none;
}
.step-panel.is-active {
  display: block;
}

.step-track {
  --step-count: 4;
  position: relative;
  display: flex;
  gap: 20px;
  margin-bottom: 80px;
}
.step-track::before {
  content: "";
  position: absolute;
  top: 13px;
  left: calc(50% / var(--step-count));
  right: calc(50% / var(--step-count));
  height: 1px;
  background: #676ED5;
  z-index: 0;
}
.step-track:has(.step-card:nth-child(5)) {
  gap: 0;
}

.step-card {
  flex: 1 1 0;
  min-width: 0;
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.step-card span {
  display: inline-block;
  width: 72px;
  margin-bottom: 16px;
  padding: 5px 0;
  border-radius: 99px;
  background-color: #676ED5;
  color: #fff;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.2;
  letter-spacing: 0.7px;
}
.step-card h3 {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  height: 100%;
  margin: 0 0 54px;
  color: #474747;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.4;
  letter-spacing: 1.6px;
}
.step-card img {
  width: 100%;
  max-width: 282px;
  height: auto;
}

.step-arrow,
.step-dots {
  display: none;
}

.notice {
  padding: 56px 0;
  background: #F9F9F9;
  color: #474747;
  font-size: 14px;
  letter-spacing: 0.28px;
}
.notice h4 {
  margin: 0 0 16px;
  font-weight: 500;
  margin-bottom: 10px;
}
.notice ol {
  line-height: 1.6;
  font-weight: 300;
}
.notice .container {
  width: min(1000px, 100% - 80px);
}
.notice .text-btn {
  font-size: 12px;
  letter-spacing: 0.24px;
  color: #00994E;
  text-decoration: none;
  gap: 2px;
}
.notice__text {
  position: relative;
  max-height: 40px;
  overflow: hidden;
}
.notice__text::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -30px;
  height: 60px;
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.92) 60%, #fff 100%);
  pointer-events: none;
}

.notice-list {
  margin: 0 0 16px;
  padding-left: 8px;
  list-style: none;
}
.notice-list li {
  position: relative;
  padding-left: 16px;
  margin-bottom: 12px;
  font-size: 14px;
  font-weight: 300;
  line-height: 22px;
  letter-spacing: 0.28px;
}
.notice-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: #555;
}
.notice-list strong {
  display: block;
  font-size: 14px;
  font-weight: 400;
  line-height: 22px;
  letter-spacing: 0.28px;
}

.notice-list-number {
  margin: 0 0 16px;
  padding-left: 24px;
}
.notice-list-number > li {
  padding-left: 4px;
  margin-bottom: 4px;
  font-size: 14px;
  font-weight: 300;
  line-height: 22px;
  letter-spacing: 0.28px;
}
.notice-list-number > li::marker {
  font-size: 14px;
}
.notice-list-number > li .notice-list {
  padding-left: 4px;
}
.notice-list-number > li .notice-list li {
  margin-bottom: 0;
}
.notice-list-number strong {
  display: block;
  font-size: 14px;
  font-weight: 400;
  line-height: 22px;
  letter-spacing: 0.28px;
}

.disclaimer {
  padding: 45px 0;
  border-top: 4px solid #72C361;
  background: #F9F9F9;
  color: #555;
}
.disclaimer .container {
  width: min(960px, 100% - 40px);
}
.disclaimer h3 {
  margin: 0 0 10px;
  text-align: center;
  font-size: 18px;
  font-weight: 300;
  line-height: 1.5;
  letter-spacing: 7px;
}
.disclaimer p {
  margin: 0 0 20px;
  font-size: 16px;
  font-weight: 300;
  line-height: 1.5;
}
.disclaimer a {
  color: #17A05D;
  text-decoration: underline;
}
.disclaimer__cookie {
  margin-top: 0px !important;
}

.footer {
  padding: 20px 0;
  color: #fff;
  background: linear-gradient(90deg, #72C361 0%, #4FB980 100%);
}
.footer__inner {
  width: min(1200px, 100% - 80px);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}
.footer__nav {
  display: flex;
  align-items: center;
  gap: 24px;
}
.footer__nav a {
  font-size: 14px;
  letter-spacing: 0.8px;
}
.footer__copyright {
  margin: 0;
  font-size: 14px;
  white-space: nowrap;
}

.go-top {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 80;
  width: 40px;
  height: 40px;
  cursor: pointer;
}

.modal {
  position: fixed;
  z-index: 200;
  inset: 0;
  display: none;
}
.modal.is-open {
  display: block;
}
.modal__mask {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.2);
}
.modal__content {
  position: absolute;
  top: 50%;
  left: 50%;
  width: min(1060px, 100% - 40px);
  padding: 20px 10px 30px 30px;
  background: #fff;
  border-radius: 10px;
  transform: translate(-50%, -50%);
  color: #474747;
}
.modal__body {
  max-height: calc(70vh - 120px);
  overflow-y: auto;
  padding-right: 16px;
}
.modal__body::-webkit-scrollbar {
  width: 6px;
}
.modal__body::-webkit-scrollbar-track {
  background: transparent;
}
.modal__body::-webkit-scrollbar-thumb {
  background: #E7E7E7;
  border-radius: 999px;
}
.modal__body::-webkit-scrollbar-thumb:hover {
  background: #E7E7E7;
}
.modal__close {
  position: absolute;
  top: 16px;
  right: 18px;
  border: 0;
  background: transparent;
  font-size: 32px;
  cursor: pointer;
}
.modal h3 {
  margin: 0 0 12px;
  font-size: 18px;
  font-weight: 400;
  letter-spacing: 0.36px;
}
.modal p {
  margin: 0 0 24px;
  font-size: 14px;
  font-weight: 300;
  line-height: 22px;
  letter-spacing: 0.28px;
}
.modal__bottom-close {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2px;
  width: 140px;
  padding: 0 12px 0 24px;
  height: 36px;
  margin: 6px auto 0;
  border: 1px solid #474747;
  border-radius: 999px;
  background: #fff;
  color: #474747;
  font-size: 14px;
  cursor: pointer;
}

.js-fade {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.js-fade.is-show {
  opacity: 1;
  transform: translateY(0);
}

@media (min-width: 1400px) {
  .hero__items {
    margin-right: clamp(-140px, -9vw, 0px);
  }
}
/* 平板 */
@media (max-width: 1200px) {
  section {
    scroll-margin-top: 50px;
  }
  .header {
    height: 50px;
  }
  .header__inner {
    width: calc(100% - 32px);
    justify-content: center;
    position: relative;
  }
  .header__burger {
    display: block;
    position: absolute;
    left: 0;
  }
  .header__nav {
    position: absolute;
    top: 50px;
    left: -40px;
    right: -40px;
    display: flex;
    flex-direction: column;
    gap: 0;
    background: #fff;
    overflow: hidden;
    max-height: 0;
    opacity: 0;
    transition: max-height 0.45s ease, opacity 0.3s ease;
  }
  .header__nav a {
    padding: 18px;
    text-align: center;
    font-size: 16px;
    line-height: 1.5;
    letter-spacing: 0.64px;
  }
  .header__nav span {
    width: 100%;
    height: 1px;
    background: #DDD;
  }
  .header__logo img {
    height: 20px;
  }
  .header__logo span {
    height: 20px;
  }
  .header.is-open .header__nav {
    max-height: 400px;
    opacity: 1;
  }
  .header.is-open .header__burger span:nth-child(1) {
    transform: translateY(7.5px) rotate(45deg);
  }
  .header.is-open .header__burger span:nth-child(2) {
    opacity: 0;
  }
  .header.is-open .header__burger span:nth-child(3) {
    transform: translateY(-7.5px) rotate(-45deg);
  }
  .hero {
    margin-top: 50px;
    min-height: 400px;
  }
  .hero__inner {
    width: 42%;
  }
  .hero__items {
    width: 58%;
  }
  .hero h1 {
    font-size: 36px;
    letter-spacing: 1.8px;
  }
  .hero__img img {
    width: min(460px, 100%);
  }
  .feature-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
  .step-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .section {
    padding: 32px 0;
  }
}
@media (max-width: 1000px) {
  .ball {
    display: none;
  }
  .gift {
    width: 95px;
    right: 16%;
  }
  .bg-welcome {
    top: -15%;
  }
  .hero__container {
    flex-direction: column;
  }
  .hero__inner {
    width: 100%;
    padding-top: 40px;
  }
  .hero__items {
    width: 100%;
    height: 360px;
  }
  .hero__bg img {
    object-position: bottom center;
  }
  .hero__item--1 {
    width: 100%;
    max-width: 520px;
    right: 0%;
    top: -10%;
  }
  .hero__item--2 {
    width: 100%;
    max-width: 190px;
    left: auto;
    right: 60%;
    bottom: 5%;
  }
  .hero__item--3 {
    width: 100%;
    max-width: 185px;
    right: 0%;
    bottom: 0%;
  }
  .section {
    padding: 48px 0 32px 0;
  }
  .section h2 {
    font-size: 28px;
  }
  .section-desc {
    font-size: 16px;
    letter-spacing: 1.6px;
    margin-bottom: 24px;
  }
  .section-title {
    margin-bottom: 24px !important;
  }
  .section-title__group img {
    width: 32px;
  }
  .bonus-grid {
    gap: 20px;
  }
  .bonus-card {
    padding: 24px;
  }
  .bonus-card__head {
    flex-direction: column;
    text-align: center;
  }
  .bonus-card__percent {
    justify-content: center;
  }
  .btn-group {
    grid-template-columns: 1fr;
    gap: 12px;
  }
  .welcome-card {
    grid-template-columns: 1fr;
  }
  .welcome-card article {
    padding: 24px 20px;
  }
  .welcome-card article .btn {
    width: 234px;
  }
  .welcome-card article + article {
    border-left: 0;
    border-top: 1px solid #d9e3ef;
  }
  .welcome-card__line {
    width: 100%;
    height: 1px;
    margin: 0 20px;
    background: #d9e3ef;
  }
  .disclaimer {
    padding: 35px 0;
  }
  .step-tabs {
    margin-bottom: 32px;
  }
  .step-panel {
    overflow: hidden;
  }
  .step-track {
    display: flex;
    gap: 0;
    transform: translateX(calc(var(--step-index) * -100%));
    transition: transform 0.45s ease;
  }
  .step-track::before {
    display: none;
  }
  .step-card {
    flex: 0 0 100%;
  }
  .step-card span {
    width: 108px;
    padding: 7px 0;
    font-size: 20px;
    letter-spacing: 1px;
  }
  .step-card h3 {
    min-height: auto;
    margin-bottom: 32px;
    font-size: 26px;
    font-weight: 600;
    line-height: 1.5;
    letter-spacing: 2px;
  }
  .step-card img {
    max-width: 360px;
  }
  .step-arrow {
    position: absolute;
    top: 50%;
    z-index: 5;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 0;
    background: transparent;
    cursor: pointer;
  }
  .step-arrow--prev {
    left: 4%;
  }
  .step-arrow--next {
    right: 4%;
  }
  .step-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
  }
  .step-dots button {
    width: 28px;
    height: 4px;
    padding: 0;
    border: 0;
    border-radius: 99px;
    background: rgba(120, 140, 150, 0.25);
    cursor: pointer;
  }
  .step-dots button.is-active {
    background: #676ED5;
  }
}
@media (max-width: 700px) {
  .header__logo span {
    display: none;
  }
  .header__logo img:not(:first-child) {
    display: none;
  }
  .section-title {
    flex-direction: column;
  }
  .footer__inner {
    width: calc(100% - 48px);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
  }
  .footer__nav {
    display: grid;
    grid-template-columns: repeat(2, max-content);
    justify-content: center;
    column-gap: 24px;
    row-gap: 12px;
  }
  .footer__nav a:nth-child(odd) {
    text-align: right;
  }
  .footer__nav a:nth-child(even) {
    text-align: left;
  }
  .footer__copyright {
    white-space: normal;
    text-align: center;
  }
}
/* 手機 */
@media (max-width: 600px) {
  .gift {
    width: 70px;
    right: 12%;
  }
  .container {
    width: calc(100% - 52px);
  }
  .hero__bg img {
    object-position: 32% bottom;
  }
  .hero__container {
    width: min(1180px, 100% - 48px);
  }
  .hero__items {
    height: 360px;
  }
  .hero__item--1 {
    width: 100%;
    max-width: 480px;
    right: auto;
    top: -10%;
  }
  .hero__item--2 {
    width: 100%;
    max-width: 170px;
    left: auto;
    right: 60%;
    bottom: 5%;
  }
  .hero__item--3 {
    width: 100%;
    max-width: 160px;
    right: 0%;
    bottom: 0%;
  }
  .hero__inner {
    padding: 40px 0;
  }
  .hero h1 {
    font-size: 29px;
    letter-spacing: 1.45px;
  }
  .hero p {
    font-size: 14px;
  }
  .scroll-icon {
    margin-top: -30px;
  }
  .section-title {
    font-size: 24px;
  }
  .feature-grid,
.bonus-grid,
.welcome-card,
.step-grid {
    grid-template-columns: 1fr;
  }
  .feature-card {
    min-height: 150px;
  }
  .bonus-card {
    padding: 28px 22px;
  }
  .btn-group {
    flex-direction: column;
  }
  .btn {
    width: 100%;
  }
  .footer nav {
    flex-wrap: wrap;
    gap: 14px 24px;
  }
  .modal__content {
    padding: 20px 10px 20px 20px;
  }
  .modal h3 {
    font-size: 16px;
  }
  .welcome-card article .btn {
    width: 100%;
  }
  .tabs {
    gap: 24px;
    overflow-x: auto;
    justify-content: flex-start;
  }
  .step-card h3 {
    font-size: 18px;
  }
  .step-card img {
    max-width: 340px;
  }
  .step-tabs {
    justify-content: flex-start;
    overflow-x: auto;
    overflow-y: hidden;
    gap: 40px;
    padding: 0 26px 8px;
    margin-left: -26px;
    margin-right: -26px;
    scrollbar-width: none;
  }
  .step-tabs::-webkit-scrollbar {
    display: none;
  }
  .step-tabs .tab {
    flex: 0 0 auto;
    white-space: nowrap;
    word-break: keep-all;
  }
  .br-mobile {
    display: inline;
  }
  .br-desktop {
    display: none;
  }
  .js-fade {
    transform: translateY(16px);
    transition: opacity 0.5s ease, transform 0.5s ease;
    will-change: opacity, transform;
  }
}
@media (max-width: 480px) {
  .hero__items {
    height: 300px;
  }
  .hero__item--1 {
    width: 400px;
    right: -20%;
    top: -15%;
  }
  .hero__item--2 {
    width: 100%;
    max-width: 170px;
    left: auto;
    right: 60%;
    bottom: 5%;
  }
  .hero__item--3 {
    display: none;
  }
  .step-arrow--prev {
    left: -20px;
  }
  .step-arrow--next {
    right: -20px;
  }
}

/*# sourceMappingURL=style.css.map */
