/**
 * Ecosystem Sections CSS
 * Tất cả CSS cho các section trong trang "Hệ sinh thái Tabcom"
 * Scoped theo ID của từng section để không ảnh hưởng global
 */

/* Font SF Pro Display cho tiêu đề */
@font-face {
	font-family: 'SF Pro Display';
	src: url('../fonts/SF-Pro-Display-Regular.woff2') format('woff2'),
		 url('../fonts/SF-Pro-Display-Regular.woff') format('woff');
	font-weight: 400;
	font-style: normal;
	font-display: swap;
}

@font-face {
	font-family: 'SF Pro Display';
	src: url('../fonts/SF-Pro-Display-Medium.woff2') format('woff2'),
		 url('../fonts/SF-Pro-Display-Medium.woff') format('woff');
	font-weight: 500;
	font-style: normal;
	font-display: swap;
}

@font-face {
	font-family: 'SF Pro Display';
	src: url('../fonts/SF-Pro-Display-Semibold.woff2') format('woff2'),
		 url('../fonts/SF-Pro-Display-Semibold.woff') format('woff');
	font-weight: 600;
	font-style: normal;
	font-display: swap;
}

@font-face {
	font-family: 'SF Pro Display';
	src: url('../fonts/SF-Pro-Display-Bold.woff2') format('woff2'),
		 url('../fonts/SF-Pro-Display-Bold.woff') format('woff');
	font-weight: 700;
	font-style: normal;
	font-display: swap;
}

@font-face {
	font-family: 'SF Pro Display';
	src: url('../fonts/SF-Pro-Display-Heavy.woff2') format('woff2'),
		 url('../fonts/SF-Pro-Display-Heavy.woff') format('woff');
	font-weight: 800;
	font-style: normal;
	font-display: swap;
}

@font-face {
	font-family: 'SF Pro Display';
	src: url('../fonts/SF-Pro-Display-Black.woff2') format('woff2'),
		 url('../fonts/SF-Pro-Display-Black.woff') format('woff');
	font-weight: 900;
	font-style: normal;
	font-display: swap;
}

/* Áp dụng SF Pro Display cho tất cả tiêu đề trong ecosystem page */
.ecosystem-tabcom-page h1,
.ecosystem-tabcom-page h2,
.ecosystem-tabcom-page h3,
.ecosystem-tabcom-page h4,
.ecosystem-tabcom-page .brand-name,
.ecosystem-tabcom-page .ceo-name,
.ecosystem-tabcom-page .event-year,
.ecosystem-tabcom-page .event-title {
	font-family: 'SF Pro Display', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

/* Cấu hình chung cho các Section */
.page-section {
	width: 100%;
	min-height: 100vh;
	padding: 80px 20px;
	display: flex;
	justify-content: center;
	align-items: flex-start;
	position: relative;
}

/* --- STYLE CHO DẢI PHÂN CÁCH (DIVIDER) --- */
.ecosystem-divider {
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 20px 0;
	opacity: 0.6;
}

.divider-line {
	height: 1px;
	width: 150px;
	background: linear-gradient(90deg, transparent, #cbd5e1, transparent);
}

.divider-label {
	margin: 0 20px;
	font-size: 0.85rem;
	color: #64748b;
	text-transform: uppercase;
	letter-spacing: 2px;
	font-weight: 600;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 10px;
}

.divider-icon {
	width: 40px;
	height: 40px;
	border: 1px solid #cbd5e1;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	color: #94a3b8;
	font-size: 1rem;
	background: #fff;
}

/* =========================================
   PHẦN 1: TABCOM GROUP (PROFILE)
   ========================================= */
#section-group {
	--brand-blue: #0038FF;
	--brand-cyan: #01f3f8;
	--brand-green: #05e196;
	--bg-body: #eff2f5;
	--bg-card: #ffffff;
	--bg-highlight: #f8fafc;
	--text-primary: #1e293b;
	--text-secondary: #64748b;
	--border-subtle: #e2e8f0;
	--shadow-card: 0 4px 20px -5px rgba(0, 0, 0, 0.05);
	--shadow-hover: 0 10px 25px -5px rgba(18, 34, 152, 0.1);

	background-color: var(--bg-body);
	background-image: radial-gradient(#cbd5e1 1px, transparent 1px);
	background-size: 24px 24px;
	color: var(--text-primary);
}

#section-group .container {
	max-width: 1200px;
	width: 100%;
	display: grid;
	grid-template-columns: 340px 1fr;
	gap: 40px;
}

#section-group .sidebar-panel {
	background: var(--bg-card);
	border: 1px solid var(--border-subtle);
	border-radius: 24px;
	padding: 40px 30px;
	text-align: center;
	position: sticky;
	top: 40px;
	height: fit-content;
	box-shadow: var(--shadow-card);
}

#section-group .logo-img {
	width: 160px;
	height: auto;
	margin-bottom: 25px;
	display: inline-block;
}

#section-group .brand-name {
	font-size: 1.6rem;
	font-weight: 900;
	color: var(--brand-blue);
	margin-bottom: 5px;
	letter-spacing: -0.5px;
}

#section-group .brand-slogan {
	font-size: 0.8rem;
	color: var(--brand-green);
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 1.5px;
	margin-bottom: 30px;
	display: block;
}

#section-group .brand-intro {
	text-align: justify;
	font-size: 0.95rem;
	color: var(--text-secondary);
	margin-bottom: 30px;
	padding-bottom: 30px;
	border-bottom: 1px dashed var(--border-subtle);
}

#section-group .badge {
	display: flex;
	align-items: center;
	gap: 15px;
	background: var(--bg-highlight);
	border: 1px solid var(--border-subtle);
	padding: 15px;
	border-radius: 16px;
	margin-bottom: 15px;
	transition: all 0.3s ease;
	text-align: left;
	position: relative;
	overflow: hidden;
}

#section-group .badge:hover {
	border-color: var(--brand-cyan);
	background: #fff;
	box-shadow: 0 5px 15px rgba(1, 243, 248, 0.15);
	transform: translateY(-2px);
}

#section-group .badge::before {
	content: '';
	position: absolute;
	left: 0;
	top: 0;
	bottom: 0;
	width: 4px;
	background: var(--brand-blue);
}

#section-group .badge i {
	font-size: 1.6rem;
	color: var(--brand-blue);
	width: 30px;
	text-align: center;
}

#section-group .badge h4 {
	font-size: 0.9rem;
	font-weight: 700;
	color: var(--text-primary);
	margin: 0;
}

#section-group .badge span {
	font-size: 0.8rem;
	color: var(--text-secondary);
}

#section-group .main-panel {
	background: var(--bg-card);
	border: 1px solid var(--border-subtle);
	border-radius: 24px;
	padding: 50px;
	box-shadow: var(--shadow-card);
}

#section-group .section-header {
	margin-bottom: 40px;
	position: relative;
	padding-left: 20px;
}

#section-group .section-header::before {
	content: '';
	position: absolute;
	left: 0;
	top: 5px;
	bottom: 5px;
	width: 5px;
	background: linear-gradient(to bottom, var(--brand-cyan), var(--brand-blue));
	border-radius: 3px;
}

#section-group .section-header h2 {
	font-size: 2rem;
	color: var(--brand-blue);
	font-weight: 800;
}

#section-group .section-header p {
	color: var(--text-secondary);
	font-size: 1.05rem;
	margin-top: 5px;
}

#section-group .vision-card {
	background: linear-gradient(135deg, #f0f9ff 0%, #f0fdfa 100%);
	border: 1px solid #e0f2fe;
	border-radius: 20px;
	padding: 35px;
	margin-bottom: 60px;
	position: relative;
	overflow: hidden;
	transition: transform 0.3s;
}

#section-group .vision-card:hover {
	transform: translateY(-3px);
	box-shadow: var(--shadow-hover);
}

#section-group .vision-card::after {
	content: "\f0ac";
	font-family: "Font Awesome 6 Free";
	font-weight: 900;
	position: absolute;
	right: -30px;
	bottom: -40px;
	font-size: 12rem;
	color: var(--brand-blue);
	opacity: 0.03;
	transform: rotate(-15deg);
}

#section-group .vision-card h3 {
	color: var(--brand-blue);
	font-size: 1.5rem;
	margin-bottom: 15px;
	font-weight: 800;
	display: flex;
	align-items: center;
	gap: 10px;
}

#section-group .vision-card p {
	font-size: 1rem;
	color: #334155;
	line-height: 1.7;
	position: relative;
	z-index: 1;
}

/* CEO Profile Section */
#section-group .ceo-profile-section {
	margin-bottom: 50px;
}

#section-group .ceo-profile-card {
	display: flex;
	gap: 30px;
	background: linear-gradient(135deg, #f0f9ff 0%, #f0fdfa 100%);
	border: 1px solid #e0f2fe;
	border-radius: 20px;
	padding: 30px;
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
	transition: all 0.3s ease;
}

#section-group .ceo-profile-card:hover {
	transform: translateY(-3px);
	box-shadow: 0 10px 30px rgba(18, 34, 152, 0.1);
}

#section-group .ceo-image-wrapper {
	flex-shrink: 0;
	width: 180px;
	height: 180px;
	border-radius: 50%;
	overflow: hidden;
	border: 4px solid transparent;
	background: linear-gradient(white, white) padding-box, linear-gradient(180deg, #001BE6 50%, #0FDEC9 100%) border-box;
	box-shadow: 0 8px 25px rgba(0, 27, 230, 0.3);
}

#section-group .ceo-image {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: top;
}

#section-group .ceo-info {
	flex: 1;
}

#section-group .ceo-name {
	font-size: 1.8rem;
	font-weight: 900;
	color: var(--brand-blue);
	margin: 0 0 5px 0;
}

#section-group .ceo-title {
	display: inline-block;
	font-size: 0.9rem;
	font-weight: 700;
	color: var(--brand-green);
	text-transform: uppercase;
	letter-spacing: 0.5px;
	margin-bottom: 15px;
	padding: 5px 15px;
	background: rgba(5, 225, 150, 0.1);
	border-radius: 20px;
}

#section-group .ceo-bio {
	font-size: 0.95rem;
	color: #334155;
	line-height: 1.7;
	margin-bottom: 20px;
}

#section-group .ceo-achievements {
	display: flex;
	flex-direction: column;
	gap: 10px;
}

#section-group .achievement-item {
	display: flex;
	align-items: center;
	gap: 10px;
	font-size: 0.9rem;
	color: #475569;
}

#section-group .achievement-item i {
	color: #0038FF;
	font-size: 1rem;
	width: 20px;
}

@media (max-width: 768px) {
	#section-group .ceo-profile-card {
		flex-direction: column;
		align-items: center;
		text-align: center;
	}
	
	#section-group .ceo-image-wrapper {
		width: 150px;
		height: 150px;
	}
	
	#section-group .ceo-achievements {
		align-items: center;
	}
	
	#section-group .achievement-item {
		justify-content: center;
	}
}

#section-group .timeline-wrapper {
	position: relative;
	padding-left: 0;
	margin-top: 20px;
	max-width: 900px;
	margin-left: auto;
	margin-right: auto;
}

#section-group .timeline-line {
	position: absolute;
	left: 50%;
	transform: translateX(-50%);
	top: 15px;
	bottom: 0;
	width: 3px;
	background: linear-gradient(to bottom, var(--brand-cyan), var(--brand-blue), transparent);
	z-index: 0;
}

#section-group .timeline-event {
	position: relative;
	margin-bottom: 50px;
	width: calc(50% - 30px);
	opacity: 0;
	transform: translateY(30px);
	transition: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* Các item lẻ (1, 3) - bên trái */
#section-group .timeline-event:nth-child(odd) {
	margin-left: 0;
	margin-right: auto;
	padding-right: 30px;
	text-align: right;
}

/* Các item chẵn (2, 4) - bên phải */
#section-group .timeline-event:nth-child(even) {
	margin-left: auto;
	margin-right: 0;
	padding-left: 30px;
	text-align: left;
}

#section-group .timeline-event.visible {
	opacity: 1;
	transform: translateY(0);
}

#section-group .event-dot {
	position: absolute;
	top: 6px;
	width: 18px;
	height: 18px;
	background: #fff;
	border: 4px solid #0038FF;
	border-radius: 50%;
	z-index: 2;
	box-shadow: 0 0 0 4px rgba(255, 255, 255, 0.8);
	transition: all 0.3s;
}

/* Dot cho item lẻ - nằm ở giữa (bên phải của item) */
#section-group .timeline-event:nth-child(odd) .event-dot {
	right: -39px;
	left: auto;
}

/* Dot cho item chẵn - nằm ở giữa (bên trái của item) */
#section-group .timeline-event:nth-child(even) .event-dot {
	left: -39px;
	right: auto;
}

#section-group .timeline-event:hover .event-dot {
	background: #0038FF;
	border-color: #0038FF;
	transform: scale(1.2);
}

#section-group .event-dot.pulse {
	border-color: #0038FF;
	animation: group-pulse-ring 2s infinite;
}

@keyframes group-pulse-ring {
	0% { box-shadow: 0 0 0 0 rgba(0, 56, 255, 0.4); }
	70% { box-shadow: 0 0 0 10px rgba(5, 225, 150, 0); }
	100% { box-shadow: 0 0 0 0 rgba(5, 225, 150, 0); }
}

#section-group .event-year {
	font-size: 2.2rem;
	font-weight: 900;
	color: var(--brand-blue);
	line-height: 1;
	display: block;
	margin-bottom: 8px;
}

#section-group .event-title {
	font-size: 1.1rem;
	font-weight: 700;
	color: var(--brand-green);
	text-transform: uppercase;
	letter-spacing: 0.5px;
	margin-bottom: 15px;
	display: block;
}

#section-group .event-desc {
	background: var(--bg-highlight);
	border: 1px solid var(--border-subtle);
	padding: 24px;
	border-radius: 16px;
	font-size: 1rem;
	color: var(--text-primary);
	position: relative;
	transition: all 0.3s ease;
}

#section-group .event-desc:hover {
	transform: translateX(5px);
	border-color: var(--brand-cyan);
	background: #fff;
	box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

#section-group .event-desc::before {
	content: '';
	position: absolute;
	top: 15px;
	left: -9px;
	width: 18px;
	height: 18px;
	background: inherit;
	border-left: 1px solid inherit;
	border-bottom: 1px solid inherit;
	transform: rotate(45deg);
}

@media (max-width: 992px) {
	#section-group .container {
		grid-template-columns: 1fr;
		gap: 30px;
	}

	#section-group .sidebar-panel {
		position: relative;
		top: 0;
	}

	#section-group .main-panel {
		padding: 30px;
	}

	#section-group .logo-img {
		width: 140px;
		margin: 0 auto 20px;
		display: block;
	}
}

@media (max-width: 768px) {
	/* Timeline về dạng 1 cột trên mobile */
	#section-group .timeline-wrapper {
		max-width: 100%;
	}
	
	#section-group .timeline-line {
		left: 15px;
		transform: none;
	}
	
	#section-group .timeline-event {
		width: 100%;
		padding-left: 50px;
		padding-right: 0;
		text-align: left;
	}
	
	#section-group .timeline-event:nth-child(odd),
	#section-group .timeline-event:nth-child(even) {
		margin-left: 0;
		padding-left: 50px;
		padding-right: 0;
		text-align: left;
	}
	
	#section-group .timeline-event:nth-child(odd) .event-dot,
	#section-group .timeline-event:nth-child(even) .event-dot {
		left: 6px;
		right: auto;
	}
	
	#section-group .event-year {
		font-size: 1.8rem;
	}
}

/* =========================================
   PHẦN: CÁC CÔNG TY THÀNH VIÊN TABCOM
   ========================================= */
#section-companies {
	--bg-body: #f1f5f9;
	--bg-card: #ffffff;
	--text-primary: #1e293b;
	--text-secondary: #64748b;
	--border-subtle: #e2e8f0;
	--brand-blue: #0038FF;
	--brand-cyan: #01f3f8;
	--brand-green: #05e196;
	--shadow-card: 0 4px 20px -5px rgba(0, 0, 0, 0.05);
	--shadow-hover: 0 10px 25px -5px rgba(18, 34, 152, 0.1);

	background-color: var(--bg-body);
	background-image: radial-gradient(#cbd5e1 1.5px, transparent 1.5px);
	background-size: 32px 32px;
	color: var(--text-primary);
}

#section-companies .container {
	max-width: 1200px;
	width: 100%;
}

#section-companies .section-header {
	display: flex;
	align-items: center;
	gap: 12px;
	margin-bottom: 15px;
}

#section-companies .section-header i {
	color: var(--brand-blue);
	font-size: 1.8rem;
}

#section-companies .section-header h2 {
	font-size: 2rem;
	font-weight: 800;
	color: var(--brand-blue);
	margin: 0;
}

#section-companies .section-subtitle {
	font-size: 1.05rem;
	color: var(--text-secondary);
	margin-bottom: 50px;
	text-align: center;
	max-width: 800px;
	margin-left: auto;
	margin-right: auto;
	line-height: 1.6;
}

#section-companies .companies-grid {
	display: grid;
	grid-template-columns: repeat(5, 1fr);
	gap: 20px;
	max-width: 1400px;
	margin: 40px auto 0;
	align-items: stretch;
}

#section-companies .company-card {
	background: var(--bg-card);
	border: 1px solid var(--border-subtle);
	border-radius: 24px;
	padding: 35px 30px;
	text-align: center;
	transition: all 0.3s ease;
	box-shadow: var(--shadow-card);
	position: relative;
	overflow: hidden;
}

#section-companies .company-card::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 4px;
	background: linear-gradient(90deg, var(--brand-cyan), var(--brand-blue));
	opacity: 0;
	transition: opacity 0.3s ease;
}

#section-companies .company-card:hover {
	transform: translateY(-5px);
	box-shadow: var(--shadow-hover);
	border-color: var(--brand-cyan);
}

#section-companies .company-card:hover::before {
	opacity: 1;
}

#section-companies .company-logo-wrapper {
	width: 120px;
	height: 120px;
	margin: 0 auto 25px;
	display: flex;
	align-items: center;
	justify-content: center;
	background: var(--bg-body);
	border-radius: 20px;
	padding: 15px;
	border: 1px solid var(--border-subtle);
	transition: all 0.3s ease;
}

#section-companies .company-card:hover .company-logo-wrapper {
	background: #fff;
	border-color: var(--brand-cyan);
	transform: scale(1.05);
}

#section-companies .company-logo {
	width: 100%;
	height: auto;
	object-fit: contain;
}

#section-companies .company-name {
	font-size: 1.4rem;
	font-weight: 800;
	color: var(--text-primary);
	margin-bottom: 8px;
	letter-spacing: -0.5px;
}

#section-companies .company-slogan {
	font-size: 0.9rem;
	font-weight: 600;
	color: var(--brand-blue);
	text-transform: uppercase;
	letter-spacing: 0.5px;
	margin-bottom: 15px;
}

#section-companies .company-desc {
	font-size: 0.95rem;
	color: var(--text-secondary);
	line-height: 1.6;
	margin-bottom: 20px;
	min-height: 48px;
}

#section-companies .company-tags {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	justify-content: center;
	margin-top: 20px;
}

#section-companies .company-tag {
	display: inline-block;
	font-size: 0.8rem;
	font-weight: 600;
	color: var(--text-secondary);
	background: var(--bg-body);
	padding: 6px 14px;
	border-radius: 50px;
	border: 1px solid var(--border-subtle);
	transition: all 0.3s ease;
}

#section-companies .company-card:hover .company-tag {
	background: #fff;
	border-color: var(--brand-cyan);
	color: var(--brand-blue);
}

@media (max-width: 992px) {
	#section-companies .companies-grid {
		grid-template-columns: repeat(3, 1fr);
		gap: 20px;
		max-width: 800px;
	}
}

@media (max-width: 768px) {
	#section-companies {
		padding: 60px 16px;
	}

	#section-companies .section-header h2 {
		font-size: 1.6rem;
	}

	#section-companies .section-subtitle {
		font-size: 1rem;
		margin-bottom: 40px;
	}

	#section-companies .companies-grid {
		grid-template-columns: repeat(2, 1fr);
		gap: 15px;
		max-width: 500px;
	}

	#section-companies .company-card {
		padding: 30px 24px;
	}

	#section-companies .company-logo-wrapper {
		width: 100px;
		height: 100px;
		margin-bottom: 20px;
	}
}

/* =========================================
   PHẦN 2: TABCOM CARE (SHOPEE)
   ========================================= */
#section-care {
	--bg-body: #f1f5f9;
	--bg-card: #ffffff;
	--text-primary: #1e293b;
	--text-secondary: #64748b;
	--border-subtle: #e2e8f0;
	--brand-orange: #ee4d2d;
	--brand-blue: #0038FF;
	--status-bad-bg: #fef2f2;
	--status-bad-text: #dc2626;
	--status-good-bg: #f0fdf4;
	--status-good-text: #16a34a;
	--shadow-sm: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -1px rgba(0, 0, 0, 0.03);
	--shadow-md: 0 10px 25px -5px rgba(0, 0, 0, 0.05), 0 8px 10px -6px rgba(0, 0, 0, 0.01);
	--shadow-hover: 0 20px 40px -5px rgba(238, 77, 45, 0.15);

	background-color: var(--bg-body);
	background-image: radial-gradient(#cbd5e1 1.5px, transparent 1.5px);
	background-size: 32px 32px;
	color: var(--text-primary);
}

#section-care .container {
	max-width: 1200px;
	width: 100%;
	display: grid;
	grid-template-columns: 1fr 360px;
	gap: 40px;
}

#section-care .main-col {
	display: flex;
	flex-direction: column;
	gap: 40px;
}

#section-care .section-header {
	display: flex;
	align-items: center;
	gap: 12px;
	margin-bottom: 20px;
}

#section-care .section-header h2 {
	font-size: 1.5rem;
	font-weight: 800;
	color: var(--text-primary);
	margin: 0;
}

#section-care .section-header i {
	color: var(--brand-orange);
	font-size: 1.5rem;
}

#section-care .comparison-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 25px;
}

#section-care .comp-card {
	background: var(--bg-card);
	border-radius: 20px;
	padding: 30px;
	box-shadow: var(--shadow-sm);
	border: 1px solid var(--border-subtle);
	transition: all 0.3s ease;
}

#section-care .comp-card:hover {
	transform: translateY(-5px);
	box-shadow: var(--shadow-md);
}

#section-care .card-bad {
	background-color: var(--status-bad-bg);
	border-color: #fecaca;
}

#section-care .card-bad h3 {
	color: var(--status-bad-text);
	display: flex;
	align-items: center;
	gap: 10px;
	font-size: 1.2rem;
	margin-bottom: 20px;
	font-weight: 700;
}

#section-care .card-good {
	background-color: var(--status-good-bg);
	border-color: #bbf7d0;
}

#section-care .card-good h3 {
	color: var(--status-good-text);
	display: flex;
	align-items: center;
	gap: 10px;
	font-size: 1.2rem;
	margin-bottom: 20px;
	font-weight: 700;
}

#section-care .comp-list {
	list-style: none;
}

#section-care .comp-list li {
	font-size: 1rem;
	color: var(--text-secondary);
	margin-bottom: 12px;
	padding-left: 24px;
	position: relative;
	font-weight: 500;
}

#section-care .comp-list li::before {
	content: "\f00c";
	font-family: "Font Awesome 6 Free";
	font-weight: 900;
	position: absolute;
	left: 0;
	top: 2px;
	font-size: 1rem;
}

#section-care .card-bad .comp-list li::before {
	content: "\f00d";
	color: var(--status-bad-text);
}

#section-care .card-good .comp-list li::before {
	color: var(--status-good-text);
}

#section-care .solutions-box {
	background: var(--bg-card);
	border-radius: 20px;
	padding: 30px;
	box-shadow: var(--shadow-sm);
	border: 1px solid var(--border-subtle);
	display: flex;
	align-items: center;
	gap: 25px;
	flex-wrap: wrap;
}

#section-care .sol-label {
	font-size: 1.1rem;
	font-weight: 800;
	color: var(--text-primary);
	display: flex;
	align-items: center;
	gap: 10px;
	white-space: nowrap;
}

#section-care .sol-label i {
	color: var(--brand-orange);
}

#section-care .tags-container {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
}

#section-care .tag {
	background: #fff;
	color: var(--text-secondary);
	padding: 10px 20px;
	border-radius: 50px;
	font-size: 0.95rem;
	font-weight: 600;
	border: 1px solid var(--border-subtle);
	transition: 0.3s;
	cursor: default;
	box-shadow: var(--shadow-sm);
}

#section-care .tag:hover {
	border-color: var(--brand-orange);
	color: var(--brand-orange);
	background: #fff7f5;
	transform: translateY(-2px);
}

#section-care .history-card {
	background: var(--bg-card);
	border-radius: 24px;
	padding: 40px;
	box-shadow: var(--shadow-sm);
	border: 1px solid var(--border-subtle);
}

#section-care .timeline-mini {
	position: relative;
	padding-left: 30px;
}

#section-care .timeline-mini::before {
	content: '';
	position: absolute;
	left: 9px;
	top: 5px;
	bottom: 0;
	width: 2px;
	background: linear-gradient(to bottom, var(--brand-orange), var(--border-subtle));
}

#section-care .tl-item {
	margin-bottom: 35px;
	position: relative;
}

#section-care .tl-item:last-child {
	margin-bottom: 0;
}

#section-care .tl-dot {
	position: absolute;
	left: -30px;
	top: 5px;
	width: 18px;
	height: 18px;
	background: #fff;
	border: 4px solid var(--brand-orange);
	border-radius: 50%;
	z-index: 1;
}

#section-care .tl-date {
	font-size: 1.1rem;
	color: var(--brand-orange);
	font-weight: 800;
	margin-bottom: 8px;
	display: block;
}

#section-care .tl-content {
	font-size: 1rem;
	color: var(--text-secondary);
	background: #f8fafc;
	padding: 15px 20px;
	border-radius: 12px;
	border: 1px solid var(--border-subtle);
}

#section-care .tl-content strong {
	color: var(--text-primary);
	font-weight: 700;
}

#section-care .growth-bar-container {
	margin-top: 40px;
}

#section-care .growth-bar {
	background: var(--border-subtle);
	height: 8px;
	border-radius: 4px;
	position: relative;
	overflow: hidden;
}

#section-care .growth-fill {
	position: absolute;
	left: 0;
	top: 0;
	bottom: 0;
	width: 90%;
	background: linear-gradient(90deg, #fb923c, var(--brand-orange));
	border-radius: 4px;
}

#section-care .growth-labels {
	display: flex;
	justify-content: space-between;
	margin-top: 12px;
	font-size: 0.9rem;
	color: var(--text-secondary);
	font-weight: 600;
}

#section-care .growth-labels strong {
	color: var(--brand-orange);
}

#section-care .sidebar-card {
	background: var(--bg-card);
	border-radius: 24px;
	padding: 40px 30px;
	text-align: center;
	position: sticky;
	top: 40px;
	box-shadow: var(--shadow-md);
	border: 1px solid var(--border-subtle);
	border-top: 5px solid var(--brand-orange);
}

#section-care .sidebar-logo-box {
	width: 140px;
	margin: 0 auto 25px;
	display: block;
}

#section-care .sb-title {
	font-size: 1.8rem;
	font-weight: 900;
	margin-bottom: 5px;
	color: var(--brand-orange);
}

#section-care .sb-subtitle {
	font-size: 0.85rem;
	text-transform: uppercase;
	letter-spacing: 1.5px;
	color: var(--text-secondary);
	margin-bottom: 30px;
	font-weight: 700;
	display: block;
}

#section-care .sb-quote {
	font-size: 1rem;
	color: var(--text-primary);
	line-height: 1.6;
	margin-bottom: 35px;
	padding: 20px;
	background: #fff7f5;
	border-radius: 16px;
	font-weight: 500;
	border: 1px dashed var(--brand-orange);
}

#section-care .sb-quote i {
	color: var(--brand-orange);
	margin-right: 8px;
}

#section-care .stats-row {
	display: flex;
	justify-content: space-between;
	border-top: 1px solid var(--border-subtle);
	padding-top: 30px;
}

#section-care .stat-item {
	text-align: center;
	flex: 1;
}

#section-care .stat-num {
	font-size: 2rem;
	font-weight: 800;
	color: var(--text-primary);
	display: block;
	line-height: 1;
	margin-bottom: 5px;
}

#section-care .stat-label {
	font-size: 0.8rem;
	color: var(--text-secondary);
	text-transform: uppercase;
	font-weight: 600;
}

#section-care .sb-btn {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	margin-top: 35px;
	background: var(--brand-orange);
	color: white;
	padding: 18px;
	border-radius: 50px;
	text-decoration: none;
	font-weight: 800;
	font-size: 1.1rem;
	transition: all 0.3s;
	box-shadow: 0 10px 20px -5px rgba(238, 77, 45, 0.4);
}

#section-care .sb-btn:hover {
	background: #d03e22;
	transform: translateY(-3px);
	box-shadow: 0 15px 30px -5px rgba(238, 77, 45, 0.6);
	text-decoration: none;
	color: white;
}

@media (max-width: 992px) {
	#section-care .container {
		grid-template-columns: 1fr;
	}

	#section-care .comparison-grid {
		grid-template-columns: 1fr;
	}

	#section-care .sidebar-card {
		position: relative;
		top: 0;
		order: -1;
		margin-bottom: 30px;
	}

	#section-care .sidebar-logo-box {
		width: 120px;
	}
}

/* =========================================
   PHẦN 3: TABCOM WIN (TIKTOK)
   ========================================= */
#section-win {
	--bg-body: #f1f5f9;
	--bg-card: #ffffff;
	--tiktok-black: #000000;
	--tiktok-cyan: #25F4EE;
	--tiktok-pink: #FE2C55;
	--tiktok-gradient: linear-gradient(90deg, #25F4EE, #FE2C55);
	--text-primary: #1e293b;
	--text-secondary: #64748b;
	--border-subtle: #e2e8f0;
	--shadow-card: 0 10px 30px -5px rgba(0, 0, 0, 0.05);
	--shadow-hover: 0 20px 40px -5px rgba(0, 0, 0, 0.1);

	background-color: var(--bg-body);
	background-image: radial-gradient(#cbd5e1 1.5px, transparent 1.5px);
	background-size: 32px 32px;
	color: var(--text-primary);
}

#section-win .container {
	max-width: 1200px;
	width: 100%;
	display: grid;
	grid-template-columns: 1fr 380px;
	gap: 40px;
}

#section-win .main-col {
	display: flex;
	flex-direction: column;
	gap: 40px;
}

#section-win .section-header {
	display: flex;
	align-items: center;
	gap: 12px;
	margin-bottom: 10px;
}

#section-win .section-header h2 {
	font-size: 1.6rem;
	font-weight: 800;
	margin: 0;
}

#section-win .section-header i {
	color: var(--tiktok-black);
	text-shadow: 2px 2px 0px var(--tiktok-cyan), -2px -2px 0px var(--tiktok-pink);
	font-size: 1.8rem;
}

#section-win .feature-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 25px;
}

#section-win .feature-card {
	background: var(--bg-card);
	border-radius: 24px;
	padding: 30px;
	box-shadow: var(--shadow-card);
	border: 1px solid var(--border-subtle);
	position: relative;
	overflow: hidden;
	transition: 0.3s;
}

#section-win .feature-card:hover {
	transform: translateY(-5px);
	box-shadow: var(--shadow-hover);
}

#section-win .icon-circle {
	width: 50px;
	height: 50px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 1.2rem;
	margin-bottom: 20px;
}

#section-win .card-problem .icon-circle {
	background: rgba(254, 44, 85, 0.1);
	color: var(--tiktok-pink);
}

#section-win .card-problem h3 {
	margin-bottom: 10px;
	color: var(--tiktok-pink);
	font-weight: 700;
}

#section-win .card-solution .icon-circle {
	background: rgba(37, 244, 238, 0.1);
	color: #0ea5e9;
}

#section-win .card-solution h3 {
	margin-bottom: 10px;
	color: #0891b2;
	font-weight: 700;
}

#section-win .feature-desc {
	font-size: 0.95rem;
	color: var(--text-secondary);
}

#section-win .usp-box {
	background: var(--tiktok-black);
	color: #fff;
	border-radius: 24px;
	padding: 40px;
	position: relative;
	overflow: hidden;
	display: flex;
	align-items: center;
	justify-content: space-between;
}

#section-win .usp-box::before {
	content: '';
	position: absolute;
	top: -50px;
	right: -50px;
	width: 200px;
	height: 200px;
	background: linear-gradient(135deg, var(--tiktok-cyan), var(--tiktok-pink));
	filter: blur(60px);
	opacity: 0.3;
}

#section-win .usp-content {
	flex: 1;
	position: relative;
	z-index: 2;
}

#section-win .usp-content h3 {
	font-size: 1.5rem;
	margin-bottom: 15px;
}

#section-win .usp-list {
	list-style: none;
	padding: 0;
}

#section-win .usp-list li {
	margin-bottom: 10px;
	display: flex;
	align-items: center;
	gap: 10px;
}

#section-win .usp-list i {
	color: var(--tiktok-cyan);
}

#section-win .usp-feature-img {
	width: 200px;
	height: auto;
	border-radius: 16px;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
	margin-left: 30px;
	border: 2px solid rgba(255, 255, 255, 0.1);
	position: relative;
	z-index: 2;
	object-fit: cover;
}

#section-win .history-section {
	background: var(--bg-card);
	border-radius: 24px;
	padding: 35px;
	box-shadow: var(--shadow-card);
	border: 1px solid var(--border-subtle);
}

#section-win .timeline {
	position: relative;
	padding-left: 30px;
	margin-top: 20px;
}

#section-win .timeline::before {
	content: '';
	position: absolute;
	left: 9px;
	top: 5px;
	bottom: 0;
	width: 2px;
	background: linear-gradient(to bottom, var(--tiktok-cyan), var(--tiktok-pink));
}

#section-win .tl-item {
	margin-bottom: 30px;
	position: relative;
}

#section-win .tl-dot {
	position: absolute;
	left: -30px;
	top: 5px;
	width: 18px;
	height: 18px;
	background: #fff;
	border: 4px solid var(--tiktok-black);
	border-radius: 50%;
}

#section-win .tl-date {
	font-weight: 800;
	font-size: 1.1rem;
	margin-bottom: 5px;
	display: block;
	background: var(--tiktok-gradient);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}

#section-win .tl-text {
	font-size: 1rem;
	color: var(--text-secondary);
	background: #f8fafc;
	padding: 15px;
	border-radius: 12px;
}

#section-win .tl-text strong {
	color: var(--text-primary);
}

#section-win .sidebar-card {
	background: var(--bg-card);
	border-radius: 24px;
	padding: 40px 30px;
	text-align: center;
	position: sticky;
	top: 40px;
	box-shadow: var(--shadow-card);
	border: 1px solid var(--border-subtle);
	border-top: 5px solid transparent;
	border-image: var(--tiktok-gradient) 1;
}

#section-win .sidebar-card::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 5px;
	background: var(--tiktok-gradient);
	border-radius: 24px 24px 0 0;
}

#section-win .sidebar-logo-img {
	width: 180px;
	height: auto;
	margin: 0 auto 25px;
	display: block;
	transition: transform 0.3s ease;
}

#section-win .sidebar-logo-img:hover {
	transform: scale(1.05);
}

#section-win .sb-title {
	font-size: 1.8rem;
	font-weight: 900;
	margin-bottom: 5px;
	color: var(--tiktok-black);
	position: relative;
	display: inline-block;
}

#section-win .sb-title:hover {
	animation: win-glitch 0.3s cubic-bezier(.25, .46, .45, .94) both infinite;
	color: var(--tiktok-pink);
}

@keyframes win-glitch {
	0% { transform: translate(0); }
	20% { transform: translate(-2px, 2px); }
	40% { transform: translate(-2px, -2px); }
	60% { transform: translate(2px, 2px); }
	80% { transform: translate(2px, -2px); }
	100% { transform: translate(0); }
}

#section-win .sb-subtitle {
	font-size: 0.8rem;
	text-transform: uppercase;
	letter-spacing: 1px;
	color: var(--text-secondary);
	font-weight: 700;
	display: block;
	margin-bottom: 30px;
}

#section-win .stats-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 15px;
	margin-bottom: 30px;
}

#section-win .stat-box {
	background: #f8fafc;
	padding: 15px;
	border-radius: 12px;
}

#section-win .stat-num {
	font-size: 1.5rem;
	font-weight: 800;
	display: block;
	color: var(--tiktok-black);
}

#section-win .stat-label {
	font-size: 0.75rem;
	color: var(--text-secondary);
	text-transform: uppercase;
}

#section-win .cta-btn {
	display: block;
	padding: 18px;
	border-radius: 50px;
	background: var(--tiktok-black);
	color: #fff;
	text-decoration: none;
	font-weight: 700;
	transition: 0.3s;
	position: relative;
	overflow: hidden;
}

#section-win .cta-btn:hover {
	transform: translateY(-3px);
	box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
	text-decoration: none;
	color: #fff;
}

#section-win .cta-btn::after {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: var(--tiktok-gradient);
	opacity: 0;
	transition: 0.3s;
	z-index: 0;
}

#section-win .cta-btn:hover::after {
	opacity: 1;
}

#section-win .cta-btn span {
	position: relative;
	z-index: 1;
}

@media (max-width: 900px) {
	#section-win .container {
		grid-template-columns: 1fr;
	}

	#section-win .sidebar-card {
		order: -1;
	}

	#section-win .feature-grid {
		grid-template-columns: 1fr;
	}

	#section-win .usp-box {
		flex-direction: column;
		text-align: center;
	}

	#section-win .usp-feature-img {
		margin: 30px 0 0 0;
		width: 100%;
		max-width: 300px;
	}
}

/* =========================================
   PHẦN 4: TABCOM SELLER (RESCUE)
   ========================================= */
#section-seller {
	--bg-body: #f1f5f9;
	--bg-card: #ffffff;
	--tech-blue: #2563eb;
	--tech-indigo: #4f46e5;
	--tech-gradient: linear-gradient(135deg, #2563eb, #4f46e5);
	--text-primary: #1e293b;
	--text-secondary: #64748b;
	--border-subtle: #e2e8f0;
	--shadow-card: 0 10px 30px -5px rgba(0, 0, 0, 0.05);
	--shadow-hover: 0 20px 40px -5px rgba(37, 99, 235, 0.15);

	background-color: var(--bg-body);
	background-image: radial-gradient(#cbd5e1 1.5px, transparent 1.5px);
	background-size: 32px 32px;
	color: var(--text-primary);
}

#section-seller .container {
	max-width: 1200px;
	width: 100%;
	display: grid;
	grid-template-columns: 1fr 380px;
	gap: 40px;
}

#section-seller .main-col {
	display: flex;
	flex-direction: column;
	gap: 40px;
}

#section-seller .hero-box {
	background: var(--bg-card);
	border-radius: 24px;
	padding: 40px;
	box-shadow: var(--shadow-card);
	border: 1px solid var(--border-subtle);
	position: relative;
	overflow: hidden;
}

#section-seller .service-tag {
	display: inline-block;
	background: rgba(37, 99, 235, 0.1);
	color: var(--tech-blue);
	font-weight: 700;
	font-size: 0.8rem;
	padding: 6px 12px;
	border-radius: 6px;
	text-transform: uppercase;
	margin-bottom: 15px;
}

#section-seller .hero-title {
	font-size: 2rem;
	font-weight: 900;
	margin-bottom: 10px;
	background: var(--tech-gradient);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}

#section-seller .hero-subtitle {
	font-size: 1.2rem;
	font-weight: 700;
	color: var(--text-primary);
	margin-bottom: 20px;
}

#section-seller .hero-desc {
	color: var(--text-secondary);
	margin-bottom: 30px;
	font-size: 1rem;
}

#section-seller .hero-btn {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	background: var(--tech-gradient);
	color: #fff;
	padding: 12px 24px;
	border-radius: 50px;
	text-decoration: none;
	font-weight: 700;
	transition: 0.3s;
	box-shadow: 0 5px 15px rgba(37, 99, 235, 0.3);
}

#section-seller .hero-btn:hover {
	transform: translateY(-3px);
	box-shadow: 0 10px 25px rgba(37, 99, 235, 0.4);
	text-decoration: none;
	color: #fff;
}

#section-seller .stats-section {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 20px;
}

#section-seller .stat-card {
	background: var(--bg-card);
	border-radius: 20px;
	padding: 30px;
	border: 1px solid var(--border-subtle);
	position: relative;
	overflow: hidden;
	transition: all 0.3s ease;
	box-shadow: var(--shadow-card);
}

#section-seller .stat-card:hover {
	transform: translateY(-5px);
	border-color: var(--tech-blue);
	box-shadow: var(--shadow-hover);
}

#section-seller .stat-bg-icon {
	position: absolute;
	top: -10px;
	right: -10px;
	font-size: 5rem;
	color: var(--tech-blue);
	opacity: 0.05;
	transform: rotate(15deg);
	transition: 0.3s;
}

#section-seller .stat-card:hover .stat-bg-icon {
	transform: rotate(0deg) scale(1.1);
	opacity: 0.1;
}

#section-seller .stat-header {
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
	margin-bottom: 15px;
}

#section-seller .stat-icon-small {
	width: 40px;
	height: 40px;
	border-radius: 10px;
	background: #eff6ff;
	color: var(--tech-blue);
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 1.2rem;
}

#section-seller .stat-number {
	font-size: 2.5rem;
	font-weight: 800;
	color: var(--text-primary);
	line-height: 1;
	margin-bottom: 5px;
	display: block;
}

#section-seller .stat-label {
	font-size: 1rem;
	font-weight: 700;
	color: var(--tech-indigo);
	margin-bottom: 5px;
	display: block;
}

#section-seller .stat-desc {
	font-size: 0.85rem;
	color: var(--text-secondary);
}

#section-seller .sidebar-card {
	background: var(--bg-card);
	border-radius: 24px;
	padding: 40px 30px;
	text-align: center;
	position: sticky;
	top: 40px;
	box-shadow: var(--shadow-card);
	border: 1px solid var(--border-subtle);
	border-top: 5px solid var(--tech-blue);
}

#section-seller .sidebar-logo-img {
	width: 180px;
	height: auto;
	margin: 0 auto 25px;
	display: block;
	transition: transform 0.3s;
}

#section-seller .sidebar-logo-img:hover {
	transform: scale(1.05);
}

#section-seller .sb-title {
	font-size: 1.6rem;
	font-weight: 900;
	margin-bottom: 5px;
	color: var(--tech-blue);
}

#section-seller .sb-subtitle {
	font-size: 0.8rem;
	text-transform: uppercase;
	letter-spacing: 1px;
	color: var(--text-secondary);
	font-weight: 700;
	display: block;
	margin-bottom: 30px;
}

#section-seller .ceo-box {
	background: #f8fafc;
	padding: 20px;
	border-radius: 16px;
	margin-bottom: 30px;
	border: 1px solid var(--border-subtle);
}

#section-seller .ceo-label {
	font-size: 0.75rem;
	text-transform: uppercase;
	color: var(--text-secondary);
	margin-bottom: 5px;
	display: block;
}

#section-seller .ceo-name {
	font-size: 1.2rem;
	font-weight: 800;
	color: var(--text-primary);
}

#section-seller .ceo-team {
	font-size: 0.9rem;
	color: var(--tech-indigo);
	font-weight: 600;
	margin-top: 5px;
}

#section-seller .service-list {
	list-style: none;
	text-align: left;
	margin-bottom: 30px;
}

#section-seller .service-list li {
	padding: 10px 0;
	border-bottom: 1px dashed var(--border-subtle);
	color: var(--text-secondary);
	font-size: 0.95rem;
	display: flex;
	align-items: center;
	gap: 10px;
}

#section-seller .service-list li i {
	color: var(--tech-blue);
}

#section-seller .service-list li:last-child {
	border-bottom: none;
}

#section-seller .cta-btn {
	display: block;
	padding: 16px;
	border-radius: 12px;
	background: #eff6ff;
	color: var(--tech-blue);
	text-decoration: none;
	font-weight: 700;
	border: 1px solid rgba(37, 99, 235, 0.2);
	transition: 0.3s;
}

#section-seller .cta-btn:hover {
	background: var(--tech-blue);
	color: #fff;
	text-decoration: none;
}

@media (max-width: 900px) {
	#section-seller .container {
		grid-template-columns: 1fr;
	}

	#section-seller .sidebar-card {
		order: -1;
	}

	#section-seller .stats-section {
		grid-template-columns: 1fr;
	}
}

/* =========================================
   PHẦN 5: TABCOM AGENCY (MEDIA)
   ========================================= */
#section-agency {
	--bg-body: #f1f5f9;
	--bg-card: #ffffff;
	--media-purple: #8b5cf6;
	--media-pink: #ec4899;
	--media-gradient: linear-gradient(135deg, #8b5cf6, #ec4899);
	--text-primary: #1e293b;
	--text-secondary: #64748b;
	--border-subtle: #e2e8f0;
	--shadow-card: 0 10px 30px -5px rgba(0, 0, 0, 0.05);
	--shadow-hover: 0 20px 40px -5px rgba(139, 92, 246, 0.2);

	background-color: var(--bg-body);
	background-image: radial-gradient(#cbd5e1 1.5px, transparent 1.5px);
	background-size: 32px 32px;
	color: var(--text-primary);
}

#section-agency .container {
	max-width: 1200px;
	width: 100%;
	display: grid;
	grid-template-columns: 1fr 380px;
	gap: 40px;
}

#section-agency .main-col {
	display: flex;
	flex-direction: column;
	gap: 40px;
}

#section-agency .hero-box {
	background: var(--bg-card);
	border-radius: 24px;
	padding: 40px;
	box-shadow: var(--shadow-card);
	border: 1px solid var(--border-subtle);
	position: relative;
	overflow: hidden;
}

#section-agency .live-icon {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	background: rgba(236, 72, 153, 0.1);
	color: var(--media-pink);
	padding: 6px 16px;
	border-radius: 50px;
	font-weight: 700;
	font-size: 0.85rem;
	margin-bottom: 20px;
}

#section-agency .live-dot {
	width: 8px;
	height: 8px;
	background: var(--media-pink);
	border-radius: 50%;
	animation: livePulse 1.5s infinite;
}

@keyframes livePulse {
	0% { opacity: 1; transform: scale(1); }
	50% { opacity: 0.5; transform: scale(1.5); }
	100% { opacity: 1; transform: scale(1); }
}

#section-agency .hero-title {
	font-size: 2rem;
	font-weight: 900;
	margin-bottom: 10px;
	background: var(--media-gradient);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}

#section-agency .hero-subtitle {
	font-size: 1.2rem;
	font-weight: 700;
	color: var(--text-primary);
	margin-bottom: 20px;
}

#section-agency .hero-desc {
	color: var(--text-secondary);
	margin-bottom: 30px;
	font-size: 1rem;
}

#section-agency .stats-list {
	display: flex;
	flex-direction: column;
	gap: 20px;
}

#section-agency .stat-item {
	display: flex;
	align-items: center;
	gap: 25px;
	background: #f8fafc;
	padding: 25px;
	border-radius: 16px;
	border: 1px solid var(--border-subtle);
	transition: 0.3s;
}

#section-agency .stat-item:hover {
	transform: translateX(10px);
	background: #fff;
	box-shadow: var(--shadow-hover);
	border-color: var(--media-purple);
}

#section-agency .stat-icon-box {
	width: 60px;
	height: 60px;
	border-radius: 14px;
	background: linear-gradient(135deg, #f3e8ff, #fce7f3);
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 1.5rem;
	color: var(--media-purple);
	flex-shrink: 0;
}

#section-agency .stat-info h3 {
	font-size: 1.5rem;
	font-weight: 800;
	color: var(--text-primary);
	line-height: 1.2;
	margin-bottom: 4px;
}

#section-agency .stat-info p {
	font-size: 0.95rem;
	color: var(--text-secondary);
	margin: 0;
}

#section-agency .sidebar-card {
	background: var(--bg-card);
	border-radius: 24px;
	padding: 40px 30px;
	text-align: center;
	position: sticky;
	top: 40px;
	box-shadow: var(--shadow-card);
	border: 1px solid var(--border-subtle);
	border-top: 5px solid transparent;
	border-image: var(--media-gradient) 1;
}

#section-agency .sidebar-card::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 5px;
	background: var(--media-gradient);
	border-radius: 24px 24px 0 0;
}

#section-agency .sidebar-logo-img {
	width: 180px;
	height: auto;
	margin: 0 auto 25px;
	display: block;
	transition: transform 0.3s;
}

#section-agency .sidebar-logo-img:hover {
	transform: scale(1.05);
	filter: drop-shadow(0 0 10px rgba(139, 92, 246, 0.3));
}

#section-agency .sb-title {
	font-size: 1.6rem;
	font-weight: 900;
	margin-bottom: 5px;
	color: var(--media-purple);
}

#section-agency .sb-subtitle {
	font-size: 0.8rem;
	text-transform: uppercase;
	letter-spacing: 1px;
	color: var(--text-secondary);
	font-weight: 700;
	display: block;
	margin-bottom: 30px;
}

#section-agency .ceo-box {
	background: linear-gradient(to right, #f3e8ff, #fce7f3);
	padding: 20px;
	border-radius: 16px;
	margin-bottom: 30px;
	border: 1px solid rgba(255, 255, 255, 0.5);
}

#section-agency .ceo-label {
	font-size: 0.75rem;
	text-transform: uppercase;
	color: var(--text-secondary);
	margin-bottom: 5px;
	display: block;
}

#section-agency .ceo-name {
	font-size: 1.2rem;
	font-weight: 800;
	color: var(--text-primary);
}

#section-agency .ceo-role {
	font-size: 0.9rem;
	color: var(--media-pink);
	font-weight: 600;
}

#section-agency .tags-cloud {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 8px;
	margin-bottom: 35px;
}

#section-agency .tag {
	font-size: 0.85rem;
	padding: 6px 14px;
	border-radius: 50px;
	background: #f1f5f9;
	color: var(--text-secondary);
	font-weight: 600;
	transition: 0.3s;
	border: 1px solid transparent;
}

#section-agency .tag:hover {
	background: #fff;
	color: var(--media-purple);
	border-color: var(--media-purple);
	box-shadow: 0 4px 10px rgba(139, 92, 246, 0.2);
}

#section-agency .cta-btn {
	display: block;
	padding: 16px;
	border-radius: 50px;
	background: var(--media-gradient);
	color: white;
	text-decoration: none;
	font-weight: 700;
	transition: 0.3s;
	position: relative;
	overflow: hidden;
}

#section-agency .cta-btn:hover {
	transform: translateY(-3px);
	box-shadow: 0 10px 20px rgba(236, 72, 153, 0.3);
	text-decoration: none;
	color: white;
}

@media (max-width: 900px) {
	#section-agency .container {
		grid-template-columns: 1fr;
	}

	#section-agency .sidebar-card {
		order: -1;
	}
}

/* =========================================
   PHẦN 6: TABCOM ACADEMY (ĐÀO TẠO)
   ========================================= */
#section-academy {
	--bg-body: #f8fafc;
	--bg-card: #ffffff;
	--academy-blue: #1d4ed8;
	--academy-light-blue: #3b82f6;
	--academy-gold: #f59e0b;
	--gradient-text: linear-gradient(135deg, #1d4ed8, #2563eb);
	--text-primary: #1e293b;
	--text-secondary: #64748b;
	--border-subtle: #e2e8f0;
	--shadow-soft: 0 10px 40px -10px rgba(0, 0, 0, 0.08);
	--shadow-hover: 0 20px 50px -10px rgba(29, 78, 216, 0.2);

	background-color: var(--bg-body);
	background-image:
		radial-gradient(#cbd5e1 1px, transparent 1px),
		linear-gradient(to bottom right, #f1f5f9 0%, #e2e8f0 100%);
	background-size: 30px 30px, 100% 100%;
	color: var(--text-primary);
}

#section-academy .container {
	max-width: 1000px;
	width: 100%;
	position: relative;
}

#section-academy .academy-card {
	background: rgba(255, 255, 255, 0.9);
	backdrop-filter: blur(20px);
	-webkit-backdrop-filter: blur(20px);
	border-radius: 30px;
	padding: 60px 40px;
	box-shadow: var(--shadow-soft);
	border: 1px solid #fff;
	text-align: center;
	position: relative;
	overflow: hidden;
}

#section-academy .bg-deco {
	position: absolute;
	opacity: 0.05;
	z-index: 0;
	pointer-events: none;
}

#section-academy .deco-1 {
	top: -20px;
	left: -20px;
	font-size: 15rem;
	color: var(--academy-blue);
	transform: rotate(-15deg);
}

#section-academy .deco-2 {
	bottom: -50px;
	right: -20px;
	font-size: 12rem;
	color: var(--academy-gold);
	transform: rotate(15deg);
}

#section-academy .header-content {
	position: relative;
	z-index: 1;
	margin-bottom: 50px;
}

#section-academy .logo-img {
	width: 180px;
	height: auto;
	margin: 0 auto 25px;
	display: block;
	filter: drop-shadow(0 4px 6px rgba(0, 0, 0, 0.1));
}

#section-academy .main-title {
	font-size: 2.2rem;
	font-weight: 900;
	margin-bottom: 10px;
	color: var(--academy-blue);
	text-transform: uppercase;
	letter-spacing: -0.5px;
}

#section-academy .sub-title {
	font-size: 1.1rem;
	font-weight: 600;
	color: var(--academy-gold);
	text-transform: uppercase;
	letter-spacing: 2px;
	display: inline-block;
	padding: 5px 15px;
	background: #fffbeb;
	border-radius: 50px;
	border: 1px solid #fcd34d;
}

#section-academy .stats-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 25px;
	position: relative;
	z-index: 1;
	margin-bottom: 50px;
}

#section-academy .stat-box {
	background: #fff;
	border-radius: 20px;
	padding: 30px 20px;
	box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
	border: 1px solid var(--border-subtle);
	transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
	position: relative;
	overflow: hidden;
}

#section-academy .stat-box:hover {
	transform: translateY(-10px);
	box-shadow: var(--shadow-hover);
	border-color: var(--academy-light-blue);
}

#section-academy .stat-box::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 5px;
	background: var(--gradient-text);
}

#section-academy .stat-icon {
	font-size: 2rem;
	color: var(--academy-blue);
	margin-bottom: 15px;
	display: inline-block;
	background: #eff6ff;
	width: 60px;
	height: 60px;
	line-height: 60px;
	border-radius: 50%;
}

#section-academy .stat-num {
	font-size: 2.5rem;
	font-weight: 800;
	display: block;
	background: var(--gradient-text);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
	line-height: 1.1;
	margin-bottom: 5px;
}

#section-academy .stat-label {
	font-size: 0.9rem;
	font-weight: 700;
	color: var(--text-secondary);
	text-transform: uppercase;
}

#section-academy .desc-box {
	position: relative;
	z-index: 1;
	max-width: 800px;
	margin: 0 auto 40px;
}

#section-academy .desc-text {
	font-size: 1.05rem;
	color: var(--text-primary);
	margin-bottom: 20px;
}

#section-academy .highlight {
	color: var(--academy-blue);
	font-weight: 700;
}

#section-academy .achievements-list {
	text-align: left;
	background: #f8fafc;
	padding: 25px 30px;
	border-radius: 16px;
	border: 1px dashed var(--academy-light-blue);
	list-style: none;
}

#section-academy .achievements-list li {
	margin-bottom: 10px;
	position: relative;
	padding-left: 25px;
	color: var(--text-secondary);
	font-size: 0.95rem;
}

#section-academy .achievements-list li::before {
	content: "\f058";
	font-family: "Font Awesome 6 Free";
	font-weight: 900;
	position: absolute;
	left: 0;
	top: 3px;
	color: var(--academy-gold);
}

#section-academy .cta-btn {
	position: relative;
	z-index: 1;
	display: inline-block;
	background: var(--academy-blue);
	color: #fff;
	padding: 18px 40px;
	border-radius: 50px;
	text-decoration: none;
	font-weight: 700;
	font-size: 1.1rem;
	box-shadow: 0 10px 25px rgba(29, 78, 216, 0.4);
	transition: 0.3s;
}

#section-academy .cta-btn:hover {
	transform: translateY(-3px) scale(1.02);
	box-shadow: 0 15px 35px rgba(29, 78, 216, 0.5);
	background: #1e40af;
	text-decoration: none;
	color: #fff;
}

@media (max-width: 768px) {
	#section-academy .stats-grid {
		grid-template-columns: 1fr;
	}

	#section-academy .academy-card {
		padding: 40px 20px;
	}

	#section-academy .main-title {
		font-size: 1.8rem;
	}
}




/* =========================================
   COMPANY PROFILE SECTION - SHARED STYLES
   Dùng cho Tabcom Care, Tabcom Win và các công ty khác
   ========================================= */
.page-section.company-profile-section {
	--brand-blue: #0038FF;
	--brand-cyan: #01f3f8;
	--brand-green: #05e196;
	--bg-body: #eff2f5;
	--bg-card: #ffffff;
	--bg-highlight: #f8fafc;
	--text-primary: #1e293b;
	--text-secondary: #64748b;
	--border-subtle: #e2e8f0;
	--shadow-card: 0 4px 20px -5px rgba(0, 0, 0, 0.05);
	--shadow-hover: 0 10px 25px -5px rgba(18, 34, 152, 0.1);

	background-color: var(--bg-body);
	background-image: radial-gradient(#cbd5e1 1px, transparent 1px);
	background-size: 24px 24px;
	color: var(--text-primary);
}

#section-care.company-profile-section .container,
#section-win.company-profile-section .container,
.page-section.company-profile-section .container {
	max-width: 1200px;
	width: 100%;
	display: grid;
	grid-template-columns: 340px 1fr;
	gap: 40px;
}

.page-section.company-profile-section .sidebar-panel {
	background: var(--bg-card);
	border: 1px solid var(--border-subtle);
	border-radius: 24px;
	padding: 40px 30px;
	text-align: center;
	position: sticky;
	top: 40px;
	height: fit-content;
	box-shadow: var(--shadow-card);
}

.page-section.company-profile-section .logo-img {
	width: 160px;
	height: auto;
	margin-bottom: 25px;
	display: inline-block;
}

.page-section.company-profile-section .brand-name {
	font-size: 1.6rem;
	font-weight: 900;
	color: var(--brand-blue);
	margin-bottom: 5px;
	letter-spacing: -0.5px;
}

.page-section.company-profile-section .brand-slogan {
	font-size: 0.8rem;
	color: var(--brand-green);
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 1.5px;
	margin-bottom: 30px;
	display: block;
}

.page-section.company-profile-section .brand-intro {
	text-align: justify;
	font-size: 0.95rem;
	color: var(--text-secondary);
	margin-bottom: 30px;
	padding-bottom: 30px;
	border-bottom: 1px dashed var(--border-subtle);
}

.page-section.company-profile-section .badge {
	display: flex;
	align-items: center;
	gap: 15px;
	background: var(--bg-highlight);
	border: 1px solid var(--border-subtle);
	padding: 15px;
	border-radius: 16px;
	margin-bottom: 15px;
	transition: all 0.3s ease;
	text-align: left;
	position: relative;
	overflow: hidden;
}

.page-section.company-profile-section .badge:hover {
	border-color: var(--brand-cyan);
	background: #fff;
	box-shadow: 0 5px 15px rgba(1, 243, 248, 0.15);
	transform: translateY(-2px);
}

.page-section.company-profile-section .badge::before {
	content: '';
	position: absolute;
	left: 0;
	top: 0;
	bottom: 0;
	width: 4px;
	background: var(--brand-blue);
}

.page-section.company-profile-section .badge i {
	font-size: 1.6rem;
	color: var(--brand-blue);
	width: 30px;
	text-align: center;
}

.page-section.company-profile-section .badge h4 {
	font-size: 0.9rem;
	font-weight: 700;
	color: var(--text-primary);
	margin: 0;
}

.page-section.company-profile-section .badge span {
	font-size: 0.8rem;
	color: var(--text-secondary);
}

.page-section.company-profile-section .main-panel {
	background: var(--bg-card);
	border: 1px solid var(--border-subtle);
	border-radius: 24px;
	padding: 50px;
	box-shadow: var(--shadow-card);
}

.page-section.company-profile-section .section-header {
	margin-bottom: 30px;
	position: relative;
	padding-left: 20px;
	display: block !important;
}

.page-section.company-profile-section .section-header::before {
	content: '';
	position: absolute;
	left: 0;
	top: 5px;
	bottom: 5px;
	width: 5px;
	background: linear-gradient(to bottom, var(--brand-cyan), var(--brand-blue));
	border-radius: 3px;
}

.page-section.company-profile-section .section-header h2 {
	font-size: 1.8rem;
	color: var(--brand-blue);
	font-weight: 800;
	margin: 0;
	display: block;
}

.page-section.company-profile-section .section-header p {
	color: var(--text-secondary);
	font-size: 1rem;
	margin-top: 8px;
	display: block;
}

/* CEO Profile Card */
.page-section.company-profile-section .ceo-profile-section {
	margin-bottom: 50px;
}

.page-section.company-profile-section .ceo-profile-card {
	display: flex;
	gap: 30px;
	background: linear-gradient(135deg, #f0f9ff 0%, #f0fdfa 100%);
	border: 1px solid #e0f2fe;
	border-radius: 20px;
	padding: 30px;
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
	transition: all 0.3s ease;
}

.page-section.company-profile-section .ceo-profile-card:hover {
	transform: translateY(-3px);
	box-shadow: 0 10px 30px rgba(18, 34, 152, 0.1);
}

.page-section.company-profile-section .ceo-image-wrapper {
	flex-shrink: 0;
	width: 180px;
	height: 180px;
	border-radius: 50%;
	overflow: hidden;
	border: 4px solid transparent;
	background: linear-gradient(white, white) padding-box, linear-gradient(180deg, #001BE6 50%, #0FDEC9 100%) border-box;
	box-shadow: 0 8px 25px rgba(0, 27, 230, 0.3);
}

.page-section.company-profile-section .ceo-image {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: top;
}

.page-section.company-profile-section .ceo-info {
	flex: 1;
}

.page-section.company-profile-section .ceo-name {
	font-size: 1.8rem;
	font-weight: 900;
	color: var(--brand-blue);
	margin: 0 0 5px 0;
}

.page-section.company-profile-section .ceo-title {
	display: inline-block;
	font-size: 0.9rem;
	font-weight: 700;
	color: var(--brand-green);
	text-transform: uppercase;
	letter-spacing: 0.5px;
	margin-bottom: 15px;
	padding: 5px 15px;
	background: rgba(5, 225, 150, 0.1);
	border-radius: 20px;
}

.page-section.company-profile-section .ceo-bio {
	font-size: 0.95rem;
	color: #334155;
	line-height: 1.7;
	margin-bottom: 20px;
}

.page-section.company-profile-section .ceo-achievements {
	display: flex;
	flex-direction: column;
	gap: 10px;
}

.page-section.company-profile-section .achievement-item {
	display: flex;
	align-items: center;
	gap: 10px;
	font-size: 0.9rem;
	color: #475569;
}

.page-section.company-profile-section .achievement-item i {
	color: #0038FF;
	font-size: 1rem;
	width: 20px;
}

/* History Section - Timeline */
.page-section.company-profile-section .history-section {
	margin-top: 20px;
}

.page-section.company-profile-section .timeline-wrapper {
	position: relative;
	padding-left: 0;
	margin-top: 20px;
	max-width: 900px;
	margin-left: auto;
	margin-right: auto;
}

.page-section.company-profile-section .timeline-line {
	position: absolute;
	left: 50%;
	transform: translateX(-50%);
	top: 15px;
	bottom: 0;
	width: 3px;
	background: linear-gradient(to bottom, var(--brand-cyan), var(--brand-blue), transparent);
	z-index: 0;
}

.page-section.company-profile-section .timeline-event {
	position: relative;
	margin-bottom: 50px;
	width: calc(50% - 30px);
	opacity: 0;
	transform: translateY(30px);
	transition: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* Các item lẻ (1, 3) - bên trái */
.page-section.company-profile-section .timeline-event:nth-child(odd) {
	margin-left: 0;
	margin-right: auto;
	padding-right: 30px;
	text-align: right;
}

/* Các item chẵn (2, 4) - bên phải */
.page-section.company-profile-section .timeline-event:nth-child(even) {
	margin-left: auto;
	margin-right: 0;
	padding-left: 30px;
	text-align: left;
}

.page-section.company-profile-section .timeline-event.visible {
	opacity: 1;
	transform: translateY(0);
}

.page-section.company-profile-section .event-dot {
	position: absolute;
	top: 6px;
	width: 18px;
	height: 18px;
	background: #fff;
	border: 4px solid #0038FF;
	border-radius: 50%;
	z-index: 2;
	box-shadow: 0 0 0 4px rgba(255, 255, 255, 0.8);
	transition: all 0.3s;
}

/* Dot cho item lẻ - nằm ở giữa (bên phải của item) */
.page-section.company-profile-section .timeline-event:nth-child(odd) .event-dot {
	right: -39px;
	left: auto;
}

/* Dot cho item chẵn - nằm ở giữa (bên trái của item) */
.page-section.company-profile-section .timeline-event:nth-child(even) .event-dot {
	left: -39px;
	right: auto;
}

.page-section.company-profile-section .timeline-event:hover .event-dot {
	background: #0038FF;
	border-color: #0038FF;
	transform: scale(1.2);
}

.page-section.company-profile-section .event-dot.pulse {
	border-color: #0038FF;
	animation: company-pulse-ring 2s infinite;
}

@keyframes company-pulse-ring {
	0% { box-shadow: 0 0 0 0 rgba(0, 56, 255, 0.4); }
	70% { box-shadow: 0 0 0 10px rgba(0, 56, 255, 0); }
	100% { box-shadow: 0 0 0 0 rgba(0, 56, 255, 0); }
}

.page-section.company-profile-section .event-year {
	font-size: 2rem;
	font-weight: 900;
	color: var(--brand-blue);
	line-height: 1;
	display: block;
	margin-bottom: 8px;
}

.page-section.company-profile-section .event-title {
	font-size: 1.1rem;
	font-weight: 700;
	color: var(--brand-green);
	text-transform: uppercase;
	letter-spacing: 0.5px;
	margin-bottom: 15px;
	display: block;
}

.page-section.company-profile-section .event-desc {
	background: var(--bg-highlight);
	border: 1px solid var(--border-subtle);
	padding: 24px;
	border-radius: 16px;
	font-size: 1rem;
	color: var(--text-primary);
	position: relative;
	transition: all 0.3s ease;
	text-align: left;
}

.page-section.company-profile-section .event-desc:hover {
	border-color: var(--brand-cyan);
	background: #fff;
	box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

/* Responsive */
@media (max-width: 992px) {
	#section-care.company-profile-section .container,
	#section-win.company-profile-section .container,
	.page-section.company-profile-section .container {
		grid-template-columns: 1fr;
		gap: 30px;
	}

	.page-section.company-profile-section .sidebar-panel {
		position: relative;
		top: 0;
	}

	.page-section.company-profile-section .main-panel {
		padding: 30px;
	}

	.page-section.company-profile-section .logo-img {
		width: 140px;
		margin: 0 auto 20px;
		display: block;
	}
}

@media (max-width: 768px) {
	.page-section.company-profile-section .ceo-profile-card {
		flex-direction: column;
		align-items: center;
		text-align: center;
	}
	
	.page-section.company-profile-section .ceo-image-wrapper {
		width: 150px;
		height: 150px;
	}
	
	.page-section.company-profile-section .ceo-achievements {
		align-items: center;
	}
	
	.page-section.company-profile-section .achievement-item {
		justify-content: center;
	}

	/* Timeline về dạng 1 cột trên mobile */
	.page-section.company-profile-section .timeline-wrapper {
		max-width: 100%;
	}
	
	.page-section.company-profile-section .timeline-line {
		left: 15px;
		transform: none;
	}
	
	.page-section.company-profile-section .timeline-event {
		width: 100%;
		padding-left: 50px;
		padding-right: 0;
		text-align: left;
	}
	
	.page-section.company-profile-section .timeline-event:nth-child(odd),
	.page-section.company-profile-section .timeline-event:nth-child(even) {
		margin-left: 0;
		padding-left: 50px;
		padding-right: 0;
		text-align: left;
	}
	
	.page-section.company-profile-section .timeline-event:nth-child(odd) .event-dot,
	.page-section.company-profile-section .timeline-event:nth-child(even) .event-dot {
		left: 6px;
		right: auto;
	}
	
	.page-section.company-profile-section .event-year {
		font-size: 1.8rem;
	}
}


/* =========================================
   OVERRIDE OLD STYLES FOR CARE & WIN
   ========================================= */
#section-care.company-profile-section .section-header,
#section-win.company-profile-section .section-header {
	display: block !important;
	align-items: unset !important;
	gap: unset !important;
}

#section-care.company-profile-section .section-header h2,
#section-win.company-profile-section .section-header h2 {
	font-size: 1.8rem !important;
	color: var(--brand-blue) !important;
	display: block !important;
}

#section-care.company-profile-section .section-header p,
#section-win.company-profile-section .section-header p {
	display: block !important;
	margin-top: 8px !important;
}


/* =========================================
   OVERRIDE FOR SELLER, AGENCY, ACADEMY
   Đảm bảo sử dụng layout company-profile-section
   ========================================= */
#section-seller.company-profile-section .container,
#section-agency.company-profile-section .container,
#section-academy.company-profile-section .container {
	max-width: 1200px;
	width: 100%;
	display: grid;
	grid-template-columns: 340px 1fr;
	gap: 40px;
}

#section-seller.company-profile-section .section-header,
#section-agency.company-profile-section .section-header,
#section-academy.company-profile-section .section-header {
	display: block !important;
	align-items: unset !important;
	gap: unset !important;
}

#section-seller.company-profile-section .section-header h2,
#section-agency.company-profile-section .section-header h2,
#section-academy.company-profile-section .section-header h2 {
	font-size: 1.8rem !important;
	color: var(--brand-blue) !important;
	display: block !important;
}

#section-seller.company-profile-section .section-header p,
#section-agency.company-profile-section .section-header p,
#section-academy.company-profile-section .section-header p {
	display: block !important;
	margin-top: 8px !important;
}

@media (max-width: 992px) {
	#section-seller.company-profile-section .container,
	#section-agency.company-profile-section .container,
	#section-academy.company-profile-section .container {
		grid-template-columns: 1fr;
		gap: 30px;
	}
}


/* =========================================
   INSTRUCTORS GRID - TABCOM ACADEMY
   ========================================= */
.instructors-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 25px;
	margin-bottom: 40px;
}

.instructor-card {
	background: linear-gradient(135deg, #f0f9ff 0%, #f0fdfa 100%);
	border: 1px solid #e0f2fe;
	border-radius: 20px;
	padding: 25px 20px;
	text-align: center;
	transition: all 0.3s ease;
}

.instructor-card:hover {
	transform: translateY(-5px);
	box-shadow: 0 10px 30px rgba(0, 56, 255, 0.1);
	border-color: #0038FF;
}

.instructor-image-wrapper {
	width: 120px;
	height: 120px;
	border-radius: 50%;
	overflow: hidden;
	margin: 0 auto 15px;
	border: 4px solid transparent;
	background: linear-gradient(white, white) padding-box, linear-gradient(180deg, #001BE6 50%, #0FDEC9 100%) border-box;
	box-shadow: 0 5px 15px rgba(0, 27, 230, 0.2);
}

.instructor-image {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: top;
}

.instructor-name {
	font-size: 1.1rem;
	font-weight: 800;
	color: #0038FF;
	margin: 0 0 5px 0;
	font-family: 'SF Pro Display', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

.instructor-title {
	font-size: 0.85rem;
	color: #64748b;
	font-weight: 600;
}

.achievements-section {
	margin-top: 20px;
}

@media (max-width: 768px) {
	.instructors-grid {
		grid-template-columns: 1fr;
		gap: 20px;
	}
	
	.instructor-image-wrapper {
		width: 100px;
		height: 100px;
	}
}


/* =========================================
   CEO NAME FIX FOR SELLER, AGENCY, ACADEMY
   ========================================= */
#section-seller.company-profile-section .ceo-name,
#section-agency.company-profile-section .ceo-name,
#section-academy.company-profile-section .ceo-name {
	font-size: 1.8rem !important;
	font-weight: 900 !important;
	color: #0038FF !important;
	margin: 0 0 5px 0 !important;
	font-family: 'SF Pro Display', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif !important;
}

#section-seller.company-profile-section .ceo-title,
#section-agency.company-profile-section .ceo-title,
#section-academy.company-profile-section .ceo-title {
	display: inline-block !important;
	font-size: 0.9rem !important;
	font-weight: 700 !important;
	color: #05e196 !important;
	text-transform: uppercase !important;
	letter-spacing: 0.5px !important;
	margin-bottom: 15px !important;
	padding: 5px 15px !important;
	background: rgba(5, 225, 150, 0.1) !important;
	border-radius: 20px !important;
}

#section-seller.company-profile-section .ceo-profile-card,
#section-agency.company-profile-section .ceo-profile-card,
#section-academy.company-profile-section .ceo-profile-card {
	display: flex !important;
	gap: 30px !important;
	background: linear-gradient(135deg, #f0f9ff 0%, #f0fdfa 100%) !important;
	border: 1px solid #e0f2fe !important;
	border-radius: 20px !important;
	padding: 30px !important;
}

#section-seller.company-profile-section .ceo-image-wrapper,
#section-agency.company-profile-section .ceo-image-wrapper {
	flex-shrink: 0 !important;
	width: 180px !important;
	height: 180px !important;
	border-radius: 50% !important;
	overflow: hidden !important;
	border: 4px solid transparent !important;
	background: linear-gradient(white, white) padding-box, linear-gradient(180deg, #001BE6 50%, #0FDEC9 100%) border-box !important;
	box-shadow: 0 8px 25px rgba(0, 27, 230, 0.3) !important;
}

#section-seller.company-profile-section .ceo-image,
#section-agency.company-profile-section .ceo-image {
	width: 100% !important;
	height: 100% !important;
	object-fit: cover !important;
	object-position: top !important;
}





















/* =========================================
   OVERRIDE CSS CHO ACF BLOCK ECOSYSTEM
   Đảm bảo CSS được áp dụng đúng
   ========================================= */

/* Force font sizes to be at least 17px with high specificity */
.he-sinh-thai .he-sinh-thai__card-desc,
.he-sinh-thai .he-sinh-thai__card-link,
.page-section .he-sinh-thai__card-desc,
.page-section .he-sinh-thai__card-link {
	font-size: 17px !important;
}

/* Ensure card links are properly aligned */
.he-sinh-thai .he-sinh-thai__card-link,
.page-section .he-sinh-thai__card-link {
	display: block !important;
	text-align: center !important;
	width: 100% !important;
	padding: 12px 0 !important;
	border-top: 1px solid #f0f0f0 !important;
	margin-top: 16px !important;
	padding-top: 16px !important;
	font-size: 17px !important;
	font-weight: 600 !important;
}

/* Ensure cards have equal height */
.he-sinh-thai .he-sinh-thai__card,
.page-section .he-sinh-thai__card {
	min-height: 320px !important;
	display: flex !important;
	flex-direction: column !important;
	justify-content: space-between !important;
}

/* Grid layout for cards */
.he-sinh-thai .he-sinh-thai__grid,
.page-section .he-sinh-thai__grid {
	display: grid !important;
	gap: 32px !important;
	grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)) !important;
	margin-top: 40px !important;
	align-items: stretch !important;
}

/* Smooth scrolling */
html {
	scroll-behavior: smooth !important;
}

/* Scroll target positioning */
#he-sinh-thai-cards {
	scroll-margin-top: 120px !important;
	padding-top: 40px !important;
}

/* Button hover effects */
.ecosystem-hero-banner .btn-primary:hover {
	transform: translateY(-3px) !important;
	box-shadow: 0 12px 35px rgba(0, 56, 255, 0.4) !important;
}

/* Force minimum font sizes for all sections */
#section-care *:not(h1):not(h2):not(h3):not(h4):not(h5):not(h6),
#section-win *:not(h1):not(h2):not(h3):not(h4):not(h5):not(h6),
#section-seller *:not(h1):not(h2):not(h3):not(h4):not(h5):not(h6),
#section-agency *:not(h1):not(h2):not(h3):not(h4):not(h5):not(h6),
#section-academy *:not(h1):not(h2):not(h3):not(h4):not(h5):not(h6) {
	font-size: max(17px, 1rem) !important;
}

/* Specific overrides for small text elements */
.sb-subtitle,
.stat-label,
.ceo-label,
.service-tag,
.live-icon,
.tag,
.growth-labels,
.feature-desc,
.stat-desc,
.ceo-team,
.service-list li,
.stat-info p,
.ceo-role,
.achievements-list li,
.divider-label,
.brand-slogan,
.brand-intro,
.badge h4,
.badge span,
.ceo-title,
.ceo-bio,
.achievement-item,
.company-slogan,
.company-desc,
.company-tag,
.instructor-title {
	font-size: 17px !important;
}

/* Override all small font sizes in ecosystem sections */
.divider-label,
#section-group .brand-slogan,
#section-group .brand-intro,
#section-group .badge h4,
#section-group .badge span,
#section-group .ceo-title,
#section-group .ceo-bio,
#section-group .achievement-item,
#section-companies .company-slogan,
#section-companies .company-desc,
#section-companies .company-tag,
#section-care .tag,
#section-care .growth-labels,
#section-care .sb-subtitle,
#section-care .stat-label,
#section-win .feature-desc,
#section-win .sb-subtitle,
#section-win .stat-label,
#section-seller .service-tag,
#section-seller .stat-desc,
#section-seller .sb-subtitle,
#section-seller .ceo-label,
#section-seller .ceo-team,
#section-seller .service-list li,
#section-agency .live-icon,
#section-agency .stat-info p,
#section-agency .sb-subtitle,
#section-agency .ceo-label,
#section-agency .ceo-role,
#section-agency .tag,
#section-academy .stat-label,
#section-academy .achievements-list li,
.page-section.company-profile-section .brand-slogan,
.page-section.company-profile-section .brand-intro,
.page-section.company-profile-section .badge h4,
.page-section.company-profile-section .badge span,
.page-section.company-profile-section .ceo-title,
.page-section.company-profile-section .ceo-bio,
.page-section.company-profile-section .achievement-item,
.instructor-title {
	font-size: 17px !important;
}
/* =========================================
   JAVASCRIPT INLINE CHO SMOOTH SCROLLING
   ========================================= */


