:root {
  color-scheme: light;
  --ink: #07070b;
  --muted: #6f717a;
  --soft: #f7f7f9;
  --line: #e8e8ee;
  --pink: #dc3383;
  --orange: #f37d21;
  --yellow: #f9bd22;
  --green: #32b570;
  --blue: #2f84ce;
  --purple: #7d3ff2;
  --shadow: 0 28px 90px rgba(10, 12, 20, 0.08);
}

* {
  box-sizing: border-box;
}

html {
  background: #fff;
}

body {
  margin: 0;
  overflow-x: hidden;
  background: linear-gradient(180deg, #fff 0%, #fff 70%, #fafafa 100%);
  color: var(--ink);
  font-family:
    ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", "Noto Sans TC",
    "Noto Sans HK", "Helvetica Neue", Arial, sans-serif;
  line-height: 1.55;
}

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

.nav-shell {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  justify-content: center;
  padding: 22px 24px 0;
  pointer-events: none;
}

.site-nav {
  display: grid;
  width: min(1280px, 100%);
  min-height: 72px;
  align-items: center;
  grid-template-columns: max-content max-content minmax(0, 1fr) max-content;
  gap: 18px;
  border: 1px solid rgba(232, 232, 238, 0.9);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.88);
  padding: 12px 22px;
  box-shadow: 0 16px 46px rgba(10, 12, 20, 0.06);
  backdrop-filter: blur(18px);
  pointer-events: auto;
}

.nav-accent {
  display: inline-flex;
  justify-content: center;
  width: max-content;
  min-width: 0;
}

.nav-accent .accent-lines i {
  width: 26px;
  height: 4px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  min-width: max-content;
  font-size: 25px;
  font-weight: 900;
  letter-spacing: 0;
}

.brand img {
  width: 38px;
  height: 38px;
  object-fit: contain;
}

.site-nav .desktop-nav {
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  justify-content: flex-end;
  gap: 10px;
  min-width: 0;
  white-space: nowrap;
}

.site-nav .desktop-nav a {
  color: #61636b;
  font-size: 12.5px;
  font-weight: 720;
  line-height: 1.2;
}

.site-nav .desktop-nav a.active,
.site-nav .desktop-nav a:hover,
.site-nav .desktop-nav a:focus-visible {
  color: var(--ink);
}

.site-nav .desktop-nav a:focus-visible {
  outline: 2px solid var(--blue);
  outline-offset: 3px;
  border-radius: 6px;
}

.nav-utilities {
  display: inline-flex;
  align-items: center;
  justify-self: end;
  gap: 8px;
  min-width: max-content;
}

.language-switch,
.mobile-menu {
  position: relative;
}

.language-switch {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  min-height: 40px;
  border: 1px solid rgba(212, 214, 222, 0.95);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.94);
  color: var(--ink);
  font-size: 13px;
  font-weight: 850;
  line-height: 1;
  padding: 0 12px;
  white-space: nowrap;
}

.language-switch svg {
  width: 16px;
  height: 16px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

.language-switch:hover,
.language-switch:focus-visible {
  border-color: rgba(21, 121, 191, 0.35);
}

.language-switch:focus-visible {
  outline: 2px solid var(--blue);
  outline-offset: 3px;
}

.mobile-menu {
  display: none;
}

.mobile-menu summary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  border: 1px solid rgba(212, 214, 222, 0.95);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.94);
  color: var(--ink);
  cursor: pointer;
  font-size: 13px;
  font-weight: 850;
  line-height: 1;
  list-style: none;
  padding: 0 14px;
}

.mobile-menu summary::-webkit-details-marker {
  display: none;
}

.mobile-menu summary:focus-visible {
  outline: 2px solid rgba(21, 121, 191, 0.35);
  outline-offset: 3px;
}

.mobile-menu-panel {
  position: absolute;
  right: 0;
  top: calc(100% + 10px);
  z-index: 20;
  display: grid;
  width: min(78vw, 320px);
  gap: 4px;
  border: 1px solid rgba(226, 227, 234, 0.95);
  border-radius: 14px;
  background: #fff;
  box-shadow: 0 18px 48px rgba(10, 12, 20, 0.14);
  padding: 10px;
}

.mobile-menu-panel a {
  display: flex;
  align-items: center;
  min-height: 42px;
  border-radius: 10px;
  color: #4f525b;
  font-size: 14px;
  font-weight: 780;
  line-height: 1.2;
  padding: 10px 12px;
}

.mobile-menu-panel a.active,
.mobile-menu-panel a:hover,
.mobile-menu-panel a:focus-visible {
  background: #f5f6f8;
  color: var(--ink);
}

.mobile-menu-panel a:focus-visible {
  outline: 2px solid var(--blue);
  outline-offset: 2px;
}

main,
footer {
  width: min(1180px, calc(100% - 48px));
  margin: 0 auto;
}

.hero {
  display: grid;
  justify-items: center;
  gap: 38px;
  align-items: start;
  align-content: start;
  min-height: auto;
  padding: 62px 0 54px;
  text-align: center;
}

.hero-copy {
  display: grid;
  justify-items: center;
  min-width: 0;
}

.eyebrow-row {
  display: inline-flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px;
  margin-bottom: 28px;
  color: #4a4c55;
  font-size: 15px;
  font-weight: 850;
}

.accent-lines {
  display: inline-flex;
  gap: 10px;
}

.accent-lines i {
  display: block;
  width: 44px;
  height: 3px;
  border-radius: 999px;
}

h1,
h2,
h3,
p {
  margin: 0;
}

h1 {
  max-width: 1040px;
  font-size: 58px;
  font-weight: 950;
  letter-spacing: 0;
  line-height: 1.08;
  overflow-wrap: break-word;
  word-break: normal;
}

h1 span {
  display: block;
  white-space: normal;
}

.lead {
  max-width: 920px;
  margin-top: 24px;
  color: var(--muted);
  font-size: 18.5px;
  font-weight: 460;
  line-height: 1.42;
  overflow-wrap: break-word;
  word-break: normal;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 34px;
  max-width: 100%;
}

.button {
  display: inline-flex;
  min-width: 190px;
  max-width: 100%;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 14px 25px;
  font-size: 16px;
  font-weight: 800;
  text-align: center;
  white-space: normal;
}

.button.primary {
  background: #07070b;
  color: #fff;
  box-shadow: 0 16px 34px rgba(7, 7, 11, 0.18);
}

.button.secondary {
  border: 1px solid var(--line);
  background: #fff;
  color: var(--ink);
}

.button.tertiary {
  border: 1px solid rgba(50, 181, 112, 0.35);
  background: #f4fbf7;
  color: #16633c;
}

.contact-actions {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, auto));
  justify-content: center;
  align-items: center;
  gap: 14px;
  width: min(920px, 100%);
  margin: 32px auto 0;
}

.contact-actions .button {
  min-width: 0;
  width: 100%;
  min-height: 50px;
  padding-inline: 22px;
}

.contact-actions p {
  grid-column: 1 / -1;
  max-width: 760px;
  margin: 2px auto 0;
  color: var(--muted);
  font-size: 13.5px;
  font-weight: 520;
  line-height: 1.5;
}

.company-intro {
  display: grid;
  justify-items: center;
  gap: 12px;
  width: min(960px, 100%);
  margin: 28px auto 0;
  color: var(--ink);
}

.company-intro p {
  max-width: 960px;
  color: #5f6068;
  font-size: 15px;
  font-weight: 500;
  line-height: 1.56;
  overflow-wrap: break-word;
  word-break: normal;
}

.content-section {
  padding: 60px 0;
  scroll-margin-top: 120px;
}

.content-section h2 {
  max-width: 1120px;
  margin-bottom: 24px;
  font-size: 42px;
  font-weight: 950;
  letter-spacing: 0;
  line-height: 1.08;
  text-wrap: balance;
}

.section-intro {
  max-width: 1040px;
  margin: 0 0 30px;
  color: var(--muted);
  font-size: clamp(15.5px, 1.15vw, 17px);
  font-weight: 480;
  line-height: 1.58;
  overflow-wrap: break-word;
  word-break: normal;
}

.section-action {
  margin-top: 28px;
}

.content-section.compact {
  padding-top: 34px;
  padding-bottom: 34px;
}

.content-section.compact h2 {
  font-size: 30px;
}

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

.card,
.route-card {
  min-height: 226px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.88);
  padding: 26px;
  box-shadow: 0 16px 40px rgba(10, 12, 20, 0.035);
}

.route-card {
  display: grid;
  align-content: space-between;
  transition:
    transform 160ms ease,
    box-shadow 160ms ease;
}

.route-card:hover,
.route-card:focus-visible {
  transform: translateY(-3px);
  box-shadow: var(--shadow);
}

.route-card:focus-visible {
  outline: 2px solid var(--blue);
  outline-offset: 4px;
}

.card h3,
.route-card h3 {
  font-size: 20px;
  font-weight: 850;
  line-height: 1.24;
}

.card p,
.route-card p {
  margin-top: 16px;
  color: var(--muted);
  font-size: 15px;
  font-weight: 460;
  line-height: 1.62;
  overflow-wrap: break-word;
  word-break: normal;
}

.route-card span {
  margin-top: 26px;
  color: var(--purple);
  font-size: 15px;
  font-weight: 850;
}

.faq-list,
.legal-list {
  display: grid;
  gap: 14px;
}

.faq-item,
.legal-item {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.9);
  padding: 24px;
}

.faq-item h3,
.legal-item h3 {
  font-size: 18px;
  font-weight: 780;
  line-height: 1.3;
}

.faq-item p,
.legal-item p {
  margin-top: 10px;
  color: var(--muted);
  font-size: 15px;
  font-weight: 460;
  line-height: 1.68;
  overflow-wrap: break-word;
  word-break: normal;
}

.legal-list {
  max-width: 900px;
}

body.legal-page .hero {
  gap: 24px;
  min-height: auto;
  padding: 42px 0 34px;
}

body.legal-page .company-intro {
  width: min(760px, 100%);
}

body.legal-page .company-intro p {
  font-size: 13.5px;
  font-weight: 420;
  line-height: 1.62;
}

body.legal-page .eyebrow-row {
  margin-bottom: 18px;
  font-size: 13px;
}

body.legal-page h1 {
  max-width: 760px;
  font-size: 30px;
  line-height: 1.16;
}

body.legal-page .lead {
  max-width: 720px;
  margin-top: 18px;
  font-size: 13.5px;
  font-weight: 420;
  line-height: 1.62;
}

body.legal-page .hero-actions {
  margin-top: 28px;
}

body.legal-page .content-section {
  padding: 36px 0 68px;
}

body.legal-page .content-section h2 {
  max-width: 860px;
  margin-bottom: 18px;
  font-size: 20px;
  line-height: 1.22;
}

body.legal-page .legal-list {
  max-width: 860px;
}

body.legal-page .legal-item {
  border-radius: 6px;
  padding: 14px 16px;
}

body.legal-page .legal-item h3 {
  font-size: 14px;
  font-weight: 600;
  line-height: 1.42;
}

body.legal-page .legal-item p {
  margin-top: 8px;
  font-size: 13px;
  font-weight: 400;
  line-height: 1.72;
}

footer {
  border-top: 1px solid var(--line);
  padding: 42px 0 58px;
}

footer .accent-lines {
  margin-bottom: 20px;
}

footer strong {
  display: block;
  margin-bottom: 10px;
  color: var(--ink);
  font-size: 24px;
  font-weight: 940;
}

footer p {
  max-width: 820px;
  color: #767882;
  font-size: 14px;
}

footer p + p {
  margin-top: 8px;
}

footer a {
  text-decoration: underline;
  text-underline-offset: 3px;
}

.cookie-consent {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 30;
  display: grid;
  grid-template-columns: minmax(0, 1fr) max-content;
  gap: 18px;
  align-items: center;
  width: min(720px, calc(100vw - 48px));
  border: 1px solid rgba(226, 227, 234, 0.96);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 22px 60px rgba(10, 12, 20, 0.14);
  padding: 18px;
  backdrop-filter: blur(16px);
}

.cookie-consent[hidden] {
  display: none;
}

.cookie-consent strong {
  display: block;
  color: var(--ink);
  font-size: 15px;
  font-weight: 850;
  line-height: 1.25;
}

.cookie-consent p {
  margin-top: 6px;
  color: #656873;
  font-size: 13px;
  font-weight: 430;
  line-height: 1.5;
}

.cookie-consent-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  align-items: center;
  gap: 10px;
}

.cookie-consent-actions .button {
  min-width: 0;
  min-height: 42px;
  border: 0;
  cursor: pointer;
  font-size: 13px;
  padding: 10px 16px;
}

.cookie-consent-actions .button.secondary {
  border: 1px solid var(--line);
}

.cookie-consent-actions a {
  color: #4f525b;
  font-size: 13px;
  font-weight: 720;
  text-decoration: underline;
  text-underline-offset: 3px;
}

@media (max-width: 1279px) {
  .site-nav {
    width: min(100%, 760px);
    grid-template-columns: max-content minmax(0, 1fr) max-content;
    justify-content: stretch;
  }

  .site-nav .desktop-nav {
    display: none;
  }

  .mobile-menu {
    display: block;
  }

  .nav-accent {
    justify-content: flex-end;
  }

  .nav-accent .accent-lines i {
    width: 34px;
    height: 3px;
  }

  .hero {
    min-width: 0;
    min-height: auto;
    padding: 56px 0 48px;
  }

  h1 {
    font-size: 42px;
  }

  .lead {
    font-size: 17px;
  }

  .content-section h2 {
    font-size: 32px;
  }

  .hero-copy {
    justify-items: center;
    text-align: center;
  }

  .hero-actions {
    justify-content: center;
  }

  .contact-actions {
    grid-template-columns: minmax(0, 1fr);
    max-width: 440px;
  }

  .content-section h2 {
    text-align: center;
    margin-inline: auto;
  }

  .section-intro {
    text-align: center;
    margin-inline: auto;
  }

  .card-grid,
  .route-grid {
    grid-template-columns: 1fr;
  }

  .cookie-consent {
    left: 24px;
    grid-template-columns: 1fr;
  }

  .cookie-consent-actions {
    justify-content: flex-start;
  }
}

@media (max-width: 560px) {
  .nav-shell {
    padding: 14px 14px 0;
  }

  main,
  footer {
    width: calc(100% - 56px);
    max-width: 430px;
    padding-inline: 0;
  }

  .site-nav {
    grid-template-columns: minmax(0, 1fr) max-content;
    justify-items: stretch;
    min-height: 62px;
    gap: 10px 12px;
    padding: 10px 16px;
  }

  .nav-accent {
    grid-column: 1 / -1;
    grid-row: 2;
    justify-content: flex-start;
    max-width: 100%;
    overflow: hidden;
  }

  .nav-utilities {
    grid-column: 2;
    grid-row: 1;
    align-self: center;
  }

  .mobile-menu-panel {
    top: calc(100% + 24px);
    width: min(calc(100vw - 28px), 330px);
  }

  .brand {
    justify-self: start;
    font-size: 21px;
    min-width: 0;
  }

  .brand strong {
    min-width: 0;
  }

  .brand img {
    width: 34px;
    height: 34px;
  }

  .accent-lines i {
    width: 34px;
    height: 3px;
  }

  h1 {
    max-width: 100%;
    font-size: 27px;
    line-height: 1.08;
    overflow-wrap: anywhere;
    word-break: break-all;
    line-break: anywhere;
  }

  .lead,
  .company-intro p,
  .section-intro,
  .card p,
  .route-card p {
    overflow-wrap: break-word;
    word-break: normal;
  }

  .hero-copy,
  .company-intro {
    width: 100%;
    max-width: 100%;
    overflow: visible;
  }

  .lead {
    max-width: 100%;
    font-size: 14.5px;
    overflow-wrap: break-word;
  }

  .eyebrow-row {
    max-width: 100%;
    justify-content: center;
    gap: 10px;
    font-size: 12px;
  }

  .eyebrow-row span {
    max-width: 100%;
    text-align: center;
    overflow-wrap: break-word;
  }

  .hero-actions {
    width: 100%;
  }

  .button {
    width: 100%;
    min-width: 0;
    overflow-wrap: anywhere;
  }

  .contact-actions {
    width: 100%;
    max-width: 100%;
  }

  .contact-actions .button {
    max-width: 100%;
  }

  .company-intro p {
    font-size: 14px;
  }

  .content-section {
    padding: 40px 0;
  }

  .content-section h2 {
    max-width: 100%;
    font-size: 23px;
    overflow-wrap: anywhere;
    word-break: normal;
  }

  .section-intro {
    font-size: 14.5px;
  }

  .card,
  .route-card,
  .faq-item,
  .legal-item {
    min-height: auto;
    border-radius: 8px;
    padding: 22px;
  }

  .card h3,
  .route-card h3,
  .faq-item h3,
  .legal-item h3 {
    font-size: 18px;
  }

  .card p,
  .route-card p,
  .faq-item p,
  .legal-item p {
    font-size: 14.5px;
  }

  body.legal-page .hero {
    gap: 22px;
    padding: 36px 0 28px;
  }

  body.legal-page .company-intro p {
    font-size: 13px;
  }

  body.legal-page h1 {
    font-size: 24px;
  }

  body.legal-page .lead {
    font-size: 13.5px;
  }

  body.legal-page .content-section {
    padding: 32px 0 54px;
  }

  body.legal-page .content-section h2 {
    font-size: 18px;
  }

  body.legal-page .legal-item {
    padding: 14px;
  }

  body.legal-page .legal-item h3 {
    font-size: 14px;
  }

  body.legal-page .legal-item p {
    font-size: 13px;
  }

  .cookie-consent {
    left: 14px;
    right: 14px;
    bottom: 14px;
    width: auto;
    padding: 16px;
  }

  .cookie-consent p {
    font-size: 12.5px;
  }

  .cookie-consent-actions {
    display: grid;
    grid-template-columns: 1fr;
    width: 100%;
  }

  .cookie-consent-actions .button {
    width: 100%;
  }

}

@media (max-width: 360px) {
  .nav-shell {
    padding: 12px 10px 0;
  }

  .site-nav {
    gap: 8px 10px;
    padding: 9px 12px;
  }

  .brand {
    gap: 8px;
    font-size: 18px;
  }

  .brand img {
    width: 30px;
    height: 30px;
  }

  .nav-utilities {
    gap: 6px;
  }

  .language-switch,
  .mobile-menu summary {
    min-height: 36px;
    font-size: 12px;
  }

  .language-switch {
    gap: 5px;
    padding: 0 10px;
  }

  .language-switch svg {
    width: 14px;
    height: 14px;
  }

  .mobile-menu summary {
    padding: 0 12px;
  }

  .mobile-menu-panel {
    width: min(calc(100vw - 20px), 300px);
  }

  .nav-accent .accent-lines i {
    width: 32px;
  }
}

