/* =======================
   Base Styles
========================== */
html, body {
  font-family: 'Inter', sans-serif;
  margin: 0;
  padding: 0;
  width: 100%;
  height: 100%;
  background: #f6f6f6;
}

.container {
  max-width: 100%;
  margin: 0 auto;
  padding: 16px;
  padding-bottom: 200px;
  background: #f6f6f6;
}

.header-text h1,
.header-text p {
  margin: 0;
}


/* =======================
   Fluid Gradient Text Animation
========================== */
#fluidColorText {
  font-size: 54px;
  font-weight: bold;
  line-height: 54px;
  background: linear-gradient(270deg, #00DBDE, #FC00FF, #00DBDE, #FC00FF);
  background-size: 400% 400%;
  -webkit-background-clip: text;
  color: transparent;
  animation: gradientAnimation 10s ease infinite;
}

@keyframes gradientAnimation {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}


/* =======================
   Features Section
========================== */
.features-container {
  max-width: 765px;
  font-family: 'Inter', sans-serif;
  margin: 44px auto;
}

.title {
  color: #333;
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 8px;
}

.features-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 8px;
}

.feature-number {
  width: 30px;
  height: 30px;
  border-radius: 4px;
  border: 0.5px solid #C1C1C1;
  color: #888;
  font-size: 12px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.feature-text {
  color: #333;
  font-size: 15px;
}


/* =======================
   End Text Separator
========================== */
.end-text {
  margin-top: 80px;
  font-size: 13px;
  color: #C1C1C1;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.end-text::before,
.end-text::after {
  content: '';
  flex: 1;
  border-bottom: 0.5px solid #C1C1C1;
  margin: 0 10px;
}

.end-text::before {
  margin-left: 80px;
}

.end-text::after {
  margin-right: 80px;
}


/* =======================
   Top Right Logo
========================== */
.top-right-logo {
  position: absolute;
  top: 0;
  right: 0;
  padding-bottom: 24px;
  text-align: right;
  writing-mode: vertical-rl;
  transform: rotate(180deg);
}

.brand-origin {
  font-size: 12px;
  font-weight: 100;
  color: #CACACA;
}


/* =======================
   Responsive Styles
========================== */
@media (max-width: 768px) {
  .features-container {
    padding: 0 16px;
  }
}





/* 让内推公司部分靠左对齐 */
.company-container {
  max-width: 600px; /* 限制最大宽度 */
  width: 100%;
  margin: 0; /* 移除 auto，使其靠左 */
  text-align: left; /* 让内容靠左 */
}

/* 卡片样式 */
.company-card {
  display: flex;
  flex-direction: column; /* 让 Logo 和 文字分行 */
  align-items: center;
  background: white;
  padding: 16px;
  border-radius: 12px;
  border: 0.5px solid #DBDBDB; /* 灰色边框 */
  box-shadow: 0px 4px 33px rgba(0, 0, 0, 0.05); /* 阴影 */
  text-decoration: none;
  margin-bottom: 12px;
  width: 100%; /* 适配小屏幕 */
  max-width: 100%; /* 不能比 `.company-container` 更宽 */
  transition: all 0.2s ease-in-out;
  box-sizing: border-box; /* 防止 padding 影响宽度 */
}

/* 文字和箭头部分 */
.company-bottom {
  display: flex;
  align-items: center; /* 确保垂直居中 */
  justify-content: center;
  gap: 4px; /* 文字和箭头间距设为 4px */
  width: 100%;
}

/* 文字 */
.company-text {
  font-size: 16px;
  color: #333;
}

/* 右侧箭头 */
.arrow-icon {
  font-size: 16px;
  color: #999;
}


.company-logo {
  height: 26px; /* 固定高度 */
  width: auto; /* 宽度自适应，保持比例 */
  display: block; /* 防止 inline 元素间隙问题 */
  margin-bottom: 4px; /* 增加 4px 间距 */
}

/* 标题样式 */
.company-title {
  font-size: 18px;
  font-weight: bold;
  margin-bottom: 12px;
  margin-top: 44px;
  color: #222;
}







/* 让内容靠左对齐 */
.steps-container {
  max-width: 700px;
  margin: 50px 0 50px 16px; /* 左对齐 */
  padding: 0; 
  text-align: left; /* 确保文本左对齐 */
}

/* 标题样式 */
.steps-title {
  font-size: 18px;
  font-weight: bold;
  margin-bottom: 8px;
  color: #222;
}

/* 步骤样式 */
.step {
  margin-bottom: 16px;
}

/* Step编号和标题在同一行 */
.step-number {
  font-size: 15px;
  font-weight: bold;
  color: #A0A0A0;
  display: inline; /* 让 Step 和 标题在一行 */
  margin-right: 8px; /* 增加间距 */
}

.step-title {
  font-size: 15px;
  font-weight: bold;
  color: #333;
  display: inline; /* 让标题和 Step 号在一行 */
}

/* Step 描述文本 */
.step-text {
  font-size: 15px;
  color: #333;
  line-height: 1.6;
  margin-top: 4px;
  margin-bottom: 0px;
}



/* 列表样式 */
.step-list {
  margin-top: 0px;
  padding-left: 20px;
}

.step-list li {
  font-size: 16px;
  color: #333;
  margin-bottom: 0px;
}

/* 响应式调整 */
@media (max-width: 768px) {
  .steps-container {
      margin: 30px 0px; /* 确保小屏幕上依然左对齐 */
  }
}