/* ============================================================
   PANEXA LOGISTICS – Theme stylesheet
   ============================================================ */

:root {
	--green-900: #0a3a1e;
	--green-800: #0f4d28;
	--green-700: #156436;
	--green-600: #1d7a3f;
	--green-500: #2a9650;
	--green-100: #d8ecde;
	--green-50:  #eef7f0;
	--blue-900:  #112f46;
	--blue-700:  #1f5f7d;
	--blue-50:   #edf6f9;
	--accent:    #f5901f;
	--accent-dk: #dd7c0d;
	--gold-50:   #fff7e8;
	--ink:       #15271d;
	--muted:     #5d6f64;
	--line:      #e2ece5;
	--soft:      #f2f7f3;
	--white:     #ffffff;
	--radius:    8px;
	--radius-sm: 6px;
	--shadow:    0 18px 40px -22px rgba(10, 58, 30, .35);
	--shadow-sm: 0 8px 24px -16px rgba(10, 58, 30, .4);
	--container: 1200px;
	--font:      'Be Vietnam Pro', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Arial, sans-serif;
}

/* ---------- Base ---------- */
*,
*::before,
*::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }
.landing section[id],
[id="news"] { scroll-margin-top: 92px; }

body {
	margin: 0;
	font-family: var(--font);
	font-size: 16px;
	line-height: 1.7;
	color: var(--ink);
	background: var(--white);
	overflow-x: hidden;
	-webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--green-600); text-decoration: none; transition: color .2s ease; }
a:hover { color: var(--green-800); }
h1, h2, h3, h4 { margin: 0 0 .5em; line-height: 1.25; font-weight: 700; }
p { margin: 0 0 1em; }
ul { margin: 0; padding: 0; list-style: none; }
svg { width: 100%; height: 100%; }

.container {
	width: 100%;
	max-width: var(--container);
	margin: 0 auto;
	padding: 0 24px;
}
.container--narrow { max-width: 860px; }

.screen-reader-text {
	position: absolute !important;
	width: 1px; height: 1px;
	overflow: hidden;
	clip: rect(1px, 1px, 1px, 1px);
	white-space: nowrap;
}
.skip-link {
	position: absolute;
	left: -999px;
	top: 0;
	background: var(--green-700);
	color: #fff;
	padding: 10px 18px;
	z-index: 999;
}
.skip-link:focus { left: 8px; top: 8px; color: #fff; }

/* ---------- Buttons ---------- */
.btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	padding: 12px 24px;
	border-radius: 999px;
	font-weight: 600;
	font-size: 15px;
	border: 2px solid transparent;
	cursor: pointer;
	transition: transform .15s ease, box-shadow .2s ease, background .2s ease, color .2s ease;
	white-space: nowrap;
	font-family: inherit;
}
.btn:hover { transform: translateY(-2px); }
.btn--accent { background: var(--accent); color: #fff; box-shadow: 0 12px 24px -12px rgba(245, 144, 31, .8); }
.btn--accent:hover { background: var(--accent-dk); color: #fff; }
.btn--ghost { background: rgba(255, 255, 255, .14); color: #fff; border-color: rgba(255, 255, 255, .5); }
.btn--ghost:hover { background: #fff; color: var(--green-800); }
.btn--outline { background: transparent; color: var(--green-700); border-color: var(--green-600); }
.btn--outline:hover { background: var(--green-600); color: #fff; }
.btn--lg { padding: 15px 32px; font-size: 16px; }
.btn--block { width: 100%; }

/* ---------- Topbar ---------- */
.topbar {
	background: var(--green-900);
	color: #d5e6da;
	font-size: 13.5px;
}
.topbar__inner {
	display: flex;
	justify-content: space-between;
	align-items: center;
	min-height: 40px;
	gap: 16px;
}
.topbar__left,
.topbar__right { display: flex; align-items: center; gap: 22px; }
.topbar__item {
	display: inline-flex;
	align-items: center;
	gap: 7px;
	color: #d5e6da;
}
.topbar__item svg { width: 15px; height: 15px; fill: var(--green-500); flex: none; }
.topbar__item:hover { color: #fff; }
.topbar a.topbar__item:last-child {
	background: var(--green-600);
	padding: 4px 12px;
	border-radius: 999px;
	color: #fff;
}

/* ---------- Header ---------- */
.site-header {
	position: sticky;
	top: 0;
	z-index: 100;
	background: #fff;
	border-bottom: 1px solid var(--line);
	transition: box-shadow .25s ease;
}
.site-header.is-scrolled { box-shadow: 0 10px 30px -20px rgba(10, 58, 30, .5); }
.site-header__inner {
	display: flex;
	align-items: center;
	gap: 18px;
	min-height: 74px;
}
.site-branding { display: flex; align-items: center; gap: 10px; flex: none; min-width: 0; }
.site-logo { display: block; flex: none; }
.site-logo img { height: 58px; width: auto; }
.custom-logo-link img { height: 58px; width: auto; }
.site-name { display: flex; flex-direction: column; line-height: 1.2; }
.site-name__title {
	font-weight: 800;
	font-size: 21px;
	color: var(--green-800);
	letter-spacing: .3px;
	white-space: nowrap;
}
.site-name__tag { font-size: 12px; color: var(--muted); font-weight: 500; }

.main-navigation { margin-left: auto; }
.nav-menu { display: flex; align-items: center; gap: 2px; }
.nav-menu a {
	display: block;
	padding: 10px 10px;
	font-size: 14px;
	font-weight: 600;
	color: var(--ink);
	border-radius: 8px;
	white-space: nowrap;
}
.nav-menu a:hover { color: var(--green-700); background: var(--green-50); }
.site-header__cta { flex: none; }

.menu-toggle {
	display: none;
	width: 44px; height: 44px;
	border: 1px solid var(--line);
	background: #fff;
	border-radius: 10px;
	cursor: pointer;
	position: relative;
}
.menu-toggle__bar,
.menu-toggle__bar::before,
.menu-toggle__bar::after {
	content: "";
	position: absolute;
	left: 50%;
	width: 20px; height: 2px;
	background: var(--green-800);
	transform: translateX(-50%);
	transition: transform .2s ease, opacity .2s ease;
}
.menu-toggle__bar { top: 50%; margin-top: -1px; }
.menu-toggle__bar::before { top: -6px; }
.menu-toggle__bar::after { top: 6px; }
.menu-toggle[aria-expanded="true"] .menu-toggle__bar { background: transparent; }
.menu-toggle[aria-expanded="true"] .menu-toggle__bar::before { top: 0; transform: translateX(-50%) rotate(45deg); }
.menu-toggle[aria-expanded="true"] .menu-toggle__bar::after { top: 0; transform: translateX(-50%) rotate(-45deg); }

/* ---------- Sections ---------- */
.section { padding: 84px 0; }
.section--soft { background: var(--soft); }
.section--dark {
	background: linear-gradient(160deg, var(--green-800), var(--green-900));
	color: #e6f1ea;
}
.section__head { max-width: 720px; margin: 0 auto 48px; text-align: center; }
.section__head--light .section__desc { color: #bcd6c5; }
.eyebrow {
	display: inline-block;
	font-size: 13px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 1.5px;
	color: var(--green-600);
	background: var(--green-50);
	padding: 6px 14px;
	border-radius: 999px;
	margin-bottom: 14px;
}
.eyebrow--light { background: rgba(255, 255, 255, .12); color: #aee4bf; }
.section__title { font-size: 32px; color: inherit; }
.section--dark .section__title { color: #fff; }
.section__desc { font-size: 16.5px; color: var(--muted); margin: 0; }
.section__cta { text-align: center; margin-top: 44px; }

/* ---------- Grids ---------- */
.grid { display: grid; gap: 24px; }
.grid--3 { grid-template-columns: repeat(3, 1fr); }
.grid--4 { grid-template-columns: repeat(4, 1fr); }
.grid--services { grid-template-columns: repeat(3, 1fr); }

/* ---------- Hero ---------- */
.hero {
	position: relative;
	color: #fff;
	background-color: var(--green-900);
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	overflow: hidden;
}
.hero__overlay {
	position: absolute;
	inset: 0;
	z-index: 0;
	background: linear-gradient(112deg, rgba(10, 58, 30, .78) 0%, rgba(15, 77, 40, .62) 44%, rgba(10, 58, 30, .2) 100%);
}
.hero__inner {
	position: relative;
	z-index: 1;
	display: grid;
	grid-template-columns: minmax(0, 1.08fr) minmax(340px, .92fr);
	gap: 48px;
	align-items: center;
	min-height: 580px;
	padding-top: 80px;
	padding-bottom: 80px;
}
.hero__content { max-width: 690px; min-width: 0; }
.hero__badge {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	max-width: 100%;
	background: rgba(255, 255, 255, .12);
	border: 1px solid rgba(255, 255, 255, .22);
	padding: 8px 16px;
	border-radius: 999px;
	font-size: 13.5px;
	font-weight: 600;
	margin-bottom: 20px;
}
.hero__badge svg { width: 16px; height: 16px; fill: var(--accent); flex: none; }
.hero__title {
	font-size: 44px;
	font-weight: 800;
	color: #fff;
	margin-bottom: 16px;
}
.hero__sub { font-size: 17.5px; color: #c8ddce; max-width: 540px; }
.hero__commit {
	display: flex;
	flex-wrap: wrap;
	gap: 10px 22px;
	margin: 22px 0 26px;
}
.hero__commit li {
	display: flex;
	align-items: center;
	gap: 8px;
	font-weight: 600;
	font-size: 15px;
}
.hero__commit svg { width: 20px; height: 20px; fill: var(--green-500); background: #fff; border-radius: 50%; padding: 3px; flex: none; }
.hero__actions { display: flex; flex-wrap: wrap; gap: 14px; }
.hero__hotline {
	display: flex;
	align-items: center;
	gap: 12px;
	margin-top: 26px;
}
.hero__hotline svg {
	width: 44px; height: 44px;
	fill: #fff;
	background: rgba(255, 255, 255, .12);
	border-radius: 50%;
	padding: 11px;
	flex: none;
}
.hero__hotline span { display: block; font-size: 13px; color: #aecbb6; }
.hero__hotline a { display: block; font-size: 22px; font-weight: 800; color: #fff; }

.hero__tools {
	width: 100%;
	min-width: 0;
	justify-self: end;
}
.quick-card {
	background: rgba(255, 255, 255, .96);
	color: var(--ink);
	min-width: 0;
	border: 1px solid rgba(255, 255, 255, .44);
	border-radius: var(--radius);
	padding: 26px;
	box-shadow: 0 26px 60px -28px rgba(0, 0, 0, .55);
}
.quick-card__label {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	font-size: 12px;
	font-weight: 800;
	text-transform: uppercase;
	color: var(--accent-dk);
	letter-spacing: .8px;
	margin-bottom: 10px;
}
.quick-card__label::before {
	content: "";
	width: 8px;
	height: 8px;
	border-radius: 50%;
	background: var(--accent);
}
.quick-card__title {
	color: var(--green-900);
	font-size: 24px;
	margin-bottom: 18px;
}
.quick-search {
	display: grid;
	grid-template-columns: 1fr auto;
	gap: 10px;
	align-items: center;
}
.quick-search__field {
	display: flex;
	align-items: center;
	gap: 9px;
	min-width: 0;
	background: var(--soft);
	border: 1.5px solid var(--line);
	border-radius: var(--radius-sm);
	padding: 0 12px;
}
.quick-search__field svg {
	width: 19px;
	height: 19px;
	fill: var(--green-600);
	flex: none;
}
.quick-search__field input {
	width: 100%;
	min-width: 0;
	height: 48px;
	border: 0;
	background: transparent;
	font-family: inherit;
	font-size: 14px;
	color: var(--ink);
}
.quick-search__field input:focus { outline: none; }
.market-tabs {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 8px;
	margin: 16px 0;
}
.market-tabs a {
	display: flex;
	align-items: center;
	justify-content: center;
	min-height: 38px;
	background: var(--blue-50);
	border: 1px solid #d2e8ef;
	border-radius: var(--radius-sm);
	color: var(--blue-700);
	font-weight: 800;
	font-size: 13px;
}
.market-tabs a:hover {
	background: var(--blue-700);
	border-color: var(--blue-700);
	color: #fff;
}
.track-box {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 14px;
	background: var(--green-900);
	border-radius: var(--radius-sm);
	padding: 16px;
	color: #fff;
}
.track-box span {
	display: block;
	font-size: 12px;
	color: #a9cdb4;
	font-weight: 600;
}
.track-box strong {
	display: block;
	font-size: 14px;
	line-height: 1.45;
}
.track-box__link {
	flex: none;
	color: #fff;
	background: rgba(255, 255, 255, .13);
	border: 1px solid rgba(255, 255, 255, .2);
	border-radius: var(--radius-sm);
	padding: 9px 12px;
	font-size: 13px;
	font-weight: 800;
}
.track-box__link:hover { color: #fff; background: var(--accent); border-color: var(--accent); }

/* ---------- Stats ---------- */
.stats {
	background: var(--green-700);
	color: #fff;
}
.stats__grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
}
.stats__item {
	text-align: center;
	padding: 30px 16px;
	border-right: 1px solid rgba(255, 255, 255, .12);
}
.stats__item:last-child { border-right: none; }
.stats__num {
	display: block;
	font-size: 36px;
	font-weight: 800;
	color: #fff;
}
.stats__label { font-size: 14px; color: #cfe6d7; }

/* ---------- Channels ---------- */
.section--channels {
	background:
		linear-gradient(180deg, #fff 0%, #f7fbf8 100%);
}
.channel-grid {
	display: grid;
	grid-template-columns: repeat(6, 1fr);
	gap: 14px;
}
.channel-card {
	background: #fff;
	border: 1px solid var(--line);
	border-radius: var(--radius);
	padding: 22px 18px;
	min-height: 270px;
	transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.channel-card:hover {
	transform: translateY(-5px);
	box-shadow: var(--shadow-sm);
	border-color: #d2e8ef;
}
.channel-card__mark {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 42px;
	height: 42px;
	border-radius: var(--radius-sm);
	background: var(--gold-50);
	color: var(--accent-dk);
	font-weight: 800;
	margin-bottom: 14px;
}
.channel-card:nth-child(even) .channel-card__mark {
	background: var(--blue-50);
	color: var(--blue-700);
}
.channel-card__title {
	font-size: 17px;
	color: var(--green-900);
	margin-bottom: 8px;
}
.channel-card__text {
	font-size: 14px;
	color: var(--muted);
	margin: 0;
}

/* ---------- Category media ---------- */
.category-media {
	position: relative;
	overflow: hidden;
	aspect-ratio: 16 / 9;
	margin: 0 0 16px;
	border-radius: var(--radius-sm);
	background: var(--green-50);
}
.category-media img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform .35s ease;
}
.category-media::after {
	content: "";
	position: absolute;
	inset: 0;
	background: linear-gradient(180deg, rgba(10, 58, 30, 0), rgba(10, 58, 30, .14));
	pointer-events: none;
}
.card:hover .category-media img,
.service-card:hover .category-media img,
.mini-card:hover .category-media img,
.audience-card:hover .category-media img,
.policy-card:hover .category-media img,
.channel-card:hover .category-media img {
	transform: scale(1.05);
}
.category-media--compact { aspect-ratio: 16 / 10; }
.category-media--wide { aspect-ratio: 16 / 8; }

/* ---------- Cards (about) ---------- */
.card {
	background: #fff;
	border: 1px solid var(--line);
	border-radius: var(--radius);
	padding: 32px 28px;
	transition: transform .2s ease, box-shadow .2s ease;
}
.card:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.card__icon {
	display: flex;
	width: 58px; height: 58px;
	border-radius: 14px;
	background: var(--green-50);
	margin-bottom: 18px;
	padding: 14px;
}
.card__icon svg { fill: var(--green-600); }
.card__title { font-size: 19px; color: var(--green-800); }
.card__text { color: var(--muted); margin: 0; font-size: 15px; }

/* ---------- Service cards ---------- */
.service-card {
	position: relative;
	background: #fff;
	border: 1px solid var(--line);
	border-radius: var(--radius);
	padding: 34px 28px;
	overflow: hidden;
	transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.service-card::before {
	content: "";
	position: absolute;
	left: 0; top: 0;
	width: 100%; height: 4px;
	background: linear-gradient(90deg, var(--green-600), var(--green-500));
	transform: scaleX(0);
	transform-origin: left;
	transition: transform .25s ease;
}
.service-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); border-color: var(--green-100); }
.service-card:hover::before { transform: scaleX(1); }
.service-card__no {
	position: absolute;
	top: 20px; right: 24px;
	font-size: 40px;
	font-weight: 800;
	color: var(--green-50);
}
.service-card__icon {
	display: flex;
	width: 62px; height: 62px;
	border-radius: 16px;
	background: linear-gradient(150deg, var(--green-600), var(--green-800));
	padding: 15px;
	margin-bottom: 18px;
}
.service-card__icon svg { fill: #fff; }
.service-card__title { font-size: 18.5px; color: var(--green-800); }
.service-card__text { color: var(--muted); font-size: 15px; }
.service-card__link {
	display: inline-block;
	margin-top: 6px;
	font-weight: 700;
	font-size: 14.5px;
	color: var(--accent-dk);
}

/* ---------- Mini cards ---------- */
.mini-card {
	background: #fff;
	border: 1px solid var(--line);
	border-radius: var(--radius-sm);
	padding: 26px 22px;
	transition: transform .2s ease, box-shadow .2s ease;
}
.mini-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-sm); }
.mini-card__icon {
	display: flex;
	width: 50px; height: 50px;
	padding: 12px;
	border-radius: 12px;
	background: var(--green-50);
	margin-bottom: 14px;
}
.mini-card__icon svg { fill: var(--green-600); }
.mini-card__title { font-size: 16.5px; color: var(--green-800); }
.mini-card__text { font-size: 14px; color: var(--muted); margin: 0; }

/* ---------- Audience ---------- */
.audience-card {
	text-align: center;
	background: var(--green-50);
	border: 1px solid var(--green-100);
	border-radius: var(--radius);
	padding: 36px 22px;
	transition: transform .2s ease, background .2s ease;
}
.audience-card:hover { transform: translateY(-6px); background: #fff; box-shadow: var(--shadow); }
.audience-card__icon {
	display: flex;
	width: 72px; height: 72px;
	margin: 0 auto 16px;
	padding: 18px;
	border-radius: 50%;
	background: #fff;
	box-shadow: var(--shadow-sm);
}
.audience-card__icon svg { fill: var(--green-600); }
.audience-card__title { font-size: 16.5px; color: var(--green-800); margin: 0; }

/* ---------- Steps ---------- */
.steps {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 24px;
}
.step {
	display: flex;
	gap: 16px;
	background: rgba(255, 255, 255, .06);
	border: 1px solid rgba(255, 255, 255, .12);
	border-radius: var(--radius);
	padding: 26px 24px;
	transition: background .2s ease;
}
.step:hover { background: rgba(255, 255, 255, .12); }
.step__num {
	flex: none;
	width: 46px; height: 46px;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 12px;
	background: var(--accent);
	color: #fff;
	font-weight: 800;
	font-size: 20px;
}
.step__title { font-size: 17px; color: #fff; margin-bottom: 6px; }
.step__text { font-size: 14px; color: #bcd6c5; margin: 0; }

/* ---------- Conversion band ---------- */
.conversion-band {
	background: var(--blue-900);
	color: #fff;
	padding: 30px 0;
}
.conversion-band__inner {
	display: grid;
	grid-template-columns: 1.4fr auto auto;
	gap: 28px;
	align-items: center;
}
.conversion-band__eyebrow {
	display: block;
	color: #8fd1e8;
	font-size: 13px;
	font-weight: 800;
	text-transform: uppercase;
	letter-spacing: .8px;
	margin-bottom: 6px;
}
.conversion-band h2 {
	font-size: 23px;
	color: #fff;
	margin: 0;
}
.conversion-band__list {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	max-width: 330px;
}
.conversion-band__list li {
	background: rgba(255, 255, 255, .1);
	border: 1px solid rgba(255, 255, 255, .14);
	border-radius: var(--radius-sm);
	padding: 7px 10px;
	font-size: 13px;
	font-weight: 700;
	color: #d6edf4;
}

/* ---------- Pricing ---------- */
.section--pricing {
	position: relative;
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
}
.section--pricing__overlay {
	position: absolute;
	inset: 0;
	background: linear-gradient(160deg, rgba(10,58,30,.88), rgba(15,77,40,.82));
}
.section--pricing > .container { position: relative; z-index: 1; }
/* Chỉ tô trắng tiêu đề/desc nằm TRỰC TIẾP trên overlay tối, KHÔNG ép cả section
   để bảng giá nằm trong card trắng vẫn hiển thị màu chữ tối mặc định. */
.section--pricing .section__head { color: #fff; }
.section--pricing .section__title { color: #fff; }
.section--pricing .section__desc { color: #c5dccc; }

.pricing {
	max-width: 920px;
	margin: 0 auto;
	background: #fff;
	border: 1px solid var(--line);
	border-radius: var(--radius);
	padding: 12px;
	box-shadow: var(--shadow);
}
.pricing__table-wrap { overflow-x: auto; }
.pricing__table {
	width: 100%;
	border-collapse: collapse;
}
.pricing__table th {
	background: var(--green-700);
	color: #fff;
	text-align: left;
	padding: 16px 18px;
	font-size: 14px;
}
.pricing__table th:first-child { border-radius: 8px 0 0 8px; }
.pricing__table th:last-child { border-radius: 0 8px 8px 0; }
.pricing__table td {
	padding: 16px 18px;
	border-bottom: 1px solid var(--line);
	font-size: 15px;
}
.pricing__table tbody tr:last-child td { border-bottom: none; }
.pricing__table td strong { color: var(--green-700); font-size: 16px; }
.pricing__note {
	display: flex;
	gap: 10px;
	background: var(--green-50);
	border-radius: var(--radius-sm);
	padding: 14px 16px;
	margin: 14px;
	font-size: 13.5px;
	color: var(--muted);
}
.pricing__note svg { width: 20px; height: 20px; fill: var(--green-600); flex: none; }
.pricing__cta {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
	justify-content: center;
	padding: 8px 14px 18px;
}

/* ---------- Policy ---------- */
.policy-card {
	background: #fff;
	border: 1px solid var(--line);
	border-radius: var(--radius);
	padding: 28px 24px;
	transition: transform .2s ease, box-shadow .2s ease;
}
.policy-card:hover { transform: translateY(-5px); box-shadow: var(--shadow); }
.policy-card__check {
	display: flex;
	width: 42px; height: 42px;
	padding: 9px;
	border-radius: 50%;
	background: var(--green-600);
	margin-bottom: 14px;
}
.policy-card__check svg { fill: #fff; }
.policy-card__title { font-size: 17px; color: var(--green-800); }
.policy-card__text { font-size: 14.5px; color: var(--muted); margin: 0; }

/* ---------- Gallery ---------- */
.gallery {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	grid-auto-rows: 200px;
	gap: 16px;
}
.gallery__item {
	position: relative;
	margin: 0;
	border-radius: var(--radius-sm);
	overflow: hidden;
	background: var(--green-50);
	border: 1px solid var(--green-100);
}
.gallery__item--wide { grid-column: span 2; }
.gallery__item img { width: 100%; height: 100%; object-fit: cover; }
.gallery__placeholder {
	display: flex;
	align-items: center;
	justify-content: center;
	height: 100%;
}
.gallery__placeholder svg { width: 54px; height: 54px; fill: var(--green-100); }
.gallery__caption {
	position: absolute;
	left: 0; right: 0; bottom: 0;
	padding: 22px 16px 12px;
	font-size: 13.5px;
	font-weight: 600;
	color: #fff;
	background: linear-gradient(transparent, rgba(10, 58, 30, .85));
}

/* ---------- FAQ ---------- */
.faq { display: flex; flex-direction: column; gap: 12px; }
.faq__item {
	background: #fff;
	border: 1px solid var(--line);
	border-radius: var(--radius-sm);
	overflow: hidden;
}
.faq__item[open] { border-color: var(--green-100); box-shadow: var(--shadow-sm); }
.faq__q {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
	padding: 18px 22px;
	font-weight: 700;
	font-size: 16px;
	color: var(--green-800);
	cursor: pointer;
	list-style: none;
}
.faq__q::-webkit-details-marker { display: none; }
.faq__icon {
	position: relative;
	flex: none;
	width: 22px; height: 22px;
}
.faq__icon::before,
.faq__icon::after {
	content: "";
	position: absolute;
	background: var(--green-600);
	transition: transform .2s ease;
}
.faq__icon::before { left: 0; top: 10px; width: 22px; height: 2px; }
.faq__icon::after { left: 10px; top: 0; width: 2px; height: 22px; }
.faq__item[open] .faq__icon::after { transform: scaleY(0); }
.faq__a { padding: 0 22px 20px; }
.faq__a p { margin: 0; color: var(--muted); font-size: 15px; }

/* ---------- Post cards ---------- */
.post-card {
	background: #fff;
	border: 1px solid var(--line);
	border-radius: var(--radius);
	overflow: hidden;
	display: flex;
	flex-direction: column;
	transition: transform .2s ease, box-shadow .2s ease;
}
.post-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.post-card__thumb {
	display: block;
	aspect-ratio: 16 / 10;
	overflow: hidden;
	background: var(--green-50);
}
.post-card__thumb img { width: 100%; height: 100%; object-fit: cover; }
.post-card__noimg {
	display: flex;
	align-items: center;
	justify-content: center;
	height: 100%;
}
.post-card__noimg svg { width: 56px; height: 56px; fill: var(--green-100); }
.post-card__body { padding: 22px 24px; display: flex; flex-direction: column; flex: 1; }
.post-card__date { font-size: 13px; color: var(--accent-dk); font-weight: 600; }
.post-card__title { font-size: 18px; margin: 6px 0 8px; }
.post-card__title a { color: var(--green-800); }
.post-card__title a:hover { color: var(--green-600); }
.post-card__excerpt { font-size: 14.5px; color: var(--muted); }
.post-card__link { margin-top: auto; font-weight: 700; font-size: 14px; }

/* ---------- Contact / CTA ---------- */
.section--cta {
	background: linear-gradient(160deg, var(--green-700), var(--green-900));
	color: #fff;
}
.contact {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 48px;
	align-items: center;
}
.contact__title { font-size: 32px; color: #fff; }
.contact__desc { color: #c8ddce; font-size: 16.5px; }
.contact__list { margin-top: 26px; display: flex; flex-direction: column; gap: 16px; }
.contact__list li { display: flex; align-items: center; gap: 14px; }
.contact__list svg {
	width: 46px; height: 46px;
	flex: none;
	padding: 12px;
	border-radius: 12px;
	background: rgba(255, 255, 255, .12);
	fill: #fff;
}
.contact__list span { display: block; font-size: 13px; color: #aecbb6; }
.contact__list a,
.contact__list strong { color: #fff; font-weight: 700; font-size: 16px; }

.contact__form-wrap { }
.contact-form {
	background: #fff;
	color: var(--ink);
	border-radius: 18px;
	padding: 32px 30px;
	box-shadow: var(--shadow);
}
.contact-form__title { font-size: 21px; color: var(--green-800); margin-bottom: 18px; }
.form-row { margin-bottom: 14px; }
.form-row label {
	display: block;
	font-size: 14px;
	font-weight: 600;
	margin-bottom: 6px;
	color: var(--ink);
}
.form-row label span { color: #e0322f; }
.form-row input,
.form-row textarea {
	width: 100%;
	padding: 12px 14px;
	border: 1.5px solid var(--line);
	border-radius: 10px;
	font-family: inherit;
	font-size: 15px;
	color: var(--ink);
	background: var(--soft);
	transition: border-color .2s ease, background .2s ease;
}
.form-row input:focus,
.form-row textarea:focus {
	outline: none;
	border-color: var(--green-500);
	background: #fff;
}
.form-row textarea { resize: vertical; }
.form-row--hp { position: absolute; left: -9999px; height: 0; overflow: hidden; }
.form-row--upload input[type="file"] {
	width: 100%;
	padding: 10px;
	border: 1px dashed #b6c8be;
	border-radius: 10px;
	background: #f5faf6;
	font-size: 13.5px;
	cursor: pointer;
}
.form-row--upload input[type="file"]:hover { border-color: var(--green-600); background: #eef7f0; }
.contact-form__upload-list { margin: 8px 0 0; font-size: 12.5px; color: var(--muted); min-height: 1em; }
.contact-form__note { font-size: 12.5px; color: var(--muted); text-align: center; margin: 12px 0 0; }
.contact-form__feedback { margin: 12px 0 0; font-size: 14px; font-weight: 600; text-align: center; }
.contact-form__feedback.is-ok { color: var(--green-600); }
.contact-form__feedback.is-error { color: #d33; }
.contact-form.is-loading button { opacity: .65; pointer-events: none; }

/* ---------- Footer ---------- */
.site-footer {
	background: var(--green-900);
	color: #b9d2c1;
	font-size: 14.5px;
}
.site-footer__grid {
	display: grid;
	grid-template-columns: 1.4fr 1.2fr 1fr 1.1fr;
	gap: 40px;
	padding: 64px 24px 48px;
}
.footer-brand { display: flex; align-items: center; gap: 12px; margin-bottom: 14px; }
.footer-brand img { width: 52px; height: 52px; background: #fff; border-radius: 10px; padding: 5px; }
.footer-brand span { font-size: 19px; font-weight: 800; color: #fff; }
.footer-fullname { font-weight: 600; color: #dcebe1; margin-bottom: 6px; }
.footer-slogan { color: #9cbaa6; margin-bottom: 6px; }
.footer-tax { font-size: 13px; color: #9cbaa6; }
.footer-title {
	color: #fff;
	font-size: 16px;
	margin-bottom: 16px;
	position: relative;
	padding-bottom: 10px;
}
.footer-title::after {
	content: "";
	position: absolute;
	left: 0; bottom: 0;
	width: 36px; height: 3px;
	background: var(--accent);
	border-radius: 2px;
}
.footer-list { display: flex; flex-direction: column; gap: 9px; }
.footer-list li { line-height: 1.5; }
.footer-list span { color: #fff; font-weight: 600; }
.footer-list a { color: #b9d2c1; }
.footer-list a:hover { color: var(--accent); }
.footer-list--links a { display: inline-flex; }
.footer-list--links a::before { content: "›"; margin-right: 8px; color: var(--accent); }
.footer-commit { display: flex; flex-direction: column; gap: 9px; }
.footer-commit li { position: relative; padding-left: 24px; line-height: 1.5; }
.footer-commit li::before {
	content: "✓";
	position: absolute;
	left: 0; top: 0;
	width: 17px; height: 17px;
	font-size: 11px;
	display: flex;
	align-items: center;
	justify-content: center;
	background: var(--green-600);
	color: #fff;
	border-radius: 50%;
	margin-top: 3px;
}
.footer-social { display: flex; gap: 10px; margin-top: 16px; }
.footer-social__link {
	padding: 6px 14px;
	border: 1px solid rgba(255, 255, 255, .2);
	border-radius: 999px;
	font-size: 13px;
	color: #d5e6da;
}
.footer-social__link:hover { background: var(--green-600); color: #fff; border-color: var(--green-600); }
.site-footer__bottom { border-top: 1px solid rgba(255, 255, 255, .1); }
.site-footer__bottom-inner {
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
	gap: 8px;
	padding: 18px 24px;
	font-size: 13px;
	color: #8fae9c;
}
.site-footer__bottom-inner p { margin: 0; }

/* ---------- Floating contact ---------- */
.floating-contact {
	position: fixed;
	right: 18px;
	bottom: 18px;
	z-index: 90;
	display: flex;
	flex-direction: column;
	gap: 12px;
}
.floating-contact__btn {
	position: relative;
	width: 54px; height: 54px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	box-shadow: 0 10px 22px -8px rgba(0, 0, 0, .5);
	color: #fff;
}
.floating-contact__btn--phone { background: var(--green-600); }
.floating-contact__btn--phone svg { width: 24px; height: 24px; fill: #fff; }
.floating-contact__btn--zalo { background: #0068ff; font-weight: 800; font-size: 13px; }
.floating-contact__btn--whatsapp { background: #25D366; }
.floating-contact__btn--whatsapp svg { width: 28px; height: 28px; fill: #fff; }
.floating-contact__btn--messenger { background: linear-gradient(45deg, #0078FF 0%, #00A4FF 50%, #44CFFF 100%); }
.floating-contact__btn--messenger svg { width: 28px; height: 28px; fill: #fff; }
.floating-contact__btn--mail { background: #d23f31; }
.floating-contact__btn--mail svg { width: 24px; height: 24px; fill: #fff; }
.floating-contact__pulse {
	position: absolute;
	inset: 0;
	border-radius: 50%;
	border: 2px solid var(--green-500);
	animation: panexaPulse 1.8s ease-out infinite;
}
@keyframes panexaPulse {
	0% { transform: scale(1); opacity: .8; }
	100% { transform: scale(1.7); opacity: 0; }
}

/* ---------- Inner pages ---------- */
.inner-page { padding-bottom: 80px; }
.page-hero {
	background: linear-gradient(160deg, var(--green-800), var(--green-900));
	color: #fff;
	padding: 54px 0;
	text-align: center;
}
.page-hero__title { font-size: 34px; color: #fff; }
.breadcrumb { font-size: 14px; color: #b9d2c1; display: flex; gap: 8px; justify-content: center; flex-wrap: wrap; }
.breadcrumb a { color: #fff; }
.breadcrumb span { color: #7fa28d; }
.content-layout {
	display: grid;
	grid-template-columns: 1fr;
	gap: 40px;
	padding-top: 56px;
}
.content-layout:has(.content-sidebar) { grid-template-columns: 1fr 300px; }
.single-article {
	background: #fff;
	border: 1px solid var(--line);
	border-radius: var(--radius);
	padding: 36px;
}
.single-article__thumb { margin: -36px -36px 28px; }
.single-article__thumb img { width: 100%; border-radius: var(--radius) var(--radius) 0 0; }
.single-article__content { font-size: 16px; }
.single-article__content h2 { font-size: 24px; color: var(--green-800); margin-top: 1.4em; }
.single-article__content h3 { font-size: 20px; color: var(--green-800); margin-top: 1.2em; }
.single-article__content img { border-radius: var(--radius-sm); margin: 1em 0; }
.single-article__content blockquote {
	margin: 1.4em 0;
	padding: 14px 22px;
	border-left: 4px solid var(--green-500);
	background: var(--green-50);
	color: var(--ink);
}
.single-article__tags { margin-top: 24px; display: flex; flex-wrap: wrap; gap: 8px; }
.single-article__tags a {
	background: var(--green-50);
	color: var(--green-700);
	padding: 5px 12px;
	border-radius: 999px;
	font-size: 13px;
}
.post-nav { display: flex; justify-content: space-between; gap: 16px; margin-top: 24px; flex-wrap: wrap; }
.post-nav__link {
	flex: 1;
	min-width: 240px;
	background: #fff;
	border: 1px solid var(--line);
	border-radius: var(--radius-sm);
	padding: 14px 18px;
	font-weight: 600;
	font-size: 14px;
}
.post-nav__link--next { text-align: right; }
.post-nav__link:hover { border-color: var(--green-500); }
.single-cta {
	margin-top: 28px;
	text-align: center;
	background: var(--green-50);
	border: 1px solid var(--green-100);
	border-radius: var(--radius);
	padding: 36px 24px;
}
.single-cta h3 { color: var(--green-800); font-size: 22px; }
.single-cta p { color: var(--muted); }

.content-sidebar .widget {
	background: #fff;
	border: 1px solid var(--line);
	border-radius: var(--radius);
	padding: 24px;
	margin-bottom: 24px;
}
.widget-title { font-size: 17px; color: var(--green-800); margin-bottom: 14px; }
.content-sidebar .widget ul { display: flex; flex-direction: column; gap: 8px; }
.content-sidebar .widget a { color: var(--ink); }
.content-sidebar .widget a:hover { color: var(--green-600); }

.pagination { margin-top: 40px; }
.pagination .nav-links {
	display: flex;
	gap: 8px;
	justify-content: center;
	flex-wrap: wrap;
}
.pagination .page-numbers {
	display: flex;
	align-items: center;
	justify-content: center;
	min-width: 42px;
	height: 42px;
	padding: 0 12px;
	border: 1px solid var(--line);
	border-radius: 10px;
	background: #fff;
	font-weight: 600;
	color: var(--ink);
}
.pagination .page-numbers.current { background: var(--green-600); color: #fff; border-color: var(--green-600); }
.pagination a.page-numbers:hover { border-color: var(--green-500); color: var(--green-700); }

.no-results {
	text-align: center;
	background: #fff;
	border: 1px solid var(--line);
	border-radius: var(--radius);
	padding: 60px 24px;
}
.no-results h2 { color: var(--green-800); }

.error-404 { text-align: center; padding: 80px 0; }
.error-404__code {
	font-size: 110px;
	font-weight: 800;
	color: var(--green-100);
	line-height: 1;
}
.error-404__title { font-size: 30px; color: var(--green-800); }
.error-404__actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; margin-top: 20px; }

/* Comments */
.comment-list { list-style: none; padding: 0; }
.comment-list .children { list-style: none; padding-left: 28px; }
.comment-body {
	background: #fff;
	border: 1px solid var(--line);
	border-radius: var(--radius-sm);
	padding: 18px 20px;
	margin-bottom: 16px;
}
.comment-respond {
	background: #fff;
	border: 1px solid var(--line);
	border-radius: var(--radius);
	padding: 28px;
	margin-top: 24px;
}
.comment-form input,
.comment-form textarea {
	width: 100%;
	padding: 11px 14px;
	border: 1.5px solid var(--line);
	border-radius: 10px;
	font-family: inherit;
	margin-bottom: 12px;
}
.comment-form input[type="submit"],
.form-submit input {
	width: auto;
	background: var(--accent);
	color: #fff;
	border: none;
	padding: 12px 28px;
	border-radius: 999px;
	font-weight: 700;
	cursor: pointer;
}

/* ---------- Scroll reveal ---------- */
.reveal {
	opacity: 0;
	transform: translate3d(-44px, 0, 0);
	transition: opacity .65s ease, transform .65s ease;
	will-change: opacity, transform;
}
.reveal--right { transform: translate3d(44px, 0, 0); }
.reveal--up { transform: translate3d(0, 28px, 0); }
.reveal.is-visible {
	opacity: 1;
	transform: translate3d(0, 0, 0);
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
	.hero__title { font-size: 36px; }
	.grid--4 { grid-template-columns: repeat(2, 1fr); }
	.grid--services { grid-template-columns: repeat(2, 1fr); }
	.channel-grid { grid-template-columns: repeat(3, 1fr); }
	.steps { grid-template-columns: repeat(2, 1fr); }
	.conversion-band__inner { grid-template-columns: 1fr; gap: 18px; }
	.section__title { font-size: 28px; }
	.site-footer__grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 860px) {
	.menu-toggle { display: block; }
	.main-navigation { margin-left: auto; }
	.nav-menu {
		position: absolute;
		left: 0; right: 0;
		top: 100%;
		flex-direction: column;
		align-items: stretch;
		gap: 0;
		background: #fff;
		border-top: 1px solid var(--line);
		box-shadow: var(--shadow);
		padding: 8px;
		display: none;
	}
	.nav-menu.is-open { display: flex; }
	.nav-menu a { padding: 13px 14px; border-radius: 8px; }
	.site-header__inner { position: relative; flex-wrap: wrap; }
	.site-header__cta { display: none; }
	.hero__inner { grid-template-columns: 1fr; min-height: 480px; gap: 30px; }
	.hero__content { max-width: 760px; }
	.hero__tools { justify-self: stretch; }
	.contact { grid-template-columns: 1fr; gap: 32px; }
	.content-layout:has(.content-sidebar) { grid-template-columns: 1fr; }
	.gallery { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 170px; }
	.gallery__item--wide { grid-column: span 2; }
}

@media (max-width: 600px) {
	.section { padding: 56px 0; }
	.container { padding: 0 18px; }
	.topbar__item--hide-sm { display: none; }
	.site-header__inner {
		flex-wrap: nowrap;
		gap: 12px;
		min-height: 80px;
	}
	.site-branding { min-width: 0; }
	.site-name { min-width: 0; }
	.site-name__title { font-size: 18px; }
	.site-name__tag { font-size: 11px; }
	.main-navigation { flex: none; }
	.hero__inner { min-height: 420px; padding-top: 56px; padding-bottom: 56px; }
	.container.hero__inner {
		width: 100%;
		max-width: 100%;
		margin: 0;
		padding-left: 18px;
		padding-right: 18px;
	}
	.hero__badge {
		display: flex;
		align-items: flex-start;
		flex-wrap: wrap;
		white-space: normal;
		line-height: 1.45;
	}
	.hero__badge svg { margin-top: 2px; }
	.hero__badge,
	.hero__title,
	.hero__sub,
	.hero__commit,
	.hero__actions,
	.hero__hotline {
		max-width: 330px;
	}
	.hero__content {
		width: 100%;
		max-width: 100%;
	}
	.hero__tools,
	.quick-card {
		width: 100%;
		max-width: 100%;
	}
	.hero__title {
		font-size: 27px;
		overflow-wrap: anywhere;
	}
	.hero__sub {
		font-size: 16px;
		max-width: 330px;
		overflow-wrap: anywhere;
	}
	.hero__actions .btn { flex: 1 1 100%; }
	.section__title { font-size: 24px; }
	.grid--3,
	.grid--4,
	.grid--services,
	.channel-grid { grid-template-columns: 1fr; }
	.channel-card { min-height: auto; }
	.quick-card { padding: 20px; }
	.quick-card__title {
		font-size: 20px;
		max-width: 100%;
		overflow-wrap: anywhere;
	}
	.quick-card__title,
	.quick-search,
	.market-tabs,
	.track-box {
		max-width: 314px;
	}
	.quick-search { grid-template-columns: 1fr; }
	.quick-search .btn { width: 100%; }
	.market-tabs { grid-template-columns: repeat(2, 1fr); }
	.track-box { align-items: flex-start; flex-direction: column; }
	.steps { grid-template-columns: 1fr; }
	.stats__grid { grid-template-columns: repeat(2, 1fr); }
	.stats__item:nth-child(2) { border-right: none; }
	.stats__item:nth-child(1),
	.stats__item:nth-child(2) { border-bottom: 1px solid rgba(255,255,255,.12); }
	.stats__num { font-size: 30px; }
	.site-footer__grid { grid-template-columns: 1fr; gap: 28px; padding: 48px 18px 36px; }
	.contact-form { padding: 26px 20px; }
	.single-article { padding: 24px; }
	.single-article__thumb { margin: -24px -24px 22px; }

	/* Bảng giá -> dạng thẻ trên mobile */
	.pricing__table thead { display: none; }
	.pricing__table,
	.pricing__table tbody,
	.pricing__table tr,
	.pricing__table td { display: block; width: 100%; }
	.pricing__table tr {
		border: 1px solid var(--line);
		border-radius: var(--radius-sm);
		margin-bottom: 12px;
		padding: 6px 0;
	}
	.pricing__table td {
		display: flex;
		justify-content: space-between;
		gap: 16px;
		border-bottom: 1px dashed var(--line);
		text-align: right;
	}
	.pricing__table tr td:last-child { border-bottom: none; }
	.pricing__table td::before {
		content: attr(data-label);
		font-weight: 700;
		color: var(--green-800);
		text-align: left;
	}
}

@media (max-width: 380px) {
	.hero__badge,
	.hero__title,
	.hero__sub,
	.hero__commit,
	.hero__actions,
	.hero__hotline {
		max-width: 300px;
	}
	.quick-card__title,
	.quick-search,
	.market-tabs,
	.track-box {
		max-width: 284px;
	}
}

@media (prefers-reduced-motion: reduce) {
	* { animation-duration: .001ms !important; transition-duration: .001ms !important; }
}
