* {
  margin: 0;
  padding: 0;
  list-style: none;
  box-sizing: border-box;
}

body {
  font-family: Montserrat, Montserrat;
  font-weight: 400;
  padding-top: 100px;
  display: flex;
  flex-direction: column;
  background: #fff;
  overflow-x: hidden;
}

a,
span {
  display: inline-block;
}

/* header */
header {
  width: 100%;
  height: 100px;

  position: fixed;
  top: 0;
  left: 0;
  z-index: 9999999;
  display: flex;
  align-items: center;
  background-color: #fff;
  box-sizing: border-box;
}

header nav {
  height: 100%;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  z-index: 9999999;
  padding: 0 80px;
}

header nav .logo {
  height: 60px;
}

header nav .logo a {
  width: 100%;
  height: 100%;
  font-size: 32px;
  color: #000000;
  display: flex;
  align-items: center;
  text-decoration: none;
  font-weight: 600;
}

header nav .logo a img {
  width: 60px;
  height: 60px;
  margin-right: 20px;
}

header nav .nav-links {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

header nav .nav-links li {
  margin-right: 40px;
}

header nav .nav-links li a {
  font-weight: 400;
  font-size: 16px;
  color: #222222;
  text-decoration: none;
  padding-bottom: 8px;
  border-bottom: 3px solid transparent;
  box-sizing: border-box;
}

/* header nav .nav-links li a:hover {
  color: #4c8f94;
  transition: 0.5s;
} */
header nav .nav-links a.active {
  color: #4b5320;
  font-weight: 600;
  border-bottom-color: #4b5320;
}

/* header nav .nav-links a.active::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 6px;
  background-color: #1c48f5;
  bottom: -10px;
  left: 0;
  border-radius: 5px;
} */
#Home {
  width: 100%;
  height: 538px;
  display: flex;
  align-items: center;
  background: #fff;
}

#Home .container {
  height: 538px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding-top: 128px;
  padding-left: 153px;
  box-sizing: border-box;
  background-image: url("../images/scbg.webp");
  background-repeat: no-repeat;
  background-size: 100% auto;
  background-position: center center;
}

#Home .container .left {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;

  box-sizing: border-box;
}

#Home .container .left .brand-row {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 24px;
}

#Home .container .left .brand-logo {
  width: 40px;
  height: 40px;
  border-radius: 8px;
}

#Home .container .left .brand-name {
  font-family:
    Hanken Grotesk,
    Hanken Grotesk;
  font-weight: 600;
  font-size: 18px;
  color: #1a1c1d;
}

#Home .container .left .p1 {
  font-family:
    Hanken Grotesk,
    Hanken Grotesk;
  font-weight: bold;
  font-size: 40px;
  color: #1a1c1d;
  line-height: 48px;
  text-align: left;
  font-style: normal;
  text-transform: none;
  margin-bottom: 32px;
}

#Home .container .left .down {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  width: 100%;
  height: 68px;
}

#Home .container .right {
  width: 284px;
  height: 284px;
}

#Guide {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: 64px;
}

#Guide .container {
  display: flex;
  flex-direction: column;
  align-items: center;
}

#Guide .container .title {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

#Guide .container .title .p1 {
  width: 100%;
  font-family:
    Hanken Grotesk,
    Hanken Grotesk;
  font-weight: 600;
  font-size: 12px;
  color: #50821b;
  line-height: 16px;
  letter-spacing: 2px;
  text-align: center;
  font-style: normal;
  text-transform: none;
  margin-bottom: 12px;
}

#Guide .container .title .p2 {
  width: 100%;
  font-family:
    Hanken Grotesk,
    Hanken Grotesk;
  font-weight: bold;
  font-size: 32px;
  color: #1a1c1d;
  line-height: 40px;
  text-align: center;
  font-style: normal;
  text-transform: none;
  margin-bottom: 12px;
}

#Guide .container .title .p3 {
  width: 100%;
  font-family:
    Hanken Grotesk,
    Hanken Grotesk;
  font-weight: 400;
  font-size: 16px;
  color: #44483d;
  line-height: 24px;
  text-align: center;
  font-style: normal;
  text-transform: none;
  margin-bottom: 64px;
}

#Guide .container .list {
  width: 100%;
  display: flex;

  align-items: flex-end;
  justify-content: space-between;
  padding: 0 88px;
  box-sizing: border-box;
  position: relative;
}

#Guide .container .list .line {
  width: 1000px;
  height: 2px;
  background: #c4c8b9;
  position: absolute;
  bottom: 170px;
}

#Guide .container .list .item {
  width: 30%;
  height: 386px;
  background: #f9f9fa;
  box-shadow: 0px 8px 24px 0px rgba(13, 12, 34, 0.04);
  border-radius: 16px 16px 16px 16px;
  border: 1px solid rgba(196, 200, 185, 0.3);
  padding: 40px;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  z-index: 100;
}

#Guide .container .list .item2 {
  height: 338px;
}

#Guide .container .list .item span {
  width: 64px;
  height: 64px;
  line-height: 64px;
  background: #c6e89e;
  border-radius: 9999px 9999px 9999px 9999px;
  margin-bottom: 24px;
  font-family:
    Hanken Grotesk,
    Hanken Grotesk;
  font-weight: bold;
  font-size: 20px;
  color: #4d692d;

  text-align: center;
  font-style: normal;
  text-transform: none;
}

#Guide .container .list .item .p1 {
  width: 100%;
  font-family:
    Hanken Grotesk,
    Hanken Grotesk;
  font-weight: 600;
  font-size: 20px;
  color: #1a1c1d;
  line-height: 28px;
  text-align: center;
  font-style: normal;
  text-transform: none;
  margin-bottom: 12px;
}

#Guide .container .list .item .p2 {
  font-family:
    Hanken Grotesk,
    Hanken Grotesk;
  font-weight: 400;
  font-size: 14px;
  color: #44483d;
  line-height: 20px;
  text-align: center;
  font-style: normal;
  text-transform: none;
}

#Products {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: 64px;
}

#Products .container {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 64px 216px;
  box-sizing: border-box;
  background: rgba(198, 232, 158, 0.2);
}

#Products .container .title {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 64px;
}

#Products .container .title .p1 {
  width: 100%;
  font-family:
    Hanken Grotesk,
    Hanken Grotesk;
  font-weight: 600;
  font-size: 12px;
  color: #50821b;
  line-height: 16px;
  letter-spacing: 2px;
  text-align: center;
  font-style: normal;
  text-transform: none;
  margin-bottom: 12px;
}

#Products .container .title .p2 {
  width: 100%;
  font-family:
    Hanken Grotesk,
    Hanken Grotesk;
  font-weight: bold;
  font-size: 32px;
  color: #1a1c1d;
  line-height: 40px;
  text-align: center;
  font-style: normal;
  text-transform: none;
  margin-bottom: 12px;
}

#Products .container .title .p3 {
  width: 100%;
  font-family:
    Hanken Grotesk,
    Hanken Grotesk;
  font-weight: 400;
  font-size: 16px;
  color: #44483d;
  line-height: 24px;
  text-align: center;
  font-style: normal;
  text-transform: none;
  margin-bottom: 64px;
}

#Products .list-box {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  position: relative;
  overflow: hidden;
  background: #ffffff;
  box-shadow:
    0 4px 24px rgba(13, 12, 34, 0.06),
    0 1px 4px rgba(13, 12, 34, 0.04);
  border-radius: 16px;
  border: 1px solid rgba(196, 200, 185, 0.18);
  padding: clamp(28px, 5vw, 44px) clamp(28px, 5vw, 48px);
  box-sizing: border-box;
}

#Products .list-box::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  /* 右上角四分之一圆，半径 128px → 外接正方形边长 128px */
  width: 128px;
  height: 128px;
  border-radius: 0 0 0 100%;
  background: linear-gradient(
    145deg,
    rgba(198, 232, 158, 0.7) 0%,
    rgba(225, 242, 200, 0.55) 45%,
    rgba(237, 248, 215, 0.35) 100%
  );
  pointer-events: none;
  z-index: 0;
}

#Products .list-box .list-box__body {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  max-width: 100%;
}

#Products .list-box .list-title {
  font-family:
    Hanken Grotesk,
    Hanken Grotesk;
  font-weight: 700;
  font-size: 20px;
  color: #1a1c1d;
  line-height: 28px;
  text-align: left;
  font-style: normal;
  margin: 0 0 20px;
}

#Products .list {
  width: 100%;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 14px;
  list-style: none;
}

#Products .list li {
  width: 100%;
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
  gap: 14px;
  font-family:
    Hanken Grotesk,
    Hanken Grotesk;
  font-weight: 400;
  font-size: 16px;
  color: #5c6654;
  line-height: 24px;
  text-align: left;
}

#Products .list li::before {
  content: "";
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='22' height='22' fill='none' viewBox='0 0 24 24'%3E%3Ccircle cx='12' cy='12' r='9.75' stroke='%2350821B' stroke-width='1.25'/%3E%3Cpath stroke='%2350821B' stroke-width='1.6' stroke-linecap='round' stroke-linejoin='round' d='M8 12.2 10.8 15 16 9.9'/%3E%3C/svg%3E")
    center / contain no-repeat;
}

/* Core Benefits — Why Borrowers Choose Us */
#CoreBenefits {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 96px 0 96px;
  background: #fff;
}

#CoreBenefits .container {
  display: flex;
  flex-direction: column;
  align-items: center;
}

#CoreBenefits .core-benefits-title {
  width: 100%;
  max-width: 920px;
  margin-bottom: 48px;
}

#CoreBenefits .core-benefits-title .p2 {
  font-family:
    Hanken Grotesk,
    Hanken Grotesk;
  font-weight: bold;
  font-size: 32px;
  color: #1a1c1d;
  line-height: 40px;
  text-align: center;
  margin-bottom: 12px;
}

#CoreBenefits .core-benefits-title .p3 {
  font-family:
    Hanken Grotesk,
    Hanken Grotesk;
  font-weight: 400;
  font-size: 16px;
  color: #44483d;
  line-height: 24px;
  text-align: center;
}

#CoreBenefits .benefits-grid {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  align-items: stretch;
}

#CoreBenefits .benefit-card {
  position: relative;
  overflow: hidden;
  border-radius: 18px;
  padding: 32px 28px;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  border: none;
}

#CoreBenefits .benefit-card--wide {
  grid-column: span 2;
}

#CoreBenefits .benefit-card--narrow {
  grid-column: span 1;
}

#CoreBenefits .benefit-card--third {
  grid-column: span 1;
}

#CoreBenefits .benefit-card__icon {
  width: 56px;
  height: 56px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;

  border-radius: 8px;
  background: rgba(255, 255, 255, 0.35);
}

#CoreBenefits .benefit-card__icon img {
  display: block;
  max-width: 40px;
  max-height: 40px;
  width: auto;
  height: auto;
  object-fit: contain;
}

#CoreBenefits .benefit-card__title {
  font-family:
    Hanken Grotesk,
    Hanken Grotesk;
  font-weight: 700;
  font-size: 20px;
  line-height: 28px;
  color: #1a1c1d;
  margin: 0 0 12px;
  text-align: left;
}

#CoreBenefits .benefit-card__text {
  font-family:
    Hanken Grotesk,
    Hanken Grotesk;
  font-weight: 400;
  font-size: 14px;
  line-height: 20px;
  color: #44483d;
  margin: 0;
  text-align: left;
}

#CoreBenefits .benefit-card--cream {
  background: #fff9eb;
}

#CoreBenefits .benefit-card--mint {
  background: #f0f9eb;
}

#CoreBenefits .benefit-card--aqua {
  background: #ebfaf5;
}

#CoreBenefits .benefit-card--lavender {
  background: #f5f5ff;
}

#CoreBenefits .benefit-card--steel {
  background: #f5f7ff;
}

#CoreBenefits .benefit-card--deco-tr::after {
  content: "";
  position: absolute;
  width: 180px;
  height: 180px;
  right: -72px;
  top: -72px;
  border-radius: 50%;
  background: rgba(255, 237, 180, 0.55);
  pointer-events: none;
}

#CoreBenefits .benefit-card--deco-bl::after {
  content: "";
  position: absolute;
  width: 200px;
  height: 200px;
  left: -84px;
  bottom: -88px;
  border-radius: 50%;
  background: rgba(207, 220, 255, 0.55);
  pointer-events: none;
}

#CoreBenefits .benefit-card--deco-tr .benefit-card__icon,
#CoreBenefits .benefit-card--deco-tr .benefit-card__title,
#CoreBenefits .benefit-card--deco-tr .benefit-card__text {
  position: relative;
  z-index: 1;
}

#CoreBenefits .benefit-card--deco-bl .benefit-card__icon,
#CoreBenefits .benefit-card--deco-bl .benefit-card__title,
#CoreBenefits .benefit-card--deco-bl .benefit-card__text {
  position: relative;
  z-index: 1;
}

#CoreBenefits .benefit-card--olive-copy .benefit-card__title,
#CoreBenefits .benefit-card--olive-copy .benefit-card__text {
  color: #3f5d2b;
}

#CoreBenefits .benefit-card--olive-copy .benefit-card__icon {
  border-color: rgba(63, 93, 43, 0.45);
}

@media (max-width: 1100px) {
  #CoreBenefits .benefits-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  #CoreBenefits .benefit-card--wide {
    grid-column: 1 / -1;
  }

  #CoreBenefits .benefit-card--narrow {
    grid-column: 1 / -1;
  }

  #CoreBenefits .benefit-card--third {
    grid-column: span 1;
  }
}

@media (max-width: 720px) {
  #CoreBenefits {
    padding: 64px 0 72px;
  }

  #CoreBenefits .benefits-grid {
    grid-template-columns: 1fr;
  }

  #CoreBenefits .benefit-card--wide,
  #CoreBenefits .benefit-card--narrow,
  #CoreBenefits .benefit-card--third {
    grid-column: span 1;
  }
}

/* Footer */
#Footer {
  width: 100%;
  text-align: center;
  background-color: #f8f9f8;
  border-top: 1px solid #eeeeee;
  padding: 60px 20px;
  box-sizing: border-box;
}

#Footer .footer-inner {
  max-width: 920px;
  margin: 0 auto;
}

#Footer .footer-contact {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

#Footer .footer-contact p {
  margin: 0;
  font-family:
    Hanken Grotesk,
    Hanken Grotesk;
  font-weight: 400;
  font-size: 14px;
  line-height: 22px;
  color: #555555;
}

#Footer .footer-contact a {
  color: #555555;
  text-decoration: underline;
  text-underline-offset: 2px;
}

#Footer .footer-contact a:hover {
  color: #1a1c1d;
}

#Footer .footer-divider {
  width: 100%;

  margin: 30px auto;
  border: 0;
  border-top: 1px solid #e0e0e0;
}

#Footer .footer-brand {
  margin: 0;
  font-family:
    Hanken Grotesk,
    Hanken Grotesk;
  font-weight: 700;
  font-size: 18px;
  line-height: 26px;
  letter-spacing: 0.04em;
  color: #1a1c1d;
  text-transform: uppercase;
}

@media (max-width: 720px) {
  #Footer {
    padding: 40px 16px 48px;
  }

  #Footer .footer-divider {
    margin: 22px auto;
    width: 72%;
  }

  #Footer .footer-brand {
    font-size: 16px;
    line-height: 24px;
  }
}

#backTop {
  width: 32px;
  height: 32px;
  position: fixed;
  bottom: 80px;
  right: 80px;
  z-index: 999;
  cursor: pointer;
  opacity: 0.6;
}

#backTop:hover {
  opacity: 1;
}

#backTop img {
  width: 100%;
  height: 100%;
}
