/* Font Face Declaration */
@font-face {
  font-family: "Krylon";
  src: url("./assets/Krylon-Regular.otf") format("opentype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

/* Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  width: 100%;
  height: 100%;
  overflow-x: hidden;
}

body {
  font-family: "Krylon", serif;
  background-color: #e4e3d1;
  max-width: 1920px;
  margin: 0 auto;
  overflow-x: hidden;
}

/* Header */
.header {
  position: fixed;
  width: 100vw;
  background-color: #e4e3d1;
  height: 103px;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: space-around;
}

.header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;

  gap: 50px;
  width: 95%;
  white-space: nowrap;
}

.container .left {
  display: flex;
  align-items: center;
  gap: 44px;
  flex: 1;
}

.logo {
  display: flex;
  align-items: center;
  gap: 15px;
  font-size: 24px;
  font-weight: 600;
}

.nav {
  display: flex;
  gap: 24px;
}

.nav a {
  text-decoration: none;
  color: rgba(26, 52, 43, 0.4);
  text-align: center;
  font-family: Krylon;
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  letter-spacing: 0.6px;
  text-transform: uppercase;
}

.nav .active {
  color: #2d6043;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 24px;
}

.languages {
  width: 103px;
  color: #1a342b;
  text-align: center;
  font-family: Krylon;
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  letter-spacing: 0.6px;
  border-bottom: 1px #1a342b solid;
  text-align: left;
}

.contact-btn {
  display: inline-flex;
  padding: 12px 22px;
  justify-content: center;
  align-items: center;
  gap: 10px;
  border-radius: 31px;
  background: #2d6043;

  color: #fff;
  text-align: center;
  font-family: Krylon;
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  letter-spacing: 0.6px;
}

.contact-btn:hover {
  background: #1e3a22;
}

/* Hero Section */
.hero {
  margin-top: 60px;
  padding-top: 103px;
}

.hero .container {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.hero-gallery {
  width: 1640px;
  margin-bottom: 60px;
  display: flex;
  gap: 30px;
  flex-direction: column;
  justify-content: center;
}

.gallery-container {
  width: 100%;
  height: 791px;
  /* box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1); */

  display: flex;
  gap: 43px;
}

.gallery-item {
  width: 100%;
  height: 100%;
  border-radius: 60px;
  transform-origin: center;
}

.gallery-item:nth-child(1) {
  z-index: -100;
  animation: slide-left 0.6s cubic-bezier(0, 0, 0.58, 1) forwards;
  background-image: url("./assets/title_image_1.jpg");
  background-position: left 0;
  flex: 1;
}

.gallery-item:nth-child(2) {
  z-index: 100;
  animation: slide 0.6s cubic-bezier(0.2, 0, 0.58, 1) forwards;
  background-image: url("./assets/title_image_1.jpg");
  background-position: center 0;
  flex: 3;
}

.gallery-item:nth-child(3) {
  z-index: -100;
  animation: slide-right 0.6s cubic-bezier(0, 0, 0.58, 1) forwards;
  background-image: url("./assets/title_image_1.jpg");
  background-position: right 0;
  flex: 1;
}

@keyframes slide-left {
  from {
    transform: translateX(calc(250% + 43px));
    -webkit-transform: translateX(calc(250% + 43px));
    background-position: center 0;
    clip-path: inset(0 20% 0 20% round 60px);
    /* width: 0; */
  }

  to {
    transform: translateX(0);
    -webkit-transform: translateX(0);
    background-position: left 0;
    clip-path: inset(0 0 0 0 round 60px);
    /* width: 100%; */
  }
}

@keyframes slide {
  from {
    clip-path: inset(0 35% 0 35% round 60px);
  }

  to {
    clip-path: inset(0 0 0 0 round 60px);
  }
}

@keyframes slide-right {
  from {
    transform: translateX(calc(-250% - 43px));
    -webkit-transform: translateX(calc(-250% - 43px));
    background-position: center 0;
    clip-path: inset(0 20% 0 20% round 60px);
  }

  to {
    transform: translateX(0);
    -webkit-transform: translateX(0);
    background-position: right 0;
    clip-path: inset(0 0 0 0 round 60px);
  }
}

.hero-content {
  width: 1600px;
  margin-top: 44px;
}

.hero-title {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.hero-title-text {
  color: #1a342b;
  font-family: Krylon;
  font-size: 90px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  text-transform: uppercase;
}

.hero-title-right-text {
  display: inline-flex;
  border-bottom: 1px solid #2d6043;
  width: 190px;
  text-align: center;
  font-family: Krylon;
  font-size: 32px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  margin-right: 40px;
  position: relative;
}
.hero-title-right-text a {
  text-decoration: none;
  color: #2d6043;
}
.hero-title-right-text::after {
  content: "(professionals only)";
  position: absolute;
  color: #2d6043;
  text-align: center;
  font-family: Krylon;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  opacity: 0.4;
  bottom: -80%;
}
.hero-title-right-contact {
  display: inline-flex;
  padding: 19px 32px;
  justify-content: center;
  align-items: center;
  border-radius: 66px;
  background: #2d6043;
  color: #fff;
  text-align: center;
  font-family: Krylon;
  font-size: 32px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}

.tagline {
  margin-top: 10px;
  color: #1a342b;
  font-family: Krylon;
  font-size: 40px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}

.description {
  color: #1a342b;
  font-family: Krylon;
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: 26px;
  /* 130% */
}

/* Section Styles */
/* section {
  padding: 100px 0;
} */

/* What We Do Section */
.what-we-do {
  margin-top: 120px;
  display: flex;
  justify-content: center;
}

.what-we-do .container {
  width: 1640px;
}

.what-we-do-title {
  color: #1a342b;
  font-family: Krylon;
  font-size: 60px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  margin-left: 10px;
  margin-bottom: 10px;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  margin-top: 40px;
}

.service-card {
  transition: transform 0.3s;
}

.service-content-title {
  color: #1a342b;
  font-family: Krylon;
  font-size: 40px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}

.service-content-text {
  color: #1a342b;
  font-family: Krylon;
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: 26px;
  /* 130% */
}

.service-image img {
  width: 800px;
  height: 520px;
  object-fit: cover;
}

.service-content {
  padding: 20px;
  padding-bottom: 0;
}

/* First Project Section */
.first-project {
  background-image: url("./assets/jericho_bg.png");
  color: white;
}

.project-content {
  display: flex;
  height: 720px;
}

.project-image img {
  object-fit: cover;
  width: 940px;
  height: 720px;
  flex-shrink: 0;
  aspect-ratio: 47/36;
}

.project-info {
  flex: 1;
  padding-left: 100px;
  padding-top: 80px;
  padding-right: 120px;
}

.project-info-title-text {
  color: #fff;
  font-family: Krylon;
  font-size: 40px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}

.project-info-title {
  color: #ffe390;
  font-family: Krylon;
  font-size: 60px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}

.project-info-text {
  color: #fff;
  font-family: Krylon;
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: 26px;
  /* 130% */
}

.principles {
  height: 47px;
  margin-top: 40px;
  display: flex;
  align-items: center;
  gap: 16px;
  white-space: nowrap;
}

.principles-title {
  color: #fff;
  font-family: Krylon;
  font-size: 26px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}

.principle-item {
  display: flex;
  padding: 12px 22px;
  justify-content: center;
  align-items: center;
  border-radius: 31px;
  border: 1px dashed #ffeded;
}

/* Our Approach Section */
.our-approach {
  width: 100%;
  display: flex;
  justify-content: center;
  margin-top: 200px;
}

.our-approach .container {
  width: 1620px;
  display: flex;
  gap: 60px;
  padding-left: 10px;
  box-sizing: border-box;
}

.our-approach-title {
  color: #1a342b;
  font-family: Krylon;
  font-size: 60px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  margin-top: 20px;
  margin-left: 10px;
}

.div-intro {
  color: #1a342b;
  font-family: Krylon;
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: 26px;
  /* 130% */
  width: 478px;
  margin-left: 10px;
}

.approach-grid-container {
  flex: 1;
  overflow-x: scroll;
  white-space: nowrap;
  scrollbar-width: none;
  /* Firefox */
  -ms-overflow-style: none;
  /* IE/Edge */
}

.approach-grid {
  overflow-x: scroll;
  white-space: nowrap;
  scrollbar-width: none;
  /* Firefox */
  -ms-overflow-style: none;
  /* IE/Edge */
  display: flex;
  gap: 40px;
  cursor: grab;
  -webkit-overflow-scrolling: touch;
  /* 允许垂直滚动页面，横向由脚本接管拖动 */
  touch-action: pan-y;
}

.approach-grid::-webkit-scrollbar {
  display: none;
}

.approach-grid-container::-webkit-scrollbar {
  display: none;
}

/* 拖拽状态下的样式 */
.approach-grid.is-dragging {
  cursor: grabbing;
  user-select: none;
}

.approach-card {
  width: 418px;
  display: flex;
  flex-direction: column;
  flex-shrink: 0;
}

.approach-card-content {
  padding: 30px 20px;
}

.approach-card-title {
  color: #1a342b;
  font-family: Krylon;
  font-size: 32px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  white-space: normal;
}

.approach-card-text {
  white-space: normal;
  color: #1a342b;
  font-family: Krylon;
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: 26px;
  /* 130% */
}

.line-container {
  display: flex;
  justify-content: center;
  margin-top: 60px;
  position: relative;
}

.line-container .line {
  background: #bcc0b0;
  height: 1px;
  width: 560px;
  position: relative;
}

.line-container .scroll-thumb {
  position: absolute;
  top: 0px;
  left: 0;
  width: 100px;
  height: 1px;
  background: #1a342b;
}

/* Community Section */
.community {
  width: 100%;
  display: flex;
  justify-content: center;
  margin-top: 200px;
}

.community .container {
  width: 1600px;
  box-sizing: border-box;
}

.community-columns {
  margin-top: 60px;
  display: flex;
  width: 1600px;
  justify-content: space-between;
  align-items: stretch;
}

.community-content-wrapper {
  position: relative;
}

.community-title {
  color: #1a342b;
  font-family: Krylon;
  font-size: 60px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}

.community-intro {
  color: #1a342b;
  font-family: Krylon;
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: 30px;
  /* 150% */
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}

.community-intro::before {
  content: '"';
  position: absolute;
  top: 0;
  left: -20px;
  height: 100%;
  color: #1a342b;
  font-family: Krylon;
  font-size: 60px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}

.community-intro::after {
  content: '"';
  position: absolute;
  top: 0;
  right: -20px;
  height: 100%;
  color: #1a342b;
  font-family: Krylon;
  font-size: 60px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}

.community-column {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 10px;
}

.community-column-text {
  color: #1a342b;
  font-family: Krylon;
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: 30px;
  /* 150% */
  width: 432px;
}

.border-line {
  width: 1px;
  background: #1a342b;
}

.read-more {
  color: #1a342b;
  font-family: Krylon;
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: 30px;
  /* 150% */
  position: relative;
}

.read-more span {
  position: relative;
}

.read-more span::before {
  content: "";
  height: 1px;
  width: 100%;
  background: #1a342b;
  position: absolute;
  bottom: -8px;
}

/* Data & Method Section */
.data-method {
  width: 100%;
  display: flex;
  justify-content: center;
  margin-top: 200px;
  margin-bottom: 200px;
}

.data-method .container {
  width: 1600px;
  box-sizing: border-box;
}

.data-method-title {
  color: #1a342b;
  font-family: Krylon;
  font-size: 60px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}

.data-method-intro {
  color: #1a342b;
  font-family: Krylon;
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: 30px;
  /* 150% */
  margin-bottom: 37px;
}

.data-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

.data-card {
  width: 520px;
  height: 520px;
  padding: 60px 30px;
  border-radius: 20px;
  text-align: center;
  color: white;
}

.data-card.blue {
  background: url("./assets/data_bg1.svg") no-repeat;
  background-size: 100% 100%;
}

.data-card.olive {
  background: url("./assets/data_bg2.svg") no-repeat;
  background-size: 100% 100%;
}

.data-card.dark-green {
  background: url("./assets/data_bg3.svg") no-repeat;
  background-size: 100% 100%;
}

.data-card-title {
  color: #fff;
  text-align: center;
  font-family: Krylon;
  font-size: 32px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}

.data-card-intro {
  color: #1a342b;
  font-family: Krylon;
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: 30px;
  /* 150% */
  padding-left: 20px;
  padding-right: 20px;
  padding-top: 30px;
}

/* Team Section */
.team {
  background: url("./assets/team_bg.svg");
  background-size: cover;
  color: white;
  position: relative;
  overflow: hidden;
  height: 1264px;
  display: flex;
  justify-content: center;
  margin-top: 200px;
}

.team .container {
  width: 1640px;
  max-width: 95%;
}

.team-header {
  text-align: left;
  margin-top: 100px;
  margin-bottom: 80px;
}

.team-title {
  color: #ffe390;
  font-family: Krylon;
  font-size: 60px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}

.team-subtitle {
  color: #fff;
  font-family: Krylon;
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: 26px; /* 130% */
}

.team-content {
  display: flex;
  flex-direction: column;
  gap: 80px;
}

.team-member {
  display: flex;
  gap: 80px;
  align-items: stretch;
}

.member-photo {
  flex-shrink: 0;
  width: 420px;
  height: 420px;
  border-radius: 40px;
  overflow: hidden;
  background: #e4e3d1;
  position: relative;
}

.member-photo img {
  width: 380px;
  height: 380px;
  object-fit: cover;
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
}

.member-info {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.member-name {
  display: flex;
  gap: 10px;
  align-items: center;
  color: #ffe390;
  font-family: Krylon;
  font-size: 60px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}

.member-role {
  color: #ffe390;
  text-align: center;
  font-family: Krylon;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  letter-spacing: 0.48px;
  padding: 6px 10px;
  border-radius: 31px;
  background: #3e7556;
}

.member-description {
  text-align: justify;
  color: #fff;
  font-family: Krylon;
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: 26px; /* 130% */
  margin-top: 10px;
}

.member-description:last-child {
  margin-bottom: 0;
}

/* Investors Section */
.investors {
  background: #e4e3d1;
  width: 100%;
  display: flex;
  justify-content: center;
  margin-top: 200px;
}

.investors .container {
  width: 1640px;
}

.investors-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 100px;
}

.investors-info {
  padding: 20px 0;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.investors-title {
  color: #1a342b;
  font-family: Krylon;
  font-size: 60px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}

.investors-text {
  margin-top: 20px;
  color: #1a342b;
  font-family: Krylon;
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: 26px;
  /* 130% */
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.investors-image img {
  width: 800px;
  object-fit: cover;
  border-radius: 60px;
}

.investors-info-bottom {
  display: flex;
  flex-direction: column;
}
.investors-info-bottom a {
  text-decoration: none;
}
.login-btn {
  padding: 19px 32px;
  border-radius: 66px;
  background: #2d6043;
  display: inline-flex;
  align-self: flex-start;
  color: #fff;
  text-align: center;
  font-family: Krylon;
  font-size: 32px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  cursor: pointer;
}

.login-btn:hover {
  background: #1e3a22;
}
.login-text {
  margin-top: 20px;
  margin-left: 5px;
  color: rgba(26, 52, 43, 0.5);
  font-family: Krylon;
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  line-height: 16px;
  /* 133.333% */
  width: 600px;
}

/* Projects Section */
.projects {
  background: #e4e3d1;
  width: 100%;
  /*display: flex;*/
  justify-content: center;
  margin-top: 200px;
  display: none;
}

.projects .container {
  width: 1640px;
}

.projects-title {
  color: #1a342b;
  font-family: Krylon;
  font-size: 60px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  margin-left: 20px;
}

.project-intro {
  color: #1a342b;
  font-family: Krylon;
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: 26px;
  /* 130% */
  margin-left: 20px;
}

.projects-grid {
  display: none;
  overflow-x: scroll;
  white-space: nowrap;
  scrollbar-width: none;
  /* Firefox */
  -ms-overflow-style: none;
  /* IE/Edge */
  /*display: flex;*/
  gap: 40px;
  margin-left: calc((100vw - 1600px) / 2);
  margin-top: 40px;
  cursor: grab;
  -webkit-overflow-scrolling: touch;
  touch-action: pan-y;
}

.project-card {
  transition: transform 0.3s;
}

.project-card:last-child {
  margin-right: calc((100vw - 1600px) / 2);
}

.project-card img {
  width: 520px;
  height: 520px;
  object-fit: cover;
  border-radius: 60px;
}

/* 隐藏 WebKit 滚动条（与上方一致） */
.projects-grid::-webkit-scrollbar {
  display: none;
}

/* 拖拽状态 */
.projects-grid.is-dragging {
  cursor: grabbing;
  user-select: none;
}

.project-card-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 30px;
  padding: 0 20px;
}

.project-name {
  color: #1a342b;
  font-family: Krylon;
  font-size: 40px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}

.project-read-more {
  color: #1a342b;
  font-family: Krylon;
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  position: relative;
  padding-bottom: 6px;
}

.project-read-more::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 1px;
  background: #1a342b;
  bottom: 0px;
}

/* Contact Section */
.contact {
  width: 100%;
  display: flex;
  justify-content: center;
  margin-top: 200px;
}

.contact .container {
  width: 1640px;
  padding-left: 20px;
  display: flex;
}

.contact-left {
  flex: 1;
}

.contact-title {
  color: #1a342b;
  font-family: Krylon;
  font-size: 60px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}

.contact-intro {
  color: #1a342b;
  font-family: Krylon;
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: 26px;
  /* 130% */
  margin-top: 10px;
}

.contact-email {
  margin-top: 40px;
  color: #1a342b;
  font-family: Krylon;
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}

.contact-investor-email {
  color: #1a342b;
  font-family: Krylon;
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}

.contact-left a {
  color: #1a342b;
  font-family: Krylon;
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  text-decoration-line: underline;
  text-decoration-style: solid;
  text-decoration-skip-ink: auto;
  text-decoration-thickness: auto;
  text-underline-offset: auto;
  text-underline-position: from-font;
}

.contact-content {
  width: 1080px;
  display: flex;
  gap: 40px;
  border-radius: 60px;
  background: #fffeef;
  padding: 40px 56px 40px 40px;
}

.contact-logo {
  text-align: center;
  background: url("./assets/contact_bg.png") no-repeat;
  background-size: 100% 100%;
  width: 519px;
  height: 576px;
  flex-shrink: 0;
}

.contact-logo img {
  width: 200px;
  height: 200px;
  border-radius: 20px;
}

.contact-form {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  flex: 1;
}
.contact-form-top {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.contact-form-bottom {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 20px 30px;
  font-family: "Krylon", serif;
  font-size: 16px;
  transition: border-color 0.3s;
  border-radius: 100px;
  border: 1px solid #e4d8cd;
  background: #fff;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #2c5530;
}

/* Custom Checkbox Styles */
.agree-privacy {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: "Krylon", serif;
  font-size: 16px;
  color: #1a342b;
  cursor: pointer;
  margin-bottom: 10px;
  margin-left: 30px;
}

.agree-privacy input[type="checkbox"] {
  display: none;
}

.agree-privacy .checkbox-custom {
  display: inline-block;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  border: 2px solid rgba(26, 52, 43, 1);
  background: transparent;
  transition: all 0.3s ease;
  flex-shrink: 0;
  position: relative;

  color: #1a342b;
  font-family: Krylon;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  text-decoration-line: underline;
  text-decoration-style: solid;
  text-decoration-skip-ink: auto;
  text-decoration-thickness: auto;
  text-underline-offset: auto;
  text-underline-position: from-font;
}

.agree-privacy input[type="checkbox"]:checked + .checkbox-custom {
  background: rgba(45, 96, 67, 1);
  border-color: rgba(45, 96, 67, 1);
}

.agree-privacy input[type="checkbox"]:checked + .checkbox-custom::after {
  content: "✓";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: white;
  font-size: 12px;
  font-weight: bold;
}

.btn-reCAPTCHA {
  display: flex;
  width: 425px;
  padding: 19px 32px;
  justify-content: center;
  align-items: center;
  gap: 10px;
  border-radius: 66px;
  background: #2d6043;
  color: #fff;
  text-align: center;
  font-family: Krylon;
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}

/* Footer */
.footer {
  background: #fffeef;
  padding: 60px;
  margin-top: 145px;
}
.footer .container .footer-top {
  display: flex;
  align-items: center;
  gap: 80px;
  margin-bottom: 30px;
}

.footer-top-links {
  display: flex;
  gap: 60px;
}
.footer-top-links a {
  text-decoration: none;
  color: #000;
}

.footer-links {
  border-top: 1px solid #d6dbcd;
  padding-top: 30px;
  display: flex;
  gap: 80px;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  transition: color 0.3s;
  color: #1a342b;
  font-family: "Helvetica Neue";
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  line-height: 20px;
  /* 166.667% */
}

.copyright {
  color: #1a342b;
  font-size: 20px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
}

.noa {
  color: unset;
  text-decoration: none;
}

/* ---------------------------------------------
   Fade in on view (JS-controlled helper classes)
   --------------------------------------------- */
@keyframes fade-up-pop {
  0% {
    opacity: 0;
    transform: translateY(28px);
  }

  60% {
    opacity: 1;
    transform: translateY(-6px);
  }

  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

.preFade {
  opacity: 0;
  transform: translateY(24px);
  will-change: opacity, transform;
}

.fadeIn {
  opacity: 1;
  transform: translateY(0);
  animation: fade-up-pop 1s cubic-bezier(0.22, 1, 0.36, 1) both;
  animation-delay: 0.3s;
}

/* 文本淡入动画（用于文本内容变化时的过渡） */
@keyframes text-fade-in {
  from {
    opacity: 0;
    transform: translateY(6px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.text-fade-in {
  animation: text-fade-in 0.5s ease both;
  animation-delay: 0.1s;
}

@media (prefers-reduced-motion: reduce) {
  .text-fade-in {
    animation: none !important;
  }
}

@media (prefers-reduced-motion: reduce) {
  .preFade,
  .fadeIn {
    transition: none !important;
    animation: none !important;
    transform: none !important;
    opacity: 1 !important;
  }
}
