/* ============================================
   Banner栏 - 子页面
   高度400px，背景图BG03.png
   ============================================ */
.bannerBgBox {
	width: 100%;
	min-height: 400px;
	position: relative;
	overflow: hidden;
	background-image: url('../img/BG04.png');
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center center;
}

.bannerBox {
	width: 100%;
	min-height: 400px;
	background-color: rgba(1,42,60,0.85);
	position: relative;
}

.bannerTxtBox {
	width: 1100px;
	min-height: 400px;
	margin: 0 auto;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: flex-start;
	text-align: left;
}

.bannerTxtBox * {
	text-align: left;
	margin-left: 0;
	margin-right: 0;
}

/* ============================================
   Banner - 平板 (max-width: 1199px)
   ============================================ */
@media (max-width: 1199px) {
	.bannerBgBox { min-height: 400px; }
	.bannerBox { min-height: 400px; }
	.bannerTxtBox { width: 100%; padding: 0 32px; min-height: 400px; }
}

/* ============================================
   Banner - 手机端 (max-width: 768px)
   ============================================ */
@media (max-width: 768px) {
	.bannerBgBox { height: auto; }
	.bannerBox { height: auto; }
	.bannerTxtBox {
		width: 100%;
		padding: 50px 24px;
		min-height: unset;
		height: auto;
		align-items: center;
		text-align: center;
	}
	.bannerTxtBox * { text-align: center; margin-left: auto; margin-right: auto; }
	.bannerBtns { gap: 12px; flex-wrap: wrap; justify-content: center; margin-left: auto; margin-right: auto; }
	.bannerBtn1, .bannerBtn2 { font-size: 13px; padding: 10px 18px; }
}

/* ============================================
   Banner - 小手机 (max-width: 430px)
   ============================================ */
@media (max-width: 430px) {
	.bannerTxtBox { padding: 40px 20px; }
	.bannerBtns { flex-direction: column; align-items: center; gap: 10px; }
	.bannerBtn1, .bannerBtn2 { width: auto; justify-content: center; font-size: 14px; }
}


/* Banner 文字和按钮共用样式 */
.bannerTitle {
	font-size: 45px;
	font-weight: 800;
	color: #ffffff;
	line-height: 1.0;
	margin-bottom: 0px;
	letter-spacing: -1.5px;
	animation: bannerFadeUp 0.7s ease 0.1s both;
}
.bannerTitleSub {
	font-size: 45px;
	font-weight: 800;
	color: rgb(3,149,211);
	line-height: 1.1;
	margin-bottom: 24px;
	letter-spacing: -1px;
	animation: bannerFadeUp 0.7s ease 0.3s both;
}
.bannerSub {
	font-size: 20px;
	font-weight: 600;
	color: #ffffff;
	line-height: 1.8;
	margin-bottom: 32px;
	max-width: 500px;
	animation: bannerFadeUp 0.7s ease 0.5s both;
}
.bannerBtns {
	display: flex;
	align-items: center;
	gap: 16px;
	animation: bannerFadeUp 0.7s ease 0.7s both;
}
.bannerBtn1 {
	display: inline-flex;
	align-items: center;
	background: rgb(3,149,211);
	color: #ffffff;
	font-size: 15px;
	font-weight: 600;
	padding: 12px 28px;
	border-radius: 8px;
	text-decoration: none;
	transition: background 0.2s ease;
}
.bannerBtn1:hover { background: rgb(2,120,170); color: #ffffff; }
.bannerBtn2 {
	display: inline-flex;
	align-items: center;
	background: rgba(255,255,255,0.10);
	border: 1px solid rgba(255,255,255,0.30);
	color: #ffffff;
	font-size: 15px;
	font-weight: 500;
	padding: 12px 24px;
	border-radius: 8px;
	text-decoration: none;
	transition: background 0.2s ease;
	max-width: 100%;
	box-sizing: border-box;
}
.bannerBtn2:hover { background: rgba(255,255,255,0.20); color: #ffffff; }
@keyframes bannerFadeUp {
	from { opacity: 0; transform: translateY(30px); }
	to   { opacity: 1; transform: translateY(0); }
}

/* ============================================
   子页面 Banner 移动端字体修正
   ============================================ */
@media (max-width: 768px) {
  .bannerTitle   { font-size: 30px; letter-spacing: -0.5px; }
  .bannerTitleSub{ font-size: 30px; letter-spacing: -0.5px; margin-bottom: 14px; }
  .bannerSub     { font-size: 13px; line-height: 1.7; margin-bottom: 20px; }
}
@media (max-width: 430px) {
  .bannerTitle   { font-size: 24px; }
  .bannerTitleSub{ font-size: 24px; }
  .bannerSub     { font-size: 12px; }
}


/* ============================================
   Who We Are栏
   ============================================ */
.whoBox {
	width: 100%;
	background: #ffffff;
	padding: 70px 0 60px;
}

.whoInner {
	width: 1000px;
	margin: 0 auto;
}

/* 标题 + 横线 */
.whoTitleBox {
	text-align: center;
	margin-bottom: 50px;
}

.whoTitle {
	font-size: 36px;
	font-weight: 700;
	color: #1a1a1a;
	margin-bottom: 16px;
}

.whoSubTitle {
	font-size: 20px;
	font-weight: 400;
	color: #555555;
	margin-top: 12px;
	line-height: 1.5;
}

/* 段落文字 */
.whoContent {
	max-width: 1000px;
	margin: 0 auto;
}

.whoText {
	font-size: 16px;
	color: #333333;
	line-height: 1.9;
	margin-bottom: 28px;
	text-align: left;
}

.whoText:last-child {
	margin-bottom: 0;
}

/* 行业标签 */
.whoTags {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	margin-bottom: 28px;
	justify-content: center;
}

.whoTag {
	display: inline-block;
	background: #ffffff;
	border: 1px solid #e0e0e0;
	border-radius: 8px;
	padding: 8px 18px;
	font-size: 14px;
	font-weight: 500;
	color: #333333;
	box-shadow: 0 2px 6px rgba(0,0,0,0.06);
	transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
	cursor: default;
}

.whoTag:hover {
	background: rgb(3,149,211);
	border-color: rgb(3,149,211);
	color: #ffffff;
}

@media (max-width: 768px) {
	.whoTagsTitle { font-size: 14px; margin-top: 24px; }
	.whoTag { font-size: 13px; padding: 6px 14px; }
}

/* ============================================
   Who We Are - 移动端适配
   ============================================ */
@media (max-width: 1199px) {
	.whoInner { width: 100%; padding: 0 32px; }
}

@media (max-width: 768px) {
	.whoBox { padding: 50px 0 40px; }
	.whoInner { padding: 0 20px; }
	.whoTitle { font-size: 28px; }
	.whoText { font-size: 14px; line-height: 1.8; margin-bottom: 20px; }
}

@media (max-width: 430px) {
	.whoTitle { font-size: 24px; }
	.whoText { font-size: 13px; }
}


/* ============================================
   Company Stats & Mission栏
   ============================================ */
.companyBox {
	width: 100%;
	background: #f3f3f3;
	padding: 70px 0 80px;
}

.companyInner {
	width: 1000px;
	margin: 0 auto;
	display: flex;
	flex-direction: row;
	gap: 40px;
	align-items: stretch;
}

/* 左侧 */
.companyLeft {
	width: 480px;
	flex-shrink: 0;
	display: flex;
	flex-direction: column;
}

.companyTitle {
	font-size: 28px;
	font-weight: 700;
	color: #1a1a1a;
	margin-bottom: 20px;
}

.companyText {
	font-size: 15px;
	color: #444444;
	line-height: 1.8;
	margin-bottom: 36px;
	text-align: right;
}

/* 数据网格 2×2 */
.companyGrid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	column-gap: 40px;
	row-gap: 12px;
	flex: 1;
	align-content: stretch;
}

.companyStatItem {
	background: #ffffff;
	border-radius: 12px;
	padding: 10px 24px;
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	text-align: left;
	box-shadow: 0 2px 8px rgba(0,0,0,0.06);
	justify-content: center;
}

.companyStatNumRow {
	display: flex;
	flex-direction: row;
	align-items: flex-end;
	gap: 2px;
	margin-left: 0;
}

.companyStatNum {
	font-size: 36px;
	font-weight: 700;
	color: #333333;
	line-height: 1;
}

.companyStatUnit {
	font-size: 24px;
	font-weight: 700;
	color: #333333;
	margin-bottom: 3px;
}

.companyStatLabel {
	font-size: 13px;
	color: #777777;
	margin-top: 8px;
	line-height: 1.4;
	margin-left: 0;
	text-align: left;
}

/* 右侧深色卡片 */
.companyRight {
	width: 480px;
	flex-shrink: 0;
}

.missionBox {
	background: #0d2137;
	border-radius: 16px;
	padding: 40px 36px;
	height: 100%;
	box-sizing: border-box;
}

.missionSection {
	margin-bottom: 32px;
}

.missionSection:last-child {
	margin-bottom: 0;
}

.missionSectionTitle {
	font-size: 18px;
	font-weight: 700;
	color: #ffffff;
	margin-bottom: 14px;
}

.missionSectionText {
	font-size: 14px;
	color: #aabbcc;
	line-height: 1.8;
}

.missionList {
	list-style: none;
	padding: 0;
	margin: 0;
}

.missionList li {
	font-size: 14px;
	color: #aabbcc;
	line-height: 1.6;
	padding: 6px 0;
	padding-left: 28px;
	position: relative;
}

.missionList li::before {
	content: '';
	position: absolute;
	left: 0;
	top: 10px;
	width: 16px;
	height: 16px;
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='rgb(3,149,211)' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M22 11.08V12a10 10 0 1 1-5.93-9.14'/%3E%3Cpolyline points='22 4 12 14.01 9 11.01'/%3E%3C/svg%3E");
	background-size: cover;
}

/* ============================================
   Company Stats & Mission - 移动端适配
   ============================================ */
@media (max-width: 1199px) {
	.companyInner { width: 100%; padding: 0 32px; }
	.companyLeft { width: 100%; }
	.companyRight { width: 100%; }
}

@media (max-width: 900px) {
	.companyInner { flex-direction: column; gap: 36px; }
	.companyRight { width: 100%; }
	.missionBox { padding: 32px 28px; text-align: center; }
	.missionList li { text-align: left; }
	.missionList { display: inline-block; text-align: left; }
	.companyText { text-align: center; }
}

@media (max-width: 768px) {
	.companyBox { padding: 50px 0 60px; }
	.companyInner { padding: 0 20px; }
	.companyTitle { font-size: 24px; }
	.companyText { font-size: 14px; }
	.companyStatNum { font-size: 30px; }
	.companyStatUnit { font-size: 16px; }
	.companyGrid { gap: 12px; }
}

@media (max-width: 430px) {
	.companyTitle { font-size: 20px; }
	.companyStatItem { padding: 18px 14px; }
	.companyStatNum { font-size: 26px; }
	.missionBox { padding: 24px 20px; }
	.missionSectionTitle { font-size: 16px; }
}


/* ============================================
   Why Seigure栏
   深色背景 + 4列图标卡片，参考CET风格
   ============================================ */
.whySeigureBox {
	width: 100%;
	background: #ffffff;
	padding: 60px 0 70px;
}

.whySeigureInner {
	width: 1000px;
	margin: 0 auto;
}

.whySeigureTitle {
	font-size: 30px;
	font-weight: 700;
	color: #1a1a1a;
	text-align: center;
	margin-bottom: 50px;
}

/* 4列网格 */
.whySeigureGrid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 20px;
}

.whySeigureItem {
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
}

/* 圆形图标背景 */
.whySeigureIcon {
	width: 70px;
	height: 70px;
	border-radius: 50%;
	background: rgba(3,149,211,0.12);
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 20px;
	flex-shrink: 0;
}

.whySeigureItemTitle {
	font-size: 16px;
	font-weight: 700;
	color: #1a1a1a;
	margin-bottom: 8px;
}

.whySeigureItemText {
	font-size: 14px;
	color: #555555;
	line-height: 1.5;
}

/* ============================================
   Why Seigure - 移动端适配
   ============================================ */
@media (max-width: 1199px) {
	.whySeigureInner { width: 100%; padding: 0 32px; }
}

@media (max-width: 768px) {
	.whySeigureBox { padding: 50px 0 60px; }
	.whySeigureInner { padding: 0 20px; }
	.whySeigureTitle { font-size: 24px; margin-bottom: 36px; }
	.whySeigureGrid {
		grid-template-columns: repeat(2, 1fr);
		gap: 32px 16px;
	}
	.whySeigureIcon { width: 60px; height: 60px; }
	.whySeigureItemTitle { font-size: 15px; }
}

@media (max-width: 430px) {
	.whySeigureGrid { grid-template-columns: repeat(2, 1fr); gap: 24px 12px; }
	.whySeigureTitle { font-size: 20px; }
	.whySeigureIcon { width: 52px; height: 52px; }
}


/* ============================================
   Ready to Get Started栏
   ============================================ */
.readyBox {
	width: 100%;
	background: #f3f3f3;
	padding: 70px 0 80px;
}

.readyInner {
	width: 1000px;
	margin: 0 auto;
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
}

.readyTitle {
	font-size: 34px;
	font-weight: 700;
	color: #1a1a2e;
	margin-bottom: 18px;
}

.readySub {
	font-size: 16px;
	color: #555555;
	line-height: 1.7;
	max-width: 580px;
	margin-bottom: 36px;
}

.readyBtns {
	display: flex;
	align-items: center;
	gap: 16px;
}

.readyBtn1 {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	background: rgb(3,149,211);
	color: #ffffff;
	font-size: 15px;
	font-weight: 600;
	padding: 14px 36px;
	border-radius: 999px;
	text-decoration: none;
	transition: background 0.2s ease;
}

.readyBtn1:hover {
	background: rgb(2,120,170);
	color: #ffffff;
}

.readyBtn2 {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	background: #ffffff;
	color: #333333;
	font-size: 15px;
	font-weight: 600;
	padding: 14px 36px;
	border-radius: 999px;
	border: 1px solid #dddddd;
	text-decoration: none;
	transition: background 0.2s ease, border-color 0.2s ease;
}

.readyBtn2:hover {
	background: #f0f0f0;
	border-color: #bbbbbb;
	color: #333333;
}

/* ============================================
   Ready to Get Started - 移动端适配
   ============================================ */
@media (max-width: 1199px) {
	.readyInner { width: 100%; padding: 0 32px; }
}

@media (max-width: 768px) {
	.readyBox { padding: 50px 0 60px; }
	.readyInner { padding: 0 20px; }
	.readyTitle { font-size: 26px; }
	.readySub { font-size: 14px; }
	.readyBtns { flex-wrap: wrap; justify-content: center; gap: 12px; }
	.readyBtn1, .readyBtn2 { font-size: 14px; padding: 12px 28px; }
}

@media (max-width: 430px) {
	.readyTitle { font-size: 22px; }
	.readyBtns { flex-direction: column; width: 100%; }
	.readyBtn1, .readyBtn2 { width: 100%; font-size: 14px; }
}
