/**
 * IMM Group footer: brand, navigation, social links, and legal details.
 * All selectors stay under .site-footer to avoid the legacy footer styles.
 */

.site-footer {
	--sf-navy: #142654;
	--sf-text: #34466b;
	--sf-muted: #657594;
	--sf-line: #dbe5f4;
	--sf-line-dark: rgba(214, 226, 244, .08); /* đường kẻ trên nền navy */
	--sf-red: #e31828;
	/* --sf-footer-bg: #14284f; */
	--sf-footer-bg: #1c2737;
	background: #fbfdff;
	color: var(--sf-text);
	font-size: 16px;
	line-height: 1.5;
}

.site-footer *,
.site-footer *::before,
.site-footer *::after {
	box-sizing: border-box;
}

.site-footer__container {
	width: min(100% - 48px, 1200px);
	margin-inline: auto;
}

.site-footer a {
	color: inherit;
	text-decoration: none;
	transition: color .18s ease, background-color .18s ease;
}

.site-footer a:hover,
.site-footer a:focus-visible {
	color: var(--sf-red);
	text-decoration: none;
}

.site-footer :focus-visible {
	outline: 2px solid var(--sf-red);
	outline-offset: 3px;
}

/* Nút sticky (Yêu cầu tư vấn, Nộp hồ sơ…) nằm trong <footer> nhưng ngoài partial.
   Chữ trắng trước đây đến từ `.footer a { color: #fff }` trong app_v4.5.css; đổi
   class sang site-footer thì mất, và `.site-footer a` ở trên kéo chữ về navy/đỏ. */
.site-footer .register__sticky a,
.site-footer .register__sticky a:hover,
.site-footer .register__sticky a:focus-visible {
	color: #fff;
}

.site-footer__main {
	position: relative;
	overflow: hidden;
	isolation: isolate;
	padding: 54px 0 38px;
	background: radial-gradient(circle at 0 100%, #eef5ff 0, transparent 32%), linear-gradient(180deg, #fff 0%, #f9fcff 100%);
}

.site-footer__main::before {
	content: "";
	position: absolute;
	z-index: -1;
	top: -54px;
	right: max(2vw, calc((100vw - 1600px) / 2));
	width: min(720px, 54vw);
	height: 250px;
	background: radial-gradient(circle, #a9bfdf 1.25px, transparent 1.7px) 0 0 / 15px 15px;
	-webkit-mask-image: radial-gradient(ellipse at 60% 15%, #000 12%, transparent 73%);
	mask-image: radial-gradient(ellipse at 60% 15%, #000 12%, transparent 73%);
	opacity: .42;
	pointer-events: none;
}

/*
 * 3 cột đều nhau. Đo bề rộng chữ thật: cột 1 cần 347px, cột 2 306px, cột 3 198px
 * — chia đều 400px là dư cho cả ba, và nhìn cân hơn tỉ lệ 1/1.45/1 cũ (cột giữa
 * rộng 504px trong khi nhãn dài nhất chỉ 176px nên trông rỗng).
 *
 * align-items: stretch để 3 card cao bằng nhau — đường kẻ giữa các cột chính là
 * border-left của card, nên nếu card cao khác nhau thì đường kẻ dài ngắn khác nhau.
 */
.site-footer__grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	align-items: stretch;
	gap: 0;
}

.site-footer__brand {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 32px;
	margin-bottom: 26px;
	padding: 0 0 26px;
	border-bottom: 1px solid #cfdbec;
}

.site-footer__identity {
	display: flex;
	align-items: center;
	gap: 26px;
	min-width: 0;
}

.site-footer__logo {
	display: inline-flex;
}

.site-footer__logo img {
	display: block;
	width: 168px;
	height: auto;
}

.site-footer__values-wrap {
	display: flex;
	align-items: center;
	min-height: 88px;
	padding-left: 26px;
	border-left: 1px solid #e5ebf4;
}

.site-footer__values {
	display: block;
	width: 190px;
	height: auto;
}

.site-footer__downloads {
	display: flex;
	flex: 0 0 auto;
	flex-direction: column;
	align-items: flex-end;
	gap: 9px;
}

.site-footer__downloads-label {
	color: var(--sf-muted);
	font-size: 11px;
	font-weight: 700;
	letter-spacing: .12em;
	line-height: 1.3;
	text-transform: uppercase;
}

.site-footer__app-links {
	display: flex;
	align-items: center;
	gap: 10px;
}

.site-footer__app-link {
	display: block;
	width: 150px;
	border-radius: 7px;
	transition: box-shadow .18s ease;
}

.site-footer__app-link:hover,
.site-footer__app-link:focus-visible {
	box-shadow: 0 5px 14px rgba(20, 38, 84, .18);
}

.site-footer__app-link img {
	display: block;
	width: 100%;
	height: auto;
}

.site-footer__card {
	min-width: 0;
	padding: 12px 36px 16px 0;
	background: transparent;
}

.site-footer__card + .site-footer__card {
	padding-left: 36px;
	border-left: 1px solid var(--sf-line);
}

.site-footer__card:last-child {
	padding-right: 0;
}

.site-footer__title {
	position: relative;
	display: flex;
	align-items: center;
	gap: 17px;
	min-height: 66px;
	margin: 0 0 22px;
	padding: 0 0 22px;
	color: var(--sf-navy);
	font-size: clamp(18px, 1.25vw, 22px);
	font-weight: 500;
	line-height: 1.25;
	letter-spacing: -.015em;
	text-transform: none;
}

.site-footer__title::after {
	content: "";
	position: absolute;
	bottom: 0;
	left: 0;
	width: 42px;
	height: 4px;
	background: var(--sf-red);
}

.site-footer__heading-icon {
	display: block;
	width: 45px;
	height: 45px;
	flex: 0 0 45px;
	color: var(--sf-navy);
}

.site-footer__toggle {
	display: none;
	align-items: center;
	justify-content: center;
	width: 42px;
	height: 42px;
	flex: 0 0 42px;
	margin-left: auto;
	padding: 0;
	border: 0;
	border-radius: 50%;
	background: #edf3fb;
	color: var(--sf-navy);
	cursor: pointer;
}

.site-footer__toggle[hidden] {
	display: none !important;
}

.site-footer__toggle svg {
	width: 17px;
	height: 17px;
	transition: transform .24s ease;
}

.site-footer__card.is-open .site-footer__toggle svg {
	transform: rotate(180deg);
}

.site-footer__panel-inner {
	min-width: 0;
}

.site-footer__list,
.site-footer__connect-list {
	list-style: none;
	margin: 0;
	padding: 0;
}

.site-footer__list a {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 12px;
	min-height: 48px;
	padding: 7px 0;
	color: var(--sf-text);
	font-size: 16px;
	line-height: 1.35;
}

.site-footer__list--solutions {
	display: block;
}

.site-footer__list--solutions a {
	min-height: 54px;
}

.site-footer__list a:hover,
.site-footer__list a:focus-visible,
.site-footer__connect-list a:hover,
.site-footer__connect-list a:focus-visible {
	color: var(--sf-red);
}

.site-footer__list a > svg,
.site-footer__connect-list a > svg {
	width: 14px;
	height: 14px;
	flex: 0 0 14px;
	color: #7890b8;
	transition: transform .18s ease, color .18s ease;
}

.site-footer__list a:hover > svg,
.site-footer__list a:focus-visible > svg,
.site-footer__connect-list a:hover > svg,
.site-footer__connect-list a:focus-visible > svg {
	color: var(--sf-red);
	transform: translateX(3px);
}

.site-footer__connect-grid {
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
	gap: 0 24px;
	padding-top: 8px;
}

.site-footer__connect-list--social {
	padding-left: 24px;
	border-left: 1px solid var(--sf-line);
}

.site-footer__connect-list a {
	display: flex;
	align-items: center;
	gap: 10px;
	min-width: 0;
	min-height: 58px;
	color: var(--sf-text);
	font-size: 15px;
	line-height: 1.3;
}

.site-footer__connect-list a > span:nth-child(2) {
	min-width: 0;
	overflow-wrap: anywhere;
}

.site-footer__connect-list a > svg {
	margin-left: auto;
}

.site-footer__contact-icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 43px;
	height: 43px;
	flex: 0 0 43px;
	border-radius: 50%;
	background: #eef3fb;
	color: var(--sf-navy);
}

.site-footer__contact-icon svg {
	width: 21px;
	height: 21px;
}

.site-footer__contact-icon--youtube {
	background: #fff0f2;
	color: #e31828;
}

.site-footer__contact-icon--instagram {
	background: #f8eef8;
	color: #d72f75;
}

.site-footer__disclosure {
	border-top: 1px solid var(--sf-line-dark);
	background: var(--sf-footer-bg);
	color: #9dafcb;
}

.site-footer__disclosure-inner {
	padding: 34px 0 42px;
}

/* Chữ pháp lý để nhạt (#9dafcb trên navy ≈ 6.4:1, vẫn đạt AA) cho lùi về sau;
   #8b9dba ≈ 5.2:1 dùng cho dòng phụ nhỏ hơn. */
.site-footer__disclosure p {
	margin: 0;
	color: inherit;
	font-size: 12px;
	font-weight: 400;
	line-height: 1.65;
}

.site-footer__company-name {
	margin: 0 0 4px;
	color: #fff;
	font-size: 16px;
	font-weight: 700;
	line-height: 1.4;
}

.site-footer__disclosure .site-footer__registration {
	margin-bottom: 14px;
	color: #8b9dba;
	font-size: 12px;
}

.site-footer__disclosure .site-footer__legal-paragraph {
	margin-bottom: 8px;
}

.site-footer__disclosure .site-footer__disclosure-copyright {
	margin-top: 16px;
	color: #8b9dba;
	font-size: 12px;
	text-align: center;
}

.site-footer__disclosure a {
	color: #fff;
}

.site-footer__disclosure a:hover,
.site-footer__disclosure a:focus-visible {
	color: #ff8b94;
}

.site-footer__disclosure p a {
	text-decoration: underline;
	text-underline-offset: 3px;
}

/* display: flex + width: max-content để margin auto canh giữa được;
   inline-flex thì margin auto không có tác dụng. */
.site-footer__dmca {
	display: flex;
	width: max-content;
	margin: 18px auto 0;
}

.site-footer__dmca img {
	display: block;
	width: 150px;
	height: 30px;
}

.site-footer__map-shim {
	display: none;
}

@media (max-width: 1199.98px) {
	.site-footer__main {
		padding-top: 48px;
	}
	.site-footer__grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
	.site-footer__list--solutions {
		display: block;
	}
	.site-footer__card + .site-footer__card--connect {
		margin-top: 16px;
		padding: 24px 0 0;
		border-top: 1px solid var(--sf-line);
		border-left: 0;
	}
	.site-footer__brand {
		gap: 18px;
	}
	.site-footer__logo img {
		width: 135px;
	}
	.site-footer__identity {
		gap: 16px;
	}
	.site-footer__values-wrap {
		min-height: 76px;
		padding-left: 16px;
	}
	.site-footer__values {
		width: 160px;
	}
	.site-footer__card--connect {
		grid-column: 1 / -1;
	}
}

@media (max-width: 991.98px) {
	.site-footer__main {
		padding-top: 55px;
	}
	.site-footer__card {
		padding-top: 20px;
		padding-bottom: 20px;
	}
	.site-footer__title {
		min-height: 52px;
		margin-bottom: 12px;
		padding-bottom: 14px;
		font-size: 18px;
	}
	.site-footer__heading-icon {
		width: 38px;
		height: 38px;
		flex-basis: 38px;
	}
	.site-footer__toggle:not([hidden]) {
		display: inline-flex;
	}
	.site-footer.is-enhanced .site-footer__panel {
		display: grid;
		grid-template-rows: 0fr;
		transition: grid-template-rows .28s ease;
	}
	.site-footer.is-enhanced .site-footer__card.is-open .site-footer__panel {
		grid-template-rows: 1fr;
	}
	.site-footer.is-enhanced .site-footer__panel-inner {
		min-height: 0;
		overflow: hidden;
	}
	.site-footer__card.is-open .site-footer__panel-inner {
		padding-top: 8px;
	}
}

@media (max-width: 767.98px) {
	.site-footer__container {
		width: min(100% - 32px, 560px);
	}
	.site-footer__main {
		padding: 34px 0 28px;
	}
	.site-footer__main::before {
		top: -36px;
		right: -80px;
		width: 360px;
		height: 150px;
		opacity: .42;
	}
	.site-footer__grid {
		grid-template-columns: 1fr;
		gap: 0;
	}
	.site-footer__brand {
		flex-direction: column;
		align-items: flex-start;
		gap: 18px;
		margin-bottom: 18px;
		padding-bottom: 20px;
	}
	.site-footer__downloads {
		align-items: flex-start;
	}
	.site-footer__app-links {
		gap: 10px;
	}
	.site-footer__app-link {
		width: min(150px, calc((100vw - 42px) / 2));
	}
	.site-footer__card--connect {
		grid-column: auto;
	}
	.site-footer__card {
		padding: 18px 0;
	}
	.site-footer__card + .site-footer__card {
		margin: 0;
		padding: 18px 0;
		border-top: 1px solid var(--sf-line);
		border-left: 0;
	}
	.site-footer__title {
		gap: 13px;
		font-size: 17px;
	}
	.site-footer__toggle {
		margin-right: 28px;
	}
	.site-footer__connect-grid {
		grid-template-columns: 1fr 1fr;
		gap: 0 16px;
	}
	.site-footer__connect-list--social {
		padding-left: 16px;
	}
	.site-footer__connect-list a {
		font-size: 13px;
	}
	.site-footer__contact-icon {
		width: 34px;
		height: 34px;
		flex-basis: 34px;
	}
	.site-footer__contact-icon svg {
		width: 18px;
		height: 18px;
	}
	.site-footer__connect-list a > svg {
		display: none;
	}
	.site-footer__disclosure-inner {
		padding: 28px 0 96px;
	}
	.site-footer__company-name {
		font-size: 15px;
	}
}

@media (max-width: 390px) {
	.site-footer__connect-grid {
		grid-template-columns: 1fr;
	}
	.site-footer__connect-list--social {
		padding-left: 0;
		border-left: 0;
		border-top: 1px solid var(--sf-line);
	}
	.site-footer__connect-list a {
		min-height: 55px;
		font-size: 15px;
	}
}

@media (max-width: 359.98px) {
	.site-footer__logo img {
		width: 112px;
	}
	.site-footer__identity {
		gap: 12px;
	}
	.site-footer__values-wrap {
		min-height: 65px;
		padding-left: 12px;
	}
	.site-footer__values {
		width: 140px;
	}
}

@media (prefers-reduced-motion: reduce) {
	.site-footer a,
	.site-footer__app-link,
	.site-footer__toggle svg,
	.site-footer__panel,
	.site-footer__list a > svg,
	.site-footer__connect-list a > svg {
		transition: none !important;
	}
}

/* Contrast layout: a compact brand header and one continuous navy footer field. */
.site-footer__main {
	padding: 0;
	background: var(--sf-footer-bg);
}

.site-footer__main::before {
	display: none;
}

/* Bản đồ chấm trắng mờ phủ nền vùng navy. Neo đáy để không chui dưới dải
   brand trắng; z-index -1 nằm trong .site-footer__main (isolation: isolate)
   nên vẫn ở trên nền navy và dưới toàn bộ nội dung.
   max-width: none vì style ảnh chung (max-width: 100%) sẽ bóp nhỏ bản đồ
   trên mobile — ở đó bản đồ cố ý rộng hơn màn hình và bị cắt hai bên. */
.site-footer__world-map {
	position: absolute;
	z-index: -1;
	bottom: 0;
	left: 50%;
	display: block;
	width: clamp(720px, 100%, 1280px);
	max-width: none;
	height: auto;
	opacity: .07;
	transform: translateX(-50%);
	pointer-events: none;
	user-select: none;
}

.site-footer__brand {
	position: relative;
	z-index: 0;
	justify-content: flex-start;
	gap: 26px;
	min-height: 112px;
	margin: 0;
	padding: 20px 0;
	border: 0;
}

/* border-top: vạch phân tách với nội dung trang — section phía trên thường cũng
   nền trắng nên không có vạch thì footer dính liền vào body. Đặt trên pseudo
   này vì nó đã trải hết bề ngang màn hình. */
.site-footer__brand::before {
	position: absolute;
	z-index: -1;
	top: 0;
	right: -100vw;
	bottom: 0;
	left: -100vw;
	border-top: 1px solid #dde4ee;
	background: #fff;
	content: "";
}

.site-footer__identity {
	gap: 20px;
}

.site-footer__logo img {
	width: 126px;
}

.site-footer__values-wrap {
	min-height: 62px;
	padding-left: 19px;
}

.site-footer__values {
	width: 116px;
}

.site-footer__social-links {
	display: flex;
	align-items: center;
	gap: 8px;
	margin-left: auto;
	padding-right: 22px;
	border-right: 1px solid #e5ebf4;
}

.site-footer__social-links a {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 37px;
	height: 37px;
	border-radius: 50%;
	background: #edf2fa;
	color: var(--sf-navy);
}

.site-footer__social-links a:hover,
.site-footer__social-links a:focus-visible {
	background: var(--sf-navy);
	color: #fff;
}

.site-footer__social-links svg {
	width: 18px;
	height: 18px;
}

/* Logo Zalo là chữ ngang (tỉ lệ 2:1) nên cần khung rộng hơn icon vuông. */
.site-footer__social-links .site-footer__social-zalo {
	width: 24px;
	height: 12px;
}

.site-footer__downloads {
	align-items: flex-start;
	gap: 6px;
}

.site-footer__downloads-label {
	font-size: 10px;
}

.site-footer__app-link {
	width: 134px;
}

.site-footer__grid {
	padding: 38px 0 34px;
}

.site-footer__card {
	padding: 0 28px 0 0;
}

.site-footer__card + .site-footer__card {
	padding-left: 28px;
	border-color: var(--sf-line-dark);
}

.site-footer__title {
	min-height: 50px;
	margin-bottom: 15px;
	padding-bottom: 14px;
	color: #fff;
	font-size: 19px;
}

.site-footer__heading-icon {
	width: 34px;
	height: 34px;
	flex-basis: 34px;
	color: #f4f7ff;
}

.site-footer__title::after {
	left: 51px;
}

.site-footer__list a,
.site-footer__connect-list a {
	min-height: 36px;
	color: #d9e2f2;
	font-size: 14px;
}

.site-footer__list--solutions a {
	min-height: 36px;
}

/* Cùng màu với chevron (--sf-red) để hover nhất quán trên cả dòng.
   Lưu ý: #e31828 trên nền navy chỉ đạt 3.06:1, dưới chuẩn AA 4.5:1.
   Muốn dễ đọc hơn mà vẫn đỏ thì đổi cả đây và màu chevron sang #ff5a66 (4.78:1). */
.site-footer__list a:hover,
.site-footer__list a:focus-visible,
.site-footer__connect-list a:hover,
.site-footer__connect-list a:focus-visible {
	color: var(--sf-red);
}

.site-footer__list a > svg,
.site-footer__connect-list a > svg {
	color: #91a8ca;
}

.site-footer__connect-grid {
	display: block;
	padding-top: 0;
}

.site-footer__connect-list a {
	min-height: 44px;
}

.site-footer__contact-icon {
	width: 32px;
	height: 32px;
	flex-basis: 32px;
	background: #29416d;
	color: #fff;
}

.site-footer__contact-icon svg {
	width: 17px;
	height: 17px;
}

/* Cùng bề rộng với .site-footer__container ở trên, nếu không khối pháp lý
   bị thụt vào 50px và hẹp hơn phần footer phía trên 100px. */
.site-footer__container.site-footer__disclosure-inner {
	width: min(100% - 48px, 1200px);
}

@media (max-width: 1199.98px) {
	.site-footer__main { padding-top: 0; }
	.site-footer__brand { flex-wrap: wrap; }
	.site-footer__grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
	/* Card thứ 3 trải hết hàng dưới — bỏ padding/viền trái của bố cục ngang
	   để nó thẳng lề với 2 card hàng trên. */
	.site-footer__card + .site-footer__card--connect {
		padding-left: 0;
		border-top: 1px solid var(--sf-line-dark);
		border-left: 0;
	}
}

@media (max-width: 991.98px) {
	.site-footer__main { padding-top: 0; }
	.site-footer__title { color: #fff; }
	.site-footer__toggle { background: #29416d; color: #fff; }
	/* Từ đây xuống là accordion — phải xếp 1 cột. Rule 1fr ở trên bị block
	   @media (max-width: 1199.98px) phía trước đè mất nên khai báo lại ở đây. */
	.site-footer__grid { grid-template-columns: 1fr; padding: 8px 0 16px; }

	/* Xếp dọc thì bỏ padding/viền trái của bố cục ngang, đổi sang viền trên.
	   Phải khai báo ở đây vì các rule .site-footer__card cuối file (ngoài media
	   query) đè lên block @media 767.98 nằm phía trước. */
	.site-footer__card,
	.site-footer__card + .site-footer__card,
	.site-footer__card:last-child {
		padding: 20px 0;
		border-left: 0;
	}

	.site-footer__card + .site-footer__card {
		border-top: 1px solid var(--sf-line-dark);
	}

	/* Heading accordion gọn lại: rule 19px/icon 34px ngoài media query ở trên
	   là cỡ cho bố cục 3 cột, xếp dọc trên màn hẹp thì quá to. */
	.site-footer__title {
		gap: 12px;
		min-height: 0;
		margin-bottom: 6px;
		padding-bottom: 12px;
		font-size: 16px;
	}

	.site-footer__heading-icon {
		width: 28px;
		height: 28px;
		flex-basis: 28px;
	}

	/* 28px icon + 12px gap: gạch đỏ thẳng hàng với chữ heading. */
	.site-footer__title::after {
		left: 40px;
		width: 32px;
		height: 3px;
	}

	/* margin-right: 0 bỏ khoảng lệch 28px của block 767.98 cũ để nút
	   thẳng lề phải với chevron của các dòng link. */
	.site-footer__toggle {
		width: 34px;
		height: 34px;
		flex-basis: 34px;
		margin-right: 0;
		background: rgba(255, 255, 255, .08);
	}

	.site-footer__toggle svg {
		width: 14px;
		height: 14px;
	}
}

/* Tablet: flex-wrap đẩy khối tải app xuống dòng riêng, để lại vạch kẻ phải của
   mạng xã hội lơ lửng. Chuyển sang lưới: brand bên trái, mạng xã hội + tải app
   xếp chồng bên phải. */
@media (min-width: 768px) and (max-width: 991.98px) {
	.site-footer__brand {
		display: grid;
		grid-template-columns: auto auto;
		justify-content: space-between;
		align-items: center;
		gap: 14px 24px;
	}
	.site-footer__identity { grid-row: span 2; }
	.site-footer__social-links { justify-self: end; margin-left: 0; padding-right: 0; border-right: 0; }
	.site-footer__downloads { justify-self: end; align-items: flex-end; }
}

@media (max-width: 767.98px) {
	.site-footer__main { padding: 0; }
	/* Dải brand xếp dọc và căn giữa để cân hai bên. */
	.site-footer__brand { align-items: center; gap: 18px; min-height: 0; padding: 24px 0; }
	.site-footer__identity { justify-content: center; }
	.site-footer__logo img { width: 116px; }
	.site-footer__values { width: 106px; }
	.site-footer__social-links { order: 2; margin-left: 0; padding-right: 0; border-right: 0; }
	.site-footer__downloads { order: 3; width: 100%; align-items: center; }
	.site-footer__app-links { justify-content: center; }
	.site-footer__app-link { width: min(134px, calc((100vw - 42px) / 2)); }
	.site-footer__grid { padding: 4px 0 12px; }
	/* Mobile giữ dòng cao hơn desktop một chút cho dễ bấm. */
	.site-footer__list a { min-height: 40px; }
	.site-footer__connect-list a { min-height: 44px; }
	/* Block 767.98 cũ ẩn chevron của "Xem thêm" nhưng 2 mục kia vẫn hiện — bật lại cho đồng bộ. */
	.site-footer__connect-list a > svg { display: block; }
	.site-footer__card + .site-footer__card { border-top-color: var(--sf-line-dark); }
	.site-footer__container.site-footer__disclosure-inner { width: min(100% - 32px, 560px); }
	/* Tên công ty giữ 1 dòng: chuỗi in hoa đậm này dài ≈ 31 lần font-size, nên
	   chia bề rộng nội dung (100vw - 32px lề) cho 32 để cỡ chữ co theo màn hình. */
	.site-footer__company-name { font-size: min(15px, calc((100vw - 32px) / 32)); white-space: nowrap; }
}
