:root {
  --primary: #1268c4;
  --primary-dark: #0c4f98;
  --primary-soft: #eaf4ff;
  --accent: #ff7a00;
  --accent-soft: #fff3e8;
  --text: #182230;
  --muted: #667085;
  --line: #dbe3ec;
  --line-light: #eaf0f6;
  --surface: #ffffff;
  --surface-soft: #f6f8fb;
  --success: #11875d;
  --danger: #c8333a;
  --shadow-sm: 0 8px 24px rgba(20, 54, 92, .08);
  --shadow-md: 0 18px 52px rgba(20, 54, 92, .12);
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 22px;
  --content-width: 1200px;
  font-family: "Microsoft YaHei", "PingFang SC", "Noto Sans CJK SC", Arial, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--text);
  background: #f2f5f9;
  line-height: 1.65;
}
button, input, select { font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
a { color: inherit; }
button { cursor: pointer; }
[hidden] { display: none !important; }

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link {
  position: fixed;
  left: 18px;
  top: -70px;
  z-index: 9999;
  padding: 10px 16px;
  color: #fff;
  background: #111827;
  border-radius: 8px;
  transition: top .2s ease;
}
.skip-link:focus { top: 18px; }

.content-width,
.top-header__inner,
.hero__inner {
  width: min(var(--content-width), calc(100% - 36px));
  margin: 0 auto;
}

.top-header {
  color: #fff;
  background: linear-gradient(90deg, #07529d, #1268c4);
  box-shadow: 0 4px 18px rgba(4, 54, 110, .18);
}
.top-header__inner {
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}
.brand__mark {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255,255,255,.55);
  border-radius: 50%;
  background: rgba(255,255,255,.12);
  font-weight: 700;
  font-size: 20px;
}
.brand__text { display: grid; line-height: 1.3; }
.brand__text strong { font-size: 20px; letter-spacing: .04em; }
.brand__text small { margin-top: 3px; font-size: 12px; opacity: .78; letter-spacing: .16em; }
.top-nav { display: flex; align-items: center; gap: 10px; }
.top-nav a,
.top-nav button {
  border: 0;
  color: #fff;
  background: transparent;
  text-decoration: none;
  padding: 9px 13px;
  border-radius: 999px;
}
.top-nav a:hover,
.top-nav a:focus-visible,
.top-nav button:hover,
.top-nav button:focus-visible { background: rgba(255,255,255,.14); outline: none; }

.hero {
  position: relative;
  min-height: 328px;
  display: flex;
  align-items: center;
  color: #fff;
  background: #0a65ac url("../images/city-hero.svg") center / cover no-repeat;
  overflow: visible;
}
.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(3,48,94,.76) 0%, rgba(8,84,145,.40) 58%, rgba(4,55,99,.12) 100%);
}
.hero__inner { position: relative; z-index: 1; padding: 48px 0 64px; }
.hero__eyebrow { margin: 0 0 6px; font-size: 14px; font-weight: 700; letter-spacing: .16em; opacity: .88; }
.hero h1 { margin: 0; font-size: clamp(34px, 4vw, 52px); line-height: 1.2; letter-spacing: -.03em; }
.hero p:not(.hero__eyebrow) { max-width: 720px; margin: 13px 0 24px; font-size: 17px; color: rgba(255,255,255,.88); }

.global-search {
  width: min(760px, 100%);
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  padding: 6px;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 16px 44px rgba(1, 40, 80, .26);
}
.global-search__icon { padding-left: 14px; color: #7890aa; font-size: 24px; transform: rotate(-15deg); }
.global-search input { min-width: 0; border: 0; outline: 0; padding: 13px 12px; color: var(--text); background: transparent; }
.global-search button { min-height: 46px; border: 0; border-radius: 8px; padding: 0 28px; color: #fff; background: var(--accent); font-weight: 700; }
.global-search button:hover { background: #e96f00; }
.global-search-results {
  position: absolute;
  z-index: 20;
  width: min(760px, calc(100% - 36px));
  margin-top: 8px;
  color: var(--text);
  background: #fff;
  border: 1px solid rgba(255,255,255,.75);
  border-radius: 12px;
  box-shadow: var(--shadow-md);
  overflow: hidden;
}
.search-result {
  width: 100%;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 16px;
  padding: 14px 17px;
  border: 0;
  border-bottom: 1px solid var(--line-light);
  background: #fff;
  text-align: left;
}
.search-result:last-child { border-bottom: 0; }
.search-result:hover,
.search-result:focus-visible { background: var(--primary-soft); outline: none; }
.search-result strong { display: block; }
.search-result small { display: block; margin-top: 2px; color: var(--muted); }
.search-result span { color: var(--primary); font-size: 13px; }
.search-empty { padding: 18px; color: var(--muted); }

.help-panel { background: #eaf4ff; border-bottom: 1px solid #cce1f5; }
.help-panel__inner { min-height: 74px; display: flex; align-items: center; justify-content: space-between; gap: 20px; padding-top: 12px; padding-bottom: 12px; color: #21486e; }
.help-panel__inner p { margin: 3px 0 0; }
.help-panel__inner button { width: 36px; height: 36px; border: 0; border-radius: 50%; color: #315f8c; background: rgba(255,255,255,.65); font-size: 24px; line-height: 1; }

.workspace { position: relative; padding: 0 0 58px; }
.mode-switcher {
  position: relative;
  z-index: 5;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  width: min(650px, calc(100% - 28px));
  margin: -34px auto 24px;
  padding: 8px;
  background: rgba(255,255,255,.98);
  border: 1px solid rgba(14,95,172,.14);
  border-radius: 18px;
  box-shadow: var(--shadow-md);
}
.mode-tab {
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 13px;
  border: 1px solid transparent;
  border-radius: 13px;
  color: #4a5c70;
  background: transparent;
  text-align: left;
  transition: .18s ease;
}
.mode-tab__icon { width: 40px; height: 40px; display: grid; place-items: center; border-radius: 12px; color: var(--primary); background: var(--primary-soft); font-weight: 700; }
.mode-tab strong,
.mode-tab small { display: block; }
.mode-tab strong { font-size: 17px; }
.mode-tab small { margin-top: 2px; color: #8190a2; font-size: 12px; }
.mode-tab:hover { background: #f7faff; }
.mode-tab.is-active { color: var(--primary); border-color: #c8dff5; background: #edf6ff; box-shadow: inset 0 -3px 0 var(--primary); }
.mode-tab.is-active .mode-tab__icon { color: #fff; background: var(--primary); }

.mode-panel { animation: panelIn .22s ease; }
@keyframes panelIn { from { opacity: 0; transform: translateY(6px); } to { opacity: 1; transform: translateY(0); } }
.panel-card { background: var(--surface); border: 1px solid rgba(24,91,155,.12); border-radius: var(--radius-lg); box-shadow: var(--shadow-sm); overflow: hidden; }

.guide-toolbar {
  min-height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 13px 24px;
  background: #fbfdff;
  border-bottom: 1px solid var(--line-light);
}
.guide-toolbar__actions { display: flex; align-items: center; gap: 14px; }
.breadcrumb { display: flex; flex-wrap: wrap; align-items: center; gap: 7px; margin: 0; padding: 0; list-style: none; color: var(--muted); font-size: 14px; }
.breadcrumb li:not(:last-child)::after { content: "/"; margin-left: 7px; color: #a5b2c1; }
.breadcrumb button { border: 0; padding: 0; color: var(--primary); background: transparent; }
.breadcrumb button:hover { text-decoration: underline; }
.breadcrumb [aria-current="page"] { color: var(--text); font-weight: 700; }
.step-badge { padding: 5px 11px; border-radius: 999px; color: var(--primary); background: var(--primary-soft); font-size: 13px; font-weight: 700; white-space: nowrap; }
.text-button { border: 0; padding: 4px; color: var(--primary); background: transparent; }
.text-button:hover { text-decoration: underline; }
.progress { height: 4px; background: #ecf1f6; }
.progress span { display: block; width: 24%; height: 100%; background: linear-gradient(90deg, var(--primary), #39a8e5); transition: width .25s ease; }

.guide-content { min-height: 440px; padding: 38px 34px 34px; }
.question-heading { max-width: 760px; margin: 0 auto 28px; text-align: center; }
.question-heading__label { display: inline-block; margin-bottom: 8px; color: var(--accent); font-size: 13px; font-weight: 700; letter-spacing: .08em; }
.question-heading h2 { margin: 0; font-size: clamp(27px, 3vw, 36px); line-height: 1.3; }
.question-heading p { margin: 10px 0 0; color: var(--muted); }
.option-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 16px; }
.option-card {
  position: relative;
  min-height: 184px;
  padding: 22px 20px 18px;
  border: 1px solid var(--line);
  border-radius: 17px;
  color: var(--text);
  background: linear-gradient(180deg, #fff, #fbfdff);
  text-align: left;
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}
.option-card:hover,
.option-card:focus-visible { transform: translateY(-4px); border-color: #94c0e9; box-shadow: 0 14px 30px rgba(18,104,196,.12); outline: none; }
.option-card__icon { width: 48px; height: 48px; display: grid; place-items: center; margin-bottom: 15px; border-radius: 15px; color: #fff; background: linear-gradient(135deg, var(--primary), #39a6df); font-size: 19px; font-weight: 700; box-shadow: 0 8px 18px rgba(18,104,196,.20); }
.option-card h3 { margin: 0; font-size: 18px; }
.option-card p { margin: 7px 0 24px; color: var(--muted); font-size: 14px; }
.option-card__meta { position: absolute; left: 20px; right: 18px; bottom: 17px; display: flex; align-items: center; justify-content: space-between; gap: 10px; color: var(--primary); font-size: 13px; }
.option-card__count { padding: 2px 8px; border-radius: 999px; color: #55728f; background: #edf3f8; }

.guide-result-heading { max-width: 820px; margin: 0 auto 24px; text-align: center; }
.guide-result-heading__check { width: 58px; height: 58px; display: grid; place-items: center; margin: 0 auto 13px; border-radius: 50%; color: #fff; background: var(--success); font-size: 27px; box-shadow: 0 12px 24px rgba(17,135,93,.18); }
.guide-result-heading h2 { margin: 0; font-size: 30px; }
.guide-result-heading p { margin: 9px 0 0; color: var(--muted); }
.filter-summary { display: flex; flex-wrap: wrap; justify-content: center; gap: 8px; margin: 18px 0 0; }
.filter-summary span { padding: 5px 11px; border-radius: 999px; color: var(--primary-dark); background: var(--primary-soft); font-size: 13px; }
.guide-service-list { max-width: 980px; margin: 0 auto; display: grid; gap: 11px; }
.guide-service-item { display: grid; grid-template-columns: 1fr auto; align-items: center; gap: 18px; padding: 17px 18px; border: 1px solid var(--line-light); border-radius: 13px; background: #fbfcfe; }
.guide-service-item:hover { border-color: #c8dff5; background: #f7fbff; }
.guide-service-item h3 { margin: 0; font-size: 17px; }
.guide-service-item p { margin: 4px 0 0; color: var(--muted); font-size: 13px; }
.guide-service-item__actions { display: flex; gap: 8px; }
.more-results { max-width: 980px; margin: 14px auto 0; text-align: center; color: var(--muted); font-size: 14px; }

.guide-footer { display: flex; justify-content: space-between; gap: 12px; padding: 18px 24px; border-top: 1px solid var(--line-light); background: #fbfdff; }
.button { min-height: 42px; border-radius: 9px; padding: 0 18px; font-weight: 700; transition: .16s ease; }
.button--primary { border: 1px solid var(--primary); color: #fff; background: var(--primary); }
.button--primary:hover { background: var(--primary-dark); border-color: var(--primary-dark); }
.button--secondary { border: 1px solid #a9c9e8; color: var(--primary); background: #fff; }
.button--secondary:hover { background: var(--primary-soft); }
.button--ghost { border: 1px solid var(--line); color: #50657b; background: #fff; }
.button--ghost:hover { border-color: #b8c8d8; background: #f7f9fc; }
.button:disabled { opacity: .45; cursor: not-allowed; }
.mini-button { min-height: 34px; border-radius: 7px; padding: 0 12px; font-size: 13px; font-weight: 700; }
.mini-button--guide { border: 1px solid #81b5e6; color: var(--primary); background: #fff; }
.mini-button--guide:hover { background: var(--primary-soft); }
.mini-button--online { border: 1px solid var(--primary); color: #fff; background: var(--primary); }
.mini-button--online:hover { background: var(--primary-dark); }

.browse-panel { padding: 0 30px 28px; }
.section-heading { display: flex; align-items: flex-end; justify-content: space-between; gap: 20px; padding: 28px 0 20px; border-bottom: 1px solid var(--line-light); }
.section-kicker { margin: 0 0 3px; color: var(--primary); font-size: 13px; font-weight: 700; letter-spacing: .08em; }
.section-heading h2 { margin: 0; font-size: 28px; }
.filter-section { display: grid; grid-template-columns: 110px minmax(0, 1fr); gap: 18px; padding: 20px 0; border-bottom: 1px dashed var(--line); }
.filter-label { padding-top: 8px; font-weight: 700; color: #34465a; }
.audience-tabs,
.dimension-tabs { display: flex; flex-wrap: wrap; gap: 10px; }
.audience-tab,
.dimension-tab {
  min-height: 42px;
  border: 1px solid var(--line);
  border-radius: 9px;
  padding: 0 20px;
  color: #4c6074;
  background: #fff;
}
.audience-tab:hover,
.dimension-tab:hover { border-color: #9bc2e7; background: #f7fbff; }
.audience-tab.is-active { border-color: var(--primary); color: #fff; background: var(--primary); box-shadow: 0 8px 18px rgba(18,104,196,.16); }
.dimension-tab.is-active { border-color: transparent; color: var(--accent); background: var(--accent-soft); font-weight: 700; }
.category-area { min-width: 0; }
.category-tags { display: flex; flex-wrap: wrap; gap: 10px; max-height: 94px; overflow: hidden; transition: max-height .25s ease; }
.category-tags.is-expanded { max-height: 420px; }
.category-tag { min-width: 110px; min-height: 38px; border: 1px solid transparent; border-radius: 999px; padding: 0 18px; color: #3c4d60; background: #f3f6fa; }
.category-tag:hover { border-color: #c3d9ee; background: #edf5fd; }
.category-tag.is-active { color: #fff; background: var(--accent); box-shadow: 0 7px 16px rgba(255,122,0,.18); }
.expand-button { margin-top: 13px; border: 0; color: var(--primary); background: transparent; }
.expand-button:hover { text-decoration: underline; }

.active-filters { display: flex; align-items: center; flex-wrap: wrap; gap: 10px; margin: 18px 0 0; padding: 13px 15px; border: 1px solid #d6e7f7; border-radius: 10px; background: #f4f9fe; }
.active-filters__label { flex: 0 0 auto; color: #51687e; font-size: 13px; }
.active-filter-chips { display: flex; flex-wrap: wrap; gap: 7px; }
.filter-chip { display: inline-flex; align-items: center; gap: 5px; border: 0; border-radius: 999px; padding: 5px 9px 5px 11px; color: #215b92; background: #e1effc; font-size: 13px; }
.filter-chip span { font-size: 16px; line-height: 1; }
.clear-link { margin-left: auto; border: 0; color: var(--danger); background: transparent; font-size: 13px; }
.clear-link:hover { text-decoration: underline; }

.advanced-filters { display: grid; grid-template-columns: 1.1fr 1fr 1.5fr auto auto; align-items: end; gap: 12px; margin: 22px 0; padding: 17px; border: 1px solid var(--line-light); border-radius: 12px; background: var(--surface-soft); }
.advanced-filters label:not(.online-filter) { display: grid; gap: 6px; }
.advanced-filters label > span { color: #607286; font-size: 12px; }
.advanced-filters select,
.advanced-filters input[type="search"],
.sort-control select {
  width: 100%;
  min-height: 42px;
  border: 1px solid #d6dfe9;
  border-radius: 8px;
  padding: 0 12px;
  color: var(--text);
  background: #fff;
  outline: none;
}
.advanced-filters select:focus,
.advanced-filters input:focus,
.sort-control select:focus { border-color: var(--primary); box-shadow: 0 0 0 3px rgba(18,104,196,.10); }
.online-filter { min-height: 42px; display: flex; align-items: center; gap: 8px; padding: 0 4px; white-space: nowrap; }
.online-filter input { width: 17px; height: 17px; accent-color: var(--primary); }
.online-filter span { color: #465a70 !important; font-size: 14px !important; }

.result-header { display: flex; align-items: end; justify-content: space-between; gap: 18px; padding: 4px 0 12px; border-bottom: 2px solid #28445e; }
.result-header h3 { margin: 0; font-size: 21px; }
.result-header p { margin: 2px 0 0; color: var(--muted); font-size: 13px; }
.result-header strong { color: var(--accent); font-size: 18px; }
.sort-control { display: flex; align-items: center; gap: 8px; color: var(--muted); font-size: 13px; }
.sort-control select { min-height: 36px; width: 130px; }

.service-table-wrap { position: relative; min-height: 280px; }
.service-table { width: 100%; border-collapse: collapse; table-layout: fixed; }
.service-table th { padding: 13px 14px; color: #758497; background: #fff; font-size: 13px; font-weight: 500; text-align: left; border-bottom: 1px solid var(--line-light); }
.service-table th:nth-child(1) { width: 34%; }
.service-table th:nth-child(2) { width: 23%; }
.service-table th:nth-child(3) { width: 13%; }
.service-table th:nth-child(4) { width: 13%; }
.service-table th:nth-child(5) { width: 17%; }
.service-table td { padding: 15px 14px; border-bottom: 1px solid var(--line-light); vertical-align: middle; }
.service-table tbody tr:nth-child(odd) { background: #f8f9fc; }
.service-table tbody tr:hover { background: #eff6fd; }
.service-title-button { display: flex; align-items: flex-start; gap: 10px; border: 0; padding: 0; color: var(--text); background: transparent; text-align: left; font-weight: 700; }
.service-title-button::before { content: ""; flex: 0 0 auto; width: 0; height: 0; margin-top: 6px; border-top: 6px solid transparent; border-bottom: 6px solid transparent; border-right: 10px solid #ffad3b; }
.service-title-button:hover { color: var(--primary); }
.service-table td { color: #52667a; font-size: 14px; }
.service-actions { display: flex; flex-wrap: wrap; gap: 7px; }
.online-badge { display: inline-flex; align-items: center; gap: 5px; color: var(--success); font-size: 13px; }
.online-badge::before { content: ""; width: 7px; height: 7px; border-radius: 50%; background: var(--success); }
.offline-badge { color: #7d8997; font-size: 13px; }
.mobile-service-list { display: none; }
.mobile-service-card { padding: 17px; border-bottom: 1px solid var(--line-light); background: #fff; }
.mobile-service-card:nth-child(odd) { background: #f8f9fc; }
.mobile-service-card h4 { margin: 0; font-size: 16px; }
.mobile-service-card dl { display: grid; grid-template-columns: 74px 1fr; gap: 5px 10px; margin: 10px 0 14px; font-size: 13px; }
.mobile-service-card dt { color: #8793a2; }
.mobile-service-card dd { margin: 0; color: #50657b; }
.mobile-service-card__actions { display: flex; gap: 9px; }

.empty-results { padding: 48px 20px; text-align: center; }
.empty-results > span { width: 54px; height: 54px; display: grid; place-items: center; margin: 0 auto 10px; border-radius: 50%; color: #8190a1; background: #eef2f6; font-weight: 700; }
.empty-results h4 { margin: 0; font-size: 20px; }
.empty-results p { margin: 6px 0 18px; color: var(--muted); }
.pagination { display: flex; justify-content: center; flex-wrap: wrap; gap: 7px; padding-top: 22px; }
.pagination button { min-width: 38px; height: 38px; border: 1px solid var(--line); border-radius: 8px; color: #53677c; background: #fff; }
.pagination button:hover { border-color: #9bbfe2; background: #f3f8fd; }
.pagination button.is-active { border-color: var(--primary); color: #fff; background: var(--primary); }
.pagination button:disabled { opacity: .42; cursor: not-allowed; }

.support-strip { display: flex; align-items: center; justify-content: space-between; gap: 30px; margin-top: 24px; padding: 28px 30px; border-radius: var(--radius-lg); color: #fff; background: linear-gradient(110deg, #07529d, #1372cc); box-shadow: var(--shadow-sm); }
.support-strip h2 { margin: 0; font-size: 25px; }
.support-strip p:not(.section-kicker) { margin: 6px 0 0; color: rgba(255,255,255,.76); }
.support-strip .section-kicker { color: #d6ebff; }
.support-strip__actions { display: flex; gap: 10px; flex: 0 0 auto; }
.support-strip__actions a,
.support-strip__actions button { min-height: 43px; display: inline-flex; align-items: center; justify-content: center; border: 1px solid rgba(255,255,255,.46); border-radius: 9px; padding: 0 18px; color: #fff; background: rgba(255,255,255,.08); text-decoration: none; font-weight: 700; }
.support-strip__actions a { color: #0d5baa; background: #fff; }
.support-strip__actions button:hover { background: rgba(255,255,255,.16); }

.service-dialog { width: min(980px, calc(100% - 30px)); max-height: calc(100vh - 40px); padding: 0; border: 0; border-radius: 20px; color: var(--text); background: #fff; box-shadow: 0 26px 80px rgba(3, 26, 55, .28); overflow: hidden; }
.service-dialog::backdrop { background: rgba(8, 25, 45, .58); backdrop-filter: blur(3px); }
.dialog-shell { max-height: calc(100vh - 40px); display: grid; grid-template-rows: auto 1fr auto; }
.dialog-header { display: flex; align-items: flex-start; justify-content: space-between; gap: 24px; padding: 26px 30px 21px; color: #fff; background: linear-gradient(110deg, #07529d, #1677ce); }
.dialog-badge { display: inline-block; margin-bottom: 6px; padding: 3px 9px; border-radius: 999px; background: rgba(255,255,255,.16); font-size: 12px; }
.dialog-header h2 { margin: 0; font-size: 27px; }
.dialog-header p { max-width: 720px; margin: 7px 0 0; color: rgba(255,255,255,.82); }
.dialog-close { width: 40px; height: 40px; flex: 0 0 auto; border: 1px solid rgba(255,255,255,.38); border-radius: 50%; color: #fff; background: rgba(255,255,255,.08); font-size: 28px; line-height: 1; }
.dialog-close:hover { background: rgba(255,255,255,.18); }
.dialog-body { min-height: 0; overflow: auto; padding: 26px 30px 30px; }
.dialog-facts { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 11px; margin-bottom: 24px; }
.dialog-fact { padding: 14px; border: 1px solid var(--line-light); border-radius: 10px; background: #f7f9fc; }
.dialog-fact span { display: block; color: #8794a3; font-size: 12px; }
.dialog-fact strong { display: block; margin-top: 4px; font-size: 14px; }
.dialog-columns { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 20px; }
.dialog-section { padding: 18px; border: 1px solid var(--line-light); border-radius: 12px; }
.dialog-section h3 { margin: 0 0 10px; font-size: 17px; color: #24435f; }
.dialog-section ul,
.dialog-section ol { margin: 0; padding-left: 20px; color: #50657a; font-size: 14px; }
.dialog-section li + li { margin-top: 7px; }
.dialog-footer { display: flex; justify-content: flex-end; gap: 10px; padding: 17px 30px; border-top: 1px solid var(--line-light); background: #fbfcfe; }
.toast { position: fixed; z-index: 1000; left: 50%; bottom: 32px; transform: translateX(-50%); padding: 12px 18px; border-radius: 10px; color: #fff; background: rgba(20,32,47,.94); box-shadow: 0 12px 36px rgba(0,0,0,.22); }

.site-footer { color: #7d8996; background: #e8edf3; }
.site-footer .content-width { min-height: 92px; display: flex; align-items: center; justify-content: space-between; gap: 20px; font-size: 13px; }
.site-footer p { margin: 0; }
.noscript { padding: 16px; color: #7a2525; background: #fff0f0; text-align: center; }

@media (max-width: 1020px) {
  .option-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .advanced-filters { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .keyword-filter { grid-column: 1 / -1; }
  .online-filter { align-self: center; }
  .advanced-filters > .button { justify-self: end; min-width: 120px; }
  .service-table th:nth-child(3), .service-table td:nth-child(3) { display: none; }
  .service-table th:nth-child(1) { width: 36%; }
  .service-table th:nth-child(2) { width: 25%; }
  .service-table th:nth-child(4) { width: 16%; }
  .service-table th:nth-child(5) { width: 23%; }
  .dialog-facts { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .dialog-columns { grid-template-columns: 1fr; }
}

@media (max-width: 760px) {
  .content-width,
  .top-header__inner,
  .hero__inner { width: min(100% - 24px, var(--content-width)); }
  .top-header__inner { min-height: 66px; }
  .brand__mark { width: 38px; height: 38px; }
  .brand__text strong { font-size: 17px; }
  .brand__text small { display: none; }
  .top-nav a { display: none; }
  .top-nav button { padding: 7px 10px; }
  .hero { min-height: 340px; }
  .hero__inner { padding: 42px 0 72px; }
  .hero h1 { font-size: 34px; }
  .hero p:not(.hero__eyebrow) { font-size: 15px; }
  .global-search { grid-template-columns: auto 1fr; }
  .global-search button { grid-column: 1 / -1; width: 100%; min-height: 42px; }
  .global-search-results { width: calc(100% - 24px); }
  .mode-switcher { width: calc(100% - 12px); gap: 6px; padding: 6px; }
  .mode-tab { min-height: 68px; gap: 8px; padding: 8px; }
  .mode-tab__icon { width: 34px; height: 34px; border-radius: 9px; }
  .mode-tab strong { font-size: 15px; }
  .mode-tab small { display: none; }
  .guide-toolbar { align-items: flex-start; padding: 12px 16px; }
  .guide-toolbar__actions { gap: 8px; }
  .guide-toolbar .text-button { display: none; }
  .guide-content { min-height: 420px; padding: 28px 16px 24px; }
  .question-heading { margin-bottom: 22px; }
  .question-heading h2 { font-size: 26px; }
  .option-grid { grid-template-columns: 1fr; gap: 11px; }
  .option-card { min-height: 0; padding: 16px 16px 15px 72px; }
  .option-card__icon { position: absolute; left: 16px; top: 17px; width: 42px; height: 42px; margin: 0; border-radius: 12px; }
  .option-card p { margin: 5px 0 22px; }
  .option-card__meta { left: 72px; bottom: 13px; }
  .guide-service-item { grid-template-columns: 1fr; }
  .guide-service-item__actions { justify-content: flex-start; }
  .guide-footer { padding: 14px 16px; }
  .browse-panel { padding: 0 16px 22px; }
  .section-heading { align-items: center; padding-top: 22px; }
  .section-heading h2 { font-size: 23px; }
  .filter-section { grid-template-columns: 1fr; gap: 9px; padding: 16px 0; }
  .filter-label { padding-top: 0; }
  .audience-tabs, .dimension-tabs { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 8px; }
  .audience-tab, .dimension-tab { padding: 0 10px; }
  .category-tags { gap: 8px; max-height: 138px; }
  .category-tag { min-width: calc(50% - 4px); padding: 0 10px; }
  .active-filters { align-items: flex-start; }
  .clear-link { width: 100%; margin-left: 0; text-align: left; }
  .advanced-filters { grid-template-columns: 1fr; }
  .keyword-filter { grid-column: auto; }
  .advanced-filters > .button { width: 100%; justify-self: stretch; }
  .online-filter { padding: 4px 0; }
  .result-header { align-items: center; }
  .sort-control span { display: none; }
  .service-table { display: none; }
  .mobile-service-list { display: block; }
  .pagination { padding-top: 17px; }
  .support-strip { align-items: flex-start; flex-direction: column; padding: 24px 20px; }
  .support-strip h2 { font-size: 22px; }
  .support-strip__actions { width: 100%; display: grid; grid-template-columns: 1fr 1fr; }
  .dialog-header { padding: 22px 20px 18px; }
  .dialog-header h2 { font-size: 22px; }
  .dialog-body { padding: 20px; }
  .dialog-facts { grid-template-columns: 1fr; }
  .dialog-footer { padding: 14px 20px; }
  .site-footer .content-width { align-items: flex-start; flex-direction: column; justify-content: center; padding: 18px 0; }
}

@media (max-width: 430px) {
  .mode-tab__icon { display: none; }
  .guide-toolbar { flex-direction: column; gap: 8px; }
  .guide-toolbar__actions { width: 100%; justify-content: flex-end; }
  .guide-footer { display: grid; grid-template-columns: 1fr 1fr; }
  .support-strip__actions { grid-template-columns: 1fr; }
  .dialog-footer { display: grid; grid-template-columns: 1fr; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior: auto !important; animation-duration: .01ms !important; transition-duration: .01ms !important; }
}
