:root {
  --bg: #f6f8fb;
  --surface: #ffffff;
  --surface-alt: #edf2ff;
  --primary: #1f3c88;
  --primary-light: #4864d6;
  --accent: #ff7d4f;
  --text: #333333;
  --text-light: #555a70;
  --border: rgba(31, 60, 136, 0.12);
  --shadow: 0 20px 40px rgba(15, 34, 82, 0.08);
  --radius-lg: 28px;
  --radius-md: 20px;
  --radius-sm: 12px;
  --section-spacing: clamp(72px, 12vw, 120px);
  --max-width: 1200px;
  font-family: 'Noto Sans SC', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  color: var(--text);
  background: linear-gradient(180deg, #f7f9ff 0%, #eef2ff 100%);
  line-height: 1.6;
  overflow-x: hidden;
}

/* Hide scrollbar for Chrome, Safari and Opera */
body::-webkit-scrollbar {
  display: none !important;
}

/* Hide scrollbar for IE, Edge and Firefox */
body {
  -ms-overflow-style: none !important;  /* IE and Edge */
  scrollbar-width: none !important;  /* Firefox */
}

/* Hide scrollbar for all elements */
*::-webkit-scrollbar {
  display: none !important;
}

* {
  -ms-overflow-style: none !important;
  scrollbar-width: none !important;
}

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

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

.hero {
  position: relative;
  overflow: hidden;
  padding: clamp(24px, 6vw, 36px) clamp(20px, 8vw, 48px) var(--section-spacing);
  background: url('assets/images/hero-bg.jpg') center center / cover no-repeat;
  color: #fff;
  height: 100vh;
  min-height: 100vh;
}

.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.2);
  pointer-events: none;
  z-index: 0;
}

.hero::before {
  display: none;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: clamp(56px, 8vw, 96px);
  position: relative;
  z-index: 2;
}

.brand {
  display: inline-flex;
  align-items: center;
  max-width: 120px;
}

.brand img {
  width: 100%;
  height: auto;
  filter: drop-shadow(0 6px 18px rgba(0, 0, 0, 0.18));
}

.nav__links {
  list-style: none;
  display: flex;
  gap: 28px;
  margin: 0;
  padding: 0;
}

.nav__links a {
  font-weight: 500;
  opacity: 0.9;
  transition: opacity 0.2s ease;
}

.nav__links a:hover {
  opacity: 1;
}

.nav__toggle {
  display: none;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.4);
  background: rgba(255, 255, 255, 0.08);
  position: relative;
  cursor: pointer;
  z-index: 1000;
}

@media (max-width: 720px) {
  .nav__toggle {
    display: block;
  }
  
  .nav__links {
    position: fixed;
    top: 0;
    right: 0;
    width: 80%;
    height: 100vh;
    background: rgba(17, 26, 58, 0.95);
    backdrop-filter: blur(10px);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 32px;
    transform: translateX(100%);
    transition: transform 0.3s ease;
    z-index: 999;
    padding: 40px;
  }
  
  .nav__links.nav__links--open {
    transform: translateX(0);
  }
  
  .nav__links a {
    font-size: 1.2rem;
    opacity: 1;
  }
}

.nav__toggle::before,
.nav__toggle::after {
  content: '';
  position: absolute;
  left: 14px;
  right: 14px;
  height: 2px;
  background: #fff;
  transition: transform 0.2s ease;
}

.nav__toggle::before {
  top: 17px;
}

.nav__toggle::after {
  bottom: 17px;
}

.nav__toggle--active::before {
  transform: translateY(7px) rotate(45deg);
}

.nav__toggle--active::after {
  transform: translateY(-7px) rotate(-45deg);
}

.hero__content {
  position: relative;
  z-index: 1;
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.hero__logo {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: clamp(32px, 6vw, 48px);
}

.hero__logo img {
  max-width: 120px;
  height: auto;
}

.hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.14);
  font-size: 0.95rem;
  letter-spacing: 0.05em;
}

.hero h1 {
  margin: 24px 0;
  font-size: clamp(2.6rem, 5vw, 3.6rem);
  line-height: 1.15;
  font-weight: normal;
}

.hero__intro {
  font-size: 1.75rem;
  max-width: 1200px;
  margin: 0 auto;
  opacity: 0.92;
  text-align: center;
}

.hero__intro--sub {
  margin-top: 6px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
  display: block;
  width: 100%;
  max-width: 1200px;
  font-size: 1.2rem;
  opacity: 0.85;
  margin-bottom: 24px;
}

.hero__cta {
  margin-top: 32px;
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: center;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 172px;
  padding: 14px 24px;
  border-radius: 999px;
  font-weight: 600;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn--primary {
  background: linear-gradient(135deg, var(--accent), #ff976d);
  color: #fff;
  box-shadow: 0 16px 32px rgba(255, 125, 79, 0.32);
}

.btn--ghost {
  border: 1px solid rgba(255, 255, 255, 0.5);
  color: #fff;
  background: transparent;
}

.btn:hover {
  transform: translateY(-2px);
}

.hero__stats {
  margin-top: clamp(48px, 6vw, 72px);
  display: flex;
  gap: 36px;
  flex-wrap: wrap;
  justify-content: center;
}

.hero__stat {
  display: grid;
  gap: 4px;
  text-align: center;
}

.hero__stat-number {
  font-size: 1.8rem;
  font-weight: 700;
}

.hero__stat-label {
  font-size: 0.95rem;
  opacity: 0.8;
}

.section {
  padding: var(--section-spacing) clamp(20px, 8vw, 48px);
  position: relative;
  z-index: 1;
}

.section--alt {
  background: #fff;
}

#ecosystem {
  background: #fff;
}

#team {
  background: transparent !important;
}

.section__header {
  max-width: var(--max-width);
  margin: 0 auto clamp(40px, 6vw, 64px);
  text-align: center;
  display: grid;
  gap: 4px;
}

.section__header h2 {
  font-size: clamp(2.1rem, 4.2vw, 3.15rem);
  line-height: 1.2;
  font-weight: 400;
}

.section__header p {
  color: var(--text-light);
  margin: 0;
}

.section__subheader {
  font-size: clamp(2.1rem, 4.2vw, 3.15rem);
  line-height: 1.2;
  font-weight: 400;
  margin: clamp(48px, 6vw, 64px) 0 clamp(16px, 2vw, 24px);
}

.section__subheader--small {
  font-size: clamp(1.05rem, 2.1vw, 1.575rem);
}

.section__subheader--center {
  text-align: center;
  font-size: clamp(1rem, 2vw, 1.3rem) !important;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  max-width: 80%;
  margin: clamp(32px, 4vw, 48px) auto clamp(32px, 4vw, 48px);
}

.section__subheader--center::before,
.section__subheader--center::after {
  content: '';
  height: 1px;
  background-color: var(--text-light);
  flex-grow: 1;
  opacity: 0.5;
  max-width: calc((100% - 32px) / 2);
}

.section__subtitle {
  font-size: 1rem;
  line-height: 1.6;
  color: var(--text-light);
  margin: 0 0 clamp(16px, 2vw, 24px);
}

.case-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: clamp(32px, 4vw, 48px);
}

.reexen-logo {
  max-width: 150px;
  height: auto;
}

.tag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 6px 18px;
  border-radius: 999px;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  background: rgba(31, 60, 136, 0.1);
  color: var(--primary);
}

.tag--outline {
  background: transparent;
  border: 1px solid rgba(31, 60, 136, 0.24);
}

.grid {
  display: grid;
  gap: 24px;
  max-width: var(--max-width);
  margin: 0 auto;
}

.grid--three {
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}

.focus-container {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  max-width: var(--max-width);
  margin: 0 auto;
}

.focus-cards {
  flex: 0 0 auto;
  order: 2;
  margin-left: 24px;
}

/* 移动设备上的卡片布局 */
@media (max-width: 720px) {
  #focus .grid--two {
    grid-template-columns: repeat(2, minmax(150px, 1fr));
    gap: 16px;
  }
}

.focus-title {
  flex: 0 0 40%;
  order: 1;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding-left: 80px;
  margin-left: 0;
}

.focus-cards {
  flex: 0 0 60%;
  order: 2;
  margin-left: 24px;
}

.focus-title h2 {
  font-size: clamp(2.1rem, 4.2vw, 3.15rem);
  line-height: 1.2;
  margin: 0;
  font-weight: 400;
  text-align: left;
  white-space: normal;
  position: static;
  padding: 0;
  margin: 0;
}

.focus-title h2 .title-line {
  display: block;
  text-align: left;
  position: static;
  margin: 0;
  padding: 0;
}

.focus-title h2 {
  font-size: clamp(2.1rem, 4.2vw, 3.15rem);
  line-height: 1.2;
  margin: 0;
  font-weight: 400;
  text-align: left;
  white-space: normal;
  position: relative;
  padding-left: 0;
  margin-left: 0;
}

.focus-title h2 .title-line {
  display: block;
  text-align: left;
  position: static;
  margin: 0;
  padding: 0;
  line-height: 1.3;
}

.focus-title h2 .title-line--second {
  position: absolute;
  top: 100%;
  left: 0;
  display: block;
  margin: 0;
  padding: 0;
  width: 100%;
  text-align: left;
}

/* 移动设备上的响应式设计 */
@media (max-width: 720px) {
  .focus-container {
    flex-direction: column;
    align-items: center;
  }
  
  .focus-cards {
    flex: 1 1 auto;
    order: 2;
    margin-left: 0;
    margin-top: 32px;
    width: 100%;
  }
  
  .focus-title {
    flex: 1 1 auto;
    order: 1;
    padding-left: 0;
    width: 100%;
    justify-content: center;
  }
  
  .focus-title h2 {
    text-align: center;
  }
  
  .focus-title h2 .title-line {
    text-align: center;
  }
  
  .focus-title h2 .title-line--second {
    position: relative;
    top: auto;
    left: auto;
  }
}

/* Focus cards title styling */
.focus-cards .card h3 {
  color: var(--accent);
  font-weight: bold;
  margin-bottom: 1em;
  font-size: 1.7rem;
}

.grid--four {
  grid-template-columns: repeat(auto-fit, minmax(198px, 1fr));
}

.logo-image {
  display: block;
  max-width: 81%;
  max-height: 81px;
  object-fit: contain;
  margin: 0 auto;
}

.grid--scroll {
  display: grid;
  grid-template-columns: repeat(6, minmax(260px, 1fr));
  gap: 24px;
  width: 100%;
  overflow-x: auto;
  overflow-y: hidden;
  scroll-behavior: smooth;
  padding-bottom: 16px;
}

@media (max-width: 960px) {
  .grid--scroll {
    grid-template-columns: repeat(4, minmax(200px, 1fr));
  }
}

@media (max-width: 720px) {
  .grid--scroll {
    grid-template-columns: repeat(3, minmax(160px, 1fr));
    gap: 16px;
  }
}

.grid--scroll::-webkit-scrollbar {
  height: 6px;
}

.grid--scroll::-webkit-scrollbar-track {
  background: rgba(0, 0, 0, 0.05);
  border-radius: 10px;
}

.grid--scroll::-webkit-scrollbar-thumb {
  background: rgba(0, 0, 0, 0.2);
  border-radius: 10px;
}

.grid--scroll::-webkit-scrollbar-thumb:hover {
  background: rgba(0, 0, 0, 0.3);
}

.grid--two {
  grid-template-columns: repeat(2, minmax(200px, 1fr));
  grid-template-rows: auto auto;
  gap: 24px;
}

@media (max-width: 720px) {
  .grid--two {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
  }
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(192px, 1fr));
  gap: 20px;
  max-width: var(--max-width);
  margin: 0 auto;
}

@media (max-width: 1200px) {
  .team-grid {
    grid-template-columns: repeat(4, minmax(160px, 1fr));
  }
}

@media (max-width: 960px) {
  .team-grid {
    grid-template-columns: repeat(3, minmax(140px, 1fr));
  }
}

@media (max-width: 720px) {
  .team-grid {
    grid-template-columns: repeat(2, minmax(120px, 1fr));
    gap: 16px;
  }
}

.team-grid.grid--scroll {
  max-width: var(--max-width);
  overflow-x: auto;
  overflow-y: hidden;
  scroll-behavior: smooth;
  padding-bottom: 16px;
  margin: 0 auto;
  grid-template-columns: repeat(5, minmax(120px, 1fr));
  gap: 8px;
}

.team-card {
  display: grid;
  gap: 0 !important;
  align-content: start;
  justify-items: center;
  padding: 28px;
  background: var(--surface);
  box-shadow: none;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.team-card h3 {
  text-align: center;
  margin: 0 0 4px 0;
}

.team__avatar {
  width: 112px;
  height: 112px;
  border-radius: 50%;
  object-fit: cover;
  margin: 0 auto 8px;
  border: 2px solid rgba(255, 255, 255, 0.8);
  box-shadow: 0 12px 24px rgba(15, 34, 82, 0.18);
}

.team__role {
  margin: 0 0 10px 0 !important;
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-light);
  text-align: center;
  display: block;
  padding: 0 !important;
}

.team-card p:not(.team__role) {
  margin: 0 !important;
  padding: 0 !important;
  color: var(--text-light);
  text-align: center;
  font-size: 0.9rem;
  line-height: 1.2 !important;
}

.team__role + p {
  margin-top: 0 !important;
  margin-bottom: 0 !important;
}



/* 为王翔的蓝线位置添加0px间距（倒数第2个段落） */
.team-card:nth-child(1) p:not(.team__role):nth-last-of-type(2) {
  margin-bottom: 0 !important;
}

/* 确保王翔的红线位置没有额外间距（倒数第3个段落） */
.team-card:nth-child(1) p:not(.team__role):nth-last-of-type(3) {
  margin-bottom: 0 !important;
}

/* 为白小磊的蓝线位置添加0px间距（倒数第2个段落） */
.team-card:nth-child(4) p:not(.team__role):nth-last-of-type(2) {
  margin-bottom: 0 !important;
}

/* 为鲍明静的蓝线位置添加0px间距（倒数第2个段落） */
.team-card:nth-child(3) p:not(.team__role):nth-last-of-type(2) {
  margin-bottom: 0 !important;
}

/* 为张伟的绿色线位置添加0px间距（倒数第2个段落） */
.team-card:nth-child(2) p:not(.team__role):nth-last-of-type(2) {
  margin-bottom: 0 !important;
}

/* 为文厨的绿色线位置添加0px间距（倒数第2个段落） */
.team-card:nth-child(5) p:not(.team__role):nth-last-of-type(2) {
  margin-bottom: 0 !important;
}

/* 去掉团队成员卡片中黑色线位置的空行，使上下两行更紧凑 */



/* 强制所有团队成员卡片中连续职位段落之间无间距 */
.team-card p:not(.team__role) + p:not(.team__role) {
  margin-top: 0 !important;
  margin-bottom: 0 !important;
  padding: 0 !important;
}

/* 确保团队成员卡片中所有非职位段落之间没有任何间距 */
.team-card p:not(.team__role) {
  margin: 0 !important;
  padding: 0 !important;
  line-height: 1.2 !important;
}



/* 确保团队成员卡片的网格gap为0 */
.card.team-card {
  background: var(--surface);
  box-shadow: none;
  border: 1px solid rgba(255, 255, 255, 0.1);
  gap: 0 !important;
}

.card {
  background: transparent;
  border-radius: var(--radius-md);
  padding: 28px;
  box-shadow: 0 8px 24px rgba(255, 125, 79, 0.2);
  border: 2px solid var(--accent);
  display: grid;
  gap: 0px;
  align-content: start;
}

/* Model section card titles styling */
#model .card h3 {
  color: var(--accent);
  margin-bottom: 1em;
}

.logo-card {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 22px;
  min-height: 108px;
  background: transparent !important;
  box-shadow: none !important;
  border: none !important;
}

.card h3 {
  margin: 0;
  font-size: 1.3rem;
  text-align: center;
}

.card p {
  margin: 0;
  color: var(--text-light);
  text-align: center;
}

.card ul {
  margin: 0;
  padding-left: 18px;
  display: grid;
  gap: 3px;
  color: var(--text-light);
  text-align: center;
  list-style-position: inside;
}

.card--border {
  border: 1px solid var(--border);
  box-shadow: none;
  background: rgba(255, 255, 255, 0.82);
}

.card--case {
  background: var(--surface);
  border-radius: var(--radius-md);
  padding: 28px;
  box-shadow: var(--shadow);
  border: none;
}

.card--case h3 {
  margin-bottom: 12px;
  font-weight: 600;
  text-align: center;
  color: var(--text);
}

.card--case ul {
  margin: 0;
  padding-left: 18px;
  display: grid;
  gap: 3px;
  color: var(--text-light);
  text-align: left;
  list-style-position: outside;
}

.case-layout {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  max-width: var(--max-width);
  margin: 0 auto;
}

.case-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 8px;
  justify-content: center;
  flex: 0 0 auto;
  min-width: 200px;
}

.case-card-left,
.case-card-right {
  flex: 1;
  min-width: 300px;
}

.case-logo {
  margin: 0;
}

.reexen-logo {
  max-width: 180px;
  height: auto;
  display: block;
  margin: 0 auto;
}

.card--case li {
  line-height: 1.5;
}

.card--case-highlight {
  background: var(--surface);
  border-radius: var(--radius-md);
  padding: 28px;
  box-shadow: var(--shadow);
  border: none;
  color: var(--text);
}

.card--case-highlight ul {
  margin: 0;
  padding-left: 18px;
  display: grid;
  gap: 3px;
  color: var(--text-light);
  text-align: left;
  list-style-position: outside;
}

.card--case-highlight h3 {
  margin-bottom: 12px;
  font-weight: 600;
  text-align: center;
  color: var(--text);
}

.stage {
  max-width: var(--max-width);
  margin: 0 auto;
  background: transparent !important;
  padding: clamp(28px, 5vw, 40px);
  border-radius: var(--radius-lg);
  box-shadow: none !important;
  border: none !important;
  display: grid;
  gap: 20px;
}

.timeline {
  width: 100%;
  margin-bottom: clamp(32px, 5vw, 48px);
  display: flex;
  justify-content: center;
  background: transparent;
}

.timeline__img {
  width: min(100%, 1180px);
  height: auto;
  display: block;
  border-radius: var(--radius-lg);
  background: transparent;
}

.stage__timeline {
  display: grid;
  gap: 24px;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  width: 100%;
  max-width: 820px;
  margin: 0 auto;
  align-items: start;
}

.stage__item {
  background: var(--surface);
  border-radius: var(--radius-md);
  padding: 28px;
  box-shadow: var(--shadow);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.stage__item h3 {
  margin-bottom: 5px;
  text-align: center;
}

.stage__item p {
  color: var(--text-light);
  margin: 0;
  text-align: center;
}

.stage__note {
  margin-top: 28px;
  color: var(--text-light);
  font-weight: 500;
}

.focus {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  gap: 32px;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  align-items: center;
}

.focus__stats {
  display: grid;
  gap: 18px;
}

.focus__stats div {
  background: var(--surface);
  padding: 20px;
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
}

.focus__stats-number {
  display: block;
  font-size: 1.4rem;
  font-weight: 700;
}

.focus__stats-label {
  color: var(--text-light);
}

.case {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  gap: 24px;
}

.case__block {
  background: var(--surface);
  border-radius: var(--radius-md);
  padding: 28px;
  border: 1px solid var(--border);
  display: grid;
  gap: 14px;
}

.case__block ul {
  margin: 0;
  padding-left: 20px;
  color: var(--text-light);
  display: grid;
  gap: 6px;
}

.ecosystem {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  gap: 24px;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}

.ecosystem__column {
  background: rgba(255, 255, 255, 0.9);
  border-radius: var(--radius-md);
  padding: 26px;
  border: 1px solid var(--border);
  display: grid;
  gap: 12px;
}

.ecosystem__column ul {
  margin: 0;
  padding-left: 20px;
  color: var(--text-light);
  display: grid;
  gap: 6px;
}

.ecosystem__note {
  font-size: 0.9rem;
  color: var(--text-light);
  opacity: 0.85;
  text-align: center;
  margin-top: 8px;
}



.contact {
  max-width: var(--max-width);
  margin: 0 auto;
  background: #111a3a;
  border-radius: var(--radius-lg);
  padding: clamp(32px, 5vw, 48px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: var(--shadow);
  display: grid;
  gap: 32px;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  color: #ffffff;
}

.contact__form {
  display: grid;
  gap: 16px;
}

.contact__form label {
  display: grid;
  gap: 8px;
  font-weight: 500;
}

.contact__form input,
.contact__form select,
.contact__form textarea {
  padding: 12px 14px;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(31, 60, 136, 0.2);
  font: inherit;
}

.contact__form input:focus,
.contact__form select:focus,
.contact__form textarea:focus {
  outline: 2px solid rgba(31, 60, 136, 0.25);
  border-color: transparent;
}

.contact__hint {
  font-size: 0.9rem;
  color: var(--text-light);
  margin: 0;
}

.footer {
  padding: 36px clamp(20px, 8vw, 48px) 48px !important;
  background: #111a3a !important;
  color: rgba(255, 255, 255, 0.78) !important;
  position: relative !important;
  width: 100% !important;
  box-sizing: border-box !important;
}

.footer__content {
  display: flex !important;
  justify-content: space-between !important;
  align-items: flex-start !important;
  gap: 32px !important;
  margin-bottom: 32px !important;
}

.footer__left {
  display: flex !important;
  justify-content: flex-start !important;
  align-items: flex-start !important;
  flex-shrink: 0 !important;
}

.footer__logo {
  height: 60px !important;
  width: auto !important;
}

.footer__right {
  text-align: left !important;
  flex-grow: 1 !important;
}

.footer__contact {
  font-weight: 600 !important;
  letter-spacing: 0.06em !important;
  margin-bottom: 8px !important;
  display: block !important;
}

.footer__email {
  opacity: 0.9 !important;
  display: block !important;
}

.footer__legal {
  font-size: 0.9rem !important;
  opacity: 0.7 !important;
  text-align: center !important;
  width: 100% !important;
  margin-top: 32px !important;
}

@media (max-width: 960px) {
  .nav__toggle {
    display: inline-flex;
  }

  .nav__links {
    position: absolute;
    top: 60px;
    right: 0;
    background: rgba(17, 25, 54, 0.92);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: var(--radius-md);
    padding: 18px;
    flex-direction: column;
    gap: 12px;
    transform-origin: top right;
    transform: scale(0.9);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.2s ease, transform 0.2s ease;
  }

  .nav__links--open {
    opacity: 1;
    transform: scale(1);
    pointer-events: auto;
  }

  .hero__stats {
    gap: 22px;
  }

  .team-grid {
    grid-template-columns: repeat(auto-fit, minmax(141px, 1fr));
  }
  
  /* 保持滚动版本的划动效果 */
  .team-grid.grid--scroll {
    grid-template-columns: repeat(5, minmax(120px, 1fr));
    overflow-x: auto;
    overflow-y: hidden;
    scroll-behavior: smooth;
  }
}

@media (max-width: 960px) {
  .case-layout {
    flex-direction: column;
    gap: 24px;
  }
  
  .case-card-left,
  .case-card-right {
    min-width: 100%;
  }
  
  .case-content {
    min-width: 100%;
  }
}

@media (max-width: 720px) {
  .hero {
    padding-bottom: calc(var(--section-spacing) * 0.85);
  }

  .hero__cta {
    width: 100%;
  }

  .btn {
    width: 100%;
  }

  .hero__stats {
    width: 100%;
  }

  .hero__stat {
    flex: 1 1 45%;
  }

  .timeline__img {
    width: 100%;
    border-radius: var(--radius-md);
  }

  .team-grid {
    grid-template-columns: repeat(auto-fit, minmax(128px, 1fr));
  }
  
  /* 保持滚动版本的划动效果 */
  .team-grid.grid--scroll {
    grid-template-columns: repeat(5, minmax(120px, 1fr));
    overflow-x: auto;
    overflow-y: hidden;
    scroll-behavior: smooth;
  }
}

@media (max-width: 720px) {
  .footer__content {
    flex-direction: column !important;
    align-items: flex-start !important;
  }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
