/* ============================================
   Yunzi Theme - Custom Styles
   Based on design reference ai_studio_code (6).html
   Color: Navy #0A192F + Gold #C19D68
   ============================================ */

/* --- CSS Custom Properties --- */
:root {
	--brand-900: #0A192F;
	--brand-800: #112240;
	--brand-600: #2563EB;
	--brand-gold: #C19D68;
	--surface: #F8F9FA;
}

/* --- Base Resets --- */
*,
*::before,
*::after {
	box-sizing: border-box;
}

html {
	scroll-behavior: smooth;
}

body {
	-webkit-font-smoothing: antialiased;
	overflow-x: hidden;
}

/* ========================================
   Override WordPress block layout
   (WP adds is-layout-flow/constrained which
   breaks our custom grid/flex layouts)
   ======================================== */
.service-matrix-grid,
.service-matrix-grid.is-layout-flow,
.service-matrix-grid.wp-block-group-is-layout-flow {
	display: grid !important;
	grid-template-columns: repeat(7, 1fr);
	gap: 1rem;
}

.showcase-grid,
.showcase-grid.is-layout-flow,
.showcase-grid.wp-block-group-is-layout-flow {
	display: grid !important;
	grid-template-columns: repeat(2, 1fr);
	gap: 2.5rem;
}

.consulting-accordion,
.consulting-accordion.is-layout-flow,
.consulting-accordion.wp-block-group-is-layout-flow {
	display: flex !important;
	gap: 1rem;
	width: 100%;
	height: 500px;
}

.senior-grid,
.senior-grid.is-layout-flow,
.senior-grid.wp-block-group-is-layout-flow {
	display: grid !important;
	grid-template-columns: repeat(4, 1fr);
	gap: 2rem;
}

.client-grid,
.client-grid.is-layout-flow,
.client-grid.wp-block-group-is-layout-flow {
	display: grid !important;
	grid-template-columns: repeat(6, 1fr);
	gap: 1rem;
	gap-row: 3rem;
	align-items: center;
}

.footer-grid,
.footer-grid.is-layout-flow,
.footer-grid.wp-block-group-is-layout-flow {
	display: grid !important;
	grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
	gap: 3rem;
	padding-bottom: 4rem;
	border-bottom: 1px solid #1e293b;
}

.activity-layout,
.activity-layout.is-layout-flow,
.activity-layout.wp-block-group-is-layout-flow {
	display: flex !important;
	gap: 2.5rem;
}

.activity-tabs {
	width: 30%;
	flex-shrink: 0;
	display: flex !important;
	flex-direction: column;
	gap: 0.5rem;
	border-right: 1px solid #e5e7eb;
	padding-right: 1.5rem;
}

.activity-list {
	width: 70%;
	position: relative;
}

/* Make specific WP containers flex/grid override */
.hero-carousel .swiper {
	height: 100%;
	width: 100%;
}

.hero-carousel .swiper-slide {
	overflow: hidden;
}

/* --- Section Title Decorator --- */
.section-label {
	font-family: 'Inter', sans-serif;
	font-size: 0.875rem;
	font-weight: 700;
	color: var(--brand-gold);
	letter-spacing: 0.2em;
	text-transform: uppercase;
	display: block;
	text-align: center;
	margin-bottom: 0.75rem;
}

/* Section h2 spacing — title to content gap */
[class*="-section"] .wp-block-heading,
[class*="enterprise-"] .wp-block-heading {
	margin-bottom: 2.5rem;
}

.section-label-line {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 0.75rem;
	margin-bottom: 1rem;
}

.section-label-line::before,
.section-label-line::after {
	content: '';
	width: 2rem;
	height: 2px;
	background: var(--brand-gold);
}

/* ========================================
   1. Header - Fixed Navigation
   ======================================== */
.site-header {
	position: fixed;
	top: 0;
	width: 100%;
	z-index: 50;
	background: #fff;
	border-bottom: 1px solid #f1f5f9;
	transition: box-shadow 0.3s;
}

.site-header.scrolled {
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.site-header .wp-block-group.alignwide {
	max-width: 1400px;
	margin: 0 auto;
}

/* ---- Top-level navigation container ---- */

/* ---- Top-level menu items (<li>) ---- */
.site-header .wp-block-navigation__container > .wp-block-navigation-item {
	position: relative;
	display: flex !important;
	align-items: stretch !important;
}

/* The <a> link inside top-level items (class: wp-block-navigation-item__content) */
.site-header .wp-block-navigation__container > .wp-block-navigation-item > .wp-block-navigation-item__content {
	position: relative;
	display: flex !important;
	align-items: center !important;
	font-size: 0.9375rem;
	font-weight: 500;
	color: #1e293b !important;
	padding: 1.25rem 0.85rem;
	transition: color 0.3s;
	white-space: nowrap;
	border-bottom: 3px solid transparent;
	margin-bottom: -3px;
}

/* The toggle <button> next to submenu links (arrow) */
.site-header .wp-block-navigation__container > .wp-block-navigation-submenu > .wp-block-navigation-submenu__toggle {
	display: flex !important;
	align-items: center !important;
	padding: 1.25rem 0.25rem 1.25rem 0;
	background: none;
	border: none;
	border-bottom: 3px solid transparent;
	margin-bottom: -3px;
	color: #1e293b;
}

.site-header .wp-block-navigation__container > .wp-block-navigation-submenu > .wp-block-navigation-submenu__toggle svg {
	width: 12px;
	height: 12px;
	opacity: 0.35;
	transition: transform 0.3s, opacity 0.3s;
}

/* Hover: gold bottom border + color change */
.site-header .wp-block-navigation__container > .wp-block-navigation-item:hover > .wp-block-navigation-item__content,
.site-header .wp-block-navigation__container > .wp-block-navigation-submenu:hover > .wp-block-navigation-submenu__toggle {
	color: var(--brand-gold) !important;
	border-bottom-color: var(--brand-gold);
}

.site-header .wp-block-navigation__container > .wp-block-navigation-submenu:hover > .wp-block-navigation-submenu__toggle svg {
	transform: rotate(180deg);
	opacity: 0.7;
}

/* ---- Dropdown panel (first level) ---- */
/* Override WordPress default: height:0, width:0, overflow:hidden */
.site-header .wp-block-navigation__container > .wp-block-navigation-item > .wp-block-navigation__submenu-container,
.site-header .wp-block-navigation__container > .has-child > .wp-block-navigation__submenu-container {
	position: absolute !important;
	top: 100% !important;
	left: auto !important;
	right: auto !important;
	min-width: 280px !important;
	width: auto !important;
	height: auto !important;
	overflow: visible !important;
	background: #fff;
	border-top: 3px solid var(--brand-gold);
	border-radius: 0 0 0.75rem 0.75rem;
	box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1), 0 0 0 1px rgba(0, 0, 0, 0.03);
	padding: 0.75rem 0;
	opacity: 0;
	visibility: hidden;
	transform: translateY(4px);
	transition: opacity 0.3s cubic-bezier(0.16, 1, 0.3, 1),
	            visibility 0.3s,
	            transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
	z-index: 100;
	pointer-events: none;
}

/* Show dropdown on hover */
.site-header .wp-block-navigation__container > .wp-block-navigation-item:hover > .wp-block-navigation__submenu-container,
.site-header .wp-block-navigation__container > .has-child:not(.open-on-click):hover > .wp-block-navigation__submenu-container {
	opacity: 1 !important;
	visibility: visible !important;
	transform: translateY(0) !important;
	pointer-events: auto !important;
}

/* ---- Dropdown items ---- */
.site-header .wp-block-navigation__submenu-container > .wp-block-navigation-item > .wp-block-navigation-item__content {
	display: flex !important;
	align-items: center !important;
	padding: 0.6rem 1.5rem !important;
	font-size: 0.875rem !important;
	font-weight: 400 !important;
	color: #374151 !important;
	transition: all 0.2s !important;
	border-left: 3px solid transparent;
	white-space: nowrap;
	width: 100%;
}

.site-header .wp-block-navigation__submenu-container > .wp-block-navigation-item:hover > .wp-block-navigation-item__content {
	color: var(--brand-900) !important;
	background: linear-gradient(90deg, rgba(193, 157, 104, 0.06), transparent) !important;
	border-left-color: var(--brand-gold);
}

/* ---- Third-level submenu (fly-out right) ---- */
/* The toggle button inside dropdown for nested submenus */
.site-header .wp-block-navigation__submenu-container > .wp-block-navigation-submenu > .wp-block-navigation-submenu__toggle {
	display: flex !important;
	align-items: center !important;
	padding: 0.6rem 1rem 0.6rem 0 !important;
	background: none;
	border: none;
	color: #374151;
}

.site-header .wp-block-navigation__submenu-container > .wp-block-navigation-submenu > .wp-block-navigation-submenu__toggle svg {
	width: 10px;
	height: 10px;
	opacity: 0.3;
	transform: rotate(-90deg);
	transition: transform 0.2s, opacity 0.2s;
}

.site-header .wp-block-navigation__submenu-container > .wp-block-navigation-submenu:hover > .wp-block-navigation-submenu__toggle svg {
	transform: rotate(-90deg) scale(1.1);
	opacity: 0.7;
}

/* Third-level dropdown */
.site-header .wp-block-navigation__submenu-container > .wp-block-navigation-submenu > .wp-block-navigation__submenu-container {
	position: absolute !important;
	top: -0.5rem !important;
	left: 100% !important;
	min-width: 240px !important;
	width: auto !important;
	height: auto !important;
	overflow: visible !important;
	background: #fff;
	border-top: 3px solid var(--brand-gold);
	border-radius: 0.75rem;
	box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1), 0 0 0 1px rgba(0, 0, 0, 0.03);
	padding: 0.5rem 0;
	opacity: 0;
	visibility: hidden;
	transform: translateX(4px);
	transition: opacity 0.3s cubic-bezier(0.16, 1, 0.3, 1),
	            visibility 0.3s,
	            transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
	z-index: 101;
	pointer-events: none;
}

.site-header .wp-block-navigation__submenu-container > .wp-block-navigation-submenu:hover > .wp-block-navigation__submenu-container {
	opacity: 1 !important;
	visibility: visible !important;
	transform: translateX(0) !important;
	pointer-events: auto !important;
}

.site-header .wp-block-navigation__submenu-container > .wp-block-navigation-submenu > .wp-block-navigation__submenu-container > .wp-block-navigation-item > .wp-block-navigation-item__content {
	padding: 0.5rem 1.25rem !important;
	font-size: 0.8125rem !important;
	color: #475569 !important;
}

/* ---- Desktop: show nav inline, hide hamburger ---- */
@media (min-width: 782px) {
	.site-header .wp-block-navigation__responsive-container-open {
		display: none !important;
	}

	/* Unwrap all overlay layers */
	.site-header .wp-block-navigation__responsive-container {
		display: block !important;
		position: static !important;
		background: none !important;
		padding: 0 !important;
		overflow: visible !important;
		bottom: auto !important;
		left: auto !important;
		right: auto !important;
		top: auto !important;
		z-index: auto !important;
	}

	.site-header .wp-block-navigation__responsive-close {
		display: block !important;
		position: static !important;
		padding: 0 !important;
		overflow: visible !important;
	}

	.site-header .wp-block-navigation__responsive-dialog {
		display: block !important;
		position: static !important;
		padding: 0 !important;
		overflow: visible !important;
	}

	.site-header .wp-block-navigation__responsive-container-close {
		display: none !important;
	}

	.site-header .wp-block-navigation__responsive-container-content {
		display: block !important;
		padding: 0 !important;
		overflow: visible !important;
	}

	.site-header .wp-block-navigation__container {
		display: flex !important;
		flex-direction: row !important;
		flex-wrap: nowrap !important;
		align-items: stretch !important;
		justify-content: flex-end !important;
		gap: 0 !important;
	}
}

/* ---- CTA button (在线报名) ---- */
.site-header .wp-block-button__link {
	border-radius: 0.375rem !important;
	transition: all 0.3s;
}

.site-header .wp-block-button__link:hover {
	transform: translateY(-1px);
	box-shadow: 0 4px 12px rgba(10, 25, 47, 0.2);
}

/* ========================================
   2. Hero Carousel (Swiper)
   ======================================== */
.hero-carousel {
	position: relative;
	height: 85vh;
	min-height: 500px;
	width: 100%;
	margin-top: 0;
	padding-top: 80px;
	background: var(--brand-900);
}

.hero-carousel .swiper-slide {
	position: relative;
	overflow: hidden;
}

.hero-carousel .swiper-slide img.hero-bg {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transform: scale(1.05);
	transition: transform 10s ease;
}

.hero-slide-overlay {
	position: absolute;
	inset: 0;
	background: linear-gradient(to right, rgba(10, 25, 47, 0.8), rgba(10, 25, 47, 0.6), transparent);
}

.hero-slide-overlay.darker {
	background: linear-gradient(to right, rgba(10, 25, 47, 0.95), rgba(10, 25, 47, 0.8), transparent);
}

.hero-slide-content {
	position: absolute;
	inset: 0;
	display: flex;
	align-items: center;
}

.hero-text-wrap {
	max-width: 1400px;
	margin: 0 auto;
	padding: 0 1.5rem;
	width: 100%;
	color: #fff;
	border-left: 4px solid var(--brand-gold);
	padding-left: 2rem;
	margin-left: 3rem;
	opacity: 0;
	transform: translateY(30px);
}

.swiper-slide-active .hero-text-wrap {
	animation: heroFadeInUp 1s cubic-bezier(0.23, 1, 0.32, 1) forwards;
}

@keyframes heroFadeInUp {
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

.hero-text-wrap .hero-tag {
	font-family: 'Inter', sans-serif;
	letter-spacing: 0.3em;
	color: var(--brand-gold);
	font-size: 0.875rem;
	font-weight: 700;
	display: block;
	margin-bottom: 1rem;
	text-transform: uppercase;
}

.hero-text-wrap h1,
.hero-text-wrap h2 {
	font-size: clamp(1.875rem, 5vw, 3.75rem);
	font-weight: 700;
	line-height: 1.2;
	letter-spacing: 0;
	margin-bottom: 1.5rem;
	color: #fff;
}

.hero-text-wrap h1 .gradient-text {
	background: linear-gradient(to right, #fff, #9ca3af);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}

.hero-text-wrap .gold-text {
	color: var(--brand-gold);
}

.hero-text-wrap p {
	font-size: 1rem;
	color: #d1d5db;
	font-weight: 300;
	max-width: 40rem;
	line-height: 1.8;
}

.hero-text-wrap .hero-cta {
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	margin-top: 2rem;
	background: var(--brand-gold);
	color: var(--brand-900);
	padding: 0.75rem 1.5rem;
	border-radius: 0.375rem;
	font-weight: 700;
	text-decoration: none;
	transition: background 0.3s;
	box-shadow: 0 10px 15px -3px rgba(193, 157, 104, 0.3);
}

.hero-text-wrap .hero-cta:hover {
	background: #fff;
}

/* Hero process steps */
.hero-steps {
	display: flex;
	align-items: center;
	gap: 0.75rem;
	flex-wrap: wrap;
	margin-top: 2rem;
}

.hero-step {
	background: rgba(255, 255, 255, 0.1);
	backdrop-filter: blur(4px);
	border: 1px solid rgba(255, 255, 255, 0.2);
	padding: 0.75rem 1.5rem;
	border-radius: 0.5rem;
	display: flex;
	align-items: center;
	color: #fff;
	font-size: 0.875rem;
}

.hero-step .step-num {
	color: var(--brand-gold);
	font-weight: 700;
	margin-right: 0.5rem;
	font-family: 'Inter', sans-serif;
}

.hero-step-arrow {
	color: #9ca3af;
	font-size: 1.25rem;
}

/* Swiper pagination */
.hero-carousel .swiper-pagination-bullet {
	background: rgba(255, 255, 255, 0.4);
	width: 12px;
	height: 4px;
	border-radius: 2px;
	transition: all 0.3s;
	opacity: 1;
}

.hero-carousel .swiper-pagination-bullet-active {
	background: var(--brand-gold);
	width: 24px;
}

.hero-carousel .swiper-pagination {
	text-align: right;
	bottom: 2.5rem !important;
	right: 2.5rem;
	left: auto;
	width: auto;
}

/* Hero stat badge */
.hero-stat-badge {
	display: inline-flex;
	align-items: center;
	gap: 1rem;
	margin-bottom: 2rem;
}

.hero-stat-number {
	background: rgba(193, 157, 104, 0.1);
	border: 1px solid rgba(193, 157, 104, 0.3);
	color: var(--brand-gold);
	font-size: clamp(1.875rem, 4vw, 3rem);
	font-weight: 900;
	font-family: 'Inter', sans-serif;
	padding: 0.75rem 1.25rem;
	border-radius: 0.75rem;
	box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.1);
}

/* ========================================
   3. Service Matrix Grid (14 items)
   ======================================== */
.service-matrix {
	padding: 5rem 0;
	background: var(--surface);
}

.service-matrix-item {
	position: relative;
	height: 9rem;
	border-radius: 0.75rem;
	overflow: hidden;
	display: block;
	box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
	border: 1px solid rgba(226, 232, 240, 0.5);
	text-decoration: none;
	cursor: pointer;
}

.service-matrix-item img {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	transform: scale(1);
	transition: transform 0.7s, filter 0.7s, opacity 0.5s;
	filter: grayscale(100%);
	opacity: 0.2;
}

.service-matrix-item:hover img {
	transform: scale(1.1);
	filter: grayscale(0%);
	opacity: 1;
}

.service-matrix-item .service-overlay {
	position: absolute;
	inset: 0;
	background: linear-gradient(to top, rgba(10, 25, 47, 0.9), rgba(10, 25, 47, 0.7), rgba(10, 25, 47, 0.4));
	transition: background 0.5s;
}

.service-matrix-item:hover .service-overlay {
	background: linear-gradient(to top, rgba(10, 25, 47, 0.9), rgba(10, 25, 47, 0.5), rgba(10, 25, 47, 0.2));
}

.service-matrix-item .service-content {
	position: absolute;
	inset: 0;
	padding: 1.25rem;
	display: flex;
	flex-direction: column;
	justify-content: flex-end;
	align-items: center;
	text-align: center;
}

.service-matrix-item .service-icon {
	font-size: 1.75rem;
	color: var(--brand-gold);
	margin-bottom: 0.5rem;
	transition: transform 0.3s;
}

.service-matrix-item:hover .service-icon {
	transform: translateY(-0.5rem) scale(0.9);
}

.service-matrix-item .service-title {
	font-size: 0.8125rem;
	font-weight: 700;
	color: #fff;
	letter-spacing: 0.01em;
	transition: transform 0.3s;
	width: 100%;
}

.service-matrix-item:hover .service-title {
	transform: translateY(-0.25rem);
}

/* ========================================
   4. Showcase (企训平台 + GMP培训联盟)
   ======================================== */
.showcase-section {
	padding: 5rem 0 8rem;
	background: #f8fafc;
	position: relative;
	overflow: hidden;
}

.showcase-section .bg-gradient {
	position: absolute;
	top: 0;
	right: 0;
	width: 50%;
	height: 100%;
	background: linear-gradient(to left, rgba(219, 234, 254, 0.5), transparent);
	pointer-events: none;
}

.showcase-card {
	position: relative;
	border-radius: 1.5rem;
	overflow: hidden;
	background: #fff;
	box-shadow: 0 15px 40px -15px rgba(0, 0, 0, 0.08);
	border: 1px solid #f1f5f9;
	padding: 3rem;
	transition: all 0.7s;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	cursor: pointer;
}

.showcase-card:hover {
	transform: translateY(-0.5rem);
}

.showcase-card.blue-card:hover {
	box-shadow: 0 20px 50px -15px rgba(37, 99, 235, 0.15);
	border-color: rgba(37, 99, 235, 0.2);
}

.showcase-card.gold-card:hover {
	box-shadow: 0 20px 50px -15px rgba(193, 157, 104, 0.15);
	border-color: rgba(193, 157, 104, 0.3);
}

.showcase-card .glow-bg {
	position: absolute;
	top: 0;
	right: 0;
	width: 16rem;
	height: 16rem;
	border-radius: 50%;
	filter: blur(48px);
	transform: translateY(-50%) translateX(25%);
	pointer-events: none;
	transition: transform 0.7s;
}

.showcase-card:hover .glow-bg {
	transform: translateY(-50%) translateX(25%) scale(1.5);
}

.showcase-card.blue-card .glow-bg {
	background: linear-gradient(to bottom right, rgba(37, 99, 235, 0.05), transparent);
}

.showcase-card.gold-card .glow-bg {
	background: linear-gradient(to bottom right, rgba(193, 157, 104, 0.1), transparent);
}

.showcase-card-header {
	display: flex;
	align-items: center;
	gap: 1rem;
	margin-bottom: 1.25rem;
}

.showcase-card-header .icon-box {
	width: 3rem;
	height: 3rem;
	border-radius: 0.75rem;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 1.5rem;
	flex-shrink: 0;
}

.blue-card .icon-box {
	background: rgba(37, 99, 235, 0.1);
	border: 1px solid rgba(37, 99, 235, 0.2);
	color: var(--brand-600);
}

.gold-card .icon-box {
	background: rgba(193, 157, 104, 0.1);
	border: 1px solid rgba(193, 157, 104, 0.3);
	color: var(--brand-gold);
}

.showcase-card-header h2 {
	font-size: clamp(1.5rem, 3vw, 2.25rem);
	font-weight: 700;
	color: #111827;
	letter-spacing: -0.01em;
}

.showcase-tags {
	display: flex;
	flex-wrap: wrap;
	gap: 0.75rem;
	margin-bottom: 1rem;
}

.showcase-tags .tag {
	padding: 0.5rem 1rem;
	background: #f9fafb;
	color: #374151;
	border-radius: 0.5rem;
	font-size: 0.875rem;
	font-weight: 500;
	border: 1px solid #f3f4f6;
	display: flex;
	align-items: center;
	gap: 0.375rem;
	box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
}

.showcase-tags .tag i {
	font-size: 1rem;
	color: var(--brand-600);
}

.gold-card .showcase-tags .tag i {
	color: var(--brand-gold);
}

.showcase-tags .tag-gold {
	background: var(--brand-gold);
	color: #fff;
	font-weight: 700;
	border-color: transparent;
	box-shadow: 0 1px 3px rgba(193, 157, 104, 0.2);
}

.showcase-tags .tag-gold i {
	color: #fff;
}

.showcase-desc {
	color: #6b7280;
	font-size: 0.9375rem;
	line-height: 1.7;
	padding-left: 0.75rem;
	border-left: 3px solid rgba(193, 157, 104, 0.5);
}

.showcase-preview {
	position: relative;
	width: 100%;
	border-radius: 1rem;
	overflow: hidden;
	box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.15);
	border: 1px solid #e5e7eb;
	margin-top: auto;
	background: #f9fafb;
	transition: transform 0.5s;
}

.showcase-card:hover .showcase-preview {
	transform: translateY(-0.5rem);
}

.showcase-preview .browser-bar {
	height: 2rem;
	background: #fff;
	border-bottom: 1px solid #e5e7eb;
	display: flex;
	align-items: center;
	padding: 0 1rem;
	gap: 0.375rem;
}

.showcase-preview .browser-bar .dot {
	width: 0.625rem;
	height: 0.625rem;
	border-radius: 50%;
}

.showcase-preview .browser-bar .dot-red { background: #f87171; }
.showcase-preview .browser-bar .dot-amber { background: #fbbf24; }
.showcase-preview .browser-bar .dot-green { background: #4ade80; }

/* VIP Card */
.vip-card {
	position: relative;
	width: 100%;
	max-width: 360px;
	border-radius: 1.2rem;
	background: linear-gradient(135deg, #0A192F, #112240, #0A192F);
	box-shadow: 0 15px 35px rgba(10, 25, 47, 0.3);
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	padding: 1.5rem;
	transition: transform 0.7s;
	border: 1px solid rgba(255, 255, 255, 0.1);
	overflow: hidden;
	margin: 0 auto;
}

.showcase-card:hover .vip-card {
	transform: scale(1.05);
}

.vip-card .shine {
	position: absolute;
	inset: 0;
	background: linear-gradient(135deg, transparent, rgba(255, 255, 255, 0.1), transparent);
	transform: translateX(-100%);
	transition: transform 1.5s;
	pointer-events: none;
}

.showcase-card:hover .vip-card .shine {
	transform: translateX(100%);
}

.vip-card .vip-header {
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
	position: relative;
	z-index: 1;
}

.vip-card .vip-brand {
	display: flex;
	align-items: center;
	gap: 0.5rem;
}

.vip-card .vip-brand i {
	font-size: 1.5rem;
	color: var(--brand-gold);
}

.vip-card .vip-brand span {
	font-weight: 700;
	color: #fff;
	letter-spacing: 0.1em;
	font-size: 0.875rem;
}

.vip-card .vip-brand .gold {
	color: var(--brand-gold);
	font-family: 'Inter', sans-serif;
}

.vip-card .vip-wifi {
	font-size: 1.25rem;
	color: rgba(193, 157, 104, 0.5);
	transform: rotate(90deg);
}

.vip-card .vip-body {
	position: relative;
	z-index: 1;
	margin-top: auto;
}

.vip-card .vip-subtitle {
	color: rgba(193, 157, 104, 0.7);
	font-family: 'Inter', sans-serif;
	font-size: 0.625rem;
	letter-spacing: 0.15em;
	text-transform: uppercase;
	margin-bottom: 0.25rem;
}

.vip-card .vip-title {
	color: #fff;
	font-size: 1.25rem;
	font-weight: 700;
	letter-spacing: 0.15em;
	font-family: 'Inter', sans-serif;
}

/* ========================================
   5. Activity Schedule (Tabbed)
   ======================================== */
.activity-section {
	padding: 5rem 0 6rem;
	background: var(--surface);
	border-top: 1px solid #e5e7eb;
	border-bottom: 1px solid #e5e7eb;
	position: relative;
}

.activity-tab-btn {
	cursor: pointer;
	padding: 1.25rem;
	border-left: 4px solid transparent;
	display: flex;
	align-items: center;
	gap: 1rem;
	border-radius: 0.75rem;
	transition: all 0.3s;
	background: transparent;
	border-top: none;
	border-right: none;
	border-bottom: none;
	width: 100%;
	text-align: left;
	font-family: inherit;
}

.activity-tab-btn.active {
	background-color: #fff;
	border-left-color: var(--brand-gold);
	box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
}

.activity-tab-btn .tab-icon {
	font-size: 1.5rem;
	color: #9ca3af;
	transition: color 0.3s;
}

.activity-tab-btn.active .tab-icon {
	color: var(--brand-gold);
}

.activity-tab-btn .tab-title {
	color: #6b7280;
	font-weight: 500;
	font-size: 1.125rem;
	white-space: nowrap;
	transition: all 0.3s;
}

.activity-tab-btn.active .tab-title {
	color: var(--brand-900);
	font-weight: 700;
}

.activity-list .fade-mask {
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 3rem;
	background: linear-gradient(to top, var(--surface), transparent);
	z-index: 1;
	pointer-events: none;
}

.activity-list .scroll-container {
	height: 500px;
	overflow-y: auto;
	padding-right: 1rem;
}

.activity-list .scroll-container::-webkit-scrollbar {
	width: 6px;
}

.activity-list .scroll-container::-webkit-scrollbar-track {
	background: transparent;
}

.activity-list .scroll-container::-webkit-scrollbar-thumb {
	background: #cbd5e1;
	border-radius: 10px;
}

.activity-list .scroll-container::-webkit-scrollbar-thumb:hover {
	background: #94a3b8;
}

.activity-content {
	display: none;
}

.activity-content.active {
	display: block;
}

.activity-card-list {
	background: #fff;
	border-radius: 0.75rem;
	box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
	border: 1px solid #f3f4f6;
}

.activity-card-list .activity-item {
	display: flex;
	align-items: center;
	padding: 1.5rem;
	transition: background 0.2s;
	text-decoration: none;
	color: inherit;
	border-bottom: 1px solid #f3f4f6;
}

.activity-card-list .activity-item:last-child {
	border-bottom: none;
}

.activity-card-list .activity-item:hover {
	background: rgba(219, 234, 254, 0.4);
}

.activity-item .item-date {
	width: 8rem;
	flex-shrink: 0;
}

.activity-item .item-date .date-day {
	color: var(--brand-900);
	font-family: 'Inter', sans-serif;
	font-weight: 900;
	font-size: 1.25rem;
	display: block;
}

.activity-item .item-date .date-year {
	font-size: 0.75rem;
	color: #6b7280;
	font-weight: 500;
}

.activity-item .item-info {
	flex-grow: 1;
	padding-right: 1.5rem;
}

.activity-item .item-info h3 {
	font-size: 1.125rem;
	font-weight: 700;
	color: #111827;
	margin-bottom: 0.25rem;
	transition: color 0.2s;
}

.activity-item:hover .item-info h3 {
	color: var(--brand-600);
}

.activity-item .item-info p {
	font-size: 0.875rem;
	color: #6b7280;
}

.activity-item .item-location {
	flex-shrink: 0;
}

.activity-item .item-location span {
	font-size: 0.75rem;
	font-weight: 500;
	background: #f3f4f6;
	padding: 0.375rem 0.75rem;
	border-radius: 0.375rem;
	color: #4b5563;
	display: inline-flex;
	align-items: center;
	gap: 0.25rem;
}

/* ========================================
   6. Consulting Services Accordion
   ======================================== */
.consulting-section {
	padding: 5rem 0 8rem;
	background: var(--brand-900);
	position: relative;
	overflow: hidden;
}

.consulting-section .dot-pattern {
	position: absolute;
	inset: 0;
	opacity: 0.1;
	background-image: radial-gradient(var(--brand-gold) 1px, transparent 1px);
	background-size: 30px 30px;
}

.consulting-panel {
	position: relative;
	flex: 1;
	transition: flex 0.7s ease-out;
	border-radius: 1rem;
	overflow: hidden;
	box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
	cursor: pointer;
	background: var(--brand-800);
	min-width: 120px;
}

.consulting-panel:hover {
	flex: 2.5;
}

.consulting-panel .panel-bg {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 10s, opacity 0.5s;
	opacity: 0.3;
}

.consulting-panel:hover .panel-bg {
	transform: scale(1.1);
	opacity: 0.7;
}

.consulting-panel .panel-gradient {
	position: absolute;
	inset: 0;
	background: linear-gradient(to top, var(--brand-900), rgba(10, 25, 47, 0.4));
}

.consulting-panel .panel-content {
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	padding: 1.5rem 2rem;
	display: flex;
	flex-direction: column;
	justify-content: flex-end;
}

.consulting-panel .panel-icon-box {
	width: 3.5rem;
	height: 3.5rem;
	background: var(--brand-gold);
	border-radius: 0.75rem;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 1rem;
	box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.2);
	transition: transform 0.5s;
}

.consulting-panel:hover .panel-icon-box {
	transform: translateY(-0.5rem);
}

.consulting-panel .panel-icon-box i {
	color: var(--brand-900);
	font-size: 1.75rem;
}

.consulting-panel .panel-title {
	font-size: clamp(1.25rem, 2vw, 1.875rem);
	font-weight: 700;
	color: #fff;
	white-space: nowrap;
	transition: color 0.3s;
}

.consulting-panel:hover .panel-title {
	color: var(--brand-gold);
}

.consulting-panel .panel-desc {
	overflow: hidden;
	max-height: 0;
	opacity: 0;
	transition: all 0.7s ease-in-out;
	margin-top: 0;
}

.consulting-panel:hover .panel-desc {
	max-height: 16rem;
	opacity: 1;
	margin-top: 0.5rem;
}

.consulting-panel .panel-desc p {
	color: #d1d5db;
	font-size: 0.9375rem;
	line-height: 1.7;
	margin-bottom: 1rem;
}

.consulting-panel .panel-desc .accent-line {
	width: 2.5rem;
	height: 4px;
	background: var(--brand-gold);
	transition: width 1s 0.2s;
}

.consulting-panel:hover .panel-desc .accent-line {
	width: 100%;
}

/* Warning bar */
.warning-bar {
	margin-top: 2.5rem;
	border-radius: 1rem;
	overflow: hidden;
	background: var(--brand-800);
	border: 1px solid rgba(193, 157, 104, 0.1);
	box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
	transition: border-color 0.7s;
}

.warning-bar:hover {
	border-color: rgba(193, 157, 104, 0.3);
}

.warning-bar-inner {
	display: flex;
	align-items: center;
	padding: 2rem 3rem;
	gap: 4rem;
}

.warning-bar-header {
	display: flex;
	align-items: center;
	gap: 1.5rem;
	flex-shrink: 0;
}

.warning-bar-header .warning-icon {
	width: 4rem;
	height: 4rem;
	border-radius: 1rem;
	background: rgba(239, 68, 68, 0.1);
	display: flex;
	align-items: center;
	justify-content: center;
	border: 1px solid rgba(239, 68, 68, 0.2);
	transition: transform 0.5s;
	box-shadow: 0 0 15px rgba(239, 68, 68, 0.2);
}

.warning-bar:hover .warning-icon {
	transform: scale(1.1);
}

.warning-bar-header .warning-icon i {
	color: #ef4444;
	font-size: 1.75rem;
}

.warning-steps {
	display: grid;
	grid-template-columns: repeat(6, 1fr);
	gap: 1rem;
	flex-grow: 1;
	position: relative;
}

.warning-steps::before {
	content: '';
	position: absolute;
	top: 1.25rem;
	left: 1.25rem;
	width: calc(100% - 2.5rem);
	height: 2px;
	background: #374151;
}

.warning-step {
	position: relative;
	z-index: 1;
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	cursor: pointer;
}

.warning-step .step-circle {
	width: 2.5rem;
	height: 2.5rem;
	border-radius: 50%;
	background: var(--brand-900);
	border: 2px solid #4b5563;
	display: flex;
	align-items: center;
	justify-content: center;
	color: #9ca3af;
	font-family: 'Inter', sans-serif;
	font-weight: 700;
	margin-bottom: 1rem;
	transition: all 0.3s;
}

.warning-step:hover .step-circle {
	border-color: var(--brand-gold);
	color: var(--brand-gold);
	box-shadow: 0 0 15px rgba(193, 157, 104, 0.4);
	transform: translateY(-0.25rem);
}

.warning-step:last-child .step-circle {
	background: rgba(193, 157, 104, 0.1);
	border-color: var(--brand-gold);
	color: var(--brand-gold);
	box-shadow: 0 0 15px rgba(193, 157, 104, 0.3);
}

.warning-step .step-label {
	color: #9ca3af;
	font-size: 0.875rem;
	font-weight: 500;
	transition: color 0.3s;
}

.warning-step:hover .step-label {
	color: #fff;
}

.warning-step:last-child .step-label {
	color: var(--brand-gold);
	font-weight: 700;
}

/* ========================================
   7. Expert Marquee
   ======================================== */
.expert-section {
	padding: 5rem 0 8rem;
	background: #fff;
	overflow: hidden;
	position: relative;
}

.marquee-container {
	position: relative;
	width: 100%;
	overflow: hidden;
}

.marquee-container .edge-left,
.marquee-container .edge-right {
	position: absolute;
	top: 0;
	bottom: 0;
	width: 12rem;
	z-index: 1;
	pointer-events: none;
}

.marquee-container .edge-left {
	left: 0;
	background: linear-gradient(to right, #fff, transparent);
}

.marquee-container .edge-right {
	right: 0;
	background: linear-gradient(to left, #fff, transparent);
}

.marquee-track {
	display: flex;
	width: max-content;
}

.marquee-track.left {
	animation: marquee-left var(--marquee-duration, 40s) linear infinite;
}

.marquee-track.right {
	animation: marquee-right var(--marquee-duration, 40s) linear infinite;
	margin-left: -1000px;
}

.marquee-track:hover {
	animation-play-state: paused;
}

@keyframes marquee-left {
	0% { transform: translateX(0); }
	100% { transform: translateX(-50%); }
}

@keyframes marquee-right {
	0% { transform: translateX(-50%); }
	100% { transform: translateX(0); }
}

.marquee-track .marquee-group {
	display: flex;
	gap: 1.5rem;
	padding-right: 1.5rem;
}

.expert-card {
	width: 320px;
	background: var(--surface);
	padding: 1.5rem 2rem;
	border-radius: 1rem;
	border: 1px solid #f1f5f9;
	cursor: pointer;
	box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
	transition: box-shadow 0.5s;
	flex-shrink: 0;
}

.expert-card:hover {
	box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.expert-card .expert-header {
	display: flex;
	align-items: center;
	gap: 1.25rem;
	margin-bottom: 1.25rem;
	padding-bottom: 1.25rem;
	border-bottom: 1px solid #e5e7eb;
}

.expert-card .expert-avatar {
	width: 4rem;
	height: 4rem;
	border-radius: 50%;
	object-fit: cover;
	flex-shrink: 0;
	box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
	filter: grayscale(100%) contrast(1.1);
	transition: all 0.6s;
}

.expert-card:hover .expert-avatar {
	filter: grayscale(0%);
	transform: scale(1.05);
}

.expert-card .expert-name {
	font-weight: 700;
	font-size: 1.125rem;
	color: var(--brand-900);
}

.expert-card .expert-title {
	font-size: 0.8125rem;
	color: var(--brand-gold);
	font-weight: 500;
	margin-top: 0.25rem;
}

.expert-card .expert-desc {
	font-size: 0.8125rem;
	color: #6b7280;
	line-height: 1.7;
}

/* ========================================
   8. Senior Consultants Grid
   ======================================== */
.senior-section {
	padding: 5rem 0;
	background: var(--surface);
	border-top: 1px solid #e5e7eb;
}

.senior-card {
	background: #fff;
	border-radius: 0.75rem;
	padding: 2rem;
	border: 1px solid #f3f4f6;
	text-align: center;
	cursor: pointer;
	transition: box-shadow 0.5s;
}

.senior-card:hover {
	box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.15);
}

.senior-card .senior-avatar {
	width: 6rem;
	height: 6rem;
	border-radius: 50%;
	object-fit: cover;
	margin: 0 auto 1.5rem;
	filter: grayscale(100%) contrast(1.1);
	transition: all 0.6s;
}

.senior-card:hover .senior-avatar {
	filter: grayscale(0%);
	transform: scale(1.1);
}

.senior-card .senior-name {
	font-weight: 700;
	font-size: 1.25rem;
	color: var(--brand-900);
	margin-bottom: 0.5rem;
}

.senior-card .senior-title {
	font-size: 0.875rem;
	color: var(--brand-gold);
	margin-bottom: 1rem;
}

.senior-card .senior-desc {
	font-size: 0.875rem;
	color: #6b7280;
}

/* ========================================
   9. Client Logos
   ======================================== */
.clients-section {
	padding: 5rem 0 6rem;
	background: var(--surface);
	border-top: 1px solid #f3f4f6;
}

.client-name {
	font-size: 1.25rem;
	font-weight: 900;
	color: #d1d5db;
	text-align: center;
	cursor: pointer;
	transition: color 0.3s;
	filter: grayscale(100%);
}

.client-name:hover {
	filter: grayscale(0%);
}

/* ========================================
   Footer
   ======================================== */
.site-footer {
	background: var(--brand-900);
	padding: 5rem 0 2.5rem;
	color: #9ca3af;
	position: relative;
	overflow: hidden;
}

.footer-brand .footer-logo {
	display: flex;
	align-items: center;
	gap: 0.5rem;
	margin-bottom: 1.5rem;
}

.footer-brand .footer-logo i {
	color: var(--brand-gold);
	font-size: 1.75rem;
}

.footer-brand .footer-logo span {
	font-weight: 700;
	font-size: 1.5rem;
	color: #fff;
	letter-spacing: 0.05em;
}

.footer-brand p {
	font-size: 0.875rem;
	line-height: 1.8;
	max-width: 24rem;
	margin-bottom: 2rem;
}

.footer-social {
	display: flex;
	gap: 1rem;
}

.footer-social a {
	width: 2.5rem;
	height: 2.5rem;
	border-radius: 0.25rem;
	background: rgba(255, 255, 255, 0.05);
	display: flex;
	align-items: center;
	justify-content: center;
	border: 1px solid #374151;
	color: #9ca3af;
	font-size: 1.25rem;
	transition: all 0.3s;
}

.footer-social a:hover {
	background: #07C160;
	color: #fff;
	border-color: #07C160;
}

.footer-col h4 {
	color: #fff;
	font-weight: 700;
	font-size: 0.875rem;
	margin-bottom: 1.5rem;
	letter-spacing: 0.15em;
	text-transform: uppercase;
}

.footer-col ul {
	list-style: none;
	padding: 0;
	margin: 0;
}

.footer-col ul li {
	margin-bottom: 0.75rem;
}

.footer-col ul li a {
	color: #9ca3af;
	font-size: 0.875rem;
	text-decoration: none;
	transition: color 0.3s;
}

.footer-col ul li a:hover {
	color: var(--brand-gold);
}

.footer-bottom {
	padding-top: 2rem;
	display: flex;
	justify-content: space-between;
	align-items: center;
	flex-wrap: wrap;
	gap: 1rem;
	font-size: 0.75rem;
	color: #6b7280;
}

.footer-bottom a {
	color: #6b7280;
	text-decoration: none;
	transition: color 0.3s;
}

.footer-bottom a:hover {
	color: #fff;
}

.site-header .wp-block-shortcode,
.site-footer .wp-block-shortcode {
	margin: 0;
}

.site-header .wp-block-shortcode {
	display: flex;
	flex: 0 0 auto;
	align-items: center;
}

.footer-contact-list li {
	display: flex;
	align-items: flex-start;
	gap: 0.75rem;
	color: #9ca3af;
}

.footer-contact-list li i {
	margin-top: 0.2rem;
	color: var(--brand-gold);
}

.footer-contact-list li p {
	margin: 0.25rem 0 0;
	font-size: 0.75rem;
	color: #6b7280;
}

.footer-contact-primary {
	color: #fff !important;
	font-family: 'Inter', sans-serif;
	font-weight: 600;
}

.footer-bottom .wp-block-shortcode {
	display: contents;
}

.footer-bottom p {
	margin: 0;
}

.footer-legal-links {
	display: flex;
	gap: 1.5rem;
	flex-wrap: wrap;
}

.expert-card-link,
.senior-card-link {
	display: block;
	color: inherit;
	text-decoration: none;
}

.yunzi-admin-notice,
.activity-empty {
	padding: 2rem;
	color: #64748b;
	text-align: center;
}

/* ========================================
   Responsive
   ======================================== */
@media (max-width: 1024px) {
	.service-matrix-grid,
	.service-matrix-grid.is-layout-flow {
		grid-template-columns: repeat(4, 1fr) !important;
	}

	.showcase-grid,
	.showcase-grid.is-layout-flow {
		grid-template-columns: 1fr !important;
	}

	.activity-layout,
	.activity-layout.is-layout-flow {
		flex-direction: column !important;
	}

	.activity-tabs {
		width: 100% !important;
		flex-direction: row !important;
		border-right: none !important;
		border-bottom: 1px solid #e5e7eb;
		padding-right: 0 !important;
		padding-bottom: 0.5rem;
		overflow-x: auto;
		-ms-overflow-style: none;
		scrollbar-width: none;
	}

	.activity-tabs::-webkit-scrollbar {
		display: none;
	}

	.activity-tab-btn {
		flex-shrink: 0;
	}

	.activity-list {
		width: 100% !important;
	}

	.consulting-accordion,
	.consulting-accordion.is-layout-flow {
		flex-direction: column !important;
		height: auto !important;
	}

	.consulting-panel {
		min-height: 16rem;
	}

	.consulting-panel .panel-desc {
		max-height: 16rem;
		opacity: 1;
	}

	.senior-grid,
	.senior-grid.is-layout-flow {
		grid-template-columns: repeat(2, 1fr) !important;
	}

	.warning-bar-inner {
		flex-direction: column;
		gap: 2rem;
	}

	.warning-steps {
		grid-template-columns: repeat(3, 1fr);
	}

	.footer-grid,
	.footer-grid.is-layout-flow {
		grid-template-columns: 1fr 1fr 1fr !important;
	}
}

@media (max-width: 768px) {
	.hero-carousel {
		height: 70vh;
	}

	.hero-text-wrap {
		margin-left: 1.5rem;
		padding-left: 1.25rem;
		border-left-width: 3px;
	}

	.hero-text-wrap h1 {
		font-size: 1.875rem;
	}

	.hero-steps {
		gap: 0.5rem;
	}

	.hero-step {
		padding: 0.5rem 1rem;
		font-size: 0.8125rem;
	}

	.service-matrix-grid,
	.service-matrix-grid.is-layout-flow {
		grid-template-columns: repeat(3, 1fr) !important;
		gap: 0.75rem;
	}

	.service-matrix-item {
		height: 7rem;
	}

	.showcase-card {
		padding: 2rem;
	}

	.senior-grid,
	.senior-grid.is-layout-flow {
		grid-template-columns: 1fr !important;
	}

	.client-grid,
	.client-grid.is-layout-flow {
		grid-template-columns: repeat(3, 1fr) !important;
	}

	.warning-steps {
		grid-template-columns: repeat(2, 1fr);
	}

	.footer-grid,
	.footer-grid.is-layout-flow {
		grid-template-columns: 1fr !important;
	}
}

@media (max-width: 480px) {
	.service-matrix-grid,
	.service-matrix-grid.is-layout-flow {
		grid-template-columns: repeat(2, 1fr) !important;
	}

	.client-grid,
	.client-grid.is-layout-flow {
		grid-template-columns: repeat(2, 1fr) !important;
	}

	.expert-card {
		width: 260px;
	}
}

/* --- Reduced Motion --- */
@media (prefers-reduced-motion: reduce) {
	*,
	*::before,
	*::after {
		animation-duration: 0.01ms !important;
		transition-duration: 0.01ms !important;
	}
}

/* ============================================
   Seminar Page - 专题精品班
   ============================================ */
.seminar-hero {
	position: relative;
	overflow: hidden;
	padding: 7.5rem 1.5rem 5.75rem !important;
	background:
		linear-gradient(90deg, rgba(10,25,47,0.96) 0%, rgba(10,25,47,0.9) 47%, rgba(10,25,47,0.72) 100%),
		url('https://images.unsplash.com/photo-1524178232363-1fb2b075b655?auto=format&fit=crop&w=1600&q=80') center/cover no-repeat !important;
}
.seminar-hero::after {
	content: "";
	position: absolute;
	inset: 0;
	pointer-events: none;
	background-image:
		linear-gradient(rgba(255,255,255,0.07) 1px, transparent 1px),
		linear-gradient(90deg, rgba(255,255,255,0.07) 1px, transparent 1px);
	background-size: 72px 72px;
	opacity: 0.16;
}
.seminar-hero-shell {
	position: relative;
	z-index: 1;
	display: grid;
	grid-template-columns: minmax(0, 1.06fr) minmax(22rem, 0.94fr);
	align-items: start;
	gap: 4rem;
	max-width: 1200px;
	min-height: 32rem;
	margin: 0 auto;
}
.seminar-hero-copy {
	max-width: 42rem;
	padding-top: 0.25rem;
}
.seminar-eyebrow {
	display: inline-flex !important;
	align-items: center;
	gap: 0.5rem;
	margin-bottom: 1rem !important;
	color: #f4c77a !important;
}
.seminar-eyebrow::before {
	content: "";
	width: 2rem;
	height: 1px;
	background: currentColor;
}
.seminar-hero h1 {
	max-width: 8em;
	margin: 0;
	color: #fff;
	font-size: 4.25rem;
	font-weight: 800;
	line-height: 1.05;
	letter-spacing: 0;
	text-align: left;
}
.seminar-hero-lead {
	max-width: 41rem;
	margin: 1.5rem 0 0;
	color: #d7e1ee;
	font-size: 1.125rem;
	line-height: 1.85;
}
.seminar-hero-actions,
.seminar-hero-tags {
	display: flex;
	flex-wrap: wrap;
	gap: 0.75rem;
	margin-top: 1.75rem;
}
.seminar-hero-btn,
.seminar-hero-tags span {
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	min-height: 2.75rem;
	border-radius: 0.5rem;
	font-size: 0.875rem;
	text-decoration: none;
}
.seminar-hero-btn {
	padding: 0.75rem 1rem;
	font-weight: 700;
	transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}
.seminar-hero-btn:hover {
	transform: translateY(-1px);
}
.seminar-hero-btn-primary {
	background: #f4c77a;
	color: #0a192f;
	border: 1px solid #f4c77a;
}
.seminar-hero-btn-ghost {
	background: rgba(255,255,255,0.08);
	color: #f8fafc;
	border: 1px solid rgba(255,255,255,0.2);
}
.seminar-hero-tags {
	margin-top: 1.25rem;
}
.seminar-hero-tags span {
	padding: 0.55rem 0.8rem;
	background: rgba(255,255,255,0.09);
	border: 1px solid rgba(255,255,255,0.16);
	color: #d7e1ee;
}
.seminar-hero-tags i,
.seminar-hero-btn i {
	color: currentColor;
	font-size: 1rem;
}
.seminar-hero-panel {
	align-self: start;
	margin-top: 0.85rem;
	background: rgba(248,250,252,0.94);
	border: 1px solid rgba(255,255,255,0.42);
	border-radius: 0.5rem;
	box-shadow: 0 24px 70px rgba(0,0,0,0.28);
	overflow: hidden;
}
.seminar-hero-photo {
	height: 12rem;
	background: #dbe3ee;
}
.seminar-hero-photo img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}
.seminar-hero-panel-body {
	padding: 1.5rem;
}
.seminar-panel-kicker {
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	margin-bottom: 1rem;
	color: var(--brand-900);
	font-size: 0.875rem;
	font-weight: 800;
}
.seminar-panel-kicker i {
	color: var(--brand-gold);
}
.seminar-metric-grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 0.75rem;
}
.seminar-metric-grid div {
	padding: 1rem;
	background: #fff;
	border: 1px solid #e5eaf1;
	border-radius: 0.5rem;
}
.seminar-metric-grid strong,
.seminar-metric-grid span {
	display: block;
}
.seminar-metric-grid strong {
	color: var(--brand-900);
	font-size: 1.75rem;
	line-height: 1;
}
.seminar-metric-grid span {
	margin-top: 0.45rem;
	color: #64748b;
	font-size: 0.8125rem;
}
.seminar-track-list {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 0.5rem;
	margin-top: 0.9rem;
}
.seminar-track-list span {
	padding: 0.55rem 0.45rem;
	background: #eef4ff;
	border: 1px solid #dbe8ff;
	border-radius: 0.5rem;
	color: #1e4f9a;
	font-size: 0.75rem;
	font-weight: 700;
	text-align: center;
}
@media (max-width: 1024px) {
	.seminar-hero-shell {
		grid-template-columns: 1fr;
		gap: 2rem;
		min-height: auto;
	}
	.seminar-hero h1 {
		font-size: 3.25rem;
	}
	.seminar-hero-copy,
	.seminar-hero-panel {
		max-width: 44rem;
	}
	.seminar-hero-panel {
		margin-top: 0;
	}
}
@media (max-width: 640px) {
	body.seminar-page .site-header .wp-block-buttons {
		display: none !important;
	}
	body.seminar-page .site-header .wp-block-navigation__responsive-container-open {
		position: fixed !important;
		top: 0.85rem !important;
		right: auto !important;
		left: min(calc(100vw - 9rem), 20rem) !important;
		display: flex !important;
		align-items: center;
		justify-content: center;
		width: 2.5rem;
		height: 2.5rem;
		padding: 0;
		border: 1px solid #e2e8f0;
		border-radius: 0.5rem;
		background: #fff;
		color: var(--brand-900);
		z-index: 200;
	}
	body.seminar-page .site-header .wp-block-navigation__responsive-container-open svg,
	body.seminar-page .site-header .wp-block-navigation__responsive-container-open path {
		fill: currentColor;
	}
	.seminar-hero {
		padding: 6.25rem 1.25rem 4rem !important;
	}
	.seminar-hero h1 {
		font-size: 2.5rem;
	}
	.seminar-hero-lead {
		font-size: 1rem;
		line-height: 1.75;
	}
	.seminar-hero-actions,
	.seminar-hero-tags {
		flex-direction: column;
	}
	.seminar-hero-btn,
	.seminar-hero-tags span {
		width: 100%;
		justify-content: center;
	}
	.seminar-hero-panel-body {
		padding: 1rem;
	}
	.seminar-track-list {
		grid-template-columns: repeat(2, 1fr);
	}
}

.features-grid { display: grid !important; grid-template-columns: repeat(3, 1fr); gap: 1.75rem; }
.feature-card { background: #fff; border: 1px solid #f1f5f9; border-radius: 0.75rem; padding: 2rem; transition: all 0.3s; }
.feature-card:hover { border-color: var(--brand-gold); box-shadow: 0 8px 30px rgba(0,0,0,0.06); transform: translateY(-2px); }
.feature-icon { width: 3rem; height: 3rem; border-radius: 0.5rem; background: linear-gradient(135deg,rgba(193,157,104,0.1),rgba(37,99,235,0.05)); display: flex; align-items: center; justify-content: center; margin-bottom: 1.25rem; font-size: 1.25rem; color: var(--brand-gold); }
.feature-title { font-size: 1rem; font-weight: 700; color: var(--brand-900); margin-bottom: 0.75rem; }
.feature-desc { font-size: 0.8125rem; line-height: 1.75; color: #64748b; margin: 0; }
.feature-desc strong { color: var(--brand-900); }

.modules-grid { display: grid !important; grid-template-columns: repeat(2, 1fr); gap: 2rem; }
.module-card { background: #fff; border: 1px solid #f1f5f9; border-radius: 0.75rem; padding: 2.5rem; transition: all 0.3s; }
.module-card:hover { box-shadow: 0 8px 30px rgba(0,0,0,0.06); }
.module-icon { font-size: 2rem; color: var(--brand-gold); margin-bottom: 1rem; }
.module-card h3 { font-size: 1.25rem; font-weight: 700; color: var(--brand-900); margin-bottom: 1rem; }
.module-card p { font-size: 0.875rem; line-height: 1.8; color: #64748b; }
.module-tags { display: flex; flex-wrap: wrap; gap: 0.5rem; margin-top: 1.25rem; }
.module-tag { display: inline-flex; align-items: center; gap: 0.35rem; background: #f8fafc; border: 1px solid #e2e8f0; padding: 0.35rem 0.75rem; border-radius: 2rem; font-size: 0.75rem; color: #64748b; }

/* --- Course Tabs (enhanced) --- */
.course-tabs-nav {
	display: flex;
	flex-wrap: wrap;
	gap: 0.5rem;
	margin-bottom: 2.5rem;
	padding: 0.75rem;
	background: #f8fafc;
	border-radius: 1rem;
	border: 1px solid #f1f5f9;
}
.course-tab {
	background: #fff;
	border: 1px solid #e2e8f0;
	padding: 0.5rem 1.25rem;
	font-size: 0.8125rem;
	font-weight: 500;
	color: #64748b;
	cursor: pointer;
	border-radius: 2rem;
	transition: all 0.3s;
	font-family: inherit;
	display: inline-flex;
	align-items: center;
	gap: 0.375rem;
}
.course-tab:hover {
	color: var(--brand-900);
	border-color: #cbd5e1;
	box-shadow: 0 2px 8px rgba(0,0,0,0.06);
	transform: translateY(-1px);
}
.course-tab.active {
	background: var(--brand-900);
	color: #fff;
	border-color: var(--brand-900);
	box-shadow: 0 4px 12px rgba(10,25,47,0.15);
}

/* Tab count badge */
.tc {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 1.375rem;
	height: 1.375rem;
	padding: 0 0.375rem;
	background: #e2e8f0;
	border-radius: 1rem;
	font-size: 0.6875rem;
	font-weight: 700;
	color: #94a3b8;
	transition: all 0.3s;
}
.course-tab:hover .tc { background: #cbd5e1; color: #64748b; }
.course-tab.active .tc { background: rgba(255,255,255,0.2); color: rgba(255,255,255,0.9); }

/* Panel */
.course-panel { display: none; }
.course-panel.active {
	display: block;
	animation: cpFade 0.35s ease;
}
@keyframes cpFade {
	from { opacity: 0; transform: translateY(8px); }
	to { opacity: 1; transform: translateY(0); }
}

/* Panel header */
.panel-hd {
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-bottom: 1.5rem;
	flex-wrap: wrap;
	gap: 0.75rem;
}
.series-title {
	font-size: 1.25rem;
	font-weight: 700;
	color: var(--brand-900);
	margin: 0;
	padding-left: 1rem;
	border-left: 3px solid var(--brand-gold);
}
.course-num {
	font-size: 0.8125rem;
	color: #94a3b8;
	background: #f8fafc;
	padding: 0.375rem 1rem;
	border-radius: 2rem;
	border: 1px solid #f1f5f9;
}

/* Course card */
.course-card {
	background: #fff;
	border-radius: 0.75rem;
	border: 1px solid #e8ecf1;
	overflow: hidden;
	box-shadow: 0 1px 3px rgba(0,0,0,0.04);
}

/* Course table */
.course-table {
	width: 100%;
	border-collapse: collapse;
	counter-reset: ci;
}
.course-table td {
	padding: 0.875rem 1.25rem;
	font-size: 0.875rem;
	border-bottom: 1px solid #f5f7fa;
	line-height: 1.7;
	color: #475569;
}
.course-table tbody tr {
	transition: background 0.2s;
	counter-increment: ci;
	position: relative;
}
.course-table tbody tr td:first-child {
	padding-left: 3.25rem;
	position: relative;
}

/* Row number badge */
.course-table tbody tr td:first-child::before {
	content: counter(ci);
	position: absolute;
	left: 1.25rem;
	top: 1rem;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 1.375rem;
	height: 1.375rem;
	background: #f1f5f9;
	border-radius: 0.375rem;
	font-size: 0.6875rem;
	font-weight: 700;
	color: #94a3b8;
	transition: all 0.2s;
}
.course-table tbody tr:hover { background: rgba(37,99,235,0.02); }
.course-table tbody tr:hover td:first-child::before {
	background: var(--brand-gold);
	color: #fff;
}
.course-table tbody tr:last-child td { border-bottom: none; }

/* Duration pill */
.dp {
	display: inline-block;
	padding: 0.2rem 0.625rem;
	border-radius: 2rem;
	font-size: 0.75rem;
	font-weight: 600;
	white-space: nowrap;
}
.dp-1 {
	background: #eff6ff;
	color: #2563eb;
	border: 1px solid #dbeafe;
}
.dp-2 {
	background: rgba(193,157,104,0.08);
	color: #b08d57;
	border: 1px solid rgba(193,157,104,0.18);
}
.course-table td:last-child {
	text-align: center;
	width: 90px;
}

.pricing-grid { display: grid !important; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.pricing-card { background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.1); border-radius: 0.75rem; padding: 2rem; position: relative; transition: all 0.3s; }
.pricing-card:hover { border-color: rgba(255,255,255,0.2); transform: translateY(-2px); }
.pricing-featured { border-color: var(--brand-gold); background: rgba(193,157,104,0.05); }
.pricing-badge { position: absolute; top: -0.75rem; right: 1.5rem; background: var(--brand-gold); color: var(--brand-900); font-size: 0.75rem; font-weight: 700; padding: 0.25rem 1rem; border-radius: 2rem; }
.pricing-header { text-align: center; padding-bottom: 1.5rem; border-bottom: 1px solid rgba(255,255,255,0.1); margin-bottom: 1.5rem; }
.pricing-tier { font-size: 0.875rem; color: #94a3b8; font-weight: 500; }
.pricing-amount { font-size: 2.25rem; font-weight: 700; color: #f8fafc; margin-top: 0.5rem; font-family: 'Inter',sans-serif; }
.pricing-currency { font-size: 1.25rem; vertical-align: super; }
.pricing-period { font-size: 0.875rem; font-weight: 400; color: #94a3b8; }
.pricing-features { list-style: none; padding: 0; margin: 0; }
.pricing-features li { display: flex; align-items: flex-start; gap: 0.75rem; padding: 0.6rem 0; font-size: 0.8125rem; color: #cbd5e1; line-height: 1.5; }
.pricing-features li i { color: var(--brand-gold); margin-top: 0.15rem; flex-shrink: 0; }
.pricing-features li strong { color: #f8fafc; }

.alliance-perks { display: grid !important; grid-template-columns: repeat(3, 1fr); gap: 1rem; }
.perk-item { display: flex; align-items: center; gap: 0.75rem; background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.08); border-radius: 0.5rem; padding: 0.75rem 1rem; font-size: 0.8125rem; color: #cbd5e1; }
.perk-item i { color: var(--brand-gold); font-size: 1.125rem; flex-shrink: 0; }

@media (max-width: 1024px) {
	.features-grid { grid-template-columns: repeat(2, 1fr) !important; }
	.pricing-grid { grid-template-columns: 1fr !important; max-width: 400px; margin: 0 auto; }
	.alliance-perks { grid-template-columns: repeat(2, 1fr) !important; }
}
@media (max-width: 768px) {
	.features-grid { grid-template-columns: 1fr !important; }
	.modules-grid { grid-template-columns: 1fr !important; }
	.course-tabs-nav { gap: 0.35rem; padding: 0.5rem; }
	.course-tab { font-size: 0.75rem; padding: 0.4rem 0.75rem; }
	.course-table td { padding: 0.75rem 0.75rem; font-size: 0.8125rem; }
	.course-table tbody tr td:first-child { padding-left: 2.75rem; }
	.course-table tbody tr td:first-child::before { left: 0.75rem; top: 0.875rem; width: 1.25rem; height: 1.25rem; font-size: 0.625rem; }
	.alliance-perks { grid-template-columns: 1fr !important; }
}

/* ============================================
   Training Page - 岗位训练营 (Redesigned)
   ============================================ */
.training-hero { padding-top: 8rem; }

/* -- Hero -- */
.tr-hero-inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 4rem;
	max-width: 1200px;
	margin: 0 auto;
}
.tr-hero-text { flex: 1; max-width: 36rem; }
.tr-hero-text h1 {
	font-size: clamp(2rem, 5vw, 3.25rem);
	font-weight: 700;
	color: #f8fafc;
	margin: 0.5rem 0 1.25rem;
}
.tr-hero-desc {
	color: #94a3b8;
	font-size: 1.0625rem;
	line-height: 1.9;
	margin-bottom: 2.5rem;
}
.tr-hero-stats {
	display: flex;
	align-items: center;
	gap: 1.25rem;
	flex-wrap: wrap;
}
.tr-stat { text-align: center; }
.tr-stat strong {
	display: block;
	font-size: 1.75rem;
	font-weight: 900;
	font-family: 'Inter', sans-serif;
	color: var(--brand-gold);
	line-height: 1.2;
}
.tr-stat span {
	font-size: 0.75rem;
	color: #94a3b8;
	display: block;
	margin-top: 0.25rem;
}
.tr-stat-div {
	width: 1px;
	height: 2.5rem;
	background: rgba(255,255,255,0.1);
}
.tr-hero-visual { flex-shrink: 0; }
.tr-hero-card {
	width: 18rem;
	background: rgba(255,255,255,0.04);
	border: 1px solid rgba(255,255,255,0.1);
	border-radius: 1rem;
	padding: 1.75rem;
	backdrop-filter: blur(8px);
}
.tr-card-hd {
	display: flex;
	align-items: center;
	gap: 0.625rem;
	margin-bottom: 1.25rem;
	padding-bottom: 1rem;
	border-bottom: 1px solid rgba(255,255,255,0.08);
}
.tr-card-hd i { font-size: 1.25rem; color: var(--brand-gold); }
.tr-card-hd span { font-weight: 700; color: #f8fafc; font-size: 0.9375rem; }
.tr-card-row {
	display: flex;
	align-items: center;
	gap: 0.625rem;
	padding: 0.5rem 0;
	color: #cbd5e1;
	font-size: 0.8125rem;
}
.tr-dot {
	width: 6px; height: 6px;
	border-radius: 50%;
	flex-shrink: 0;
}
.tr-dot-gold { background: var(--brand-gold); }
.tr-dot-blue { background: #2563eb; }

/* -- Section Header -- */
.tr-section-hd {
	text-align: center;
	margin-bottom: 3rem;
	max-width: 40rem;
	margin-left: auto;
	margin-right: auto;
}
.tr-section-hd h2 {
	font-size: clamp(1.75rem, 4vw, 2.25rem);
	font-weight: 700;
	margin-top: 0.5rem;
	color: var(--brand-900);
}
.tr-section-sub {
	color: #64748b;
	font-size: 0.9375rem;
	line-height: 1.8;
	margin-top: 0.75rem;
}

/* -- Flow Steps -- */
.tr-flow {
	display: flex;
	align-items: flex-start;
	justify-content: center;
	gap: 0;
	margin-bottom: 3rem;
}
.tr-flow-item {
	flex: 1;
	max-width: 240px;
	text-align: center;
	padding: 1.5rem;
	position: relative;
}
.tr-flow-num {
	font-size: 0.6875rem;
	font-weight: 800;
	font-family: 'Inter', sans-serif;
	color: var(--brand-gold);
	background: rgba(193,157,104,0.1);
	border: 1px solid rgba(193,157,104,0.2);
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 1.75rem;
	height: 1.75rem;
	border-radius: 50%;
	margin-bottom: 1rem;
}
.tr-flow-icon {
	width: 3.5rem;
	height: 3.5rem;
	border-radius: 0.75rem;
	background: linear-gradient(135deg, rgba(193,157,104,0.1), rgba(37,99,235,0.06));
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0 auto 1rem;
	font-size: 1.5rem;
	color: var(--brand-gold);
	transition: transform 0.3s;
}
.tr-flow-item:hover .tr-flow-icon { transform: translateY(-4px); }
.tr-flow-item h4 {
	font-size: 1rem;
	font-weight: 700;
	color: var(--brand-900);
	margin-bottom: 0.5rem;
}
.tr-flow-item p {
	font-size: 0.8125rem;
	color: #64748b;
	line-height: 1.7;
	margin: 0;
}
.tr-flow-line {
	width: 3rem;
	flex-shrink: 0;
	border-top: 2px dashed #cbd5e1;
	align-self: center;
	margin-top: 3rem;
}

/* -- Highlight Box -- */
.tr-highlight {
	display: flex;
	align-items: flex-start;
	gap: 1.25rem;
	max-width: 48rem;
	margin: 0 auto;
	background: #fff;
	border: 1px solid #f1f5f9;
	border-left: 4px solid var(--brand-gold);
	border-radius: 0.75rem;
	padding: 1.5rem 2rem;
	box-shadow: 0 4px 12px rgba(0,0,0,0.03);
}
.tr-highlight-icon {
	font-size: 1.5rem;
	color: var(--brand-gold);
	flex-shrink: 0;
	margin-top: 0.15rem;
}
.tr-highlight p {
	font-size: 0.875rem;
	color: #475569;
	line-height: 1.8;
	margin: 0;
}
.tr-highlight strong { color: var(--brand-900); }

/* -- Features (dark bg) -- */
.tr-feat-grid {
	display: grid !important;
	grid-template-columns: repeat(4, 1fr);
	gap: 1.25rem;
}
.tr-feat-card {
	background: rgba(255,255,255,0.04);
	border: 1px solid rgba(255,255,255,0.08);
	border-radius: 0.75rem;
	padding: 2rem 1.5rem 1.75rem;
	position: relative;
	overflow: hidden;
	transition: all 0.4s;
}
.tr-feat-card:hover {
	border-color: rgba(193,157,104,0.3);
	background: rgba(255,255,255,0.06);
	transform: translateY(-3px);
	box-shadow: 0 12px 32px rgba(0,0,0,0.2);
}
.tr-feat-card.tr-feat-accent {
	border-color: rgba(193,157,104,0.25);
	background: rgba(193,157,104,0.04);
}
.tr-feat-idx {
	position: absolute;
	top: 0.5rem;
	right: 0.75rem;
	font-size: 3rem;
	font-weight: 900;
	font-family: 'Inter', sans-serif;
	color: rgba(255,255,255,0.03);
	line-height: 1;
	transition: color 0.3s;
}
.tr-feat-card:hover .tr-feat-idx { color: rgba(193,157,104,0.08); }
.tr-feat-card .tr-feat-icon {
	width: 2.75rem;
	height: 2.75rem;
	border-radius: 0.5rem;
	background: rgba(193,157,104,0.1);
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 1.25rem;
	color: var(--brand-gold);
	margin-bottom: 1.25rem;
	transition: all 0.3s;
}
.tr-feat-card:hover .tr-feat-icon { background: rgba(193,157,104,0.15); transform: scale(1.08); }
.tr-feat-card h4 {
	font-size: 0.9375rem;
	font-weight: 700;
	color: #f1f5f9;
	margin-bottom: 0.625rem;
}
.tr-feat-card p {
	font-size: 0.8125rem;
	line-height: 1.75;
	color: #94a3b8;
	margin: 0;
}

/* -- Implementation Path -- */
.tr-path {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 0;
	max-width: 56rem;
	margin: 0 auto;
}
.tr-path-item {
	flex: 1;
	background: #fff;
	border: 1px solid #e8ecf1;
	border-radius: 0.75rem;
	padding: 2rem;
	text-align: center;
	transition: all 0.3s;
}
.tr-path-item:hover {
	border-color: var(--brand-gold);
	box-shadow: 0 12px 32px rgba(0,0,0,0.06);
	transform: translateY(-3px);
}
.tr-path-num {
	width: 3rem;
	height: 3rem;
	border-radius: 50%;
	background: var(--brand-900);
	color: var(--brand-gold);
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 1.125rem;
	font-weight: 900;
	font-family: 'Inter', sans-serif;
	margin: 0 auto 1.25rem;
}
.tr-path-body h4 {
	font-size: 1.0625rem;
	font-weight: 700;
	color: var(--brand-900);
	margin-bottom: 0.625rem;
}
.tr-path-body p {
	font-size: 0.8125rem;
	color: #64748b;
	line-height: 1.8;
	margin: 0;
}
.tr-path-connector {
	display: flex;
	align-items: center;
	flex-shrink: 0;
	width: 2rem;
	justify-content: center;
}
.tr-path-dot {
	width: 4px; height: 4px;
	border-radius: 50%;
	background: #cbd5e1;
}
.tr-path-line {
	flex: 1;
	height: 2px;
	background: #e2e8f0;
}

/* -- Camp Grid -- */
.tr-camp-grid {
	display: grid !important;
	grid-template-columns: repeat(2, 1fr);
	gap: 1rem;
}
.tr-camp-card {
	background: #fff;
	border: 1px solid #e8ecf1;
	border-radius: 0.75rem;
	padding: 1.5rem 2rem;
	display: flex;
	align-items: center;
	gap: 1.5rem;
	transition: all 0.3s;
	cursor: default;
	position: relative;
	overflow: hidden;
}
.tr-camp-card::after {
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	height: 3px;
	background: transparent;
	transition: background 0.3s;
}
.tr-camp-card:hover {
	border-color: rgba(193,157,104,0.3);
	box-shadow: 0 8px 24px rgba(0,0,0,0.06);
	transform: translateY(-2px);
}
.tr-camp-card:hover::after { background: var(--brand-gold); }
.tr-camp-left {
	display: flex;
	align-items: center;
	gap: 1rem;
	flex-shrink: 0;
}
.tr-camp-num {
	font-size: 1.5rem;
	font-weight: 900;
	font-family: 'Inter', sans-serif;
	color: #e2e8f0;
	line-height: 1;
	transition: color 0.3s;
	min-width: 2rem;
	text-align: center;
}
.tr-camp-card:hover .tr-camp-num { color: var(--brand-gold); }
.tr-camp-icon {
	width: 3rem;
	height: 3rem;
	border-radius: 0.625rem;
	background: linear-gradient(135deg, rgba(193,157,104,0.08), rgba(37,99,235,0.04));
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 1.25rem;
	color: var(--brand-gold);
	transition: all 0.3s;
	flex-shrink: 0;
}
.tr-camp-card:hover .tr-camp-icon {
	background: linear-gradient(135deg, rgba(193,157,104,0.15), rgba(37,99,235,0.06));
	transform: scale(1.06);
}
.tr-camp-right {
	flex: 1;
	min-width: 0;
}
.tr-camp-right h4 {
	font-size: 1rem;
	font-weight: 700;
	color: var(--brand-900);
	margin-bottom: 0.5rem;
	line-height: 1.5;
}
.tr-camp-tag {
	display: inline-block;
	padding: 0.25rem 0.75rem;
	background: #eff6ff;
	color: #2563eb;
	border-radius: 2rem;
	font-size: 0.75rem;
	font-weight: 600;
	border: 1px solid #dbeafe;
}

/* -- Training Responsive -- */
@media (max-width: 1024px) {
	.tr-hero-inner { flex-direction: column; gap: 2.5rem; text-align: center; }
	.tr-hero-text { max-width: 100%; }
	.tr-hero-stats { justify-content: center; }
	.tr-hero-visual { display: none; }
	.tr-flow { flex-wrap: wrap; gap: 1rem; }
	.tr-flow-line { display: none; }
	.tr-feat-grid { grid-template-columns: repeat(2, 1fr) !important; }
	.tr-path { flex-direction: column; gap: 0; }
	.tr-path-connector { transform: rotate(90deg); width: auto; height: 2rem; }
	.tr-path-item { width: 100%; max-width: 28rem; }
	.tr-camp-grid { grid-template-columns: 1fr !important; }
}
@media (max-width: 768px) {
	.tr-hero-stats { gap: 0.75rem; }
	.tr-stat strong { font-size: 1.25rem; }
	.tr-feat-grid { grid-template-columns: 1fr !important; }
	.tr-camp-grid { grid-template-columns: 1fr !important; }
	.tr-camp-card { padding: 1.25rem; gap: 1rem; }
	.tr-camp-right h4 { font-size: 0.9375rem; }
	.tr-flow-item { min-width: 100%; }
	.tr-highlight { flex-direction: column; }
}

/* ========================================
   Public Training Events - 公益培训活动
   ======================================== */

/* --- Hero Badges --- */
.public-hero-badges {
	display: flex;
	justify-content: center;
	gap: 2rem;
	flex-wrap: wrap;
}

.public-hero-badge {
	text-align: center;
	padding: 1rem 1.5rem;
	border-radius: 0.75rem;
	background: rgba(255, 255, 255, 0.05);
	border: 1px solid rgba(255, 255, 255, 0.1);
}

.public-hero-badge .badge-num {
	display: block;
	font-size: 1.75rem;
	font-weight: 800;
	color: var(--brand-gold);
	font-family: 'Inter', sans-serif;
	line-height: 1.2;
}

.public-hero-badge .badge-label {
	display: block;
	font-size: 0.8125rem;
	color: #94a3b8;
	margin-top: 0.25rem;
}

/* --- Highlights Section (图文交错) --- */
.highlight-rows {
	display: flex;
	flex-direction: column;
	gap: 3.5rem;
	max-width: 1000px;
	margin: 0 auto;
}

.highlight-row {
	display: flex;
	align-items: center;
	gap: 3rem;
}

.highlight-row:nth-child(even) {
	flex-direction: row-reverse;
}

.highlight-image {
	flex: 0 0 45%;
	border-radius: 1rem;
	overflow: hidden;
	box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

.highlight-image img {
	display: block;
	width: 100%;
	height: 280px;
	object-fit: cover;
	transition: transform 0.5s;
}

.highlight-row:hover .highlight-image img {
	transform: scale(1.03);
}

.highlight-text {
	flex: 1;
}

.highlight-number {
	font-family: 'Inter', sans-serif;
	font-size: 3rem;
	font-weight: 900;
	color: #e2e8f0;
	line-height: 1;
	margin-bottom: 0.75rem;
}

.highlight-text h3 {
	font-size: 1.25rem;
	font-weight: 700;
	color: var(--brand-900);
	margin-bottom: 0.75rem;
}

.highlight-text p {
	font-size: 0.9375rem;
	color: #64748b;
	line-height: 1.75;
}

/* --- Schedule Section (培训大会日程) --- */
.schedule-wrap {
	max-width: 960px;
	margin: 0 auto;
	counter-reset: sched-num;
}

.schedule-group {
	display: flex;
	align-items: stretch;
	margin-bottom: 0.625rem;
}

.schedule-group-label {
	flex: 0 0 72px;
	display: flex;
	align-items: center;
	justify-content: center;
	background: var(--brand-900);
	color: #fff;
	font-size: 0.875rem;
	font-weight: 800;
	font-family: 'Inter', sans-serif;
	border-radius: 0.625rem 0 0 0.625rem;
	letter-spacing: 0.02em;
}

.schedule-card {
	flex: 1;
	background: #fff;
	border-radius: 0 0.625rem 0.625rem 0;
	border: 1px solid #e8ecf1;
	border-left: none;
	overflow: hidden;
}

.schedule-row {
	display: flex;
	align-items: center;
	gap: 1rem;
	padding: 0.875rem 1.25rem;
	border-bottom: 1px solid #f3f5f8;
	counter-increment: sched-num;
	transition: background 0.2s;
}

.schedule-row:last-child {
	border-bottom: none;
}

.schedule-row:hover {
	background: #fafbfc;
}

.schedule-num {
	flex: 0 0 2rem;
	font-size: 0.75rem;
	font-weight: 700;
	color: #94a3b8;
	text-align: center;
}

.schedule-num::before {
	content: counter(sched-num);
}

.schedule-row:hover .schedule-num {
	color: var(--brand-gold);
}

.schedule-date {
	flex: 0 0 100px;
	font-size: 0.8125rem;
	font-weight: 600;
	color: var(--brand-900);
	font-family: 'Inter', sans-serif;
}

.schedule-title {
	flex: 1;
	font-size: 0.875rem;
	font-weight: 500;
	color: #334155;
	line-height: 1.5;
}

.schedule-city {
	flex: 0 0 auto;
	font-size: 0.8125rem;
	color: #64748b;
	display: flex;
	align-items: center;
	gap: 0.25rem;
	white-space: nowrap;
}

.schedule-city i {
	color: var(--brand-gold);
	font-size: 0.875rem;
}

.schedule-hidden {
	display: none;
}

.schedule-wrap.expanded .schedule-hidden {
	display: flex;
}

.schedule-toggle {
	display: block;
	margin: 2rem auto 0;
	padding: 0.75rem 2rem;
	background: var(--brand-900);
	color: #fff;
	border: none;
	border-radius: 2rem;
	font-size: 0.875rem;
	font-weight: 600;
	cursor: pointer;
	transition: background 0.3s;
	font-family: inherit;
}

.schedule-toggle:hover {
	background: var(--brand-800);
}

.schedule-wrap.expanded + .schedule-toggle {
	display: none;
}

/* --- Salon Intro (深色区块) --- */
.salon-intro {
	position: relative;
	text-align: center;
}

.salon-intro-bg {
	position: absolute;
	inset: 0;
	background: url('https://images.unsplash.com/photo-1540575467063-178a50c2df87?auto=format&fit=crop&w=1400&q=80') center/cover;
	opacity: 0.08;
	pointer-events: none;
}

.salon-intro-content {
	position: relative;
	z-index: 1;
}

.salon-quote {
	font-size: clamp(1.5rem, 3.5vw, 2.25rem);
	color: #f8fafc;
	font-weight: 300;
	font-style: italic;
	margin: 2rem auto;
	max-width: 600px;
	line-height: 1.5;
}

.salon-values {
	display: flex;
	justify-content: center;
	gap: 1.5rem;
	flex-wrap: wrap;
	margin-top: 2rem;
}

.salon-values span {
	font-size: 1.125rem;
	font-weight: 600;
	color: var(--brand-gold);
	padding: 0.5rem 1.25rem;
	border: 1px solid rgba(193, 157, 104, 0.3);
	border-radius: 2rem;
	letter-spacing: 0.1em;
}

/* --- Salon Schedule (时间轴) --- */
.salon-timeline {
	max-width: 800px;
	margin: 0 auto;
	position: relative;
}

.salon-month {
	position: relative;
	padding-left: 5rem;
	padding-bottom: 1.5rem;
}

/* 竖线 */
.salon-month::before {
	content: '';
	position: absolute;
	left: 1.875rem;
	top: 2rem;
	bottom: 0;
	width: 2px;
	background: #e2e8f0;
}

.salon-month:last-child::before {
	display: none;
}

/* 月份圆点 */
.salon-month-label {
	position: absolute;
	left: 0;
	top: 0;
	width: 3.75rem;
	height: 3.75rem;
	background: var(--brand-900);
	color: #fff;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 0.9375rem;
	font-weight: 700;
	font-family: 'Inter', sans-serif;
	z-index: 1;
}

.salon-month-items {
	padding-top: 0.25rem;
}

.salon-item {
	display: flex;
	align-items: center;
	gap: 1rem;
	padding: 0.625rem 0;
}

.salon-item + .salon-item {
	border-top: 1px dashed #f1f5f9;
}

.salon-date {
	font-size: 0.875rem;
	font-weight: 700;
	color: var(--brand-900);
	white-space: nowrap;
	min-width: 48px;
	font-family: 'Inter', sans-serif;
}

.salon-city {
	font-size: 0.9375rem;
	font-weight: 600;
	color: #334155;
	display: inline-flex;
	align-items: center;
	gap: 0.375rem;
}

.salon-city i {
	color: var(--brand-gold);
	font-size: 0.75rem;
}

.salon-tag {
	font-size: 0.625rem;
	font-weight: 600;
	padding: 0.1875rem 0.5rem;
	border-radius: 2rem;
	background: var(--brand-900);
	color: #fff;
	white-space: nowrap;
	letter-spacing: 0.02em;
	margin-left: auto;
}

.salon-tag.tag-blue {
	background: #2563eb;
}

/* --- Gallery Section (图片墙) --- */
.gallery-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	grid-auto-rows: 200px;
	gap: 0.75rem;
	max-width: 1100px;
	margin: 0 auto;
}

.gallery-item {
	position: relative;
	border-radius: 0.75rem;
	overflow: hidden;
	cursor: pointer;
}

.gallery-item img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.5s;
}

.gallery-item:hover img {
	transform: scale(1.08);
}

.gallery-overlay {
	position: absolute;
	inset: 0;
	background: rgba(10, 25, 47, 0.5);
	display: flex;
	align-items: flex-end;
	padding: 1rem;
	opacity: 0;
	transition: opacity 0.3s;
}

.gallery-item:hover .gallery-overlay {
	opacity: 1;
}

.gallery-overlay span {
	color: #fff;
	font-size: 0.875rem;
	font-weight: 600;
}

.gallery-wide {
	grid-column: span 2;
}

.gallery-tall {
	grid-row: span 2;
}

/* --- Public Responsive --- */
@media (max-width: 1024px) {
	.gallery-grid {
		grid-template-columns: repeat(3, 1fr);
		grid-auto-rows: 180px;
	}
}

@media (max-width: 768px) {
	.highlight-row,
	.highlight-row:nth-child(even) {
		flex-direction: column;
	}
	.highlight-image {
		flex: none;
		width: 100%;
	}
	.highlight-image img {
		height: 220px;
	}
	.public-hero-badges {
		gap: 1rem;
	}
	.public-hero-badge {
		padding: 0.75rem 1rem;
	}
	.public-hero-badge .badge-num {
		font-size: 1.25rem;
	}
	.schedule-group {
		flex-direction: column;
	}
	.schedule-group-label {
		flex: none;
		border-radius: 0.625rem 0.625rem 0 0;
		padding: 0.5rem 0;
	}
	.schedule-card {
		border-radius: 0 0 0.625rem 0.625rem;
		border-left: 1px solid #e8ecf1;
		border-top: none;
	}
	.schedule-row {
		flex-wrap: wrap;
		gap: 0.5rem;
	}
	.schedule-date,
	.schedule-city {
		flex: none;
	}
	.salon-month {
		padding-left: 3.5rem;
	}
	.salon-month-label {
		width: 2.5rem;
		height: 2.5rem;
		font-size: 0.75rem;
	}
	.salon-month::before {
		left: 1.25rem;
	}
	.salon-item {
		flex-wrap: wrap;
		gap: 0.375rem;
	}
	.salon-date {
		min-width: auto;
	}
	.gallery-grid {
		grid-template-columns: repeat(2, 1fr);
		grid-auto-rows: 160px;
	}
	.gallery-wide {
		grid-column: span 2;
	}
	.gallery-tall {
		grid-row: span 1;
	}
}

/* ================================================================
   Enterprise Customized Training (企业定制化培训)
   ================================================================ */

/* --- Hero --- */
.enterprise-hero {
	position: relative;
	overflow: hidden;
}

.ent-hero-bg {
	position: absolute;
	inset: 0;
	background: url('https://images.unsplash.com/photo-1524178232363-1fb2b075b655?auto=format&fit=crop&w=1400&q=80') center/cover no-repeat;
	opacity: 0.1;
	pointer-events: none;
}

.ent-hero-content {
	position: relative;
	z-index: 1;
}

.ent-hero-stats {
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 0;
	flex-wrap: wrap;
}

.ent-stat {
	text-align: center;
	padding: 1rem 2rem;
}

.ent-stat strong {
	display: block;
	font-size: clamp(1.5rem, 3vw, 2rem);
	color: #f8fafc;
	font-weight: 800;
	font-family: 'Inter', sans-serif;
}

.ent-stat span {
	display: block;
	font-size: 0.8125rem;
	color: #94a3b8;
	margin-top: 0.25rem;
}

.ent-stat-div {
	width: 1px;
	height: 2.5rem;
	background: rgba(255, 255, 255, 0.15);
}

/* --- Process Steps --- */
.enterprise-process {
	padding-top: 2.5rem !important;
	padding-bottom: 4rem !important;
}

.ent-process-steps {
	display: grid !important;
	grid-template-columns: repeat(4, 1fr);
	gap: 1.5rem;
	max-width: 1100px;
	margin: 1.5rem auto 0;
}

.ent-step {
	text-align: left;
	padding: 1.5rem 1.5rem 0;
	background: #fff;
	border-radius: 0.5rem;
	border: none;
	box-shadow: 0 2px 16px rgba(0, 0, 0, 0.06);
	overflow: hidden;
	transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.ent-step:hover {
	box-shadow: 0 8px 32px rgba(193, 157, 104, 0.18);
	transform: translateY(-6px);
}

.ent-step-icon {
	font-size: 1.5rem;
	color: var(--brand-gold);
	margin-bottom: 0.75rem;
}

.ent-step-title {
	font-size: 1.125rem;
	font-weight: 800;
	color: var(--brand-900);
	margin: 0 0 0.375rem;
}

.ent-step-desc {
	font-size: 0.8125rem;
	line-height: 1.7;
	color: #64748b;
	margin: 0;
}

.ent-step-img {
	width: calc(100% + 3rem);
	height: 160px;
	overflow: hidden;
	margin-top: 1.25rem;
	margin-left: -1.5rem;
}

.ent-step-img img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.ent-step:hover .ent-step-img img {
	transform: scale(1.08);
}

/* --- Topics Grid --- */
.enterprise-topics {
	padding-top: 2.5rem !important;
}
.ent-topics-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 1.5rem;
}

.ent-topic-card {
	background: #fff;
	border: 1px solid #e8ecf1;
	border-radius: 0.75rem;
	padding: 2rem;
	transition: all 0.3s;
}

.ent-topic-card:hover {
	border-color: var(--brand-gold);
	box-shadow: 0 8px 30px rgba(0, 0, 0, 0.06);
	transform: translateY(-2px);
}

.ent-topic-icon {
	width: 2.75rem;
	height: 2.75rem;
	border-radius: 0.5rem;
	background: linear-gradient(135deg, rgba(193, 157, 104, 0.1), rgba(37, 99, 235, 0.05));
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 1.125rem;
	color: var(--brand-gold);
	margin-bottom: 1rem;
}

.ent-topic-title {
	font-size: 1rem;
	font-weight: 700;
	color: var(--brand-900);
	margin-bottom: 0.75rem;
}

.ent-topic-list {
	list-style: none;
	padding: 0;
	margin: 0;
}

.ent-topic-list li {
	font-size: 0.8125rem;
	color: #64748b;
	padding: 0.375rem 0;
	border-bottom: 1px dashed #f1f5f9;
	line-height: 1.5;
}

.ent-topic-list li:last-child {
	border-bottom: none;
}

.ent-topic-list li::before {
	content: '';
	display: inline-block;
	width: 4px;
	height: 4px;
	background: var(--brand-gold);
	border-radius: 50%;
	margin-right: 0.5rem;
	vertical-align: middle;
}

/* --- Cases --- */
.ent-cases-grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 1.5rem;
	max-width: 900px;
	margin: 0 auto;
}

.ent-case-card {
	background: rgba(255, 255, 255, 0.06);
	border: 1px solid rgba(255, 255, 255, 0.1);
	border-radius: 0.75rem;
	padding: 2rem;
	transition: all 0.3s;
}

.ent-case-card:hover {
	border-color: rgba(193, 157, 104, 0.4);
	background: rgba(255, 255, 255, 0.1);
}

.ent-case-tag {
	display: inline-block;
	font-size: 0.6875rem;
	font-weight: 700;
	padding: 0.1875rem 0.625rem;
	border-radius: 2rem;
	background: var(--brand-gold);
	color: var(--brand-900);
	margin-bottom: 0.75rem;
	letter-spacing: 0.02em;
}

.ent-case-title {
	font-size: 1.0625rem;
	font-weight: 700;
	color: #f8fafc;
	margin-bottom: 1rem;
}

.ent-case-row {
	display: flex;
	gap: 0.75rem;
	padding: 0.5rem 0;
	font-size: 0.8125rem;
	color: #94a3b8;
	line-height: 1.6;
}

.ent-case-label {
	flex-shrink: 0;
	font-weight: 600;
	color: #cbd5e1;
	min-width: 2.5rem;
}

.ent-case-highlight {
	color: var(--brand-gold);
	font-weight: 600;
}

/* --- CTA --- */
.ent-cta-inner {
	text-align: center;
	max-width: 700px;
	margin: 0 auto;
}

.ent-cta-actions {
	display: flex;
	justify-content: center;
	gap: 1rem;
	flex-wrap: wrap;
}

.ent-cta-btn {
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	padding: 0.875rem 2rem;
	border-radius: 0.5rem;
	font-size: 0.9375rem;
	font-weight: 600;
	text-decoration: none;
	transition: all 0.3s;
	font-family: inherit;
	background: var(--brand-900);
	color: #fff;
	border: 2px solid var(--brand-900);
}

.ent-cta-btn:hover {
	background: #0f2444;
	border-color: #0f2444;
}

.ent-cta-btn-outline {
	background: transparent;
	color: var(--brand-900);
	border-color: var(--brand-900);
}

.ent-cta-btn-outline:hover {
	background: var(--brand-900);
	color: #fff;
}

/* --- Enterprise Responsive --- */
@media (max-width: 1024px) {
	.ent-topics-grid {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media (max-width: 768px) {
	.ent-hero-stats {
		gap: 0;
	}
	.ent-stat {
		padding: 0.75rem 1rem;
	}
	.ent-stat-div {
		display: none;
	}
	.ent-process-steps {
		flex-direction: column;
		gap: 0.75rem;
	}
	.ent-step-arrow {
		transform: rotate(90deg);
		padding: 0;
		justify-content: center;
	}
	.ent-topics-grid {
		grid-template-columns: 1fr;
	}
	.ent-cases-grid {
		grid-template-columns: 1fr;
	}
	.ent-cta-actions {
		flex-direction: column;
		align-items: center;
	}
	.ent-cta-btn {
		width: 100%;
		max-width: 280px;
		justify-content: center;
	}
}
