/* 全局样式重置 */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --primary-color: #2563eb;
  --primary-dark: #1e40af;
  --primary-light: #3b82f6;
  --text-dark: #1f2937;
  --text-gray: #6b7280;
  --text-light: #9ca3af;
  --bg-white: #ffffff;
  --bg-light: #f9fafb;
  --bg-gray: #f3f4f6;
  --border-color: #e5e7eb;
  --shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06);
  --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1),
    0 2px 4px -1px rgba(0, 0, 0, 0.06);
  --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1),
    0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
    "Helvetica Neue", Arial, sans-serif;
  line-height: 1.6;
  color: var(--text-dark);
  background-color: var(--bg-white);
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* 导航栏样式 */
.navbar {
  background-color: transparent;
  backdrop-filter: blur(10px);
  box-shadow: none;
  position: sticky;
  top: 0;
  z-index: 1000;
  transition: background-color 0.3s ease, box-shadow 0.3s ease;
}

/* index.html页面导航栏完全透明，与下载页共享背景 */
.home-page .navbar {
  background: transparent;
  backdrop-filter: none;
}

.navbar.scrolled {
  background-color: rgba(191, 219, 254, 0.5);
  backdrop-filter: blur(10px);
  box-shadow: var(--shadow);
}

.home-page .navbar.scrolled {
  background-color: rgba(191, 219, 254, 0.5);
  backdrop-filter: blur(10px);
  box-shadow: var(--shadow);
}

.nav-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem 0;
}

.logo {
  font-size: 1.8rem;
  font-weight: bold;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.logo-img {
  height: 50px;
  width: auto;
  max-width: 150px;
  object-fit: contain;
  transition: all 0.3s ease;
  filter: drop-shadow(0 2px 10px rgba(0, 0, 0, 0.3));
}

.home-page .logo-img {
  filter: drop-shadow(0 2px 10px rgba(0, 0, 0, 0.5));
}

.navbar.scrolled .logo-img {
  filter: drop-shadow(0 2px 5px rgba(0, 0, 0, 0.2));
}

.logo-text {
  color: #ffffff;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
  transition: all 0.3s ease;
  font-size: 1.1rem;
  font-weight: 600;
}

.navbar.scrolled .logo-text {
  color: var(--primary-color);
  background: linear-gradient(
    135deg,
    var(--primary-color),
    var(--primary-light)
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-shadow: none;
}

.nav-menu {
  display: flex;
  list-style: none;
  gap: 3rem;
  align-items: center;
}

.nav-menu a {
  text-decoration: none;
  color: #ffffff;
  font-weight: 600;
  font-size: 1.1rem;
  transition: color 0.3s ease;
  position: relative;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
  padding: 0.5rem 0;
}

.navbar.scrolled .nav-menu a {
  color: var(--text-dark);
  text-shadow: none;
}

.nav-menu a:hover,
.nav-menu a.active {
  color: var(--primary-color);
}

.navbar.scrolled .nav-menu a:hover,
.navbar.scrolled .nav-menu a.active {
  color: var(--primary-color);
}

.nav-menu a.active::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  right: 0;
  height: 2px;
  background-color: var(--primary-color);
}

.mobile-menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 5px;
}

.mobile-menu-toggle span {
  width: 25px;
  height: 3px;
  background-color: #ffffff;
  transition: all 0.3s ease;
  display: block;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
}

.navbar.scrolled .mobile-menu-toggle span {
  background-color: var(--text-dark);
  box-shadow: none;
}

/* 主要内容区域 */
main {
  min-height: calc(100vh - 200px);
}

/* index.html页面main从顶部开始 */
.home-page main {
  margin-top: 0;
}

/* Hero区域 */
.hero {
  background: url("images/bg.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;
  color: white;
  padding: 180px 0;
  text-align: center;
  position: relative;
  min-height: 900px;
  display: flex;
  align-items: center;
  overflow: hidden;
}

/* index.html页面hero区域从顶部开始，包含导航栏区域 */
.home-page .hero {
  margin-top: -100px;
  padding-top: 280px;
  min-height: 100vh;
}

.hero .container {
  width: 100%;
  position: relative;
  z-index: 2;
}

.hero-content {
  width: 100%;
  animation: fadeInUp 1s ease-out;
  position: relative;
  z-index: 2;
  padding: 2rem;
  background: transparent;
  backdrop-filter: none;
  border-radius: 0;
  max-width: 900px;
  margin: 0 auto;
  border: none;
}

/* 装饰性背景圆圈 */
.hero-decoration {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  pointer-events: none;
}

.decoration-circle {
  position: absolute;
  border-radius: 50%;
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.1),
    rgba(255, 255, 255, 0.05)
  );
  backdrop-filter: blur(20px);
  animation: float 6s ease-in-out infinite;
}

.circle-1 {
  width: 300px;
  height: 300px;
  top: 10%;
  left: 5%;
  animation-delay: 0s;
}

.circle-2 {
  width: 200px;
  height: 200px;
  top: 60%;
  right: 10%;
  animation-delay: 1s;
}

.circle-3 {
  width: 150px;
  height: 150px;
  bottom: 20%;
  left: 15%;
  animation-delay: 2s;
}

.circle-4 {
  width: 250px;
  height: 250px;
  top: 30%;
  right: 20%;
  animation-delay: 1.5s;
}

/* 浮动图标 */
.floating-icons {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  pointer-events: none;
}

.floating-icon {
  position: absolute;
  font-size: 2.5rem;
  opacity: 0.3;
  animation: floatIcon 8s ease-in-out infinite;
}

.icon-1 {
  top: 15%;
  left: 10%;
  animation-delay: 0s;
}

.icon-2 {
  top: 25%;
  right: 15%;
  animation-delay: 1s;
}

.icon-3 {
  top: 50%;
  left: 8%;
  animation-delay: 2s;
}

.icon-4 {
  top: 65%;
  right: 12%;
  animation-delay: 1.5s;
}

.icon-5 {
  top: 40%;
  left: 20%;
  animation-delay: 2.5s;
}

.icon-6 {
  top: 70%;
  right: 25%;
  animation-delay: 0.5s;
}

/* Hero徽章 */
.hero-badge {
  display: inline-block;
  padding: 0.6rem 1.8rem;
  background: rgba(255, 255, 255, 0.25);
  backdrop-filter: blur(10px);
  border-radius: 50px;
  margin-bottom: 1.5rem;
  animation: fadeInDown 0.8s ease-out;
  border: 2px solid rgba(255, 255, 255, 0.4);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.hero-badge span {
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  color: #ffffff;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.hero-content h1.hero-title {
  font-size: 3.5rem;
  margin-bottom: 1.5rem;
  font-weight: 800;
  animation: fadeInUp 1s ease-out 0.2s both;
  text-shadow: 0 4px 30px rgba(0, 0, 0, 0.8), 0 2px 10px rgba(0, 0, 0, 0.6);
  line-height: 1.2;
  color: #ffffff;
  letter-spacing: -0.5px;
}

.hero-subtitle {
  font-size: 1.4rem;
  margin-bottom: 3rem;
  opacity: 1;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  animation: fadeInUp 1s ease-out 0.4s both;
  line-height: 1.8;
  color: #ffffff;
  font-weight: 500;
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.7), 0 1px 5px rgba(0, 0, 0, 0.5);
}

/* 统计数据 */
.hero-stats {
  display: flex;
  justify-content: center;
  gap: 3rem;
  margin-bottom: 3rem;
  flex-wrap: wrap;
  animation: fadeInUp 1s ease-out 0.6s both;
}

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

.stat-number {
  font-size: 2.8rem;
  font-weight: 800;
  margin-bottom: 0.5rem;
  color: #ffffff;
  text-shadow: 0 4px 25px rgba(0, 0, 0, 0.8), 0 2px 10px rgba(0, 0, 0, 0.6);
  animation: pulse 2s ease-in-out infinite;
  display: inline-block;
}

.stat-label {
  font-size: 1rem;
  opacity: 1;
  font-weight: 600;
  color: #ffffff;
  text-shadow: 0 2px 15px rgba(0, 0, 0, 0.7), 0 1px 5px rgba(0, 0, 0, 0.5);
}

.download-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.download-btn {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1.2rem 2.5rem;
  background-color: rgba(255, 255, 255, 0.25);
  backdrop-filter: blur(10px);
  border: 2px solid rgba(255, 255, 255, 0.5);
  border-radius: 12px;
  color: white;
  text-decoration: none;
  transition: all 0.3s ease;
  font-weight: 600;
  animation: fadeInUp 1s ease-out 0.8s both;
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.download-btn::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  transform: translate(-50%, -50%);
  transition: width 0.6s, height 0.6s;
}

.download-btn:hover::before {
  width: 300px;
  height: 300px;
}

.download-btn:hover {
  background-color: rgba(255, 255, 255, 0.4);
  transform: translateY(-5px) scale(1.05);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.5);
  border-color: rgba(255, 255, 255, 0.7);
}

.download-btn span {
  position: relative;
  z-index: 1;
}

.btn-icon {
  font-size: 1.5rem;
}

.btn-text {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.btn-label {
  font-size: 0.75rem;
  opacity: 0.9;
}

.btn-store {
  font-size: 1rem;
  font-weight: 600;
}

/* 通用区域样式 */
.section-title {
  font-size: 2rem;
  margin-bottom: 2rem;
  text-align: center;
  color: var(--text-dark);
}

/* 公司介绍区域 */
.company-intro-section {
  padding: 80px 0;
  background-color: var(--bg-white);
}

.company-intro-wrapper {
  max-width: 1000px;
  margin: 0 auto;
}

.company-intro-content {
  animation: fadeInUp 1s ease-out;
}

.company-intro-text {
  margin-bottom: 3rem;
}

.company-intro-text p {
  font-size: 1.125rem;
  line-height: 1.8;
  color: var(--text-gray);
  margin-bottom: 1.5rem;
  text-align: center;
}

.company-intro-text p:last-child {
  margin-bottom: 0;
}

.company-intro-features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin-bottom: 3rem;
}

.intro-feature {
  text-align: center;
  padding: 2rem;
  background-color: var(--bg-light);
  border-radius: 12px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.intro-feature:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.feature-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.intro-feature h3 {
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
  color: var(--primary-color);
  font-weight: 600;
}

.intro-feature p {
  color: var(--text-gray);
  line-height: 1.6;
  font-size: 0.95rem;
}

.company-intro-cta {
  text-align: center;
}

/* 好处区域 */
.benefits {
  padding: 100px 0;
  background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 50%, #f0f9ff 100%);
  position: relative;
  overflow: hidden;
}

/* 背景装饰 */
.benefits-decoration {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  pointer-events: none;
}

.decoration-shape {
  position: absolute;
  border-radius: 50%;
  background: linear-gradient(
    135deg,
    rgba(37, 99, 235, 0.1),
    rgba(59, 130, 246, 0.05)
  );
  animation: floatShape 8s ease-in-out infinite;
}

.shape-1 {
  width: 400px;
  height: 400px;
  top: -100px;
  left: -100px;
  animation-delay: 0s;
}

.shape-2 {
  width: 300px;
  height: 300px;
  bottom: -50px;
  right: -50px;
  animation-delay: 2s;
}

.shape-3 {
  width: 250px;
  height: 250px;
  top: 50%;
  right: 10%;
  animation-delay: 4s;
}

.benefits .container {
  position: relative;
  z-index: 1;
}

.benefits-header {
  text-align: center;
  margin-bottom: 4rem;
  animation: fadeInUp 0.8s ease-out;
}

.benefits-badge {
  display: inline-block;
  padding: 0.5rem 1.5rem;
  background: linear-gradient(
    135deg,
    var(--primary-color),
    var(--primary-light)
  );
  color: white;
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 1rem;
  box-shadow: 0 4px 15px rgba(37, 99, 235, 0.3);
}

.benefits-subtitle {
  font-size: 1.125rem;
  color: var(--text-gray);
  margin-top: 1rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
}

.benefit-card:last-child {
  grid-column: 1 / -1;
  max-width: 400px;
  margin: 0 auto;
}

.benefit-card {
  background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
  padding: 2.5rem 2rem;
  border-radius: 20px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(37, 99, 235, 0.1);
  animation: fadeInUp 0.8s ease-out both;
}

.benefit-card[data-delay="0"] {
  animation-delay: 0.1s;
}

.benefit-card[data-delay="0.1"] {
  animation-delay: 0.2s;
}

.benefit-card[data-delay="0.2"] {
  animation-delay: 0.3s;
}

.benefit-card[data-delay="0.3"] {
  animation-delay: 0.4s;
}

.benefit-card:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 20px 50px rgba(37, 99, 235, 0.2);
  border-color: rgba(37, 99, 235, 0.3);
}

.benefit-icon-wrapper {
  position: relative;
  display: inline-block;
  margin-bottom: 1.5rem;
}

.benefit-icon {
  font-size: 4rem;
  margin-bottom: 0;
  position: relative;
  z-index: 2;
  display: inline-block;
  transition: transform 0.4s ease;
  filter: drop-shadow(0 4px 10px rgba(0, 0, 0, 0.1));
}

.benefit-card:hover .benefit-icon {
  transform: scale(1.2) rotate(5deg);
  animation: iconBounce 0.6s ease;
}

.icon-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 80px;
  height: 80px;
  background: radial-gradient(circle, rgba(37, 99, 235, 0.2), transparent);
  border-radius: 50%;
  opacity: 0;
  transition: opacity 0.4s ease, transform 0.4s ease;
  z-index: 1;
}

.benefit-card:hover .icon-glow {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1.5);
}

.benefit-card h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: var(--text-dark);
  font-weight: 700;
  position: relative;
  z-index: 2;
}

.benefit-card p {
  color: var(--text-gray);
  line-height: 1.8;
  font-size: 1rem;
  position: relative;
  z-index: 2;
}

.benefit-number {
  position: absolute;
  top: 1rem;
  right: 1.5rem;
  font-size: 3rem;
  font-weight: 800;
  color: rgba(37, 99, 235, 0.08);
  line-height: 1;
  z-index: 0;
}

.card-hover-effect {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    135deg,
    rgba(37, 99, 235, 0.05),
    rgba(59, 130, 246, 0.02)
  );
  opacity: 0;
  transition: opacity 0.4s ease;
  border-radius: 20px;
  z-index: 1;
}

.benefit-card:hover .card-hover-effect {
  opacity: 1;
}

/* 流程区域 */
.process {
  padding: 100px 0;
  background: linear-gradient(135deg, #ffffff 0%, #f8fafc 50%, #ffffff 100%);
  position: relative;
  overflow: hidden;
}

/* 背景装饰 */
.process-decoration {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  pointer-events: none;
}

.process-shape {
  position: absolute;
  border-radius: 50%;
  background: linear-gradient(
    135deg,
    rgba(37, 99, 235, 0.08),
    rgba(59, 130, 246, 0.04)
  );
  animation: floatShape 10s ease-in-out infinite;
}

.process-shape.shape-1 {
  width: 350px;
  height: 350px;
  top: -50px;
  right: -50px;
  animation-delay: 0s;
}

.process-shape.shape-2 {
  width: 300px;
  height: 300px;
  bottom: -50px;
  left: -50px;
  animation-delay: 3s;
}

.process .container {
  position: relative;
  z-index: 1;
}

.process-header {
  text-align: center;
  margin-bottom: 4rem;
  animation: fadeInUp 0.8s ease-out;
}

.process-badge {
  display: inline-block;
  padding: 0.5rem 1.5rem;
  background: linear-gradient(
    135deg,
    var(--primary-color),
    var(--primary-light)
  );
  color: white;
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 1rem;
  box-shadow: 0 4px 15px rgba(37, 99, 235, 0.3);
}

.process-subtitle {
  font-size: 1.125rem;
  color: var(--text-gray);
  margin-top: 1rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.process-timeline {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 2rem;
  position: relative;
  margin-bottom: 3rem;
}

.process-step {
  flex: 0 1 300px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  position: relative;
  padding: 2rem;
  background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  border: 2px solid rgba(37, 99, 235, 0.1);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  animation: fadeInUp 0.8s ease-out both;
  overflow: hidden;
}

.process-step[data-step="1"] {
  animation-delay: 0.1s;
}

.process-step[data-step="2"] {
  animation-delay: 0.3s;
}

.process-step[data-step="3"] {
  animation-delay: 0.5s;
}

.process-step:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 20px 50px rgba(37, 99, 235, 0.2);
  border-color: rgba(37, 99, 235, 0.3);
}

.step-icon-wrapper {
  position: relative;
  margin-bottom: 1.5rem;
  width: 100px;
  height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.step-icon {
  font-size: 3.5rem;
  position: relative;
  z-index: 3;
  transition: transform 0.4s ease;
  filter: drop-shadow(0 4px 10px rgba(0, 0, 0, 0.1));
}

.process-step:hover .step-icon {
  transform: scale(1.2) rotate(5deg);
  animation: iconBounce 0.6s ease;
}

.step-number {
  position: absolute;
  top: -10px;
  right: -10px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: linear-gradient(
    135deg,
    var(--primary-color),
    var(--primary-light)
  );
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  font-weight: bold;
  box-shadow: 0 4px 15px rgba(37, 99, 235, 0.4);
  z-index: 4;
  animation: pulse 2s ease-in-out infinite;
}

.step-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 120px;
  height: 120px;
  background: radial-gradient(circle, rgba(37, 99, 235, 0.15), transparent);
  border-radius: 50%;
  opacity: 0;
  transition: opacity 0.4s ease, transform 0.4s ease;
  z-index: 1;
}

.process-step:hover .step-glow {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1.3);
}

.step-content {
  width: 100%;
}

.step-content h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: var(--text-dark);
  font-weight: 700;
}

.step-description {
  color: var(--text-gray);
  margin-bottom: 1.5rem;
  line-height: 1.8;
  font-size: 1rem;
}

.step-details {
  list-style: none;
  padding: 0;
  margin: 1.5rem 0;
  text-align: left;
  background: rgba(37, 99, 235, 0.05);
  padding: 1.5rem;
  border-radius: 12px;
  border-left: 3px solid var(--primary-color);
}

.step-details li {
  color: var(--text-gray);
  margin-bottom: 0.75rem;
  font-size: 0.95rem;
  line-height: 1.6;
}

.step-details li:last-child {
  margin-bottom: 0;
}

.step-time {
  display: inline-block;
  padding: 0.5rem 1rem;
  background: linear-gradient(
    135deg,
    rgba(37, 99, 235, 0.1),
    rgba(59, 130, 246, 0.05)
  );
  border-radius: 20px;
  color: var(--primary-color);
  font-weight: 600;
  font-size: 0.9rem;
  margin-top: 1rem;
}

/* 连接线 */
.process-connector {
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 60px;
  position: relative;
  z-index: 2;
}

.connector-line {
  width: 100%;
  height: 3px;
  background: linear-gradient(
    90deg,
    var(--primary-color),
    var(--primary-light)
  );
  border-radius: 2px;
  position: relative;
  animation: connectorFlow 2s ease-in-out infinite;
}

.connector-arrow {
  position: absolute;
  font-size: 1.5rem;
  color: var(--primary-color);
  animation: arrowMove 2s ease-in-out infinite;
}

.process-cta {
  text-align: center;
  margin-top: 3rem;
  animation: fadeInUp 0.8s ease-out 0.7s both;
}

/* FAQ预览区域 */
.faq-preview {
  padding: 100px 0;
  background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 50%, #f0f9ff 100%);
  position: relative;
  overflow: hidden;
}

/* 背景装饰 */
.faq-decoration {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  pointer-events: none;
}

.faq-shape {
  position: absolute;
  border-radius: 50%;
  background: linear-gradient(
    135deg,
    rgba(37, 99, 235, 0.1),
    rgba(59, 130, 246, 0.05)
  );
  animation: floatShape 12s ease-in-out infinite;
}

.faq-shape.shape-1 {
  width: 350px;
  height: 350px;
  top: -100px;
  left: -100px;
  animation-delay: 0s;
}

.faq-shape.shape-2 {
  width: 300px;
  height: 300px;
  bottom: -50px;
  right: -50px;
  animation-delay: 4s;
}

.faq-shape.shape-3 {
  width: 250px;
  height: 250px;
  top: 30%;
  right: 15%;
  animation-delay: 2s;
}

.faq-preview .container {
  position: relative;
  z-index: 1;
}

.faq-header {
  text-align: center;
  margin-bottom: 4rem;
  animation: fadeInUp 0.8s ease-out;
}

.faq-badge {
  display: inline-block;
  padding: 0.5rem 1.5rem;
  background: linear-gradient(
    135deg,
    var(--primary-color),
    var(--primary-light)
  );
  color: white;
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 1rem;
  box-shadow: 0 4px 15px rgba(37, 99, 235, 0.3);
}

.faq-subtitle {
  font-size: 1.125rem;
  color: var(--text-gray);
  margin-top: 1rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.faq-preview-list {
  max-width: 900px;
  margin: 0 auto 3rem;
}

.faq-preview-item {
  background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
  padding: 2rem;
  margin-bottom: 1.5rem;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  border: 2px solid rgba(37, 99, 235, 0.1);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  position: relative;
  overflow: hidden;
  animation: fadeInUp 0.8s ease-out both;
}

.faq-preview-item[data-delay="0"] {
  animation-delay: 0.1s;
}

.faq-preview-item[data-delay="0.1"] {
  animation-delay: 0.2s;
}

.faq-preview-item[data-delay="0.2"] {
  animation-delay: 0.3s;
}

.faq-preview-item:hover {
  transform: translateX(10px) translateY(-5px);
  box-shadow: 0 20px 50px rgba(37, 99, 235, 0.2);
  border-color: rgba(37, 99, 235, 0.3);
}

.faq-item-header {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
  position: relative;
  z-index: 2;
}

.faq-icon-wrapper {
  position: relative;
  flex-shrink: 0;
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.faq-icon {
  font-size: 2.5rem;
  position: relative;
  z-index: 3;
  transition: transform 0.4s ease;
  filter: drop-shadow(0 4px 10px rgba(0, 0, 0, 0.1));
}

.faq-preview-item:hover .faq-icon {
  transform: scale(1.2) rotate(5deg);
  animation: iconBounce 0.6s ease;
}

.faq-icon-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 80px;
  height: 80px;
  background: radial-gradient(circle, rgba(37, 99, 235, 0.2), transparent);
  border-radius: 50%;
  opacity: 0;
  transition: opacity 0.4s ease, transform 0.4s ease;
  z-index: 1;
}

.faq-preview-item:hover .faq-icon-glow {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1.5);
}

.faq-content-wrapper {
  flex: 1;
}

.faq-preview-item h3 {
  font-size: 1.375rem;
  margin-bottom: 0.75rem;
  color: var(--primary-color);
  font-weight: 700;
  line-height: 1.4;
}

.faq-preview-item p {
  color: var(--text-gray);
  line-height: 1.8;
  font-size: 1rem;
  margin: 0;
}

.faq-hover-effect {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    135deg,
    rgba(37, 99, 235, 0.05),
    rgba(59, 130, 246, 0.02)
  );
  opacity: 0;
  transition: opacity 0.4s ease;
  border-radius: 16px;
  z-index: 1;
}

.faq-preview-item:hover .faq-hover-effect {
  opacity: 1;
}

.faq-more {
  text-align: center;
  animation: fadeInUp 0.8s ease-out 0.4s both;
}

/* FAQ页面可折叠样式（结合faq-preview样式） */
.faq-accordion-item {
  cursor: pointer;
}

.faq-accordion-question {
  width: 100%;
  background: none;
  border: none;
  padding: 0;
  text-align: left;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  z-index: 2;
  transition: all 0.3s ease;
}

.faq-accordion-question:hover {
  opacity: 0.9;
}

.faq-toggle-icon {
  font-size: 2rem;
  color: var(--primary-color);
  font-weight: 300;
  transition: transform 0.3s ease;
  flex-shrink: 0;
  margin-left: 1rem;
}

.faq-accordion-item.active .faq-toggle-icon {
  transform: rotate(45deg);
}

.faq-accordion-item .faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.4s ease;
  padding: 0 0 0 0;
  margin-top: 0;
}

.faq-accordion-item.active .faq-answer {
  max-height: 1000px;
  padding: 1.5rem 0 0 0;
  margin-top: 1rem;
}

.faq-accordion-item .faq-answer p,
.faq-accordion-item .faq-answer ul {
  color: var(--text-gray);
  line-height: 1.8;
  font-size: 1rem;
  margin-bottom: 1rem;
}

.faq-accordion-item .faq-answer ul {
  padding-left: 1.5rem;
  margin-top: 0.5rem;
}

.faq-accordion-item .faq-answer li {
  margin-bottom: 0.5rem;
}

.faq-accordion-item .faq-answer p:last-child {
  margin-bottom: 0;
}

.faq-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem 2.5rem;
  font-size: 1.1rem;
  font-weight: 600;
  box-shadow: 0 10px 30px rgba(37, 99, 235, 0.3);
  transition: all 0.3s ease;
}

.faq-cta-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(37, 99, 235, 0.4);
}

.btn-arrow {
  transition: transform 0.3s ease;
  font-size: 1.2rem;
}

.faq-cta-btn:hover .btn-arrow {
  transform: translateX(5px);
}

/* 按钮样式 */
.btn-primary {
  display: inline-block;
  padding: 0.75rem 2rem;
  background-color: var(--primary-color);
  color: white;
  text-decoration: none;
  border-radius: 8px;
  font-weight: 500;
  transition: background-color 0.3s ease;
  border: none;
  cursor: pointer;
  font-size: 1rem;
}

.btn-primary:hover {
  background-color: var(--primary-dark);
}

/* 页面头部 */
.page-header {
  background: linear-gradient(
    135deg,
    var(--primary-color),
    var(--primary-light)
  );
  color: white;
  padding: 120px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

/* 背景装饰 */
.page-header::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(
    circle,
    rgba(255, 255, 255, 0.1) 0%,
    transparent 70%
  );
  animation: rotate 20s linear infinite;
}

.page-header .container {
  position: relative;
  z-index: 1;
}

.page-header-content {
  animation: fadeInUp 0.8s ease-out;
}

.page-header-badge {
  display: inline-block;
  padding: 0.5rem 1.5rem;
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
  color: white;
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 1rem;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.page-header h1 {
  font-size: 3rem;
  font-weight: 800;
  margin-bottom: 1rem;
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
  animation: fadeInUp 0.8s ease-out 0.2s both;
}

.page-header-subtitle {
  font-size: 1.25rem;
  opacity: 0.95;
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.8;
  animation: fadeInUp 0.8s ease-out 0.4s both;
}

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

/* Loan页面 */
.loan-content {
  padding: 60px 0;
}

.loan-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.loan-text h2 {
  font-size: 2rem;
  margin-bottom: 2rem;
  color: var(--text-dark);
}

.loan-details {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.loan-feature {
  background-color: var(--bg-light);
  padding: 1.5rem;
  border-radius: 8px;
}

.loan-feature h3 {
  font-size: 1.25rem;
  margin-bottom: 1rem;
  color: var(--primary-color);
}

.loan-feature ul {
  list-style: none;
  padding-left: 0;
}

.loan-feature ul li {
  padding: 0.5rem 0;
  padding-left: 1.5rem;
  position: relative;
  color: var(--text-gray);
}

.loan-feature ul li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--primary-color);
  font-weight: bold;
}

.loan-image {
  display: flex;
  justify-content: center;
  align-items: center;
}

.image-placeholder {
  width: 100%;
  max-width: 400px;
  aspect-ratio: 1;
  background: linear-gradient(
    135deg,
    var(--primary-color),
    var(--primary-light)
  );
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-lg);
}

.phone-mockup {
  width: 80%;
  aspect-ratio: 9/16;
  background-color: #1f2937;
  border-radius: 25px;
  padding: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.phone-screen {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #667eea, #764ba2);
  border-radius: 15px;
  padding: 20px;
  display: flex;
  flex-direction: column;
}

.app-interface {
  color: white;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.app-header {
  font-size: 1.5rem;
  font-weight: bold;
  margin-bottom: 2rem;
  text-align: center;
}

.app-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 2rem;
}

.app-card {
  background-color: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
  padding: 2rem;
  border-radius: 15px;
  text-align: center;
}

.app-card h4 {
  margin-bottom: 1rem;
  opacity: 0.9;
}

.amount {
  font-size: 2rem;
  font-weight: bold;
}

.app-button {
  background-color: white;
  color: var(--primary-color);
  padding: 1rem;
  border-radius: 10px;
  text-align: center;
  font-weight: bold;
  cursor: pointer;
}

/* About页面 */
.about-content {
  padding: 60px 0;
}

.company-intro {
  max-width: 800px;
  margin: 0 auto 4rem;
  text-align: center;
}

.company-intro h2 {
  font-size: 2rem;
  margin-bottom: 1.5rem;
  color: var(--primary-color);
}

.company-intro p {
  margin-bottom: 1rem;
  color: var(--text-gray);
  line-height: 1.8;
}

.team-section,
.advantages-section {
  margin-top: 4rem;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.team-member {
  text-align: center;
  background-color: var(--bg-light);
  padding: 2rem;
  border-radius: 12px;
  box-shadow: var(--shadow-md);
}

.member-avatar {
  width: 120px;
  height: 120px;
  margin: 0 auto 1rem;
  border-radius: 50%;
  background: linear-gradient(
    135deg,
    var(--primary-color),
    var(--primary-light)
  );
  display: flex;
  align-items: center;
  justify-content: center;
}

.avatar-placeholder {
  font-size: 4rem;
}

.team-member h3 {
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
  color: var(--text-dark);
}

.member-role {
  color: var(--text-gray);
}

.advantages-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.advantage-card {
  background-color: var(--bg-white);
  padding: 2rem;
  border-radius: 12px;
  text-align: center;
  box-shadow: var(--shadow-md);
  transition: transform 0.3s ease;
}

.advantage-card:hover {
  transform: translateY(-5px);
}

.advantage-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.advantage-card h3 {
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
  color: var(--text-dark);
}

.advantage-card p {
  color: var(--text-gray);
}

/* FAQ页面 */
.faq-content {
  padding: 60px 0;
}

.faq-accordion {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  margin-bottom: 1rem;
  background-color: var(--bg-white);
  border-radius: 8px;
  box-shadow: var(--shadow);
  overflow: hidden;
}

.faq-question {
  width: 100%;
  padding: 1.5rem;
  background: none;
  border: none;
  text-align: left;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 1.125rem;
  font-weight: 500;
  color: var(--text-dark);
  transition: background-color 0.3s ease;
}

.faq-question:hover {
  background-color: var(--bg-light);
}

.faq-icon {
  font-size: 1.5rem;
  color: var(--primary-color);
  transition: transform 0.3s ease;
}

.faq-item.active .faq-icon {
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.faq-item.active .faq-answer {
  max-height: 1000px;
}

.faq-answer p,
.faq-answer ul {
  padding: 0 1.5rem 1.5rem;
  color: var(--text-gray);
  line-height: 1.8;
}

.faq-answer ul {
  margin-top: 0.5rem;
  padding-left: 2rem;
}

.faq-answer li {
  margin-bottom: 0.5rem;
}

/* Contact页面 */
.contact-content {
  padding: 60px 0;
}

.contact-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
}

.contact-form-section h2,
.contact-info-section h2 {
  font-size: 1.75rem;
  margin-bottom: 2rem;
  color: var(--text-dark);
}

.contact-form {
  background-color: var(--bg-light);
  padding: 2rem;
  border-radius: 12px;
}

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

.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 500;
  color: var(--text-dark);
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 0.75rem;
  border: 2px solid var(--border-color);
  border-radius: 8px;
  font-size: 1rem;
  font-family: inherit;
  transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--primary-color);
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.info-item {
  display: flex;
  gap: 1rem;
}

.info-icon {
  font-size: 2rem;
  flex-shrink: 0;
}

.info-content h3 {
  font-size: 1.125rem;
  margin-bottom: 0.5rem;
  color: var(--text-dark);
}

.info-content p {
  color: var(--text-gray);
}

.info-content a {
  color: var(--primary-color);
  text-decoration: none;
}

.info-content a:hover {
  text-decoration: underline;
}

/* Account页面 */
.account-content {
  padding: 60px 0;
}

.account-form-wrapper {
  max-width: 600px;
  margin: 0 auto;
}

.account-form-card {
  background-color: var(--bg-white);
  padding: 2rem;
  border-radius: 12px;
  box-shadow: var(--shadow-lg);
}

.account-form-card h2 {
  font-size: 1.75rem;
  margin-bottom: 1rem;
  color: var(--text-dark);
}

.form-description {
  color: var(--text-gray);
  margin-bottom: 2rem;
  line-height: 1.8;
}

.account-form {
  background-color: var(--bg-light);
  padding: 2rem;
  border-radius: 8px;
}

/* 页脚 */
.footer {
  background-color: var(--text-dark);
  color: white;
  padding: 3rem 0 1rem;
  margin-top: 4rem;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 3rem;
  margin-bottom: 2rem;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}

.footer-section {
  display: flex;
  flex-direction: column;
}

.footer-section h4 {
  margin-bottom: 1rem;
  color: white;
  font-size: 1.125rem;
  font-weight: 600;
}

.footer-logo-section {
  align-items: flex-start;
}

.footer-contact-section,
.footer-legal-section,
.footer-about-section {
  align-items: flex-start;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.footer-logo-img {
  height: 40px;
  width: auto;
  max-width: 120px;
  object-fit: contain;
}

.footer-logo .logo-text {
  color: white;
  -webkit-text-fill-color: white;
  background: none;
  font-size: 1.5rem;
  font-weight: 600;
}

.company-name {
  margin-top: 0.5rem;
  color: rgba(255, 255, 255, 0.8);
}

.footer-section p {
  margin-bottom: 0.75rem;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.8;
  font-size: 0.95rem;
}

.footer-address {
  font-size: 0.9rem;
  line-height: 1.6;
}

.footer-section a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-section a:hover {
  color: white;
}

.footer-bottom {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.6);
}

/* 动画关键帧 */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0) translateX(0) scale(1);
  }
  25% {
    transform: translateY(-20px) translateX(10px) scale(1.05);
  }
  50% {
    transform: translateY(-10px) translateX(-10px) scale(0.95);
  }
  75% {
    transform: translateY(-30px) translateX(5px) scale(1.02);
  }
}

@keyframes floatIcon {
  0%,
  100% {
    transform: translateY(0) translateX(0) rotate(0deg);
    opacity: 0.3;
  }
  25% {
    transform: translateY(-30px) translateX(15px) rotate(5deg);
    opacity: 0.4;
  }
  50% {
    transform: translateY(-15px) translateX(-15px) rotate(-5deg);
    opacity: 0.35;
  }
  75% {
    transform: translateY(-40px) translateX(10px) rotate(3deg);
    opacity: 0.4;
  }
}

@keyframes pulse {
  0%,
  100% {
    transform: scale(1);
    opacity: 0.8;
  }
  50% {
    transform: scale(1.1);
    opacity: 1;
  }
}

@keyframes floatShape {
  0%,
  100% {
    transform: translateY(0) translateX(0) scale(1);
  }
  25% {
    transform: translateY(-30px) translateX(20px) scale(1.1);
  }
  50% {
    transform: translateY(-15px) translateX(-20px) scale(0.9);
  }
  75% {
    transform: translateY(-40px) translateX(10px) scale(1.05);
  }
}

@keyframes iconBounce {
  0%,
  100% {
    transform: scale(1.2) rotate(5deg);
  }
  50% {
    transform: scale(1.3) rotate(-5deg);
  }
}

@keyframes connectorFlow {
  0%,
  100% {
    opacity: 0.6;
    transform: scaleX(1);
  }
  50% {
    opacity: 1;
    transform: scaleX(1.1);
  }
}

@keyframes arrowMove {
  0%,
  100% {
    transform: translateX(0);
    opacity: 0.7;
  }
  50% {
    transform: translateX(10px);
    opacity: 1;
  }
}

/* 响应式设计 */
@media (max-width: 1024px) {
  .footer-content {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
  }
}

@media (max-width: 768px) {
  .mobile-menu-toggle {
    display: flex;
  }

  .nav-menu {
    position: fixed;
    top: 70px;
    left: -100%;
    width: 100%;
    height: calc(100vh - 70px);
    background-color: rgba(191, 219, 254, 0.95);
    backdrop-filter: blur(10px);
    flex-direction: column;
    padding: 2rem;
    transition: left 0.3s ease;
    box-shadow: var(--shadow-lg);
    gap: 1rem;
  }

  .nav-menu.active {
    left: 0;
  }

  .nav-menu a {
    font-size: 1.25rem;
    padding: 0.75rem 0;
    color: var(--text-dark);
    text-shadow: none;
  }

  .nav-menu a:hover,
  .nav-menu a.active {
    color: var(--primary-color);
  }

  .hero {
    padding: 120px 0;
    min-height: 700px;
  }

  .hero-content {
    padding: 1.5rem;
    margin: 0 1rem;
    background: transparent;
    backdrop-filter: none;
    border: none;
  }

  .company-intro-section {
    padding: 60px 0;
  }

  .company-intro-text p {
    font-size: 1rem;
    padding: 0 1rem;
  }

  .company-intro-features {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .intro-feature {
    padding: 1.5rem;
  }

  .benefits {
    padding: 60px 0;
  }

  .benefits-header {
    margin-bottom: 3rem;
  }

  .benefits-badge {
    font-size: 0.85rem;
    padding: 0.4rem 1.2rem;
  }

  .benefits-subtitle {
    font-size: 1rem;
    padding: 0 1rem;
  }

  .benefits-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .benefit-card:last-child {
    grid-column: 1;
    max-width: 100%;
  }

  .benefit-card {
    padding: 2rem 1.5rem;
  }

  .benefit-icon {
    font-size: 3.5rem;
  }

  .benefit-number {
    font-size: 2.5rem;
  }

  .decoration-shape {
    opacity: 0.5;
  }

  .footer-content {
    grid-template-columns: 1fr;
    gap: 2rem;
    text-align: center;
  }

  .footer-logo-section,
  .footer-contact-section,
  .footer-legal-section,
  .footer-about-section {
    align-items: center;
  }

  .hero-content h1.hero-title {
    font-size: 2rem;
    text-shadow: 0 4px 25px rgba(0, 0, 0, 0.9), 0 2px 10px rgba(0, 0, 0, 0.7);
  }

  .hero-subtitle {
    font-size: 1.1rem;
    padding: 0;
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.8), 0 1px 5px rgba(0, 0, 0, 0.6);
  }

  .hero-stats {
    gap: 2rem;
  }

  .stat-number {
    font-size: 2rem;
  }

  .floating-icon {
    font-size: 2rem;
  }

  .decoration-circle {
    opacity: 0.5;
  }

  .circle-1,
  .circle-2,
  .circle-3,
  .circle-4 {
    width: 150px;
    height: 150px;
  }

  .hero-subtitle {
    font-size: 1rem;
  }

  .download-buttons {
    flex-direction: column;
    align-items: stretch;
  }

  .download-btn {
    justify-content: center;
  }

  .loan-wrapper {
    grid-template-columns: 1fr;
  }

  .contact-wrapper {
    grid-template-columns: 1fr;
  }

  .process {
    padding: 60px 0;
  }

  .process-header {
    margin-bottom: 3rem;
  }

  .process-badge {
    font-size: 0.85rem;
    padding: 0.4rem 1.2rem;
  }

  .process-subtitle {
    font-size: 1rem;
    padding: 0 1rem;
  }

  .process-timeline {
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
  }

  .process-step {
    max-width: 100%;
    width: 100%;
    padding: 1.5rem;
  }

  .process-connector {
    flex: 0 0 auto;
    width: 60px;
    height: 60px;
    transform: rotate(90deg);
  }

  .connector-line {
    width: 3px;
    height: 100%;
    background: linear-gradient(
      180deg,
      var(--primary-color),
      var(--primary-light)
    );
  }

  .connector-arrow {
    transform: rotate(-90deg);
    top: 50%;
    left: 50%;
    margin-left: -10px;
    margin-top: -10px;
  }

  .step-icon-wrapper {
    width: 80px;
    height: 80px;
  }

  .step-icon {
    font-size: 3rem;
  }

  .step-details {
    padding: 1rem;
  }

  .faq-preview {
    padding: 60px 0;
  }

  .faq-header {
    margin-bottom: 3rem;
  }

  .faq-badge {
    font-size: 0.85rem;
    padding: 0.4rem 1.2rem;
  }

  .faq-subtitle {
    font-size: 1rem;
    padding: 0 1rem;
  }

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

  .faq-preview-item {
    padding: 1.5rem;
    margin-bottom: 1.5rem;
  }

  .faq-item-header {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }

  .faq-icon-wrapper {
    margin: 0 auto;
  }

  .faq-preview-item h3 {
    font-size: 1.25rem;
  }

  .faq-preview-item p {
    font-size: 0.95rem;
  }

  .faq-cta-btn {
    padding: 0.875rem 2rem;
    font-size: 1rem;
  }

  .section-title {
    font-size: 1.75rem;
  }

  .page-header {
    padding: 80px 0;
  }

  .page-header-badge {
    font-size: 0.85rem;
    padding: 0.4rem 1.2rem;
  }

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

  .page-header-subtitle {
    font-size: 1rem;
    padding: 0 1rem;
  }
}

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

  .hero {
    padding: 60px 0;
  }

  .hero-content h1 {
    font-size: 1.75rem;
  }

  .benefits-grid,
  .team-grid,
  .advantages-grid {
    grid-template-columns: 1fr;
  }

  .contact-form,
  .account-form {
    padding: 1.5rem;
  }
}
