/* CatCredit — Main stylesheet (homepage + shared layout). */

/* ─── Typography ─────────────────────────────────────────────── */
.eyebrow {
	display: inline-flex; align-items: center; gap: 8px;
	font-family: var(--font-body);
	font-size: 11px; font-weight: 600;
	letter-spacing: 0.16em; text-transform: uppercase;
	color: var(--ink-3);
}
.eyebrow .dot {
	width: 6px; height: 6px; border-radius: 50%;
	background: var(--orange);
	box-shadow: 0 0 0 4px rgba(255, 107, 53, 0.16);
}
h1, h2, h3, h4 { font-family: var(--font-display); font-weight: 700; letter-spacing: -0.025em; line-height: 1.04; margin: 0; color: var(--ink); }
h1 { font-size: clamp(32px, 4.2vw, 60px); }
h2 { font-size: clamp(28px, 4vw, 48px); }
h3 { font-size: clamp(20px, 4vw, 28px); }
.lead { color: var(--ink-3); font-size: 16px; line-height: 1.55; max-width: 56ch; }

.badge-mini {
	display: inline-flex; align-items: center; gap: 6px;
	padding: 6px 10px;
	font-size: 12px; font-weight: 500;
	background: var(--bg);
	border: 0.5px solid var(--line-2);
	border-radius: 999px;
	color: var(--ink-2);
	white-space: nowrap;
}

/* ─── Nav ────────────────────────────────────────────────────── */
.nav {
	position: sticky; top: 0; z-index: 60;
	background: color-mix(in oklab, var(--bg) 80%, transparent);
	backdrop-filter: saturate(160%) blur(18px);
	-webkit-backdrop-filter: saturate(160%) blur(18px);
	border-bottom: 0.5px solid var(--line);
}
.nav-inner { display: flex; align-items: center; justify-content: space-between; height: 64px; gap: 16px; }
.brand { display: flex; align-items: center; gap: 10px; font-family: var(--font-display); font-weight: 700; font-size: 18px; letter-spacing: -0.02em; }
.brand-mark { width: 34px; height: 34px; flex: 0 0 34px; }
.nav-links { display: none; gap: 28px; align-items: center; list-style: none; padding: 0; margin: 0; }
.nav-links li { list-style: none; padding: 0; margin: 0; display: inline-flex; }
.nav-links li::marker { content: none; }
.nav-links a { font-size: 14px; color: var(--ink-2); font-weight: 500; }
.nav-links a:hover { color: var(--orange); }
.nav-cta { display: flex; align-items: center; gap: 10px; }
.nav-toggle {
	width: 40px; height: 40px; border: 0.5px solid var(--line-2); border-radius: 12px;
	background: var(--bg); display: grid; place-items: center;
}
.nav-toggle svg { width: 18px; height: 18px; }
@media (min-width: 900px) {
	.nav-links { display: flex; }
	.nav-toggle { display: none; }
}

/* Mobile menu sheet */
.mobile-menu {
	position: fixed; left: 0; right: 0; top: 64px;
	background: var(--bg);
	z-index: 70;
	padding: 24px 20px;
	display: flex; flex-direction: column; gap: 4px;
	transform: translateY(-110%);
	visibility: hidden;
	pointer-events: none;
	transition: transform 0.28s cubic-bezier(.3,.7,.4,1), visibility 0s linear 0.28s;
	border-bottom: 0.5px solid var(--line);
	box-shadow: 0 24px 60px -24px rgba(10,10,10,0.18);
	max-height: calc(100vh - 64px);
	overflow-y: auto;
}
.mobile-menu.open {
	transform: translateY(0);
	visibility: visible;
	pointer-events: auto;
	transition: transform 0.28s cubic-bezier(.3,.7,.4,1), visibility 0s;
}
.mobile-menu li { list-style: none; padding: 0; margin: 0; }
.mobile-menu li::marker { content: none; }
.mobile-menu a:not(.btn) { display: block; padding: 14px 8px; font-size: 17px; font-weight: 500; border-bottom: 0.5px solid var(--line); }
.mobile-menu .btn { margin-top: 16px; width: 100%; }
@media (min-width: 900px) {
	.mobile-menu { display: none; }
}

/* ─── Buttons ────────────────────────────────────────────────── */
.btn {
	display: inline-flex; align-items: center; justify-content: center;
	gap: 10px;
	padding: 14px 22px;
	font-family: var(--font-display);
	font-size: 15px; font-weight: 600;
	border-radius: var(--radius);
	border: 0;
	transition: transform 0.15s ease, box-shadow 0.2s ease, background 0.15s ease;
	white-space: nowrap;
	cursor: pointer;
}
.btn:active { transform: translateY(1px); }
.btn-primary { background: var(--ink); color: var(--bg); box-shadow: 0 1px 0 rgba(255,255,255,0.08) inset, 0 8px 24px -12px rgba(10,10,10,0.5); }
.btn-primary:hover { background: #1A1A1A; }
.btn-yellow { background: var(--yellow); color: var(--ink); box-shadow: 0 1px 0 rgba(255,255,255,0.5) inset, 0 14px 30px -14px rgba(255, 210, 63, 0.7); }
.btn-yellow:hover { background: #FFDC5E; }
.btn-orange { background: var(--orange); color: #fff; box-shadow: 0 1px 0 rgba(255,255,255,0.18) inset, 0 14px 30px -14px rgba(255, 107, 53, 0.7); }
.btn-orange:hover { background: #FF7A47; }
.btn-ghost { background: transparent; color: var(--ink); border: 0.5px solid var(--line-2); }
.btn-ghost:hover { background: var(--bg-dim); }
.btn-ghost-on-dark { background: rgba(255,255,255,0.06); color: #fff; border-color: rgba(255,255,255,0.16); }
.btn-ghost-on-dark:hover { background: rgba(255,255,255,0.12); }
.btn-lg { padding: 18px 28px; font-size: 16px; }
.btn-sm { padding: 10px 18px; font-size: 14px; }
.btn-block { width: 100%; }

/* ─── Section scaffolding ────────────────────────────────────── */
section { padding: 56px 0; position: relative; }
@media (min-width: 768px) { section { padding: 88px 0; } }
.section-head { max-width: 720px; margin-bottom: 36px; }
.section-head .eyebrow { margin-bottom: 14px; }
.section-head h2 { margin-bottom: 12px; }
.section-head p { color: var(--ink-3); font-size: 16px; max-width: 56ch; }

/* ─── Hero ───────────────────────────────────────────────────── */
.hero { padding-top: 32px; padding-bottom: 48px; overflow: hidden; }
@media (min-width: 768px) { .hero { padding-top: 56px; padding-bottom: 88px; } }
.hero-grid { display: grid; grid-template-columns: 1fr; gap: 32px; align-items: center; }
@media (min-width: 900px) { .hero-grid { grid-template-columns: 1.05fr 0.95fr; gap: 40px; } }

.hero-badge {
	display: inline-flex; align-items: center; gap: 8px;
	padding: 8px 14px;
	background: var(--yellow-tint);
	border: 0.5px solid var(--yellow-soft);
	border-radius: 999px;
	font-size: 12px; font-weight: 600; letter-spacing: 0.01em;
	color: var(--ink-2);
}
.hero-badge .pulse {
	width: 7px; height: 7px; border-radius: 50%; background: var(--orange);
	box-shadow: 0 0 0 0 rgba(255, 107, 53, 0.6);
	animation: pulse 2.2s infinite;
}
@keyframes pulse {
	0% { box-shadow: 0 0 0 0 rgba(255, 107, 53, 0.55); }
	70% { box-shadow: 0 0 0 10px rgba(255, 107, 53, 0); }
	100% { box-shadow: 0 0 0 0 rgba(255, 107, 53, 0); }
}

/* Cỡ chữ hero tính để "Nhận đề xuất phù hợp" luôn vừa 1 dòng với Be Vietnam Pro:
   mobile 1 cột slope 8.2vw, desktop 2 cột (>=900px) cột hẹp hơn nên slope 4.4vw, trần 54px. */
.hero h1 { margin-top: 18px; font-size: clamp(28px, 8.2vw, 54px); }
@media (min-width: 900px) { .hero h1 { font-size: clamp(36px, 4.4vw, 54px); } }
.hero h1 .h1-line { white-space: nowrap; }
.hero h1 .accent { color: var(--orange); }
.hero h1 .underline { position: relative; display: inline-block; }
.hero h1 .underline::after {
	content: ""; position: absolute; left: -2%; right: -2%; bottom: 4%;
	height: 38%; background: var(--yellow); z-index: -1; border-radius: 6px;
}
.hero .lead { margin-top: 16px; font-size: 17px; }

/* Amount Card */
.amount-card {
	margin-top: 28px;
	padding: 22px;
	background: var(--bg);
	border: 0.5px solid var(--line-2);
	border-radius: var(--radius-lg);
	box-shadow: var(--shadow-1);
	position: relative;
}
.amount-card::before {
	content: ""; position: absolute; inset: -1px; border-radius: inherit;
	background: linear-gradient(140deg, var(--yellow) 0%, transparent 40%);
	z-index: -1; opacity: 0.4; filter: blur(20px);
}
.amount-card .row1 { display: flex; align-items: flex-end; justify-content: space-between; gap: 16px; margin-bottom: 18px; }
.amount-card .row1 .label { font-size: 12px; font-weight: 600; letter-spacing: 0.04em; text-transform: uppercase; color: var(--ink-3); }
.amount-card .row1 .label-row { display: flex; align-items: center; gap: 8px; margin-bottom: 6px; }
.amount-card .amount {
	font-family: var(--font-display); font-weight: 700;
	font-size: clamp(34px, 8vw, 48px);
	letter-spacing: -0.03em;
	color: var(--ink);
	font-variant-numeric: tabular-nums;
	line-height: 1;
}
.amount-card .amount .unit { font-size: 0.55em; color: var(--ink-3); font-weight: 600; margin-left: 6px; }

/* Slider */
.slider-wrap { position: relative; padding: 8px 0 6px; }
.slider {
	appearance: none; -webkit-appearance: none;
	width: 100%; height: 10px; background: transparent; outline: none;
	border-radius: 999px;
}
.slider-track {
	position: absolute; left: 0; right: 0; top: 50%;
	height: 8px; transform: translateY(-50%); border-radius: 999px;
	background: var(--bg-dim); pointer-events: none;
	border: 0.5px solid var(--line);
}
.slider-fill {
	position: absolute; left: 0; top: 50%;
	height: 8px; transform: translateY(-50%); border-radius: 999px;
	background: linear-gradient(90deg, var(--yellow), var(--orange));
	pointer-events: none;
}
.slider::-webkit-slider-thumb {
	-webkit-appearance: none; appearance: none;
	width: 28px; height: 28px; border-radius: 50%;
	background: var(--ink); border: 3px solid #fff;
	box-shadow: 0 4px 14px rgba(10,10,10,0.25);
	cursor: grab;
}
.slider::-webkit-slider-thumb:active { cursor: grabbing; transform: scale(0.95); }
.slider::-moz-range-thumb {
	width: 28px; height: 28px; border-radius: 50%;
	background: var(--ink); border: 3px solid #fff;
	box-shadow: 0 4px 14px rgba(10,10,10,0.25);
}
.slider-marks { display: flex; justify-content: space-between; margin-top: 10px; font-size: 12px; color: var(--ink-3); font-variant-numeric: tabular-nums; }

.amount-card .actions { margin-top: 18px; display: flex; flex-direction: column; gap: 10px; }
.amount-card .actions .btn { flex: 1; }

/* Hero term pills */
.hero-term { margin-top: 18px; padding-top: 16px; border-top: 0.5px dashed var(--line-2); }
.hero-term-label { display: flex; align-items: baseline; justify-content: space-between; gap: 10px; margin-bottom: 10px; }
.hero-term-label > span { font-size: 12px; font-weight: 600; letter-spacing: 0.04em; text-transform: uppercase; color: var(--ink-3); }
.hero-term-label > strong { font-family: var(--font-display); font-weight: 700; font-size: 16px; color: var(--ink); font-variant-numeric: tabular-nums; }
.hero-term-pills { display: grid; grid-template-columns: repeat(6, 1fr); gap: 6px; }
@media (max-width: 380px) { .hero-term-pills { gap: 4px; } .hero-term-pill { padding: 10px 0; font-size: 13px; } }
.hero-term-pill {
	appearance: none;
	padding: 12px 0;
	border: 1.5px solid var(--line-2);
	border-radius: 12px;
	background: var(--bg);
	font-family: var(--font-display);
	font-weight: 600; font-size: 14px;
	color: var(--ink-2);
	cursor: pointer;
	transition: all 0.15s ease;
	font-variant-numeric: tabular-nums;
}
.hero-term-pill:hover { border-color: var(--ink-4); }
.hero-term-pill[data-selected="1"] {
	background: var(--ink); border-color: var(--ink); color: var(--yellow);
	box-shadow: 0 6px 16px -8px rgba(10,10,10,0.4);
}

.amount-trust {
	margin-top: 16px; padding-top: 14px;
	border-top: 0.5px dashed var(--line-2);
	display: flex; align-items: center; justify-content: center;
	flex-wrap: wrap; gap: 10px 14px;
	font-size: 12px; color: var(--ink-3);
}
.amount-trust .trust-item { display: inline-flex; align-items: center; gap: 6px; font-weight: 500; }
.amount-trust .trust-item svg { color: var(--green); flex-shrink: 0; }
.amount-trust .trust-dot { width: 3px; height: 3px; border-radius: 50%; background: var(--ink-4); opacity: 0.5; }

.hero-meta { margin-top: 20px; display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.hero-meta .cell { padding: 14px 16px; border-radius: var(--radius); background: var(--bg-warm); border: 0.5px solid var(--line); }
.hero-meta .k { font-size: 11px; letter-spacing: 0.08em; text-transform: uppercase; color: var(--ink-3); font-weight: 600; }
.hero-meta .v { margin-top: 6px; font-family: var(--font-display); font-weight: 600; font-size: 18px; color: var(--ink); }

/* Hero visual */
.hero-visual { position: relative; min-height: 320px; display: grid; place-items: center; }
@media (min-width: 900px) { .hero-visual { min-height: 540px; } }
.hero-blob {
	position: absolute; inset: 0;
	background:
		radial-gradient(60% 60% at 70% 40%, var(--yellow) 0%, transparent 60%),
		radial-gradient(40% 40% at 30% 75%, var(--orange-soft) 0%, transparent 60%);
	filter: blur(10px); opacity: 0.55; z-index: 0;
	border-radius: var(--radius-xl);
}
.hero-mascot { position: relative; z-index: 1; width: min(100%, 460px); animation: bob 6s ease-in-out infinite; }
@keyframes bob {
	0%, 100% { transform: translateY(0) rotate(-1deg); }
	50% { transform: translateY(-10px) rotate(1deg); }
}

/* Floating coin chips */
.coin {
	position: absolute; z-index: 2;
	display: inline-flex; align-items: center; gap: 6px;
	padding: 8px 12px;
	background: var(--bg);
	border: 0.5px solid var(--line-2);
	border-radius: 999px;
	box-shadow: var(--shadow-1);
	font-family: var(--font-display); font-weight: 600;
	font-size: 13px; white-space: nowrap;
}
.coin .ico { width: 16px; height: 16px; border-radius: 50%; background: var(--yellow); display: grid; place-items: center; font-size: 10px; color: var(--ink); font-weight: 800; }
.coin.c1 { top: 8%; left: 4%; animation: float 5s ease-in-out infinite; }
.coin.c2 { top: 18%; right: 6%; animation: float 5s ease-in-out infinite 0.8s; }
.coin.c3 { bottom: 18%; left: 8%; animation: float 5s ease-in-out infinite 1.6s; }
.coin.c4 { bottom: 8%; right: 4%; animation: float 5s ease-in-out infinite 2.4s; }
@keyframes float {
	0%, 100% { transform: translateY(0); }
	50% { transform: translateY(-8px); }
}

/* ─── Stats ──────────────────────────────────────────────────── */
.stats-strip {
	background: var(--ink); color: #fff;
	border-radius: var(--radius-xl);
	padding: 28px 24px;
	display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px 16px;
	position: relative; overflow: hidden;
}
@media (min-width: 768px) { .stats-strip { grid-template-columns: repeat(4, 1fr); padding: 40px 32px; } }
.stats-strip::before {
	content: ""; position: absolute; top: -40%; right: -10%;
	width: 320px; height: 320px;
	background: radial-gradient(circle, var(--yellow) 0%, transparent 60%);
	opacity: 0.18; pointer-events: none;
}
.stat .num { font-family: var(--font-display); font-weight: 700; font-size: clamp(28px, 5vw, 40px); letter-spacing: -0.02em; line-height: 1; }
.stat .num .unit { font-size: 0.6em; color: var(--yellow); margin-left: 4px; }
.stat .lbl { margin-top: 8px; font-size: 13px; color: rgba(255,255,255,0.7); }

/* ─── Benefit cards ──────────────────────────────────────────── */
.bento { display: grid; grid-template-columns: 1fr; grid-auto-rows: 1fr; gap: 14px; }
@media (min-width: 720px) { .bento { grid-template-columns: repeat(12, 1fr); grid-auto-rows: auto; gap: 16px; } }

.bcard {
	background: var(--bg-warm);
	border: 0.5px solid var(--line);
	border-radius: var(--radius-lg);
	padding: 24px;
	display: flex; flex-direction: column; gap: 12px;
	position: relative; overflow: hidden;
	min-height: 200px;
	transition: transform 0.2s ease, box-shadow 0.2s ease;
}
@media (min-width: 720px) {
	.bento .b1 { grid-column: span 7; }
	.bento .b2 { grid-column: span 5; }
	.bento .b3 { grid-column: span 5; }
	.bento .b4 { grid-column: span 7; }
	.bento .b5 { grid-column: 1 / -1; }
}
.bcard:hover { transform: translateY(-2px); box-shadow: var(--shadow-1); }
.bcard.dark { background: var(--ink); color: #fff; }
.bcard.yellow { background: var(--yellow); color: var(--ink); }
.bcard.orange { background: var(--orange); color: #fff; }
.bcard h3 { font-size: 24px; line-height: 1.1; letter-spacing: -0.02em; }
.bcard.dark h3, .bcard.orange h3 { color: #fff; }
.bcard.yellow h3 { color: var(--ink); }
.bcard .b-icon {
	width: 44px; height: 44px; border-radius: 12px;
	background: var(--bg); display: grid; place-items: center;
	border: 0.5px solid var(--line);
	flex-shrink: 0;
}
.bcard.yellow .b-icon { background: var(--ink); color: var(--yellow); border-color: transparent; }
.bcard.orange .b-icon { background: #fff; color: var(--orange); border-color: transparent; }
.bcard.dark .b-icon { background: var(--yellow); color: var(--ink); border-color: transparent; }
.bcard p { color: var(--ink-3); font-size: 14.5px; line-height: 1.55; margin: 0; }
.bcard.dark p { color: rgba(255,255,255,0.72); }
.bcard.yellow p { color: rgba(10,10,10,0.7); }
.bcard.orange p { color: rgba(255,255,255,0.88); }

.bcard .b-stat {
	display: flex; align-items: baseline; gap: 8px;
	font-family: var(--font-display);
	font-size: 48px; font-weight: 700; line-height: 1;
	letter-spacing: -0.04em;
	margin-top: auto; padding-top: 12px;
}
.bcard .b-stat .unit { font-size: 0.32em; font-weight: 600; color: var(--yellow); letter-spacing: 0; }
.bcard .b-stat .cur { font-size: 0.5em; font-weight: 700; margin-left: 2px; }
.bcard.yellow .b-stat { color: var(--ink); }
.bcard.yellow .b-stat .unit { color: var(--ink); opacity: 0.5; }

.b-watermark {
	position: absolute; right: -10px; bottom: -22px; font-family: var(--font-display);
	font-weight: 700; font-size: 140px; line-height: 1;
	color: rgba(10,10,10,0.04); pointer-events: none; letter-spacing: -0.05em;
}
.bcard.dark .b-watermark, .bcard.orange .b-watermark { color: rgba(255,255,255,0.06); }
.bcard.yellow .b-watermark { color: rgba(10,10,10,0.08); }

.bcard.banner {
	flex-direction: row; align-items: center; justify-content: space-between;
	gap: 24px; flex-wrap: wrap;
	background: var(--ink); color: #fff;
	min-height: 0;
}
.bcard.banner h3 { color: #fff; max-width: 22ch; }
.bcard.banner p { color: rgba(255,255,255,0.65); max-width: 40ch; margin-top: 6px; }
.bcard.banner .b-text { flex: 1 1 320px; }
.bcard.banner .b-cta { flex: 0 0 auto; display: flex; gap: 10px; flex-wrap: wrap; }

/* ─── Steps ──────────────────────────────────────────────────── */
.steps { display: grid; grid-template-columns: 1fr; gap: 16px; }
@media (min-width: 900px) { .steps { grid-template-columns: repeat(3, 1fr); gap: 20px; } }
.step {
	position: relative;
	padding: 28px 24px 24px;
	background: var(--bg);
	border: 0.5px solid var(--line);
	border-radius: var(--radius-lg);
	display: flex; flex-direction: column; gap: 12px;
	transition: border-color 0.2s ease;
}
.step:hover { border-color: var(--line-2); }
.step .step-num { font-family: var(--font-display); font-weight: 700; font-size: 13px; display: inline-flex; align-items: center; gap: 8px; color: var(--ink-3); }
.step .step-num .pip { width: 26px; height: 26px; border-radius: 50%; background: var(--yellow); color: var(--ink); display: grid; place-items: center; font-size: 12px; font-weight: 800; }
.step h3 { font-size: 22px; }
.step p { color: var(--ink-3); font-size: 14px; margin: 0; }
.step .step-arrow { position: absolute; top: 28px; right: -10px; width: 24px; height: 24px; display: none; }
@media (min-width: 900px) { .steps .step:not(:last-child) .step-arrow { display: block; color: var(--ink-4); } }

/* ─── Comparison ─────────────────────────────────────────────── */
.cmp-filters {
	display: flex; gap: 8px; overflow-x: auto;
	padding-bottom: 8px; margin-bottom: 16px;
	scrollbar-width: none;
}
.cmp-filters::-webkit-scrollbar { display: none; }
.chip {
	flex-shrink: 0;
	padding: 9px 16px; border-radius: 999px;
	border: 0.5px solid var(--line-2);
	background: var(--bg); color: var(--ink-2);
	font-size: 13px; font-weight: 500;
	font-family: var(--font-body);
	white-space: nowrap;
	transition: all 0.15s ease;
	cursor: pointer;
}
.chip:hover { border-color: var(--ink); }
.chip[data-active="1"] { background: var(--ink); color: var(--bg); border-color: var(--ink); }

.cmp-list { display: flex; flex-direction: column; gap: 12px; }
.cmp-row {
	display: grid;
	grid-template-columns: 1fr;
	gap: 16px;
	padding: 18px;
	background: var(--bg);
	border: 0.5px solid var(--line);
	border-radius: var(--radius);
	align-items: center;
	transition: border-color 0.2s ease, transform 0.15s ease;
}
.cmp-row:hover { border-color: var(--line-2); transform: translateY(-1px); }
.cmp-row.featured { border: 1px solid var(--ink); background: var(--bg-warm); position: relative; }
.cmp-row .featured-tag {
	position: absolute; top: -10px; left: 18px;
	padding: 4px 10px; border-radius: 999px;
	background: var(--orange); color: #fff;
	font-size: 10px; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase;
}
.cmp-lender { display: flex; align-items: center; gap: 14px; }
.cmp-logo {
	width: 48px; height: 48px; border-radius: 12px;
	background: var(--bg-warm); display: grid; place-items: center;
	font-family: var(--font-display); font-weight: 700;
	font-size: 18px; color: var(--ink);
	border: 0.5px solid var(--line);
	flex-shrink: 0;
	overflow: hidden;
}
.cmp-logo.is-initials { background: var(--yellow); }
.cmp-logo.has-image img { width: 100%; height: 100%; object-fit: cover; display: block; }
.cmp-lender h4 { font-family: var(--font-display); font-weight: 600; font-size: 16px; margin: 0; }
.cmp-lender .sub { font-size: 12px; color: var(--ink-3); margin-top: 2px; }
.cmp-stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; }
.cmp-stat .k { font-size: 11px; color: var(--ink-3); letter-spacing: 0.04em; text-transform: uppercase; font-weight: 600; }
.cmp-stat .v { font-family: var(--font-display); font-weight: 600; font-size: 15px; margin-top: 2px; font-variant-numeric: tabular-nums; }
.cmp-action { display: flex; align-items: center; justify-content: stretch; }
.cmp-action .btn { width: 100%; padding: 10px 16px; font-size: 14px; }

@media (min-width: 900px) {
	.cmp-row { grid-template-columns: 1.4fr 1.6fr 0.9fr; gap: 24px; }
	.cmp-stats { grid-template-columns: repeat(3, 1fr); }
}

.cmp-foot { margin-top: 22px; text-align: center; font-size: 13px; color: var(--ink-3); }

/* ─── Calculator ─────────────────────────────────────────────── */
.calc {
	background: linear-gradient(160deg, var(--bg-warm), var(--bg));
	border: 0.5px solid var(--line);
	border-radius: var(--radius-xl);
	padding: 32px 24px;
	display: grid; grid-template-columns: 1fr; gap: 28px;
	position: relative; overflow: hidden;
}
@media (min-width: 900px) { .calc { grid-template-columns: 1.1fr 0.9fr; gap: 48px; padding: 48px; } }
.calc::before {
	content: ""; position: absolute; right: -100px; top: -100px;
	width: 320px; height: 320px;
	border-radius: 50%;
	background: radial-gradient(circle, var(--yellow) 0%, transparent 60%);
	opacity: 0.35; pointer-events: none;
}
.calc-controls { display: flex; flex-direction: column; gap: 22px; }
.calc-field .head { display: flex; align-items: baseline; justify-content: space-between; margin-bottom: 6px; }
.calc-field .head .label { font-size: 13px; font-weight: 600; color: var(--ink-2); }
.calc-field .head .val { font-family: var(--font-display); font-weight: 700; font-size: 18px; font-variant-numeric: tabular-nums; }

.term-chips { display: flex; gap: 8px; flex-wrap: wrap; }
.term-chips .chip { padding: 10px 14px; }
/* Mobile: 6 chip kỳ hạn xếp lưới 3 cột đều nhau, full chiều ngang */
@media (max-width: 719px) {
	.term-chips { display: grid; grid-template-columns: repeat(3, 1fr); }
	.term-chips .chip { padding: 10px 6px; text-align: center; }
}

.calc-result {
	position: relative;
	background: var(--ink); color: #fff;
	border-radius: var(--radius-lg);
	padding: 28px 24px;
	display: flex; flex-direction: column; justify-content: space-between;
	gap: 20px; overflow: hidden;
}
.calc-result::before {
	content: ""; position: absolute; bottom: -30%; right: -10%;
	width: 220px; height: 220px;
	background: radial-gradient(circle, var(--orange) 0%, transparent 60%);
	opacity: 0.3;
}
.calc-result h4 { color: #fff; font-size: 14px; font-weight: 600; letter-spacing: 0.04em; text-transform: uppercase; opacity: 0.7; margin-bottom: 4px; }
.calc-result .big {
	font-family: var(--font-display); font-weight: 700;
	font-size: clamp(32px, 5.4vw, 46px); letter-spacing: -0.03em;
	line-height: 1.05; color: #fff; font-variant-numeric: tabular-nums;
	display: flex; flex-wrap: wrap; align-items: baseline; gap: 6px;
	overflow-wrap: anywhere;
}
.calc-result .big .unit { font-size: 0.42em; color: var(--yellow); font-weight: 600; letter-spacing: 0; white-space: nowrap; }
.calc-result .breakdown {
	border-top: 0.5px solid rgba(255,255,255,0.14);
	padding-top: 18px;
	display: grid; grid-template-columns: 1fr 1fr; gap: 14px;
	position: relative; z-index: 1;
}
.calc-result .b-row .k { font-size: 12px; color: rgba(255,255,255,0.6); letter-spacing: 0.04em; text-transform: uppercase; }
.calc-result .b-row .v { font-family: var(--font-display); font-weight: 600; font-size: 16px; margin-top: 4px; font-variant-numeric: tabular-nums; }

.calc-disclaimer { font-size: 11px; color: rgba(255,255,255,0.5); line-height: 1.5; position: relative; z-index: 1; }

/* ─── Usage ──────────────────────────────────────────────────── */
.usage-tabs {
	display: flex; gap: 6px; overflow-x: auto; padding-bottom: 8px; scrollbar-width: none;
	margin-bottom: 20px;
}
.usage-tabs::-webkit-scrollbar { display: none; }
.usage-tab {
	flex-shrink: 0;
	display: inline-flex; align-items: center; gap: 8px;
	padding: 12px 18px;
	border-radius: 999px;
	border: 0.5px solid var(--line-2);
	background: var(--bg);
	font-family: var(--font-body);
	font-size: 14px; font-weight: 500;
	color: var(--ink-2);
	transition: all 0.15s ease;
	white-space: nowrap;
	cursor: pointer;
}
.usage-tab .ico { font-size: 16px; }
.usage-tab[data-active="1"] { background: var(--ink); color: var(--bg); border-color: var(--ink); }

.usage-content {
	background: var(--bg-warm);
	border: 0.5px solid var(--line);
	border-radius: var(--radius-lg);
	padding: 28px;
	display: grid; grid-template-columns: 1fr; gap: 24px;
}
.usage-content[hidden] { display: none; }
@media (min-width: 900px) { .usage-content { grid-template-columns: 1.2fr 0.8fr; padding: 40px; gap: 40px; } }
.usage-text h3 { font-size: 26px; margin-bottom: 12px; }
.usage-text p { color: var(--ink-3); margin: 0 0 18px; }
.usage-text ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 10px; }
.usage-text li { display: flex; gap: 12px; font-size: 14px; color: var(--ink-2); }
.usage-text li .tick {
	flex-shrink: 0;
	width: 22px; height: 22px; border-radius: 50%;
	background: var(--ink); color: var(--yellow);
	display: grid; place-items: center; font-size: 12px; font-weight: 800;
	margin-top: 2px;
}
.usage-visual {
	background: var(--bg);
	border-radius: var(--radius);
	padding: 20px;
	border: 0.5px solid var(--line);
	display: flex; flex-direction: column; gap: 14px;
}
.usage-visual .bar { display: flex; align-items: center; gap: 12px; }
.usage-visual .bar .lbl { font-size: 12px; color: var(--ink-3); flex: 0 0 70px; }
.usage-visual .bar .track { flex: 1; height: 8px; background: var(--bg-dim); border-radius: 999px; overflow: hidden; }
.usage-visual .bar .fill { height: 100%; background: var(--yellow); border-radius: 999px; }
.usage-visual .bar .fill.orange { background: var(--orange); }
.usage-visual .bar .fill.ink { background: var(--ink); }
.usage-visual .bar .pct { font-family: var(--font-display); font-weight: 600; font-size: 13px; flex: 0 0 40px; text-align: right; font-variant-numeric: tabular-nums; }

/* ─── Testimonials ──────────────────────────────────────────── */
.test-grid { display: grid; grid-template-columns: 1fr; gap: 16px; }
@media (min-width: 720px) { .test-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .test-grid { grid-template-columns: repeat(3, 1fr); } }
.test {
	background: var(--bg);
	border: 0.5px solid var(--line);
	border-radius: var(--radius-lg);
	padding: 24px;
	display: flex; flex-direction: column; gap: 16px;
	position: relative;
}
.test .stars { color: var(--yellow); font-size: 14px; letter-spacing: 2px; }
.test .stars span { color: var(--ink-4); }
.test .quote { font-family: var(--font-display); font-size: 17px; line-height: 1.4; color: var(--ink); margin: 0; font-weight: 500; letter-spacing: -0.015em; }
.test .quote::before { content: "❝ "; color: var(--orange); font-weight: 700; }
.test .who { display: flex; align-items: center; gap: 12px; margin-top: auto; padding-top: 16px; border-top: 0.5px solid var(--line); }
.test .avatar {
	width: 40px; height: 40px; border-radius: 50%;
	background: var(--yellow); display: grid; place-items: center;
	font-family: var(--font-display); font-weight: 700; font-size: 16px; color: var(--ink);
}
.test .who .name { font-size: 14px; font-weight: 600; }
.test .who .meta { font-size: 12px; color: var(--ink-3); }

.test.feature { background: var(--ink); color: #fff; grid-column: 1 / -1; }
@media (min-width: 1024px) { .test.feature { grid-column: span 2; } }
.test.feature .quote { color: #fff; font-size: 22px; }
.test.feature .quote::before { color: var(--yellow); }
.test.feature .who .name { color: #fff; }
.test.feature .who .meta { color: rgba(255,255,255,0.6); }
.test.feature .who { border-color: rgba(255,255,255,0.14); }
.test.feature .stars span { color: rgba(255,255,255,0.3); }

/* ─── Partners ───────────────────────────────────────────────── */
.partners {
	overflow: hidden;
	padding: 20px 0;
	border-top: 0.5px solid var(--line);
	border-bottom: 0.5px solid var(--line);
	background: var(--bg-warm);
	mask: linear-gradient(90deg, transparent, #000 10%, #000 90%, transparent);
	-webkit-mask: linear-gradient(90deg, transparent, #000 10%, #000 90%, transparent);
}
.marquee {
	display: flex; gap: 56px; width: max-content;
	animation: marquee 32s linear infinite;
}
.marquee:hover { animation-play-state: paused; }
@keyframes marquee {
	from { transform: translateX(0); }
	to { transform: translateX(-50%); }
}
.partner {
	display: inline-flex; align-items: center; gap: 12px;
	font-family: var(--font-display); font-weight: 600; font-size: 18px;
	color: var(--ink-3);
	white-space: nowrap;
}
.partner .pl-dot { width: 10px; height: 10px; border-radius: 3px; background: var(--ink-3); flex-shrink: 0; }
.partner:nth-child(3n) .pl-dot { background: var(--yellow); }
.partner:nth-child(3n+1) .pl-dot { background: var(--orange); }
a.partner { text-decoration: none; transition: color 0.15s ease; }
a.partner:hover { color: var(--ink); }
.partner .partner-logo {
	width: 34px; height: 34px; flex-shrink: 0;
	border-radius: 10px; overflow: hidden;
	background: var(--bg);
	border: 0.5px solid var(--line);
}
.partner .partner-logo img { width: 100%; height: 100%; object-fit: cover; display: block; }
.partner .partner-logo.is-initials {
	display: flex; align-items: center; justify-content: center;
	font-size: 12px; font-weight: 700; color: var(--ink-2);
}

/* ─── FAQ ────────────────────────────────────────────────────── */
.faq-wrap { display: grid; grid-template-columns: 1fr; gap: 32px; align-items: start; }
@media (min-width: 1000px) { .faq-wrap { grid-template-columns: 0.85fr 1.15fr; gap: 56px; } }

.faq-aside { display: flex; flex-direction: column; }
@media (min-width: 1000px) { .faq-aside { position: sticky; top: 80px; } }

.faq-support {
	margin-top: 28px; padding: 0;
	background: var(--ink); color: #fff;
	border-radius: var(--radius-lg);
	position: relative; overflow: hidden;
	display: flex; flex-direction: column;
}
.faq-support::before {
	content: ""; position: absolute; inset: 0;
	background:
		radial-gradient(60% 70% at 100% 0%, var(--orange) 0%, transparent 55%),
		radial-gradient(70% 80% at 0% 100%, var(--yellow) 0%, transparent 50%);
	opacity: 0.22; pointer-events: none;
}
.faq-support::after {
	content: ""; position: absolute; inset: 0;
	background-image: radial-gradient(circle at 1px 1px, rgba(255,255,255,0.06) 1px, transparent 0);
	background-size: 16px 16px; pointer-events: none;
	mask: linear-gradient(180deg, transparent, #000 30%, #000 80%, transparent);
	-webkit-mask: linear-gradient(180deg, transparent, #000 30%, #000 80%, transparent);
}
.faq-support > * { position: relative; z-index: 1; }

.faq-support-top { display: flex; align-items: center; gap: 16px; padding: 22px 22px 18px; }

.faq-support-mascot {
	width: 76px; height: 76px;
	border-radius: 50%;
	background: var(--yellow);
	display: grid; place-items: center;
	flex-shrink: 0; overflow: hidden; position: relative;
	box-shadow: 0 0 0 4px rgba(255, 210, 63, 0.18), 0 12px 30px -10px rgba(255, 210, 63, 0.5);
}
.faq-support-mascot svg { transform: translateY(6px) scale(1.2); }
.faq-support-mascot .online {
	position: absolute; right: 2px; bottom: 4px;
	width: 16px; height: 16px; border-radius: 50%;
	background: #2ECC71; border: 3px solid var(--ink); z-index: 2;
}
.faq-support-mascot .online::after {
	content: ""; position: absolute; inset: -3px; border-radius: 50%;
	background: #2ECC71; opacity: 0.4;
	animation: pulse-online 2s ease-out infinite;
}
@keyframes pulse-online {
	0% { transform: scale(0.9); opacity: 0.5; }
	100% { transform: scale(1.8); opacity: 0; }
}

.faq-support-head { flex: 1; min-width: 0; }
.faq-support-eyebrow {
	display: inline-flex; align-items: center; gap: 6px;
	font-size: 10px; font-weight: 700;
	letter-spacing: 0.1em; text-transform: uppercase;
	color: var(--yellow); margin-bottom: 6px;
}
.faq-support h4 {
	font-family: var(--font-display); font-weight: 700;
	font-size: 20px; line-height: 1.15;
	letter-spacing: -0.02em;
	margin: 0; color: #fff;
}

.faq-support-body { padding: 0 22px 22px; display: flex; flex-direction: column; gap: 16px; }
.faq-support-body p { font-size: 13.5px; color: rgba(255, 255, 255, 0.7); margin: 0; line-height: 1.55; }

.faq-channels { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; }
.faq-channel {
	display: flex; align-items: center; gap: 10px;
	padding: 12px;
	background: rgba(255, 255, 255, 0.06);
	border: 0.5px solid rgba(255, 255, 255, 0.1);
	border-radius: 12px;
	text-decoration: none; color: #fff;
	transition: background 0.15s ease, border-color 0.15s ease, transform 0.15s ease;
}
.faq-channel:hover { background: rgba(255, 255, 255, 0.1); border-color: rgba(255, 255, 255, 0.18); transform: translateY(-1px); }
.faq-channel-ico {
	flex-shrink: 0;
	width: 32px; height: 32px;
	border-radius: 8px;
	display: grid; place-items: center;
	background: var(--yellow); color: var(--ink);
}
.faq-channel-ico.zalo { background: #0068FF; color: #fff; }
.faq-channel-text { min-width: 0; flex: 1; }
.faq-channel-label { font-family: var(--font-display); font-weight: 600; font-size: 13px; letter-spacing: -0.01em; margin: 0; }
.faq-channel-sub { font-size: 11px; color: rgba(255, 255, 255, 0.55); margin-top: 1px; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }

.faq-support-meta {
	display: flex; align-items: center; gap: 14px;
	padding: 14px 22px;
	background: rgba(0, 0, 0, 0.3);
	border-top: 0.5px solid rgba(255, 255, 255, 0.08);
	font-size: 11px; color: rgba(255, 255, 255, 0.6); flex-wrap: wrap;
}
.faq-support-meta .meta-item { display: inline-flex; align-items: center; gap: 6px; }
.faq-support-meta .meta-item svg { color: var(--yellow); flex-shrink: 0; }

@media (max-width: 480px) { .faq-channels { grid-template-columns: 1fr; } }

.faq-main { min-width: 0; }

.faq-filters { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 18px; }
.faq-filters .chip { display: inline-flex; align-items: center; gap: 6px; padding: 9px 14px; }
/* Mobile: tablist 1 hàng vuốt ngang (giống .cmp-filters), không gãy dòng lởm chởm */
@media (max-width: 719px) {
	.faq-filters {
		flex-wrap: nowrap;
		overflow-x: auto;
		-webkit-overflow-scrolling: touch;
		scrollbar-width: none;
		margin-left: -20px; margin-right: -20px;
		padding-left: 20px; padding-right: 20px;
	}
	.faq-filters::-webkit-scrollbar { display: none; }
	.faq-filters .chip { flex-shrink: 0; }
}
.faq-filters .chip .chip-count {
	display: inline-grid; place-items: center;
	min-width: 20px; height: 20px; padding: 0 5px;
	border-radius: 999px;
	background: rgba(10, 10, 10, 0.06);
	font-size: 11px; font-weight: 700;
	font-variant-numeric: tabular-nums;
	color: var(--ink-3);
}
.faq-filters .chip[data-active="1"] .chip-count { background: var(--yellow); color: var(--ink); }

.faq { display: flex; flex-direction: column; gap: 10px; }
.faq-item {
	border: 0.5px solid var(--line);
	border-radius: var(--radius);
	background: var(--bg);
	overflow: hidden;
	transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}
.faq-item:hover { border-color: var(--line-2); }
.faq-item[data-open="1"] {
	border-color: var(--ink);
	box-shadow: 0 12px 36px -18px rgba(10, 10, 10, 0.18);
	background: var(--bg-warm);
}

.faq-q {
	width: 100%;
	display: grid;
	grid-template-columns: auto 1fr auto;
	gap: 14px;
	align-items: center;
	padding: 18px 20px;
	background: transparent; border: 0;
	text-align: left;
	font-family: var(--font-display);
	font-weight: 600; font-size: 16px;
	color: var(--ink);
	letter-spacing: -0.015em; line-height: 1.35;
	cursor: pointer;
}
@media (min-width: 600px) { .faq-q { padding: 20px 24px; font-size: 17px; } }

.faq-cat {
	font-family: var(--font-body);
	font-size: 10px; font-weight: 700;
	letter-spacing: 0.08em; text-transform: uppercase;
	color: var(--ink-3);
	padding: 5px 9px; border-radius: 999px;
	background: var(--bg-dim);
	white-space: nowrap;
}
.faq-item[data-open="1"] .faq-cat { background: var(--yellow); color: var(--ink); }

.faq-text { flex: 1; min-width: 0; }

.faq-q .ico {
	flex-shrink: 0;
	width: 32px; height: 32px; border-radius: 50%;
	background: var(--bg-dim);
	display: grid; place-items: center;
	color: var(--ink);
	transition: transform 0.25s cubic-bezier(.3, .7, .4, 1), background 0.2s ease;
}
.faq-item[data-open="1"] .faq-q .ico {
	transform: rotate(45deg);
	background: var(--ink); color: var(--yellow);
}

.faq-a {
	display: grid; grid-template-rows: 0fr;
	transition: grid-template-rows 0.3s cubic-bezier(.3, .7, .4, 1);
	color: var(--ink-3); font-size: 15px; line-height: 1.6;
}
.faq-item[data-open="1"] .faq-a { grid-template-rows: 1fr; }
.faq-a-inner { overflow: hidden; padding: 0 20px; }
@media (min-width: 600px) { .faq-a-inner { padding: 0 24px; } }
.faq-item[data-open="1"] .faq-a-inner { padding-bottom: 22px; }

.faq-empty {
	display: flex; flex-direction: column; align-items: center; gap: 12px;
	padding: 40px 20px;
	border: 0.5px dashed var(--line-2);
	border-radius: var(--radius-lg);
	color: var(--ink-3); font-size: 14px; text-align: center;
}

.faq-foot {
	margin-top: 28px;
	padding: 20px 24px;
	background: var(--bg-warm);
	border: 0.5px solid var(--line);
	border-radius: var(--radius);
	display: flex; align-items: center; justify-content: space-between;
	gap: 16px; flex-wrap: wrap;
}
.faq-foot > span { font-size: 14px; color: var(--ink-3); }

/* ─── Final CTA ──────────────────────────────────────────────── */
.cta {
	background: var(--ink); color: #fff;
	border-radius: var(--radius-xl);
	padding: 56px 24px;
	text-align: center;
	position: relative; overflow: hidden;
	display: flex; flex-direction: column; align-items: center; gap: 20px;
}
@media (min-width: 768px) { .cta { padding: 80px 48px; } }
.cta h2 { color: #fff; max-width: 18ch; }
.cta h2 .accent { color: var(--yellow); }
.cta p { color: rgba(255,255,255,0.7); max-width: 50ch; }
.cta .glow {
	position: absolute; inset: -20%;
	background:
		radial-gradient(40% 40% at 80% 20%, var(--yellow) 0%, transparent 50%),
		radial-gradient(30% 30% at 20% 80%, var(--orange) 0%, transparent 50%);
	opacity: 0.18; pointer-events: none;
}
.cta-row { display: flex; flex-direction: column; gap: 10px; width: 100%; max-width: 360px; }
@media (min-width: 480px) { .cta-row { flex-direction: row; } .cta-row .btn { flex: 1; } }
.cta-mascot { position: absolute; right: -20px; bottom: -20px; width: 140px; opacity: 0.9; pointer-events: none; }
@media (min-width: 900px) { .cta-mascot { width: 200px; right: 40px; bottom: -10px; } }

/* ─── Footer ─────────────────────────────────────────────────── */
footer {
	background: var(--bg-warm);
	border-top: 0.5px solid var(--line);
	padding: 56px 0 32px;
}
.footer-grid { display: grid; grid-template-columns: 1fr; gap: 32px; margin-bottom: 40px; }
@media (min-width: 720px) { .footer-grid { grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 32px; } }
.footer-col h5,
.footer-col-title {
	font-family: var(--font-display); font-weight: 600;
	font-size: 12px; letter-spacing: 0.08em; text-transform: uppercase;
	color: var(--ink-3); margin: 0 0 14px;
}
.footer-col ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 4px; }
.footer-col li { list-style: none; padding: 0; margin: 0; }
.footer-col li::marker { content: none; }
.footer-col li a {
	font-size: 14px; color: var(--ink-2);
	display: inline-block;
	padding: 8px 0;  /* Tap target 32px+ on mobile */
	transition: color 0.15s ease;
}
.footer-col li a:hover { color: var(--orange); }
.footer-brand p { font-size: 13px; color: var(--ink-3); margin: 12px 0 16px; max-width: 36ch; }
.legal-note {
	margin-top: 24px;
	padding: 18px;
	background: var(--bg);
	border: 0.5px solid var(--line);
	border-radius: var(--radius);
	font-size: 12px; line-height: 1.6; color: var(--ink-3);
}
.legal-note strong { color: var(--ink-2); font-weight: 600; }
.footer-bar {
	display: flex; flex-direction: column; gap: 12px;
	padding-top: 24px; border-top: 0.5px solid var(--line);
	font-size: 12px; color: var(--ink-3);
}
@media (min-width: 720px) { .footer-bar { flex-direction: row; align-items: center; justify-content: space-between; } }
.footer-bar a:hover { color: var(--orange); }

/* ─── Custom select dropdown (thay dropdown mặc định trình duyệt) ── */
.wpcf7-form-control-wrap:has(> .vm-select) { position: relative; display: block; }
select.vm-select-native {
	position: absolute !important;
	width: 1px; height: 1px;
	opacity: 0;
	pointer-events: none;
}
.vm-select { position: relative; width: 100%; }
.vm-select-btn {
	width: 100%;
	display: flex; align-items: center; justify-content: space-between; gap: 12px;
	padding: 14px 16px;
	border: 1.5px solid var(--line-2);
	border-radius: var(--radius);
	background: var(--bg);
	font-family: var(--font-body); font-size: 15px;
	color: var(--ink);
	text-align: left;
	cursor: pointer;
	transition: border-color 0.15s ease;
}
.vm-select-btn:focus-visible { outline: 0; border-color: var(--ink); }
.vm-select.open .vm-select-btn { border-color: var(--ink); }
.vm-select-value { overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.vm-select-value.is-placeholder { color: var(--ink-4); }
.vm-select-chevron { flex: 0 0 auto; transition: transform 0.18s ease; }
.vm-select.open .vm-select-chevron { transform: rotate(180deg); }
.vm-select-panel {
	position: absolute; top: calc(100% + 6px); left: 0; right: 0; z-index: 60;
	background: var(--bg);
	border: 1px solid var(--line-2);
	border-radius: var(--radius);
	box-shadow: var(--shadow-2);
	padding: 6px;
	max-height: 288px; overflow-y: auto;
	opacity: 0; transform: translateY(-4px) scale(0.99);
	visibility: hidden;
	transition: opacity 0.15s ease, transform 0.15s ease, visibility 0.15s;
}
.vm-select.open .vm-select-panel { opacity: 1; transform: none; visibility: visible; }
.vm-select-opt {
	display: flex; align-items: center; justify-content: space-between; gap: 10px;
	padding: 11px 12px;
	border-radius: var(--radius-sm);
	font-size: 15px; color: var(--ink);
	cursor: pointer;
	transition: background 0.1s ease;
}
.vm-select-opt:hover,
.vm-select-opt.active { background: var(--yellow-tint); }
.vm-select-opt[aria-selected="true"] { background: var(--yellow-soft); font-weight: 600; }
.vm-select-opt .vm-select-check { flex: 0 0 auto; opacity: 0; }
.vm-select-opt[aria-selected="true"] .vm-select-check { opacity: 1; }
.vm-select-panel::-webkit-scrollbar { width: 8px; }
.vm-select-panel::-webkit-scrollbar-thumb { background: var(--line-2); border-radius: 8px; }
/* Trạng thái lỗi từ wizard/CF7 lan sang nút custom */
select.vm-invalid + .vm-select .vm-select-btn,
select.wpcf7-not-valid + .vm-select .vm-select-btn {
	border-color: var(--orange);
	background: rgba(255, 107, 53, 0.04);
}

/* ─── Báo lỗi form dùng chung (review, comment, mọi form không phải CF7) ─── */
.vm-invalid {
	border-color: var(--orange) !important;
	background: rgba(255, 107, 53, 0.04) !important;
}
.vm-invalid:focus { outline: 0; box-shadow: 0 0 0 3px rgba(255, 107, 53, 0.15) !important; }
.vm-field-error {
	display: block;
	margin-top: 6px;
	font-size: 12px; font-weight: 500;
	color: var(--orange);
	line-height: 1.4;
}
/* Star picker (review) khi lỗi → viền cam quanh cụm sao */
.vm-invalid-stars { box-shadow: 0 0 0 2px rgba(255,107,53,0.35); border-radius: 10px; }
