.page-header {
@@
}

.page-header-meta div {
@@
}

.page-header-meta strong {
  font-size: 1.15rem;
}

.page-header-meta span {
  font-size: 0.85rem;
  color: rgba(255, 249, 242, 0.8);
}

.page-header-graphic {
@@
}

@keyframes headerFloat {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-8px);
  }
}
/* ========== 全局基础样式 ========== */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue",
    Arial, "Noto Sans", "PingFang SC", "Microsoft YaHei", sans-serif;
  background-color: #fff7ed;
  color: #3c2415;
  line-height: 1.6;
}

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

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

ul {
  list-style: none;
}

:root {
  --primary-green: #4caf50;
  --primary-blue: #2196f3;
  --bg-light: #f5f5f5;
  --bg-white: #ffffff;
  --text-main: #333333;
  --text-muted: #666666;
  --border-soft: #e0e0e0;
  --shadow-soft: 0 10px 30px rgba(0, 0, 0, 0.06);
  --radius-lg: 16px;
  --radius-md: 10px;
  --radius-sm: 6px;
  --transition-fast: 0.25s ease;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.6rem;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  font-weight: 600;
  font-size: 0.95rem;
  transition: transform var(--transition-fast), box-shadow var(--transition-fast),
    background-color var(--transition-fast), color var(--transition-fast);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
  background: linear-gradient(135deg, var(--primary-green), var(--primary-blue));
  color: #ffffff;
  gap: 0.4rem;
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 26px rgba(0, 0, 0, 0.12);
}

.btn:active {
  transform: translateY(0);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
}

.btn-outline {
  background: transparent;
  color: var(--primary-green);
  border: 1px solid rgba(249, 115, 22, 0.35);
  box-shadow: none;
}

.btn-outline:hover {
  background: rgba(249, 115, 22, 0.08);
  box-shadow: 0 4px 14px rgba(249, 115, 22, 0.2);
}

.btn-secondary {
  background: #ffffff;
  color: var(--primary-green);
  border: 1px solid rgba(249, 115, 22, 0.3);
}

.badge {
  display: inline-flex;
  align-items: center;
  padding: 0.2rem 0.7rem;
  border-radius: 999px;
  background: rgba(249, 115, 22, 0.12);
  color: var(--primary-green);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.25rem;
}

.section {
  padding: 4rem 0;
}

.section-title {
  font-size: 2rem;
  margin-bottom: 0.6rem;
  color: #111827;
}

.section-subtitle {
  font-size: 0.95rem;
  color: var(--text-muted);
  max-width: 520px;
}

.section-header {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-bottom: 2.5rem;
}

.section-header.center {
  align-items: center;
  text-align: center;
  margin-bottom: 3rem;
}

.card {
  background-color: var(--bg-white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
  padding: 1.6rem;
  transition: transform var(--transition-fast), box-shadow var(--transition-fast),
    border-color var(--transition-fast);
  border: 1px solid rgba(255, 255, 255, 0.4);
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.12);
  border-color: rgba(249, 115, 22, 0.3);
}

.card-icon {
  width: 42px;
  height: 42px;
  border-radius: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  background: linear-gradient(135deg, rgba(249, 115, 22, 0.15), rgba(251, 146, 60, 0.15));
  color: var(--primary-green);
}

.card-title {
  font-weight: 600;
  margin-bottom: 0.4rem;
}

.card-text {
  font-size: 0.92rem;
  color: var(--text-muted);
}

.tag-chip {
  display: inline-flex;
  align-items: center;
  padding: 0.15rem 0.55rem;
  border-radius: 999px;
  font-size: 0.72rem;
  background: rgba(249, 115, 22, 0.08);
  color: #a84b09;
}

.grid {
  display: grid;
  gap: 1.6rem;
}

.grid-3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.grid-4 {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.grid-2 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.text-center {
  text-align: center;
}

.text-danger {
  color: #e53935;
}

.pill-notice {
  padding: 0.75rem 1.1rem;
  border-radius: 12px;
  background: rgba(239, 68, 68, 0.06);
  border: 1px dashed rgba(239, 68, 68, 0.5);
  color: #b91c1c;
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.pill-notice i {
  color: #ef4444;
}

/* ========== 顶部导航�?========== */
.navbar {
  position: sticky;
  top: 0;
  z-index: 999;
  background: linear-gradient(to right, rgba(254, 235, 200, 0.95), rgba(252, 211, 141, 0.9));
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(148, 163, 184, 0.25);
  transition: background 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

/* 首页导航默认透明，露�?Hero �?bg.png；下拉后变为透明淡黑�?*/
.home-page .navbar {
  background: transparent;
  border-bottom-color: transparent;
  box-shadow: none;
}

.home-page .navbar.navbar-scrolled {
  background: rgba(253, 230, 205, 0.92);
  border-bottom-color: rgba(251, 191, 36, 0.45);
  box-shadow: 0 10px 28px rgba(190, 108, 20, 0.3);
}

.navbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  color: #f9fafb;
  font-weight: 700;
  font-size: 1.2rem;
}

.logo-mark {
  width: 32px;
  height: 32px;
  border-radius: 999px;
  background: radial-gradient(circle at 20% 20%, var(--primary-green), transparent 50%),
    radial-gradient(circle at 75% 80%, var(--primary-blue), transparent 55%);
  border: 2px solid rgba(148, 163, 184, 0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #e5f9ff;
  font-size: 0.85rem;
}

.logo span strong {
  background: linear-gradient(135deg, #fed7aa, #f97316);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.logo-img {
  height: 32px;
  width: auto;
  border-radius: 6px;
  object-fit: cover;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 1.4rem;
  font-size: 1.02rem; /* 导航字体稍微加大 */
}

.nav-links a {
  color: #f9fafb; /* 文字更亮一�?*/
  padding: 0.4rem 0.25rem;
  position: relative;
  transition: color var(--transition-fast);
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  height: 2px;
  width: 0;
  background: linear-gradient(135deg, var(--primary-green), var(--primary-blue));
  border-radius: 999px;
  transition: width var(--transition-fast);
}

.nav-links a:hover {
  color: #ffffff;
}

.nav-links a:hover::after {
  width: 100%;
}

.nav-links a.active {
  color: #ffffff;
  font-weight: 650; /* 当前页更醒目 */
}

.nav-links a.active::after {
  width: 55%;
}

.nav-cta {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.nav-apply {
  background: linear-gradient(135deg, #f97316, #fb923c);
  color: #fffdfa;
  border: none;
  box-shadow: 0 10px 20px rgba(249, 115, 22, 0.35);
}

.nav-apply:hover {
  box-shadow: 0 12px 28px rgba(249, 115, 22, 0.45);
}

.hamburger {
  display: none;
  width: 34px;
  height: 34px;
  border-radius: 999px;
  border: 1px solid rgba(148, 163, 184, 0.6);
  align-items: center;
  justify-content: center;
  cursor: pointer;
  background: radial-gradient(circle at 50% 0, rgba(251, 211, 141, 0.45), transparent 55%),
    rgba(68, 28, 10, 0.9);
}

.hamburger span {
  width: 18px;
  height: 2px;
  background: #e5e7eb;
  border-radius: 999px;
  position: relative;
  transition: background var(--transition-fast);
}

.hamburger span::before,
.hamburger span::after {
  content: "";
  position: absolute;
  left: 0;
  width: 18px;
  height: 2px;
  background: #e5e7eb;
  border-radius: 999px;
  transition: transform var(--transition-fast), top var(--transition-fast), opacity var(--transition-fast);
}

.hamburger span::before {
  top: -5px;
}

.hamburger span::after {
  top: 5px;
}

.hamburger.open span {
  background: transparent;
}

.hamburger.open span::before {
  top: 0;
  transform: rotate(45deg);
}

.hamburger.open span::after {
  top: 0;
  transform: rotate(-45deg);
}

.nav-mobile {
  display: none;
  flex-direction: column;
  gap: 0.8rem;
  padding: 0.9rem 1.25rem 1.2rem;
  /* 与导航栏保持一致的背景，不再出现透明�?*/
  background:
    linear-gradient(to right, rgba(254, 235, 200, 0.96), rgba(252, 211, 141, 0.92)),
    url("images/bg.png") center/cover no-repeat;
  border-bottom: 1px solid rgba(148, 163, 184, 0.4);
}

.nav-mobile a {
  color: #e5e7eb;
  font-size: 0.95rem;
  padding: 0.25rem 0;
}

.nav-mobile a.active {
  color: #f9fafb;
  font-weight: 600;
}

.nav-mobile-cta {
  margin-top: 0.4rem;
}

/* ========== Hero 区域（首页） ========== */
.hero {
  /* 顶部 Hero 使用 bg.png，与首页导航栏共用同一张背景图�?*/
  background: url("images/bg.png") center/cover no-repeat;
  position: relative;
  overflow: hidden;
  color: #e5e7eb;
  /* 再次收紧 Hero 高度，让首屏更紧�?*/
  padding: 4rem 0 3rem;
  min-height: 60vh;
  /* �?Hero 背景往上顶到导航栏后面，实现导航与 Hero 视觉共用同一背景 */
  margin-top: -64px;
  padding-top: calc(4rem + 64px);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(17, 24, 39, 0.25);
  z-index: 0;
}

.hero-inner {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(0, 1.1fr);
  gap: 3.6rem;
  align-items: center;
  /* 适度降低内部最小高度，避免整体过于拉伸 */
  min-height: calc(70vh - 56px);
  position: relative;
  z-index: 1;
}

.hero-content {
  background: rgba(68, 28, 10, 0.42);
  border: 1px solid rgba(251, 146, 60, 0.25);
  border-radius: 26px;
  padding: 2rem;
  backdrop-filter: blur(6px);
  box-shadow: 0 25px 60px rgba(68, 28, 10, 0.45);
}

.hero-kicker {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.25rem 0.6rem;
  border-radius: 999px;
  /* �?+ �?渐变，更醒目 */
  background: linear-gradient(
    90deg,
    rgba(251, 146, 60, 0.45),
    rgba(249, 115, 22, 0.45)
  );
  border: 1px solid rgba(251, 146, 60, 0.6);
  font-size: 0.76rem;
  margin-bottom: 1rem;
}

.hero-kicker span {
  padding: 0.08rem 0.5rem;
  border-radius: 999px;
  background: linear-gradient(135deg, #fed7aa, #f97316);
  color: #4a1d09;
  font-weight: 600;
}

.hero-title {
  font-size: 3rem;
  line-height: 1.12;
  margin-bottom: 1rem;
  letter-spacing: -0.03em;
}

.hero-title span {
  background: linear-gradient(135deg, #f97316, #fdba74);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero-desc {
  font-size: 1.02rem;
  color: #fde6cf;
  max-width: 520px;
  margin-bottom: 1.8rem;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
  flex-wrap: wrap;
}

.hero-cta-primary {
  background: rgba(249, 115, 22, 0.15);
  color: #fef3c7;
  border: 1px solid rgba(249, 115, 22, 0.5);
  box-shadow: none;
}

.hero-cta-primary:hover {
  background: rgba(249, 115, 22, 0.25);
  color: #fff7ed;
}

.hero-cta-secondary {
  background: #fffdfa;
  color: #a64707;
  border: 1px solid rgba(249, 115, 22, 0.3);
  box-shadow: 0 8px 20px rgba(255, 236, 209, 0.3);
}

.hero-cta-secondary:hover {
  color: #8b3003;
  box-shadow: 0 10px 24px rgba(255, 236, 209, 0.45);
}

.hero-meta {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
  font-size: 0.88rem;
  color: #f8d7bd;
}

.hero-meta strong {
  color: #fff5ea;
}

/* Hero 内部下载按钮区域 */
.hero-download {
  margin-top: 1.4rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  align-items: center;
}

.hero-download-label {
  font-size: 0.8rem;
  color: #fde6cf;
}

.hero-download .download-badges {
  margin-top: 0;
}

.hero-download .store-badge {
  background:
    linear-gradient(135deg, rgba(253, 230, 205, 0.95), rgba(251, 191, 36, 0.75));
  color: #7a2b05;
  border-color: rgba(249, 115, 22, 0.4);
  position: relative;
  overflow: hidden;
  transition: transform 0.35s ease, box-shadow 0.35s ease;
  animation: badgePulse 6s ease-in-out infinite;
}

.hero-download .store-badge::after {
  content: "";
  position: absolute;
  inset: -50%;
  background: linear-gradient(120deg, rgba(255, 255, 255, 0.35), rgba(255, 255, 255, 0));
  transform: rotate(25deg) translateY(-70%);
  transition: transform 0.6s ease;
}

.hero-download .store-badge:hover::after {
  transform: rotate(25deg) translateY(120%);
}

.hero-download .store-badge:hover {
  box-shadow: 0 24px 54px rgba(249, 115, 22, 0.4);
  transform: translateY(-4px) scale(1.04);
}

@keyframes badgePulse {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-3px);
  }
}

.hero-devices {
  position: relative;
  /* 轻微上下浮动动画，让右侧卡片更有生命�?*/
  animation: heroFloat 7s ease-in-out infinite;
}

.hero-card {
  /* 主色改为橙色，整体更温暖 */
  background:
    radial-gradient(circle at 0 0, rgba(254, 215, 170, 0.95), transparent 55%),
    radial-gradient(circle at 100% 100%, rgba(251, 146, 60, 0.85), transparent 55%),
    #7c2d12;
  border-radius: 30px;
  padding: 1.8rem 1.9rem;
  box-shadow: 0 30px 70px rgba(68, 28, 10, 0.85);
  border: 1px solid rgba(251, 146, 60, 0.95);
  transform-origin: center;
}

.hero-card-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.1rem;
}

.hero-card-title {
  font-size: 1rem;
  color: #ecfdf5;
}

.hero-card-title span {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  font-size: 0.75rem;
  color: #fed7aa;
}

.hero-limit {
  font-size: 0.85rem;
  color: #fcd9b6;
}

.hero-amount {
  font-size: 2.1rem;
  font-weight: 700;
  color: #f9fafb;
  letter-spacing: 0.06em;
}

.hero-amount span {
  font-size: 0.8rem;
  color: #fcd9b6;
  margin-left: 0.25rem;
}

.hero-progress {
  margin: 1.4rem 0 1rem;
}

.hero-progress-track {
  height: 6px;
  border-radius: 999px;
  background: rgba(251, 191, 36, 0.25);
  overflow: hidden;
}

.hero-progress-fill {
  height: 100%;
  width: 68%;
  border-radius: inherit;
  background: linear-gradient(90deg, #f97316, #fdba74);
}

.hero-progress-labels {
  display: flex;
  justify-content: space-between;
  margin-top: 0.35rem;
  font-size: 0.7rem;
  color: #fcd9b6;
}

.hero-loan-meta {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  margin: 1.2rem 0 0.8rem;
}

.hero-loan-meta-item {
  background: rgba(124, 45, 18, 0.92);
  border-radius: 14px;
  padding: 0.85rem 0.9rem;
  border: 1px solid rgba(251, 146, 60, 0.8);
}

.hero-loan-meta-item span {
  display: block;
  font-size: 0.7rem;
  color: #fcd9b6;
  margin-bottom: 0.1rem;
}

.hero-loan-meta-item strong {
  font-size: 0.9rem;
  color: #fff8ef;
}

.hero-trust {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.6rem;
  margin-top: 0.9rem;
  font-size: 0.76rem;
  color: #fbd4b5;
}

.hero-avatars {
  display: flex;
}

.hero-avatar {
  width: 24px;
  height: 24px;
  border-radius: 999px;
  border: 2px solid rgba(15, 23, 42, 0.9);
  background: radial-gradient(circle at 20% 20%, #fdba74, #f97316);
  margin-left: -8px;
}

.hero-avatar:first-child {
  margin-left: 0;
}

.hero-floating-tag {
  position: absolute;
  top: -10px;
  right: -4px;
  background: linear-gradient(
    135deg,
    rgba(251, 146, 60, 0.18),
    rgba(248, 171, 95, 0.18)
  );
  border-radius: 999px;
  padding: 0.55rem 0.9rem;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  border: 1px solid rgba(251, 146, 60, 0.8);
  font-size: 0.75rem;
  color: #fff7ed;
  box-shadow: 0 12px 36px rgba(68, 28, 10, 0.7);
}

.hero-floating-tag i {
  color: #fed7aa;
}

.hero-badge-pill {
  position: absolute;
  left: -26px;
  bottom: 6px;
  background: linear-gradient(135deg, rgba(249, 115, 22, 0.25), rgba(251, 191, 36, 0.25));
  border-radius: 999px;
  padding: 0.5rem 0.9rem;
  border: 1px solid rgba(249, 115, 22, 0.85);
  font-size: 0.7rem;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}

/* Hero 标签轻微呼吸动画 */
.hero-floating-tag,
.hero-badge-pill {
  animation: heroPulse 4.5s ease-in-out infinite;
}

@keyframes heroFloat {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-8px);
  }
  100% {
    transform: translateY(0);
  }
}

@keyframes heroPulse {
  0% {
    transform: translateY(0);
    box-shadow: 0 12px 36px rgba(15, 23, 42, 0.8);
  }
  50% {
    transform: translateY(-3px);
    box-shadow: 0 18px 46px rgba(15, 23, 42, 0.9);
  }
  100% {
    transform: translateY(0);
    box-shadow: 0 12px 36px rgba(15, 23, 42, 0.8);
  }
}

.hero-badge-pill span {
  color: #ffe8cc;
}

/* ========== 首页 - 其他区块 ========== */
.intro-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(0, 1.1fr);
  gap: 2.4rem;
  align-items: center;
}

.intro-main p {
  color: var(--text-muted);
  font-size: 0.96rem;
}

.intro-highlight {
  display: flex;
  align-items: center;
  gap: 1.3rem;
  margin-top: 1.25rem;
}

.intro-highlight-stat {
  display: flex;
  flex-direction: column;
}

.intro-highlight-stat strong {
  font-size: 1.2rem;
  color: var(--primary-blue);
}

.intro-highlight-stat span {
  font-size: 0.8rem;
  color: var(--text-muted);
}

.intro-note {
  font-size: 0.82rem;
  color: var(--text-muted);
  max-width: 260px;
}

.section-about {
  background: linear-gradient(180deg, rgba(255, 247, 237, 0.85), rgba(255, 236, 209, 0.65));
  padding-bottom: 5rem;
}

.intro-pill-list {
  margin-top: 1.5rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}

.intro-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.35rem 0.9rem;
  border-radius: 999px;
  border: 1px solid rgba(249, 115, 22, 0.25);
  background: rgba(253, 230, 205, 0.6);
  color: #8c3a05;
  font-size: 0.82rem;
}

.intro-stats-grid {
  margin-top: 1.8rem;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.stat-card {
  background: #fffdfa;
  border-radius: 18px;
  padding: 1rem 1.1rem;
  border: 1px solid rgba(249, 115, 22, 0.18);
  box-shadow: 0 18px 35px rgba(249, 115, 22, 0.08);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.stat-card i {
  color: #f97316;
  margin-right: 0.2rem;
}

.stat-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 45px rgba(249, 115, 22, 0.15);
}

.stat-card span {
  font-size: 0.78rem;
  color: var(--text-muted);
}

.stat-card strong {
  display: block;
  font-size: 1.1rem;
  margin: 0.4rem 0;
  color: #7c2d12;
}

.stat-card p {
  font-size: 0.82rem;
  color: #6b4c3d;
}

.intro-card-grid {
  margin-top: 2rem;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.5rem;
}

.feature-icon-amber {
  background: rgba(253, 186, 116, 0.18);
  color: #c2410c;
}

.intro-story-card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 0.8rem;
  animation: fadeUp 0.8s ease forwards;
}

.intro-checklist {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  color: #6b4c3d;
  font-size: 0.9rem;
}

.intro-checklist li {
  display: flex;
  align-items: flex-start;
  gap: 0.4rem;
}

.intro-checklist i {
  color: #f97316;
  margin-top: 0.2rem;
}

.intro-story-cta {
  align-self: flex-start;
  background: linear-gradient(135deg, #f97316, #fdba74);
  border: none;
  color: #4a1d09;
}

.intro-bottom {
  margin-top: 2.4rem;
  border-radius: 24px;
  padding: 2rem;
  border: 1px solid rgba(249, 115, 22, 0.18);
  background: rgba(255, 255, 255, 0.8);
  animation: fadeUp 0.8s ease forwards;
}

.intro-bottom-header h3 {
  margin-bottom: 0.3rem;
}

.intro-bottom-header p {
  color: var(--text-muted);
  font-size: 0.92rem;
}

.intro-journey {
  margin-top: 1.5rem;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.intro-journey-step {
  border-radius: 18px;
  padding: 1.2rem;
  background: rgba(253, 230, 205, 0.55);
  border: 1px solid rgba(249, 115, 22, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.intro-journey-step span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(249, 115, 22, 0.12);
  color: #a64707;
  font-weight: 600;
  margin-bottom: 0.6rem;
}

.intro-journey-step h4 {
  margin-bottom: 0.3rem;
  color: #7a2b05;
}

.intro-journey-step p {
.intro-journey-step:hover {
  transform: translateY(-4px);
  box-shadow: 0 22px 40px rgba(173, 94, 20, 0.22);
  background: rgba(253, 230, 205, 0.8);
}

.delay-100 {
  animation-delay: 0.1s;
}

.delay-200 {
  animation-delay: 0.2s;
}

@keyframes fadeUp {
  from {
    transform: translateY(10px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}
  color: var(--text-muted);
  font-size: 0.85rem;
}

.feature-card {
  padding: 1.5rem 1.4rem;
}

.feature-icon-primary {
  background: radial-gradient(circle at 0 0, rgba(34, 197, 94, 0.2), transparent 60%),
    rgba(240, 253, 250, 0.9);
  color: #059669;
}

.feature-icon-blue {
  background: radial-gradient(circle at 0 0, rgba(59, 130, 246, 0.2), transparent 60%),
    rgba(239, 246, 255, 0.98);
  color: #2563eb;
}

.feature-pill-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin-top: 0.5rem;
}

.feature-pill {
  padding: 0.18rem 0.6rem;
  border-radius: 999px;
  font-size: 0.7rem;
  background: rgba(15, 23, 42, 0.02);
  color: var(--text-muted);
}

.download-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin-top: 1.1rem;
}

.store-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.55rem 0.9rem;
  border-radius: 999px;
  /* 改为浅色背景，去掉黑色块视觉 */
  background: #ffffff;
  color: #111827;
  border: 1px solid rgba(148, 163, 184, 0.6);
  font-size: 0.8rem;
  cursor: pointer;
  transition: transform var(--transition-fast), box-shadow var(--transition-fast),
    border-color var(--transition-fast), background var(--transition-fast);
}

.store-badge i {
  font-size: 1.1rem;
}

.store-badge span {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}

.store-badge small {
  font-size: 0.68rem;
  color: #6b7280;
}

.store-badge strong {
  font-size: 0.9rem;
}

.store-badge:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 32px rgba(15, 23, 42, 0.18);
  border-color: rgba(96, 165, 250, 0.8);
}

/* #download 下载模块已从首页移除，如需再次使用可重新启用样�?*/

.benefit-list {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.4rem;
}

.benefit-item {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.benefit-icon {
  width: 34px;
  height: 34px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(22, 101, 52, 0.08);
  color: #15803d;
  margin-bottom: 0.2rem;
}

.benefit-card {
  position: relative;
  overflow: hidden;
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.benefit-card::after {
  content: "";
  position: absolute;
  inset: -80%;
  background: linear-gradient(120deg, rgba(255, 255, 255, 0.45), transparent 70%);
  transform: rotate(20deg) translateY(-120%);
  transition: transform 0.6s ease;
}

.benefit-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 40px rgba(249, 115, 22, 0.15);
}

.benefit-card:hover::after {
  transform: rotate(20deg) translateY(120%);
}

.benefit-meta {
  font-size: 0.82rem;
  color: #a64707;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  margin-top: 0.3rem;
}

.benefit-meta i {
  color: #f97316;
}

.benefit-extra {
  margin-top: 2.2rem;
  border-radius: 20px;
  padding: 1.8rem;
  background: rgba(253, 230, 205, 0.45);
  border: 1px solid rgba(249, 115, 22, 0.2);
}

.benefit-extra-header h3 {
  margin-bottom: 0.4rem;
}

.benefit-extra-grid {
  margin-top: 1.5rem;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.benefit-extra-grid div {
  padding: 1rem;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(249, 115, 22, 0.15);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.benefit-extra-grid div span {
  display: block;
  font-size: 0.75rem;
  color: #a64707;
  margin-bottom: 0.3rem;
}

.benefit-extra-grid div h4 {
  margin-bottom: 0.3rem;
  color: #7a2b05;
}

.benefit-extra-grid div p {
  color: var(--text-muted);
  font-size: 0.85rem;
}

.benefit-extra-grid div:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 35px rgba(249, 115, 22, 0.18);
}

.timeline {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.4rem;
}

.timeline-step {
  position: relative;
  padding: 1.4rem 1.2rem;
  border-radius: var(--radius-lg);
  background: #ffffff;
  box-shadow: var(--shadow-soft);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.timeline-step::before {
  content: attr(data-step);
  position: absolute;
  top: -14px;
  left: 1.2rem;
  width: 30px;
  height: 30px;
  border-radius: 999px;
  background: #0f172a;
  color: #e5e7eb;
  font-size: 0.8rem;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.6);
}

.timeline-step h4 {
  margin-bottom: 0.35rem;
  font-size: 1rem;
}

.timeline-step p {
  font-size: 0.9rem;
  color: var(--text-muted);
}

.timeline-step:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 40px rgba(249, 115, 22, 0.15);
}

.timeline-meta {
  margin-top: 0.6rem;
  font-size: 0.8rem;
  color: #a64707;
}

.timeline-meta i {
  color: #f97316;
  margin-right: 0.25rem;
}

.how-extra {
  margin-top: 2.2rem;
  border-radius: 20px;
  padding: 1.8rem;
  background: rgba(253, 230, 205, 0.45);
  border: 1px solid rgba(249, 115, 22, 0.2);
}

.how-extra-grid {
  margin-top: 1.2rem;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.how-extra-grid div {
  padding: 1rem;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(249, 115, 22, 0.15);
  font-size: 0.9rem;
  color: #6b4c3d;
}

.how-extra-grid strong {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  color: #7a2b05;
  margin-bottom: 0.3rem;
}

.faq-preview {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr);
  gap: 2rem;
}

.faq-preview-list .faq-item {
  margin-bottom: 1rem;
}

.faq-preview-list .faq-question {
  font-weight: 600;
  margin-bottom: 0.3rem;
}

.faq-preview-list .faq-answer {
  font-size: 0.9rem;
  color: var(--text-muted);
}

.faq-cta-card {
  background: linear-gradient(135deg, rgba(255, 237, 213, 0.98), rgba(251, 146, 60, 0.92));
  border-radius: 18px;
  padding: 1.6rem 1.5rem;
  color: #4a1d09;
  box-shadow: 0 20px 50px rgba(190, 108, 20, 0.35);
}

.faq-cta-card h4 {
  margin-bottom: 0.4rem;
}

.faq-cta-card p {
  font-size: 0.9rem;
  margin-bottom: 0.9rem;
}

.faq-cta-card .btn {
  box-shadow: 0 14px 40px rgba(249, 115, 22, 0.35);
}

/* ========== Loan 页面 ========== */
.page-header {
  position: relative;
  overflow: hidden;
  padding: 5rem 0 4rem;
  min-height: 45vh;
  color: #fff9f2;
  background: linear-gradient(135deg, #f97316, #fb923c);
}

.page-header::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 20% 20%, rgba(255, 255, 255, 0.25), transparent 55%),
    radial-gradient(circle at 80% 0, rgba(255, 255, 255, 0.18), transparent 60%);
  opacity: 0.6;
}

.page-header::after {
  content: "";
  position: absolute;
  width: 280px;
  height: 280px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.3);
  top: -80px;
  right: -40px;
  opacity: 0.4;
  animation: headerFloat 8s ease-in-out infinite;
}

.page-header-inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  max-width: 900px;
}

.page-header-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.35rem 0.9rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.4);
  font-weight: 600;
}

.page-header h1 {
  font-size: 2.6rem;
  line-height: 1.15;
}

.page-header p {
  font-size: 1rem;
  max-width: 650px;
  color: rgba(255, 249, 242, 0.9);
}

.page-header-meta {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.page-header-meta div {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  padding: 0.8rem 1rem;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.16);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.page-header-meta strong {
  font-size: 1.15rem;
}

.page-header-graphic {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.page-header-graphic span {
  position: absolute;
  width: 140px;
  height: 140px;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.35);
  top: 30%;
  right: 18%;
  transform: rotate(25deg);
  animation: headerFloat 6s ease-in-out infinite;
}

.page-header-loan {
  background: linear-gradient(135deg, rgba(249, 115, 22, 0.95), rgba(253, 186, 116, 0.85)),
    url("images/bg.png") center/cover no-repeat;
}

.page-header-about {
  background: linear-gradient(135deg, rgba(234, 88, 12, 0.92), rgba(249, 115, 22, 0.78)),
    url("images/bg.png") center/cover no-repeat;
}

.page-header-faq {
  background: linear-gradient(135deg, rgba(245, 158, 11, 0.9), rgba(249, 115, 22, 0.85)),
    url("images/bg.png") center/cover no-repeat;
}

.page-header-contact {
  background: linear-gradient(135deg, rgba(249, 115, 22, 0.9), rgba(234, 179, 8, 0.8)),
    url("images/bg.png") center/cover no-repeat;
}

.page-header-account {
  background: linear-gradient(135deg, rgba(248, 113, 113, 0.85), rgba(251, 146, 60, 0.85)),
    url("images/bg.png") center/cover no-repeat;
}

.loan-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(0, 1.2fr);
  gap: 2.5rem;
  align-items: center;
  padding: 3rem 0 4rem;
}

.loan-facts {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  margin: 1.4rem 0 1.6rem;
}

.loan-fact {
  padding: 0.9rem 0.95rem;
  border-radius: 12px;
  background: rgba(15, 23, 42, 0.03);
}

.loan-fact span {
  display: block;
  font-size: 0.78rem;
  color: var(--text-muted);
  margin-bottom: 0.1rem;
}

.loan-fact strong {
  font-size: 1rem;
}

.loan-apply-note {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-top: 0.7rem;
}
.loan-header-download {
  margin-top: 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

.loan-header-download-label {
  font-size: 1rem;
  font-weight: 500;
  color: #fffbeb;
}

.loan-header-download .download-badges {
  margin-top: 0;
  justify-content: center;
  gap: 1.2rem;
  flex-wrap: wrap;
}

.loan-header-download .store-badge {
  padding: 0.95rem 1.7rem;
  font-size: 0.95rem;
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.98), rgba(254, 243, 199, 0.98));
  color: #111827;
  border-color: rgba(148, 163, 184, 0.9);
  box-shadow: 0 14px 30px rgba(15, 23, 42, 0.35);
}

.loan-header-download .store-badge:hover {
  box-shadow: 0 20px 45px rgba(15, 23, 42, 0.5);
  transform: translateY(-3px);
}

.loan-visual {
  position: relative;
}

.loan-phone {
  width: 260px;
  height: 490px;
  border-radius: 32px;
  border: 10px solid #020617;
  background: radial-gradient(circle at 0 0, rgba(59, 130, 246, 0.35), transparent 60%),
    radial-gradient(circle at 100% 100%, rgba(34, 197, 94, 0.35), transparent 55%),
    #020617;
  padding: 1.1rem 0.9rem;
  box-shadow: 0 35px 80px rgba(15, 23, 42, 0.85);
  position: relative;
  margin-left: auto;
}

.loan-phone-screen {
  background: rgba(15, 23, 42, 0.85);
  border-radius: 22px;
  height: 100%;
  padding: 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
  border: 1px solid rgba(148, 163, 184, 0.5);
}

.loan-phone-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: #e5e7eb;
  font-size: 0.75rem;
}

.loan-phone-loan {
  background: linear-gradient(135deg, #f97316, #fb923c);
  border-radius: 18px;
  padding: 0.85rem 1rem;
  color: #f9fafb;
}

.loan-phone-loan span {
  font-size: 0.78rem;
  opacity: 0.9;
}

.loan-phone-loan strong {
  font-size: 1.5rem;
}

.loan-phone-meta {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.6rem;
  margin-top: 0.6rem;
  font-size: 0.7rem;
}

.loan-phone-meta div {
  background: rgba(15, 23, 42, 0.85);
  border-radius: 12px;
  padding: 0.55rem 0.6rem;
  border: 1px solid rgba(30, 64, 175, 0.7);
  color: #e5e7eb;
}

.loan-phone-activity {
  margin-top: 0.4rem;
  padding-top: 0.5rem;
  border-top: 1px dashed rgba(148, 163, 184, 0.6);
  font-size: 0.7rem;
  color: #9ca3af;
}

.loan-floating-card {
  position: absolute;
  bottom: 10%;
  left: -14%;
  background: #ffffff;
  border-radius: 16px;
  padding: 1rem 1.1rem;
  box-shadow: 0 20px 50px rgba(15, 23, 42, 0.45);
  width: 240px;
}

.loan-floating-card h4 {
  font-size: 0.95rem;
  margin-bottom: 0.4rem;
}

.loan-floating-card p {
  font-size: 0.82rem;
  color: var(--text-muted);
}

.loan-floating-card ul {
  margin-top: 0.6rem;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  font-size: 0.82rem;
}

.loan-floating-card li i {
  color: var(--primary-green);
  margin-right: 0.35rem;
}

/* ========== About 页面 ========== */
.about-hero {
  position: relative;
  padding: 3.8rem 0 3.2rem;
  color: #f9fafb;
  background: linear-gradient(135deg, rgba(15, 23, 42, 0.98), rgba(30, 64, 175, 0.98)),
    url("https://images.pexels.com/photos/3184360/pexels-photo-3184360.jpeg?auto=compress&cs=tinysrgb&w=1600")
      center/cover no-repeat;
  background-blend-mode: overlay;
}

.about-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 0 0, rgba(56, 189, 248, 0.35), transparent 55%);
  pointer-events: none;
}

.about-hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(0, 1.1fr);
  gap: 2.4rem;
  align-items: center;
}

.about-hero h1 {
  font-size: 2.2rem;
  margin-bottom: 0.6rem;
}

.about-hero p {
  font-size: 0.96rem;
  color: #e5e7eb;
  max-width: 520px;
}

.about-pill-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1.2rem;
}

.about-pill {
  padding: 0.2rem 0.7rem;
  border-radius: 999px;
  border: 1px solid rgba(148, 163, 184, 0.7);
  font-size: 0.75rem;
  color: #e5e7eb;
  background: rgba(15, 23, 42, 0.7);
}

.about-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 1.4rem;
}

.about-metric {
  padding: 0.8rem 0.9rem;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(251, 191, 36, 0.9), rgba(249, 115, 22, 0.9));
  border: 1px solid rgba(249, 115, 22, 0.9);
}

.about-metric strong {
  display: block;
  font-size: 1.25rem;
}

.about-metric span {
  display: block;
  font-size: 0.78rem;
  color: #cbd5f5;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.6rem;
}

.team-card {
  text-align: center;
  padding: 1.4rem 1.2rem;
}

.team-avatar {
  width: 90px;
  height: 90px;
  border-radius: 999px;
  margin: 0 auto 0.9rem;
  overflow: hidden;
  border: 3px solid rgba(59, 130, 246, 0.5);
  box-shadow: 0 12px 30px rgba(15, 23, 42, 0.18);
}

.team-name {
  font-weight: 600;
  margin-bottom: 0.15rem;
}

.team-role {
  font-size: 0.82rem;
  color: var(--primary-blue);
  margin-bottom: 0.35rem;
}

.team-bio {
  font-size: 0.85rem;
  color: var(--text-muted);
}

.advantage-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.6rem;
}

.stat-highlight {
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--primary-blue);
  margin-bottom: 0.2rem;
}

.stat-caption {
  font-size: 0.88rem;
  color: var(--text-muted);
}

/* ========== FAQ 页面 ========== */
.faq-wrapper {
  max-width: 900px;
  margin: 0 auto;
  padding: 3.2rem 0 4rem;
}

.accordion {
  border-radius: 18px;
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  background: #ffffff;
}

.accordion-item + .accordion-item {
  border-top: 1px solid var(--border-soft);
}

.accordion-header {
  padding: 1.1rem 1.4rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  cursor: pointer;
  background: #ffffff;
  transition: background var(--transition-fast);
}

.accordion-header h3 {
  font-size: 0.98rem;
}

.accordion-header span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 26px;
  height: 26px;
  border-radius: 999px;
  border: 1px solid rgba(148, 163, 184, 0.7);
  color: var(--primary-blue);
  font-size: 0.75rem;
  flex-shrink: 0;
}

.accordion-item.open .accordion-header {
  background: rgba(219, 234, 254, 0.7);
}

.accordion-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
  background: #f9fafb;
}

.accordion-body-inner {
  padding: 0 1.4rem 1.1rem;
  font-size: 0.9rem;
  color: var(--text-muted);
}

.accordion-body-inner p + p {
  margin-top: 0.5rem;
}

.faq-note {
  margin-top: 1.5rem;
  font-size: 0.88rem;
  color: var(--text-muted);
}

/* ========== Contact 页面 ========== */
.contact-wrapper {
  padding: 3.2rem 0 4rem;
}

.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(0, 1.2fr);
  gap: 2.5rem;
  align-items: flex-start;
}

.form-group {
  margin-bottom: 1.1rem;
}

.form-label {
  display: block;
  margin-bottom: 0.35rem;
  font-size: 0.9rem;
  font-weight: 500;
}

.form-control,
.form-textarea,
.form-select {
  width: 100%;
  padding: 0.7rem 0.85rem;
  border-radius: 10px;
  border: 1px solid #d1d5db;
  outline: none;
  font-size: 0.92rem;
  transition: border-color var(--transition-fast), box-shadow var(--transition-fast),
    background var(--transition-fast), transform var(--transition-fast);
  background: #ffffff;
}

.form-control:focus,
.form-textarea:focus,
.form-select:focus {
  border-color: var(--primary-blue);
  box-shadow: 0 0 0 1px rgba(33, 150, 243, 0.35);
  transform: translateY(-1px);
}

.form-textarea {
  min-height: 120px;
  resize: vertical;
}

.form-helper {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-top: 0.25rem;
}

.form-error {
  font-size: 0.82rem;
  color: #e53935;
  margin-top: 0.25rem;
}

.contact-info-card {
  padding: 1.7rem 1.6rem;
}

.contact-info-list {
  margin-top: 1rem;
  display: grid;
  gap: 0.8rem;
}

.contact-info-item {
  display: flex;
  gap: 0.7rem;
  font-size: 0.9rem;
}

.contact-info-icon {
  width: 32px;
  height: 32px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(37, 99, 235, 0.08);
  color: var(--primary-blue);
  flex-shrink: 0;
}

.contact-hours {
  margin-top: 1.3rem;
  padding-top: 1rem;
  border-top: 1px dashed var(--border-soft);
  font-size: 0.9rem;
  color: var(--text-muted);
}

.contact-hours strong {
  display: block;
  color: var(--text-main);
  margin-bottom: 0.25rem;
}

.btn-loading {
  position: relative;
}

.btn-loading .spinner {
  width: 14px;
  height: 14px;
  border-radius: 999px;
  border: 2px solid rgba(248, 250, 252, 0.4);
  border-top-color: #ffffff;
  animation: spin 0.7s linear infinite;
}

.btn-loading span {
  margin-left: 0.35rem;
}

/* ========== Account 页面 ========== */
.account-wrapper {
  min-height: calc(100vh - 64px - 220px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 3rem 1.25rem;
}

.account-card {
  max-width: 460px;
  width: 100%;
}

/* ========== 页脚 ========== */
.footer {
  background: #1f2937;
  color: #e5e7eb;
  padding: 2.4rem 0 1.4rem;
  margin-top: 3rem;
}

.footer-top {
  display: grid;
  grid-template-columns: minmax(0, 2fr) minmax(0, 1fr);
  gap: 2.2rem;
  margin-bottom: 1.6rem;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  margin-bottom: 0.6rem;
}

.footer-logo .logo-mark {
  border-color: rgba(156, 163, 175, 0.9);
}

.footer-logo span {
  font-weight: 700;
}

.footer-company p {
  font-size: 0.9rem;
  color: #d1d5db;
  margin-bottom: 0.3rem;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  font-size: 0.9rem;
}

.footer-links a {
  color: #e5e7eb;
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
}

.footer-links a i {
  font-size: 0.8rem;
}

.footer-bottom {
  padding-top: 1rem;
  border-top: 1px solid rgba(75, 85, 99, 0.8);
  font-size: 0.8rem;
  color: #9ca3af;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 0.6rem;
}

/* ========== 动画 & 过渡 ========== */
.fade-in-up {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in-up.visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

/* ========== 响应式布局 ========== */
@media (max-width: 1024px) {
  .hero-inner,
  .intro-grid,
  .loan-layout,
  .about-hero-inner,
  .contact-grid,
  .faq-preview {
    grid-template-columns: minmax(0, 1fr);
  }

  .hero-devices,
  .loan-visual {
    order: -1;
  }

  .hero {
    padding-top: 3.5rem;
  }

  .section {
    padding: 3.2rem 0;
  }

  .grid-3 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .grid-4,
  .benefit-list,
  .about-metrics,
  .team-grid,
  .advantage-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .intro-stats-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .intro-journey {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .intro-card-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .page-header {
    padding: 4rem 0 3.2rem;
    min-height: 38vh;
  }

  .page-header-meta {
    gap: 1rem;
  }

  .loan-phone {
    margin: 0 auto;
  }

  .loan-floating-card {
    position: static;
    margin-top: 1.5rem;
  }

  .about-hero-inner {
    gap: 1.8rem;
  }

  .footer-top {
    grid-template-columns: minmax(0, 1fr);
  }
}

@media (max-width: 768px) {
  .navbar-inner {
    height: 60px;
  }

  .nav-links,
  .nav-cta {
    display: none;
  }

  .hamburger {
    display: inline-flex;
  }

  .hero-inner {
    gap: 2.4rem;
  }

  .hero-title {
    font-size: 2.1rem;
  }

  /* 移动端导航稍矮，这里同步调整 Hero 的负边距与上内边距，保证背景同样顶到导航背后 */
  .hero {
    margin-top: -60px;
    padding-top: calc(4.5rem + 60px);
  }

  .benefit-list,
  .timeline {
    grid-template-columns: minmax(0, 1fr);
  }

  .grid-3,
  .grid-4,
  .about-metrics,
  .team-grid,
  .advantage-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .intro-stats-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .intro-journey {
    grid-template-columns: minmax(0, 1fr);
  }

  .intro-card-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .page-header h1 {
    font-size: 2.1rem;
  }

  .page-header-meta {
    flex-direction: column;
  }

  .hero-card {
    border-radius: 22px;
  }

  .hero-floating-tag,
  .hero-badge-pill {
    position: static;
    display: inline-flex;
    margin-top: 0.9rem;
  }

  .hero-badge-pill {
    margin-left: 0;
  }

  .contact-wrapper {
    padding-top: 2.6rem;
  }

  .account-wrapper {
    padding: 2.4rem 1.25rem;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 1rem;
  }

  .hero {
    padding: 3rem 0 3.2rem;
  }

  .hero-title {
    font-size: 1.9rem;
  }

  .hero-actions {
    flex-direction: column;
    align-items: flex-start;
  }

  .loan-facts {
    grid-template-columns: minmax(0, 1fr);
  }

  .loan-phone {
    width: 230px;
    height: 440px;
  }

  .footer {
    padding-top: 2rem;
  }
}

/* ========== Global Modal (custom popup) ========== */
.modal-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(15, 23, 42, 0.55);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 999;
  backdrop-filter: blur(4px);
}

.modal-backdrop.show {
  display: flex;
}

.modal-card {
  position: relative;
  width: min(420px, 92%);
  background: radial-gradient(circle at top left, #fff7ed, #ffffff);
  border-radius: 1.2rem;
  box-shadow: 0 24px 60px rgba(15, 23, 42, 0.35);
  padding: 1.4rem 1.5rem 1.5rem;
  border: 1px solid rgba(249, 115, 22, 0.16);
  animation: modalPop 0.22s ease-out;
}

.modal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 0.6rem;
}

.modal-title {
  font-size: 1.02rem;
  font-weight: 600;
  color: #4a1d09;
}

.modal-close {
  width: 28px;
  height: 28px;
  border-radius: 999px;
  border: 1px solid rgba(148, 163, 184, 0.6);
  background: rgba(255, 255, 255, 0.95);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: #6b4c3d;
  font-size: 0.85rem;
  transition: background 0.16s ease, transform 0.16s ease, box-shadow 0.16s ease;
}

.modal-close:hover {
  background: #f97316;
  color: #fff7ed;
  box-shadow: 0 10px 26px rgba(249, 115, 22, 0.35);
  transform: translateY(-1px);
}

.modal-body {
  font-size: 0.95rem;
  line-height: 1.6;
  color: #6b4c3d;
  padding-top: 0.25rem;
}

.modal-body strong {
  color: #4a1d09;
}

@keyframes modalPop {
  from {
    opacity: 0;
    transform: translateY(12px) scale(0.96);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}






