/**
 * TikTok Mall Page Styles
 * Dịch vụ Nâng Cấp TikTok Mall
 * Primary Color: #0038FF (Tabcom Blue)
 * 
 * @package TabcomGroup
 */

/* ============================================
   CSS Variables
   ============================================ */
.tiktok-mall-page {
	--mall-primary: #0038FF;
	--mall-primary-dark: #001BE6;
	--mall-accent: #0FDEC9;
	--mall-bg: #f8fafc;
	--mall-bg-alt: #ffffff;
	--mall-surface: #ffffff;
	--mall-text: #111827;
	--mall-text-muted: #6b7280;
	--mall-border: #e5e7eb;
	--mall-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

/* ============================================
   Base Styles
   ============================================ */
.tiktok-mall-page {
	background: var(--mall-bg);
	color: var(--mall-text);
	font-family: 'SF Pro Display', 'Be Vietnam Pro', -apple-system, sans-serif;
}

.tiktok-mall-page .container {
	max-width: 1440px;
	margin: 0 auto;
	padding: 0 24px;
}

@media (min-width: 768px) {
	.tiktok-mall-page .container {
		padding: 0 40px;
	}
}

@media (min-width: 1024px) {
	.tiktok-mall-page .container {
		padding: 0 80px;
	}
}

/* Section Header */
.tiktok-mall-page .section-header {
	max-width: 800px;
	margin: 0 auto 64px;
	text-align: center;
}

.tiktok-mall-page .section-header h2 {
	font-size: 32px;
	font-weight: 700;
	color: var(--mall-text);
	margin: 0 0 16px;
}

.tiktok-mall-page .section-header p {
	font-size: 18px;
	color: var(--mall-text-muted);
	margin: 0;
}

.tiktok-mall-page .section-label {
	display: block;
	font-size: 14px;
	font-weight: 700;
	color: var(--mall-primary);
	text-transform: uppercase;
	letter-spacing: 1px;
	margin-bottom: 8px;
}

/* ============================================
   HERO SECTION
   ============================================ */
.tiktok-mall-hero {
	padding: 48px 0 80px;
	position: relative;
	overflow: hidden;
}

@media (min-width: 1024px) {
	.tiktok-mall-hero {
		padding: 80px 0 120px;
	}
}

.tiktok-mall-hero__grid {
	display: flex;
	flex-direction: column;
	gap: 48px;
	align-items: center;
}

@media (min-width: 1024px) {
	.tiktok-mall-hero__grid {
		flex-direction: row;
		gap: 64px;
	}
}

.tiktok-mall-hero__content {
	flex: 1;
	display: flex;
	flex-direction: column;
	gap: 24px;
	text-align: center;
}

@media (min-width: 1024px) {
	.tiktok-mall-hero__content {
		text-align: left;
	}
}

.tiktok-mall-hero__badge {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: fit-content;
	margin: 0 auto;
}

@media (min-width: 1024px) {
	.tiktok-mall-hero__badge {
		margin: 0;
	}
}

.tiktok-mall-hero__badge-logo {
	height: 48px;
	width: auto;
}

.tiktok-mall-hero__title {
	font-size: 36px;
	font-weight: 800;
	line-height: 1.15;
	color: var(--mall-text);
	margin: 0;
}

@media (min-width: 768px) {
	.tiktok-mall-hero__title {
		font-size: 48px;
	}
}

@media (min-width: 1024px) {
	.tiktok-mall-hero__title {
		font-size: 52px;
	}
}

.tiktok-mall-hero__title .highlight {
	color: var(--mall-primary);
}

.tiktok-mall-hero__desc {
	font-size: 18px;
	color: var(--mall-text-muted);
	line-height: 1.7;
	margin: 0;
	max-width: 560px;
}

@media (min-width: 1024px) {
	.tiktok-mall-hero__desc {
		margin: 0;
	}
}

.tiktok-mall-hero__features {
	display: flex;
	flex-wrap: wrap;
	gap: 16px;
	justify-content: center;
	margin-top: 8px;
}

@media (min-width: 1024px) {
	.tiktok-mall-hero__features {
		justify-content: flex-start;
	}
}

.tiktok-mall-hero__feature {
	display: flex;
	align-items: center;
	gap: 8px;
	font-size: 15px;
	font-weight: 500;
	color: var(--mall-text);
}

.tiktok-mall-hero__feature .material-symbols-outlined {
	color: #0038FF;
	font-size: 20px;
}

.tiktok-mall-hero__buttons {
	display: flex;
	flex-wrap: wrap;
	gap: 16px;
	justify-content: center;
	margin-top: 16px;
}

@media (min-width: 1024px) {
	.tiktok-mall-hero__buttons {
		justify-content: flex-start;
	}
}

.tiktok-mall-hero__buttons .btn-primary {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	height: 52px;
	padding: 0 32px;
	background: linear-gradient(180deg, #0FDEC9 0%, #001BE6 100%);
	color: #fff;
	font-size: 16px;
	font-weight: 700;
	border-radius: 12px;
	text-decoration: none;
	box-shadow: 0 8px 25px rgba(0, 56, 255, 0.25);
	transition: all 0.3s ease;
	width: 100%;
}

@media (min-width: 640px) {
	.tiktok-mall-hero__buttons .btn-primary {
		width: auto;
	}
}

.tiktok-mall-hero__buttons .btn-primary:hover {
	transform: translateY(-2px);
	box-shadow: 0 12px 30px rgba(0, 56, 255, 0.35);
}

.tiktok-mall-hero__buttons .btn-secondary {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	height: 52px;
	padding: 0 32px;
	background: var(--mall-surface);
	color: var(--mall-text);
	font-size: 16px;
	font-weight: 700;
	border: 2px solid var(--mall-border);
	border-radius: 12px;
	text-decoration: none;
	transition: all 0.3s ease;
	width: 100%;
}

@media (min-width: 640px) {
	.tiktok-mall-hero__buttons .btn-secondary {
		width: auto;
	}
}

.tiktok-mall-hero__buttons .btn-secondary:hover {
	border-color: var(--mall-primary);
	color: var(--mall-primary);
}

/* Hero Visual */
.tiktok-mall-hero__visual {
	flex: 1;
	width: 100%;
	max-width: 560px;
	position: relative;
}

.tiktok-mall-hero__glow {
	position: absolute;
	inset: -20%;
	background: radial-gradient(circle, rgba(15, 222, 201, 0.15) 0%, rgba(0, 56, 255, 0.1) 50%, transparent 70%);
	filter: blur(60px);
	border-radius: 50%;
	pointer-events: none;
}

.tiktok-mall-hero__image {
	position: relative;
	width: 100%;
}

.tiktok-mall-hero__image img {
	width: 100%;
	height: auto;
	display: block;
}

/* Hero Stat */
.tiktok-mall-hero__stat {
	position: absolute;
	right: -16px;
	top: 40px;
	background: #fff;
	padding: 16px;
	border-radius: 12px;
	box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
	display: flex;
	align-items: center;
	gap: 12px;
	animation: bounce 3s infinite;
}

@keyframes bounce {
	0%, 100% { transform: translateY(0); }
	50% { transform: translateY(-10px); }
}

.stat-icon {
	width: 40px;
	height: 40px;
	background: #dcfce7;
	color: #16a34a;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
}

.stat-label {
	display: block;
	font-size: 12px;
	color: var(--mall-text-muted);
}

.stat-value {
	display: block;
	font-size: 14px;
	font-weight: 700;
	color: var(--mall-text);
}


/* ============================================
   BENEFITS SECTION
   ============================================ */
.tiktok-mall-benefits {
	padding: 80px 0;
	background: var(--mall-bg-alt);
}

@media (min-width: 1024px) {
	.tiktok-mall-benefits {
		padding: 120px 0;
	}
}

.tiktok-mall-benefits__grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 24px;
}

@media (min-width: 640px) {
	.tiktok-mall-benefits__grid {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media (min-width: 1024px) {
	.tiktok-mall-benefits__grid {
		grid-template-columns: repeat(4, 1fr);
		gap: 24px;
	}
}

.benefit-card {
	background: var(--mall-surface);
	border-radius: 16px;
	padding: 32px 24px;
	border: 1px solid var(--mall-border);
	transition: all 0.3s ease;
	text-align: center;
}

.benefit-card:hover {
	transform: translateY(-4px);
	box-shadow: var(--mall-shadow);
}

.benefit-card__icon {
	width: 64px;
	height: 64px;
	border-radius: 16px;
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0 auto 20px;
}

.benefit-card__icon .material-symbols-outlined {
	font-size: 32px;
}

.benefit-card--blue .benefit-card__icon {
	background: rgba(0, 56, 255, 0.1);
	color: #0038FF;
}

.benefit-card--green .benefit-card__icon {
	background: rgba(0, 56, 255, 0.1);
	color: #0038FF;
}

.benefit-card--purple .benefit-card__icon {
	background: rgba(0, 56, 255, 0.1);
	color: #0038FF;
}

.benefit-card--orange .benefit-card__icon {
	background: rgba(0, 56, 255, 0.1);
	color: #0038FF;
}

.benefit-card h3 {
	font-size: 18px;
	font-weight: 700;
	color: var(--mall-text);
	margin: 0 0 12px;
}

.benefit-card p {
	font-size: 15px;
	color: var(--mall-text-muted);
	line-height: 1.6;
	margin: 0;
}

/* ============================================
   ELIGIBILITY SECTION
   ============================================ */
.tiktok-mall-eligibility {
	padding: 80px 0;
	background: var(--mall-bg);
}

@media (min-width: 1024px) {
	.tiktok-mall-eligibility {
		padding: 120px 0;
	}
}

.tiktok-mall-eligibility__grid {
	display: flex;
	flex-direction: column;
	gap: 48px;
}

@media (min-width: 1024px) {
	.tiktok-mall-eligibility__grid {
		flex-direction: row;
		gap: 80px;
		align-items: flex-start;
	}
}

.tiktok-mall-eligibility__sidebar {
	flex: 0 0 360px;
}

.tiktok-mall-eligibility__sidebar h2 {
	font-size: 32px;
	font-weight: 800;
	color: var(--mall-text);
	margin: 0 0 16px;
	line-height: 1.2;
}

.tiktok-mall-eligibility__sidebar p {
	font-size: 16px;
	color: var(--mall-text-muted);
	line-height: 1.7;
	margin: 0 0 24px;
}

.link-arrow {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	color: var(--mall-primary);
	font-weight: 600;
	text-decoration: none;
	transition: gap 0.3s ease;
}

.link-arrow:hover {
	gap: 12px;
}

.link-arrow .material-symbols-outlined {
	font-size: 20px;
}

.tiktok-mall-eligibility__content {
	flex: 1;
	display: flex;
	flex-direction: column;
	gap: 24px;
}

/* Eligibility Card */
.eligibility-card {
	background: var(--mall-surface);
	border-radius: 16px;
	padding: 28px;
	border: 1px solid var(--mall-border);
}

.eligibility-card__header {
	display: flex;
	align-items: center;
	gap: 16px;
	margin-bottom: 24px;
}

.eligibility-card__icon {
	width: 48px;
	height: 48px;
	background: rgba(0, 56, 255, 0.1);
	color: var(--mall-primary);
	border-radius: 12px;
	display: flex;
	align-items: center;
	justify-content: center;
}

.eligibility-card__icon .material-symbols-outlined {
	font-size: 24px;
}

.eligibility-card__header h3 {
	font-size: 20px;
	font-weight: 700;
	color: var(--mall-text);
	margin: 0;
}

.eligibility-card__list {
	display: flex;
	flex-direction: column;
	gap: 16px;
}

.eligibility-item {
	display: flex;
	gap: 16px;
	align-items: flex-start;
}

.eligibility-checkbox {
	width: 24px;
	height: 24px;
	border-radius: 6px;
	border: 2px solid var(--mall-border);
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
	margin-top: 2px;
}

.eligibility-checkbox.checked {
	background: var(--mall-primary);
	border-color: var(--mall-primary);
	color: #fff;
}

.eligibility-checkbox .material-symbols-outlined {
	font-size: 16px;
}

.eligibility-item__content strong {
	display: block;
	font-size: 15px;
	font-weight: 600;
	color: var(--mall-text);
	margin-bottom: 4px;
}

.eligibility-item__content span {
	font-size: 14px;
	color: var(--mall-text-muted);
}

/* Special Categories */
.eligibility-special {
	display: grid;
	grid-template-columns: 1fr;
	gap: 16px;
}

@media (min-width: 640px) {
	.eligibility-special {
		grid-template-columns: repeat(2, 1fr);
	}
}

.eligibility-special-card {
	background: var(--mall-surface);
	border-radius: 12px;
	padding: 24px;
	border: 1px solid var(--mall-border);
}

.eligibility-special-card__header {
	display: flex;
	align-items: center;
	gap: 12px;
	margin-bottom: 16px;
}

.eligibility-special-card__icon {
	width: 40px;
	height: 40px;
	border-radius: 10px;
	display: flex;
	align-items: center;
	justify-content: center;
}

.eligibility-special-card__icon .material-symbols-outlined {
	font-size: 22px;
}

.eligibility-special-card__icon--orange {
	background: rgba(0, 56, 255, 0.1);
	color: #0038FF;
}

.eligibility-special-card__icon--red {
	background: rgba(0, 56, 255, 0.1);
	color: #0038FF;
}

.eligibility-special-card__header h4 {
	font-size: 16px;
	font-weight: 700;
	color: var(--mall-text);
	margin: 0;
}

.eligibility-special-card ul {
	list-style: none;
	padding: 0;
	margin: 0;
	display: flex;
	flex-direction: column;
	gap: 10px;
}

.eligibility-special-card li {
	display: flex;
	align-items: flex-start;
	gap: 8px;
	font-size: 14px;
	color: var(--mall-text-muted);
}

.eligibility-special-card li .material-symbols-outlined {
	color: var(--mall-primary);
	font-size: 18px;
	flex-shrink: 0;
}

/* ============================================
   PROCESSING TIME SECTION
   ============================================ */
.tiktok-mall-processing {
	padding: 80px 0;
	background: var(--mall-bg-alt);
}

@media (min-width: 1024px) {
	.tiktok-mall-processing {
		padding: 100px 0;
	}
}

.tiktok-mall-processing__card {
	max-width: 800px;
	margin: 0 auto;
	background: linear-gradient(135deg, var(--mall-primary) 0%, var(--mall-primary-dark) 100%);
	border-radius: 24px;
	padding: 48px;
	position: relative;
	overflow: hidden;
	display: flex;
	flex-direction: column;
	gap: 40px;
	align-items: center;
	text-align: center;
}

@media (min-width: 768px) {
	.tiktok-mall-processing__card {
		flex-direction: row;
		text-align: left;
		padding: 56px 64px;
	}
}

.tiktok-mall-processing__glow {
	position: absolute;
	top: -100px;
	right: -100px;
	width: 300px;
	height: 300px;
	background: rgba(255, 255, 255, 0.1);
	filter: blur(150px);
	opacity: 0.3;
	border-radius: 50%;
}

.tiktok-mall-processing__content {
	flex: 1;
	position: relative;
	z-index: 1;
}

.tiktok-mall-processing__content h2 {
	font-size: 28px;
	font-weight: 800;
	color: #fff;
	margin: 0 0 12px;
}

.tiktok-mall-processing__content p {
	font-size: 16px;
	color: rgba(255, 255, 255, 0.7);
	margin: 0;
}

.tiktok-mall-processing__time {
	display: flex;
	align-items: center;
	gap: 20px;
	background: rgba(255, 255, 255, 0.1);
	backdrop-filter: blur(10px);
	border-radius: 16px;
	padding: 24px 32px;
	position: relative;
	z-index: 1;
}

.processing-time__icon {
	width: 56px;
	height: 56px;
	background: rgba(255, 255, 255, 0.2);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	color: #fff;
}

.processing-time__icon .material-symbols-outlined {
	font-size: 28px;
}

.processing-time__info {
	display: flex;
	flex-direction: column;
}

.processing-time__label {
	font-size: 14px;
	color: rgba(255, 255, 255, 0.7);
	margin-bottom: 4px;
}

.processing-time__value {
	font-size: 28px;
	font-weight: 800;
	color: #fff;
}

.processing-time__note {
	font-size: 12px;
	color: rgba(255, 255, 255, 0.5);
	margin-top: 4px;
}


/* ============================================
   NOTES SECTION
   ============================================ */
.tiktok-mall-notes {
	padding: 80px 0;
	background: var(--mall-bg);
}

@media (min-width: 1024px) {
	.tiktok-mall-notes {
		padding: 100px 0;
	}
}

.tiktok-mall-notes__card {
	max-width: 900px;
	margin: 0 auto;
	background: linear-gradient(135deg, #fffbeb 0%, #fef3c7 100%);
	border-radius: 20px;
	padding: 32px;
	display: flex;
	gap: 24px;
	align-items: flex-start;
}

@media (min-width: 768px) {
	.tiktok-mall-notes__card {
		padding: 40px 48px;
	}
}

.tiktok-mall-notes__icon {
	width: 56px;
	height: 56px;
	background: #f59e0b;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
	color: #fff;
}

.tiktok-mall-notes__icon .material-symbols-outlined {
	font-size: 28px;
}

.tiktok-mall-notes__content h3 {
	font-size: 20px;
	font-weight: 700;
	color: #92400e;
	margin: 0 0 20px;
}

.tiktok-mall-notes__grid {
	display: flex;
	flex-direction: column;
	gap: 16px;
}

.note-item {
	display: flex;
	gap: 12px;
	align-items: flex-start;
}

.note-dot {
	width: 8px;
	height: 8px;
	background: #f59e0b;
	border-radius: 50%;
	flex-shrink: 0;
	margin-top: 8px;
}

.note-item p {
	font-size: 15px;
	color: #78350f;
	line-height: 1.6;
	margin: 0;
}

.note-item p strong {
	color: #92400e;
}

/* ============================================
   SERVICES SECTION
   ============================================ */
.tiktok-mall-services {
	padding: 80px 0;
	background: var(--mall-bg-alt);
}

@media (min-width: 1024px) {
	.tiktok-mall-services {
		padding: 120px 0;
	}
}

.tiktok-mall-services__grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 20px;
}

@media (min-width: 640px) {
	.tiktok-mall-services__grid {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media (min-width: 1024px) {
	.tiktok-mall-services__grid {
		grid-template-columns: repeat(3, 1fr);
		gap: 24px;
	}
}

.service-item {
	background: var(--mall-surface);
	border-radius: 16px;
	padding: 28px;
	border: 1px solid var(--mall-border);
	display: flex;
	gap: 20px;
	align-items: flex-start;
	transition: all 0.3s ease;
}

.service-item:hover {
	transform: translateY(-4px);
	box-shadow: var(--mall-shadow);
	border-color: var(--mall-primary);
}

.service-item__icon {
	width: 52px;
	height: 52px;
	background: rgba(0, 56, 255, 0.1);
	color: var(--mall-primary);
	border-radius: 12px;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
}

.service-item__icon .material-symbols-outlined {
	font-size: 26px;
}

.service-item__content h4 {
	font-size: 17px;
	font-weight: 700;
	color: var(--mall-text);
	margin: 0 0 8px;
}

.service-item__content p {
	font-size: 14px;
	color: var(--mall-text-muted);
	line-height: 1.6;
	margin: 0;
}

/* ============================================
   PRICING SECTION
   ============================================ */
.tiktok-mall-pricing {
	padding: 80px 0;
	background: var(--mall-bg);
}

@media (min-width: 1024px) {
	.tiktok-mall-pricing {
		padding: 120px 0;
	}
}

.tiktok-mall-pricing__card {
	max-width: 480px;
	margin: 0 auto;
	background: linear-gradient(135deg, var(--mall-primary) 0%, var(--mall-primary-dark) 100%);
	border-radius: 24px;
	padding: 48px 40px;
	text-align: center;
	position: relative;
	overflow: hidden;
}

.pricing-popular {
	position: absolute;
	top: 20px;
	right: -32px;
	background: #0FDEC9;
	color: var(--mall-primary-dark);
	font-size: 12px;
	font-weight: 700;
	padding: 6px 40px;
	transform: rotate(45deg);
}

.pricing-header h3 {
	font-size: 24px;
	font-weight: 700;
	color: #fff;
	margin: 0 0 24px;
}

.pricing-price {
	margin-bottom: 8px;
}

.price-value {
	font-size: 48px;
	font-weight: 900;
	color: #0FDEC9;
}

@media (min-width: 768px) {
	.price-value {
		font-size: 56px;
	}
}

.pricing-note {
	font-size: 14px;
	color: rgba(255, 255, 255, 0.6);
	margin: 0 0 32px;
}

.pricing-features {
	display: flex;
	flex-direction: column;
	gap: 16px;
	margin-bottom: 32px;
	text-align: left;
}

.pricing-feature {
	display: flex;
	align-items: center;
	gap: 12px;
	font-size: 15px;
	color: rgba(255, 255, 255, 0.9);
}

.pricing-feature .material-symbols-outlined {
	color: #0FDEC9;
	font-size: 22px;
}

.pricing-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	height: 56px;
	background: #fff;
	color: var(--mall-primary);
	font-size: 16px;
	font-weight: 700;
	border-radius: 12px;
	text-decoration: none;
	transition: all 0.3s ease;
}

.pricing-btn:hover {
	transform: translateY(-2px);
	box-shadow: 0 12px 30px rgba(255, 255, 255, 0.25);
	background: #f8fafc;
}

.pricing-disclaimer {
	font-size: 13px;
	color: rgba(255, 255, 255, 0.5);
	margin: 16px 0 0;
}

/* ============================================
   WHY TABCOM SECTION
   ============================================ */
.tiktok-mall-why {
	padding: 80px 0;
	background: var(--mall-bg-alt);
}

@media (min-width: 1024px) {
	.tiktok-mall-why {
		padding: 120px 0;
	}
}

.tiktok-mall-why__grid {
	display: flex;
	flex-direction: column;
	gap: 48px;
}

@media (min-width: 1024px) {
	.tiktok-mall-why__grid {
		flex-direction: row;
		gap: 80px;
		align-items: center;
	}
}

.tiktok-mall-why__content {
	flex: 1;
}

.tiktok-mall-why__content h2 {
	font-size: 32px;
	font-weight: 800;
	color: var(--mall-text);
	margin: 0 0 40px;
	line-height: 1.2;
}

.why-list {
	display: flex;
	flex-direction: column;
	gap: 28px;
}

.why-item {
	display: flex;
	gap: 20px;
	align-items: flex-start;
}

.why-item__icon {
	width: 56px;
	height: 56px;
	background: rgba(0, 56, 255, 0.1);
	color: var(--mall-primary);
	border-radius: 14px;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
}

.why-item__icon .material-symbols-outlined {
	font-size: 28px;
}

.why-item__content h4 {
	font-size: 18px;
	font-weight: 700;
	color: var(--mall-text);
	margin: 0 0 8px;
}

.why-item__content p {
	font-size: 15px;
	color: var(--mall-text-muted);
	line-height: 1.6;
	margin: 0;
}

.tiktok-mall-why__image {
	flex: 1;
	max-width: 500px;
}

.tiktok-mall-why__image img {
	width: 100%;
	height: auto;
	border-radius: 20px;
	box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}


/* ============================================
   FAQ SECTION
   ============================================ */
.tiktok-mall-faq {
	padding: 80px 0;
	background: var(--mall-bg);
}

@media (min-width: 1024px) {
	.tiktok-mall-faq {
		padding: 120px 0;
	}
}

.tiktok-mall-faq h2 {
	font-size: 32px;
	font-weight: 800;
	color: var(--mall-text);
	text-align: center;
	margin: 0 0 48px;
}

.tiktok-mall-faq__list {
	max-width: 800px;
	margin: 0 auto;
	display: flex;
	flex-direction: column;
	gap: 16px;
}

.faq-item {
	background: var(--mall-surface);
	border-radius: 12px;
	border: 1px solid var(--mall-border);
	overflow: hidden;
}

.faq-item summary {
	padding: 20px 24px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
	cursor: pointer;
	font-size: 16px;
	font-weight: 600;
	color: var(--mall-text);
	list-style: none;
	transition: all 0.3s ease;
}

.faq-item summary::-webkit-details-marker {
	display: none;
}

.faq-item summary:hover {
	background: rgba(19, 200, 236, 0.05);
}

.faq-item summary .material-symbols-outlined {
	color: var(--mall-primary);
	font-size: 24px;
	transition: transform 0.3s ease;
}

.faq-item[open] summary .material-symbols-outlined {
	transform: rotate(180deg);
}

.faq-answer {
	padding: 0 24px 20px;
	font-size: 15px;
	color: var(--mall-text-muted);
	line-height: 1.7;
}

/* ============================================
   CTA SECTION
   ============================================ */
.tiktok-mall-cta {
	padding: 80px 0;
	background: linear-gradient(180deg, #0FDEC9 0%, #001BE6 100%);
}

@media (min-width: 1024px) {
	.tiktok-mall-cta {
		padding: 100px 0;
	}
}

.tiktok-mall-cta__content {
	max-width: 700px;
	margin: 0 auto;
	text-align: center;
}

.tiktok-mall-cta__content h2 {
	font-size: 32px;
	font-weight: 800;
	color: #fff;
	margin: 0 0 16px;
	line-height: 1.3;
}

@media (min-width: 768px) {
	.tiktok-mall-cta__content h2 {
		font-size: 40px;
	}
}

.tiktok-mall-cta__content h2 .highlight {
	color: #fff;
	text-decoration: underline;
	text-decoration-color: rgba(255, 255, 255, 0.5);
}

.tiktok-mall-cta__content p {
	font-size: 18px;
	color: rgba(255, 255, 255, 0.9);
	margin: 0 0 32px;
	line-height: 1.6;
}

.tiktok-mall-cta__buttons {
	display: flex;
	flex-wrap: wrap;
	gap: 16px;
	justify-content: center;
}

.tiktok-mall-cta__buttons .btn-primary {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	height: 56px;
	padding: 0 32px;
	background: #fff;
	color: var(--mall-primary);
	font-size: 16px;
	font-weight: 700;
	border-radius: 12px;
	text-decoration: none;
	transition: all 0.3s ease;
}

.tiktok-mall-cta__buttons .btn-primary:hover {
	background: #f8fafc;
	transform: translateY(-2px);
}

.tiktok-mall-cta__buttons .btn-outline {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	height: 56px;
	padding: 0 32px;
	background: transparent;
	color: #fff;
	font-size: 16px;
	font-weight: 700;
	border: 2px solid rgba(255, 255, 255, 0.5);
	border-radius: 12px;
	text-decoration: none;
	transition: all 0.3s ease;
}

.tiktok-mall-cta__buttons .btn-outline:hover {
	background: rgba(255, 255, 255, 0.1);
	border-color: #fff;
}

/* ============================================
   RESPONSIVE ADJUSTMENTS
   ============================================ */
@media (max-width: 767px) {
	.tiktok-mall-page .section-header {
		margin-bottom: 40px;
	}

	.tiktok-mall-page .section-header h2 {
		font-size: 26px;
	}

	.tiktok-mall-page .section-header p {
		font-size: 16px;
	}

	.benefit-card {
		padding: 24px 20px;
	}

	.eligibility-card {
		padding: 24px;
	}

	.tiktok-mall-processing__card {
		padding: 32px 24px;
	}

	.tiktok-mall-processing__content h2 {
		font-size: 22px;
	}

	.processing-time__value {
		font-size: 24px;
	}

	.tiktok-mall-notes__card {
		flex-direction: column;
		padding: 24px;
	}

	.service-item {
		padding: 24px;
	}

	.tiktok-mall-pricing__card {
		padding: 40px 24px;
	}

	.price-value {
		font-size: 40px;
	}

	.tiktok-mall-why__content h2 {
		font-size: 26px;
		margin-bottom: 32px;
	}

	.tiktok-mall-faq h2 {
		font-size: 26px;
	}

	.tiktok-mall-cta__content h2 {
		font-size: 26px;
	}

	.tiktok-mall-cta__buttons {
		flex-direction: column;
	}

	.tiktok-mall-cta__buttons .btn-primary,
	.tiktok-mall-cta__buttons .btn-outline {
		width: 100%;
	}

	.tiktok-mall-hero__stat {
		display: none;
	}
}
