/**
 * Reset CSS tối giản (modern reset), không dùng thư viện ngoài.
 */
*,
*::before,
*::after {
	box-sizing: border-box;
}

html {
	-webkit-text-size-adjust: 100%;
	text-size-adjust: 100%;
}

body,
h1,
h2,
h3,
h4,
p,
figure,
blockquote,
dl,
dd {
	margin: 0;
}

ul[class],
ol[class] {
	list-style: none;
	padding: 0;
	margin: 0;
}

img,
picture,
svg {
	display: block;
	max-width: 100%;
	height: auto;
}

button,
input,
select,
textarea {
	font: inherit;
	color: inherit;
}

a {
	color: inherit;
	text-decoration: none;
}

table {
	border-collapse: collapse;
	width: 100%;
}

/* Focus ring nhất quán toàn site cho người dùng bàn phím (:focus-visible không ảnh
   hưởng click chuột). Component có ring riêng (vd dots slider) tự override theo scope. */
:focus-visible {
	outline: 2px solid var(--color-primary, #046AB5);
	outline-offset: 2px;
}

/* Trên nền tối (footer navy, card form Quote xanh đậm) ring xanh primary chìm vào nền
   — đổi sang trắng để giữ độ nhận biết tương đương. */
.site-footer :focus-visible,
.quote-form :focus-visible {
	outline-color: #ffffff;
}
