/* ========================================
   Filez Global Page 2.0 Styles
   Version: 2.0
   ======================================== */

/* ========== Global Variables ========== */
:root {
  --primary-color: #2563eb;
  --primary-dark: #1e40af;
  --primary-light: #3b82f6;
  --secondary-color: #10b981;
  --text-primary: #1a1a1a;
  --text-secondary: #666666;
  --text-tertiary: #999999;
  --bg-light: #f8f9fc;
  --bg-white: #ffffff;
  --border-color: #e5e7eb;
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.06);
  --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.08);
  --shadow-lg: 0 8px 24px rgba(0, 0, 0, 0.12);
  --transition: all 0.3s ease;
}

/* ========== Section: Banner ========== */
.global-banner {
  position: relative;
  overflow: hidden;
}

/* ========== Section 1: Targets (目标客户) ========== */
.global-targets {
  background: #fff;
  /* padding: 120px 80px 60px; */
}
.global-targets .section1-row {
  display: flex;
    justify-content: center;
    gap: 24px;
    width: 100%;
}

.global-targets .section-header {
  text-align: center;
  max-width: 1100px;
  margin: 0 auto 40px;
}

.targets-wrapper {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0;
}

.targets-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.target-card {
  background: #EDF2FD;
  border: 0.5px solid rgba(0, 0, 0, 0.06);
  border-radius: 16px;
  padding: 32px 32px 40px;
  position: relative;
  overflow: hidden;
  min-height: 268px;
  display: flex;
  flex-direction: column;
  gap: 24px;
  box-shadow: 0px 10px 8px 0px rgba(0, 0, 0, 0.02),
              0px 10px 8px 0px rgba(0, 0, 0, 0.03),
              0px 2px 4px 0px rgba(0, 0, 0, 0.06),
              0px 2px 4px 0px rgba(0, 0, 0, 0.02);
  transition: all 0.3s ease;
}

.target-card:hover {
  transform: translateY(-4px);
  box-shadow: 0px 20px 16px 0px rgba(0, 0, 0, 0.04),
              0px 10px 12px 0px rgba(0, 0, 0, 0.05);
}

/* Card Header */
.target-card .card-header {
  display: flex;
  flex-direction: column;
  gap: 7.5px;
  position: relative;
  z-index: 2;
}

.target-card .card-title {
  
  font-size: 24px;
  font-weight: 600;
  color: #101C2F;
  margin: 0;
  line-height: 1.2;
}

.target-card .card-desc {
  
  font-size: 16px;
  font-weight: 400;
  color: #101C2F;
  line-height: 1.75;
  margin: 0;
}

/* Card Visual - Icon positioned in top right */
.target-card .card-visual {
  position: absolute;
  right: 32px;
  top: 114px;
  width: 183.32px;
  height: 144px;
  z-index: 1;
  pointer-events: none;
}

.target-card .card-icon {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

/* Animated Background Blob */
.target-card .card-blob {
  position: absolute;
  width: 489.49px;
  height: 331.84px;
  right: -120px;
  bottom: -180px;
  background: #87B1FF;
  border-radius: 9999px;
  opacity: 0.7;
  filter: blur(200px);
  transform: rotate(-152.94deg);
  pointer-events: none;
  z-index: 0;
}

/* Card List */
.target-card .card-list {
  list-style: none;
  padding: 0;
  margin: 0;
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.target-card .card-list li {
  
  font-size: 16px;
  font-weight: 400;
  color: rgba(16, 28, 47, 0.8);
  line-height: 1.75;
  padding-left: 20px;
  position: relative;
  transition: color 0.2s ease;
}

.target-card .card-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 11px;
  width: 6px;
  height: 6px;
  background: #101C2F;
  border-radius: 50%;
  opacity: 0.6;
}

.target-card .card-list li:hover {
  color: #101C2F;
}

.target-card .card-list li:hover::before {
  opacity: 1;
  transform: scale(1.2);
}

/* ========== Section 2: Metrics (数据指标) ========== */
.global-metrics {
  /* background-image: url('/product/images/global/2.0/section2-bg.png'); */
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  /* padding: 0 16px; */
}

.global-metrics .section-block {
  color: var(--bg-white);
  /* padding: 0 80px 0; */
  position: relative;
  overflow: hidden;
  border-radius: 24px;
  /* max-width: 1440px; */
  margin: 0 auto;
}

.metrics-wrapper {
  /* max-width: 1248px; */
  width: 1280px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.metrics-header {
  text-align: center;
  margin-bottom: 40px;
}

.metrics-header .section-title, .metrics-header .section-desc {
  color: #FFFFFF;
}

.metrics-grid {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.metrics-row {
  display: flex;
  gap: 16px;
}

.metric-card {
  background: rgba(16, 28, 47, 0.8);
  backdrop-filter: blur(30px);
  border-radius: 24px;
  padding: 32px;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  /* min-height: 187px; */
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

/* .metric-card:hover {
  background: rgba(16, 28, 47, 0.9);
  transform: translateY(-4px);
} */

.metric-card .metric-content {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 16px;
}

.metric-card .metric-header {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.metric-card .metric-title {
  
  font-size: 20px;
  font-weight: 600;
  line-height: 1.4;
  color: #FFFFFF;
  opacity: 0.95;
  margin: 0 0 4px 0;
}

.metric-card .metric-subtitle {
  
  font-size: 14px;
  font-weight: 400;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.8);
  margin: 0;
}

.metric-card .metric-value {
  
  font-size: 40px;
  font-weight: 600;
  line-height: 1.2;
  background: linear-gradient(123deg, #3A7CF5 -47%, #3C8EF3 5%, #A68AE5 51%, #DD5961 105%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-align: left;
}

.metric-card .metric-icon {
  width: auto;
  height: 39px;
  /* opacity: 0.9; */
  align-self: flex-start;
}

.metrics-footer {
  margin-top: 16px;
  padding: 24px;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(30px);
  border-radius: 24px;
  border: 0.89px solid rgba(255, 255, 255, 0.3);
  box-shadow: 0px 8px 30px 0px rgba(45, 79, 247, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
}

.metrics-footer .footer-icon {
  width: 66.95px;
  height: 24px;
}

.metrics-footer .footer-label {
  
  font-size: 24px;
  font-weight: 500;
  line-height: 1.5;
  color: #1A1A1A;
  margin: 0;
}

/* Metrics Content Image */
.metrics-content {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 auto;
}

.metrics-content-image {
  width: 100%;
  /* max-width: 1248px; */
  height: auto;
  display: block;
}

.metrics-note {
  margin-top: 40px;
  
  font-size: 16px;
  font-weight: 400;
  line-height: 40px;
  color: rgba(255, 255, 255, 0.9);
  text-align: center;
}

/* ========== Section 4: Security (安全合规) ========== */
.global-security {
  background: var(--bg-white);
  /* padding: 100px 0; */
}

.security-wrapper {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Section3 Compliance Block */
.section3-compliance-wrapper {
  max-width: 1280px;
  margin: 0 auto 40px;
  padding: 0px;
  background: #fff;
  border-radius: 12px;
  display: flex;
  justify-content: flex-start;
  gap: 80px;
  /* border: 1px solid rgba(0, 0, 0, 0.08); */
  /* box-shadow: 0 2px 12px rgba(0,0,0,0.06); */
}

.section3-compliance-wrapper .compliance-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
  flex: 0 0 auto;
}

.section3-compliance-wrapper .law {
  font-size: 28px;
  font-weight: 600;
  line-height: 44px;
  text-align: left;
  letter-spacing: 0;
  color: #101C2F;
  margin-bottom: 0;
}

.section3-compliance-wrapper .compliance-desc-text {
  font-size: 16px;
  font-weight: 400;
  line-height: 28px;
  text-align: left;
  color: #101C2F;
}

#en .section3-compliance-wrapper {
  justify-content: start;
  gap: 36px;
}

#en .section3-compliance-wrapper .compliance-card {
  flex: 0 1 auto;
  min-width: 140px;
}

#en .section3-compliance-wrapper .law {
  font-size: 26px;
}

.security-main {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 80px;
  align-items: center;
  margin-top: 60px;
}

.security-compliance {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.compliance-badges {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.compliance-item {
  display: flex;
  align-items: center;
  gap: 10px;
}

.compliance-tag {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-light) 100%);
  color: var(--bg-white);
  padding: 8px 20px;
  border-radius: 8px;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.5px;
  box-shadow: 0 4px 12px rgba(37, 99, 235, 0.25);
  transition: var(--transition);
}

.compliance-tag:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(37, 99, 235, 0.35);
}

.compliance-label {
  font-size: 14px;
  color: var(--text-secondary);
  font-weight: 500;
}

.compliance-divider {
  width: 1px;
  height: 24px;
  background: linear-gradient(to bottom, transparent, var(--border-color), transparent);
}

.security-features {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.feature-item {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  padding: 24px;
  background: var(--bg-light);
  border-radius: 16px;
  border: 2px solid transparent;
  transition: var(--transition);
}

.feature-item:hover {
  border-color: var(--primary-color);
  background: var(--bg-white);
  box-shadow: var(--shadow-md);
  transform: translateX(8px);
}

.feature-item .feature-icon {
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, #dbeafe 0%, #bfdbfe 100%);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: var(--transition);
}

.feature-item:hover .feature-icon {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-light) 100%);
  transform: scale(1.1);
}

.feature-item .feature-icon img {
  width: 24px;
  height: 24px;
  transition: var(--transition);
}

.feature-item:hover .feature-icon img {
  filter: brightness(0) invert(1);
}

.feature-item .feature-title {
  font-size: 18px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 10px;
  line-height: 1.4;
}

.feature-item .feature-desc {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.8;
}

.security-visual {
  position: relative;
}

.security-visual img {
  width: 100%;
  height: auto;
  border-radius: 20px;
  box-shadow: var(--shadow-lg);
  transition: var(--transition);
}

.security-visual:hover img {
  transform: scale(1.02);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}

.security-promise {
  margin-top: 80px;
  padding: 42px;
  background-image: url('/product/images/global/2.0/section3-footer-bg.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  border-radius: 24px;
  color: #101C2F;
  position: relative;
  overflow: hidden;
}

/* .security-promise::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
  animation: rotate 20s linear infinite;
} */

@keyframes rotate {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

.security-promise .promise-title {
  font-size: 28px;
  font-weight: 800;
  text-align: center;
  margin-bottom: 40px;
  position: relative;
  z-index: 1;
  letter-spacing: 0.5px;
}

.promise-items {
  display: grid;
  /* grid-template-columns: repeat(3, 1fr); */
  display: flex;
  justify-content: center;
  gap: 200px;
  position: relative;
  z-index: 1;
}

/* 英文时缩小间距 */
#en .promise-items {
  gap: 80px;
}

.promise-item {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 16px;
  transition: var(--transition);
}

/* .promise-item:hover {
  transform: translateY(-8px);
} */

.promise-item .promise-icon {
  width: 56px;
  height: 56px;
  flex-shrink: 0;
  border-radius: 875px;
  display: flex;
  align-items: center;
  justify-content: center;
  /* box-shadow: 0px 3.5px 13.13px 0px rgba(37, 99, 235, 0.3); */
  transition: var(--transition);
}

/* .promise-item:hover .promise-icon {
  box-shadow: 0px 5px 16px 0px rgba(37, 99, 235, 0.45);
  transform: scale(1.05);
} */

.promise-item .promise-icon img {
  /* width: 32px; */
  /* height: 32px; */
  height: 100%;
  width: 100%;
}

.promise-item .promise-content {
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex: 1;
  max-width: 180px;
  white-space: nowrap;
}

/* 英文时增加内容宽度 */
#en .promise-item .promise-content {
  max-width: 240px;
}

.promise-item .promise-label {
  
  font-size: 20px;
  font-weight: 600;
  line-height: 24px;
  color: #101C2F;
  margin: 0;
}

.promise-item .promise-desc {
  
  font-size: 16px;
  font-weight: 500;
  line-height: 24px;
  color: #101C2F;
  margin: 0;
}

/* ========== Section 5 & 6: Collaboration & AI ========== */
.global-collaboration,
.global-ai {
  /* padding: 100px 0; */
}

.global-collaboration {
  /* background: var(--bg-light); */
}

.global-ai {
  background: var(--bg-white);
}

/* media-list 组件提供基础样式 */

/* ========== Media List Bottom Banner ========== */
.media-list-bottom-banner {
  margin-top: 80px;
  padding: 42px;
  background-image: url('/product/images/global/2.0/section3-footer-bg.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  border-radius: 32px;
  text-align: center;
  color: #fff;
  position: relative;
  overflow: hidden;
}

/* .media-list-bottom-banner::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 20% 50%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
              radial-gradient(circle at 80% 50%, rgba(255, 255, 255, 0.1) 0%, transparent 50%);
  pointer-events: none;
} */

.media-list-bottom-banner .bottom-banner-title {
  font-size: 28px;
  font-weight: 700;
  line-height: 1.2;
  margin: 0 0 20px 0;
  color: #030A14;
  position: relative;
  z-index: 1;
  letter-spacing: -0.5px;
}

.media-list-bottom-banner .bottom-banner-desc {
  font-size: 16px;
  line-height: 1.8;
  opacity: 0.9;
  margin: 0 0 30px 0;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  color: #030A14;
  position: relative;
  z-index: 1;
}

.media-list-bottom-banner .bottom-banner-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  align-items: center;
  position: relative;
  z-index: 1;
}

/* 主按钮样式 - 与 banner .main-btn 保持一致 */
.media-list-bottom-banner .bottom-banner-btn.btn-primary {
  width: 180px;
  box-sizing: border-box;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 11px 24px;
  border-radius: 8px;
  background: linear-gradient(0deg, #101C2F, #101C2F), linear-gradient(117deg, #2DD4BF -70%, #002E93 41%, #F43F5E 149%);
  background-blend-mode: soft-light, normal;
  color: #fff;
  text-decoration: none;
  font-size: 20px;
  font-weight: 500;
  line-height: 28px;
  box-shadow: 0px 6px 8px -4px rgba(25, 54, 63, 0.15), 0px 2px 4px -4px rgba(25, 54, 63, 0.15);
  transition: all 0.3s ease;
  cursor: pointer;
  white-space: nowrap;
}

.media-list-bottom-banner .bottom-banner-btn.btn-primary:hover {
  background: linear-gradient(0deg, rgba(16, 28, 47, 0.4), rgba(16, 28, 47, 0.4)), linear-gradient(117deg, #2DD4BF -70%, #002E93 41%, #F43F5E 149%);
}

.media-list-bottom-banner .bottom-banner-btn.btn-primary:active {
  background: linear-gradient(0deg, #000000, #000000), linear-gradient(117deg, #2DD4BF -70%, #002E93 41%, #F43F5E 149%);
}

/* 次按钮样式 - 与 banner .normal-btn 保持一致 */
.media-list-bottom-banner .bottom-banner-btn.btn-secondary {
  width: 180px;
  border-radius: 8px;
  display: inline-flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  padding: 11px 24px;
  gap: 10px;
  box-sizing: border-box;
  border: 1px solid #011870;
  color: #011870;
  /* box-shadow: 0px 0.6px 0.6px -1.25px rgba(0, 0, 0, 0.18),
              0px 2.29px 2.29px -2.5px rgba(0, 0, 0, 0.16),
              0px 10px 10px -3.75px rgba(0, 0, 0, 0.063); */
  position: relative;
  transition: all 0.3s ease;
  text-decoration: none;
  cursor: pointer;
  white-space: nowrap;
  font-size: 20px;
  /* font-weight: 500; */
  line-height: 28px;
  /* 已注释渐变文字效果，使用纯色 #011870 */
  /* background: linear-gradient(0deg, #101C2F, #101C2F), linear-gradient(121deg, #2DD4BF -73%, #002E93 40%, #F43F5E 152%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-shadow: 0px 1px 5px rgba(0, 0, 0, 0.05); */
  z-index: 1;
}

/* 次按钮白色背景层 */
/* .media-list-bottom-banner .bottom-banner-btn.btn-secondary::before {
  content: '';
  position: absolute;
  inset: 0;
  background: white;
  border-radius: 8px;
  z-index: -1;
} */

.media-list-bottom-banner .bottom-banner-btn.btn-secondary:hover {
  border-color: #0448A9;
  background: linear-gradient(121deg, #2DD4BF -73%, #002E93 40%, #F43F5E 152%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.media-list-bottom-banner .bottom-banner-btn.btn-secondary:active {
  border-color: #000000;
  background: linear-gradient(0deg, #000000, #000000), linear-gradient(121deg, #2DD4BF -73%, #002E93 40%, #F43F5E 152%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ========== Section 7: Infrastructure (全球基础设施) ========== */
.global-infrastructure {
  background: #fff;
  /* padding: 120px 16px 60px; */
  position: relative;
  overflow: hidden;
}

.global-infrastructure .section-container {
  width: 100%;
}

.infrastructure-wrapper {
  /* max-width: 1440px; */
  margin: 0 auto;
  padding: 0;
  position: relative;
}

/* Header Section */
.infrastructure-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  /* gap: 20px; */
  /* margin-bottom: 20px; */
  max-width: 1100px;
  margin-left: auto;
  margin-right: auto;
}

.infrastructure-kicker {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 18px;
  border-radius: 19px;
  /* Token: gradient background from design */
  background: linear-gradient(104deg, #2DD4BF 0%, #2563EB 50%, #F43F5E 100%);
  /* Token: text color white */
  color: #FFFFFF;
  
  font-size: 16px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0%;
  line-height: auto;
}

.infrastructure-title {
  
  font-size: 44px;
  font-weight: 600;
  line-height: 1.23;
  color: #101C2F;
  text-align: center;
  margin: 0;
}

.infrastructure-desc {
  
  font-size: 20px;
  font-weight: 400;
  line-height: 1.67;
  color: #101C2F;
  text-align: center;
  margin: 0;
}

/* Buttons Section */
.infrastructure-buttons {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 24px;
  margin-bottom: 40px;
}

/* 主按钮样式 - 与 banner .main-btn 保持一致 */
.infrastructure-btn.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 11px 24px;
  border-radius: 8px;
  background: linear-gradient(0deg, #101C2F, #101C2F), linear-gradient(117deg, #2DD4BF -70%, #002E93 41%, #F43F5E 149%);
  background-blend-mode: soft-light, normal;
  color: #fff;
  text-decoration: none;
  font-size: 20px;
  font-weight: 500;
  line-height: 28px;
  box-shadow: 0px 6px 8px -4px rgba(25, 54, 63, 0.15), 0px 2px 4px -4px rgba(25, 54, 63, 0.15);
  transition: all 0.3s ease;
  cursor: pointer;
  white-space: nowrap;
}

.infrastructure-btn.btn-primary:hover {
  background: linear-gradient(0deg, rgba(16, 28, 47, 0.4), rgba(16, 28, 47, 0.4)), linear-gradient(117deg, #2DD4BF -70%, #002E93 41%, #F43F5E 149%);
}

.infrastructure-btn.btn-primary:active {
  background: linear-gradient(0deg, #000000, #000000), linear-gradient(117deg, #2DD4BF -70%, #002E93 41%, #F43F5E 149%);
}

/* 次按钮样式 - 与 banner .normal-btn 保持一致 */
.infrastructure-btn.btn-secondary {
  border-radius: 8px;
  display: inline-flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  padding: 11px 24px;
  gap: 10px;
  box-sizing: border-box;
  border: 1px solid #011870;
  color: #011870;
  /* background: white; */
  /* box-shadow: 0px 0.6px 0.6px -1.25px rgba(0, 0, 0, 0.18),
              0px 2.29px 2.29px -2.5px rgba(0, 0, 0, 0.16),
              0px 10px 10px -3.75px rgba(0, 0, 0, 0.063); */
  position: relative;
  transition: all 0.3s ease;
  text-decoration: none;
  cursor: pointer;
  white-space: nowrap;
  font-size: 20px;
  /* font-weight: 500; */
  line-height: 28px;
  /* 已注释渐变文字效果，使用纯色 #011870，白色背景 */
  /* background: linear-gradient(0deg, #101C2F, #101C2F), linear-gradient(121deg, #2DD4BF -73%, #002E93 40%, #F43F5E 152%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-shadow: 0px 1px 5px rgba(0, 0, 0, 0.05); */
  z-index: 1;
}

/* 次按钮白色背景层 */
/* .infrastructure-btn.btn-secondary::before {
  content: '';
  position: absolute;
  inset: 0;
  background: white;
  border-radius: 8px;
  z-index: -1;
} */

.infrastructure-btn.btn-secondary:hover {
  border-color: #0448A9;
  background: linear-gradient(121deg, #2DD4BF -73%, #002E93 40%, #F43F5E 152%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.infrastructure-btn.btn-secondary:active {
  border-color: #000000;
  box-shadow: 0px 0.6px 0.6px -1.25px rgba(0, 0, 0, 0.18),
              0px 2.29px 2.29px -2.5px rgba(0, 0, 0, 0.16),
              0px 10px 10px -3.75px rgba(0, 0, 0, 0.063);
  background: linear-gradient(0deg, #000000, #000000), linear-gradient(121deg, #2DD4BF -73%, #002E93 40%, #F43F5E 152%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Map Container */
.infrastructure-map-container {
  max-width: 1280px;
  width: 100%;
  margin: 0 auto;
  padding: 0;
  /* background: radial-gradient(67% 119% at 50% 119%, rgba(42, 76, 246, 0.3) 0%, rgba(85, 133, 246, 0.2) 61%, rgba(195, 233, 246, 0.1) 100%),
              #EEF2FA; */
  border-radius: 24px;
  position: relative;
  overflow: hidden;
}

/* Blur effect background */
/* .infrastructure-map-container::before {
  content: '';
  position: absolute;
  width: 1156px;
  height: 1155px;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -30%);
  background: linear-gradient(180deg, #2563EB 0%, rgba(37, 99, 235, 0.8) 100%);
  border-radius: 50%;
  filter: blur(245px);
  opacity: 0.7;
  pointer-events: none;
  z-index: 0;
} */

.infrastructure-map-content {
  position: relative;
  z-index: 1;
  text-align: center;
}

.infrastructure-map-content img {
  max-width: 100%;
  width: 100%;
  height: auto;
  display: block;
  margin: 0 auto;
}

/* ========== Section 8: Certifications (权威认证) ========== */
.global-certifications {
  /* background: var(--bg-light); */
  /* padding: 120px 0 60px; */
  display: flex;
  align-items: center;
    justify-content: space-between;
}
.certification-item {
  display: flex;
  align-items: center;
  flex-direction: column;
}

.global-certifications .section-title {
  margin-bottom: 20px;
}

.global-certifications .section-desc {
  margin-bottom: 48px;
}

.certifications-wrapper {
  width: 100%;
}

.cert-list {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 40px;
  flex-wrap: wrap;
}

.cert-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  flex: 1;
  min-width: 100px;
  position: relative;
}

/* 分割线 - 每个认证项前面（除了第一个） */
.cert-item:not(:first-of-type)::before {
  content: '';
  position: absolute;
  left: -20px;
  top: 50%;
  transform: translateY(-50%);
  width: 1px;
  height: 48px;
  background-color: #101C2F;
  opacity: 0.8;
}

.cert-icon {
  width: 100px;
  height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.cert-icon img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.cert-name {
  font-size: 16px;
  font-weight: normal;
  line-height: 28px;
  color: #101C2F;
  text-align: center;
}

/* 响应式设计 */
@media (max-width: 1024px) {
  .cert-list {
    gap: 32px;
  }
}

@media (max-width: 768px) {
  .global-certifications {
    padding: 80px 0 40px;
  }
  
  .cert-list {
    gap: 24px;
  }
  
  .cert-icon {
    width: 48px;
    height: 48px;
  }

  /* 小屏幕隐藏分割线 */
  .cert-item:not(:first-of-type)::before {
    display: none;
  }
}

/* ========== Section 9: Cases (客户案例) ========== */
.global-cases {
  /* padding: 100px 0; */
  /* background: var(--bg-white); */
}

/* case-carousel 组件提供样式 */

/* ========== Section 10: CTA (底部行动号召) ========== */
.global-cta {
  /* footer-lead 组件提供样式 */
  /* background: var(--bg-light); */
}

/* ========== Animations ========== */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes scaleIn {
  from {
    opacity: 0;
    transform: scale(0.9);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

/* ========== Responsive Design ========== */

/* Tablet */
@media (max-width: 1024px) {
  .global-targets {
    padding: 80px 40px 40px;
  }

  .targets-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .target-card .card-visual {
    width: 140px;
    height: 110px;
    right: 24px;
    top: 100px;
  }

  .global-metrics {
    padding: 0 8px;
  }

  .global-metrics .section-block {
    padding: 0 40px 0;
  }

  .metrics-header .metrics-title {
    font-size: 36px;
  }

  .metrics-header .metrics-desc {
    font-size: 20px;
  }

  .metrics-row {
    flex-direction: column;
  }

  .metric-card .metric-title {
    font-size: 20px;
  }

  .metric-card .metric-value {
    font-size: 28px;
  }

  .security-main {
    grid-template-columns: 1fr;
    gap: 60px;
  }

  .security-visual {
    order: -1;
  }

  .promise-items {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .global-infrastructure {
    padding: 80px 8px 40px;
  }

  .infrastructure-header {
    margin-bottom: 40px;
  }

  .infrastructure-title {
    font-size: 36px;
  }

  .infrastructure-desc {
    font-size: 20px;
  }

  .infrastructure-buttons {
    margin-bottom: 40px;
  }

  .infrastructure-btn {
    padding: 14px 32px;
    font-size: 18px;
  }

  .infrastructure-map-container {
    padding: 0;
  }

  .media-list-bottom-banner {
    margin-top: 60px;
    padding: 60px 60px;
    border-radius: 24px;
  }

  .media-list-bottom-banner .bottom-banner-title {
    font-size: 36px;
  }

  .media-list-bottom-banner .bottom-banner-desc {
    font-size: 17px;
  }
}

/* Mobile */
@media (max-width: 768px) {
  .global-targets {
    padding: 60px 20px 40px;
  }

  .global-targets .section-header {
    margin-bottom: 32px;
  }

  .targets-grid {
    gap: 16px;
  }

  .target-card {
    padding: 24px 24px 32px;
    min-height: auto;
  }

  .target-card .card-title {
    font-size: 20px;
  }

  .target-card .card-desc {
    font-size: 14px;
  }

  .target-card .card-list li {
    font-size: 14px;
  }

  .target-card .card-visual {
    width: 100px;
    height: 80px;
    right: 16px;
    top: 80px;
  }

  .target-card .card-blob {
    width: 300px;
    height: 200px;
    right: -80px;
    bottom: -120px;
  }

  .global-metrics,
  .global-security,
  .global-collaboration,
  .global-ai,
  .global-infrastructure,
  .global-certifications,
  .global-cases {
    padding: 60px 0;
  }

  .media-list-bottom-banner {
    margin-top: 60px;
    padding: 60px 40px;
    border-radius: 24px;
  }

  .media-list-bottom-banner .bottom-banner-title {
    font-size: 36px;
    margin-bottom: 16px;
  }

  .media-list-bottom-banner .bottom-banner-desc {
    font-size: 16px;
    margin-bottom: 32px;
  }

  .media-list-bottom-banner .bottom-banner-buttons {
    flex-direction: column;
    gap: 16px;
  }

  .target-card .card-icon {
    width: 56px;
    height: 56px;
    margin-bottom: 20px;
  }

  .target-card .card-title {
    font-size: 20px;
  }

  .target-card .card-desc {
    font-size: 14px;
  }

  .global-metrics {
    padding: 0;
  }

  .global-metrics .section-block {
    padding: 60px 20px 0;
    border-radius: 16px;
  }

  .metrics-header {
    margin-bottom: 60px;
  }

  .metrics-header .metrics-title {
    font-size: 28px;
  }

  .metrics-header .metrics-desc {
    font-size: 18px;
  }

  .metric-card {
    padding: 24px;
  }

  .metric-card .metric-title {
    font-size: 18px;
  }

  .metric-card .metric-subtitle {
    font-size: 14px;
  }

  .metric-card .metric-value {
    font-size: 24px;
  }

  .metric-card .metric-icon {
    height: 32px;
  }

  .metrics-footer {
    padding: 20px;
    gap: 16px;
  }

  .metrics-footer .footer-icon {
    width: 56px;
    height: 20px;
  }

  .metrics-footer .footer-label {
    font-size: 18px;
  }

  .metrics-content-image {
    max-width: 100%;
  }

  .metrics-note {
    font-size: 14px;
    margin-top: 32px;
  }

  .compliance-badges {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }

  .compliance-divider {
    display: none;
  }

  .security-features {
    gap: 20px;
  }

  .feature-item {
    padding: 20px;
  }

  .feature-item .feature-icon {
    width: 40px;
    height: 40px;
  }

  .feature-item .feature-icon img {
    width: 20px;
    height: 20px;
  }

  .feature-item .feature-title {
    font-size: 16px;
  }

  .security-promise {
    padding: 32px 24px;
    border-radius: 20px;
  }

  .security-promise .promise-title {
    font-size: 22px;
    margin-bottom: 32px;
  }

  .promise-item {
    gap: 12px;
  }

  .promise-item .promise-icon {
    width: 48px;
    height: 48px;
  }

  .promise-item .promise-icon img {
    width: 28px;
    height: 28px;
  }

  .promise-item .promise-content {
    max-width: none;
    white-space: normal;
  }

  .promise-item .promise-label {
    font-size: 18px;
    line-height: 22px;
  }

  .promise-item .promise-desc {
    font-size: 14px;
    line-height: 20px;
  }

  .global-infrastructure {
    padding: 60px 0;
  }

  .infrastructure-header {
    margin-bottom: 32px;
    padding: 0 20px;
  }

  .infrastructure-kicker {
    font-size: 14px;
    padding: 6px 16px;
  }

  .infrastructure-title {
    font-size: 28px;
  }

  .infrastructure-desc {
    font-size: 18px;
  }

  .infrastructure-buttons {
    flex-direction: column;
    gap: 16px;
    margin-bottom: 40px;
    padding: 0 20px;
  }

  .infrastructure-btn {
    width: 100%;
    max-width: 320px;
    padding: 14px 32px;
    font-size: 16px;
  }

  .infrastructure-map-container {
    padding: 0;
    border-radius: 16px;
  }
}

/* Small Mobile */
@media (max-width: 480px) {
  .global-targets {
    padding: 40px 16px 32px;
  }

  .targets-grid {
    gap: 12px;
  }

  .target-card {
    padding: 20px 20px 28px;
  }

  .target-card .card-title {
    font-size: 18px;
  }

  .target-card .card-desc {
    font-size: 13px;
  }

  .target-card .card-list li {
    font-size: 13px;
  }

  .target-card .card-visual {
    width: 80px;
    height: 64px;
    right: 12px;
    top: 70px;
  }

  .target-card {
    padding: 24px;
  }

  .global-metrics {
    padding: 0;
  }

  .global-metrics .section-block {
    padding: 40px 16px 0;
  }

  .metrics-header .metrics-title {
    font-size: 24px;
  }

  .metrics-header .metrics-desc {
    font-size: 16px;
  }

  .metrics-grid {
    gap: 12px;
  }

  .metrics-row {
    gap: 12px;
  }

  .metric-card {
    padding: 20px;
  }

  .metric-card .metric-title {
    font-size: 16px;
  }

  .metric-card .metric-subtitle {
    font-size: 13px;
  }

  .metric-card .metric-value {
    font-size: 20px;
  }

  .metric-card .metric-icon {
    height: 28px;
    left: 20px;
    bottom: 20px;
  }

  .metrics-footer {
    padding: 16px;
    gap: 12px;
    flex-direction: column;
  }

  .metrics-footer .footer-icon {
    width: 50px;
    height: 18px;
  }

  .metrics-footer .footer-label {
    font-size: 16px;
  }

  .metrics-content-image {
    max-width: 100%;
  }

  .metrics-note {
    font-size: 12px;
    margin-top: 24px;
  }

  .security-promise {
    padding: 24px 20px;
  }

  .promise-items {
    gap: 24px;
  }

  .promise-item {
    gap: 10px;
  }

  .promise-item .promise-icon {
    width: 40px;
    height: 40px;
  }

  .promise-item .promise-icon img {
    width: 24px;
    height: 24px;
  }

  .promise-item .promise-content {
    white-space: normal;
  }

  .promise-item .promise-label {
    font-size: 16px;
    line-height: 20px;
  }

  .promise-item .promise-desc {
    font-size: 13px;
    line-height: 18px;
  }

  .global-infrastructure {
    padding: 40px 0;
  }

  .infrastructure-header {
    margin-bottom: 24px;
    padding: 0 16px;
  }

  .infrastructure-kicker {
    font-size: 13px;
    padding: 5px 14px;
  }

  .infrastructure-title {
    font-size: 24px;
  }

  .infrastructure-desc {
    font-size: 16px;
  }

  .infrastructure-buttons {
    gap: 12px;
    margin-bottom: 32px;
    padding: 0 16px;
  }

  .infrastructure-btn {
    max-width: 280px;
    padding: 12px 24px;
    font-size: 15px;
  }

  .infrastructure-map-container {
    padding: 0;
  }
}

/* ========== Print Styles ========== */
@media print {
  .global-banner,
  .global-cta {
    display: none;
  }

  .target-card,
  .metric-card,
  .feature-item,
  .infra-card {
    page-break-inside: avoid;
    box-shadow: none;
    border: 1px solid var(--border-color);
  }
}
