/* =========================================================
   M2W — My Second World theme stylesheet
   Vanilla CSS, switchable palettes via [data-palette] on <body>.
   ========================================================= */

:root,
[data-palette="bold-orange"] {
	--c-bg:        #FAF6F0;
	--c-bg-deep:   #F1EBE0;
	--c-surface:   #FFFFFF;
	--c-ink:       #0F1B2D;
	--c-ink-soft:  #3C4654;
	--c-muted:     #646C7A;
	--c-line:      #E6DFD2;
	--c-line-soft: #EFE9DC;
	--c-accent:    #F26A1F;
	--c-accent-2:  #FF8A3D;
	--c-accent-soft:#FCE6D4;
	--c-accent-ink:#7A2E08;
	--c-dark:      #0F1B2D;
}
[data-palette="soft-orange"] {
	--c-bg:        #FBF5EE;
	--c-bg-deep:   #F1E7D6;
	--c-surface:   #FFFFFF;
	--c-ink:       #2B2018;
	--c-ink-soft:  #5A4A3C;
	--c-muted:     #8A7A6A;
	--c-line:      #E7D8C2;
	--c-line-soft: #F1E6D2;
	--c-accent:    #D9874A;
	--c-accent-2:  #E9A877;
	--c-accent-soft:#F7E2CB;
	--c-accent-ink:#6D3F1C;
	--c-dark:      #2B2018;
}
[data-palette="navy"] {
	--c-bg:        #F4F6FA;
	--c-bg-deep:   #E5EAF3;
	--c-surface:   #FFFFFF;
	--c-ink:       #0B1A33;
	--c-ink-soft:  #2E3D5A;
	--c-muted:     #6B7591;
	--c-line:      #D7DEEB;
	--c-line-soft: #E5EAF3;
	--c-accent:    #1B365D;
	--c-accent-2:  #2E5A93;
	--c-accent-soft:#DDE6F2;
	--c-accent-ink:#0B1A33;
	--c-dark:      #0B1A33;
	--c-orange-spark:#F26A1F;
}

:root {
	--font-sans:  "Plus Jakarta Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, system-ui, sans-serif;
	--font-serif: "Playfair Display", "Times New Roman", Georgia, serif;
	--font-mono:  "JetBrains Mono", ui-monospace, Menlo, monospace;

	--radius-sm: 4px;
	--radius:    8px;
	--radius-lg: 14px;
	--radius-xl: 22px;

	--shadow-sm: 0 1px 2px rgba(15,27,45,.04), 0 1px 1px rgba(15,27,45,.03);
	--shadow:    0 6px 24px -10px rgba(15,27,45,.18), 0 2px 6px -3px rgba(15,27,45,.06);
	--shadow-lg: 0 30px 60px -30px rgba(15,27,45,.28), 0 10px 24px -12px rgba(15,27,45,.10);

	--max:       1440px;
	--pad-x:     clamp(20px, 4vw, 56px);

	/* Motion tokens (Material 3-style) — 1 NGUỒN cho duration/easing toàn theme.
	   Hệ animation + tabs + CTA + hover đều tham chiếu, đổi 1 chỗ là đổi cả site. */
	--m2w-ease:      cubic-bezier(.22, .61, .36, 1);  /* chuẩn — ease-out mượt */
	--m2w-ease-emph: cubic-bezier(.2, 0, 0, 1);       /* nhấn — vào nhanh, dừng êm */
	--m2w-dur-fast:  .4s;
	--m2w-dur:       .7s;
	--m2w-dur-slow:  1s;

	/* ---- Spacing scale (4/8pt) — 1 NGUỒN, dùng thay số cứng rời rạc (design language 04/06) ---- */
	--space-1:   4px;
	--space-2:   8px;
	--space-3:   12px;
	--space-4:   16px;
	--space-5:   20px;
	--space-6:   24px;
	--space-8:   32px;
	--space-10:  40px;
	--space-12:  48px;
	--space-16:  64px;
	--space-20:  80px;
	--space-24:  96px;

	/* ---- Semantic status colors — 1 NGUỒN, thay hex success/error/info rải rác mỗi component ---- */
	--c-success:  #15803D;  --c-success-bg: #F0FDF4;
	--c-warning:  #B45309;  --c-warning-bg: #FFF7ED;
	--c-danger:   #B42318;  --c-danger-bg:  #FEF2F2;
	--c-info:     #075985;  --c-info-bg:    #F0F9FF;
}

/* ---------- Base ---------- */
*, *::before, *::after { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
	font-family: var(--font-sans);
	font-size: 16px;
	line-height: 1.6;
	color: var(--c-ink);
	background: var(--c-bg);
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	text-rendering: optimizeLegibility;
	font-feature-settings: "kern" 1, "liga" 1;
}
img, svg, video { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: 0; background: none; color: inherit; }

/* Focus nhìn rõ cho phần tử bấm được — a11y bàn phím. Chỉ hiện khi điều hướng bằng phím
   (:focus-visible), không lộ khi click chuột. Trước đây nav/nút/dots không có ring riêng. */
a:focus-visible,
button:focus-visible,
.btn:focus-visible,
.menu-toggle:focus-visible,
.carousel__dot:focus-visible,
[tabindex]:focus-visible,
summary:focus-visible {
	outline: 2px solid var(--c-accent);
	outline-offset: 3px;
	border-radius: 4px;
}

.container { max-width: var(--max); margin: 0 auto; padding: 0 var(--pad-x); }

h1, h2, h3, h4 { margin: 0; color: var(--c-ink); letter-spacing: -0.01em; }
/* Heading dùng SANS đậm (Plus Jakarta) — tông corporate/trust, dấu tiếng Việt chuẩn (đổi 04/06,
   bỏ Playfair khỏi heading thân; Playfair chỉ còn dùng cho .serif accent ở hero). */
h1, h2 { font-family: var(--font-sans); text-wrap: balance; }
/* line-height ≥1.18 + tracking ≤-0.01em: tránh 2 dòng dính dấu thanh tiếng Việt. */
h1 { font-size: clamp(38px, 5vw, 70px); font-weight: 800; line-height: 1.18; letter-spacing: -0.01em; }
h2 { font-size: clamp(29px, 3.4vw, 46px); font-weight: 700; line-height: 1.2; letter-spacing: -0.006em; }
h3 { font-size: 21px; font-weight: 700; line-height: 1.3; }
h4 { font-size: 16px; font-weight: 600; letter-spacing: 0.02em; }
p  { margin: 0; }
/* Accent serif-italic cam trong heading (vd "đội ngũ" ở hero) — điểm nhấn duy nhất giữ Playfair. */
.serif { font-family: var(--font-serif); font-weight: 600; font-style: normal; letter-spacing: 0; }

/* Mã visa/code (EB-3, I-140, DS-260, subclass 189…) trong heading SERIF: render bằng SANS
   tabular cho sắc nét — tránh chữ số kiểu Playfair trông thô. Dùng: <span class="m2w-code">EB-3</span> */
.m2w-code { font-family: var(--font-sans); font-weight: inherit; font-size: .92em; font-variant-numeric: tabular-nums lining-nums; letter-spacing: .01em; }

/* Eyebrow (nhãn chữ cam nhỏ trên tiêu đề) — Edward gỡ toàn site 04/06: ẩn hết.
   Ẩn bằng CSS thay vì xóa markup 9 file (an toàn, đảo lại dễ nếu cần). */
.eyebrow { display: none !important; }
.eyebrow--keep {
	font-family: var(--font-mono);
	font-size: 11px;
	font-weight: 500;
	letter-spacing: 0.16em;
	text-transform: uppercase;
	color: var(--c-accent);
}
.eyebrow::before {
	content: "";
	display: inline-block;
	width: 24px;
	height: 1px;
	background: var(--c-accent);
	vertical-align: middle;
	margin-right: 10px;
	transform: translateY(-2px);
}

/* ---------- Accessibility ---------- */
.screen-reader-text {
	border: 0;
	clip: rect(1px, 1px, 1px, 1px);
	clip-path: inset(50%);
	height: 1px; width: 1px;
	margin: -1px;
	overflow: hidden;
	padding: 0;
	position: absolute;
	word-wrap: normal !important;
}
.screen-reader-text:focus {
	background: var(--c-surface);
	clip: auto !important;
	clip-path: none;
	color: var(--c-accent);
	display: block;
	font-size: 1rem;
	height: auto;
	left: 5px; top: 5px;
	padding: 8px 14px;
	width: auto;
	z-index: 100000;
}
.skip-link { position: absolute; left: -9999px; top: 0; }
.skip-link:focus { left: 5px; top: 5px; }

/* ---------- Buttons ---------- */
.btn {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	padding: 14px 22px;
	border-radius: 999px;
	font-size: 14.5px;
	font-weight: 600;
	letter-spacing: 0.01em;
	transition: transform .2s ease, background .2s ease, color .2s ease, box-shadow .2s ease, border-color .2s ease;
	white-space: nowrap;
	border: 0;
	text-decoration: none;
}
.btn-primary {
	background: var(--c-accent);
	color: #fff;
	box-shadow: 0 8px 22px -10px color-mix(in oklab, var(--c-accent), transparent 30%);
}
.btn-primary:hover { background: var(--c-dark); transform: translateY(-1px); color: #fff; }
.btn-ghost {
	background: transparent;
	color: var(--c-ink);
	border: 1px solid var(--c-line);
}
.btn-ghost:hover { border-color: var(--c-ink); }
.btn-dark { background: var(--c-dark); color: #fff; }
.btn-dark:hover { background: var(--c-accent); color: #fff; }
.btn .arr { display: inline-block; transition: transform .2s ease; }
.btn:hover .arr { transform: translateX(3px); }

/* ---------- Placeholder ---------- */
.ph {
	position: relative;
	background:
		repeating-linear-gradient(
			135deg,
			color-mix(in oklab, var(--c-accent), transparent 88%) 0 14px,
			transparent 14px 28px
		),
		var(--c-bg-deep);
	border: 1px solid var(--c-line);
	border-radius: var(--radius-lg);
	overflow: hidden;
	color: var(--c-ink-soft);
}
.ph[data-tone="dark"] {
	background:
		repeating-linear-gradient(
			135deg,
			rgba(255,255,255,.04) 0 14px,
			transparent 14px 28px
		),
		var(--c-dark);
	color: rgba(255,255,255,.7);
	border-color: rgba(255,255,255,.1);
}
.ph__tag {
	position: absolute;
	top: 14px; left: 14px;
	font-family: var(--font-mono);
	font-size: 11px;
	background: rgba(255,255,255,.92);
	color: var(--c-ink);
	padding: 5px 10px;
	border-radius: 999px;
	letter-spacing: 0.04em;
}
.ph[data-tone="dark"] .ph__tag {
	background: rgba(255,255,255,.12);
	color: #fff;
	backdrop-filter: blur(8px);
}
/* Cờ nhỏ trong eyebrow (trang service hub) */
.eyebrow__flag { display: inline-flex; vertical-align: middle; margin-right: 4px; }
.eyebrow__flag img,
.eyebrow__flag svg { width: 20px; height: 14px; object-fit: cover; border-radius: 2px; display: block; }
/* Cờ nhỏ trong badge tag (card chứng thực monogram) */
.ph__tag { display: inline-flex; align-items: center; gap: 6px; font-weight: 600; width: auto; max-width: max-content; }
.ph__tag-flag { display: inline-flex; flex: 0 0 auto; }
.ph__tag .ph__tag-flag img,
.ph__tag .ph__tag-flag svg { width: 18px; height: 12px; object-fit: cover; border-radius: 2px; display: block; }
.ph__caption {
	position: absolute;
	bottom: 14px; left: 14px; right: 14px;
	font-family: var(--font-mono);
	font-size: 11px;
	opacity: .85;
	letter-spacing: 0.02em;
}
/* When .ph contains a real photo: drop the stripe bg, fill with the image. */
.ph--photo, .ph--photo[data-tone="dark"] { background: none; border-color: transparent; }
/* Ảnh phủ đầy khung dù là <img> trực tiếp hay bọc trong <picture> (webp). */
.ph--photo > img,
.ph--photo > picture {
	position: absolute; inset: 0;
	width: 100%; height: 100%;
	display: block;
}
.ph--photo img {
	width: 100%; height: 100%;
	object-fit: cover;
	display: block;
}
.ph--photo[data-tone="dark"]::after {
	content: "";
	position: absolute; inset: 0;
	background: linear-gradient(180deg, rgba(0,0,0,0) 40%, rgba(0,0,0,.55) 100%);
	pointer-events: none;
}
/* Flag chips for service / country cards. */
.flag-chip {
	display: block;
	width: 100%; height: 100%;
	object-fit: cover;
	object-position: center;
}
.country__ph .flag-chip,
.svc__ph .flag-chip { border-radius: inherit; }

/* ---------- Top bar: pill ngôn ngữ (phần topbar còn lại style ở khối "Top utility bar" dưới).
   Đã gỡ block .topbar/.topbar__inner trùng + .topbar__left/right/.dot chết (markup nay là
   .topbar__ticker/.topbar__contact) — 04/06. ---------- */
.lang { display: inline-flex; align-items: center; gap: 6px; padding: 4px 8px; border-radius: 4px; background: rgba(255,255,255,.06); font-size: 12px; }
.lang strong { color: #fff; }

/* ---------- Top utility bar (scrolls away) ---------- */
.topbar {
	background: var(--c-ink);
	color: rgba(255, 255, 255, .72);
	font-size: 12.5px;
	border-bottom: 1px solid rgba(255, 255, 255, .08);
}
.topbar__inner {
	max-width: var(--max);
	margin: 0 auto;
	padding: 7px 18px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
}
.topbar__msg { margin: 0; letter-spacing: .02em; display: inline-flex; align-items: center; gap: 9px; }
.topbar__dot {
	width: 7px; height: 7px; border-radius: 50%;
	background: var(--c-accent);
	box-shadow: 0 0 0 3px color-mix(in oklab, var(--c-accent), transparent 70%);
	flex-shrink: 0;
}
.topbar__contact { display: flex; align-items: center; gap: 20px; }
.topbar__link {
	color: rgba(255, 255, 255, .82);
	text-decoration: none;
	display: inline-flex;
	align-items: center;
	gap: 7px;
	transition: color .2s ease;
}
.topbar__link svg { opacity: .8; }
.topbar__link:hover { color: #fff; }
.topbar__link:hover svg { color: var(--c-accent); opacity: 1; }
/* Nút chuyển ngôn ngữ VI / EN */
.lang-switch { display: inline-flex; align-items: center; gap: 2px; }
.lang-switch__opt {
	color: rgba(255, 255, 255, .55);
	text-decoration: none;
	font-weight: 700;
	font-size: 12px;
	letter-spacing: .04em;
	line-height: 1;
	padding: 3px 6px;
	border-radius: 5px;
	transition: color .2s ease, background .2s ease;
}
.lang-switch__opt:hover { color: #fff; }
.lang-switch__opt.is-active { color: var(--c-accent); background: rgba(255, 255, 255, .08); }
.lang-switch__sep { opacity: .3; font-size: 11px; }
/* Thanh chạy chữ — fade luân phiên từng mẩu (không trượt ngang) */
.topbar__msg { flex: 1 1 auto; min-width: 0; }
.topbar__ticker {
	position: relative;
	flex: 1 1 auto;
	min-width: 0;
	height: 1.4em;
	overflow: hidden;
}
.topbar__ticker-item {
	position: absolute;
	inset: 0 0 auto 0;          /* top/left 0, full width để ellipsis hoạt động */
	line-height: 1.4em;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
	color: inherit;
	text-decoration: none;
	opacity: 0;
	animation: m2w-ticker-fade 24s infinite;   /* 4 mẩu × 6s */
	animation-delay: calc(var(--i) * 6s);
}
.topbar__ticker-item:hover { color: #fff; text-decoration: underline; }
.topbar__ticker-item .t-short { display: none; }   /* bản ngắn — chỉ hiện ở mobile */
@keyframes m2w-ticker-fade {
	0%   { opacity: 0; visibility: hidden; }
	1%   { opacity: 0; visibility: visible; }
	3%   { opacity: 1; }   /* fade in nhanh */
	23%  { opacity: 1; }   /* giữ ~5s */
	25%  { opacity: 0; }   /* fade out */
	100% { opacity: 0; visibility: hidden; }
}
@media (prefers-reduced-motion: reduce) {
	.topbar__ticker-item { animation: none; opacity: 0; visibility: hidden; }
	.topbar__ticker-item:first-child { opacity: 1; visibility: visible; }
}
/* Sticky header không che form khi nhảy tới anchor */
#lien-he-form { scroll-margin-top: 96px; }

@media (max-width: 720px) {
	.topbar { font-size: 11.5px; }
	.topbar__inner { gap: 12px; }            /* giữ space-between từ base để ticker trái, hotline phải */
	.topbar__dot { display: none; }          /* bỏ chấm cho gọn màn nhỏ */
	.topbar__link--email { display: none; }
	.topbar__ticker-item .t-full  { display: none; }
	.topbar__ticker-item .t-short { display: inline; }
}

/* ---------- Header / Nav (single-row sticky) ---------- */
.site-header {
	/* Header dùng CHUNG token palette (gộp 04/06) — hết hệ xám riêng tách rời, đổi palette là đồng bộ. */
	--hdr-text:   var(--c-ink);
	--hdr-muted:  var(--c-muted);
	--hdr-border: var(--c-line);
	position: sticky;
	top: 0;
	z-index: 9999;
	background: #ffffff;
	border-bottom: 1px solid var(--hdr-border);
	transition: box-shadow .25s ease, background .25s ease;
}
.site-header.is-scrolled {
	box-shadow: 0 8px 30px rgba(15, 27, 45, .09);
	background: rgba(255, 255, 255, .92);
	backdrop-filter: saturate(160%) blur(10px);
	-webkit-backdrop-filter: saturate(160%) blur(10px);
}
nav.nav { background: transparent; border: 0; }
.nav__inner {
	max-width: var(--max);
	margin: 0 auto;
	padding: 15px 18px;          /* đối xứng trên/dưới — canh dọc cân */
	display: flex;
	align-items: center;
	gap: 24px;
	transition: padding .25s ease;
}
.site-header.is-scrolled .nav__inner { padding-top: 9px; padding-bottom: 9px; }
.brand { display: flex; align-items: center; gap: 12px; }
.brand__mark { width: 44px; height: 44px; display: grid; place-items: center; }
.brand__mark img { width: 100%; height: auto; }
.brand__mark--text {
	background: var(--c-accent);
	color: #fff;
	border-radius: 10px;
	font-family: var(--font-serif);
	font-style: italic;
	font-weight: 600;
	font-size: 22px;
	line-height: 1;
}
.brand__mark--icon { width: 48px; height: 48px; }
.brand__mark--icon img { width: 100%; height: 100%; object-fit: contain; }
.brand--logo-only .brand__logo {
	display: block;
	height: 34px;
	width: auto;
	max-width: 240px;
}
.site-header .brand { gap: 10px; flex-shrink: 0; text-decoration: none; }

/* Stacked brand: [logo image] [name / tagline] */
.brand--stacked { display: inline-flex; align-items: center; gap: 12px; text-decoration: none; }
.brand--stacked .brand__mark--logo {
	width: 48px; height: 48px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
}
.brand--stacked .brand__mark--logo img {
	width: 100%;
	height: 100%;
	object-fit: contain;
	display: block;
}
.brand--stacked .brand__wm { display: inline-flex; flex-direction: column; line-height: 1.05; }
.brand--stacked .brand__name {
	font-weight: 700;
	font-size: 15px;
	letter-spacing: 0.14em;
	color: var(--c-ink);
	text-transform: uppercase;
}
.brand--stacked .brand__tag {
	font-family: var(--font-serif);
	font-style: italic;
	font-size: 12.5px;
	color: var(--c-muted);
	margin-top: 4px;
	letter-spacing: 0.01em;
}

@media (max-width: 720px) {
	.brand--logo-only .brand__logo { height: 30px; max-width: 180px; }
	.site-header .brand { min-width: 0; }
	.brand--stacked .brand__mark--logo { width: 40px; height: 40px; }
	.brand--stacked .brand__name { font-size: 13px; letter-spacing: 0.1em; }
	.brand--stacked .brand__tag { font-size: 10.5px; }
}
.brand__wm { line-height: 1; }
.brand__name { font-weight: 700; font-size: 16px; letter-spacing: 0.16em; color: var(--c-ink); }
.brand__name a { color: inherit; }
.brand__tag { font-family: var(--font-serif); font-style: italic; font-size: 12px; color: var(--c-muted); margin-top: 2px; letter-spacing: 0.01em; }

/* Menu — var(--font-sans), weight 500, uppercase, 0.92rem */
.site-header .menu {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	align-items: center;
	justify-content: center;   /* canh giữa cụm menu trong khoảng brand↔CTA */
	flex: 1 1 0;               /* ăn khoảng trống giữa + co được → menu cân giữa, KHÔNG đẩy CTA tràn */
	min-width: 0;
	gap: 16px;
	flex-wrap: nowrap;
}
.site-header .menu > li { position: static; margin: 0; }
.site-header .menu > li > a {
	font: 500 0.92rem/1 var(--font-sans);
	color: var(--hdr-text);
	text-decoration: none;
	display: inline-flex;
	align-items: center;
	gap: 5px;
	padding: 10px 0;
	white-space: nowrap;
	letter-spacing: 0.005em;   /* Title Case — đọc lướt dễ, hết "tường chữ hoa" */
	text-transform: none;
	position: relative;
	transition: color .2s ease;
}

/* ===== Logo CĂN GIỮA (≥1280): logo hàng trên (một mình, căn giữa); menu + CTA xuống hàng dưới =====
   Menu căn giữa, gap CỐ ĐỊNH = đều, không giãn quá; CTA canh phải cùng hàng. ≤1279 vẫn hamburger. */
@media (min-width: 1280px) {
	.nav__inner {
		display: grid;
		grid-template-columns: auto auto;
		grid-template-areas:
			"brand brand"
			"menu  cta";
		justify-content: center;   /* căn giữa CẢ CỤM (menu + CTA) trên trang → thẳng dưới logo, hết hở giữa */
		column-gap: 32px;
		row-gap: 12px;
		align-items: center;
		padding-top: 16px;
		padding-bottom: 16px;     /* cho menu/CTA thở, không sát section dưới */
	}
	.site-header .brand { grid-area: brand; justify-self: center; }
	.site-header .menu {
		grid-area: menu;
		flex: 0 1 auto;
		justify-content: center;   /* gap cố định = ĐỀU, không giãn loe */
		gap: 0 26px;
		margin: 0;
	}
	.nav__cta { grid-area: cta; align-self: center; margin: 0; }
}
/* Animated underline */
.site-header .menu > li > a::before {
	content: "";
	position: absolute;
	left: 0; right: 0; bottom: 2px;
	height: 2px;
	border-radius: 2px;
	background: var(--c-accent);
	transform: scaleX(0);
	transform-origin: center;
	transition: transform .25s ease;
}
.site-header .menu > li > a:hover { color: var(--c-accent); }
.site-header .menu > li:hover > a::before,
.site-header .menu .current-menu-item > a::before,
.site-header .menu .current_page_item > a::before,
.site-header .menu .current-menu-ancestor > a::before,
.site-header .menu a.is-active::before { transform: scaleX(1); }
.site-header .menu .current-menu-item > a,
.site-header .menu .current_page_item > a,
.site-header .menu .current-menu-ancestor > a,
.site-header .menu a.is-active { color: var(--c-accent); }
.site-header .menu .menu-item-has-children > a::after {
	content: "";
	display: inline-block;
	width: 10px; height: 10px;
	background: currentColor;
	mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 10 10'><path d='M2 3.5L5 6.5L8 3.5' stroke='black' stroke-width='1.4' fill='none' stroke-linecap='round' stroke-linejoin='round'/></svg>") center/contain no-repeat;
	-webkit-mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 10 10'><path d='M2 3.5L5 6.5L8 3.5' stroke='black' stroke-width='1.4' fill='none' stroke-linecap='round' stroke-linejoin='round'/></svg>") center/contain no-repeat;
	transform: translateY(1px);
	transition: transform .25s ease;
}
.site-header .menu .menu-item-has-children:hover > a::after,
.site-header .menu .has-mega:hover > a::after { transform: translateY(1px) rotate(180deg); }
/* Dropdown panel — white card, soft shadow, no rounded corners on header touch */
.site-header .menu .sub-menu {
	display: none;
	position: absolute;
	top: 100%;
	left: 50%;
	transform: translateX(-50%);
	min-width: 240px;
	background: #fff;
	border: 1px solid var(--hdr-border);
	border-radius: 8px;
	box-shadow: 0 20px 45px rgba(0, 0, 0, .12);
	padding: 10px;
	list-style: none;
	margin: 0;
	flex-direction: column;
	gap: 0;
	z-index: 60;
}
.site-header .menu > li.has-mega,
.site-header .menu > li.menu-item-has-children { position: relative; }
/* Mega full-width căn giữa theo header (không theo item) → không tràn mép phải */
.site-header .menu > li.has-mega--full { position: static; }
.site-header .menu > li:hover > .sub-menu,
.site-header .menu > li:focus-within > .sub-menu { display: flex; }

/* Mega-menu panel (4-column) */
.site-header .menu > li.has-mega .mega-panel {
	display: none;
	position: absolute;
	top: 100%;
	left: 50%;
	transform: translateX(-50%);
	width: min(1180px, calc(100vw - 40px));
	background: #fff;
	border: 1px solid var(--hdr-border);
	border-radius: 10px;
	box-shadow: 0 20px 45px rgba(0, 0, 0, .12);
	padding: 20px 22px;
	z-index: 60;
}
.site-header .menu > li.has-mega:hover .mega-panel,
.site-header .menu > li.has-mega:focus-within .mega-panel { display: block; }

/* Cầu nối hover trong suốt — giữ panel mở khi rê chuột từ menu xuống nội dung
   (vá khoảng trống chết giữa menu item và panel) */
.site-header .menu > li.has-mega .mega-panel::before,
.site-header .menu .sub-menu::before {
	content: "";
	position: absolute;
	left: 0;
	right: 0;
	top: -20px;
	height: 20px;
}

/* Entrance fade-slide cho dropdown + mega (desktop only) */
@keyframes m2wDropIn {
	from { opacity: 0; transform: translateX(-50%) translateY(10px); }
	to   { opacity: 1; transform: translateX(-50%) translateY(0); }
}
@media (min-width: 1025px) {
	.site-header .menu > li:hover > .sub-menu,
	.site-header .menu > li:focus-within > .sub-menu,
	.site-header .menu > li.has-mega:hover .mega-panel,
	.site-header .menu > li.has-mega:focus-within .mega-panel {
		animation: m2wDropIn .22s ease both;
	}
}
.mega-panel__top { margin-bottom: 12px; }
.mega-panel__overview {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	padding: 8px 14px;
	background: color-mix(in oklab, var(--c-accent), white 88%);
	color: var(--c-accent);
	border-radius: 999px;
	font: 600 0.82rem/1 var(--font-sans);
	letter-spacing: 0.04em;
	text-transform: uppercase;
	text-decoration: none;
	white-space: nowrap;
}
.mega-panel__overview:hover { background: var(--c-accent); color: #fff; }
.mega-panel__body.has-feature {
	display: grid;
	grid-template-columns: 244px 1fr;
	gap: 22px;
	align-items: stretch;
}
.mega-panel__cols {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
	gap: 0;
}
/* Feature card (cột trái mega-menu) */
.mega-feature {
	display: flex;
	flex-direction: column;
	padding: 0;
	border-radius: 14px;
	overflow: hidden;
	background: linear-gradient(180deg, #fff, color-mix(in oklab, var(--c-accent), #fff 93%));
	border: 1px solid color-mix(in oklab, var(--c-accent), var(--hdr-border) 60%);
	box-shadow: 0 6px 18px color-mix(in oklab, var(--c-accent), transparent 88%);
}
.mega-feature__img,
.mega-feature__viz { order: -1; aspect-ratio: 16 / 9; margin: 0; }
.mega-feature__img { overflow: hidden; }
.mega-feature__img img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .35s ease; }
.mega-feature:hover .mega-feature__img img { transform: scale(1.04); }
.mega-feature__viz { display: grid; place-items: center; color: #fff; background: linear-gradient(135deg, var(--c-accent), var(--c-ink)); }
.mega-feature__viz svg { width: 52px; height: 52px; opacity: .95; }
.mega-feature__head { padding: 14px 16px; }
.mega-feature__title { margin: 0; font: 700 1rem/1.3 var(--font-sans); color: var(--c-ink); letter-spacing: -0.01em; }
.mega-feature__desc { margin: 7px 0 0; font-size: 0.82rem; line-height: 1.55; color: var(--c-muted); }
/* Cột quốc gia canh đều — auto-fit để khít cả 3 lẫn 4 cột */
/* M2W_CANADA_OFF: gốc repeat(4, minmax(0,1fr)) — bỏ Canada còn 3 cột nên đổi auto-fit để không hở ô */
.site-header .menu > li.has-mega--full .mega-panel__cols { grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); }
.mega-feature__cta {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 7px;
	margin: auto 16px 16px;
	background: var(--c-accent);
	color: #fff !important;
	text-decoration: none;
	padding: 11px 14px;
	border-radius: 8px;
	font: 600 0.82rem/1 var(--font-sans);
	white-space: nowrap;
	transition: background-color .2s ease, transform .2s ease;
}
.mega-feature__cta:hover { background: var(--c-dark); transform: translateY(-1px); }
.mega-feature__cta .arr { transition: transform .2s ease; }
.mega-feature__cta:hover .arr { transform: translateX(3px); }
/* Panel widths — feature card menu nhỏ hơn */
.site-header .menu > li.has-mega .mega-panel--compact { width: min(600px, calc(100vw - 40px)); }
.site-header .menu > li.has-mega .mega-panel--medium  { width: min(880px, calc(100vw - 40px)); }
.mega-panel--compact .mega-panel__body.has-feature,
.mega-panel--medium .mega-panel__body.has-feature { grid-template-columns: 240px 1fr; }

/* Badge + heading tĩnh + mục đang phát triển */
.mega-badge {
	display: inline-block;
	font: 700 0.66rem/1 var(--font-sans);
	text-transform: uppercase;
	letter-spacing: 0.04em;
	padding: 3px 6px;
	border-radius: 4px;
	vertical-align: middle;
	margin-left: 5px;
}
.mega-badge--new { background: #16a34a; color: #fff; }
.mega-badge--soon { background: color-mix(in oklab, var(--c-accent), #fff 78%); color: var(--c-accent); }
.mega-col__heading--static { cursor: default; }
.mega-col__links li.is-soon > span {
	display: block;
	padding: 9px 10px;
	margin: 1px -10px;
	font: 500 0.875rem/1.4 var(--font-sans);
	color: var(--c-muted);
}
.mega-col { padding: 2px 18px; border-right: 1px solid color-mix(in oklab, var(--hdr-border), transparent 40%); }
.mega-col:last-child { border-right: 0; }
.mega-col__heading {
	display: flex;
	align-items: center;
	gap: 7px;
	padding-bottom: 9px;
	margin-bottom: 10px;
	border-bottom: 2px solid color-mix(in oklab, var(--c-accent), #fff 72%);
	color: var(--hdr-text);
	font: 700 0.84rem/1.25 var(--font-sans);
	text-decoration: none;
	text-transform: uppercase;
	letter-spacing: 0.015em;
	white-space: nowrap;
}
.mega-col__heading > span { white-space: nowrap; }
.mega-col__heading:hover { color: var(--c-accent); }
.mega-col__flag {
	width: 22px; height: 16px;
	display: inline-block;
	overflow: hidden;
	border-radius: 2px;
	flex-shrink: 0;
}
.mega-col__flag img { width: 100%; height: 100%; object-fit: cover; }
.mega-col__thumb {
	position: relative;
	display: block;
	margin: 0 0 12px;
	border-radius: 8px;
	overflow: hidden;
	aspect-ratio: 16 / 7;
	line-height: 0;
	background: color-mix(in oklab, var(--hdr-border), transparent 40%);
}
.mega-col__thumb img { width: 100%; height: 100%; object-fit: cover; display: block; }
.mega-col__thumb::after {
	content: "";
	position: absolute;
	inset: 0;
	border-radius: 8px;
	box-shadow: inset 0 0 0 1px color-mix(in oklab, var(--hdr-border), transparent 30%);
	pointer-events: none;
}
.mega-col__links { list-style: none; margin: 0; padding: 0; }
.mega-col__links li { margin: 0; }
/* Đường kẻ mảnh phân tách các mục — cho cụm thở, không dính thành "khối chữ" */
.mega-col__links li + li { border-top: 1px solid color-mix(in oklab, var(--hdr-border), transparent 45%); }
.mega-col__links a {
	display: block;
	padding: 9px 8px;
	border-radius: 8px;
	font: 500 0.875rem/1.4 var(--font-sans);
	color: var(--hdr-text);
	text-decoration: none;
	text-transform: none;
	letter-spacing: 0;
	transition: background-color .15s ease, color .15s ease;
}
.mega-col__links a:hover { background: color-mix(in oklab, var(--c-accent), #fff 90%); color: var(--c-accent); }
/* Link bài (1 dòng): nowrap + ellipsis → mọi mục cao bằng nhau, các cột thẳng hàng (KHÔNG áp item 2-dòng .mega-link--two của menu dịch vụ). */
.mega-col__links a:not(.mega-link--two) { white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
/* Mục 2 dòng: icon loại dịch vụ trong ô bo + tên + mã visa */
.mega-col__links a.mega-link--two {
	display: flex;
	align-items: center;
	gap: 11px;
	padding-top: 10px;
	padding-bottom: 10px;
}
.mega-link__ico {
	flex: 0 0 auto;
	width: 32px; height: 32px;
	display: grid; place-items: center;
	border-radius: 9px;
	background: color-mix(in oklab, var(--c-accent), #fff 87%);
	color: var(--c-accent);
	transition: background-color .15s ease, color .15s ease;
}
.mega-link__ico svg { width: 17px; height: 17px; }
.mega-link__text { min-width: 0; }
.mega-col__links a:hover .mega-link__ico { background: var(--c-accent); color: #fff; }
.mega-link__code { display: block; font-weight: 600; font-size: 0.9rem; line-height: 1.3; color: var(--hdr-text); }
.mega-link__sub { display: block; font-weight: 400; font-size: 0.775rem; line-height: 1.35; color: var(--c-muted); margin-top: 1px; }
.mega-col__links a:hover .mega-link__code { color: var(--c-accent); }
.mega-col__links a:hover .mega-link__sub { color: color-mix(in oklab, var(--c-accent), var(--c-muted) 50%); }
.mega-panel__bottom {
	margin-top: 14px;
	padding-top: 12px;
	border-top: 1px solid var(--hdr-border);
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
}
.mega-panel__link-pill {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	padding: 7px 14px;
	border: 1px solid var(--hdr-border);
	border-radius: 999px;
	font: 600 0.82rem/1 var(--font-sans);
	color: var(--hdr-text);
	text-decoration: none;
	white-space: nowrap;
}
.mega-panel__link-pill:hover { background: var(--c-accent); border-color: var(--c-accent); color: #fff; }

@media (max-width: 1279px) {
	.site-header .menu > li.has-mega .mega-panel {
		position: static;
		transform: none;
		width: auto;
		box-shadow: none;
		border: 0;
		padding: 8px 0 12px;
	}
	.site-header .menu > li.has-mega .mega-panel::before,
	.site-header .menu .sub-menu::before { display: none; }
	.mega-panel__cols { grid-template-columns: 1fr; gap: 8px; }
	.mega-col { border-right: 0; border-bottom: 1px solid var(--hdr-border); padding: 8px 0; }
	.mega-col:last-child { border-bottom: 0; }
	.mega-panel__body.has-feature { grid-template-columns: 1fr; gap: 14px; }
	.mega-feature { order: 2; }
}
.site-header .menu .sub-menu a {
	display: block;
	padding: 9px 14px;
	font: 500 0.9rem/1.3 var(--font-sans);
	color: var(--hdr-text);
	text-transform: none;
	letter-spacing: 0;
	border-radius: 6px;
	white-space: normal;
}
.site-header .menu .sub-menu a:hover { background: #f3f4f6; color: var(--c-accent); }

.nav__cta { display: flex; gap: 10px; align-items: center; flex-shrink: 0; }
/* Mobile (≤768px): đã có sticky CTA dưới đáy (.m2w-mobile-cta) → ẩn nút CTA trên header
   cho khỏi tràn ngang (logo + nút 200px + hamburger không vừa màn hẹp). */
@media (max-width: 768px) { .nav__cta { display: none; } }
.btn--nav {
	display: inline-flex !important;
	align-items: center;
	justify-content: center;
	gap: 8px;
	background-color: var(--c-accent);
	color: #ffffff !important;
	text-decoration: none;
	border-radius: 999px;
	padding: 11px 26px;
	font-weight: 800;          /* đậm bằng heading trang → hết "mờ nhạt", nổi bật */
	font-size: 0.92rem;
	letter-spacing: 0.01em;
	line-height: 1.2;
	cursor: pointer;
	transition: background-color .22s ease, border-color .22s ease, color .22s ease, transform .22s ease, box-shadow .22s ease;
	border: 1px solid var(--c-accent);
	white-space: nowrap;
	box-shadow: 0 8px 22px color-mix(in oklab, var(--c-accent), transparent 52%);
}
.btn--nav .arr { transition: transform .25s ease; font-size: 1.05em; line-height: 0; }
.btn--nav:hover {
	background-color: var(--c-dark);
	border-color: var(--c-dark);
	color: #fff !important;
	transform: translateY(-2px);
	box-shadow: 0 12px 26px color-mix(in oklab, var(--c-ink), transparent 68%);
}
.btn--nav:hover .arr { transform: translateX(4px); }

.menu-toggle {
	display: none;
	background: transparent;
	border: 1px solid var(--c-line);
	border-radius: 8px;
	padding: 8px 10px;
}
.menu-toggle__bar,
.menu-toggle__bar::before,
.menu-toggle__bar::after {
	display: block; width: 22px; height: 2px; background: var(--c-ink); position: relative;
}
.menu-toggle__bar::before, .menu-toggle__bar::after { content: ""; position: absolute; left: 0; }
.menu-toggle__bar::before { top: -7px; }
.menu-toggle__bar::after  { top: 7px; }

@media (max-width: 1279px) {
	.site-header .menu { display: none; }
	.menu-toggle { display: inline-flex; order: 99; }
	.main-navigation.is-open .menu {
		display: flex !important;
		flex-direction: column;
		align-items: stretch;
		position: absolute;
		left: 0; right: 0; top: 100%;
		background: #fff;
		border-top: 1px solid var(--hdr-border);
		padding: 12px 18px 18px;
		gap: 2px;
		box-shadow: 0 20px 45px rgba(0, 0, 0, .12);
		justify-content: flex-start;
	}
	.main-navigation.is-open .menu > li > a { padding: 12px 0; }
	.main-navigation.is-open .menu .sub-menu {
		display: flex;
		position: static;
		transform: none;
		border: 0;
		box-shadow: none;
		padding: 0 0 8px 16px;
		background: transparent;
		min-width: 0;
	}
	.btn--nav { padding: 8px 14px; font-size: 0.82rem; }
}
/* (Bỏ block siết 1280–1439 cũ — layout logo-giữa cho menu nguyên 1 hàng nên không cần siết.) */
@media (max-width: 560px) {
	.nav__inner { gap: 10px; padding: 10px 14px 8px; }
}

/* ---------- Hero ---------- */
.hero { padding: clamp(48px, 7vw, 96px) 0 clamp(64px, 8vw, 112px); position: relative; }
.hero__grid {
	display: grid;
	grid-template-columns: 1.05fr 1fr;
	gap: clamp(32px, 5vw, 72px);
	align-items: center;
}
@media (max-width: 900px) { .hero__grid { grid-template-columns: 1fr; } }

/* ---------- Hero Full-Width (background carousel + overlay text) ---------- */
.hero--full {
	position: relative;
	padding: 0;
	min-height: clamp(520px, 80vh, 720px);
	overflow: hidden;
	color: #fff;
	isolation: isolate;
}
/* Banner mode: per-slide overlay text on left + CTA, slide-in animation on activate. */
.hero--banner {
	min-height: clamp(480px, 70vh, 720px);
}
.hero--banner .carousel__slide img {
	object-position: center;
	z-index: 1;
}
.hero--banner .carousel__slide::after {
	content: "";
	position: absolute;
	inset: 0;
	background: linear-gradient(90deg, rgba(11, 17, 28, .75) 0%, rgba(11, 17, 28, .55) 40%, rgba(11, 17, 28, .15) 75%, transparent 100%);
	z-index: 2;
	pointer-events: none;
}
@media (max-width: 720px) {
	.hero--banner { min-height: 60vh; }
	.hero--banner .carousel__slide::after {
		background: linear-gradient(180deg, rgba(11, 17, 28, .35) 0%, rgba(11, 17, 28, .8) 100%);
	}
}

/* Per-slide content overlay — anchored to viewport top-left (NOT container-centered) */
.slide__overlay {
	position: absolute;
	inset: 0;
	z-index: 3;
	display: flex;
	align-items: flex-start;
	color: #fff;
	padding-left: clamp(20px, 3.5vw, 56px);
	padding-top: clamp(36px, 5vw, 64px);
}
.slide__overlay .container {
	max-width: none;
	margin: 0;
	padding: 0;
	width: 100%;
}
.slide__content {
	max-width: 580px;
	padding: 0;
}
.slide__title {
	font-size: clamp(36px, 5vw, 64px);
	font-weight: 700;
	line-height: 1.22;          /* nới cho tiêu đề tiếng Việt 2 dòng — tránh dấu (ễ/ồ) dính dòng trên */
	letter-spacing: -0.02em;
	margin: 0 0 18px;
	color: #fff;
	text-shadow: 0 2px 24px rgba(0, 0, 0, .25);
}
.slide__desc {
	font-size: clamp(15px, 1.2vw, 18px);
	line-height: 1.6;
	color: rgba(255, 255, 255, .9);
	margin: 0 0 28px;
	max-width: 480px;
	text-shadow: 0 1px 8px rgba(0, 0, 0, .3);
}
.slide__cta { font-size: 14.5px; }
@media (max-width: 720px) {
	.slide__content { max-width: 100%; padding: 24px 0; }
	.slide__title { font-size: clamp(28px, 8vw, 40px); margin-bottom: 12px; }
	.slide__desc { font-size: 14px; margin-bottom: 20px; }
}

/* Slide-in animation — chữ chạy từ PHẢI qua trái khi slide becomes .is-active */
.hero--banner .carousel__slide .slide__title,
.hero--banner .carousel__slide .slide__desc,
.hero--banner .carousel__slide .slide__cta {
	opacity: 0;
	transform: translateX(64px);
	transition: opacity .9s cubic-bezier(.22,.61,.36,1), transform .9s cubic-bezier(.22,.61,.36,1);
}
.hero--banner .carousel__slide.is-active .slide__title {
	opacity: 1; transform: translateX(0);
	transition-delay: .35s;
}
.hero--banner .carousel__slide.is-active .slide__desc {
	opacity: 1; transform: translateX(0);
	transition-delay: .55s;
}
.hero--banner .carousel__slide.is-active .slide__cta {
	opacity: 1; transform: translateX(0);
	transition-delay: .75s;
}
@media (prefers-reduced-motion: reduce) {
	.hero--banner .carousel__slide .slide__title,
	.hero--banner .carousel__slide .slide__desc,
	.hero--banner .carousel__slide .slide__cta {
		opacity: 1;
		transform: none;
		transition: none;
	}
}
.hero--full .hero__track {
	position: absolute;
	inset: 0;
	z-index: 1;
}
.hero--full .carousel__slide {
	position: absolute;
	inset: 0;
	opacity: 0;
	transition: opacity 1s cubic-bezier(.4,0,.2,1);
}
.hero--full .carousel__slide.is-active { opacity: 1; }
.hero--full .carousel__slide img {
	width: 100%; height: 100%;
	object-fit: cover;
	display: block;
}
.hero--full .hero__overlay {
	position: relative;
	z-index: 2;
	min-height: clamp(520px, 80vh, 720px);
	display: flex;
	align-items: center;
	background:
		linear-gradient(90deg, rgba(11, 17, 28, .85) 0%, rgba(11, 17, 28, .72) 35%, rgba(11, 17, 28, .42) 65%, rgba(11, 17, 28, .15) 100%),
		linear-gradient(180deg, rgba(11, 17, 28, .15) 0%, transparent 30%, transparent 70%, rgba(11, 17, 28, .35) 100%);
}
.hero--full .hero__content {
	max-width: 640px;
	padding: clamp(56px, 8vw, 96px) 0;
	text-align: left;
}
.hero--full h1 {
	color: #fff;
	margin-top: 18px;
	font-size: clamp(36px, 4.6vw, 64px);
	line-height: 1.16;
	letter-spacing: -0.02em;
	text-wrap: balance;
	text-shadow: 0 2px 24px rgba(0, 0, 0, .25);
}
.hero--full h1 .underline {
	background: linear-gradient(transparent 65%, color-mix(in oklab, var(--c-accent), transparent 50%) 65%);
	padding: 0 6px;
}
.hero--full .hero__lede--on-overlay {
	color: rgba(255, 255, 255, .9);
	text-shadow: 0 1px 8px rgba(0, 0, 0, .3);
	max-width: 520px;
}
.hero--full .eyebrow--on-overlay { color: rgba(255, 255, 255, .8); }
.hero--full .eyebrow--on-overlay::before { background: var(--c-accent); }
.hero--full .hero__actions { margin-top: 32px; }
@media (max-width: 720px) {
	.hero--full .hero__overlay {
		background: linear-gradient(180deg, rgba(11, 17, 28, .55) 0%, rgba(11, 17, 28, .82) 100%);
	}
	.hero--full .hero__content { max-width: 100%; text-align: left; }
	.hero--full h1 { font-size: clamp(30px, 8vw, 44px); }
}

.btn-on-overlay {
	background: rgba(255, 255, 255, .1);
	color: #fff;
	border: 1px solid rgba(255, 255, 255, .35);
	backdrop-filter: blur(10px);
	-webkit-backdrop-filter: blur(10px);
}
.btn-on-overlay:hover {
	background: rgba(255, 255, 255, .92);
	color: var(--c-ink);
	border-color: rgba(255, 255, 255, .92);
}

/* Carousel arrows on hero edges */
.carousel__arrow {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	z-index: 5;
	width: 42px; height: 42px;
	border-radius: 50%;
	border: 1px solid rgba(255, 255, 255, .45);
	background: rgba(255, 255, 255, .12);
	color: #fff;
	cursor: pointer;
	display: grid;
	place-items: center;
	opacity: .55;
	backdrop-filter: blur(6px);
	-webkit-backdrop-filter: blur(6px);
	transition: opacity .25s ease, background-color .25s ease, border-color .25s ease, color .25s ease, transform .25s ease;
}
.hero:hover .carousel__arrow,
.carousel__arrow:focus-visible { opacity: 1; }
.carousel__arrow:hover {
	opacity: 1;
	background: rgba(255, 255, 255, .95);
	border-color: #fff;
	color: var(--c-ink);
	transform: translateY(-50%) scale(1.06);
}
.carousel__arrow--prev { left: 28px; }
.carousel__arrow--next { right: 28px; }
@media (max-width: 720px) {
	.carousel__arrow { width: 38px; height: 38px; opacity: .8; }
	.carousel__arrow--prev { left: 12px; }
	.carousel__arrow--next { right: 12px; }
}

.hero--full .carousel__dots {
	position: absolute;
	bottom: 28px;
	left: 50%;
	transform: translateX(-50%);
	z-index: 5;
}

/* ---------- Stats strip — thẻ nổi gối lên đáy hero ---------- */
.stats-strip {
	position: relative;
	z-index: 3;
	margin-top: -20px;            /* nhô nhẹ lên đáy hero, vẫn dưới hàng dots (bottom:28px) */
	padding: 0 0 clamp(18px, 3vw, 34px);
	background: transparent;
}
.stats-strip__grid {
	position: relative;
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 0;
	text-align: center;
	background: var(--c-surface);
	border: 1px solid var(--c-line);
	border-radius: var(--radius-xl);
	box-shadow: var(--shadow-lg);
	padding: clamp(26px, 3vw, 38px) clamp(14px, 2vw, 26px);
}
.stats-strip .stat {
	position: relative;
	display: flex; flex-direction: column; align-items: center; gap: 10px;
	padding: 4px clamp(10px, 2vw, 26px);
}
.stats-strip .stat + .stat::before {       /* vạch dọc ngăn cách giữa các chỉ số */
	content: "";
	position: absolute; left: 0; top: 50%;
	transform: translateY(-50%);
	width: 1px; height: 52px;
	background: var(--c-line);
}
.stats-strip .stat__num {
	font-size: clamp(31px, 3vw, 43px);
	font-weight: 800;
	color: var(--c-ink);
	letter-spacing: -0.025em;
	font-feature-settings: "tnum";
	line-height: 1;
}
.stats-strip .stat__num--word { font-size: clamp(25px, 2.5vw, 35px); }  /* "Miễn phí" — chữ, nhỏ hơn số cho cân */
.stats-strip .stat__num::before {          /* tick cam trên mỗi chỉ số — nhịp + thương hiệu */
	content: "";
	display: block;
	width: 26px; height: 3px;
	margin: 0 auto 13px;
	border-radius: 2px;
	background: var(--c-accent);
}
.stats-strip .stat__num sup { color: var(--c-accent); font-size: .5em; vertical-align: super; margin-left: 1px; font-weight: 700; }
.stats-strip .stat small {
	font-size: 13px;
	color: var(--c-muted);
	letter-spacing: 0.02em;
	line-height: 1.4;
	max-width: 22ch;
}
@media (max-width: 560px) {
	.stats-strip { margin-top: -14px; }
	.stats-strip__grid { grid-template-columns: repeat(2, 1fr); gap: clamp(22px, 6vw, 30px) 4px; padding: clamp(26px, 7vw, 32px) 16px; }
	.stats-strip .stat + .stat::before { display: none; }
	.stats-strip .stat { padding: 0 6px; }
}

/* ---------- Floating social sidebar (right side, fixed) ---------- */
.floating-social {
	position: fixed;
	right: 16px;
	bottom: 24px;
	z-index: 200;
	display: flex;
	flex-direction: column;
	gap: 10px;
}
.floating-social__btn {
	width: 52px; height: 52px;
	border-radius: 50%;
	display: grid;
	place-items: center;
	color: #fff;
	box-shadow: 0 6px 18px rgba(0, 0, 0, .18);
	position: relative;
	transition: transform .2s ease, box-shadow .2s ease;
	text-decoration: none;
}
.floating-social__btn:hover {
	transform: translateY(-2px) scale(1.05);
	box-shadow: 0 12px 28px rgba(0, 0, 0, .24);
	color: #fff;
}
.floating-social__btn--phone     { background: #22c55e; }
.floating-social__btn--messenger { background: #0084ff; }
.floating-social__btn--zalo      { background: #0068ff; }
.floating-social__btn--zalo svg  { width: 38px; height: 38px; }
.floating-social__pulse {
	position: absolute;
	inset: 0;
	border-radius: 50%;
	background: #22c55e;
	opacity: .55;
	animation: m2wPulse 1.8s ease-out infinite;
	z-index: -1;
}
@keyframes m2wPulse {
	0%   { transform: scale(1);   opacity: .55; }
	100% { transform: scale(1.7); opacity: 0;   }
}
@media (max-width: 720px) {
	.floating-social { right: 12px; bottom: 16px; gap: 8px; }
	.floating-social__btn { width: 46px; height: 46px; }
	.floating-social__btn--zalo svg { width: 34px; height: 34px; }
}
@media (prefers-reduced-motion: reduce) {
	.floating-social__pulse { animation: none; display: none; }
}

/* Back-to-top máy bay — hiện khi cuộn xuống */
.m2w-backtop {
	position: fixed;
	left: 24px;
	bottom: 24px;
	z-index: 200;
	width: 50px; height: 50px;
	border: none;
	border-radius: 50%;
	background: var(--c-accent);
	color: #fff;
	cursor: pointer;
	display: grid;
	place-items: center;
	box-shadow: 0 8px 22px rgba(15, 27, 45, .22);
	opacity: 0;
	visibility: hidden;
	transform: translateY(18px);
	transition: opacity .3s ease, transform .3s ease, visibility .3s ease, background-color .2s ease;
}
.m2w-backtop.is-visible { opacity: 1; visibility: visible; transform: translateY(0); }
.m2w-backtop svg { display: block; }
.m2w-backtop__plane { transition: transform .3s ease; }
.m2w-backtop:hover { background: var(--c-ink); box-shadow: 0 14px 30px rgba(15, 27, 45, .32); }
.m2w-backtop.is-visible:hover { transform: translateY(-3px); }
.m2w-backtop:hover .m2w-backtop__plane { transform: translateY(-3px); }
@keyframes m2w-fly {
	0%   { transform: translateY(0); }
	45%  { transform: translateY(-7px); opacity: .5; }
	46%  { transform: translateY(7px); opacity: 0; }
	55%  { transform: translateY(7px); opacity: 0; }
	56%  { transform: translateY(5px); opacity: .4; }
	100% { transform: translateY(0); opacity: 1; }
}
@media (max-width: 640px) {
	.m2w-backtop { left: 12px; bottom: 16px; width: 44px; height: 44px; }
}
@media (prefers-reduced-motion: reduce) {
	.m2w-backtop:hover svg { animation: none; }
}

.hero h1 {
	margin-top: 22px;
	font-size: clamp(40px, 5.4vw, 76px);
	line-height: 1.18;
	letter-spacing: -0.01em;
	font-weight: 800;
}
.hero h1 .serif {
	color: var(--c-accent);
	display: inline;
	font-family: var(--font-serif);
	font-style: italic;
	font-weight: 500;
	letter-spacing: -0.015em;
}
.hero h1 .underline {
	background: linear-gradient(transparent 70%, color-mix(in oklab, var(--c-accent), transparent 70%) 70%);
	padding: 0 4px;
}
.hero__lede {
	margin-top: 28px;
	font-size: clamp(16px, 1.15vw, 18px);
	line-height: 1.6;
	color: var(--c-ink-soft);
	max-width: 540px;
}
.hero__actions { margin-top: 36px; display: flex; gap: 12px; flex-wrap: wrap; }
.hero__meta {
	margin-top: 44px;
	padding-top: 28px;
	border-top: 1px solid var(--c-line);
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 24px;
}
@media (max-width: 560px) {
	.hero__meta { grid-template-columns: repeat(2, 1fr); gap: 20px; }
}
.hero__meta .stat { display: flex; flex-direction: column; gap: 4px; }
.hero__meta .stat__num {
	font-size: clamp(26px, 2.2vw, 32px);
	font-weight: 700;
	color: var(--c-ink);
	letter-spacing: -0.02em;
	font-feature-settings: "tnum";
	line-height: 1;
}
.hero__meta .stat small {
	font-size: 12.5px;
	color: var(--c-muted);
	margin-top: 4px;
	letter-spacing: 0.01em;
}

/* Generic carousel track (shared) */
.carousel__track {
	position: relative;
	width: 100%;
	height: 100%;
}
.carousel__slide {
	position: absolute;
	inset: 0;
	opacity: 0;
	transition: opacity .8s cubic-bezier(.4,0,.2,1);
	pointer-events: none;
}
.carousel__slide.is-active {
	opacity: 1;
	pointer-events: auto;
	z-index: 1;
}
.carousel__slide img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}
.carousel__dots {
	position: absolute;
	bottom: 22px;
	left: 50%;
	transform: translateX(-50%);
	display: flex;
	align-items: center;
	gap: 9px;
	z-index: 5;
	padding: 0;
	background: transparent;
}
.carousel__dot {
	position: relative;
	width: 7px;
	height: 7px;
	border-radius: 999px;
	border: 0;
	background: rgba(255, 255, 255, .5);
	box-shadow: 0 1px 4px rgba(0, 0, 0, .35);
	cursor: pointer;
	padding: 0;
	transition: width .3s ease, background-color .3s ease;
}
/* Vùng chạm ≥24px (WCAG 2.5.8) trong khi chấm vẫn nhỏ 7px — phủ trong suốt, không đẩy layout. */
.carousel__dot::after {
	content: "";
	position: absolute;
	top: 50%;
	left: 50%;
	width: 24px;
	height: 24px;
	transform: translate(-50%, -50%);
}
.carousel__dot:hover { background: rgba(255, 255, 255, .85); }
.carousel__dot.is-active {
	width: 26px;
	background: var(--c-accent);
}
/* ---------- Press bar ---------- */
.pressbar {
	border-top: 1px solid var(--c-line);
	border-bottom: 1px solid var(--c-line);
	background: var(--c-surface);
	padding: 22px 0;
}
.pressbar__inner {
	display: flex;
	align-items: center;
	gap: 48px;
	font-family: var(--font-mono);
	font-size: 12px;
	color: var(--c-muted);
	letter-spacing: 0.08em;
	overflow: hidden;
}
.pressbar__label { white-space: nowrap; color: var(--c-ink); font-weight: 500; flex: none; }

/* Marquee chạy ngang, mask mờ 2 mép, pause khi hover */
.pressbar__marquee {
	flex: 1;
	min-width: 0;
	overflow: hidden;
	-webkit-mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
	        mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
}
.pressbar__track {
	display: flex;
	align-items: center;
	gap: 56px;
	width: max-content;
	animation: m2w-press-scroll 38s linear infinite;
}
.pressbar__marquee:hover .pressbar__track { animation-play-state: paused; }
.pressbar__logo {
	flex: none;
	display: inline-flex;
	align-items: center;
	opacity: .5;
	filter: grayscale(1);
	transition: opacity .25s ease, filter .25s ease, transform .25s ease;
}
.pressbar__logo:hover { opacity: 1; filter: grayscale(0); transform: translateY(-1px); }
.pressbar__logo img { height: 28px; width: auto; display: block; }
@keyframes m2w-press-scroll {
	from { transform: translateX(0); }
	to   { transform: translateX(-50%); }
}
@media (prefers-reduced-motion: reduce) {
	.pressbar__track { animation: none; }
}
@media (max-width: 640px) {
	.pressbar__inner { flex-direction: column; align-items: flex-start; gap: 14px; }
	.pressbar__marquee { width: 100%; }
}

/* ---------- Section ---------- */
section.sec { padding: clamp(64px, 8vw, 112px) 0; }
/* sec--tight: bỏ padding-top để section sát section trên (tránh khoảng trắng đôi).
   Cần specificity bằng section.sec (0,1,1) + đứng sau → mới thắng. Trước đây viết
   .sec--tight (0,1,0) nên bị section.sec đè → khoảng trắng thừa toàn site. */
section.sec--tight { padding-top: 0; }
.sec__head {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 40px;
	align-items: end;
	margin-bottom: 56px;
}
@media (max-width: 900px) { .sec__head { grid-template-columns: 1fr; gap: 16px; } }
.sec__head h2 { max-width: 14ch; margin-top: 16px; }
.sec__head p { color: var(--c-ink-soft); max-width: 50ch; font-size: 16.5px; }

/* ---------- Services ---------- */
.services {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); /* M2W_CANADA_OFF: auto-fit để 3 hoặc 4 card đều khít (gốc repeat(4,1fr)) */
	gap: 0;
	border-top: 1px solid var(--c-line);
	border-bottom: 1px solid var(--c-line);
}
@media (max-width: 1024px) { .services { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px)  { .services { grid-template-columns: 1fr; } }

.svc {
	position: relative;
	padding: 36px 28px 30px;
	border-right: 1px solid var(--c-line);
	background: var(--c-bg);
	transition: background .3s ease;
	display: flex; flex-direction: column;
	min-height: 360px;
}
.svc:last-child { border-right: 0; }
@media (max-width: 1024px) {
	.svc:nth-child(2n) { border-right: 0; }
	.svc:nth-child(-n+2) { border-bottom: 1px solid var(--c-line); }
}
@media (max-width: 560px) {
	.svc { border-right: 0; border-bottom: 1px solid var(--c-line); }
	.svc:last-child { border-bottom: 0; }
}
.svc:hover { background: var(--c-surface); }
.svc__num {
	font-family: var(--font-mono);
	font-size: 11px;
	color: var(--c-muted);
	letter-spacing: 0.08em;
}
.svc h3 {
	margin-top: 16px;
	font-size: 22px;
	line-height: 1.2;
	font-weight: 600;
	letter-spacing: -0.01em;
}
.svc__desc { color: var(--c-ink-soft); font-size: 14.5px; margin-top: 12px; line-height: 1.55; }
.svc__list { margin-top: auto; padding-top: 24px; }
.svc__list ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 6px; font-size: 13.5px; color: var(--c-ink-soft); }
.svc__list li { display: flex; align-items: center; gap: 8px; }
.svc__list li::before {
	content: ""; width: 6px; height: 6px; border-radius: 50%;
	background: var(--c-accent); flex-shrink: 0;
}
.svc__more {
	margin-top: 20px;
	display: inline-flex; align-items: center; gap: 8px;
	font-size: 13px; font-weight: 600; color: var(--c-accent);
}
.svc__more .arr { transition: transform .2s ease; }
.svc:hover .svc__more .arr { transform: translateX(4px); }

/* ---------- Countries ---------- */
.countries {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); /* M2W_CANADA_OFF: auto-fit để 3 hoặc 4 card đều khít (gốc repeat(4,1fr)) */
	gap: 18px;
}
@media (max-width: 1024px) { .countries { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px)  { .countries { grid-template-columns: 1fr; } }

.country {
	background: var(--c-surface);
	border: 1px solid var(--c-line);
	border-radius: var(--radius-lg);
	overflow: hidden;
	display: flex; flex-direction: column;
	transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.country:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); border-color: color-mix(in oklab, var(--c-accent), transparent 60%); }
.country__ph { aspect-ratio: 4/3; position: relative; border-radius: 0; border-left: 0; border-right: 0; border-top: 0; border-bottom: 1px solid var(--c-line); }
.country__ph img { width: 100%; height: 100%; object-fit: cover; }
.country__body { padding: 22px 22px 24px; display: flex; flex-direction: column; gap: 12px; flex: 1; }
.country__row { display: flex; align-items: center; justify-content: space-between; gap: 10px; }
.country__row h3 { font-size: 22px; font-family: var(--font-serif); font-style: italic; font-weight: 500; color: var(--c-ink); letter-spacing: 0; margin: 0; }
.country__row h3 b { font-family: var(--font-sans); font-style: normal; font-weight: 700; }
.country__row h3 em { color: var(--c-muted); font-size: 14px; font-style: italic; }
.country__code {
	font-family: var(--font-mono); font-size: 11px; color: var(--c-muted);
	background: var(--c-bg-deep);
	padding: 4px 8px; border-radius: 4px; letter-spacing: 0.06em;
}
.country__programs { font-size: 13.5px; color: var(--c-ink-soft); }
.country__programs b { color: var(--c-ink); font-weight: 600; }
.country__stats {
	margin-top: auto;
	display: grid; grid-template-columns: repeat(2, 1fr);
	border-top: 1px solid var(--c-line-soft);
	padding-top: 14px;
	gap: 8px;
}
.country__stats div { display: flex; flex-direction: column; }
.country__stats b { font-weight: 700; color: var(--c-ink); font-size: 16px; font-feature-settings: "tnum"; }
.country__stats small { font-size: 11.5px; color: var(--c-muted); }

/* ---------- Process ---------- */
.process-wrap {
	background: var(--c-dark);
	color: #fff;
	border-radius: var(--radius-xl);
	padding: clamp(40px, 6vw, 80px) clamp(28px, 5vw, 64px);
	position: relative;
	overflow: hidden;
}
.process-wrap::before {
	content: "";
	position: absolute;
	top: -120px; right: -120px;
	width: 360px; height: 360px;
	border-radius: 50%;
	background: radial-gradient(circle, color-mix(in oklab, var(--c-accent), transparent 30%) 0%, transparent 70%);
	opacity: .35;
}
.process-wrap .eyebrow { color: var(--c-accent-2); }
.process-wrap h2 { color: #fff; max-width: 18ch; }
.process-wrap .sec__head p { color: rgba(255,255,255,.7); }
.process {
	display: grid;
	grid-template-columns: repeat(5, 1fr);
	gap: 0;
	position: relative;
	z-index: 1;
}
@media (max-width: 1024px) { .process { grid-template-columns: repeat(2, 1fr); gap: 24px; } }
@media (max-width: 560px) { .process { grid-template-columns: 1fr; } }

.step {
	padding: 30px 20px 0;
	border-left: 1px solid rgba(255,255,255,.12);
	position: relative;
}
.step:first-child { border-left: 0; padding-left: 0; }
@media (max-width: 1024px) { .step { border-left: 0; padding-left: 0; padding-right: 0; } }

.step__num {
	font-family: var(--font-serif); font-style: italic;
	font-size: 14px; color: var(--c-accent-2);
	margin-bottom: 14px;
	letter-spacing: 0.04em;
}
.step__num b { font-family: var(--font-sans); font-style: normal; font-weight: 700; font-size: 28px; color: #fff; margin-right: 6px; letter-spacing: -0.02em; }
.step h4 { color: #fff; font-size: 17px; margin-bottom: 10px; letter-spacing: 0; }
.step p { color: rgba(255,255,255,.62); font-size: 13.5px; line-height: 1.55; }
.step__dur { margin-top: 14px; font-family: var(--font-mono); font-size: 11px; color: var(--c-accent-2); letter-spacing: 0.06em; }

/* ---------- Why us ---------- */
.why {
	display: grid;
	grid-template-columns: 1fr 1.1fr;
	gap: clamp(40px, 6vw, 88px);
	align-items: start;
}
@media (max-width: 900px) { .why { grid-template-columns: 1fr; } }
.why__visual { position: relative; aspect-ratio: 5/6; }
.why__visual .ph { position: absolute; inset: 0; }
.why__visual .ph-card {
	position: absolute;
	bottom: -24px; left: -24px;
	background: var(--c-surface);
	border: 1px solid var(--c-line);
	border-radius: var(--radius-lg);
	padding: 18px 22px;
	box-shadow: var(--shadow-lg);
	display: flex; gap: 14px; align-items: center;
	max-width: 320px;
	inset: auto;
}
.why__visual .ph-card .badge {
	width: 44px; height: 44px; border-radius: 50%;
	background: var(--c-accent); color: #fff;
	display: grid; place-items: center; font-weight: 700; font-size: 14px;
	flex-shrink: 0;
}
.why__visual .ph-card b { display: block; font-size: 14px; color: var(--c-ink); }
.why__visual .ph-card span { font-size: 12.5px; color: var(--c-muted); }

.why__list { display: grid; gap: 0; }
.why__item {
	padding: 24px 0;
	border-top: 1px solid var(--c-line);
	display: grid;
	grid-template-columns: 52px 1fr auto;
	gap: 22px;
	align-items: start;
}
.why__item:last-child { border-bottom: 1px solid var(--c-line); }
.why__item .n { font-family: var(--font-mono); font-size: 22px; color: var(--c-accent); font-weight: 700; line-height: 1.15; letter-spacing: 0.02em; }
.why__item h4 { font-size: 17px; margin-bottom: 6px; letter-spacing: 0; }
.why__item p { color: var(--c-ink-soft); font-size: 14.5px; line-height: 1.55; }
.why__item .meta { font-family: var(--font-mono); font-size: 11px; color: var(--c-muted); letter-spacing: 0.06em; white-space: nowrap; padding-top: 6px; }
/* Panel cam kết (thay ảnh stock mặt người — tránh implied endorsement) */
.why__commit {
	background: linear-gradient(150deg, var(--c-ink, #0F1B2D), color-mix(in oklab, var(--c-ink, #0F1B2D), var(--c-accent) 24%));
	color: #fff;
	border-radius: var(--radius-lg, 16px);
	padding: clamp(26px, 3.4vw, 40px);
	display: flex;
	flex-direction: column;
	gap: 13px;
	box-shadow: 0 22px 50px -22px rgba(15, 27, 45, .55);
}
.why__commit-badge {
	width: 52px; height: 52px;
	border-radius: 50%;
	background: var(--c-accent); color: #fff;
	display: grid; place-items: center;
	font-size: 24px; font-weight: 700;
}
.why__commit h3 { color: #fff; font-size: clamp(20px, 2.4vw, 26px); line-height: 1.2; margin: 6px 0 0; }
.why__commit-lead { color: rgba(255, 255, 255, .9); font-size: 16px; line-height: 1.55; margin: 0; }
.why__commit-list { list-style: none; margin: 8px 0 0; padding: 0; display: grid; gap: 10px; }
.why__commit-list li { position: relative; padding-left: 26px; color: rgba(255, 255, 255, .82); font-size: 14.5px; line-height: 1.5; }
.why__commit-list li::before { content: "✓"; position: absolute; left: 0; top: 0; color: var(--c-accent-2, #F2A65A); font-weight: 700; }

/* ---------- Cases ---------- */
.cases {
	display: grid;
	grid-template-columns: 1.4fr 1fr 1fr;
	gap: 18px;
}
@media (max-width: 1024px) { .cases { grid-template-columns: 1fr 1fr; } }
@media (max-width: 640px) { .cases { grid-template-columns: 1fr; } }

.case {
	background: var(--c-surface);
	border: 1px solid var(--c-line);
	border-radius: var(--radius-lg);
	overflow: hidden;
	display: flex; flex-direction: column;
	transition: transform .25s, box-shadow .25s;
}
.case:hover { transform: translateY(-3px); box-shadow: var(--shadow-lg); }
@media (min-width: 1025px) { .case--feat { grid-row: span 2; } }
.case__ph { aspect-ratio: 4/3; }
.case--feat .case__ph { aspect-ratio: 4/5; }
.case__ph img { width: 100%; height: 100%; object-fit: cover; }
.case__body { padding: 22px 24px 24px; display: flex; flex-direction: column; gap: 10px; flex: 1; }
.case__tag {
	align-self: flex-start;
	font-family: var(--font-mono); font-size: 11px; color: var(--c-accent-ink);
	background: var(--c-accent-soft);
	padding: 4px 10px; border-radius: 999px; letter-spacing: 0.04em;
}
.case h3 { font-size: 19px; line-height: 1.3; font-weight: 600; letter-spacing: -0.005em; }
.case h3 a { color: inherit; }
.case h3 a:hover { color: var(--c-accent); }
.case--feat h3 { font-size: 28px; line-height: 1.18; }
.case__meta { display: flex; gap: 16px; margin-top: auto; padding-top: 14px; border-top: 1px solid var(--c-line-soft); font-size: 12px; color: var(--c-muted); font-family: var(--font-mono); letter-spacing: 0.04em; }
.case__meta b { color: var(--c-ink); font-family: var(--font-sans); font-weight: 600; }

/* ---------- Quote ---------- */
.quote-block {
	display: grid;
	grid-template-columns: 1fr 1.4fr;
	gap: clamp(32px, 5vw, 72px);
	align-items: center;
	background: var(--c-bg-deep);
	border-radius: var(--radius-xl);
	padding: clamp(40px, 5vw, 64px);
}
@media (max-width: 900px) { .quote-block { grid-template-columns: 1fr; } }

/* ---------- Testimonials grid ---------- */
.testi-grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 20px;
}
@media (max-width: 720px) { .testi-grid { grid-template-columns: 1fr; } }
.testi-card {
	display: flex;
	flex-direction: column;
	gap: 20px;
	background: var(--c-surface);
	border: 1px solid var(--c-line);
	border-radius: 16px;
	padding: 28px 26px;
	margin: 0;
	transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.testi-card:hover {
	transform: translateY(-3px);
	box-shadow: 0 16px 36px rgba(15, 27, 45, .07);
	border-color: color-mix(in oklab, var(--c-accent), var(--c-line) 55%);
}
.testi-card__quote {
	margin: 0;
	position: relative;
	padding-left: 28px;
	font-family: var(--font-serif);
	font-style: italic;
	font-size: 16.5px;
	line-height: 1.62;
	color: var(--c-ink);
}
.testi-card__quote::before {
	content: "\201C";
	position: absolute;
	left: 0; top: -8px;
	font-family: var(--font-serif);
	font-size: 42px;
	line-height: 1;
	color: var(--c-accent);
}
.testi-card__person {
	display: flex;
	align-items: center;
	gap: 14px;
	margin-top: auto;
	padding-top: 4px;
}
.testi-card__avatar {
	width: 48px; height: 48px;
	flex-shrink: 0;
	border-radius: 50%;
	display: grid;
	place-items: center;
	color: #fff;
	font-weight: 700;
	font-size: 15px;
	letter-spacing: .02em;
}
.testi-card__meta { display: flex; flex-direction: column; line-height: 1.35; }
.testi-card__meta b { font-size: 15px; color: var(--c-ink); }
.testi-card__meta > span { font-size: 13px; color: var(--c-muted); }
.testi-card__tag {
	font-family: var(--font-mono);
	font-size: 11px !important;
	letter-spacing: .05em;
	text-transform: uppercase;
	color: var(--c-accent) !important;
	margin-top: 3px;
}

/* ---------- Testimonials carousel (slider) ---------- */
.testi-carousel { position: relative; }
.testi-track {
	display: flex;
	gap: 20px;
	overflow-x: auto;
	scroll-snap-type: x mandatory;
	scroll-behavior: smooth;
	scrollbar-width: none;
	-ms-overflow-style: none;
	padding: 6px 2px 10px;
	margin: 0 -2px;
}
.testi-track::-webkit-scrollbar { display: none; }
.testi-carousel .testi-card {
	flex: 0 0 calc((100% - 20px) / 2);
	scroll-snap-align: start;
	text-decoration: none;
	color: inherit;
}
a.testi-card { cursor: pointer; }
a.testi-card:focus-visible {
	outline: 2px solid var(--c-accent);
	outline-offset: 3px;
}
@media (max-width: 720px) { .testi-carousel .testi-card { flex-basis: 86%; } }

.testi-card__more {
	margin-left: auto;
	align-self: center;
	flex-shrink: 0;
	font-size: 12.5px;
	font-weight: 600;
	color: var(--c-accent);
	opacity: 0;
	transform: translateX(-4px);
	transition: opacity .25s ease, transform .25s ease;
	white-space: nowrap;
}
.testi-card:hover .testi-card__more,
.testi-card:focus-visible .testi-card__more { opacity: 1; transform: none; }
.testi-card__more .arr { display: inline-block; transition: transform .25s ease; }
.testi-card:hover .testi-card__more .arr { transform: translateX(3px); }

.testi-nav {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	z-index: 3;
	width: 44px; height: 44px;
	border-radius: 50%;
	border: 1px solid var(--c-line);
	background: var(--c-surface);
	color: var(--c-ink);
	font-size: 26px;
	line-height: 1;
	cursor: pointer;
	display: grid;
	place-items: center;
	box-shadow: 0 6px 18px rgba(15, 27, 45, .10);
	transition: background .2s ease, color .2s ease, border-color .2s ease, opacity .2s ease;
}
.testi-nav:hover { background: var(--c-accent); color: #fff; border-color: var(--c-accent); }
.testi-nav--prev { left: -10px; }
.testi-nav--next { right: -10px; }
.testi-nav[disabled] { opacity: .35; cursor: default; }
.testi-nav[disabled]:hover { background: var(--c-surface); color: var(--c-ink); border-color: var(--c-line); }
@media (max-width: 900px) {
	.testi-nav--prev { left: 2px; }
	.testi-nav--next { right: 2px; }
}
@media (max-width: 640px) { .testi-nav { display: none; } }

.testi-dots {
	display: flex;
	justify-content: center;
	gap: 8px;
	margin-top: 16px;
}
.testi-dots button {
	width: 8px; height: 8px;
	padding: 0;
	border: 0;
	border-radius: 50%;
	background: color-mix(in oklab, var(--c-accent), white 60%);
	cursor: pointer;
	transition: width .25s ease, background .25s ease, border-radius .25s ease;
}
.testi-dots button.is-active {
	width: 22px;
	border-radius: 5px;
	background: var(--c-accent);
}

.testi-all { text-align: center; margin-top: 22px; }
.testi-all__link {
	font-weight: 600;
	color: var(--c-accent);
	text-decoration: none;
	border-bottom: 1px solid transparent;
	transition: border-color .2s ease;
}
.testi-all__link:hover { border-color: var(--c-accent); }
.testi-all__link .arr { display: inline-block; transition: transform .2s ease; }
.testi-all__link:hover .arr { transform: translateX(3px); }

/* ---------- Calculator chung (.m2wcalc) — GSM Úc, Chancenkarte Đức ---------- */
.m2wcalc { max-width: 720px; margin: 8px auto; color: var(--c-ink); position: relative; z-index: 5; }
.m2wcalc * { box-sizing: border-box; }
.m2wcalc-wizard { background: var(--c-surface); border: 1px solid var(--c-line); border-radius: 16px; padding: 22px; box-shadow: 0 6px 20px rgba(0,0,0,.04); }
.m2wcalc-progress { height: 6px; background: var(--c-line); border-radius: 3px; overflow: hidden; margin-bottom: 20px; }
.m2wcalc-progress-bar { height: 100%; width: 14%; background: var(--c-accent); transition: width .25s; }
.m2wcalc-h3 { color: var(--c-ink); font-size: 1.15rem; margin: 0 0 16px; }
.m2wcalc-field { margin: 0 0 18px; }
.m2wcalc-field label { display: block; font-size: .9rem; font-weight: 600; color: var(--c-ink); margin-bottom: 7px; letter-spacing: .01em; }
.m2wcalc-field input, .m2wcalc-field select { width: 100%; padding: 12px 14px; border: 1.5px solid var(--c-line); border-radius: 12px; font-size: 1rem; line-height: 1.3; color: var(--c-ink); background: #fff; -webkit-appearance: none; appearance: none; transition: border-color .18s ease, box-shadow .18s ease, background .18s ease; }
.m2wcalc-field select { padding-right: 40px; cursor: pointer; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='%238a9099' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 14px center; }
.m2wcalc-field input::placeholder { color: var(--c-muted); }
.m2wcalc-field select:has(option[value=""]:checked) { color: var(--c-muted); }
.m2wcalc-field input:hover, .m2wcalc-field select:hover { border-color: var(--c-muted); }
.m2wcalc-field input:focus, .m2wcalc-field select:focus { outline: none; border-color: var(--c-accent); box-shadow: 0 0 0 3px color-mix(in oklab, var(--c-accent), #fff 78%); }
.m2wcalc-field input[type=number] { -moz-appearance: textfield; }
.m2wcalc-field input[type=number]::-webkit-outer-spin-button, .m2wcalc-field input[type=number]::-webkit-inner-spin-button { -webkit-appearance: none; margin: 0; }
.m2wcalc-field.is-err input, .m2wcalc-field.is-err select { border-color: #e02424; background: #fff7f7; }
.m2wcalc-field.is-err input:focus, .m2wcalc-field.is-err select:focus { box-shadow: 0 0 0 3px color-mix(in oklab, #e02424, #fff 80%); }
.m2wcalc-req { color: #e02424; font-weight: 700; }
.m2wcalc-err { display: none; margin: 2px 0 14px; padding: 9px 13px; background: #fff2f2; border: 1px solid #f3c2c2; color: #b42318; border-radius: 10px; font-size: .9rem; }
.m2wcalc-err.is-show { display: block; }
.m2wcalc-next:disabled { opacity: .45; cursor: not-allowed; }
.m2wcalc-nav { display: flex; justify-content: space-between; margin-top: 10px; }
.m2wcalc-btn { padding: 11px 24px; border: none; border-radius: 10px; font-size: .95rem; cursor: pointer; position: relative; z-index: 6; font-weight: 600; }
.m2wcalc-prev { background: var(--c-line); color: var(--c-ink); }
.m2wcalc-next { background: var(--c-accent); color: #fff; }
.m2wcalc-score-card { text-align: center; background: var(--c-ink); color: #fff; border-radius: 16px; padding: 30px; }
.m2wcalc-score-num { font-size: 3.2rem; font-weight: 800; line-height: 1; font-variant-numeric: tabular-nums lining-nums; }
.m2wcalc-score-num--text { font-size: 1.7rem; line-height: 1.25; }
.m2wcalc-score-label { opacity: .85; margin-top: 6px; }
.m2wcalc-verdict { margin: 16px 0 0; font-size: .95rem; opacity: .95; }
.m2wcalc-detail { margin-top: 20px; }
.m2wcalc-breakdown { width: 100%; border-collapse: collapse; margin: 8px 0 20px; font-size: .92rem; }
.m2wcalc-breakdown td { padding: 9px 11px; border-bottom: 1px solid var(--c-line); }
.m2wcalc-breakdown td:last-child { text-align: right; }
.m2wcalc-cta { text-align: center; background: color-mix(in oklab, var(--c-accent), #fff 90%); border: 1px solid var(--c-line); border-radius: 14px; padding: 22px; margin-top: 20px; }
.m2wcalc-cta-btn { display: inline-block; background: var(--c-accent); color: #fff; text-decoration: none; padding: 12px 28px; border-radius: 30px; font-weight: 600; margin-top: 8px; }
/* Nút CTA của các calculator nằm trong .entry-content/.page-content → rule link content
   `a:not(.btn){color:accent}` đè màu trắng → chữ CAM trên nền CAM = vô hình.
   LƯU Ý specificity: `.entry-content a:not(.btn)` = (0,2,1) vì :not(.btn) tính 1 class.
   Phải thêm wrapper `.m2wcalc` → (0,3,1) mới thắng (chỉ `a.m2wcalc-cta-btn` là HÒA → thua do đứng trước). */
.entry-content .m2wcalc a.m2wcalc-cta-btn, .page-content .m2wcalc a.m2wcalc-cta-btn { color: #fff; text-decoration: none; }
.entry-content .m2wcalc a.m2wcalc-cta-btn:hover, .page-content .m2wcalc a.m2wcalc-cta-btn:hover { color: #fff; }
.m2wcalc-restart { display: block; margin: 18px auto 0; background: none; border: 1px solid var(--c-line); color: var(--c-muted); padding: 9px 20px; border-radius: 30px; cursor: pointer; font-size: .9rem; }
@media (max-width: 480px) { .m2wcalc-score-num { font-size: 2.6rem; } }

/* ---------- Calculator v2 (.m2wcalc-card) — header xanh + tabs đánh số + radio-card + cổng thu lead ---------- */
/* FULL WIDTH: lấp trọn section (~1172px) đúng bằng banner CTA `.art-cta` cùng cấp — bỏ cap 720 của
   bản wizard cũ. (0,2,0) thắng `.m2wcalc` (max-width 720). */
.m2wcalc.m2wcalc--v2 { max-width: none; }
.m2wcalc-card { background: #fff; border: 1px solid var(--c-line); border-radius: 18px; overflow: hidden; box-shadow: 0 10px 30px rgba(15,27,45,.07); }
.m2wcalc-card [hidden] { display: none; }
.m2wcalc-header { background: linear-gradient(135deg, #243a6b 0%, #16233f 100%); color: #fff; text-align: center; padding: 30px 24px 26px; }
.m2wcalc-title { color: #fff; font-size: 1.5rem; font-weight: 800; margin: 0; line-height: 1.25; }
.m2wcalc-subtitle { color: rgba(255,255,255,.8); font-size: .95rem; margin: 8px 0 0; line-height: 1.5; }
/* Thắng style heading/đoạn của .entry-content/.page-content (h2 có border-top + lề 48px,
   h3/p có lề lớn) — scope qua .m2wcalc-card để nâng specificity, tránh kẻ ngang lạ trên header. */
.m2wcalc-card .m2wcalc-title { margin: 0; padding-top: 0; border-top: 0; }
.m2wcalc-card .m2wcalc-subtitle { margin: 8px 0 0; }
.m2wcalc-card .m2wcalc-h3 { margin: 0 0 16px; padding-top: 0; border-top: 0; font-size: 1.15rem; }
.m2wcalc-card .m2wcalc-h3--sub { margin: 22px 0 12px; }
.m2wcalc-card .m2wcalc-intro { margin: 0 0 18px; }
.m2wcalc-card .m2wcalc-hint { margin: 7px 0 0; }
.m2wcalc-card .m2wcalc-verdict { margin: 16px 0 0; }
.m2wcalc-tabs { display: flex; flex-wrap: nowrap; overflow-x: auto; border-bottom: 1px solid var(--c-line); background: #fafbfc; scrollbar-width: thin; }
.m2wcalc-tab { flex: 1 1 auto; text-align: center; appearance: none; -webkit-appearance: none; background: none; border: none; border-bottom: 3px solid transparent; padding: 15px 10px; font-size: .9rem; font-weight: 600; color: var(--c-muted); cursor: pointer; white-space: nowrap; transition: color .15s, border-color .15s; font-family: inherit; }
.m2wcalc-tab__n::after { content: "."; }
.m2wcalc-tab:hover:not(:disabled) { color: var(--c-ink); }
.m2wcalc-tab.is-active { color: var(--c-accent); border-bottom-color: var(--c-accent); }
.m2wcalc-tab.is-done { color: var(--c-ink); }
.m2wcalc-tab.is-na { opacity: .4; cursor: not-allowed; }
.m2wcalc-tab.is-locked { opacity: .5; cursor: not-allowed; }
.m2wcalc-tab.is-locked::before { content: ""; display: inline-block; width: 9px; height: 9px; margin-right: 5px; vertical-align: -1px; background: currentColor; -webkit-mask: var(--m2wcalc-lock) center/contain no-repeat; mask: var(--m2wcalc-lock) center/contain no-repeat; opacity: .7; }
.m2wcalc { --m2wcalc-lock: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2.4' stroke-linecap='round' stroke-linejoin='round'%3E%3Crect x='4' y='11' width='16' height='9' rx='2'/%3E%3Cpath d='M8 11V8a4 4 0 0 1 8 0v3'/%3E%3C/svg%3E"); }
.m2wcalc-body { padding: 26px 24px 6px; }
.m2wcalc-intro { color: var(--c-muted); font-size: .92rem; margin: -6px 0 18px; line-height: 1.55; }
.m2wcalc-hint { color: var(--c-muted); font-size: .82rem; margin: 7px 0 0; line-height: 1.5; }
.m2wcalc-foot { display: flex; justify-content: space-between; gap: 12px; padding: 8px 24px 24px; }
/* radio dạng thẻ */
.m2wcalc-radios { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.m2wcalc-radios.is-stack { grid-template-columns: 1fr; }
/* Scope .m2wcalc-card để thắng `.m2wcalc-field label{display:block;margin-bottom}` (radio là <label> trong .m2wcalc-field) — nếu thua, display:block làm mất gap → chấm dính sát chữ + lệch dọc. */
.m2wcalc-card .m2wcalc-radio { display: flex; align-items: center; gap: 11px; padding: 14px 16px; border: 1.5px solid var(--c-line); border-radius: 12px; cursor: pointer; font-size: .95rem; font-weight: 500; color: var(--c-ink); background: #fff; transition: border-color .15s, background .15s, box-shadow .15s; margin: 0; }
.m2wcalc-card .m2wcalc-radio:hover { border-color: var(--c-muted); }
/* Trả radio về native (rule .m2wcalc-field input{appearance:none;border;width:100%} của calculator
   cũ ăn cả input radio trong .m2wcalc-field → mất chấm chọn). Scope .m2wcalc-card cho chắc thắng. */
.m2wcalc-card .m2wcalc-radio input { -webkit-appearance: radio; appearance: auto; width: 18px; height: 18px; min-height: 0; padding: 0; border: 0; border-radius: 0; background: none; box-shadow: none; accent-color: var(--c-accent); flex: 0 0 auto; margin: 0; }
.m2wcalc-card .m2wcalc-radio input:focus { box-shadow: none; }
.m2wcalc-card .m2wcalc-radio input:focus-visible { outline: 2px solid var(--c-accent); outline-offset: 2px; }
.m2wcalc-radio.is-active { border-color: var(--c-accent); background: color-mix(in oklab, var(--c-accent), #fff 92%); box-shadow: 0 0 0 3px color-mix(in oklab, var(--c-accent), #fff 82%); }
/* bảng & lộ trình trong kết quả */
.m2wcalc-table { width: 100%; border-collapse: collapse; margin: 8px 0 20px; font-size: .92rem; }
.m2wcalc-table th, .m2wcalc-table td { padding: 9px 11px; border-bottom: 1px solid var(--c-line); text-align: left; }
.m2wcalc-table td:last-child, .m2wcalc-table th:last-child { text-align: right; }
.m2wcalc-table th { background: var(--c-ink); color: #fff; }
.m2wcalc-pw { background: var(--c-surface); border: 1px solid var(--c-line); border-left: 4px solid var(--c-accent); border-radius: 10px; padding: 13px 15px; margin: 8px 0; }
.m2wcalc-pw strong { color: var(--c-ink); }
.m2wcalc-pw p { margin: 6px 0 0; font-size: .9rem; color: var(--c-muted); }
.m2wcalc-h3--sub { font-size: 1.05rem; margin-top: 22px; }
/* cổng thu lead */
.m2wcalc-hp { position: absolute; left: -9999px; top: -9999px; width: 1px; height: 1px; overflow: hidden; }
.m2wcalc-consent { margin: 14px 0 4px; }
.m2wcalc-consent small { color: var(--c-muted); font-size: .82rem; line-height: 1.5; }
.m2wcalc-card .m2wcalc-result { margin-top: 4px; }
.m2wcalc-card .m2wcalc-result .m2wcalc-restart { margin-bottom: 6px; }
@media (max-width: 560px) {
	.m2wcalc-title { font-size: 1.25rem; }
	.m2wcalc-radios { grid-template-columns: 1fr; }
	.m2wcalc-tab { flex: 0 0 auto; padding: 13px 13px; font-size: .86rem; }
	.m2wcalc-body { padding: 22px 16px 4px; }
	.m2wcalc-foot { padding: 6px 16px 20px; }
	.m2wcalc-btn { padding: 11px 18px; }
}

/* ---------- Trang hướng dẫn (.m2w-guide) — dùng trong nội dung trang ---------- */
.m2w-guide__lead { font-size: 1.05rem; line-height: 1.7; }
.m2w-guide__muted { color: var(--c-muted); font-size: .92rem; }
.m2w-guide__nav { display: flex; flex-wrap: wrap; gap: 12px; margin: 22px 0 0; }
.m2w-guide__nav a { display: inline-flex; align-items: center; gap: 8px; padding: 12px 20px; border-radius: 12px; background: var(--c-surface); border: 1px solid var(--c-line); color: var(--c-ink); text-decoration: none; font-weight: 600; transition: border-color .15s, background .15s; }
.m2w-guide__nav a:hover { border-color: var(--c-accent); background: color-mix(in oklab, var(--c-accent), #fff 92%); }
.m2w-guide__sec { margin: 30px 0 0; padding: 8px 26px 24px; border: 1px solid var(--c-line); border-radius: 16px; background: #fff; }
.m2w-guide__sec--khach { border-top: 4px solid var(--c-accent); }
.m2w-guide__sec--admin { border-top: 4px solid var(--c-ink); }
.m2w-guide__steps { counter-reset: m2wg; list-style: none; padding: 0; margin: 14px 0 18px; }
.m2w-guide__steps > li { position: relative; padding: 4px 0 0 46px; margin: 0 0 14px; min-height: 32px; line-height: 1.6; }
.m2w-guide__steps > li::before { counter-increment: m2wg; content: counter(m2wg); position: absolute; left: 0; top: 0; width: 32px; height: 32px; border-radius: 50%; background: var(--c-accent); color: #fff; font-weight: 700; font-size: .95rem; display: flex; align-items: center; justify-content: center; }
.m2w-guide__acts { list-style: none; padding: 0; margin: 14px 0; }
.m2w-guide__acts > li { padding: 11px 14px; border: 1px solid var(--c-line); border-left: 3px solid var(--c-accent); border-radius: 10px; margin: 0 0 10px; line-height: 1.55; background: var(--c-surface); }
.m2w-guide__note { margin: 18px 0 4px; padding: 14px 18px; border-radius: 12px; background: color-mix(in oklab, var(--c-accent), #fff 90%); border: 1px solid color-mix(in oklab, var(--c-accent), #fff 70%); color: var(--c-ink); font-size: .95rem; line-height: 1.6; }
.m2w-guide__note > strong { color: var(--c-accent); }
.m2w-guide__note ul { margin: 8px 0 0; padding-left: 20px; }
.m2w-guide__note li { margin: 0 0 6px; }
.m2w-guide__tbl { width: 100%; border-collapse: collapse; margin: 14px 0 18px; }
.m2w-guide__tbl th, .m2w-guide__tbl td { padding: 10px 13px; border: 1px solid var(--c-line); text-align: left; vertical-align: top; font-size: .95rem; line-height: 1.5; }
.m2w-guide__tbl th { background: var(--c-ink); color: #fff; }
.m2w-guide__tbl tr:nth-child(even) td { background: var(--c-surface); }
.m2w-guide-link { display: inline-flex; align-items: center; gap: 8px; margin: 4px 0 0; padding: 10px 18px; border-radius: 30px; border: 1px solid var(--c-line); background: #fff; color: var(--c-ink); text-decoration: none; font-weight: 600; font-size: .92rem; transition: border-color .15s, background .15s; }
.m2w-guide-link:hover { border-color: var(--c-accent); background: color-mix(in oklab, var(--c-accent), #fff 92%); }
.m2w-guide-cta { text-align: center; margin: -16px 0 38px; }
/* bộ lọc tách khách / nhân viên (chỉ admin đăng nhập thấy) */
.m2w-guide__filter { display: flex; flex-wrap: wrap; gap: 10px; margin: 22px 0 0; }
.m2w-guide__filter button { appearance: none; -webkit-appearance: none; cursor: pointer; padding: 11px 20px; border-radius: 30px; border: 1px solid var(--c-line); background: #fff; color: var(--c-ink); font-weight: 600; font-size: .95rem; font-family: inherit; transition: border-color .15s, background .15s, color .15s; }
.m2w-guide__filter button:hover { border-color: var(--c-muted); }
.m2w-guide__filter button.is-active { background: var(--c-accent); border-color: var(--c-accent); color: #fff; }
.m2w-guide.is-filtered .m2w-guide__sec { display: none; }
.m2w-guide.is-filtered .m2w-guide__sec.is-shown { display: block; }
@media (max-width: 560px) { .m2w-guide__sec { padding: 4px 16px 18px; } }

/* ---------- Cost Calculator (.m2wcost) — 1 form + 3 thẻ so sánh ---------- */
.m2wcost { max-width: 1040px; }
.m2wcost-controls { background: var(--c-surface); border: 1px solid var(--c-line); border-radius: 16px; padding: 22px; box-shadow: 0 6px 20px rgba(0,0,0,.04); margin-bottom: 22px; }
.m2wcost-people { max-width: 360px; margin-bottom: 4px; }
.m2wcost-people input { width: 100%; padding: 12px 14px; border: 1.5px solid var(--c-line); border-radius: 12px; font-size: 1rem; }
.m2wcost-opts { margin-top: 14px; display: flex; flex-direction: column; gap: 10px; }
.m2wcost-toggle { display: flex; align-items: center; gap: 10px; padding: 12px 14px; border: 1.5px solid var(--c-line); border-radius: 12px; margin-bottom: 0; cursor: pointer; font-size: .95rem; }
.m2wcost-toggle input { width: 18px; height: 18px; accent-color: var(--c-accent); }
.m2wcost-compare { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.m2wcost-card { border: 1.5px solid var(--c-line); border-radius: 16px; padding: 18px; background: var(--c-surface); display: flex; flex-direction: column; }
.m2wcost-card__head { display: flex; align-items: flex-start; gap: 10px; margin-bottom: 12px; }
.m2wcost-card__flag { font-size: 1.6rem; line-height: 1; }
.m2wcost-card__name { flex: 1; }
.m2wcost-card__name b { display: block; font-size: 1rem; color: var(--c-ink); }
.m2wcost-card__name small { color: var(--c-muted); font-size: .8rem; }
.m2wcost-card__total { font-size: 1.5rem; font-weight: 800; color: var(--c-ink); line-height: 1.15; }
.m2wcost-card__vnd { color: var(--c-muted); font-size: .9rem; margin-top: 4px; }
.m2wcost-card__svc { margin-top: 8px; font-size: .78rem; font-weight: 600; color: var(--c-muted); }
.m2wcost-card__toggle { margin-top: 14px; align-self: flex-start; background: none; border: 1px solid var(--c-line); color: var(--c-accent); padding: 9px 14px; border-radius: 10px; cursor: pointer; font-size: .88rem; font-weight: 600; }
.m2wcost-card__detail { margin-top: 14px; border-top: 1px dashed var(--c-line); padding-top: 12px; }
.m2wcost-tag { display: inline-block; font-size: .72rem; font-weight: 700; padding: 3px 9px; border-radius: 20px; letter-spacing: .02em; }
.m2wcost-tag--ok { background: #e7f6ec; color: #1a7f37; }
.m2wcost-tag--est { background: #fff3e0; color: #b45309; }
.m2wcost-group { margin: 0 0 16px; }
.m2wcost-group-head { display: flex; justify-content: space-between; align-items: baseline; gap: 10px; font-weight: 700; color: var(--c-ink); padding: 8px 10px; background: color-mix(in oklab, var(--c-accent), #fff 90%); border-radius: 8px; font-size: .82rem; }
.m2wcost-group-head span:last-child { white-space: nowrap; color: var(--c-accent); }
.m2wcost-group .m2wcalc-breakdown { margin: 6px 0 0; font-size: .82rem; }
.m2wcost-per { color: var(--c-muted); font-weight: 400; font-size: .85em; }
.m2wcost-note { color: var(--c-muted); font-size: .85rem; line-height: 1.5; margin: 10px 0 0; }
@media (max-width: 900px) { .m2wcost-compare { grid-template-columns: 1fr; } }
/* ---------- Khối tư vấn cuối bài (.post-consult) — thay form bình luận ---------- */
.post-consult { background: var(--c-surface); border: 1px solid var(--c-line); border-radius: 16px; padding: 28px; margin: 36px 0; box-shadow: 0 6px 20px rgba(0,0,0,.04); }
.post-consult__title { margin: 0 0 6px; font-size: 1.3rem; color: var(--c-ink); }
.post-consult__lead { margin: 0 0 18px; color: var(--c-muted); }
/* ---------- Badge loại nội dung (Bài viết / Tin tức / Sự kiện) ---------- */
.post-card__kicker { display: flex; flex-wrap: wrap; align-items: center; gap: 8px; margin-bottom: 8px; }
.post-card__type { display: inline-block; font-size: .68rem; font-weight: 800; text-transform: uppercase; letter-spacing: .04em; padding: 3px 9px; border-radius: 6px; }
.post-card__type--bai-viet { background: color-mix(in oklab, var(--c-accent), #fff 82%); color: var(--c-accent); }
.post-card__type--tin-tuc  { background: #e6f0fb; color: #1d6fc4; }
.post-card__type--su-kien  { background: #e9f6ec; color: #1a7f37; }
.news-sec__empty { color: var(--c-muted); font-style: italic; padding: 18px; border: 1px dashed var(--c-line); border-radius: 12px; background: var(--c-surface); }
.quote-block__person { display: flex; flex-direction: column; gap: 16px; }
.quote-block__avatar { width: 100%; aspect-ratio: 1; max-width: 220px; }
.quote-block__avatar .ph { position: relative; height: 100%; border-radius: var(--radius-lg); }
.quote-block__name b { display: block; font-size: 16px; }
.quote-block__name span { font-size: 13.5px; color: var(--c-muted); }
.quote-block__name .flag { font-family: var(--font-mono); font-size: 11px; color: var(--c-accent); letter-spacing: 0.08em; margin-top: 4px; display: block; }

.quote-block__text {
	font-family: var(--font-serif);
	font-style: italic;
	font-weight: 500;
	font-size: clamp(22px, 2.6vw, 32px);
	line-height: 1.32;
	color: var(--c-ink);
	letter-spacing: -0.01em;
}
.quote-block__text .mark { color: var(--c-accent); font-style: normal; font-family: var(--font-sans); font-weight: 700; }

/* ---------- Final CTA ---------- */
.cta-final {
	background: var(--c-accent);
	color: #fff;
	border-radius: var(--radius-xl);
	padding: clamp(40px, 6vw, 80px);
	display: grid;
	grid-template-columns: 1.2fr 1fr;
	gap: clamp(28px, 4vw, 56px);
	align-items: center;
	position: relative;
	overflow: hidden;
}
@media (max-width: 900px) { .cta-final { grid-template-columns: 1fr; } }
.cta-final::before {
	content: "MW";
	position: absolute;
	left: -30px; bottom: -160px;
	font-family: var(--font-serif);
	font-weight: 600;
	font-style: italic;
	font-size: 360px;
	line-height: 1;
	color: rgba(255,255,255,.06);
	pointer-events: none;
	max-width: 55%;
	overflow: hidden;
}
@media (max-width: 900px) { .cta-final::before { display: none; } }
.cta-final h2 { color: #fff; max-width: 18ch; margin-top: 16px; }
.cta-final p { color: rgba(255,255,255,.88); margin-top: 18px; font-size: 17px; max-width: 44ch; }
.cta-final .actions { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 32px; }
.cta-final .btn-on-orange { background: #fff; color: var(--c-accent); }
.cta-final .btn-on-orange:hover { background: var(--c-dark); color: #fff; }
.cta-final .btn-on-orange-ghost { background: transparent; color: #fff; border: 1px solid rgba(255,255,255,.45); }
.cta-final .btn-on-orange-ghost:hover { background: rgba(255,255,255,.12); border-color: #fff; }

.cta-card {
	background: color-mix(in oklab, var(--c-accent), black 22%);
	border: 1px solid rgba(255,255,255,.22);
	border-radius: var(--radius-lg);
	padding: 26px;
	backdrop-filter: blur(10px);
	position: relative; z-index: 1;
	box-shadow: 0 20px 40px -20px rgba(0,0,0,.3);
}
.cta-card h4 { color: #fff; font-size: 15px; margin-bottom: 14px; letter-spacing: 0.02em; }
.cta-card .row { display: flex; align-items: center; justify-content: space-between; padding: 14px 0; border-top: 1px solid rgba(255,255,255,.18); font-size: 14px; }
.cta-card .row:first-of-type { border-top: 0; padding-top: 4px; }
.cta-card .row span:last-child { font-family: var(--font-mono); font-size: 12.5px; color: rgba(255,255,255,.78); }
.cta-card .slots { font-family: var(--font-mono); font-size: 11px; padding: 3px 8px; background: #fff; color: var(--c-accent); border-radius: 999px; font-weight: 600; }
.cta-card__link { display: inline-flex; align-items: center; gap: 8px; margin-top: 18px; padding-top: 16px; border-top: 1px solid rgba(255,255,255,.22); color: #fff; font-size: 14px; font-weight: 600; text-decoration: none; transition: gap .2s ease; }
.cta-card__link .arr { transition: transform .2s ease; }
.cta-card__link:hover .arr { transform: translateX(4px); }

/* ---------- FAQ ---------- */
.faq { display: grid; grid-template-columns: 1fr 1fr; gap: 0 28px; align-items: start; }
.faq > div:not(.faq__foot) { display: flex; flex-direction: column; gap: 14px; }
.faq details {
	background: var(--c-surface);
	border: 1px solid var(--c-line);
	border-radius: 16px;
	padding: 2px 24px;
	transition: border-color .22s ease, box-shadow .22s ease, transform .22s ease;
}
.faq details:hover {
	border-color: color-mix(in oklab, var(--c-accent), transparent 55%);
	box-shadow: 0 14px 36px -22px rgba(15, 27, 45, .45);
	transform: translateY(-1px);
}
.faq details[open] {
	border-color: color-mix(in oklab, var(--c-accent), transparent 35%);
	box-shadow: 0 20px 48px -26px color-mix(in oklab, var(--c-accent), transparent 25%);
}
.faq summary {
	list-style: none;
	cursor: pointer;
	font-weight: 600;
	font-size: 16.5px;
	color: var(--c-ink);
	display: flex; align-items: center;
	gap: 16px;
	padding: 20px 0;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
	content: "+";
	margin-left: auto;
	flex-shrink: 0;
	width: 32px; height: 32px;
	display: inline-flex; align-items: center; justify-content: center;
	border-radius: 50%;
	background: var(--c-accent-soft);
	color: var(--c-accent);
	font-family: var(--font-serif); font-size: 24px; line-height: 1;
	transition: transform .25s ease, background .2s ease, color .2s ease;
}
.faq details[open] summary::after {
	content: "−";
	background: var(--c-accent);
	color: #fff;
}
.faq summary:hover::after { background: var(--c-accent); color: #fff; }
.faq details p {
	margin: -2px 0 22px;
	color: var(--c-ink-soft);
	font-size: 14.5px;
	line-height: 1.66;
	max-width: 56ch;
}
.faq__foot {
	grid-column: 1 / -1;
	display: flex; align-items: center; flex-wrap: wrap;
	gap: 14px 22px;
	margin-top: 32px;
	padding-top: 28px;
	border-top: 1px solid var(--c-line);
}
.faq__foot p { margin: 0; font-size: 16px; color: var(--c-ink); font-weight: 600; }
.faq__foot p span { display: block; font-weight: 400; font-size: 14px; color: var(--c-muted); margin-top: 2px; }
.faq__foot .btn { margin-left: auto; }
@media (max-width: 900px) {
	.faq { grid-template-columns: 1fr; }
	.faq__foot .btn { margin-left: 0; }
}

/* ---------- Footer ---------- */
.site-footer {
	background: var(--c-dark);
	color: rgba(255,255,255,.7);
	padding: clamp(56px, 7vw, 96px) 0 36px;
	margin-top: clamp(48px, 6vw, 80px);
}
.site-footer h4 { color: #fff; font-size: 13px; letter-spacing: 0.16em; text-transform: uppercase; margin-bottom: 18px; }
.foot__grid {
	display: grid;
	grid-template-columns: 1.4fr 1fr 1fr 1fr 1fr;
	gap: 36px;
}
@media (max-width: 1024px) { .foot__grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .foot__grid { grid-template-columns: 1fr; } }
.foot__brand .brand__name { color: #fff; }
.foot__brand p { margin-top: 18px; font-size: 14px; line-height: 1.6; max-width: 38ch; }
.foot__brand .news { margin-top: 22px; max-width: 400px; }
/* Hàng pill: input + nút trên cùng một dòng, bo tròn gọn. */
.foot__brand .news__row {
	display: flex;
	align-items: center;
	gap: 6px;
	padding: 5px 5px 5px 8px;
	background: rgba(255,255,255,.06);
	border: 1px solid rgba(255,255,255,.14);
	border-radius: 999px;
	transition: border-color .2s ease, background .2s ease;
}
.foot__brand .news__row:focus-within {
	border-color: rgba(255,255,255,.32);
	background: rgba(255,255,255,.09);
}
.foot__brand .news input[type="email"] {
	flex: 1 1 auto;
	min-width: 0; /* cho phép co lại, tránh đẩy nút xuống dòng */
	background: transparent; border: 0; color: #fff; font: inherit; font-size: 14px;
	padding: 10px 6px 10px 12px;
	outline: none;
}
.foot__brand .news input::placeholder { color: rgba(255,255,255,.45); }
.foot__brand .news button,
.foot__brand .news .m2w-lead-form__submit {
	flex: 0 0 auto;
	background: var(--c-accent); color: #fff;
	padding: 10px 20px; border: 0; border-radius: 999px;
	font-size: 13px; font-weight: 600; line-height: 1.2;
	cursor: pointer;
	transition: background .2s ease, transform .2s ease;
}
.foot__brand .news button:hover,
.foot__brand .news .m2w-lead-form__submit:hover {
	background: var(--c-accent-2, #FF8A3D); transform: translateY(-1px);
}
.foot__brand .news button:disabled { opacity: .6; cursor: progress; transform: none; }
.foot__col ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 10px; }
.foot__col li a { font-size: 14px; color: rgba(255,255,255,.7); transition: color .2s; }
.foot__col li a:hover { color: #fff; }
/* Bản đồ định vị VP trong cột Liên hệ (footer) */
.foot__map {
	margin-top: 16px;
	border-radius: 12px;
	overflow: hidden;
	border: 1px solid rgba(255,255,255,.12);
	box-shadow: 0 8px 22px rgba(0,0,0,.22);
	line-height: 0;
}
.foot__map iframe { display: block; width: 100%; height: 150px; border: 0; }
.foot__map-link {
	display: inline-flex;
	align-items: center;
	gap: 5px;
	margin-top: 10px;
	font-size: 13px;
	font-weight: 600;
	color: var(--c-accent-2);
}
.foot__map-link:hover { color: #fff; }
.foot__map-link .arr { transition: transform .2s ease; }
.foot__map-link:hover .arr { transform: translateX(3px); }
/* Dải "Văn phòng" — địa chỉ + bản đồ, 2 cột cân đối full-width dưới grid (map không thò 1 cột) */
.foot__office {
	margin-top: 40px;
	padding-top: 36px;
	border-top: 1px solid rgba(255,255,255,.10);
	display: grid;
	grid-template-columns: 1fr 1.5fr;
	gap: 32px;
	align-items: center;
}
.foot__office-text h4 { font-size: 15px; color: #fff; margin: 0 0 12px; }
.foot__office-addr {
	display: flex; gap: 8px; align-items: flex-start;
	font-size: 14px; line-height: 1.6; color: rgba(255,255,255,.72);
	margin: 0 0 14px; max-width: 34ch;
}
.foot__office-addr a { color: inherit; }
.foot__office-addr a:hover { color: #fff; }
.foot__office .foot__map { margin-top: 0; }
.foot__office .foot__map iframe { height: 200px; }
@media (max-width: 768px) {
	.foot__office { grid-template-columns: 1fr; gap: 16px; margin-top: 32px; padding-top: 28px; }
	.foot__office .foot__map iframe { height: 180px; }
}
.foot__bot {
	margin-top: 28px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	flex-wrap: wrap;
	gap: 16px;
	font-size: 12.5px;
	color: rgba(255,255,255,.5);
}
.foot__bot a { color: rgba(255,255,255,.7); }

/* ---------- Dải mạng xã hội (component dùng chung: footer + dưới form) ---------- */
.m2w-socials { display: flex; align-items: center; gap: 12px; flex-wrap: wrap; }
.m2w-socials__label { font-size: 13px; font-weight: 600; opacity: .85; }
.m2w-socials__row { display: flex; flex-wrap: wrap; gap: 10px; }
.m2w-socials__link {
	width: 38px; height: 38px;
	display: inline-grid; place-items: center;
	border-radius: 50%;
	color: currentColor;
	border: 1px solid currentColor;
	opacity: .82;
	transition: transform .18s ease, color .18s ease, border-color .18s ease, background-color .18s ease, opacity .18s ease;
}
.m2w-socials__link svg { width: 18px; height: 18px; display: block; }
.m2w-socials__link:hover,
.m2w-socials__link:focus-visible {
	color: #fff;
	background-color: var(--c, #F26A1F);
	border-color: var(--c, #F26A1F);
	opacity: 1;
	transform: translateY(-2px);
}
/* Footer (nền tối): viền/icon mờ trắng, hover lên màu thương hiệu */
.foot__socials { color: rgba(255,255,255,.72); }
/* Trên nền sáng (dưới form + trang Liên hệ): viền mảnh, chữ đậm */
.m2w-lead-form__follow { margin-top: 20px; justify-content: center; }
.m2w-lead-form__follow, .contact-socials { color: #0F1B2D; }
.m2w-lead-form__follow .m2w-socials__link,
.contact-socials .m2w-socials__link { border-color: rgba(15,27,45,.18); opacity: .72; }
.contact-socials { margin-top: 6px; }
@media (prefers-reduced-motion: reduce) {
	.m2w-socials__link { transition: color .18s ease, background-color .18s ease; }
	.m2w-socials__link:hover, .m2w-socials__link:focus-visible { transform: none; }
}

/* Placeholder "Cần bổ sung" — chỗ chưa có dữ liệu thật. */
.foot__todo {
	color: rgba(255,255,255,.38);
	font-style: italic;
	cursor: help;
}
.foot__todo-note { margin-top: 22px; font-size: 14px; color: rgba(255,255,255,.55); }

/* Form bản tin (nối M2W Leads) — honeypot ẩn + status dạng text gọn dưới pill.
   Ghi đè style "form thẻ trắng" của leads.css để không lọt nền sáng/viền/icon vào footer tối. */
.foot__brand .news__hp { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }
.foot__brand .news [data-m2w-lead-status] {
	margin: 9px 0 0;
	padding: 0 14px;
	background: none;
	border: 0;
	font-size: 13px;
	line-height: 1.5;
}
.foot__brand .news [data-m2w-lead-status][hidden] { display: none; }
.foot__brand .news [data-m2w-lead-status]::before { content: none; }
.foot__brand .news [data-m2w-lead-status].is-success { color: #6ee7b7; }
.foot__brand .news [data-m2w-lead-status].is-error { color: #fca5a5; }
/* Bản tin render từ managed form (.is-compact) — dựng lại dáng pill 1 dòng.
   Phải ghi đè kỹ leads.css (nền/viền/shadow/vạch cam ::before/ring focus) để không lọt style "thẻ trắng" vào footer tối. */
.foot__brand .news .m2w-lead-form.is-compact {
	display: flex; flex-direction: row; flex-wrap: nowrap; align-items: center; gap: 6px;
	position: relative; /* mốc cho status tuyệt đối bên dưới */
	max-width: 400px; margin: 0;
	padding: 5px 5px 5px 8px;
	border: 1px solid rgba(255,255,255,.18); border-radius: 999px;
	background: rgba(255,255,255,.06);
	box-shadow: none; /* bỏ drop-shadow card của leads.css */
}
.foot__brand .news .is-compact::before { content: none; } /* bỏ vạch cam mép trên của leads.css */
.foot__brand .news .is-compact:focus-within { border-color: rgba(255,255,255,.32); background: rgba(255,255,255,.09); }
.foot__brand .news .is-compact .m2w-lead-form__grid { display: block; flex: 1 1 0; min-width: 0; margin: 0; gap: 0; grid-template-columns: none; } /* flex-basis 0 → nút không bị đẩy xuống dòng */
.foot__brand .news .is-compact .m2w-lead-form__field { margin: 0; gap: 0; }
.foot__brand .news .is-compact .m2w-lead-form__field label {
	position: absolute; width: 1px; height: 1px; overflow: hidden;
	clip: rect(0 0 0 0); white-space: nowrap; border: 0; padding: 0; margin: -1px;
}
/* Input trong suốt — ghi đè nền/viền/ring focus của leads.css */
.foot__brand .news .is-compact input[type="email"] {
	width: 100%; background: transparent; border: 0; border-radius: 0;
	color: #fff; font-size: 14px; padding: 10px 6px 10px 12px; box-shadow: none;
}
.foot__brand .news .is-compact input[type="email"]:hover,
.foot__brand .news .is-compact input[type="email"]:focus {
	background: transparent; border: 0; box-shadow: none; outline: none;
}
.foot__brand .news .is-compact input::placeholder { color: rgba(255,255,255,.45); }
.foot__brand .news .is-compact .m2w-lead-form__actions { flex: 0 0 auto; margin: 0; padding: 0; }
.foot__brand .news .is-compact .m2w-lead-form__submit { padding: 10px 18px; font-size: 13px; box-shadow: none; }
.foot__brand .news .is-compact .m2w-lead-form__submit:hover { box-shadow: none; transform: translateY(-1px); }
/* Status: đẩy xuống dưới pill (tuyệt đối) để pill luôn 1 dòng input + nút. */
.foot__brand .news .is-compact .m2w-lead-form__status { position: absolute; top: calc(100% + 4px); left: 0; right: 0; }
.foot__brand .news .is-compact .m2w-lead-form__hp { position: absolute; left: -9999px; }
/* Dải "Cam kết M2W" — 4 cột đều, icon + tiêu đề + phụ (thay hàng pháp lý nhạt) */
.foot__trust {
	margin-top: 44px;
	padding-top: 34px;
	border-top: 1px solid rgba(255,255,255,.12);
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 26px;
}
.foot__trust-item { display: flex; gap: 12px; align-items: center; }
.foot__trust-ico {
	width: 40px; height: 40px; flex-shrink: 0;
	padding: 8px; border-radius: 11px;
	color: var(--c-accent-2);
	background: rgba(255,255,255,.05);
	border: 1px solid rgba(255,255,255,.10);
}
.foot__trust-item b { display: block; font-size: 14px; font-weight: 600; color: #fff; }
.foot__trust-item span { display: block; font-size: 12.5px; color: rgba(255,255,255,.55); line-height: 1.45; margin-top: 2px; }
@media (max-width: 900px) { .foot__trust { grid-template-columns: repeat(2, 1fr); gap: 20px 26px; } }
@media (max-width: 480px) { .foot__trust { grid-template-columns: 1fr; } }

/* foot__bot trái: copyright + pháp lý xếp dọc; pháp lý giờ inline gọn (không còn hàng/border riêng) */
.foot__bot-left { display: flex; flex-direction: column; gap: 9px; min-width: 0; }
.foot__copy { color: rgba(255,255,255,.5); }
.foot__legal {
	display: flex;
	flex-wrap: wrap;
	gap: 6px 16px;
	font-size: 12.5px;
}
.foot__legal a { color: rgba(255,255,255,.6); text-decoration: none; transition: color .2s ease; }
.foot__legal a:hover { color: #fff; }

/* ---------- Inner page basics ---------- */
.site-main { padding: clamp(48px, 6vw, 80px) 0; }
.page-header { margin-bottom: 40px; }
.page-title { font-size: clamp(28px, 3.4vw, 44px); }
.entry-title { font-size: clamp(28px, 3.4vw, 48px); margin-bottom: 16px; }
.entry-meta { color: var(--c-muted); font-size: 13px; font-family: var(--font-mono); letter-spacing: 0.04em; }
.entry-thumbnail { margin: 24px 0; border-radius: var(--radius-lg); overflow: hidden; }
/* Hero full-width dẫn đầu trang → kéo sát header, bỏ dải trống kem thừa phía trên */
.site-main:has(> .hero:first-child) { padding-top: 0; }
.entry-content { font-size: 17px; }
.entry-content > * + * { margin-top: 18px; }
/* Specificity (0,0,1) qua :where() — link văn bản trong prose vẫn cam, NHƯNG mọi component
   (.svc__more, .m2wcalc-cta-btn, card-link...) chỉ cần 1 class là thắng → hết bẫy "chữ cam vô hình",
   không cần wrapper/!important vá tay nữa (giải gốc 04/06). */
:where(.entry-content, .page-content) a:where(:not(.btn)) { color: var(--c-accent); text-decoration: underline; text-underline-offset: 3px; }

.search-form { display: flex; gap: 8px; max-width: 480px; }
.search-field {
	flex: 1; padding: 12px 16px;
	border: 1px solid var(--c-line); border-radius: 999px;
	font: inherit; background: var(--c-surface);
}
.search-submit { padding: 12px 22px; border-radius: 999px; background: var(--c-accent); color: #fff; font-weight: 600; }

.pagination, .nav-links {
	display: flex; gap: 8px; flex-wrap: wrap; margin-top: 40px;
}
.pagination a, .pagination span,
.nav-links a, .nav-links span {
	padding: 10px 14px;
	border: 1px solid var(--c-line); border-radius: 8px;
	text-decoration: none;
}
.pagination .current { background: var(--c-accent); color: #fff; border-color: var(--c-accent); }

/* ---------- Utility ---------- */
.alignwide { max-width: 1100px; margin-left: auto; margin-right: auto; }
.alignfull {
	width: 100vw; max-width: 100vw;
	margin-left: calc(50% - 50vw); margin-right: calc(50% - 50vw);
}

/* =========================================================
   M2W — Additional components (added: more visuals + inner pages + form)
   ========================================================= */

/* ---------- Inner page hero (archives / page templates) ---------- */
.hero--inner { padding: clamp(48px, 6vw, 80px) 0 clamp(32px, 4vw, 48px); }
.hero--inner h1 { margin-top: 14px; font-size: clamp(34px, 4.6vw, 64px); line-height: 1.18; }
.hero--inner .hero__actions { margin-top: 28px; }
/* Trang công cụ (/cong-cu/*): căn giữa tiêu đề hero cho đồng bộ */
.m2w-tools .hero--inner { text-align: center; }

/* <picture> bọc WebP+JPG: display:contents để không sinh box, img giữ nguyên layout/object-fit */
picture { display: contents; }

/* ---------- Inner hero có ảnh nền (trang dịch vụ + chương trình) ---------- */
.hero--photo {
	position: relative;
	overflow: hidden;
	background: var(--c-ink, #0b111c);
	display: flex;
	align-items: center;
	min-height: clamp(320px, 40vh, 440px);
}
.hero--photo .hero__bg {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	z-index: 0;
}
.hero--photo::after {
	content: "";
	position: absolute;
	inset: 0;
	z-index: 1;
	pointer-events: none;
	background:
		linear-gradient(90deg, rgba(11, 17, 28, .9) 0%, rgba(11, 17, 28, .76) 40%, rgba(11, 17, 28, .46) 72%, rgba(11, 17, 28, .22) 100%),
		linear-gradient(180deg, rgba(11, 17, 28, .2) 0%, transparent 35%, transparent 62%, rgba(11, 17, 28, .5) 100%);
}
.hero--photo > .container { position: relative; z-index: 2; }
.hero--photo h1 { color: #fff; text-shadow: 0 2px 24px rgba(0, 0, 0, .28); }
.hero--photo .hero__lede { color: rgba(255, 255, 255, .92); text-shadow: 0 1px 8px rgba(0, 0, 0, .3); }
.hero--photo .eyebrow { color: rgba(255, 255, 255, .85); }
.hero--photo .eyebrow::before { background: var(--c-accent); }
.hero--photo .btn-ghost {
	background: rgba(255, 255, 255, .12);
	color: #fff;
	border: 1px solid rgba(255, 255, 255, .42);
	backdrop-filter: blur(10px);
	-webkit-backdrop-filter: blur(10px);
}
.hero--photo .btn-ghost:hover {
	background: rgba(255, 255, 255, .92);
	color: var(--c-ink);
	border-color: rgba(255, 255, 255, .92);
}
@media (max-width: 720px) {
	.hero--photo::after {
		background: linear-gradient(180deg, rgba(11, 17, 28, .6) 0%, rgba(11, 17, 28, .86) 100%);
	}
}
/* Trang Khách hàng thành công: band cao hơn + dời tiêu điểm lên trên để không cắt cụp mặt cả nhà */
.page-id-32 .hero--photo { min-height: clamp(400px, 52vh, 560px); }
.page-id-32 .hero--photo .hero__bg { object-position: 50% 28%; }

/* ---------- Moments gallery (sub-hero strip) ---------- */
/* ---------- Mid-page CTA band (cases → services bridge) ---------- */
.cta-mid {
	display: grid;
	grid-template-columns: 1fr auto;
	align-items: center;
	gap: clamp(24px, 4vw, 56px);
	background: var(--c-bg-deep);
	border: 1px solid var(--c-line);
	border-radius: var(--radius-xl);
	padding: clamp(28px, 4vw, 48px) clamp(28px, 4vw, 56px);
}
.cta-mid__text .eyebrow { color: var(--c-accent); }
.cta-mid__text h2 {
	margin: 10px 0 0;
	max-width: 22ch;
	line-height: 1.18;
}
.cta-mid__text p {
	margin: 14px 0 0;
	color: var(--c-ink-soft);
	max-width: 52ch;
	line-height: 1.6;
}
.cta-mid__actions { flex-shrink: 0; }
@media (max-width: 900px) {
	.cta-mid { grid-template-columns: 1fr; }
	.cta-mid__text h2 { max-width: none; }
}

/* ---------- Services with image area on top ---------- */
.svc__ph {
	position: relative;
	display: block;
	aspect-ratio: 4 / 3;
	margin: -36px -28px 20px;
	overflow: hidden;
	border-bottom: 1px solid var(--c-line);
	background: linear-gradient(135deg, var(--c-accent), var(--c-ink));
}
.svc__ph img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .5s ease; }
.svc:hover .svc__ph img { transform: scale(1.05); }
.svc__ph-band {
	position: absolute;
	left: 0; right: 0; bottom: 0;
	display: flex;
	align-items: center;
	gap: 10px;
	padding: 30px 18px 14px;
	background: linear-gradient(to top, rgba(15, 27, 45, .78), rgba(15, 27, 45, .12) 70%, transparent);
}
.svc__ph-flag {
	width: 30px; height: 21px;
	flex-shrink: 0;
	border-radius: 3px;
	overflow: hidden;
	box-shadow: 0 1px 5px rgba(0, 0, 0, .45);
}
.svc__ph-flag img { width: 100%; height: 100%; object-fit: cover; display: block; }
.svc__ph-country {
	color: #fff;
	font-weight: 700;
	font-size: 13px;
	letter-spacing: .1em;
	text-transform: uppercase;
	text-shadow: 0 1px 4px rgba(0, 0, 0, .5);
}
.svc__ph-badge {
	margin-left: auto;
	background: var(--c-accent);
	color: #fff;
	font-size: 10px;
	font-weight: 700;
	letter-spacing: .04em;
	text-transform: uppercase;
	padding: 3px 9px;
	border-radius: 999px;
	box-shadow: 0 2px 8px rgba(0, 0, 0, .3);
}
.services--imaged .svc { min-height: 480px; }

/* ---------- Process with side visual ---------- */
.process-grid {
	display: grid;
	grid-template-columns: 0.85fr 1.4fr;
	gap: clamp(28px, 4vw, 56px);
	align-items: stretch;
}
@media (max-width: 1024px) { .process-grid { grid-template-columns: 1fr; } }
.process-grid__visual { position: relative; min-height: 380px; }
.process-grid__visual .ph { position: absolute; inset: 0; }
.process-grid .process { grid-template-columns: repeat(2, 1fr); gap: 20px 24px; }
.process-grid .step { border-left: 0; border-top: 1px solid rgba(255,255,255,.12); padding: 24px 0 0; }
.process-grid .step:first-child,
.process-grid .step:nth-child(2) { border-top: 0; padding-top: 0; }
@media (max-width: 560px) { .process-grid .process { grid-template-columns: 1fr; } .process-grid .step { border-top: 1px solid rgba(255,255,255,.12); padding-top: 24px; } .process-grid .step:first-child { border-top: 0; padding-top: 0; } }

/* ---------- Cases CTA ---------- */
.cases-cta { margin-top: 40px; display: flex; justify-content: center; }

/* ---------- Quote: extra gallery thumbs ---------- */
.quote-block__gallery {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 10px;
	margin-top: 4px;
	max-width: 220px;
}
.quote-block__gallery .ph { position: relative; aspect-ratio: 1; border-radius: var(--radius); }

/* ---------- CTA-final with visual ---------- */
.cta-final {
	grid-template-columns: 0.9fr 1.2fr 1fr;
}
@media (max-width: 1024px) { .cta-final { grid-template-columns: 1fr 1fr; } .cta-final__visual { grid-column: span 2; aspect-ratio: 16/7; } }
@media (max-width: 900px)  { .cta-final { grid-template-columns: 1fr; } .cta-final__visual { grid-column: auto; } }
.cta-final__visual { position: relative; min-height: 280px; }
.cta-final__visual .ph { position: absolute; inset: 0; border-color: rgba(255,255,255,.18); }
.cta-final__body { position: relative; z-index: 1; }

/* ---------- Services archive (rows) ---------- */
.services-list { display: grid; gap: clamp(48px, 6vw, 88px); }
.service-row {
	display: grid;
	grid-template-columns: 1.1fr 1fr;
	gap: clamp(28px, 4vw, 56px);
	align-items: center;
}
.service-row--flip { grid-template-columns: 1fr 1.1fr; }
.service-row--flip .service-row__visual { order: 2; }
@media (max-width: 900px) {
	.service-row, .service-row--flip { grid-template-columns: 1fr; }
	.service-row--flip .service-row__visual { order: 0; }
}
.service-row__visual { aspect-ratio: 4/3; position: relative; }
.service-row__visual .ph { position: absolute; inset: 0; display: block; height: 100%; }
.service-row__body h2 { margin-top: 14px; font-size: clamp(26px, 3vw, 38px); letter-spacing: -0.015em; }
.service-row__body h2 a { color: inherit; }
.service-row__body h2 a:hover { color: var(--c-accent); }
.service-row__desc { margin-top: 14px; color: var(--c-ink-soft); font-size: 16.5px; line-height: 1.6; }
.service-row__body .svc__list { padding-top: 18px; }
.service-row__actions { margin-top: 28px; display: flex; gap: 10px; flex-wrap: wrap; }

/* ---------- Cases archive ---------- */
.cases-archive {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 18px;
}
@media (max-width: 1024px) { .cases-archive { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px) { .cases-archive { grid-template-columns: 1fr; } }
.cases-archive .case--feat { grid-column: span 2; }
@media (max-width: 640px) { .cases-archive .case--feat { grid-column: auto; } }
.case__excerpt { color: var(--c-ink-soft); font-size: 14.5px; line-height: 1.55; }
.cases-empty {
	display: grid;
	grid-template-columns: 1fr 1.4fr;
	gap: clamp(28px, 4vw, 56px);
	align-items: center;
	padding: clamp(32px, 5vw, 56px);
	background: var(--c-bg-deep);
	border-radius: var(--radius-xl);
}
.cases-empty .ph { aspect-ratio: 4/3; position: relative; }
@media (max-width: 900px) { .cases-empty { grid-template-columns: 1fr; } }

/* ---------- Assessment page ---------- */
.assess-stats {
	margin-top: 40px;
	padding-top: 24px;
	border-top: 1px solid var(--c-line);
	display: flex; gap: 48px; flex-wrap: wrap;
}
.assess-stats div { display: flex; flex-direction: column; }
.assess-stats b { font-size: 22px; font-weight: 700; color: var(--c-ink); letter-spacing: -0.01em; }
.assess-stats small { font-size: 12.5px; color: var(--c-muted); margin-top: 2px; }

.assess-layout {
	display: grid;
	grid-template-columns: 1.5fr 1fr;
	gap: clamp(32px, 4vw, 56px);
	align-items: start;
}
@media (max-width: 1024px) { .assess-layout { grid-template-columns: 1fr; } }

.assess-wrap { background: var(--c-surface); border: 1px solid var(--c-line); border-radius: var(--radius-xl); padding: clamp(28px, 4vw, 48px); box-shadow: var(--shadow); }

.assess-flash { border-radius: var(--radius-lg); padding: 18px 22px; margin-bottom: 28px; }
.assess-flash b { display: block; font-size: 16px; margin-bottom: 6px; }
.assess-flash p { color: var(--c-ink-soft); font-size: 14.5px; line-height: 1.55; }
.assess-flash--ok { background: color-mix(in oklab, #2da44e, transparent 90%); border: 1px solid color-mix(in oklab, #2da44e, transparent 70%); }
.assess-flash--ok b { color: #1f7a3a; }
.assess-flash--err { background: color-mix(in oklab, #d93b3b, transparent 90%); border: 1px solid color-mix(in oklab, #d93b3b, transparent 70%); }
.assess-flash--err b { color: #a02323; }

.assess-form { display: grid; gap: 32px; }
.assess-group { border: 0; padding: 0; margin: 0; }
.assess-group legend {
	font-family: var(--font-mono);
	font-size: 12px;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	color: var(--c-accent);
	margin-bottom: 18px;
	padding: 0;
}
.assess-grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 18px 20px;
}
@media (max-width: 640px) { .assess-grid { grid-template-columns: 1fr; } }
.assess-field { display: flex; flex-direction: column; gap: 8px; }
.assess-field--wide { grid-column: 1 / -1; }
.assess-field label { font-size: 13.5px; font-weight: 600; color: var(--c-ink); letter-spacing: 0.01em; }
.assess-field .req { color: var(--c-accent); margin-left: 2px; }
.assess-field input,
.assess-field select,
.assess-field textarea {
	font: inherit; font-size: 15px;
	padding: 12px 14px;
	border: 1px solid var(--c-line);
	border-radius: var(--radius);
	background: var(--c-bg);
	color: var(--c-ink);
	outline: none;
	transition: border-color .15s ease, box-shadow .15s ease, background .15s ease;
	width: 100%;
}
.assess-field textarea { font-family: inherit; resize: vertical; min-height: 110px; }
.assess-field input:focus,
.assess-field select:focus,
.assess-field textarea:focus {
	border-color: var(--c-accent);
	box-shadow: 0 0 0 3px color-mix(in oklab, var(--c-accent), transparent 80%);
	background: var(--c-surface);
}
.assess-field.has-error input,
.assess-field.has-error select,
.assess-field.has-error textarea { border-color: #d93b3b; background: color-mix(in oklab, #d93b3b, transparent 96%); }
.assess-err { color: #a02323; font-size: 12.5px; }

.assess-consent {
	background: var(--c-bg);
	border: 1px solid var(--c-line);
	border-radius: var(--radius);
	padding: 14px 16px;
}
.assess-consent label { display: flex; gap: 12px; align-items: flex-start; font-size: 13.5px; color: var(--c-ink-soft); cursor: pointer; }
.assess-consent input { margin-top: 3px; accent-color: var(--c-accent); }
.assess-consent a { color: var(--c-accent); text-decoration: underline; text-underline-offset: 3px; }

.assess-actions { display: flex; gap: 14px; align-items: center; flex-wrap: wrap; }
.assess-actions small { font-family: var(--font-mono); font-size: 11px; color: var(--c-muted); letter-spacing: 0.06em; }

.assess-card, .assess-trust {
	background: var(--c-surface);
	border: 1px solid var(--c-line);
	border-radius: var(--radius-lg);
	padding: 22px;
}
.assess-card { margin-bottom: 18px; }
.assess-card .ph { position: relative; border-radius: var(--radius); margin-bottom: 18px; }
.assess-card h3 { font-size: 17px; margin-bottom: 14px; }
.assess-card ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 8px; font-size: 14px; color: var(--c-ink-soft); }
.assess-card ul li { display: flex; align-items: flex-start; gap: 10px; }
.assess-card ul li::before {
	content: "✓"; color: var(--c-accent); font-weight: 700;
	flex-shrink: 0;
}
.assess-card__contact {
	margin-top: 20px;
	padding-top: 16px;
	border-top: 1px solid var(--c-line-soft);
	display: flex; justify-content: space-between; align-items: center;
	font-size: 13.5px; color: var(--c-muted);
}
.assess-card__contact a { color: var(--c-accent); font-size: 16px; }
.assess-trust .ph { position: relative; border-radius: var(--radius); margin-bottom: 14px; }
.assess-trust small { font-size: 12.5px; color: var(--c-muted); line-height: 1.55; display: block; }

/* =========================================================
   M2W — Blog (archive /bai-viet/ + single post)
   ========================================================= */

/* Narrow container cho single article (reading width) */
.container--narrow { max-width: 760px; margin: 0 auto; padding: 0 var(--pad-x); }

/* Filter chips */
.blog-filter { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 40px; }
.chip {
	display: inline-flex; align-items: center; gap: 4px;
	padding: 8px 16px;
	border: 1px solid var(--c-line);
	border-radius: 999px;
	background: var(--c-surface);
	font-size: 13.5px; font-weight: 500;
	color: var(--c-ink-soft);
	transition: all .15s ease;
}
.chip:hover { border-color: var(--c-accent); color: var(--c-accent); }
.chip.is-active { background: var(--c-ink); color: #fff; border-color: var(--c-ink); }
.chip small { font-family: var(--font-mono); font-size: 11px; opacity: .7; }

/* Blog grid */
.blog-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 28px;
}
.blog-grid--compact { grid-template-columns: repeat(3, 1fr); gap: 18px; }
.blog-grid--compact .post-card__excerpt { display: none; } /* related posts: bỏ excerpt cho gọn */
@media (max-width: 1024px) { .blog-grid, .blog-grid--compact { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px) { .blog-grid, .blog-grid--compact { grid-template-columns: 1fr; } }

/* ============================================================
   Thư viện /bai-viet/ — hero tạp chí + chủ đề + quốc gia (redesign 04/06)
   ============================================================ */
.lib-hero { display: grid; grid-template-columns: 1.7fr 1fr; gap: 36px; margin: 8px 0 56px; align-items: start; }
.lib-hero__side { display: flex; flex-direction: column; }
.lib-side__title { font-family: var(--font-mono); font-size: 12.5px; text-transform: uppercase; letter-spacing: 0.1em; color: var(--c-muted); margin: 0 0 14px; }
.side-item { display: grid; grid-template-columns: 88px 1fr; gap: 14px; padding: 14px 0; border-top: 1px solid var(--c-line-soft); align-items: center; }
.side-item:first-of-type { border-top: 0; padding-top: 0; }
.side-item__thumb { aspect-ratio: 1/1; border-radius: 10px; overflow: hidden; background: var(--c-accent-soft); }
.side-item__thumb img { width: 100%; height: 100%; object-fit: cover; }
.side-item__body { display: flex; flex-direction: column; gap: 5px; min-width: 0; }
.side-item__title { font-size: 15px; font-weight: 600; line-height: 1.35; color: var(--c-ink); display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.side-item:hover .side-item__title { color: var(--c-accent); }
.side-item__date { font-family: var(--font-mono); font-size: 11.5px; color: var(--c-muted); }

.lib-block { margin-bottom: 56px; }
.lib-block__head { display: flex; align-items: baseline; justify-content: space-between; gap: 16px; flex-wrap: wrap; margin-bottom: 24px; padding-bottom: 14px; border-bottom: 2px solid var(--c-ink); }
.lib-block__title { font-size: 24px; margin: 0; letter-spacing: -0.01em; }
.lib-block__sub { color: var(--c-ink-soft); font-size: 14.5px; margin: 0; flex: 1 1 260px; }
.lib-block__all { font-family: var(--font-mono); font-size: 13px; color: var(--c-accent); white-space: nowrap; }

.topic-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.topic-card { display: flex; flex-direction: column; gap: 12px; padding: 20px; min-height: 132px; background: var(--c-surface); border: 1px solid var(--c-line); border-radius: var(--radius-lg); transition: transform .2s, box-shadow .2s, border-color .2s; }
.topic-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-lg); border-color: color-mix(in oklab, var(--c-accent), transparent 55%); }
.topic-card__ico { width: 44px; height: 44px; display: grid; place-items: center; border-radius: 12px; background: var(--c-accent-soft); color: var(--c-accent-ink); }
.topic-card__label { font-size: 15.5px; font-weight: 600; line-height: 1.3; color: var(--c-ink); }
.topic-card__count { font-family: var(--font-mono); font-size: 12px; color: var(--c-muted); margin-top: auto; }

.country-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.country-card { background: var(--c-surface); border: 1px solid var(--c-line); border-radius: var(--radius-lg); padding: 22px; display: flex; flex-direction: column; }
.country-card__head { display: flex; align-items: center; gap: 10px; padding-bottom: 14px; margin-bottom: 14px; border-bottom: 1px solid var(--c-line-soft); }
.country-card__flag .flag-chip { width: 26px; height: 19px; border-radius: 3px; }
.country-card__name { font-size: 18px; font-weight: 700; color: var(--c-ink); }
.country-card:hover .country-card__name { color: var(--c-accent); }
.country-card__count { margin-left: auto; font-family: var(--font-mono); font-size: 12px; color: var(--c-muted); }
.country-card__list { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 11px; flex: 1; }
.country-card__list a { font-size: 14.5px; line-height: 1.4; color: var(--c-ink-soft); display: block; }
.country-card__list a:hover { color: var(--c-accent); }
.country-card__all { margin-top: 16px; font-family: var(--font-mono); font-size: 13px; color: var(--c-accent); }

.lib-stats { display: flex; flex-wrap: wrap; gap: 10px 28px; margin-top: 22px; }
.lib-stat { font-size: 14px; color: var(--c-ink-soft); }
.lib-stat b { color: var(--c-ink); font-weight: 700; }
.lib-back { display: inline-block; font-family: var(--font-mono); font-size: 13px; color: var(--c-accent); margin-bottom: 10px; }

@media (max-width: 1024px) { .lib-hero { grid-template-columns: 1fr; gap: 32px; } .topic-grid { grid-template-columns: repeat(3, 1fr); } .country-grid { grid-template-columns: 1fr; } }
@media (max-width: 640px) { .topic-grid { grid-template-columns: repeat(2, 1fr); } .topic-card { min-height: 0; } }

/* Post card */
.post-card {
	display: flex; flex-direction: column;
	background: var(--c-surface);
	border: 1px solid var(--c-line);
	border-radius: var(--radius-lg);
	overflow: hidden;
	transition: transform .25s, box-shadow .25s, border-color .25s;
}
.post-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-lg); border-color: color-mix(in oklab, var(--c-accent), transparent 60%); }
.post-card__ph { aspect-ratio: 16/10; position: relative; display: block; }
.post-card__ph img { width: 100%; height: 100%; object-fit: cover; }
.post-card__body { padding: 22px 22px 24px; display: flex; flex-direction: column; gap: 10px; flex: 1; }
.post-card__cat {
	align-self: flex-start;
	font-family: var(--font-mono); font-size: 11.5px;
	color: var(--c-accent-ink);
	background: var(--c-accent-soft);
	padding: 4px 10px; border-radius: 999px;
	letter-spacing: 0.06em; text-transform: uppercase;
}
.post-card__title { font-size: 17.5px; line-height: 1.32; font-weight: 600; letter-spacing: -0.005em; margin: 0; }
.post-card__title a { color: var(--c-ink); }
.post-card__title a:hover { color: var(--c-accent); }
.post-card__excerpt { color: var(--c-ink-soft); font-size: 14px; line-height: 1.55; margin: 0; }
.post-card__meta {
	display: flex; gap: 12px; margin-top: auto; padding-top: 12px;
	border-top: 1px solid var(--c-line-soft);
	font-family: var(--font-mono); font-size: 12px; color: var(--c-muted);
	letter-spacing: 0.04em;
}
.post-card__rt { position: relative; }
.post-card__rt::before { content: "·"; margin-right: 12px; opacity: .5; }

/* ============================================================
   Thư viện bài viết — masthead, lọc, bài chủ lực, bìa biên tập
   ============================================================ */

/* Masthead (đầu báo) */
.lib-masthead h1 { letter-spacing: -0.02em; }
.lib-accent {
	font-style: normal;
	color: var(--c-ink);
	background: linear-gradient(var(--c-accent), var(--c-accent)) left 100% / 100% 0.1em no-repeat;
	padding-bottom: 0.06em;
}
.lib-sep { color: var(--c-accent); font-weight: 400; margin: 0 0.04em; }
.lib-masthead__top {
	display: flex; align-items: center; justify-content: flex-end;
	gap: 20px; flex-wrap: wrap; margin-bottom: 18px;
}
.lib-masthead .eyebrow { display: inline-flex; align-items: center; gap: 8px; }
.lib-masthead .eyebrow .flag-chip { width: 18px; height: 13px; border-radius: 2px; }
.lib-masthead__count { color: var(--c-muted); letter-spacing: 0.08em; }

.lib-search {
	display: flex; align-items: center; gap: 8px;
	flex: 0 1 360px; max-width: 360px; width: 100%;
	background: var(--c-surface); border: 1px solid var(--c-line);
	border-radius: 999px; padding: 4px 4px 4px 18px;
	transition: border-color .15s, box-shadow .15s;
}
.lib-search:focus-within { border-color: var(--c-accent); box-shadow: 0 0 0 3px var(--c-accent-soft); }
.lib-search__field {
	flex: 1; min-width: 0; border: 0; background: none; outline: none;
	font: inherit; font-size: 14px; color: var(--c-ink);
}
.lib-search__field::placeholder { color: var(--c-muted); }
.lib-search__btn {
	display: grid; place-items: center; flex: none;
	width: 38px; height: 38px; border-radius: 999px;
	background: var(--c-accent); color: #fff; transition: background .15s;
}
.lib-search__btn:hover { background: var(--c-accent-2); }
@media (max-width: 640px) { .lib-search { flex-basis: 100%; max-width: none; } }

/* Chip lọc có cờ */
.chip--flag { padding-left: 9px; }
.chip--flag .flag-chip { width: 18px; height: 13px; border-radius: 2px; }

/* Bộ lọc 2 nhóm: Nội dung + Khu vực */
.lib-filter { margin-bottom: 32px; }
.lib-filter__bar { display: flex; align-items: center; flex-wrap: wrap; gap: 10px 14px; }
.lib-filter__group { display: flex; align-items: center; flex-wrap: wrap; gap: 8px; }
.lib-filter__group--type { margin-left: auto; }   /* Nội dung dạt sang phải cho cân */

/* Chủ đề — dropdown native (<details>, no-JS): thu 12 mục lại 1 nút, hết tường chữ */
.lib-topics { position: relative; }
.lib-topics__toggle {
	display: inline-flex; align-items: center; gap: 7px;
	padding: 8px 15px; border: 1px solid var(--c-line); border-radius: 999px;
	background: var(--c-surface); font-size: 13.5px; color: var(--c-ink-soft);
	cursor: pointer; list-style: none; white-space: nowrap; user-select: none;
	transition: border-color .15s ease, color .15s ease;
}
.lib-topics__toggle::-webkit-details-marker { display: none; }
.lib-topics__toggle:hover { border-color: var(--c-accent); color: var(--c-accent); }
.lib-topics__cap { color: var(--c-muted); }
.lib-topics__cur { font-weight: 700; color: var(--c-ink); }
.lib-topics__chev { transition: transform .2s ease; flex: none; }
.lib-topics[open] > .lib-topics__toggle { border-color: var(--c-accent); color: var(--c-accent); }
.lib-topics[open] .lib-topics__chev { transform: rotate(180deg); }
.lib-topics__panel {
	position: absolute; top: calc(100% + 8px); left: 0; z-index: 40;
	width: min(640px, 88vw);
	display: flex; flex-wrap: wrap; gap: 8px;
	padding: 16px; border-radius: 16px;
	background: var(--c-surface); border: 1px solid var(--c-line);
	box-shadow: var(--shadow-lg);
}
/* Panel Tiểu bang: nhiều chip (đến 51 bang Mỹ) -> rộng hơn + cuộn dọc */
.lib-topics__panel--states { width: min(760px, 92vw); max-height: 58vh; overflow-y: auto; align-content: flex-start; }
.lib-topics--states .lib-topics__panel,
.lib-topics--cities .lib-topics__panel { right: 0; left: auto; }
.lib-topics__panel--states .chip small { color: var(--c-ink-soft); margin-left: 2px; }
/* Header tỉnh trong dropdown Thành phố (gom nhóm) — chiếm trọn hàng, ngắt cột flex */
.lib-topics__grp {
	flex: 1 0 100%;
	width: 100%;
	margin: 8px 0 2px;
	font-size: 11px;
	font-weight: 700;
	letter-spacing: 0.04em;
	text-transform: uppercase;
	color: var(--c-muted);
}
.lib-topics__grp:first-of-type { margin-top: 2px; }
/* ---- Bản đồ theo bang (choropleth SVG tự host, no-tile) ---- */
.rmap { margin-top: 18px; padding-top: 16px; border-top: 1px dashed var(--c-line); }
.rmap__head { cursor: pointer; display: inline-flex; align-items: center; gap: 8px; font-size: 14px; font-weight: 700; color: var(--c-ink); list-style: none; }
.rmap__head::-webkit-details-marker { display: none; }
.rmap__head svg { color: var(--c-accent); }
.rmap__hint { font-weight: 400; font-size: 13px; color: var(--c-ink-soft); }
/* Khung card có chiều sâu */
.rmap__box {
	margin: 14px auto 4px; max-width: 880px; padding: 24px 30px 16px;
	border-radius: 20px; border: 1px solid var(--c-line);
	background: radial-gradient(130% 120% at 50% -10%, #fffdfa 0%, var(--c-surface, #fff) 62%);
	box-shadow: 0 14px 36px -20px rgba(70, 45, 20, .4), inset 0 1px 0 rgba(255,255,255,.6);
}
/* Map full chiều rộng, scale theo tỉ lệ (giữ aspect, không méo) cho cả 4 nước.
   Map dọc (Đức/Canada) sẽ cao hơn map ngang (Mỹ/Úc) — đúng tỉ lệ thật, cân đối. */
.rmap__svg { width: auto; height: auto; max-width: 100%; max-height: 560px; margin: 0 auto; display: block; overflow: visible; }
.rmap__p { fill: #efe7da; stroke: #fff; stroke-width: 1; stroke-linejoin: round; transition: fill .18s ease, filter .18s ease; }
.rmap__a { cursor: pointer; outline: none; }
/* Dải màu choropleth (cam thương hiệu, đậm dần) */
.rmap__a.lvl-1 .rmap__p { fill: #f8d4a6; }
.rmap__a.lvl-2 .rmap__p { fill: #f0a458; }
.rmap__a.lvl-3 .rmap__p { fill: #e57f25; }
/* Hover: nổi lên + bóng + cam đậm */
.rmap__a:hover .rmap__p, .rmap__a:focus-visible .rmap__p { fill: var(--c-accent, #f26a1f); filter: drop-shadow(0 3px 5px rgba(120, 60, 10, .5)); }
.rmap__a.is-active .rmap__p { fill: var(--c-ink); stroke: #fff; stroke-width: 1.5; filter: drop-shadow(0 3px 6px rgba(0,0,0,.32)); }
.rmap__a .rmap__num,
.rmap__a:link .rmap__num,
.rmap__a:visited .rmap__num { font: 800 11px var(--font-sans, system-ui, sans-serif); fill: #7a4a1e; stroke: none; pointer-events: none; }
.rmap__a.lvl-2 .rmap__num, .rmap__a.lvl-3 .rmap__num { fill: #5a3210; }
.rmap__a:hover .rmap__num, .rmap__a.is-active .rmap__num { fill: #fff; }
/* Chú giải + caption bang đang chọn */
.rmap__legend { display: flex; align-items: center; justify-content: center; flex-wrap: wrap; gap: 6px 10px; margin-top: 12px; font-size: 12.5px; color: var(--c-ink-soft); }
.rmap__legend-cap { font-weight: 600; color: var(--c-ink); }
.rmap__sw { display: inline-block; width: 16px; height: 12px; border-radius: 3px; vertical-align: -1px; border: 1px solid rgba(0,0,0,.06); }
.rmap__sw.lvl-1 { background: #f8d4a6; } .rmap__sw.lvl-2 { background: #f0a458; } .rmap__sw.lvl-3 { background: #e57f25; }
.rmap__legend-hint { color: var(--c-ink-soft); }
.rmap__active { display: inline-flex; align-items: center; gap: 8px; margin-left: 6px; padding: 3px 10px; border-radius: 999px; background: var(--c-accent-soft, #fdeede); color: var(--c-accent-ink, #9a4a12); font-size: 12.5px; font-weight: 600; }
.rmap__active small { font-weight: 400; opacity: .8; }
.rmap__active a { color: inherit; opacity: .75; text-decoration: underline; }
/* Chấm thành phố lớn (marker JS) */
.rmap__city { cursor: pointer; }
.rmap__hit { fill: transparent; }
.rmap__dot { fill: #1b365d; stroke: #fff; stroke-width: 1.6; pointer-events: none; transition: r .15s ease, fill .15s ease; }
.rmap__city:hover .rmap__dot, .rmap__city:focus-visible .rmap__dot, .rmap__city.is-hl .rmap__dot { fill: var(--c-accent, #f26a1f); r: 7.5px; }
.rmap__city.is-active .rmap__dot { fill: var(--c-accent, #f26a1f); r: 7.5px; }
.rmap__city-label { font: 700 10px var(--font-sans, system-ui, sans-serif); fill: #16314f; paint-order: stroke; stroke: rgba(255,255,255,.92); stroke-width: 2.8px; stroke-linejoin: round; pointer-events: none; }
.rmap__city:hover .rmap__city-label, .rmap__city.is-active .rmap__city-label, .rmap__city.is-hl .rmap__city-label { fill: var(--c-accent-ink, #9a4a12); }
.rmap__sw--city { background: #1b365d; border-radius: 50%; width: 11px; height: 11px; border: 1.5px solid #fff; box-shadow: 0 0 0 1px rgba(0,0,0,.1); }

/* ── Bố cục map + panel danh sách thành phố cạnh nhau ── */
.rmap__box--split { display: flex; align-items: stretch; gap: 0; max-width: 1060px; padding: 0; overflow: hidden; }
.rmap__box--split .rmap__map { flex: 1 1 auto; min-width: 0; padding: 24px 28px 16px; display: flex; flex-direction: column; justify-content: center; }
.rmap__cities { flex: 0 0 252px; display: flex; flex-direction: column; border-left: 1px solid var(--c-line); background: linear-gradient(180deg, rgba(250,244,236,.55), transparent 40%); }
.rmap__cities-head { display: flex; align-items: center; gap: 8px; padding: 16px 18px 11px; font-size: 13.5px; font-weight: 800; color: var(--c-ink); border-bottom: 1px solid var(--c-line); }
.rmap__cities-head svg { color: var(--c-accent); flex: 0 0 auto; }
.rmap__cities-scroll { overflow-y: auto; max-height: 488px; padding: 8px 9px 12px; display: flex; flex-direction: column; gap: 1px; scrollbar-width: thin; }
.rmap__cl-grp { font-size: 10.5px; font-weight: 800; letter-spacing: .05em; text-transform: uppercase; color: var(--c-ink-soft); padding: 13px 8px 4px; }
.rmap__cl-grp:first-of-type { padding-top: 5px; }
.rmap__cl { display: flex; align-items: center; gap: 9px; padding: 7px 10px; border-radius: 9px; font-size: 13.5px; line-height: 1.25; color: var(--c-ink); text-decoration: none; transition: background .14s ease, color .14s ease; }
.rmap__cl-name { min-width: 0; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.rmap__cl small { margin-left: auto; padding-left: 8px; font-size: 12px; font-weight: 700; color: var(--c-ink-soft); }
.rmap__cl-dot { width: 8px; height: 8px; border-radius: 50%; flex: 0 0 auto; background: #1b365d; border: 1.5px solid #fff; box-shadow: 0 0 0 1px rgba(0,0,0,.14); }
.rmap__cl-dot.is-off { background: transparent; border-color: rgba(120,90,60,.34); box-shadow: none; }
.rmap__cl--all { font-weight: 700; margin-bottom: 2px; }
.rmap__cl:hover, .rmap__cl.is-hl { background: var(--c-accent-soft, #fdeede); color: var(--c-accent-ink, #9a4a12); }
.rmap__cl:hover small, .rmap__cl.is-hl small { color: var(--c-accent-ink, #9a4a12); }
.rmap__cl.is-active { background: var(--c-ink); color: #fff; }
.rmap__cl.is-active small { color: rgba(255,255,255,.78); }
.rmap__cl.is-active .rmap__cl-dot { background: #fff; border-color: var(--c-ink); }
/* Dòng TP đang chọn: đổi count thành nhãn "× bỏ chọn" để biết bấm lại là tắt (toggle). */
.rmap__cl.is-active small { display: none; }
.rmap__cl.is-active::after { content: '× bỏ chọn'; margin-left: auto; padding-left: 8px; font-size: 11px; font-weight: 600; color: rgba(255,255,255,.82); white-space: nowrap; }
@media (max-width: 760px) {
	.rmap__box--split { flex-direction: column; max-width: 100%; }
	.rmap__box--split .rmap__map { padding: 18px 18px 12px; }
	.rmap__cities { flex: 1 1 auto; border-left: 0; border-top: 1px solid var(--c-line); }
	.rmap__cities-scroll { max-height: 232px; }
}
@media (max-width: 700px) {
	.lib-filter__group--type { margin-left: 0; }
	.lib-topics__panel { width: min(640px, 92vw); }
	.rmap__box, .rmap__box--duc { max-width: 100%; }
}
.lib-filter__foot { display: flex; align-items: center; gap: 18px; flex-wrap: wrap; margin-top: 4px; padding-top: 14px; border-top: 1px dashed var(--c-line); }
.lib-filter__result { font-size: 14px; color: var(--c-ink-soft); }
.lib-filter__result b { color: var(--c-ink); font-weight: 700; }
.lib-filter__clear { font-family: var(--font-mono); font-size: 12.5px; color: var(--c-accent); margin-left: auto; }
.lib-filter__clear:hover { text-decoration: underline; }
.lib-sort { display: inline-flex; align-items: center; gap: 4px; flex-wrap: wrap; }
.lib-sort__label { font-family: var(--font-mono); font-size: 11.5px; letter-spacing: 0.06em; text-transform: uppercase; color: var(--c-muted); margin-right: 4px; }
.lib-sort__opt { font-size: 13px; color: var(--c-ink-soft); padding: 3px 11px; border-radius: 999px; }
.lib-sort__opt:hover { color: var(--c-accent); }
.lib-sort__opt.is-active { background: var(--c-accent-soft); color: var(--c-accent-ink); font-weight: 600; }

/* ============================================================
   Thư viện — premium polish: zoom ảnh, hover tinh tế, chiều sâu (04/06)
   ============================================================ */
/* Zoom ảnh card khi hover (chỉ ảnh, cờ giữ nguyên) */
.post-card__ph { overflow: hidden; }
.post-card__ph img { transition: transform .6s var(--m2w-ease); }
.post-card:hover .post-card__ph img { transform: scale(1.06); }
.lead-card__ph img { transition: transform .7s var(--m2w-ease); }
.lead-card:hover .lead-card__ph img { transform: scale(1.04); }
.side-item__thumb img { transition: transform .5s var(--m2w-ease); }
.side-item:hover .side-item__thumb img { transform: scale(1.07); }

/* Thẻ chủ đề — icon đổi màu + mũi tên hiện khi hover */
.topic-card { position: relative; }
.topic-card__ico { transition: background .25s, color .25s, transform .25s; }
.topic-card:hover .topic-card__ico { background: var(--c-accent); color: #fff; transform: translateY(-2px); }
.topic-card::after {
	content: "→"; position: absolute; right: 18px; bottom: 16px;
	font-size: 16px; color: var(--c-accent); opacity: 0; transform: translateX(-5px);
	transition: opacity .25s var(--m2w-ease), transform .25s var(--m2w-ease);
}
.topic-card:hover::after { opacity: 1; transform: translateX(0); }

/* Thẻ quốc gia — nâng nhẹ khi hover */
.country-card { transition: transform .25s, box-shadow .25s, border-color .25s; }
.country-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-lg); border-color: color-mix(in oklab, var(--c-accent), transparent 55%); }

/* Masthead thư viện — chiều sâu tinh tế */
.lib-masthead { position: relative; overflow: hidden; }
.lib-masthead::before {
	content: ""; position: absolute; top: -140px; right: -90px;
	width: 420px; height: 420px; border-radius: 50%; pointer-events: none; z-index: 0;
	background: radial-gradient(circle, color-mix(in oklab, var(--c-accent), transparent 82%), transparent 70%);
}
.lib-masthead > .container { position: relative; z-index: 1; }
/* Tiêu đề section — vạch nhấn nhỏ thay gạch đen đặc cho thanh thoát */
.lib-block__head { border-bottom-color: var(--c-line); }
.lib-block__title { position: relative; padding-left: 16px; }
.lib-block__title::before {
	content: ""; position: absolute; left: 0; top: 0.12em; bottom: 0.12em;
	width: 4px; border-radius: 4px; background: var(--c-accent);
}

/* Gọn gàng masthead + filter — thu khoảng trắng, giảm cỡ (04/06) */
.lib-masthead { padding-top: clamp(22px, 2.8vw, 38px); padding-bottom: clamp(14px, 1.8vw, 24px); }
.lib-masthead__top { margin-bottom: 8px; }
.lib-masthead h1 { font-size: clamp(28px, 3.3vw, 44px); line-height: 1.12; margin-top: 2px; }
.lib-masthead .hero__lede { margin-top: 8px; font-size: 14.5px; }
.lib-stats { margin-top: 14px; gap: 6px 20px; }
.lib-stat { font-size: 13px; }
.lib-masthead::before { width: 300px; height: 300px; top: -110px; right: -70px; }
.lib-filter { margin-bottom: 28px; }
.lib-filter .chip { padding: 6px 13px; font-size: 13.5px; }
/* FIX: section.sec (0,1,1) đè .sec--tight (0,1,0) → top-padding ~100px còn sót. Selector đủ mạnh cho trang thư viện. */
.lib .sec--tight { padding-top: 0; }
@media (max-width: 560px) { .lib-filter__clear { margin-left: 0; } }

/* Trang nhất — section theo khu vực (kiểu ban báo) */
.news-front { display: flex; flex-direction: column; gap: clamp(40px, 5vw, 64px); margin-top: 8px; }
.news-sec__head {
	display: flex; align-items: baseline; justify-content: space-between; gap: 16px;
	padding-bottom: 14px; margin-bottom: 26px;
	border-bottom: 2px solid var(--c-ink);
}
.news-sec__title {
	display: inline-flex; align-items: center; gap: 12px;
	font-size: clamp(20px, 2.4vw, 27px); font-weight: 700; letter-spacing: -0.02em; margin: 0;
}
.news-sec__flag {
	display: block; width: 30px; height: 22px; border-radius: 3px; overflow: hidden;
	box-shadow: 0 1px 3px rgba(15,27,45,.2);
}
.news-sec__flag .flag-chip { width: 100%; height: 100%; }
.news-sec__all {
	font-family: var(--font-mono); font-size: 12.5px; letter-spacing: 0.04em;
	color: var(--c-accent); white-space: nowrap;
}
.news-sec__all:hover { color: var(--c-accent-2); }
.news-sec__all small { opacity: .7; }
@media (max-width: 560px) {
	.news-sec__head { flex-direction: column; align-items: flex-start; gap: 8px; }
}

/* Bài chủ lực (lead) */
.lead-wrap { margin-bottom: clamp(40px, 5vw, 56px); }
.lead-card {
	display: grid; grid-template-columns: 1.1fr 1fr;
	background: var(--c-surface); border: 1px solid var(--c-line);
	border-radius: var(--radius-lg); overflow: hidden;
	transition: box-shadow .25s, border-color .25s, transform .25s;
}
.lead-card:hover { box-shadow: var(--shadow-lg); border-color: color-mix(in oklab, var(--c-accent), transparent 55%); }
.lead-card__ph { position: relative; display: block; min-height: 320px; overflow: hidden; }
.lead-card__ph img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.lead-card__body { padding: clamp(24px, 3vw, 46px); display: flex; flex-direction: column; gap: 16px; }
.lead-card__kicker { display: flex; align-items: center; gap: 10px; flex-wrap: wrap; }
.lead-card__flag {
	font-family: var(--font-mono); font-size: 10.5px; letter-spacing: 0.08em; text-transform: uppercase;
	color: #fff; background: var(--c-accent); padding: 5px 11px; border-radius: 999px;
}
.lead-card__title {
	font-size: clamp(24px, 2.6vw, 34px); line-height: 1.18;
	letter-spacing: -0.02em; font-weight: 700; margin: 0;
}
.lead-card__title a { color: var(--c-ink); }
.lead-card__title a:hover { color: var(--c-accent); }
.lead-card__excerpt { color: var(--c-ink-soft); font-size: 15.5px; line-height: 1.6; margin: 0; }
.lead-card__foot {
	margin-top: auto; padding-top: 14px;
	display: flex; align-items: center; justify-content: space-between;
	gap: 16px; flex-wrap: wrap;
	border-top: 1px solid var(--c-line-soft);
}
.lead-card__foot .post-card__meta { margin: 0; padding: 0; border: 0; }
.lead-card__more { font-weight: 600; color: var(--c-accent); white-space: nowrap; }
.lead-card__more:hover { color: var(--c-accent-2); }
@media (max-width: 720px) {
	.lead-card { grid-template-columns: 1fr; }
	.lead-card__ph { min-height: 0; aspect-ratio: 16/9; }
}

/* Bìa biên tập của card (khi bài chưa có ảnh) — không bao giờ trống/vỡ */
.post-cover { display: block; }
.post-cover__flag {
	position: absolute; top: 12px; left: 12px; z-index: 2;
	display: flex; gap: 4px;
}
.post-cover__flag .flag-chip {
	position: static; inset: auto; flex: none;
	width: 30px; height: 22px; border-radius: 3px; overflow: hidden; object-fit: cover; display: block;
	box-shadow: 0 1px 4px rgba(15,27,45,.25); border: 1px solid rgba(255,255,255,.6);
}
.post-cover__brand {
	position: absolute; top: 15px; right: 15px; z-index: 2;
	font-family: var(--font-mono); font-size: 10.5px; letter-spacing: 0.1em; text-transform: uppercase;
	color: var(--c-accent-ink); opacity: .72;
}
.post-cover__cat {
	position: absolute; inset: 0; z-index: 1;
	display: flex; align-items: center; justify-content: center;
	padding: 30px 24px; text-align: center;
	font-family: var(--font-serif); font-style: italic; font-weight: 500;
	font-size: clamp(20px, 3vw, 27px); line-height: 1.16; letter-spacing: -0.01em;
	color: var(--c-ink);
}
.post-cover__deco {
	position: absolute; z-index: 0; right: -22%; bottom: -42%;
	width: 190px; height: 190px; border-radius: 50%;
	background: radial-gradient(circle, color-mix(in oklab, var(--c-accent), transparent 68%), transparent 70%);
}
.post-cover--lead .post-cover__cat { font-size: clamp(26px, 3.4vw, 40px); padding: 44px; }
.post-cover--lead .post-cover__flag { top: 18px; left: 18px; }
.post-cover--lead .post-cover__flag .flag-chip { width: 38px; height: 27px; }
.post-cover--lead .post-cover__deco { width: 280px; height: 280px; }

/* Single post */
.post-single { padding-bottom: clamp(48px, 6vw, 80px); }
.post-single__header { padding: clamp(28px, 4vw, 56px) 0 24px; }
.post-single__cat {
	display: inline-block;
	font-family: var(--font-mono); font-size: 11.5px;
	color: var(--c-accent-ink); background: var(--c-accent-soft);
	padding: 5px 12px; border-radius: 999px;
	letter-spacing: 0.06em; text-transform: uppercase;
	margin-bottom: 16px;
}
.post-single__header .entry-title {
	font-size: clamp(30px, 4vw, 48px);
	line-height: 1.18; letter-spacing: -0.01em;
	font-weight: 800;
	margin: 0 0 18px;
}
.post-single__meta {
	display: flex; gap: 8px; flex-wrap: wrap;
	font-size: 14px; color: var(--c-muted);
}
.post-single__hero { margin: 0 0 40px; border-radius: var(--radius-lg); overflow: hidden; position: relative; }
.post-single__hero img { width: 100%; height: auto; aspect-ratio: 16/9; object-fit: cover; display: block; }
.post-single__hero .ph { position: relative; }
.post-single__imgcredit { position: absolute; right: 8px; bottom: 8px; max-width: 75%; font-size: 11px; line-height: 1.3; color: #fff; background: rgba(0,0,0,.5); padding: 3px 8px; border-radius: 6px; text-align: right; }
.m2w-imgcredit { color: var(--c-muted, #6b7280); font-size: .85em; }

.post-single__content {
	font-size: 17.5px; line-height: 1.72; color: var(--c-ink);
}
.post-single__content > * + * { margin-top: 1.1em; }
.post-single__content h2 {
	font-size: clamp(22px, 2.6vw, 30px);
	margin-top: 2em;
	letter-spacing: -0.015em;
	scroll-margin-top: 90px;
}
.post-single__content h3 {
	font-size: 19px;
	margin-top: 1.6em;
	font-weight: 600;
	color: var(--c-ink);
	scroll-margin-top: 90px;
}
.post-single__content ul, .post-single__content ol {
	padding-left: 22px;
	display: grid; gap: 8px;
	color: var(--c-ink-soft);
}
.post-single__content li { line-height: 1.6; }
.post-single__content li::marker { color: var(--c-accent); }
.post-single__content a { color: var(--c-accent); text-decoration: underline; text-underline-offset: 3px; }
.post-single__content a:hover { color: var(--c-dark); }
.post-single__content strong { color: var(--c-ink); }
.post-single__content p { font-size: 17px; }
.post-single__content em { font-style: italic; }

/* TOC */
.post-toc {
	background: var(--c-bg-deep);
	border: 1px solid var(--c-line);
	border-radius: var(--radius-lg);
	padding: 22px 26px;
	margin: 28px 0 36px;
}
.post-toc__title {
	font-size: 14px !important;
	font-family: var(--font-mono);
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.12em;
	color: var(--c-accent) !important;
	margin: 0 0 14px !important;
}
.post-toc ol {
	margin: 0 !important; padding: 0 !important; list-style: none !important;
	display: grid; gap: 8px !important;
	counter-reset: toc;
}
.post-toc li { counter-increment: toc; padding-left: 28px; position: relative; font-size: 14.5px !important; }
.post-toc li::before {
	content: counter(toc, decimal-leading-zero);
	position: absolute; left: 0; top: 0;
	font-family: var(--font-mono); font-size: 11px;
	color: var(--c-muted); letter-spacing: 0;
}
.post-toc a { color: var(--c-ink-soft); text-decoration: none !important; }
.post-toc a:hover { color: var(--c-accent); }

/* FAQ styling (h3.faq-q) */
.post-single__content h3.faq-q {
	background: var(--c-bg);
	padding: 14px 18px;
	border-left: 4px solid var(--c-accent);
	border-radius: 0 var(--radius) var(--radius) 0;
	font-size: 17px;
	margin-top: 1.4em;
	color: var(--c-ink);
}
.post-single__content h3.faq-q + p {
	padding: 4px 18px;
	color: var(--c-ink-soft);
	margin-top: 0.5em;
}

/* Tags */
.post-single__tags {
	margin-top: 48px; padding-top: 28px;
	border-top: 1px solid var(--c-line);
	display: flex; flex-wrap: wrap; gap: 8px;
}
.post-single__tags a {
	font-family: var(--font-mono); font-size: 12px;
	color: var(--c-muted);
	padding: 6px 14px;
	border: 1px solid var(--c-line);
	border-radius: 999px;
	text-decoration: none;
	letter-spacing: 0.02em;
}
.post-single__tags a:hover { color: var(--c-accent); border-color: var(--c-accent); }

/* End-of-article CTA */
.post-single__cta {
	margin-top: 48px;
	background: var(--c-bg-deep);
	border: 1px solid var(--c-line);
	border-left: 4px solid var(--c-accent);
	border-radius: var(--radius-lg);
	padding: 24px 28px;
	display: grid;
	grid-template-columns: 1fr auto;
	gap: 24px;
	align-items: center;
}
@media (max-width: 640px) { .post-single__cta { grid-template-columns: 1fr; } }
.post-single__cta b { display: block; font-size: 17px; margin-bottom: 4px; color: var(--c-ink); }
.post-single__cta span { font-size: 14.5px; color: var(--c-ink-soft); }

/* Ảnh hero trong content (bài tối ưu RankMath) */
.entry-content figure.m2w-inline-hero { margin: 0 0 32px; }
.entry-content figure.m2w-inline-hero img { width: 100%; height: auto; border-radius: var(--radius, 12px); display: block; }
.entry-content figure.m2w-inline-hero figcaption { margin-top: 8px; font-size: 13.5px; color: var(--c-ink-soft); text-align: center; }
/* Block link nội bộ "Đọc thêm" */
.entry-content .m2w-inline-links { margin: 28px 0 0; padding: 14px 18px; background: var(--c-surface, #f7f5f1); border-left: 3px solid var(--c-brand); border-radius: 8px; font-size: 15px; }
.entry-content .m2w-inline-links a { color: var(--c-brand); text-decoration: none; }
.entry-content .m2w-inline-links a:hover { text-decoration: underline; }

/* Link pillar tổng quan theo nước */
.post-single__hublink {
	margin: 40px 0 0;
	font-weight: 600;
}
.post-single__hublink a {
	color: var(--c-brand);
	text-decoration: none;
	border-bottom: 1px solid color-mix(in srgb, var(--c-brand) 35%, transparent);
	padding-bottom: 1px;
}
.post-single__hublink a:hover { border-bottom-color: var(--c-brand); }

/* Related posts */
.post-related {
	margin-top: 64px;
	padding-top: 48px;
	border-top: 1px solid var(--c-line);
}
.post-related h2 {
	font-size: 22px !important;
	margin: 0 0 24px !important;
	letter-spacing: -0.01em;
}

/* ---------- Block "Tìm hiểu thêm" (link nội bộ curated) ---------- */
.m2w-related {
	margin-top: 56px;
	padding: 28px 32px;
	border: 1px solid var(--c-line);
	border-radius: 14px;
	background: linear-gradient(180deg, #fff, #fcf8f3);
}
.m2w-related h2 {
	font-size: 20px !important;
	margin: 0 0 18px !important;
	letter-spacing: -0.01em;
}
.m2w-related ul {
	list-style: none;
	margin: 0;
	padding: 0;
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 10px 32px;
}
.m2w-related li {
	margin: 0;
	padding-left: 20px;
	position: relative;
}
.m2w-related li::before {
	content: "\2192";
	position: absolute;
	left: 0;
	color: var(--c-accent);
	font-weight: 700;
}
.m2w-related a { font-weight: 600; }
@media (max-width: 640px) {
	.m2w-related { padding: 22px 20px; }
	.m2w-related ul { grid-template-columns: 1fr; }
}

/* ---------- Content tables (cost breakdowns, comparison) ---------- */
.wp-block-table {
	margin: 24px 0;
	overflow-x: auto;
}
.wp-block-table table {
	width: 100%;
	border-collapse: collapse;
	font-size: 14px;
	background: #fff;
	border: 1px solid var(--c-line);
	border-radius: 6px;
	overflow: hidden;
}
.wp-block-table thead th {
	background: var(--c-dark);
	color: #fff;
	padding: 12px 14px;
	text-align: left;
	font-weight: 600;
	font-size: 12.5px;
	letter-spacing: 0.04em;
	text-transform: uppercase;
}
.wp-block-table td {
	padding: 10px 14px;
	border-top: 1px solid var(--c-line);
	vertical-align: top;
}
.wp-block-table tbody tr:nth-child(even) td {
	background: color-mix(in oklab, var(--c-bg), white 50%);
}
.wp-block-table tr.total td {
	background: color-mix(in oklab, var(--c-accent), white 88%) !important;
	color: var(--c-ink);
	font-size: 15px;
	border-top: 2px solid var(--c-accent);
}
.wp-block-table tr.total td strong { color: var(--c-accent); }

/* Callout boxes */
.callout {
	background: color-mix(in oklab, var(--c-accent), white 92%);
	border-left: 4px solid var(--c-accent);
	padding: 16px 20px;
	margin: 24px 0;
	border-radius: 0 6px 6px 0;
}
.callout p { margin: 0 0 8px; }
.callout ul { margin: 8px 0 0; padding-left: 20px; }
.callout li { margin: 4px 0; }
.callout--info { background: #f0f9ff; border-left-color: #0284c7; }

/* Source attribution note */
.source-note {
	font-size: 13px;
	color: var(--c-muted);
	margin-top: 32px;
	padding-top: 16px;
	border-top: 1px solid var(--c-line);
}

@media (max-width: 720px) {
	.wp-block-table table { font-size: 13px; }
	.wp-block-table thead th,
	.wp-block-table td { padding: 8px 10px; }
}

/* ---------- About page (Về My Second World) ---------- */
.about-page { max-width: 880px; margin: 0 auto; }
.about-page .lead {
	font-size: clamp(17px, 1.4vw, 20px);
	line-height: 1.65;
	color: var(--c-ink);
	font-weight: 500;
	margin: 0 0 32px;
}
.about-page h2 {
	font-size: clamp(26px, 2.6vw, 36px);
	letter-spacing: -0.02em;
	margin: 56px 0 20px;
	padding-top: 24px;
	border-top: 1px solid var(--c-line);
}
.about-page > h2:first-of-type { margin-top: 48px; }
.about-page h3 {
	font-size: 20px;
	letter-spacing: -0.01em;
	margin: 24px 0 12px;
}
.about-page p { line-height: 1.75; margin: 0 0 16px; }
.about-page a { color: var(--c-accent); text-decoration: underline; text-underline-offset: 3px; }
.about-page a:hover { color: var(--c-dark); }

/* Image placeholder slot — premium dashed slot with gradient bg */
.m2w-img-slot {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 10px;
	margin: 32px 0;
	padding: 32px 24px;
	background: linear-gradient(135deg, color-mix(in oklab, var(--c-accent), #fff 90%) 0%, color-mix(in oklab, var(--c-bg), #fff 35%) 100%);
	border: 1px solid var(--c-line);
	border-radius: 16px;
	aspect-ratio: 16 / 9;
	text-align: center;
	transition: border-color .3s ease, transform .3s ease;
	position: relative;
	overflow: hidden;
}
.m2w-img-slot::before {
	content: "";
	position: absolute;
	top: 50%; left: 50%;
	transform: translate(-50%, -50%);
	width: 90px; height: 90px;
	background: radial-gradient(circle, color-mix(in oklab, var(--c-accent), transparent 80%) 0%, transparent 70%);
	border-radius: 50%;
	pointer-events: none;
}
.m2w-img-slot:hover {
	border-color: var(--c-accent);
	transform: translateY(-2px);
}
.m2w-img-slot--hero { aspect-ratio: 16 / 9; margin: 16px 0 36px; }
.m2w-img-slot--portrait {
	aspect-ratio: 4 / 5;
	margin: 0;
	padding: 16px;
}
.m2w-img-slot__icon { font-size: 36px; opacity: .8; position: relative; z-index: 1; filter: grayscale(20%); }
.m2w-img-slot__label {
	font-family: var(--font-mono);
	font-size: 13.5px;
	color: var(--c-ink);
	font-weight: 600;
	position: relative; z-index: 1;
}
.m2w-img-slot__dim {
	font-family: var(--font-mono);
	font-size: 11.5px;
	color: var(--c-muted);
	letter-spacing: 0.04em;
	text-transform: uppercase;
	position: relative; z-index: 1;
	padding: 4px 10px;
	background: rgba(255,255,255,.7);
	border-radius: 4px;
	border: 1px solid var(--c-line);
}
.m2w-img-slot--portrait .m2w-img-slot__icon { font-size: 24px; }
.m2w-img-slot--portrait .m2w-img-slot__label { font-size: 12px; }
/* Public: ẩn HẲN slot ảnh chưa gán (khung gradient rỗng trông dở dang/"rác").
   Admin đang đăng nhập vẫn thấy đầy đủ để biết chỗ cần gán ảnh thật.
   Khi đã gán ảnh thật (<img> thay slot) thì không còn .m2w-img-slot nên ảnh vẫn hiện bình thường. */
body:not(.logged-in) .m2w-img-slot { display: none; }
.m2w-img-slot--portrait .m2w-img-slot__dim { font-size: 10.5px; }

/* Market grid (4 quốc gia: Mỹ, Canada, Đức, Úc) */
.market-grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 24px;
	margin: 24px 0 16px;
}
.market-card {
	padding: 28px;
	background: var(--c-surface);
	border: 1px solid var(--c-line);
	border-radius: var(--radius);
	position: relative;
}
.market-card__flag { font-size: 28px; line-height: 1; margin-bottom: 14px; }
.market-card h3 {
	font-size: 19px;
	margin: 0 0 12px;
}
.market-card p { font-size: 15px; line-height: 1.7; margin: 0 0 12px; }
.market-card p:last-child { margin-bottom: 0; }
@media (max-width: 720px) {
	.market-grid { grid-template-columns: 1fr; gap: 16px; }
}

/* Team cards — 2-col grid */
.team-grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 28px;
	margin: 28px 0 16px;
}
.team-card {
	display: flex;
	flex-direction: column;
	gap: 16px;
	padding: 24px;
	background: var(--c-surface);
	border: 1px solid var(--c-line);
	border-radius: var(--radius-lg);
}
.team-card .m2w-img-slot--portrait { width: 100%; max-width: 280px; margin: 0 auto; }
/* Header đội ngũ: avatar monogram + tên + vai trò (chưa có ảnh thật, dùng chữ cái thay chân dung). */
.team-card__head {
	display: flex;
	align-items: center;
	gap: 16px;
	padding-bottom: 16px;
	border-bottom: 1px solid var(--c-line);
}
.team-card__avatar {
	flex: 0 0 auto;
	width: 56px;
	height: 56px;
	border-radius: 50%;
	display: grid;
	place-items: center;
	font-family: var(--font-serif);
	font-weight: 700;
	font-size: 24px;
	color: #fff;
	background: linear-gradient(135deg, var(--c-accent) 0%, color-mix(in oklab, var(--c-accent), var(--c-dark) 55%) 100%);
	box-shadow: 0 4px 12px color-mix(in oklab, var(--c-accent), transparent 70%);
	user-select: none;
}
.team-card__id { min-width: 0; }
.team-card__id h3 { font-size: 19px; margin: 0; letter-spacing: -0.01em; }
.team-card__id .team-card__role { margin: 4px 0 0 !important; }
.team-card__body h3 { font-size: 20px; margin: 0; }
.team-card__role {
	font-family: var(--font-mono);
	font-size: 12.5px;
	color: var(--c-accent);
	text-transform: uppercase;
	letter-spacing: 0.06em;
	margin: 6px 0 16px !important;
}
.team-card__body p { font-size: 14.5px; line-height: 1.7; margin: 0 0 12px; }
.team-card__body p:last-child { margin-bottom: 0; }
@media (max-width: 720px) {
	.team-grid { grid-template-columns: 1fr; gap: 20px; }
	.team-card { padding: 20px; }
}

/* Values grid — 4 numbered cards */
.values-grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 20px;
	margin: 24px 0 16px;
}
.value-card {
	padding: 24px 24px 24px 70px;
	background: var(--c-surface);
	border: 1px solid var(--c-line);
	border-radius: var(--radius);
	position: relative;
}
.value-card__num {
	position: absolute;
	top: 24px; left: 24px;
	font-family: var(--font-serif);
	font-style: italic;
	font-weight: 600;
	font-size: 32px;
	line-height: 1;
	color: var(--c-accent);
}
.value-card h3 { font-size: 17px; margin: 0 0 8px; letter-spacing: -0.005em; }
.value-card p { font-size: 14.5px; line-height: 1.65; margin: 0; }
@media (max-width: 720px) {
	.values-grid { grid-template-columns: 1fr; }
}

/* Commitment list */
.commitments {
	list-style: none;
	padding: 0;
	margin: 16px 0 24px;
}
.commitments li {
	padding: 12px 0 12px 32px;
	border-bottom: 1px solid var(--c-line);
	position: relative;
	font-size: 15.5px;
	line-height: 1.6;
}
.commitments li::before {
	content: "✗";
	position: absolute;
	left: 0; top: 12px;
	color: var(--c-accent);
	font-weight: 700;
	font-size: 18px;
}
.commitments li:last-child { border-bottom: 0; }

/* About CTA block */
.about-cta {
	margin: 56px 0 32px;
	padding: 40px;
	background: linear-gradient(135deg, var(--c-dark) 0%, color-mix(in oklab, var(--c-dark), var(--c-accent) 18%) 100%);
	color: #fff;
	border-radius: var(--radius-lg);
}
.about-cta h2 {
	color: #fff;
	border-top: 0;
	padding-top: 0;
	margin-top: 0;
}
.about-cta p { color: rgba(255,255,255,.88); }
.about-cta ul { list-style: none; padding: 0; margin: 16px 0 24px; }
.about-cta ul li {
	padding: 8px 0 8px 28px;
	position: relative;
	color: rgba(255,255,255,.92);
	line-height: 1.65;
}
.about-cta ul li::before {
	content: "→";
	position: absolute;
	left: 0;
	color: var(--c-accent);
	font-weight: 700;
}
.about-cta__tagline {
	font-family: var(--font-serif);
	font-size: 19px;
	font-style: italic;
	color: #fff !important;
	margin-top: 24px !important;
}
.about-cta__actions {
	display: flex;
	gap: 12px;
	flex-wrap: wrap;
	margin-top: 28px !important;
}
.about-cta__actions .btn-ghost {
	color: #fff;
	border-color: rgba(255,255,255,.4);
}
.about-cta__actions .btn-ghost:hover {
	border-color: #fff;
	background: rgba(255,255,255,.1);
}
@media (max-width: 720px) {
	.about-cta { padding: 28px 20px; }
}

/* ============================================================
 * Article page sections — premium visual upgrade v2
 * (M2W brand accent)
 * ============================================================ */
.article-page {
	max-width: 1180px;
	margin: 0 auto;
	padding: 0 4px;
}
.article-page > section { margin-bottom: clamp(48px, 5vw, 72px); }
.article-page > section:last-child { margin-bottom: 0; }

/* =========================================================
   Animation system — scroll-reveal presets (tinh tế, vanilla, không lib).
   Caller chỉ cần 1 attribute, mọi logic "khi nào hiện" nằm ở main.js:
     • Element:   class="reveal"  (mặc định = fade-up)
                  data-anim="fade | fade-up | fade-down | fade-left | fade-right | zoom | blur"
                  data-anim-delay="<ms>"   (trễ thủ công 1 element — đặt --anim-delay)
     • Container: data-stagger | data-stagger="<ms>"  (con .reveal/[data-anim] hiện lần lượt)
     • Bất kỳ:    data-parallax="<0..1>"   (dịch nhẹ theo scroll; KHÔNG dùng chung element reveal)
   GATE: chỉ ẩn-để-animate khi <html class="m2w-anim"> (main.js bật sớm ở wp_head). JS tắt/lỗi
   → không có class → nội dung hiện thẳng, không kẹt ẩn (define error out of existence).
   ========================================================= */
.m2w-anim .reveal,
.m2w-anim [data-anim] {
	opacity: 0;
	transition: opacity var(--m2w-dur) var(--m2w-ease), transform var(--m2w-dur) var(--m2w-ease), filter var(--m2w-dur) var(--m2w-ease);
	transition-delay: var(--anim-delay, 0ms);
	will-change: opacity, transform;
}
/* Trạng thái ẩn ban đầu theo từng preset (.reveal = fade-up). Preset lạ → degrade thành fade thuần. */
.m2w-anim .reveal,
.m2w-anim [data-anim="fade-up"]    { transform: translateY(22px); }
.m2w-anim [data-anim="fade-down"]  { transform: translateY(-22px); }
.m2w-anim [data-anim="fade-left"]  { transform: translateX(26px); }  /* trôi vào từ phải */
.m2w-anim [data-anim="fade-right"] { transform: translateX(-26px); }
.m2w-anim [data-anim="zoom"]       { transform: scale(.96); }
.m2w-anim [data-anim="blur"]       { filter: blur(8px); }
.m2w-anim [data-anim="fade"]       { transform: none; }
/* Hiện — reset chung cho mọi preset (kể cả lạ): về vị trí thật, rõ nét. */
.m2w-anim .reveal.is-in,
.m2w-anim [data-anim].is-in { opacity: 1; transform: none; filter: none; }

/* Parallax — main.js set --parallax-y theo scroll. Element riêng (ảnh/khối nền), không reveal. */
.m2w-anim [data-parallax] { transform: translate3d(0, var(--parallax-y, 0px), 0); will-change: transform; }

/* Stagger lưới (art-cards-3, art-timeline…) giờ do main.js xử lý qua [data-stagger] —
   gán --anim-delay tăng dần. Khối nth-child thủ công cũ đã gỡ (04/06), không còn Repetition. */

@media (prefers-reduced-motion: reduce) {
	.m2w-anim .reveal,
	.m2w-anim [data-anim] { opacity: 1; transform: none; filter: none; transition: none; }
	.m2w-anim [data-parallax] { transform: none; }
}

/* Hero section — premium with offset shadow + decorative blobs */
.art-hero {
	display: grid;
	grid-template-columns: 1.15fr 1fr;
	gap: clamp(32px, 5vw, 72px);
	align-items: center;
	padding: clamp(32px, 4vw, 56px) 0 clamp(24px, 3vw, 48px);
	position: relative;
}
.art-hero::before {
	content: "";
	position: absolute;
	top: -20px; left: -40px;
	width: 220px; height: 220px;
	background: radial-gradient(circle, color-mix(in oklab, var(--c-accent), transparent 88%) 0%, transparent 70%);
	border-radius: 50%;
	z-index: -1;
	filter: blur(2px);
	pointer-events: none;
}
/* Hero không ảnh → intro canh giữa, sang trọng, có accent bar (lấp khoảng trống phải) */
.art-hero--solo { grid-template-columns: 1fr; text-align: center; padding-top: clamp(40px, 4vw, 64px); }
.art-hero--solo::before { display: none; }
.art-hero--solo .art-hero__text { max-width: 880px; margin: 0 auto; }
.art-hero--solo .art-hero__text::before {
	content: "";
	display: block;
	width: 56px; height: 4px;
	margin: 0 auto clamp(22px, 2.4vw, 30px);
	border-radius: 2px;
	background: linear-gradient(90deg, var(--c-accent) 0%, var(--c-accent-2) 100%);
}
.art-hero--solo .art-hero__text .lead {
	font-size: clamp(21px, 2vw, 29px);
	line-height: 1.42;
	letter-spacing: -0.015em;
	font-weight: 600;
	color: var(--c-ink);
}
.art-hero--solo .art-hero__text p {
	font-size: clamp(15.5px, 1.2vw, 17px);
	line-height: 1.72;
	color: var(--c-ink-soft);
	max-width: 720px;
	margin-left: auto; margin-right: auto;
}
.art-hero__text .lead {
	font-size: clamp(18px, 1.5vw, 22px);
	line-height: 1.55;
	color: var(--c-ink);
	font-weight: 500;
	margin: 0 0 18px;
	letter-spacing: -0.005em;
}
.art-hero__text p { line-height: 1.75; margin: 0 0 14px; color: var(--c-ink-soft); }
.art-hero__visual {
	aspect-ratio: 14/9;
	position: relative;
	border-radius: 18px;
	overflow: hidden;
	box-shadow: 0 30px 60px rgba(0, 0, 0, .12), 0 8px 24px rgba(0, 0, 0, .06);
}
.art-hero__visual::after {
	content: "";
	position: absolute;
	inset: -1px;
	border-radius: 18px;
	border: 1px solid rgba(255, 255, 255, .6);
	pointer-events: none;
}
.art-hero__visual img {
	width: 100%; height: 100%;
	object-fit: cover;
	display: block;
	transition: transform .6s cubic-bezier(.22,.61,.36,1);
}
.art-hero__visual:hover img { transform: scale(1.04); }
@media (max-width: 900px) {
	.art-hero { grid-template-columns: 1fr; padding: 24px 0; }
	.art-hero::before { display: none; }
}

/* Section heading — eyebrow tag + numbered title with accent line */
.art-section { position: relative; }
.art-section__head {
	display: flex;
	align-items: center;
	gap: 16px;
	margin-bottom: 26px;
	position: relative;
}
/* Số mục = "chip" bo góc: nền cam nhạt, viền mảnh, số đậm tông accent. Gọn, corporate, cân
   theo chiều dọc với tiêu đề (thay số mảnh-xám + gạch cụt cũ). Dùng chung mọi section đánh số. */
.art-section__num {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
	min-width: 2.5em;
	height: 2.5em;
	padding: 0 0.5em;
	font-family: var(--font-sans);
	font-style: normal;
	font-weight: 800;
	font-size: clamp(17px, 1.5vw, 21px);
	line-height: 1;
	letter-spacing: 0;
	color: var(--c-accent);
	background: color-mix(in oklab, var(--c-accent), #fff 88%);
	border: 1px solid color-mix(in oklab, var(--c-accent), #fff 68%);
	border-radius: 13px;
	font-feature-settings: "tnum";
}
.art-section__head h2 {
	font-size: clamp(24px, 2.4vw, 32px);
	letter-spacing: -0.022em;
	margin: 0;
	border: 0;
	padding: 0;
	line-height: 1.15;
	font-weight: 700;
}
.art-section > p {
	line-height: 1.75;
	margin: 0 0 16px;
	font-size: 15.5px;
	max-width: 840px;
}

/* Section chữ (intro) → 1 cột canh thẳng: số + tiêu đề (cùng hàng) → accent bar → nội dung.
   Khổ nội dung gọn cho dễ đọc, không kéo dài hết trang. */
.art-section--text .art-section__body { max-width: 860px; }
.art-section--text .art-section__body > p {
	margin: 0 0 16px;
	line-height: 1.78;
	font-size: 16px;
	color: var(--c-ink-soft);
}
.art-section--text .art-section__body > p:first-child { margin-top: 0; }
.art-section--text .art-section__body > p:last-child { margin-bottom: 0; }

/* Biến thể "split" — bố cục editorial 2 cột: rail tiêu đề (số xếp trên H2 + accent bar) bên trái,
   nội dung bên phải khổ ~62ch (dễ đọc), đoạn đầu làm lead. Lấp khoảng trống phải của bản 1 cột.
   Opt-in qua data layout:"split" → KHÔNG ảnh hưởng intro mặc định trang khác. */
.art-section--split .art-section__head {
	flex-direction: column;
	align-items: flex-start;
	gap: 14px;
}
.art-section--split .art-section__num { font-size: clamp(18px, 1.7vw, 22px); }
.art-section--split .art-section__body > p:first-child {
	font-size: clamp(17px, 1.35vw, 19px);
	line-height: 1.7;
	color: var(--c-ink);
	font-weight: 500;
}
@media (min-width: 880px) {
	.art-section--split {
		display: grid;
		grid-template-columns: minmax(220px, 300px) minmax(0, 1fr);
		gap: clamp(40px, 6vw, 80px);
		align-items: start;
	}
	.art-section--split .art-section__head { margin-bottom: 0; padding-bottom: 20px; }
	.art-section--split .art-section__body { max-width: 62ch; }
}

/* Value cards (lưới small): số thứ tự sans mảnh, tông trầm */
.art-cards-3--small .art-card__tag {
	font-family: var(--font-sans);
	font-style: normal;
	font-weight: 300;
	font-size: 30px;
	line-height: 1;
	letter-spacing: -0.02em;
	padding: 0;
	border: 0;
	background: none;
	color: color-mix(in oklab, var(--c-muted), transparent 20%);
	margin-bottom: 8px;
}
.art-section .art-list { padding-left: 0; margin: 16px 0 20px; list-style: none; }
.art-section .art-list li {
	margin-bottom: 10px;
	line-height: 1.65;
	padding-left: 32px;
	position: relative;
}
.art-section .art-list li::before {
	content: "";
	position: absolute;
	left: 0; top: 8px;
	width: 18px; height: 8px;
	background: color-mix(in oklab, var(--c-accent), transparent 80%);
	border-left: 3px solid var(--c-accent);
	border-radius: 0 4px 4px 0;
}

/* Card grid — 3 or 4 cols */
.art-cards-3 {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 20px;
	margin: 24px 0 8px;
}
.art-cards-3--small { grid-template-columns: repeat(2, 1fr); }
@media (min-width: 900px) {
	.art-cards-3--small { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 720px) {
	.art-cards-3,
	.art-cards-3--small { grid-template-columns: 1fr; gap: 14px; }
}
/* Lưới 4 thẻ cân 2×2 — tránh cảnh lẻ 3+1 khi đúng 4 thẻ (vd "dịch vụ liên quan") */
.art-cards-3--quad { grid-template-columns: repeat(2, 1fr); }
@media (max-width: 720px) {
	.art-cards-3--quad { grid-template-columns: 1fr; }
}
.art-card {
	position: relative;
	padding: 28px 24px 24px;
	background: #fff;
	border: 1px solid var(--c-line);
	border-radius: 14px;
	display: flex;
	flex-direction: column;
	gap: 8px;
	transition: transform .35s cubic-bezier(.22,.61,.36,1), box-shadow .35s ease, border-color .35s ease;
	overflow: hidden;
	isolation: isolate;
}
.art-card::before {
	content: "";
	position: absolute;
	top: 0; left: 0; right: 0;
	height: 3px;
	background: linear-gradient(90deg, var(--c-accent) 0%, color-mix(in oklab, var(--c-accent), var(--c-dark) 30%) 100%);
	transform: scaleX(0);
	transform-origin: left;
	transition: transform .45s cubic-bezier(.22,.61,.36,1);
}
.art-card::after {
	content: "";
	position: absolute;
	bottom: -40px; right: -40px;
	width: 120px; height: 120px;
	background: radial-gradient(circle, color-mix(in oklab, var(--c-accent), transparent 92%) 0%, transparent 70%);
	border-radius: 50%;
	opacity: 0;
	transition: opacity .45s ease;
	pointer-events: none;
	z-index: -1;
}
.art-card:hover {
	transform: translateY(-6px);
	box-shadow: 0 24px 48px rgba(0,0,0,.1), 0 8px 16px rgba(0,0,0,.05);
	border-color: color-mix(in oklab, var(--c-accent), var(--c-line) 50%);
}
.art-card:hover::before { transform: scaleX(1); }
.art-card:hover::after { opacity: 1; }
.art-card__tag {
	display: inline-flex;
	width: fit-content;
	align-items: center;
	font: 700 10.5px/1 var(--font-mono);
	padding: 5px 10px;
	border-radius: 999px;
	background: color-mix(in oklab, var(--c-accent), white 90%);
	color: var(--c-accent);
	letter-spacing: 0.08em;
	margin-bottom: 8px;
	border: 1px solid color-mix(in oklab, var(--c-accent), white 75%);
}
/* So sánh 2 card: bên M2W nổi bật (highlight), bên đối chiếu trung tính (muted) */
.art-card--highlight {
	border: 1.5px solid var(--c-accent);
	background: linear-gradient(180deg, #fff, color-mix(in oklab, var(--c-accent), #fff 93%));
	box-shadow: 0 16px 40px -18px color-mix(in oklab, var(--c-accent), transparent 55%);
}
.art-card--highlight::before { transform: scaleX(1); }
.art-card--highlight .art-card__tag { background: var(--c-accent); color: #fff; border-color: var(--c-accent); }
.art-card--muted .art-card__tag {
	background: color-mix(in oklab, var(--c-ink), #fff 88%);
	color: var(--c-ink-soft, #3C4654);
	border-color: var(--c-line);
}
.art-card h3 {
	margin: 0;
	font-size: 19px;
	letter-spacing: -0.01em;
}
/* Viên icon đầu card (tùy chọn, set qua data 'icon'). Kế thừa --c-accent qua currentColor. */
.art-card__icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 48px; height: 48px;
	border-radius: 14px;
	margin-bottom: 14px;
	color: var(--c-accent);
	background: color-mix(in oklab, var(--c-accent), white 88%);
	border: 1px solid color-mix(in oklab, var(--c-accent), white 78%);
}
.art-card__icon svg { width: 24px; height: 24px; display: block; }
/* Có viên icon thì số La Mã (tag) lùi về chỉ mục phụ — không tranh tiêu điểm với icon. */
.art-cards-3--small .art-card--icon .art-card__tag {
	font-size: 12px;
	font-weight: 700;
	color: var(--c-muted);
}
/* Ảnh thật trên đầu card (full-bleed) + badge nổi — bớt hàn lâm, thêm hình ảnh. */
.art-card--media { padding-top: 0; }
.art-card__media {
	position: relative;
	margin: 0 -24px 18px;
	aspect-ratio: 16 / 10;
	overflow: hidden;
	background: var(--c-bg-deep);
}
.art-card__media img {
	width: 100%; height: 100%;
	object-fit: cover;
	transition: transform .6s cubic-bezier(.22,.61,.36,1);
}
.art-card:hover .art-card__media img { transform: scale(1.05); }
.art-card__badge {
	position: absolute;
	top: 12px; left: 12px;
	display: inline-flex;
	align-items: center;
	gap: 5px;
	font: 600 12px/1 var(--font-sans);
	color: #fff;
	background: rgba(15, 27, 45, .62);
	padding: 7px 12px;
	border-radius: 999px;
	letter-spacing: .01em;
	backdrop-filter: blur(8px);
	-webkit-backdrop-filter: blur(8px);
	box-shadow: 0 2px 10px rgba(0,0,0,.18);
}
.art-card__sub {
	font-family: var(--font-serif);
	font-style: italic;
	color: var(--c-muted);
	font-size: 14px;
	margin: 0 0 4px !important;
}
.art-card p { font-size: 14.5px; line-height: 1.65; margin: 0 0 6px; color: var(--c-ink-soft); }
.art-card__stat {
	margin-top: auto;
	padding-top: 12px;
	border-top: 1px dashed var(--c-line);
}
.art-card__stat b {
	display: block;
	font-size: 22px;
	font-weight: 700;
	color: var(--c-ink);
	letter-spacing: -0.02em;
	font-feature-settings: "tnum";
}
.art-card__stat small { font-size: 12px; color: var(--c-muted); }

/* Clickable card variant — toàn card là link, dòng "label →" ở chân */
.art-card--link { text-decoration: none; color: inherit; cursor: pointer; }
.art-card--link:hover { color: inherit; }
.art-card__link {
	margin-top: auto;
	padding-top: 14px;
	display: inline-flex;
	align-items: center;
	gap: 6px;
	font: 600 13.5px/1 var(--font-sans);
	color: var(--c-accent);
	letter-spacing: -0.005em;
}
.art-card__stat + .art-card__link { margin-top: 12px; padding-top: 12px; }
.art-card__link .arr {
	transition: transform .3s cubic-bezier(.22,.61,.36,1);
	font-weight: 700;
}
.art-card--link:hover .art-card__link .arr { transform: translateX(4px); }
.art-card--link:focus-visible {
	outline: 2px solid var(--c-accent);
	outline-offset: 3px;
	border-radius: 14px;
}
/* Card-link nằm trong .entry-content (sections render qua the_content) nên dính bẫy
   `.entry-content a:not(.btn)` (0,2,1) = tô cam + gạch chân cả thẻ. Ép về màu chữ thường,
   bỏ gạch — chỉ dòng "label →" giữ accent. Selector (0,3,2) thắng chắc, component-level
   (không khoá theo page-id) để mọi trang dùng card-link đều an toàn. */
.entry-content .article-page a.art-card--link,
.entry-content .article-page a.art-card--link:hover,
.page-content .article-page a.art-card--link { color: var(--c-ink); text-decoration: none; }
.entry-content .article-page a.art-card--link .art-card__link { color: var(--c-accent); }

/* ====== Cards variant "feature" — lưới nhóm nổi bật (icon/ảnh + link), cho section tổng quan
   kiểu "4 nhóm chi phí". Bật qua data 'feature'=>true của section cards. Nền gradient nhẹ,
   hover nhấc cao hơn, viên icon gradient; 4 thẻ xếp 1 hàng trên desktop (khỏi mồ côi). ====== */
.art-cards-3--feature { gap: 18px; }
@media (min-width: 900px) {
	.art-cards-3.art-cards-3--feature { grid-template-columns: repeat(4, 1fr); }
}
.art-cards-3--feature .art-card {
	border-radius: 18px;
	background: linear-gradient(180deg, #fff, color-mix(in oklab, var(--c-bg), #fff 55%));
}
.art-cards-3--feature .art-card:hover {
	transform: translateY(-5px);
	box-shadow: 0 22px 46px -20px rgba(15,27,45,.22);
}
.art-cards-3--feature .art-card--icon .art-card__icon {
	width: 52px; height: 52px; border-radius: 15px; margin-bottom: 16px; border: 0;
	background: linear-gradient(135deg, color-mix(in oklab, var(--c-accent), #fff 80%), color-mix(in oklab, var(--c-accent-2), #fff 78%));
	box-shadow: inset 0 0 0 1px color-mix(in oklab, var(--c-accent), transparent 78%);
}
.art-cards-3--feature .art-card--icon .art-card__icon svg { width: 26px; height: 26px; }
/* Số La Mã / nhãn nhóm → chỉ mục mảnh trên tiêu đề (vd "NHÓM I") */
.art-cards-3--feature .art-card--icon .art-card__tag {
	font: 700 11px/1 var(--font-mono); letter-spacing: .14em; text-transform: uppercase;
	color: color-mix(in oklab, var(--c-accent), var(--c-muted) 35%); margin-bottom: 6px;
}
.art-cards-3--feature .art-card--icon h3 { font-size: 18px; line-height: 1.25; }

/* Timeline steps — icon circle + dashed connector + accent title */
.art-timeline {
	list-style: none;
	padding: 0;
	margin: 28px 0 8px;
	position: relative;
}
.art-tl-step {
	display: flex;
	gap: 22px;
	align-items: flex-start;
	padding-bottom: 28px;
	position: relative;
}
.art-tl-step:last-child { padding-bottom: 0; }
.art-tl-step::before {
	content: "";
	position: absolute;
	left: 23px;
	top: 52px;
	bottom: 4px;
	width: 0;
	border-left: 2px dashed color-mix(in oklab, var(--c-accent), white 55%);
	z-index: 0;
}
.art-tl-step:last-child::before { display: none; }
.art-tl-step__marker {
	flex-shrink: 0;
	width: 52px;
	height: 52px;
	border-radius: 50%;
	background: #fff;
	border: 2px solid color-mix(in oklab, var(--c-accent), white 50%);
	display: grid;
	place-items: center;
	color: var(--c-accent);
	position: relative;
	z-index: 1;
	transition: background .3s ease, border-color .3s ease, transform .3s ease, box-shadow .3s ease;
}
.art-tl-step__marker::after {
	content: "";
	position: absolute;
	inset: -6px;
	border-radius: 50%;
	border: 1px dashed color-mix(in oklab, var(--c-accent), transparent 70%);
	opacity: 0;
	transition: opacity .3s ease;
}
.art-tl-step__marker svg { width: 22px; height: 22px; display: block; }
.art-tl-step:hover .art-tl-step__marker {
	background: var(--c-accent);
	border-color: var(--c-accent);
	color: #fff;
	transform: scale(1.08);
	box-shadow: 0 8px 24px color-mix(in oklab, var(--c-accent), transparent 60%);
}
.art-tl-step:hover .art-tl-step__marker::after { opacity: 1; }
/* Marker RỖNG (timeline trong content, không icon) → điền SỐ BƯỚC cho hoàn chỉnh.
   Marker CÓ icon (section timeline) không bị đụng nhờ :not(:has(svg)). */
.art-timeline { counter-reset: m2w-tl; }
.art-tl-step__marker:not(:has(svg)) { counter-increment: m2w-tl; }
.art-tl-step__marker:not(:has(svg))::before {
	content: counter(m2w-tl);
	font: 800 19px/1 var(--font-sans, system-ui, sans-serif);
	color: var(--c-accent);
}
.art-tl-step:hover .art-tl-step__marker:not(:has(svg))::before { color: #fff; }
.art-tl-step__body {
	flex: 1;
	min-width: 0;
	padding-top: 4px;
}
.art-tl-step__title {
	color: var(--c-accent);
	font-size: 17px;
	font-weight: 700;
	margin: 0 0 6px;
	letter-spacing: -0.005em;
	line-height: 1.35;
}
.art-tl-step__desc {
	color: var(--c-ink-soft);
	margin: 0;
	font-size: 14.5px;
	line-height: 1.7;
}

/* Timeline stagger giờ qua [data-stagger] trên <ol class="art-timeline"> (main.js). */

@media (max-width: 560px) {
	.art-tl-step { gap: 14px; }
	.art-tl-step__marker { width: 40px; height: 40px; }
	.art-tl-step__marker svg { width: 18px; height: 18px; }
	.art-tl-step::before { left: 19px; top: 44px; }
	.art-tl-step__title { font-size: 15.5px; }
	.art-tl-step__desc { font-size: 13.5px; }
}

/* Journey — sơ đồ mốc thời gian hành trình hồ sơ (vertical milestone timeline) */
.m2w-journey { list-style: none; margin: 30px 0 8px; padding: 0; }
.m2w-journey__step { position: relative; padding: 0 0 26px 70px; }
.m2w-journey__step::before {
	content: ""; position: absolute; left: 24px; top: 50px; bottom: -2px;
	width: 2px; background: var(--c-line);
}
.m2w-journey__step:last-child::before { display: none; }
.m2w-journey__marker {
	position: absolute; left: 0; top: 0; width: 50px; height: 50px;
	border-radius: 50%; display: grid; place-items: center;
	font: 700 18px/1 var(--font-mono);
	background: var(--c-surface); border: 2px solid var(--c-accent); color: var(--c-accent);
	z-index: 1;
}
.m2w-journey__step--success .m2w-journey__marker {
	background: var(--c-accent); color: #fff; border-color: var(--c-accent); font-size: 22px;
	box-shadow: 0 8px 22px -6px color-mix(in oklab, var(--c-accent), transparent 45%);
}
.m2w-journey__card {
	background: var(--c-surface); border: 1px solid var(--c-line); border-radius: 14px;
	padding: 18px 22px 20px; box-shadow: var(--shadow-sm);
	transition: box-shadow .3s ease, border-color .3s ease, transform .3s ease;
}
.m2w-journey__card:hover { box-shadow: var(--shadow); transform: translateY(-2px); }
.m2w-journey__step--success .m2w-journey__card {
	border-color: color-mix(in oklab, var(--c-accent), var(--c-line) 35%);
	background: linear-gradient(150deg, var(--c-accent-soft) 0%, var(--c-surface) 60%);
}
.m2w-journey__top { display: flex; align-items: center; justify-content: space-between; gap: 12px; flex-wrap: wrap; margin-bottom: 9px; }
.m2w-journey__agency {
	font: 700 10.5px/1 var(--font-mono); letter-spacing: .07em; text-transform: uppercase;
	color: var(--c-accent); background: color-mix(in oklab, var(--c-accent), #fff 88%);
	border: 1px solid color-mix(in oklab, var(--c-accent), #fff 72%);
	padding: 5px 10px; border-radius: 999px;
}
.m2w-journey__time { font: 600 13px var(--font-sans); color: var(--c-ink); white-space: nowrap; }
.m2w-journey__card h3 { font-size: 18px; line-height: 1.25; margin: 0 0 6px; letter-spacing: -0.01em; }
.m2w-journey__desc { font-size: 14.5px; line-height: 1.62; color: var(--c-ink-soft); margin: 0; }
.m2w-journey__receive, .m2w-journey__docs { font-size: 13.5px; line-height: 1.55; color: var(--c-ink); margin: 11px 0 0; }
.m2w-journey__receive {
	background: color-mix(in oklab, var(--c-accent), #fff 90%);
	border-radius: 9px; padding: 9px 13px;
}
.m2w-journey__receive span, .m2w-journey__docs span {
	display: inline-block; font: 700 10.5px/1 var(--font-mono); letter-spacing: .05em;
	text-transform: uppercase; margin-right: 9px; color: var(--c-accent); vertical-align: 1px;
}
.m2w-journey__docs span { color: var(--c-muted); }
.m2w-journey__docs { color: var(--c-ink-soft); }
@media (max-width: 560px) {
	.m2w-journey__step { padding-left: 56px; }
	.m2w-journey__marker { width: 42px; height: 42px; font-size: 16px; }
	.m2w-journey__step::before { left: 20px; top: 44px; }
}

/* Stats tile row — dark card với decorative grid pattern */
.art-stats {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 0;
	padding: 40px 32px;
	background:
		linear-gradient(135deg, var(--c-dark) 0%, color-mix(in oklab, var(--c-dark), var(--c-accent) 8%) 100%);
	border-radius: 18px;
	color: #fff;
	position: relative;
	overflow: hidden;
	box-shadow: 0 30px 60px rgba(0, 0, 0, .15);
}
/* Vầng sáng cam đặt GIỮA đỉnh, mảnh & đối xứng — không dồn vào 1 ô (giữ nền 4 ô đều) */
.art-stats::before {
	content: "";
	position: absolute;
	top: -60%; left: 50%; transform: translateX(-50%);
	width: 90%; height: 320px;
	background: radial-gradient(ellipse at center, color-mix(in oklab, var(--c-accent), transparent 86%) 0%, transparent 70%);
	pointer-events: none;
}
.art-stat-tile {
	text-align: center;
	padding: 12px 16px;
	position: relative;
	z-index: 1;
	display: flex;
	flex-direction: column;
	justify-content: center;   /* căn giữa dọc: 4 ô thẳng hàng dù 1 hay 2 dòng */
}
.art-stat-tile + .art-stat-tile {
	border-left: 1px solid rgba(255, 255, 255, .12);
}
.art-stat-tile b {
	display: block;
	/* ĐỒNG NHẤT cỡ chữ cả 4 ô (số & chữ cùng cỡ cho đều) */
	font-size: clamp(23px, 2.5vw, 31px);
	font-weight: 800;
	color: #fff;
	letter-spacing: -0.02em;
	font-feature-settings: "tnum";
	line-height: 1.12;
	text-wrap: balance;
}
.art-stat-tile b sup {
	color: var(--c-accent);
	font-size: 0.5em;
	vertical-align: super;
	margin-left: 2px;
	font-weight: 700;
}
.art-stat-tile small {
	display: block;
	margin-top: 10px;
	font-size: 12.5px;
	color: rgba(255,255,255,.7);
	letter-spacing: 0.04em;
	text-transform: uppercase;
	font-weight: 500;
}
@media (max-width: 720px) {
	.art-stats { grid-template-columns: repeat(2, 1fr); padding: 28px 16px; }
	.art-stat-tile + .art-stat-tile { border-left: 0; }
	.art-stat-tile:nth-child(odd) { border-right: 1px solid rgba(255,255,255,.12); }
	.art-stat-tile:nth-child(-n+2) { border-bottom: 1px solid rgba(255,255,255,.12); padding-bottom: 24px; }
	.art-stat-tile:nth-child(n+3) { padding-top: 24px; }
}

/* Callout boxes — premium card with icon circle */
.art-callout {
	display: grid;
	grid-template-columns: 64px 1fr;
	gap: 20px;
	padding: 24px 28px;
	margin: 36px 0;
	border-radius: 14px;
	position: relative;
	overflow: hidden;
}
.art-callout::before {
	content: "";
	position: absolute;
	top: 0; left: 0;
	width: 4px;
	height: 100%;
	border-radius: 14px 0 0 14px;
}
.art-callout__icon {
	font-size: 26px;
	line-height: 1;
	width: 52px;
	height: 52px;
	display: grid;
	place-items: center;
	border-radius: 50%;
	box-shadow: 0 4px 12px rgba(0, 0, 0, .06);
}
.art-callout h3 {
	margin: 0 0 8px;
	font-size: 17px;
	letter-spacing: -0.005em;
	font-weight: 700;
}
.art-callout p { margin: 0; font-size: 14.5px; line-height: 1.7; }
.art-callout--info {
	background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
}
.art-callout--info::before { background: #0284c7; }
.art-callout--info .art-callout__icon { background: #fff; }
.art-callout--info h3 { color: #075985; }
.art-callout--warn {
	background: linear-gradient(135deg, #fffbeb 0%, #fef3c7 100%);
}
.art-callout--warn::before { background: #f59e0b; }
.art-callout--warn .art-callout__icon { background: #fff; }
.art-callout--warn h3 { color: #92400e; }

/* FAQ accordion — native <details>, không cần JS; renderer tự kèm schema FAQPage */
.art-section--faq .art-faq__list {
	margin-top: 10px;
	border-top: 1px solid var(--c-line);
}
.art-faq__item { border-bottom: 1px solid var(--c-line); }
.art-faq__q {
	list-style: none;
	cursor: pointer;
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
	gap: 16px;
	padding: 18px 2px;
	font-weight: 600;
	font-size: 16.5px;
	line-height: 1.5;
	color: var(--c-ink);
}
.art-faq__q::-webkit-details-marker { display: none; }
.art-faq__q::after {
	content: "+";
	flex: none;
	font-weight: 400;
	font-size: 24px;
	line-height: 1.2;
	color: var(--c-accent);
}
.art-faq__item[open] .art-faq__q { color: var(--c-accent); }
.art-faq__item[open] .art-faq__q::after { content: "–"; }
.art-faq__a { padding: 0 2px 20px; max-width: 820px; }
.art-faq__a p {
	margin: 0 0 12px;
	font-size: 15.5px;
	line-height: 1.75;
	color: var(--c-muted);
}
.art-faq__a p:last-child { margin-bottom: 0; }
.art-faq__a a { color: var(--c-accent); }

/* ============================================================
 * Trang Hỏi đáp (FAQ hub) — [m2w_faq_hub]
 * Help-center 2 cột: sidebar lọc (dính) + nội dung; accordion .art-faq__*.
 * ============================================================ */
.m2w-faqhub { margin-top: 4px; }
/* [hidden] phải thắng mọi rule display của hub (UA [hidden] thua author cùng specificity). */
.m2w-faqhub [hidden] { display: none !important; }

.m2w-faqhub__lead {
	max-width: 760px;
	margin: 0 0 16px;
	font-size: 17px;
	line-height: 1.7;
	color: var(--c-ink-soft);
}
/* Dải số liệu thật (đếm từ dữ liệu) */
.m2w-faqhub__meta {
	display: flex;
	flex-wrap: wrap;
	gap: 8px 24px;
	margin: 0 0 30px;
	font-size: 14px;
	color: var(--c-muted);
}
.m2w-faqhub__meta span { display: inline-flex; align-items: center; gap: 8px; }
.m2w-faqhub__meta span::before { content: ""; width: 6px; height: 6px; border-radius: 50%; background: var(--c-accent); }
.m2w-faqhub__meta b { color: var(--c-ink); font-weight: 800; font-size: 16px; }

/* --- Bố cục 2 cột --- */
@media (min-width: 980px) {
	.m2w-faqhub__layout {
		display: grid;
		grid-template-columns: 300px minmax(0, 1fr);
		gap: 44px;
		align-items: start;
	}
}

/* --- Sidebar lọc --- */
.m2w-faqhub__rail {
	background: var(--c-surface);
	border: 1px solid var(--c-line);
	border-radius: var(--radius-lg);
	padding: 18px;
	margin-bottom: 30px;
	box-shadow: 0 1px 2px rgba(15, 27, 45, .04);
}
@media (min-width: 980px) {
	.m2w-faqhub__rail { position: sticky; top: 80px; margin-bottom: 0; }
}
.m2w-faqhub__railsec { margin-top: 18px; }
.m2w-faqhub__raillbl {
	display: block;
	margin-bottom: 9px;
	font-size: 11.5px;
	font-weight: 700;
	letter-spacing: .04em;
	text-transform: uppercase;
	color: var(--c-muted);
}
.m2w-faqhub__search {
	display: flex;
	align-items: center;
	gap: 10px;
	background: var(--c-bg);
	border: 1px solid var(--c-line);
	border-radius: var(--radius);
	padding: 0 14px;
	transition: border-color var(--m2w-dur-fast, .18s) var(--m2w-ease, ease), box-shadow var(--m2w-dur-fast, .18s) var(--m2w-ease, ease);
}
.m2w-faqhub__search:focus-within {
	border-color: var(--c-accent);
	box-shadow: 0 0 0 3px var(--c-accent-soft);
}
.m2w-faqhub__search-ico { flex: none; display: flex; color: var(--c-muted); }
.m2w-faqhub__search-ico svg { width: 19px; height: 19px; }
.m2w-faqhub__search input {
	flex: 1;
	min-width: 0;
	border: 0;
	background: transparent;
	padding: 12px 0;
	font-size: 15px;
	color: var(--c-ink);
	font-family: inherit;
}
.m2w-faqhub__search input:focus { outline: none; }
.m2w-faqhub__search input::placeholder { color: var(--c-muted); }

/* Nav chủ đề (danh sách dọc trên desktop) */
.m2w-faqhub__nav { display: flex; flex-direction: column; gap: 2px; }
.m2w-faqhub__navitem {
	display: flex;
	align-items: center;
	gap: 11px;
	width: 100%;
	padding: 10px 12px;
	border: 0;
	border-radius: var(--radius);
	background: transparent;
	color: var(--c-ink-soft);
	font-size: 14.5px;
	font-weight: 600;
	font-family: inherit;
	text-align: left;
	cursor: pointer;
	transition: background var(--m2w-dur-fast, .18s) var(--m2w-ease, ease), color var(--m2w-dur-fast, .18s) var(--m2w-ease, ease);
}
.m2w-faqhub__navico { flex: none; display: flex; color: var(--c-muted); transition: color var(--m2w-dur-fast, .18s) var(--m2w-ease, ease); }
.m2w-faqhub__navico svg { width: 18px; height: 18px; }
.m2w-faqhub__navlbl { flex: 1; min-width: 0; }
.m2w-faqhub__navitem:hover { background: var(--c-bg); color: var(--c-ink); }
.m2w-faqhub__navitem:hover .m2w-faqhub__navico { color: var(--c-accent); }
.m2w-faqhub__navitem.is-active { background: var(--c-accent-soft); color: var(--c-accent-ink); }
.m2w-faqhub__navitem.is-active .m2w-faqhub__navico { color: var(--c-accent); }
.m2w-faqhub__navitem.is-active .m2w-faqhub__chip-n { background: #fff; color: var(--c-accent-ink); }

/* Badge số đếm (giờ chỉ dùng cho nav Chủ đề — chip Quốc gia đã bỏ số) */
.m2w-faqhub__chip-n {
	flex: none;
	font-size: 12px;
	font-weight: 700;
	padding: 1px 8px;
	border-radius: 999px;
	background: var(--c-bg-deep);
	color: var(--c-muted);
}

/* Chip quốc gia (pills) — lưới 2 cột cho cân: "Tất cả nước" trải full hàng trên, 4 nước 2×2 */
.m2w-faqhub__chips { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; }
.m2w-faqhub__chip[data-faqhub-country=""] { grid-column: 1 / -1; }   /* "Tất cả nước" full hàng trên */
.m2w-faqhub__chip {
	display: flex;
	justify-content: center;   /* cờ + tên canh giữa ô (không còn số đếm) */
	align-items: center;
	gap: 7px;
	padding: 7px 12px;
	border: 1px solid var(--c-line);
	border-radius: 999px;
	background: var(--c-surface);
	color: var(--c-ink-soft);
	font-size: 13.5px;
	font-weight: 600;
	font-family: inherit;
	cursor: pointer;
	transition: background var(--m2w-dur-fast, .18s) var(--m2w-ease, ease), color var(--m2w-dur-fast, .18s) var(--m2w-ease, ease), border-color var(--m2w-dur-fast, .18s) var(--m2w-ease, ease);
}
.m2w-faqhub__chip:hover { border-color: var(--c-accent); color: var(--c-accent); }
.m2w-faqhub__chip.is-active { background: var(--c-accent); border-color: var(--c-accent); color: #fff; }
.m2w-faqhub__chip--flag .flag-chip {
	width: 19px;
	height: 14px;
	border-radius: 2px;
	object-fit: cover;
	box-shadow: 0 0 0 1px rgba(15, 27, 45, .08);
}

/* Bộ đếm kết quả — tách bằng khoảng trắng, KHÔNG dùng đường kẻ (bị dính vào pills) */
.m2w-faqhub__status {
	margin: 20px 0 0;
	font-size: 13.5px;
	color: var(--c-muted);
}
.m2w-faqhub__status b { color: var(--c-ink); font-weight: 700; }

/* Mobile: rail thành khối ngang, nav chủ đề thành pills cuộn gọn */
@media (max-width: 979px) {
	.m2w-faqhub__nav { flex-direction: row; flex-wrap: wrap; gap: 8px; }
	.m2w-faqhub__navitem {
		width: auto;
		padding: 7px 13px;
		border: 1px solid var(--c-line);
		border-radius: 999px;
		font-size: 13.5px;
	}
	.m2w-faqhub__navitem .m2w-faqhub__navlbl { flex: none; }
	.m2w-faqhub__navitem.is-active { border-color: var(--c-accent); }
}

.m2w-faqhub__empty {
	padding: 24px 2px;
	color: var(--c-muted);
	font-size: 15.5px;
}
.m2w-faqhub__empty a { color: var(--c-accent); }

/* --- Nhóm chủ đề (cột nội dung) --- */
.m2w-faqhub__cat { margin-bottom: 36px; scroll-margin-top: 96px; }
.m2w-faqhub__cat:first-child { margin-top: 0; }
.m2w-faqhub__cat-head {
	display: flex;
	align-items: center;
	gap: 12px;
	margin-bottom: 14px;
	padding-bottom: 12px;
	border-bottom: 2px solid var(--c-line);
}
.m2w-faqhub__cat-icon { flex: none; display: grid; place-items: center; width: 34px; height: 34px; border-radius: 9px; background: var(--c-accent-soft); color: var(--c-accent); }
.m2w-faqhub__cat-icon svg { width: 20px; height: 20px; }
.m2w-faqhub__cat-head h2 { margin: 0; flex: 1; font-size: 22px; }
.m2w-faqhub__cat-n {
	flex: none;
	font-size: 13px;
	font-weight: 700;
	padding: 2px 10px;
	border-radius: 999px;
	background: var(--c-accent-soft);
	color: var(--c-accent-ink);
}

.m2w-faqhub__group { margin-bottom: 24px; }
.m2w-faqhub__group-head {
	display: flex;
	align-items: baseline;
	justify-content: space-between;
	flex-wrap: wrap;
	gap: 6px 14px;
	padding-bottom: 2px;
}
.m2w-faqhub__group-head h3 {
	margin: 0;
	font-size: 16px;
	color: var(--c-ink-soft);
	display: flex;
	align-items: center;
	gap: 9px;
}
.m2w-faqhub__flag {
	flex: none;
	font-size: 11px;
	font-weight: 700;
	letter-spacing: .02em;
	text-transform: uppercase;
	padding: 2px 8px;
	border-radius: var(--radius-sm);
	background: var(--c-accent-soft);
	color: var(--c-accent-ink);
}
.m2w-faqhub__more {
	flex: none;
	font-size: 14px;
	font-weight: 600;
	color: var(--c-accent);
	white-space: nowrap;
}
.m2w-faqhub__more .arr { transition: transform var(--m2w-dur-fast, .18s) var(--m2w-ease, ease); display: inline-block; }
.m2w-faqhub__more:hover .arr { transform: translateX(3px); }

/* Accordion trong hub — hover nhẹ + mục mở có thanh nhấn trái cho cảm giác premium. */
.m2w-faqhub .art-faq__list { border-top: 1px solid var(--c-line); }
.m2w-faqhub .art-faq__item {
	border-bottom: 1px solid var(--c-line-soft);
	transition: background var(--m2w-dur-fast, .18s) var(--m2w-ease, ease), box-shadow var(--m2w-dur-fast, .18s) var(--m2w-ease, ease);
}
.m2w-faqhub .art-faq__item:hover { background: color-mix(in oklab, var(--c-bg), transparent 30%); }
.m2w-faqhub .art-faq__item[open] {
	background: var(--c-bg);
	box-shadow: inset 3px 0 0 var(--c-accent);
}
.m2w-faqhub .art-faq__q { padding: 16px 14px; }
.m2w-faqhub .art-faq__a { padding: 0 14px 18px; }

/* --- CTA cuối trang: tái dùng banner tối .art-cta của theme --- */
.m2w-faqhub > .art-cta { margin-top: 46px; }
/* Dòng internal-link trên nền tối (đè .art-cta p). */
.art-cta .art-cta__links {
	margin: 4px 0 0;
	max-width: none;
	font-size: 14px;
	color: rgba(255, 255, 255, .72);
}
.art-cta__links a {
	color: #fff;
	font-weight: 600;
	text-decoration: underline;
	text-decoration-color: rgba(255, 255, 255, .35);
	text-underline-offset: 3px;
	transition: color var(--m2w-dur-fast, .18s) var(--m2w-ease, ease), text-decoration-color var(--m2w-dur-fast, .18s) var(--m2w-ease, ease);
}
.art-cta__links a:hover { color: var(--c-accent-2); text-decoration-color: var(--c-accent-2); }

@media (max-width: 600px) {
	.m2w-faqhub__lead { font-size: 16px; }
	.m2w-faqhub__cat-head h2 { font-size: 20px; }
}

/* CTA block — dramatic gradient + decorative shapes */
.art-cta {
	padding: clamp(36px, 5vw, 56px) clamp(28px, 4vw, 56px);
	background:
		radial-gradient(circle at 100% 0%, color-mix(in oklab, var(--c-accent), transparent 75%) 0%, transparent 50%),
		radial-gradient(circle at 0% 100%, color-mix(in oklab, var(--c-accent), transparent 85%) 0%, transparent 45%),
		linear-gradient(135deg, var(--c-dark) 0%, color-mix(in oklab, var(--c-dark), var(--c-accent) 25%) 100%);
	color: #fff;
	border-radius: 18px;
	position: relative;
	overflow: hidden;
	box-shadow: 0 30px 60px rgba(0, 0, 0, .15);
}
.art-cta::before {
	content: "";
	position: absolute;
	top: 0; left: 0;
	width: 100%; height: 4px;
	background: linear-gradient(90deg, var(--c-accent) 0%, transparent 60%);
}
.art-cta::after {
	content: "→";
	position: absolute;
	top: 50%; right: -20px;
	transform: translateY(-50%);
	font-size: 280px;
	font-family: var(--font-serif);
	font-weight: 300;
	color: rgba(255, 255, 255, .03);
	line-height: 1;
	pointer-events: none;
	z-index: 0;
}
.art-cta > * { position: relative; z-index: 1; }
.art-cta h2 {
	color: #fff;
	border: 0 !important;
	padding: 0 !important;
	margin: 0 0 18px !important;
	font-size: clamp(24px, 2.6vw, 34px);
	letter-spacing: -0.02em;
	font-weight: 700;
}
.art-cta p {
	color: rgba(255,255,255,.88);
	line-height: 1.7;
	margin: 0 0 14px;
	font-size: 15.5px;
	max-width: 680px;
}
.art-cta__actions {
	display: flex;
	gap: 12px;
	flex-wrap: wrap;
	margin-top: 28px;
}
.art-cta__actions .btn-primary {
	box-shadow: 0 12px 28px color-mix(in oklab, var(--c-accent), transparent 60%);
}
.art-cta__actions .btn-primary:hover {
	transform: translateY(-2px);
	box-shadow: 0 16px 36px color-mix(in oklab, var(--c-accent), transparent 50%);
}
.art-cta__actions .btn-ghost {
	color: #fff;
	border-color: rgba(255,255,255,.4);
	background: rgba(255,255,255,.06);
	backdrop-filter: blur(6px);
}
.art-cta__actions .btn-ghost:hover {
	border-color: #fff;
	background: rgba(255,255,255,.15);
	color: #fff;
}
.art-cta .arr { display: inline-block; transition: transform .25s ease; }
.art-cta__actions .btn:hover .arr { transform: translateX(4px); }
@media (max-width: 720px) {
	.art-cta::after { font-size: 180px; right: -30px; }
}

/* ---------- Generic lead paragraph (used in article pages) ---------- */
.entry-content > .lead,
.page-content > .lead {
	font-size: clamp(17px, 1.4vw, 20px);
	line-height: 1.65;
	color: var(--c-ink);
	font-weight: 500;
	margin: 0 0 28px;
}
.entry-content h2,
.page-content h2 {
	font-size: clamp(24px, 2.4vw, 32px);
	letter-spacing: -0.02em;
	margin: 48px 0 16px;
	padding-top: 16px;
	border-top: 1px solid var(--c-line);
}
.entry-content h3,
.page-content h3 {
	font-size: 19px;
	margin: 28px 0 12px;
}
.entry-content p,
.page-content p {
	line-height: 1.75;
	margin: 0 0 14px;
}
.entry-content ul,
.entry-content ol,
.page-content ul,
.page-content ol {
	margin: 12px 0 18px;
	padding-left: 24px;
}
.entry-content li,
.page-content li {
	margin-bottom: 6px;
	line-height: 1.65;
}
:where(.entry-content, .page-content) a:where(:not(.btn)) {
	color: var(--c-accent);
	text-decoration: underline;
	text-underline-offset: 3px;
}
:where(.entry-content, .page-content) a:where(:not(.btn)):hover { color: var(--c-dark); }

/* ---------- Contact page (/lien-he/) ---------- */
/* Header dạng hero — căn giữa, có eyebrow */
.page-id-47 .entry-header {
	text-align: center;
	max-width: 760px;
	margin: 0 auto;
}
.page-id-47 .entry-title { font-size: clamp(32px, 4.2vw, 54px); }

/* Liên hệ — căn giữa H1 hero cho khớp với lead + badges bên dưới, siết khoảng
   trống top vì không còn dòng eyebrow. Scope theo body class để các trang khác giữ nguyên. */
.page-template-contact .hero--inner { padding-top: clamp(28px, 3vw, 44px); padding-bottom: 0; }
.page-template-contact .hero--inner .container { text-align: center; }
.page-template-contact .hero--inner h1 { margin-top: 0; }

.contact-page { max-width: 1120px; margin: 0 auto; }
.contact-page .lead {
	font-size: clamp(16px, 1.2vw, 18px);
	line-height: 1.65;
	color: var(--c-ink-soft);
	margin: 18px auto 22px;
	max-width: 720px;
	text-align: center;
}
.contact-badges {
	list-style: none;
	margin: 0 auto 46px;
	padding: 0;
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	justify-content: center;
}
.contact-badges li {
	display: inline-flex;
	align-items: center;
	gap: 7px;
	background: var(--c-accent-soft);
	color: var(--c-accent-ink);
	font-size: 13px;
	font-weight: 600;
	padding: 7px 15px;
	border-radius: 999px;
}
.contact-badges li::before { content: "✓"; font-weight: 700; }

.contact-grid {
	display: grid;
	grid-template-columns: 1.35fr 1fr;
	gap: clamp(24px, 3vw, 44px);
	align-items: start;
	margin-top: 8px;
}
.contact-grid__form > h2,
.contact-grid__info h2 {
	font-size: 20px;
	letter-spacing: -0.01em;
	margin: 0 0 18px;
	padding-bottom: 12px;
	border-bottom: 1px solid var(--c-line);
}
@media (max-width: 900px) {
	.contact-grid { grid-template-columns: 1fr; }
	.contact-grid__info { position: static !important; }
}

/* Form */
.contact-form { display: flex; flex-direction: column; gap: 18px; }
.contact-form__row {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 14px;
}
@media (max-width: 560px) {
	.contact-form__row { grid-template-columns: 1fr; }
}
.contact-form__field { display: flex; flex-direction: column; gap: 6px; }
.contact-form__field label {
	font-size: 13.5px;
	font-weight: 600;
	color: var(--c-ink);
	letter-spacing: 0.01em;
}
.contact-form__field .req { color: var(--c-accent); margin-left: 2px; }
.contact-form__field input,
.contact-form__field textarea,
.contact-form__field select {
	width: 100%;
	padding: 11px 14px;
	font: 400 15px/1.4 var(--font-sans, system-ui, sans-serif);
	color: var(--c-ink);
	background: #fff;
	border: 1px solid var(--c-line);
	border-radius: 6px;
	transition: border-color .2s ease, box-shadow .2s ease;
}
.contact-form__field input:focus,
.contact-form__field textarea:focus,
.contact-form__field select:focus {
	outline: none;
	border-color: var(--c-accent);
	box-shadow: 0 0 0 3px color-mix(in oklab, var(--c-accent), transparent 80%);
}
.contact-form__field textarea { resize: vertical; min-height: 100px; font-family: inherit; }
.contact-form__field input:invalid:not(:placeholder-shown),
.contact-form__field textarea:invalid:not(:placeholder-shown) {
	border-color: #dc2626;
}

/* Honeypot — ẩn hoàn toàn nhưng vẫn hiện với bot dùng raw HTML */
.contact-form__hp {
	position: absolute;
	left: -9999px;
	width: 1px;
	height: 1px;
	overflow: hidden;
}

.contact-form__consent {
	color: var(--c-muted);
	font-size: 12.5px;
	line-height: 1.55;
}
.contact-form__consent a { color: var(--c-ink-soft); text-decoration: underline; }
.contact-form__actions { display: flex; gap: 10px; align-items: center; margin-top: 4px; }
.contact-form__submit { min-width: 170px; }
.contact-form__submit:disabled { opacity: .7; cursor: wait; }

.contact-form__status {
	margin-top: 6px;
	padding: 12px 16px;
	border-radius: 6px;
	font-size: 14.5px;
	line-height: 1.5;
	border-left: 4px solid;
}
.contact-form__status--success {
	background: #f0fdf4;
	border-left-color: #16a34a;
	color: #15803d;
}
.contact-form__status--error {
	background: #fef2f2;
	border-left-color: #dc2626;
	color: #b91c1c;
}

/* Sidebar info — card nổi, sticky khi cuộn */
.contact-grid__info {
	background: var(--c-surface);
	border: 1px solid var(--c-line);
	border-radius: var(--radius-lg);
	padding: clamp(22px, 2.5vw, 30px);
	box-shadow: var(--shadow);
	position: sticky;
	top: 96px;
}
.contact-grid__info h3 {
	font-size: 12px;
	text-transform: uppercase;
	letter-spacing: 0.08em;
	color: var(--c-muted);
	margin: 22px 0 10px;
	font-weight: 600;
}

/* Nút gọi — kem nhẹ, icon tròn cam, số đen đậm (sang, không chói) */
.contact-call {
	display: flex;
	align-items: center;
	gap: 14px;
	background: var(--c-bg-deep);
	border: 1px solid var(--c-line);
	border-radius: var(--radius);
	padding: 14px 16px;
	margin-bottom: 6px;
	transition: border-color .15s ease, box-shadow .15s ease, transform .15s ease;
}
.entry-content a.contact-call,
.entry-content a.contact-call:hover { color: var(--c-ink); text-decoration: none; }
.contact-call:hover {
	transform: translateY(-1px);
	border-color: var(--c-accent);
	box-shadow: var(--shadow-sm);
}
.contact-call__icon {
	width: 46px;
	height: 46px;
	border-radius: 50%;
	background-color: var(--c-accent);
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='21' height='21' viewBox='0 0 24 24' fill='none' stroke='%23ffffff' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M22 16.92v3a2 2 0 0 1-2.18 2 19.79 19.79 0 0 1-8.63-3.07 19.5 19.5 0 0 1-6-6 19.79 19.79 0 0 1-3.07-8.67A2 2 0 0 1 4.11 2h3a2 2 0 0 1 2 1.72c.13.96.36 1.9.7 2.81a2 2 0 0 1-.45 2.11L8.09 9.91a16 16 0 0 0 6 6l1.27-1.27a2 2 0 0 1 2.11-.45c.91.34 1.85.57 2.81.7A2 2 0 0 1 22 16.92z'/%3E%3C/svg%3E");
	background-repeat: no-repeat;
	background-position: center;
	flex-shrink: 0;
}
.contact-call__label { display: block; font-size: 11.5px; color: var(--c-muted); text-transform: uppercase; letter-spacing: .05em; }
.contact-call__num { display: block; font-size: 21px; font-weight: 700; color: var(--c-ink); letter-spacing: .01em; }

.contact-info-block {
	display: flex;
	gap: 13px;
	align-items: center;
	padding: 14px 0;
	border-bottom: 1px solid var(--c-line-soft);
}
.contact-info-block:last-of-type { border-bottom: 0; }
.contact-info-block__icon {
	width: 40px;
	height: 40px;
	border-radius: 50%;
	background-color: var(--c-accent-soft);
	background-repeat: no-repeat;
	background-position: center;
	background-size: 19px;
	flex-shrink: 0;
}
.contact-info-block__icon--mail {
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='19' height='19' viewBox='0 0 24 24' fill='none' stroke='%23F26A1F' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Crect x='2' y='4' width='20' height='16' rx='2'/%3E%3Cpath d='m22 7-10 7L2 7'/%3E%3C/svg%3E");
}
.contact-info-block__icon--clock {
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='19' height='19' viewBox='0 0 24 24' fill='none' stroke='%23F26A1F' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='12' cy='12' r='10'/%3E%3Cpath d='M12 6v6l4 2'/%3E%3C/svg%3E");
}
.entry-content a.contact-info-block__value { text-decoration: none; color: var(--c-ink); }
.entry-content a.contact-info-block__value:hover { color: var(--c-accent); }
.contact-info-block__label {
	font-size: 12px;
	color: var(--c-muted);
	text-transform: uppercase;
	letter-spacing: 0.06em;
	margin-bottom: 3px;
}
.contact-info-block__value {
	font-size: 15.5px;
	font-weight: 600;
	color: var(--c-ink);
	text-decoration: none;
}
.contact-info-block a.contact-info-block__value:hover { color: var(--c-accent); }

.contact-offices { list-style: none; padding: 0; margin: 0; }
.contact-offices li {
	display: flex;
	align-items: center;
	gap: 9px;
	padding: 9px 0;
	border-bottom: 1px solid var(--c-line-soft);
	font-size: 14.5px;
	color: var(--c-ink-soft);
}
.contact-offices li:last-child { border-bottom: 0; }
.contact-offices .flag { font-size: 16px; }

/* Liên hệ — nút mạng xã hội trong aside (nền tối) */
.contact-socials { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 18px; }
.btn-sm { padding: 8px 16px; font-size: 13px; }
.contact-shell__aside .contact-socials .btn-ghost {
	border-color: rgba(255,255,255,.25);
	color: #fff;
}
.contact-shell__aside .contact-socials .btn-ghost:hover {
	border-color: rgba(255,255,255,.55);
	background: rgba(255,255,255,.08);
}

/* ---------- Contact split card (premium) ---------- */
.contact-shell {
	display: grid;
	grid-template-columns: 0.92fr 1.08fr;
	background: var(--c-surface);
	border: 1px solid var(--c-line);
	border-radius: var(--radius-xl);
	overflow: hidden;
	box-shadow: var(--shadow-lg);
	margin-top: 8px;
}
@media (max-width: 900px) {
	.contact-shell { grid-template-columns: 1fr; }
}

/* Panel trái — navy, thông tin liên hệ */
.contact-shell__aside {
	background:
		radial-gradient(130% 90% at 100% 0%, rgba(242,106,31,.20), transparent 58%),
		linear-gradient(165deg, #14233b, #0c1726);
	color: #fff;
	padding: clamp(26px, 3vw, 42px);
}
.contact-shell__aside h2 {
	color: #fff;
	font-size: 21px;
	border: 0;
	padding: 0;
	margin: 0 0 8px;
}
.contact-shell__tagline {
	color: rgba(255,255,255,.68);
	font-size: 14px;
	line-height: 1.6;
	margin: 0 0 24px;
}
.contact-shell__aside h3 { color: rgba(255,255,255,.5); margin: 24px 0 10px; }

/* Nút gọi trên navy — gọn, nền trắng mờ, icon tròn cam (không chói) */
.contact-shell__aside .contact-call {
	background: rgba(255,255,255,.06);
	border: 1px solid rgba(255,255,255,.14);
	padding: 12px 14px;
	gap: 13px;
	margin-bottom: 4px;
}
.entry-content .contact-shell__aside a.contact-call,
.entry-content .contact-shell__aside a.contact-call:hover { color: #fff; }
.contact-shell__aside .contact-call__icon { width: 42px; height: 42px; background-color: var(--c-accent); }
.contact-shell__aside .contact-call__label { color: rgba(255,255,255,.6); }
.contact-shell__aside .contact-call__num { font-size: 18px; color: #fff; }
.contact-shell__aside .contact-call:hover { border-color: var(--c-accent); box-shadow: none; transform: none; }

/* Info block trên navy */
.contact-shell__aside .contact-info-block { border-bottom-color: rgba(255,255,255,.1); }
.contact-shell__aside .contact-info-block__icon { background-color: rgba(242,106,31,.24); }
.contact-shell__aside .contact-info-block__label { color: rgba(255,255,255,.5); }
.contact-shell__aside .contact-info-block__value { color: #fff; }
.entry-content .contact-shell__aside a.contact-info-block__value { color: #fff; }
.entry-content .contact-shell__aside a.contact-info-block__value:hover { color: var(--c-accent-2); }
.contact-shell__aside .contact-offices li { border-bottom-color: rgba(255,255,255,.1); color: rgba(255,255,255,.82); }

/* Panel phải — form trên nền trắng */
.contact-shell__main { padding: clamp(26px, 3vw, 42px); }
.contact-shell__main h2 {
	font-size: 21px;
	margin: 0 0 18px;
	padding-bottom: 14px;
	border-bottom: 1px solid var(--c-line);
}
/* Làm phẳng form plugin khi nằm trong card (tránh card lồng card) */
.contact-shell__main .m2w-lead-form {
	border: 0;
	box-shadow: none;
	padding: 0;
	max-width: none;
	border-radius: 0;
}
.contact-shell__main .m2w-lead-form::before { display: none; }
.contact-note {
	margin-top: 20px !important;
	padding-top: 16px;
	border-top: 1px dashed var(--c-line);
	font-size: 13px;
	color: var(--c-muted);
}

/* Sources */
.about-divider { border: 0; border-top: 1px solid var(--c-line); margin: 48px 0 24px; }
.about-sources { font-size: 13.5px; color: var(--c-muted); }
.about-sources h2 {
	font-size: 16px;
	border-top: 0;
	padding-top: 0;
	margin: 0 0 12px;
	text-transform: uppercase;
	letter-spacing: 0.08em;
	color: var(--c-ink);
}
.about-sources ol { padding-left: 20px; line-height: 1.7; }
.about-sources li { margin-bottom: 6px; }
.about-sources a { color: var(--c-muted); }
.about-sources a:hover { color: var(--c-accent); }

/* ============================================================
 * NOC — National Occupational Classification (Canada)
 * ============================================================ */

/* Search widget */
/* Fix stacking: section chứa NOC search phải nổi trên CTA block phía dưới
   (cả 2 đều có .reveal → transform → stacking context, CTA sau DOM nên đè lên). */
.art-section--noc,
.art-section:has(.noc-search) { position: relative; z-index: 100; }
.noc-search { margin: 24px 0 8px; position: relative; z-index: 100; }
.noc-search__row { display: flex; gap: 12px; flex-wrap: wrap; align-items: flex-start; }
.noc-search__field { position: relative; flex: 1; min-width: 240px; }
.noc-search__icon {
	position: absolute;
	left: 16px; top: 50%;
	transform: translateY(-50%);
	color: var(--c-muted);
	pointer-events: none;
	display: flex;
}
.noc-search__field:focus-within .noc-search__icon { color: var(--c-accent); }
.noc-search__input {
	width: 100%;
	padding: 14px 18px 14px 46px;
	font-size: 16px;
	border: 1.5px solid var(--c-line);
	border-radius: 10px;
	background: #fff;
	transition: border-color .2s ease, box-shadow .2s ease;
}
.noc-search__input:focus {
	outline: none;
	border-color: var(--c-accent);
	box-shadow: 0 0 0 4px color-mix(in oklab, var(--c-accent), transparent 85%);
}

/* Autocomplete dropdown */
.noc-suggest {
	position: absolute;
	top: calc(100% + 6px);
	left: 0; right: 0;
	background: #fff;
	border: 1px solid var(--c-line);
	border-radius: 12px;
	box-shadow: 0 20px 45px rgba(0,0,0,.14);
	z-index: 200;
	overflow: hidden;
	max-height: 420px;
	overflow-y: auto;
}
.noc-suggest__item {
	display: flex;
	align-items: center;
	gap: 12px;
	padding: 11px 16px;
	text-decoration: none;
	border-bottom: 1px solid color-mix(in oklab, var(--c-line), transparent 40%);
	transition: background .15s ease;
}
.noc-suggest__item:last-of-type { border-bottom: 0; }
.noc-suggest__item:hover,
.noc-suggest__item.is-active { background: color-mix(in oklab, var(--c-accent), white 92%); }
.noc-suggest__code {
	font-family: var(--font-mono);
	font-weight: 700;
	font-size: 13px;
	color: var(--c-accent);
	flex-shrink: 0;
	min-width: 86px;
}
.noc-suggest__title {
	flex: 1;
	font-size: 14.5px;
	color: var(--c-ink);
	line-height: 1.35;
}
.noc-suggest__teer {
	flex-shrink: 0;
	color: #fff;
	font-size: 10.5px;
	font-weight: 700;
	padding: 3px 8px;
	border-radius: 999px;
}
.noc-suggest mark {
	background: color-mix(in oklab, var(--c-accent), transparent 70%);
	color: inherit;
	padding: 0 1px;
	border-radius: 2px;
	font-weight: 700;
}
.noc-suggest__more {
	display: block;
	width: 100%;
	text-align: center;
	padding: 12px;
	background: var(--c-surface);
	border: 0;
	border-top: 1px solid var(--c-line);
	color: var(--c-accent);
	font-weight: 600;
	font-size: 13.5px;
	cursor: pointer;
}
.noc-suggest__more:hover { background: color-mix(in oklab, var(--c-accent), white 88%); }
.noc-search__teer {
	padding: 14px 16px;
	font-size: 15px;
	border: 1.5px solid var(--c-line);
	border-radius: 10px;
	background: #fff;
	min-width: 180px;
	cursor: pointer;
}
.noc-search__status {
	margin: 12px 0;
	font-size: 13.5px;
	color: var(--c-muted);
	font-family: var(--font-mono);
}
.noc-search__results { display: flex; flex-direction: column; gap: 8px; }

/* Result row / NOC card */
.noc-result {
	display: flex;
	align-items: center;
	gap: 16px;
	padding: 14px 18px;
	background: #fff;
	border: 1px solid var(--c-line);
	border-radius: 10px;
	text-decoration: none;
	transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.noc-result:hover {
	transform: translateX(4px);
	box-shadow: 0 8px 22px rgba(0,0,0,.07);
	border-color: color-mix(in oklab, var(--c-accent), var(--c-line) 50%);
}
.noc-result__code {
	font-family: var(--font-mono);
	font-weight: 700;
	font-size: 14px;
	color: var(--c-accent);
	flex-shrink: 0;
	min-width: 92px;
}
.noc-result__title {
	flex: 1;
	color: var(--c-ink);
	font-weight: 500;
	font-size: 15px;
	line-height: 1.4;
}
.noc-result__teer {
	flex-shrink: 0;
	color: #fff;
	font-size: 11px;
	font-weight: 700;
	padding: 4px 10px;
	border-radius: 999px;
	letter-spacing: 0.03em;
}
.noc-empty {
	padding: 24px;
	text-align: center;
	color: var(--c-muted);
	background: var(--c-surface);
	border-radius: 10px;
	border: 1px dashed var(--c-line);
}

/* NOC archive */
.noc-archive { padding: clamp(32px, 5vw, 64px) 0; }
.noc-archive__head { max-width: 720px; margin-bottom: 32px; }
.noc-archive__head h1 { font-size: clamp(28px, 3.4vw, 44px); letter-spacing: -0.02em; margin: 12px 0; }
.noc-archive__head p { color: var(--c-ink-soft); line-height: 1.7; }
.noc-archive__list { margin-top: 40px; }
.noc-archive__list h2 { font-size: 20px; margin-bottom: 18px; }
.noc-grid { display: flex; flex-direction: column; gap: 8px; }
.noc-pagination { margin-top: 32px; }
.noc-pagination .nav-links { display: flex; gap: 8px; flex-wrap: wrap; justify-content: center; }
.noc-pagination a, .noc-pagination .current {
	padding: 8px 14px;
	border: 1px solid var(--c-line);
	border-radius: 8px;
	text-decoration: none;
	color: var(--c-ink);
}
.noc-pagination .current { background: var(--c-accent); color: #fff; border-color: var(--c-accent); }

/* NOC single */
.noc-single { padding: clamp(24px, 4vw, 48px) 0 64px; }
.noc-breadcrumb {
	display: flex; gap: 8px; align-items: center;
	font-size: 13px; color: var(--c-muted);
	margin-bottom: 24px; flex-wrap: wrap;
}
.noc-breadcrumb a { color: var(--c-muted); text-decoration: none; }
.noc-breadcrumb a:hover { color: var(--c-accent); }
.noc-hero {
	padding: 28px 0 24px;
	border-bottom: 2px solid var(--c-line);
	margin-bottom: 32px;
}
.noc-hero__code { display: flex; align-items: center; gap: 12px; margin-bottom: 14px; }
.noc-hero__code-num {
	font-family: var(--font-mono);
	font-weight: 700;
	font-size: 15px;
	color: var(--c-accent);
	letter-spacing: 0.04em;
}
.noc-teer-badge {
	color: #fff; font-size: 12px; font-weight: 700;
	padding: 5px 12px; border-radius: 999px; letter-spacing: 0.03em;
}
.noc-hero h1 { font-size: clamp(26px, 3.2vw, 42px); letter-spacing: -0.02em; line-height: 1.15; margin: 0 0 8px; }
.noc-hero__en { font-family: var(--font-serif); font-style: italic; font-size: 18px; color: var(--c-muted); margin: 0; }

.noc-layout {
	display: grid;
	grid-template-columns: 1fr 320px;
	gap: clamp(24px, 4vw, 48px);
	align-items: start;
}
@media (max-width: 900px) { .noc-layout { grid-template-columns: 1fr; } }

.noc-block { margin-bottom: 36px; }
.noc-block h2 {
	font-size: 21px;
	letter-spacing: -0.01em;
	margin: 0 0 14px;
	padding-bottom: 10px;
	border-bottom: 1px solid var(--c-line);
}
.noc-prose { line-height: 1.75; color: var(--c-ink-soft); }
.noc-prose p { margin: 0 0 12px; }

.noc-jobs {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(230px, 1fr));
	gap: 10px;
}
.noc-job-chip {
	display: flex;
	flex-direction: column;
	gap: 3px;
	padding: 13px 16px 13px 18px;
	background: #fff;
	border: 1px solid var(--c-line);
	border-radius: 10px;
	position: relative;
	overflow: hidden;
	transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
}
.noc-job-chip::before {
	content: "";
	position: absolute;
	left: 0; top: 0; bottom: 0;
	width: 3px;
	background: var(--c-accent);
	transform: scaleY(0);
	transform-origin: top;
	transition: transform .25s ease;
}
.noc-job-chip:hover {
	transform: translateY(-3px);
	box-shadow: 0 12px 26px rgba(0,0,0,.08);
	border-color: color-mix(in oklab, var(--c-accent), var(--c-line) 55%);
}
.noc-job-chip:hover::before { transform: scaleY(1); }
.noc-job-chip strong {
	font-size: 14px;
	color: var(--c-ink);
	font-weight: 600;
	line-height: 1.35;
	display: flex;
	align-items: flex-start;
	gap: 7px;
}
.noc-job-chip strong::before {
	content: "";
	flex-shrink: 0;
	width: 6px; height: 6px;
	margin-top: 6px;
	border-radius: 50%;
	background: color-mix(in oklab, var(--c-accent), transparent 30%);
}
.noc-job-chip span {
	font-size: 12px;
	color: var(--c-muted);
	font-style: italic;
	padding-left: 13px;
}

/* "Xem tất cả N chức danh" toggle */
.noc-jobs-all { margin-top: 16px; }
.noc-jobs-all summary {
	cursor: pointer;
	font-size: 13.5px;
	color: var(--c-accent);
	font-weight: 600;
	padding: 10px 18px;
	display: inline-flex;
	align-items: center;
	gap: 8px;
	background: color-mix(in oklab, var(--c-accent), white 92%);
	border: 1px solid color-mix(in oklab, var(--c-accent), white 75%);
	border-radius: 999px;
	list-style: none;
	transition: background .2s ease;
	user-select: none;
}
.noc-jobs-all summary::-webkit-details-marker { display: none; }
.noc-jobs-all summary::before {
	content: "▾";
	font-size: 11px;
	transition: transform .25s ease;
}
.noc-jobs-all[open] summary::before { transform: rotate(180deg); }
.noc-jobs-all summary:hover { background: color-mix(in oklab, var(--c-accent), white 85%); }
.noc-jobs-all[open] summary { margin-bottom: 16px; }

.noc-inex { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 18px; align-items: start; }
.noc-inex__col { padding: 20px 22px; border-radius: 12px; }
.noc-inex__col--in { background: #f0fdf4; border: 1px solid #bbf7d0; }
.noc-inex__col--ex { background: #fef7f2; border: 1px solid #fed7aa; }
.noc-inex__col h3 { font-size: 14px; margin: 0 0 14px; display: flex; align-items: center; gap: 8px; letter-spacing: -0.005em; }
.noc-inex__col--in h3 { color: #15803d; }
.noc-inex__col--ex h3 { color: #c2410c; }
.noc-inex__icon {
	display: inline-grid; place-items: center;
	width: 22px; height: 22px; border-radius: 50%;
	font-size: 12px; font-weight: 700; color: #fff; flex-shrink: 0;
}
.noc-inex__col--in .noc-inex__icon { background: #16a34a; }
.noc-inex__col--ex .noc-inex__icon { background: #ea580c; }

/* Inclusions — chips */
.noc-inc-chips { display: flex; flex-wrap: wrap; gap: 8px; }
.noc-inc-chip {
	display: inline-flex; flex-direction: column; gap: 1px;
	padding: 7px 12px;
	background: #fff;
	border: 1px solid #bbf7d0;
	border-radius: 8px;
}
.noc-inc-chip strong { font-size: 13.5px; color: #14532d; font-weight: 600; }
.noc-inc-chip em { font-size: 11.5px; color: #4d7c5a; font-style: italic; }

/* Exclusions — list with ref link */
.noc-exc-list { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 10px; }
.noc-exc-list li {
	background: #fff;
	border: 1px solid #fed7aa;
	border-radius: 8px;
	padding: 10px 14px;
	display: flex;
	flex-direction: column;
	gap: 4px;
}
.noc-exc-name strong { font-size: 13.5px; color: #1d2327; font-weight: 600; }
.noc-exc-name em { font-size: 11.5px; color: var(--c-muted); font-style: italic; }
.noc-exc-ref {
	display: inline-flex;
	align-items: center;
	gap: 4px;
	font-size: 12.5px;
	color: var(--c-accent);
	text-decoration: none;
	font-weight: 600;
	width: fit-content;
}
.noc-exc-ref:hover { text-decoration: underline; }
.noc-exc-ref--plain { color: var(--c-muted); font-weight: 500; cursor: default; }

/* NOC sidebar */
.noc-sidebar { position: sticky; top: 90px; display: flex; flex-direction: column; gap: 16px; }
@media (max-width: 900px) { .noc-sidebar { position: static; } }
.noc-card {
	background: #fff;
	border: 1px solid var(--c-line);
	border-radius: 12px;
	padding: 20px;
}
.noc-card h3 { font-size: 15px; margin: 0 0 14px; letter-spacing: -0.005em; }
.noc-meta { margin: 0; }
.noc-meta dt {
	font-size: 11.5px;
	text-transform: uppercase;
	letter-spacing: 0.05em;
	color: var(--c-muted);
	margin-top: 12px;
}
.noc-meta dt:first-child { margin-top: 0; }
.noc-meta dd { margin: 2px 0 0; font-size: 14px; color: var(--c-ink); font-weight: 500; }
.noc-meta dd a { color: var(--c-accent); text-decoration: none; }
.noc-card--cta { background: linear-gradient(135deg, var(--c-dark) 0%, color-mix(in oklab, var(--c-dark), var(--c-accent) 20%) 100%); color: #fff; }
.noc-card--cta h3 { color: #fff; }
.noc-card--cta p { font-size: 13.5px; color: rgba(255,255,255,.85); line-height: 1.6; margin: 0 0 16px; }

/* ============================================================
   Khách hàng thành công — trang trust (archive-case_study)
   ============================================================ */

/* Hero — hàng cam kết */
.cases-hero__trust {
	list-style: none;
	margin: 26px 0 0;
	padding: 0;
	display: flex;
	flex-wrap: wrap;
	gap: 10px 22px;
}
.cases-hero__trust li {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	font-size: 14px;
	color: var(--c-ink-soft);
	font-weight: 500;
}
.cases-hero__trust .tick,
.proof-card__verify .tick,
.prooftype__seal .tick {
	display: inline-grid;
	place-items: center;
	width: 18px; height: 18px;
	border-radius: 50%;
	background: color-mix(in oklab, var(--c-accent), transparent 86%);
	color: var(--c-accent);
	font-size: 11px;
	font-weight: 700;
	flex-shrink: 0;
}

/* Tường bằng chứng */
.proof-wall .sec__head { margin-bottom: 28px; }
.proof-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 18px;
}
@media (max-width: 900px) { .proof-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .proof-grid { grid-template-columns: 1fr; } }

/* Bản scan thật (khi có file trong assets/img/proof/) */
.proof-card {
	margin: 0;
	background: var(--c-surface);
	border: 1px solid var(--c-line);
	border-radius: var(--radius-lg);
	overflow: hidden;
	transition: transform .25s ease, box-shadow .25s ease;
}
.proof-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-lg); }
.proof-card img { width: 100%; aspect-ratio: 4/3; object-fit: cover; display: block; background: var(--c-bg); }
.proof-card figcaption { padding: 12px 16px; border-top: 1px solid var(--c-line-soft); }
.proof-card__verify { display: inline-flex; align-items: center; gap: 8px; font-size: 12.5px; color: var(--c-muted); }

/* Nhóm loại giấy tờ (fallback trung thực khi chưa có scan) */
.prooftype {
	display: flex;
	gap: 16px;
	align-items: center;
	background: var(--c-surface);
	border: 1px solid var(--c-line);
	border-radius: var(--radius-lg);
	padding: 18px 20px;
	transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.prooftype:hover {
	transform: translateY(-3px);
	box-shadow: var(--shadow-lg);
	border-color: color-mix(in oklab, var(--c-accent), var(--c-line) 55%);
}
.prooftype__doc {
	position: relative;
	flex-shrink: 0;
	width: 58px; height: 74px;
	border-radius: 6px;
	background: linear-gradient(160deg, #fff 0%, var(--c-bg) 100%);
	border: 1px solid var(--c-line);
	box-shadow: inset 0 0 0 1px rgba(255,255,255,.6), 0 4px 12px -6px rgba(15,27,45,.25);
	padding: 9px 8px;
	overflow: hidden;
}
.prooftype__badge {
	display: block;
	font-family: var(--font-mono);
	font-size: 6.5px;
	letter-spacing: .04em;
	color: var(--c-accent);
	font-weight: 700;
	margin-bottom: 7px;
	white-space: nowrap;
}
.prooftype__redact {
	display: block;
	height: 5px;
	border-radius: 2px;
	background: color-mix(in oklab, var(--c-dark), transparent 78%);
	margin-bottom: 5px;
}
.prooftype__redact--short { width: 62%; background: color-mix(in oklab, var(--c-dark), transparent 86%); }
.prooftype__seal {
	position: absolute;
	right: 5px; bottom: 5px;
}
.prooftype__seal .tick { width: 16px; height: 16px; font-size: 10px; }
.prooftype__body { display: flex; flex-direction: column; gap: 3px; }
.prooftype__body b { font-size: 14.5px; color: var(--c-ink); line-height: 1.3; font-weight: 600; }
.prooftype__body span { font-size: 12.5px; color: var(--c-muted); line-height: 1.4; }
.proof-note {
	margin: 18px 0 0;
	font-size: 13px;
	color: var(--c-muted);
	font-style: italic;
}

/* Monogram fallback cho case không có ảnh */
.case__ph--mono {
	background: linear-gradient(150deg,
		color-mix(in oklab, var(--mono, var(--c-accent)), #ffffff 8%) 0%,
		color-mix(in oklab, var(--mono, var(--c-accent)), #000000 22%) 100%);
	border-color: transparent;
	display: grid;
	place-items: center;
}
.case__mono {
	font-family: var(--font-serif);
	font-weight: 600;
	font-style: italic;
	font-size: 46px;
	color: #fff;
	letter-spacing: .02em;
	text-shadow: 0 2px 14px rgba(0,0,0,.18);
}
.case--feat .case__mono { font-size: 64px; }

/* Minh bạch — vì sao đáng tin */
.trust-method {
	background: var(--c-surface);
	border: 1px solid var(--c-line);
	border-radius: var(--radius-xl);
	padding: clamp(28px, 4vw, 48px);
}
.trust-method__head { max-width: 620px; margin-bottom: 32px; }
.trust-method__head h2 { margin-top: 10px; }
.trust-method__grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 28px;
}
@media (max-width: 900px) { .trust-method__grid { grid-template-columns: repeat(2, 1fr); gap: 28px 24px; } }
@media (max-width: 560px) { .trust-method__grid { grid-template-columns: 1fr; } }
.trust-method__item { position: relative; padding-top: 18px; border-top: 2px solid color-mix(in oklab, var(--c-accent), transparent 70%); }
.trust-method__n {
	display: block;
	font-family: var(--font-mono);
	font-size: 12px;
	letter-spacing: .08em;
	color: var(--c-accent);
	font-weight: 700;
	margin-bottom: 10px;
}
.trust-method__item b { display: block; font-size: 16px; color: var(--c-ink); line-height: 1.32; margin-bottom: 8px; }
.trust-method__item p { font-size: 14px; color: var(--c-ink-soft); line-height: 1.6; margin: 0; }

/* Trust band dùng trong section-system (trang Giới thiệu/Cấp phép): panel TỐI cho tương phản & sang. */
.art-section--trust .trust-method {
	background:
		radial-gradient(circle at 100% 0%, color-mix(in oklab, var(--c-accent), transparent 78%) 0%, transparent 45%),
		linear-gradient(135deg, var(--c-dark) 0%, color-mix(in oklab, var(--c-dark), var(--c-accent) 14%) 100%);
	border: 0;
	box-shadow: 0 30px 60px -30px rgba(0,0,0,.5);
	position: relative;
	overflow: hidden;
}
.art-section--trust .trust-method__head .eyebrow { color: var(--c-accent-2); }
.art-section--trust .trust-method__head h2 { color: #fff; }
.art-section--trust .trust-method__item { border-top-color: rgba(255,255,255,.18); }
.art-section--trust .trust-method__n { color: var(--c-accent-2); }
.art-section--trust .trust-method__item b { color: #fff; }
.art-section--trust .trust-method__item p { color: rgba(255,255,255,.72); }

/* ===================================================================
   Trang Đánh giá hồ sơ (/danh-gia-ho-so/) — redesign editorial 1 cuộn
   =================================================================== */
.assess-page .hero--inner { padding: clamp(44px, 5.5vw, 76px) 0 clamp(28px, 3.5vw, 44px); }
.assess-page .hero__lede { color: var(--c-ink-soft); margin-top: 18px; }

/* Câu nấn slogan — pull-quote serif nghiêng */
.assess-page .assess-hero__slogan {
	font-family: var(--font-serif);
	font-style: italic;
	font-size: clamp(19px, 2.1vw, 26px);
	line-height: 1.4;
	color: var(--c-ink);
	max-width: 600px;
	margin: 20px 0 0;
	padding-left: 18px;
	border-left: 3px solid var(--c-accent);
}

/* Hero 2 cột + nền trang trí */
.assess-page .hero--inner { position: relative; overflow: hidden; }
.assess-page .hero--inner::before {
	content: "";
	position: absolute;
	top: -140px;
	right: -90px;
	width: 460px;
	height: 460px;
	border-radius: 50%;
	background: radial-gradient(circle, color-mix(in oklab, var(--c-accent), transparent 80%), transparent 70%);
	pointer-events: none;
}
.assess-page .hero--inner > .container { position: relative; z-index: 1; }
.assess-page .assess-hero__grid {
	display: grid;
	grid-template-columns: 1.12fr 0.88fr;
	gap: clamp(28px, 4vw, 56px);
	align-items: center;
	margin-top: 6px;
}
@media (max-width: 900px) { .assess-page .assess-hero__grid { grid-template-columns: 1fr; gap: 30px; } }
.assess-page .assess-hero__main { min-width: 0; }
.assess-page .assess-hero__main .hero__lede { max-width: 560px; }

/* Stat có icon */
.assess-page .assess-stats .assess-stat { display: flex; flex-direction: column; gap: 1px; }
.assess-page .assess-stat__ic {
	width: 32px;
	height: 32px;
	border-radius: 9px;
	background: var(--c-accent-soft);
	color: var(--c-accent);
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 11px;
}
.assess-page .assess-stat__ic svg { width: 17px; height: 17px; }
.assess-page .assess-stat--text b { font-size: 16px; line-height: 1.25; }

/* Card "Bốn chương trình" */
.assess-page .assess-programs {
	background: var(--c-surface);
	border: 1px solid var(--c-line);
	border-radius: var(--radius-xl);
	padding: 22px 24px;
	box-shadow: var(--shadow);
}
.assess-page .assess-programs__head {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 12px;
	margin-bottom: 6px;
}
.assess-page .assess-programs__head b { font-size: 14px; letter-spacing: -0.01em; }
.assess-page .assess-programs__live {
	font-family: var(--font-mono);
	font-size: 10px;
	letter-spacing: 0.07em;
	text-transform: uppercase;
	color: #1f7a3a;
	background: color-mix(in oklab, #2da44e, transparent 88%);
	border-radius: 999px;
	padding: 4px 9px;
	display: inline-flex;
	align-items: center;
	gap: 6px;
	white-space: nowrap;
}
.assess-page .assess-programs__live::before {
	content: "";
	width: 7px;
	height: 7px;
	border-radius: 50%;
	background: #2da44e;
	box-shadow: 0 0 0 3px color-mix(in oklab, #2da44e, transparent 80%);
}
.assess-page .assess-prog { display: flex; align-items: center; gap: 14px; padding: 13px 0; border-top: 1px solid var(--c-line-soft); }
.assess-page .assess-prog:first-of-type { border-top: 0; }
.assess-page .assess-prog__flag {
	width: 40px;
	height: 40px;
	border-radius: 11px;
	background: var(--c-bg-deep);
	display: flex;
	align-items: center;
	justify-content: center;
	flex: none;
}
.assess-page .assess-prog__flag svg {
	width: 26px;
	height: auto;
	border-radius: 3px;
	display: block;
	box-shadow: 0 0 0 1px rgba(15, 27, 45, 0.06);
}
.assess-page .assess-prog__body { display: flex; flex-direction: column; min-width: 0; }
.assess-page .assess-prog__name { font-weight: 700; font-size: 14.5px; color: var(--c-ink); }
.assess-page .assess-prog__prog { font-size: 12.5px; color: var(--c-muted); margin-top: 1px; }
.assess-page .assess-programs__foot {
	margin: 14px 0 0;
	padding-top: 14px;
	border-top: 1px solid var(--c-line-soft);
	font-size: 11.5px;
	color: var(--c-muted);
}

/* Giấy phép trong sidebar */
.assess-page .aside-licenses { list-style: none; margin: 0 0 4px; padding: 0; display: grid; gap: 12px; }
.assess-page .aside-licenses li { display: flex; flex-direction: column; gap: 2px; }
.assess-page .aside-licenses b { font-size: 13px; color: var(--c-ink); }
.assess-page .aside-licenses span { font-size: 12px; color: var(--c-muted); line-height: 1.5; }

/* Stat box tinh tế */
.assess-page .assess-stats {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 14px;
	margin-top: 36px;
	max-width: 760px;
}
.assess-page .assess-stats div {
	display: block;
	background: var(--c-surface);
	border: 1px solid var(--c-line);
	border-radius: var(--radius-lg);
	padding: 15px 18px;
	box-shadow: var(--shadow-sm);
}
.assess-page .assess-stats b { font-size: 23px; font-weight: 700; color: var(--c-ink); letter-spacing: -0.02em; }
.assess-page .assess-stats small { display: block; font-size: 12px; color: var(--c-muted); margin-top: 3px; }
@media (max-width: 640px) { .assess-page .assess-stats { grid-template-columns: repeat(2, 1fr); } }

/* Layout: form + sidebar sticky */
.assess-page .assess-layout {
	display: grid;
	grid-template-columns: minmax(0, 1fr) 350px;
	gap: 30px;
	align-items: start;
}
@media (max-width: 1024px) { .assess-page .assess-layout { grid-template-columns: 1fr; } }

/* Card chứa form */
.assess-page .assess-formcard {
	background: var(--c-surface);
	border: 1px solid var(--c-line);
	border-radius: var(--radius-xl);
	padding: clamp(24px, 3vw, 44px);
	box-shadow: var(--shadow);
}
.assess-page .assess-formcard__head { text-align: center; margin-bottom: 24px; }
.assess-page .assess-formcard__title { font-size: clamp(21px, 2.4vw, 27px); margin: 0; letter-spacing: -0.02em; }

/* Sidebar */
.assess-page .assess-layout__aside { position: sticky; top: 96px; display: grid; gap: 16px; }
@media (max-width: 1024px) { .assess-page .assess-layout__aside { position: static; } }

.assess-page .aside-card {
	background: var(--c-surface);
	border: 1px solid var(--c-line);
	border-radius: var(--radius-lg);
	padding: 24px;
	box-shadow: var(--shadow-sm);
}
.assess-page .aside-card--report {
	background: linear-gradient(180deg, color-mix(in oklab, var(--c-accent-soft), transparent 35%), var(--c-surface) 62%);
	border-color: color-mix(in oklab, var(--c-accent), var(--c-line) 72%);
}
.assess-page .aside-card__title { font-size: 16.5px; margin-bottom: 16px; letter-spacing: -0.01em; }
.assess-page .aside-list { list-style: none; padding: 0; margin: 0; display: grid; gap: 11px; }
.assess-page .aside-list li {
	position: relative;
	padding-left: 28px;
	font-size: 14px;
	line-height: 1.5;
	color: var(--c-ink-soft);
}
.assess-page .aside-list li::before {
	content: "";
	position: absolute;
	left: 0;
	top: 1px;
	width: 18px;
	height: 18px;
	border-radius: 50%;
	background: var(--c-accent);
	-webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='white' d='M9 16.2 4.8 12l-1.4 1.4L9 19 21 7l-1.4-1.4z'/%3E%3C/svg%3E") center / 13px no-repeat;
	mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='white' d='M9 16.2 4.8 12l-1.4 1.4L9 19 21 7l-1.4-1.4z'/%3E%3C/svg%3E") center / 13px no-repeat;
}
.assess-page .aside-hotline {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 10px;
	margin-top: 20px;
	padding-top: 18px;
	border-top: 1px solid var(--c-line);
}
.assess-page .aside-hotline span { font-size: 13px; color: var(--c-muted); }
.assess-page .aside-hotline a { font-size: 19px; font-weight: 700; color: var(--c-accent); letter-spacing: -0.01em; }

.assess-page .aside-card--trust { display: grid; gap: 12px; }
.assess-page .aside-badges { display: flex; flex-wrap: wrap; gap: 8px; }
.assess-page .aside-badge {
	font-family: var(--font-mono);
	font-size: 11px;
	letter-spacing: 0.04em;
	color: var(--c-ink-soft);
	background: var(--c-bg-deep);
	border: 1px solid var(--c-line);
	border-radius: 8px;
	padding: 6px 10px;
}
.assess-page .aside-badge b { color: var(--c-ink); }
.assess-page .aside-card--trust small { font-size: 12.5px; color: var(--c-muted); line-height: 1.6; }

/* =========================================================
   UX components (04/06) — comparison table · tabs · reading bar · sticky mobile CTA.
   Tham khảo GreenShift + docs/design-research.md (Boundless/Fragomen · WCAG 2.2 · motion tokens).
   ========================================================= */

/* ---------- Comparison table (GreenShift-style) — cuộn ngang mobile, cột nhãn dính trái ---------- */
.art-section--compare .m2w-compare__scroll {
	overflow-x: auto;
	-webkit-overflow-scrolling: touch;
	border-radius: var(--radius-lg);
	border: 1px solid var(--c-line);
}
.m2w-compare {
	width: 100%;
	min-width: 560px;
	border-collapse: collapse;
	background: var(--c-surface);
	font-size: 15px;
}
.m2w-compare th,
.m2w-compare td {
	padding: 14px 18px;
	text-align: left;
	border-bottom: 1px solid var(--c-line-soft);
	vertical-align: top;
}
.m2w-compare thead th {
	background: var(--c-bg-deep);
	font-weight: 700;
	color: var(--c-ink);
	font-size: 14px;
}
.m2w-compare tbody th {
	position: sticky;
	left: 0;
	background: var(--c-surface);
	font-weight: 600;
	color: var(--c-ink-soft);
	z-index: 1;
}
.m2w-compare__col--featured { background: color-mix(in oklab, var(--c-accent), transparent 90%); color: var(--c-accent-ink); }
.m2w-compare td.m2w-compare__col--featured { background: color-mix(in oklab, var(--c-accent), transparent 94%); }
.m2w-compare__badge {
	display: inline-block; margin-left: 8px; padding: 2px 8px;
	border-radius: 999px; background: var(--c-accent); color: #fff;
	font-size: 11px; font-weight: 700; vertical-align: middle;
}
.m2w-compare__yes { color: #1a7f4b; font-weight: 700; }
.m2w-compare__no  { color: var(--c-muted); }
.m2w-compare tbody tr:last-child th,
.m2w-compare tbody tr:last-child td { border-bottom: 0; }

/* ---------- Tabs — ARIA tab pattern (main.js); no-JS = mọi panel hiện ---------- */
.art-section--tabs .m2w-tabs__list {
	display: flex; flex-wrap: wrap; gap: 6px;
	border-bottom: 2px solid var(--c-line);
	margin-bottom: 22px;
}
.m2w-tabs__tab {
	padding: 11px 18px; border: 0; background: none;
	font-weight: 600; color: var(--c-muted);
	border-bottom: 2px solid transparent; margin-bottom: -2px;
	cursor: pointer;
	transition: color var(--m2w-dur-fast) var(--m2w-ease), border-color var(--m2w-dur-fast) var(--m2w-ease);
}
.m2w-tabs__tab:hover { color: var(--c-ink); }
.m2w-tabs__tab[aria-selected="true"] { color: var(--c-accent); border-bottom-color: var(--c-accent); }
.m2w-tabs__panel { animation: m2w-tab-in var(--m2w-dur-fast) var(--m2w-ease); }
.m2w-tabs__panel[hidden] { display: none; }
@keyframes m2w-tab-in { from { opacity: 0; transform: translateY(6px); } to { opacity: 1; transform: none; } }

/* ---------- Reading progress bar (trang nội dung dài) ---------- */
.m2w-readbar { position: fixed; top: 0; left: 0; right: 0; height: 3px; z-index: 70; pointer-events: none; }
.m2w-readbar span {
	display: block; height: 100%; transform-origin: 0 50%; transform: scaleX(0);
	background: linear-gradient(90deg, var(--c-accent), var(--c-accent-2));
}

/* ---------- Sticky mobile CTA — 1 hành động chính, hiện sau khi cuộn (mobile only) ---------- */
.m2w-mobile-cta {
	position: fixed; left: 12px; right: 12px; bottom: 12px; z-index: 60;
	display: none; align-items: center; justify-content: center; gap: 8px;
	padding: 14px 18px; padding-bottom: calc(14px + env(safe-area-inset-bottom, 0px));
	border-radius: 999px; background: linear-gradient(135deg, var(--c-accent), var(--c-accent-2));
	color: #fff; font-weight: 700; text-decoration: none;
	box-shadow: 0 12px 30px -8px color-mix(in oklab, var(--c-accent), transparent 30%);
	transform: translateY(160%);
	transition: transform var(--m2w-dur-fast) var(--m2w-ease-emph);
}
.m2w-mobile-cta .arr { transition: transform var(--m2w-dur-fast) var(--m2w-ease); }
.m2w-mobile-cta:hover .arr { transform: translateX(4px); }
@media (max-width: 768px) {
	.m2w-mobile-cta { display: flex; }
	.m2w-mobile-cta.is-visible { transform: translateY(0); }
	.m2w-backtop { bottom: 84px; }
}
@media (prefers-reduced-motion: reduce) {
	.m2w-mobile-cta { transition: none; }
	.m2w-tabs__panel { animation: none; }
}

/* =========================================================
   TRANG CHỦ — REDESIGN 07/06/2026
   Hero carousel (ảnh skyline mới mỗi nước) + lưới ngành nghề (ảnh CC0 mới).
   Carousel tái dùng CSS .hero--banner / .carousel__* sẵn có.
   ========================================================= */

/* ---------- Lưới ngành nghề ---------- */
.occs {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: clamp(16px, 1.6vw, 22px);
}
@media (max-width: 900px) { .occs { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .occs { grid-template-columns: 1fr; } }

.occ {
	display: flex; flex-direction: column;
	background: var(--c-surface);
	border: 1px solid var(--c-line);
	border-radius: var(--radius-lg);
	overflow: hidden;
	transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.occ:hover {
	transform: translateY(-4px);
	box-shadow: var(--shadow-lg);
	border-color: color-mix(in oklab, var(--c-accent), transparent 60%);
}
.occ__ph { aspect-ratio: 16 / 10; }
.occ__ph img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .45s ease; }
.occ:hover .occ__ph img { transform: scale(1.04); }
.occ__body { display: flex; flex-direction: column; gap: 8px; flex: 1; padding: 18px 20px 20px; }
.occ__body h3 { margin: 0; font-size: 18px; font-weight: 700; letter-spacing: -.01em; color: var(--c-ink); }
.occ__body p { margin: 0; flex: 1; font-size: 13.5px; line-height: 1.5; color: var(--c-ink-soft); }
.occ__flags { display: flex; gap: 6px; margin-top: 4px; }
.occ__flags .flag-chip { width: 22px; height: auto; border-radius: 3px; box-shadow: var(--shadow-sm); }

.occs-cta { text-align: center; margin-top: clamp(28px, 3vw, 40px); }

/* ---------- Country card: cả thẻ là link tới hub dịch vụ ---------- */
.country { position: relative; }
.country__cover { position: absolute; inset: 0; z-index: 2; }
.country__cover:focus-visible { outline: 2px solid var(--c-accent); outline-offset: 3px; }

/* =========================================================
   PROGRAM PAGE (chuong-trinh/*) — layout tài liệu "bold" 07/06
   photo-hero + breadcrumb + quick-facts + sticky TOC + related.
   Dùng chung 20 trang chương trình; xem inc/program-page.php.
   ========================================================= */

/* ---- Hero chương trình: cao hơn, sang hơn hub ---- */
/* align-items:flex-start + padding-bottom dày = CHỪA chỗ cho thẻ quick-facts đè vào
   vùng trống đáy hero, KHÔNG bao giờ che nút CTA. */
.m2w-prog-hero {
	align-items: flex-start;
	min-height: clamp(380px, 46vh, 520px);
	padding: clamp(32px, 4vw, 56px) 0 clamp(80px, 7vw, 112px);
}
.m2w-prog-hero > .container { width: 100%; max-width: var(--max); }
.m2w-prog-hero h1 { max-width: 16ch; margin-top: 14px; }
.m2w-prog-hero .hero__lede { max-width: 60ch; margin-top: 16px; }
.m2w-prog-hero .hero__actions { margin-top: 26px; }
.m2w-prog-hero--solo { min-height: 0; background: var(--c-bg-deep); padding-bottom: clamp(72px, 6vw, 96px); }
.m2w-prog-hero--solo h1, .m2w-prog-hero--solo .hero__lede { color: var(--c-ink); text-shadow: none; }

/* ---- Breadcrumb (điều hướng thật, không phải eyebrow) ---- */
.m2w-crumb { display: flex; flex-wrap: wrap; align-items: center; gap: 6px; font-size: 13.5px; font-weight: 500; }
.m2w-crumb a, .m2w-crumb span[aria-current] { display: inline-flex; align-items: center; gap: 6px; text-decoration: none; }
.m2w-prog-hero .m2w-crumb a { color: rgba(255, 255, 255, .78); }
.m2w-prog-hero .m2w-crumb a:hover { color: #fff; }
.m2w-prog-hero .m2w-crumb span[aria-current] { color: rgba(255, 255, 255, .95); font-weight: 600; }
.m2w-prog-hero .m2w-crumb__sep { color: rgba(255, 255, 255, .5); }
.m2w-prog-hero--solo .m2w-crumb a { color: var(--c-muted); }
.m2w-prog-hero--solo .m2w-crumb a:hover { color: var(--c-accent); }
.m2w-prog-hero--solo .m2w-crumb span[aria-current] { color: var(--c-ink); }
.m2w-prog-hero--solo .m2w-crumb__sep { color: var(--c-line); }
.m2w-crumb__flag :is(svg, img), .m2w-crumb__flag .flag-chip { width: 18px; height: auto; border-radius: 2px; display: block; box-shadow: 0 0 0 1px rgba(0,0,0,.08); }

/* ---- Quick-facts: thẻ nổi "đè" lên đáy hero ---- */
.m2w-qf {
	position: relative; z-index: 3;
	margin-top: clamp(-56px, -4vw, -36px);
	margin-bottom: clamp(36px, 4vw, 56px);
	background: var(--c-surface);
	border: 1px solid var(--c-line);
	border-radius: var(--radius-lg);
	box-shadow: var(--shadow-lg);
	overflow: hidden;
}
.m2w-qf__grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(150px, 1fr)); }
.m2w-qf__tile {
	display: flex; flex-direction: column; gap: 6px;
	padding: clamp(16px, 1.6vw, 22px) clamp(16px, 1.6vw, 24px);
	border-right: 1px solid var(--c-line-soft);
	border-bottom: 1px solid var(--c-line-soft);
}
.m2w-qf__label { font-size: 11.5px; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; color: var(--c-muted); }
.m2w-qf__value { font-size: clamp(15px, 1.2vw, 17px); font-weight: 700; line-height: 1.32; color: var(--c-ink); letter-spacing: -.01em; }
.m2w-qf__value strong { color: var(--c-accent); font-weight: 800; }

/* ---- Layout 2 cột: mục lục dính | nội dung ---- */
.m2w-doc__main .article-page { max-width: none; margin: 0; padding: 0; }
.m2w-doc__main .article-page > section:first-child { margin-top: 0; }

/* ---- TOC ---- */
.m2w-toc { font-size: 14px; }
.m2w-toc__title { display: block; font-size: 11.5px; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; color: var(--c-muted); margin-bottom: 12px; padding-left: 14px; }
.m2w-toc__list { list-style: none; margin: 0; padding: 0; border-left: 2px solid var(--c-line); }
.m2w-toc__list li { margin: 0; }
.m2w-toc__list a {
	display: flex; gap: 9px; align-items: baseline;
	padding: 7px 12px; margin-left: -2px;
	border-left: 2px solid transparent;
	color: var(--c-ink-soft); text-decoration: none; line-height: 1.4;
	transition: color var(--m2w-dur-fast) var(--m2w-ease), border-color var(--m2w-dur-fast) var(--m2w-ease);
}
.m2w-toc__list a:hover { color: var(--c-accent); }
.m2w-toc__list a.is-active { color: var(--c-accent); font-weight: 700; border-left-color: var(--c-accent); }
.m2w-toc__num { font-size: 11.5px; font-weight: 800; color: var(--c-muted); font-variant-numeric: tabular-nums; flex-shrink: 0; }
.m2w-toc__list a.is-active .m2w-toc__num { color: var(--c-accent); }

@media (min-width: 1024px) {
	.m2w-doc { display: grid; grid-template-columns: 236px minmax(0, 1fr); gap: clamp(28px, 3vw, 56px); align-items: start; }
	.m2w-doc__aside { position: sticky; top: 96px; max-height: calc(100vh - 120px); overflow-y: auto; overscroll-behavior: contain; }
	.m2w-doc__aside::-webkit-scrollbar { width: 6px; }
	.m2w-doc__aside::-webkit-scrollbar-thumb { background: var(--c-line); border-radius: 3px; }
}
@media (min-width: 1280px) { .m2w-doc__aside { top: 140px; } }

/* Mobile: TOC thành thanh chip cuộn ngang, dính dưới header */
@media (max-width: 1023px) {
	.m2w-doc__aside { position: sticky; top: 62px; z-index: 40; margin: 0 0 24px; background: color-mix(in oklab, var(--c-bg), #fff 40%); border-bottom: 1px solid var(--c-line); }
	.m2w-toc__title { display: none; }
	.m2w-toc__list { display: flex; gap: 4px; overflow-x: auto; border-left: 0; padding: 8px 2px; scrollbar-width: none; -webkit-overflow-scrolling: touch; }
	.m2w-toc__list::-webkit-scrollbar { display: none; }
	.m2w-toc__list a { white-space: nowrap; border: 1px solid var(--c-line); border-radius: 999px; padding: 7px 14px; background: var(--c-surface); }
	.m2w-toc__list a.is-active { border-color: var(--c-accent); background: color-mix(in oklab, var(--c-accent), #fff 90%); }
}

/* ---- Related programs ---- */
.m2w-rel { margin-top: clamp(48px, 6vw, 88px); padding-top: clamp(32px, 4vw, 48px); border-top: 1px solid var(--c-line); }
.m2w-rel__head { display: flex; align-items: center; gap: 12px; flex-wrap: wrap; margin-bottom: clamp(20px, 2.4vw, 30px); }
.m2w-rel__head h2 { font-size: clamp(22px, 2.4vw, 30px); margin: 0; flex: 1; }
.m2w-rel__flag :is(svg, img), .m2w-rel__flag .flag-chip { width: 30px; height: auto; border-radius: 3px; display: block; box-shadow: var(--shadow-sm); }
.m2w-rel__all { font-size: 14px; font-weight: 700; color: var(--c-accent); text-decoration: none; white-space: nowrap; }
.m2w-rel__all:hover { text-decoration: underline; }
.m2w-rel__grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(230px, 1fr)); gap: clamp(14px, 1.4vw, 20px); }
.m2w-rel__card {
	display: flex; flex-direction: column; gap: 6px;
	padding: clamp(18px, 1.6vw, 24px);
	background: var(--c-surface); border: 1px solid var(--c-line); border-radius: var(--radius-lg);
	text-decoration: none; box-shadow: var(--shadow-sm);
	transition: transform var(--m2w-dur-fast) var(--m2w-ease), box-shadow var(--m2w-dur-fast) var(--m2w-ease), border-color var(--m2w-dur-fast) var(--m2w-ease);
}
.m2w-rel__card:hover { transform: translateY(-4px); box-shadow: var(--shadow); border-color: var(--c-accent-soft); }
.m2w-rel__name { font-size: 18px; font-weight: 800; margin: 0; color: var(--c-ink); letter-spacing: -.01em; }
.m2w-rel__sub { font-size: 12.5px; font-weight: 600; color: var(--c-accent); }
.m2w-rel__desc { font-size: 14px; line-height: 1.55; color: var(--c-ink-soft); margin: 2px 0 0; flex: 1; }
.m2w-rel__go { font-size: 13.5px; font-weight: 700; color: var(--c-accent); margin-top: 8px; }

/* =========================================================
   PROGRAM PAGE — pass 2 "bolder" + CTA/internal-link (08/06)
   ========================================================= */

/* Hero: thêm tint cam ở mép phải (ấm, đúng brand) + đậm hơn */
.m2w-prog-hero::after {
	background:
		linear-gradient(112deg, rgba(11,17,28,.93) 0%, rgba(11,17,28,.76) 40%, rgba(11,17,28,.42) 76%, rgba(242,106,31,.22) 100%),
		linear-gradient(180deg, rgba(11,17,28,.15) 0%, transparent 30%, transparent 55%, rgba(11,17,28,.62) 100%);
}
@media (max-width: 720px) {
	.m2w-prog-hero::after { background: linear-gradient(180deg, rgba(11,17,28,.55) 0%, rgba(11,17,28,.88) 100%); }
}
.m2w-prog-hero h1 { font-size: clamp(36px, 5vw, 68px); letter-spacing: -0.02em; }

/* Quick-facts: dải accent trên đầu + value đậm hơn = "spec sheet" */
.m2w-qf::before { content: ""; display: block; height: 4px; background: linear-gradient(90deg, var(--c-accent) 0%, var(--c-accent-2) 100%); }

/* Số mục: chip cam đặc + chữ trắng (đậm hơn bản soft) — chỉ trong trang chương trình */
.m2w-doc__main .art-section__num {
	color: #fff;
	background: linear-gradient(135deg, var(--c-accent) 0%, var(--c-accent-2) 100%);
	border-color: transparent;
	box-shadow: 0 8px 18px -8px color-mix(in oklab, var(--c-accent), transparent 35%);
}

/* CTA dính trong rail mục lục (luôn thấy khi cuộn) — desktop */
.m2w-railcta {
	margin-top: 22px;
	padding: 18px;
	border-radius: var(--radius-lg);
	background: linear-gradient(160deg, var(--c-ink) 0%, #1b2740 100%);
	box-shadow: var(--shadow);
}
.m2w-railcta__h { font-size: 15px; font-weight: 800; margin: 0 0 6px; color: #fff; letter-spacing: -0.01em; line-height: 1.3; }
.m2w-railcta__p { font-size: 12.5px; line-height: 1.5; color: rgba(255,255,255,.78); margin: 0 0 14px; }
.m2w-railcta__btn {
	display: flex; align-items: center; justify-content: center; gap: 6px;
	padding: 11px 14px; border-radius: 999px;
	background: var(--c-accent); color: #fff; font-weight: 800; font-size: 13.5px;
	text-decoration: none;
	transition: background var(--m2w-dur-fast) var(--m2w-ease), transform var(--m2w-dur-fast) var(--m2w-ease);
}
.m2w-railcta__btn:hover { background: var(--c-accent-2); transform: translateY(-2px); }
@media (max-width: 1023px) { .m2w-railcta { display: none; } } /* mobile đã có sticky CTA toàn site */

/* Khối "Liên kết hữu ích" — internal link (công cụ + trang liên quan) */
.m2w-uselinks {
	margin-top: clamp(44px, 5vw, 76px);
	display: grid; grid-template-columns: 1fr 1fr; gap: clamp(22px, 3vw, 44px);
	padding: clamp(24px, 3vw, 38px);
	background: var(--c-bg-deep); border-radius: var(--radius-lg);
}
@media (max-width: 720px) { .m2w-uselinks { grid-template-columns: 1fr; gap: 26px; } }
.m2w-uselinks__h { display: flex; align-items: center; gap: 8px; font-size: 12.5px; font-weight: 800; letter-spacing: .05em; text-transform: uppercase; color: var(--c-muted); margin: 0 0 14px; }
.m2w-uselinks__h svg { width: 17px; height: 17px; color: var(--c-accent); flex-shrink: 0; }
.m2w-uselinks__chips { display: flex; flex-direction: column; gap: 8px; }
.m2w-uselinks__chip {
	display: flex; align-items: center; justify-content: space-between; gap: 10px;
	padding: 11px 16px; background: var(--c-surface);
	border: 1px solid var(--c-line); border-radius: 10px;
	font-size: 14.5px; font-weight: 600; color: var(--c-ink); text-decoration: none;
	transition: border-color var(--m2w-dur-fast) var(--m2w-ease), color var(--m2w-dur-fast) var(--m2w-ease), transform var(--m2w-dur-fast) var(--m2w-ease);
}
.m2w-uselinks__chip:hover { border-color: var(--c-accent); color: var(--c-accent); transform: translateX(3px); }
.m2w-uselinks__chip .arr { color: var(--c-accent); font-weight: 700; }

/* =========================================================
   PROGRAM PAGE — pass 3 "đẩy mạnh hơn" (08/06)
   hero glow + trust-line + quick-facts có icon + số mục to
   ========================================================= */

/* Vầng sáng cam top-right cho hero (nổi, đúng brand) */
.m2w-prog-hero::before {
	content: "";
	position: absolute;
	z-index: 1;
	top: -18%; right: -8%;
	width: 46%; height: 130%;
	background: radial-gradient(circle at 70% 30%, rgba(242,106,31,.42) 0%, rgba(242,106,31,.14) 38%, transparent 68%);
	pointer-events: none;
	mix-blend-mode: screen;
}
.m2w-prog-hero--solo::before { display: none; }
@media (max-width: 720px) { .m2w-prog-hero::before { display: none; } }

/* Dải tin cậy dưới CTA hero */
.m2w-trustline { list-style: none; display: flex; flex-wrap: wrap; gap: 10px 24px; margin: 24px 0 0; padding: 0; }
.m2w-trustline li { display: flex; align-items: center; gap: 9px; font-size: 14px; font-weight: 600; color: rgba(255,255,255,.94); }
.m2w-trustline li::before {
	content: "✓"; flex-shrink: 0;
	width: 20px; height: 20px; border-radius: 50%;
	display: grid; place-items: center;
	background: var(--c-accent); color: #fff; font-size: 12px; font-weight: 800;
	box-shadow: 0 2px 8px rgba(242,106,31,.5);
}
.m2w-prog-hero--solo .m2w-trustline li { color: var(--c-ink-soft); }

/* Quick-facts: icon từng ô → "spec sheet" */
.m2w-qf__tile { flex-direction: row; align-items: center; gap: 13px; }
.m2w-qf__ico {
	flex-shrink: 0; width: 40px; height: 40px; border-radius: 11px;
	display: grid; place-items: center;
	background: color-mix(in oklab, var(--c-accent), #fff 84%);
	color: var(--c-accent);
}
.m2w-qf__ico svg { width: 21px; height: 21px; }
.m2w-qf__dot { width: 10px; height: 10px; border-radius: 50%; background: var(--c-accent); }
.m2w-qf__txt { display: flex; flex-direction: column; gap: 3px; min-width: 0; }
.m2w-qf__value { font-size: clamp(15px, 1.15vw, 16.5px); }

/* Số mục TO + nổi hơn trong trang chương trình */
.m2w-doc__main .art-section__num {
	min-width: 2.85em; height: 2.85em;
	font-size: clamp(20px, 1.9vw, 27px);
	border-radius: 14px;
}
.m2w-doc__main .art-section__head { gap: 18px; }
.m2w-doc__main .art-section__head h2 { font-size: clamp(23px, 2.5vw, 33px); letter-spacing: -0.015em; }

/* =========================================================
   PROGRAM PAGE — pass 4 "kịch tính + editorial" (08/06)
   hero cao + badge cam + H1 cực to · số mục khổng lồ mờ + rule
   ========================================================= */

/* --- Hero kịch tính --- */
.m2w-prog-hero { min-height: clamp(460px, 58vh, 620px); }
.m2w-prog-hero h1 { font-size: clamp(40px, 6vw, 82px); line-height: 1.04; letter-spacing: -0.025em; max-width: 17ch; }
.m2w-prog-hero .hero__lede { font-size: clamp(16px, 1.35vw, 19px); }

/* Badge cam nổi trên H1 */
.m2w-prog-hero__badge {
	display: inline-flex; align-items: center; gap: 8px;
	margin: 16px 0 4px;
	padding: 7px 15px 7px 11px;
	border-radius: 999px;
	background: linear-gradient(135deg, var(--c-accent) 0%, var(--c-accent-2) 100%);
	color: #fff; font-size: 13px; font-weight: 800; letter-spacing: .02em;
	box-shadow: 0 8px 22px -8px rgba(242,106,31,.7);
}
.m2w-prog-hero__badge-flag :is(svg, img), .m2w-prog-hero__badge-flag .flag-chip {
	width: 20px; height: auto; border-radius: 3px; display: block; box-shadow: 0 0 0 1px rgba(255,255,255,.5);
}
.m2w-prog-hero--solo .m2w-prog-hero__badge { color: #fff; }

/* --- Số mục: chip cam GỌN căn hàng tiêu đề (bỏ bản số khổng lồ — Edward chê xấu 08/06)
   Áp cho CẢ trang chương trình (.m2w-doc__main) VÀ hub/overview (.m2w-prog-body) cho đồng bộ. --- */
.m2w-doc__main .art-section__head,
.m2w-prog-body .art-section__head {
	display: flex;
	align-items: center;
	gap: clamp(12px, 1.4vw, 18px);
	border-top: 1px solid var(--c-line);
	padding-top: clamp(20px, 2.4vw, 32px);
	margin-bottom: clamp(18px, 2vw, 26px);
}
.m2w-doc__main .art-section__num,
.m2w-prog-body .art-section__num {
	flex-shrink: 0;
	min-width: 2.6em; height: 2.6em; padding: 0 .55em;
	display: inline-flex; align-items: center; justify-content: center;
	font-size: clamp(16px, 1.4vw, 20px); font-weight: 800; line-height: 1; letter-spacing: 0;
	color: #fff;
	background: linear-gradient(135deg, var(--c-accent) 0%, var(--c-accent-2) 100%);
	border: 0; border-radius: 13px;
	box-shadow: 0 8px 18px -8px color-mix(in oklab, var(--c-accent), transparent 45%);
	-webkit-text-stroke: 0;
}
.m2w-doc__main .art-section__head h2,
.m2w-prog-body .art-section__head h2 { font-size: clamp(22px, 2.3vw, 31px); letter-spacing: -0.015em; line-height: 1.25; margin: 0; }
/* mục đầu (ngay dưới quick-facts) không cần đường kẻ trên */
.m2w-doc__main .article-page > section:first-child .art-section__head,
.m2w-prog-body .article-page > section:first-child .art-section__head { border-top: 0; padding-top: 0; }

/* TOC: nhãn gọn, tối đa 2 dòng đều — hết lộn xộn (Edward 08/06) */
/* Desktop: mỗi mục đúng 1 DÒNG đều tăm tắp (nhãn dài tự cắt …, hover hiện đủ) */
@media (min-width: 1024px) {
	.m2w-toc__list a { align-items: center; }
	.m2w-toc__text { flex: 1; min-width: 0; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
}

/* Hero overview (không có quick-facts đè) — thấp gọn, đáy thường (08/06) */
.m2w-prog-hero--flush { min-height: clamp(320px, 38vh, 440px); padding-bottom: clamp(40px, 5vw, 60px); }
/* breadcrumb sáng trên mọi hero ảnh (kể cả không phải prog-hero) */
.hero--photo .m2w-crumb a { color: rgba(255,255,255,.78); }
.hero--photo .m2w-crumb a:hover { color: #fff; }
.hero--photo .m2w-crumb span[aria-current] { color: rgba(255,255,255,.95); font-weight: 600; }
.hero--photo .m2w-crumb__sep { color: rgba(255,255,255,.5); }
