﻿
    :root {
      --ink: #08264b;
      --blue: #00326d;
      --green: #08783f;
      --gold: #f2c400;
      --red: #c5192d;
      --line: #dfe5ee;
      --muted: #536171;
      --soft: #f6f8fb;
    }

    * { box-sizing: border-box; }

    body {
      margin: 0;
      color: var(--ink);
      background: #fff;
      font-family: "Poppins", Arial, Helvetica, sans-serif;
    }

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

    .page-stripe,
    .footer-stripe {
      display: grid;
      grid-template-columns: 1fr 1fr 1fr;
      height: 6px;
    }

    .page-stripe span:nth-child(1),
    .footer-stripe span:nth-child(1) { background: var(--green); }
    .page-stripe span:nth-child(2),
    .footer-stripe span:nth-child(2) { background: var(--gold); }
    .page-stripe span:nth-child(3),
    .footer-stripe span:nth-child(3) { background: var(--red); }

    .topbar {
      height: 78px;
      border-bottom: 1px solid var(--line);
      background: #fff;
    }

    .login,
    .btn,
    .hero-search,
    .hero-search input,
    .hero-search select,
    .form-panel input,
    .form-panel select,
    .form-panel textarea,
    .login-panel input,
    .verify-panel input,
    .hero-next,
    .dots button,
    .stat-card,
    .info-card,
    .step-card,
    .form-panel,
    .login-panel,
    .verify-panel,
    .dash-card,
    .map-panel,
    .news-card,
    .info-icon,
    .solid-btn,
    .outline-btn,
    .map-box,
    .footer-social a {
      border-radius: 0 !important;
    }

    .topbar-inner {
      height: 100%;
      display: flex;
      align-items: center;
      max-width: 1280px;
      margin: 0 auto;
      gap: 28px;
      padding: 0 18px;
    }

    .brand {
      display: flex;
      align-items: center;
      gap: 13px;
      min-width: 430px;
    }

    .brand-logo {
      width: 58px;
      height: 58px;
      object-fit: contain;
      flex: 0 0 auto;
    }

    .brand-country {
      margin: 0 0 2px;
      font-size: 10px;
      line-height: 1.1;
      font-weight: 800;
      text-transform: uppercase;
      letter-spacing: .02em;
      color: var(--red);
    }

    .brand-title {
      margin: 0;
      font-size: 15px;
      line-height: 1.08;
      font-weight: 900;
      text-transform: uppercase;
      white-space: nowrap;
      color: var(--ink);
    }

    .brand-sub {
      margin: 3px 0 0;
      font-size: 11px;
      line-height: 1.2;
      font-weight: 500;
      color: #5b6675;
    }

    .nav {
      margin-left: auto;
      display: flex;
      align-items: center;
      gap: 25px;
      font-size: 12px;
      line-height: 1;
      font-weight: 700;
      text-transform: uppercase;
      white-space: nowrap;
    }

    .nav a {
      position: relative;
      padding: 18px 0;
    }

    .nav a.active {
      color: var(--green);
    }

    .nav a.active::after {
      content: "";
      position: absolute;
      left: 0;
      right: 0;
      bottom: 5px;
      height: 2px;
      background: var(--gold);
    }

    .login {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 10px;
      height: 39px;
      padding: 0 18px;
      border-radius: 5px;
      background: var(--blue);
      color: #fff;
      font-size: 12px;
      font-weight: 800;
      text-transform: uppercase;
      white-space: nowrap;
    }

    .register {
      background: var(--green);
    }

    .hero {
      position: relative;
      min-height: 430px;
      overflow: hidden;
      color: #fff;
      background: var(--blue);
    }

    .hero::after {
      content: "";
      position: absolute;
      inset: 0;
      z-index: 1;
      background:
        linear-gradient(90deg, rgba(0, 42, 93, .96) 0%, rgba(0, 42, 93, .88) 34%, rgba(0, 42, 93, .34) 68%, rgba(0, 42, 93, .08) 100%),
        linear-gradient(0deg, rgba(0,0,0,.2), rgba(0,0,0,.05));
      pointer-events: none;
    }

    .hero-slides {
      position: absolute;
      inset: 0;
      z-index: 0;
    }

    .hero-slides img {
      position: absolute;
      inset: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      opacity: 0;
      transition: opacity .55s ease;
    }

    .hero-slides img.is-active {
      opacity: 1;
    }

    .hero-content {
      position: relative;
      z-index: 2;
      max-width: 1280px;
      margin: 0 auto;
      padding: 58px 18px 72px;
    }

    .hero-copy {
      max-width: 650px;
    }

    .eyebrow {
      display: flex;
      align-items: center;
      gap: 14px;
      margin-bottom: 17px;
      color: var(--gold);
      font-size: 13px;
      font-weight: 800;
      text-transform: uppercase;
    }

    .eyebrow span {
      width: 38px;
      height: 3px;
      border-radius: 999px;
      background: var(--gold);
    }

    .hero h1 {
      margin: 0;
      font-size: clamp(2rem, 4vw, 3.35rem);
      line-height: 1.08;
      font-weight: 900;
      text-transform: uppercase;
      letter-spacing: 0;
    }

    .hero p {
      margin: 18px 0 0;
      max-width: 565px;
      font-size: 14px;
      line-height: 1.7;
      font-weight: 400;
      color: rgba(255,255,255,.9);
    }

    .hero-actions {
      display: flex;
      align-items: center;
      gap: 14px;
      margin-top: 25px;
      flex-wrap: wrap;
    }

    .btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 10px;
      height: 40px;
      padding: 0 20px;
      border-radius: 5px;
      border: 1px solid transparent;
      font-size: 12px;
      font-weight: 800;
      text-transform: uppercase;
      white-space: nowrap;
    }

    .btn.green { background: var(--green); color: #fff; }
    .btn.gold { background: var(--gold); color: var(--ink); }
    .btn.white { background: #fff; color: var(--ink); }
    .btn.outline { border-color: rgba(255,255,255,.6); color: #fff; }

    .hero-search {
      width: min(760px, 100%);
      display: grid;
      grid-template-columns: 1fr auto;
      gap: 8px;
      margin-top: 28px;
      padding: 8px;
      border-radius: 7px;
      background: rgba(255,255,255,.94);
      box-shadow: 0 18px 45px rgba(0,0,0,.18);
    }

    .hero-search input,
    .hero-search select,
    .form-panel input,
    .form-panel select,
    .form-panel textarea,
    .login-panel input,
    .verify-panel input {
      width: 100%;
      min-height: 42px;
      border: 1px solid var(--line);
      border-radius: 4px;
      padding: 0 13px;
      color: var(--ink);
      background: #fff;
      font: inherit;
      font-size: 12px;
      outline: none;
    }

    .hero-search input:focus,
    .hero-search select:focus,
    .form-panel input:focus,
    .form-panel select:focus,
    .form-panel textarea:focus {
      border-color: var(--green);
      box-shadow: 0 0 0 3px rgba(8,120,63,.08);
    }

    .hero-next {
      position: absolute;
      z-index: 3;
      right: 28px;
      top: 50%;
      width: 42px;
      height: 42px;
      border: 1px solid rgba(255,255,255,.5);
      border-radius: 50%;
      background: rgba(255,255,255,.18);
      color: #fff;
      font-size: 28px;
      line-height: 1;
      cursor: pointer;
    }

    .dots {
      position: absolute;
      z-index: 3;
      left: 50%;
      bottom: 22px;
      transform: translateX(-50%);
      display: flex;
      gap: 8px;
    }

    .dots button {
      width: 9px;
      height: 9px;
      padding: 0;
      border: 0;
      border-radius: 999px;
      background: rgba(255,255,255,.45);
      cursor: pointer;
    }

    .dots button.is-active {
      width: 26px;
      background: var(--gold);
    }

    .quick-stats {
      position: relative;
      z-index: 4;
      max-width: 1120px;
      margin: -38px auto 0;
      display: grid;
      grid-template-columns: repeat(4, minmax(0, 1fr));
      gap: 14px;
      padding: 0 18px;
    }

    .stat-card {
      min-height: 92px;
      border: 1px solid var(--line);
      border-radius: 6px;
      background: #fff;
      padding: 18px;
      box-shadow: 0 12px 30px rgba(8,38,75,.11);
    }

    .stat-card strong {
      display: block;
      font-size: 27px;
      line-height: 1;
      color: var(--ink);
    }

    .stat-card span {
      display: block;
      margin-top: 8px;
      color: var(--muted);
      font-size: 11px;
      font-weight: 700;
      text-transform: uppercase;
    }

    .site-section {
      padding: 54px 18px;
      background: #fff;
    }

    .site-section.tint { background: var(--soft); }
    .site-section.green-soft { background: #f3faf6; }

    .section-inner {
      max-width: 1280px;
      margin: 0 auto;
    }

    .section-head {
      display: grid;
      grid-template-columns: minmax(0, 1fr) minmax(280px, 640px);
      gap: 40px;
      align-items: end;
      margin-bottom: 30px;
    }

    .section-kicker {
      margin: 0 0 8px;
      color: var(--green);
      font-size: 12px;
      line-height: 1;
      font-weight: 900;
      text-transform: uppercase;
      letter-spacing: .04em;
    }

    .section-heading {
      margin: 0;
      color: var(--ink);
      font-size: clamp(1.7rem, 2.8vw, 2.25rem);
      line-height: 1.15;
      font-weight: 900;
      text-transform: uppercase;
      letter-spacing: 0;
    }

    .section-text {
      margin: 0;
      color: var(--muted);
      font-size: 13px;
      line-height: 1.7;
    }

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

    .info-card,
    .step-card,
    .form-panel,
    .login-panel,
    .verify-panel,
    .dash-card,
    .map-panel,
    .news-card {
      border: 1px solid var(--line);
      border-radius: 6px;
      background: #fff;
      box-shadow: 0 8px 26px rgba(8,38,75,.05);
    }

    .info-card {
      min-height: 178px;
      padding: 22px;
      transition: transform .2s ease, box-shadow .2s ease;
    }

    .info-card:hover {
      transform: translateY(-3px);
      box-shadow: 0 18px 36px rgba(8,38,75,.12);
    }

    .info-icon {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      width: 44px;
      height: 44px;
      border-radius: 6px;
      background: #f4f8fe;
      color: var(--blue);
      font-size: 20px;
    }

    .info-card h4,
    .step-card h4,
    .news-card h4 {
      margin: 16px 0 0;
      color: var(--ink);
      font-size: 14px;
      line-height: 1.35;
      font-weight: 900;
      text-transform: uppercase;
    }

    .info-card p,
    .step-card p,
    .news-card p {
      margin: 10px 0 0;
      color: var(--muted);
      font-size: 12px;
      line-height: 1.65;
    }

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

    .step-card {
      min-height: 154px;
      padding: 20px;
    }

    .step-card b {
      color: var(--gold);
      font-size: 18px;
      font-weight: 900;
    }

    .split-grid {
      display: grid;
      grid-template-columns: minmax(0, .85fr) minmax(0, 1.15fr);
      gap: 34px;
      align-items: start;
    }

    .form-panel {
      padding: 24px;
    }

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

    .form-grid textarea {
      grid-column: 1 / -1;
      min-height: 94px;
      padding-top: 12px;
      resize: vertical;
    }

    .form-grid .full {
      grid-column: 1 / -1;
    }

    .solid-btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 10px;
      min-height: 42px;
      border: 0;
      border-radius: 5px;
      background: var(--blue);
      color: #fff;
      padding: 0 18px;
      font: inherit;
      font-size: 12px;
      font-weight: 900;
      text-transform: uppercase;
      cursor: pointer;
    }

    .solid-btn.green { background: var(--green); }
    .solid-btn.gold { background: var(--gold); color: var(--ink); }
    .outline-btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      min-height: 42px;
      border: 1px solid var(--line);
      border-radius: 5px;
      background: #fff;
      color: var(--ink);
      padding: 0 18px;
      font: inherit;
      font-size: 12px;
      font-weight: 900;
      text-transform: uppercase;
      cursor: pointer;
    }

    .dashboard-grid {
      display: grid;
      grid-template-columns: .78fr 1.22fr;
      gap: 18px;
    }

    .dash-card,
    .map-panel {
      padding: 24px;
    }

    .donut {
      width: 210px;
      height: 210px;
      border-radius: 50%;
      margin: 10px auto 24px;
      background: conic-gradient(var(--green) 0 34%, var(--blue) 34% 57%, var(--gold) 57% 74%, var(--red) 74% 88%, #8392a5 88% 100%);
      position: relative;
    }

    .donut::after {
      content: "HK";
      position: absolute;
      inset: 54px;
      display: grid;
      place-items: center;
      border-radius: 50%;
      background: #fff;
      color: var(--ink);
      font-weight: 900;
      font-size: 28px;
    }

    .legend {
      display: grid;
      gap: 9px;
      font-size: 12px;
      color: var(--muted);
    }

    .legend span {
      display: flex;
      justify-content: space-between;
      gap: 16px;
    }

    .legend i {
      display: inline-block;
      width: 10px;
      height: 10px;
      margin-right: 8px;
      border-radius: 50%;
    }

    .map-box {
      position: relative;
      min-height: 365px;
      overflow: hidden;
      border: 1px solid var(--line);
      border-radius: 6px;
      background: #f7f9fc;
      display: grid;
      place-items: center;
      padding: 28px;
    }

    .map-box img {
      width: min(430px, 100%);
      max-height: 310px;
      object-fit: contain;
    }

    .pin {
      position: absolute;
      width: 16px;
      height: 16px;
      border-radius: 50%;
      background: var(--gold);
      box-shadow: 0 0 0 7px rgba(242,196,0,.24);
    }

    .pin.one { left: 52%; top: 48%; }
    .pin.two { left: 43%; top: 58%; background: var(--green); box-shadow: 0 0 0 7px rgba(8,120,63,.2); }
    .pin.three { left: 61%; top: 62%; background: var(--red); box-shadow: 0 0 0 7px rgba(197,25,45,.18); }

    .login-panel {
      padding: 24px;
      display: grid;
      gap: 12px;
    }

    .verify-panel {
      padding: 28px;
      align-items: center;
    }

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

    .news-card {
      padding: 22px;
    }

    .news-tag {
      display: inline-flex;
      color: var(--green);
      font-size: 11px;
      font-weight: 900;
      text-transform: uppercase;
    }

    .footer {
      padding: 0 18px 24px;
      background: #0f2044;
      color: #fff;
    }

    .footer-inner {
      max-width: 1280px;
      margin: 0 auto;
      padding-top: 46px;
    }

    .footer-grid {
      display: grid;
      grid-template-columns: 1.35fr 1fr 1fr 1fr;
      gap: 38px;
      padding-bottom: 38px;
    }

    .footer-brand-row {
      display: flex;
      align-items: center;
      gap: 12px;
    }

    .footer-logo {
      width: 58px;
      height: 58px;
      object-fit: contain;
      border-radius: 50%;
      background: #fff;
      padding: 4px;
    }

    .footer-brand-title {
      margin: 0;
      color: #fff;
      font-size: 13px;
      line-height: 1.3;
      font-weight: 900;
      text-transform: uppercase;
    }

    .footer h4 {
      margin: 0 0 18px;
      color: #fff;
      font-size: 12px;
      font-weight: 900;
      text-transform: uppercase;
    }

    .footer a,
    .footer p,
    .footer span {
      color: rgba(255,255,255,.68);
      font-size: 12px;
      line-height: 1.65;
    }

    .footer-links,
    .footer-contact,
    .footer-hours {
      display: grid;
      gap: 11px;
    }

    .footer-contact-item {
      display: flex;
      align-items: flex-start;
      gap: 9px;
    }

    .footer-contact-item i {
      margin-top: 4px;
      color: var(--gold);
      font-size: 12px;
    }

    .footer-bottom {
      display: flex;
      justify-content: space-between;
      gap: 18px;
      align-items: center;
      padding-top: 22px;
      border-top: 1px solid rgba(255,255,255,.1);
    }

    .footer-social {
      display: flex;
      gap: 10px;
    }

    .footer-social a {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      width: 28px;
      height: 28px;
      border-radius: 50%;
      background: rgba(255,255,255,.08);
    }

    @media (max-width: 1040px) {
      .brand { min-width: 0; }
      .brand-title { white-space: normal; }
      .nav { display: none; }
      .quick-stats,
      .info-grid,
      .step-grid,
      .dashboard-grid,
      .news-grid,
      .footer-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
      }
      .split-grid,
      .section-head {
        grid-template-columns: 1fr;
      }
    }

    @media (max-width: 700px) {
      .topbar { height: auto; }
      .topbar-inner {
        align-items: flex-start;
        flex-direction: column;
        gap: 14px;
        padding: 15px 18px;
      }
      .brand-logo { width: 50px; height: 50px; }
      .login { width: 100%; }
      .hero-content { padding-top: 46px; }
      .hero-search,
      .quick-stats,
      .info-grid,
      .step-grid,
      .form-grid,
      .dashboard-grid,
      .news-grid,
      .footer-grid {
        grid-template-columns: 1fr;
      }
      .quick-stats { margin-top: 18px; }
      .form-grid textarea,
      .form-grid .full { grid-column: auto; }
      .hero-next { display: none; }
      .footer-bottom {
        align-items: flex-start;
        flex-direction: column;
      }
    }

    html,
    body {
      max-width: 100%;
      overflow-x: hidden;
    }

    img,
    svg,
    video {
      max-width: 100%;
    }

    table {
      max-width: 100%;
    }

    .nav {
      scrollbar-width: thin;
    }

    .nav a,
    .login,
    .btn,
    .solid-btn,
    .outline-btn {
      min-width: 0;
    }

    @media (max-width: 1040px) {
      .nav {
        display: flex !important;
      }
    }

    @media (max-width: 900px) {
      .hero {
        min-height: auto;
      }

      .hero::after {
        background: linear-gradient(90deg, rgba(0, 42, 93, .94), rgba(0, 42, 93, .62));
      }

      .hero-content {
        padding: 42px 16px 54px;
      }

      .hero-copy,
      .hero p {
        max-width: none;
      }

      .hero h1 {
        font-size: 2rem;
      }

      .quick-stats,
      .info-grid,
      .step-grid,
      .dashboard-grid,
      .news-grid,
      .footer-grid,
      .split-grid,
      .section-head {
        grid-template-columns: 1fr;
      }

      .site-section {
        padding: 42px 16px;
      }

      .form-panel,
      .login-panel,
      .verify-panel,
      .dash-card,
      .map-panel,
      .info-card,
      .step-card,
      .news-card {
        padding: 20px;
      }

      .footer {
        padding-left: 16px;
        padding-right: 16px;
      }
    }

    @media (max-width: 640px) {
      .hero h1,
      .section-heading,
      .text-4xl,
      .text-3xl {
        font-size: 1.55rem !important;
        line-height: 1.18 !important;
      }

      .hero-actions,
      .footer-bottom,
      .verify-panel,
      .flex {
        min-width: 0;
      }

      .hero-actions .btn,
      .hero-search .btn,
      .solid-btn,
      .outline-btn {
        width: 100%;
        min-height: 44px;
        height: auto;
        padding: 12px 14px;
        white-space: normal;
        text-align: center;
      }

      .hero-search,
      .form-grid {
        grid-template-columns: 1fr;
      }

      .hero-search {
        padding: 10px;
      }

      .form-grid textarea,
      .form-grid .full {
        grid-column: auto;
      }

      .quick-stats {
        margin-top: 16px;
        padding-left: 16px;
        padding-right: 16px;
      }

      .page-image-header {
        height: 132px;
      }

      .map-box {
        min-height: 240px;
        padding: 18px;
      }

      .donut {
        width: 170px;
        height: 170px;
      }

      .donut::after {
        inset: 44px;
      }

      .footer-grid {
        gap: 24px;
      }
    }

    @media (max-width: 480px) {
      .topbar-inner,
      .hero-content,
      .site-section,
      .footer {
        padding-left: 14px;
        padding-right: 14px;
      }

      .brand {
        gap: 10px;
      }

      .nav {
        gap: 16px;
        font-size: 10px;
      }

      .hero h1,
      .section-heading,
      .text-4xl,
      .text-3xl {
        font-size: 1.35rem !important;
      }

      .hero p,
      .section-text,
      .info-card p,
      .step-card p,
      .news-card p {
        font-size: 12px;
      }
    }
  
