/**
 * Setup TikTok Shop Page Styles
 * Dịch vụ Setup Gian Hàng TikTok Shop
 * Brand Colors: #0038FF, #001BE6, #0FDEC9
 * 
 * @package TabcomGroup
 */

/* ============================================
   CSS Variables
   ============================================ */
.setup-tiktok-page {
	--tiktok-primary: #0038FF;
	--tiktok-primary-dark: #001BE6;
	--tiktok-accent: #0FDEC9;
	--tiktok-gradient: linear-gradient(180deg, #0FDEC9 0%, #001BE6 100%);
	--tiktok-bg: #e8eef5;
	--tiktok-bg-alt: #f0f4f8;
	--tiktok-surface: #ffffff;
	--tiktok-text: #111618;
	--tiktok-text-muted: #637588;
	--tiktok-border: #d0d8e0;
	--tiktok-shadow: 0 4px 20px -2px rgba(0, 0, 0, 0.08);
	--tiktok-glow: 0 8px 25px rgba(0, 56, 255, 0.3);
	--font-heading: 'SF Pro Display', 'Be Vietnam Pro', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
	--font-body: 'Be Vietnam Pro', 'SF Pro Display', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

/* ============================================
   Base Styles
   ============================================ */
.setup-tiktok-page {
	background: var(--tiktok-bg);
	color: var(--tiktok-text);
	font-family: var(--font-body);
}

/* Typography - Headings with Vietnamese support */
.setup-tiktok-page h1,
.setup-tiktok-page h2,
.setup-tiktok-page h3,
.setup-tiktok-page h4 {
	font-family: var(--font-heading);
	font-weight: 800;
}

.setup-tiktok-page .container {
	max-width: 1280px;
	margin: 0 auto;
	padding: 0 16px;
}

@media (min-width: 768px) {
	.setup-tiktok-page .container {
		padding: 0 40px;
	}
}

/* Section Header */
.setup-tiktok-page .section-header {
	max-width: 800px;
	margin: 0 auto 48px;
	text-align: center;
}

.setup-tiktok-page .section-header--left {
	text-align: left;
	margin: 0 0 48px;
}

.setup-tiktok-page .section-header h2 {
	font-size: 28px;
	font-weight: 800;
	color: var(--tiktok-text);
	margin: 0 0 16px;
	font-family: var(--font-heading);
}

@media (min-width: 768px) {
	.setup-tiktok-page .section-header h2 {
		font-size: 36px;
	}
}

.setup-tiktok-page .section-header p {
	font-size: 16px;
	color: var(--tiktok-text-muted);
	margin: 0;
	max-width: 640px;
}

.setup-tiktok-page .section-header--left p {
	margin: 0;
}

.setup-tiktok-page .section-label {
	display: block;
	font-size: 14px;
	font-weight: 700;
	color: var(--tiktok-primary);
	text-transform: uppercase;
	letter-spacing: 1px;
	margin-bottom: 8px;
}

/* ============================================
   HERO SECTION
   ============================================ */
.setup-tiktok-hero {
	padding: 64px 0 80px;
	position: relative;
	overflow: hidden;
}

@media (min-width: 1024px) {
	.setup-tiktok-hero {
		padding: 96px 0 128px;
	}
}

.setup-tiktok-hero__bg-blob {
	position: absolute;
	border-radius: 50%;
	filter: blur(100px);
	pointer-events: none;
}

.setup-tiktok-hero__bg-blob--1 {
	top: 0;
	right: 0;
	width: 500px;
	height: 500px;
	background: rgba(0, 56, 255, 0.08);
	transform: translate(25%, -50%);
}

.setup-tiktok-hero__bg-blob--2 {
	bottom: 0;
	left: 0;
	width: 300px;
	height: 300px;
	background: rgba(15, 222, 201, 0.1);
	transform: translate(-25%, 25%);
}

.setup-tiktok-hero__grid {
	display: flex;
	flex-direction: column;
	gap: 40px;
	align-items: center;
	position: relative;
	z-index: 1;
}

@media (min-width: 1024px) {
	.setup-tiktok-hero__grid {
		flex-direction: row;
		gap: 64px;
	}
}

.setup-tiktok-hero__content {
	flex: 1;
	display: flex;
	flex-direction: column;
	gap: 24px;
	text-align: center;
}

@media (min-width: 1024px) {
	.setup-tiktok-hero__content {
		text-align: left;
	}
}

.setup-tiktok-hero__badge {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 6px 12px;
	background: rgba(0, 56, 255, 0.08);
	color: var(--tiktok-primary);
	font-size: 12px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.5px;
	border-radius: 50px;
	width: fit-content;
	margin: 0 auto;
}

/* Tabcom Win Logo */
.setup-tiktok-hero__logo {
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 16px;
}

@media (min-width: 1024px) {
	.setup-tiktok-hero__logo {
		justify-content: flex-start;
	}
}

.setup-tiktok-hero__logo img {
	height: 48px;
	width: auto;
}

@media (min-width: 768px) {
	.setup-tiktok-hero__logo img {
		height: 56px;
	}
}

@media (min-width: 1024px) {
	.setup-tiktok-hero__badge {
		margin: 0;
	}
}

.setup-tiktok-hero__badge .material-symbols-outlined {
	font-size: 14px;
}

.setup-tiktok-hero__title {
	font-size: 32px;
	font-weight: 800;
	line-height: 1.15;
	color: var(--tiktok-text);
	margin: 0;
	font-family: var(--font-heading);
}

@media (min-width: 768px) {
	.setup-tiktok-hero__title {
		font-size: 44px;
	}
}

@media (min-width: 1024px) {
	.setup-tiktok-hero__title {
		font-size: 52px;
	}
}

.setup-tiktok-hero__title .highlight {
	color: var(--tiktok-primary);
}

.setup-tiktok-hero__desc {
	font-size: 16px;
	color: var(--tiktok-text-muted);
	line-height: 1.7;
	margin: 0;
	max-width: 560px;
}

@media (min-width: 768px) {
	.setup-tiktok-hero__desc {
		font-size: 18px;
	}
}

@media (min-width: 1024px) {
	.setup-tiktok-hero__desc {
		margin: 0;
	}
}

.setup-tiktok-hero__features {
	display: flex;
	flex-wrap: wrap;
	gap: 16px;
	justify-content: center;
}

@media (min-width: 1024px) {
	.setup-tiktok-hero__features {
		justify-content: flex-start;
	}
}

.setup-tiktok-hero__feature {
	display: flex;
	align-items: center;
	gap: 6px;
	font-size: 14px;
	color: var(--tiktok-text-muted);
}

.setup-tiktok-hero__feature .material-symbols-outlined {
	color: var(--tiktok-primary);
	font-size: 18px;
}

.setup-tiktok-hero__buttons {
	display: flex;
	flex-wrap: wrap;
	gap: 16px;
	justify-content: center;
	margin-top: 8px;
}

@media (min-width: 1024px) {
	.setup-tiktok-hero__buttons {
		justify-content: flex-start;
	}
}

.setup-tiktok-page .btn-primary {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	height: 48px;
	padding: 0 32px;
	background: var(--tiktok-gradient);
	color: #fff;
	font-size: 15px;
	font-weight: 700;
	border-radius: 12px;
	text-decoration: none;
	box-shadow: var(--tiktok-glow);
	transition: all 0.3s ease;
}

.setup-tiktok-page .btn-primary:hover {
	transform: translateY(-2px);
	box-shadow: 0 12px 30px rgba(0, 56, 255, 0.4);
}

.setup-tiktok-page .btn-primary .material-symbols-outlined {
	font-size: 16px;
}

.setup-tiktok-page .btn-secondary {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	height: 48px;
	padding: 0 32px;
	background: var(--tiktok-surface);
	color: var(--tiktok-text);
	font-size: 15px;
	font-weight: 700;
	border: 2px solid rgba(0, 0, 0, 0.08);
	border-radius: 12px;
	text-decoration: none;
	transition: all 0.3s ease;
}

.setup-tiktok-page .btn-secondary:hover {
	border-color: var(--tiktok-primary);
	color: var(--tiktok-primary);
}

/* Hero Visual */
.setup-tiktok-hero__visual {
	flex: 1;
	width: 100%;
	max-width: 500px;
}

.setup-tiktok-hero__mockup {
	position: relative;
	width: 100%;
	aspect-ratio: 4/3;
	border-radius: 16px;
	overflow: hidden;
}

.setup-tiktok-hero__mockup img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.7s ease;
}

.setup-tiktok-hero__mockup:hover img {
	transform: scale(1.05);
}

.setup-tiktok-hero__placeholder {
	width: 100%;
	height: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
	background: linear-gradient(135deg, rgba(0, 56, 255, 0.05) 0%, rgba(15, 222, 201, 0.08) 100%);
}

.setup-tiktok-hero__placeholder .material-symbols-outlined {
	font-size: 80px;
	color: var(--tiktok-primary);
	opacity: 0.5;
}

.setup-tiktok-hero__stat-card {
	position: absolute;
	bottom: 24px;
	left: 24px;
	right: 24px;
	background: rgba(255, 255, 255, 0.95);
	backdrop-filter: blur(10px);
	padding: 16px 20px;
	border-radius: 12px;
	box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
}

.stat-card__header {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-bottom: 8px;
}

.stat-card__label {
	font-size: 12px;
	font-weight: 700;
	color: var(--tiktok-text-muted);
	text-transform: uppercase;
}

.stat-card__trend {
	display: flex;
	align-items: center;
	gap: 4px;
	font-size: 12px;
	font-weight: 700;
	color: #22c55e;
}

.stat-card__trend .material-symbols-outlined {
	font-size: 14px;
}

.stat-card__value {
	font-size: 24px;
	font-weight: 900;
	color: var(--tiktok-text);
}


/* ============================================
   PROBLEMS SECTION
   ============================================ */
.setup-tiktok-problems {
	padding: 80px 0;
	background: linear-gradient(180deg, #ffffff 0%, #f0f4f8 100%);
}

.setup-tiktok-problems .section-header {
	text-align: center;
	max-width: 800px;
	margin: 0 auto 48px;
}

.setup-tiktok-problems .section-header h2 {
	text-align: center;
}

.setup-tiktok-problems .section-header p {
	text-align: center;
	margin: 0 auto;
}

@media (min-width: 1024px) {
	.setup-tiktok-problems {
		padding: 96px 0;
	}
}

.setup-tiktok-problems__grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 24px;
}

@media (min-width: 640px) {
	.setup-tiktok-problems__grid {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media (min-width: 1024px) {
	.setup-tiktok-problems__grid {
		grid-template-columns: repeat(4, 1fr);
	}
}

.problem-card {
	background: #fff;
	border-radius: 16px;
	padding: 28px;
	border: 1px solid #e2e8f0;
	transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
	box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.problem-card:hover {
	box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
	transform: translateY(-8px);
}

.problem-card__icon {
	width: 48px;
	height: 48px;
	border-radius: 12px;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 16px;
	transition: transform 0.3s ease;
}

.problem-card:hover .problem-card__icon {
	transform: scale(1.1);
}

.problem-card__icon .material-symbols-outlined {
	font-size: 24px;
}

.problem-card--red .problem-card__icon {
	background: rgba(0, 56, 255, 0.1);
	color: #0038FF;
}

.problem-card--orange .problem-card__icon {
	background: rgba(0, 56, 255, 0.1);
	color: #0038FF;
}

.problem-card--blue .problem-card__icon {
	background: rgba(0, 56, 255, 0.1);
	color: #0038FF;
}

.problem-card--purple .problem-card__icon {
	background: rgba(0, 56, 255, 0.1);
	color: #0038FF;
}

.problem-card h3 {
	font-size: 18px;
	font-weight: 700;
	color: var(--tiktok-text);
	margin: 0 0 8px;
	font-family: var(--font-heading);
}

.problem-card p {
	font-size: 14px;
	color: var(--tiktok-text-muted);
	line-height: 1.6;
	margin: 0;
}

/* ============================================
   SERVICES SECTION
   ============================================ */
.setup-tiktok-services {
	padding: 80px 0;
	background: linear-gradient(180deg, #dce5f0 0%, #e8f0f8 100%);
}

@media (min-width: 1024px) {
	.setup-tiktok-services {
		padding: 96px 0;
	}
}

.setup-tiktok-services__grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 24px;
}

@media (min-width: 768px) {
	.setup-tiktok-services__grid {
		grid-template-columns: repeat(3, 1fr);
	}
}

.service-card {
	background: #fff;
	border-radius: 20px;
	overflow: hidden;
	border: 1px solid #e2e8f0;
	display: flex;
	flex-direction: column;
	transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
}

.service-card:hover {
	box-shadow: 0 25px 50px rgba(0, 56, 255, 0.15);
	transform: translateY(-10px);
}

.service-card__image {
	height: 192px;
	width: 100%;
	overflow: hidden;
}

.service-card__image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.service-card__placeholder {
	width: 100%;
	height: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
	background: linear-gradient(135deg, rgba(0, 56, 255, 0.05) 0%, rgba(15, 222, 201, 0.08) 100%);
}

.service-card__placeholder .material-symbols-outlined {
	font-size: 64px;
	color: var(--tiktok-primary);
	opacity: 0.3;
}

.service-card__content {
	padding: 24px;
	flex: 1;
	display: flex;
	flex-direction: column;
}

.service-card__icon {
	width: 40px;
	height: 40px;
	background: rgba(0, 56, 255, 0.1);
	color: var(--tiktok-primary);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 16px;
}

.service-card__icon .material-symbols-outlined {
	font-size: 20px;
}

.service-card__content h3 {
	font-size: 20px;
	font-weight: 700;
	color: var(--tiktok-text);
	margin: 0 0 16px;
	font-family: var(--font-heading);
}

.service-card__list {
	list-style: none;
	padding: 0;
	margin: 0;
	display: flex;
	flex-direction: column;
	gap: 12px;
	flex: 1;
}

.service-card__list li {
	display: flex;
	align-items: flex-start;
	gap: 8px;
	font-size: 14px;
	color: var(--tiktok-text-muted);
}

.service-card__list li .material-symbols-outlined {
	color: var(--tiktok-primary);
	font-size: 16px;
	margin-top: 2px;
}

/* ============================================
   PROCESS SECTION
   ============================================ */
.setup-tiktok-process {
	padding: 80px 0;
	background: linear-gradient(180deg, #f5f8fc 0%, #e8eef5 100%);
}

@media (min-width: 1024px) {
	.setup-tiktok-process {
		padding: 96px 0;
	}
}

.setup-tiktok-process__timeline {
	position: relative;
	display: grid;
	grid-template-columns: 1fr;
	gap: 32px;
}

@media (min-width: 768px) {
	.setup-tiktok-process__timeline {
		grid-template-columns: repeat(4, 1fr);
		gap: 24px;
	}
}

.process-line {
	display: none;
}

@media (min-width: 768px) {
	.process-line {
		display: block;
		position: absolute;
		top: 32px;
		left: 0;
		right: 0;
		height: 4px;
		background: var(--tiktok-border);
		border-radius: 2px;
		z-index: 0;
	}
}

.process-step {
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
	position: relative;
	z-index: 1;
}

.process-step__icon {
	width: 64px;
	height: 64px;
	border-radius: 50%;
	background: #ffffff;
	border: 4px solid #0038FF;
	color: #0038FF;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 24px;
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
	position: relative;
	z-index: 2;
}

.process-step__icon .material-symbols-outlined {
	font-size: 24px;
}

.process-step--active .process-step__icon {
	border-color: #0038FF;
	color: #0038FF;
}

.process-step h3 {
	font-size: 18px;
	font-weight: 700;
	color: var(--tiktok-text);
	margin: 0 0 8px;
	font-family: var(--font-heading);
}

.process-step p {
	font-size: 14px;
	color: var(--tiktok-text-muted);
	margin: 0;
	max-width: 200px;
}

/* ============================================
   WHY TABCOM SECTION
   ============================================ */
.setup-tiktok-why {
	padding: 64px 0;
	background: var(--tiktok-gradient);
	color: #fff;
}

/* Đảm bảo tất cả text trong section này đều màu trắng */
.setup-tiktok-why h2,
.setup-tiktok-why h3,
.setup-tiktok-why h4,
.setup-tiktok-why p,
.setup-tiktok-why .why-item__content h4,
.setup-tiktok-why .why-item__content p,
.setup-tiktok-why .stat-box__value,
.setup-tiktok-why .stat-box__label {
	color: #ffffff !important;
}

.setup-tiktok-why__grid {
	display: flex;
	flex-direction: column;
	gap: 48px;
}

@media (min-width: 1024px) {
	.setup-tiktok-why__grid {
		flex-direction: row;
		gap: 64px;
		align-items: center;
	}
}

.setup-tiktok-why__content {
	flex: 1;
}

.setup-tiktok-why__content h2 {
	font-size: 32px;
	font-weight: 800;
	margin: 0 0 32px;
	font-family: var(--font-heading);
	color: #fff;
}

@media (min-width: 768px) {
	.setup-tiktok-why__content h2 {
		font-size: 40px;
	}
}

.why-list {
	display: flex;
	flex-direction: column;
	gap: 24px;
}

.why-item {
	display: flex;
	gap: 16px;
	align-items: flex-start;
}

.why-item__icon {
	width: 44px;
	height: 44px;
	background: rgba(15, 222, 201, 0.2);
	border-radius: 12px;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
}

.why-item__icon .material-symbols-outlined {
	font-size: 22px;
	color: #0FDEC9;
}

.why-item__content h4 {
	font-size: 18px;
	font-weight: 700;
	margin: 0 0 4px;
	font-family: var(--font-heading);
}

.why-item__content p {
	font-size: 14px;
	color: rgba(255, 255, 255, 0.8);
	margin: 0;
}

.setup-tiktok-why__stats {
	flex: 1;
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 16px;
}

.stat-box {
	background: rgba(255, 255, 255, 0.1);
	backdrop-filter: blur(10px);
	border: 1px solid rgba(255, 255, 255, 0.2);
	border-radius: 16px;
	padding: 24px;
	text-align: center;
}

.stat-box--wide {
	grid-column: span 2;
}

.stat-box__value {
	font-size: 36px;
	font-weight: 900;
	margin-bottom: 4px;
}

.stat-box__label {
	font-size: 14px;
	font-weight: 500;
	color: rgba(255, 255, 255, 0.8);
}


/* ============================================
   AUDIENCE SECTION
   ============================================ */
.setup-tiktok-audience {
	padding: 80px 0;
	background: linear-gradient(180deg, #f0f4f8 0%, #e0e8f0 100%);
}

@media (min-width: 1024px) {
	.setup-tiktok-audience {
		padding: 96px 0;
	}
}

.setup-tiktok-audience h2 {
	font-size: 28px;
	font-weight: 800;
	color: var(--tiktok-text);
	text-align: center;
	margin: 0 0 48px;
	font-family: var(--font-heading);
}

@media (min-width: 768px) {
	.setup-tiktok-audience h2 {
		font-size: 36px;
	}
}

.setup-tiktok-audience__grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 24px;
}

@media (min-width: 768px) {
	.setup-tiktok-audience__grid {
		grid-template-columns: repeat(3, 1fr);
	}
}

.audience-card {
	background: #fff;
	border-radius: 20px;
	padding: 36px;
	text-align: center;
	border: 1px solid #e2e8f0;
	transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
	box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.audience-card:hover {
	background: #fff;
	box-shadow: 0 25px 50px rgba(0, 56, 255, 0.12);
	border-color: rgba(0, 56, 255, 0.3);
	transform: translateY(-8px);
}

.audience-card__icon {
	width: 56px;
	height: 56px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0 auto 16px;
}

.audience-card__icon .material-symbols-outlined {
	font-size: 28px;
}

.audience-card__icon--green {
	background: rgba(0, 56, 255, 0.1);
	color: var(--tiktok-primary);
}

.audience-card__icon--purple {
	background: rgba(0, 56, 255, 0.1);
	color: var(--tiktok-primary);
}

.audience-card__icon--pink {
	background: rgba(0, 56, 255, 0.1);
	color: var(--tiktok-primary);
}

.audience-card h3 {
	font-size: 20px;
	font-weight: 700;
	color: #111618;
	margin: 0 0 8px;
	font-family: var(--font-heading);
}

.audience-card p {
	font-size: 14px;
	color: var(--tiktok-text-muted);
	margin: 0;
}

/* ============================================
   FAQ SECTION
   ============================================ */
.setup-tiktok-faq {
	padding: 64px 0;
	background: linear-gradient(180deg, #e8eef5 0%, #dce5f0 100%);
}

/* ============================================
   PRICING TABLE SECTION
   ============================================ */
.setup-tiktok-pricing {
	padding: 80px 0;
	background: linear-gradient(180deg, #e8f0f8 0%, #d8e4f0 100%);
}

@media (min-width: 1024px) {
	.setup-tiktok-pricing {
		padding: 100px 0;
	}
}

.pricing-table-wrapper {
	overflow-x: auto;
	margin: 0 -16px;
	padding: 0 16px 20px;
}

@media (min-width: 768px) {
	.pricing-table-wrapper {
		margin: 0;
		padding: 0;
	}
}

.pricing-table {
	width: 100%;
	min-width: 800px;
	border-collapse: separate;
	border-spacing: 0;
	background: #fff;
	border-radius: 20px;
	overflow: visible;
	box-shadow: 0 10px 50px rgba(0, 56, 255, 0.15), 0 0 0 1px rgba(0, 56, 255, 0.1);
	margin-top: 20px;
}

.pricing-table thead {
	background: linear-gradient(135deg, #1034d6 0%, #001f9c 100%);
}

.pricing-table thead tr th:first-child {
	border-top-left-radius: 20px;
}

.pricing-table thead tr th:last-child {
	border-top-right-radius: 20px;
}

.pricing-table tfoot tr td:first-child {
	border-bottom-left-radius: 20px;
}

.pricing-table tfoot tr td:last-child {
	border-bottom-right-radius: 20px;
}

.pricing-table thead tr th {
	padding: 24px 16px;
	font-size: 15px;
	font-weight: 700;
	color: #fff;
	text-align: center;
	border-bottom: 3px solid rgba(15, 222, 201, 0.5);
	text-transform: uppercase;
	letter-spacing: 0.5px;
	position: relative;
	font-family: var(--font-heading);
}

.pricing-table thead tr th.feature-col {
	text-align: left;
	width: 35%;
	padding-left: 28px;
	background: rgba(0, 0, 0, 0.1);
}

.pricing-table thead tr th.popular {
	background: linear-gradient(180deg, rgba(15, 222, 201, 0.35) 0%, rgba(0, 56, 255, 0.2) 100%);
	position: relative;
	border-left: 3px solid #0FDEC9;
	border-right: 3px solid #0FDEC9;
}

.pricing-table thead tr th.popular::before {
	content: '★ PHỔ BIẾN';
	position: absolute;
	top: -14px;
	left: 50%;
	transform: translateX(-50%);
	background: linear-gradient(135deg, #0FDEC9 0%, #00e5c3 50%, #00d4b4 100%);
	color: #001f9c;
	font-size: 11px;
	font-weight: 800;
	padding: 8px 20px;
	border-radius: 20px;
	text-transform: uppercase;
	letter-spacing: 1px;
	box-shadow: 0 6px 20px rgba(15, 222, 201, 0.5), 0 0 0 3px rgba(255, 255, 255, 0.9);
	animation: badgePulse 2s ease-in-out infinite;
	white-space: nowrap;
}

@keyframes badgePulse {
	0%, 100% { 
		box-shadow: 0 6px 20px rgba(15, 222, 201, 0.5), 0 0 0 3px rgba(255, 255, 255, 0.9);
		transform: translateX(-50%) scale(1);
	}
	50% { 
		box-shadow: 0 8px 30px rgba(15, 222, 201, 0.7), 0 0 0 5px rgba(255, 255, 255, 0.95);
		transform: translateX(-50%) scale(1.05);
	}
}

/* Popular column highlight for body */
.pricing-table tbody td:nth-child(4) {
	background: rgba(15, 222, 201, 0.08);
	border-left: 3px solid rgba(15, 222, 201, 0.3);
	border-right: 3px solid rgba(15, 222, 201, 0.3);
}

.pricing-table tbody tr:hover td:nth-child(4) {
	background: rgba(15, 222, 201, 0.15);
}

.pricing-table tbody tr {
	transition: all 0.3s ease;
}

.pricing-table tbody tr:nth-child(odd) {
	background: linear-gradient(90deg, #f1f5f9 0%, #f8fafc 100%);
}

.pricing-table tbody tr:nth-child(even) {
	background: #fff;
}

.pricing-table tbody tr:hover {
	background: linear-gradient(90deg, rgba(0, 56, 255, 0.06) 0%, rgba(15, 222, 201, 0.06) 100%);
	transform: scale(1.005);
}

.pricing-table tbody td {
	padding: 18px 16px;
	font-size: 14px;
	color: #374151;
	text-align: center;
	border-bottom: 1px solid #e2e8f0;
	vertical-align: middle;
	transition: all 0.3s ease;
}

.pricing-table tbody td:first-child {
	text-align: left;
	font-weight: 600;
	color: #1e293b;
	padding-left: 28px;
	background: rgba(0, 0, 0, 0.02);
}

.pricing-table tbody td .icon-check {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 30px;
	height: 30px;
	background: linear-gradient(135deg, #0FDEC9 0%, #00c4b4 100%);
	color: #fff;
	border-radius: 50%;
	font-size: 14px;
	font-weight: 700;
	box-shadow: 0 4px 12px rgba(15, 222, 201, 0.35);
	transition: all 0.3s ease;
}

.pricing-table tbody tr:hover td .icon-check {
	transform: scale(1.15);
	box-shadow: 0 6px 16px rgba(15, 222, 201, 0.5);
}

.pricing-table tbody td .icon-dash {
	display: inline-block;
	color: #cbd5e1;
	font-size: 20px;
	font-weight: 700;
}

.pricing-table tfoot {
	background: linear-gradient(135deg, #1034d6 0%, #001f9c 100%);
}

.pricing-table tfoot tr td {
	padding: 24px 16px;
	font-size: 14px;
	font-weight: 700;
	color: #fff;
	text-align: center;
	border: none;
	text-transform: uppercase;
	letter-spacing: 0.5px;
}

.pricing-table tfoot tr td:first-child {
	text-align: left;
	padding-left: 28px;
	font-size: 18px;
	background: rgba(0, 0, 0, 0.1);
}

.pricing-table tfoot tr td strong {
	display: block;
	font-size: 22px;
	font-weight: 900;
	color: #0FDEC9;
	text-shadow: 0 0 20px rgba(15, 222, 201, 0.5);
	animation: priceGlow 2s ease-in-out infinite alternate;
}

@keyframes priceGlow {
	0% { text-shadow: 0 0 10px rgba(15, 222, 201, 0.3); }
	100% { text-shadow: 0 0 25px rgba(15, 222, 201, 0.7), 0 0 40px rgba(15, 222, 201, 0.3); }
}

.pricing-table tfoot tr td.popular {
	background: linear-gradient(180deg, rgba(15, 222, 201, 0.3) 0%, rgba(15, 222, 201, 0.15) 100%);
	border-left: 3px solid #0FDEC9;
	border-right: 3px solid #0FDEC9;
	position: relative;
}

.pricing-table tfoot tr td.popular strong {
	color: #fff;
	font-size: 24px;
	text-shadow: 0 0 20px rgba(15, 222, 201, 0.9), 0 0 40px rgba(15, 222, 201, 0.5);
	animation: popularPriceGlow 2s ease-in-out infinite alternate;
}

@keyframes popularPriceGlow {
	0% { 
		text-shadow: 0 0 15px rgba(15, 222, 201, 0.7), 0 0 30px rgba(15, 222, 201, 0.4);
	}
	100% { 
		text-shadow: 0 0 25px rgba(255, 255, 255, 0.9), 0 0 50px rgba(15, 222, 201, 0.7), 0 0 70px rgba(15, 222, 201, 0.4);
	}
}

.pricing-cta {
	text-align: center;
	margin-top: 48px;
}

.pricing-cta .btn-primary {
	height: 60px;
	padding: 0 48px;
	font-size: 17px;
	animation: ctaPulse 2s ease-in-out infinite;
}

@keyframes ctaPulse {
	0%, 100% { box-shadow: 0 8px 25px rgba(0, 56, 255, 0.3); }
	50% { box-shadow: 0 12px 35px rgba(0, 56, 255, 0.5), 0 0 0 4px rgba(0, 56, 255, 0.1); }
}

/* Responsive Pricing Table */
@media (max-width: 900px) {
	.pricing-table {
		min-width: 700px;
	}
	
	.pricing-table thead tr th,
	.pricing-table tbody td,
	.pricing-table tfoot tr td {
		padding: 14px 10px;
		font-size: 13px;
	}
	
	.pricing-table tfoot tr td strong {
		font-size: 17px;
	}
}

.pricing-cards {
	display: grid;
	grid-template-columns: 1fr;
	gap: 24px;
}

@media (min-width: 640px) {
	.pricing-cards {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media (min-width: 1200px) {
	.pricing-cards {
		grid-template-columns: repeat(4, 1fr);
		gap: 20px;
	}
}

.pricing-card {
	background: #fff;
	border-radius: 20px;
	padding: 32px 24px;
	border: 1px solid #e5e7eb;
	display: flex;
	flex-direction: column;
	position: relative;
	transition: all 0.3s ease;
}

.pricing-card:hover {
	border-color: rgba(0, 56, 255, 0.2);
	box-shadow: 0 20px 40px rgba(0, 56, 255, 0.1);
	transform: translateY(-4px);
}

.pricing-card--popular {
	border: 2px solid var(--tiktok-primary);
	box-shadow: 0 10px 40px rgba(0, 56, 255, 0.15);
}

.pricing-card--popular:hover {
	box-shadow: 0 25px 50px rgba(0, 56, 255, 0.2);
}

.pricing-card__badge {
	position: absolute;
	top: -12px;
	left: 50%;
	transform: translateX(-50%);
	background: var(--tiktok-gradient);
	color: #fff;
	font-size: 12px;
	font-weight: 700;
	padding: 6px 16px;
	border-radius: 20px;
	white-space: nowrap;
}

.pricing-card__header {
	text-align: center;
	margin-bottom: 20px;
	padding-bottom: 20px;
	border-bottom: 1px solid #f0f3f5;
}

.pricing-card__header h3 {
	font-size: 22px;
	font-weight: 800;
	color: var(--tiktok-text);
	margin: 0 0 4px;
	font-family: var(--font-heading);
}

.pricing-card--popular .pricing-card__header h3 {
	color: var(--tiktok-primary);
}

.pricing-card__subtitle {
	font-size: 14px;
	color: var(--tiktok-text-muted);
	margin: 0;
}

.pricing-card__price {
	text-align: center;
	margin-bottom: 24px;
}

.pricing-card__price .price-value {
	font-size: 32px;
	font-weight: 900;
	color: var(--tiktok-text);
	display: block;
	line-height: 1;
}

@media (min-width: 1200px) {
	.pricing-card__price .price-value {
		font-size: 28px;
	}
}

.pricing-card--popular .pricing-card__price .price-value {
	color: var(--tiktok-primary);
}

.pricing-card__price .price-unit {
	font-size: 14px;
	font-weight: 600;
	color: var(--tiktok-text-muted);
}

.pricing-card__features {
	list-style: none;
	padding: 0;
	margin: 0 0 24px;
	flex: 1;
	display: flex;
	flex-direction: column;
	gap: 12px;
}

.pricing-card__features li {
	display: flex;
	align-items: flex-start;
	gap: 10px;
	font-size: 14px;
	color: var(--tiktok-text);
	line-height: 1.4;
}

.pricing-card__features li .material-symbols-outlined {
	color: var(--tiktok-accent);
	font-size: 18px;
	flex-shrink: 0;
	margin-top: 1px;
}

.pricing-card__features li strong {
	color: var(--tiktok-primary);
	font-weight: 700;
}

.pricing-card__btn {
	display: flex;
	align-items: center;
	justify-content: center;
	height: 48px;
	background: #fff;
	color: var(--tiktok-text);
	font-size: 15px;
	font-weight: 700;
	border: 2px solid #e5e7eb;
	border-radius: 12px;
	text-decoration: none;
	transition: all 0.3s ease;
}

.pricing-card__btn:hover {
	border-color: var(--tiktok-primary);
	color: var(--tiktok-primary);
}

.pricing-card__btn--primary {
	background: var(--tiktok-gradient);
	color: #fff;
	border: none;
	box-shadow: 0 8px 20px rgba(0, 56, 255, 0.3);
}

.pricing-card__btn--primary:hover {
	transform: translateY(-2px);
	box-shadow: 0 12px 25px rgba(0, 56, 255, 0.4);
	color: #fff;
}

.setup-tiktok-faq h2 {
	font-size: 28px;
	font-weight: 800;
	color: var(--tiktok-text);
	text-align: center;
	margin: 0 0 40px;
	font-family: var(--font-heading);
}

.setup-tiktok-faq__list {
	max-width: 768px;
	margin: 0 auto;
	display: flex;
	flex-direction: column;
	gap: 16px;
}

.setup-tiktok-faq .faq-item {
	background: var(--tiktok-surface);
	border-radius: 12px;
	border: 1px solid #e5e7eb;
	overflow: hidden;
}

.setup-tiktok-faq .faq-item[open] {
	box-shadow: 0 0 0 2px rgba(0, 56, 255, 0.3);
}

.setup-tiktok-faq .faq-item summary {
	padding: 20px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
	cursor: pointer;
	font-size: 17px;
	font-weight: 700;
	color: var(--tiktok-text);
	list-style: none;
	font-family: var(--font-heading);
}

.setup-tiktok-faq .faq-item summary::-webkit-details-marker {
	display: none;
}

.setup-tiktok-faq .faq-item summary .material-symbols-outlined {
	color: var(--tiktok-text-muted);
	font-size: 24px;
	transition: transform 0.3s ease;
}

.setup-tiktok-faq .faq-item[open] summary .material-symbols-outlined {
	transform: rotate(180deg);
}

.setup-tiktok-faq .faq-answer {
	padding: 0 20px 20px;
	font-size: 15px;
	color: var(--tiktok-text-muted);
	line-height: 1.7;
	border-top: 1px solid var(--tiktok-border);
	padding-top: 16px;
}

/* ============================================
   CTA SECTION
   ============================================ */
.setup-tiktok-cta {
	padding: 80px 0;
	background: linear-gradient(180deg, #d8e4f0 0%, #c8d8e8 100%);
}

.setup-tiktok-cta__card {
	background: linear-gradient(135deg, #0FDEC9 0%, #001BE6 60%, #001090 100%);
	border-radius: 24px;
	padding: 48px 32px;
	text-align: center;
	position: relative;
	overflow: hidden;
	box-shadow: 0 20px 60px rgba(0, 27, 230, 0.3);
}

@media (min-width: 768px) {
	.setup-tiktok-cta__card {
		padding: 64px;
	}
}

.setup-tiktok-cta__pattern {
	position: absolute;
	inset: 0;
	background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.08'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
	opacity: 0.6;
}

.setup-tiktok-cta__content {
	position: relative;
	z-index: 1;
	max-width: 640px;
	margin: 0 auto;
}

.setup-tiktok-cta__content h2 {
	font-size: 32px;
	font-weight: 800;
	color: #fff;
	margin: 0 0 16px;
	text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
	font-family: var(--font-heading);
}

@media (min-width: 768px) {
	.setup-tiktok-cta__content h2 {
		font-size: 44px;
	}
}

.setup-tiktok-cta__content p {
	font-size: 18px;
	color: rgba(255, 255, 255, 0.9);
	margin: 0 0 32px;
	line-height: 1.6;
}

.setup-tiktok-cta__buttons {
	display: flex;
	flex-wrap: wrap;
	gap: 16px;
	justify-content: center;
}

.setup-tiktok-cta__buttons .btn-primary {
	height: 56px;
	padding: 0 32px;
	font-size: 18px;
	background: #fff;
	color: #001BE6;
	box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.setup-tiktok-cta__buttons .btn-primary:hover {
	transform: translateY(-3px);
	box-shadow: 0 12px 35px rgba(0, 0, 0, 0.3);
	background: #f0f8ff;
}

.setup-tiktok-page .btn-outline {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	height: 56px;
	padding: 0 32px;
	background: rgba(255, 255, 255, 0.15);
	color: #fff;
	font-size: 18px;
	font-weight: 700;
	border: 2px solid rgba(255, 255, 255, 0.4);
	border-radius: 12px;
	text-decoration: none;
	backdrop-filter: blur(10px);
	transition: all 0.3s ease;
}

.setup-tiktok-page .btn-outline:hover {
	background: rgba(255, 255, 255, 0.25);
	border-color: rgba(255, 255, 255, 0.6);
}

/* ============================================
   RESPONSIVE ADJUSTMENTS
   ============================================ */
@media (max-width: 767px) {
	.setup-tiktok-page .section-header {
		margin-bottom: 32px;
	}

	.setup-tiktok-page .section-header h2 {
		font-size: 24px;
	}

	.problem-card {
		padding: 20px;
	}

	.service-card__content {
		padding: 20px;
	}

	.setup-tiktok-why__content h2 {
		font-size: 28px;
	}

	.stat-box__value {
		font-size: 28px;
	}

	.setup-tiktok-cta__card {
		padding: 32px 20px;
	}

	.setup-tiktok-cta__content h2 {
		font-size: 26px;
	}

	.setup-tiktok-cta__content p {
		font-size: 16px;
	}

	.setup-tiktok-cta__buttons {
		flex-direction: column;
	}

	.setup-tiktok-cta__buttons .btn-primary,
	.setup-tiktok-page .btn-outline {
		width: 100%;
		height: 52px;
		font-size: 16px;
	}
}
