html {
  scroll-behavior: smooth;
}

body,
h1,
h2,
h3,
h4,
h5,
h6,
p,
a,
span,
button,
input,
textarea {
  font-family: "Noto Sans TC", sans-serif;
}

body {
  color: #1e1e1e;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  line-height: 1.7;
}

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

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

.text-primary {
  color: #5dbe4b !important;
}

.section-tag {
  display: inline-block;
  font-size: 13px;
  font-weight: 600;
  color: #5dbe4b;
  background: rgba(93, 190, 75, 0.125);
  padding: 6px 20px;
  border-radius: 100px;
  letter-spacing: 0.5px;
}

.nav {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
  background: rgba(255, 255, 255, 0.8);
  border-bottom: 1px solid rgba(255, 255, 255, 0.3);
}
.nav__logo-img {
  height: 50px;
  width: auto;
}
@media (max-width: 768px) {
  .nav__logo-img {
    height: 40px;
  }
}
.nav__logo-text {
  font-size: 22px;
  font-weight: 700;
  color: #1e1e1e;
  letter-spacing: 1px;
}
.nav__cta {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 10px 28px;
  background: #5dbe4b;
  color: #fff;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.5px;
  border-radius: 50px;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  -webkit-box-shadow: 0 2px 8px rgba(93, 190, 75, 0.3);
          box-shadow: 0 2px 8px rgba(93, 190, 75, 0.3);
}
.nav__cta:hover {
  background: rgb(79.4089795918, 172.212244898, 62.187755102);
  color: #fff;
  -webkit-transform: translateY(-1px);
          transform: translateY(-1px);
  -webkit-box-shadow: 0 4px 16px rgba(93, 190, 75, 0.4);
          box-shadow: 0 4px 16px rgba(93, 190, 75, 0.4);
}

.hero {
  position: relative;
  min-height: 100vh;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  overflow: visible;
  padding-top: 100px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media (max-width: 768px) {
  .hero {
    min-height: 85vh;
  }
}
.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero__bg-img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.hero__overlay {
  position: absolute;
  inset: 0;
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0.1)), color-stop(50%, rgba(0, 0, 0, 0.4)), to(rgba(0, 0, 0, 0.7)));
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.1) 0%, rgba(0, 0, 0, 0.4) 50%, rgba(0, 0, 0, 0.7) 100%);
}
.hero__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 24px;
}
@media (max-width: 992px) {
  .hero__content {
    margin-top: 180px;
    padding-bottom: 140px;
  }
}
@media (max-width: 768px) {
  .hero__content {
    margin-top: 140px;
    padding-bottom: 120px;
  }
}
.hero__tag {
  display: inline-block;
  -ms-flex-item-align: start;
      align-self: flex-start;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 1px;
  color: #5dbe4b;
  background: #fff;
  padding: 6px 16px;
  border-radius: 4px;
  -webkit-box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
          box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}
.hero__title {
  font-size: 48px;
  font-weight: 700;
  color: #fff;
  letter-spacing: 2px;
  line-height: 1.2;
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
}
@media (max-width: 768px) {
  .hero__title {
    font-size: 32px;
  }
}
@media (max-width: 480px) {
  .hero__title {
    font-size: 26px;
  }
}
.hero__subtitle {
  font-size: 20px;
  color: rgba(255, 255, 255, 0.85);
  letter-spacing: 0.8px;
  line-height: 1.7;
  text-shadow: 0 1px 10px rgba(0, 0, 0, 0.2);
}
@media (max-width: 768px) {
  .hero__subtitle {
    font-size: 16px;
  }
}
.hero__mobile-img {
  max-height: 600px;
  width: auto;
  -webkit-filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.35));
          filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.35));
}
@media (max-width: 991px) {
  .hero__mobile-img {
    max-height: 350px;
    margin: 0 auto;
  }
}

.feature-card-wrapper {
  position: relative;
  z-index: 10;
  bottom: 0;
  width: 100%;
  -webkit-transform: translateY(50%);
          transform: translateY(50%);
}

.feature-card {
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.05);
  border-radius: 20px;
  padding: 36px 32px;
  -webkit-box-shadow: 0 8px 40px rgba(0, 0, 0, 0.08), 0 2px 8px rgba(0, 0, 0, 0.04);
          box-shadow: 0 8px 40px rgba(0, 0, 0, 0.08), 0 2px 8px rgba(0, 0, 0, 0.04);
}
@media (max-width: 768px) {
  .feature-card {
    padding: 28px 20px;
  }
}
.feature-card__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 12px;
  padding: 20px 12px;
  border-radius: 16px;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.feature-card__item:hover {
  background: rgba(93, 190, 75, 0.04);
  -webkit-transform: translateY(-4px);
          transform: translateY(-4px);
}
.feature-card__icon-img {
  width: 56px;
  height: 56px;
  -o-object-fit: contain;
     object-fit: contain;
  margin-bottom: 4px;
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
}
.feature-card__item:hover .feature-card__icon-img {
  -webkit-transform: scale(1.08);
          transform: scale(1.08);
}
.feature-card__title {
  font-size: 17px;
  font-weight: 700;
  letter-spacing: 0.5px;
  color: #1e1e1e;
}
.feature-card__desc {
  font-size: 13px;
  letter-spacing: 0.3px;
  color: #555;
  text-align: center;
  line-height: 1.7;
}

.pain-points {
  background: #f6f6ee;
  padding: 220px 0 50px;
}
@media (max-width: 768px) {
  .pain-points {
    padding: 130px 0 70px;
  }
}
.pain-points__title {
  font-size: 30px;
  font-weight: 700;
  letter-spacing: 1.5px;
  line-height: 1.4;
}
@media (max-width: 768px) {
  .pain-points__title {
    font-size: 24px;
  }
}
.pain-points__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 16px;
  padding: 24px 16px;
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
}
.pain-points__item:hover {
  -webkit-transform: translateY(-6px);
          transform: translateY(-6px);
}
.pain-points__img {
  width: 220px;
  aspect-ratio: 1;
  -o-object-fit: contain;
     object-fit: contain;
  margin-bottom: 8px;
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
}
.pain-points__item:hover .pain-points__img {
  -webkit-transform: scale(1.03);
          transform: scale(1.03);
}
@media (max-width: 768px) {
  .pain-points__img {
    width: 180px;
  }
}
.pain-points__item-title {
  font-size: 22px;
  font-weight: 700;
  letter-spacing: 0.8px;
}
.pain-points__item-desc {
  font-size: 15px;
  letter-spacing: 0.4px;
  color: #555;
  line-height: 1.6;
}

.features {
  padding: 100px 0;
}
@media (max-width: 768px) {
  .features {
    padding: 70px 0;
  }
}
.features__header {
  margin-bottom: 48px;
}
.features__title {
  font-size: 30px;
  font-weight: 700;
  letter-spacing: 1.5px;
  line-height: 1.4;
}
@media (max-width: 768px) {
  .features__title {
    font-size: 24px;
  }
}
.features__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 12px;
  padding: 28px 20px;
  border-radius: 16px;
  background: #fafafa;
  border: 1px solid rgba(0, 0, 0, 0.04);
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  height: 100%;
}
.features__item:hover {
  background: #fff;
  -webkit-box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
          box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
  -webkit-transform: translateY(-6px);
          transform: translateY(-6px);
}
.features__item-title {
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 0.8px;
  margin-top: 4px;
}
.features__item-desc {
  font-size: 14px;
  letter-spacing: 0.3px;
  color: #555;
  line-height: 1.7;
  margin-bottom: 8px;
}
.features__item-img {
  width: 100%;
  aspect-ratio: 276/430;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 12px;
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
}
.features__item:hover .features__item-img {
  -webkit-transform: scale(1.02);
          transform: scale(1.02);
}

.cta {
  position: relative;
  padding: 120px 0;
  background: linear-gradient(135deg, #2d8a3e 0%, #4CAF50 40%, #5dbe4b 100%);
  overflow: hidden;
}
@media (max-width: 768px) {
  .cta {
    padding: 80px 0;
  }
}
.cta__shapes {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.cta__shape {
  position: absolute;
  border: 2px solid rgba(255, 255, 255, 0.12);
  border-radius: 50%;
}
.cta__shape--1 {
  width: 300px;
  height: 300px;
  top: -80px;
  left: -60px;
  background: rgba(255, 255, 255, 0.04);
}
.cta__shape--2 {
  width: 200px;
  height: 200px;
  bottom: -50px;
  right: 10%;
  background: rgba(255, 255, 255, 0.05);
}
.cta__shape--3 {
  width: 120px;
  height: 120px;
  top: 30px;
  right: 15%;
  border-radius: 24px;
  -webkit-transform: rotate(30deg);
          transform: rotate(30deg);
  background: rgba(255, 255, 255, 0.03);
}
.cta__shape--4 {
  width: 80px;
  height: 80px;
  bottom: 40px;
  left: 15%;
  border-radius: 16px;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  background: rgba(255, 255, 255, 0.06);
}
.cta__shape--5 {
  width: 160px;
  height: 160px;
  top: -40px;
  right: -30px;
  background: rgba(255, 255, 255, 0.04);
}
.cta__title {
  font-size: 36px;
  font-weight: 700;
  letter-spacing: 1.5px;
  color: #fff;
  margin-bottom: 12px;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}
@media (max-width: 768px) {
  .cta__title {
    font-size: 26px;
  }
}
.cta__desc {
  font-size: 17px;
  color: rgba(255, 255, 255, 0.85);
  letter-spacing: 0.5px;
  margin-bottom: 40px;
}
.cta__btn {
  display: inline-block;
  padding: 16px 52px;
  background: #fff;
  color: #2d8a3e;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 1px;
  border-radius: 50px;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  -webkit-box-shadow: 0 4px 24px rgba(0, 0, 0, 0.15);
          box-shadow: 0 4px 24px rgba(0, 0, 0, 0.15);
}
.cta__btn:hover {
  color: #2d8a3e;
  -webkit-transform: translateY(-3px);
          transform: translateY(-3px);
  -webkit-box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
          box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
}

.footer {
  background: #1a1a1a;
  padding: 48px 0;
  border-top: 3px solid #5dbe4b;
}
.footer__link {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.7);
  -webkit-transition: color 0.2s;
  transition: color 0.2s;
  letter-spacing: 0.3px;
}
.footer__link:hover {
  color: #fff;
}
.footer__divider {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.25);
}
.footer__copyright {
  font-size: 13px;
  color: #999;
  letter-spacing: 0.3px;
}

.nav--static {
  position: relative;
  background: #fff;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  backdrop-filter: none;
}

.page-content {
  padding: 80px 0;
  min-height: calc(100vh - 200px);
}
@media (max-width: 768px) {
  .page-content {
    padding: 48px 0;
  }
}
.page-content__title {
  font-size: 32px;
  font-weight: 700;
  letter-spacing: 1px;
  color: #1e1e1e;
  margin-bottom: 8px;
}
@media (max-width: 768px) {
  .page-content__title {
    font-size: 26px;
  }
}
.page-content__date {
  font-size: 14px;
  color: #999;
  margin-bottom: 40px;
  padding-bottom: 24px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}
.page-content__body h2 {
  font-size: 20px;
  font-weight: 700;
  color: #1e1e1e;
  margin-top: 40px;
  margin-bottom: 16px;
  padding-left: 12px;
  border-left: 3px solid #5dbe4b;
}
.page-content__body p {
  font-size: 15px;
  line-height: 1.9;
  color: #555;
  margin-bottom: 16px;
}
.page-content__body ul {
  margin-bottom: 20px;
  padding-left: 24px;
}
.page-content__body li {
  font-size: 15px;
  line-height: 1.9;
  color: #555;
  margin-bottom: 8px;
}
.page-content__body strong {
  color: #1e1e1e;
}
.page-content__link {
  color: #5dbe4b;
  -webkit-transition: opacity 0.2s;
  transition: opacity 0.2s;
}
.page-content__link:hover {
  color: rgb(72.4979591837, 157.2244897959, 56.7755102041);
}