:root {
      --brand: #1f73b7;
      --navy: #0a315f;
      --deep: #071f3a;
      --sky: #eaf4fc;
      --line: #d8e6f2;
      --gold: #f0b64a;
      --ink: #10253a;
      --text: #40576f;
      --muted: #718498;
      --bg: #f6f9fc;
      --white: #fff;
      --shadow: 0 1.125rem 3.125rem rgba(10,49,95,.10);
      --radius: 0.5rem;
    }
    * { box-sizing: border-box; }
    html { scroll-behavior: smooth; }
    body {
      margin: 0;
      font-family: "Microsoft YaHei", "PingFang SC", "Segoe UI", Arial, sans-serif;
      color: var(--ink);
      background: var(--white);
      line-height: 1.65;
      overflow-x: hidden;
    }
    main, section, header, footer { min-width: 0; }
    a { color: inherit; text-decoration: none; }
    button, input, select, textarea { font: inherit; }
    button { cursor: pointer; }
    img { display: block; max-width: 100%; }
    .container { width: min(73.75rem, calc(100% - 3rem)); margin: 0 auto; }
    .section { padding: 5.5rem 0; }
    .section.alt { background: var(--bg); }
    .eyebrow {
      display: inline-flex;
      align-items: center;
      gap: 0.625rem;
      color: var(--brand);
      font-weight: 900;
      font-size: 0.875rem;
      margin-bottom: 0.75rem;
    }
    .eyebrow::before { content: ""; width: 2.125rem; height: 2px; background: var(--gold); }
    h1, h2, h3, p { margin-top: 0; }
    h1 { font-size: clamp(2.75rem, 6.2vw, 4.75rem); line-height: 1.05; letter-spacing: 0; margin-bottom: 1.375rem; max-width: 53.125rem; }
    h2 { font-size: clamp(1.875rem, 4vw, 3rem); line-height: 1.14; margin-bottom: 0.875rem; }
    h3 { font-size: 1.3125rem; line-height: 1.35; margin-bottom: 0.625rem; }
    .lead { color: var(--text); font-size: clamp(1rem, calc(0.85rem + 0.25vw), 1.125rem); max-width: 47.5rem; }
    .section-head {
      display: grid;
      grid-template-columns: minmax(0, .95fr) minmax(0, 1fr);
      gap: 2.125rem;
      align-items: end;
      margin-bottom: 2.125rem;
    }
    .section-head h2 { max-width: 40rem; }
    .section-head.center { display: block; text-align: center; max-width: 53.125rem; margin: 0 auto 2.375rem; }
    .section-head.center .eyebrow { justify-content: center; }
    .section-head.center h2 { margin-left: auto; margin-right: auto; }
    .section-head.center .lead { margin-left: auto; margin-right: auto; }
    .btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      min-height: 3rem;
      padding: 0 1.25rem;
      border-radius: 0.375rem;
      border: 1px solid transparent;
      font-weight: 900;
      white-space: nowrap;
      text-align: center;
    }
    .btn.primary { background: var(--gold); color: #211600; box-shadow: 0 0.875rem 1.75rem rgba(240,182,74,.28); }
    .btn.dark { background: var(--navy); color: white; }
    .btn.line { background: white; border-color: var(--line); color: var(--navy); }

    .hero {
      min-height: 45rem;
      color: white;
      position: relative;
      overflow: hidden;
      background:
        linear-gradient(90deg, rgba(7,31,58,.96), rgba(10,49,95,.84) 48%, rgba(31,115,183,.3)),
        url("../images/hero/import-clearance-desk.jpg") 42% center/cover;
    }
    .hero::after {
      content: "";
      position: absolute;
      inset: 0;
      background-image: linear-gradient(rgba(255,255,255,.06) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.06) 1px, transparent 1px);
      background-size: 4.625rem 4.625rem;
      mask-image: linear-gradient(90deg, #000, transparent 74%);
    }
    .hero-inner {
      position: relative;
      z-index: 1;
      min-height: 45rem;
      padding: 3.625rem 0 5.125rem;
      display: grid;
      grid-template-columns: minmax(0, 1fr) minmax(21.875rem, 24.375rem);
      gap: 2.75rem;
      align-items: center;
    }
    .hero-copy, .quote-card { min-width: 0; }
    .hero h1 { max-width: 56.25rem; margin-bottom: 1.375rem; }
    .hero h1 .hero-title-main { display: block; font-size: clamp(2.875rem, 4.7vw, 4rem); line-height: 1.08; white-space: nowrap; }
    .hero h1 .hero-title-sub { display: block; margin-top: 0.375rem; font-size: clamp(2.5rem, 4vw, 3.5rem); line-height: 1.12; white-space: nowrap; }
    .hero .lead { color: rgba(255,255,255,.82); font-size: clamp(1rem, calc(0.85rem + 0.45vw), 1.25rem); }
    .hero-actions { display: flex; flex-wrap: wrap; gap: 0.875rem; margin: 1.875rem 0; }
    .hero-tags { display: flex; flex-wrap: wrap; gap: 0.625rem; margin: 0 0 1.625rem; }
    .hero-tags span { border: 1px solid rgba(255,255,255,.18); background: rgba(255,255,255,.1); border-radius: 62.4375rem; padding: 0.4375rem 0.75rem; color: rgba(255,255,255,.82); font-weight: 800; font-size: 0.8125rem; }
    .quote-card {
      background: rgba(255,255,255,.96);
      color: var(--ink);
      border-radius: var(--radius);
      box-shadow: var(--shadow);
      padding: 1.375rem;
    }
    .quote-card p { color: var(--muted); font-size: 0.875rem; }
    .field { display: grid; gap: 0.375rem; color: var(--muted); font-size: 0.8125rem; font-weight: 800; margin-bottom: 0.625rem; }
    .field input, .field select, .field textarea { width: 100%; min-height: 2.75rem; border: 1px solid var(--line); border-radius: 0.375rem; padding: 0 0.75rem; background: white; color: var(--ink); outline: 0; }
    .estimate { display: grid; grid-template-columns: 1fr 1fr; gap: 0.625rem; background: #eef6fd; border: 1px solid #cddfee; border-radius: 0.4375rem; padding: 0.875rem; margin: 0.875rem 0; }
    .estimate b { display: block; color: var(--navy); font-size: 1.125rem; }
    .estimate span { color: var(--muted); font-size: 0.75rem; }

    .proof-band { margin-top: -2.875rem; position: relative; z-index: 2; }
    .proof-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; background: white; border: 1px solid var(--line); border-radius: 0.5rem; box-shadow: var(--shadow); overflow: hidden; }
    .proof-item { padding: 1.125rem 1.5rem; border-right: 1px solid var(--line); }
    .proof-item:last-child { border-right: 0; }
    .proof-item b { color: var(--brand); font-size: 1.875rem; line-height: 1; display: block; }
    .proof-item span { display: block; color: var(--text); font-weight: 900; margin-top: 0.5rem; }
    .proof-item small { color: var(--muted); }

    .diagnosis {
      display: grid;
      gap: 1.5rem;
      border-radius: 0.5rem;
      padding: 2.125rem;
      color: white;
      background:
        linear-gradient(135deg, rgba(7,31,58,.96), rgba(10,49,95,.9) 48%, rgba(31,115,183,.78));
      box-shadow: var(--shadow);
      position: relative;
      overflow: hidden;
    }
    .diagnosis.is-bg-loaded {
      background:
        linear-gradient(135deg, rgba(7,31,58,.96), rgba(10,49,95,.9) 48%, rgba(31,115,183,.78)),
        url("../images/services/service-docs.webp") center/cover;
    }
    .diagnosis::before {
      content: "";
      position: absolute;
      inset: 0;
      background-image: linear-gradient(rgba(255,255,255,.07) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.07) 1px, transparent 1px);
      background-size: 3.625rem 3.625rem;
      opacity: .7;
    }
    .diagnosis > * { position: relative; z-index: 1; }
    .ops-card {
      min-height: auto;
      border-radius: 0.5rem;
      background: rgba(255,255,255,.1);
      border: 1px solid rgba(255,255,255,.16);
      padding: 1.625rem;
      display: grid;
      grid-template-columns: minmax(0,.95fr) minmax(0,1.05fr);
      gap: 1.5rem;
      align-items: end;
      backdrop-filter: blur(0.625rem);
    }
    .ops-card h3 { font-size: clamp(1.75rem, 3vw, 2.625rem); }
    .ops-card p { color: rgba(255,255,255,.78); margin: 0; }
    .ops-list { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0.625rem; }
    .ops-list div { border: 1px solid rgba(255,255,255,.18); background: rgba(255,255,255,.12); border-radius: 0.5rem; padding: 0.9375rem; backdrop-filter: blur(0.5rem); }
    .ops-list b { display: block; color: #bfe6ff; margin-bottom: 0.25rem; }
    .scenario-panel {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 0.75rem;
      align-items: stretch;
      position: relative;
    }
    .scenario-panel::before { content: ""; position: absolute; left: 9%; right: 9%; top: 1.75rem; height: 2px; background: linear-gradient(90deg, transparent, rgba(240,182,74,.75), transparent); }
    .scenario {
      position: relative;
      background: rgba(255,255,255,.96);
      color: var(--ink);
      border: 1px solid rgba(255,255,255,.22);
      border-radius: 0.5rem;
      padding: 1.5rem 1.25rem 1.375rem;
      box-shadow: 0 1.125rem 2.125rem rgba(0,0,0,.12);
    }
    .scenario .num { display: inline-grid; place-items: center; width: 2.625rem; height: 2.625rem; border-radius: 50%; background: var(--gold); color: #2b1b00; font-weight: 900; margin-bottom: 1.125rem; position: relative; z-index: 1; }
    .scenario p { color: var(--muted); margin: 0; }

    .entry-diagnosis {
      border-radius: 0.5rem;
      overflow: hidden;
      background: white;
      box-shadow: var(--shadow);
      position: relative;
    }
    .entry-diagnosis::before {
      content: "";
      position: absolute;
      inset: 0 0 auto;
      height: 17.8125rem;
      background:
        linear-gradient(100deg, rgba(7,31,58,.95), rgba(10,49,95,.86) 54%, rgba(31,115,183,.42));
    }
    .entry-diagnosis.is-bg-loaded::before {
      background:
        linear-gradient(100deg, rgba(7,31,58,.95), rgba(10,49,95,.86) 54%, rgba(31,115,183,.42)),
        url("../images/hero/service-documents.jpg") center/cover;
    }
    .entry-diagnosis::after {
      content: "";
      position: absolute;
      inset: 0 0 auto;
      height: 17.8125rem;
      background-image: linear-gradient(rgba(255,255,255,.055) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.055) 1px, transparent 1px);
      background-size: 4.5rem 4.5rem;
      pointer-events: none;
    }
    .entry-diagnosis-inner { position: relative; z-index: 1; padding: 2.625rem 2.75rem 2.75rem; }
    .entry-diagnosis-head { color: white; margin-bottom: 2.125rem; }
    .entry-diagnosis-head .eyebrow { color: #c6e5ff; }
    .entry-diagnosis-head h2 { max-width: 67.5rem; font-size: 3rem; line-height: 1.1; margin-bottom: 1rem; }
    .entry-diagnosis-head p { max-width: 42.5rem; color: rgba(255,255,255,.82); font-size: clamp(1rem, calc(0.85rem + 0.25vw), 1.125rem); margin: 0; }
    .entry-decision { display: grid; grid-template-columns: minmax(0, .82fr) minmax(0, 1fr); gap: 1.125rem; align-items: stretch; }
    .entry-focus {
      border-radius: 0.5rem;
      background: #fafdff;
      border: 1px solid var(--line);
      box-shadow: 0 1rem 2.125rem rgba(10,49,95,.09);
      padding: 1.875rem;
      min-height: 24.125rem;
      display: grid;
      align-content: start;
      overflow: hidden;
      position: relative;
    }
    .entry-focus::before {
      content: "";
      position: absolute;
      right: -5rem;
      top: -5rem;
      width: 13.125rem;
      height: 13.125rem;
      border: 2.25rem solid rgba(31,115,183,.08);
      border-radius: 50%;
    }
    .entry-focus-kicker {
      position: relative;
      display: inline-flex;
      width: fit-content;
      align-items: center;
      gap: 0;
      color: var(--brand);
      font-size: 0.8125rem;
      font-weight: 900;
      margin-bottom: 1rem;
    }
    .entry-focus-kicker::before {
      content: attr(data-num);
      display: inline-grid;
      place-items: center;
      width: 2.125rem;
      height: 2.125rem;
      border-radius: 50%;
      background: var(--gold);
      color: #251600;
      font-weight: 900;
    }
    .entry-focus h3 { position: relative; margin: 0 0 0.75rem; font-size: 2.125rem; line-height: 1.18; white-space: nowrap; }
    .entry-focus-answer { position: relative; margin: 0; color: var(--text); font-size: clamp(1rem, calc(0.85rem + 0.25vw), 1.125rem); }
    .entry-focus-list { position: relative; display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 0.625rem; margin: 1.75rem 0 0; }
    .entry-focus-list span {
      border-left: 0.1875rem solid var(--gold);
      border-radius: 0.375rem;
      background: white;
      padding: 0.625rem 0.75rem;
      color: var(--navy);
      font-size: 0.875rem;
      font-weight: 900;
      box-shadow: 0 0.625rem 1.375rem rgba(10,49,95,.06);
    }
    .entry-map {
      border-radius: 0.5rem;
      border: 1px solid var(--line);
      background: white;
      padding: 1.25rem;
      box-shadow: 0 1rem 2.125rem rgba(10,49,95,.09);
      display: grid;
      gap: 1rem;
    }
    .entry-map-title {
      display: flex;
      justify-content: space-between;
      align-items: center;
      gap: 1.125rem;
      padding-bottom: 0.875rem;
      border-bottom: 1px solid #edf3f8;
    }
    .entry-map-title b { font-size: 1.125rem; color: var(--ink); }
    .entry-map-title span { color: var(--text); font-size: 0.8125rem; font-weight: 800; }
    .entry-route-tabs { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 0.625rem; }
    .entry-route-tab {
      min-height: 4.75rem;
      border: 1px solid #e2edf6;
      border-radius: 0.5rem;
      background: #fbfdff;
      color: var(--ink);
      text-align: left;
      padding: 0.8125rem 0.875rem;
      display: grid;
      grid-template-columns: 2.125rem 1fr;
      gap: 0.625rem;
      align-items: center;
      transition: .2s ease;
    }
    .entry-route-tab .num {
      display: grid;
      place-items: center;
      width: 2.125rem;
      height: 2.125rem;
      border-radius: 50%;
      background: var(--sky);
      color: var(--brand);
      font-size: 0.75rem;
      font-weight: 900;
    }
    .entry-route-tab strong { display: block; font-size: 1rem; line-height: 1.25; margin-bottom: 0.125rem; white-space: nowrap; }
    .entry-route-tab small { display: block; color: var(--text); font-size: 0.75rem; font-weight: 800; line-height: 1.35; white-space: nowrap; }
    .entry-route-tab:hover,
    .entry-route-tab.active {
      transform: translateY(-2px);
      border-color: rgba(240,182,74,.7);
      background: var(--navy);
      color: white;
      box-shadow: 0 0.875rem 1.5rem rgba(10,49,95,.16);
    }
    .entry-route-tab:hover .num,
    .entry-route-tab.active .num { background: var(--gold); color: #261700; }
    .entry-route-tab:hover small,
    .entry-route-tab.active small { color: rgba(255,255,255,.74); }

    .services-shell { display: grid; grid-template-columns: 22.5rem minmax(0, 1fr); gap: 1.125rem; align-items: start; }
    .service-menu { display: grid; gap: 0.625rem; position: sticky; top: 6rem; align-self: start; }
    .service-menu button {
      min-height: 6.75rem;
      text-align: left;
      border: 1px solid var(--line);
      border-radius: 0.5rem;
      background: white;
      padding: 0.875rem;
      color: var(--ink);
      box-shadow: 0 0.625rem 1.625rem rgba(10,49,95,.05);
      display: grid;
      grid-template-columns: 2.375rem 1fr;
      gap: 0.75rem;
      align-items: center;
      transition: .2s ease;
    }
    .service-menu button::before {
      content: attr(data-index);
      display: inline-grid;
      place-items: center;
      width: 2.375rem;
      height: 2.375rem;
      border-radius: 0.5rem;
      background: var(--sky);
      color: var(--brand);
      font-size: 0.8125rem;
      font-weight: 900;
    }
    .service-menu button strong { display: block; font-size: 1rem; line-height: 1.25; }
    .service-menu button .service-menu-copy { display: block; margin-top: 0.25rem; color: var(--muted); font-size: 0.75rem; line-height: 1.45; font-weight: 700; }
    .service-menu button.active { background: var(--navy); color: white; border-color: var(--navy); transform: translateX(0.25rem); }
    .service-menu button.active::before { background: var(--gold); color: #2a1b00; }
    .service-menu button.active .service-menu-copy { color: rgba(255,255,255,.74); }
    .service-showcase { min-width: 0; }
    .service-detail { display: none; }
    .service-detail.active { display: grid; gap: 0.875rem; }
    .service-hero {
      min-height: 22.5rem;
      border: 1px solid var(--line);
      border-radius: 0.5rem;
      overflow: hidden;
      box-shadow: var(--shadow);
      background: white;
      display: grid;
      grid-template-columns: minmax(2rem, .82fr) 1fr;
    }
    .service-photo { min-height: 22.5rem; position: relative; overflow: hidden; }
    .service-photo img { width: 100%; height: 100%; object-fit: cover; transition: transform .45s ease; }
    .service-detail.active .service-photo img { transform: scale(1.03); }
    .service-photo::after { content: ""; position: absolute; inset: 0; background: linear-gradient(0deg, rgba(7,31,58,.72), rgba(7,31,58,.04) 58%); }
    .service-photo span { position: absolute; left: 1.25rem; right: 1.25rem; bottom: 1.25rem; z-index: 1; max-height: calc(100% - 2.5rem); color: white; background: rgba(7,31,58,.82); border: 1px solid rgba(255,255,255,.16); border-radius: 0.5rem; padding: 0.875rem 1rem; font-size: clamp(0.875rem, 0.55rem + 1vw, 1rem); line-height: 1.55; font-weight: 900; backdrop-filter: blur(0.625rem); overflow: hidden; word-break: normal; overflow-wrap: break-word; text-wrap: pretty; }
    .service-copy { padding: 1.875rem; align-self: center; }
    .service-copy small { display: block; color: var(--brand); font-weight: 900; margin-bottom: 0.5rem; }
    .service-copy h3 { font-size: 1.75rem; margin-bottom: 0.625rem; }
    .service-copy p { color: var(--text); font-size: clamp(0.9375rem, calc(0.82rem + 0.2vw), 1rem); line-height: 1.72; }
    .tag-list { display: flex; flex-wrap: wrap; gap: 0.5rem; margin: 1.125rem 0 1.375rem; }
    .tag { border-radius: 62.4375rem; padding: 0.4375rem 0.6875rem; background: var(--sky); color: var(--navy); font-size: 0.8125rem; font-weight: 900; }
    .service-metrics { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0.5rem; margin-top: 1.25rem; }
    .service-metrics div { border: 1px solid #dcebf7; border-radius: 0.5rem; background: #fbfdff; padding: 0.75rem; }
    .service-metrics b { display: block; color: var(--brand); font-size: 1.375rem; line-height: 1; }
    .service-metrics span { display: block; color: var(--muted); font-size: 0.75rem; margin-top: 0.375rem; font-weight: 800; }
    .service-system { display: grid; grid-template-columns: 1.05fr .95fr; gap: 0.875rem; }
    .service-panel {
      border: 1px solid var(--line);
      border-radius: 0.5rem;
      background: white;
      padding: 1.375rem;
      box-shadow: 0 0.625rem 1.625rem rgba(10,49,95,.05);
    }
    .service-panel h4 { margin: 0 0 0.875rem; font-size: 1.125rem; }
    .service-system .service-panel:last-child { display: flex; flex-direction: column; justify-content: center; }
    .deliverables { display: grid; grid-template-columns: repeat(2, 1fr); gap: 0.625rem; }
    .deliverable { border: 1px solid #edf3f8; border-radius: 0.5rem; background: #fbfdff; padding: 0.875rem; }
    .deliverable b { display: block; color: var(--navy); margin-bottom: 0.3125rem; }
    .deliverable span { color: var(--muted); font-size: 0.8125rem; line-height: 1.5; }
    .service-flow { display: grid; gap: 0.625rem; counter-reset: svc; margin: 0; padding: 0; }
    .service-flow li {
      list-style: none;
      display: grid;
      grid-template-columns: 2rem 1fr;
      gap: 0.625rem;
      align-items: center;
      color: var(--muted);
      font-size: 0.9375rem;
      line-height: 1.45;
      white-space: nowrap;
    }
    .service-flow li::before {
      counter-increment: svc;
      content: counter(svc);
      width: 2rem;
      height: 2rem;
      border-radius: 0.5rem;
      display: grid;
      place-items: center;
      background: var(--gold);
      color: #2a1b00;
      font-weight: 900;
    }
    .service-detail-actions { display: flex; justify-content: flex-end; margin-top: -0.125rem; }
    .service-detail-actions .btn { min-width: 8.25rem; min-height: 2.625rem; }
    .network { display: grid; grid-template-columns: .88fr 1.12fr; gap: 1.25rem; align-items: stretch; }
    .network-map { border-radius: 0.5rem; background: linear-gradient(135deg, rgba(7,31,58,.84), rgba(31,115,183,.34)); color: white; padding: 1.5rem; min-height: 30rem; position: relative; overflow: hidden; box-shadow: var(--shadow); display: grid; align-content: space-between; gap: 1.375rem; }
    .network-map.is-bg-loaded { background: linear-gradient(135deg, rgba(7,31,58,.84), rgba(31,115,183,.34)), url("../images/coverage/network-coverage-map.webp") center/cover; }
    .network-map::before { content: ""; position: absolute; inset: 0; background-image: linear-gradient(rgba(255,255,255,.08) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.08) 1px, transparent 1px); background-size: 2.625rem 2.625rem; }
    .network-map > * { position: relative; z-index: 1; }
    .china-map { height: 22.5rem; border: 1px solid rgba(255,255,255,.18); border-radius: 0.5rem; margin-top: 1.125rem; background: rgba(255,255,255,.08); }
    .china-map svg { width: 100%; height: 100%; }
    .network-stats { display: grid; grid-template-columns: repeat(2, 1fr); gap: 0.625rem; }
    .network-stats div { border: 1px solid rgba(255,255,255,.18); background: rgba(255,255,255,.1); border-radius: 0.5rem; padding: 0.875rem; backdrop-filter: blur(0.5rem); }
    .network-stats b { display: block; color: var(--gold); font-size: 1.75rem; line-height: 1; margin-bottom: 0.375rem; }
    .network-coverage-visual {
      min-height: 13.375rem;
      border: 1px solid rgba(255,255,255,.2);
      border-radius: 0.5rem;
      background: radial-gradient(circle at 68% 34%, rgba(240,182,74,.18), transparent 28%), linear-gradient(135deg, rgba(14,65,117,.92), rgba(7,31,58,.96));
      position: relative;
      overflow: hidden;
      box-shadow: inset 0 1px 0 rgba(255,255,255,.14);
    }
    .network-coverage-visual::before {
      content: "";
      position: absolute;
      inset: 0;
      background-image: linear-gradient(rgba(255,255,255,.07) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.07) 1px, transparent 1px);
      background-size: 1.875rem 1.875rem;
      opacity: .7;
    }
    .network-coverage-visual svg {
      position: absolute;
      inset: 0;
      width: 100%;
      height: 100%;
      z-index: 1;
    }
    .coverage-route { fill: none; stroke: rgba(240,182,74,.58); stroke-width: 2.2; stroke-linecap: round; stroke-dasharray: 5 7; }
    .coverage-area { fill: rgba(191,230,255,.16); stroke: rgba(191,230,255,.42); stroke-width: 1.4; }
    .coverage-node { fill: #f0b64a; stroke: rgba(255,255,255,.88); stroke-width: 2; }
    .coverage-hub {
      position: absolute;
      left: 52%;
      top: 48%;
      width: 5.5rem;
      height: 5.5rem;
      border: 1px solid rgba(240,182,74,.58);
      border-radius: 50%;
      transform: translate(-50%, -50%);
      box-shadow: 0 0 0 1.625rem rgba(240,182,74,.08), 0 0 0 3.375rem rgba(240,182,74,.04);
      z-index: 2;
    }
    .coverage-hub::after {
      content: "";
      position: absolute;
      left: 50%;
      top: 50%;
      width: 0.75rem;
      height: 0.75rem;
      border-radius: 50%;
      background: var(--gold);
      transform: translate(-50%, -50%);
      box-shadow: 0 0 1.375rem rgba(240,182,74,.72);
    }
    .network-point {
      position: absolute;
      display: inline-flex;
      align-items: center;
      height: 1.875rem;
      padding: 0 0.625rem;
      border-radius: 62.4375rem;
      background: rgba(255,255,255,.9);
      color: var(--navy);
      font-size: 0.75rem;
      font-weight: 900;
      white-space: nowrap;
      box-shadow: 0 0.625rem 1.5rem rgba(7,31,58,.18);
      z-index: 3;
    }
    .network-point::before {
      content: "";
      width: 0.4375rem;
      height: 0.4375rem;
      border-radius: 50%;
      background: var(--gold);
      margin-right: 0.375rem;
    }
    .network-point.p1 { left: 9%; top: 18%; }
    .network-point.p2 { right: 10%; top: 17%; }
    .network-point.p3 { left: 13%; bottom: 17%; }
    .network-point.p4 { right: 12%; bottom: 24%; }
    .network-point.p5 { left: 39%; top: 37%; }
    .network-point.p6 { left: 42%; bottom: 8%; }
    .coverage-panel { background: white; border: 1px solid var(--line); border-radius: 0.5rem; box-shadow: var(--shadow); overflow: hidden; }
    .coverage-tabs { display: flex; flex-wrap: wrap; gap: 0.5rem; padding: 1.125rem; border-bottom: 1px solid var(--line); }
    .coverage-tabs button { border: 1px solid var(--line); border-radius: 62.4375rem; background: var(--bg); color: var(--navy); padding: 0.5rem 0.75rem; font-weight: 900; }
    .coverage-tabs button.active { background: var(--navy); color: white; border-color: var(--navy); }
    .coverage-content { padding: 1.125rem; }
    .coverage-group { display: none; }
    .coverage-group.active { display: block; }
    .coverage-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 0.875rem; }
    .coverage-box { border: 1px solid var(--line); border-radius: 0.5rem; background: #fbfdff; padding: 1rem; }
    .coverage-box h4 { margin: 0 0 0.625rem; color: var(--navy); }
    .chip-cloud { display: flex; flex-wrap: wrap; gap: 0.5rem; }
    .area-chip { display: inline-flex; align-items: center; min-height: 1.75rem; padding: 0.25rem 0.5625rem; border-radius: 62.4375rem; background: var(--sky); color: var(--text); font-size: 0.7813rem; font-weight: 800; }
    .area-chip.port { background: #fff3d7; color: #5b3b00; }
    a.area-chip { text-decoration: none; transition: transform .18s ease, box-shadow .18s ease, background .18s ease; }
    a.area-chip:hover, a.area-chip:focus-visible { transform: translateY(-2px); box-shadow: 0 0.5rem 1.125rem rgba(139,93,0,.16); outline: none; }
    .coverage-note { margin-top: 0.75rem; border-radius: 0.5rem; background: #eef6fd; color: var(--text); padding: 0.75rem 0.875rem; font-weight: 800; }
    .coverage-detail { display: grid; grid-template-columns: repeat(2, 1fr); gap: 0.875rem; margin-top: 0.875rem; }
    .coverage-flow, .coverage-promise { border: 1px solid var(--line); border-radius: 0.5rem; background: #fbfdff; padding: 1rem; }
    .flow-steps { display: grid; gap: 0.5625rem; }
    .flow-steps span { display: grid; grid-template-columns: 1.75rem 1fr; gap: 0.625rem; align-items: center; color: var(--text); font-size: 0.875rem; }
    .flow-steps b { width: 1.75rem; height: 1.75rem; border-radius: 50%; display: grid; place-items: center; background: var(--brand); color: white; }
    .promise-list { list-style: none; margin: 0; padding: 0; display: grid; gap: 0.5625rem; color: var(--text); }
    .promise-list li { display: flex; align-items: center; line-height: 1.45; }
    .promise-list li::before { content: "✓"; display: inline-flex; align-items: center; justify-content: center; flex: 0 0 1.375rem; width: 1.375rem; height: 1.375rem; margin-right: 0.5rem; border-radius: 0.3125rem; background: var(--gold); color: #2b1b00; font-weight: 900; line-height: 1; }

    .cargo-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0.875rem; }
    .cargo { border: 1px solid var(--line); border-radius: 0.5rem; overflow: hidden; background: white; box-shadow: 0 0.5rem 1.5rem rgba(10,49,95,.05); display: grid; grid-template-rows: 8.75rem 1fr; min-height: 24.375rem; color: inherit; text-decoration: none; transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease; }
    .cargo:hover, .cargo:focus-visible { transform: translateY(-0.25rem); border-color: rgba(13,107,179,.38); box-shadow: 0 1.125rem 2.375rem rgba(10,49,95,.12); outline: none; }
    .cargo-visual { position: relative; background: #dbeaf5; overflow: hidden; }
    .cargo-visual img { width: 100%; height: 100%; object-fit: cover; }
    .cargo-visual::after { content: ""; position: absolute; inset: 0; background: linear-gradient(0deg, rgba(10,49,95,.42), rgba(10,49,95,.08)); }
    .cargo-content { padding: 1.0625rem; display: grid; grid-template-rows: auto 4.5rem 2.125rem 1fr; gap: 0.5625rem; }
    .cargo-content p { color: var(--muted); margin: 0; line-height: 1.75; }
    .cargo-content span { display: inline-flex; align-items: center; justify-content: center; width: 8rem; height: 2.125rem; padding: 0 0.625rem; border-radius: 62.4375rem; background: rgba(240,182,74,.92); color: #1d1300; font-size: 0.8125rem; font-weight: 900; white-space: nowrap; }
    .cargo-solution { display: grid; align-content: start; gap: 0.4375rem; font-size: 0.8125rem; line-height: 1.7; color: var(--text); padding-top: 0.625rem; border-top: 1px solid #edf3f8; }
    .cargo-solution b { color: var(--navy); }

    .advantage-board {
      display: grid;
      grid-template-columns: repeat(12, 1fr);
      gap: 0.875rem;
    }
    .advantage-card {
      min-height: 11.75rem;
      border: 1px solid var(--line);
      border-radius: 0.5rem;
      background: white;
      padding: 1.375rem;
      box-shadow: 0 0.5rem 1.5rem rgba(10,49,95,.05);
      display: grid;
      align-content: space-between;
      position: relative;
      overflow: hidden;
    }
    .advantage-card::after {
      content: "";
      position: absolute;
      right: -2.125rem;
      top: -2.125rem;
      width: 7rem;
      height: 7rem;
      border-radius: 50%;
      background: rgba(31,115,183,.08);
    }
    .advantage-card.feature {
      grid-column: span 6;
      color: white;
      background: linear-gradient(135deg, var(--navy), var(--brand));
      border-color: transparent;
    }
    .advantage-card:not(.feature) { grid-column: span 3; }
    .advantage-card h3 { margin-bottom: 0.625rem; min-height: 3.25rem; }
    .advantage-card p { color: var(--muted); margin-bottom: 0; }
    .advantage-card:not(.feature) p { min-height: 4.125rem; }
    .advantage-card.feature p { color: rgba(255,255,255,.82); }
    .advantage-card small { color: var(--brand); font-weight: 900; }
    .advantage-card.feature small { color: var(--gold); }
    .section-cta { display: flex; justify-content: center; margin-top: 1.375rem; }

    .about-panel {
      border-radius: 0.5rem;
      overflow: hidden;
      border: 1px solid var(--line);
      background: white;
      box-shadow: var(--shadow);
    }
    .about-intro {
      display: grid;
      grid-template-columns: 1fr .9fr;
      gap: 1.75rem;
      padding: 2.125rem;
      background:
        linear-gradient(135deg, rgba(10,49,95,.95), rgba(31,115,183,.78));
      color: white;
    }
    .about-intro.is-bg-loaded {
      background:
        linear-gradient(135deg, rgba(10,49,95,.95), rgba(31,115,183,.78)),
        url("../images/services/service-chain.webp") center/cover;
    }
    .about-intro p { color: rgba(255,255,255,.82); }
    .brand-belief {
      margin-top: 1rem;
      border-left: 0.25rem solid var(--gold);
      border-radius: 0.5rem;
      background: rgba(255,255,255,.1);
      padding: 0.875rem 1rem;
      color: white;
      font-size: 1.125rem;
      font-weight: 900;
      line-height: 1.65;
      box-shadow: inset 0 1px 0 rgba(255,255,255,.12);
    }
    .strength-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 0.625rem; }
    .strength-grid div { border: 1px solid rgba(255,255,255,.18); border-radius: 0.5rem; padding: 0.875rem; background: rgba(255,255,255,.1); }
    .strength-grid b { display: block; color: var(--gold); font-size: 1.25rem; }
    .timeline {
      display: grid;
      grid-template-columns: repeat(8, 1fr);
      gap: 0;
      padding: 1.5rem 1.75rem 1.875rem;
      background: #fbfdff;
      border-top: 1px solid var(--line);
    }
    .timeline div { position: relative; padding: 1.125rem 0.75rem 0; border-top: 2px solid rgba(31,115,183,.22); }
    .timeline div::before { content: ""; position: absolute; left: 0.75rem; top: -0.5rem; width: 0.875rem; height: 0.875rem; border-radius: 50%; background: var(--gold); box-shadow: 0 0 0 0.375rem #fff3d7; }
    .timeline b { display: block; color: var(--brand); font-size: 1.125rem; }
    .timeline span { display: block; max-width: 7.875rem; color: var(--text); font-size: 0.8125rem; line-height: 1.75; }

    .process {
      counter-reset: step;
      display: grid;
      grid-template-columns: repeat(7, minmax(0, 1fr));
      gap: 0;
      border: 1px solid var(--line);
      border-radius: 0.5rem;
      overflow: hidden;
      background: white;
      box-shadow: var(--shadow);
    }
    .process-step {
      position: relative;
      overflow: hidden;
      border: 0;
      border-right: 1px solid var(--line);
      border-radius: 0;
      background: white;
      padding: 1.5rem 1rem;
      box-shadow: none;
    }
    .process-step:last-child { border-right: 0; }
    .process-step:nth-child(1), .process-step:nth-child(5) { background: linear-gradient(135deg, var(--navy), var(--brand)); color: white; }
    .process-step:nth-child(1) span, .process-step:nth-child(5) span { color: rgba(255,255,255,.78); }
    .process-step::before {
      counter-increment: step;
      content: "0" counter(step);
      display: block;
      color: var(--brand);
      font-size: 1.875rem;
      line-height: 1;
      font-weight: 900;
      margin-bottom: 1.25rem;
    }
    .process-step:nth-child(1)::before, .process-step:nth-child(5)::before { color: rgba(255,255,255,.88); }
    .process-step::after {
      content: "";
      position: absolute;
      right: -2.125rem;
      bottom: -2.125rem;
      width: 6rem;
      height: 6rem;
      border-radius: 50%;
      background: rgba(240,182,74,.16);
    }
    .process-step h3 { font-size: 1.0625rem; margin-bottom: 0.5rem; }
    .process-step span { color: var(--muted); font-size: 0.8125rem; }

    .case-layout { display: grid; gap: 0.875rem; }
    .case-index { display: grid; grid-template-columns: repeat(5, 1fr); gap: 0.625rem; }
    .case-tab { border: 1px solid var(--line); border-radius: 0.5rem; background: white; padding: 0.75rem; min-height: 7.5rem; text-align: left; display: grid; gap: 0.375rem; color: var(--ink); box-shadow: 0 0.5rem 1.5rem rgba(10,49,95,.05); }
    .case-tab.active { background: var(--navy); color: white; border-color: var(--navy); }
    .case-tab span { color: var(--brand); font-size: 0.75rem; font-weight: 900; }
    .case-tab.active span { color: var(--gold); }
    .case-tab small { color: var(--muted); line-height: 1.5; }
    .case-tab.active small { color: rgba(255,255,255,.76); }
    .case-stage { background: white; border: 1px solid var(--line); border-radius: 0.5rem; box-shadow: var(--shadow); overflow: hidden; }
    .case-panel { display: none; }
    .case-panel.active { display: grid; grid-template-columns: 23.75rem 1fr; min-height: 0; }
    .case-hero { color: white; padding: 1.875rem; display: grid; align-content: end; gap: 0.875rem; background: linear-gradient(180deg, rgba(10,49,95,.24), rgba(7,31,58,.92)), var(--case-image) center/cover; }
    .case-hero span { width: max-content; max-width: 100%; border: 1px solid rgba(255,255,255,.24); border-radius: 62.4375rem; padding: 0.3125rem 0.625rem; background: rgba(255,255,255,.12); font-size: 0.8125rem; font-weight: 900; }
    .case-hero h3 { font-size: 1.625rem; line-height: 1.3; margin: 0; }
    .case-body { padding: 1.75rem; display: grid; grid-template-areas: "metrics" "facts" "story" "summary"; grid-template-rows: auto auto auto auto; gap: 1rem; background: linear-gradient(135deg, #f7fbff, #eef6fd); }
    .case-story { grid-area: story; display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 0.875rem; align-items: stretch; }
    .case-story article { position: relative; border: 1px solid var(--line); border-radius: 0.5rem; background: linear-gradient(180deg, #fff, #f8fbfe); padding: 1.125rem; min-height: 10rem; }
    .case-story article::before { content: ""; position: absolute; left: 1.125rem; right: 1.125rem; top: 0; height: 0.1875rem; background: linear-gradient(90deg, var(--gold), var(--brand)); border-radius: 0 0 0.1875rem 0.1875rem; }
    .case-story b { display: block; color: var(--navy); margin-bottom: 0.625rem; font-size: 1.0625rem; }
    .case-story p { color: var(--muted); margin: 0; font-size: 0.875rem; line-height: 1.65; }
    .case-metrics { grid-area: metrics; display: grid; grid-template-columns: repeat(auto-fit, minmax(9.375rem, 1fr)); gap: 0.625rem; }
    .case-metric { border-radius: 0.5rem; background: white; padding: 1rem; border: 1px solid #d8e9f7; box-shadow: 0 0.5rem 1.125rem rgba(10,49,95,.05); }
    .case-metric b { display: block; color: var(--brand); font-size: 1.5rem; line-height: 1.1; }
    .case-summary { grid-area: summary; border-left: 0.25rem solid var(--gold); background: #fff9eb; border-radius: 0.5rem; padding: 0.9375rem 1.125rem; color: #5b3b00; font-weight: 900; }
    .case-facts { grid-area: facts; display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 0.625rem; }
    .case-fact { border: 1px dashed #c9deef; border-radius: 0.5rem; background: rgba(255,255,255,.78); padding: 0.75rem 0.875rem; color: var(--muted); font-size: 0.8125rem; line-height: 1.6; }
    .case-fact b { display: block; color: var(--navy); margin-bottom: 0.1875rem; }

    .partners-section { background: linear-gradient(180deg, #fff, #f6f9fc); }
    .partners-wrap {
      border: 1px solid var(--line);
      border-radius: 0.5rem;
      background: rgba(255,255,255,.86);
      box-shadow: var(--shadow);
      overflow: hidden;
    }
    .partners-top {
      display: grid;
      grid-template-columns: 1fr auto;
      gap: 1.125rem;
      align-items: center;
      padding: 1.375rem 1.625rem;
      border-bottom: 1px solid #edf3f8;
      background: linear-gradient(90deg, rgba(10,49,95,.06), rgba(31,115,183,.02));
    }
    .partners-top h3 { margin: 0; font-size: 1.5rem; }
    .partners-top p { margin: 0.25rem 0 0; color: var(--muted); }
    .partners-badge { border: 1px solid var(--line); border-radius: 62.4375rem; background: white; color: var(--navy); padding: 0.5rem 0.875rem; font-weight: 900; white-space: nowrap; }
    .partner-marquee { overflow: hidden; background: #edf3f8; }
    .partner-grid { display: flex; width: max-content; gap: 1px; background: #edf3f8; animation: partnerMarquee 42s linear infinite; }
    .partner-marquee:hover .partner-grid { animation-play-state: paused; }
    @keyframes partnerMarquee {
      from { transform: translateX(0); }
      to { transform: translateX(-50%); }
    }
    .partner-card {
      flex: 0 0 clamp(10rem, 16vw, 12.25rem);
      min-height: 6.75rem;
      background: white;
      display: grid;
      place-items: center;
      text-align: center;
      padding: 1rem 0.75rem;
      position: relative;
      overflow: hidden;
    }
    .partner-card::before {
      content: "";
      position: absolute;
      inset: 0.75rem;
      border: 1px solid rgba(10,49,95,.08);
      clip-path: polygon(25% 0, 75% 0, 100% 50%, 75% 100%, 25% 100%, 0 50%);
      background: linear-gradient(180deg, rgba(246,249,252,.7), rgba(255,255,255,.2));
    }
    .partner-logo {
      position: relative;
      z-index: 1;
      width: min(9.375rem, 86%);
      height: 3.125rem;
      display: flex;
      align-items: center;
      justify-content: center;
      margin-bottom: 0.3125rem;
    }
    .partner-logo img { max-width: 100%; max-height: 100%; width: auto; height: auto; display: block; object-fit: contain; }
    .partner-logo img.is-deferred { opacity: 0; }
    .partner-logo img.is-loaded { opacity: 1; transition: opacity .18s ease; }
    .partner-card .partner-name { position: relative; z-index: 1; display: block; margin-top: 0.125rem; color: var(--muted); font-size: 0.75rem; font-weight: 800; }
    .partner-card.feature .partner-logo { height: 3.375rem; }
    .partners-note { padding: 1rem 1.5rem; color: var(--muted); font-size: 0.875rem; background: #fbfdff; }
    @media (prefers-reduced-motion: reduce) {
      .partner-grid { animation: none; transform: none; }
    }

    .faq-shell { display: grid; grid-template-columns: 1fr 16.25rem; gap: 1.125rem; align-items: start; }
    .faq-nav { display: grid; gap: 0.5rem; order: 2; }
    .faq-shell > div:not(.faq-nav) { order: 1; }
    .faq-nav button { border: 1px solid var(--line); border-radius: 0.5rem; background: white; min-height: 3rem; text-align: left; padding: 0.625rem 0.875rem; font-weight: 900; box-shadow: 0 0.5rem 1.5rem rgba(10,49,95,.05); cursor: pointer; }
    .faq-nav button.active { background: var(--navy); color: white; border-color: var(--navy); }
    .faq-panel { display: none; gap: 0.625rem; }
    .faq-panel.active { display: grid; }
    .faq-item { background: white; border: 1px solid var(--line); border-radius: 0.5rem; overflow: hidden; }
    .faq-q { width: 100%; min-height: 3.375rem; border: 0; background: transparent; text-align: left; padding: 0.875rem 1.125rem; display: flex; align-items: center; justify-content: space-between; gap: 1rem; font: inherit; font-weight: 900; color: var(--ink); cursor: pointer; }
    .faq-q span { flex: 0 0 auto; color: var(--brand); font-size: 1.25rem; line-height: 1; }
    .faq-item.open .faq-q span { transform: rotate(45deg); }
    .faq-a { display: none; padding: 0 1.125rem 1rem; color: var(--muted); line-height: 1.7; }
    .faq-item.open .faq-a { display: block; }
    .insights-shell { display: grid; grid-template-columns: 16.25rem 1fr; gap: 1rem; align-items: start; }
    .insight-tabs { display: grid; gap: 0.5rem; }
    .insight-tab { min-height: 3.375rem; border: 1px solid var(--line); border-radius: 0.5rem; background: white; padding: 0 1rem; color: var(--ink); display: flex; align-items: center; justify-content: space-between; gap: 0.75rem; font: inherit; font-weight: 900; cursor: pointer; }
    .insight-tab::after { content: "›"; color: var(--muted); font-size: 1.25rem; line-height: 1; }
    .insight-tab.active { background: var(--navy); color: white; border-color: var(--navy); }
    .insight-tab.active::after { color: white; }
    .insight-panel { border: 1px solid var(--line); border-radius: 0.5rem; background: white; box-shadow: 0 0.5rem 1.5rem rgba(10,49,95,.05); overflow: hidden; }
    .insight-panel-head { display: flex; align-items: flex-end; justify-content: space-between; gap: 1rem; padding: 1.25rem 1.375rem; border-bottom: 1px solid #edf3f8; background: #f8fbfe; }
    .insight-panel-head h3 { font-size: 1.5rem; margin-bottom: 0.25rem; }
    .insight-panel-head p { color: var(--muted); margin: 0; }
    .insight-panel-head a { color: var(--brand); font-weight: 900; white-space: nowrap; }
    .insight-list { display: grid; grid-template-columns: repeat(2, 1fr); }
    .insight-article { min-height: 7.25rem; padding: 0.8125rem 1.25rem; border-right: 1px solid #edf3f8; border-bottom: 1px solid #edf3f8; display: grid; align-content: start; gap: 0.3125rem; }
    .insight-article:nth-child(2n) { border-right: 0; }
    .insight-article:nth-last-child(-n+2) { border-bottom: 0; }
    .insight-meta { display: flex; align-items: center; justify-content: flex-end; gap: 0.75rem; }
    .insight-article small { color: var(--brand); font-weight: 900; }
    .insight-date { color: var(--muted); font-size: 0.75rem; font-weight: 900; white-space: nowrap; }
    .insight-article h3 { font-size: 1.0625rem; line-height: 1.32; }
    .insight-article p { color: var(--muted); margin: 0; font-size: 0.875rem; line-height: 1.5; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
    .insight-more { width: max-content; color: var(--brand); font-size: 0.8125rem; font-weight: 900; }

    .final-cta { background: linear-gradient(90deg, rgba(7,31,58,.96), rgba(10,49,95,.82)); color: white; padding: 5.125rem 0; }
    .final-cta.is-bg-loaded { background: linear-gradient(90deg, rgba(7,31,58,.96), rgba(10,49,95,.82)), url("../images/services/service-docs.webp") center/cover; }
    .cta-grid { display: grid; grid-template-columns: 1fr 26.25rem; gap: 2.375rem; align-items: center; }
    .final-cta .lead, .final-cta p { color: rgba(255,255,255,.8); }
    .gift-list { display: grid; grid-template-columns: repeat(2, 1fr); gap: 0.75rem; margin-top: 1.5rem; }
    .gift { border: 1px solid rgba(255,255,255,.18); background: rgba(255,255,255,.1); border-radius: 0.5rem; padding: 0.875rem; backdrop-filter: blur(0.625rem); }
    .cta-path { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0.625rem; margin-top: 1.5rem; }
    .cta-path-item { border-top: 1px solid rgba(255,255,255,.28); padding-top: 0.875rem; }
    .cta-path-item b { display: block; color: white; font-size: 1.0625rem; margin-bottom: 0.375rem; }
    .cta-path-item span { display: block; color: rgba(255,255,255,.72); font-size: 0.875rem; line-height: 1.6; }
    .contact-card { background: white; color: var(--ink); border-radius: 0.5rem; padding: 1.5rem; box-shadow: var(--shadow); }
    .contact-card input, .contact-card textarea, .contact-card select { width: 100%; border: 1px solid var(--line); border-radius: 0.375rem; min-height: 2.75rem; margin-bottom: 0.625rem; padding: 0 0.75rem; outline: none; }
    .contact-card textarea { min-height: 5.75rem; padding-top: 0.75rem; resize: vertical; }


    @media (max-width: 1080px) {
      .hero-inner, .ops-card, .services-shell, .network, .service-system, .case-body, .faq-shell, .cta-grid { grid-template-columns: 1fr; }
      .entry-decision { grid-template-columns: 1fr; }
      .entry-map { order: -1; }
      .case-panel.active { grid-template-columns: 1fr; }
      .case-hero { min-height: 16.25rem; }
      .case-story { grid-template-columns: 1fr; }
      .case-metrics { grid-template-columns: repeat(2, 1fr); }
      .partners-top { grid-template-columns: 1fr; }
      .faq-nav { order: 1; grid-template-columns: repeat(auto-fit, minmax(9.5rem, 1fr)); }
      .faq-shell > div:not(.faq-nav) { order: 2; }
      .proof-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); }
      .proof-band { margin-top: -1.375rem; }
      .proof-item { min-width: 0; padding: 0.625rem 0.375rem; border-right: 1px solid var(--line); border-bottom: 0; }
      .proof-item:last-child { border-right: 0; }
      .proof-item b { font-size: clamp(1.0625rem, 2.4vw, 1.375rem); }
      .proof-item span { margin-top: 0.3125rem; font-size: clamp(0.5625rem, 1.35vw, 0.625rem); line-height: 1.25; white-space: nowrap; }
      .proof-item small { display: block; margin-top: 0.1875rem; font-size: clamp(0.5rem, 1.2vw, 0.5625rem); line-height: 1.25; white-space: nowrap; }
      .cargo-grid { grid-template-columns: repeat(2, 1fr); }
      .insights-shell { grid-template-columns: 1fr; }
      .insight-tabs { grid-template-columns: repeat(auto-fit, minmax(9.375rem, 1fr)); }
      .ops-list { grid-template-columns: 1fr; }
      .scenario-panel { grid-template-columns: repeat(2, 1fr); }
      .scenario-panel::before { display: none; }
      .advantage-board { grid-template-columns: repeat(2, 1fr); }
      .about-intro { grid-template-columns: 1fr; gap: 1rem; }
      .strength-grid, .timeline { grid-template-columns: repeat(2, minmax(0, 1fr)); }
      .timeline { margin-top: 0.75rem; gap: 0; }
      .timeline div { min-width: 0; padding: 0.375rem 0.625rem 0 2rem; }
      .timeline div::before { left: 0.75rem; }
      .timeline span { max-width: none; overflow-wrap: anywhere; }
      .advantage-card.feature, .advantage-card:not(.feature) { grid-column: span 1; }
      .service-menu { position: static; grid-template-columns: repeat(2, 1fr); }
      .process { grid-template-columns: repeat(2, minmax(0, 1fr)); grid-auto-rows: auto; }
      .process-step:nth-child(n) { grid-column: span 1; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); }
      .process-step:nth-child(even) { border-right: 0; }
      .case-index { grid-template-columns: repeat(5, minmax(0, 1fr)); }
    }
    @media (max-width: 1200px) {
      .header .nav-cta { display: none !important; }
      .mobile-menu-toggle { display: inline-flex !important; margin-left: auto; }
      .menu { position: absolute !important; left: 1.5rem !important; right: 1.5rem !important; top: calc(100% + 0.625rem) !important; display: grid !important; grid-template-columns: 1fr !important; gap: 0.5rem !important; max-height: min(72vh, 35rem); overflow: auto; padding: 0.75rem !important; border: 1px solid var(--line) !important; border-radius: 0.5rem !important; background: white !important; box-shadow: var(--shadow) !important; opacity: 0 !important; pointer-events: none !important; transform: translateY(-0.5rem) !important; transition: .18s ease; }
      .header.mobile-menu-open .menu { opacity: 1 !important; pointer-events: auto !important; transform: translateY(0) !important; }
      .menu > a, .nav-trigger { min-height: 2.875rem !important; padding: 0 0.75rem !important; border: 1px solid #edf3f8 !important; background: #f8fbfe !important; display: flex !important; align-items: center !important; justify-content: flex-start !important; color: var(--navy) !important; font-weight: 900 !important; }
      .nav-item { position: static !important; display: grid !important; grid-template-columns: minmax(0, 1fr) 2.875rem !important; gap: 0 !important; }
      .nav-trigger::after { display: none !important; }
      .nav-item .nav-trigger { border-right: 0 !important; border-radius: 0.375rem 0 0 0.375rem !important; }
      .submenu-toggle { min-height: 2.875rem; border: 1px solid #edf3f8; border-radius: 0 0.375rem 0.375rem 0; background: #f8fbfe; display: grid !important; place-items: center; cursor: pointer; }
      .submenu-toggle::before { content: ""; width: 0.4375rem; height: 0.4375rem; border-right: 1.5px solid var(--navy); border-bottom: 1.5px solid var(--navy); transform: rotate(45deg); margin-top: -0.25rem; transition: .18s ease; }
      .nav-item.submenu-open .submenu-toggle::before { transform: rotate(225deg); margin-top: 0.25rem; }
      .dropdown, .nav-item:hover .dropdown, .nav-item:focus-within .dropdown { position: static !important; left: auto !important; top: auto !important; min-width: 0 !important; padding: 0 !important; border: 0 !important; border-radius: 0 !important; background: transparent !important; box-shadow: none !important; opacity: 1 !important; transform: none !important; pointer-events: auto !important; display: none !important; grid-template-columns: 1fr !important; gap: 0.3125rem !important; }
      .nav-item.submenu-open .dropdown { display: grid !important; grid-column: 1 / -1 !important; }
      .dropdown::before { display: none !important; }
      .dropdown a { display: block !important; padding: 0.5rem 0.625rem !important; background: white !important; border: 1px solid #edf3f8 !important; color: #2c424a !important; transform: none !important; opacity: 1 !important; }
    }
    @media (max-width: 720px) {
      .container { width: min(100% - 1.75rem, 73.75rem); }
      .section { padding: 3.625rem 0; }
      h1 { font-size: clamp(2rem, 9.4vw, 2.25rem); line-height: 1.16; max-width: 100%; }
      .hero h1 { max-width: 100%; }
      .hero h1 .hero-title-main { font-size: clamp(1.9375rem, 8.5vw, 2.25rem); line-height: 1.16; white-space: normal; }
      .hero h1 .hero-title-sub { margin-top: 0.25rem; font-size: clamp(1.6875rem, 7.4vw, 2rem); line-height: 1.18; white-space: normal; }
      h2 { font-size: clamp(1.75rem, 9vw, 2.25rem); }
      .lead, .hero .lead { font-size: 1rem; }
      .hero .lead { max-width: 100%; overflow-wrap: anywhere; }
      .hero-inner { gap: 1.625rem; }
      .hero-copy { max-width: 100%; overflow: hidden; }
      .hero-actions { display: grid; grid-template-columns: 1fr; gap: 0.625rem; margin: 1.375rem 0; }
      .hero-actions .btn { min-height: 3rem; padding: 0 0.625rem; white-space: normal; }
      .hero-tags { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 0.375rem; }
      .hero-tags span { min-width: 0; justify-content: center; padding: 0.5rem 0.375rem; font-size: 0.6875rem; line-height: 1.2; max-width: 100%; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; border-radius: 0.5rem; }
      .quote-card { padding: 1.125rem; }
      .diagnosis { padding: 1.125rem; }
      .scenario-panel, .service-menu, .deliverables, .coverage-grid, .coverage-detail, .cargo-grid, .case-index, .gift-list, .advantage-board { grid-template-columns: repeat(2, minmax(0, 1fr)); }
      .insights-shell, .insight-list { grid-template-columns: 1fr; }
      .insight-tabs { grid-template-columns: repeat(2, minmax(0, 1fr)); }
      .entry-diagnosis-inner { padding: 1.375rem 0.875rem; }
      .entry-diagnosis-head h2 { font-size: 1.9375rem; }
      .entry-diagnosis-head p, .entry-focus-answer { font-size: 0.9375rem; }
      .entry-focus { min-height: auto; padding: 1.125rem; }
      .entry-focus h3 { font-size: 1.5rem; white-space: normal; }
      .entry-focus-list, .entry-route-tabs { grid-template-columns: repeat(2, minmax(0, 1fr)); }
      .entry-map { padding: 1rem; }
      .entry-map-title { align-items: flex-start; flex-direction: column; gap: 0.25rem; }
      .entry-map-title b { font-size: clamp(0.9375rem, 3.8vw, 1.125rem); line-height: 1.3; }
      .entry-map-title span { font-size: 0.75rem; line-height: 1.35; }
      .entry-route-tabs { gap: 0.5rem; }
      .entry-route-tab { grid-template-columns: 1.75rem minmax(0, 1fr); gap: 0.5rem; min-height: 4rem; padding: 0.625rem 0.5rem; }
      .entry-route-tab .num { width: 1.75rem; height: 1.75rem; font-size: 0.75rem; }
      .entry-route-tab strong { font-size: 0.8125rem; line-height: 1.28; white-space: normal; overflow-wrap: anywhere; }
      .entry-route-tab small { font-size: 0.6875rem; line-height: 1.35; white-space: normal; overflow-wrap: anywhere; }
      .entry-focus-list span { padding: 0.5625rem 0.5rem; font-size: 0.75rem; line-height: 1.35; }
      .service-menu { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 0.5rem; }
      .service-menu button { min-height: 5.5rem; padding: 0.625rem; grid-template-columns: 2rem minmax(0, 1fr); gap: 0.5rem; transform: none !important; }
      .service-menu button::before { width: 2rem; height: 2rem; font-size: 0.75rem; }
      .service-menu button strong { font-size: 0.875rem; line-height: 1.25; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
      .service-menu button .service-menu-copy { font-size: 0.6875rem; line-height: 1.35; display: -webkit-box; -webkit-line-clamp: 1; -webkit-box-orient: vertical; overflow: hidden; }
      .service-hero { grid-template-columns: 1fr; }
      .service-photo { min-height: clamp(13.75rem, 54vw, 18rem); }
      .service-photo span { left: 0.875rem; right: 0.875rem; bottom: 0.875rem; max-height: calc(100% - 1.75rem); padding: 0.75rem 0.875rem; font-size: clamp(0.8125rem, 3.4vw, 0.9375rem); line-height: 1.5; }
      .service-copy { padding: 1.25rem; }
      .service-copy h3 { font-size: clamp(1.5rem, 6vw, 1.75rem); line-height: 1.25; }
      .service-panel { padding: 1.125rem; }
      .network-map { min-height: clamp(20rem, 92vw, 30rem); padding: clamp(1rem, 4vw, 1.5rem); }
      .china-map { height: clamp(13.75rem, 60vw, 22.5rem); }
      .cargo { grid-template-rows: clamp(6.875rem, 28vw, 8.75rem) 1fr; min-height: clamp(18.75rem, 70vw, 24.375rem); }
      .cargo-content { padding: 1rem; grid-template-rows: auto minmax(3.75rem, auto) 2rem 1fr; }
      .cargo-content h3 { font-size: 1rem; }
      .cargo-content p { font-size: 0.8125rem; line-height: 1.55; }
      .cargo-content span { width: min(100%, 7rem); height: 2rem; font-size: 0.75rem; }
      .partner-card { flex-basis: clamp(8.75rem, 38vw, 10.5rem); min-height: clamp(5.375rem, 24vw, 6.75rem); padding: 0.75rem; }
      .partner-logo img { max-width: min(100%, 6.25rem); max-height: 2.75rem; }
      .case-hero { min-height: clamp(13.75rem, 55vw, 16.25rem); padding: 1.25rem; }
      .case-hero h3 { font-size: clamp(1.125rem, 4.8vw, 1.625rem); }
      .case-tab small { display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
      .insight-article:nth-child(n) { border-right: 0; border-bottom: 1px solid #edf3f8; }
      .insight-article:last-child { border-bottom: 0; }
      .insight-panel-head { align-items: flex-start; flex-direction: column; }
      .case-metrics, .case-facts { grid-template-columns: repeat(2, minmax(0, 1fr)); }
      .case-body { padding: 1.125rem; }
      .about-intro { padding: 1.375rem; }
      .timeline { padding: 1.125rem; }
      .timeline b { font-size: 1rem; }
      .timeline span { font-size: 0.75rem; line-height: 1.65; }
      .process-step:nth-child(n) { padding: 1rem; }
      .process-step::before { margin-bottom: 0.625rem; font-size: 1.375rem; }
      .process-step h3 { font-size: 0.9375rem; }
      .process-step span { font-size: 0.75rem; line-height: 1.45; }
      .faq-nav { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); overflow-x: visible; padding-bottom: 0; }
      .faq-nav { order: 1; }
      .faq-shell > div:not(.faq-nav) { order: 2; }
      .faq-nav button { min-width: 0; text-align: center; }
    }
    @media (max-width: 560px) {
      .container { width: min(100% - 1.125rem, 73.75rem); }
      .hero-inner { padding-top: 2.625rem; padding-bottom: 3.125rem; gap: 1.125rem; }
      .hero h1 .hero-title-main { font-size: clamp(1.875rem, 7.2vw, 2.125rem); line-height: 1.12; }
      .hero h1 .hero-title-sub { font-size: clamp(1.625rem, 6.4vw, 1.875rem); line-height: 1.14; }
      .hero .lead { font-size: 0.9375rem; line-height: 1.58; }
      .hero-actions { gap: 0.375rem; margin: 1rem 0; }
      .hero-actions .btn { min-height: 2.5rem; padding: 0 0.375rem; font-size: 0.75rem; }
    }
    @media (max-width: 480px) {
      body { padding-bottom: 4.25rem; }
      .container { width: min(100% - 1.25rem, 73.75rem); }
      .section { padding: 3rem 0; }
      .hero-inner { padding-top: 2.375rem; padding-bottom: 3rem; gap: 1.125rem; }
      .hero h1 .hero-title-main { font-size: clamp(1.75rem, 7.8vw, 2rem); line-height: 1.12; }
      .hero h1 .hero-title-sub { font-size: clamp(1.5rem, 6.8vw, 1.75rem); line-height: 1.14; }
      .hero .lead { font-size: 0.9375rem; line-height: 1.58; }
      .hero-actions { margin: 1rem 0; gap: 0.5rem; }
      .hero-actions .btn { min-height: 2.5rem; font-size: 0.8125rem; }
      .hero-actions .btn,
      .btn,
      .tag,
      .partners-badge,
      .insight-panel-head a {
        white-space: normal;
        overflow-wrap: anywhere;
      }
      .area-chip {
        white-space: normal;
        overflow-wrap: anywhere;
      }
      .hero-tags { grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 0.25rem; }
      .hero-tags span { padding: 0.4375rem 0.25rem; font-size: 0.625rem; line-height: 1.18; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
      .scenario-panel,
      .deliverables,
      .coverage-grid,
      .coverage-detail,
      .gift-list,
      .advantage-board {
        grid-template-columns: 1fr;
      }
      .service-menu { grid-template-columns: repeat(2, minmax(0, 1fr)); }
      .service-menu button { min-height: 4.875rem; padding: 0.5625rem; grid-template-columns: 1.75rem minmax(0, 1fr); gap: 0.4375rem; }
      .service-menu button::before { width: 1.75rem; height: 1.75rem; font-size: 0.6875rem; }
      .service-menu button strong { font-size: 0.8125rem; }
      .service-menu button .service-menu-copy { font-size: 0.625rem; }
      .service-metrics { grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 0.375rem; }
      .service-metrics div { padding: 0.625rem 0.5rem; }
      .service-metrics b { font-size: 1.25rem; }
      .service-metrics span { font-size: 0.6875rem; line-height: 1.35; }
      .service-photo span { max-height: calc(100% - 1.75rem); font-size: clamp(0.75rem, 3.5vw, 0.875rem); line-height: 1.45; }
      .cargo-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
      .about-intro { padding: 1rem; gap: 0.875rem; }
      .strength-grid { gap: 0.5rem; }
      .strength-grid div { padding: 0.75rem; min-width: 0; }
      .strength-grid b { font-size: 1rem; }
      .strength-grid span { font-size: 0.75rem; line-height: 1.45; overflow-wrap: anywhere; }
      .timeline { padding: 1rem; margin-top: 0.875rem; }
      .timeline div { padding-left: 1.875rem; padding-right: 0.5rem; }
      .timeline b { font-size: 0.9375rem; }
      .timeline span { font-size: 0.6875rem; line-height: 1.55; }
      .entry-route-tab strong,
      .entry-route-tab small,
      .coverage-card span,
      .insight-date {
        white-space: normal;
      }
      .entry-route-tab,
      .service-tab,
      .case-tab,
      .faq-nav button,
      .insight-tab {
        min-height: auto;
      }
      .entry-route-tabs { grid-template-columns: repeat(2, minmax(0, 1fr)); }
      .entry-route-tab { grid-template-columns: 1.5rem minmax(0, 1fr); gap: 0.375rem; padding: 0.5625rem 0.4375rem; }
      .entry-route-tab .num { width: 1.5rem; height: 1.5rem; font-size: 0.6875rem; }
      .entry-route-tab strong { font-size: 0.75rem; }
      .entry-route-tab small { font-size: 0.625rem; }
      .faq-nav { grid-template-columns: repeat(2, minmax(0, 1fr)); overflow: visible; }
      .insight-panel-head { gap: 0.375rem; }
      .insight-tabs { grid-template-columns: repeat(2, minmax(0, 1fr)); }
      .insight-tab { justify-content: center; padding: 0.625rem 0.5rem; font-size: 0.875rem; }
      .insight-tab::after { display: none; }
    }
    @media (max-width: 380px) {
      .scenario-panel, .case-index, .deliverables, .coverage-grid, .coverage-detail, .gift-list, .advantage-board, .process { grid-template-columns: 1fr; }
      .cargo-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
      .service-menu { grid-template-columns: repeat(2, minmax(0, 1fr)); }
      .service-metrics { grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 0.3125rem; }
      .service-metrics div { padding: 0.5625rem 0.375rem; }
      .service-metrics b { font-size: 1.125rem; }
      .service-metrics span { font-size: 0.625rem; line-height: 1.3; }
      .process-step:nth-child(n) { border-right: 0; }
    }
    @media (max-width: 360px) {
      .case-metrics, .case-facts { grid-template-columns: 1fr; }
    }
