/* ===== Design tokens ===== */
:root {
  --bg: #f6f7fb;
  --bg-soft: #eef0f7;
  --surface: #ffffff;
  --ink: #12151d;
  --ink-2: #3c4354;
  --mut: #6d7688;
  --line: #e5e8f0;
  --line-2: #d8dde9;
  --brand: #4f46e5;
  --brand-2: #6d5ef8;
  --brand-ink: #ffffff;
  --brand-soft: #eef0ff;
  --star: #f59e0b;
  --good: #0f9d58;
  --good-soft: #e7f6ee;
  --mid: #d97706;
  --mid-soft: #fdf1e0;
  --low: #dc2626;
  --low-soft: #fdeceb;
  --r-lg: 18px;
  --r-md: 12px;
  --r-sm: 9px;
  --sh-1: 0 1px 2px rgba(16, 21, 35, .05), 0 1px 3px rgba(16, 21, 35, .04);
  --sh-2: 0 4px 12px rgba(16, 21, 35, .07), 0 2px 4px rgba(16, 21, 35, .04);
  --sh-3: 0 14px 40px rgba(16, 21, 35, .12);
  --maxw: 1080px;
}
@media (prefers-color-scheme: dark) {
  :root {
    --bg: #0d1017;
    --bg-soft: #141926;
    --surface: #161b26;
    --ink: #e9ecf3;
    --ink-2: #c2c8d6;
    --mut: #8d97ac;
    --line: #242b3a;
    --line-2: #2f3849;
    --brand: #7c74ff;
    --brand-2: #9b8cff;
    --brand-soft: #1e2138;
    --good: #38c98a;
    --good-soft: #12291f;
    --mid: #eda13c;
    --mid-soft: #2a2011;
    --low: #f4736b;
    --low-soft: #2b1614;
    --sh-1: 0 1px 2px rgba(0, 0, 0, .4);
    --sh-2: 0 6px 16px rgba(0, 0, 0, .45);
    --sh-3: 0 18px 44px rgba(0, 0, 0, .55);
  }
}

* { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: "Be Vietnam Pro", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  font-size: 15.5px;
  line-height: 1.6;
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
}
a { color: var(--brand); text-decoration: none; }
a:hover { text-decoration: underline; }
h1, h2, h3 { line-height: 1.25; letter-spacing: -0.015em; margin: 0; }
h1 { font-size: clamp(1.5rem, 1.1rem + 1.6vw, 2.05rem); font-weight: 800; }
h2 { font-size: 1.22rem; font-weight: 700; }
h3 { font-size: 1rem; font-weight: 650; }
p { margin: 0; }
.wrap { max-width: var(--maxw); margin: 0 auto; padding: 0 18px; }
.mut { color: var(--mut); font-size: .875rem; }
.sprite { display: none; }
.ic { width: 1em; height: 1em; stroke: currentColor; stroke-width: 1.8; fill: none; stroke-linecap: round; stroke-linejoin: round; flex: none; vertical-align: -0.13em; }
section { margin: 40px 0; }

/* ===== Header ===== */
.hd {
  position: sticky; top: 0; z-index: 40;
  background: color-mix(in srgb, var(--surface) 88%, transparent);
  backdrop-filter: saturate(1.6) blur(10px);
  border-bottom: 1px solid var(--line);
}
.hd-in { display: flex; align-items: center; gap: 14px; padding: 11px 18px; }
.logo { display: flex; align-items: center; gap: 9px; color: var(--ink); font-size: 1rem; white-space: nowrap; }
.logo:hover { text-decoration: none; }
.logo-mark {
  width: 30px; height: 30px; border-radius: 9px; display: grid; place-items: center;
  background: linear-gradient(135deg, var(--brand), var(--brand-2));
  color: #fff; font-weight: 800; font-size: .78rem; letter-spacing: .02em;
  box-shadow: 0 2px 8px color-mix(in srgb, var(--brand) 35%, transparent);
}
.logo-mark.sm { width: 22px; height: 22px; font-size: .62rem; border-radius: 7px; display: inline-grid; vertical-align: -6px; }
.logo-txt { font-weight: 600; }
.logo-txt b { font-weight: 800; }
.hd-search { position: relative; flex: 1; max-width: 400px; margin-left: 6px; }
.hd-search-ic { position: absolute; left: 12px; top: 50%; transform: translateY(-50%); color: var(--mut); font-size: 1rem; }
.hd-search input {
  width: 100%; padding: 9px 12px 9px 36px; font: inherit; font-size: .92rem;
  border: 1px solid var(--line-2); border-radius: 999px; background: var(--bg);
  color: var(--ink); transition: border-color .15s, box-shadow .15s, background .15s;
}
.hd-search input:focus {
  outline: none; background: var(--surface); border-color: var(--brand);
  box-shadow: 0 0 0 3px color-mix(in srgb, var(--brand) 16%, transparent);
}
.hd-nav { display: flex; align-items: center; gap: 6px; margin-left: auto; white-space: nowrap; }
.nav-link { color: var(--ink-2); font-size: .92rem; font-weight: 550; padding: 8px 10px; border-radius: var(--r-sm); }
.nav-link:hover { text-decoration: none; color: var(--ink); background: var(--bg-soft); }

/* autocomplete */
.ac {
  position: absolute; top: calc(100% + 6px); left: 0; right: 0; display: none; overflow: hidden;
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--r-md); box-shadow: var(--sh-3);
}
.ac.open { display: block; }
.ac a { display: flex; justify-content: space-between; gap: 10px; padding: 9px 13px; color: var(--ink); font-size: .9rem; }
.ac a + a { border-top: 1px solid var(--line); }
.ac a:hover { background: var(--brand-soft); text-decoration: none; }
.ac span { color: var(--star); font-weight: 600; }

/* ===== Buttons, chips, pills ===== */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 7px;
  background: linear-gradient(135deg, var(--brand), var(--brand-2)); color: var(--brand-ink);
  border: 0; border-radius: 999px; padding: 10px 18px; font: inherit; font-size: .92rem; font-weight: 600;
  cursor: pointer; box-shadow: 0 2px 10px color-mix(in srgb, var(--brand) 30%, transparent);
  transition: transform .12s, box-shadow .15s, filter .15s;
}
.btn:hover { text-decoration: none; transform: translateY(-1px); filter: brightness(1.06); box-shadow: 0 6px 18px color-mix(in srgb, var(--brand) 36%, transparent); }
.btn:active { transform: translateY(0); }
.btn-sm { padding: 7px 14px; font-size: .875rem; }
.btn-lg { padding: 13px 26px; font-size: 1rem; }
.btn-ghost { background: var(--surface); color: var(--ink); border: 1px solid var(--line-2); box-shadow: none; }
.btn-ghost:hover { background: var(--bg-soft); filter: none; }

.chips { display: flex; flex-wrap: wrap; gap: 8px; }
.chip {
  display: inline-flex; align-items: center; gap: 6px; padding: 7px 14px;
  background: var(--surface); border: 1px solid var(--line); border-radius: 999px;
  color: var(--ink-2); font-size: .875rem; box-shadow: var(--sh-1);
  transition: border-color .15s, transform .12s, color .15s;
}
.chip:hover { text-decoration: none; border-color: var(--brand); color: var(--brand); transform: translateY(-1px); }
.chip.static { pointer-events: none; }
.chip b { color: var(--brand); font-weight: 700; }
.chip .ic { color: var(--mut); }

.tags { display: flex; gap: 8px; flex-wrap: wrap; margin-top: 10px; }
.tag { display: inline-flex; gap: 6px; padding: 5px 12px; border-radius: 999px; background: var(--brand-soft); color: var(--brand); font-size: .85rem; font-weight: 600; }
.tag:hover { text-decoration: none; filter: brightness(.96); }

.pill { display: inline-flex; align-items: center; gap: 6px; padding: 4px 11px; border-radius: 999px; font-size: .82rem; font-weight: 600; }
.pill span { font-weight: 500; opacity: .85; }
.pill-good { background: var(--good-soft); color: var(--good); }
.pill-mid { background: var(--mid-soft); color: var(--mid); }
.pill-low { background: var(--low-soft); color: var(--low); }
.pill-none { background: var(--bg-soft); color: var(--mut); font-weight: 500; }

.badge {
  display: inline-flex; align-items: center; gap: 7px; padding: 6px 15px; border-radius: 999px;
  background: color-mix(in srgb, var(--brand) 12%, transparent); color: var(--brand);
  font-size: .84rem; font-weight: 600; border: 1px solid color-mix(in srgb, var(--brand) 22%, transparent);
}

/* ===== Cards ===== */
.card { background: var(--surface); border: 1px solid var(--line); border-radius: var(--r-lg); padding: 22px; box-shadow: var(--sh-1); }
.card + .card { margin-top: 16px; }
.card > h2 { margin-bottom: 14px; }
.prose { color: var(--ink-2); }
.empty { text-align: center; padding: 34px 20px; color: var(--mut); display: grid; gap: 14px; justify-items: center; }

.sec-head { display: flex; align-items: baseline; justify-content: space-between; gap: 14px; margin-bottom: 15px; }
.more { font-size: .9rem; font-weight: 600; display: inline-flex; align-items: center; gap: 5px; }
.more:hover { text-decoration: none; gap: 8px; }

/* ===== Hero ===== */
.hero { margin: 0 0 44px; padding: 54px 18px 46px; text-align: center; position: relative; }
.hero::before {
  content: ""; position: absolute; inset: 0; z-index: -1;
  /* tràn hết chiều ngang màn hình dù hero nằm trong .wrap */
  margin-left: calc(50% - 50vw); margin-right: calc(50% - 50vw); width: 100vw;
  background:
    radial-gradient(60% 70% at 20% 0%, color-mix(in srgb, var(--brand) 20%, transparent), transparent 70%),
    radial-gradient(50% 60% at 85% 10%, color-mix(in srgb, var(--brand-2) 18%, transparent), transparent 70%),
    linear-gradient(180deg, var(--bg-soft), var(--bg));
}
.hero-in { max-width: 720px; margin: 0 auto; display: grid; gap: 16px; justify-items: center; }
.hero h1 { font-size: clamp(1.75rem, 1.1rem + 2.6vw, 2.7rem); }
.hero .hl {
  background: linear-gradient(120deg, var(--brand), var(--brand-2));
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.hero-sub { color: var(--ink-2); font-size: 1.02rem; max-width: 560px; }
.hero-search { position: relative; display: flex; gap: 8px; width: 100%; max-width: 560px; margin-top: 4px; }
.hero-search-ic { position: absolute; left: 16px; top: 50%; transform: translateY(-50%); color: var(--mut); font-size: 1.05rem; }
.hero-search input {
  flex: 1; min-width: 0; padding: 13px 16px 13px 44px; font: inherit;
  border: 1px solid var(--line-2); border-radius: 999px; background: var(--surface);
  color: var(--ink); box-shadow: var(--sh-2); transition: border-color .15s, box-shadow .15s;
}
.hero-search input:focus { outline: none; border-color: var(--brand); box-shadow: 0 0 0 4px color-mix(in srgb, var(--brand) 15%, transparent); }
.hero-stats { display: flex; gap: 34px; margin-top: 6px; }
.hero-stats div { display: grid; }
.hero-stats b { font-size: 1.35rem; font-weight: 800; letter-spacing: -0.02em; }
.hero-stats span { font-size: .82rem; color: var(--mut); }

/* ===== Tiles (industries) ===== */
.tiles { display: grid; grid-template-columns: repeat(auto-fill, minmax(210px, 1fr)); gap: 12px; }
.tile {
  display: grid; gap: 3px; padding: 16px; border-radius: var(--r-md); color: var(--ink);
  background: var(--surface); border: 1px solid var(--line); box-shadow: var(--sh-1);
  transition: transform .14s, box-shadow .18s, border-color .15s;
}
.tile:hover { text-decoration: none; transform: translateY(-2px); box-shadow: var(--sh-2); border-color: color-mix(in srgb, hsl(var(--h) 75% 55%) 45%, var(--line)); }
.tile-ic {
  width: 34px; height: 34px; border-radius: 10px; display: grid; place-items: center; margin-bottom: 6px;
  background: hsl(var(--h) 80% 96%); color: hsl(var(--h) 65% 42%); font-size: 1.05rem;
}
@media (prefers-color-scheme: dark) { .tile-ic { background: hsl(var(--h) 40% 18%); color: hsl(var(--h) 70% 72%); } }
.tile-name { font-weight: 600; font-size: .95rem; }
.tile-n { font-size: .82rem; color: var(--mut); }

/* ===== Company cards ===== */
.grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(310px, 1fr)); gap: 12px; }
.cc {
  display: flex; gap: 13px; padding: 16px; color: var(--ink);
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--r-md); box-shadow: var(--sh-1);
  transition: transform .14s, box-shadow .18s, border-color .15s;
}
.cc:hover { text-decoration: none; transform: translateY(-2px); box-shadow: var(--sh-2); border-color: color-mix(in srgb, var(--brand) 40%, var(--line)); }
.cc-ava {
  width: 46px; height: 46px; flex: none; border-radius: 12px; display: grid; place-items: center;
  font-weight: 700; font-size: .95rem; color: #fff; letter-spacing: .01em;
  background: linear-gradient(135deg, hsl(var(--h, 232) 72% 58%), hsl(calc(var(--h, 232) + 26) 72% 48%));
}
.cc-ava.sm { width: 36px; height: 36px; font-size: .8rem; border-radius: 10px; }
.cc-ava.xl { width: 72px; height: 72px; font-size: 1.5rem; border-radius: 18px; }
.cc-ava.anon { background: linear-gradient(135deg, #8b93a7, #656d80); }
.cc-body { min-width: 0; display: grid; gap: 7px; align-content: start; }
.cc-body h3 { font-size: .96rem; font-weight: 620; overflow: hidden; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; }
.cc-meta { display: flex; flex-wrap: wrap; gap: 4px 12px; font-size: .82rem; color: var(--mut); }
.cc-meta span { display: inline-flex; align-items: center; gap: 5px; min-width: 0; }
.cc-foot { display: flex; align-items: center; gap: 9px; flex-wrap: wrap; }
.fresh { display: inline-flex; align-items: center; gap: 5px; font-size: .78rem; color: var(--brand); font-weight: 600; }

/* ===== Stars ===== */
.stars { white-space: nowrap; letter-spacing: .5px; }
.stars .st { color: var(--line-2); }
.stars .st.on { color: var(--star); }

/* ===== Steps ===== */
.steps { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 12px; }
.step { background: var(--surface); border: 1px solid var(--line); border-radius: var(--r-md); padding: 20px; display: grid; gap: 7px; box-shadow: var(--sh-1); }
.step-ic { width: 38px; height: 38px; border-radius: 11px; display: grid; place-items: center; background: var(--brand-soft); color: var(--brand); font-size: 1.1rem; }
.step p { color: var(--mut); font-size: .88rem; }

/* ===== CTA ===== */
.cta {
  text-align: center; padding: 42px 24px; border-radius: var(--r-lg); display: grid; gap: 12px; justify-items: center;
  background: linear-gradient(135deg, color-mix(in srgb, var(--brand) 12%, var(--surface)), color-mix(in srgb, var(--brand-2) 9%, var(--surface)));
  border: 1px solid color-mix(in srgb, var(--brand) 22%, var(--line));
}
.cta p { color: var(--ink-2); max-width: 520px; }

/* ===== List page ===== */
.page-head { margin: 28px 0 18px; }
.page-head h1 { margin-bottom: 4px; }
.filters {
  display: flex; flex-wrap: wrap; gap: 12px; align-items: end; margin-bottom: 18px;
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--r-md); padding: 14px; box-shadow: var(--sh-1);
}
.filters-search { position: relative; flex: 2; min-width: 190px; display: flex; align-items: center; }
.filters-search .ic { position: absolute; left: 12px; color: var(--mut); }
.filters label { flex: 1; min-width: 165px; display: grid; gap: 4px; }
.filters label span { font-size: .78rem; font-weight: 600; color: var(--mut); text-transform: uppercase; letter-spacing: .04em; }
.filters input, .filters select {
  width: 100%; padding: 10px 13px; font: inherit; font-size: .92rem; color: var(--ink);
  background: var(--bg); border: 1px solid var(--line-2); border-radius: var(--r-sm);
}
.filters-search input { padding-left: 36px; }
.filters input:focus, .filters select:focus { outline: none; border-color: var(--brand); box-shadow: 0 0 0 3px color-mix(in srgb, var(--brand) 15%, transparent); }
.pager { display: flex; gap: 14px; align-items: center; justify-content: space-between; margin: 26px 0; }
.pager-n { color: var(--mut); font-size: .9rem; }

/* ===== Company page ===== */
.crumbs { margin: 20px 0 14px; font-size: .85rem; color: var(--mut); }
.crumbs a { color: var(--mut); }
.crumbs a:hover { color: var(--brand); }
.co-head {
  display: flex; gap: 20px; align-items: center; flex-wrap: wrap; padding: 24px;
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--r-lg); box-shadow: var(--sh-1);
}
.co-head-main { flex: 1; min-width: 240px; display: grid; gap: 9px; }
.co-meta { display: flex; flex-wrap: wrap; gap: 7px 16px; font-size: .87rem; color: var(--mut); }
.co-meta span, .co-meta a { display: inline-flex; align-items: center; gap: 6px; }
.co-meta a { color: var(--brand); font-weight: 600; }
.co-score-box { display: grid; justify-items: center; gap: 3px; padding-left: 20px; border-left: 1px solid var(--line); min-width: 168px; }
.co-score-n { font-size: 2.5rem; font-weight: 800; line-height: 1; letter-spacing: -0.03em; }
.co-score-n.none { font-size: .92rem; font-weight: 650; color: var(--mut); line-height: 1.35; text-align: center; letter-spacing: 0; }
.co-score-box .btn { margin-top: 10px; }
.dist { max-width: 400px; display: grid; gap: 5px; margin-bottom: 14px; }
.dist-row { display: flex; align-items: center; gap: 10px; font-size: .85rem; }
.dist-s { width: 34px; color: var(--mut); }
.dist-row .bar { flex: 1; height: 7px; background: var(--bg-soft); border-radius: 999px; overflow: hidden; }
.dist-row .bar i { display: block; height: 100%; background: linear-gradient(90deg, var(--star), #fbbf24); border-radius: 999px; }
.sort-bar { display: flex; gap: 12px; align-items: center; font-size: .88rem; color: var(--mut); margin-bottom: 4px; }
a.on { color: var(--brand); font-weight: 700; }

/* ===== Reviews ===== */
.rv-list { display: grid; gap: 4px; }
.rv { padding: 18px 0; display: grid; gap: 9px; }
.rv + .rv { border-top: 1px solid var(--line); }
.rv-head { display: flex; gap: 11px; align-items: center; }
.rv-head b { font-size: .93rem; }
.rv-head .mut { display: flex; align-items: center; gap: 7px; }
.rv-co { font-weight: 650; color: var(--ink); }
.rv p { color: var(--ink-2); font-size: .93rem; }
.rv-asp { display: flex; flex-wrap: wrap; gap: 6px; }
.asp-chip { display: inline-flex; gap: 5px; align-items: center; padding: 2px 10px; border-radius: 999px; font-size: .76rem; }
.asp-chip.tone-good { background: var(--good-soft); color: var(--good); }
.asp-chip.tone-mid { background: var(--mid-soft); color: var(--mid); }
.asp-chip.tone-low { background: var(--low-soft); color: var(--low); }
.pros b, .cons b {
  display: inline-block; margin-right: 7px; padding: 1px 9px; border-radius: 999px; font-size: .76rem; font-weight: 650;
}
.pros b { background: var(--good-soft); color: var(--good); }
.cons b { background: var(--low-soft); color: var(--low); }
.vote {
  display: inline-flex; align-items: center; gap: 7px; padding: 6px 14px; font: inherit; font-size: .85rem;
  background: var(--surface); border: 1px solid var(--line-2); border-radius: 999px; color: var(--mut); cursor: pointer;
  transition: border-color .15s, color .15s, background .15s;
}
.vote:hover:not(:disabled) { border-color: var(--brand); color: var(--brand); background: var(--brand-soft); }
.vote:disabled { opacity: .55; cursor: default; }
.vote span { font-weight: 650; }
.hidden-rv { opacity: .5; }

/* ===== Forms ===== */
.fg { margin-bottom: 16px; display: grid; gap: 5px; }
.fg label { font-weight: 600; font-size: .89rem; }
.fg input, .fg textarea {
  width: 100%; padding: 11px 13px; font: inherit; font-size: .93rem; color: var(--ink);
  background: var(--bg); border: 1px solid var(--line-2); border-radius: var(--r-sm); resize: vertical;
}
.fg input:focus, .fg textarea:focus { outline: none; border-color: var(--brand); background: var(--surface); box-shadow: 0 0 0 3px color-mix(in srgb, var(--brand) 15%, transparent); }
.fg input::placeholder, .fg textarea::placeholder { color: color-mix(in srgb, var(--mut) 75%, transparent); }
.star-input { display: flex; gap: 2px; }
.star-input button { background: none; border: 0; font-size: 2rem; line-height: 1; color: var(--line-2); cursor: pointer; padding: 0 2px; transition: color .12s, transform .12s; }
.star-input button:hover { transform: scale(1.12); }
.star-input button.on { color: var(--star); }
.star-input.sm button { font-size: 1.4rem; }
.field-hint { font-size: .82rem; color: var(--mut); }

/* chấm điểm từng mục */
.asp-group { margin-top: 12px; }
.asp-group-name { font-size: .78rem; font-weight: 700; color: var(--mut); text-transform: uppercase; letter-spacing: .05em; margin: 12px 0 6px; }
.aspects-sum .asp-group-name:first-of-type { margin-top: 0; }
.asp-input { display: grid; gap: 6px; margin-top: 6px; }
.asp-in-row {
  display: grid; grid-template-columns: 1fr auto; align-items: center; gap: 10px;
  padding: 7px 12px; background: var(--bg); border: 1px solid var(--line); border-radius: var(--r-sm);
}
.asp-in-row > span { font-size: .89rem; color: var(--ink-2); }

/* bảng điểm từng mục trên trang công ty */
.score-cols { display: grid; grid-template-columns: minmax(260px, 1fr) minmax(280px, 1.1fr); gap: 26px; margin-bottom: 16px; }
.aspects-sum h3 { font-size: .92rem; margin-bottom: 9px; }
.asp-row { display: grid; grid-template-columns: 1fr 90px 34px; align-items: center; gap: 10px; font-size: .86rem; margin: 5px 0; }
.asp-name { color: var(--ink-2); }
.asp-val { text-align: right; font-weight: 700; }
.asp-row .bar { height: 7px; background: var(--bg-soft); border-radius: 999px; overflow: hidden; }
.asp-row .bar i { display: block; height: 100%; border-radius: 999px; }
.asp-row .bar i.tone-good { background: var(--good); }
.asp-row .bar i.tone-mid { background: var(--mid); }
.asp-row .bar i.tone-low { background: var(--low); }
@media (max-width: 720px) { .score-cols { grid-template-columns: 1fr; gap: 18px; } }
.msg { margin-left: 12px; font-size: .89rem; font-weight: 600; }
.msg.ok { color: var(--good); }
.msg.err { color: var(--low); }
#viet-review .mut { margin-bottom: 16px; }

/* ===== Footer ===== */
.ft { margin-top: 56px; padding: 28px 0; border-top: 1px solid var(--line); background: var(--surface); }
.ft-in { display: flex; gap: 26px; justify-content: space-between; flex-wrap: wrap; }
.ft-in > div { max-width: 460px; display: grid; gap: 6px; }
.ft-logo { font-weight: 700; }
.ft-nav { display: grid; gap: 7px; align-content: start; font-size: .88rem; }
.ft-nav a { color: var(--mut); }
.ft-nav a:hover { color: var(--brand); }

/* ===== Responsive ===== */
@media (max-width: 720px) {
  body { font-size: 15px; }
  .hd-in { flex-wrap: wrap; row-gap: 10px; }
  .hd-search { order: 3; flex-basis: 100%; max-width: none; margin-left: 0; }
  .logo-txt { font-size: .95rem; }
  .hero { padding: 38px 16px 34px; }
  .hero-search { flex-direction: column; }
  .hero-search .btn { width: 100%; padding: 12px; }
  /* form xếp dọc: neo icon theo ô nhập, không theo cả form */
  .hero-search-ic { top: 24px; transform: none; }
  .hero-stats { gap: 22px; }
  .co-head { gap: 14px; }
  .co-score-box { padding-left: 0; border-left: 0; border-top: 1px solid var(--line); padding-top: 14px; width: 100%; }
  .filters label, .filters-search { flex-basis: 100%; }
  .filters .btn { width: 100%; }
  section { margin: 32px 0; }
}
