/* DK Advantage Page Styles */

/* ========== Base & Variables ========== */
.page-dk-advantage {
	--lab-green: #009b4c;
	--lab-green-dark: #006b35;
	--lab-green-light: #f0faf4;
	--lab-bg-soft: #f5faf7;
	--lab-text: #1f2937;
	--lab-muted: #5b6472;
	--lab-border: #e5f0ea;
}

/* ========== Hero2 Section (左文字 + 右图片 双栏) ========== */
.lab-hero2 {
	background: var(--lab-bg-soft);
	padding: 60px 0 80px;
}

.lab-hero2__inner {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 60px;
	align-items: center;
}

.lab-hero2__text {
	position: relative;
}

.lab-hero2__title {
	position: relative;
	font-size: 38px;
	font-weight: 700;
	color: var(--lab-text);
	line-height: 1.35;
	margin: 0 0 24px;
	padding-left: 16px;
	display: inline-block;
}

.lab-hero2__title-bar {
	position: absolute;
	left: 0;
	top: 6px;
	bottom: 6px;
	width: 6px;
	background: linear-gradient(180deg, var(--lab-green) 0%, var(--lab-green-dark) 100%);
	border-radius: 3px;
}

.lab-hero2__desc {
	font-size: 16px;
	line-height: 1.85;
	color: var(--lab-muted);
	margin: 0 0 36px;
	max-width: 620px;
}

.lab-hero2__btn {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	padding: 16px 36px;
	background: var(--lab-green);
	color: #fff;
	font-size: 16px;
	font-weight: 600;
	border-radius: 50px;
	text-decoration: none;
	transition: all 0.3s ease;
	box-shadow: 0 6px 20px rgba(0, 155, 76, 0.25);
}

.lab-hero2__btn:hover {
	transform: translateY(-2px);
	background: var(--lab-green-dark);
	box-shadow: 0 10px 28px rgba(0, 107, 53, 0.35);
	color: #fff;
}

.lab-hero2__image {
	position: relative;
	overflow: hidden;
	border-radius: 16px;
	box-shadow: 0 16px 48px rgba(0, 107, 53, 0.15);
}

.lab-hero2__image img {
	width: 100%;
	height: auto;
	display: block;
	transition: transform 0.6s ease;
}

.lab-hero2__image:hover img {
	transform: scale(1.03);
}

/* ========== Section Header ========== */
.lab-section-header {
	text-align: center;
	margin-bottom: 56px;
}

.lab-section-title {
	font-size: 36px;
	font-weight: 700;
	color: var(--lab-text);
	margin: 0 0 16px;
	line-height: 1.3;
}

.lab-section-divider {
	width: 60px;
	height: 4px;
	background: var(--lab-green);
	margin: 0 auto 24px;
	border-radius: 2px;
}

.lab-section-subtitle {
	font-size: 16px;
	color: var(--lab-muted);
	line-height: 1.7;
	margin: 0 auto;
	max-width: 680px;
}

/* ========== Trust Grid Section ========== */
.lab-trust {
	padding: 80px 0;
	background: #fff;
}

.lab-feature-grid {
	display: grid;
	grid-template-columns: repeat(6, 1fr);
	gap: 24px;
	margin-bottom: 24px;
}

.lab-feature-grid--second {
	margin-bottom: 0;
}

.lab-feature-item {
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
	padding: 32px 20px;
	background: #fff;
	border-radius: 12px;
	box-shadow: 0 4px 20px rgba(0, 107, 53, 0.08);
	transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.lab-feature-item:hover {
	transform: translateY(-4px);
	box-shadow: 0 8px 28px rgba(0, 107, 53, 0.15);
}

.lab-feature-icon {
	width: 72px;
	height: 72px;
	border-radius: 50%;
	background: linear-gradient(135deg, var(--lab-green) 0%, var(--lab-green-dark) 100%);
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 16px;
	box-shadow: inset 0 2px 6px rgba(255, 255, 255, 0.2);
}

.lab-feature-icon i {
	font-size: 30px;
	color: #fff;
}

.lab-feature-title {
	font-size: 15px;
	font-weight: 600;
	color: var(--lab-text);
	line-height: 1.4;
}

/* ========== VS Section ========== */
.lab-vs {
	padding: 80px 0;
	background: var(--lab-green-light);
}

.lab-vs-layout {
	display: grid;
	grid-template-columns: 1fr auto 1fr;
	gap: 48px;
	align-items: stretch;
	margin-bottom: 48px;
}

.lab-vs-left {
	background: linear-gradient(135deg, var(--lab-green) 0%, var(--lab-green-dark) 100%);
	color: #fff;
	padding: 40px;
	border-radius: 16px;
	box-shadow: 0 12px 32px rgba(0, 107, 53, 0.25);
}

.lab-vs-right {
	background: #fff;
	color: var(--lab-text);
	padding: 40px;
	border-radius: 16px;
	box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

.lab-vs-title {
	font-size: 22px;
	font-weight: 700;
	margin: 0 0 24px;
}

.lab-vs-left .lab-vs-title {
	color: #fff;
}

.lab-vs-right .lab-vs-title {
	color: var(--lab-text);
}

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

.lab-vs-list li {
	display: flex;
	align-items: flex-start;
	gap: 12px;
	margin-bottom: 16px;
	font-size: 15px;
	line-height: 1.7;
}

.lab-vs-list li:last-child {
	margin-bottom: 0;
}

.lab-vs-list li i {
	flex-shrink: 0;
	margin-top: 4px;
}

.lab-vs-list li span {
	flex: 1;
}

.lab-vs-left .lab-vs-list li {
	color: rgba(255, 255, 255, 0.95);
}

.lab-vs-left .lab-vs-list li i {
	color: #fff;
	font-size: 14px;
}

.lab-vs-right .lab-vs-list li {
	color: var(--lab-text);
}

.lab-vs-right .lab-vs-list li i {
	color: var(--lab-green);
	font-size: 8px;
	margin-top: 9px;
}

.lab-vs-badge {
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 40px;
	font-weight: 900;
	color: #fff;
	font-style: italic;
	background: linear-gradient(135deg, #ff6b35 0%, #f7931e 50%, #e74c3c 100%);
	width: 96px;
	height: 96px;
	border-radius: 50%;
	box-shadow: 0 8px 24px rgba(231, 76, 60, 0.4);
	align-self: center;
	transform: rotate(-10deg);
	letter-spacing: 2px;
}

.lab-vs-tags {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 24px;
}

.lab-vs-tag {
	display: flex;
	align-items: center;
	gap: 12px;
	padding: 20px 24px;
	background: #fff;
	border-radius: 12px;
	box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
}

.lab-vs-tag-icon {
	width: 32px;
	height: 32px;
	border-radius: 50%;
	background: var(--lab-green);
	color: #fff;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 14px;
	flex-shrink: 0;
}

.lab-vs-tag-icon i {
	font-family: 'Font Awesome 6 Free';
	font-weight: 900;
	font-size: 14px;
	color: #fff;
	font-style: normal;
	line-height: 1;
}

.lab-vs-tag-text {
	font-size: 15px;
	font-weight: 600;
	color: var(--lab-text);
}

/* ========== Process Section ========== */
.lab-process {
	padding: 80px 0;
	background: #fff;
}

.lab-process-grid {
	display: grid;
	grid-template-columns: repeat(6, 1fr);
	gap: 16px;
}

.lab-process-item {
	position: relative;
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
}

.lab-process-icon {
	width: 80px;
	height: 80px;
	border-radius: 50%;
	background: linear-gradient(135deg, var(--lab-green) 0%, var(--lab-green-dark) 100%);
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 16px;
	box-shadow: inset 0 2px 6px rgba(255, 255, 255, 0.2);
	transition: transform 0.3s ease;
}

.lab-process-icon i {
	font-size: 30px;
	color: #fff;
}

.lab-process-item:hover .lab-process-icon {
	transform: scale(1.08);
}

.lab-process-title {
	font-size: 15px;
	font-weight: 600;
	color: var(--lab-text);
	line-height: 1.4;
}

.lab-process-arrow {
	position: absolute;
	right: -8px;
	top: 40px;
	color: var(--lab-green);
	font-size: 22px;
	font-weight: bold;
}

/* ========== Capability List Section ========== */
.lab-capability {
	padding: 80px 0;
	background: var(--lab-green-light);
}

.lab-capability-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 64px;
	max-width: 900px;
	margin: 0 auto;
}

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

.lab-capability-list li {
	display: flex;
	align-items: flex-start;
	gap: 14px;
	padding: 12px 16px;
	margin-bottom: 0;
	font-size: 15px;
	color: var(--lab-text);
	line-height: 1.6;
	transition: background 0.2s ease;
}

/* 奇偶行斑马纹（淡蓝紫色，对齐设计图） */
.lab-capability-list li:nth-child(odd) {
	background: #dce8df;
}

.lab-capability-list li:nth-child(even) {
	background: #edf2ee;
}

.lab-capability-list li i {
	margin-top: 6px;
	font-size: 10px;
	color: var(--lab-green);
	flex-shrink: 0;
	line-height: 1;
}

.lab-capability-list li span {
	flex: 1;
}

/* ========== CTA Section ========== */
.lab-cta {
	padding: 80px 0;
	background: linear-gradient(180deg, #e8f4ed 0%, #e0ece5 100%);
}

.lab-cta__inner {
	text-align: center;
	max-width: 820px;
	margin: 0 auto;
}

.lab-cta__title {
	font-size: 30px !important;
	font-weight: 700 !important;
	color: #111827 !important;
	margin: 0 0 20px !important;
	line-height: 1.4 !important;
}

.lab-cta__desc {
	font-size: 16px !important;
	line-height: 1.8 !important;
	color: #6b7280 !important;
	margin: 0 0 40px !important;
	font-weight: 400 !important;
}

.lab-cta__btn {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	padding: 18px 48px;
	background: linear-gradient(135deg, var(--lab-green) 0%, var(--lab-green-dark) 100%);
	color: #fff;
	font-size: 17px;
	font-weight: 600;
	border-radius: 50px;
	text-decoration: none;
	transition: all 0.3s ease;
	box-shadow: 0 10px 28px rgba(0, 155, 76, 0.3);
}

.lab-cta__btn:hover {
	transform: translateY(-2px);
	box-shadow: 0 14px 36px rgba(0, 107, 53, 0.4);
	color: #fff;
}

/* ========== Responsive Styles ========== */
@media (max-width: 1199px) {
	.lab-hero2__inner {
		gap: 40px;
	}

	.lab-hero2__title {
		font-size: 32px;
	}

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

	.lab-vs-layout {
		grid-template-columns: 1fr;
		gap: 32px;
	}

	.lab-vs-badge {
		width: 80px;
		height: 80px;
		font-size: 32px;
		transform: rotate(0);
	}

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

	.lab-process-arrow {
		display: none;
	}
}

@media (max-width: 991px) {
	.lab-hero2 {
		padding: 48px 0 56px;
	}

	.lab-hero2__inner {
		grid-template-columns: 1fr;
		gap: 0;
	}

	.lab-hero2__image {
		display: none;
	}

	.lab-hero2__title {
		font-size: 28px;
	}

	.lab-section-title {
		font-size: 28px;
	}

	.lab-vs-tags {
		grid-template-columns: repeat(2, 1fr);
	}

	.lab-capability-grid {
		grid-template-columns: 1fr;
		gap: 32px;
	}
}

@media (max-width: 767px) {
	.lab-hero2 {
		padding: 32px 0 40px;
	}

	.lab-hero2__title {
		font-size: 24px;
	}

	.lab-hero2__desc {
		font-size: 14px;
	}

	.lab-section-title {
		font-size: 22px;
	}

	.lab-feature-grid {
		grid-template-columns: repeat(2, 1fr);
		gap: 16px;
	}

	.lab-feature-item {
		padding: 24px 12px;
	}

	.lab-feature-icon {
		width: 60px;
		height: 60px;
	}

	.lab-feature-icon i {
		font-size: 24px;
	}

	.lab-process-grid {
		grid-template-columns: repeat(2, 1fr);
		gap: 24px;
	}

	.lab-process-icon {
		width: 68px;
		height: 68px;
	}

	.lab-process-icon i {
		font-size: 24px;
	}

	.lab-process-arrow {
		display: none;
	}

	.lab-vs-left,
	.lab-vs-right {
		padding: 24px;
	}

	.lab-vs-tags {
		grid-template-columns: 1fr;
	}

	.lab-cta {
		padding: 56px 0;
	}

	.lab-cta__title {
		font-size: 22px;
		color: #111827;
	}

	.lab-cta__desc {
		font-size: 14px;
		color: #6b7280;
	}

	.lab-cta__btn {
		padding: 14px 36px;
		font-size: 15px;
	}
}
