:root {
  --blue: #0096d6;
  --blue-700: #006fa8;
  --yellow: #ffd400;
  --green: #16885d;
  --orange: #f07820;
  --purple: #6157e7;
  --ink: #071832;
  --muted: #58708c;
  --line: #dbe7f1;
  --soft: #f4f9fd;
  --panel: #ffffff;
  --shadow: 0 18px 48px rgba(19, 62, 102, .10);
  --radius: 8px;
  --max: 1340px;
  --weight-copy: 400;
  --weight-copy-strong: 500;
  --weight-ui: 560;
  --weight-ui-strong: 620;
  --weight-heading: 540;
  --weight-heading-strong: 580;
  --weight-display: 500;
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "PingFang TC", "Microsoft JhengHei", Arial, sans-serif;
}

* { box-sizing: border-box; }

html { color: var(--ink); background: #fff; scroll-behavior: smooth; }

body {
  margin: 0;
  color: var(--ink);
  background: #fff;
  font-size: 16px;
  line-height: 1.58;
  letter-spacing: 0;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

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

img { max-width: 100%; display: block; }

h1, h2, h3, h4, h5, h6 {
  margin-top: 0;
  letter-spacing: 0;
  font-weight: var(--weight-heading-strong);
}

h1, h2, h3, h4, h5, h6,
p, li, td, th,
.lead,
.btn,
.pill,
.row-title,
.access-card,
.platform-option,
.home-directory-card,
.content-card,
.metric,
.station-hero-card,
.record-card,
.record-sidebar,
.article-body,
.article-sidebar,
.guide-article-card,
.video-row,
.nearby-item {
  overflow-wrap: break-word;
  word-break: normal;
}

.container {
  width: min(var(--max), calc(100% - 48px));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(255,255,255,.96);
  border-bottom: 1px solid var(--line);
  backdrop-filter: saturate(1.1) blur(14px);
}

.top-line {
  height: 4px;
  background: linear-gradient(90deg, var(--blue), #25b6d2 45%, var(--yellow));
}

.nav {
  height: 82px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 34px;
}

.wordmark img { width: 152px; height: auto; }

.nav-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 42px;
  padding: 0 13px;
  border: 1px solid var(--line);
  border-radius: 7px;
  background: #fff;
  color: var(--ink);
  font: inherit;
  font-weight: var(--weight-ui-strong);
  cursor: pointer;
}

.nav-toggle i {
  width: 16px;
  text-align: center;
  color: var(--blue-700);
}

.nav-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  font-weight: var(--weight-ui);
  font-size: 16px;
  white-space: nowrap;
}

.nav-links > a,
.nav-links button {
  border: 0;
  background: transparent;
  color: var(--ink);
  font: inherit;
  padding: 10px 12px;
  border-radius: 7px;
  cursor: pointer;
}

.nav-links > a:hover,
.nav-links button:hover {
  background: #edf8fe;
  color: var(--blue-700);
}

.nav-item {
  position: relative;
  padding-bottom: 18px;
  margin-bottom: -18px;
}

.nav-item::after {
  content: "";
  position: absolute;
  left: -12px;
  right: -12px;
  top: 100%;
  height: 46px;
}

.nav-menu {
  display: none;
  position: absolute;
  top: calc(100% - 2px);
  left: 50%;
  width: 340px;
  margin-top: 0;
  transform: translateX(-50%);
  padding: 10px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: var(--shadow);
  z-index: 40;
}

.nav-menu::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: -34px;
  height: 34px;
}

.nav-item:hover .nav-menu,
.nav-item.is-open .nav-menu { display: grid; gap: 4px; }

.nav-menu-compact { width: 300px; }

.nav-menu a {
  display: grid;
  gap: 2px;
  padding: 12px 14px;
  border-radius: 7px;
}

.nav-menu a:hover { background: var(--soft); }

.nav-menu b { font-size: 15px; }
.nav-menu span { color: var(--muted); font-size: 13px; font-weight: var(--weight-copy-strong); }

.nav-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 20px;
  border: 1px solid var(--line);
  border-radius: 7px;
  font-weight: var(--weight-ui-strong);
  font-size: 14.5px;
  line-height: 1;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
}

.btn:hover { transform: translateY(-1px); box-shadow: 0 12px 24px rgba(0, 121, 184, .12); }
.btn-blue { background: var(--blue); border-color: var(--blue); color: white; }
.btn-yellow { background: var(--yellow); border-color: var(--yellow); color: #101820; }
.btn-white { background: white; color: var(--blue-700); }
.btn-dark { background: #07111f; color: white; border-color: #07111f; }
.btn-green { background: #1f9a65; color: white; border-color: #1f9a65; }
.nav-mobile-cta { display: none; }

.section {
  padding: 88px 0;
}

.section-soft { background: var(--soft); }

.section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 28px;
  margin-bottom: 28px;
}

.section-head h1,
.section-head h2,
.hero h1 {
  margin: 0;
  color: var(--ink);
  font-weight: var(--weight-display);
  line-height: 1.08;
  letter-spacing: 0;
}

.hero h1 { font-size: clamp(30px, 3.6vw, 44px); }
.section-head h1, .section-head h2 { font-size: 34px; }
.section-head p, .lead {
  margin: 12px 0 0;
  max-width: 760px;
  color: #1a3555;
  font-size: 17px;
  font-weight: var(--weight-copy);
}

.mini-label,
.tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 12px;
  color: var(--ink);
  font-size: 13px;
  font-weight: var(--weight-ui-strong);
  line-height: 1;
  letter-spacing: .02em;
}

.mini-label::before,
.tag::before {
  content: "";
  width: 28px;
  height: 3px;
  border-radius: 99px;
  background: currentColor;
}

.tag-blue, .accent-blue { color: var(--blue); }
.tag-yellow, .accent-yellow { color: #c7a000; }
.tag-green, .accent-green { color: var(--green); }
.tag-orange, .accent-orange { color: var(--orange); }
.tag-purple, .accent-purple { color: var(--purple); }

.mini-kicker {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 10px;
  color: var(--blue-700);
  font-size: 13px;
  font-weight: var(--weight-ui-strong);
  line-height: 1;
}

.mini-kicker::before {
  content: "";
  width: 30px;
  height: 3px;
  border-radius: 999px;
  background: var(--blue);
}

.hero {
  padding: 94px 0 80px;
  background: linear-gradient(180deg, #fff 0%, #f6fbff 100%);
}

.home-hero-title-line {
  display: block;
  white-space: nowrap;
}

.home-hero .hero-grid > div:first-child {
  display: flex;
  flex-direction: column;
  align-self: stretch;
}

.home-hero .access-grid {
  margin-top: auto;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(360px, .95fr) minmax(460px, 1.05fr);
  align-items: center;
  gap: 64px;
}

.hero-grid > *,
.app-choice-grid > *,
.station-hero-layout > *,
.article-hero-grid > *,
.campaign-layout > *,
.index-strip > *,
.index-hero-meta > *,
.two-col > *,
.article-layout > *,
.guide-shell > *,
.video-layout > *,
.whatsapp-guide > *,
.home-directory-grid > *,
.card-grid > *,
.guide-article-grid > *,
.video-card-grid > *,
.metric-row > * {
  min-width: 0;
}

.hero p {
  margin: 22px 0 28px;
  max-width: min(100%, 1160px);
  color: #183452;
  font-size: 17px;
  line-height: 1.6;
  font-weight: var(--weight-copy-strong);
  text-wrap: pretty;
}

.index-hero {
  padding: 44px 0 34px;
}

.index-hero .container {
  display: grid;
  gap: 18px;
}

.index-hero-copy {
  max-width: 1160px;
}

.index-hero h1 {
  font-size: clamp(32px, 3.8vw, 50px);
}

.index-hero .mini-kicker {
  margin-bottom: 14px;
}

.index-hero p {
  max-width: 1020px;
  margin: 14px 0 0;
  font-size: 17px;
  line-height: 1.65;
}

.index-hero-meta {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr)) minmax(190px, auto);
  gap: 10px;
  max-width: 1160px;
  align-items: stretch;
}

.index-hero-stat,
.index-hero-link {
  min-height: 64px;
  padding: 10px 14px;
  border-radius: var(--radius);
  border: 1px solid #d5e4ef;
  background: rgba(255, 255, 255, .8);
  box-shadow: 0 8px 24px rgba(17, 54, 91, .05);
}

.index-hero-stat span {
  display: block;
  color: var(--muted);
  font-size: 12px;
  font-weight: var(--weight-ui);
  line-height: 1.2;
}

.index-hero-stat b {
  display: block;
  margin-top: 6px;
  color: var(--ink);
  font-size: 17px;
  line-height: 1.15;
  font-weight: var(--weight-heading-strong);
}

.index-hero-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  color: var(--blue-700);
  border-color: #b8dff3;
  background: #eff9ff;
  font-weight: var(--weight-ui-strong);
}

.index-hero-link i {
  color: var(--blue);
  font-size: 14px;
}

.index-hero + .section {
  padding-top: 56px;
}

.hero-copy-block {
  max-width: 720px;
  margin: 22px 0 28px;
  color: #183452;
  font-size: 16px;
  line-height: 1.58;
  font-weight: var(--weight-copy);
}

.hero-copy-block p {
  margin: 0 0 12px;
  max-width: none;
  color: inherit;
  font: inherit;
}

.hero-feature-list {
  display: grid;
  gap: 8px;
  margin: 0 0 18px;
  padding: 0;
  list-style: none;
}

.hero-feature-list li {
  position: relative;
  min-height: 0;
  padding-left: 25px;
  color: #173451;
  font-weight: var(--weight-copy-strong);
}

.hero-feature-list li::before {
  content: "\f058";
  position: absolute;
  left: 0;
  top: .14em;
  color: var(--green);
  font-family: "Font Awesome 6 Free";
  font-size: 15px;
  font-weight: 900;
  line-height: 1;
}

.hero-copy-block .hero-note {
  max-width: 640px;
  color: #36516c;
  font-size: 14.5px;
  line-height: 1.55;
  font-weight: var(--weight-copy);
}

.access-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  max-width: 610px;
}

.access-card {
  min-height: 76px;
  display: grid;
  grid-template-columns: 48px 1fr;
  align-items: center;
  gap: 14px;
  padding: 14px 16px;
  border: 1px solid #cbdcea;
  border-radius: 8px;
  background: white;
  box-shadow: 0 8px 18px rgba(17, 54, 91, .05);
}

.access-card strong {
  display: block;
  font-size: 17px;
  line-height: 1.15;
  font-weight: var(--weight-heading);
}

.access-card small {
  display: block;
  color: #516983;
  font-weight: var(--weight-copy-strong);
  line-height: 1.2;
  margin-top: 3px;
}

.access-card.store {
  background: #08111e;
  color: #fff;
  border-color: #08111e;
}

.access-card.store small { color: #d7e6f7; }
.access-card.map { border-color: #f0c500; background: #fffdf0; }
.access-card.whatsapp { border-color: #a9d8bd; background: #f1fbf6; }

.access-icon {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border-radius: 8px;
  background: #eaf7ff;
  color: var(--blue);
  font-size: 22px;
  line-height: 1;
}

.access-icon i { line-height: 1; }

.store .access-icon { background: rgba(255,255,255,.12); color: #fff; }
.map .access-icon { background: var(--yellow); color: #101820; }
.whatsapp .access-icon { background: #1f9b68; color: #fff; }

.app-choice-hero {
  padding: 82px 0 74px;
  background: linear-gradient(180deg, #fff 0%, #f4f9fd 100%);
}

.app-choice-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 460px);
  gap: 72px;
  align-items: center;
}

.app-choice-copy h1 {
  max-width: 760px;
  margin: 16px 0 20px;
  font-size: clamp(34px, 4vw, 54px);
  line-height: 1.08;
}

.app-choice-copy p {
  max-width: 760px;
  margin: 0 0 28px;
  color: #183452;
  font-size: 18px;
  line-height: 1.62;
  font-weight: var(--weight-copy-strong);
}

.platform-choice-panel {
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: var(--shadow);
}

.platform-choice-panel h2 {
  margin: 0 0 18px;
  font-size: 30px;
}

.platform-option {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 14px;
  align-items: center;
  padding: 15px 0;
  border-top: 1px solid var(--line);
  color: var(--ink);
}

.platform-option strong,
.platform-option small {
  display: block;
}

.platform-option strong {
  font-size: 18px;
  line-height: 1.2;
  font-weight: var(--weight-heading);
}

.platform-option small {
  margin-top: 4px;
  color: var(--muted);
  font-weight: var(--weight-copy-strong);
}

.store-icon { background: #10213b; color: #fff; }
.android-icon { background: #10213b; color: #fff; }
.map-icon { background: var(--yellow); color: #111827; }
.whatsapp-icon { background: #e4f4ed; color: #137a53; }
.carplay-icon { background: #e8f1f7; color: #496b85; }

.map-tutorial-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, .78fr);
  gap: clamp(28px, 4vw, 58px);
  align-items: start;
}

.map-tutorial-copy {
  display: grid;
  gap: 18px;
}

.map-tutorial-steps {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.map-step-card {
  min-height: 168px;
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 16px;
  align-items: start;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 10px 24px rgba(19, 62, 102, .05);
}

.map-step-card > span {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border-radius: 8px;
  background: var(--blue);
  color: #fff;
  font-weight: var(--weight-heading);
}

.map-step-card:nth-child(2) > span { background: var(--yellow); color: #101820; }
.map-step-card:nth-child(3) > span { background: var(--green); }
.map-step-card:nth-child(4) > span { background: var(--orange); }

.map-step-card h3 {
  margin: 0 0 6px;
  font-size: 20px;
  line-height: 1.22;
}

.map-step-card p {
  margin: 0;
  color: #35506b;
  font-weight: var(--weight-copy-strong);
}

.map-support-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.map-support-grid article {
  padding: 16px;
  border: 1px solid #d9e9f4;
  border-radius: 8px;
  background: #f9fcff;
}

.map-support-grid strong,
.map-support-grid span {
  display: block;
}

.map-support-grid strong {
  margin-bottom: 5px;
  font-size: 16px;
  line-height: 1.2;
}

.map-support-grid span {
  color: var(--muted);
  font-size: 13px;
  font-weight: var(--weight-copy-strong);
}

.hero-visual {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(14px, 2vw, 24px);
  align-items: end;
  justify-self: center;
  width: min(100%, 760px);
}

.phone-frame,
.browser-frame {
  margin: 0;
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.phone-frame { border-radius: 28px; padding: 8px; }
.browser-frame { border-radius: 10px; padding: 8px; }
.phone-frame picture,
.browser-frame picture { display: block; }
.phone-frame img {
  border-radius: 22px;
  width: 100%;
  height: auto;
  max-height: 720px;
  object-fit: contain;
}
.browser-frame img { border-radius: 7px; width: 100%; height: auto; }

.whatsapp-guide {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 360px);
  gap: 28px;
  align-items: start;
}

.whatsapp-steps {
  display: grid;
  gap: 14px;
}

.step-card {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 16px;
  align-items: start;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 10px 24px rgba(19, 62, 102, .05);
}

.step-card > span {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border-radius: 8px;
  background: #e6f5ec;
  color: #0d7650;
  font-weight: var(--weight-heading);
}

.step-card h3 { margin: 0 0 7px; }
.step-card p { margin: 0; color: #35506b; font-weight: var(--weight-copy-strong); }

.whatsapp-phone {
  max-height: 720px;
  justify-self: center;
}

.whatsapp-phone img {
  display: block;
  max-height: 700px;
  object-fit: contain;
}

.card {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 10px 30px rgba(19, 62, 102, .06);
}

.pad { padding: 26px; }

.home-directory-grid,
.card-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.home-directory-card,
.content-card {
  display: flex;
  flex-direction: column;
  min-height: 220px;
  padding: 28px;
  border-top: 5px solid var(--blue);
}

.home-directory-card:nth-child(2),
.content-card:nth-child(2n) { border-top-color: var(--yellow); }
.home-directory-card:nth-child(3),
.content-card:nth-child(3n) { border-top-color: var(--green); }

.home-directory-card h3,
.content-card h3 {
  margin: 0 0 12px;
  font-size: 25px;
  line-height: 1.22;
  font-weight: var(--weight-heading-strong);
}

.home-directory-card p,
.content-card p {
  margin: 0 0 20px;
  color: #2a4360;
  font-weight: var(--weight-copy);
}

.inline-link {
  margin-top: auto;
  color: var(--blue-700);
  font-weight: var(--weight-ui-strong);
}

.station-section-head p {
  max-width: 980px;
  white-space: nowrap;
}

.index-strip {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 44px;
  align-items: center;
}

.metric-row {
  display: grid;
  grid-template-columns: repeat(5, minmax(112px, 1fr));
  gap: 12px;
}

.metric {
  padding: 18px;
  border: 1px solid var(--line);
  border-top: 4px solid var(--blue);
  border-radius: 8px;
  background: #fff;
  min-width: 116px;
}

.metric:nth-child(2) { border-top-color: var(--orange); }
.metric:nth-child(3) { border-top-color: var(--purple); }
.metric:nth-child(4) { border-top-color: var(--green); }
.metric:nth-child(5) { border-top-color: var(--yellow); }
.metric b { display: block; font-size: 30px; line-height: 1; margin: 8px 0; font-weight: var(--weight-heading-strong); }
.metric span, .metric small { color: var(--muted); font-weight: var(--weight-ui); }

.campaign-layout {
  display: grid;
  grid-template-columns: minmax(300px, .42fr) minmax(0, 1fr);
  gap: clamp(34px, 5vw, 72px);
  align-items: center;
}

.campaign-layout h2,
.index-strip h2 {
  margin: 0;
  font-size: 40px;
  line-height: 1.12;
  font-weight: var(--weight-display);
}

.china-campaign-layout {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(32px, 4vw, 56px);
}

.china-campaign-layout > figure {
  justify-self: stretch;
  margin: 0;
  padding: 18px;
}

.china-campaign-media-link {
  display: block;
  overflow: hidden;
  border-radius: 6px;
}

.china-campaign-media-link picture,
.campaign-gallery picture {
  display: block;
}

.china-campaign-media-link img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  transition: transform .18s ease;
}

.china-campaign-media-link:hover img,
.china-campaign-media-link:focus-visible img {
  transform: scale(1.015);
}

.china-campaign-media-link:focus-visible {
  outline: 3px solid rgba(0, 150, 214, .22);
  outline-offset: 4px;
}

.campaign-gallery {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  width: 100%;
}

.campaign-gallery a:first-child {
  grid-column: 1 / -1;
}

.campaign-gallery img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  border-radius: 8px;
  border: 1px solid var(--line);
  box-shadow: 0 12px 28px rgba(13, 48, 87, .10);
}

.campaign-section { background: #fff; }

.campaign-home {
  display: grid;
  gap: 30px;
}

.campaign-home-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 32px;
}

.campaign-home-head > div { max-width: 900px; }

.campaign-home h2 {
  margin: 0;
  font-size: 40px;
  line-height: 1.12;
  font-weight: var(--weight-display);
}

.campaign-home .lead { max-width: 900px; }

.campaign-gallery-seven {
  grid-template-columns: repeat(12, minmax(0, 1fr));
}

.campaign-gallery-seven a:first-child,
.campaign-gallery-seven a:nth-child(2),
.campaign-gallery-seven a:nth-child(3) {
  grid-column: span 4;
}

.campaign-gallery-seven a:nth-child(n+4) {
  grid-column: span 3;
}

.policy-container { max-width: 900px; }

.policy-container h1 {
  margin: 18px 0 8px;
  font-size: clamp(34px, 4vw, 52px);
  line-height: 1.1;
}

.policy-updated {
  margin: 0 0 28px;
  color: var(--muted);
  font-weight: var(--weight-copy-strong);
}

.policy-body { margin-top: 26px; }

.directory-table,
.station-list,
.detail-table {
  width: 100%;
  border-collapse: collapse;
}

.directory-table th,
.directory-table td,
.station-list td,
.detail-table td,
.detail-table th {
  padding: 16px 18px;
  border-bottom: 1px solid var(--line);
  text-align: left;
  vertical-align: middle;
}

.directory-table th,
.detail-table th {
  color: var(--muted);
  font-size: 13px;
  font-weight: var(--weight-ui);
}

.directory-table .inline-link { white-space: nowrap; }

.operator-table-card {
  overflow: hidden;
}

.operator-table-card .directory-table {
  table-layout: fixed;
}

.operator-table-card .row-title {
  overflow-wrap: normal;
  word-break: keep-all;
}

.operator-table-card .directory-table th:nth-child(1),
.operator-table-card .directory-table td:nth-child(1) {
  width: 26%;
}

.operator-table-card .directory-table th:nth-child(2),
.operator-table-card .directory-table td:nth-child(2) {
  width: 19%;
}

.operator-table-card .directory-table th:nth-child(3),
.operator-table-card .directory-table td:nth-child(3) {
  width: 25%;
}

.operator-table-card .directory-table th:nth-child(4),
.operator-table-card .directory-table td:nth-child(4) {
  width: 18%;
}

.operator-table-card .directory-table th:nth-child(5),
.operator-table-card .directory-table td:nth-child(5) {
  width: 12%;
  text-align: right;
}

.directory-table th:last-child,
.directory-table td:last-child {
  width: 1%;
  white-space: nowrap;
  text-align: right;
}

.directory-section {
  margin-top: 18px;
  overflow: hidden;
}

.directory-section:first-of-type { margin-top: 0; }

.directory-section-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 22px 24px;
  border-bottom: 1px solid var(--line);
  background: #fbfdff;
}

.directory-section-head h3 {
  margin: 0;
  font-size: 24px;
  line-height: 1.18;
}

.china-check-panel h2 {
  margin-bottom: 18px;
}

.plug-check-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.plug-check-card {
  min-height: 168px;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: linear-gradient(180deg, #fff 0%, #f7fbff 100%);
}

.plug-check-card span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 14px;
  font-size: 13px;
  font-weight: var(--weight-ui-strong);
}

.plug-check-card span::before {
  content: "";
  width: 26px;
  height: 3px;
  border-radius: 999px;
  background: currentColor;
}

.plug-check-hk { border-top: 4px solid var(--blue); }
.plug-check-hk span { color: var(--blue-700); }
.plug-check-cn { border-top: 4px solid var(--yellow); }
.plug-check-cn span { color: #a58900; }

.plug-check-card h3 {
  margin: 0 0 8px;
  font-size: 26px;
  line-height: 1.12;
}

.plug-check-card p,
.plug-note {
  margin: 0;
  color: #1a3555;
  font-weight: var(--weight-copy-strong);
}

.plug-note {
  margin-top: 16px;
  padding: 16px 18px;
  border-left: 4px solid var(--green);
  border-radius: 8px;
  background: #f2fbf7;
}

.china-filter-bar {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 360px);
  gap: 18px;
  align-items: end;
  margin-bottom: 18px;
}

.china-filter-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
}

.china-filter {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  min-height: 38px;
  padding: 8px 13px;
  border: 1px solid #cfe2f1;
  border-radius: 999px;
  background: #fff;
  color: #0a486b;
  font: inherit;
  font-size: 14px;
  font-weight: var(--weight-ui-strong);
  cursor: pointer;
}

.china-filter span {
  color: var(--muted);
  font-size: 12px;
  font-weight: var(--weight-copy-strong);
}

.china-filter:hover,
.china-filter.is-active {
  border-color: var(--blue);
  background: #eaf8ff;
  color: var(--blue-700);
}

.china-search {
  display: grid;
  gap: 7px;
}

.china-search span {
  color: var(--muted);
  font-size: 13px;
  font-weight: var(--weight-ui);
}

.china-search input {
  width: 100%;
  height: 44px;
  padding: 0 14px;
  border: 1px solid #cfe2f1;
  border-radius: 8px;
  background: #fff;
  color: var(--ink);
  font: inherit;
  font-weight: var(--weight-copy-strong);
}

.china-search input:focus {
  outline: 3px solid rgba(0, 150, 214, .16);
  border-color: var(--blue);
}

.china-table-card .directory-table {
  table-layout: fixed;
}

.china-table-card .directory-table th:nth-child(1),
.china-table-card .directory-table td:nth-child(1) {
  width: 39%;
}

.china-table-card .directory-table th:nth-child(2),
.china-table-card .directory-table td:nth-child(2) {
  width: 10%;
}

.china-table-card .directory-table th:nth-child(3),
.china-table-card .directory-table td:nth-child(3) {
  width: 13%;
}

.china-table-card .directory-table th:nth-child(4),
.china-table-card .directory-table td:nth-child(4) {
  width: 16%;
}

.china-table-card .directory-table th:nth-child(5),
.china-table-card .directory-table td:nth-child(5) {
  width: 14%;
}

.china-empty {
  margin: 0;
  padding: 24px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-weight: var(--weight-copy-strong);
}

.station-mark {
  width: 42px;
  height: 42px;
  border-radius: 9px;
  display: inline-grid;
  place-items: center;
  background: #edf4fa;
  color: #71899f;
  overflow: hidden;
  flex: 0 0 auto;
}

.station-mark img {
  width: 28px;
  height: 28px;
  object-fit: contain;
  opacity: .8;
}

.operator-mark {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: inline-grid;
  place-items: center;
  background: #f3f9fd;
  overflow: hidden;
  flex: 0 0 auto;
  box-shadow: inset 0 0 0 1px rgba(13, 91, 137, .10);
}

.operator-mark img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 12px;
  box-shadow: none;
}

.operator-mark img[src$=".svg"] {
  object-fit: contain;
  padding: 8px;
}

.operator-mark i {
  display: none;
  color: #9cb2c2;
  font-size: 20px;
}

.operator-mark-default {
  background: #eef4f8;
  box-shadow: inset 0 0 0 1px rgba(88, 112, 140, .16);
}

.operator-mark-default img { display: none; }
.operator-mark-default i { display: block; }

.operator-link {
  color: var(--ink);
}

.operator-link:hover {
  color: var(--blue-700);
}

.row-title {
  display: flex;
  align-items: center;
  gap: 14px;
  font-weight: var(--weight-heading);
  font-size: 17px;
}

.station-hero-layout {
  display: block;
}

.station-hero {
  padding: 64px 0 48px;
}

.station-hero-layout > div {
  max-width: 1160px;
}

.station-hero .row-title {
  margin-bottom: 12px;
}

.station-hero h1 { max-width: 1160px; }

.station-hero .station-seo-subtitle {
  max-width: min(100%, 1160px);
  margin: 16px 0 0;
  color: #2a4360;
  font-size: 16.5px;
  line-height: 1.62;
  font-weight: var(--weight-copy);
}

.station-hero-card {
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: var(--shadow);
}

.station-operator-line {
  display: flex;
  align-items: center;
  gap: 14px;
  padding-bottom: 16px;
  margin-bottom: 16px;
  border-bottom: 1px solid var(--line);
  font-size: 20px;
}

.station-hero-stat-grid {
  display: grid;
  gap: 12px;
}

.station-hero-stat-grid div {
  padding: 14px 16px;
  border-left: 4px solid var(--blue);
  border-radius: 8px;
  background: #f5fbff;
}

.station-hero-stat-grid div:nth-child(2) { border-left-color: var(--yellow); }
.station-hero-stat-grid div:nth-child(3) { border-left-color: var(--green); }
.station-hero-stat-grid span,
.station-hero-stat-grid small {
  display: block;
  color: var(--muted);
  font-weight: var(--weight-copy-strong);
}

.station-hero-stat-grid b {
  display: block;
  margin: 5px 0;
  font-size: 24px;
  line-height: 1.15;
}

.subtle { color: var(--muted); font-weight: var(--weight-copy-strong); font-size: 14px; }

.pill-row { display: flex; flex-wrap: wrap; gap: 8px; }
.pill {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 4px 10px;
  border-radius: 999px;
  border: 1px solid #cfe2f1;
  background: #f7fbff;
  color: #07537d;
  font-size: 13px;
  font-weight: var(--weight-ui);
}

.two-col {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 330px;
  gap: 24px;
  align-items: start;
}

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

.record-card { margin-bottom: 18px; }

.record-card > .pad {
  padding: 18px 26px 14px;
}

.record-card > .pad h2,
.record-card.pad > h2:first-child {
  margin: 0;
}

.record-card.pad {
  padding: 22px 26px 24px;
}

.record-card > .detail-table {
  width: calc(100% - 52px);
  margin: 0 26px 26px;
}

.record-card > .detail-table th {
  width: 126px;
  min-width: 126px;
  vertical-align: top;
}

.record-card > .detail-table td {
  vertical-align: top;
}

.record-sidebar {
  position: sticky;
  top: 98px;
}

.station-map-card {
  border-top: 4px solid var(--yellow);
}

.station-map-card h2 {
  margin-top: 18px;
}

.station-map-benefits {
  display: grid;
  gap: 9px;
  margin: 16px 0 0;
  padding: 0;
  list-style: none;
  font-size: 14px;
  font-weight: var(--weight-copy-strong);
}

.station-map-benefits li {
  display: flex;
  align-items: flex-start;
  gap: 9px;
}

.station-map-benefits i {
  color: var(--green);
  margin-top: 3px;
}

.station-map-actions {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
  margin-top: 18px;
}

.station-map-actions .btn {
  width: 100%;
  gap: 9px;
}

.station-map-actions .btn i {
  font-size: 16px;
  line-height: 1;
}

.station-app-download {
  display: none;
}

.charger-row {
  display: grid;
  grid-template-columns: 1.1fr .8fr .8fr .8fr;
  gap: 14px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  margin: 12px 0;
  align-items: center;
  background: #fff;
}

.charger-row b { display: block; font-size: 17px; font-weight: var(--weight-heading); }
.charger-row span { display: block; color: var(--muted); font-weight: var(--weight-copy-strong); }

.faq-list details {
  border: 1px solid var(--line);
  border-radius: 8px;
  margin: 10px 0;
  padding: 14px 16px;
  background: #fff;
}

.faq-list summary {
  cursor: pointer;
  font-weight: var(--weight-heading);
}

.station-nearby-list {
  display: grid;
  gap: 10px;
  margin-top: 14px;
}

.nearby-item {
  display: grid;
  grid-template-columns: 1fr;
  gap: 7px;
  padding: 15px 16px;
  border: 1px solid #d9e9f4;
  border-radius: 8px;
  background: linear-gradient(180deg, #fff 0%, #f8fcff 100%);
}

.nearby-item strong {
  color: var(--ink);
  font-size: 15px;
  line-height: 1.3;
  font-weight: var(--weight-heading);
}

.nearby-item span {
  color: var(--muted);
  font-size: 13px;
  font-weight: var(--weight-copy-strong);
}

.nearby-item em {
  justify-self: start;
  padding: 5px 9px;
  border-radius: 8px;
  background: #eef8fd;
  color: var(--blue-700);
  font-size: 12px;
  font-style: normal;
  font-weight: var(--weight-ui-strong);
  text-align: center;
  white-space: nowrap;
}

.nearby-item:hover {
  border-color: #a8d4ee;
  box-shadow: 0 10px 22px rgba(10, 80, 120, .08);
  transform: translateY(-1px);
}

.preline { white-space: pre-line; }

.article-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 300px;
  gap: 38px;
  align-items: start;
}

.article-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(360px, .8fr);
  gap: 48px;
  align-items: center;
}

.article-hero-image {
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: var(--shadow);
}

.article-hero-image img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.image-fallback {
  min-height: 260px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, #eff8fd, #fff7c8);
}

.image-fallback::after {
  content: "EV-BOY";
  color: #8aa3b7;
  font-size: 28px;
  font-weight: var(--weight-heading-strong);
}

.article-body {
  max-width: 780px;
  padding: 0;
  background: #fff;
  font-size: 16.5px;
  line-height: 1.72;
  font-weight: var(--weight-copy);
}

.article-body > *:first-child { margin-top: 0; }
.article-body > *:last-child { margin-bottom: 0; }
.article-body p { margin: 0 0 1.25em; }
.article-body h2 {
  margin: 2.25em 0 .7em;
  padding-left: 16px;
  border-left: 4px solid var(--blue);
  font-size: 26px;
  line-height: 1.22;
  font-weight: var(--weight-heading);
}
.article-body h3 {
  margin: 1.9em 0 .65em;
  font-size: 21px;
  line-height: 1.28;
  font-weight: var(--weight-heading);
}
.article-body figure {
  margin: 2.2em 0;
}
.article-body img {
  width: auto;
  max-width: 100%;
  max-height: min(70vh, 560px);
  margin-inline: auto;
  border-radius: 8px;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  object-fit: contain;
}
.article-body figure img {
  width: auto;
  max-width: 100%;
  height: auto;
}
.article-body iframe {
  width: 100%;
  max-width: 100%;
  border: 0;
}
.article-body figure > div:has(> iframe) {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  border-radius: 8px;
  background: #f2f7fb;
}
.article-body figure > div:has(> iframe) iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}
.article-body figcaption {
  color: var(--muted);
  font-size: 14px;
  font-weight: var(--weight-copy-strong);
  margin-top: 8px;
}
.article-body ul, .article-body ol {
  margin: 0 0 1.45em;
  padding-left: 1.45em;
}
.article-body li + li { margin-top: 10px; }
.article-body a { color: var(--blue-700); font-weight: var(--weight-ui); }
.article-body blockquote {
  margin: 1.8em 0;
  padding: 18px 22px;
  border-left: 4px solid var(--yellow);
  background: #fffdf0;
  color: #183452;
  font-weight: var(--weight-copy-strong);
}
.article-body table {
  width: 100%;
  max-width: 100%;
  margin: 1.6em 0;
  border-collapse: collapse;
  font-size: 16px;
}
.article-body th,
.article-body td {
  padding: 13px 15px;
  border: 1px solid var(--line);
  vertical-align: top;
}
.article-body .l-section {
  margin: 0;
  padding: 0;
}
.article-sidebar {
  position: sticky;
  top: 98px;
  display: grid;
  gap: 18px;
}

.sidebar-links {
  display: grid;
  gap: 0;
}

.sidebar-links a {
  padding: 12px 0;
  border-bottom: 1px solid var(--line);
  color: var(--blue-700);
  font-weight: var(--weight-ui-strong);
}

.sidebar-links a:last-child { border-bottom: 0; }

.guide-shell {
  display: grid;
  grid-template-columns: 250px 1fr;
  gap: 28px;
}

.side-nav {
  position: sticky;
  top: 112px;
  align-self: start;
  overflow: hidden;
}

.side-nav a {
  display: block;
  padding: 15px 18px;
  border-bottom: 1px solid var(--line);
  font-weight: var(--weight-ui);
}

.route-card {
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: var(--shadow);
}

.route-card h2 {
  margin: 0 0 14px;
  font-size: 26px;
}

.route-card a {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 14px;
  align-items: start;
  padding: 14px 0;
  border-top: 1px solid var(--line);
}

.route-card a > div {
  min-width: 0;
}

.route-card span {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border-radius: 8px;
  background: var(--blue);
  color: #fff;
  font-weight: var(--weight-heading);
}

.route-card a:nth-of-type(2) span { background: var(--yellow); color: #101820; }
.route-card a:nth-of-type(3) span { background: var(--green); }
.route-card a:nth-of-type(4) span { background: var(--orange); }
.route-card a:nth-of-type(5) span { background: var(--purple); }

.route-card strong,
.route-card small {
  display: block;
}

.route-card strong {
  font-size: 17px;
  line-height: 1.25;
  font-weight: var(--weight-heading);
}

.route-card small {
  margin-top: 4px;
  color: var(--muted);
  font-weight: var(--weight-copy-strong);
  overflow-wrap: normal;
  word-break: normal;
}

.guide-list {
  display: grid;
  gap: 28px;
}

.guide-group {
  padding: clamp(24px, 3vw, 34px);
}

.guide-group h2 {
  margin: 0 0 8px;
  font-size: 30px;
  line-height: 1.18;
}

.guide-group > p {
  margin: 0 0 22px;
  color: #2a4360;
  font-weight: var(--weight-copy);
}

.guide-article-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.guide-article-card {
  display: grid;
  grid-template-columns: 140px 1fr;
  grid-template-rows: auto auto 1fr;
  gap: 8px 14px;
  min-height: 142px;
  padding: 14px;
  border: 1px solid #d9e9f4;
  border-radius: 8px;
  background: #fff;
}

.guide-article-card.no-thumb {
  grid-template-columns: 1fr;
}

.guide-article-card img {
  grid-row: 1 / span 3;
  width: 100%;
  height: 112px;
  object-fit: cover;
  border-radius: 7px;
}

.guide-article-card strong {
  font-size: 17px;
  line-height: 1.28;
  font-weight: var(--weight-heading);
}

.guide-article-card span {
  color: #35506b;
  font-size: 14px;
  font-weight: var(--weight-copy);
}

.guide-article-card em {
  align-self: end;
  color: var(--blue-700);
  font-style: normal;
  font-weight: var(--weight-ui-strong);
}

.video-hero {
  padding: 58px 0 52px;
}

.video-hero-copy-inner {
  max-width: 820px;
}

.video-card,
.video-row {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  overflow: hidden;
  box-shadow: 0 10px 24px rgba(19, 62, 102, .05);
}

.video-card img {
  width: 100%;
  aspect-ratio: 16 / 9;
  height: auto;
  object-fit: cover;
}

.video-row img {
  width: 100%;
  aspect-ratio: 16 / 9;
  height: auto;
  object-fit: cover;
}

.video-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  gap: 24px;
  align-items: start;
}

.video-list {
  display: grid;
  gap: 12px;
}

.video-row {
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: 16px;
  align-items: start;
  padding: 12px;
}

.video-row span,
.video-card div {
  display: grid;
  gap: 5px;
}

.video-row strong,
.video-card strong {
  font-size: 17px;
  line-height: 1.28;
  font-weight: var(--weight-heading);
}

.video-row small {
  color: var(--blue-700);
  font-weight: var(--weight-ui);
}

.video-row em,
.video-card p {
  color: #35506b;
  font-style: normal;
  font-weight: var(--weight-copy);
  margin: 0;
}

.video-card-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.video-card div {
  padding: 16px;
}

.is-video-fallback {
  position: relative;
}

.is-video-fallback::before {
  content: "EV-BOY 影片";
  display: grid;
  place-items: center;
  min-height: 120px;
  background: linear-gradient(135deg, #e6f4fb, #fdf5bc);
  color: #5d7890;
  font-weight: var(--weight-heading-strong);
}

.video-thumb {
  aspect-ratio: 16 / 9;
  background: linear-gradient(135deg, #e6f4fb, #fdf5bc);
  border-radius: 8px;
  overflow: hidden;
}

.site-footer {
  padding: 48px 0 22px;
  border-top: 1px solid var(--line);
  background: #fff;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 1.35fr .85fr;
  gap: 58px;
}

.footer-brand img { width: 148px; height: auto; margin-bottom: 14px; }
.footer-brand p,
.footer-social p { color: #35506b; font-weight: var(--weight-copy); margin: 0; }
.footer-grid h2 { font-size: 16px; margin: 0 0 14px; }

.footer-link-grid,
.footer-menu-groups {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 7px 24px;
}

.footer-link-grid a { color: #2d526f; font-weight: var(--weight-ui); }
.footer-link-grid a:hover { color: var(--blue-700); }

.footer-menu-group {
  display: grid;
  align-content: start;
  gap: 6px;
}

.footer-menu-group h3 {
  margin: 0 0 2px;
  color: var(--ink);
  font-size: 13px;
  line-height: 1.25;
  font-weight: var(--weight-copy-strong);
}

.footer-menu-group a {
  color: #2d526f;
  font-size: 13px;
  line-height: 1.35;
  font-weight: var(--weight-copy);
}

.footer-menu-group a:hover { color: var(--blue-700); }

.social-row { display: flex; gap: 10px; margin-bottom: 16px; }
.social-row a {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  border: 1px solid var(--line);
  color: var(--blue-700);
  font-weight: var(--weight-ui-strong);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin-top: 34px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 13px;
  font-weight: var(--weight-copy-strong);
}

@media (max-width: 1080px) {
  .nav {
    height: 76px;
    grid-template-columns: auto 1fr auto;
    gap: 18px;
  }
  .nav-links {
    justify-content: center;
    gap: 6px;
    overflow: visible;
    font-size: 14.5px;
  }
  .nav-links > a,
  .nav-links button {
    padding: 8px 7px;
  }
  .nav-actions .btn {
    min-height: 40px;
    padding: 0 13px;
    font-size: 14px;
  }
  .hero {
    padding: 58px 0 54px;
  }
  .hero-grid {
    grid-template-columns: minmax(430px, 1fr) minmax(380px, .85fr);
    gap: 36px;
  }
  .home-hero .hero-grid {
    grid-template-columns: minmax(0, 1fr) minmax(260px, 320px);
    align-items: end;
    gap: 42px;
  }
  .hero h1 {
    font-size: clamp(30px, 3.6vw, 36px);
  }
  .hero-copy-block {
    margin: 18px 0 22px;
    font-size: 15px;
    line-height: 1.55;
  }
  .access-grid {
    gap: 8px;
    max-width: 100%;
  }
  .access-card {
    min-height: 66px;
    grid-template-columns: 40px 1fr;
    gap: 10px;
    padding: 10px 12px;
  }
  .access-icon {
    width: 38px;
    height: 38px;
    font-size: 19px;
  }
  .access-card strong {
    font-size: 15.5px;
  }
  .access-card small {
    font-size: 12px;
  }
  .hero-visual {
    max-width: 420px;
  }
  .home-hero .hero-visual {
    grid-template-columns: 1fr;
    justify-self: end;
    width: min(100%, 305px);
    max-width: 305px;
  }
  .home-hero .hero-visual .phone-frame:first-child {
    display: none;
  }
  .phone-frame {
    border-radius: 22px;
    padding: 5px;
  }
  .phone-frame img {
    border-radius: 17px;
  }
  .section-head h1, .section-head h2 { font-size: 30px; }
  .app-choice-grid,
  .station-hero-layout,
  .campaign-layout,
  .index-strip,
  .article-layout,
  .guide-shell,
  .video-layout,
  .whatsapp-guide,
  .map-tutorial-layout,
  .two-col,
  .china-filter-bar {
    grid-template-columns: 1fr;
  }
  .metric-row { grid-template-columns: repeat(3, 1fr); }
  .index-hero-meta {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .index-hero-link {
    grid-column: 1 / -1;
    min-height: 58px;
  }
  .side-nav,
  .record-sidebar,
  .article-sidebar { position: static; }
  .station-section-head p { white-space: normal; }
  .campaign-home-head {
    align-items: flex-start;
    flex-direction: column;
  }
  .campaign-gallery-seven a:first-child,
  .campaign-gallery-seven a:nth-child(2),
  .campaign-gallery-seven a:nth-child(3),
  .campaign-gallery-seven a:nth-child(n+4) {
    grid-column: span 6;
  }
}

@media (max-width: 860px) {
  .container { width: min(100% - 28px, var(--max)); }
  .wordmark img { width: 136px; }
  .site-header {
    backdrop-filter: none;
  }
  .nav {
    min-height: 64px;
    height: auto;
    padding: 10px 0;
    grid-template-columns: auto auto;
    align-items: center;
    gap: 0 10px;
    position: relative;
  }
  .nav-toggle {
    display: inline-flex;
    justify-self: end;
  }
  .nav-links {
    display: none;
    position: absolute;
    top: calc(100% + 7px);
    left: 0;
    right: 0;
    z-index: 45;
    width: 100%;
    max-height: min(68vh, 430px);
    margin: 0;
    padding: 7px;
    overflow: auto;
    overscroll-behavior: contain;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: #fff;
    box-shadow: 0 14px 34px rgba(19, 62, 102, .12);
    font-size: 14.5px;
    gap: 2px;
    align-items: stretch;
    justify-content: stretch;
  }
  .nav.is-menu-open .nav-links {
    display: grid;
  }
  .nav-links > a,
  .nav-links button {
    display: flex;
    width: 100%;
    min-height: 40px;
    align-items: center;
    justify-content: space-between;
    padding: 8px 10px;
    border-radius: 6px;
    text-align: left;
    white-space: normal;
  }
  .nav-item {
    width: 100%;
    margin: 0;
    padding: 0;
  }
  .nav-item::after,
  .nav-menu::before {
    display: none;
  }
  .nav-item.has-menu > button::after {
    content: "\f078";
    flex: 0 0 auto;
    margin-left: 10px;
    color: var(--muted);
    font-family: "Font Awesome 6 Free";
    font-size: 12px;
    font-weight: 900;
    transition: transform .18s ease;
  }
  .nav-item.has-menu.is-open > button::after {
    transform: rotate(180deg);
  }
  .nav-item:hover .nav-menu,
  .nav-item:focus-within .nav-menu {
    display: none;
  }
  .nav-menu {
    position: static;
    display: none;
    left: 0;
    width: 100%;
    margin: 0 0 4px;
    padding: 0 0 0 10px;
    border: 0;
    border-left: 3px solid var(--line);
    border-radius: 0;
    background: transparent;
    box-shadow: none;
    transform: none;
  }
  .nav-item.is-open .nav-menu {
    display: grid;
    gap: 2px;
  }
  .nav-menu a {
    padding: 7px 10px;
    border-radius: 6px;
    background: #f7fbfe;
  }
  .nav-menu b {
    font-size: 14px;
  }
  .nav-menu span {
    font-size: 12px;
    line-height: 1.35;
  }
  .nav-actions {
    display: none;
  }
  .nav-mobile-cta {
    display: flex;
    margin-top: 3px;
    width: 100%;
    min-height: 40px;
    font-size: 14px;
  }
  .section { padding: 54px 0; }
  .hero { padding: 50px 0; }
  .hero h1 {
    font-size: clamp(30px, 8.4vw, 34px);
  }
  .hero-grid,
  .article-hero-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .home-hero .hero-grid {
    grid-template-columns: minmax(0, 1fr);
    align-items: start;
    gap: 24px;
  }
  .index-hero { padding: 30px 0 24px; }
  .index-hero + .section { padding-top: 42px; }
  .index-hero .container { gap: 14px; }
  .index-hero p {
    font-size: 15.5px;
    line-height: 1.55;
    margin-top: 10px;
  }
  .index-hero-meta {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
  }
  .index-hero-link {
    grid-column: 1 / -1;
  }
  .index-hero-stat,
  .index-hero-link {
    min-height: 0;
    padding: 8px 10px;
  }
  .index-hero-stat b {
    font-size: 16px;
  }
  .access-grid,
  .home-directory-grid,
  .card-grid,
  .guide-article-grid,
  .video-card-grid,
  .campaign-gallery,
  .map-tutorial-steps,
  .map-support-grid,
  .metric-row,
  .footer-grid,
  .footer-menu-groups {
    grid-template-columns: 1fr;
  }
  .hero-visual {
    grid-template-columns: 1fr;
    width: min(100%, 300px);
    justify-self: center;
  }
  .home-hero .hero-visual {
    width: min(100%, 300px);
    max-width: 300px;
    justify-self: center;
  }
  .hero-visual .phone-frame:first-child {
    display: none;
  }
  .phone-frame {
    padding: 4px;
    border-radius: 22px;
  }
  .phone-frame img {
    border-radius: 18px;
  }
  .home-hero-title-line { white-space: normal; }
  .app-choice-copy h1 { font-size: 34px; }
  .app-choice-hero { padding: 54px 0; }
  .platform-choice-panel { padding: 22px; }
  .section-head h1, .section-head h2 { font-size: 28px; }
  .campaign-layout h2,
  .campaign-home h2,
  .index-strip h2 { font-size: 28px; }
  .section-head { display: block; }
  .campaign-gallery-seven a:first-child,
  .campaign-gallery-seven a:nth-child(2),
  .campaign-gallery-seven a:nth-child(3),
  .campaign-gallery-seven a:nth-child(n+4) {
    grid-column: 1 / -1;
  }
  .directory-table,
  .directory-table tbody,
  .directory-table tr,
  .directory-table td,
  .directory-table th {
    display: block;
  }
  .directory-table thead { display: none; }
  .directory-table td { border-bottom: 0; padding: 6px 14px; }
  .directory-table tr { border-bottom: 1px solid var(--line); padding: 12px 0; display: block; }
  .record-card > .detail-table {
    width: calc(100% - 28px);
    margin: 0 14px 18px;
  }
  .record-card > .detail-table,
  .record-card > .detail-table tbody,
  .record-card > .detail-table tr,
  .record-card > .detail-table th,
  .record-card > .detail-table td {
    display: block;
  }
  .record-card > .detail-table tr {
    padding: 10px 0;
    border-bottom: 1px solid var(--line);
  }
  .record-card > .detail-table tr:last-child {
    border-bottom: 0;
  }
  .record-card > .detail-table th {
    width: auto;
    min-width: 0;
    padding: 6px 0 2px;
    border-bottom: 0;
  }
  .record-card > .detail-table td {
    padding: 0 0 8px;
    border-bottom: 0;
  }
  .station-app-download {
    display: inline-flex;
  }
  .china-table-card .directory-table th,
  .china-table-card .directory-table td,
  .china-table-card .directory-table th:nth-child(1),
  .china-table-card .directory-table td:nth-child(1),
  .china-table-card .directory-table th:nth-child(2),
  .china-table-card .directory-table td:nth-child(2),
  .china-table-card .directory-table th:nth-child(3),
  .china-table-card .directory-table td:nth-child(3),
  .china-table-card .directory-table th:nth-child(4),
  .china-table-card .directory-table td:nth-child(4),
  .china-table-card .directory-table th:nth-child(5),
  .china-table-card .directory-table td:nth-child(5) {
    width: auto;
  }
  .operator-table-card .directory-table th,
  .operator-table-card .directory-table td,
  .operator-table-card .directory-table th:nth-child(1),
  .operator-table-card .directory-table td:nth-child(1),
  .operator-table-card .directory-table th:nth-child(2),
  .operator-table-card .directory-table td:nth-child(2),
  .operator-table-card .directory-table th:nth-child(3),
  .operator-table-card .directory-table td:nth-child(3),
  .operator-table-card .directory-table th:nth-child(4),
  .operator-table-card .directory-table td:nth-child(4),
  .operator-table-card .directory-table th:nth-child(5),
  .operator-table-card .directory-table td:nth-child(5) {
    width: auto;
    text-align: left;
  }
  .charger-row { grid-template-columns: 1fr; }
  .plug-check-grid { grid-template-columns: 1fr; }
  .plug-check-card { min-height: auto; }
  .china-filter-tabs {
    flex-wrap: nowrap;
    overflow-x: auto;
    padding-bottom: 4px;
  }
  .china-filter { flex: 0 0 auto; }
  .article-body table {
    display: block;
    overflow-x: auto;
  }
  .guide-article-card,
  .video-row {
    grid-template-columns: 1fr;
  }
  .guide-article-card img,
  .video-row img {
    grid-row: auto;
    height: auto;
  }
  .whatsapp-phone img { max-height: 560px; }
  .footer-bottom { display: block; }
}

@media (min-width: 720px) and (max-width: 860px) {
  .home-hero {
    padding: 52px 0 48px;
  }
  .home-hero .hero-grid {
    grid-template-columns: minmax(0, 1fr) minmax(230px, 270px);
    align-items: end;
    gap: 24px;
  }
  .home-hero .hero-copy-block {
    margin: 14px 0 18px;
    font-size: 14px;
    line-height: 1.5;
  }
  .home-hero .hero-feature-list {
    gap: 6px;
    margin-bottom: 12px;
  }
  .home-hero .hero-feature-list li {
    min-height: 0;
    padding-left: 23px;
  }
  .home-hero .hero-feature-list li::before {
    top: .14em;
    font-size: 14px;
  }
  .home-hero .hero-note {
    font-size: 12.75px;
    line-height: 1.45;
  }
  .home-hero .access-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
  }
  .home-hero .access-card {
    min-height: 60px;
    grid-template-columns: 36px 1fr;
    gap: 8px;
    padding: 9px 10px;
  }
  .home-hero .access-icon {
    width: 34px;
    height: 34px;
    font-size: 17px;
  }
  .home-hero .access-card strong {
    font-size: 14px;
  }
  .home-hero .access-card small {
    font-size: 11px;
  }
  .home-hero .hero-visual {
    grid-template-columns: 1fr;
    justify-self: end;
    width: min(100%, 270px);
    max-width: 270px;
  }
  .home-hero .hero-visual .phone-frame:first-child {
    display: none;
  }
  .home-hero .hero-visual .phone-frame:nth-child(2) {
    display: block;
  }
}
