:root {
  --navy: #111947;
  --blue: #182664;
  --red: #c92b32;
  --red-dark: #a91e27;
  --ink: #182033;
  --muted: #647084;
  --line: #dde3ee;
  --paper: #ffffff;
  --soft: #f6f8fb;
  --cream: #fbf7f1;
  --shadow: 0 22px 60px rgba(17, 25, 71, 0.12);
  --hover-shadow: 0 20px 48px rgba(17, 25, 71, 0.14);
  --radius: 14px;
  --wrap: min(1180px, calc(100% - clamp(36px, 7vw, 96px)));
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  font-family: "Noto Sans SC", "Microsoft JhengHei", Arial, sans-serif;
}

*,
*::before,
*::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  position: fixed;
  width: 100%;
  overflow: hidden;
  touch-action: none;
}

img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, select { font: inherit; }
button, select { cursor: pointer; }

.skip-link {
  position: absolute;
  left: -999px;
  top: 12px;
  z-index: 100;
  padding: 10px 14px;
  color: #fff;
  background: var(--red);
}

.skip-link:focus { left: 12px; }

.wrap { width: var(--wrap); margin: 0 auto; }

.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;
}

.topline {
  color: rgba(255, 255, 255, 0.82);
  background: var(--navy);
  font-size: 13px;
}

.topline-inner {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  min-height: 36px;
  align-items: center;
}

.reading-progress {
  position: sticky;
  top: 0;
  z-index: 42;
  height: 4px;
  background: #fff;
}

.reading-progress span {
  display: block;
  width: 100%;
  height: 100%;
  background: var(--red);
  transform: scaleX(var(--reading-progress, 0));
  transform-origin: left center;
  transition: transform 120ms linear;
}

.has-reading-progress .header {
  top: 4px;
}

.has-reading-progress .mobile-nav {
  top: 82px;
  height: calc(100svh - 82px);
  max-height: calc(100svh - 82px);
}

.header {
  position: sticky;
  top: 0;
  z-index: 30;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 78px;
  padding: 12px clamp(18px, 5vw, 56px);
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(14px);
}

.brand img { width: 178px; }

.nav {
  display: flex;
  align-items: center;
  gap: clamp(16px, 2.4vw, 30px);
  color: var(--navy);
  font-size: 14px;
  font-weight: 800;
}

.nav-dropdown {
  position: relative;
  display: flex;
  align-items: center;
}

.nav a {
  position: relative;
  padding: 8px 0;
  border-bottom: 2px solid transparent;
  transition: color 180ms ease, border-color 180ms ease;
}

.nav a:hover, .nav a:focus-visible { border-bottom-color: var(--red); }

.nav-menu {
  position: absolute;
  top: calc(100% + 14px);
  left: 50%;
  z-index: 40;
  display: grid;
  width: 300px;
  padding: 10px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: #fff;
  box-shadow: var(--shadow);
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, 8px);
  transition: opacity 180ms ease, transform 180ms var(--ease);
}

.nav-menu.nav-menu-mega {
  left: 0;
  width: min(780px, calc(100vw - 48px));
  grid-template-columns: minmax(170px, 0.92fr) minmax(210px, 1fr) minmax(230px, 1.08fr);
  gap: 8px;
  padding: 14px;
  transform: translate(0, 8px);
}

.nav-menu::before {
  position: absolute;
  right: 0;
  bottom: 100%;
  left: 0;
  height: 16px;
  content: "";
}

.nav-dropdown:hover .nav-menu,
.nav-dropdown:focus-within .nav-menu {
  opacity: 1;
  pointer-events: auto;
  transform: translate(-50%, 0);
}

.nav-dropdown:hover .nav-menu.nav-menu-mega,
.nav-dropdown:focus-within .nav-menu.nav-menu-mega {
  transform: translate(0, 0);
}

.nav-menu-section {
  display: grid;
  align-content: start;
  gap: 2px;
  padding: 6px;
}

.nav-menu-section + .nav-menu-section {
  border-left: 1px solid var(--line);
}

.nav-menu-title {
  margin: 0 0 4px;
  padding: 0 10px 4px;
  color: var(--red);
  font-size: 12px;
  font-weight: 900;
  line-height: 1.3;
}

.nav-menu a {
  display: grid;
  gap: 2px;
  padding: 10px;
  border-bottom: 0;
  border-radius: 10px;
}

.nav-menu a:hover,
.nav-menu a:focus-visible {
  border-bottom-color: transparent;
  background: var(--soft);
}

.nav-menu strong {
  color: var(--navy);
  font-size: 14px;
  line-height: 1.25;
}

.nav-menu span {
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
}

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

.nav-cta, .button, .contact-form button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  border: 0;
  border-radius: 999px;
  font-weight: 900;
}

.nav-cta {
  padding: 0 18px;
  color: #fff;
  background: var(--navy);
  transition: transform 200ms var(--ease), background-color 200ms ease, box-shadow 200ms ease;
}

.nav-cta:hover, .nav-cta:focus-visible { background: var(--red); }

.lang-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  padding: 0 10px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--navy);
  background: #fff;
  font: inherit;
  font-size: 13px;
  font-weight: 900;
  line-height: 1;
  cursor: pointer;
  transition: border-color 180ms ease, background-color 180ms ease, box-shadow 180ms ease, transform 180ms var(--ease);
}

.lang-toggle:hover,
.lang-toggle:focus-visible {
  border-color: rgba(201, 43, 50, 0.32);
  background: var(--soft);
}

.lang-option {
  min-width: 18px;
  opacity: 0.45;
  text-align: center;
}

.lang-option.is-active {
  color: var(--red);
  opacity: 1;
}

.lang-divider {
  color: var(--muted);
  opacity: 0.5;
}

.menu-btn {
  position: relative;
  display: none;
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 0;
  background: transparent;
}

.menu-btn span {
  position: absolute;
  left: 50%;
  top: 50%;
  display: block;
  width: 20px;
  height: 2px;
  margin: 0;
  border-radius: 999px;
  background: var(--navy);
  transform: translate(-50%, -50%);
  transition: transform 200ms var(--ease), opacity 160ms ease, width 160ms ease;
}

.menu-btn span:nth-child(1) {
  transform: translate(-50%, -50%) translateY(-6px);
}

.menu-btn span:nth-child(3) {
  transform: translate(-50%, -50%) translateY(6px);
}

.menu-btn[aria-expanded="true"] span:nth-child(1) {
  transform: translate(-50%, -50%) rotate(45deg);
}

.menu-btn[aria-expanded="true"] span:nth-child(2) {
  width: 0;
  opacity: 0;
  transform: translate(-50%, -50%) scaleX(0);
}

.menu-btn[aria-expanded="true"] span:nth-child(3) {
  transform: translate(-50%, -50%) rotate(-45deg);
}

.mobile-nav {
  position: fixed;
  top: 78px;
  left: 0;
  right: 0;
  z-index: 25;
  display: grid;
  align-content: start;
  padding: 10px max(18px, env(safe-area-inset-left)) 18px max(18px, env(safe-area-inset-right));
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  border-radius: 0;
  background: #fff;
  box-shadow: 0 18px 42px rgba(17, 25, 71, 0.14);
  height: calc(100svh - 78px);
  max-height: calc(100svh - 78px);
  overflow-y: auto;
  overscroll-behavior: contain;
  -webkit-overflow-scrolling: touch;
  opacity: 0;
  pointer-events: none;
  transform: translateY(-14px);
  transform-origin: top center;
  visibility: hidden;
  transition: opacity 180ms ease, transform 220ms var(--ease), visibility 0s linear 220ms;
  will-change: opacity, transform;
}

.mobile-nav.is-open {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
  visibility: visible;
  transition-delay: 0s;
}

.mobile-nav > * {
  opacity: 0;
  transform: translateY(-6px);
}

.mobile-nav.is-open > * {
  animation: mobileNavItemIn 260ms var(--ease) forwards;
}

.mobile-nav.is-open > *:nth-child(2) { animation-delay: 35ms; }
.mobile-nav.is-open > *:nth-child(3) { animation-delay: 70ms; }
.mobile-nav.is-open > *:nth-child(4) { animation-delay: 105ms; }
.mobile-nav.is-open > *:nth-child(5) { animation-delay: 140ms; }
.mobile-nav.is-open > *:nth-child(6) { animation-delay: 175ms; }
.mobile-nav.is-open > *:nth-child(7) { animation-delay: 210ms; }

@keyframes mobileNavItemIn {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.mobile-nav a { padding: 13px 12px; border-radius: 10px; color: var(--navy); font-weight: 900; }
.mobile-nav a:hover { background: var(--soft); }

.mobile-nav-services {
  display: grid;
  grid-template-columns: 1fr;
  gap: 8px;
  padding: 0 0 8px;
}

.mobile-nav-services > span {
  grid-column: 1 / -1;
  padding: 10px 4px 1px;
  color: var(--red);
  font-size: 12px;
  font-weight: 900;
  line-height: 1.3;
}

.mobile-nav-service-group {
  overflow: hidden;
  border-radius: 12px;
  background: #fff;
}

.mobile-nav-service-toggle {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  width: 100%;
  min-height: 48px;
  padding: 12px;
  border: 0;
  color: var(--red);
  background: #fff;
  font: inherit;
  font-size: 14px;
  font-weight: 900;
  text-align: left;
}

.mobile-nav-service-toggle i {
  width: 10px;
  height: 10px;
  flex: 0 0 auto;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(45deg);
  transition: transform 180ms var(--ease);
}

.mobile-nav-service-toggle:hover,
.mobile-nav-service-toggle:focus-visible {
  background: #fff7e8;
}

.mobile-nav-service-group.is-open .mobile-nav-service-toggle i {
  transform: rotate(225deg);
}

.mobile-nav-service-panel {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 6px;
  padding: 0 8px 8px;
}

.mobile-nav-service-panel[hidden] {
  display: none;
}

.mobile-nav .mobile-nav-services a {
  padding: 10px;
  color: var(--muted);
  background: var(--soft);
  font-size: 13px;
  line-height: 1.25;
}

.mobile-nav .mobile-nav-services a:hover,
.mobile-nav .mobile-nav-services a:focus-visible {
  color: var(--navy);
  background: #fff7e8;
}

.hero {
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  min-height: clamp(560px, 70vh, 760px);
  padding: clamp(58px, 7vw, 96px) 0 clamp(34px, 4vw, 48px);
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.98) 0%, rgba(255, 255, 255, 0.92) 45%, rgba(255, 255, 255, 0.56) 72%, rgba(255, 255, 255, 0.18) 100%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.12), rgba(17, 25, 71, 0.16)),
    url("assets/hero-skyline.webp");
  background-position: center;
  background-size: cover;
}

.hero::after {
  position: absolute;
  inset: auto 0 0;
  height: 1px;
  background: var(--line);
  content: "";
}

.hero-grid {
  position: relative;
  z-index: 1;
}

.hero-copy {
  display: grid;
  grid-template-columns: minmax(0, 680px) minmax(260px, 330px);
  grid-template-areas:
    "eyebrow stats"
    "title stats"
    "lead stats"
    "actions stats";
  column-gap: clamp(34px, 6vw, 92px);
  align-items: center;
  max-width: 1100px;
}

.hero-copy > .eyebrow { grid-area: eyebrow; }
.hero-copy > h1 { grid-area: title; }
.hero-copy > .lead { grid-area: lead; }
.hero-copy > .hero-actions { grid-area: actions; align-self: start; }

.eyebrow {
  margin: 0 0 12px;
  color: var(--red);
  font-size: 13px;
  font-weight: 900;
}

h1, h2, h3, p { margin-top: 0; }
h1, h2, h3 { color: var(--navy); letter-spacing: 0; }

h1 {
  max-width: 720px;
  margin-bottom: 22px;
  font-size: clamp(42px, 5vw, 68px);
  line-height: 1.12;
}

h2 {
  margin-bottom: 14px;
  font-size: clamp(30px, 3.8vw, 50px);
  line-height: 1.18;
}

h3 { margin-bottom: 10px; font-size: 22px; line-height: 1.32; }

.lead {
  max-width: 660px;
  margin-bottom: 28px;
  color: var(--muted);
  font-size: clamp(17px, 1.8vw, 20px);
}

.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; }

.button {
  min-width: 160px;
  padding: 0 20px;
  transition: transform 200ms var(--ease), box-shadow 200ms ease, border-color 200ms ease, background-color 200ms ease;
}
.button.primary { color: #fff; background: var(--red); }
.button.primary:hover, .button.primary:focus-visible { background: var(--red-dark); }
.button.secondary { color: var(--navy); background: #fff; border: 1px solid var(--line); }
.button.secondary:hover, .button.secondary:focus-visible { border-color: var(--navy); }
.button.wechat-cta {
  gap: 9px;
  min-width: 178px;
  padding-inline: 22px;
  color: #fff;
  background: #07c160;
  box-shadow: 0 14px 28px rgba(7, 193, 96, 0.24);
}
.nav-cta::before,
.button.wechat-cta::before,
.floating-wechat-cta::before {
  display: block;
  width: var(--wechat-icon-size, 19px);
  height: var(--wechat-icon-size, 19px);
  flex: 0 0 var(--wechat-icon-size, 19px);
  background: currentColor;
  content: "";
  -webkit-mask: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M9.3 4C5.3 4 2 6.55 2 9.72c0 1.82 1.08 3.43 2.78 4.48l-.64 2.05 2.38-1.14c.86.22 1.8.34 2.78.34 4.03 0 7.3-2.56 7.3-5.73S13.33 4 9.3 4Zm-2.2 4.84a.86.86 0 1 1 0-1.72.86.86 0 0 1 0 1.72Zm4.36 0a.86.86 0 1 1 0-1.72.86.86 0 0 1 0 1.72Z'/%3E%3Cpath d='M14.9 10.35c3.47 0 6.1 2.14 6.1 4.82 0 1.55-.92 2.94-2.36 3.82l.54 1.72-2.02-.96c-.7.16-1.45.25-2.26.25-3.47 0-6.1-2.15-6.1-4.83s2.63-4.82 6.1-4.82Zm-1.96 4.08a.74.74 0 1 0 0-1.48.74.74 0 0 0 0 1.48Zm3.84 0a.74.74 0 1 0 0-1.48.74.74 0 0 0 0 1.48Z'/%3E%3C/svg%3E") center / contain no-repeat;
  mask: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M9.3 4C5.3 4 2 6.55 2 9.72c0 1.82 1.08 3.43 2.78 4.48l-.64 2.05 2.38-1.14c.86.22 1.8.34 2.78.34 4.03 0 7.3-2.56 7.3-5.73S13.33 4 9.3 4Zm-2.2 4.84a.86.86 0 1 1 0-1.72.86.86 0 0 1 0 1.72Zm4.36 0a.86.86 0 1 1 0-1.72.86.86 0 0 1 0 1.72Z'/%3E%3Cpath d='M14.9 10.35c3.47 0 6.1 2.14 6.1 4.82 0 1.55-.92 2.94-2.36 3.82l.54 1.72-2.02-.96c-.7.16-1.45.25-2.26.25-3.47 0-6.1-2.15-6.1-4.83s2.63-4.82 6.1-4.82Zm-1.96 4.08a.74.74 0 1 0 0-1.48.74.74 0 0 0 0 1.48Zm3.84 0a.74.74 0 1 0 0-1.48.74.74 0 0 0 0 1.48Z'/%3E%3C/svg%3E") center / contain no-repeat;
}

.nav-cta::before {
  display: none;
}
.button.wechat-cta:hover,
.button.wechat-cta:focus-visible {
  background: #06ad56;
  box-shadow: 0 16px 32px rgba(7, 193, 96, 0.3);
}

.floating-wechat-cta {
  --wechat-icon-size: 22px;
  position: fixed;
  right: max(18px, env(safe-area-inset-right));
  bottom: max(18px, env(safe-area-inset-bottom));
  z-index: 50;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 54px;
  padding: 0 18px;
  border-radius: 999px;
  color: #fff;
  background: #07c160;
  box-shadow: 0 18px 38px rgba(7, 193, 96, 0.32);
  font-size: 15px;
  font-weight: 900;
  line-height: 1;
  transition: transform 200ms var(--ease), background-color 200ms ease, box-shadow 200ms ease;
}

.floating-wechat-cta span {
  display: inline-block;
  line-height: 1;
}

.floating-wechat-cta:hover,
.floating-wechat-cta:focus-visible {
  color: #fff;
  background: #06ad56;
  transform: translateY(-2px);
  box-shadow: 0 20px 44px rgba(7, 193, 96, 0.38);
}

.proof-strip {
  display: none;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 30px;
}

.proof-strip span {
  padding: 8px 12px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--navy);
  background: rgba(255, 255, 255, 0.72);
  font-size: 14px;
  font-weight: 800;
  transition: border-color 180ms ease, background-color 180ms ease, transform 180ms var(--ease);
}

.success-highlight {
  grid-area: stats;
  justify-self: end;
  width: min(330px, 100%);
  margin-top: 0;
  padding: 18px;
  border-radius: 18px;
  color: #fff;
  background:
    linear-gradient(135deg, rgba(201, 43, 50, 0.16), transparent 36%),
    linear-gradient(135deg, var(--navy) 0%, var(--blue) 100%);
  box-shadow: 0 20px 48px rgba(17, 25, 71, 0.2);
  transition: transform 260ms var(--ease), box-shadow 260ms ease;
}

.success-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  grid-template-areas:
    "kicker rate"
    "number number"
    "label label";
  align-items: center;
  gap: 8px 10px;
}

.success-kicker,
.success-label {
  color: rgba(255, 255, 255, 0.92);
  font-size: 14px;
  font-weight: 900;
  line-height: 1.16;
  white-space: nowrap;
}

.success-kicker {
  grid-area: kicker;
  line-height: 1.06;
}

.success-kicker br { display: none; }

.success-label {
  grid-area: label;
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.success-number {
  grid-area: number;
  color: #fff;
  font-size: clamp(44px, 4.2vw, 56px);
  font-weight: 900;
  line-height: 1;
  white-space: nowrap;
}

.success-rate {
  grid-area: rate;
  justify-self: end;
  margin-left: 0;
  padding: 6px 10px 7px;
  border-radius: 999px;
  color: var(--red);
  background: #fff;
  font-size: 12px;
  font-weight: 900;
  line-height: 1;
  white-space: nowrap;
}

.success-rate strong { font-size: 1.18em; }

.success-highlight p {
  margin: 8px 0 0;
  color: rgba(255, 255, 255, 0.84);
  font-size: 11px;
  font-weight: 800;
  line-height: 1.55;
}

.services, .routes, .process, .investment, .insights, .contact { padding: clamp(46px, 6vw, 76px) 0; }

.section-head {
  max-width: 760px;
  margin-bottom: 24px;
}

.section-head.center { margin-inline: auto; text-align: center; }
.section-head p:not(.eyebrow), .routes p:not(.eyebrow), .investment p, .contact p { color: var(--muted); }

.service-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.service-grid a {
  min-height: 236px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: #fff;
  transition: transform 220ms var(--ease), box-shadow 220ms var(--ease), border-color 220ms var(--ease);
}

.service-grid a:hover, .service-grid a:focus-visible {
  transform: translateY(-4px);
  border-color: rgba(201, 43, 50, 0.32);
  box-shadow: var(--shadow);
}

.service-grid span {
  display: inline-flex;
  margin-bottom: 36px;
  color: var(--red);
  font-weight: 900;
}

.service-grid p { margin-bottom: 0; color: var(--muted); }

.service-routes { min-width: 0; }

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

.route-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(22px, 3vw, 34px);
  align-items: start;
}

.routes .section-head {
  max-width: 920px;
}

.comparison-shell { min-width: 0; }

.route-card-rail {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  overflow: visible;
  padding: 0;
  margin: 0;
  scroll-snap-type: none;
}

.route-card-rail:focus-visible { outline-offset: 4px; }

.route-card-rail::-webkit-scrollbar { height: 8px; }
.route-card-rail::-webkit-scrollbar-track { background: #e8edf5; border-radius: 999px; }
.route-card-rail::-webkit-scrollbar-thumb { background: rgba(17, 25, 71, 0.34); border-radius: 999px; }

.route-card {
  position: relative;
  display: flex;
  min-height: 354px;
  flex-direction: column;
  overflow: visible;
  scroll-snap-align: start;
  padding: 30px 22px 22px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 16px 38px rgba(17, 25, 71, 0.08);
}

.route-card.js-card-link { cursor: pointer; }

.route-card::before {
  position: absolute;
  top: 16px;
  left: 22px;
  width: 42px;
  height: 4px;
  border-radius: 999px;
  background: var(--red);
  content: "";
  transition: width 260ms var(--ease), background-color 260ms ease;
}

.route-badge {
  align-self: flex-start;
  padding: 5px 10px 6px;
  border: 1px solid rgba(201, 43, 50, 0.2);
  border-radius: 999px;
  color: var(--red);
  background: #fff6f6;
  font-size: 12px;
  font-weight: 900;
  transition: color 200ms ease, background-color 200ms ease, border-color 200ms ease;
}

.route-card h3 {
  margin: 16px 0 8px;
  font-size: 23px;
}

.route-card p {
  margin-bottom: 18px;
  color: var(--muted);
}

.route-card dl {
  display: grid;
  gap: 10px;
  margin: 0 0 18px;
}

.route-card dl div {
  padding: 10px 12px;
  border-radius: 12px;
  background: #f8fafc;
  transition: background-color 200ms ease;
}

.route-card dt {
  color: var(--navy);
  font-size: 12px;
  font-weight: 900;
}

.route-card dd {
  margin: 3px 0 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.55;
}

.route-card a {
  position: relative;
  display: inline-flex;
  align-items: center;
  align-self: flex-start;
  margin-top: auto;
  color: var(--red);
  font-weight: 900;
  text-decoration: underline;
  text-decoration-thickness: 2px;
  text-underline-offset: 4px;
  transition: color 180ms ease, transform 200ms var(--ease);
}

.route-card a::after {
  width: 18px;
  height: 1px;
  margin-left: 8px;
  background: currentColor;
  content: "";
  transform: scaleX(0.55);
  transform-origin: left center;
  transition: transform 200ms var(--ease);
}

.comparison-scroll {
  overflow-x: auto;
  overflow-y: hidden;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 18px 44px rgba(17, 25, 71, 0.08);
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;
  transition: border-color 220ms ease, box-shadow 220ms ease;
}

.comparison-scroll:focus-visible { outline-offset: 4px; }
.comparison-scroll::-webkit-scrollbar { height: 8px; }
.comparison-scroll::-webkit-scrollbar-track { background: #e8edf5; border-radius: 999px; }
.comparison-scroll::-webkit-scrollbar-thumb { background: rgba(17, 25, 71, 0.34); border-radius: 999px; }

.comparison-table {
  width: 100%;
  min-width: 1480px;
  border-collapse: separate;
  border-spacing: 0;
  text-align: left;
}

.comparison-table th,
.comparison-table td {
  padding: 17px 18px;
  border-bottom: 1px solid var(--line);
  vertical-align: top;
}

.comparison-table thead th {
  color: #fff;
  background: var(--navy);
  font-size: 15px;
  font-weight: 900;
  line-height: 1.4;
}

.comparison-table thead th:first-child { border-top-left-radius: 16px; }
.comparison-table thead th:last-child { border-top-right-radius: 16px; }

.comparison-table tbody th {
  position: sticky;
  left: 0;
  z-index: 1;
  width: 132px;
  min-width: 132px;
  color: var(--navy);
  background: #fff7e8;
  font-weight: 900;
  white-space: nowrap;
  transition: background-color 180ms ease, color 180ms ease;
}

.comparison-table tbody td {
  min-width: 245px;
  color: var(--muted);
  background: #fff;
  transition: background-color 180ms ease, color 180ms ease;
}

.comparison-table tbody tr:last-child th,
.comparison-table tbody tr:last-child td { border-bottom: 0; }

.comparison-table strong { color: var(--navy); }

.comparison-note {
  display: block;
  margin-top: 5px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.55;
}

.scroll-hint {
  display: none;
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 14px;
  font-weight: 800;
}

.support-services {
  margin-top: clamp(24px, 4vw, 42px);
  padding-top: clamp(22px, 3vw, 32px);
  border-top: 1px solid var(--line);
}

.support-services-head {
  display: grid;
  grid-template-columns: minmax(260px, 0.9fr) minmax(0, 1fr);
  gap: clamp(16px, 3vw, 42px);
  align-items: end;
  margin-bottom: 18px;
}

.support-services-head .eyebrow,
.support-services-head h3 {
  grid-column: 1;
}

.support-services-head h3 {
  margin: 0;
  color: var(--navy);
  font-size: clamp(24px, 2.8vw, 36px);
  line-height: 1.18;
}

.support-services-head p:not(.eyebrow) {
  grid-column: 2;
  grid-row: 2;
  align-self: start;
  margin: 0;
  color: var(--muted);
}

.support-service-layout {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(18px, 3vw, 44px);
}

.support-service-group {
  min-width: 0;
}

.support-service-group h4 {
  margin: 0;
  padding: 12px 0;
  border-top: 3px solid var(--navy);
  color: var(--navy);
  font-size: 18px;
}

.support-service-list {
  border-top: 1px solid var(--line);
}

.support-service-link {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto 12px;
  gap: 14px;
  align-items: center;
  padding: 15px 0;
  border-bottom: 1px solid var(--line);
  color: var(--navy);
  transition: color 180ms ease, padding-left 200ms var(--ease), border-color 180ms ease;
}

.support-service-link::after {
  width: 9px;
  height: 9px;
  border-top: 2px solid var(--red);
  border-right: 2px solid var(--red);
  transform: rotate(45deg);
  content: "";
}

.support-service-link span {
  font-size: 16px;
  font-weight: 900;
  line-height: 1.35;
}

.support-service-link small {
  justify-self: end;
  color: var(--muted);
  font-size: 12px;
  font-weight: 900;
  white-space: nowrap;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(18px, 3vw, 34px);
  margin: 0;
  padding: 0;
  border-top: 2px solid var(--line);
  list-style: none;
}

.process-grid li {
  position: relative;
  min-height: 0;
  padding: 18px 0 0;
  background: transparent;
  transition: transform 220ms var(--ease), color 220ms ease;
}

.process-grid li::before {
  position: absolute;
  top: -7px;
  left: 0;
  width: 12px;
  height: 12px;
  border: 3px solid #fff;
  border-radius: 999px;
  background: var(--red);
  box-shadow: 0 0 0 2px var(--red);
  content: "";
  transition: transform 220ms var(--ease), background-color 220ms ease, box-shadow 220ms ease;
}

.process-grid span {
  display: inline-flex;
  margin-bottom: 8px;
  color: var(--red);
  font-size: 13px;
  font-weight: 900;
}

.process-grid strong {
  display: block;
  margin-bottom: 4px;
  color: var(--navy);
  font-size: 18px;
  line-height: 1.3;
}

.process-grid p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.55;
}

.process-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-top: 30px;
}

.investment {
  position: relative;
  overflow: hidden;
  color: #fff;
  background:
    linear-gradient(90deg, rgba(8, 15, 43, 0.94) 0%, rgba(17, 25, 71, 0.82) 43%, rgba(17, 25, 71, 0.36) 100%),
    url("assets/hero-investment.webp");
  background-position: center;
  background-size: cover;
}

.investment::after {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(8, 15, 43, 0.12));
  content: "";
}

.investment-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 680px);
  min-height: clamp(360px, 46vw, 520px);
  align-items: center;
  justify-content: start;
}

.investment h2, .investment .eyebrow { color: #fff; }
.investment p { max-width: 620px; color: rgba(255, 255, 255, 0.82); }

.asset-tags { display: flex; flex-wrap: wrap; gap: 9px; margin-top: 24px; }
.asset-tags span {
  padding: 8px 12px;
  border-radius: 999px;
  color: #fff;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.28);
  font-weight: 800;
  backdrop-filter: blur(10px);
  transition: transform 180ms var(--ease), background-color 180ms ease, color 180ms ease, border-color 180ms ease;
}

.investment-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 26px;
}

.service-page-hero {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  color: #fff;
  padding: clamp(42px, 4.6vw, 60px) 0 clamp(32px, 3.8vw, 48px);
  background: var(--navy);
}

.service-page-hero::before,
.service-page-hero::after {
  position: absolute;
  content: "";
  pointer-events: none;
}

.service-page-hero::before {
  inset: -7%;
  z-index: -2;
  background: var(--detail-image, url("assets/hero-skyline.webp")) center / cover;
  transform: scale(1.1);
  animation: serviceHeroImage 1100ms cubic-bezier(.22, .61, .36, 1) both;
}

.service-page-hero::after {
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(8, 15, 43, 0.98) 0%, rgba(17, 25, 71, 0.93) 54%, rgba(17, 25, 71, 0.76) 100%),
    radial-gradient(circle at 12% 18%, rgba(201, 43, 50, 0.2), transparent 28%);
}

.service-page-hero > .wrap {
  position: relative;
  z-index: 1;
}

.service-page-hero .breadcrumb,
.service-page-hero .eyebrow,
.service-page-hero h1,
.service-page-hero .lead,
.service-page-hero .hero-actions,
.service-page-hero .service-meta {
  animation: serviceHeroRise 700ms var(--ease) both;
}

.service-page-hero .eyebrow { animation-delay: 70ms; }
.service-page-hero h1 { animation-delay: 140ms; }
.service-page-hero .lead { animation-delay: 220ms; }
.service-page-hero .hero-actions { animation-delay: 300ms; }
.service-page-hero .service-meta { animation-delay: 380ms; }

@keyframes serviceHeroImage {
  from {
    filter: saturate(0.86) contrast(0.94);
    transform: scale(1.14) translateX(1.4%);
  }
  to {
    filter: saturate(1.04) contrast(1);
    transform: scale(1.04) translateX(0);
  }
}

@keyframes serviceHeroRise {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.service-page-hero h1 {
  max-width: 760px;
  color: #fff;
  font-size: clamp(40px, 4.7vw, 64px);
}

.service-page-hero .lead {
  max-width: 680px;
  margin-bottom: 22px;
  color: rgba(255, 255, 255, 0.84);
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 18px;
  color: rgba(255, 255, 255, 0.76);
  font-size: 13px;
  font-weight: 800;
}

.breadcrumb a { color: #fff; }

.service-meta {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  margin-top: 24px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.18);
  overflow: hidden;
  backdrop-filter: blur(14px);
}

.service-meta div {
  padding: 18px;
  background: rgba(8, 15, 43, 0.22);
  transition: background-color 220ms ease, transform 220ms var(--ease);
}

.service-meta dt {
  margin-bottom: 5px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 12px;
  font-weight: 900;
}

.service-meta dd {
  margin: 0;
  color: #fff;
  font-weight: 900;
  line-height: 1.45;
}

.service-detail { padding: clamp(32px, 4.4vw, 50px) 0; }

.detail-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  align-items: start;
}

.detail-grid > div {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(24px, 5vw, 68px);
}

.detail-panel {
  padding: 0 0 24px;
  border: 0;
  border-bottom: 1px solid var(--line);
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.detail-panel + .detail-panel {
  margin-top: 0;
  padding-top: 0;
}

.detail-panel h2,
.detail-panel h3 {
  margin-bottom: 12px;
  transition: color 180ms ease;
}

.detail-panel p,
.detail-list { color: var(--muted); }

.service-case-proof {
  padding: clamp(34px, 5vw, 68px) 0;
  border-top: 1px solid var(--line);
  background:
    linear-gradient(180deg, #fff 0%, #f7f9ff 100%);
}

.service-advantages .service-case-proof {
  margin: clamp(24px, 4vw, 52px) 0 clamp(20px, 3vw, 34px);
  padding: clamp(24px, 4vw, 46px) 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: transparent;
}

.case-proof-layout {
  display: grid;
  grid-template-columns: minmax(260px, 0.36fr) minmax(0, 1fr);
  gap: clamp(24px, 5vw, 70px);
  align-items: start;
}

.case-proof-copy {
  position: sticky;
  top: 102px;
}

.case-proof-copy h2 {
  max-width: 520px;
  font-size: clamp(32px, 4.4vw, 56px);
}

.case-proof-copy p:not(.eyebrow) {
  color: var(--muted);
}

.case-proof-note {
  display: inline-flex;
  margin-top: 18px;
  padding-top: 14px;
  border-top: 2px solid var(--red);
  color: var(--navy);
  font-weight: 900;
}

.case-proof-gallery {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.case-proof-item {
  position: relative;
  min-width: 0;
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 18px 42px rgba(17, 25, 71, 0.08);
  transition: transform 220ms var(--ease), box-shadow 220ms ease, border-color 220ms ease;
}

.case-proof-item::after {
  position: absolute;
  inset: auto 18px 0;
  height: 3px;
  border-radius: 999px 999px 0 0;
  background: var(--red);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 240ms var(--ease);
  content: "";
}

.case-proof-item.is-wide {
  grid-column: span 2;
}

.case-proof-item img {
  display: block;
  width: 100%;
  height: clamp(300px, 36vw, 520px);
  padding: 12px;
  object-fit: contain;
  background: #f7f8fc;
  transition: transform 320ms var(--ease), filter 320ms ease;
}

.case-proof-item.is-wide img {
  height: clamp(260px, 28vw, 420px);
}

.case-proof-item figcaption {
  display: grid;
  gap: 4px;
  padding: 16px 18px 18px;
  border-top: 1px solid var(--line);
  transition: background-color 220ms ease;
}

.case-proof-item span {
  color: var(--red);
  font-size: 13px;
  font-weight: 900;
}

.case-proof-item strong {
  color: var(--navy);
  font-size: 19px;
  line-height: 1.35;
}

.case-proof-item small {
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
  line-height: 1.55;
}

.detail-list {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.detail-list li {
  position: relative;
  padding-left: 22px;
}

.detail-list li::before {
  position: absolute;
  left: 0;
  top: 0.72em;
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--red);
  content: "";
}

.service-advantages {
  padding: clamp(34px, 4vw, 50px) 0;
  background: linear-gradient(180deg, #fff 0%, #f8faff 100%);
}

.service-advantages .section-head {
  display: grid;
  grid-template-columns: minmax(280px, 0.9fr) minmax(0, 1fr);
  gap: clamp(18px, 3vw, 44px);
  align-items: center;
  max-width: none;
  margin-bottom: 0;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--line);
}

.service-advantages .section-head .eyebrow,
.service-advantages .section-head h2 {
  grid-column: 1;
}

.service-advantages .section-head p:not(.eyebrow) {
  grid-column: 2;
  grid-row: 1 / span 2;
  align-self: center;
  margin: 0;
  max-width: 620px;
}

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

.advantage-card {
  position: relative;
  min-height: 0;
  padding: clamp(18px, 2.4vw, 26px);
  border: 0;
  border-right: 1px solid var(--line);
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  transition: transform 220ms var(--ease), background-color 220ms ease;
}

.advantage-card::after {
  position: absolute;
  top: 0;
  left: clamp(20px, 3vw, 30px);
  width: 38px;
  height: 3px;
  border-radius: 999px;
  background: var(--red);
  transform: scaleX(0.72);
  transform-origin: left;
  transition: transform 220ms var(--ease), width 220ms var(--ease);
  content: "";
}

.advantage-card:last-child { border-right: 0; }

.advantage-card span {
  display: block;
  margin-bottom: 18px;
  color: var(--red);
  background: transparent;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.08em;
}

.advantage-card h3 {
  margin-bottom: 10px;
  font-size: 22px;
}

.advantage-card p {
  color: var(--muted);
  font-size: 15px;
}

.service-conditions {
  display: grid;
  grid-template-columns: minmax(220px, 0.36fr) minmax(0, 1fr);
  gap: clamp(18px, 3vw, 42px);
  margin: clamp(14px, 2.4vw, 28px) 0 10px;
  padding: clamp(20px, 3vw, 34px) 0;
  border-top: 0;
  border-bottom: 1px solid var(--line);
}

.condition-intro h3 {
  max-width: 420px;
  margin: 0 0 12px;
  font-size: clamp(28px, 4vw, 46px);
  line-height: 1.08;
}

.condition-intro p {
  max-width: 430px;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.75;
}

.condition-content {
  display: grid;
  gap: 0;
}

.condition-block {
  display: grid;
  grid-template-columns: minmax(120px, 0.24fr) minmax(0, 1fr);
  gap: clamp(14px, 2vw, 28px);
  padding: clamp(14px, 2vw, 22px) 0;
  border-top: 1px solid var(--line);
  transition: border-color 220ms ease, transform 220ms var(--ease);
}

.condition-block:first-child { padding-top: 0; border-top: 0; }
.condition-block:last-child { padding-bottom: 0; }

.condition-block h4 {
  margin: 0;
  color: var(--red);
  font-size: 16px;
  line-height: 1.45;
}

.condition-block p {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.75;
}

.condition-block ul,
.condition-points {
  display: grid;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.condition-points {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px 18px;
}

.condition-block li {
  position: relative;
  padding-left: 18px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.62;
}

.condition-block li::before {
  position: absolute;
  top: 0.72em;
  left: 0;
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: var(--red);
  content: "";
}

.condition-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.condition-tags span {
  padding: 7px 11px;
  border: 1px solid rgba(17, 25, 71, 0.12);
  border-radius: 999px;
  color: var(--navy);
  background: #fff;
  font-size: 13px;
  font-weight: 900;
  transition: transform 200ms var(--ease), border-color 200ms ease, color 200ms ease, background-color 200ms ease, box-shadow 200ms ease;
}

.condition-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  min-height: 42px;
  margin-top: 4px;
  padding: 0 18px;
  border-radius: 999px;
  color: #fff;
  background: var(--red);
  font-size: 15px;
  font-weight: 900;
  text-decoration: none;
  transition: transform 200ms var(--ease), background-color 200ms ease;
}

.condition-cta:hover,
.condition-cta:focus-visible {
  background: var(--red-dark);
  transform: translateY(-2px);
}

.service-proof-grid {
  display: grid;
  grid-template-columns: 1fr;
  margin-top: 8px;
}

.service-feature-panel {
  position: relative;
  padding: clamp(16px, 2vw, 22px);
  border: 0;
  border-radius: 0;
  background: transparent;
  transition: transform 220ms var(--ease), background-color 220ms ease;
}

.service-feature-panel.is-dark {
  display: grid;
  grid-template-columns: minmax(150px, 0.32fr) minmax(0, 1fr);
  gap: clamp(14px, 2vw, 26px);
  align-items: start;
  border-left: 4px solid var(--red);
  color: #fff;
  background: linear-gradient(90deg, #111947 0%, #17215e 100%);
}

.service-feature-panel h3 {
  margin-bottom: 0;
  font-size: 21px;
}

.service-feature-panel.is-dark h3,
.service-feature-panel.is-dark li { color: #fff; }

.service-feature-panel ul {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(10px, 1.8vw, 18px);
  margin: 0;
  padding: 0;
  list-style: none;
}

.service-feature-panel li {
  position: relative;
  padding-left: 22px;
  color: var(--muted);
  line-height: 1.58;
}

.service-feature-panel li::before {
  position: absolute;
  top: 0.72em;
  left: 0;
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--red);
  content: "";
}

.service-conditions .condition-block li,
.service-feature-panel li,
.service-detail .detail-list li {
  position: relative;
  display: block;
  list-style: none;
  padding: 13px 16px 13px 44px;
  border: 1px solid rgba(17, 25, 71, 0.09);
  border-radius: 14px;
  color: #26324d;
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 10px 24px rgba(17, 25, 71, 0.045);
  font-size: 15px;
  font-weight: 800;
  line-height: 1.62;
  transition:
    transform 220ms var(--ease),
    border-color 220ms ease,
    box-shadow 220ms ease,
    background-color 220ms ease,
    color 180ms ease;
}

.service-conditions .condition-block li::marker,
.service-feature-panel li::marker,
.service-detail .detail-list li::marker {
  content: "";
  font-size: 0;
}

.service-conditions .condition-block li::before,
.service-feature-panel li::before,
.service-detail .detail-list li::before {
  top: 1.42em;
  left: 18px;
  width: 9px;
  height: 9px;
  box-shadow: 0 0 0 5px rgba(201, 43, 50, 0.1);
  transition: transform 220ms var(--ease), box-shadow 220ms ease, background-color 220ms ease;
}

.service-feature-panel.is-dark li {
  border-color: rgba(255, 255, 255, 0.18);
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
  box-shadow: none;
}

.service-mini-faq {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px 12px;
  margin-top: 12px;
}

.service-mini-faq details {
  border: 1px solid var(--line);
  border-radius: 16px;
  background: #fff;
  box-shadow: 0 10px 24px rgba(17, 25, 71, 0.04);
  transition: border-color 220ms ease, box-shadow 220ms ease, transform 220ms var(--ease), background-color 220ms ease;
}

.service-mini-faq summary {
  position: relative;
  cursor: pointer;
  padding: 16px 48px 16px 18px;
  color: var(--navy);
  font-weight: 900;
  transition: color 180ms ease, padding-left 220ms var(--ease);
}

.service-mini-faq summary::after {
  position: absolute;
  top: 50%;
  right: 18px;
  width: 10px;
  height: 10px;
  border-right: 2px solid var(--red);
  border-bottom: 2px solid var(--red);
  transform: translateY(-65%) rotate(45deg);
  transition: transform 220ms var(--ease);
  content: "";
}

.service-mini-faq details[open] {
  border-color: rgba(201, 43, 50, 0.3);
  background: #fffdfd;
  box-shadow: 0 16px 34px rgba(17, 25, 71, 0.08);
}

.service-mini-faq details[open] summary::after {
  transform: translateY(-35%) rotate(225deg);
}

.service-mini-faq p {
  margin: 0;
  padding: 0 18px 18px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.7;
  animation: serviceFaqOpen 240ms var(--ease) both;
}

@keyframes serviceFaqOpen {
  from {
    opacity: 0;
    transform: translateY(-6px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.condition-tags span:active,
.service-conditions .condition-block li:active,
.service-feature-panel li:active,
.service-detail .detail-list li:active,
.case-proof-item:active,
.service-mini-faq details:active {
  transform: translateY(1px) scale(0.995);
}

.related-services {
  padding: clamp(34px, 4.6vw, 56px) 0;
  background: #fff;
}

.related-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.related-card {
  position: relative;
  padding: 22px 24px 24px;
  border: 0;
  border-right: 1px solid var(--line);
  border-radius: 0;
  background: transparent;
  transition: transform 220ms var(--ease), background-color 220ms ease;
}

.related-card:last-child { border-right: 0; }

.related-card::after {
  position: absolute;
  right: 18px;
  bottom: 18px;
  width: 26px;
  height: 2px;
  border-radius: 999px;
  background: var(--red);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 220ms var(--ease);
  content: "";
}

.related-card span {
  color: var(--red);
  font-size: 12px;
  font-weight: 900;
}

.related-card h3 {
  margin: 10px 0 6px;
  font-size: 20px;
}

.related-card p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 14px;
}

.insight-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  max-width: none;
}

.insight-head > div { max-width: 760px; }

.blog-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 22px;
}

.blog-filters button {
  min-height: 38px;
  padding: 0 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--navy);
  background: #fff;
  font-size: 14px;
  font-weight: 900;
  transition: color 180ms ease, background-color 180ms ease, border-color 180ms ease, transform 180ms var(--ease);
}

.blog-filters button.is-active {
  color: #fff;
  border-color: var(--navy);
  background: var(--navy);
}

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

.insight-grid article,
.blog-card {
  min-height: 230px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: #fff;
  overflow: hidden;
  transition: transform 220ms var(--ease), border-color 220ms ease, box-shadow 220ms ease;
}

.blog-card a {
  display: grid;
  min-height: 100%;
  padding: 24px;
}

.insight-grid span,
.blog-card span {
  color: var(--red);
  font-size: 13px;
  font-weight: 900;
}

.blog-card-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 4px 10px;
  margin-top: 4px;
}

.blog-card time {
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
}

.insight-grid h3,
.blog-card h3 {
  margin-top: 18px;
}

.insight-grid p,
.blog-card p {
  margin-bottom: 18px;
  color: var(--muted);
}

.blog-card strong {
  align-self: end;
  margin-top: auto;
  color: var(--red);
  font-size: 14px;
  text-decoration: underline;
  text-decoration-thickness: 2px;
  text-underline-offset: 4px;
}

.blog-actions {
  display: flex;
  justify-content: center;
  margin-top: 26px;
}

.blog-page-hero {
  padding: clamp(46px, 5.4vw, 72px) 0 clamp(34px, 4.2vw, 54px);
  color: #fff;
  background:
    linear-gradient(90deg, rgba(8, 15, 43, 0.96) 0%, rgba(17, 25, 71, 0.82) 62%, rgba(17, 25, 71, 0.48) 100%),
    url("assets/hero-skyline.webp");
  background-position: center;
  background-size: cover;
}

.blog-page-hero h1,
.blog-page-hero .eyebrow { color: #fff; }

.blog-page-hero .lead { color: rgba(255, 255, 255, 0.82); }

.blog-page-section {
  padding: clamp(38px, 5vw, 64px) 0;
  background: var(--soft);
}

.blog-page-section .blog-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.article-page-hero {
  padding: clamp(42px, 5.2vw, 68px) 0 clamp(30px, 4vw, 46px);
  color: #fff;
  background:
    linear-gradient(90deg, rgba(8, 15, 43, 0.96) 0%, rgba(17, 25, 71, 0.86) 62%, rgba(17, 25, 71, 0.5) 100%),
    url("assets/hero-skyline.webp");
  background-position: center;
  background-size: cover;
}

.article-page-hero h1 {
  max-width: 960px;
  margin-top: 14px;
  color: #fff;
  font-size: clamp(38px, 6vw, 74px);
}

.article-page-hero .lead {
  max-width: 760px;
  color: rgba(255, 255, 255, 0.82);
}

.article-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: -8px;
}

.article-meta-line {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
  margin-top: 24px;
}

.article-meta-line span,
.article-meta-line time {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 13px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.11);
  color: #fff;
  font-size: 13px;
  font-weight: 900;
}

.article-meta-line [hidden] {
  display: none !important;
}

.article-page-section {
  padding: clamp(36px, 5vw, 64px) 0;
  background: #fff;
}

.about-hero {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding: clamp(58px, 7vw, 96px) 0 clamp(42px, 5vw, 68px);
  color: #fff;
  background: var(--navy);
}

.about-hero::before,
.about-hero::after {
  position: absolute;
  inset: 0;
  content: "";
  pointer-events: none;
}

.about-hero::before {
  z-index: -2;
  background: url("assets/hero-skyline.webp") center / cover;
  transform: scale(1.04);
}

.about-hero::after {
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(8, 15, 43, 0.98) 0%, rgba(17, 25, 71, 0.9) 56%, rgba(17, 25, 71, 0.72) 100%),
    radial-gradient(circle at 18% 20%, rgba(201, 43, 50, 0.22), transparent 32%);
}

.about-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.38fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: end;
}

.about-hero h1 {
  max-width: 780px;
  color: #fff;
  font-size: clamp(46px, 6.5vw, 84px);
}

.about-hero .lead {
  max-width: 760px;
  color: rgba(255, 255, 255, 0.84);
}

.about-proof-panel {
  display: grid;
  gap: 12px;
  padding: clamp(22px, 3vw, 34px);
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(14px);
  box-shadow: 0 22px 54px rgba(0, 0, 0, 0.2);
}

.about-proof-panel span {
  color: var(--red);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.14em;
}

.about-proof-panel strong {
  color: #fff;
  font-size: clamp(24px, 3vw, 34px);
  line-height: 1.15;
}

.about-proof-panel p {
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
}

.about-page-section {
  padding: clamp(42px, 5.5vw, 76px) 0;
  background: linear-gradient(180deg, #fff 0%, #f8faff 100%);
}

.about-intro-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.about-statement {
  padding: clamp(24px, 3.8vw, 48px);
  border-right: 1px solid var(--line);
  background: #fff;
}

.about-statement:last-child { border-right: 0; }

.about-statement.is-dark {
  color: #fff;
  background: linear-gradient(135deg, var(--navy) 0%, #17215e 100%);
}

.about-statement h2 {
  margin-bottom: 16px;
  font-size: clamp(30px, 4vw, 48px);
}

.about-statement.is-dark h2 { color: #fff; }

.about-statement p:not(.eyebrow) { color: var(--muted); }

.about-statement.is-dark p:not(.eyebrow) { color: rgba(255, 255, 255, 0.78); }

.about-metric-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin: clamp(24px, 4vw, 44px) 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.about-metric-strip div {
  display: grid;
  gap: 6px;
  padding: clamp(18px, 2.4vw, 28px);
  border-right: 1px solid var(--line);
}

.about-metric-strip div:last-child { border-right: 0; }

.about-metric-strip strong {
  color: var(--navy);
  font-size: clamp(28px, 4vw, 46px);
  line-height: 1;
}

.about-metric-strip span {
  color: var(--muted);
  font-weight: 900;
}

.about-service-method {
  padding-top: clamp(20px, 3vw, 34px);
}

.about-method-list {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
  border-top: 2px solid var(--line);
}

.about-method-list div {
  position: relative;
  padding: 24px 20px 0 0;
}

.about-method-list div::before {
  position: absolute;
  top: -8px;
  left: 0;
  width: 14px;
  height: 14px;
  border: 4px solid #fff;
  border-radius: 999px;
  background: var(--red);
  box-shadow: 0 0 0 2px var(--red);
  content: "";
}

.about-method-list span {
  display: block;
  margin-bottom: 12px;
  color: var(--red);
  font-size: 13px;
  font-weight: 900;
}

.about-method-list h3 {
  margin-bottom: 8px;
  font-size: 22px;
}

.about-method-list p {
  color: var(--muted);
  font-size: 15px;
}

.about-scope {
  margin-top: clamp(30px, 5vw, 58px);
  padding-top: clamp(26px, 4vw, 46px);
  border-top: 1px solid var(--line);
}

.about-scope-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.about-scope-list a {
  padding: 10px 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--navy);
  background: #fff;
  font-weight: 900;
  transition: color 180ms ease, border-color 180ms ease, transform 200ms var(--ease);
}

.legal-page-section {
  padding: clamp(42px, 5vw, 72px) 0;
  background: #fff;
}

.legal-layout {
  display: grid;
  grid-template-columns: minmax(0, 900px) 260px;
  gap: clamp(28px, 5vw, 70px);
  align-items: start;
}

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

.legal-updated {
  margin: 0 0 28px;
  color: var(--muted);
  font-size: 15px;
  font-weight: 800;
}

.legal-section {
  padding-top: 30px;
  border-top: 1px solid var(--line);
}

.legal-section + .legal-section {
  margin-top: 30px;
}

.legal-section h2 {
  margin: 0 0 14px;
  color: var(--navy);
  font-size: clamp(24px, 3vw, 34px);
  line-height: 1.25;
}

.legal-section h3 {
  margin: 22px 0 10px;
  color: var(--navy);
  font-size: 20px;
  line-height: 1.35;
}

.legal-section p,
.legal-section li {
  color: #26324d;
  font-size: clamp(16px, 1.6vw, 18px);
  line-height: 1.85;
}

.legal-section p {
  margin: 0 0 18px;
}

.legal-section ul,
.legal-section ol {
  display: grid;
  gap: 9px;
  margin: 14px 0 0;
  padding-left: 22px;
}

.legal-section a {
  color: var(--red);
  font-weight: 900;
  text-decoration: underline;
  text-decoration-thickness: 2px;
  text-underline-offset: 4px;
}

.legal-sidebar {
  position: sticky;
  top: 92px;
  display: grid;
  gap: 12px;
  padding-top: 8px;
  border-top: 3px solid var(--red);
}

.legal-sidebar strong {
  color: var(--navy);
  font-size: 16px;
}

.legal-sidebar a {
  width: fit-content;
  color: var(--muted);
  font-size: 14px;
  font-weight: 900;
}

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

.article-content {
  max-width: 860px;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.article-intro-panel {
  display: grid;
  gap: 12px;
  margin-bottom: 34px;
  padding: 4px 0 4px clamp(18px, 2.6vw, 28px);
  border-left: 4px solid var(--red);
  background: transparent;
}

.article-intro-panel strong {
  color: var(--red);
  font-size: 14px;
  font-weight: 900;
}

.article-keywords {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.article-keywords a {
  display: inline-flex;
  min-height: 30px;
  align-items: center;
  padding: 0 11px;
  border: 1px solid rgba(17, 25, 71, 0.08);
  border-radius: 999px;
  color: var(--navy);
  background: #fff;
  font-size: 12px;
  font-weight: 900;
  transition: color 180ms ease, border-color 180ms ease, background-color 180ms ease, transform 180ms var(--ease);
}

.article-section {
  padding-top: 32px;
  border-top: 1px solid var(--line);
}

.article-section + .article-section {
  margin-top: 32px;
}

.article-content h2 {
  margin: 0 0 14px;
  color: var(--navy);
  font-size: clamp(24px, 3vw, 34px);
  line-height: 1.25;
}

.article-content p {
  margin: 0 0 22px;
  color: #26324d;
  font-size: clamp(17px, 1.8vw, 20px);
  line-height: 1.9;
}

.article-content p a,
.article-content li a,
.article-faq p a {
  color: var(--red);
  font-weight: 800;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-decoration-color: rgba(201, 43, 50, 0.42);
  text-underline-offset: 3px;
  transition: color 180ms ease, text-decoration-color 180ms ease;
}

.article-content p a:hover,
.article-content li a:hover,
.article-faq p a:hover,
.article-content p a:focus-visible,
.article-content li a:focus-visible,
.article-faq p a:focus-visible {
  color: var(--red-dark);
  text-decoration-color: var(--navy);
}

.article-content p:last-child { margin-bottom: 0; }

.article-content ul {
  display: grid;
  gap: 10px;
  margin: 18px 0 4px;
  padding: clamp(12px, 1.8vw, 18px);
  border-radius: 18px;
  background:
    linear-gradient(135deg, rgba(201, 43, 50, 0.08) 0%, rgba(248, 250, 255, 0.96) 52%, rgba(255, 255, 255, 0.98) 100%);
  box-shadow: 0 16px 34px rgba(17, 25, 71, 0.06);
  list-style: none;
}

.article-content li {
  position: relative;
  padding: 14px 16px 14px 44px;
  border: 1px solid rgba(17, 25, 71, 0.08);
  border-radius: 14px;
  color: #26324d;
  background: rgba(255, 255, 255, 0.86);
  font-size: clamp(16px, 1.7vw, 18px);
  font-weight: 700;
  line-height: 1.65;
}

.article-content li::before {
  content: "";
  position: absolute;
  top: 1.36em;
  left: 18px;
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: var(--red);
  box-shadow: 0 0 0 5px rgba(201, 43, 50, 0.1);
}

.article-faq details {
  border: 0;
  border-top: 1px solid var(--line);
  border-radius: 0;
  background: transparent;
}

.article-faq details + details {
  margin-top: 10px;
}

.article-faq summary {
  cursor: pointer;
  padding: 16px 0;
  color: var(--navy);
  font-size: 17px;
  font-weight: 900;
}

.article-faq details p {
  padding: 0 0 18px;
  font-size: 16px;
}

.article-sidebar {
  display: grid;
  gap: 16px;
  position: sticky;
  top: 92px;
}

.article-side-panel {
  padding: 20px 0;
  border: 0;
  border-top: 1px solid var(--line);
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.article-side-panel h2 {
  margin: 8px 0 10px;
  font-size: 24px;
}

.article-side-panel p {
  color: var(--muted);
  font-size: 15px;
}

.related-article-list {
  display: grid;
  gap: 10px;
}

.related-article-list a {
  display: grid;
  gap: 5px;
  padding: 14px 0;
  border: 0;
  border-top: 1px solid var(--line);
  border-radius: 0;
  background: transparent;
  transition: transform 180ms var(--ease), border-color 180ms ease, background-color 180ms ease;
}

.related-article-list a:first-child {
  border-top: 0;
}

.related-article-list span {
  color: var(--red);
  font-size: 12px;
  font-weight: 900;
}

.related-article-list strong {
  color: var(--navy);
  font-size: 15px;
  line-height: 1.45;
}

.contact {
  color: #fff;
  background: linear-gradient(135deg, var(--navy) 0%, var(--blue) 100%);
}

.contact h2, .contact .eyebrow { color: #fff; }
.contact p { color: rgba(255, 255, 255, 0.78); }

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: clamp(30px, 6vw, 78px);
  align-items: start;
}

.contact-form-stack {
  display: grid;
  gap: 12px;
}

.contact-qr-card {
  position: relative;
  overflow: hidden;
  margin: 0;
  padding: 0;
  border: 0;
  border-radius: 12px;
  background: #fff;
  box-shadow: none;
  transition: transform 220ms var(--ease), box-shadow 220ms ease;
}

.contact-qr-card img {
  display: block;
  width: 100%;
  height: auto;
  margin-top: -1.8%;
  margin-bottom: -5.2%;
  border-radius: 0;
  background: transparent;
}

.contact .contact-form-intro {
  margin: 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 15px;
  font-weight: 800;
  line-height: 1.6;
}

.contact-form {
  display: grid;
  gap: 16px;
  padding: 24px;
  border-radius: 20px;
  color: var(--ink);
  background: #fff;
  box-shadow: var(--shadow);
  transition: transform 240ms var(--ease), box-shadow 240ms ease;
}

.contact-form label {
  display: grid;
  gap: 7px;
  color: var(--navy);
  font-weight: 900;
}

.contact-form select, .contact-form input {
  width: 100%;
  min-height: 46px;
  padding: 0 13px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: #fff;
  transition: border-color 180ms ease, box-shadow 180ms ease;
}

.contact-form button {
  color: #fff;
  background: var(--red);
  transition: transform 200ms var(--ease), background-color 200ms ease, box-shadow 200ms ease;
}

.contact-form button:disabled {
  cursor: default;
  opacity: 0.76;
  transform: none;
}

.contact .contact-form-status {
  min-height: 21px;
  margin: -4px 0 0;
  color: var(--navy);
  font-size: 14px;
  font-weight: 900;
  line-height: 1.5;
}

.contact .contact-form-status.is-error {
  color: var(--red);
}

.footer {
  padding: clamp(30px, 4.5vw, 52px) 0 clamp(18px, 3vw, 30px);
  color: rgba(255, 255, 255, 0.82);
  background: #080f2b;
}

.footer-layout {
  display: grid;
  grid-template-columns: 220px minmax(280px, 1fr) minmax(280px, 360px);
  gap: clamp(24px, 4vw, 54px);
  align-items: start;
}

.footer-brand {
  display: contents;
}

.footer-brand img {
  grid-column: 1;
  grid-row: 1;
  width: 168px;
}

.footer-brand p,
.footer-contact,
.footer-contact a,
.footer-contact span {
  margin: 0;
  color: rgba(255, 255, 255, 0.82);
  font-style: normal;
}

.footer-brand p {
  grid-column: 3;
  grid-row: 2;
  justify-self: end;
  max-width: 360px;
  text-align: right;
  font-size: 13px;
  line-height: 1.7;
}

.footer-contact {
  grid-column: 2;
  grid-row: 1;
  display: grid;
  gap: 7px;
  font-size: clamp(14px, 1.35vw, 16px);
  line-height: 1.66;
}

.footer-contact strong {
  color: #fff;
  font-size: clamp(18px, 2vw, 22px);
  font-style: normal;
  font-weight: 900;
}

.footer-contact a {
  width: fit-content;
  transition: color 180ms ease;
}

.footer-qr {
  grid-column: 3;
  grid-row: 1;
  justify-self: end;
}

.footer-qr img {
  display: block;
  width: min(100%, 360px);
  border-radius: 12px;
}

.footer-legal {
  grid-column: 2;
  grid-row: 2;
  display: flex;
  flex-wrap: wrap;
  gap: 10px 18px;
  align-self: end;
  margin: 0;
}

.footer-legal a {
  color: rgba(255, 255, 255, 0.68);
  font-size: 12px;
  font-weight: 500;
  transition: color 180ms ease;
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition:
    opacity 560ms var(--ease) var(--reveal-delay, 0ms),
    transform 560ms var(--ease) var(--reveal-delay, 0ms),
    border-color 220ms ease,
    box-shadow 220ms ease,
    background-color 220ms ease,
    color 180ms ease;
  will-change: opacity, transform;
}

.reveal.is-visible { opacity: 1; transform: translateY(0); }
.reveal.reveal-done {
  transition:
    transform 220ms var(--ease),
    border-color 220ms ease,
    box-shadow 220ms ease,
    background-color 220ms ease,
    color 180ms ease,
    opacity 180ms ease;
  will-change: auto;
}

:focus-visible { outline: 3px solid rgba(201, 43, 50, 0.32); outline-offset: 3px; }

.route-card:focus-visible,
.route-card:focus-within,
.insight-grid article:focus-within,
.contact-form:focus-within {
  border-color: rgba(201, 43, 50, 0.36);
  box-shadow: var(--hover-shadow);
}

.route-card:focus-visible { outline-offset: 4px; }
.route-card:focus-visible::before,
.route-card:focus-within::before { width: 74px; }

.contact-form select:focus,
.contact-form input:focus {
  border-color: rgba(201, 43, 50, 0.62);
  box-shadow: 0 0 0 3px rgba(201, 43, 50, 0.12);
  outline: 0;
}

@media (hover: hover) and (pointer: fine) {
  .nav-cta:hover,
  .lang-toggle:hover,
  .button:hover,
  .contact-form button:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 22px rgba(17, 25, 71, 0.16);
  }

  .proof-strip span:hover {
    transform: translateY(-2px);
    border-color: rgba(201, 43, 50, 0.28);
    background: rgba(255, 255, 255, 0.9);
  }

  .success-highlight:hover {
    transform: translateY(-3px);
    box-shadow: 0 24px 58px rgba(17, 25, 71, 0.24);
  }

  .route-card:hover {
    transform: translateY(-6px);
    border-color: rgba(201, 43, 50, 0.34);
    box-shadow: var(--hover-shadow);
  }

  .route-card:hover::before { width: 74px; }

  .route-card:hover .route-badge {
    border-color: var(--red);
    color: #fff;
    background: var(--red);
  }

  .route-card:hover dl div { background: #f4f7fb; }

  .route-card:hover a {
    color: var(--navy);
    transform: translateX(2px);
  }

  .route-card:hover a::after { transform: scaleX(1); }

  .support-service-link:hover,
  .support-service-link:focus-visible {
    padding-left: 8px;
    border-bottom-color: rgba(201, 43, 50, 0.28);
    color: var(--red);
  }

  .about-scope-list a:hover,
  .about-scope-list a:focus-visible {
    transform: translateY(-2px);
    border-color: rgba(201, 43, 50, 0.28);
    color: var(--red);
  }

  .comparison-scroll:hover {
    border-color: rgba(17, 25, 71, 0.22);
    box-shadow: var(--hover-shadow);
  }

  .comparison-table tbody tr:hover th {
    color: var(--red);
    background: #fff1d9;
  }

  .comparison-table tbody tr:hover td {
    color: var(--ink);
    background: #fbfcff;
  }

  .process-grid li:hover {
    transform: translateY(-2px);
  }

  .process-grid li:hover::before {
    transform: scale(1.18);
    background: var(--navy);
    box-shadow: 0 0 0 2px var(--navy);
  }

  .process-grid li:hover strong {
    color: var(--red);
  }

  .asset-tags span:hover {
    transform: translateY(-2px);
    color: #fff;
    border-color: rgba(255, 255, 255, 0.44);
    background: var(--red);
  }

  .service-meta div:hover {
    transform: translateY(-2px);
    background: rgba(255, 255, 255, 0.14);
  }

  .service-page-hero .wechat-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 18px 34px rgba(201, 43, 50, 0.28);
  }

  .blog-filters button:hover {
    transform: translateY(-1px);
    border-color: rgba(201, 43, 50, 0.36);
  }

  .insight-grid article:hover,
  .blog-card:hover {
    transform: translateY(-5px);
    border-color: rgba(201, 43, 50, 0.28);
    box-shadow: var(--hover-shadow);
  }

  .advantage-card:hover {
    transform: translateY(-3px);
    background: rgba(255, 255, 255, 0.66);
  }

  .advantage-card:hover::after {
    width: 64px;
    transform: scaleX(1);
  }

  .condition-block:hover {
    border-top-color: rgba(201, 43, 50, 0.2);
  }

  .condition-tags span:hover {
    transform: translateY(-2px);
    border-color: rgba(201, 43, 50, 0.34);
    color: var(--red);
    background: #fff8f8;
    box-shadow: 0 10px 22px rgba(17, 25, 71, 0.06);
  }

  .service-conditions .condition-block li:hover,
  .service-feature-panel li:hover,
  .service-detail .detail-list li:hover {
    transform: translateY(-3px);
    border-color: rgba(201, 43, 50, 0.26);
    color: var(--navy);
    background: #fff;
    box-shadow: 0 16px 32px rgba(17, 25, 71, 0.08);
  }

  .service-feature-panel.is-dark li:hover {
    border-color: rgba(255, 255, 255, 0.34);
    color: #fff;
    background: rgba(255, 255, 255, 0.14);
    box-shadow: 0 14px 28px rgba(8, 15, 43, 0.16);
  }

  .service-conditions .condition-block li:hover::before,
  .service-feature-panel li:hover::before,
  .service-detail .detail-list li:hover::before {
    transform: scale(1.18);
    box-shadow: 0 0 0 7px rgba(201, 43, 50, 0.13);
  }

  .detail-panel:hover h2,
  .detail-panel:hover h3 {
    color: var(--red);
  }

  .service-feature-panel.is-dark:hover {
    transform: translateY(-2px);
    background-color: #17215e;
  }

  .service-mini-faq details:hover {
    transform: translateY(-2px);
    border-color: rgba(201, 43, 50, 0.22);
    box-shadow: 0 14px 32px rgba(17, 25, 71, 0.08);
  }

  .service-mini-faq details:hover summary {
    padding-left: 22px;
    color: var(--red);
  }

  .case-proof-item:hover {
    transform: translateY(-4px);
    border-color: rgba(201, 43, 50, 0.28);
    box-shadow: 0 24px 54px rgba(17, 25, 71, 0.14);
  }

  .case-proof-item:hover::after {
    transform: scaleX(1);
  }

  .case-proof-item:hover img {
    transform: scale(1.018);
    filter: saturate(1.04) contrast(1.02);
  }

  .case-proof-item:hover figcaption {
    background: #fff8f8;
  }

  .related-card:hover {
    transform: translateY(-2px);
    background: var(--soft);
  }

  .related-card:hover::after {
    transform: scaleX(1);
  }

  .related-article-list a:hover {
    transform: translateY(-2px);
    border-color: rgba(201, 43, 50, 0.24);
    background: transparent;
  }

  .legal-sidebar a:hover {
    color: var(--red);
  }

  .footer-legal a:hover {
    color: #fff;
  }

  .article-keywords a:hover {
    transform: translateY(-1px);
    border-color: rgba(201, 43, 50, 0.28);
    color: var(--red);
    background: #fff7e8;
  }

  .contact-qr-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 20px 46px rgba(8, 15, 43, 0.28);
  }

  .footer-contact a:hover {
    color: #fff;
  }

  .contact-form:hover {
    transform: translateY(-3px);
    box-shadow: 0 26px 64px rgba(8, 15, 43, 0.28);
  }
}

@media (max-width: 980px) {
  .nav { display: none; }
  .menu-btn { display: block; }
  .hero-grid, .route-layout, .investment-grid, .detail-grid, .contact-grid, .article-layout, .about-hero-grid, .about-intro-grid { grid-template-columns: 1fr; }
  .hero-copy {
    grid-template-columns: 1fr;
    grid-template-areas:
      "eyebrow"
      "title"
      "lead"
      "actions"
      "stats";
    max-width: none;
  }
  .legal-layout { grid-template-columns: 1fr; }
  .legal-sidebar { position: static; }
  .detail-grid > div { grid-template-columns: 1fr; }
  .route-card-rail { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .support-services-head,
  .support-service-layout { grid-template-columns: 1fr; }
  .support-services-head .eyebrow,
  .support-services-head h3,
  .support-services-head p:not(.eyebrow) {
    grid-column: 1;
    grid-row: auto;
  }
  .service-grid, .process-grid, .insight-grid, .related-grid, .blog-page-section .blog-grid, .advantage-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .service-proof-grid,
  .service-mini-faq,
  .service-conditions,
  .condition-block { grid-template-columns: 1fr; }
  .condition-points { grid-template-columns: 1fr; }
  .service-advantages .section-head { grid-template-columns: 1fr; }
  .service-advantages .section-head .eyebrow,
  .service-advantages .section-head h2,
  .service-advantages .section-head p:not(.eyebrow) { grid-column: 1; }
  .service-feature-panel.is-dark,
  .service-feature-panel ul { grid-template-columns: 1fr; }
  .case-proof-layout {
    grid-template-columns: 1fr;
  }
  .case-proof-copy {
    position: static;
  }
  .about-statement,
  .about-statement:last-child {
    border-right: 0;
  }
  .about-statement {
    border-bottom: 1px solid var(--line);
  }
  .about-statement:last-child {
    border-bottom: 0;
  }
  .about-metric-strip,
  .about-method-list { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .about-metric-strip div:nth-child(2n) {
    border-right: 0;
  }
  .about-metric-strip div:nth-child(-n + 2) {
    border-bottom: 1px solid var(--line);
  }
  .related-card {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }
  .related-card:last-child { border-bottom: 0; }
  .process-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); }
  .article-sidebar { position: static; }
  .hero {
    min-height: calc(100svh - 118px);
    background:
      linear-gradient(180deg, rgba(255, 255, 255, 0.98) 0%, rgba(255, 255, 255, 0.9) 48%, rgba(255, 255, 255, 0.64) 100%),
      linear-gradient(180deg, rgba(255, 255, 255, 0.1), rgba(17, 25, 71, 0.18)),
      url("assets/hero-skyline.webp");
    background-position: center bottom;
    background-size: cover;
  }
  .success-highlight {
    margin-top: 22px;
    justify-self: stretch;
    width: 100%;
    padding: 16px;
    border-radius: 24px;
  }
  .success-row {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    grid-template-areas:
      "kicker rate"
      "number number"
      "label label";
    align-items: center;
    gap: 10px 12px;
  }
  .success-kicker,
  .success-label { font-size: 15px; }
  .success-kicker {
    grid-area: kicker;
    line-height: 1;
  }
  .success-kicker br { display: none; }
  .success-number {
    grid-area: number;
    min-width: 0;
    font-size: clamp(42px, 11vw, 58px);
    line-height: 1;
  }
  .success-label {
    grid-area: label;
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-top: 0;
    white-space: nowrap;
  }
  .success-unit,
  .success-title {
    display: inline;
  }
  .success-rate {
    grid-area: rate;
    justify-self: end;
    margin-top: 0;
    margin-left: 0;
    padding: 8px 14px 9px;
    font-size: 13px;
  }
  .success-highlight p {
    margin-top: 8px;
    font-size: 12px;
    line-height: 1.45;
  }
}

@media (max-width: 640px) {
  :root { --wrap: calc(100% - 36px); }
  .topline { display: none; }
  .header { min-height: 72px; gap: 10px; padding: 10px 18px; }
  .brand {
    min-width: 0;
    flex: 1 1 auto;
  }
  .brand img {
    width: 162px;
    max-width: 100%;
  }
  .header-actions { gap: 6px; }
  .lang-toggle {
    width: 38px;
    min-height: 38px;
    padding: 0;
    font-size: 13px;
  }
  .lang-toggle .lang-divider,
  .lang-toggle .lang-option:not(.is-active) {
    display: none;
  }
  .nav-cta {
    --wechat-icon-size: 22px;
    display: inline-flex;
    width: 42px;
    min-width: 42px;
    min-height: 42px;
    padding: 0;
    color: #fff;
    background: #07c160;
    font-size: 0;
    box-shadow: 0 10px 22px rgba(7, 193, 96, 0.24);
  }
  .nav-cta::before { display: block; }
  .nav-cta:hover,
  .nav-cta:focus-visible { background: #06ad56; }
  .floating-wechat-cta {
    --wechat-icon-size: 20px;
    right: max(14px, env(safe-area-inset-right));
    bottom: max(14px, env(safe-area-inset-bottom));
    min-height: 50px;
    padding: 0 15px;
    font-size: 14px;
  }
  .mobile-nav { top: 70px; }
  .mobile-nav {
    height: calc(100svh - 70px);
    max-height: calc(100svh - 70px);
  }
  .has-reading-progress .mobile-nav {
    top: 74px;
    height: calc(100svh - 74px);
    max-height: calc(100svh - 74px);
  }
  .hero {
    align-items: flex-start;
    min-height: auto;
    padding-top: 24px;
    padding-bottom: 26px;
  }
  .hero .eyebrow,
  .section-head .eyebrow {
    margin-bottom: 8px;
  }
  .hero h1,
  .section-head h2 {
    margin-bottom: 12px;
  }
  .services,
  .routes,
  .process,
  .investment,
  .insights,
  .contact {
    padding-top: 36px;
    padding-bottom: 44px;
  }
  h1 { font-size: 38px; }
  h2 { font-size: 30px; }
  .lead { font-size: 16px; }
  .routes { padding-top: 36px; padding-bottom: 22px; }
  .process { padding-top: 28px; }
  .route-layout { gap: 18px; }
  .routes .section-head { margin-bottom: 0; }
  .process .section-head.center {
    margin-inline: 0;
    text-align: left;
  }
  .insight-head {
    display: grid;
    gap: 16px;
  }
  .insight-head .button { width: 100%; }
  .blog-filters {
    gap: 7px;
    margin: -6px -18px 18px;
    overflow-x: auto;
    flex-wrap: nowrap;
    padding: 6px 18px 8px;
    scrollbar-width: none;
  }
  .blog-filters::-webkit-scrollbar { display: none; }
  .blog-filters button { flex: 0 0 auto; }
  .button, .hero-actions { width: 100%; }
  .proof-strip { display: none; }
  .success-highlight {
    margin-top: 16px;
    padding: 12px 14px;
    border-radius: 18px;
  }
  .success-row {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr) auto;
    grid-template-areas:
      "kicker number rate"
      "label label label";
    align-items: center;
    gap: 5px 8px;
  }
  .success-kicker,
  .success-label { font-size: 12px; }
  .success-kicker {
    grid-area: kicker;
    line-height: 1.05;
  }
  .success-kicker br { display: none; }
  .success-number {
    grid-area: number;
    min-width: 0;
    font-size: clamp(31px, 10vw, 40px);
    line-height: 1;
  }
  .success-label {
    grid-area: label;
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-top: 0;
    white-space: nowrap;
  }
  .success-unit,
  .success-title {
    display: inline;
  }
  .success-rate {
    grid-area: rate;
    justify-self: end;
    margin-top: 0;
    margin-left: 0;
    padding: 6px 9px 7px;
    font-size: 11px;
  }
  .success-highlight p {
    margin-top: 5px;
    font-size: 10px;
    line-height: 1.35;
  }
  .service-page-hero {
    padding-top: 44px;
    padding-bottom: 36px;
    background:
      linear-gradient(180deg, rgba(8, 15, 43, 0.96) 0%, rgba(17, 25, 71, 0.88) 62%, rgba(17, 25, 71, 0.72) 100%),
      var(--detail-image, url("assets/hero-skyline.webp"));
    background-position: center;
    background-size: cover;
  }
  .service-meta { grid-template-columns: 1fr; margin-top: 24px; }
  .detail-panel {
    padding: 0 0 22px;
    border-radius: 0;
  }
  .service-conditions {
    margin-top: 12px;
    padding: 22px 0;
  }
  .condition-cta {
    width: 100%;
    min-height: 46px;
    margin-top: 8px;
  }
  .case-proof-layout {
    grid-template-columns: 1fr;
  }
  .case-proof-copy {
    position: static;
  }
  .condition-intro h3 {
    font-size: 28px;
  }
  .condition-block {
    gap: 8px;
  }
  .condition-tags span {
    font-size: 12px;
  }
  .service-grid, .process-grid, .insight-grid, .related-grid, .blog-page-section .blog-grid, .advantage-grid { grid-template-columns: 1fr; }
  .service-advantages { padding: 38px 0 48px; }
  .service-case-proof { padding: 36px 0 48px; }
  .case-proof-gallery { grid-template-columns: 1fr; }
  .case-proof-item.is-wide { grid-column: auto; }
  .case-proof-item img,
  .case-proof-item.is-wide img {
    height: min(420px, 92vw);
  }
  .case-proof-item figcaption {
    padding: 14px 16px 16px;
  }
  .advantage-card,
  .service-feature-panel {
    padding: 20px 0;
    border-radius: 0;
  }
  .advantage-card {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }
  .advantage-card:last-child { border-bottom: 0; }
  .advantage-card::after { left: 0; }
  .service-feature-panel.is-dark {
    padding: 22px;
    border-radius: 0;
  }
  .advantage-card { min-height: 0; }
  .article-page-hero { padding-top: 42px; padding-bottom: 34px; }
  .article-page-hero h1 { font-size: 34px; }
  .about-hero { padding-top: 42px; padding-bottom: 38px; }
  .about-hero h1 { font-size: 38px; }
  .about-proof-panel { border-radius: 16px; }
  .about-page-section { padding: 36px 0 48px; }
  .about-statement {
    padding: 24px 0;
    background: transparent;
  }
  .about-statement.is-dark {
    padding: 24px;
    border-radius: 0;
  }
  .about-metric-strip {
    margin: 26px 0;
  }
  .about-method-list {
    grid-template-columns: 1fr;
    gap: 14px;
    padding-left: 18px;
    border-top: 0;
    border-left: 2px solid var(--line);
  }
  .about-method-list div {
    padding: 0 0 0 14px;
  }
  .about-method-list div::before {
    top: 7px;
    left: -25px;
  }
  .about-scope-list a {
    width: 100%;
  }
  .article-page-section { padding: 34px 0 48px; }
  .article-content {
    max-width: none;
    padding: 0;
    border-radius: 0;
  }
  .article-content p {
    font-size: 16px;
    line-height: 1.82;
  }
  .article-content ul {
    gap: 8px;
    padding: 12px;
    border-radius: 14px;
  }
  .article-content li {
    padding: 12px 12px 12px 38px;
    border-radius: 12px;
    font-size: 16px;
    line-height: 1.62;
  }
  .article-content li::before {
    left: 15px;
    width: 8px;
    height: 8px;
    box-shadow: 0 0 0 4px rgba(201, 43, 50, 0.1);
  }
  .article-side-panel {
    padding: 20px 0;
    border-radius: 0;
  }
  .service-grid a, .process-grid li { min-height: 0; }
  .process-grid {
    gap: 14px;
    padding-left: 18px;
    border-top: 0;
    border-left: 2px solid var(--line);
  }
  .process-grid li { padding-top: 0; }
  .process-grid li::before {
    top: 8px;
    left: -25px;
  }
  .process .reveal {
    opacity: 1;
    transform: none;
  }
  .process-actions {
    display: grid;
    grid-template-columns: 1fr;
    margin-top: 26px;
  }
  .investment {
    background:
      linear-gradient(180deg, rgba(8, 15, 43, 0.96) 0%, rgba(17, 25, 71, 0.86) 58%, rgba(17, 25, 71, 0.74) 100%),
      url("assets/hero-investment.webp");
    background-position: center;
    background-size: cover;
  }
  .investment-grid { min-height: 330px; }
  .route-card-rail {
    grid-template-columns: none;
    grid-auto-flow: column;
    grid-auto-columns: minmax(264px, 82vw);
    width: calc(100% + 36px);
    gap: 12px;
    overflow-x: auto;
    overflow-y: hidden;
    padding: 10px 18px 78px;
    margin: -10px -18px -66px;
    scroll-snap-type: x mandatory;
    scroll-padding-inline: 18px;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }
  .route-card-rail::-webkit-scrollbar { display: none; }
  .route-card {
    min-height: 0;
    padding: 28px 20px 20px;
    border-radius: 16px;
  }
  .route-card h3 { font-size: 22px; }
  .support-services {
    margin-top: 20px;
    padding-top: 22px;
  }
  .support-services-head {
    gap: 8px;
    margin-bottom: 14px;
  }
  .support-service-layout {
    gap: 20px;
  }
  .support-service-link {
    grid-template-columns: minmax(0, 1fr) 12px;
    gap: 3px 12px;
    padding: 13px 0;
  }
  .support-service-link small {
    grid-column: 1;
    grid-row: 2;
    justify-self: start;
  }
  .support-service-link::after {
    grid-column: 2;
    grid-row: 1 / span 2;
  }
  .comparison-scroll { border-radius: 16px; }
  .comparison-scroll { scrollbar-width: none; }
  .comparison-scroll::-webkit-scrollbar { display: none; }
  .comparison-table { min-width: 1320px; }
  .comparison-table th,
  .comparison-table td { padding: 13px 15px; }
  .comparison-table tbody th {
    width: 112px;
    min-width: 112px;
  }
  .comparison-table tbody td { min-width: 210px; }
  .scroll-hint {
    display: block;
    margin-top: 6px;
    margin-bottom: 0;
  }
  .footer-layout {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .footer-brand img {
    grid-column: 1;
    grid-row: auto;
    order: 1;
  }
  .footer-contact {
    grid-column: 1;
    grid-row: auto;
    order: 2;
  }
  .footer-contact {
    gap: 8px;
    font-size: 15px;
  }
  .footer-qr {
    grid-column: 1;
    grid-row: auto;
    order: 3;
    justify-self: stretch;
  }
  .footer-qr img {
    width: 100%;
    max-width: 420px;
  }
  .footer-legal {
    grid-column: 1;
    grid-row: auto;
    order: 4;
    gap: 8px 14px;
  }
  .footer-brand p {
    grid-column: 1;
    grid-row: auto;
    order: 5;
    justify-self: start;
    max-width: none;
    text-align: left;
  }
}

@media (max-width: 360px) {
  .header { padding-inline: 14px; }
  .brand img { width: 148px; }
  .nav-cta {
    --wechat-icon-size: 20px;
    width: 38px;
    min-width: 38px;
    min-height: 38px;
  }
  .lang-toggle {
    width: 36px;
    min-height: 36px;
  }
  .menu-btn {
    width: 38px;
    height: 38px;
  }
  .floating-wechat-cta {
    --wechat-icon-size: 29px;
    width: 56px;
    height: 56px;
    min-width: 56px;
    min-height: 56px;
    gap: 0;
    padding: 0;
    font-size: 0;
  }
  .floating-wechat-cta span {
    display: none;
  }
  .success-highlight p {
    padding-right: 58px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
  }
  .reveal { opacity: 1; transform: none; }
  .reveal.reveal-done { will-change: auto; }
}
